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 polygonal normals precomputed and embedded. Scaled to normal size. </p>
 <p> Related links:  source SkeletonCompleteNormals.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.SkeletonCompleteNormals&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/SkeletonCompleteNormals.x3d">SkeletonCompleteNormals.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 polygonal normals precomputed and 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/SkeletonCompleteNoNormals.x3d">SkeletonCompleteNoNormals.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/SkeletonCompleteNormals.x3d" target="_blank">https://www.web3d.org/x3d/content/examples/HumanoidAnimation/Medical/SkeletonCompleteNormals.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 SkeletonCompleteNormals
{
	/** Default constructor to create this object. */
	public SkeletonCompleteNormals ()
	{
	  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("SkeletonCompleteNormals.x3d"))
    .addMeta(new meta().setName(meta.NAME_DESCRIPTION).setContent("Human skeleton reference example providing all bones, with polygonal normals precomputed and 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("SkeletonCompleteNoNormals.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/SkeletonCompleteNormals.x3d"))
    .addMeta(new meta().setName(meta.NAME_LICENSE    ).setContent("../license.html")))
  .setScene(new Scene()
    .addChild(new WorldInfo().setTitle("SkeletonCompleteNormals.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(" 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 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_5_25_coordIndex()).setNormalIndex(getatlas_Geo_5_25_normalIndex())
          .setCoord(new Coordinate("atlas_Coord").setPoint(getatlas_Coord_6_25_point()))
          .setNormal(new Normal().setVector(getNormal_6_26_vector()))))
      .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_5_31_coordIndex()).setNormalIndex(getaxis_Geo_5_31_normalIndex())
          .setCoord(new Coordinate("axis_Coord").setPoint(getaxis_Coord_6_31_point()))
          .setNormal(new Normal().setVector(getNormal_6_32_vector()))))
      .addChild(new Shape("c2disc")
        .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_5_37_coordIndex()).setNormalIndex(getc2disc_Geo_5_37_normalIndex())
          .setCoord(new Coordinate("c2disc_Coord").setPoint(getc2disc_Coord_6_37_point()))
          .setNormal(new Normal().setVector(getNormal_6_38_vector()))))
      .addChild(new Shape("c3")
        .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("c3_Geo").setDEF("c3_Geo").setCreaseAngle(1.571).setCoordIndex(getc3_Geo_5_43_coordIndex()).setNormalIndex(getc3_Geo_5_43_normalIndex())
          .setCoord(new Coordinate("c3_Coord").setPoint(getc3_Coord_6_43_point()))
          .setNormal(new Normal().setVector(getNormal_6_44_vector()))))
      .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_5_49_coordIndex()).setNormalIndex(getc3disc_Geo_5_49_normalIndex())
          .setCoord(new Coordinate("c3disc_Coord").setPoint(getc3disc_Coord_6_49_point()))
          .setNormal(new Normal().setVector(getNormal_6_50_vector()))))
      .addChild(new Shape("c4")
        .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("c4_Geo").setDEF("c4_Geo").setCreaseAngle(1.571).setCoordIndex(getc4_Geo_5_55_coordIndex()).setNormalIndex(getc4_Geo_5_55_normalIndex())
          .setCoord(new Coordinate("c4_Coord").setPoint(getc4_Coord_6_55_point()))
          .setNormal(new Normal().setVector(getNormal_6_56_vector()))))
      .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_5_61_coordIndex()).setNormalIndex(getc4disc_Geo_5_61_normalIndex())
          .setCoord(new Coordinate("c4disc_Coord").setPoint(getc4disc_Coord_6_61_point()))
          .setNormal(new Normal().setVector(getNormal_6_62_vector()))))
      .addChild(new Shape("c5")
        .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("c5_Geo").setDEF("c5_Geo").setCreaseAngle(1.571).setCoordIndex(getc5_Geo_5_67_coordIndex()).setNormalIndex(getc5_Geo_5_67_normalIndex())
          .setCoord(new Coordinate("c5_Coord").setPoint(getc5_Coord_6_67_point()))
          .setNormal(new Normal().setVector(getNormal_6_68_vector()))))
      .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_5_73_coordIndex()).setNormalIndex(getc5disc_Geo_5_73_normalIndex())
          .setCoord(new Coordinate("c5disc_Coord").setPoint(getc5disc_Coord_6_73_point()))
          .setNormal(new Normal().setVector(getNormal_6_74_vector()))))
      .addChild(new Shape("c6")
        .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("c6_Geo").setDEF("c6_Geo").setCreaseAngle(1.571).setCoordIndex(getc6_Geo_5_79_coordIndex()).setNormalIndex(getc6_Geo_5_79_normalIndex())
          .setCoord(new Coordinate("c6_Coord").setPoint(getc6_Coord_6_79_point()))
          .setNormal(new Normal().setVector(getNormal_6_80_vector()))))
      .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_5_85_coordIndex()).setNormalIndex(getc6disc_Geo_5_85_normalIndex())
          .setCoord(new Coordinate("c6disc_Coord").setPoint(getc6disc_Coord_6_85_point()))
          .setNormal(new Normal().setVector(getNormal_6_86_vector()))))
      .addChild(new Shape("c7")
        .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("c7_Geo").setDEF("c7_Geo").setCreaseAngle(1.571).setCoordIndex(getc7_Geo_5_91_coordIndex()).setNormalIndex(getc7_Geo_5_91_normalIndex())
          .setCoord(new Coordinate("c7_Coord").setPoint(getc7_Coord_6_91_point()))
          .setNormal(new Normal().setVector(getNormal_6_92_vector()))))
      .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_5_97_coordIndex()).setNormalIndex(getc7disc_Geo_5_97_normalIndex())
          .setCoord(new Coordinate("c7disc_Coord").setPoint(getc7disc_Coord_6_97_point()))
          .setNormal(new Normal().setVector(getNormal_6_98_vector()))))
      .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_5_103_coordIndex()).setNormalIndex(getcoccyx_Geo_5_103_normalIndex())
          .setCoord(new Coordinate("coccyx_Coord").setPoint(getcoccyx_Coord_6_103_point()))
          .setNormal(new Normal().setVector(getNormal_6_104_vector()))))
      .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_5_109_coordIndex()).setNormalIndex(getethmoid_Geo_5_109_normalIndex())
          .setCoord(new Coordinate("ethmoid_Coord").setPoint(getethmoid_Coord_6_109_point()))
          .setNormal(new Normal().setVector(getNormal_6_110_vector()))))
      .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_5_115_coordIndex()).setNormalIndex(getethmoid2_Geo_5_115_normalIndex())
          .setCoord(new Coordinate("ethmoid2_Coord").setPoint(getethmoid2_Coord_6_115_point()))
          .setNormal(new Normal().setVector(getNormal_6_116_vector()))))
      .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_5_121_coordIndex()).setNormalIndex(getfrontal_Geo_5_121_normalIndex())
          .setCoord(new Coordinate("frontal_Coord").setPoint(getfrontal_Coord_6_121_point()))
          .setNormal(new Normal().setVector(getNormal_6_122_vector()))))
      .addChild(new Shape("inconl")
        .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("inconl_Geo").setDEF("inconl_Geo").setCreaseAngle(1.571).setCoordIndex(getinconl_Geo_5_127_coordIndex()).setNormalIndex(getinconl_Geo_5_127_normalIndex())
          .setCoord(new Coordinate("inconl_Coord").setPoint(getinconl_Coord_6_127_point()))
          .setNormal(new Normal().setVector(getNormal_6_128_vector()))))
      .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_5_133_coordIndex()).setNormalIndex(getinconr_Geo_5_133_normalIndex())
          .setCoord(new Coordinate("inconr_Coord").setPoint(getinconr_Coord_6_133_point()))
          .setNormal(new Normal().setVector(getNormal_6_134_vector()))))
      .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_5_139_coordIndex()).setNormalIndex(getl1disk_Geo_5_139_normalIndex())
          .setCoord(new Coordinate("l1disk_Coord").setPoint(getl1disk_Coord_6_139_point()))
          .setNormal(new Normal().setVector(getNormal_6_140_vector()))))
      .addChild(new Shape("l2")
        .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("l2_Geo").setDEF("l2_Geo").setCreaseAngle(1.571).setCoordIndex(getl2_Geo_5_145_coordIndex()).setNormalIndex(getl2_Geo_5_145_normalIndex())
          .setCoord(new Coordinate("l2_Coord").setPoint(getl2_Coord_6_145_point()))
          .setNormal(new Normal().setVector(getNormal_6_146_vector()))))
      .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_5_151_coordIndex()).setNormalIndex(getl2disk_Geo_5_151_normalIndex())
          .setCoord(new Coordinate("l2disk_Coord").setPoint(getl2disk_Coord_6_151_point()))
          .setNormal(new Normal().setVector(getNormal_6_152_vector()))))
      .addChild(new Shape("l3")
        .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("l3_Geo").setDEF("l3_Geo").setCreaseAngle(1.571).setCoordIndex(getl3_Geo_5_157_coordIndex()).setNormalIndex(getl3_Geo_5_157_normalIndex())
          .setCoord(new Coordinate("l3_Coord").setPoint(getl3_Coord_6_157_point()))
          .setNormal(new Normal().setVector(getNormal_6_158_vector()))))
      .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_5_163_coordIndex()).setNormalIndex(getl3disk_Geo_5_163_normalIndex())
          .setCoord(new Coordinate("l3disk_Coord").setPoint(getl3disk_Coord_6_163_point()))
          .setNormal(new Normal().setVector(getNormal_6_164_vector()))))
      .addChild(new Shape("l4")
        .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("l4_Geo").setDEF("l4_Geo").setCreaseAngle(1.571).setCoordIndex(getl4_Geo_5_169_coordIndex()).setNormalIndex(getl4_Geo_5_169_normalIndex())
          .setCoord(new Coordinate("l4_Coord").setPoint(getl4_Coord_6_169_point()))
          .setNormal(new Normal().setVector(getNormal_6_170_vector()))))
      .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_5_175_coordIndex()).setNormalIndex(getl4disk_Geo_5_175_normalIndex())
          .setCoord(new Coordinate("l4disk_Coord").setPoint(getl4disk_Coord_6_175_point()))
          .setNormal(new Normal().setVector(getNormal_6_176_vector()))))
      .addChild(new Shape("l5")
        .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("l5_Geo").setDEF("l5_Geo").setCreaseAngle(1.571).setCoordIndex(getl5_Geo_5_181_coordIndex()).setNormalIndex(getl5_Geo_5_181_normalIndex())
          .setCoord(new Coordinate("l5_Coord").setPoint(getl5_Coord_6_181_point()))
          .setNormal(new Normal().setVector(getNormal_6_182_vector()))))
      .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_5_187_coordIndex()).setNormalIndex(getl5disc_Geo_5_187_normalIndex())
          .setCoord(new Coordinate("l5disc_Coord").setPoint(getl5disc_Coord_6_187_point()))
          .setNormal(new Normal().setVector(getNormal_6_188_vector()))))
      .addChild(new Shape("lacl")
        .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("lacl_Geo").setDEF("lacl_Geo").setCreaseAngle(1.571).setCoordIndex(getlacl_Geo_5_193_coordIndex()).setNormalIndex(getlacl_Geo_5_193_normalIndex())
          .setCoord(new Coordinate("lacl_Coord").setPoint(getlacl_Coord_6_193_point()))
          .setNormal(new Normal().setVector(getNormal_6_194_vector()))))
      .addChild(new Shape("lacr")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lacr_Geo").setDEF("lacr_Geo").setCreaseAngle(1.571).setCoordIndex(getlacr_Geo_5_199_coordIndex()).setNormalIndex(getlacr_Geo_5_199_normalIndex())
          .setCoord(new Coordinate("lacr_Coord").setPoint(getlacr_Coord_6_199_point()))
          .setNormal(new Normal().setVector(getNormal_6_200_vector()))))
      .addChild(new Shape("lcalc")
        .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("lcalc_Geo").setDEF("lcalc_Geo").setCreaseAngle(1.571).setCoordIndex(getlcalc_Geo_5_205_coordIndex()).setNormalIndex(getlcalc_Geo_5_205_normalIndex())
          .setCoord(new Coordinate("lcalc_Coord").setPoint(getlcalc_Coord_6_205_point()))
          .setNormal(new Normal().setVector(getNormal_6_206_vector()))))
      .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_5_211_coordIndex()).setNormalIndex(getlcaninec_Geo_5_211_normalIndex())
          .setCoord(new Coordinate("lcaninec_Coord").setPoint(getlcaninec_Coord_6_211_point()))
          .setNormal(new Normal().setVector(getNormal_6_212_vector()))))
      .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_5_217_coordIndex()).setNormalIndex(getlcaniner_Geo_5_217_normalIndex())
          .setCoord(new Coordinate("lcaniner_Coord").setPoint(getlcaniner_Coord_6_217_point()))
          .setNormal(new Normal().setVector(getNormal_6_218_vector()))))
      .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_5_223_coordIndex()).setNormalIndex(getlcaninlc_Geo_5_223_normalIndex())
          .setCoord(new Coordinate("lcaninlc_Coord").setPoint(getlcaninlc_Coord_6_223_point()))
          .setNormal(new Normal().setVector(getNormal_6_224_vector()))))
      .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_5_229_coordIndex()).setNormalIndex(getlcaninlr_Geo_5_229_normalIndex())
          .setCoord(new Coordinate("lcaninlr_Coord").setPoint(getlcaninlr_Coord_6_229_point()))
          .setNormal(new Normal().setVector(getNormal_6_230_vector()))))
      .addChild(new Shape("lcaptate")
        .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("lcaptate_Geo").setDEF("lcaptate_Geo").setCreaseAngle(1.571).setCoordIndex(getlcaptate_Geo_5_235_coordIndex()).setNormalIndex(getlcaptate_Geo_5_235_normalIndex())
          .setCoord(new Coordinate("lcaptate_Coord").setPoint(getlcaptate_Coord_6_235_point()))
          .setNormal(new Normal().setVector(getNormal_6_236_vector()))))
      .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_5_241_coordIndex()).setNormalIndex(getlcartend_Geo_5_241_normalIndex())
          .setCoord(new Coordinate("lcartend_Coord").setPoint(getlcartend_Coord_6_241_point()))
          .setNormal(new Normal().setVector(getNormal_6_242_vector()))))
      .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_5_247_coordIndex()).setNormalIndex(getlccart_Geo_5_247_normalIndex())
          .setCoord(new Coordinate("lccart_Coord").setPoint(getlccart_Coord_6_247_point()))
          .setNormal(new Normal().setVector(getNormal_6_248_vector()))))
      .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_5_253_coordIndex()).setNormalIndex(getlccart2_Geo_5_253_normalIndex())
          .setCoord(new Coordinate("lccart2_Coord").setPoint(getlccart2_Coord_6_253_point()))
          .setNormal(new Normal().setVector(getNormal_6_254_vector()))))
      .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_5_259_coordIndex()).setNormalIndex(getlcenincc_Geo_5_259_normalIndex())
          .setCoord(new Coordinate("lcenincc_Coord").setPoint(getlcenincc_Coord_6_259_point()))
          .setNormal(new Normal().setVector(getNormal_6_260_vector()))))
      .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_5_265_coordIndex()).setNormalIndex(getlcenincr_Geo_5_265_normalIndex())
          .setCoord(new Coordinate("lcenincr_Coord").setPoint(getlcenincr_Coord_6_265_point()))
          .setNormal(new Normal().setVector(getNormal_6_266_vector()))))
      .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_5_271_coordIndex()).setNormalIndex(getlceninlc_Geo_5_271_normalIndex())
          .setCoord(new Coordinate("lceninlc_Coord").setPoint(getlceninlc_Coord_6_271_point()))
          .setNormal(new Normal().setVector(getNormal_6_272_vector()))))
      .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_5_277_coordIndex()).setNormalIndex(getlceninlr_Geo_5_277_normalIndex())
          .setCoord(new Coordinate("lceninlr_Coord").setPoint(getlceninlr_Coord_6_277_point()))
          .setNormal(new Normal().setVector(getNormal_6_278_vector()))))
      .addChild(new Shape("lclavcle")
        .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("lclavcle_Geo").setDEF("lclavcle_Geo").setCreaseAngle(1.571).setCoordIndex(getlclavcle_Geo_5_283_coordIndex()).setNormalIndex(getlclavcle_Geo_5_283_normalIndex())
          .setCoord(new Coordinate("lclavcle_Coord").setPoint(getlclavcle_Coord_6_283_point()))
          .setNormal(new Normal().setVector(getNormal_6_284_vector()))))
      .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_5_289_coordIndex()).setNormalIndex(getlcoscart_Geo_5_289_normalIndex())
          .setCoord(new Coordinate("lcoscart_Coord").setPoint(getlcoscart_Coord_6_289_point()))
          .setNormal(new Normal().setVector(getNormal_6_290_vector()))))
      .addChild(new Shape("lcuboid")
        .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("lcuboid_Geo").setDEF("lcuboid_Geo").setCreaseAngle(1.571).setCoordIndex(getlcuboid_Geo_5_295_coordIndex()).setNormalIndex(getlcuboid_Geo_5_295_normalIndex())
          .setCoord(new Coordinate("lcuboid_Coord").setPoint(getlcuboid_Coord_6_295_point()))
          .setNormal(new Normal().setVector(getNormal_6_296_vector()))))
      .addChild(new Shape("ldphal")
        .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("ldphal_Geo").setDEF("ldphal_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal_Geo_5_301_coordIndex()).setNormalIndex(getldphal_Geo_5_301_normalIndex())
          .setCoord(new Coordinate("ldphal_Coord").setPoint(getldphal_Coord_6_301_point()))
          .setNormal(new Normal().setVector(getNormal_6_302_vector()))))
      .addChild(new Shape("ldphal2")
        .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("ldphal2_Geo").setDEF("ldphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal2_Geo_5_307_coordIndex()).setNormalIndex(getldphal2_Geo_5_307_normalIndex())
          .setCoord(new Coordinate("ldphal2_Coord").setPoint(getldphal2_Coord_6_307_point()))
          .setNormal(new Normal().setVector(getNormal_6_308_vector()))))
      .addChild(new Shape("ldphal3")
        .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("ldphal3_Geo").setDEF("ldphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal3_Geo_5_313_coordIndex()).setNormalIndex(getldphal3_Geo_5_313_normalIndex())
          .setCoord(new Coordinate("ldphal3_Coord").setPoint(getldphal3_Coord_6_313_point()))
          .setNormal(new Normal().setVector(getNormal_6_314_vector()))))
      .addChild(new Shape("ldphal4")
        .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("ldphal4_Geo").setDEF("ldphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal4_Geo_5_319_coordIndex()).setNormalIndex(getldphal4_Geo_5_319_normalIndex())
          .setCoord(new Coordinate("ldphal4_Coord").setPoint(getldphal4_Coord_6_319_point()))
          .setNormal(new Normal().setVector(getNormal_6_320_vector()))))
      .addChild(new Shape("ldphal5")
        .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("ldphal5_Geo").setDEF("ldphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getldphal5_Geo_5_325_coordIndex()).setNormalIndex(getldphal5_Geo_5_325_normalIndex())
          .setCoord(new Coordinate("ldphal5_Coord").setPoint(getldphal5_Coord_6_325_point()))
          .setNormal(new Normal().setVector(getNormal_6_326_vector()))))
      .addChild(new Shape("lfdphal")
        .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("lfdphal_Geo").setDEF("lfdphal_Geo").setCreaseAngle(1.571).setCoordIndex(getlfdphal_Geo_5_331_coordIndex()).setNormalIndex(getlfdphal_Geo_5_331_normalIndex())
          .setCoord(new Coordinate("lfdphal_Coord").setPoint(getlfdphal_Coord_6_331_point()))
          .setNormal(new Normal().setVector(getNormal_6_332_vector()))))
      .addChild(new Shape("lfdphal2")
        .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("lfdphal2_Geo").setDEF("lfdphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlfdphal2_Geo_5_337_coordIndex()).setNormalIndex(getlfdphal2_Geo_5_337_normalIndex())
          .setCoord(new Coordinate("lfdphal2_Coord").setPoint(getlfdphal2_Coord_6_337_point()))
          .setNormal(new Normal().setVector(getNormal_6_338_vector()))))
      .addChild(new Shape("lfdphal3")
        .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("lfdphal3_Geo").setDEF("lfdphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlfdphal3_Geo_5_343_coordIndex()).setNormalIndex(getlfdphal3_Geo_5_343_normalIndex())
          .setCoord(new Coordinate("lfdphal3_Coord").setPoint(getlfdphal3_Coord_6_343_point()))
          .setNormal(new Normal().setVector(getNormal_6_344_vector()))))
      .addChild(new Shape("lfdphal4")
        .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("lfdphal4_Geo").setDEF("lfdphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlfdphal4_Geo_5_349_coordIndex()).setNormalIndex(getlfdphal4_Geo_5_349_normalIndex())
          .setCoord(new Coordinate("lfdphal4_Coord").setPoint(getlfdphal4_Coord_6_349_point()))
          .setNormal(new Normal().setVector(getNormal_6_350_vector()))))
      .addChild(new Shape("lfemur")
        .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("lfemur_Geo").setDEF("lfemur_Geo").setCreaseAngle(1.571).setCoordIndex(getlfemur_Geo_5_355_coordIndex()).setNormalIndex(getlfemur_Geo_5_355_normalIndex())
          .setCoord(new Coordinate("lfemur_Coord").setPoint(getlfemur_Coord_6_355_point()))
          .setNormal(new Normal().setVector(getNormal_6_356_vector()))))
      .addChild(new Shape("lfibula")
        .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("lfibula_Geo").setDEF("lfibula_Geo").setCreaseAngle(1.571).setCoordIndex(getlfibula_Geo_5_361_coordIndex()).setNormalIndex(getlfibula_Geo_5_361_normalIndex())
          .setCoord(new Coordinate("lfibula_Coord").setPoint(getlfibula_Coord_6_361_point()))
          .setNormal(new Normal().setVector(getNormal_6_362_vector()))))
      .addChild(new Shape("lfmet")
        .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("lfmet_Geo").setDEF("lfmet_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmet_Geo_5_367_coordIndex()).setNormalIndex(getlfmet_Geo_5_367_normalIndex())
          .setCoord(new Coordinate("lfmet_Coord").setPoint(getlfmet_Coord_6_367_point()))
          .setNormal(new Normal().setVector(getNormal_6_368_vector()))))
      .addChild(new Shape("lfmphal")
        .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("lfmphal_Geo").setDEF("lfmphal_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmphal_Geo_5_373_coordIndex()).setNormalIndex(getlfmphal_Geo_5_373_normalIndex())
          .setCoord(new Coordinate("lfmphal_Coord").setPoint(getlfmphal_Coord_6_373_point()))
          .setNormal(new Normal().setVector(getNormal_6_374_vector()))))
      .addChild(new Shape("lfmphal2")
        .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("lfmphal2_Geo").setDEF("lfmphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmphal2_Geo_5_379_coordIndex()).setNormalIndex(getlfmphal2_Geo_5_379_normalIndex())
          .setCoord(new Coordinate("lfmphal2_Coord").setPoint(getlfmphal2_Coord_6_379_point()))
          .setNormal(new Normal().setVector(getNormal_6_380_vector()))))
      .addChild(new Shape("lfmphal3")
        .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("lfmphal3_Geo").setDEF("lfmphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmphal3_Geo_5_385_coordIndex()).setNormalIndex(getlfmphal3_Geo_5_385_normalIndex())
          .setCoord(new Coordinate("lfmphal3_Coord").setPoint(getlfmphal3_Coord_6_385_point()))
          .setNormal(new Normal().setVector(getNormal_6_386_vector()))))
      .addChild(new Shape("lfmphal4")
        .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("lfmphal4_Geo").setDEF("lfmphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlfmphal4_Geo_5_391_coordIndex()).setNormalIndex(getlfmphal4_Geo_5_391_normalIndex())
          .setCoord(new Coordinate("lfmphal4_Coord").setPoint(getlfmphal4_Coord_6_391_point()))
          .setNormal(new Normal().setVector(getNormal_6_392_vector()))))
      .addChild(new Shape("lfpprox")
        .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("lfpprox_Geo").setDEF("lfpprox_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox_Geo_5_397_coordIndex()).setNormalIndex(getlfpprox_Geo_5_397_normalIndex())
          .setCoord(new Coordinate("lfpprox_Coord").setPoint(getlfpprox_Coord_6_397_point()))
          .setNormal(new Normal().setVector(getNormal_6_398_vector()))))
      .addChild(new Shape("lfpprox2")
        .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("lfpprox2_Geo").setDEF("lfpprox2_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox2_Geo_5_403_coordIndex()).setNormalIndex(getlfpprox2_Geo_5_403_normalIndex())
          .setCoord(new Coordinate("lfpprox2_Coord").setPoint(getlfpprox2_Coord_6_403_point()))
          .setNormal(new Normal().setVector(getNormal_6_404_vector()))))
      .addChild(new Shape("lfpprox3")
        .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("lfpprox3_Geo").setDEF("lfpprox3_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox3_Geo_5_409_coordIndex()).setNormalIndex(getlfpprox3_Geo_5_409_normalIndex())
          .setCoord(new Coordinate("lfpprox3_Coord").setPoint(getlfpprox3_Coord_6_409_point()))
          .setNormal(new Normal().setVector(getNormal_6_410_vector()))))
      .addChild(new Shape("lfpprox4")
        .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("lfpprox4_Geo").setDEF("lfpprox4_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox4_Geo_5_415_coordIndex()).setNormalIndex(getlfpprox4_Geo_5_415_normalIndex())
          .setCoord(new Coordinate("lfpprox4_Coord").setPoint(getlfpprox4_Coord_6_415_point()))
          .setNormal(new Normal().setVector(getNormal_6_416_vector()))))
      .addChild(new Shape("lfpprox5")
        .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("lfpprox5_Geo").setDEF("lfpprox5_Geo").setCreaseAngle(1.571).setCoordIndex(getlfpprox5_Geo_5_421_coordIndex()).setNormalIndex(getlfpprox5_Geo_5_421_normalIndex())
          .setCoord(new Coordinate("lfpprox5_Coord").setPoint(getlfpprox5_Coord_6_421_point()))
          .setNormal(new Normal().setVector(getNormal_6_422_vector()))))
      .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_5_427_coordIndex()).setNormalIndex(getlfreecrt_Geo_5_427_normalIndex())
          .setCoord(new Coordinate("lfreecrt_Coord").setPoint(getlfreecrt_Coord_6_427_point()))
          .setNormal(new Normal().setVector(getNormal_6_428_vector()))))
      .addChild(new Shape("lhamate")
        .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("lhamate_Geo").setDEF("lhamate_Geo").setCreaseAngle(1.571).setCoordIndex(getlhamate_Geo_5_433_coordIndex()).setNormalIndex(getlhamate_Geo_5_433_normalIndex())
          .setCoord(new Coordinate("lhamate_Coord").setPoint(getlhamate_Coord_6_433_point()))
          .setNormal(new Normal().setVector(getNormal_6_434_vector()))))
      .addChild(new Shape("lhumrus")
        .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("lhumrus_Geo").setDEF("lhumrus_Geo").setCreaseAngle(1.571).setCoordIndex(getlhumrus_Geo_5_439_coordIndex()).setNormalIndex(getlhumrus_Geo_5_439_normalIndex())
          .setCoord(new Coordinate("lhumrus_Coord").setPoint(getlhumrus_Coord_6_439_point()))
          .setNormal(new Normal().setVector(getNormal_6_440_vector()))))
      .addChild(new Shape("licun")
        .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("licun_Geo").setDEF("licun_Geo").setCreaseAngle(1.571).setCoordIndex(getlicun_Geo_5_445_coordIndex()).setNormalIndex(getlicun_Geo_5_445_normalIndex())
          .setCoord(new Coordinate("licun_Coord").setPoint(getlicun_Coord_6_445_point()))
          .setNormal(new Normal().setVector(getNormal_6_446_vector()))))
      .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_5_451_coordIndex()).setNormalIndex(getllatincc_Geo_5_451_normalIndex())
          .setCoord(new Coordinate("llatincc_Coord").setPoint(getllatincc_Coord_6_451_point()))
          .setNormal(new Normal().setVector(getNormal_6_452_vector()))))
      .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_5_457_coordIndex()).setNormalIndex(getllatincr_Geo_5_457_normalIndex())
          .setCoord(new Coordinate("llatincr_Coord").setPoint(getllatincr_Coord_6_457_point()))
          .setNormal(new Normal().setVector(getNormal_6_458_vector()))))
      .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_5_463_coordIndex()).setNormalIndex(getllatinlc_Geo_5_463_normalIndex())
          .setCoord(new Coordinate("llatinlc_Coord").setPoint(getllatinlc_Coord_6_463_point()))
          .setNormal(new Normal().setVector(getNormal_6_464_vector()))))
      .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_5_469_coordIndex()).setNormalIndex(getllatinlr_Geo_5_469_normalIndex())
          .setCoord(new Coordinate("llatinlr_Coord").setPoint(getllatinlr_Coord_6_469_point()))
          .setNormal(new Normal().setVector(getNormal_6_470_vector()))))
      .addChild(new Shape("llcun")
        .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("llcun_Geo").setDEF("llcun_Geo").setCreaseAngle(1.571).setCoordIndex(getllcun_Geo_5_475_coordIndex()).setNormalIndex(getllcun_Geo_5_475_normalIndex())
          .setCoord(new Coordinate("llcun_Coord").setPoint(getllcun_Coord_6_475_point()))
          .setNormal(new Normal().setVector(getNormal_6_476_vector()))))
      .addChild(new Shape("llunate")
        .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("llunate_Geo").setDEF("llunate_Geo").setCreaseAngle(1.571).setCoordIndex(getllunate_Geo_5_481_coordIndex()).setNormalIndex(getllunate_Geo_5_481_normalIndex())
          .setCoord(new Coordinate("llunate_Coord").setPoint(getllunate_Coord_6_481_point()))
          .setNormal(new Normal().setVector(getNormal_6_482_vector()))))
      .addChild(new Shape("lmc")
        .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("lmc_Geo").setDEF("lmc_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc_Geo_5_487_coordIndex()).setNormalIndex(getlmc_Geo_5_487_normalIndex())
          .setCoord(new Coordinate("lmc_Coord").setPoint(getlmc_Coord_6_487_point()))
          .setNormal(new Normal().setVector(getNormal_6_488_vector()))))
      .addChild(new Shape("lmc2")
        .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("lmc2_Geo").setDEF("lmc2_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc2_Geo_5_493_coordIndex()).setNormalIndex(getlmc2_Geo_5_493_normalIndex())
          .setCoord(new Coordinate("lmc2_Coord").setPoint(getlmc2_Coord_6_493_point()))
          .setNormal(new Normal().setVector(getNormal_6_494_vector()))))
      .addChild(new Shape("lmc3")
        .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("lmc3_Geo").setDEF("lmc3_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc3_Geo_5_499_coordIndex()).setNormalIndex(getlmc3_Geo_5_499_normalIndex())
          .setCoord(new Coordinate("lmc3_Coord").setPoint(getlmc3_Coord_6_499_point()))
          .setNormal(new Normal().setVector(getNormal_6_500_vector()))))
      .addChild(new Shape("lmc4")
        .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("lmc4_Geo").setDEF("lmc4_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc4_Geo_5_505_coordIndex()).setNormalIndex(getlmc4_Geo_5_505_normalIndex())
          .setCoord(new Coordinate("lmc4_Coord").setPoint(getlmc4_Coord_6_505_point()))
          .setNormal(new Normal().setVector(getNormal_6_506_vector()))))
      .addChild(new Shape("lmc5")
        .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("lmc5_Geo").setDEF("lmc5_Geo").setCreaseAngle(1.571).setCoordIndex(getlmc5_Geo_5_511_coordIndex()).setNormalIndex(getlmc5_Geo_5_511_normalIndex())
          .setCoord(new Coordinate("lmc5_Coord").setPoint(getlmc5_Coord_6_511_point()))
          .setNormal(new Normal().setVector(getNormal_6_512_vector()))))
      .addChild(new Shape("lmcun")
        .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("lmcun_Geo").setDEF("lmcun_Geo").setCreaseAngle(1.571).setCoordIndex(getlmcun_Geo_5_517_coordIndex()).setNormalIndex(getlmcun_Geo_5_517_normalIndex())
          .setCoord(new Coordinate("lmcun_Coord").setPoint(getlmcun_Coord_6_517_point()))
          .setNormal(new Normal().setVector(getNormal_6_518_vector()))))
      .addChild(new Shape("lmet2")
        .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("lmet2_Geo").setDEF("lmet2_Geo").setCreaseAngle(1.571).setCoordIndex(getlmet2_Geo_5_523_coordIndex()).setNormalIndex(getlmet2_Geo_5_523_normalIndex())
          .setCoord(new Coordinate("lmet2_Coord").setPoint(getlmet2_Coord_6_523_point()))
          .setNormal(new Normal().setVector(getNormal_6_524_vector()))))
      .addChild(new Shape("lmet3")
        .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("lmet3_Geo").setDEF("lmet3_Geo").setCreaseAngle(1.571).setCoordIndex(getlmet3_Geo_5_529_coordIndex()).setNormalIndex(getlmet3_Geo_5_529_normalIndex())
          .setCoord(new Coordinate("lmet3_Coord").setPoint(getlmet3_Coord_6_529_point()))
          .setNormal(new Normal().setVector(getNormal_6_530_vector()))))
      .addChild(new Shape("lmet4")
        .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("lmet4_Geo").setDEF("lmet4_Geo").setCreaseAngle(1.571).setCoordIndex(getlmet4_Geo_5_535_coordIndex()).setNormalIndex(getlmet4_Geo_5_535_normalIndex())
          .setCoord(new Coordinate("lmet4_Coord").setPoint(getlmet4_Coord_6_535_point()))
          .setNormal(new Normal().setVector(getNormal_6_536_vector()))))
      .addChild(new Shape("lmet5")
        .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("lmet5_Geo").setDEF("lmet5_Geo").setCreaseAngle(1.571).setCoordIndex(getlmet5_Geo_5_541_coordIndex()).setNormalIndex(getlmet5_Geo_5_541_normalIndex())
          .setCoord(new Coordinate("lmet5_Coord").setPoint(getlmet5_Coord_6_541_point()))
          .setNormal(new Normal().setVector(getNormal_6_542_vector()))))
      .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_5_547_coordIndex()).setNormalIndex(getlmolar1c_Geo_5_547_normalIndex())
          .setCoord(new Coordinate("lmolar1c_Coord").setPoint(getlmolar1c_Coord_6_547_point()))
          .setNormal(new Normal().setVector(getNormal_6_548_vector()))))
      .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_5_553_coordIndex()).setNormalIndex(getlmolar1r_Geo_5_553_normalIndex())
          .setCoord(new Coordinate("lmolar1r_Coord").setPoint(getlmolar1r_Coord_6_553_point()))
          .setNormal(new Normal().setVector(getNormal_6_554_vector()))))
      .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_5_559_coordIndex()).setNormalIndex(getlmolar2c_Geo_5_559_normalIndex())
          .setCoord(new Coordinate("lmolar2c_Coord").setPoint(getlmolar2c_Coord_6_559_point()))
          .setNormal(new Normal().setVector(getNormal_6_560_vector()))))
      .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_5_565_coordIndex()).setNormalIndex(getlmolar2r_Geo_5_565_normalIndex())
          .setCoord(new Coordinate("lmolar2r_Coord").setPoint(getlmolar2r_Coord_6_565_point()))
          .setNormal(new Normal().setVector(getNormal_6_566_vector()))))
      .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_5_571_coordIndex()).setNormalIndex(getlmolar3c_Geo_5_571_normalIndex())
          .setCoord(new Coordinate("lmolar3c_Coord").setPoint(getlmolar3c_Coord_6_571_point()))
          .setNormal(new Normal().setVector(getNormal_6_572_vector()))))
      .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_5_577_coordIndex()).setNormalIndex(getlmolar3r_Geo_5_577_normalIndex())
          .setCoord(new Coordinate("lmolar3r_Coord").setPoint(getlmolar3r_Coord_6_577_point()))
          .setNormal(new Normal().setVector(getNormal_6_578_vector()))))
      .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_5_583_coordIndex()).setNormalIndex(getlmolr1lc_Geo_5_583_normalIndex())
          .setCoord(new Coordinate("lmolr1lc_Coord").setPoint(getlmolr1lc_Coord_6_583_point()))
          .setNormal(new Normal().setVector(getNormal_6_584_vector()))))
      .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_5_589_coordIndex()).setNormalIndex(getlmolr1lr_Geo_5_589_normalIndex())
          .setCoord(new Coordinate("lmolr1lr_Coord").setPoint(getlmolr1lr_Coord_6_589_point()))
          .setNormal(new Normal().setVector(getNormal_6_590_vector()))))
      .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_5_595_coordIndex()).setNormalIndex(getlmolr2lc_Geo_5_595_normalIndex())
          .setCoord(new Coordinate("lmolr2lc_Coord").setPoint(getlmolr2lc_Coord_6_595_point()))
          .setNormal(new Normal().setVector(getNormal_6_596_vector()))))
      .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_5_601_coordIndex()).setNormalIndex(getlmolr2lr_Geo_5_601_normalIndex())
          .setCoord(new Coordinate("lmolr2lr_Coord").setPoint(getlmolr2lr_Coord_6_601_point()))
          .setNormal(new Normal().setVector(getNormal_6_602_vector()))))
      .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_5_607_coordIndex()).setNormalIndex(getlmolr3lc_Geo_5_607_normalIndex())
          .setCoord(new Coordinate("lmolr3lc_Coord").setPoint(getlmolr3lc_Coord_6_607_point()))
          .setNormal(new Normal().setVector(getNormal_6_608_vector()))))
      .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_5_613_coordIndex()).setNormalIndex(getlmolr3lr_Geo_5_613_normalIndex())
          .setCoord(new Coordinate("lmolr3lr_Coord").setPoint(getlmolr3lr_Coord_6_613_point()))
          .setNormal(new Normal().setVector(getNormal_6_614_vector()))))
      .addChild(new Shape("lmphal2")
        .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("lmphal2_Geo").setDEF("lmphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal2_Geo_5_619_coordIndex()).setNormalIndex(getlmphal2_Geo_5_619_normalIndex())
          .setCoord(new Coordinate("lmphal2_Coord").setPoint(getlmphal2_Coord_6_619_point()))
          .setNormal(new Normal().setVector(getNormal_6_620_vector()))))
      .addChild(new Shape("lmphal3")
        .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("lmphal3_Geo").setDEF("lmphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal3_Geo_5_625_coordIndex()).setNormalIndex(getlmphal3_Geo_5_625_normalIndex())
          .setCoord(new Coordinate("lmphal3_Coord").setPoint(getlmphal3_Coord_6_625_point()))
          .setNormal(new Normal().setVector(getNormal_6_626_vector()))))
      .addChild(new Shape("lmphal4")
        .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("lmphal4_Geo").setDEF("lmphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal4_Geo_5_631_coordIndex()).setNormalIndex(getlmphal4_Geo_5_631_normalIndex())
          .setCoord(new Coordinate("lmphal4_Coord").setPoint(getlmphal4_Coord_6_631_point()))
          .setNormal(new Normal().setVector(getNormal_6_632_vector()))))
      .addChild(new Shape("lmphal5")
        .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("lmphal5_Geo").setDEF("lmphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getlmphal5_Geo_5_637_coordIndex()).setNormalIndex(getlmphal5_Geo_5_637_normalIndex())
          .setCoord(new Coordinate("lmphal5_Coord").setPoint(getlmphal5_Coord_6_637_point()))
          .setNormal(new Normal().setVector(getNormal_6_638_vector()))))
      .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_5_643_coordIndex()).setNormalIndex(getlnaviclr_Geo_5_643_normalIndex())
          .setCoord(new Coordinate("lnaviclr_Coord").setPoint(getlnaviclr_Coord_6_643_point()))
          .setNormal(new Normal().setVector(getNormal_6_644_vector()))))
      .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_5_649_coordIndex()).setNormalIndex(getloscoxae_Geo_5_649_normalIndex())
          .setCoord(new Coordinate("loscoxae_Coord").setPoint(getloscoxae_Coord_6_649_point()))
          .setNormal(new Normal().setVector(getNormal_6_650_vector()))))
      .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_5_655_coordIndex()).setNormalIndex(getlowleg_Geo_5_655_normalIndex())
          .setCoord(new Coordinate("lowleg_Coord").setPoint(getlowleg_Coord_6_655_point()))
          .setNormal(new Normal().setVector(getNormal_6_656_vector()))))
      .addChild(new Shape("lpisform")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.0,0.0).setShininess(0.05).setSpecularColor(0.349,0.349,0.349)))
        .setGeometry(new IndexedFaceSet("lpisform_Geo").setDEF("lpisform_Geo").setCreaseAngle(1.571).setCoordIndex(getlpisform_Geo_5_661_coordIndex()).setNormalIndex(getlpisform_Geo_5_661_normalIndex())
          .setCoord(new Coordinate("lpisform_Coord").setPoint(getlpisform_Coord_6_661_point()))
          .setNormal(new Normal().setVector(getNormal_6_662_vector()))))
      .addChild(new Shape("lpphal")
        .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("lpphal_Geo").setDEF("lpphal_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal_Geo_5_667_coordIndex()).setNormalIndex(getlpphal_Geo_5_667_normalIndex())
          .setCoord(new Coordinate("lpphal_Coord").setPoint(getlpphal_Coord_6_667_point()))
          .setNormal(new Normal().setVector(getNormal_6_668_vector()))))
      .addChild(new Shape("lpphal2")
        .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("lpphal2_Geo").setDEF("lpphal2_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal2_Geo_5_673_coordIndex()).setNormalIndex(getlpphal2_Geo_5_673_normalIndex())
          .setCoord(new Coordinate("lpphal2_Coord").setPoint(getlpphal2_Coord_6_673_point()))
          .setNormal(new Normal().setVector(getNormal_6_674_vector()))))
      .addChild(new Shape("lpphal3")
        .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("lpphal3_Geo").setDEF("lpphal3_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal3_Geo_5_679_coordIndex()).setNormalIndex(getlpphal3_Geo_5_679_normalIndex())
          .setCoord(new Coordinate("lpphal3_Coord").setPoint(getlpphal3_Coord_6_679_point()))
          .setNormal(new Normal().setVector(getNormal_6_680_vector()))))
      .addChild(new Shape("lpphal4")
        .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("lpphal4_Geo").setDEF("lpphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal4_Geo_5_685_coordIndex()).setNormalIndex(getlpphal4_Geo_5_685_normalIndex())
          .setCoord(new Coordinate("lpphal4_Coord").setPoint(getlpphal4_Coord_6_685_point()))
          .setNormal(new Normal().setVector(getNormal_6_686_vector()))))
      .addChild(new Shape("lpphal5")
        .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("lpphal5_Geo").setDEF("lpphal5_Geo").setCreaseAngle(1.571).setCoordIndex(getlpphal5_Geo_5_691_coordIndex()).setNormalIndex(getlpphal5_Geo_5_691_normalIndex())
          .setCoord(new Coordinate("lpphal5_Coord").setPoint(getlpphal5_Coord_6_691_point()))
          .setNormal(new Normal().setVector(getNormal_6_692_vector()))))
      .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_5_697_coordIndex()).setNormalIndex(getlprem1lc_Geo_5_697_normalIndex())
          .setCoord(new Coordinate("lprem1lc_Coord").setPoint(getlprem1lc_Coord_6_697_point()))
          .setNormal(new Normal().setVector(getNormal_6_698_vector()))))
      .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_5_703_coordIndex()).setNormalIndex(getlprem1lr_Geo_5_703_normalIndex())
          .setCoord(new Coordinate("lprem1lr_Coord").setPoint(getlprem1lr_Coord_6_703_point()))
          .setNormal(new Normal().setVector(getNormal_6_704_vector()))))
      .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_5_709_coordIndex()).setNormalIndex(getlprem2lc_Geo_5_709_normalIndex())
          .setCoord(new Coordinate("lprem2lc_Coord").setPoint(getlprem2lc_Coord_6_709_point()))
          .setNormal(new Normal().setVector(getNormal_6_710_vector()))))
      .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_5_715_coordIndex()).setNormalIndex(getlprem2lr_Geo_5_715_normalIndex())
          .setCoord(new Coordinate("lprem2lr_Coord").setPoint(getlprem2lr_Coord_6_715_point()))
          .setNormal(new Normal().setVector(getNormal_6_716_vector()))))
      .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_5_721_coordIndex()).setNormalIndex(getlpreo1lc_Geo_5_721_normalIndex())
          .setCoord(new Coordinate("lpreo1lc_Coord").setPoint(getlpreo1lc_Coord_6_721_point()))
          .setNormal(new Normal().setVector(getNormal_6_722_vector()))))
      .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_5_727_coordIndex()).setNormalIndex(getlpreol1r_Geo_5_727_normalIndex())
          .setCoord(new Coordinate("lpreol1r_Coord").setPoint(getlpreol1r_Coord_6_727_point()))
          .setNormal(new Normal().setVector(getNormal_6_728_vector()))))
      .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_5_733_coordIndex()).setNormalIndex(getlpreol2c_Geo_5_733_normalIndex())
          .setCoord(new Coordinate("lpreol2c_Coord").setPoint(getlpreol2c_Coord_6_733_point()))
          .setNormal(new Normal().setVector(getNormal_6_734_vector()))))
      .addChild(new Shape("lpreol2r")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.4).setDiffuseColor(1.0,0.0,0.0).setShininess(0.05)))
        .setGeometry(new IndexedFaceSet("lpreol2r_Geo").setDEF("lpreol2r_Geo").setCreaseAngle(1.571).setCoordIndex(getlpreol2r_Geo_5_739_coordIndex()).setNormalIndex(getlpreol2r_Geo_5_739_normalIndex())
          .setCoord(new Coordinate("lpreol2r_Coord").setPoint(getlpreol2r_Coord_6_739_point()))
          .setNormal(new Normal().setVector(getNormal_6_740_vector()))))
      .addChild(new Shape("lradius")
        .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("lradius_Geo").setDEF("lradius_Geo").setCreaseAngle(1.571).setCoordIndex(getlradius_Geo_5_745_coordIndex()).setNormalIndex(getlradius_Geo_5_745_normalIndex())
          .setCoord(new Coordinate("lradius_Coord").setPoint(getlradius_Coord_6_745_point()))
          .setNormal(new Normal().setVector(getNormal_6_746_vector()))))
      .addChild(new Shape("lrib10")
        .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("lrib10_Geo").setDEF("lrib10_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib10_Geo_5_751_coordIndex()).setNormalIndex(getlrib10_Geo_5_751_normalIndex())
          .setCoord(new Coordinate("lrib10_Coord").setPoint(getlrib10_Coord_6_751_point()))
          .setNormal(new Normal().setVector(getNormal_6_752_vector()))))
      .addChild(new Shape("lrib11")
        .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("lrib11_Geo").setDEF("lrib11_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib11_Geo_5_757_coordIndex()).setNormalIndex(getlrib11_Geo_5_757_normalIndex())
          .setCoord(new Coordinate("lrib11_Coord").setPoint(getlrib11_Coord_6_757_point()))
          .setNormal(new Normal().setVector(getNormal_6_758_vector()))))
      .addChild(new Shape("lrib12")
        .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("lrib12_Geo").setDEF("lrib12_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib12_Geo_5_763_coordIndex()).setNormalIndex(getlrib12_Geo_5_763_normalIndex())
          .setCoord(new Coordinate("lrib12_Coord").setPoint(getlrib12_Coord_6_763_point()))
          .setNormal(new Normal().setVector(getNormal_6_764_vector()))))
      .addChild(new Shape("lrib2")
        .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("lrib2_Geo").setDEF("lrib2_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib2_Geo_5_769_coordIndex()).setNormalIndex(getlrib2_Geo_5_769_normalIndex())
          .setCoord(new Coordinate("lrib2_Coord").setPoint(getlrib2_Coord_6_769_point()))
          .setNormal(new Normal().setVector(getNormal_6_770_vector()))))
      .addChild(new Shape("lrib3")
        .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("lrib3_Geo").setDEF("lrib3_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib3_Geo_5_775_coordIndex()).setNormalIndex(getlrib3_Geo_5_775_normalIndex())
          .setCoord(new Coordinate("lrib3_Coord").setPoint(getlrib3_Coord_6_775_point()))
          .setNormal(new Normal().setVector(getNormal_6_776_vector()))))
      .addChild(new Shape("lrib4")
        .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("lrib4_Geo").setDEF("lrib4_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib4_Geo_5_781_coordIndex()).setNormalIndex(getlrib4_Geo_5_781_normalIndex())
          .setCoord(new Coordinate("lrib4_Coord").setPoint(getlrib4_Coord_6_781_point()))
          .setNormal(new Normal().setVector(getNormal_6_782_vector()))))
      .addChild(new Shape("lrib5")
        .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("lrib5_Geo").setDEF("lrib5_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib5_Geo_5_787_coordIndex()).setNormalIndex(getlrib5_Geo_5_787_normalIndex())
          .setCoord(new Coordinate("lrib5_Coord").setPoint(getlrib5_Coord_6_787_point()))
          .setNormal(new Normal().setVector(getNormal_6_788_vector()))))
      .addChild(new Shape("lrib6")
        .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("lrib6_Geo").setDEF("lrib6_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib6_Geo_5_793_coordIndex()).setNormalIndex(getlrib6_Geo_5_793_normalIndex())
          .setCoord(new Coordinate("lrib6_Coord").setPoint(getlrib6_Coord_6_793_point()))
          .setNormal(new Normal().setVector(getNormal_6_794_vector()))))
      .addChild(new Shape("lrib7")
        .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("lrib7_Geo").setDEF("lrib7_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib7_Geo_5_799_coordIndex()).setNormalIndex(getlrib7_Geo_5_799_normalIndex())
          .setCoord(new Coordinate("lrib7_Coord").setPoint(getlrib7_Coord_6_799_point()))
          .setNormal(new Normal().setVector(getNormal_6_800_vector()))))
      .addChild(new Shape("lrib8")
        .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("lrib8_Geo").setDEF("lrib8_Geo").setCreaseAngle(1.571).setCoordIndex(getlrib8_Geo_5_805_coordIndex()).setNormalIndex(getlrib8_Geo_5_805_normalIndex())
          .setCoord(new Coordinate("lrib8_Coord").setPoint(getlrib8_Coord_6_805_point()))
          .setNormal(new Normal().setVector(getNormal_6_806_vector()))))
      .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_5_811_coordIndex()).setNormalIndex(getlrib9_Geo_5_811_normalIndex())
          .setCoord(new Coordinate("lrib9_Coord").setPoint(getlrib9_Coord_6_811_point()))
          .setNormal(new Normal().setVector(getNormal_6_812_vector()))))
      .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_5_817_coordIndex()).setNormalIndex(getlrrib_Geo_5_817_normalIndex())
          .setCoord(new Coordinate("lrrib_Coord").setPoint(getlrrib_Coord_6_817_point()))
          .setNormal(new Normal().setVector(getNormal_6_818_vector()))))
      .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_5_823_coordIndex()).setNormalIndex(getlscapula_Geo_5_823_normalIndex())
          .setCoord(new Coordinate("lscapula_Coord").setPoint(getlscapula_Coord_6_823_point()))
          .setNormal(new Normal().setVector(getNormal_6_824_vector()))))
      .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_5_829_coordIndex()).setNormalIndex(getlscphoid_Geo_5_829_normalIndex())
          .setCoord(new Coordinate("lscphoid_Coord").setPoint(getlscphoid_Coord_6_829_point()))
          .setNormal(new Normal().setVector(getNormal_6_830_vector()))))
      .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_5_835_coordIndex()).setNormalIndex(getltalus_Geo_5_835_normalIndex())
          .setCoord(new Coordinate("ltalus_Coord").setPoint(getltalus_Coord_6_835_point()))
          .setNormal(new Normal().setVector(getNormal_6_836_vector()))))
      .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_5_841_coordIndex()).setNormalIndex(getltibia_Geo_5_841_normalIndex())
          .setCoord(new Coordinate("ltibia_Coord").setPoint(getltibia_Coord_6_841_point()))
          .setNormal(new Normal().setVector(getNormal_6_842_vector()))))
      .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_5_847_coordIndex()).setNormalIndex(getltrpzium_Geo_5_847_normalIndex())
          .setCoord(new Coordinate("ltrpzium_Coord").setPoint(getltrpzium_Coord_6_847_point()))
          .setNormal(new Normal().setVector(getNormal_6_848_vector()))))
      .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_5_853_coordIndex()).setNormalIndex(getltrpzoid_Geo_5_853_normalIndex())
          .setCoord(new Coordinate("ltrpzoid_Coord").setPoint(getltrpzoid_Coord_6_853_point()))
          .setNormal(new Normal().setVector(getNormal_6_854_vector()))))
      .addChild(new Shape("ltrqtral")
        .setAppearance(new Appearance()
          .setMaterial(new Material().setAmbientIntensity(0.098).setDiffuseColor(1.0,0.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_5_859_coordIndex()).setNormalIndex(getltrqtral_Geo_5_859_normalIndex())
          .setCoord(new Coordinate("ltrqtral_Coord").setPoint(getltrqtral_Coord_6_859_point()))
          .setNormal(new Normal().setVector(getNormal_6_860_vector()))))
      .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_5_865_coordIndex()).setNormalIndex(getlulna_Geo_5_865_normalIndex())
          .setCoord(new Coordinate("lulna_Coord").setPoint(getlulna_Coord_6_865_point()))
          .setNormal(new Normal().setVector(getNormal_6_866_vector()))))
      .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_5_871_coordIndex()).setNormalIndex(getlum_Geo_5_871_normalIndex())
          .setCoord(new Coordinate("lum_Coord").setPoint(getlum_Coord_6_871_point()))
          .setNormal(new Normal().setVector(getNormal_6_872_vector()))))
      .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_5_877_coordIndex()).setNormalIndex(getmand_Geo_5_877_normalIndex())
          .setCoord(new Coordinate("mand_Coord").setPoint(getmand_Coord_6_877_point()))
          .setNormal(new Normal().setVector(getNormal_6_878_vector()))))
      .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_5_883_coordIndex()).setNormalIndex(getmaxl_Geo_5_883_normalIndex())
          .setCoord(new Coordinate("maxl_Coord").setPoint(getmaxl_Coord_6_883_point()))
          .setNormal(new Normal().setVector(getNormal_6_884_vector()))))
      .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_5_889_coordIndex()).setNormalIndex(getmaxr_Geo_5_889_normalIndex())
          .setCoord(new Coordinate("maxr_Coord").setPoint(getmaxr_Coord_6_889_point()))
          .setNormal(new Normal().setVector(getNormal_6_890_vector()))))
      .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_5_895_coordIndex()).setNormalIndex(getnasall_Geo_5_895_normalIndex())
          .setCoord(new Coordinate("nasall_Coord").setPoint(getnasall_Coord_6_895_point()))
          .setNormal(new Normal().setVector(getNormal_6_896_vector()))))
      .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_5_901_coordIndex()).setNormalIndex(getnasalr_Geo_5_901_normalIndex())
          .setCoord(new Coordinate("nasalr_Coord").setPoint(getnasalr_Coord_6_901_point()))
          .setNormal(new Normal().setVector(getNormal_6_902_vector()))))
      .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_5_907_coordIndex()).setNormalIndex(getoccip_Geo_5_907_normalIndex())
          .setCoord(new Coordinate("occip_Coord").setPoint(getoccip_Coord_6_907_point()))
          .setNormal(new Normal().setVector(getNormal_6_908_vector()))))
      .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_5_913_coordIndex()).setNormalIndex(getpalatl_Geo_5_913_normalIndex())
          .setCoord(new Coordinate("palatl_Coord").setPoint(getpalatl_Coord_6_913_point()))
          .setNormal(new Normal().setVector(getNormal_6_914_vector()))))
      .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_5_919_coordIndex()).setNormalIndex(getpalatr_Geo_5_919_normalIndex())
          .setCoord(new Coordinate("palatr_Coord").setPoint(getpalatr_Coord_6_919_point()))
          .setNormal(new Normal().setVector(getNormal_6_920_vector()))))
      .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_5_925_coordIndex()).setNormalIndex(getparietl_Geo_5_925_normalIndex())
          .setCoord(new Coordinate("parietl_Coord").setPoint(getparietl_Coord_6_925_point()))
          .setNormal(new Normal().setVector(getNormal_6_926_vector()))))
      .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_5_931_coordIndex()).setNormalIndex(getparietr_Geo_5_931_normalIndex())
          .setCoord(new Coordinate("parietr_Coord").setPoint(getparietr_Coord_6_931_point()))
          .setNormal(new Normal().setVector(getNormal_6_932_vector()))))
      .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_5_937_coordIndex()).setNormalIndex(getrcalc_Geo_5_937_normalIndex())
          .setCoord(new Coordinate("rcalc_Coord").setPoint(getrcalc_Coord_6_937_point()))
          .setNormal(new Normal().setVector(getNormal_6_938_vector()))))
      .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_5_943_coordIndex()).setNormalIndex(getrcaninec_Geo_5_943_normalIndex())
          .setCoord(new Coordinate("rcaninec_Coord").setPoint(getrcaninec_Coord_6_943_point()))
          .setNormal(new Normal().setVector(getNormal_6_944_vector()))))
      .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_5_949_coordIndex()).setNormalIndex(getrcaniner_Geo_5_949_normalIndex())
          .setCoord(new Coordinate("rcaniner_Coord").setPoint(getrcaniner_Coord_6_949_point()))
          .setNormal(new Normal().setVector(getNormal_6_950_vector()))))
      .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_5_955_coordIndex()).setNormalIndex(getrcaninlc_Geo_5_955_normalIndex())
          .setCoord(new Coordinate("rcaninlc_Coord").setPoint(getrcaninlc_Coord_6_955_point()))
          .setNormal(new Normal().setVector(getNormal_6_956_vector()))))
      .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_5_961_coordIndex()).setNormalIndex(getrcaninlr_Geo_5_961_normalIndex())
          .setCoord(new Coordinate("rcaninlr_Coord").setPoint(getrcaninlr_Coord_6_961_point()))
          .setNormal(new Normal().setVector(getNormal_6_962_vector()))))
      .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_5_967_coordIndex()).setNormalIndex(getrcaptate_Geo_5_967_normalIndex())
          .setCoord(new Coordinate("rcaptate_Coord").setPoint(getrcaptate_Coord_6_967_point()))
          .setNormal(new Normal().setVector(getNormal_6_968_vector()))))
      .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_5_973_coordIndex()).setNormalIndex(getrcartend_Geo_5_973_normalIndex())
          .setCoord(new Coordinate("rcartend_Coord").setPoint(getrcartend_Coord_6_973_point()))
          .setNormal(new Normal().setVector(getNormal_6_974_vector()))))
      .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_5_979_coordIndex()).setNormalIndex(getrccart_Geo_5_979_normalIndex())
          .setCoord(new Coordinate("rccart_Coord").setPoint(getrccart_Coord_6_979_point()))
          .setNormal(new Normal().setVector(getNormal_6_980_vector()))))
      .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_5_985_coordIndex()).setNormalIndex(getrccart2_Geo_5_985_normalIndex())
          .setCoord(new Coordinate("rccart2_Coord").setPoint(getrccart2_Coord_6_985_point()))
          .setNormal(new Normal().setVector(getNormal_6_986_vector()))))
      .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_5_991_coordIndex()).setNormalIndex(getrcenincc_Geo_5_991_normalIndex())
          .setCoord(new Coordinate("rcenincc_Coord").setPoint(getrcenincc_Coord_6_991_point()))
          .setNormal(new Normal().setVector(getNormal_6_992_vector()))))
      .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_5_997_coordIndex()).setNormalIndex(getrcenincr_Geo_5_997_normalIndex())
          .setCoord(new Coordinate("rcenincr_Coord").setPoint(getrcenincr_Coord_6_997_point()))
          .setNormal(new Normal().setVector(getNormal_6_998_vector()))))
      .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_5_1003_coordIndex()).setNormalIndex(getrceninlc_Geo_5_1003_normalIndex())
          .setCoord(new Coordinate("rceninlc_Coord").setPoint(getrceninlc_Coord_6_1003_point()))
          .setNormal(new Normal().setVector(getNormal_6_1004_vector()))))
      .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_5_1009_coordIndex()).setNormalIndex(getrceninlr_Geo_5_1009_normalIndex())
          .setCoord(new Coordinate("rceninlr_Coord").setPoint(getrceninlr_Coord_6_1009_point()))
          .setNormal(new Normal().setVector(getNormal_6_1010_vector()))))
      .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_5_1015_coordIndex()).setNormalIndex(getrclavcle_Geo_5_1015_normalIndex())
          .setCoord(new Coordinate("rclavcle_Coord").setPoint(getrclavcle_Coord_6_1015_point()))
          .setNormal(new Normal().setVector(getNormal_6_1016_vector()))))
      .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_5_1021_coordIndex()).setNormalIndex(getrcoscart_Geo_5_1021_normalIndex())
          .setCoord(new Coordinate("rcoscart_Coord").setPoint(getrcoscart_Coord_6_1021_point()))
          .setNormal(new Normal().setVector(getNormal_6_1022_vector()))))
      .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_5_1027_coordIndex()).setNormalIndex(getrcuboid_Geo_5_1027_normalIndex())
          .setCoord(new Coordinate("rcuboid_Coord").setPoint(getrcuboid_Coord_6_1027_point()))
          .setNormal(new Normal().setVector(getNormal_6_1028_vector()))))
      .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_5_1033_coordIndex()).setNormalIndex(getrdphal_Geo_5_1033_normalIndex())
          .setCoord(new Coordinate("rdphal_Coord").setPoint(getrdphal_Coord_6_1033_point()))
          .setNormal(new Normal().setVector(getNormal_6_1034_vector()))))
      .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_5_1039_coordIndex()).setNormalIndex(getrdphal2_Geo_5_1039_normalIndex())
          .setCoord(new Coordinate("rdphal2_Coord").setPoint(getrdphal2_Coord_6_1039_point()))
          .setNormal(new Normal().setVector(getNormal_6_1040_vector()))))
      .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_5_1045_coordIndex()).setNormalIndex(getrdphal3_Geo_5_1045_normalIndex())
          .setCoord(new Coordinate("rdphal3_Coord").setPoint(getrdphal3_Coord_6_1045_point()))
          .setNormal(new Normal().setVector(getNormal_6_1046_vector()))))
      .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_5_1051_coordIndex()).setNormalIndex(getrdphal4_Geo_5_1051_normalIndex())
          .setCoord(new Coordinate("rdphal4_Coord").setPoint(getrdphal4_Coord_6_1051_point()))
          .setNormal(new Normal().setVector(getNormal_6_1052_vector()))))
      .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_5_1057_coordIndex()).setNormalIndex(getrdphal5_Geo_5_1057_normalIndex())
          .setCoord(new Coordinate("rdphal5_Coord").setPoint(getrdphal5_Coord_6_1057_point()))
          .setNormal(new Normal().setVector(getNormal_6_1058_vector()))))
      .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_5_1063_coordIndex()).setNormalIndex(getrfdphal_Geo_5_1063_normalIndex())
          .setCoord(new Coordinate("rfdphal_Coord").setPoint(getrfdphal_Coord_6_1063_point()))
          .setNormal(new Normal().setVector(getNormal_6_1064_vector()))))
      .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_5_1069_coordIndex()).setNormalIndex(getrfdphal2_Geo_5_1069_normalIndex())
          .setCoord(new Coordinate("rfdphal2_Coord").setPoint(getrfdphal2_Coord_6_1069_point()))
          .setNormal(new Normal().setVector(getNormal_6_1070_vector()))))
      .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_5_1075_coordIndex()).setNormalIndex(getrfdphal3_Geo_5_1075_normalIndex())
          .setCoord(new Coordinate("rfdphal3_Coord").setPoint(getrfdphal3_Coord_6_1075_point()))
          .setNormal(new Normal().setVector(getNormal_6_1076_vector()))))
      .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_5_1081_coordIndex()).setNormalIndex(getrfdphal4_Geo_5_1081_normalIndex())
          .setCoord(new Coordinate("rfdphal4_Coord").setPoint(getrfdphal4_Coord_6_1081_point()))
          .setNormal(new Normal().setVector(getNormal_6_1082_vector()))))
      .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_5_1087_coordIndex()).setNormalIndex(getrfdphal5_Geo_5_1087_normalIndex())
          .setCoord(new Coordinate("rfdphal5_Coord").setPoint(getrfdphal5_Coord_6_1087_point()))
          .setNormal(new Normal().setVector(getNormal_6_1088_vector()))))
      .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_5_1093_coordIndex()).setNormalIndex(getrfemur_Geo_5_1093_normalIndex())
          .setCoord(new Coordinate("rfemur_Coord").setPoint(getrfemur_Coord_6_1093_point()))
          .setNormal(new Normal().setVector(getNormal_6_1094_vector()))))
      .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_5_1099_coordIndex()).setNormalIndex(getrfmet_Geo_5_1099_normalIndex())
          .setCoord(new Coordinate("rfmet_Coord").setPoint(getrfmet_Coord_6_1099_point()))
          .setNormal(new Normal().setVector(getNormal_6_1100_vector()))))
      .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_5_1105_coordIndex()).setNormalIndex(getrfmphal_Geo_5_1105_normalIndex())
          .setCoord(new Coordinate("rfmphal_Coord").setPoint(getrfmphal_Coord_6_1105_point()))
          .setNormal(new Normal().setVector(getNormal_6_1106_vector()))))
      .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_5_1111_coordIndex()).setNormalIndex(getrfmphal2_Geo_5_1111_normalIndex())
          .setCoord(new Coordinate("rfmphal2_Coord").setPoint(getrfmphal2_Coord_6_1111_point()))
          .setNormal(new Normal().setVector(getNormal_6_1112_vector()))))
      .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_5_1117_coordIndex()).setNormalIndex(getrfmphal3_Geo_5_1117_normalIndex())
          .setCoord(new Coordinate("rfmphal3_Coord").setPoint(getrfmphal3_Coord_6_1117_point()))
          .setNormal(new Normal().setVector(getNormal_6_1118_vector()))))
      .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_5_1123_coordIndex()).setNormalIndex(getrfmphal4_Geo_5_1123_normalIndex())
          .setCoord(new Coordinate("rfmphal4_Coord").setPoint(getrfmphal4_Coord_6_1123_point()))
          .setNormal(new Normal().setVector(getNormal_6_1124_vector()))))
      .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_5_1129_coordIndex()).setNormalIndex(getrfpprox2_Geo_5_1129_normalIndex())
          .setCoord(new Coordinate("rfpprox2_Coord").setPoint(getrfpprox2_Coord_6_1129_point()))
          .setNormal(new Normal().setVector(getNormal_6_1130_vector()))))
      .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_5_1135_coordIndex()).setNormalIndex(getrfpprox3_Geo_5_1135_normalIndex())
          .setCoord(new Coordinate("rfpprox3_Coord").setPoint(getrfpprox3_Coord_6_1135_point()))
          .setNormal(new Normal().setVector(getNormal_6_1136_vector()))))
      .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_5_1141_coordIndex()).setNormalIndex(getrfpprox4_Geo_5_1141_normalIndex())
          .setCoord(new Coordinate("rfpprox4_Coord").setPoint(getrfpprox4_Coord_6_1141_point()))
          .setNormal(new Normal().setVector(getNormal_6_1142_vector()))))
      .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_5_1147_coordIndex()).setNormalIndex(getrfpprox5_Geo_5_1147_normalIndex())
          .setCoord(new Coordinate("rfpprox5_Coord").setPoint(getrfpprox5_Coord_6_1147_point()))
          .setNormal(new Normal().setVector(getNormal_6_1148_vector()))))
      .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_5_1153_coordIndex()).setNormalIndex(getrfprox_Geo_5_1153_normalIndex())
          .setCoord(new Coordinate("rfprox_Coord").setPoint(getrfprox_Coord_6_1153_point()))
          .setNormal(new Normal().setVector(getNormal_6_1154_vector()))))
      .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_5_1159_coordIndex()).setNormalIndex(getrfreecrt_Geo_5_1159_normalIndex())
          .setCoord(new Coordinate("rfreecrt_Coord").setPoint(getrfreecrt_Coord_6_1159_point()))
          .setNormal(new Normal().setVector(getNormal_6_1160_vector()))))
      .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_5_1165_coordIndex()).setNormalIndex(getrhamate_Geo_5_1165_normalIndex())
          .setCoord(new Coordinate("rhamate_Coord").setPoint(getrhamate_Coord_6_1165_point()))
          .setNormal(new Normal().setVector(getNormal_6_1166_vector()))))
      .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_5_1171_coordIndex()).setNormalIndex(getrhumerus_Geo_5_1171_normalIndex())
          .setCoord(new Coordinate("rhumerus_Coord").setPoint(getrhumerus_Coord_6_1171_point()))
          .setNormal(new Normal().setVector(getNormal_6_1172_vector()))))
      .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_5_1177_coordIndex()).setNormalIndex(getricun_Geo_5_1177_normalIndex())
          .setCoord(new Coordinate("ricun_Coord").setPoint(getricun_Coord_6_1177_point()))
          .setNormal(new Normal().setVector(getNormal_6_1178_vector()))))
      .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_5_1183_coordIndex()).setNormalIndex(getrlatincc_Geo_5_1183_normalIndex())
          .setCoord(new Coordinate("rlatincc_Coord").setPoint(getrlatincc_Coord_6_1183_point()))
          .setNormal(new Normal().setVector(getNormal_6_1184_vector()))))
      .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_5_1189_coordIndex()).setNormalIndex(getrlatincr_Geo_5_1189_normalIndex())
          .setCoord(new Coordinate("rlatincr_Coord").setPoint(getrlatincr_Coord_6_1189_point()))
          .setNormal(new Normal().setVector(getNormal_6_1190_vector()))))
      .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_5_1195_coordIndex()).setNormalIndex(getrlatinlc_Geo_5_1195_normalIndex())
          .setCoord(new Coordinate("rlatinlc_Coord").setPoint(getrlatinlc_Coord_6_1195_point()))
          .setNormal(new Normal().setVector(getNormal_6_1196_vector()))))
      .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_5_1201_coordIndex()).setNormalIndex(getrlatinlr_Geo_5_1201_normalIndex())
          .setCoord(new Coordinate("rlatinlr_Coord").setPoint(getrlatinlr_Coord_6_1201_point()))
          .setNormal(new Normal().setVector(getNormal_6_1202_vector()))))
      .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_5_1207_coordIndex()).setNormalIndex(getrlcun_Geo_5_1207_normalIndex())
          .setCoord(new Coordinate("rlcun_Coord").setPoint(getrlcun_Coord_6_1207_point()))
          .setNormal(new Normal().setVector(getNormal_6_1208_vector()))))
      .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_5_1213_coordIndex()).setNormalIndex(getrlunate_Geo_5_1213_normalIndex())
          .setCoord(new Coordinate("rlunate_Coord").setPoint(getrlunate_Coord_6_1213_point()))
          .setNormal(new Normal().setVector(getNormal_6_1214_vector()))))
      .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_5_1219_coordIndex()).setNormalIndex(getrmc_Geo_5_1219_normalIndex())
          .setCoord(new Coordinate("rmc_Coord").setPoint(getrmc_Coord_6_1219_point()))
          .setNormal(new Normal().setVector(getNormal_6_1220_vector()))))
      .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_5_1225_coordIndex()).setNormalIndex(getrmc2_Geo_5_1225_normalIndex())
          .setCoord(new Coordinate("rmc2_Coord").setPoint(getrmc2_Coord_6_1225_point()))
          .setNormal(new Normal().setVector(getNormal_6_1226_vector()))))
      .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_5_1231_coordIndex()).setNormalIndex(getrmc3_Geo_5_1231_normalIndex())
          .setCoord(new Coordinate("rmc3_Coord").setPoint(getrmc3_Coord_6_1231_point()))
          .setNormal(new Normal().setVector(getNormal_6_1232_vector()))))
      .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_5_1237_coordIndex()).setNormalIndex(getrmc4_Geo_5_1237_normalIndex())
          .setCoord(new Coordinate("rmc4_Coord").setPoint(getrmc4_Coord_6_1237_point()))
          .setNormal(new Normal().setVector(getNormal_6_1238_vector()))))
      .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_5_1243_coordIndex()).setNormalIndex(getrmc5_Geo_5_1243_normalIndex())
          .setCoord(new Coordinate("rmc5_Coord").setPoint(getrmc5_Coord_6_1243_point()))
          .setNormal(new Normal().setVector(getNormal_6_1244_vector()))))
      .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_5_1249_coordIndex()).setNormalIndex(getrmcun_Geo_5_1249_normalIndex())
          .setCoord(new Coordinate("rmcun_Coord").setPoint(getrmcun_Coord_6_1249_point()))
          .setNormal(new Normal().setVector(getNormal_6_1250_vector()))))
      .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_5_1255_coordIndex()).setNormalIndex(getrmet2_Geo_5_1255_normalIndex())
          .setCoord(new Coordinate("rmet2_Coord").setPoint(getrmet2_Coord_6_1255_point()))
          .setNormal(new Normal().setVector(getNormal_6_1256_vector()))))
      .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_5_1261_coordIndex()).setNormalIndex(getrmet3_Geo_5_1261_normalIndex())
          .setCoord(new Coordinate("rmet3_Coord").setPoint(getrmet3_Coord_6_1261_point()))
          .setNormal(new Normal().setVector(getNormal_6_1262_vector()))))
      .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_5_1267_coordIndex()).setNormalIndex(getrmet4_Geo_5_1267_normalIndex())
          .setCoord(new Coordinate("rmet4_Coord").setPoint(getrmet4_Coord_6_1267_point()))
          .setNormal(new Normal().setVector(getNormal_6_1268_vector()))))
      .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_5_1273_coordIndex()).setNormalIndex(getrmet5_Geo_5_1273_normalIndex())
          .setCoord(new Coordinate("rmet5_Coord").setPoint(getrmet5_Coord_6_1273_point()))
          .setNormal(new Normal().setVector(getNormal_6_1274_vector()))))
      .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_5_1279_coordIndex()).setNormalIndex(getrmolar1c_Geo_5_1279_normalIndex())
          .setCoord(new Coordinate("rmolar1c_Coord").setPoint(getrmolar1c_Coord_6_1279_point()))
          .setNormal(new Normal().setVector(getNormal_6_1280_vector()))))
      .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_5_1285_coordIndex()).setNormalIndex(getrmolar1r_Geo_5_1285_normalIndex())
          .setCoord(new Coordinate("rmolar1r_Coord").setPoint(getrmolar1r_Coord_6_1285_point()))
          .setNormal(new Normal().setVector(getNormal_6_1286_vector()))))
      .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_5_1291_coordIndex()).setNormalIndex(getrmolar2c_Geo_5_1291_normalIndex())
          .setCoord(new Coordinate("rmolar2c_Coord").setPoint(getrmolar2c_Coord_6_1291_point()))
          .setNormal(new Normal().setVector(getNormal_6_1292_vector()))))
      .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_5_1297_coordIndex()).setNormalIndex(getrmolar2r_Geo_5_1297_normalIndex())
          .setCoord(new Coordinate("rmolar2r_Coord").setPoint(getrmolar2r_Coord_6_1297_point()))
          .setNormal(new Normal().setVector(getNormal_6_1298_vector()))))
      .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_5_1303_coordIndex()).setNormalIndex(getrmolar3c_Geo_5_1303_normalIndex())
          .setCoord(new Coordinate("rmolar3c_Coord").setPoint(getrmolar3c_Coord_6_1303_point()))
          .setNormal(new Normal().setVector(getNormal_6_1304_vector()))))
      .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_5_1309_coordIndex()).setNormalIndex(getrmolar3r_Geo_5_1309_normalIndex())
          .setCoord(new Coordinate("rmolar3r_Coord").setPoint(getrmolar3r_Coord_6_1309_point()))
          .setNormal(new Normal().setVector(getNormal_6_1310_vector()))))
      .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_5_1315_coordIndex()).setNormalIndex(getrmolr1lc_Geo_5_1315_normalIndex())
          .setCoord(new Coordinate("rmolr1lc_Coord").setPoint(getrmolr1lc_Coord_6_1315_point()))
          .setNormal(new Normal().setVector(getNormal_6_1316_vector()))))
      .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_5_1321_coordIndex()).setNormalIndex(getrmolr1lr_Geo_5_1321_normalIndex())
          .setCoord(new Coordinate("rmolr1lr_Coord").setPoint(getrmolr1lr_Coord_6_1321_point()))
          .setNormal(new Normal().setVector(getNormal_6_1322_vector()))))
      .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_5_1327_coordIndex()).setNormalIndex(getrmolr2lc_Geo_5_1327_normalIndex())
          .setCoord(new Coordinate("rmolr2lc_Coord").setPoint(getrmolr2lc_Coord_6_1327_point()))
          .setNormal(new Normal().setVector(getNormal_6_1328_vector()))))
      .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_5_1333_coordIndex()).setNormalIndex(getrmolr2lr_Geo_5_1333_normalIndex())
          .setCoord(new Coordinate("rmolr2lr_Coord").setPoint(getrmolr2lr_Coord_6_1333_point()))
          .setNormal(new Normal().setVector(getNormal_6_1334_vector()))))
      .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_5_1339_coordIndex()).setNormalIndex(getrmolr3lc_Geo_5_1339_normalIndex())
          .setCoord(new Coordinate("rmolr3lc_Coord").setPoint(getrmolr3lc_Coord_6_1339_point()))
          .setNormal(new Normal().setVector(getNormal_6_1340_vector()))))
      .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_5_1345_coordIndex()).setNormalIndex(getrmolr3lr_Geo_5_1345_normalIndex())
          .setCoord(new Coordinate("rmolr3lr_Coord").setPoint(getrmolr3lr_Coord_6_1345_point()))
          .setNormal(new Normal().setVector(getNormal_6_1346_vector()))))
      .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_5_1351_coordIndex()).setNormalIndex(getrmphal2_Geo_5_1351_normalIndex())
          .setCoord(new Coordinate("rmphal2_Coord").setPoint(getrmphal2_Coord_6_1351_point()))
          .setNormal(new Normal().setVector(getNormal_6_1352_vector()))))
      .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_5_1357_coordIndex()).setNormalIndex(getrmphal3_Geo_5_1357_normalIndex())
          .setCoord(new Coordinate("rmphal3_Coord").setPoint(getrmphal3_Coord_6_1357_point()))
          .setNormal(new Normal().setVector(getNormal_6_1358_vector()))))
      .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_5_1363_coordIndex()).setNormalIndex(getrmphal4_Geo_5_1363_normalIndex())
          .setCoord(new Coordinate("rmphal4_Coord").setPoint(getrmphal4_Coord_6_1363_point()))
          .setNormal(new Normal().setVector(getNormal_6_1364_vector()))))
      .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_5_1369_coordIndex()).setNormalIndex(getrmphal5_Geo_5_1369_normalIndex())
          .setCoord(new Coordinate("rmphal5_Coord").setPoint(getrmphal5_Coord_6_1369_point()))
          .setNormal(new Normal().setVector(getNormal_6_1370_vector()))))
      .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_5_1375_coordIndex()).setNormalIndex(getrnaviclr_Geo_5_1375_normalIndex())
          .setCoord(new Coordinate("rnaviclr_Coord").setPoint(getrnaviclr_Coord_6_1375_point()))
          .setNormal(new Normal().setVector(getNormal_6_1376_vector()))))
      .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_5_1381_coordIndex()).setNormalIndex(getroscoxae_Geo_5_1381_normalIndex())
          .setCoord(new Coordinate("roscoxae_Coord").setPoint(getroscoxae_Coord_6_1381_point()))
          .setNormal(new Normal().setVector(getNormal_6_1382_vector()))))
      .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_5_1387_coordIndex()).setNormalIndex(getrpisform_Geo_5_1387_normalIndex())
          .setCoord(new Coordinate("rpisform_Coord").setPoint(getrpisform_Coord_6_1387_point()))
          .setNormal(new Normal().setVector(getNormal_6_1388_vector()))))
      .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_5_1393_coordIndex()).setNormalIndex(getrpphal_Geo_5_1393_normalIndex())
          .setCoord(new Coordinate("rpphal_Coord").setPoint(getrpphal_Coord_6_1393_point()))
          .setNormal(new Normal().setVector(getNormal_6_1394_vector()))))
      .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_5_1399_coordIndex()).setNormalIndex(getrpphal2_Geo_5_1399_normalIndex())
          .setCoord(new Coordinate("rpphal2_Coord").setPoint(getrpphal2_Coord_6_1399_point()))
          .setNormal(new Normal().setVector(getNormal_6_1400_vector()))))
      .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_5_1405_coordIndex()).setNormalIndex(getrpphal3_Geo_5_1405_normalIndex())
          .setCoord(new Coordinate("rpphal3_Coord").setPoint(getrpphal3_Coord_6_1405_point()))
          .setNormal(new Normal().setVector(getNormal_6_1406_vector()))))
      .addChild(new Shape("rpphal4")
        .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("rpphal4_Geo").setDEF("rpphal4_Geo").setCreaseAngle(1.571).setCoordIndex(getrpphal4_Geo_5_1411_coordIndex()).setNormalIndex(getrpphal4_Geo_5_1411_normalIndex())
          .setCoord(new Coordinate("rpphal4_Coord").setPoint(getrpphal4_Coord_6_1411_point()))
          .setNormal(new Normal().setVector(getNormal_6_1412_vector()))))
      .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_5_1417_coordIndex()).setNormalIndex(getrpphal5_Geo_5_1417_normalIndex())
          .setCoord(new Coordinate("rpphal5_Coord").setPoint(getrpphal5_Coord_6_1417_point()))
          .setNormal(new Normal().setVector(getNormal_6_1418_vector()))))
      .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_5_1423_coordIndex()).setNormalIndex(getrprem1lc_Geo_5_1423_normalIndex())
          .setCoord(new Coordinate("rprem1lc_Coord").setPoint(getrprem1lc_Coord_6_1423_point()))
          .setNormal(new Normal().setVector(getNormal_6_1424_vector()))))
      .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_5_1429_coordIndex()).setNormalIndex(getrprem1lr_Geo_5_1429_normalIndex())
          .setCoord(new Coordinate("rprem1lr_Coord").setPoint(getrprem1lr_Coord_6_1429_point()))
          .setNormal(new Normal().setVector(getNormal_6_1430_vector()))))
      .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_5_1435_coordIndex()).setNormalIndex(getrprem2lc_Geo_5_1435_normalIndex())
          .setCoord(new Coordinate("rprem2lc_Coord").setPoint(getrprem2lc_Coord_6_1435_point()))
          .setNormal(new Normal().setVector(getNormal_6_1436_vector()))))
      .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_5_1441_coordIndex()).setNormalIndex(getrprem2lr_Geo_5_1441_normalIndex())
          .setCoord(new Coordinate("rprem2lr_Coord").setPoint(getrprem2lr_Coord_6_1441_point()))
          .setNormal(new Normal().setVector(getNormal_6_1442_vector()))))
      .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_5_1447_coordIndex()).setNormalIndex(getrpreol1c_Geo_5_1447_normalIndex())
          .setCoord(new Coordinate("rpreol1c_Coord").setPoint(getrpreol1c_Coord_6_1447_point()))
          .setNormal(new Normal().setVector(getNormal_6_1448_vector()))))
      .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_5_1453_coordIndex()).setNormalIndex(getrpreol1r_Geo_5_1453_normalIndex())
          .setCoord(new Coordinate("rpreol1r_Coord").setPoint(getrpreol1r_Coord_6_1453_point()))
          .setNormal(new Normal().setVector(getNormal_6_1454_vector()))))
      .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_5_1459_coordIndex()).setNormalIndex(getrpreol2c_Geo_5_1459_normalIndex())
          .setCoord(new Coordinate("rpreol2c_Coord").setPoint(getrpreol2c_Coord_6_1459_point()))
          .setNormal(new Normal().setVector(getNormal_6_1460_vector()))))
      .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_5_1465_coordIndex()).setNormalIndex(getrpreol2r_Geo_5_1465_normalIndex())
          .setCoord(new Coordinate("rpreol2r_Coord").setPoint(getrpreol2r_Coord_6_1465_point()))
          .setNormal(new Normal().setVector(getNormal_6_1466_vector()))))
      .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_5_1471_coordIndex()).setNormalIndex(getrradius_Geo_5_1471_normalIndex())
          .setCoord(new Coordinate("rradius_Coord").setPoint(getrradius_Coord_6_1471_point()))
          .setNormal(new Normal().setVector(getNormal_6_1472_vector()))))
      .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_5_1477_coordIndex()).setNormalIndex(getrrib10_Geo_5_1477_normalIndex())
          .setCoord(new Coordinate("rrib10_Coord").setPoint(getrrib10_Coord_6_1477_point()))
          .setNormal(new Normal().setVector(getNormal_6_1478_vector()))))
      .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_5_1483_coordIndex()).setNormalIndex(getrrib11_Geo_5_1483_normalIndex())
          .setCoord(new Coordinate("rrib11_Coord").setPoint(getrrib11_Coord_6_1483_point()))
          .setNormal(new Normal().setVector(getNormal_6_1484_vector()))))
      .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_5_1489_coordIndex()).setNormalIndex(getrrib12_Geo_5_1489_normalIndex())
          .setCoord(new Coordinate("rrib12_Coord").setPoint(getrrib12_Coord_6_1489_point()))
          .setNormal(new Normal().setVector(getNormal_6_1490_vector()))))
      .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_5_1495_coordIndex()).setNormalIndex(getrrib2_Geo_5_1495_normalIndex())
          .setCoord(new Coordinate("rrib2_Coord").setPoint(getrrib2_Coord_6_1495_point()))
          .setNormal(new Normal().setVector(getNormal_6_1496_vector()))))
      .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_5_1501_coordIndex()).setNormalIndex(getrrib3_Geo_5_1501_normalIndex())
          .setCoord(new Coordinate("rrib3_Coord").setPoint(getrrib3_Coord_6_1501_point()))
          .setNormal(new Normal().setVector(getNormal_6_1502_vector()))))
      .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_5_1507_coordIndex()).setNormalIndex(getrrib4_Geo_5_1507_normalIndex())
          .setCoord(new Coordinate("rrib4_Coord").setPoint(getrrib4_Coord_6_1507_point()))
          .setNormal(new Normal().setVector(getNormal_6_1508_vector()))))
      .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_5_1513_coordIndex()).setNormalIndex(getrrib5_Geo_5_1513_normalIndex())
          .setCoord(new Coordinate("rrib5_Coord").setPoint(getrrib5_Coord_6_1513_point()))
          .setNormal(new Normal().setVector(getNormal_6_1514_vector()))))
      .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_5_1519_coordIndex()).setNormalIndex(getrrib6_Geo_5_1519_normalIndex())
          .setCoord(new Coordinate("rrib6_Coord").setPoint(getrrib6_Coord_6_1519_point()))
          .setNormal(new Normal().setVector(getNormal_6_1520_vector()))))
      .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_5_1525_coordIndex()).setNormalIndex(getrrib7_Geo_5_1525_normalIndex())
          .setCoord(new Coordinate("rrib7_Coord").setPoint(getrrib7_Coord_6_1525_point()))
          .setNormal(new Normal().setVector(getNormal_6_1526_vector()))))
      .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_5_1531_coordIndex()).setNormalIndex(getrrib8_Geo_5_1531_normalIndex())
          .setCoord(new Coordinate("rrib8_Coord").setPoint(getrrib8_Coord_6_1531_point()))
          .setNormal(new Normal().setVector(getNormal_6_1532_vector()))))
      .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_5_1537_coordIndex()).setNormalIndex(getrrib9_Geo_5_1537_normalIndex())
          .setCoord(new Coordinate("rrib9_Coord").setPoint(getrrib9_Coord_6_1537_point()))
          .setNormal(new Normal().setVector(getNormal_6_1538_vector()))))
      .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_5_1543_coordIndex()).setNormalIndex(getrrrib_Geo_5_1543_normalIndex())
          .setCoord(new Coordinate("rrrib_Coord").setPoint(getrrrib_Coord_6_1543_point()))
          .setNormal(new Normal().setVector(getNormal_6_1544_vector()))))
      .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_5_1549_coordIndex()).setNormalIndex(getrscapula_Geo_5_1549_normalIndex())
          .setCoord(new Coordinate("rscapula_Coord").setPoint(getrscapula_Coord_6_1549_point()))
          .setNormal(new Normal().setVector(getNormal_6_1550_vector()))))
      .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_5_1555_coordIndex()).setNormalIndex(getrscphoid_Geo_5_1555_normalIndex())
          .setCoord(new Coordinate("rscphoid_Coord").setPoint(getrscphoid_Coord_6_1555_point()))
          .setNormal(new Normal().setVector(getNormal_6_1556_vector()))))
      .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_5_1561_coordIndex()).setNormalIndex(getrtalus_Geo_5_1561_normalIndex())
          .setCoord(new Coordinate("rtalus_Coord").setPoint(getrtalus_Coord_6_1561_point()))
          .setNormal(new Normal().setVector(getNormal_6_1562_vector()))))
      .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_5_1567_coordIndex()).setNormalIndex(getrtibia_Geo_5_1567_normalIndex())
          .setCoord(new Coordinate("rtibia_Coord").setPoint(getrtibia_Coord_6_1567_point()))
          .setNormal(new Normal().setVector(getNormal_6_1568_vector()))))
      .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_5_1573_coordIndex()).setNormalIndex(getrtrpzium_Geo_5_1573_normalIndex())
          .setCoord(new Coordinate("rtrpzium_Coord").setPoint(getrtrpzium_Coord_6_1573_point()))
          .setNormal(new Normal().setVector(getNormal_6_1574_vector()))))
      .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_5_1579_coordIndex()).setNormalIndex(getrtrpzoid_Geo_5_1579_normalIndex())
          .setCoord(new Coordinate("rtrpzoid_Coord").setPoint(getrtrpzoid_Coord_6_1579_point()))
          .setNormal(new Normal().setVector(getNormal_6_1580_vector()))))
      .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_5_1585_coordIndex()).setNormalIndex(getrtrqtral_Geo_5_1585_normalIndex())
          .setCoord(new Coordinate("rtrqtral_Coord").setPoint(getrtrqtral_Coord_6_1585_point()))
          .setNormal(new Normal().setVector(getNormal_6_1586_vector()))))
      .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_5_1591_coordIndex()).setNormalIndex(getrulna_Geo_5_1591_normalIndex())
          .setCoord(new Coordinate("rulna_Coord").setPoint(getrulna_Coord_6_1591_point()))
          .setNormal(new Normal().setVector(getNormal_6_1592_vector()))))
      .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_5_1597_coordIndex()).setNormalIndex(getsacrum_Geo_5_1597_normalIndex())
          .setCoord(new Coordinate("sacrum_Coord").setPoint(getsacrum_Coord_6_1597_point()))
          .setNormal(new Normal().setVector(getNormal_6_1598_vector()))))
      .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_5_1603_coordIndex()).setNormalIndex(getsphenoid_Geo_5_1603_normalIndex())
          .setCoord(new Coordinate("sphenoid_Coord").setPoint(getsphenoid_Coord_6_1603_point()))
          .setNormal(new Normal().setVector(getNormal_6_1604_vector()))))
      .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_5_1609_coordIndex()).setNormalIndex(getsternum_Geo_5_1609_normalIndex())
          .setCoord(new Coordinate("sternum_Coord").setPoint(getsternum_Coord_6_1609_point()))
          .setNormal(new Normal().setVector(getNormal_6_1610_vector()))))
      .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_5_1615_coordIndex()).setNormalIndex(getsympubis_Geo_5_1615_normalIndex())
          .setCoord(new Coordinate("sympubis_Coord").setPoint(getsympubis_Coord_6_1615_point()))
          .setNormal(new Normal().setVector(getNormal_6_1616_vector()))))
      .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_5_1621_coordIndex()).setNormalIndex(gett_Geo_5_1621_normalIndex())
          .setCoord(new Coordinate("t_Coord").setPoint(gett_Coord_6_1621_point()))
          .setNormal(new Normal().setVector(getNormal_6_1622_vector()))))
      .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_5_1627_coordIndex()).setNormalIndex(gett10_Geo_5_1627_normalIndex())
          .setCoord(new Coordinate("t10_Coord").setPoint(gett10_Coord_6_1627_point()))
          .setNormal(new Normal().setVector(getNormal_6_1628_vector()))))
      .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_5_1633_coordIndex()).setNormalIndex(gett10disc_Geo_5_1633_normalIndex())
          .setCoord(new Coordinate("t10disc_Coord").setPoint(gett10disc_Coord_6_1633_point()))
          .setNormal(new Normal().setVector(getNormal_6_1634_vector()))))
      .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_5_1639_coordIndex()).setNormalIndex(gett11_Geo_5_1639_normalIndex())
          .setCoord(new Coordinate("t11_Coord").setPoint(gett11_Coord_6_1639_point()))
          .setNormal(new Normal().setVector(getNormal_6_1640_vector()))))
      .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_5_1645_coordIndex()).setNormalIndex(gett11disc_Geo_5_1645_normalIndex())
          .setCoord(new Coordinate("t11disc_Coord").setPoint(gett11disc_Coord_6_1645_point()))
          .setNormal(new Normal().setVector(getNormal_6_1646_vector()))))
      .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_5_1651_coordIndex()).setNormalIndex(gett12_Geo_5_1651_normalIndex())
          .setCoord(new Coordinate("t12_Coord").setPoint(gett12_Coord_6_1651_point()))
          .setNormal(new Normal().setVector(getNormal_6_1652_vector()))))
      .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_5_1657_coordIndex()).setNormalIndex(gett12disc_Geo_5_1657_normalIndex())
          .setCoord(new Coordinate("t12disc_Coord").setPoint(gett12disc_Coord_6_1657_point()))
          .setNormal(new Normal().setVector(getNormal_6_1658_vector()))))
      .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_5_1663_coordIndex()).setNormalIndex(gett1disc_Geo_5_1663_normalIndex())
          .setCoord(new Coordinate("t1disc_Coord").setPoint(gett1disc_Coord_6_1663_point()))
          .setNormal(new Normal().setVector(getNormal_6_1664_vector()))))
      .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_5_1669_coordIndex()).setNormalIndex(gett2_Geo_5_1669_normalIndex())
          .setCoord(new Coordinate("t2_Coord").setPoint(gett2_Coord_6_1669_point()))
          .setNormal(new Normal().setVector(getNormal_6_1670_vector()))))
      .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_5_1675_coordIndex()).setNormalIndex(gett2disc_Geo_5_1675_normalIndex())
          .setCoord(new Coordinate("t2disc_Coord").setPoint(gett2disc_Coord_6_1675_point()))
          .setNormal(new Normal().setVector(getNormal_6_1676_vector()))))
      .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_5_1681_coordIndex()).setNormalIndex(gett3_Geo_5_1681_normalIndex())
          .setCoord(new Coordinate("t3_Coord").setPoint(gett3_Coord_6_1681_point()))
          .setNormal(new Normal().setVector(getNormal_6_1682_vector()))))
      .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_5_1687_coordIndex()).setNormalIndex(gett3disc_Geo_5_1687_normalIndex())
          .setCoord(new Coordinate("t3disc_Coord").setPoint(gett3disc_Coord_6_1687_point()))
          .setNormal(new Normal().setVector(getNormal_6_1688_vector()))))
      .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_5_1693_coordIndex()).setNormalIndex(gett4_Geo_5_1693_normalIndex())
          .setCoord(new Coordinate("t4_Coord").setPoint(gett4_Coord_6_1693_point()))
          .setNormal(new Normal().setVector(getNormal_6_1694_vector()))))
      .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_5_1699_coordIndex()).setNormalIndex(gett4disc_Geo_5_1699_normalIndex())
          .setCoord(new Coordinate("t4disc_Coord").setPoint(gett4disc_Coord_6_1699_point()))
          .setNormal(new Normal().setVector(getNormal_6_1700_vector()))))
      .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_5_1705_coordIndex()).setNormalIndex(gett5_Geo_5_1705_normalIndex())
          .setCoord(new Coordinate("t5_Coord").setPoint(gett5_Coord_6_1705_point()))
          .setNormal(new Normal().setVector(getNormal_6_1706_vector()))))
      .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_5_1711_coordIndex()).setNormalIndex(gett5disc_Geo_5_1711_normalIndex())
          .setCoord(new Coordinate("t5disc_Coord").setPoint(gett5disc_Coord_6_1711_point()))
          .setNormal(new Normal().setVector(getNormal_6_1712_vector()))))
      .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_5_1717_coordIndex()).setNormalIndex(gett6_Geo_5_1717_normalIndex())
          .setCoord(new Coordinate("t6_Coord").setPoint(gett6_Coord_6_1717_point()))
          .setNormal(new Normal().setVector(getNormal_6_1718_vector()))))
      .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_5_1723_coordIndex()).setNormalIndex(gett6disc_Geo_5_1723_normalIndex())
          .setCoord(new Coordinate("t6disc_Coord").setPoint(gett6disc_Coord_6_1723_point()))
          .setNormal(new Normal().setVector(getNormal_6_1724_vector()))))
      .addChild(new Shape("t7")
        .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("t7_Geo").setDEF("t7_Geo").setCreaseAngle(1.571).setCoordIndex(gett7_Geo_5_1729_coordIndex()).setNormalIndex(gett7_Geo_5_1729_normalIndex())
          .setCoord(new Coordinate("t7_Coord").setPoint(gett7_Coord_6_1729_point()))
          .setNormal(new Normal().setVector(getNormal_6_1730_vector()))))
      .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_5_1735_coordIndex()).setNormalIndex(gett7disc_Geo_5_1735_normalIndex())
          .setCoord(new Coordinate("t7disc_Coord").setPoint(gett7disc_Coord_6_1735_point()))
          .setNormal(new Normal().setVector(getNormal_6_1736_vector()))))
      .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_5_1741_coordIndex()).setNormalIndex(gett8_Geo_5_1741_normalIndex())
          .setCoord(new Coordinate("t8_Coord").setPoint(gett8_Coord_6_1741_point()))
          .setNormal(new Normal().setVector(getNormal_6_1742_vector()))))
      .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_5_1747_coordIndex()).setNormalIndex(gett8disc_Geo_5_1747_normalIndex())
          .setCoord(new Coordinate("t8disc_Coord").setPoint(gett8disc_Coord_6_1747_point()))
          .setNormal(new Normal().setVector(getNormal_6_1748_vector()))))
      .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_5_1753_coordIndex()).setNormalIndex(gett9_Geo_5_1753_normalIndex())
          .setCoord(new Coordinate("t9_Coord").setPoint(gett9_Coord_6_1753_point()))
          .setNormal(new Normal().setVector(getNormal_6_1754_vector()))))
      .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_5_1759_coordIndex()).setNormalIndex(gett9disc_Geo_5_1759_normalIndex())
          .setCoord(new Coordinate("t9disc_Coord").setPoint(gett9disc_Coord_6_1759_point()))
          .setNormal(new Normal().setVector(getNormal_6_1760_vector()))))
      .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_5_1765_coordIndex()).setNormalIndex(gettempl_Geo_5_1765_normalIndex())
          .setCoord(new Coordinate("templ_Coord").setPoint(gettempl_Coord_6_1765_point()))
          .setNormal(new Normal().setVector(getNormal_6_1766_vector()))))
      .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_5_1771_coordIndex()).setNormalIndex(gettempr_Geo_5_1771_normalIndex())
          .setCoord(new Coordinate("tempr_Coord").setPoint(gettempr_Coord_6_1771_point()))
          .setNormal(new Normal().setVector(getNormal_6_1772_vector()))))
      .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_5_1777_coordIndex()).setNormalIndex(getvom_Geo_5_1777_normalIndex())
          .setCoord(new Coordinate("vom_Coord").setPoint(getvom_Coord_6_1777_point()))
          .setNormal(new Normal().setVector(getNormal_6_1778_vector()))))
      .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_5_1783_coordIndex()).setNormalIndex(getzygol_Geo_5_1783_normalIndex())
          .setCoord(new Coordinate("zygol_Coord").setPoint(getzygol_Coord_6_1783_point()))
          .setNormal(new Normal().setVector(getNormal_6_1784_vector()))))
      .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_5_1789_coordIndex()).setNormalIndex(getzygor_Geo_5_1789_normalIndex())
          .setCoord(new Coordinate("zygor_Coord").setPoint(getzygor_Coord_6_1789_point()))
          .setNormal(new Normal().setVector(getNormal_6_1790_vector()))))));
            }
            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_5_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_5_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_5_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_5_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_5_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_5_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_5_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_5_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_5_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_5_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 int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getatlas_Geo_5_25_normalIndex_1()
		{
			int[] value = {90,51,29,-1,45,114,54,-1,23,45,57,-1,43,88,188,-1,192,170,30,-1,98,23,24,-1,35,113,74,-1,124,65,72,-1,128,61,163,-1,128,139,87,-1,835,1048,1004,-1,470,171,506,-1,546,674,506,-1,746,875,686,-1,663,536,726,-1,917,732,786,-1,736,798,784,-1,724,863,756,-1,809,967,942,-1,942,967,938,-1,863,913,840,-1,875,942,913,-1,895,780,846,-1,733,826,555,-1,695,929,762,-1,383,387,720,-1,676,725,638,-1,1053,963,846,-1,726,536,787,-1,910,753,811,-1,804,887,800,-1,958,984,800,-1,536,561,787,-1,786,732,521,-1,517,906,804,-1,346,290,228,-1,963,987,918,-1,645,733,556,-1,192,383,533,-1,226,140,270,-1,310,422,270,-1,352,350,377,-1,285,326,350,-1,326,357,249,-1,963,1053,1091,-1,547,563,550,-1,470,745,544,-1,1013,954,903,-1,1099,1044,1136,-1,1136,1156,1082,-1,1026,1101,1145,-1,891,1069,597,-1,680,660,831,-1,888,901,949,-1,1135,1139,1081,-1,987,1075,896,-1,322,551,648,-1,760,673,508,-1,710,565,198,-1,747,828,601,-1,425,637,644,-1,761,640,715,-1,490,534,691,-1,525,293,480,-1,425,88,298,-1,426,612,309,-1,111,115,149,-1,595,766,730,-1,594,781,554,-1,592,793,740,-1,730,768,558,-1,554,595,454,-1,371,401,482,-1,781,716,878,-1,878,808,916,-1,1058,1010,1065,-1,707,823,749,-1,451,478,534,-1,92,153,340,-1,348,401,371,-1,66,148,160,-1,257,155,195,-1,194,230,211,-1,199,148,167,-1,1044,1017,1040,-1,629,550,486,-1,324,530,486,-1,641,499,614,-1,635,762,733,-1,432,483,523,-1,882,995,921,-1,1015,995,1065,-1,879,949,901,-1,649,682,599,-1,682,635,681,-1,138,69,70,-1,101,52,84,-1,488,291,190,-1,113,190,74,-1,374,465,601,-1,339,113,297,-1,650,670,835,-1,1154,1115,1103,-1,198,36,71,-1,924,936,1137,-1,94,83,73,-1,155,110,101,-1,109,72,122,-1,135,70,89,-1,33,54,89,-1,120,132,58,-1,59,75,31,-1,1128,1116,1043,-1,933,365,924,-1,881,710,673,-1,980,670,1014,-1,1151,1147,1154,-1,1027,828,747,-1,811,859,1042,-1,664,1076,1025,-1,1038,848,1124,-1,988,1058,951,-1,521,430,416,-1,462,261,181,-1,225,228,75,-1,1079,1137,1135,-1,466,346,228,-1,1120,977,1041,-1,715,717,836,-1,831,1065,995,-1,861,943,1049,-1,529,309,605,-1,90,188,432,-1,950,1041,847,-1,1081,1134,1041,-1,309,115,90,-1,1075,1142,1102,-1,1105,1142,1091,-1,293,153,92,-1,1015,921,995,-1,691,761,707,-1,454,467,594,-1,387,383,303,-1,226,85,111,-1,46,288,165,-1,39,205,260,-1,1066,1150,1133,-1,1110,1071,1104,-1,1098,1110,1132,-1,970,1068,1114,-1,992,772,697,-1,1070,1132,1063,-1,1126,1059,1122,-1,1034,1003,1087,-1,1030,993,1096,-1,1030,1107,1070,-1,1130,1096,993,-1,321,151,112,-1,643,975,683,-1,643,468,442,-1,409,497,433,-1,382,443,636,-1,187,393,429,-1,323,381,427,-1,468,308,442,-1,409,202,333,-1,238,202,221,-1,316,238,308,-1,308,221,258,-1,313,375,254,-1,528,392,311,-1,392,450,368,-1,311,184,91,-1,247,362,636,-1,242,95,388,-1,358,295,173,-1,438,358,354,-1,573,429,393,-1,354,253,634,-1,932,850,807,-1,241,146,184,-1,609,420,502,-1,607,773,697,-1,904,1008,941,-1,877,801,908,-1,883,734,873,-1,792,824,827,-1,908,801,827,-1,146,63,91,-1,538,631,563,-1,610,411,683,-1,143,227,255,-1,99,172,56,-1,68,0,15,-1,15,12,49,-1,569,86,268,-1,330,494,475,-1,217,299,251,-1,21,137,80,-1,264,81,146,-1,603,834,678,-1,515,678,479,-1,953,600,446,-1,562,347,410,-1,509,513,729,-1,439,512,402,-1,461,619,665,-1,675,862,626,-1,841,1060,729,-1,849,542,728,-1,1046,1054,1047,-1,434,349,540,-1,395,437,571,-1,423,366,662,-1,627,572,434,-1,788,627,667,-1,191,281,395,-1,279,229,349,-1,229,191,349,-1,229,281,191,-1,108,93,97,-1,813,743,495,-1,568,566,685,-1,791,743,813,-1,817,1001,1064,-1,788,758,791,-1,996,994,1092,-1,968,1002,905,-1,944,931,964,-1,937,1005,905,-1,99,103,175,-1,669,631,538,-1,669,622,838,-1,520,539,646,-1,549,735,662,-1,93,141,145,-1,397,217,275,-1,409,258,221,-1,669,538,500,-1,1146,1107,1155,-1,1052,978,1080,-1,1085,1029,998,-1,666,782,966,-1,782,562,689,-1,418,569,822,-1,317,369,372,-1,485,935,505,-1,50,41,2,-1,1086,953,857,-1,1085,1073,1061,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getatlas_Geo_5_25_normalIndex_2()
		{
			int[] value = {1052,1109,1002,-1,1092,1087,1045,-1,1126,1089,1023,-1,1104,1123,1126,-1,1084,1039,1037,-1,1112,1119,1088,-1,38,27,82,-1,246,816,237,-1,479,446,277,-1,142,485,176,-1,2,12,5,-1,410,347,126,-1,116,294,343,-1,133,79,491,-1,32,295,118,-1,206,97,166,-1,741,690,573,-1,700,981,694,-1,77,137,21,-1,37,22,121,-1,162,93,356,-1,108,207,342,-1,728,721,1066,-1,121,22,213,-1,1066,1046,849,-1,63,81,14,-1,48,91,63,-1,1064,862,1060,-1,434,244,314,-1,337,402,461,-1,571,696,692,-1,699,692,696,-1,1047,1072,1008,-1,989,1108,1141,-1,947,1118,1077,-1,947,989,1118,-1,868,941,1108,-1,709,806,528,-1,930,992,697,-1,402,626,495,-1,444,437,281,-1,349,434,314,-1,80,22,13,-1,53,13,14,-1,423,662,630,-1,1006,870,849,-1,970,1114,1150,-1,630,542,527,-1,484,80,137,-1,694,137,700,-1,266,207,305,-1,162,356,400,-1,296,207,266,-1,223,21,78,-1,983,748,850,-1,981,1095,902,-1,690,741,807,-1,687,807,751,-1,491,514,639,-1,44,343,95,-1,341,118,489,-1,204,173,123,-1,95,173,44,-1,247,443,294,-1,41,50,126,-1,701,1028,935,-1,1036,1119,1129,-1,1093,946,1034,-1,1097,1123,1133,-1,1050,1104,1062,-1,860,610,914,-1,428,825,803,-1,737,774,234,-1,504,902,553,-1,1129,1028,701,-1,446,82,55,-1,345,254,375,-1,393,187,262,-1,966,782,1059,-1,782,818,1059,-1,562,782,666,-1,76,410,50,-1,1073,1122,1059,-1,962,860,968,-1,1052,975,978,-1,1016,1034,1030,-1,493,539,520,-1,500,520,622,-1,1084,1130,993,-1,474,453,516,-1,1000,970,721,-1,141,235,244,-1,97,145,423,-1,1054,1098,1072,-1,982,1061,822,-1,516,738,770,-1,975,869,978,-1,869,838,978,-1,172,428,214,-1,961,994,945,-1,1064,1000,735,-1,621,583,585,-1,349,191,395,-1,564,699,560,-1,560,696,571,-1,627,434,540,-1,540,349,395,-1,373,244,434,-1,1054,1046,1066,-1,112,103,99,-1,176,112,49,-1,935,897,505,-1,53,78,21,-1,252,217,251,-1,253,275,217,-1,97,206,207,-1,509,475,513,-1,266,126,347,-1,435,266,347,-1,452,897,834,-1,5,12,15,-1,68,234,414,-1,112,100,103,-1,203,255,441,-1,1052,1002,968,-1,227,411,255,-1,873,1011,900,-1,889,904,883,-1,900,948,912,-1,904,973,1008,-1,738,607,772,-1,14,8,40,-1,573,690,548,-1,850,722,548,-1,634,553,902,-1,275,306,397,-1,514,489,438,-1,455,636,741,-1,295,358,438,-1,447,394,256,-1,491,79,341,-1,19,116,44,-1,528,806,450,-1,481,280,370,-1,368,399,375,-1,359,345,406,-1,382,455,393,-1,496,427,468,-1,317,382,262,-1,643,616,869,-1,411,496,683,-1,100,112,151,-1,382,317,372,-1,1106,1153,1130,-1,1070,1107,1146,-1,1130,1109,1080,-1,1070,1146,1127,-1,1106,1019,1153,-1,772,1019,770,-1,1077,1125,992,-1,1072,1098,1132,-1,1054,1113,1071,-1,1113,1133,1123,-1,39,17,205,-1,46,85,288,-1,638,387,448,-1,96,67,240,-1,525,640,761,-1,1134,1081,1139,-1,1143,1139,1102,-1,523,483,740,-1,309,289,149,-1,6,43,188,-1,1009,1081,950,-1,459,1079,1009,-1,705,910,837,-1,853,943,876,-1,757,799,882,-1,1135,1137,936,-1,177,290,460,-1,225,59,181,-1,1078,936,874,-1,511,466,731,-1,511,407,466,-1,664,511,652,-1,688,848,1038,-1,1067,984,958,-1,652,688,814,-1,1076,1138,1025,-1,811,1042,1111,-1,881,1027,1115,-1,1154,1083,1151,-1,508,301,71,-1,224,130,458,-1,36,198,215,-1,470,245,171,-1,29,28,33,-1,28,60,54,-1,109,89,54,-1,245,544,195,-1,956,775,419,-1,26,307,458,-1,1074,565,710,-1,1020,917,786,-1,488,374,601,-1,1103,747,1083,-1,113,83,297,-1,257,195,283,-1,168,171,101,-1,128,124,139,-1,651,658,614,-1,530,658,651,-1,222,157,180,-1,58,117,163,-1,432,156,483,-1,432,188,156,-1,915,921,1015,-1,740,1010,1058,-1,85,57,105,-1,334,94,174,-1,762,424,695,-1,649,376,635,-1,431,464,617,-1,168,324,171,-1,898,1017,1044,-1,194,158,230,-1,421,483,156,-1,525,363,293,-1,585,583,531,-1,531,632,585,-1,781,955,766,-1,560,467,564,-1,560,579,594,-1,482,595,730,-1,554,781,766,-1,730,915,768,-1,105,51,90,-1,1026,1040,1048,-1,1101,1048,980,-1,760,1027,881,-1,650,642,263,-1,918,672,732,-1,1135,1078,1102,-1,888,890,842,-1,890,949,879,-1,943,951,1058,-1,637,680,644,-1,705,551,322,-1,322,263,705,-1,1156,1136,1151,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getatlas_Geo_5_25_normalIndex_3()
		{
			int[] value = {775,956,1099,-1,702,713,954,-1,195,101,245,-1,986,1053,843,-1,327,377,350,-1,259,285,352,-1,270,231,271,-1,240,260,196,-1,140,183,231,-1,449,535,233,-1,403,533,695,-1,1117,986,1094,-1,1117,1148,1142,-1,521,732,430,-1,430,460,290,-1,261,517,225,-1,852,887,879,-1,688,652,511,-1,561,1025,787,-1,663,521,416,-1,688,731,800,-1,814,1076,664,-1,1111,1042,1138,-1,387,638,725,-1,533,764,867,-1,846,780,777,-1,867,967,929,-1,575,574,809,-1,752,810,784,-1,786,663,754,-1,570,724,546,-1,922,754,839,-1,300,546,506,-1,1057,1004,1048,-1,783,839,754,-1,1,34,61,-1,1,64,84,-1,10,47,87,-1,84,58,34,-1,24,10,87,-1,30,170,64,-1,96,30,3,-1,85,46,23,-1,60,29,51,-1,60,28,29,-1,60,51,105,-1,23,57,85,-1,96,3,67,-1,64,1,30,-1,152,114,98,-1,84,52,58,-1,124,152,139,-1,84,34,1,-1,1,61,7,-1,754,726,783,-1,1057,1032,1004,-1,506,171,300,-1,1004,922,839,-1,570,719,724,-1,922,786,754,-1,575,809,746,-1,867,938,967,-1,846,777,802,-1,918,895,963,-1,533,867,695,-1,725,720,387,-1,1138,1124,1111,-1,910,1067,1035,-1,800,848,688,-1,416,536,663,-1,731,688,511,-1,750,852,879,-1,261,606,517,-1,430,672,460,-1,732,672,430,-1,1142,1105,1117,-1,403,695,424,-1,449,233,201,-1,240,196,243,-1,270,271,287,-1,259,310,285,-1,903,745,934,-1,195,155,101,-1,713,903,954,-1,1040,1057,1048,-1,775,1099,1082,-1,1136,1145,1151,-1,263,642,705,-1,876,861,723,-1,815,633,723,-1,717,644,757,-1,1058,1049,943,-1,890,879,906,-1,909,888,842,-1,888,949,890,-1,1102,1139,1135,-1,918,896,672,-1,650,263,224,-1,673,760,881,-1,760,876,1027,-1,1101,1026,1048,-1,597,1069,739,-1,105,90,115,-1,625,795,679,-1,554,766,595,-1,482,730,558,-1,560,594,467,-1,467,463,564,-1,916,808,749,-1,421,156,92,-1,898,718,1017,-1,324,300,171,-1,431,617,599,-1,649,635,682,-1,376,424,635,-1,762,635,424,-1,111,85,105,-1,795,625,740,-1,1058,795,740,-1,635,704,681,-1,163,34,58,-1,222,150,157,-1,704,645,498,-1,671,651,614,-1,530,651,486,-1,128,209,124,-1,257,283,154,-1,113,35,83,-1,601,633,488,-1,786,922,1020,-1,1100,1074,710,-1,458,130,26,-1,177,134,75,-1,775,380,419,-1,544,283,195,-1,54,114,109,-1,29,33,74,-1,124,209,65,-1,26,31,119,-1,215,42,36,-1,322,71,263,-1,670,224,458,-1,322,508,71,-1,1027,1103,1115,-1,859,726,893,-1,1111,984,1067,-1,1035,1067,958,-1,688,1038,814,-1,1067,811,1111,-1,664,407,511,-1,407,346,466,-1,346,416,430,-1,261,225,181,-1,460,405,177,-1,1078,1135,936,-1,876,943,861,-1,799,995,882,-1,853,876,760,-1,459,1009,462,-1,1009,950,647,-1,625,612,523,-1,188,90,6,-1,309,149,115,-1,523,740,625,-1,1142,1143,1102,-1,1143,1134,1139,-1,845,730,766,-1,878,716,711,-1,659,525,761,-1,192,96,240,-1,67,260,240,-1,387,303,448,-1,85,226,288,-1,17,165,205,-1,1113,1123,1071,-1,1132,1108,1072,-1,1077,1155,1125,-1,770,738,772,-1,1019,1125,1153,-1,1063,1050,1003,-1,1130,1084,1109,-1,1016,1003,1034,-1,1130,1080,1106,-1,382,372,443,-1,151,125,100,-1,411,329,496,-1,869,975,643,-1,317,262,151,-1,496,468,643,-1,382,393,262,-1,368,375,313,-1,184,254,241,-1,481,370,607,-1,450,392,528,-1,44,32,19,-1,123,95,242,-1,256,319,447,-1,295,438,489,-1,741,573,455,-1,362,133,602,-1,438,639,514,-1,275,272,306,-1,925,634,902,-1,850,548,690,-1,548,429,573,-1,14,40,48,-1,62,169,40,-1,738,481,607,-1,900,912,930,-1,871,889,883,-1,1011,948,900,-1,311,91,169,-1,914,1052,968,-1,203,441,457,-1,68,56,234,-1,5,15,0,-1,452,834,603,-1,452,510,897,-1,435,296,266,-1,435,518,342,-1,400,509,436,-1,207,108,97,-1,253,217,252,-1,252,251,269,-1,269,318,252,-1,21,18,53,-1,897,510,505,-1,126,266,391,-1,112,99,49,-1,418,86,569,-1,1066,1113,1054,-1,476,364,527,-1,540,395,624,-1,627,540,667,-1,571,579,560,-1,699,696,560,-1,408,344,229,-1,585,519,621,-1,862,813,626,-1,1000,662,735,-1,931,998,964,-1,994,996,945,-1,172,175,428,-1,1054,1072,1047,-1,423,527,364,-1,423,364,97,-1,721,662,1000,-1,993,1039,1084,-1,656,502,453,-1,520,500,493,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getatlas_Geo_5_25_normalIndex_4()
		{
			int[] value = {669,500,622,-1,1034,946,1030,-1,962,968,905,-1,1059,858,1073,-1,666,518,562,-1,187,131,262,-1,345,219,254,-1,446,600,82,-1,701,851,1129,-1,504,694,902,-1,1088,1022,983,-1,774,414,234,-1,803,214,428,-1,968,860,914,-1,1062,1045,1050,-1,1104,1071,1123,-1,1097,1126,1123,-1,975,914,683,-1,897,1086,834,-1,701,935,485,-1,5,76,2,-1,41,126,277,-1,44,116,343,-1,133,19,79,-1,341,489,514,-1,173,95,123,-1,118,295,489,-1,639,751,491,-1,687,751,639,-1,438,687,639,-1,284,223,78,-1,1095,925,902,-1,748,722,850,-1,223,20,21,-1,276,162,400,-1,305,391,266,-1,319,242,452,-1,137,77,700,-1,484,213,80,-1,970,1150,1066,-1,849,1046,1006,-1,630,527,423,-1,53,18,13,-1,13,18,80,-1,402,512,626,-1,709,855,806,-1,941,1072,1108,-1,989,1141,1118,-1,1077,912,947,-1,989,868,1108,-1,1072,941,1008,-1,855,773,806,-1,571,692,624,-1,445,337,461,-1,162,235,141,-1,1064,1001,862,-1,63,14,48,-1,53,14,81,-1,1066,849,728,-1,22,80,213,-1,312,121,213,-1,721,970,1066,-1,557,849,623,-1,207,296,342,-1,93,330,356,-1,320,436,439,-1,121,179,37,-1,932,807,687,-1,21,20,77,-1,981,902,694,-1,807,741,751,-1,514,491,341,-1,239,269,251,-1,491,602,133,-1,197,97,364,-1,50,410,126,-1,55,11,41,-1,2,9,12,-1,142,701,485,-1,49,142,176,-1,246,776,816,-1,82,102,38,-1,1112,1088,1095,-1,914,975,1052,-1,1039,1024,1037,-1,1149,1155,1107,-1,1126,1062,1104,-1,1023,1062,1126,-1,1045,1033,1092,-1,1109,1055,1002,-1,1086,1121,953,-1,50,2,76,-1,321,485,505,-1,858,1059,818,-1,689,818,782,-1,1097,966,1059,-1,966,866,666,-1,1080,1109,1052,-1,1089,1090,1018,-1,474,516,471,-1,543,471,507,-1,397,299,217,-1,93,162,141,-1,235,162,276,-1,630,662,721,-1,520,646,522,-1,500,538,493,-1,838,869,669,-1,99,175,172,-1,937,905,844,-1,996,1092,1033,-1,791,952,788,-1,1064,735,817,-1,952,791,813,-1,693,568,685,-1,813,495,626,-1,619,685,706,-1,408,337,445,-1,93,145,97,-1,229,344,281,-1,281,437,395,-1,667,758,788,-1,572,373,434,-1,366,549,662,-1,571,624,395,-1,97,197,166,-1,1047,1006,1046,-1,849,557,542,-1,841,1068,1060,-1,626,512,675,-1,619,706,665,-1,509,729,675,-1,410,689,562,-1,446,857,953,-1,515,479,391,-1,603,678,515,-1,241,264,146,-1,81,63,146,-1,80,18,21,-1,342,296,435,-1,356,330,475,-1,49,99,15,-1,15,56,68,-1,56,15,99,-1,143,255,203,-1,683,914,610,-1,538,563,547,-1,146,91,184,-1,827,940,908,-1,792,827,864,-1,824,792,900,-1,941,883,904,-1,928,767,821,-1,697,772,607,-1,609,556,420,-1,484,504,404,-1,850,690,807,-1,253,553,634,-1,79,118,341,-1,393,455,573,-1,358,173,204,-1,358,272,354,-1,95,343,388,-1,636,443,247,-1,311,313,184,-1,528,311,473,-1,450,806,773,-1,313,254,184,-1,308,238,221,-1,308,386,316,-1,238,220,202,-1,409,221,202,-1,468,386,308,-1,323,359,381,-1,429,241,187,-1,636,455,382,-1,433,258,409,-1,643,442,616,-1,683,496,643,-1,321,317,151,-1,1070,1016,1030,-1,1030,946,993,-1,1087,1093,1034,-1,1126,1097,1059,-1,1070,1127,1132,-1,970,1000,1068,-1,1104,1050,1110,-1,1066,1133,1113,-1,67,39,260,-1,17,46,165,-1,140,226,111,-1,467,454,463,-1,594,554,454,-1,761,823,707,-1,845,915,730,-1,107,293,92,-1,1091,1053,1105,-1,1142,1075,1091,-1,90,426,309,-1,950,1081,1041,-1,90,432,426,-1,815,861,1049,-1,799,831,995,-1,1041,1134,1120,-1,1135,1009,1079,-1,75,59,225,-1,181,459,462,-1,407,416,346,-1,814,664,652,-1,888,909,919,-1,1025,561,664,-1,795,1058,960,-1,1027,747,1103,-1,1115,1144,1100,-1,1151,1145,1147,-1,670,458,1014,-1,980,1014,1101,-1,933,328,365,-1,1043,1074,1128,-1,59,31,42,-1,101,171,245,-1,132,117,58,-1,47,3,7,-1,33,28,54,-1,70,33,89,-1,72,66,122,-1,110,52,101,-1,1137,1116,924,-1,301,198,71,-1,1103,1083,1154,-1,650,224,670,-1,783,789,839,-1,334,597,739,-1,374,339,465,-1,190,374,488,-1,158,129,73,-1,84,168,101,-1,3,47,10,-1,651,629,486,-1,942,875,746,-1,879,901,750,-1,1010,1015,1065,-1,483,421,592,-1,641,614,658,-1,671,629,651,-1,486,300,324,-1,1044,1040,1026,-1,148,161,167,-1,122,66,160,-1,371,208,348,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getatlas_Geo_5_25_normalIndex_5()
		{
			int[] value = {340,421,92,-1,1058,1065,1049,-1,955,878,916,-1,781,878,955,-1,482,558,371,-1,595,482,454,-1,768,593,558,-1,740,483,592,-1,594,716,781,-1,988,960,1058,-1,111,105,115,-1,612,605,309,-1,425,107,88,-1,480,640,525,-1,490,451,534,-1,480,425,644,-1,601,465,747,-1,198,301,710,-1,760,508,648,-1,648,508,322,-1,987,896,918,-1,987,1091,1075,-1,1135,1081,1009,-1,723,861,815,-1,680,831,799,-1,1136,1026,1145,-1,1082,1099,1136,-1,1044,1026,1136,-1,903,934,1013,-1,544,245,470,-1,547,550,629,-1,963,1091,987,-1,249,212,326,-1,285,350,352,-1,249,357,282,-1,140,231,270,-1,335,389,232,-1,533,403,192,-1,556,609,645,-1,755,653,647,-1,346,430,290,-1,517,606,906,-1,814,1038,1076,-1,521,663,786,-1,536,416,561,-1,804,800,731,-1,984,848,800,-1,811,1067,910,-1,726,787,893,-1,1053,846,843,-1,802,720,725,-1,676,843,725,-1,695,867,929,-1,555,556,733,-1,846,963,895,-1,875,913,863,-1,863,840,756,-1,942,938,913,-1,809,942,746,-1,724,756,674,-1,736,784,812,-1,917,918,732,-1,726,754,663,-1,875,719,686,-1,546,724,674,-1,470,506,657,-1,1004,839,835,-1,163,61,34,-1,87,47,128,-1,163,209,128,-1,72,152,124,-1,35,74,33,-1,98,24,87,-1,192,30,96,-1,192,403,170,-1,88,156,188,-1,45,54,60,-1,29,6,90,-1,10,67,3,-1,67,10,39,-1,64,376,385,-1,64,170,376,-1,152,109,114,-1,72,109,152,-1,7,128,47,-1,7,61,128,-1,789,642,650,-1,789,753,642,-1,997,1057,1013,-1,997,1032,1057,-1,300,570,546,-1,486,570,300,-1,1020,1004,1032,-1,1020,922,1004,-1,736,830,657,-1,736,812,830,-1,752,780,810,-1,752,777,780,-1,826,967,809,-1,929,967,826,-1,777,720,802,-1,777,796,720,-1,1138,787,1025,-1,787,1138,893,-1,910,899,837,-1,899,910,1035,-1,804,879,887,-1,879,804,906,-1,1105,986,1117,-1,1053,986,1105,-1,545,885,677,-1,545,714,885,-1,1134,1152,1120,-1,1134,1143,1152,-1,501,274,567,-1,274,501,304,-1,282,250,302,-1,250,282,271,-1,259,260,205,-1,260,259,196,-1,1031,1131,1140,-1,1031,974,1131,-1,249,232,201,-1,249,282,232,-1,713,745,903,-1,713,544,745,-1,1017,1057,1040,-1,1017,1007,1057,-1,1154,1144,1115,-1,1154,1147,1144,-1,757,680,799,-1,757,644,680,-1,919,744,820,-1,919,853,744,-1,896,1078,874,-1,896,1102,1078,-1,1075,1102,896,-1,911,1147,1014,-1,1144,1147,911,-1,759,1041,977,-1,759,763,1041,-1,886,845,766,-1,845,886,872,-1,707,632,531,-1,749,632,707,-1,566,472,478,-1,566,568,472,-1,568,463,472,-1,568,564,463,-1,332,144,378,-1,332,136,144,-1,144,157,178,-1,167,157,144,-1,379,168,84,-1,379,324,168,-1,464,641,617,-1,464,499,641,-1,654,376,649,-1,385,376,654,-1,956,1044,1099,-1,956,898,1044,-1,160,230,200,-1,230,160,210,-1,222,132,120,-1,222,180,132,-1,719,613,686,-1,570,613,719,-1,649,617,654,-1,599,617,649,-1,591,671,614,-1,584,671,591,-1,106,148,66,-1,106,161,148,-1,1083,739,1069,-1,739,1083,747,-1,917,895,918,-1,895,917,927,-1,42,181,59,-1,42,215,181,-1,419,898,956,-1,419,355,898,-1,325,713,702,-1,713,325,384,-1,384,544,713,-1,544,384,283,-1,106,117,132,-1,106,65,117,-1,933,1144,911,-1,1144,933,1128,-1,26,328,307,-1,26,119,328,-1,198,537,215,-1,198,565,537,-1,673,301,508,-1,673,710,301,-1,653,842,890,-1,653,755,842,-1,750,820,785,-1,820,750,901,-1,984,1124,848,-1,1111,1124,984,-1,290,75,228,-1,290,177,75,-1,648,853,760,-1,744,853,648,-1,524,291,488,-1,524,298,291,-1,878,668,808,-1,878,711,668,-1,823,715,836,-1,823,761,715,-1,638,469,676,-1,638,448,469,-1,608,974,1031,-1,608,535,974,-1,335,456,545,-1,335,302,456,-1,1077,1146,1155,-1,1118,1146,1077,-1,1155,1153,1125,-1,1153,1155,1149,-1,1002,844,905,-1,1002,1055,844,-1,343,443,372,-1,443,343,294,-1,329,227,236,-1,227,329,411,-1,578,631,541,-1,631,578,563,-1,278,159,185,-1,159,278,236,-1,185,345,278,-1,185,219,345,-1,360,292,316,-1,360,361,292,-1,292,280,220,-1,280,292,370,-1,556,351,420,-1,556,555,351,-1,773,370,450,-1,773,607,370,-1,32,79,19,-1,79,32,118,-1,636,602,741,-1,362,602,636,-1,275,354,272,-1,253,354,275,-1,169,48,40,-1,48,169,91,-1,273,611,477,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getatlas_Geo_5_25_normalIndex_6()
		{
			int[] value = {273,440,611,-1,4,22,37,-1,4,13,22,-1,884,655,598,-1,854,655,884,-1,907,877,856,-1,889,877,907,-1,912,1011,947,-1,948,1011,912,-1,25,127,16,-1,25,182,127,-1,819,824,900,-1,819,794,824,-1,411,441,255,-1,411,610,441,-1,100,175,103,-1,100,147,175,-1,11,2,41,-1,11,9,2,-1,475,400,356,-1,475,509,400,-1,413,239,338,-1,413,305,239,-1,78,264,284,-1,53,264,78,-1,264,53,81,-1,9,248,142,-1,248,9,11,-1,121,398,179,-1,121,396,398,-1,572,735,549,-1,735,572,817,-1,487,585,590,-1,585,487,519,-1,628,475,494,-1,628,513,475,-1,699,568,693,-1,699,564,568,-1,1012,825,779,-1,1012,1021,825,-1,999,1012,979,-1,1012,999,990,-1,978,778,1080,-1,978,838,778,-1,522,698,526,-1,522,646,698,-1,516,420,417,-1,453,420,516,-1,453,502,420,-1,769,1080,778,-1,769,1106,1080,-1,1133,966,1097,-1,1133,1150,966,-1,76,0,86,-1,5,0,76,-1,1061,858,822,-1,858,1061,1073,-1,1039,946,1093,-1,946,1039,993,-1,656,609,502,-1,656,582,609,-1,520,532,622,-1,532,520,522,-1,1051,976,1024,-1,976,1051,985,-1,689,418,822,-1,689,410,418,-1,20,102,77,-1,38,102,20,-1,981,1112,1095,-1,981,926,1112,-1,214,737,234,-1,214,803,737,-1,441,833,457,-1,771,833,441,-1,610,771,441,-1,860,771,610,-1,1039,1051,1024,-1,1039,1093,1051,-1,11,237,248,-1,27,237,11,-1,816,1129,851,-1,816,1036,1129,-1,615,953,926,-1,615,600,953,-1,857,479,678,-1,857,446,479,-1,318,504,252,-1,318,404,504,-1,338,397,394,-1,299,397,338,-1,32,173,295,-1,173,32,44,-1,1088,850,932,-1,1088,983,850,-1,748,284,722,-1,748,223,284,-1,104,477,331,-1,273,477,104,-1,400,320,276,-1,320,400,436,-1,452,447,319,-1,452,603,447,-1,484,694,504,-1,484,137,694,-1,396,527,542,-1,396,476,527,-1,904,907,973,-1,904,889,907,-1,621,580,583,-1,621,665,580,-1,773,930,697,-1,855,930,773,-1,598,353,189,-1,598,655,353,-1,477,708,331,-1,767,708,477,-1,973,870,1006,-1,973,907,870,-1,870,856,703,-1,870,907,856,-1,618,331,708,-1,618,182,331,-1,655,473,353,-1,655,684,473,-1,229,337,408,-1,337,229,279,-1,1000,1060,1068,-1,1000,1064,1060,-1,121,476,396,-1,121,312,476,-1,603,413,447,-1,603,515,413,-1,37,273,104,-1,179,273,37,-1,1119,1022,1088,-1,1022,1119,1036,-1,251,338,239,-1,251,299,338,-1,404,197,364,-1,318,197,404,-1,55,277,446,-1,55,41,277,-1,142,12,9,-1,142,49,12,-1,1036,776,1022,-1,776,1036,816,-1,102,600,615,-1,102,82,600,-1,223,776,246,-1,223,748,776,-1,700,926,981,-1,615,926,700,-1,939,982,765,-1,939,1029,982,-1,1093,1092,1051,-1,1092,1093,1087,-1,457,779,415,-1,833,779,457,-1,1122,1089,1126,-1,1089,1122,1090,-1,77,615,700,-1,77,102,615,-1,317,505,369,-1,317,321,505,-1,985,999,976,-1,999,985,990,-1,604,471,543,-1,604,474,471,-1,503,522,526,-1,503,532,522,-1,497,578,541,-1,497,576,578,-1,244,366,141,-1,244,373,366,-1,532,769,778,-1,532,503,769,-1,698,543,526,-1,543,698,727,-1,698,587,588,-1,698,646,587,-1,646,591,587,-1,539,591,646,-1,1005,962,905,-1,971,962,1005,-1,944,945,931,-1,944,965,945,-1,803,1021,991,-1,803,825,1021,-1,860,971,771,-1,860,962,971,-1,1029,964,998,-1,939,964,1029,-1,699,791,758,-1,699,693,791,-1,791,685,743,-1,791,693,685,-1,619,743,685,-1,743,619,495,-1,276,286,235,-1,276,320,286,-1,279,320,337,-1,279,286,320,-1,590,444,487,-1,590,586,444,-1,373,549,366,-1,549,373,572,-1,179,440,273,-1,179,398,440,-1,870,623,849,-1,703,623,870,-1,706,580,665,-1,706,577,580,-1,439,675,512,-1,675,436,509,-1,675,439,436,-1,569,982,822,-1,569,765,982,-1,391,277,126,-1,277,391,479,-1,241,548,264,-1,429,548,241,-1,213,404,312,-1,213,484,404,-1,338,447,413,-1,394,447,338,-1,435,562,518,-1,435,347,562,-1,86,68,268,-1,0,68,86,-1,855,900,930,-1,819,900,855,-1,827,894,940,-1,827,824,894,-1,900,864,873,-1,900,792,864,-1,940,957,908,-1,892,957,940,-1,923,957,892,-1,1011,989,947,-1,1011,873,989,-1,923,708,957,-1,923,618,708,-1,709,819,855,-1,794,819,709,-1,4,14,13,-1,4,8,14,-1,37,25,4,-1,104,25,37,-1,634,932,687,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getatlas_Geo_5_25_normalIndex_7()
		{
			int[] value = {634,925,932,-1,602,751,741,-1,602,491,751,-1,388,452,242,-1,388,510,452,-1,392,313,311,-1,392,368,313,-1,218,420,351,-1,420,218,417,-1,370,361,450,-1,361,370,292,-1,555,333,351,-1,574,333,555,-1,359,360,381,-1,359,406,360,-1,361,406,399,-1,406,361,360,-1,442,258,433,-1,442,308,258,-1,409,576,497,-1,576,409,575,-1,323,236,278,-1,236,323,329,-1,541,669,596,-1,669,541,631,-1,372,388,343,-1,369,388,372,-1,1063,1016,1070,-1,1063,1003,1016,-1,1023,1018,959,-1,1023,1089,1018,-1,112,485,321,-1,176,485,112,-1,302,289,456,-1,302,250,289,-1,829,535,449,-1,829,974,535,-1,676,501,805,-1,676,469,501,-1,401,454,482,-1,401,463,454,-1,691,531,490,-1,691,707,531,-1,632,808,668,-1,749,808,632,-1,831,633,815,-1,831,660,633,-1,298,43,291,-1,298,88,43,-1,426,523,612,-1,432,523,426,-1,831,1049,1065,-1,831,815,1049,-1,389,201,232,-1,449,201,389,-1,605,763,759,-1,612,763,605,-1,899,750,785,-1,899,852,750,-1,1145,1014,1147,-1,1145,1101,1014,-1,365,119,134,-1,328,119,365,-1,565,1043,537,-1,565,1074,1043,-1,307,933,911,-1,307,328,933,-1,1128,1100,1144,-1,1100,1128,1074,-1,69,83,35,-1,69,73,83,-1,120,52,110,-1,58,52,120,-1,355,718,898,-1,355,332,718,-1,70,35,33,-1,69,35,70,-1,537,1079,459,-1,537,1043,1079,-1,458,911,1014,-1,458,307,911,-1,780,927,810,-1,780,895,927,-1,113,374,190,-1,113,339,374,-1,157,161,180,-1,167,161,157,-1,682,559,599,-1,682,681,559,-1,641,654,617,-1,641,620,654,-1,578,686,613,-1,578,576,686,-1,793,915,1015,-1,793,768,915,-1,385,620,379,-1,385,654,620,-1,582,431,498,-1,582,589,431,-1,324,620,530,-1,379,620,324,-1,584,629,671,-1,584,547,629,-1,154,150,257,-1,150,154,186,-1,210,211,230,-1,210,193,211,-1,178,378,144,-1,378,178,325,-1,120,315,222,-1,110,315,120,-1,340,208,371,-1,153,208,340,-1,363,153,293,-1,363,208,153,-1,451,566,478,-1,451,577,566,-1,836,886,823,-1,836,872,886,-1,711,590,668,-1,711,586,590,-1,592,768,793,-1,593,768,592,-1,714,977,885,-1,714,759,977,-1,529,289,309,-1,289,529,456,-1,580,451,490,-1,580,577,451,-1,480,715,640,-1,717,480,644,-1,717,715,480,-1,174,597,334,-1,174,390,597,-1,26,71,36,-1,26,130,71,-1,755,950,847,-1,755,647,950,-1,712,820,744,-1,820,712,785,-1,601,723,633,-1,601,828,723,-1,723,1027,876,-1,723,828,1027,-1,718,1007,1017,-1,718,742,1007,-1,954,742,702,-1,954,1007,742,-1,287,326,285,-1,287,357,326,-1,243,259,352,-1,243,196,259,-1,201,212,249,-1,201,267,212,-1,267,201,233,-1,165,259,205,-1,165,310,259,-1,469,304,501,-1,304,469,327,-1,805,1094,986,-1,805,969,1094,-1,1056,974,829,-1,974,1056,1131,-1,852,800,887,-1,852,958,800,-1,705,753,910,-1,705,642,753,-1,846,725,843,-1,846,802,725,-1,733,929,826,-1,762,929,733,-1,796,764,720,-1,865,764,796,-1,798,840,797,-1,756,840,798,-1,840,938,865,-1,913,938,840,-1,875,724,719,-1,875,863,724,-1,576,746,686,-1,575,746,576,-1,920,812,880,-1,830,812,920,-1,486,613,570,-1,550,613,486,-1,1013,920,997,-1,934,920,1013,-1,139,98,87,-1,139,152,98,-1,138,135,200,-1,138,70,135,-1,39,24,17,-1,39,10,24,-1,57,60,105,-1,57,45,60,-1,670,1048,835,-1,1048,670,980,-1,170,424,376,-1,424,170,403,-1,45,98,114,-1,45,23,98,-1,753,783,811,-1,783,753,789,-1,657,745,470,-1,657,830,745,-1,972,1032,997,-1,972,1020,1032,-1,657,674,736,-1,506,674,657,-1,1020,927,917,-1,1020,972,927,-1,736,756,798,-1,674,756,736,-1,752,796,777,-1,797,796,752,-1,797,784,798,-1,797,752,784,-1,809,555,826,-1,555,809,574,-1,986,676,805,-1,986,843,676,-1,1042,893,1138,-1,1042,859,893,-1,837,785,712,-1,837,899,785,-1,407,561,416,-1,407,664,561,-1,228,517,466,-1,228,225,517,-1,1131,1120,1152,-1,1120,1131,1056,-1,1142,1152,1143,-1,1142,1148,1152,-1,336,448,303,-1,448,336,377,-1,232,302,335,-1,302,232,282,-1,226,422,288,-1,226,270,422,-1,233,608,267,-1,608,233,535,-1,357,271,282,-1,271,357,287,-1,327,265,304,-1,350,265,327,-1,265,326,212,-1,265,350,326,-1,243,303,240,-1,303,243,336,-1,1082,1069,891,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getatlas_Geo_5_25_normalIndex_8()
		{
			int[] value = {1069,1082,1156,-1,847,795,755,-1,679,795,847,-1,896,460,672,-1,896,874,460,-1,637,298,524,-1,637,425,298,-1,659,691,534,-1,691,659,761,-1,107,480,293,-1,480,107,425,-1,714,456,529,-1,456,714,545,-1,594,581,716,-1,579,581,594,-1,340,558,593,-1,371,558,340,-1,872,915,845,-1,915,872,921,-1,581,711,716,-1,581,586,711,-1,872,882,921,-1,872,836,882,-1,412,534,478,-1,659,534,412,-1,478,348,412,-1,478,472,348,-1,348,463,401,-1,348,472,463,-1,194,129,158,-1,129,194,216,-1,186,283,384,-1,186,154,283,-1,136,355,164,-1,136,332,355,-1,210,148,199,-1,210,160,148,-1,136,167,144,-1,164,167,136,-1,164,199,167,-1,157,186,178,-1,157,150,186,-1,591,499,587,-1,499,591,614,-1,587,464,588,-1,587,499,464,-1,355,193,164,-1,193,355,419,-1,200,122,160,-1,200,135,122,-1,1015,740,793,-1,740,1015,1010,-1,559,704,498,-1,559,681,704,-1,880,784,810,-1,880,812,784,-1,158,200,230,-1,158,138,200,-1,73,138,158,-1,73,69,138,-1,291,6,190,-1,291,43,6,-1,465,297,334,-1,465,339,297,-1,650,839,789,-1,650,835,839,-1,261,653,606,-1,261,462,653,-1,390,367,661,-1,390,216,367,-1,378,702,742,-1,702,378,325,-1,66,65,106,-1,72,65,66,-1,174,216,390,-1,174,129,216,-1,215,459,181,-1,459,215,537,-1,365,936,924,-1,365,405,936,-1,933,1116,1128,-1,933,924,1116,-1,881,1100,710,-1,881,1115,1100,-1,960,755,795,-1,755,960,842,-1,820,888,919,-1,820,901,888,-1,134,31,75,-1,119,31,134,-1,885,1120,1056,-1,1120,885,977,-1,744,551,712,-1,744,648,551,-1,679,1041,763,-1,679,847,1041,-1,107,156,88,-1,107,92,156,-1,823,916,749,-1,886,916,823,-1,969,608,1031,-1,969,567,608,-1,389,545,677,-1,545,389,335,-1,149,140,111,-1,183,140,149,-1,1071,1098,1054,-1,1071,1110,1098,-1,1127,1118,1141,-1,1127,1146,1118,-1,1063,1110,1050,-1,1063,1132,1110,-1,1096,1153,1149,-1,1096,1130,1153,-1,236,143,159,-1,143,236,227,-1,125,185,159,-1,125,131,185,-1,442,596,616,-1,442,433,596,-1,219,131,187,-1,219,185,131,-1,386,427,381,-1,427,386,468,-1,575,333,574,-1,409,333,575,-1,220,316,292,-1,316,220,238,-1,316,381,360,-1,381,316,386,-1,218,220,280,-1,218,202,220,-1,473,169,353,-1,473,311,169,-1,247,116,19,-1,247,294,116,-1,358,306,272,-1,358,204,306,-1,182,104,331,-1,25,104,182,-1,62,353,169,-1,62,189,353,-1,854,684,655,-1,832,684,854,-1,856,928,821,-1,877,928,856,-1,734,941,868,-1,734,883,941,-1,552,923,892,-1,618,923,552,-1,889,801,877,-1,871,801,889,-1,894,832,854,-1,832,824,794,-1,832,894,824,-1,827,871,864,-1,827,801,871,-1,415,203,457,-1,415,147,203,-1,147,428,175,-1,147,415,428,-1,364,312,404,-1,312,364,476,-1,722,264,548,-1,722,284,264,-1,1086,1129,1121,-1,1086,1028,1129,-1,841,513,628,-1,841,729,513,-1,461,495,619,-1,402,495,461,-1,675,1060,862,-1,729,1060,675,-1,703,440,623,-1,611,440,703,-1,581,571,437,-1,571,581,579,-1,627,817,572,-1,817,627,788,-1,244,286,314,-1,235,286,244,-1,444,581,437,-1,444,586,581,-1,566,706,685,-1,566,577,706,-1,1001,813,862,-1,1001,952,813,-1,952,817,788,-1,817,952,1001,-1,844,1037,937,-1,1037,844,1055,-1,779,979,1012,-1,833,979,779,-1,990,1021,1012,-1,990,991,1021,-1,990,961,991,-1,971,999,979,-1,971,1005,999,-1,538,584,493,-1,538,547,584,-1,532,838,622,-1,838,532,778,-1,727,582,656,-1,727,589,582,-1,770,471,516,-1,471,770,507,-1,738,417,481,-1,738,516,417,-1,965,803,991,-1,737,803,965,-1,1033,959,996,-1,1033,1023,959,-1,423,141,366,-1,145,141,423,-1,937,999,1005,-1,976,999,937,-1,453,604,656,-1,453,474,604,-1,359,278,345,-1,359,323,278,-1,959,998,931,-1,959,1018,998,-1,1018,1085,998,-1,1018,1090,1085,-1,1150,866,966,-1,1150,1114,866,-1,858,689,822,-1,858,818,689,-1,248,701,142,-1,248,851,701,-1,790,765,492,-1,790,939,765,-1,1109,1037,1055,-1,1037,1109,1084,-1,1073,1090,1122,-1,1073,1085,1090,-1,55,27,11,-1,82,27,55,-1,237,851,248,-1,237,816,851,-1,1112,953,1121,-1,1112,926,953,-1,38,237,27,-1,38,246,237,-1,678,1086,857,-1,1086,678,834,-1,397,256,394,-1,397,306,256,-1,396,557,398,-1,557,396,542,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getatlas_Geo_5_25_normalIndex_9()
		{
			int[] value = {957,767,928,-1,767,957,708,-1,108,330,93,-1,108,342,330,-1,630,728,542,-1,728,630,721,-1,1114,841,866,-1,1114,1068,841,-1,518,330,342,-1,518,494,330,-1,344,519,487,-1,519,344,408,-1,621,461,665,-1,621,445,461,-1,692,758,667,-1,692,699,758,-1,992,912,1077,-1,930,912,992,-1,552,189,127,-1,552,598,189,-1,611,767,477,-1,821,767,611,-1,1008,1006,1047,-1,1006,1008,973,-1,703,821,611,-1,703,856,821,-1,182,552,127,-1,182,618,552,-1,684,528,473,-1,684,709,528,-1,439,337,320,-1,439,402,337,-1,487,281,344,-1,487,444,281,-1,866,628,666,-1,866,841,628,-1,305,515,391,-1,515,305,413,-1,925,1088,932,-1,1095,1088,925,-1,354,687,438,-1,634,687,354,-1,256,204,123,-1,306,204,256,-1,269,206,166,-1,239,206,269,-1,897,1028,1086,-1,897,935,1028,-1,1119,1121,1129,-1,1119,1112,1121,-1,748,1022,776,-1,748,983,1022,-1,1085,982,1029,-1,1085,1061,982,-1,415,825,428,-1,779,825,415,-1,774,492,414,-1,774,790,492,-1,1023,1045,1062,-1,1033,1045,1023,-1,20,246,38,-1,246,20,223,-1,254,187,241,-1,219,187,254,-1,418,76,86,-1,410,76,418,-1,994,1051,1092,-1,994,985,1051,-1,493,591,539,-1,591,493,584,-1,526,507,503,-1,507,526,543,-1,541,433,497,-1,433,541,596,-1,1024,937,1037,-1,1024,976,937,-1,931,996,959,-1,945,996,931,-1,172,234,56,-1,172,214,234,-1,770,503,507,-1,503,770,769,-1,604,727,656,-1,604,543,727,-1,698,589,727,-1,698,588,589,-1,985,961,990,-1,985,994,961,-1,991,945,965,-1,991,961,945,-1,944,737,965,-1,774,737,944,-1,979,771,971,-1,771,979,833,-1,939,944,964,-1,944,790,774,-1,790,944,939,-1,519,445,621,-1,445,519,408,-1,314,279,349,-1,286,279,314,-1,667,624,692,-1,667,540,624,-1,398,623,440,-1,398,557,623,-1,492,569,268,-1,569,492,765,-1,553,252,504,-1,253,252,553,-1,207,239,305,-1,239,207,206,-1,518,628,494,-1,518,666,628,-1,318,166,197,-1,318,269,166,-1,414,268,68,-1,268,414,492,-1,143,147,100,-1,143,203,147,-1,854,940,894,-1,940,884,892,-1,940,854,884,-1,864,883,873,-1,864,871,883,-1,928,908,957,-1,908,928,877,-1,892,598,552,-1,598,892,884,-1,868,873,734,-1,873,868,989,-1,832,709,684,-1,832,794,709,-1,16,189,62,-1,16,127,189,-1,16,4,25,-1,16,8,4,-1,62,8,16,-1,62,40,8,-1,256,242,319,-1,123,242,256,-1,362,19,133,-1,247,19,362,-1,280,417,218,-1,417,280,481,-1,450,399,368,-1,450,361,399,-1,202,351,333,-1,351,202,218,-1,375,406,345,-1,375,399,406,-1,329,427,496,-1,329,323,427,-1,151,131,125,-1,151,262,131,-1,596,869,616,-1,869,596,669,-1,100,159,143,-1,100,125,159,-1,510,369,505,-1,510,388,369,-1,1030,1149,1107,-1,1030,1096,1149,-1,1045,1003,1050,-1,1003,1045,1087,-1,770,1106,769,-1,770,1019,1106,-1,1125,772,992,-1,1125,1019,772,-1,1132,1141,1108,-1,1132,1127,1141,-1,289,183,149,-1,289,250,183,-1,449,677,829,-1,677,449,389,-1,805,567,969,-1,805,501,567,-1,240,383,192,-1,383,240,303,-1,580,531,583,-1,580,490,531,-1,250,231,183,-1,250,271,231,-1,625,763,612,-1,625,679,763,-1,462,647,653,-1,462,1009,647,-1,712,705,837,-1,712,551,705,-1,836,757,882,-1,717,757,836,-1,677,1056,829,-1,1056,677,885,-1,874,405,460,-1,874,936,405,-1,466,804,731,-1,804,466,517,-1,958,899,1035,-1,899,958,852,-1,951,909,988,-1,909,951,919,-1,130,263,71,-1,130,224,263,-1,36,31,26,-1,36,42,31,-1,134,405,365,-1,134,177,405,-1,174,73,129,-1,174,94,73,-1,332,742,718,-1,742,332,378,-1,661,380,775,-1,661,367,380,-1,109,135,89,-1,135,109,122,-1,1043,1137,1079,-1,1137,1043,1116,-1,739,465,334,-1,739,747,465,-1,180,106,132,-1,161,106,180,-1,620,658,530,-1,641,658,620,-1,609,498,645,-1,609,582,498,-1,209,117,65,-1,163,117,209,-1,297,94,334,-1,83,94,297,-1,1156,1083,1069,-1,1083,1156,1151,-1,190,29,74,-1,190,6,29,-1,84,385,379,-1,84,64,385,-1,733,704,635,-1,733,645,704,-1,431,559,498,-1,431,599,559,-1,589,464,431,-1,589,588,464,-1,222,257,150,-1,315,257,222,-1,210,164,193,-1,210,199,164,-1,419,211,193,-1,211,419,380,-1,384,178,186,-1,325,178,384,-1,211,216,194,-1,367,211,380,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getatlas_Geo_5_25_normalIndex_10()
		{
			int[] value = {216,211,367,-1,208,412,348,-1,363,412,208,-1,363,659,412,-1,525,659,363,-1,680,524,660,-1,680,637,524,-1,585,668,590,-1,632,668,585,-1,955,886,766,-1,955,916,886,-1,421,593,592,-1,340,593,421,-1,529,759,714,-1,529,605,759,-1,597,661,891,-1,390,661,597,-1,890,606,653,-1,606,890,906,-1,919,943,853,-1,951,943,919,-1,524,633,660,-1,524,488,633,-1,988,842,960,-1,988,909,842,-1,891,775,1082,-1,661,775,891,-1,1007,1013,1057,-1,1007,954,1013,-1,352,336,243,-1,336,352,377,-1,212,304,265,-1,274,212,267,-1,274,304,212,-1,270,285,310,-1,270,287,285,-1,567,267,608,-1,274,267,567,-1,310,288,422,-1,165,288,310,-1,448,327,469,-1,448,377,327,-1,969,1140,1094,-1,969,1031,1140,-1,1152,1140,1131,-1,1152,1148,1140,-1,1148,1094,1140,-1,1148,1117,1094,-1,1076,1124,1138,-1,1038,1124,1076,-1,764,383,720,-1,764,533,383,-1,867,865,938,-1,764,865,867,-1,865,797,840,-1,865,796,797,-1,810,972,880,-1,810,927,972,-1,997,880,972,-1,920,880,997,-1,550,578,613,-1,563,578,550,-1,934,830,920,-1,745,830,934,-1,726,811,783,-1,859,811,726,-1,315,155,257,-1,315,110,155,-1,1,3,30,-1,7,3,1,-1,17,23,46,-1,17,24,23,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getatlas_Coord_6_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_6_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 double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_26_vector_1()
		{
			double[] value = {-0.999,0.0447,-0.0004,-0.9974,0.0531,-0.0486,-0.992,-0.0771,-0.0995,-0.9911,-0.132,0.0195,-0.9903,-0.036,-0.1343,-0.9884,-0.1436,-0.0492,-0.9873,0.1408,-0.0729,-0.9864,0.0794,-0.1438,-0.9857,-0.0359,0.1645,-0.9845,-0.0242,-0.1738,-0.9826,0.0848,-0.1652,-0.9804,0.0151,-0.1963,-0.9799,0.0439,-0.1946,-0.9767,-0.0958,-0.1922,-0.9691,-0.1793,0.1696,-0.9688,0.2466,-0.0236,-0.9648,-0.203,0.1672,-0.9639,-0.2635,0.0379,-0.9626,-0.1976,-0.1852,-0.961,0.0503,0.2721,-0.9597,0.0312,-0.2794,-0.9553,-0.2202,-0.197,-0.9544,-0.1549,-0.2551,-0.9476,0.2148,-0.2365,-0.9459,0.2909,-0.144,-0.945,-0.2904,-0.1502,-0.9423,-0.1837,-0.2799,-0.9362,0.2743,-0.2197,-0.9269,0.1749,-0.3321,-0.9266,0.0181,-0.3757,-0.9237,-0.3405,-0.1757,-0.9235,-0.3641,-0.1204,-0.9232,-0.1556,-0.3513,-0.9203,0.2564,-0.2955,-0.9148,0.3303,-0.2324,-0.9121,0.0538,-0.4064,-0.9098,0.1254,0.3956,-0.9083,-0.1159,-0.402,-0.901,0.3459,-0.262,-0.8997,-0.4348,0.0383,-0.8967,0.0736,0.4364,-0.8965,0.4352,-0.0835,-0.8954,0.0206,0.4447,-0.8951,0.4149,0.1634,-0.89,0.3802,-0.2516,-0.8896,0.1814,-0.4192,-0.8829,-0.4371,-0.1713,-0.8815,0.0432,-0.4703,-0.8783,0.034,0.477,-0.8764,0.081,-0.4747,-0.8758,-0.1348,-0.4636,-0.8715,-0.3109,-0.3794,-0.871,-0.1967,-0.4502,-0.8702,-0.4399,-0.222,-0.8653,0.4387,-0.2426,-0.8615,0.4812,0.1617,-0.8577,0.5004,0.1181,-0.8577,-0.1266,-0.4983,-0.8557,0.0484,-0.5152,-0.8553,-0.2445,0.4568,-0.855,-0.0894,-0.5109,-0.8547,0.4356,-0.2825,-0.854,-0.1464,0.4993,-0.8533,-0.2417,0.4621,-0.853,-0.1447,-0.5015,-0.8528,0.2605,-0.4526,-0.8522,0.4756,-0.2183,-0.85,-0.5047,0.151,-0.8462,0.5329,0.0011,-0.845,0.4844,-0.2264,-0.8413,0.5158,-0.1618,-0.8397,0.5302,0.117,-0.8396,0.5188,-0.161,-0.8385,0.4664,-0.2817,-0.8378,0.1984,-0.5086,-0.8327,-0.5513,0.0514,-0.8326,-0.3338,-0.442,-0.8218,0.43,0.374,-0.8212,-0.4691,-0.3249,-0.8205,-0.5712,0.0215,-0.8202,-0.5718,-0.0158,-0.82,-0.5658,0.0858,-0.8199,0.4808,0.3109,-0.8175,-0.0549,-0.5733,-0.8159,-0.083,-0.5723,-0.8155,-0.389,-0.4286,-0.811,0.013,-0.5849,-0.8084,0.4263,-0.4058,-0.8001,0.5696,0.1883,-0.7926,0.6096,-0.0083,-0.7861,-0.5588,-0.2644,-0.784,-0.0381,0.6196,-0.7831,0.0139,0.6218,-0.7819,-0.1108,-0.6135,-0.7791,0.1164,-0.616,-0.7761,0.5082,-0.3734,-0.7734,-0.6012,0.201,-0.7721,-0.4974,-0.3955,-0.772,0.624,-0.1211,-0.7717,0.4915,-0.4036,-0.7709,0.5951,0.2272,-0.7684,0.1632,-0.6188,-0.7678,0.5933,0.2416,-0.767,0.6046,-0.2148,-0.767,-0.4316,-0.4748,-0.7663,-0.122,-0.6308,-0.7637,0.4381,-0.4742,-0.7619,0.6195,0.189,-0.761,0.1207,-0.6374,-0.76,0.6498,-0.0129,-0.7591,0.0703,-0.6471,-0.7575,-0.2653,-0.5965,-0.7571,0.6358,-0.1503,-0.7511,-0.0042,-0.6602,-0.7491,0.6541,-0.105,-0.7489,-0.2757,-0.6026,-0.7426,0.6186,0.2565,-0.7409,0.1969,-0.6421,-0.7385,-0.4919,-0.4612,-0.7353,-0.5143,-0.4414,-0.7332,0.1568,-0.6617,-0.7313,-0.4389,-0.522,-0.731,0.6822,-0.0146,-0.7306,0.1694,-0.6614,-0.73,0.5055,-0.46,-0.7293,0.5341,0.4276,-0.7291,0.3879,-0.5638,-0.7218,-0.653,0.2294,-0.7215,0.3068,-0.6207,-0.7213,0.6641,-0.1968,-0.721,0.2749,-0.636,-0.7181,0.4164,0.5576,-0.7136,0.3383,-0.6134,-0.711,-0.4989,0.4956,-0.7086,-0.5631,-0.4251,-0.7078,0.7062,0.0181,-0.7,0.4817,-0.5273,-0.6989,-0.5709,0.4308,-0.6971,0.7127,-0.078,-0.6916,0.5388,-0.481,-0.6915,-0.7105,-0.1308,-0.6903,-0.6395,-0.3385,-0.6898,-0.0642,-0.7211,-0.6897,0.5676,0.4496,-0.6879,0.4831,-0.5417,-0.6875,-0.7194,-0.0995,-0.6851,-0.4925,0.5367,-0.6837,0.7297,-0.0085,-0.6821,0.6428,-0.3487,-0.6813,-0.4558,-0.5728,-0.6812,0.3104,-0.663,-0.6799,0.6479,0.3436,-0.6793,0.7305,-0.0709,-0.6776,0.2636,0.6865,-0.6775,0.3343,-0.6552,-0.6749,0.3248,-0.6626,-0.6748,-0.2096,0.7076,-0.6721,0.4319,-0.6015,-0.6721,0.7402,-0.02,-0.6715,0.514,0.5337,-0.6713,0.7316,-0.1188,-0.6711,0.57,-0.4739,-0.6709,0.0919,-0.7358,-0.6687,0.4928,-0.5567,-0.6648,0.6498,-0.3685,-0.6644,-0.725,0.1818,-0.6615,-0.5185,-0.5418,-0.6602,0.5267,-0.5355,-0.6591,0.1027,-0.7451,-0.6565,-0.1005,0.7476,-0.6557,-0.3871,-0.6482,-0.6527,0.7498,-0.1086,-0.6519,0.666,-0.3625,-0.6511,-0.2412,-0.7196,-0.6485,0.4774,-0.5928,-0.6465,0.648,-0.4026,-0.644,0.197,-0.7393,-0.643,-0.7145,-0.2759,-0.6427,0.4174,-0.6424,-0.6414,-0.2936,-0.7088,-0.6407,0.5578,-0.5276,-0.6387,0.0864,0.7646,-0.6371,-0.7636,-0.105,-0.637,-0.7583,-0.1384,-0.6359,-0.2017,0.7449,-0.6327,0.3937,0.6669,-0.6315,0.3634,-0.685,-0.6284,0.1554,0.7622,-0.6283,-0.6837,0.3711,-0.6282,-0.5512,0.5491,-0.6271,0.5491,-0.5525,-0.627,-0.4591,-0.6293,-0.6214,-0.7834,-0.0087,-0.6201,0.7792,-0.0915,-0.6179,0.7807,0.0927,-0.6152,0.6032,-0.5076,-0.6127,-0.7893,-0.04,-0.6113,-0.7206,-0.3272,-0.611,0.4658,0.6401,-0.6056,0.7136,-0.3523,-0.605,0.7962,-0.0029,-0.6039,-0.7854,0.1359,-0.6031,0.1621,0.7811,-0.6016,0.7666,0.2245,-0.6011,-0.5218,-0.6053,-0.601,-0.7872,0.138,-0.6003,-0.0379,-0.7989,-0.5915,0.2889,-0.7527,-0.5909,0.3029,0.7477,-0.5904,0.4183,-0.6903,-0.5904,0.8007,-0.1014,-0.5902,0.8054,0.0538,-0.5847,-0.8044,0.1052,-0.5818,-0.8067,-0.1038,-0.5817,0.7641,-0.279,-0.5816,0.3569,0.731,-0.5813,0.7997,-0.1502,-0.5801,-0.3578,-0.7318,-0.5781,-0.1844,0.7949,-0.5772,0.1572,0.8013,-0.5766,0.0948,0.8115,-0.5716,0.2402,0.7846,-0.5713,0.5206,-0.6345,-0.5704,-0.5355,-0.6228,-0.5703,0.593,-0.5684,-0.5696,-0.7138,0.4076,-0.5692,-0.8204,-0.0554,-0.568,0.4298,0.7019,-0.5666,-0.8016,0.1909,-0.5656,0.0148,-0.8245,-0.5652,0.8249,0.0126,-0.5647,-0.7887,0.2428,-0.5643,-0.8019,0.196,-0.5603,-0.8147,0.1495,-0.5586,0.8272,0.0612,-0.5571,-0.2156,-0.8019,-0.5564,0.4711,0.6845,-0.5561,-0.1643,-0.8147,-0.5556,0.2031,0.8063,-0.5552,0.0107,-0.8316,-0.5546,-0.7926,0.2534,-0.5525,-0.3136,0.7723,-0.5485,0.7836,-0.2917,-0.548,-0.8212,0.1591,-0.5479,-0.6962,-0.4638,-0.5458,0.8239,0.1528,-0.5446,-0.2676,-0.7948,-0.5406,0.1635,0.8253,-0.5392,-0.3793,-0.7519,-0.5373,-0.8298,0.1509,-0.5363,-0.8286,-0.1606,-0.536,-0.2755,-0.798,-0.5348,-0.5488,-0.6425,-0.5298,-0.6151,-0.5839,-0.5277,-0.0288,0.849,-0.5275,0.5895,0.6117,-0.526,-0.0482,-0.8491,-0.5239,0.3703,-0.7671,-0.5234,0.3769,0.7642,-0.5234,-0.8455,0.1059,-0.5221,-0.8504,0.0655,-0.522,-0.4918,0.6969,-0.5214,0.6135,0.593,-0.5194,0.7956,-0.3118,-0.5173,-0.8146,0.2624,-0.5159,-0.8491,0.1136,-0.5125,0.4358,-0.7399,-0.5113,-0.8338,0.2083,-0.5109,0.6705,-0.5379,-0.5108,-0.5079,-0.6936,-0.5088,-0.8519,0.1242,-0.5078,-0.85,0.1402,-0.5074,-0.649,-0.5668,-0.5041,-0.4859,-0.714,-0.5009,-0.8312,0.2414,-0.4993,-0.5944,-0.6304,-0.4977,0.3991,-0.7701,-0.4953,0.8642,0.0892,-0.4949,0.3707,0.7859,-0.494,-0.0978,-0.864,-0.4912,-0.2656,0.8296,-0.4888,-0.5018,-0.7136,-0.4885,-0.8557,0.1708,-0.4839,0.7874,-0.3819,-0.4826,-0.7265,-0.4892,-0.4815,-0.8714,0.0942,-0.4811,-0.1275,-0.8673,-0.4796,-0.868,0.1282,-0.4788,-0.8765,0.0492,-0.4768,-0.6618,-0.5785,-0.4752,-0.8764,0.0776,-0.4723,0.7772,-0.4158,-0.4714,0.0809,0.8782,-0.4652,0.8376,0.2865,-0.4644,0.6415,0.6105,-0.4642,-0.3286,-0.8225,-0.464,0.5126,-0.7225,-0.4631,-0.4558,-0.7601,-0.461,0.8139,-0.3536,-0.4608,-0.2197,-0.8599,-0.4571,0.8012,-0.3862,-0.455,0.8176,0.353,-0.4549,-0.8725,-0.1784,-0.4545,-0.7666,0.4536,-0.4545,-0.8535,0.255,-0.4542,0.4667,-0.7589,-0.4538,-0.5981,-0.6606,-0.4514,-0.476,-0.7548,-0.451,0.3945,0.8006,-0.4481,-0.4805,-0.7538,-0.4476,-0.8757,0.1812,-0.4464,-0.1089,0.8882,-0.4426,-0.8432,-0.3052,-0.4404,0.046,0.8966,-0.4398,-0.5871,-0.6796,-0.4396,0.4608,-0.771,-0.4299,0.0222,0.9026,-0.4299,0.8342,0.3454,-0.4287,-0.7248,-0.5394,-0.4281,0.5554,-0.7129,-0.4251,0.4813,-0.7666,-0.4229,0.8976,-0.1244,-0.4225,0.8817,-0.2098,-0.4216,0.3108,0.8519,-0.4202,0.0565,-0.9057,-0.4201,0.6899,-0.5895,-0.4192,-0.8978,0.135,-0.4188,-0.873,0.2498,-0.418,-0.5854,-0.6947,-0.4162,0.4395,0.796,-0.416,0.5423,-0.73,-0.4157,-0.8321,-0.3671,-0.4059,0.6777,-0.6132,-0.4051,0.2869,0.8681,-0.403,-0.1587,-0.9013,-0.4024,-0.9002,-0.1664,-0.4021,-0.8427,0.358,-0.402,0.5177,-0.7552,-0.3988,-0.037,-0.9163,-0.3986,-0.2024,-0.8945,-0.3982,-0.4141,0.8185,-0.3952,-0.7899,-0.4688,-0.3927,0.5448,-0.741,-0.3925,0.9032,0.1737,-0.3873,0.144,-0.9106,-0.3871,0.0964,0.917,-0.3866,-0.8665,0.3157,-0.3865,-0.108,-0.916,-0.3857,0.3968,0.8329,-0.3853,-0.6817,-0.6219,-0.3842,-0.918,0.098,-0.3837,-0.2169,0.8976,-0.3833,-0.922,0.0551,-0.3807,-0.5132,0.7692,-0.3807,-0.7431,-0.5503,-0.3781,0.8154,-0.4383,-0.3779,0.7478,-0.5459,-0.3779,-0.9059,0.1911,-0.3743,-0.5532,-0.7442,-0.3725,0.0615,0.926,-0.3709,-0.035,0.928,-0.3698,0.1044,0.9232,-0.3684,-0.348,0.8621,-0.3672,0.7415,0.5615,-0.3666,-0.9157,-0.1645,-0.3658,-0.5954,-0.7153,-0.364,-0.8952,0.2572,-0.3637,0.9314,-0.0146,-0.3635,0.1353,0.9217,-0.3624,0.9195,0.1523,-0.3621,-0.3857,0.8486,-0.3619,-0.3116,0.8786,-0.355,0.8833,0.3061,-0.3541,-0.9127,0.2041,-0.354,0.4001,-0.8453,-0.352,0.007,0.936,-0.3508,-0.3844,-0.8539,-0.3506,-0.8859,0.3037,-0.3486,0.7591,-0.5497,-0.3473,-0.2794,-0.8952,-0.3461,0.9372,0.0432,-0.3448,0.1269,0.9301,-0.3447,0.6146,0.7095,-0.3438,-0.7461,0.5702,-0.3399,0.809,-0.4795,-0.3378,-0.2919,-0.8948,-0.3371,0.2048,0.9189,-0.3371,-0.6353,0.6948,-0.3368,0.9387,0.074,-0.336,-0.9308,-0.1436,-0.3357,0.7702,-0.5423,-0.3342,0.8166,-0.4705,-0.3333,0.0135,0.9427,-0.3332,0.1295,0.9339,-0.3318,-0.0866,-0.9394,-0.3312,-0.8865,-0.3231,-0.3311,-0.5432,-0.7716,-0.3298,-0.439,-0.8358,-0.3277,-0.369,-0.8697,-0.3275,0.1023,0.9393,-0.3266,0.8629,-0.3857,-0.3262,-0.0204,0.9451,-0.3242,0.8794,-0.3486,-0.324,-0.8755,-0.3584,-0.323,-0.8778,-0.3539,-0.3209,-0.726,-0.6083,-0.318,-0.0254,0.9477,-0.317,-0.9137,0.2545,-0.3146,0.4478,-0.837,-0.3092,0.6447,0.6991,-0.3068,-0.5007,-0.8094,-0.304,0.5989,0.7409,-0.3004,0.6478,0.7001,-0.2996,0.4195,-0.8569,-0.2916,0.956,-0.0307,-0.29,0.9155,-0.279,-0.2883,-0.7739,0.5639,-0.2882,-0.8139,0.5045,-0.2858,-0.3034,-0.909,-0.2818,0.9579,-0.0544,-0.2801,-0.7041,0.6525,-0.2733,-0.5119,0.8144,-0.2725,-0.9533,0.1301,-0.2693,-0.9144,0.3022,-0.2683,-0.8722,-0.409,-0.268,0.9223,-0.2786,-0.2652,-0.777,-0.571,-0.2642,0.4163,0.87,-0.2615,0.7762,-0.5737,-0.2575,-0.5243,0.8117,-0.2564,-0.9078,0.3319,-0.2522,-0.3682,-0.8949,-0.2466,-0.9616,0.1206,-0.2455,0.7761,0.5809,-0.2417,-0.9704,0.0011,-0.2407,0.5011,-0.8312,-0.2354,0.9175,-0.3206,-0.2352,-0.9257,-0.2963,-0.235,-0.6771,-0.6974,-0.2349,0.9206,-0.3119,-0.2308,-0.5021,-0.8334,-0.2289,0.967,0.1115,-0.2281,0.681,0.6959,-0.2231,0.6033,0.7657,-0.2189,-0.4944,-0.8412,-0.2185,0.7045,-0.6752,-0.218,0.8168,0.5341,-0.2177,0.3589,-0.9076,-0.2159,-0.731,0.6473,-0.2157,-0.9737,-0.0737,-0.2152,-0.1844,0.959,-0.2136,0.8763,0.4318,-0.2112,0.877,-0.4316,-0.2106,-0.9578,-0.1955,-0.2102,-0.7472,0.6305,-0.2065,-0.0852,0.9747,-0.2046,-0.7141,-0.6695,-0.2022,0.9519,-0.2302,-0.1969,-0.1101,-0.9742,-0.1961,0.2401,0.9507,-0.1944,-0.8903,-0.4117,-0.1861,0.9369,-0.2958,-0.1843,-0.6152,0.7665,-0.1843,0.0204,0.9827,-0.1773,-0.4065,-0.8963,-0.177,-0.392,-0.9028,-0.1759,-0.9842,0.0212,-0.1753,-0.6871,0.7051,-0.1738,0.5361,0.8261,-0.1729,-0.7884,0.5903,-0.1706,0.7172,0.6757,-0.1699,-0.6252,-0.7618,-0.1698,0.425,0.8891,-0.1676,-0.5132,0.8418,-0.1672,-0.6574,-0.7348,-0.1672,0.9205,-0.3531,-0.1655,-0.9058,-0.3901,-0.1645,-0.8212,-0.5464,-0.1616,0.6295,0.76,-0.1606,0.9848,0.0654,-0.1594,0.9868,-0.0267,-0.1482,-0.9003,0.4093,-0.1475,-0.7236,0.6743,-0.1434,-0.8098,0.5689,-0.1427,-0.9762,0.1631,-0.1423,0.5466,-0.8252,-0.1418,0.9609,-0.2377,-0.1409,0.1347,-0.9808,-0.1396,0.6915,-0.7088,-0.1393,-0.8057,-0.5757,-0.1389,0.9568,-0.2554,-0.1377,-0.9875,-0.0762,-0.134,0.963,-0.2337,-0.1334,0.6748,-0.7259,-0.1288,0.7599,-0.6372,-0.126,0.9393,0.3191,-0.1251,0.5753,0.8083,-0.123,0.8507,0.511,-0.1213,-0.79,-0.6009,-0.1207,-0.4339,-0.8928,-0.1191,0.7148,-0.6891,-0.1188,-0.8189,0.5615,-0.1132,-0.9846,0.133,-0.112,-0.3112,-0.9437,-0.1074,-0.991,-0.0801,-0.1051,0.9592,-0.2626,-0.1048,0.7365,0.6683,-0.1047,-0.5173,-0.8494,-0.1038,0.9788,-0.1767,-0.0963,0.9893,-0.1098,-0.0938,0.9577,-0.272,-0.0885,-0.9566,-0.2778,-0.0861,0.9959,0.0286,-0.0826,0.9132,-0.399,-0.0818,-0.8974,-0.4336,-0.0808,0.7187,-0.6906,-0.0779,-0.9446,-0.3189,-0.0771,-0.9958,-0.0494,-0.0762,0.5362,-0.8407,-0.0732,0.4724,-0.8783,-0.0717,0.1021,-0.9922,-0.0703,-0.7294,0.6805,-0.0695,-0.2308,-0.9705,-0.069,-0.9971,0.0327,-0.0665,0.8065,-0.5875,-0.0656,0.9527,0.2967,-0.0642,-0.3161,-0.9465,-0.0622,-0.9897,-0.1291,-0.0614,-0.4003,0.9143,-0.0605,-0.497,-0.8656,-0.0587,0.3717,-0.9265,-0.0576,0.749,-0.66,-0.0565,-0.238,-0.9696,-0.0539,-0.9561,0.288,-0.0524,0.9345,0.352,-0.0509,-0.9952,0.0836,-0.0487,-0.298,0.9533,-0.0456,0.6683,0.7425,-0.0449,0.9702,-0.2379,-0.0445,-0.1001,-0.994,-0.044,-0.9985,-0.0321,-0.044,0.9242,0.3793,-0.0427,-0.7034,-0.7095,-0.0388,-0.4484,-0.893,-0.0386,0.9274,0.3721,-0.0365,-0.7661,-0.6417,-0.0337,0.916,0.3998,-0.0334,0.992,-0.1219,-0.0321,-0.9837,0.1767,-0.031,-0.7522,0.6582,-0.0297,0.994,0.1051,-0.0282,0.8176,-0.5751,-0.0266,-0.956,0.2921,-0.0244,-0.9946,0.1004,-0.023,-0.996,-0.0859,-0.0221,-0.3348,0.942,-0.02,-0.7477,0.6638,-0.02,-0.3897,-0.9207,-0.0195,-0.7407,0.6716,-0.0192,-0.5682,-0.8226,-0.018,-0.597,0.802,-0.0174,-0.831,0.556,-0.0156,0.0228,-0.9996,-0.0146,0.9858,0.167,-0.0145,-0.0025,0.9999,-0.0135,0.6676,0.7444,-0.0123,0.6146,0.7887,-0.0119,-0.8815,0.472,-0.0116,0.3938,0.9191,-0.0111,0.4055,-0.914,-0.0057,0.9361,0.3517,-0.0047,-0.9959,0.0903,-0.0042,-0.7606,0.6493,-0.001,-0.7161,0.698,0.0,0.1282,0.9917,0.0,0.6327,0.7744,0.0,0.8652,0.5014,0.0,0.8916,0.4529,0.0,0.9304,0.3666,0.0,-0.9551,0.2963,0.0,0.9833,-0.1822,0.0,-0.9466,-0.3225,0.0,-0.8535,-0.5211,0.0,0.7984,-0.6022,0.0,0.663,-0.7486,0.0,0.5135,-0.8581,0.0,-0.4788,-0.8779,0.0,-0.4658,-0.8849,0.0,-0.4423,-0.8969,0.0,-0.414,-0.9103,0.0,0.1819,-0.9833,0.0,-0.134,-0.991,0.0019,-0.7581,0.6521,0.002,-0.7799,0.6259,0.0047,-0.9959,0.0903,0.0054,-0.9911,-0.1328,0.0057,0.9361,0.3517,0.0111,0.4055,-0.914,0.0119,-0.8815,0.472,0.0123,-0.4263,-0.9045,0.0135,0.6676,0.7444,0.0156,0.0228,-0.9996,0.0174,-0.831,0.556,0.0182,0.818,-0.5749,0.0192,-0.5682,-0.8226,0.02,-0.3897,-0.9207,0.0244,-0.9946,0.1004,0.026,-0.9674,0.2519,0.0266,-0.956,0.2921,0.027,-0.9684,0.2478,0.0362,0.9275,0.372,0.0365,-0.7661,-0.6417,0.0427,-0.7034,-0.7095,0.044,0.9242,0.3793,0.0445,-0.0743,-0.9962,0.0456,0.6683,0.7425,0.0501,0.9184,0.3924,0.0504,-0.3288,-0.9431,0.0509,-0.9952,0.0836,0.0524,0.9345,0.352,0.0565,-0.238,-0.9696,0.0576,0.749,-0.66,0.0587,0.3717,-0.9265,0.0605,-0.497,-0.8656,0.0609,-0.9979,-0.0239,0.0622,-0.9897,-0.1291,0.0656,0.9527,0.2967,0.0662,-0.7829,0.6186,0.0665,0.8065,-0.5875,0.069,0.9611,-0.2673,0.069,-0.9971,0.0327,0.0705,0.9944,0.0789,0.0732,0.4724,-0.8783,0.0762,0.5362,-0.8407,0.0771,-0.9958,-0.0494,0.0779,-0.9446,-0.3189,0.0812,-0.2878,0.9542,0.0826,0.9132,-0.399,0.0845,-0.3507,0.9327,0.085,-0.956,-0.2808,0.0861,0.9959,0.0286,0.0931,-0.2459,-0.9648,0.0938,0.9577,-0.272,0.0946,0.754,0.6501,0.0963,0.9893,-0.1098,0.0993,-0.9831,0.1536,0.0997,-0.4134,-0.9051,0.1012,-0.9701,0.2207,0.1045,0.7947,-0.5979,0.1047,-0.5174,-0.8493,0.1051,0.9592,-0.2626,0.1063,0.704,-0.7022,0.1069,-0.9033,-0.4154,0.1074,-0.991,-0.0801,0.112,-0.3112,-0.9437,0.1188,-0.8189,0.5615,0.1213,-0.79,-0.6009,0.1251,0.5753,0.8083,0.1257,0.1639,-0.9784,0.126,0.9393,0.3191,0.1288,0.7599,-0.6372,0.134,0.963,-0.2337,0.1358,-0.8257,0.5475,0.137,-0.1067,0.9848,0.1377,-0.9875,-0.0762,0.1389,0.9568,-0.2554,0.1396,0.6915,-0.7088,0.1398,-0.7462,0.6508,0.1409,0.1347,-0.9808,0.1418,0.9609,-0.2377,0.1423,0.5466,-0.8252,0.1432,0.6702,-0.7283,0.1443,-0.9776,0.1535,0.1463,0.9869,0.0687,0.1546,0.5281,0.835,0.1594,0.9868,-0.0267,0.161,-0.4967,0.8529,0.1645,-0.8212,-0.5464,0.1652,0.9602,-0.2252,0.1655,-0.9058,-0.3901,0.1672,0.9205,-0.3531,0.1672,-0.6574,-0.7348,0.17,-0.6252,-0.7617,0.1706,0.7172,0.6757,0.1729,-0.7884,0.5903,0.1737,0.6204,0.7648,0.1738,0.8327,0.5258,0.1759,-0.9842,0.0212,0.1766,-0.7428,-0.6458,0.177,-0.392,-0.9028,0.1777,-0.937,0.3009,0.1828,0.9381,-0.2943,0.1832,-0.7594,0.6243,0.1843,0.4343,0.8817,0.1843,-0.6152,0.7665,0.1863,-0.8961,0.4028,0.1893,-0.6781,0.7102,0.1898,-0.9776,0.0914,0.1938,-0.3928,-0.899,0.1956,0.0126,0.9806,0.1961,0.2401,0.9507,0.1969,-0.1101,-0.9742,0.2022,0.9519,-0.2302,0.2046,-0.7141,-0.6695,0.2106,-0.9578,-0.1955,0.2112,0.877,-0.4316,0.2136,0.8763,0.4318,0.2153,0.7036,-0.6772,0.2157,-0.9737,-0.0737,0.2159,-0.731,0.6473,0.218,0.8168,0.5341,0.2189,-0.4944,-0.8412,0.2249,0.3579,-0.9063,0.2289,0.967,0.1115,0.2308,-0.5021,-0.8334,0.2349,0.9206,-0.3119,0.2352,-0.9257,-0.2963,0.2354,0.9175,-0.3206,0.2378,0.7985,-0.553,0.2381,0.7666,0.5964,0.2399,-0.2272,0.9438,0.2466,-0.9616,0.1206,0.2534,-0.8564,-0.4498,0.2543,0.5175,-0.817,0.2551,0.6757,0.6917,0.2571,-0.0406,0.9655,0.2608,0.6041,0.753,0.2647,-0.3812,-0.8858,0.2652,-0.777,-0.571,0.2658,0.9177,-0.2951,0.2662,-0.9634,0.0331,0.2674,-0.6646,-0.6977,0.27,-0.5384,0.7982,0.2705,-0.7252,0.6332,0.2725,-0.9533,0.1301,0.2733,-0.5119,0.8144,0.2775,0.4048,0.8713,0.2792,0.9584,-0.0587,0.2848,-0.858,-0.4274,0.2858,-0.3034,-0.909,0.2882,-0.9072,0.3065,0.2883,-0.7739,0.5639,0.29,0.9155,-0.279,0.2907,0.6366,0.7143,0.2996,0.4195,-0.8569,0.304,0.5989,0.7409,0.3044,0.6584,0.6883,0.3068,-0.5007,-0.8094,0.3128,-0.7315,-0.6059,0.3146,0.4478,-0.837,0.3164,-0.4494,-0.8354,0.317,-0.9137,0.2545,0.318,-0.0254,0.9477,0.3185,0.9452,0.0723,0.3195,0.6405,0.6983,0.323,-0.8778,-0.3539,0.3234,0.2142,0.9217,0.3234,0.864,-0.3859,0.3262,-0.0204,0.9451,0.3277,-0.369,-0.8697,0.3281,0.8133,-0.4804,0.3286,0.8801,-0.3428,0.3303,-0.7934,0.5113,0.3311,-0.5432,-0.7716,0.3316,-0.3961,0.8563,0.3357,0.7702,-0.5423,0.3358,-0.7223,-0.6045,0.336,-0.9308,-0.1436,0.3374,-0.9187,0.2056,0.3378,-0.2919,-0.8948,0.3398,-0.3933,-0.8543,0.3399,0.809,-0.4795,0.3422,-0.8596,-0.3795,0.3438,-0.7461,0.5702,0.3439,0.9379,0.0464,0.3442,0.9385,0.0283,0.3464,-0.6109,-0.7119,0.3468,0.0853,0.934,0.3473,-0.2794,-0.8952,0.3486,0.7591,-0.5497,0.3506,0.0062,0.9365,0.354,-0.8911,-0.2838,0.354,0.4001,-0.8453,0.355,0.8833,0.3061,0.3568,0.0793,0.9308,0.357,-0.0342,-0.9335,0.3591,0.0994,0.928,0.3597,-0.3308,0.8725,0.3619,-0.3116,0.8786,0.3624,0.9195,0.1523,0.3637,0.9314,-0.0146,0.3639,0.4153,0.8337,0.3644,-0.9208,0.1388,0.3648,-0.9012,0.2342,0.3658,-0.886,0.285,0.3666,-0.9157,-0.1645,0.3698,0.1044,0.9232,0.3709,-0.035,0.928,0.373,0.1517,0.9154,0.3756,0.7502,-0.5441,0.3771,-0.5698,-0.7302,0.3779,-0.9059,0.1911,0.3781,0.1501,0.9135,0.3781,0.8154,-0.4383,0.3807,-0.7431,-0.5503,0.3807,-0.5132,0.7692,0.3812,-0.6349,0.672,0.3866,-0.8665,0.3157,0.3873,0.144,-0.9106,0.3904,0.2765,0.8782,0.3929,0.0905,0.9151,0.3936,0.899,0.1921,0.3937,0.2885,0.8728,0.3938,0.7243,0.566,0.3952,-0.7899,-0.4688,0.3962,0.5452,-0.7388,0.398,-0.5695,-0.7192,0.3982,-0.4141,0.8185,0.3986,-0.2024,-0.8945,0.3987,-0.8551,0.3315,0.3988,-0.037,-0.9163,0.4024,-0.9002,-0.1664,0.403,-0.1587,-0.9013,0.4041,0.5161,-0.7552,0.4055,-0.905,0.1287,0.4059,0.6777,-0.6132,0.4061,-0.186,0.8947,0.4062,-0.9056,0.1219,0.4074,-0.1282,-0.9042,0.4157,-0.8321,-0.3671,0.4162,0.4395,0.796,0.4173,0.5455,-0.7268,0.4188,-0.873,0.2498,0.4201,0.6899,-0.5895,0.4222,0.8871,-0.1865,0.4229,0.8976,-0.1244,0.4251,0.4813,-0.7666,0.4255,0.5504,-0.7183,0.4286,0.0391,-0.9026,0.4299,0.8342,0.3454,0.4299,0.0222,0.9026,0.4332,0.8304,-0.3503,0.4382,-0.7186,-0.54,0.4392,-0.0991,0.8929,0.4396,0.4608,-0.771,0.4398,-0.5871,-0.6796,0.4414,0.0377,0.8965,0.4426,-0.8432,-0.3052,0.4473,-0.3333,-0.83,0.4481,-0.4805,-0.7538,0.4499,-0.8923,-0.0366,0.4514,-0.476,-0.7548,0.4538,-0.5981,-0.6606,0.4542,0.4667,-0.7589,0.4545,-0.8535,0.255,0.4545,-0.7666,0.4536,0.4549,-0.8725,-0.1784,0.455,0.8176,0.353,0.4631,-0.4558,-0.7601,0.4644,0.6415,0.6105,0.4649,0.7998,-0.3797,0.4651,0.5071,-0.7256,0.4652,0.8376,0.2865,0.4692,0.4209,0.7764,0.4714,-0.8801,0.0566,0.4714,0.0809,0.8782,0.4723,0.7772,-0.4158,0.4747,-0.3083,0.8244,0.4764,-0.8773,0.0571,0.4767,0.8022,-0.3595,0.4768,-0.6618,-0.5785,0.4796,-0.868,0.1282,0.4811,-0.1275,-0.8673,0.4813,-0.8671,0.1287,0.4826,-0.7265,-0.4892,0.4829,0.4023,0.7778,0.4845,0.456,-0.7465,0.4885,-0.8557,0.1708,0.4888,-0.5018,-0.7136,0.489,-0.5654,-0.6643,0.4949,0.3707,0.7859,0.4953,0.8642,0.0892,0.4957,0.3979,-0.7719,0.4988,-0.8486,0.1762,0.5009,-0.8312,0.2414,0.5041,-0.4859,-0.714,0.5051,-0.0856,-0.8588,0.5074,-0.649,-0.5668,0.5076,-0.3641,-0.7808,0.5078,-0.85,0.1402,0.5107,-0.5629,-0.6499,0.5109,0.6705,-0.5379,0.5113,-0.8338,0.2083,0.5153,0.152,0.8434,0.5159,-0.8491,0.1136,0.5162,-0.015,0.8563,0.5173,-0.8146,0.2624,0.5194,0.7956,-0.3118,0.5198,0.7664,-0.3774,0.5218,-0.045,-0.8519,0.5219,-0.8321,0.1876,0.5229,-0.2626,-0.8109,0.5272,-0.4976,0.6888,0.5275,0.5895,0.6117,0.5299,-0.8127,0.2423,0.5326,0.3327,-0.7782,0.534,-0.6241,-0.5704,0.5363,-0.8286,-0.1606,0.5373,-0.8298,0.1509,0.5382,-0.5346,-0.6516,0.5382,0.7776,-0.3251,0.5392,-0.3793,-0.7519,0.5418,-0.8379,0.0667,0.5459,0.1742,0.8195,0.5468,0.823,0.1538,0.5479,-0.6962,-0.4638,0.5519,0.0301,-0.8334,0.5521,0.0957,0.8282,0.5525,-0.3136,0.7723,0.5552,0.0107,-0.8316,0.5564,0.4711,0.6845,0.5571,-0.2156,-0.8019,0.5591,0.6408,0.526,0.5603,-0.8147,0.1495,0.5616,-0.2204,-0.7975,0.5625,-0.7174,0.411,0.563,0.3932,0.7269,0.5639,0.1462,0.8128,0.5643,-0.8019,0.196,0.5645,-0.2013,0.8005,0.565,-0.7804,0.268,0.5652,0.8249,0.0126,0.5666,-0.8016,0.1909,0.5667,-0.171,-0.806,0.568,0.4298,0.7019,0.5703,0.593,-0.5684,0.5704,-0.5355,-0.6228,0.5713,0.5206,-0.6345,0.5797,0.1184,0.8062,0.5813,0.7997,-0.1502,0.5847,-0.8044,0.1052,0.5868,-0.8083,-0.0484,0.5889,0.2088,0.7808,0.5898,0.2886,-0.7542,0.5902,0.8054,0.0538,0.5904,0.8007,-0.1014,0.5904,0.4183,-0.6903,0.591,-0.7954,0.1341,0.5948,-0.7998,-0.0807,0.5986,-0.3064,-0.7402,0.5998,-0.7978,-0.0622,0.6003,-0.0379,-0.7989,0.6011,0.3118,0.7358,0.6012,0.4626,0.6516,0.6016,0.7666,0.2245,0.6036,-0.4757,-0.6398,0.6037,0.7972,0.0077,0.6039,-0.7854,0.1359,0.6045,-0.5203,-0.6032,0.605,0.7962,-0.0029,0.6113,-0.7206,-0.3272,0.615,0.7113,-0.3403,0.6152,0.3123,-0.7239,0.6156,-0.2302,0.7537,0.6179,0.7807,0.0927,0.6201,0.7792,-0.0915,0.6271,0.5491,-0.5525,0.6272,0.1854,0.7565,0.6279,0.5998,-0.496,0.6282,-0.5512,0.5491,0.6283,-0.6837,0.3711,0.6315,0.3634,-0.685,0.6327,0.3937,0.6669,0.637,-0.7583,-0.1384,0.6371,-0.7636,-0.105,0.6387,0.762,-0.1069,0.6407,0.5578,-0.5276,0.6414,-0.2936,-0.7088,0.6426,0.0958,-0.7602,0.6427,0.4174,-0.6424,0.644,0.197,-0.7393,0.645,0.0929,0.7585,0.6485,0.4774,-0.5928,0.6494,-0.7134,-0.2634,0.6499,-0.2401,-0.7211,0.6547,0.5751,-0.4905,0.6565,-0.1005,0.7476,0.6576,-0.5088,0.5556,0.6615,-0.5185,-0.5418,0.6625,-0.7276,0.178,0.664,0.5135,-0.5435,0.6648,0.6498,-0.3685,0.6684,-0.7421,0.051,0.6687,0.4928,-0.5567,0.67,0.663,-0.334,0.671,0.0882,-0.7362,0.6713,0.7316,-0.1188,0.6715,0.514,0.5337,0.6721,0.7402,-0.02,0.6721,0.4319,-0.6015};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_26_vector_2()
		{
			double[] value = {0.6748,-0.2096,0.7076,0.6776,0.2636,0.6865,0.6791,0.3086,-0.6661,0.6793,0.7305,-0.0709,0.6799,0.6479,0.3436,0.6812,0.3104,-0.663,0.6813,-0.4558,-0.5728,0.6837,0.7297,-0.0085,0.6837,-0.7097,-0.1699,0.6858,-0.5972,0.416,0.6875,-0.7194,-0.0995,0.6876,-0.7141,0.1316,0.6879,0.4831,-0.5417,0.6897,0.5676,0.4496,0.6898,-0.0642,-0.7211,0.6903,-0.6395,-0.3385,0.6916,0.5388,-0.481,0.6956,0.5977,-0.3986,0.6971,0.7127,-0.078,0.6978,-0.4071,-0.5893,0.6987,0.4407,0.5635,0.7,0.4817,-0.5273,0.7086,-0.5631,-0.4251,0.7098,0.7043,0.014,0.7101,0.3402,-0.6165,0.711,-0.4989,0.4956,0.7139,0.5513,-0.4317,0.7161,0.3695,-0.5921,0.721,0.2749,-0.636,0.7213,0.6641,-0.1968,0.7215,0.3068,-0.6207,0.7218,-0.653,0.2294,0.7293,0.5341,0.4276,0.7296,0.6836,-0.0187,0.73,0.5055,-0.46,0.7324,0.1676,-0.6599,0.7353,-0.5143,-0.4414,0.7358,0.1628,-0.6573,0.7385,-0.4919,-0.4612,0.7391,0.1938,-0.6452,0.7398,0.6227,-0.2548,0.7408,-0.4315,-0.5149,0.7426,0.6186,0.2565,0.7427,0.6186,0.2564,0.7442,0.5635,-0.3587,0.7458,0.6662,0.0023,0.7489,-0.2757,-0.6026,0.7546,-0.2647,-0.6004,0.7571,0.6358,-0.1503,0.762,0.1248,-0.6354,0.7631,0.6406,-0.0849,0.7637,0.4381,-0.4742,0.7637,0.1599,-0.6254,0.765,0.0129,0.6439,0.7663,-0.122,-0.6308,0.7666,0.073,-0.6379,0.767,-0.4316,-0.4748,0.7709,0.5951,0.2272,0.7721,-0.4974,-0.3955,0.7722,0.0143,-0.6352,0.7784,0.5992,0.187,0.7791,0.1164,-0.616,0.7811,0.6236,-0.0315,0.7827,0.6132,-0.1068,0.7831,0.0139,0.6218,0.7837,-0.1115,-0.611,0.7861,-0.5588,-0.2644,0.787,0.4853,-0.381,0.7932,0.5696,0.2154,0.811,0.013,-0.5849,0.8117,0.3946,-0.4307,0.8147,-0.077,-0.5748,0.8148,-0.3829,-0.4352,0.8175,-0.0549,-0.5733,0.8189,0.475,0.3222,0.82,-0.5658,0.0858,0.8205,-0.5712,0.0215,0.8205,-0.565,0.0866,0.8212,-0.4691,-0.3249,0.8218,0.43,0.374,0.8229,-0.1223,-0.5548,0.8264,-0.5573,-0.081,0.8301,0.5566,0.0333,0.8326,-0.3338,-0.442,0.8342,0.0544,-0.5488,0.8385,0.4664,-0.2817,0.8397,0.5302,0.117,0.8409,0.5179,-0.1573,0.8418,-0.5391,0.0288,0.8425,0.5148,-0.1586,0.845,0.4844,-0.2264,0.8473,-0.2275,0.4799,0.8506,0.4805,-0.2136,0.8528,0.2605,-0.4526,0.854,-0.1464,0.4993,0.8543,-0.1658,0.4927,0.8547,0.4356,-0.2825,0.856,0.2368,-0.4596,0.8577,-0.1266,-0.4983,0.8598,0.4895,0.1456,0.8615,0.4812,0.1617,0.8639,0.0903,-0.4955,0.8702,-0.4399,-0.222,0.8758,-0.1348,-0.4636,0.8769,0.3977,-0.2701,0.8783,0.034,0.477,0.8798,-0.0343,-0.4741,0.8815,0.0432,-0.4703,0.8845,-0.4349,-0.1686,0.8852,-0.1272,-0.4474,0.8896,0.1814,-0.4192,0.89,0.3802,-0.2516,0.8904,0.0157,0.4549,0.8914,-0.2514,-0.3771,0.8951,0.4149,0.1634,0.8965,0.4352,-0.0835,0.8966,0.3485,-0.2732,0.8967,0.0736,0.4364,0.9052,-0.4238,0.0308,0.9064,-0.4008,-0.1331,0.9083,-0.1159,-0.402,0.914,0.101,0.393,0.9165,0.0377,-0.3982,0.9172,0.1099,-0.383,0.9232,-0.1556,-0.3513,0.9262,-0.3368,-0.1692,0.9308,0.2109,-0.2984,0.936,0.3077,-0.1709,0.941,0.2429,-0.2357,0.9423,-0.1837,-0.2799,0.9435,0.1968,-0.2665,0.945,-0.2904,-0.1502,0.9465,0.2347,-0.2214,0.9493,0.0826,-0.3033,0.952,-0.1437,-0.2703,0.9553,-0.2202,-0.197,0.9588,0.2805,0.0454,0.9597,0.0312,-0.2794,0.961,0.0503,0.2721,0.9615,-0.2003,-0.1881,0.9648,-0.203,0.1672,0.965,-0.2605,0.0304,0.9691,-0.1793,0.1696,0.9761,-0.0936,-0.1964,0.9804,0.0151,-0.1963,0.9814,0.0808,-0.174,0.9826,0.0848,-0.1652,0.9853,-0.0261,-0.1687,0.9857,-0.0359,0.1645,0.9864,0.0794,-0.1438,0.9873,0.1408,-0.0729,0.9884,-0.142,-0.0544,0.9903,-0.036,-0.1343,0.9904,0.1322,-0.0407,0.9909,-0.084,-0.1049,0.9935,-0.1137,-0.003,0.999,0.0447,-0.0004};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getaxis_Geo_5_31_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_5_31_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_5_31_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_5_31_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_5_31_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_5_31_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_5_31_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_5_31_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_5_31_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_5_31_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 int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getaxis_Geo_5_31_normalIndex_1()
		{
			int[] value = {615,900,623,-1,134,33,41,-1,802,315,562,-1,846,615,1103,-1,639,675,1016,-1,787,762,774,-1,972,1145,1016,-1,1156,985,932,-1,165,315,39,-1,55,104,24,-1,201,75,179,-1,440,80,330,-1,180,175,87,-1,165,53,619,-1,606,1016,1145,-1,785,335,541,-1,602,586,762,-1,582,311,266,-1,785,790,982,-1,1170,1190,1158,-1,130,257,108,-1,152,319,130,-1,660,667,502,-1,135,96,74,-1,488,756,636,-1,823,1004,904,-1,1198,1157,1207,-1,1211,1213,1199,-1,1195,1214,1213,-1,1076,1213,1214,-1,525,693,810,-1,920,693,904,-1,824,1035,912,-1,1131,947,808,-1,731,736,931,-1,372,387,401,-1,766,667,660,-1,847,978,1088,-1,1008,890,905,-1,978,730,1021,-1,703,803,464,-1,178,464,646,-1,827,792,262,-1,214,82,263,-1,716,373,462,-1,1063,1088,1021,-1,510,696,422,-1,1063,1206,986,-1,48,673,822,-1,230,403,244,-1,466,739,781,-1,964,1097,1093,-1,690,676,743,-1,241,535,483,-1,389,333,486,-1,403,172,405,-1,1206,1049,1023,-1,384,362,182,-1,683,552,432,-1,499,656,322,-1,698,467,711,-1,36,67,17,-1,36,78,13,-1,67,47,66,-1,435,517,444,-1,502,444,517,-1,791,660,684,-1,843,318,214,-1,662,688,607,-1,144,159,154,-1,620,538,613,-1,833,584,751,-1,216,370,195,-1,267,340,735,-1,187,518,553,-1,109,267,187,-1,280,553,461,-1,696,510,565,-1,117,34,89,-1,215,273,160,-1,360,279,160,-1,237,175,180,-1,381,669,541,-1,256,266,227,-1,186,204,163,-1,236,118,296,-1,245,235,238,-1,228,204,248,-1,278,348,292,-1,348,410,636,-1,393,256,292,-1,854,465,636,-1,147,171,210,-1,171,96,135,-1,5,52,178,-1,52,5,262,-1,300,116,344,-1,951,821,885,-1,520,810,678,-1,581,551,567,-1,376,392,173,-1,316,443,209,-1,79,358,344,-1,230,244,94,-1,69,189,100,-1,284,189,109,-1,284,61,136,-1,60,99,192,-1,296,469,488,-1,441,420,371,-1,359,371,331,-1,155,337,350,-1,155,271,339,-1,467,530,406,-1,463,546,482,-1,482,343,463,-1,110,48,38,-1,133,353,291,-1,430,239,291,-1,261,399,395,-1,427,426,434,-1,429,555,455,-1,728,656,454,-1,58,7,13,-1,196,120,448,-1,58,73,7,-1,59,111,162,-1,338,162,164,-1,272,129,98,-1,484,578,598,-1,407,599,593,-1,342,573,320,-1,342,580,573,-1,243,164,336,-1,1153,1187,1198,-1,912,1192,1077,-1,798,643,861,-1,615,313,365,-1,606,198,610,-1,198,639,610,-1,198,246,317,-1,113,301,233,-1,1176,1105,907,-1,1188,1111,1135,-1,1138,1067,1013,-1,1085,1012,1124,-1,884,1009,754,-1,1130,1040,1036,-1,619,1056,575,-1,71,198,606,-1,1183,1188,1138,-1,561,198,317,-1,425,680,856,-1,145,366,70,-1,400,453,602,-1,767,616,635,-1,896,579,654,-1,413,249,423,-1,44,85,45,-1,1089,726,886,-1,727,544,638,-1,289,485,451,-1,571,460,718,-1,310,212,380,-1,56,27,19,-1,12,26,4,-1,1,2,20,-1,2,1,145,-1,380,188,361,-1,274,475,297,-1,505,706,394,-1,304,170,375,-1,295,536,570,-1,268,63,85,-1,485,285,479,-1,638,544,450,-1,131,242,363,-1,207,312,309,-1,752,569,414,-1,1061,940,569,-1,390,955,424,-1,1031,891,1116,-1,997,974,514,-1,759,836,509,-1,815,549,691,-1,234,8,149,-1,533,1163,1046,-1,969,806,984,-1,431,476,748,-1,125,119,252,-1,527,493,470,-1,750,652,973,-1,869,865,704,-1,865,943,806,-1,206,176,8,-1,229,357,721,-1,780,663,531,-1,878,801,715,-1,503,747,515,-1,1178,1208,1197,-1,1200,1137,1178,-1,1166,1139,1197,-1,765,685,783,-1,710,485,705,-1,62,3,22,-1,459,509,451,-1,974,361,514,-1,707,888,962,-1,1084,1014,975,-1,1065,1054,1074,-1,613,677,620,-1,457,640,382,-1,1000,1039,1019,-1,481,876,948,-1,712,1032,976,-1,649,642,691,-1,1099,1001,1129,-1,941,1052,849,-1,1099,1052,1001,-1,864,908,734,-1,1036,1040,981,-1,928,561,793,-1,1130,1171,1165,-1,983,826,958,-1,1048,1041,1020,-1,945,1109,835,-1,965,994,935,-1,935,873,936,-1,873,741,571,-1,741,958,826,-1,145,741,366,-1,1006,1011,1028,-1,1095,909,1064,-1,1068,1120,1064,-1,891,1031,993,-1,1209,1116,1136,-1,955,1209,1167,-1,868,1100,915,-1,295,475,274,-1,536,394,706,-1,567,637,581,-1,840,919,1100,-1,1005,772,899,-1,1100,1059,1025,-1,984,1062,1125,-1,1116,1053,1122,-1,1046,1122,1053,-1,745,1024,945,-1,832,795,664,-1,819,832,889,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getaxis_Geo_5_31_normalIndex_2()
		{
			int[] value = {860,1060,921,-1,875,949,921,-1,804,686,747,-1,734,729,864,-1,976,1081,872,-1,1032,1149,1173,-1,1189,1173,1107,-1,926,980,773,-1,878,812,880,-1,788,799,786,-1,661,659,782,-1,764,557,490,-1,1204,1200,1210,-1,764,682,1082,-1,1142,1002,857,-1,1098,1142,1168,-1,1126,1034,1113,-1,954,1050,1034,-1,923,1069,942,-1,1069,1091,942,-1,598,578,744,-1,593,599,831,-1,923,580,895,-1,879,1050,954,-1,19,27,62,-1,142,23,304,-1,460,571,142,-1,349,572,419,-1,286,720,784,-1,62,289,188,-1,867,604,954,-1,580,593,881,-1,831,1002,881,-1,895,1069,923,-1,1113,1050,1091,-1,1155,1098,1210,-1,1018,857,820,-1,1018,1082,1168,-1,1168,1082,1072,-1,1210,1200,1166,-1,768,715,557,-1,799,729,760,-1,574,788,744,-1,880,848,870,-1,1202,1194,1189,-1,926,1108,1128,-1,725,658,733,-1,1108,1173,1189,-1,976,1032,1173,-1,864,729,799,-1,875,778,949,-1,875,903,804,-1,889,911,906,-1,819,839,966,-1,966,979,1162,-1,1024,1185,1109,-1,1127,1062,984,-1,794,1053,891,-1,1116,891,1053,-1,868,1126,1100,-1,1078,1204,1072,-1,570,772,1005,-1,1005,899,1078,-1,1045,840,1025,-1,570,682,490,-1,631,772,672,-1,919,915,1100,-1,955,845,1031,-1,740,993,1031,-1,1203,1120,1110,-1,1095,1064,1120,-1,1028,1011,936,-1,366,741,826,-1,929,741,873,-1,835,718,945,-1,983,991,989,-1,1043,805,825,-1,1083,1183,1171,-1,918,1052,908,-1,734,830,642,-1,992,1052,1099,-1,1099,1070,992,-1,549,253,651,-1,651,253,213,-1,213,712,651,-1,559,948,1032,-1,712,697,1032,-1,569,940,481,-1,842,691,642,-1,523,714,640,-1,707,504,663,-1,576,528,583,-1,851,1029,1129,-1,531,694,780,-1,780,975,1014,-1,924,1051,1015,-1,924,1084,975,-1,188,451,509,-1,924,770,380,-1,419,685,479,-1,783,722,829,-1,814,776,765,-1,845,390,740,-1,1210,1166,1155,-1,1208,1151,1197,-1,632,919,629,-1,297,664,375,-1,1112,1194,1202,-1,707,714,523,-1,603,837,851,-1,622,531,663,-1,704,806,723,-1,869,717,897,-1,470,493,679,-1,652,537,815,-1,412,652,543,-1,119,125,176,-1,973,815,1090,-1,1101,1143,997,-1,650,1107,721,-1,1127,943,748,-1,806,969,996,-1,252,385,674,-1,842,815,691,-1,1019,1090,815,-1,181,253,549,-1,213,76,8,-1,544,558,468,-1,740,397,468,-1,481,309,414,-1,917,752,511,-1,346,512,480,-1,479,685,705,-1,713,637,672,-1,170,231,274,-1,12,56,142,-1,12,142,145,-1,14,145,70,-1,26,45,54,-1,505,310,380,-1,505,770,742,-1,460,745,718,-1,1073,1110,1109,-1,909,913,1006,-1,451,485,710,-1,1089,1066,1203,-1,138,413,325,-1,433,826,977,-1,719,635,473,-1,825,325,413,-1,928,856,680,-1,1111,754,1009,-1,575,1056,907,-1,1083,1036,1033,-1,1215,1104,1115,-1,1138,1188,1169,-1,1104,1169,1135,-1,1147,1182,1164,-1,907,1105,807,-1,884,1174,1150,-1,415,907,807,-1,930,808,428,-1,338,243,604,-1,364,593,580,-1,364,200,329,-1,320,98,95,-1,7,98,66,-1,396,329,196,-1,58,16,120,-1,656,448,454,-1,656,499,448,-1,434,426,455,-1,578,484,427,-1,354,395,399,-1,29,21,15,-1,90,103,291,-1,563,498,430,-1,29,133,103,-1,133,38,187,-1,378,434,463,-1,271,437,339,-1,359,404,377,-1,404,251,377,-1,251,132,50,-1,118,192,296,-1,108,137,74,-1,500,189,284,-1,79,344,116,-1,161,173,169,-1,123,16,139,-1,209,443,645,-1,139,316,209,-1,698,821,761,-1,645,711,728,-1,567,551,631,-1,645,885,821,-1,185,474,367,-1,96,11,108,-1,122,11,96,-1,307,258,122,-1,278,210,171,-1,789,393,465,-1,348,465,292,-1,296,636,410,-1,383,416,151,-1,157,124,146,-1,343,279,378,-1,343,160,279,-1,160,341,225,-1,446,273,215,-1,585,587,446,-1,117,225,148,-1,696,594,553,-1,461,553,594,-1,518,939,553,-1,187,267,655,-1,187,516,518,-1,735,281,646,-1,370,386,565,-1,751,584,507,-1,552,709,508,-1,583,749,662,-1,89,182,362,-1,432,521,683,-1,193,222,432,-1,447,141,318,-1,684,1038,716,-1,843,823,318,-1,435,387,494,-1,372,388,387,-1,435,439,401,-1,474,818,827,-1,59,116,140,-1,91,161,78,-1,17,64,6,-1,629,376,632,-1,824,554,887,-1,21,107,50,-1,689,507,508,-1,362,384,603,-1,552,683,622,-1,497,403,540,-1,93,241,483,-1,333,224,326,-1,93,326,224,-1,1023,959,1030,-1,422,653,796,-1,1023,1093,1097,-1,183,422,535,-1,224,263,82,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getaxis_Geo_5_31_normalIndex_3()
		{
			int[] value = {110,217,564,-1,244,403,497,-1,500,822,964,-1,510,422,370,-1,195,370,422,-1,986,1206,1140,-1,901,827,818,-1,667,746,657,-1,803,905,735,-1,319,401,439,-1,693,920,998,-1,998,1035,824,-1,1077,1157,1199,-1,1076,1199,1213,-1,1146,1076,1201,-1,1159,1195,1191,-1,693,472,447,-1,447,823,693,-1,469,912,756,-1,60,118,74,-1,218,303,307,-1,731,753,660,-1,11,130,108,-1,894,785,1080,-1,577,266,393,-1,732,641,489,-1,894,383,335,-1,541,335,232,-1,220,440,106,-1,562,315,165,-1,180,87,127,-1,675,669,1016,-1,562,630,802,-1,411,315,802,-1,80,41,330,-1,411,112,315,-1,46,32,68,-1,104,55,0,-1,0,114,104,-1,190,282,449,-1,127,184,180,-1,562,165,575,-1,440,381,106,-1,335,785,894,-1,641,635,489,-1,393,789,577,-1,785,982,1080,-1,753,925,1038,-1,11,152,130,-1,660,502,731,-1,1152,861,947,-1,60,74,137,-1,236,135,118,-1,756,488,469,-1,823,904,693,-1,925,1055,1153,-1,1159,1158,1195,-1,1076,1214,1201,-1,1076,1077,1199,-1,222,447,472,-1,810,693,998,-1,551,634,501,-1,517,542,736,-1,319,355,401,-1,703,464,298,-1,735,646,803,-1,746,818,474,-1,667,766,746,-1,1140,1003,986,-1,195,422,183,-1,791,730,978,-1,500,284,822,-1,211,244,497,-1,495,110,564,-1,82,93,224,-1,183,535,241,-1,1023,1049,1093,-1,676,535,796,-1,422,796,535,-1,1030,1140,1023,-1,326,486,333,-1,93,483,326,-1,217,15,259,-1,403,389,540,-1,622,614,552,-1,600,362,603,-1,254,264,126,-1,50,15,21,-1,498,458,395,-1,629,392,376,-1,64,97,6,-1,78,51,91,-1,66,47,7,-1,474,827,367,-1,435,444,439,-1,494,542,435,-1,736,542,798,-1,823,447,318,-1,684,753,1038,-1,447,222,141,-1,222,521,432,-1,521,701,683,-1,356,89,362,-1,264,507,288,-1,662,607,576,-1,662,576,583,-1,508,328,552,-1,751,507,689,-1,370,565,510,-1,370,216,386,-1,735,340,281,-1,187,655,516,-1,518,1003,939,-1,553,939,696,-1,148,34,117,-1,117,160,225,-1,565,386,482,-1,343,341,160,-1,43,31,127,-1,416,186,151,-1,428,307,303,-1,296,488,636,-1,789,465,854,-1,211,94,244,-1,218,307,147,-1,307,379,258,-1,96,147,122,-1,108,74,96,-1,185,223,474,-1,185,367,262,-1,116,300,376,-1,551,443,631,-1,728,539,645,-1,139,398,316,-1,209,123,139,-1,161,169,78,-1,116,59,79,-1,189,324,100,-1,500,324,189,-1,230,156,88,-1,118,60,192,-1,50,240,251,-1,404,331,251,-1,437,467,339,-1,378,463,343,-1,280,133,187,-1,29,38,133,-1,563,430,471,-1,291,239,90,-1,354,368,395,-1,574,578,427,-1,434,455,463,-1,556,452,458,-1,47,13,7,-1,16,123,120,-1,200,95,73,-1,7,95,98,-1,320,95,342,-1,364,329,407,-1,364,580,342,-1,604,608,338,-1,1038,925,1153,-1,428,496,930,-1,415,630,562,-1,198,561,522,-1,1104,1215,1169,-1,1169,1067,1138,-1,1215,1115,1124,-1,767,934,1027,-1,1083,1130,1036,-1,575,907,562,-1,1111,793,754,-1,639,526,644,-1,639,522,526,-1,413,856,825,-1,635,641,473,-1,654,433,977,-1,138,249,413,-1,188,289,451,-1,1203,1117,1089,-1,710,638,451,-1,268,349,63,-1,1073,1109,1185,-1,1109,1068,963,-1,460,304,745,-1,505,380,770,-1,62,167,289,-1,26,20,45,-1,14,2,145,-1,145,1,12,-1,742,770,975,-1,480,199,346,-1,569,481,414,-1,468,450,544,-1,397,390,312,-1,8,234,213,-1,537,181,549,-1,815,842,1019,-1,242,480,459,-1,385,794,674,-1,723,806,996,-1,748,1106,1127,-1,650,999,1107,-1,997,968,1101,-1,973,652,815,-1,119,176,206,-1,652,412,537,-1,470,679,650,-1,968,897,1101,-1,897,968,869,-1,956,1202,999,-1,704,865,806,-1,663,614,622,-1,603,851,600,-1,1087,952,962,-1,1202,1162,1112,-1,812,757,725,-1,919,840,629,-1,1208,1121,1151,-1,1079,1100,1161,-1,390,397,740,-1,814,765,783,-1,829,828,841,-1,783,685,722,-1,924,380,361,-1,492,188,509,-1,924,975,770,-1,924,974,1051,-1,780,694,975,-1,531,513,694,-1,851,1129,855,-1,927,714,952,-1,576,607,560,-1,576,560,528,-1,663,888,707,-1,523,640,457,-1,642,830,842,-1,830,1000,842,-1,940,876,481,-1,697,559,1032,-1,649,651,755,-1,651,649,549,-1,1099,1180,1070,-1,769,587,585,-1,1001,941,769,-1,992,908,1052,-1,918,908,864,-1,866,918,864,-1,1071,1094,1058,-1,1048,1043,825,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getaxis_Geo_5_31_normalIndex_4()
		{
			int[] value = {983,958,991,-1,913,909,784,-1,835,571,718,-1,366,826,433,-1,969,1125,996,-1,1064,909,1006,-1,1120,1203,1095,-1,1117,1203,1110,-1,845,740,1031,-1,391,295,570,-1,631,672,567,-1,490,503,570,-1,475,391,515,-1,1045,779,840,-1,899,817,1078,-1,1078,1072,1005,-1,1126,1161,1100,-1,794,891,674,-1,1110,1073,1117,-1,945,1024,1109,-1,1162,1086,966,-1,966,871,819,-1,875,1060,903,-1,875,747,778,-1,864,799,866,-1,1173,1081,976,-1,1108,1081,1173,-1,733,773,725,-1,1128,980,926,-1,880,812,848,-1,744,578,574,-1,760,786,799,-1,757,763,659,-1,557,764,768,-1,1072,1204,1168,-1,1018,1168,1142,-1,1142,1098,1002,-1,1155,1069,1098,-1,1113,1034,1050,-1,895,1098,1069,-1,831,857,1002,-1,881,895,580,-1,867,608,604,-1,784,409,286,-1,349,419,168,-1,571,145,142,-1,304,460,142,-1,62,188,19,-1,923,573,580,-1,831,881,593,-1,744,800,598,-1,954,1034,867,-1,1126,1113,1161,-1,1168,1210,1098,-1,857,1018,1142,-1,682,1072,1082,-1,1210,1168,1204,-1,764,490,682,-1,760,661,782,-1,786,744,788,-1,880,953,878,-1,961,1007,979,-1,902,877,906,-1,773,733,926,-1,1173,1163,1107,-1,976,872,755,-1,734,670,729,-1,804,747,875,-1,875,921,1060,-1,860,903,1060,-1,819,871,832,-1,832,664,775,-1,718,745,945,-1,1024,1106,1185,-1,1046,1053,794,-1,1046,1149,1122,-1,1116,1122,1136,-1,1125,969,984,-1,868,850,1126,-1,1100,1079,1059,-1,1100,1025,840,-1,567,672,637,-1,536,295,394,-1,295,391,475,-1,1167,917,955,-1,1068,1064,1028,-1,1006,1028,1064,-1,145,571,741,-1,741,929,958,-1,571,835,873,-1,935,929,873,-1,994,991,935,-1,1109,963,835,-1,1020,1043,1048,-1,983,977,826,-1,1130,1083,1171,-1,928,680,561,-1,981,1010,1036,-1,1052,918,849,-1,1052,941,1001,-1,1129,1180,1099,-1,691,549,649,-1,755,651,976,-1,651,712,976,-1,559,481,948,-1,1000,1019,842,-1,640,545,382,-1,1065,995,1054,-1,1084,1087,1014,-1,529,523,457,-1,974,924,361,-1,451,638,459,-1,167,62,22,-1,705,765,710,-1,765,705,685,-1,829,814,783,-1,1045,1137,1200,-1,1197,1155,1166,-1,1137,1154,1178,-1,1178,1197,1139,-1,763,878,715,-1,1062,1024,967,-1,801,557,715,-1,990,859,995,-1,229,721,533,-1,206,8,76,-1,865,813,943,-1,704,717,869,-1,470,543,527,-1,119,385,252,-1,748,668,431,-1,125,346,176,-1,968,893,869,-1,794,385,1046,-1,385,533,1046,-1,974,1143,1051,-1,815,537,549,-1,836,492,509,-1,997,1143,974,-1,390,845,955,-1,569,752,1061,-1,752,414,511,-1,309,327,207,-1,363,207,131,-1,450,459,638,-1,479,705,485,-1,409,268,85,-1,304,375,745,-1,310,505,294,-1,505,700,706,-1,380,19,188,-1,20,26,1,-1,12,1,26,-1,19,9,56,-1,409,647,268,-1,710,727,638,-1,1089,886,1066,-1,1117,960,1089,-1,45,25,44,-1,423,425,413,-1,654,977,896,-1,453,586,602,-1,856,413,425,-1,1138,1171,1183,-1,619,1160,1056,-1,1130,1132,1040,-1,884,1150,1009,-1,1174,1085,1124,-1,1037,1138,1013,-1,1188,1135,1169,-1,1176,907,1056,-1,233,57,113,-1,198,71,246,-1,442,453,423,-1,198,522,639,-1,113,615,365,-1,562,907,415,-1,1174,1181,1085,-1,623,313,615,-1,861,1044,798,-1,1077,756,912,-1,1198,1038,1153,-1,407,593,364,-1,484,598,418,-1,272,98,320,-1,338,164,243,-1,59,162,79,-1,73,95,7,-1,120,454,448,-1,13,16,58,-1,454,539,728,-1,429,556,555,-1,427,484,426,-1,395,322,261,-1,240,208,255,-1,291,471,430,-1,103,133,291,-1,110,38,29,-1,38,61,187,-1,406,339,467,-1,155,287,271,-1,287,155,350,-1,359,331,404,-1,441,554,420,-1,296,192,469,-1,284,109,61,-1,69,109,189,-1,94,156,230,-1,173,116,376,-1,581,634,551,-1,810,885,678,-1,951,761,821,-1,262,298,52,-1,178,281,5,-1,69,100,5,-1,223,185,324,-1,171,147,96,-1,147,307,122,-1,210,218,147,-1,854,636,1076,-1,393,292,465,-1,636,465,348,-1,278,292,277,-1,204,186,248,-1,238,277,245,-1,296,410,236,-1,151,186,163,-1,256,393,266,-1,381,541,232,-1,237,180,205,-1,482,341,343,-1,215,160,117,-1,360,160,273,-1,89,215,117,-1,565,594,696,-1,61,109,187,-1,280,187,553,-1,267,735,655,-1,195,177,216,-1,833,671,584,-1,159,221,154,-1,254,328,508,-1,699,843,214,-1,660,753,684,-1,502,517,731,-1,435,542,517,-1,435,401,387,-1,13,78,169,-1,66,17,67,-1,36,51,78,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getaxis_Geo_5_31_normalIndex_5()
		{
			int[] value = {17,6,36,-1,499,322,452,-1,250,192,156,-1,656,417,322,-1,221,351,226,-1,182,269,384,-1,1140,1206,1023,-1,405,389,403,-1,486,540,389,-1,690,743,724,-1,964,822,1097,-1,781,547,466,-1,1049,874,1093,-1,333,321,224,-1,136,822,284,-1,136,48,822,-1,153,82,214,-1,696,653,422,-1,1206,1063,1021,-1,684,716,462,-1,699,214,263,-1,100,324,185,-1,262,367,827,-1,646,281,178,-1,803,646,464,-1,978,1021,1088,-1,1008,905,901,-1,1088,1008,847,-1,660,791,766,-1,355,372,401,-1,731,517,736,-1,1131,1152,947,-1,645,678,885,-1,912,469,824,-1,810,520,525,-1,887,761,951,-1,1213,1191,1195,-1,1211,1191,1213,-1,1198,1187,1157,-1,947,568,808,-1,118,135,74,-1,753,731,925,-1,667,487,502,-1,319,491,130,-1,1158,1131,1170,-1,790,787,982,-1,577,582,266,-1,635,616,449,-1,602,762,816,-1,1146,854,1076,-1,541,790,785,-1,898,1016,669,-1,619,575,165,-1,175,84,87,-1,440,220,80,-1,201,150,75,-1,104,106,24,-1,315,112,39,-1,932,1103,1156,-1,898,972,1016,-1,610,639,1016,-1,610,1016,606,-1,846,900,615,-1,65,334,101,-1,352,334,65,-1,53,32,46,-1,53,35,32,-1,220,86,80,-1,114,86,220,-1,28,75,43,-1,28,179,75,-1,127,146,184,-1,146,127,31,-1,65,10,30,-1,65,101,10,-1,1156,615,605,-1,615,1156,1103,-1,42,33,40,-1,42,30,33,-1,898,381,440,-1,898,669,381,-1,32,49,68,-1,32,37,49,-1,31,232,146,-1,31,381,232,-1,577,1118,1042,-1,577,789,1118,-1,774,586,588,-1,762,586,774,-1,737,352,846,-1,737,334,352,-1,737,519,334,-1,771,938,937,-1,771,777,938,-1,892,1075,938,-1,892,1042,1075,-1,1170,808,930,-1,1170,1131,808,-1,1044,1152,1193,-1,1044,861,1152,-1,379,355,258,-1,379,372,355,-1,657,130,491,-1,657,257,130,-1,1191,1212,1159,-1,1212,1191,1211,-1,1092,1134,1096,-1,1134,1092,1141,-1,1077,1207,1157,-1,1077,1192,1207,-1,472,521,222,-1,521,472,524,-1,920,1035,998,-1,1017,1035,920,-1,551,477,443,-1,551,501,477,-1,874,781,1093,-1,702,781,874,-1,847,746,766,-1,847,818,746,-1,939,1140,1030,-1,939,1003,1140,-1,964,299,500,-1,299,964,739,-1,211,534,259,-1,211,497,534,-1,93,183,241,-1,82,183,93,-1,224,373,263,-1,373,224,321,-1,405,456,321,-1,456,405,547,-1,796,743,676,-1,853,743,796,-1,94,259,15,-1,94,211,259,-1,853,564,743,-1,853,495,564,-1,987,495,853,-1,673,495,987,-1,288,126,264,-1,159,126,288,-1,749,613,833,-1,583,613,749,-1,90,107,21,-1,158,107,90,-1,192,420,469,-1,250,420,192,-1,467,728,711,-1,467,437,728,-1,115,6,97,-1,115,91,6,-1,161,115,140,-1,91,115,161,-1,703,262,792,-1,298,262,703,-1,487,319,439,-1,487,491,319,-1,388,494,387,-1,388,532,494,-1,1212,1055,1193,-1,1212,1153,1055,-1,144,318,141,-1,318,144,202,-1,614,709,552,-1,709,614,609,-1,538,384,269,-1,548,384,538,-1,507,254,508,-1,264,254,507,-1,662,833,751,-1,662,749,833,-1,126,222,193,-1,222,126,141,-1,89,191,182,-1,89,34,191,-1,655,905,890,-1,735,905,655,-1,587,273,446,-1,273,587,590,-1,341,386,225,-1,341,482,386,-1,335,146,232,-1,157,146,335,-1,49,127,87,-1,49,43,127,-1,166,163,194,-1,166,124,163,-1,245,194,235,-1,194,245,219,-1,248,428,303,-1,496,428,248,-1,171,236,278,-1,135,236,171,-1,152,122,258,-1,152,11,122,-1,324,108,223,-1,324,137,108,-1,398,627,626,-1,398,436,627,-1,821,711,645,-1,698,711,821,-1,16,169,139,-1,16,13,169,-1,251,305,377,-1,251,240,305,-1,441,337,406,-1,441,350,337,-1,353,280,461,-1,353,133,280,-1,566,471,506,-1,471,566,563,-1,290,308,305,-1,314,308,290,-1,314,332,308,-1,399,374,369,-1,261,374,399,-1,255,305,240,-1,255,290,305,-1,158,208,107,-1,208,158,255,-1,271,417,437,-1,271,270,417,-1,448,556,429,-1,499,556,448,-1,499,452,556,-1,123,454,120,-1,123,539,454,-1,329,73,196,-1,329,200,73,-1,200,342,95,-1,342,200,364,-1,634,524,525,-1,634,665,524,-1,1114,930,933,-1,930,1114,1170,-1,807,313,415,-1,863,313,807,-1,858,313,863,-1,858,365,313,-1,807,1133,863,-1,1105,1133,807,-1,301,695,811,-1,301,478,695,-1,425,526,680,-1,400,526,425,-1,1013,1169,1215,-1,1013,1067,1169,-1,1138,1186,1171,-1,1138,1037,1186,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getaxis_Geo_5_31_normalIndex_6()
		{
			int[] value = {1071,1083,1033,-1,1183,1083,1071,-1,1205,1148,1184,-1,1205,1119,1148,-1,615,57,605,-1,113,57,615,-1,1181,1172,1175,-1,1181,1184,1172,-1,793,317,754,-1,793,561,317,-1,323,719,473,-1,323,579,719,-1,423,265,442,-1,265,423,249,-1,128,265,121,-1,265,128,276,-1,105,121,138,-1,105,81,121,-1,805,286,283,-1,720,286,805,-1,289,285,485,-1,285,289,167,-1,797,681,647,-1,797,828,681,-1,913,988,1006,-1,913,970,988,-1,3,26,54,-1,4,26,3,-1,81,128,121,-1,77,128,81,-1,9,142,56,-1,9,23,142,-1,694,742,975,-1,692,742,694,-1,54,22,3,-1,63,22,54,-1,242,199,480,-1,131,199,242,-1,424,414,309,-1,414,424,511,-1,76,253,181,-1,76,213,253,-1,916,252,674,-1,476,252,916,-1,679,996,956,-1,679,723,996,-1,1090,1101,973,-1,1101,1090,1143,-1,836,968,997,-1,893,968,836,-1,758,813,893,-1,668,813,758,-1,470,412,543,-1,412,470,357,-1,956,1125,1202,-1,956,996,1125,-1,650,357,470,-1,650,721,357,-1,888,780,1014,-1,780,888,663,-1,859,1026,914,-1,859,990,1026,-1,613,528,382,-1,528,613,583,-1,1112,1128,1194,-1,1128,1112,1057,-1,795,1024,745,-1,1024,795,967,-1,490,747,503,-1,490,778,747,-1,1208,1102,1121,-1,1208,1123,1102,-1,1102,1059,1079,-1,1059,1102,1123,-1,955,511,424,-1,511,955,917,-1,886,727,776,-1,886,726,727,-1,722,828,829,-1,722,681,828,-1,188,514,361,-1,514,188,492,-1,1039,1051,1019,-1,1015,1051,1039,-1,622,513,531,-1,622,628,513,-1,589,851,855,-1,589,600,851,-1,523,504,707,-1,523,529,504,-1,560,529,457,-1,560,607,529,-1,1026,1129,1029,-1,1026,1180,1129,-1,309,559,327,-1,559,309,481,-1,1122,1032,948,-1,1032,1122,1149,-1,769,589,855,-1,769,585,589,-1,918,809,849,-1,809,918,866,-1,1033,1094,1071,-1,1033,1047,1094,-1,1041,1047,1022,-1,1041,1094,1047,-1,1022,991,994,-1,989,991,1022,-1,909,797,784,-1,909,834,797,-1,936,965,935,-1,936,1011,965,-1,627,817,626,-1,627,779,817,-1,503,391,570,-1,391,503,515,-1,1045,1204,1078,-1,1045,1200,1204,-1,1073,674,891,-1,674,1073,916,-1,1185,916,1073,-1,1106,916,1185,-1,967,966,1086,-1,966,967,871,-1,911,860,921,-1,911,889,860,-1,809,799,788,-1,866,799,809,-1,733,648,708,-1,658,648,733,-1,911,902,906,-1,911,883,902,-1,949,910,921,-1,946,910,949,-1,902,870,922,-1,902,883,870,-1,906,961,979,-1,961,906,877,-1,922,848,971,-1,870,848,922,-1,661,757,659,-1,658,757,661,-1,658,725,757,-1,1154,1208,1178,-1,1208,1154,1123,-1,782,1018,820,-1,1018,782,768,-1,857,800,820,-1,800,857,831,-1,692,637,700,-1,692,550,637,-1,438,591,445,-1,438,592,591,-1,742,700,505,-1,742,692,700,-1,942,573,923,-1,942,597,573,-1,820,744,786,-1,744,820,800,-1,850,1034,1126,-1,867,1034,850,-1,670,658,661,-1,670,648,658,-1,946,878,953,-1,878,946,801,-1,979,1112,1162,-1,1007,1112,979,-1,870,844,880,-1,870,883,844,-1,883,921,910,-1,883,911,921,-1,708,926,733,-1,708,872,926,-1,649,872,708,-1,755,872,649,-1,788,595,809,-1,788,574,595,-1,832,967,795,-1,871,967,832,-1,621,850,868,-1,621,611,850,-1,629,779,627,-1,629,840,779,-1,706,738,536,-1,738,706,713,-1,876,1209,1136,-1,876,940,1209,-1,909,957,834,-1,1095,957,909,-1,965,1006,988,-1,965,1011,1006,-1,720,1043,970,-1,720,805,1043,-1,991,929,935,-1,991,958,929,-1,1048,1094,1041,-1,1048,1058,1094,-1,981,977,983,-1,981,896,977,-1,1010,1033,1036,-1,1047,1033,1010,-1,596,809,595,-1,596,849,809,-1,849,590,941,-1,849,596,590,-1,1129,769,855,-1,769,1129,1001,-1,1070,1039,1000,-1,1070,1065,1039,-1,382,677,613,-1,382,545,677,-1,545,944,677,-1,944,545,914,-1,529,609,504,-1,607,609,529,-1,859,714,927,-1,640,714,859,-1,603,666,837,-1,603,612,666,-1,419,285,168,-1,419,479,285,-1,468,960,740,-1,468,558,960,-1,1059,1154,1137,-1,1059,1123,1154,-1,1155,1151,1113,-1,1155,1197,1151,-1,778,557,801,-1,778,490,557,-1,795,375,664,-1,745,375,795,-1,1057,980,1128,-1,980,1057,971,-1,1029,914,1026,-1,944,914,1029,-1,962,1014,1087,-1,962,888,1014,-1,346,8,176,-1,346,199,8,-1,493,723,679,-1,493,704,723,-1,897,973,1101,-1,897,750,973,-1,260,76,181,-1,260,206,76,-1,813,748,943,-1,813,668,748,-1,813,869,893,-1,869,813,865,-1,748,916,1106,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getaxis_Geo_5_31_normalIndex_7()
		{
			int[] value = {748,476,916,-1,759,459,480,-1,759,509,459,-1,1143,1019,1051,-1,1143,1090,1019,-1,397,207,363,-1,397,312,207,-1,776,710,765,-1,776,727,710,-1,274,394,295,-1,274,231,394,-1,713,700,637,-1,700,713,706,-1,310,197,212,-1,310,294,197,-1,513,692,694,-1,550,692,513,-1,25,77,81,-1,18,77,25,-1,14,20,2,-1,14,18,20,-1,27,12,4,-1,56,12,27,-1,886,957,1066,-1,886,852,957,-1,349,647,681,-1,268,647,349,-1,544,726,558,-1,544,727,726,-1,825,283,325,-1,283,825,805,-1,44,81,105,-1,44,25,81,-1,138,265,249,-1,121,265,138,-1,276,442,265,-1,442,276,445,-1,579,934,719,-1,896,934,579,-1,445,588,442,-1,588,445,591,-1,433,70,366,-1,102,70,433,-1,1171,1177,1165,-1,1171,1186,1177,-1,754,246,884,-1,754,317,246,-1,1175,1186,1181,-1,1177,1186,1175,-1,862,246,233,-1,884,246,862,-1,1184,1133,1172,-1,1184,1148,1133,-1,1027,1040,1132,-1,1027,934,1040,-1,793,1188,1183,-1,793,1111,1188,-1,1013,1085,1037,-1,1085,1013,1012,-1,1215,1012,1013,-1,1215,1124,1012,-1,526,561,680,-1,526,522,561,-1,644,400,602,-1,644,526,400,-1,1148,863,1133,-1,1148,858,863,-1,113,478,301,-1,113,365,478,-1,581,665,634,-1,581,625,665,-1,1211,1153,1212,-1,1211,1187,1153,-1,243,601,604,-1,601,243,336,-1,598,407,418,-1,598,599,407,-1,164,272,336,-1,129,272,164,-1,111,164,162,-1,129,164,111,-1,58,196,73,-1,58,120,196,-1,563,546,555,-1,563,566,546,-1,322,270,261,-1,417,270,322,-1,107,240,50,-1,240,107,208,-1,369,354,399,-1,369,332,354,-1,287,332,306,-1,287,308,332,-1,291,506,471,-1,291,353,506,-1,353,594,506,-1,594,353,461,-1,595,427,408,-1,595,574,427,-1,371,350,441,-1,371,359,350,-1,554,406,530,-1,406,554,441,-1,267,69,340,-1,267,109,69,-1,626,316,398,-1,633,316,626,-1,624,344,621,-1,300,344,624,-1,5,185,262,-1,5,100,185,-1,223,257,474,-1,108,257,223,-1,218,238,228,-1,218,210,238,-1,186,496,248,-1,186,416,496,-1,292,245,277,-1,292,256,245,-1,204,194,163,-1,204,235,194,-1,219,166,194,-1,219,205,166,-1,87,68,49,-1,68,87,84,-1,175,311,282,-1,237,311,175,-1,177,148,216,-1,177,154,148,-1,538,833,613,-1,538,671,833,-1,269,671,538,-1,302,671,269,-1,609,688,709,-1,688,609,607,-1,507,351,288,-1,351,507,584,-1,548,603,384,-1,548,612,603,-1,202,154,177,-1,144,154,202,-1,643,532,861,-1,494,532,643,-1,47,36,13,-1,67,36,47,-1,64,66,111,-1,64,17,66,-1,656,437,417,-1,656,728,437,-1,824,420,554,-1,420,824,469,-1,239,158,90,-1,247,158,239,-1,302,182,191,-1,182,302,269,-1,193,254,126,-1,193,328,254,-1,1206,874,1049,-1,1206,1021,874,-1,497,724,534,-1,497,540,724,-1,959,853,796,-1,987,853,959,-1,739,1093,781,-1,739,964,1093,-1,547,702,456,-1,702,547,781,-1,172,99,466,-1,99,172,88,-1,299,466,99,-1,299,739,466,-1,696,1030,653,-1,696,939,1030,-1,263,716,699,-1,716,263,373,-1,178,298,464,-1,52,298,178,-1,702,1021,730,-1,702,874,1021,-1,1008,818,847,-1,1008,901,818,-1,502,439,444,-1,502,487,439,-1,428,568,421,-1,428,808,568,-1,443,678,645,-1,443,477,678,-1,1017,912,1035,-1,1017,1192,912,-1,1017,904,1004,-1,1017,920,904,-1,524,701,521,-1,701,524,665,-1,1141,1190,1134,-1,1190,1141,1196,-1,1195,1201,1214,-1,1195,1196,1201,-1,1199,1187,1211,-1,1187,1199,1157,-1,258,319,152,-1,258,355,319,-1,568,861,532,-1,861,568,947,-1,491,667,657,-1,491,487,667,-1,933,383,894,-1,416,383,933,-1,1134,1170,1114,-1,1134,1190,1170,-1,950,1080,982,-1,1080,950,1096,-1,774,937,950,-1,771,937,774,-1,282,582,489,-1,582,282,311,-1,588,771,774,-1,591,771,588,-1,1146,789,854,-1,789,1146,1118,-1,37,43,49,-1,37,28,43,-1,972,440,330,-1,972,898,440,-1,28,40,33,-1,40,28,37,-1,972,347,985,-1,347,972,330,-1,83,30,42,-1,83,65,30,-1,175,190,84,-1,175,282,190,-1,92,114,0,-1,92,86,114,-1,86,41,80,-1,86,92,41,-1,150,24,75,-1,150,55,24,-1,203,0,201,-1,203,92,0,-1,165,35,53,-1,165,39,35,-1,972,1156,1145,-1,972,985,1156,-1,816,787,790,-1,787,816,762,-1,101,519,402,-1,334,519,101,-1,802,623,900,-1,802,630,623,-1,30,41,33,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getaxis_Geo_5_31_normalIndex_8()
		{
			int[] value = {30,10,41,-1,737,1103,932,-1,737,846,1103,-1,345,65,83,-1,345,352,65,-1,816,644,602,-1,816,687,644,-1,669,687,541,-1,669,675,687,-1,106,114,220,-1,104,114,106,-1,134,201,179,-1,203,201,134,-1,24,381,31,-1,24,106,381,-1,10,402,347,-1,101,402,10,-1,985,402,932,-1,402,985,347,-1,39,40,35,-1,42,40,39,-1,46,619,53,-1,619,46,617,-1,33,179,28,-1,33,134,179,-1,68,617,46,-1,617,68,618,-1,675,644,687,-1,644,675,639,-1,582,1042,892,-1,582,577,1042,-1,592,732,777,-1,641,732,592,-1,618,84,190,-1,68,84,618,-1,777,892,938,-1,732,892,777,-1,937,1075,1092,-1,937,938,1075,-1,1152,1158,1159,-1,1158,1152,1131,-1,931,1193,1055,-1,1193,931,1044,-1,388,379,421,-1,379,388,372,-1,823,1207,1004,-1,823,1198,1207,-1,1075,1141,1092,-1,1141,1075,1144,-1,1144,1042,1118,-1,1042,1144,1075,-1,1004,1192,1017,-1,1192,1004,1207,-1,887,998,824,-1,887,951,998,-1,525,501,634,-1,520,501,525,-1,810,951,885,-1,810,998,951,-1,978,766,791,-1,978,847,766,-1,827,905,792,-1,827,901,905,-1,195,82,153,-1,195,183,82,-1,791,462,730,-1,791,684,462,-1,495,48,110,-1,48,495,673,-1,217,534,564,-1,217,259,534,-1,333,405,321,-1,389,405,333,-1,466,405,172,-1,466,547,405,-1,743,534,724,-1,564,534,743,-1,321,462,373,-1,462,321,456,-1,822,987,1097,-1,822,673,987,-1,288,221,159,-1,221,288,351,-1,498,368,430,-1,395,368,498,-1,156,132,250,-1,132,156,94,-1,698,530,467,-1,530,698,761,-1,458,322,395,-1,458,452,322,-1,140,97,59,-1,115,97,140,-1,257,746,474,-1,257,657,746,-1,931,798,1044,-1,931,736,798,-1,202,214,318,-1,202,153,214,-1,159,141,126,-1,141,159,144,-1,620,548,538,-1,612,548,620,-1,226,34,148,-1,191,34,226,-1,890,516,655,-1,1063,516,890,-1,1063,986,516,-1,446,89,356,-1,215,89,446,-1,590,360,273,-1,590,596,360,-1,408,596,595,-1,408,360,596,-1,184,205,180,-1,205,184,166,-1,266,237,227,-1,266,311,237,-1,124,151,163,-1,124,157,151,-1,256,219,245,-1,219,256,227,-1,235,228,238,-1,235,204,228,-1,410,278,236,-1,410,348,278,-1,5,340,69,-1,5,281,340,-1,477,520,678,-1,501,520,477,-1,436,629,627,-1,436,392,629,-1,392,169,173,-1,392,436,169,-1,358,621,344,-1,358,611,621,-1,250,371,420,-1,371,250,331,-1,359,305,308,-1,377,305,359,-1,406,155,339,-1,406,337,155,-1,482,566,565,-1,482,546,566,-1,38,136,61,-1,136,38,48,-1,217,29,15,-1,110,29,217,-1,369,306,332,-1,369,374,306,-1,306,261,270,-1,306,374,261,-1,293,290,255,-1,293,314,290,-1,247,255,158,-1,255,247,293,-1,555,463,455,-1,546,463,555,-1,429,426,396,-1,426,429,455,-1,162,358,79,-1,358,162,338,-1,484,396,426,-1,418,396,484,-1,573,272,320,-1,573,597,272,-1,525,472,693,-1,525,524,472,-1,591,777,771,-1,591,592,777,-1,1174,1184,1181,-1,1174,1205,1184,-1,623,415,313,-1,623,630,415,-1,695,1119,811,-1,1119,695,882,-1,423,400,425,-1,453,400,423,-1,57,246,71,-1,57,233,246,-1,1179,1056,1160,-1,1179,1176,1056,-1,1104,1111,1009,-1,1111,1104,1135,-1,1174,1115,1150,-1,1174,1124,1115,-1,811,1205,862,-1,1205,811,1119,-1,811,233,301,-1,862,233,811,-1,1175,1176,1179,-1,1176,1175,1172,-1,1164,619,617,-1,1164,1160,619,-1,1037,1181,1186,-1,1037,1085,1181,-1,617,1147,1164,-1,618,1147,617,-1,174,579,323,-1,174,654,579,-1,473,592,438,-1,592,473,641,-1,1132,618,1027,-1,618,1132,1147,-1,323,438,275,-1,438,323,473,-1,143,276,128,-1,143,275,276,-1,45,63,54,-1,85,63,45,-1,22,285,167,-1,168,285,22,-1,834,828,797,-1,841,828,834,-1,9,380,212,-1,9,19,380,-1,77,143,128,-1,72,143,77,-1,174,72,102,-1,143,72,174,-1,23,212,197,-1,9,212,23,-1,297,170,274,-1,297,375,170,-1,231,505,394,-1,231,294,505,-1,304,197,170,-1,304,23,197,-1,536,772,570,-1,536,738,772,-1,647,784,797,-1,647,409,784,-1,776,852,886,-1,776,814,852,-1,450,242,459,-1,450,363,242,-1,309,390,424,-1,309,312,390,-1,917,1061,752,-1,1061,917,1167,-1,492,997,514,-1,836,997,492,-1,1163,721,1107,-1,533,721,1163,-1,679,999,650,-1,679,956,999,-1,512,668,758,-1,431,668,512,-1,125,476,431,-1,125,252,476,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getaxis_Geo_5_31_normalIndex_9()
		{
			int[] value = {357,260,412,-1,260,357,229,-1,759,893,836,-1,758,893,759,-1,229,385,119,-1,229,533,385,-1,995,927,1054,-1,859,927,995,-1,848,725,773,-1,725,848,812,-1,1086,1062,967,-1,1125,1062,1086,-1,686,515,747,-1,475,515,686,-1,878,757,812,-1,878,763,757,-1,1121,1079,1161,-1,1079,1121,1102,-1,1178,1166,1200,-1,1166,1178,1139,-1,681,572,349,-1,572,681,722,-1,1065,1015,1039,-1,1015,1065,1074,-1,1084,1054,1087,-1,1074,1054,1084,-1,666,620,677,-1,620,666,612,-1,1180,990,1070,-1,990,1180,1026,-1,697,327,559,-1,697,149,327,-1,697,234,149,-1,896,1040,934,-1,1040,896,981,-1,1147,1130,1165,-1,1132,1130,1147,-1,1047,989,1022,-1,1047,1010,989,-1,1022,1020,1041,-1,1022,994,1020,-1,988,994,965,-1,988,1020,994,-1,936,835,963,-1,936,873,835,-1,960,993,740,-1,993,960,1117,-1,1031,1209,955,-1,1031,1116,1209,-1,868,624,621,-1,624,868,915,-1,899,626,817,-1,626,899,633,-1,1025,1137,1045,-1,1137,1025,1059,-1,1136,948,876,-1,1136,1122,948,-1,804,664,686,-1,775,664,804,-1,906,819,889,-1,906,839,819,-1,860,832,775,-1,860,889,832,-1,648,734,642,-1,648,670,734,-1,1046,1173,1149,-1,1163,1173,1046,-1,1189,999,1202,-1,999,1189,1107,-1,910,844,883,-1,910,838,844,-1,953,910,946,-1,953,838,910,-1,877,922,961,-1,877,902,922,-1,961,971,1057,-1,922,971,961,-1,729,661,760,-1,661,729,670,-1,786,782,820,-1,760,782,786,-1,942,1050,879,-1,1050,942,1091,-1,831,598,800,-1,831,599,598,-1,601,954,604,-1,879,954,601,-1,62,4,3,-1,62,27,4,-1,550,581,637,-1,550,625,581,-1,286,105,283,-1,44,105,286,-1,611,867,850,-1,611,608,867,-1,879,597,942,-1,879,601,597,-1,895,1002,1098,-1,881,1002,895,-1,1113,1069,1155,-1,1091,1069,1113,-1,1082,768,764,-1,768,1082,1018,-1,659,768,782,-1,659,715,768,-1,659,763,715,-1,801,949,778,-1,801,946,949,-1,1007,1057,1112,-1,961,1057,1007,-1,838,880,844,-1,880,838,953,-1,1194,1108,1189,-1,1194,1128,1108,-1,872,1108,926,-1,872,1081,1108,-1,642,708,648,-1,649,708,642,-1,903,775,804,-1,903,860,775,-1,906,966,839,-1,906,979,966,-1,1072,570,1005,-1,1072,682,570,-1,1078,779,1045,-1,1078,817,779,-1,919,624,915,-1,624,919,632,-1,633,772,631,-1,633,899,772,-1,940,1167,1209,-1,940,1061,1167,-1,1117,891,993,-1,1117,1073,891,-1,1095,1066,957,-1,1095,1203,1066,-1,963,1028,936,-1,1028,963,1068,-1,784,970,913,-1,970,784,720,-1,970,1020,988,-1,970,1043,1020,-1,1058,825,856,-1,1048,825,1058,-1,983,1010,981,-1,989,1010,983,-1,1071,856,928,-1,856,1071,1058,-1,830,908,992,-1,830,734,908,-1,941,587,769,-1,590,587,941,-1,712,234,697,-1,712,213,234,-1,995,1070,990,-1,995,1065,1070,-1,1000,992,1070,-1,1000,830,992,-1,914,640,859,-1,640,914,545,-1,382,560,457,-1,382,528,560,-1,962,714,707,-1,714,962,952,-1,837,677,944,-1,677,837,666,-1,504,614,663,-1,609,614,504,-1,924,1074,1084,-1,1015,1074,924,-1,572,685,419,-1,572,722,685,-1,149,207,327,-1,149,131,207,-1,1113,1121,1161,-1,1113,1151,1121,-1,297,686,664,-1,297,475,686,-1,1086,1202,1125,-1,1202,1086,1162,-1,971,773,980,-1,773,971,848,-1,851,944,1029,-1,837,944,851,-1,1087,927,952,-1,927,1087,1054,-1,480,758,759,-1,512,758,480,-1,750,543,652,-1,750,527,543,-1,750,717,527,-1,717,750,897,-1,412,181,537,-1,412,260,181,-1,260,119,206,-1,260,229,119,-1,527,704,493,-1,527,717,704,-1,1127,806,943,-1,806,1127,984,-1,1024,1127,1106,-1,1024,1062,1127,-1,131,8,199,-1,131,149,8,-1,468,363,450,-1,468,397,363,-1,431,346,125,-1,346,431,512,-1,814,841,852,-1,814,829,841,-1,738,672,772,-1,738,713,672,-1,170,294,231,-1,294,170,197,-1,513,625,550,-1,625,513,628,-1,138,283,105,-1,138,325,283,-1,14,102,72,-1,14,70,102,-1,45,18,25,-1,20,18,45,-1,18,72,77,-1,14,72,18,-1,1110,1068,1109,-1,1110,1120,1068,-1,1089,558,726,-1,1089,960,558,-1,852,834,957,-1,852,841,834,-1,63,168,22,-1,63,349,168,-1,409,44,286,-1,409,85,44,-1,143,323,275,-1,143,174,323,-1,275,445,276,-1,275,438,445,-1,858,478,365,-1,882,478,858,-1,882,695,478,-1,586,442,588,-1,442,586,453,-1,102,654,174,-1,102,433,654,-1,928,1183,1071,-1,928,793,1183,-1,1165,1182,1147,-1,1165,1177,1182,-1,884,1205,1174,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getaxis_Geo_5_31_normalIndex_10()
		{
			int[] value = {884,862,1205,-1,1177,1179,1182,-1,1179,1177,1175,-1,605,71,606,-1,57,71,605,-1,1172,1105,1176,-1,1105,1172,1133,-1,767,719,934,-1,767,635,719,-1,616,1027,618,-1,616,767,1027,-1,1115,1009,1150,-1,1009,1115,1104,-1,1182,1160,1164,-1,1182,1179,1160,-1,882,1148,1119,-1,1148,882,858,-1,1077,636,756,-1,1077,1076,636,-1,338,611,358,-1,338,608,611,-1,597,336,272,-1,597,601,336,-1,418,329,396,-1,407,329,418,-1,98,111,66,-1,111,98,129,-1,196,429,396,-1,448,429,196,-1,6,51,36,-1,91,51,6,-1,458,555,556,-1,458,563,555,-1,458,498,563,-1,368,293,247,-1,293,368,354,-1,354,314,293,-1,354,332,314,-1,306,271,287,-1,271,306,270,-1,103,21,29,-1,103,90,21,-1,506,565,566,-1,565,506,594,-1,434,408,427,-1,408,434,378,-1,350,308,287,-1,350,359,308,-1,251,250,132,-1,331,250,251,-1,299,60,137,-1,60,299,99,-1,500,137,324,-1,299,137,500,-1,173,140,116,-1,173,161,140,-1,645,123,209,-1,645,539,123,-1,436,139,169,-1,436,398,139,-1,624,376,300,-1,632,376,624,-1,443,633,631,-1,443,316,633,-1,238,278,277,-1,238,210,278,-1,421,307,428,-1,421,379,307,-1,383,157,335,-1,157,383,151,-1,205,227,237,-1,227,205,219,-1,124,184,146,-1,124,166,184,-1,408,279,360,-1,378,279,408,-1,589,446,356,-1,589,585,446,-1,986,518,516,-1,986,1003,518,-1,148,221,226,-1,148,154,221,-1,225,216,148,-1,225,386,216,-1,584,302,351,-1,671,302,584,-1,751,688,662,-1,751,689,688,-1,709,689,508,-1,709,688,689,-1,362,589,356,-1,362,600,589,-1,701,622,683,-1,701,628,622,-1,153,177,195,-1,177,153,202,-1,699,1038,843,-1,716,1038,699,-1,542,643,798,-1,542,494,643,-1,1008,1063,890,-1,1008,1088,1063,-1,97,111,59,-1,97,64,111,-1,530,887,554,-1,530,761,887,-1,15,132,94,-1,50,132,15,-1,430,247,239,-1,368,247,430,-1,191,351,302,-1,191,226,351,-1,432,328,193,-1,552,328,432,-1,456,730,462,-1,730,456,702,-1,676,483,535,-1,676,690,483,-1,486,483,690,-1,326,483,486,-1,1030,796,653,-1,1030,959,796,-1,1097,959,1023,-1,1097,987,959,-1,540,690,724,-1,540,486,690,-1,403,88,172,-1,230,88,403,-1,88,192,99,-1,88,156,192,-1,803,792,905,-1,703,792,803,-1,1193,1159,1212,-1,1159,1193,1152,-1,843,1198,823,-1,843,1038,1198,-1,625,701,665,-1,628,701,625,-1,933,1080,1114,-1,933,894,1080,-1,1118,1201,1144,-1,1118,1146,1201,-1,1196,1158,1190,-1,1158,1196,1195,-1,1144,1196,1141,-1,1196,1144,1201,-1,228,303,218,-1,228,248,303,-1,532,421,568,-1,532,388,421,-1,931,925,731,-1,1055,925,931,-1,930,416,933,-1,416,930,496,-1,1096,1114,1080,-1,1096,1134,1114,-1,950,1092,1096,-1,937,1092,950,-1,950,787,774,-1,982,787,950,-1,489,892,732,-1,489,582,892,-1,31,75,24,-1,75,31,43,-1,10,330,41,-1,10,347,330,-1,35,37,32,-1,40,37,35,-1,1145,605,606,-1,605,1145,1156,-1,112,42,39,-1,83,42,112,-1,489,449,282,-1,489,635,449,-1,190,616,618,-1,190,449,616,-1,92,134,41,-1,92,203,134,-1,55,201,0,-1,55,150,201,-1,687,790,541,-1,790,687,816,-1,519,932,402,-1,519,737,932,-1,83,411,345,-1,411,83,112,-1,900,411,802,-1,900,345,411,-1,900,352,345,-1,900,846,352,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getaxis_Coord_6_31_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_6_31_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 double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_32_vector_1()
		{
			double[] value = {-0.9996,0.0129,-0.0233,-0.9992,0.0227,-0.0322,-0.9983,-0.0399,0.0426,-0.9974,0.0475,0.0533,-0.9907,0.1352,0.0146,-0.9864,0.1641,0.008,-0.9818,0.154,-0.1107,-0.9727,0.0913,0.2133,-0.9714,0.236,-0.0243,-0.9708,0.0067,-0.2398,-0.9692,-0.1282,-0.2102,-0.9661,-0.0178,-0.2574,-0.9661,0.2499,0.0654,-0.9645,-0.2596,-0.0489,-0.9638,-0.0276,0.2653,-0.9636,-0.267,-0.0101,-0.9632,0.2073,-0.1713,-0.9593,0.152,0.238,-0.9573,-0.1623,0.2393,-0.9565,-0.2532,-0.1451,-0.9554,-0.2506,-0.1562,-0.9529,0.0286,0.3021,-0.9522,-0.1677,0.2553,-0.9516,0.123,-0.2816,-0.9457,0.1442,0.2913,-0.944,-0.2346,0.2318,-0.9395,-0.1603,-0.3029,-0.9385,0.2587,0.2287,-0.9364,0.2721,-0.2218,-0.9355,-0.1982,0.2924,-0.9354,0.2475,-0.2526,-0.9344,-0.1695,-0.3134,-0.9317,0.3048,-0.1977,-0.9295,0.2811,-0.2387,-0.9291,-0.3288,0.1694,-0.928,0.2856,-0.2394,-0.9274,-0.372,-0.0379,-0.9259,0.3102,-0.2156,-0.9253,0.1379,0.3533,-0.9247,0.2799,-0.2579,-0.9228,0.2909,-0.2525,-0.9224,-0.1647,-0.3493,-0.9162,0.2789,-0.2877,-0.9151,0.1717,-0.365,-0.9134,-0.3292,0.2394,-0.9078,-0.2947,-0.2986,-0.9073,0.3607,-0.2161,-0.9064,-0.2736,0.3217,-0.9048,0.1967,-0.3778,-0.9029,0.2699,-0.3345,-0.902,0.4167,-0.1131,-0.9014,-0.1943,-0.387,-0.9012,-0.4247,-0.0861,-0.901,0.3243,-0.2881,-0.8969,-0.2344,-0.3751,-0.8967,0.3165,0.3096,-0.8962,0.3942,0.2035,-0.894,-0.4041,0.1933,-0.8937,0.4427,0.0731,-0.8856,0.4166,-0.2052,-0.8847,0.4502,-0.1209,-0.8819,0.3334,0.3333,-0.8783,0.1236,0.4619,-0.8777,-0.4754,-0.0599,-0.8777,0.4769,0.0469,-0.8755,0.1267,-0.4662,-0.8724,0.2124,0.4403,-0.8722,-0.2574,0.4161,-0.872,0.3836,-0.304,-0.8713,0.3757,0.3158,-0.8683,0.414,0.2733,-0.8682,-0.4554,0.1971,-0.8677,-0.0038,0.4971,-0.867,0.3552,0.3495,-0.8655,0.4288,-0.259,-0.8646,0.4963,-0.0787,-0.8637,-0.0878,-0.4963,-0.8633,-0.0241,0.5041,-0.8601,-0.2703,-0.4326,-0.8563,0.4978,-0.1374,-0.8534,-0.5035,0.135,-0.8489,-0.0273,0.5279,-0.8473,-0.5169,0.1221,-0.8438,0.1112,-0.525,-0.8436,0.3735,-0.3857,-0.8415,-0.4206,-0.339,-0.8399,-0.5376,0.0753,-0.8394,0.2639,-0.4752,-0.8349,-0.546,-0.07,-0.833,-0.304,0.4623,-0.8323,0.1674,0.5284,-0.8309,0.0659,-0.5526,-0.8297,-0.1714,-0.5312,-0.8281,-0.444,0.3423,-0.826,-0.3308,-0.4564,-0.8204,0.2349,0.5214,-0.8178,0.3472,-0.4589,-0.8163,0.5142,-0.263,-0.8146,0.2781,0.5091,-0.8131,0.3806,0.4404,-0.813,0.5171,-0.2678,-0.8125,-0.1878,-0.5519,-0.812,0.4115,0.4139,-0.8116,-0.0814,0.5786,-0.8064,-0.3185,0.4983,-0.8058,-0.0909,0.5851,-0.8036,-0.4127,0.4288,-0.8033,0.5896,0.0847,-0.798,0.4706,-0.3764,-0.7971,0.4482,0.4047,-0.7947,-0.5821,-0.1722,-0.7936,0.5792,0.1864,-0.7926,0.1542,-0.5899,-0.7919,-0.5249,-0.312,-0.7881,-0.5053,0.3517,-0.7866,0.3853,-0.4824,-0.7865,0.1971,-0.5854,-0.7816,0.2346,0.578,-0.7809,0.3955,-0.4834,-0.7796,0.2687,-0.5657,-0.7791,0.6201,-0.0924,-0.7732,0.0749,0.6297,-0.7726,-0.3268,-0.5443,-0.7714,0.4796,-0.4182,-0.7706,-0.1293,-0.6241,-0.7696,0.6139,0.1755,-0.765,-0.6127,-0.1984,-0.7641,0.086,-0.6393,-0.7636,0.0312,0.6449,-0.7629,0.4814,0.4316,-0.7596,-0.576,0.302,-0.759,-0.5717,0.3115,-0.7581,0.313,-0.5722,-0.7557,-0.0166,0.6547,-0.7553,0.4231,-0.5005,-0.7549,0.3873,-0.5292,-0.7547,0.6015,-0.262,-0.7546,0.6503,-0.0876,-0.7526,-0.0132,0.6584,-0.7493,-0.2191,-0.6249,-0.7483,0.3708,-0.55,-0.7479,-0.5989,-0.2863,-0.7479,0.6549,-0.1087,-0.7453,0.0561,0.6643,-0.7453,-0.6445,-0.1708,-0.7421,0.6559,-0.1381,-0.7404,-0.2572,-0.621,-0.7384,-0.0558,-0.672,-0.7383,-0.5869,0.3325,-0.7359,-0.5372,0.4122,-0.7358,0.6771,0.0088,-0.7354,-0.4358,-0.5189,-0.7326,-0.6563,0.1805,-0.732,-0.6759,-0.0855,-0.7286,-0.6835,0.0446,-0.7269,0.6826,-0.0752,-0.7248,-0.2124,-0.6554,-0.7241,-0.4471,-0.5251,-0.7241,0.6432,0.2488,-0.7192,-0.6923,-0.0592,-0.7173,0.2692,0.6426,-0.7147,0.0752,-0.6953,-0.712,0.6537,0.2565,-0.7054,-0.2506,-0.663,-0.7039,0.5904,0.3949,-0.7015,0.3343,-0.6294,-0.701,0.002,-0.7131,-0.7008,0.0385,0.7123,-0.6966,-0.3764,0.6108,-0.6957,-0.2337,-0.6793,-0.6955,-0.2479,-0.6744,-0.6924,0.2203,-0.687,-0.6917,-0.405,0.5979,-0.6907,0.02,-0.7229,-0.6897,0.4898,0.5332,-0.6877,0.3766,-0.6207,-0.6847,0.7273,-0.0466,-0.6847,-0.7288,0.0079,-0.6812,-0.5755,0.4524,-0.6812,0.6318,-0.3699,-0.6805,0.282,-0.6763,-0.6781,-0.3758,-0.6316,-0.6778,-0.7352,0.0015,-0.6766,-0.6691,-0.3074,-0.6746,0.1033,-0.7309,-0.6727,0.3905,-0.6285,-0.67,-0.6084,-0.4254,-0.6686,-0.17,0.724,-0.662,-0.6711,0.3337,-0.661,0.7409,-0.1184,-0.6596,0.6251,-0.4174,-0.6573,-0.7531,-0.0283,-0.6547,0.3495,-0.6702,-0.6504,-0.6005,-0.4651,-0.6502,-0.0678,-0.7567,-0.6461,-0.7544,-0.1161,-0.643,0.6739,0.3639,-0.6421,-0.4005,-0.6537,-0.6403,-0.7533,0.1501,-0.639,0.4415,0.6299,-0.6385,0.3754,0.6719,-0.6376,0.6785,-0.3647,-0.6372,-0.7579,-0.1399,-0.6342,0.5116,-0.5797,-0.6326,-0.3938,-0.6669,-0.6326,0.1914,-0.7505,-0.6318,0.3308,-0.7011,-0.6219,-0.7728,-0.1269,-0.6212,0.7831,-0.0294,-0.6209,0.0613,-0.7815,-0.6187,0.0109,-0.7856,-0.6177,-0.7864,0.0004,-0.6156,-0.4524,-0.6453,-0.6134,-0.7061,0.3537,-0.6134,-0.787,0.067,-0.6131,0.2008,0.7641,-0.6128,-0.6502,0.4491,-0.6105,-0.792,0.0066,-0.6102,-0.5276,-0.591,-0.608,0.1883,-0.7713,-0.608,-0.6408,0.4688,-0.6051,-0.789,0.106,-0.6048,-0.44,-0.6638,-0.6042,0.3689,-0.7063,-0.604,-0.1248,0.7871,-0.6037,-0.1878,0.7748,-0.6014,-0.7888,0.1268,-0.5986,0.2926,-0.7457,-0.5981,-0.4786,-0.6428,-0.5979,-0.2482,-0.7621,-0.5926,-0.7859,-0.1766,-0.5917,-0.1823,-0.7853,-0.5893,-0.7316,-0.3428,-0.5887,-0.7962,0.1397,-0.5871,-0.6969,0.4118,-0.587,-0.1149,-0.8014,-0.5863,0.5178,-0.623,-0.5855,0.2659,-0.7658,-0.5852,-0.0501,-0.8094,-0.5822,0.3936,0.7114,-0.5792,0.8058,-0.1232,-0.5764,-0.7108,-0.4032,-0.5763,-0.5495,0.6049,-0.5758,0.7144,0.3977,-0.5749,-0.8155,-0.0665,-0.5746,0.2613,-0.7756,-0.5731,-0.713,0.4041,-0.5725,0.7224,0.3877,-0.5725,-0.7458,-0.3405,-0.5724,0.1064,0.813,-0.568,0.4576,-0.6841,-0.5668,0.727,-0.3877,-0.5639,0.8186,0.1089,-0.5636,-0.7954,0.2227,-0.5618,-0.8272,-0.0105,-0.5587,0.8293,-0.0065,-0.5577,0.4371,-0.7056,-0.5577,-0.6909,-0.4601,-0.5542,-0.8311,-0.0468,-0.554,-0.8297,-0.0687,-0.5524,-0.0794,-0.8298,-0.5514,0.8333,0.0391,-0.5504,-0.3658,-0.7505,-0.5494,-0.5644,0.6161,-0.5483,-0.8351,-0.0448,-0.5474,0.1002,0.8309,-0.5469,0.4432,-0.7103,-0.545,-0.0872,0.8339,-0.5426,-0.8353,-0.0885,-0.5417,-0.8111,-0.2204,-0.5417,0.8404,-0.0182,-0.5414,0.8355,-0.0944,-0.5387,0.5164,0.6657,-0.5377,0.3389,0.772,-0.5373,0.1956,-0.8204,-0.5361,0.1219,0.8353,-0.5358,0.1026,0.8381,-0.5345,0.3476,-0.7704,-0.5341,0.4155,-0.7363,-0.5322,0.1813,0.827,-0.5321,-0.2859,0.7969,-0.5299,-0.3059,0.7909,-0.5259,0.7141,-0.462,-0.5241,-0.5949,0.6094,-0.5239,0.8156,-0.2454,-0.5218,-0.1909,0.8314,-0.521,-0.7947,0.3115,-0.5193,0.8509,-0.0785,-0.5104,-0.8599,-0.0115,-0.5081,-0.2665,0.819,-0.508,0.8555,-0.1001,-0.5038,0.0946,0.8586,-0.5007,0.5436,-0.6737,-0.4983,0.8621,0.0919,-0.4975,-0.438,-0.7488,-0.4959,0.3493,-0.7951,-0.4934,0.4941,-0.7158,-0.4932,0.2756,-0.8252,-0.4912,-0.6858,-0.5371,-0.4852,0.8318,0.2697,-0.485,0.3535,-0.7999,-0.4839,-0.8038,-0.346,-0.4837,-0.8648,-0.1347,-0.4836,-0.8255,-0.291,-0.4823,0.4354,-0.7602,-0.4797,0.8618,-0.1648,-0.4789,0.8777,-0.0135,-0.4781,-0.8272,-0.2954,-0.4771,0.8556,-0.201,-0.475,-0.8798,-0.0166,-0.4742,-0.503,-0.7226,-0.4737,0.5714,-0.6702,-0.4729,-0.7418,-0.4754,-0.472,-0.4355,-0.7665,-0.4716,0.8808,-0.0427,-0.4713,0.2635,-0.8417,-0.4701,-0.0762,-0.8793,-0.4696,-0.7535,0.4602,-0.4677,-0.8275,-0.3108,-0.4643,-0.7353,0.4937,-0.4632,0.4015,0.7901,-0.4618,0.1203,0.8788,-0.4612,0.8731,0.1583,-0.461,0.5149,0.7227,-0.4598,0.8094,-0.3654,-0.4584,-0.6307,0.6262,-0.4583,-0.656,0.5997,-0.4582,-0.8296,0.319,-0.4566,-0.8715,-0.1789,-0.4552,0.524,0.7199,-0.4539,-0.795,0.4024,-0.4496,0.6627,-0.5989,-0.4475,0.8943,0.0052,-0.4474,-0.2168,0.8677,-0.4452,-0.2419,-0.8621,-0.4452,-0.8658,-0.2285,-0.4413,0.604,0.6636,-0.4411,0.8115,-0.3832,-0.4384,0.8674,0.2354,-0.4375,0.8223,-0.364,-0.4375,-0.1945,0.8779,-0.4373,0.0254,0.8989,-0.4273,0.3942,0.8136,-0.4258,0.1317,0.8952,-0.4258,0.5638,-0.7077,-0.4208,-0.2339,-0.8765,-0.4182,0.8104,0.4104,-0.4171,-0.9081,0.0373,-0.4166,0.6597,-0.6255,-0.4164,-0.7518,0.5112,-0.4163,0.7945,-0.4421,-0.415,-0.9073,0.0676,-0.4133,-0.2381,-0.8789,-0.4126,-0.012,0.9108,-0.4098,0.9025,0.1325,-0.4096,-0.857,0.3129,-0.4088,-0.3134,0.8571,-0.4054,-0.6059,-0.6845,-0.3999,0.9044,-0.149,-0.3993,0.7856,-0.4726,-0.3976,0.36,0.844,-0.3957,-0.9054,-0.1535,-0.3952,-0.7298,0.5578,-0.3946,-0.9083,-0.139,-0.3941,0.3378,0.8548,-0.394,-0.4667,-0.7918,-0.3911,0.9162,-0.0875,-0.3904,-0.4082,-0.8252,-0.3872,0.7911,0.4735,-0.3854,0.9218,0.0411,-0.3837,-0.8298,0.4052,-0.3825,0.6792,-0.6264,-0.3819,-0.8974,0.2208,-0.3808,-0.2185,0.8985,-0.3794,0.9227,0.0689,-0.3776,0.2517,-0.8911,-0.3774,0.0087,-0.926,-0.3771,0.9017,-0.2117,-0.3747,0.3707,0.8498,-0.3703,-0.927,-0.0594,-0.3695,-0.64,-0.6737,-0.3689,-0.9281,0.0503,-0.3688,-0.9162,-0.1567,-0.3672,-0.9301,0.0115,-0.3628,-0.9274,0.0914,-0.3597,0.4754,-0.8029,-0.3595,-0.3286,0.8734,-0.3593,-0.7854,0.504,-0.3587,-0.8776,0.318,-0.3572,-0.3682,0.8584,-0.3567,-0.7419,-0.5677,-0.356,0.678,-0.6431,-0.3551,-0.2342,-0.905,-0.3542,0.7598,-0.5452,-0.3503,-0.0903,-0.9323,-0.3503,0.8237,0.4459,-0.3485,0.5884,0.7296,-0.3409,-0.871,-0.3538,-0.3402,-0.2973,-0.8921,-0.3389,0.913,0.2269,-0.3387,-0.6286,0.7002,-0.3322,-0.7547,0.5657,-0.3315,-0.8199,-0.4667,-0.3306,-0.8519,0.4061,-0.3305,0.9074,-0.2594,-0.3302,0.0657,0.9416,-0.3285,0.7539,-0.569,-0.3285,0.419,0.8465,-0.3265,0.4133,0.85,-0.3252,-0.9288,-0.1779,-0.325,0.7449,-0.5826,-0.3239,-0.184,-0.928,-0.3231,-0.5405,-0.7769,-0.3221,-0.7803,0.536,-0.3219,-0.9451,0.056,-0.3216,-0.1809,-0.9294,-0.321,-0.9415,0.1024,-0.3201,0.9469,0.031,-0.3195,0.5451,0.7751,-0.3182,-0.5538,0.7694,-0.3171,0.6106,-0.7257,-0.3151,-0.9484,0.0367,-0.3132,-0.9464,-0.0785,-0.3095,0.0561,0.9492,-0.3077,-0.6674,-0.6782,-0.2986,-0.6537,0.6953,-0.2977,0.3278,0.8966,-0.2916,0.3277,0.8987,-0.2915,-0.9549,-0.056,-0.291,0.6503,0.7018,-0.2872,0.4272,0.8573,-0.2863,0.5867,0.7575,-0.286,-0.5104,-0.811,-0.285,0.9549,-0.0833,-0.2837,0.2596,0.9231,-0.2811,-0.6449,0.7107,-0.2809,-0.2784,-0.9185,-0.2807,0.945,-0.1677,-0.2776,0.2237,0.9343,-0.2762,-0.6656,0.6934,-0.2687,-0.8238,0.4992,-0.2636,0.7251,-0.6362,-0.2627,0.1497,0.9532,-0.2612,0.2572,-0.9304,-0.2592,-0.631,0.7312,-0.2561,0.2012,0.9455,-0.2533,0.0476,0.9662,-0.2523,-0.5829,-0.7723,-0.2513,0.873,0.418,-0.2498,0.9033,-0.3487,-0.2483,-0.9652,-0.0823,-0.244,-0.5798,0.7774,-0.2438,0.819,0.5194,-0.2399,0.0176,0.9706,-0.239,0.966,-0.0988,-0.2381,0.4092,0.8808,-0.2354,0.4183,0.8773,-0.2338,-0.962,0.1412,-0.2332,0.6132,0.7547,-0.2315,-0.6466,0.7269,-0.229,0.7628,-0.6047,-0.2274,-0.3029,0.9255,-0.2231,0.1347,0.9654,-0.2225,0.1955,0.9551,-0.2166,-0.9741,0.0648,-0.2146,0.8663,-0.4511,-0.2064,0.4205,0.8835,-0.2034,0.8254,-0.5267,-0.2028,-0.9414,-0.2697,-0.2,0.5229,-0.8286,-0.1992,-0.8665,-0.4577,-0.1991,0.0878,0.976,-0.1989,-0.3055,-0.9312,-0.1983,0.584,0.7871,-0.1968,-0.5554,-0.808,-0.196,0.6211,-0.7588,-0.1944,0.7055,0.6816,-0.1942,0.3121,-0.93,-0.1938,-0.5769,-0.7935,-0.1925,-0.5027,0.8428,-0.1925,0.4201,0.8868,-0.1922,-0.7013,0.6864,-0.1919,-0.057,0.9798,-0.1876,-0.9659,-0.1783,-0.186,0.36,0.9142,-0.1793,-0.4993,0.8477,-0.1758,-0.7863,0.5923,-0.1722,-0.8556,0.4881,-0.1714,0.6255,-0.7612,-0.1708,0.9769,0.1283,-0.1705,0.9705,-0.1704,-0.1664,-0.8555,0.4903,-0.1646,-0.788,0.5932,-0.1644,-0.9841,-0.0668,-0.16,-0.7385,0.655,-0.1575,-0.5175,-0.841,-0.1567,-0.9737,0.1653,-0.1536,-0.9719,0.1782,-0.1525,0.5117,0.8455,-0.1517,0.9323,0.3283,-0.1462,0.9608,-0.2356,-0.1448,0.025,-0.9891,-0.1438,-0.8121,0.5656,-0.1378,0.8594,-0.4925,-0.1361,-0.9905,-0.0192,-0.1342,-0.368,-0.9201,-0.132,-0.0335,0.9907,-0.1318,-0.9861,0.1012,-0.1306,-0.9895,0.0616,-0.1305,-0.367,0.921,-0.1295,-0.779,0.6135,-0.1275,-0.8844,-0.449,-0.1269,0.6916,0.7111,-0.1254,-0.2332,-0.9643,-0.1243,-0.912,0.3908,-0.1233,0.7736,-0.6215,-0.1188,-0.6679,0.7347,-0.1185,-0.5876,0.8004,-0.1178,-0.6105,0.7832,-0.1171,-0.5696,-0.8135,-0.1168,0.1104,-0.987,-0.1163,-0.2537,-0.9603,-0.1161,-0.9932,0.0006,-0.1148,-0.9738,0.1965,-0.114,-0.2535,-0.9606,-0.1129,-0.2705,-0.9561,-0.1091,-0.9937,0.0248,-0.1068,-0.9752,-0.1937,-0.1048,-0.9803,0.1672,-0.1045,-0.9632,0.2477,-0.1034,0.7021,-0.7046,-0.0977,-0.507,-0.8564,-0.0962,-0.8959,0.4338,-0.0958,-0.31,-0.9459,-0.0953,-0.9946,-0.0399,-0.094,-0.7666,-0.6352,-0.0939,0.3977,-0.9127,-0.0922,-0.913,-0.3975,-0.0919,-0.8654,-0.4926,-0.0915,0.9406,-0.3271,-0.0914,-0.878,0.4699,-0.0901,-0.9959,0.0018,-0.0881,-0.6454,0.7588,-0.0881,-0.8143,-0.5738,-0.0878,-0.9941,0.0642,-0.0844,-0.9518,-0.2948,-0.0832,0.0557,0.995,-0.0828,0.3514,0.9325,-0.0805,-0.9418,-0.3265,-0.0786,-0.9156,0.3943,-0.0777,-0.2874,-0.9546,-0.0767,-0.0341,-0.9965,-0.0701,-0.8717,-0.485,-0.0677,-0.6599,0.7483,-0.0647,0.6563,-0.7517,-0.0645,0.3045,0.9503,-0.0604,0.6236,0.7794,-0.0572,0.9963,0.0645,-0.0544,-0.9905,-0.126,-0.0523,-0.6936,0.7184,-0.052,-0.9807,0.1887,-0.0487,-0.9945,0.0923,-0.0452,0.2473,-0.9679,-0.0393,0.1967,0.9797,-0.037,-0.9157,-0.4002,-0.0353,-0.3165,0.9479,-0.0304,0.0018,0.9995,-0.0293,-0.1988,-0.9796,-0.0277,-0.9958,0.0869,-0.0276,-0.8017,0.597,-0.027,0.7208,-0.6926,-0.024,0.8817,-0.4711,-0.018,-0.6726,0.7398,-0.0164,0.4651,0.8851,-0.0156,0.3881,0.9215,-0.0142,0.4153,-0.9096,-0.0142,-0.9754,0.22,-0.0135,0.9494,-0.3139,-0.0129,0.317,0.9483,-0.0114,0.9996,-0.0242,-0.0106,0.4284,0.9035,-0.0102,-0.3358,-0.9419,-0.0072,0.9997,-0.0213,-0.0046,-0.9868,0.162,-0.0026,-0.9997,0.0226,0.0,0.0444,0.999,0.0,-0.0736,0.9973,0.0,0.1171,0.9931,0.0,0.1761,0.9844,0.0,-0.2275,0.9738,0.0,0.2397,0.9708,0.0,0.2409,0.9706,0.0,0.2529,0.9675,0.0,0.3431,0.9393,0.0,-0.3798,0.9251,0.0,0.4046,0.9145,0.0,0.4075,0.9132,0.0,0.4858,0.8741,0.0,0.5392,0.8422,0.0,0.5741,0.8188,0.0,-0.5822,0.813,0.0,0.6592,0.752,0.0,-0.738,0.6748,0.0,-0.8777,0.4791,0.0,0.8899,0.4561,0.0,-0.9282,0.372,0.0,-0.9548,0.2973,0.0,-0.9731,0.2302,0.0,0.9868,0.1618,0.0,-1.0,-0.0028,0.0,-0.999,-0.0445,0.0,0.9792,-0.2029,0.0,-0.9719,-0.2354,0.0,-0.9413,-0.3375,0.0,-0.9209,-0.3899,0.0,-0.9036,-0.4285,0.0,0.8865,-0.4627,0.0,0.864,-0.5035,0.0,0.8418,-0.5397,0.0,0.7249,-0.6888,0.0,-0.6785,-0.7346,0.0,0.6279,-0.7783,0.0,-0.5659,-0.8245,0.0,-0.4841,-0.875,0.0,0.3185,-0.9479,0.0,-0.2915,-0.9566,0.0,-0.2869,-0.958,0.0,-0.2866,-0.958,0.0,-0.2559,-0.9667,0.0,-0.2155,-0.9765,0.0,-0.1996,-0.9799,0.0,0.1906,-0.9817,0.0,0.0649,-0.9979,0.0,-0.0426,-0.9991,0.004,-0.2849,-0.9586,0.004,0.9998,0.019,0.0058,0.8877,-0.4603,0.0077,-0.2945,-0.9556,0.0086,-0.9365,0.3506,0.0089,-0.9988,-0.0476,0.0132,-0.9992,0.0366,0.0147,0.6983,0.7157,0.0176,-0.2928,0.956,0.018,-0.6726,0.7398,0.0222,-0.9988,0.0446,0.027,0.7208,-0.6926,0.0276,-0.8017,0.597,0.0277,-0.9958,0.0869,0.0304,0.0018,0.9995,0.0341,-0.3597,0.9324,0.037,-0.9157,-0.4002,0.0402,-0.644,0.764,0.0458,-0.8132,-0.5802,0.0467,-0.9639,-0.2621,0.0488,0.9596,-0.2769,0.0523,-0.6936,0.7184,0.0543,0.9962,0.0674,0.0544,-0.9905,-0.126,0.0548,0.2026,0.9777,0.0604,0.6236,0.7794,0.0613,-0.8909,0.45,0.0645,0.3045,0.9503,0.0665,-0.9769,0.2029,0.0701,-0.8717,-0.485,0.0762,0.6557,-0.7511,0.0777,-0.2874,-0.9546,0.0805,-0.9418,-0.3265,0.0815,-0.9945,0.0655,0.0828,0.3514,0.9325,0.083,-0.994,0.0717,0.0832,0.0557,0.995,0.0844,-0.9518,-0.2948,0.0853,-0.0164,-0.9962,0.0857,-0.3176,-0.9444,0.0863,0.9631,-0.2548,0.087,-0.9958,-0.0282,0.0881,-0.8143,-0.5738,0.0919,-0.8654,-0.4926,0.0939,0.3977,-0.9127,0.0953,-0.9946,-0.0399,0.0958,-0.995,-0.0283,0.0962,-0.8959,0.4338,0.0977,0.9336,-0.3447,0.0977,-0.507,-0.8564,0.0996,-0.4249,0.8998,0.1005,-0.6355,0.7655,0.1034,0.7021,-0.7046,0.104,-0.9941,0.03,0.1045,-0.9632,0.2477,0.105,-0.9725,0.2078,0.1068,-0.9752,-0.1937,0.1083,-0.7916,0.6014,0.114,-0.2535,-0.9606,0.1163,-0.3875,-0.9145,0.1163,-0.2537,-0.9603,0.1171,-0.5696,-0.8135,0.1179,-0.895,0.4302,0.1188,-0.6679,0.7347,0.1233,0.7736,-0.6215,0.1243,-0.912,0.3908,0.1248,-0.2575,-0.9582,0.1254,-0.2332,-0.9643,0.1258,0.676,0.7261,0.1275,-0.8844,-0.449,0.1289,-0.8678,0.4799,0.1303,-0.599,0.7901,0.1304,0.0936,-0.987,0.1306,-0.9895,0.0616,0.132,-0.0335,0.9907,0.1361,-0.9905,-0.0192,0.1377,-0.8055,0.5765,0.1378,0.8594,-0.4925,0.1409,-0.6338,0.7605,0.1448,0.025,-0.9891,0.1467,-0.9855,0.0856,0.1505,0.9314,0.3315,0.151,-0.7894,0.595,0.153,-0.7703,0.619,0.1544,0.6639,-0.7317,0.1548,0.9792,0.1315,0.1567,-0.9737,0.1653,0.1575,-0.5175,-0.841,0.16,-0.7385,0.655,0.16,-0.9744,0.158,0.1644,-0.9841,-0.0668,0.1646,0.4933,0.8542,0.1664,-0.8555,0.4903,0.1692,-0.854,0.492,0.1705,0.9705,-0.1704,0.1746,0.149,0.9733,0.1804,0.4218,0.8885,0.1871,-0.5019,0.8445,0.1883,0.5725,0.798,0.1892,0.1017,0.9767,0.1919,-0.057,0.9798,0.1922,-0.7013,0.6864,0.1925,-0.5027,0.8428,0.1938,-0.5769,-0.7935,0.1942,0.3121,-0.93,0.1944,0.7055,0.6816,0.1968,-0.5554,-0.808,0.1986,0.8718,-0.4479,0.1989,-0.3055,-0.9312,0.1992,-0.8665,-0.4577,0.1996,0.3735,0.9059,0.2,0.5229,-0.8286,0.2028,-0.9414,-0.2697,0.2034,0.8254,-0.5267,0.2107,0.4271,0.8793,0.2118,-0.9731,0.0908,0.2136,-0.9616,-0.1724,0.2163,-0.9685,0.1234,0.2166,-0.9741,0.0648,0.2188,-0.5599,0.7991,0.2245,-0.8033,0.5516,0.2274,-0.3029,0.9255,0.229,0.7628,-0.6047,0.2332,0.6132,0.7547,0.2354,0.4183,0.8773,0.2368,0.1373,0.9618,0.2381,0.4092,0.8808,0.2391,0.6045,-0.7599,0.2399,0.0176,0.9706,0.2438,0.819,0.5194,0.2461,0.9651,-0.0893,0.2467,-0.6573,0.7121,0.2483,-0.9652,-0.0823,0.2498,0.9033,-0.3487,0.2513,0.873,0.418,0.2533,0.0476,0.9662,0.2534,-0.5678,-0.7832,0.2561,0.2012,0.9455,0.2612,0.2572,-0.9304,0.2617,0.417,0.8704,0.2627,0.1497,0.9532,0.2682,0.6971,-0.6649,0.2737,-0.6953,0.6646,0.2776,0.2237,0.9343,0.2807,0.945,-0.1677,0.2809,-0.2784,-0.9185,0.286,-0.5104,-0.811,0.2863,0.5867,0.7575,0.291,0.6503,0.7018,0.2914,-0.6171,0.731,0.2915,-0.9549,-0.056,0.2919,-0.7568,0.5848,0.2977,0.3278,0.8966,0.3014,0.0501,0.9522,0.3021,0.3138,0.9002,0.3024,0.9504,-0.0727,0.3032,-0.6387,0.7072,0.3043,-0.6513,0.6952,0.3077,-0.6674,-0.6782,0.3102,-0.8999,0.3065,0.311,0.8673,-0.3888,0.3115,0.6275,-0.7136,0.3123,-0.5402,-0.7814,0.3151,-0.9484,0.0367,0.3182,-0.5538,0.7694,0.3183,0.2202,0.9221,0.3195,0.5451,0.7751,0.3215,0.9465,0.0269,0.3216,-0.1809,-0.9294,0.3219,-0.9451,0.056,0.3221,0.7484,-0.5798,0.3225,-0.9373,0.1321,0.3225,-0.8514,0.4136,0.3239,-0.184,-0.928,0.3252,-0.9288,-0.1779,0.3265,0.4133,0.85,0.3306,-0.0721,-0.941,0.3315,-0.8199,-0.4667,0.3348,0.8125,0.4772,0.335,0.0713,0.9395,0.3376,-0.7267,0.5983,0.338,-0.9281,-0.156,0.3387,-0.6286,0.7002,0.3402,-0.2973,-0.8921,0.3409,-0.871,-0.3538,0.3475,0.8823,-0.3174,0.3485,0.5884,0.7296,0.35,0.6661,-0.6586,0.3512,0.4925,-0.7963,0.3515,-0.6535,-0.6704,0.3541,0.2519,-0.9007,0.3546,-0.9349,0.0149,0.3549,0.763,-0.5403,0.3567,-0.7419,-0.5677,0.3587,-0.8776,0.318,0.3593,-0.7854,0.504,0.3595,-0.3286,0.8734,0.3597,0.4496,0.8176,0.368,0.6871,-0.6265,0.3688,-0.9162,-0.1567,0.3703,-0.927,-0.0594,0.3739,0.6644,-0.6471,0.3751,-0.2056,0.9039,0.3765,-0.9217,0.0932,0.3794,0.9227,0.0689,0.38,0.9002,-0.2125,0.3805,-0.1932,-0.9044,0.3819,-0.8974,0.2208,0.3837,-0.8298,0.4052,0.3839,-0.8995,-0.2086,0.3854,0.9218,0.0411,0.3904,-0.4082,-0.8252,0.394,-0.4667,-0.7918,0.3946,-0.9083,-0.139,0.3972,0.78,0.4836,0.3976,0.36,0.844,0.3999,0.9044,-0.149,0.4047,-0.7328,0.547,0.4048,-0.8481,0.342,0.4054,-0.6059,-0.6845,0.4076,0.9101,-0.0747,0.4088,-0.3134,0.8571,0.4129,-0.8783,-0.2409,0.413,0.5628,0.716,0.4133,-0.2381,-0.8789,0.415,-0.9073,0.0676,0.4163,0.7945,-0.4421,0.4164,-0.7518,0.5112,0.4171,-0.9081,0.0373,0.4208,-0.2339,-0.8765,0.423,0.2013,0.8835,0.4233,-0.4296,0.7977,0.4236,0.4135,0.8059,0.424,0.8787,0.2195,0.4258,0.5638,-0.7077,0.4261,-0.2419,0.8718,0.4267,0.897,0.1157,0.4287,0.6796,-0.5953,0.4309,-0.0016,0.9024,0.4325,0.6184,-0.6562,0.4337,0.8056,0.4036,0.4359,0.8317,-0.3439,0.4375,-0.1945,0.8779,0.4378,0.8871,-0.1464,0.4385,0.8846,0.1589,0.4413,0.604,0.6636,0.4426,0.8783,0.181,0.4435,0.2844,0.85,0.4452,-0.2419,-0.8621,0.4475,0.8943,0.0052,0.4502,-0.8019,0.3928,0.4514,0.3733,-0.8105,0.4516,-0.7427,0.4945,0.4516,0.3243,-0.8312,0.4566,-0.8715,-0.1789,0.4574,0.7386,-0.4952,0.4582,-0.8296,0.319,0.4597,0.8012,-0.383,0.461,0.5149,0.7227,0.4618,0.1203,0.8788,0.4636,-0.6529,0.5989,0.4662,0.3628,0.8069,0.4679,0.5641,-0.6804,0.4695,-0.6591,0.5875,0.4696,-0.7535,0.4602,0.4701,-0.0762,-0.8793,0.472,-0.4355,-0.7665,0.4729,-0.7418,-0.4754,0.473,0.8797,-0.0498,0.4733,0.7888,-0.3921,0.4742,-0.503,-0.7226,0.475,-0.8798,-0.0166,0.4761,0.8646,-0.1605,0.4761,0.2506,-0.8429,0.4775,0.0068,0.8786,0.4781,-0.8272,-0.2954,0.4789,0.8777,-0.0135,0.4802,0.8543,-0.1989,0.4823,0.4354,-0.7602,0.4836,-0.8255,-0.291,0.4837,-0.8648,-0.1347,0.485,0.3535,-0.7999,0.4852,0.8318,0.2697,0.4912,-0.6858,-0.5371,0.4916,0.2176,0.8432,0.4922,-0.0538,-0.8688,0.4975,-0.438,-0.7488,0.4982,0.8607,-0.105,0.4983,0.8621,0.0919,0.5037,0.3627,0.7841,0.5056,-0.814,-0.286,0.5081,-0.2665,0.819,0.5094,0.0821,0.8566,0.5104,-0.8599,-0.0115,0.5107,-0.7795,-0.3627,0.515,0.5382,-0.6672,0.521,-0.7947,0.3115,0.5218,-0.1909,0.8314,0.5233,-0.7941,-0.3092,0.5241,-0.5949,0.6094,0.5259,0.7141,-0.462,0.529,0.3368,-0.7789,0.5302,0.4166,-0.7385,0.5358,0.1026,0.8381,0.5361,0.1219,0.8353,0.5369,-0.8122,0.2281,0.5372,-0.3098,0.7845,0.5377,0.3389,0.772,0.5387,0.5164,0.6657,0.539,-0.272,0.7972,0.5391,-0.8175,-0.2026,0.5399,0.3638,-0.7591,0.5417,0.8404,-0.0182,0.5426,-0.8353,-0.0885,0.545,-0.0872,0.8339,0.5457,0.8323,-0.0974,0.5474,0.1002,0.8309,0.5476,0.2209,-0.8071,0.5483,-0.8351,-0.0448,0.549,0.8358,-0.0107,0.5495,0.7203,0.4234,0.5504,-0.3658,-0.7505,0.554,-0.8297,-0.0687,0.5542,-0.8311,-0.0468,0.5543,0.4743,-0.6839,0.5567,-0.1019,-0.8245,0.5577,-0.6909,-0.4601,0.5587,0.8293,-0.0065,0.5618,-0.8272,-0.0105,0.5621,0.5733,-0.5961,0.5639,0.8186,0.1089,0.5648,-0.0383,-0.8243,0.5668,0.727,-0.3877,0.568,0.4576,-0.6841,0.5706,-0.1241,0.8118,0.5722,-0.8188,-0.0459,0.5725,-0.7458,-0.3405,0.5725,0.7224,0.3877,0.5731,-0.713,0.4041,0.5736,-0.7451,-0.3404,0.574,-0.8141,0.0886,0.5749,-0.4452,-0.6865,0.5753,-0.2537,0.7776,0.5762,0.4511,-0.6815,0.5763,-0.5495,0.6049,0.5792,0.8058,-0.1232,0.5822,0.3936,0.7114,0.5855,0.2659,-0.7658,0.5868,0.0906,0.8046,0.5925,0.3122,-0.7426,0.5926,-0.7859,-0.1766,0.5932,-0.7939,0.1336,0.5972,-0.6884,0.4116,0.5979,-0.2482,-0.7621,0.5981,-0.4786,-0.6428,0.6008,0.1651,-0.7821,0.6014,-0.7888,0.1268,0.6028,0.2468,-0.7587,0.6037,-0.1878,0.7748,0.6042,0.3689,-0.7063,0.6044,-0.0752,-0.7931,0.6051,-0.789,0.106,0.6058,-0.7956,-0.006,0.6079,-0.4181,0.675,0.6086,-0.1928,-0.7697,0.6105,-0.792,0.0066};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_32_vector_2()
		{
			double[] value = {0.6128,-0.6502,0.4491,0.6131,0.2008,0.7641,0.6143,0.3444,0.71,0.6156,-0.7003,0.3615,0.6156,-0.4524,-0.6453,0.6209,0.0613,-0.7815,0.6212,-0.5139,-0.5917,0.6212,0.7831,-0.0294,0.6219,-0.7728,-0.1269,0.6247,-0.6047,0.4941,0.6326,0.1914,-0.7505,0.6332,0.0033,-0.774,0.6342,0.5116,-0.5797,0.6376,0.6785,-0.3647,0.6382,-0.6102,-0.4694,0.6397,-0.7551,-0.1435,0.6403,-0.7533,0.1501,0.6421,-0.4005,-0.6537,0.643,0.6739,0.3639,0.6461,-0.7544,-0.1161,0.6475,-0.3753,-0.6632,0.6501,0.4793,0.5896,0.6502,-0.0678,-0.7567,0.654,0.3364,-0.6776,0.6547,0.3495,-0.6702,0.6567,0.0092,-0.7541,0.6573,-0.7531,-0.0283,0.6596,0.6251,-0.4174,0.6689,0.1274,-0.7323,0.6697,-0.7426,0.0016,0.6704,-0.3792,-0.6378,0.6727,0.3905,-0.6285,0.673,-0.1505,0.7242,0.6746,0.1033,-0.7309,0.6761,0.6831,0.2761,0.677,-0.2865,-0.678,0.6805,0.282,-0.6763,0.6812,0.6318,-0.3699,0.6828,-0.6528,0.3281,0.6847,-0.7288,0.0079,0.6877,0.3766,-0.6207,0.688,-0.2388,-0.6853,0.6897,0.4898,0.5332,0.6943,-0.6003,-0.397,0.6966,-0.3764,0.6108,0.6987,-0.226,-0.6788,0.6996,0.6763,-0.2304,0.701,0.002,-0.7131,0.705,-0.4565,-0.5428,0.7051,0.7069,-0.0551,0.7092,0.5769,0.4053,0.7144,-0.6916,-0.1066,0.7145,0.2629,0.6484,0.7159,0.6886,-0.1152,0.7192,-0.6923,-0.0592,0.7238,0.0475,0.6884,0.7239,0.3629,-0.5867,0.7241,0.6432,0.2488,0.7241,-0.4471,-0.5251,0.7244,0.0286,-0.6888,0.7246,0.6884,-0.034,0.7248,-0.519,0.4532,0.7248,-0.2124,-0.6554,0.7277,-0.5424,0.4197,0.7282,-0.1085,-0.6767,0.7286,-0.6835,0.0446,0.7326,-0.6563,0.1805,0.7353,0.6774,-0.0202,0.737,0.431,-0.5207,0.738,0.3573,0.5724,0.7383,-0.5869,0.3325,0.7404,-0.2572,-0.621,0.7414,0.5141,-0.4314,0.743,0.655,-0.1375,0.7453,-0.6445,-0.1708,0.7453,0.0561,0.6643,0.746,0.6545,-0.1233,0.7479,0.6549,-0.1087,0.7493,-0.2191,-0.6249,0.7516,0.3843,-0.5361,0.7526,-0.0132,0.6584,0.7527,-0.0461,0.6568,0.7529,0.6452,-0.1297,0.753,0.0935,-0.6514,0.7531,-0.6092,-0.2482,0.7553,0.4231,-0.5005,0.7581,0.313,-0.5722,0.7582,-0.6316,-0.1618,0.759,-0.5781,0.2994,0.7596,-0.576,0.302,0.7616,-0.5879,-0.2726,0.7629,0.4814,0.4316,0.7636,0.0312,0.6449,0.7696,0.6184,0.1591,0.7706,-0.1293,-0.6241,0.7726,-0.3268,-0.5443,0.7732,0.0749,0.6297,0.7743,0.2894,-0.5627,0.7784,0.2455,0.5778,0.7816,0.2346,0.578,0.7828,0.1443,-0.6053,0.7831,-0.5366,0.3143,0.7866,0.3853,-0.4824,0.7892,-0.5383,-0.2956,0.7908,-0.4887,0.3685,0.7926,0.1542,-0.5899,0.7927,0.4127,0.4487,0.7947,-0.5821,-0.1722,0.7959,-0.0647,0.602,0.7994,0.3918,-0.4555,0.7994,0.5592,-0.2195,0.8036,-0.4127,0.4288,0.8052,0.5872,0.0828,0.8056,0.5532,0.212,0.8058,-0.0909,0.5851,0.8105,-0.5818,0.0673,0.8114,0.5286,-0.2495,0.812,0.473,-0.342,0.812,0.4115,0.4139,0.8125,-0.1878,-0.5519,0.8159,0.3525,-0.4583,0.8163,0.5142,-0.263,0.8175,0.4289,0.3844,0.8231,0.0313,-0.567,0.8237,-0.1715,-0.5405,0.826,-0.3308,-0.4564,0.8276,0.5283,-0.1895,0.8289,-0.556,-0.0607,0.8323,0.1674,0.5284,0.833,-0.304,0.4623,0.8404,0.254,-0.4787,0.8415,-0.4206,-0.339,0.8436,0.3735,-0.3857,0.8438,0.1112,-0.525,0.8489,-0.0273,0.5279,0.8519,-0.3047,0.426,0.8522,0.4316,0.2957,0.8545,-0.2481,-0.4563,0.8581,0.5071,-0.0807,0.8604,-0.2281,0.4558,0.863,-0.0725,-0.5,0.8633,-0.0241,0.5041,0.865,0.3415,0.3676,0.8662,-0.4946,0.0714,0.8677,-0.0038,0.4971,0.8682,-0.4554,0.1971,0.8683,0.414,0.2733,0.872,0.3836,-0.304,0.8755,0.1267,-0.4662,0.8757,0.3339,0.3489,0.8759,-0.4758,0.0795,0.8777,0.4769,0.0469,0.8777,-0.4754,-0.0599,0.8815,0.1107,0.4591,0.8823,-0.1801,-0.4349,0.8878,0.2178,0.4055,0.8889,-0.4221,0.1782,0.8962,0.3942,0.2035,0.899,-0.3136,-0.3058,0.8993,-0.2409,-0.3649,0.901,0.3243,-0.2881,0.9015,0.2864,-0.3243,0.9027,0.416,-0.1099,0.9045,0.211,-0.3705,0.9073,0.3607,-0.2161,0.908,0.2647,-0.3248,0.9094,-0.2666,0.3193,0.9099,-0.4109,-0.0564,0.9105,0.4135,-0.0005,0.9116,0.2822,0.2989,0.9134,-0.3292,0.2394,0.9137,0.1863,-0.3612,0.9162,0.2789,-0.2877,0.9215,0.0982,0.3758,0.9224,-0.1647,-0.3493,0.9228,0.2909,-0.2525,0.9247,0.2799,-0.2579,0.9259,0.3102,-0.2156,0.9274,-0.372,-0.0379,0.928,0.2856,-0.2394,0.9291,-0.3288,0.1694,0.9295,0.2811,-0.2387,0.9317,0.3048,-0.1977,0.9344,-0.1695,-0.3134,0.9354,0.2475,-0.2526,0.9357,0.3198,-0.1486,0.9364,0.2721,-0.2218,0.9385,0.2587,0.2287,0.9432,0.1391,0.3016,0.9433,-0.1903,0.2719,0.944,-0.2346,0.2318,0.9446,-0.1463,-0.2937,0.9516,0.123,-0.2816,0.9535,-0.1548,0.2586,0.9536,0.0291,0.2998,0.955,-0.2375,-0.1776,0.9573,-0.1623,0.2393,0.9573,0.1354,0.2553,0.9596,-0.2584,-0.1111,0.9598,0.2718,0.0697,0.9627,-0.2688,-0.0299,0.9638,-0.0276,0.2653,0.9642,-0.265,-0.008,0.9644,-0.0345,-0.2621,0.9685,0.2225,-0.1115,0.9692,-0.1282,-0.2102,0.9697,0.2441,-0.0106,0.9708,0.0067,-0.2398,0.9818,0.154,-0.1107,0.9879,0.1544,0.0137,0.9896,0.0232,0.1419,0.9903,0.1265,0.0576,0.9961,0.0417,0.0784,0.9977,0.0298,-0.0615,0.9983,-0.0399,0.0426,0.9996,0.0287,0.0032};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc2disc_Geo_5_37_normalIndex_2()
		{
			int[] value = {80,100,116,-1,94,100,80,-1,24,16,30,-1,24,14,16,-1,3,19,22,-1,3,5,19,-1,39,42,43,-1,39,35,42,-1,38,59,65,-1,38,41,59,-1,73,30,45,-1,56,30,73,-1,92,64,67,-1,90,64,92,-1,157,166,158,-1,163,166,157,-1,147,118,148,-1,130,118,147,-1,130,134,118,-1,126,149,123,-1,126,130,149,-1,106,127,104,-1,106,131,127,-1,113,83,112,-1,83,113,88,-1,97,90,107,-1,90,97,89,-1,119,23,111,-1,119,53,23,-1,111,96,119,-1,96,111,68,-1,144,33,137,-1,144,25,33,-1,70,77,50,-1,70,86,77,-1,58,55,33,-1,55,58,82,-1,94,105,100,-1,105,94,91,-1,85,70,62,-1,86,70,85,-1,69,80,52,-1,69,94,80,-1,132,158,161,-1,132,128,158,-1,125,105,99,-1,125,108,105,-1,100,108,129,-1,100,105,108,-1,62,76,98,-1,50,62,70,-1,50,76,62,-1,120,75,142,-1,75,120,79,-1,32,109,87,-1,32,68,109,-1,68,71,109,-1,71,68,111,-1,72,66,40,-1,72,91,66,-1,61,69,49,-1,61,66,69,-1,84,101,71,-1,84,121,101,-1,107,92,104,-1,92,107,90,-1,135,97,123,-1,97,135,114,-1,113,131,106,-1,113,117,131,-1,127,130,126,-1,127,134,130,-1,112,139,133,-1,112,116,139,-1,141,118,134,-1,141,143,118,-1,135,122,114,-1,146,122,135,-1,90,73,64,-1,89,73,90,-1,83,59,57,-1,88,59,83,-1,42,65,67,-1,42,38,65,-1,20,43,45,-1,20,39,43,-1,79,121,48,-1,77,121,79,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc3_Geo_5_43_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_5_43_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_5_43_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_5_43_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_5_43_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_5_43_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_5_43_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_5_43_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_5_43_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_5_43_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_5_43_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,273,-1,1089,835,275,-1,1089,954,835,-1,950,42,1120,-1,42,950,951,-1,21,12,22,-1,21,13,12,-1,23,1125,21,-1,23,1130,1125,-1,1331,956,966,-1,1331,1330,956,-1,1332,1131,1330,-1,1332,1124,1131,-1,957,1331,958,-1,957,962,1331,-1,1128,963,1126,-1,963,1128,4,-1,13,201,14,-1,13,960,201,-1,505,965,1211,-1,505,201,965,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc3_Geo_5_43_normalIndex_1()
		{
			int[] value = {701,700,780,-1,255,451,279,-1,629,864,522,-1,1091,663,1028,-1,1047,1094,1055,-1,1169,1224,1174,-1,964,290,777,-1,1079,706,809,-1,258,1056,1135,-1,591,547,939,-1,123,139,0,-1,1183,831,1059,-1,1013,900,898,-1,1135,1276,1095,-1,355,363,378,-1,164,214,477,-1,977,930,633,-1,1019,1131,994,-1,1145,1164,1063,-1,71,339,225,-1,512,320,783,-1,977,750,708,-1,532,456,697,-1,1,228,320,-1,633,645,750,-1,1234,707,769,-1,537,1233,445,-1,1264,1184,1253,-1,1,71,25,-1,963,600,282,-1,271,433,807,-1,536,366,232,-1,213,153,511,-1,171,35,185,-1,227,481,449,-1,70,167,227,-1,601,190,436,-1,422,1020,888,-1,325,422,721,-1,759,1069,755,-1,1122,879,903,-1,879,725,832,-1,112,206,172,-1,221,235,759,-1,184,221,527,-1,693,694,472,-1,803,885,622,-1,1031,1206,1149,-1,132,134,55,-1,116,276,124,-1,215,108,43,-1,392,609,274,-1,609,870,1031,-1,1075,1058,1082,-1,975,617,627,-1,594,294,617,-1,1131,1124,1199,-1,1013,1098,1071,-1,863,634,457,-1,1022,1064,946,-1,780,700,680,-1,40,76,160,-1,18,44,30,-1,597,614,377,-1,541,288,570,-1,949,1029,828,-1,1163,886,941,-1,432,549,946,-1,317,212,518,-1,152,111,115,-1,375,627,617,-1,1121,1163,1036,-1,1177,1170,1076,-1,1238,1284,1297,-1,684,686,629,-1,1153,666,1055,-1,387,160,288,-1,1279,1319,1281,-1,1045,1317,848,-1,1329,1297,1284,-1,716,616,727,-1,1274,1300,1056,-1,857,1002,1063,-1,1145,1243,1274,-1,1028,1002,857,-1,563,483,504,-1,158,104,164,-1,332,463,336,-1,192,204,332,-1,120,316,298,-1,120,20,39,-1,509,738,477,-1,697,336,463,-1,783,961,878,-1,914,587,763,-1,987,1082,1158,-1,1076,984,1085,-1,910,498,499,-1,987,998,935,-1,855,987,908,-1,735,866,1036,-1,822,825,871,-1,208,134,132,-1,464,493,762,-1,212,198,219,-1,202,417,229,-1,325,81,422,-1,225,162,19,-1,6,19,29,-1,102,162,193,-1,6,29,10,-1,282,170,306,-1,172,454,622,-1,409,400,378,-1,428,831,781,-1,86,180,239,-1,76,40,34,-1,44,74,136,-1,154,95,239,-1,196,109,168,-1,197,360,299,-1,174,151,157,-1,66,53,18,-1,1237,1218,963,-1,128,66,248,-1,248,426,513,-1,1080,943,1050,-1,601,436,960,-1,277,260,188,-1,259,368,519,-1,592,721,590,-1,513,391,62,-1,62,101,128,-1,1305,1199,1060,-1,1089,1265,1062,-1,300,714,663,-1,182,125,165,-1,181,156,125,-1,533,643,265,-1,283,1074,787,-1,555,246,161,-1,753,408,793,-1,1343,1327,1205,-1,1038,1054,978,-1,1127,458,1194,-1,955,1054,956,-1,1106,1133,933,-1,376,302,250,-1,337,224,218,-1,787,1193,966,-1,645,756,682,-1,1119,1007,1277,-1,1005,829,528,-1,641,604,376,-1,887,810,530,-1,1116,1342,1277,-1,376,604,645,-1,83,571,639,-1,896,113,804,-1,89,155,83,-1,1320,1277,1342,-1,1067,745,381,-1,534,911,1073,-1,1114,973,805,-1,830,1187,1065,-1,1155,1306,1175,-1,1012,895,909,-1,1176,1270,1283,-1,907,1152,743,-1,469,297,927,-1,623,927,1006,-1,238,207,583,-1,131,14,373,-1,583,813,585,-1,494,588,465,-1,1301,1280,1115,-1,1123,813,583,-1,813,1123,1156,-1,872,694,693,-1,747,459,538,-1,195,138,314,-1,1213,1288,1304,-1,1219,1061,1217,-1,1296,1235,1132,-1,912,607,893,-1,607,510,314,-1,262,284,270,-1,272,626,703,-1,703,1061,733,-1,218,224,133,-1,273,246,330,-1,605,921,739,-1,397,278,323,-1,680,700,558,-1,1178,1052,1292,-1,1313,1272,1326,-1,821,967,771,-1,802,1052,808,-1,515,315,380,-1,382,460,179,-1,397,791,922,-1,824,1134,1025,-1,1228,1230,1188,-1,703,626,965,-1,308,179,223,-1,269,175,163,-1,682,756,1030,-1,666,677,189,-1,682,1023,683,-1,1178,974,808,-1,176,321,63,-1,65,63,23,-1,60,46,13,-1,649,596,730,-1,872,792,649,-1,877,688,746,-1,877,689,688,-1,64,194,283,-1,458,275,349,-1,787,966,840,-1,1200,1216,1239,-1,1185,1133,1200,-1,1008,882,1011,-1,1011,1150,1008,-1,1192,988,1105,-1,1204,1023,1247,-1,1302,1322,1247,-1,887,804,842,-1,882,1008,650,-1,491,883,801,-1,466,557,528,-1,412,580,765,-1,179,308,323,-1,413,342,352,-1,435,352,471,-1,308,476,610,-1,471,461,525,-1,1213,1118,991,-1,881,546,581,-1,1134,1093,1128,-1,953,1157,1162,-1,927,1267,1006,-1,1323,1181,1119,-1,1130,1099,1181,-1,884,906,890,-1,1338,1318,1336,-1,1048,1215,1067,-1,313,176,273,-1,901,555,502,-1,1108,1161,1258,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc3_Geo_5_43_normalIndex_2()
		{
			int[] value = {797,925,1053,-1,1307,1292,1261,-1,1227,1299,1271,-1,1108,1248,1201,-1,1148,986,999,-1,1298,1228,1259,-1,1046,982,1147,-1,1186,1189,1171,-1,1186,1157,1189,-1,1198,1291,1255,-1,381,127,106,-1,1100,1255,1220,-1,852,920,1100,-1,295,401,264,-1,383,907,743,-1,1066,1033,1154,-1,823,972,1086,-1,785,623,749,-1,1278,962,852,-1,37,178,280,-1,771,965,626,-1,390,1052,520,-1,8,89,12,-1,249,218,144,-1,1278,1225,1280,-1,1156,1123,1333,-1,1176,869,928,-1,1152,1270,926,-1,1283,1242,1137,-1,1339,1306,1155,-1,1315,1154,1033,-1,1090,782,973,-1,1065,867,448,-1,427,429,383,-1,598,852,588,-1,1198,1255,1100,-1,398,782,830,-1,644,398,534,-1,351,442,790,-1,1189,1157,1040,-1,876,827,982,-1,1198,1230,1313,-1,1148,1211,1240,-1,1201,1256,1167,-1,1251,1229,1203,-1,1209,1227,1151,-1,1167,925,1044,-1,1151,1203,997,-1,976,1179,999,-1,902,815,916,-1,126,176,65,-1,1315,1336,1289,-1,1214,1038,1003,-1,840,890,858,-1,1003,1099,1130,-1,1181,1323,1318,-1,1320,1337,1323,-1,1181,1099,918,-1,1232,1144,1118,-1,1217,1208,1117,-1,893,489,733,-1,741,610,615,-1,471,352,262,-1,500,310,269,-1,382,860,460,-1,175,269,310,-1,342,242,352,-1,936,1092,569,-1,826,765,580,-1,530,810,758,-1,574,466,528,-1,801,765,573,-1,1026,844,1011,-1,1185,1190,1087,-1,1057,969,1150,-1,918,1026,882,-1,1057,1150,1141,-1,729,834,1106,-1,1231,1282,1302,-1,608,752,834,-1,1193,1074,1216,-1,666,291,261,-1,714,300,349,-1,458,338,194,-1,68,281,161,-1,126,65,36,-1,717,579,647,-1,23,63,17,-1,24,17,63,-1,1178,1107,974,-1,1018,1204,1070,-1,1030,756,794,-1,1084,965,1088,-1,520,626,272,-1,959,847,581,-1,329,315,270,-1,739,921,967,-1,1258,1292,1307,-1,631,642,579,-1,1261,1052,980,-1,991,849,1037,-1,605,329,577,-1,1041,860,841,-1,323,791,397,-1,329,407,380,-1,329,605,407,-1,126,161,246,-1,1261,1143,1172,-1,60,69,133,-1,27,8,15,-1,389,749,623,-1,314,389,195,-1,1208,1217,1061,-1,82,138,195,-1,1132,893,733,-1,995,1125,1208,-1,1333,1304,1288,-1,1219,1304,1296,-1,335,138,118,-1,1172,1225,1246,-1,953,824,278,-1,838,1115,1109,-1,1115,1280,1225,-1,410,427,295,-1,562,852,962,-1,373,875,927,-1,785,749,702,-1,582,106,351,-1,1283,1126,1012,-1,506,928,632,-1,895,490,909,-1,1083,1154,1086,-1,1306,1077,1175,-1,1073,1202,1293,-1,745,534,381,-1,1048,1067,790,-1,842,100,639,-1,819,249,280,-1,829,1007,918,-1,842,639,810,-1,571,83,155,-1,113,12,100,-1,1007,829,1005,-1,918,479,574,-1,289,216,241,-1,884,890,978,-1,858,553,787,-1,1318,1338,1327,-1,1173,1205,1327,-1,856,790,442,-1,330,246,446,-1,880,1070,1269,-1,937,835,347,-1,265,252,182,-1,189,209,125,-1,236,300,261,-1,261,293,236,-1,486,236,713,-1,403,817,628,-1,937,1165,1089,-1,768,835,1089,-1,751,457,256,-1,820,570,848,-1,1331,1253,1334,-1,1166,1233,1305,-1,1096,1060,1199,-1,62,11,67,-1,721,422,590,-1,636,755,850,-1,9,221,184,-1,420,473,167,-1,423,70,190,-1,233,230,96,-1,185,35,5,-1,311,188,33,-1,560,263,254,-1,455,213,511,-1,919,1050,960,-1,832,725,513,-1,248,66,146,-1,1218,945,963,-1,552,989,760,-1,305,367,202,-1,360,516,470,-1,30,111,146,-1,296,169,90,-1,191,117,136,-1,169,296,414,-1,38,53,66,-1,343,140,191,-1,344,168,364,-1,421,524,441,-1,1279,1168,1210,-1,52,10,33,-1,130,193,348,-1,483,452,504,-1,193,345,348,-1,29,19,162,-1,28,19,4,-1,425,247,162,-1,81,325,365,-1,384,354,301,-1,208,122,134,-1,231,253,116,-1,594,609,392,-1,946,1064,417,-1,871,1082,855,-1,1034,1076,1170,-1,987,1102,998,-1,266,405,722,-1,763,587,517,-1,554,532,816,-1,761,512,851,-1,775,961,783,-1,463,332,345,-1,257,150,158,-1,192,327,370,-1,345,247,425,-1,862,463,425,-1,286,204,192,-1,121,258,563,-1,635,135,77,-1,666,663,1091,-1,737,1002,1028,-1,1164,854,1063,-1,1183,1059,1276,-1,1279,1210,1295,-1,597,501,638,-1,616,716,766,-1,361,76,199,-1,1328,1281,1319,-1,1317,1045,1281,-1,288,361,848,-1,682,316,334,-1,290,142,298,-1,708,750,550,-1,550,567,371,-1,1076,843,984,-1,1160,1177,1102,-1,294,143,256,-1,1072,627,820,-1,762,493,384,-1,367,432,417,-1,1009,776,1075,-1,634,501,457,-1,40,160,86,-1,34,40,86,-1,742,766,642,-1,488,387,541,-1,359,776,751,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc3_Geo_5_43_normalIndex_3()
		{
			int[] value = {358,498,475,-1,317,496,499,-1,549,735,1022,-1,949,863,751,-1,1183,1295,1210,-1,172,199,76,-1,1284,1221,1275,-1,1330,1334,1325,-1,592,833,952,-1,952,833,1031,-1,276,116,143,-1,594,617,975,-1,1149,1206,1262,-1,1328,1341,1316,-1,820,848,1180,-1,215,276,594,-1,359,256,143,-1,48,55,43,-1,43,55,124,-1,134,124,55,-1,1226,1206,975,-1,101,112,172,-1,1064,518,417,-1,454,206,211,-1,112,67,206,-1,919,832,938,-1,513,128,248,-1,850,1324,985,-1,1020,422,492,-1,888,586,592,-1,989,1237,760,-1,58,227,318,-1,420,423,837,-1,481,850,449,-1,259,188,260,-1,171,268,35,-1,51,141,271,-1,963,807,600,-1,552,282,306,-1,707,1234,503,-1,1096,521,370,-1,339,512,761,-1,532,707,503,-1,1264,769,914,-1,1234,1331,1233,-1,512,339,71,-1,761,862,425,-1,1104,1049,983,-1,362,452,462,-1,563,789,483,-1,0,22,10,-1,22,139,170,-1,900,552,485,-1,898,781,1013,-1,563,1135,1095,-1,142,290,75,-1,129,75,290,-1,411,796,992,-1,1224,1153,1159,-1,1110,1047,1055,-1,1110,1028,857,-1,1169,522,864,-1,411,255,177,-1,575,255,508,-1,558,700,525,-1,700,701,525,-1,575,451,255,-1,411,508,255,-1,1169,777,522,-1,635,1110,857,-1,1110,1055,1091,-1,1091,1028,1110,-1,1224,1138,1153,-1,1159,1094,1079,-1,992,508,411,-1,290,468,129,-1,789,563,1095,-1,781,1098,1013,-1,900,485,898,-1,547,409,437,-1,0,10,29,-1,1135,1056,1300,-1,509,214,593,-1,332,402,497,-1,374,593,214,-1,1056,1004,1164,-1,1104,1145,1049,-1,71,320,512,-1,914,1184,1264,-1,532,503,456,-1,425,339,761,-1,1060,1096,370,-1,1234,1264,1331,-1,1264,1253,1331,-1,425,225,339,-1,552,760,282,-1,807,433,600,-1,536,560,366,-1,271,232,51,-1,268,137,35,-1,260,368,259,-1,850,985,449,-1,837,715,420,-1,318,233,58,-1,455,93,213,-1,888,592,590,-1,1020,492,985,-1,850,1069,1324,-1,938,1050,919,-1,888,1020,1197,-1,67,211,206,-1,1069,850,755,-1,454,211,540,-1,975,1072,1226,-1,134,122,124,-1,124,215,43,-1,48,43,9,-1,143,253,359,-1,594,392,215,-1,1317,1328,1316,-1,1206,1226,1287,-1,870,594,975,-1,276,143,294,-1,1149,952,1031,-1,721,592,952,-1,1330,1325,1314,-1,1284,1238,1221,-1,76,57,172,-1,1098,1183,1210,-1,949,751,1009,-1,1022,946,549,-1,499,312,317,-1,208,358,475,-1,776,1009,751,-1,354,498,358,-1,361,288,76,-1,642,631,742,-1,34,86,95,-1,501,377,457,-1,1075,1029,1009,-1,367,417,202,-1,384,576,762,-1,294,256,375,-1,1177,1076,1085,-1,1177,1085,1102,-1,567,334,371,-1,387,240,160,-1,1281,1328,1317,-1,1319,1329,1328,-1,766,698,616,-1,638,620,597,-1,1295,1312,1279,-1,1276,1295,1183,-1,1164,1004,854,-1,714,737,1028,-1,666,1091,1055,-1,706,635,77,-1,121,563,159,-1,509,593,738,-1,39,61,110,-1,214,509,477,-1,286,237,204,-1,463,345,425,-1,192,370,286,-1,257,158,237,-1,332,497,345,-1,783,612,775,-1,851,878,761,-1,816,786,554,-1,722,775,266,-1,987,1158,1102,-1,1082,1029,1075,-1,1076,1034,843,-1,1082,987,855,-1,594,870,609,-1,253,143,116,-1,208,187,122,-1,354,358,301,-1,99,81,365,-1,425,162,225,-1,28,4,25,-1,162,102,29,-1,193,247,345,-1,348,307,130,-1,52,6,10,-1,1168,1071,1210,-1,591,831,428,-1,421,441,346,-1,343,191,419,-1,38,66,54,-1,414,285,169,-1,191,136,234,-1,140,114,92,-1,90,154,296,-1,103,109,196,-1,30,146,18,-1,470,299,360,-1,305,202,151,-1,552,900,989,-1,807,945,705,-1,832,513,770,-1,960,917,919,-1,601,960,943,-1,511,915,455,-1,254,366,560,-1,31,311,33,-1,233,96,58,-1,699,423,190,-1,449,519,318,-1,184,48,9,-1,636,850,473,-1,67,112,62,-1,1199,1124,1096,-1,1233,1330,1305,-1,1253,1262,1334,-1,570,288,848,-1,256,359,751,-1,1089,891,768,-1,1089,835,937,-1,403,628,181,-1,486,300,236,-1,261,291,293,-1,182,189,125,-1,347,545,937,-1,1269,1195,880,-1,1269,1070,1204,-1,246,555,446,-1,446,856,442,-1,906,942,793,-1,1318,1327,1343,-1,41,283,210,-1,752,1106,834,-1,844,933,1011,-1,1106,752,966,-1,194,338,283,-1,241,357,289,-1,1007,1005,1277,-1,571,155,412,-1,887,842,810,-1,574,829,918,-1,969,819,280,-1,1007,1119,918,-1,1067,582,790,-1,745,911,534,-1,973,782,805,-1,1293,1114,1073,-1,1306,1207,1077,-1,1086,972,1083,-1,895,373,490,-1,506,926,928,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc3_Geo_5_43_normalIndex_4()
		{
			int[] value = {1283,1012,1120,-1,1065,1250,867,-1,785,702,469,-1,373,927,297,-1,1100,1220,852,-1,562,588,852,-1,410,494,427,-1,131,297,469,-1,1225,1109,1115,-1,585,490,238,-1,838,1109,923,-1,118,272,335,-1,1219,1296,1132,-1,1333,1296,1304,-1,1208,1088,995,-1,733,1061,1132,-1,166,390,520,-1,56,118,138,-1,335,703,489,-1,703,733,489,-1,1061,1084,1208,-1,314,510,389,-1,389,510,749,-1,27,16,8,-1,133,105,60,-1,1261,1172,1286,-1,126,49,161,-1,323,610,791,-1,1025,1041,841,-1,605,577,995,-1,808,974,853,-1,579,624,631,-1,1307,1248,1258,-1,1258,1178,1292,-1,967,821,739,-1,270,577,329,-1,581,767,959,-1,1088,1208,1084,-1,245,269,163,-1,356,500,269,-1,988,1030,794,-1,794,604,641,-1,1030,1023,682,-1,390,980,1052,-1,63,321,24,-1,23,17,13,-1,1143,1261,980,-1,647,730,717,-1,36,49,126,-1,161,49,68,-1,194,275,458,-1,349,737,714,-1,261,663,666,-1,1193,787,1074,-1,1141,1111,1057,-1,918,882,479,-1,918,1099,1026,-1,969,1016,1150,-1,1087,1111,1185,-1,1026,1011,882,-1,650,1008,887,-1,573,491,801,-1,574,528,829,-1,758,561,530,-1,569,573,936,-1,242,183,352,-1,270,315,262,-1,382,841,860,-1,471,262,461,-1,953,278,397,-1,610,476,615,-1,893,607,489,-1,1208,1125,1117,-1,1232,1223,1144,-1,1119,1181,918,-1,1320,1323,1310,-1,1318,1241,1181,-1,1003,1026,1099,-1,1214,1003,1130,-1,1315,1338,1336,-1,126,273,176,-1,931,502,753,-1,996,902,916,-1,929,1151,997,-1,1290,1255,1303,-1,1255,1291,1303,-1,1167,1053,925,-1,1151,1113,1209,-1,1167,1044,1201,-1,1313,1326,1198,-1,876,982,1046,-1,1157,979,1040,-1,582,351,790,-1,381,398,127,-1,830,440,398,-1,598,588,494,-1,427,383,295,-1,401,383,743,-1,448,830,1065,-1,1090,1081,782,-1,1315,1033,1309,-1,1283,1137,1126,-1,1152,926,648,-1,1012,823,895,-1,1333,1288,1156,-1,785,927,623,-1,1280,1332,1278,-1,144,280,249,-1,8,82,89,-1,1052,802,520,-1,771,967,965,-1,280,144,37,-1,852,1220,1278,-1,373,823,875,-1,909,490,869,-1,1012,865,823,-1,1086,875,823,-1,1066,1154,1083,-1,448,867,907,-1,295,383,401,-1,852,598,920,-1,534,398,381,-1,106,582,381,-1,1198,1326,1291,-1,1186,1162,1157,-1,1186,1171,1188,-1,1046,1147,1171,-1,1108,1201,1044,-1,1209,1272,1311,-1,1151,1251,1203,-1,1261,1286,1307,-1,797,1053,873,-1,1258,1248,1108,-1,1035,996,1205,-1,901,502,931,-1,996,916,958,-1,1048,1173,1215,-1,906,858,890,-1,1130,1181,1241,-1,1310,1323,1119,-1,927,1289,1267,-1,1162,1093,953,-1,1128,1146,1134,-1,881,581,847,-1,959,1037,1021,-1,1213,1232,1118,-1,1061,1219,1132,-1,539,471,525,-1,610,323,308,-1,308,331,439,-1,245,356,269,-1,183,262,352,-1,765,801,412,-1,466,395,557,-1,650,479,882,-1,729,608,834,-1,1247,1192,1302,-1,1204,1018,1023,-1,1192,1030,988,-1,1011,1141,1150,-1,1200,1239,1185,-1,1196,1245,1231,-1,1200,1193,1216,-1,840,858,787,-1,486,349,300,-1,458,349,486,-1,283,41,64,-1,746,806,877,-1,649,730,647,-1,13,7,60,-1,65,176,63,-1,1052,1178,808,-1,291,666,189,-1,719,686,684,-1,308,223,331,-1,965,1084,703,-1,397,922,953,-1,278,841,382,-1,434,406,186,-1,460,223,179,-1,380,542,515,-1,771,744,821,-1,1179,1229,1211,-1,1313,1311,1272,-1,1052,1261,1292,-1,558,611,680,-1,1021,860,1041,-1,605,739,407,-1,315,329,380,-1,273,126,246,-1,133,144,218,-1,56,138,82,-1,703,1084,1061,-1,272,703,335,-1,272,166,520,-1,314,489,607,-1,893,1068,912,-1,1219,1217,1223,-1,1304,1232,1213,-1,118,166,272,-1,538,923,747,-1,689,877,692,-1,813,1156,892,-1,991,1039,1213,-1,1123,583,1112,-1,1115,1136,1301,-1,1172,1109,1225,-1,494,465,427,-1,440,465,222,-1,373,297,131,-1,823,373,895,-1,583,585,238,-1,927,785,469,-1,865,1175,1077,-1,1283,1120,1176,-1,1012,909,1120,-1,1242,1283,1250,-1,1073,644,534,-1,1067,381,582,-1,1320,1310,1277,-1,89,200,155,-1,83,639,100,-1,645,633,376,-1,1005,1116,1277,-1,650,887,530,-1,641,376,250,-1,801,571,412,-1,528,557,1005,-1,1119,1277,1310,-1,337,218,302,-1,633,418,376,-1,729,1106,933,-1,1106,1200,1133,-1,955,981,1054,-1,446,442,330,-1,281,502,161,-1,1343,1205,1222,-1,793,942,753,-1,161,502,555,-1,459,330,442,-1,787,210,283,-1,156,165,125,-1,291,252,293,-1,300,663,261,-1,817,403,719,-1,1062,891,1089,-1,1060,1166,1305,-1,62,112,101,-1,62,128,513,-1,492,519,985,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc3_Geo_5_43_normalIndex_5()
		{
			int[] value = {473,850,481,-1,519,478,318,-1,519,492,259,-1,188,311,277,-1,436,455,915,-1,943,960,1050,-1,426,770,513,-1,963,945,807,-1,963,760,1237,-1,18,146,66,-1,157,152,174,-1,299,174,197,-1,85,115,45,-1,239,296,154,-1,73,42,117,-1,191,140,92,-1,76,34,57,-1,239,95,86,-1,139,346,309,-1,428,781,514,-1,409,378,363,-1,346,319,404,-1,1071,1168,1032,-1,172,206,454,-1,282,119,170,-1,162,247,193,-1,6,4,19,-1,225,19,28,-1,81,52,422,-1,229,173,202,-1,212,219,229,-1,762,795,464,-1,324,354,384,-1,132,358,208,-1,215,124,276,-1,871,855,822,-1,1036,1022,735,-1,904,1014,1036,-1,886,910,499,-1,1022,1036,1163,-1,914,551,587,-1,851,783,878,-1,551,430,554,-1,697,463,862,-1,503,537,456,-1,120,39,148,-1,120,298,142,-1,332,336,192,-1,158,164,226,-1,110,97,145,-1,504,374,563,-1,1145,1274,1164,-1,857,1063,854,-1,1274,1056,1164,-1,467,535,599,-1,723,548,472,-1,716,727,723,-1,1284,1335,1329,-1,848,361,1045,-1,1281,1168,1279,-1,1281,1045,1168,-1,288,541,387,-1,683,316,682,-1,1153,677,666,-1,334,567,682,-1,1243,1238,1297,-1,1014,1121,1036,-1,617,294,375,-1,417,432,946,-1,941,496,1064,-1,1160,940,910,-1,1163,1121,886,-1,828,800,949,-1,501,597,377,-1,109,114,168,-1,18,74,44,-1,76,288,160,-1,680,734,780,-1,312,499,324,-1,863,457,751,-1,949,1009,1029,-1,1098,1210,1071,-1,1199,1221,1131,-1,1262,1206,1287,-1,594,276,294,-1,975,627,1072,-1,820,1180,1072,-1,609,1031,833,-1,609,484,274,-1,122,116,124,-1,132,55,48,-1,1072,1180,1226,-1,622,454,803,-1,692,467,689,-1,450,184,527,-1,132,301,358,-1,759,527,221,-1,832,919,879,-1,755,527,759,-1,449,985,519,-1,759,1139,1069,-1,888,590,422,-1,268,171,478,-1,227,58,70,-1,227,449,318,-1,93,58,96,-1,807,705,271,-1,760,963,282,-1,71,28,25,-1,1184,1142,1253,-1,1234,769,1264,-1,750,977,633,-1,71,1,320,-1,816,532,697,-1,1097,977,708,-1,914,769,551,-1,783,851,512,-1,28,71,225,-1,1145,1063,1049,-1,682,567,645,-1,374,159,563,-1,1019,1124,1131,-1,1097,1019,977,-1,355,287,363,-1,1135,1300,1276,-1,147,854,220,-1,362,287,307,-1,139,22,0,-1,591,409,547,-1,900,1013,885,-1,1135,563,258,-1,964,468,290,-1,1174,1182,1169,-1,1174,1224,1159,-1,663,714,1028,-1,279,79,255,-1,780,825,701,-1,1138,1169,864,-1,1138,1224,1169,-1,1079,1174,1159,-1,1079,947,1174,-1,575,992,1001,-1,575,508,992,-1,443,451,818,-1,279,451,443,-1,59,443,507,-1,50,443,59,-1,992,964,1182,-1,796,964,992,-1,87,129,59,-1,129,87,75,-1,1098,831,1183,-1,781,831,1098,-1,149,130,205,-1,149,21,130,-1,243,1056,258,-1,243,1004,1056,-1,789,939,547,-1,789,1095,939,-1,738,504,497,-1,593,504,738,-1,374,504,593,-1,91,243,98,-1,243,91,220,-1,145,107,150,-1,107,145,97,-1,257,286,322,-1,257,237,286,-1,878,845,786,-1,845,878,961,-1,326,266,84,-1,326,405,266,-1,1233,503,1234,-1,1233,537,503,-1,84,365,326,-1,84,99,365,-1,259,33,188,-1,259,52,33,-1,277,415,333,-1,277,311,415,-1,576,948,762,-1,576,868,948,-1,93,436,190,-1,93,455,436,-1,482,837,709,-1,482,715,837,-1,1324,1020,985,-1,1197,1020,1324,-1,482,636,715,-1,636,482,450,-1,399,132,244,-1,399,301,132,-1,540,803,454,-1,803,540,778,-1,47,274,203,-1,47,108,274,-1,1317,1180,848,-1,1317,1316,1180,-1,1206,870,975,-1,1031,870,1206,-1,721,1043,772,-1,721,952,1043,-1,1314,1305,1330,-1,1305,1314,1275,-1,1275,1335,1284,-1,1335,1275,1314,-1,811,172,622,-1,172,811,199,-1,665,564,662,-1,665,602,564,-1,187,475,505,-1,187,208,475,-1,949,799,863,-1,799,949,800,-1,240,488,424,-1,488,240,387,-1,618,660,544,-1,660,618,664,-1,86,240,180,-1,86,160,240,-1,45,44,42,-1,45,30,44,-1,625,364,341,-1,618,364,625,-1,1102,1051,957,-1,1102,1158,1051,-1,1014,843,1034,-1,904,843,1014,-1,904,935,843,-1,1341,1314,1325,-1,1314,1341,1335,-1,371,708,550,-1,371,388,708,-1,629,298,684,-1,629,522,298,-1,567,750,645,-1,750,567,550,-1,716,642,766,-1,690,642,716,-1,597,727,541,-1,727,597,620,-1,620,535,548,-1,620,638,535,-1,472,691,723,-1,472,694,691,-1,688,467,599,-1,688,689,467,-1,1308,1279,1312,-1,1308,1319,1279,-1,932,1049,950,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc3_Geo_5_43_normalIndex_6()
		{
			int[] value = {983,1049,932,-1,1095,1059,939,-1,1276,1059,1095,-1,61,220,91,-1,61,147,220,-1,164,121,159,-1,104,121,164,-1,322,370,521,-1,286,370,322,-1,145,201,110,-1,201,145,267,-1,551,786,845,-1,554,786,551,-1,612,320,228,-1,612,783,320,-1,532,430,707,-1,532,554,430,-1,1051,606,595,-1,1058,606,1051,-1,784,897,774,-1,784,908,897,-1,526,549,432,-1,564,549,526,-1,788,668,774,-1,668,788,669,-1,9,108,47,-1,43,108,9,-1,116,187,231,-1,187,116,122,-1,658,526,495,-1,658,661,526,-1,25,81,99,-1,25,4,81,-1,437,452,483,-1,452,437,462,-1,404,421,346,-1,404,385,421,-1,205,404,149,-1,205,385,404,-1,428,421,400,-1,514,421,428,-1,514,524,421,-1,114,343,341,-1,114,140,343,-1,487,414,566,-1,487,285,414,-1,343,584,578,-1,419,584,343,-1,679,625,578,-1,674,625,679,-1,673,630,704,-1,675,630,673,-1,631,696,742,-1,631,672,696,-1,57,101,172,-1,57,54,101,-1,136,285,234,-1,169,285,136,-1,92,117,191,-1,92,73,117,-1,529,360,353,-1,529,516,360,-1,30,115,111,-1,30,45,115,-1,305,470,480,-1,470,305,299,-1,157,202,173,-1,151,202,157,-1,795,832,770,-1,795,938,832,-1,1218,903,945,-1,1218,1122,903,-1,511,263,560,-1,511,153,263,-1,600,119,282,-1,600,415,119,-1,230,171,185,-1,171,230,233,-1,699,837,423,-1,837,699,968,-1,473,227,167,-1,473,481,227,-1,482,184,450,-1,482,244,184,-1,9,67,11,-1,67,9,47,-1,391,11,62,-1,391,235,11,-1,1233,1334,1330,-1,1233,1331,1334,-1,820,614,570,-1,820,627,614,-1,930,656,633,-1,930,932,656,-1,209,677,681,-1,209,189,677,-1,189,252,291,-1,189,182,252,-1,768,523,340,-1,891,523,768,-1,990,937,545,-1,990,1165,937,-1,1294,1273,1266,-1,1294,1265,1273,-1,1195,990,880,-1,1195,1266,990,-1,379,1070,880,-1,628,1070,379,-1,1195,1257,1285,-1,1269,1257,1195,-1,981,978,1054,-1,884,978,981,-1,790,1035,1048,-1,790,856,1035,-1,1338,1309,1327,-1,1338,1315,1309,-1,210,68,41,-1,251,68,210,-1,840,608,844,-1,840,752,608,-1,752,840,966,-1,1074,1244,1216,-1,1103,1244,1074,-1,954,1087,1078,-1,954,1024,1087,-1,491,466,561,-1,395,466,491,-1,1092,1017,1260,-1,1092,936,1017,-1,842,113,100,-1,842,804,113,-1,970,1260,1017,-1,970,1249,1260,-1,1315,1086,1154,-1,1315,1289,1086,-1,934,1066,1010,-1,934,1033,1066,-1,394,767,581,-1,394,474,767,-1,907,1250,1152,-1,907,867,1250,-1,506,859,640,-1,506,632,859,-1,295,394,410,-1,394,295,264,-1,304,131,469,-1,80,131,304,-1,1213,944,1101,-1,1213,1039,944,-1,538,838,923,-1,565,838,538,-1,1068,1301,1136,-1,1068,1235,1301,-1,166,24,390,-1,166,26,24,-1,489,138,335,-1,138,489,314,-1,303,623,572,-1,303,389,623,-1,37,27,15,-1,69,27,37,-1,7,69,60,-1,27,69,7,-1,1172,531,747,-1,1143,531,1172,-1,779,665,662,-1,779,741,665,-1,874,1144,839,-1,874,1118,1144,-1,543,380,407,-1,542,380,543,-1,853,1107,924,-1,974,1107,853,-1,660,728,798,-1,664,728,660,-1,1107,1258,1161,-1,1107,1178,1258,-1,1311,1298,1299,-1,1311,1313,1298,-1,976,720,1000,-1,720,976,728,-1,292,242,386,-1,292,183,242,-1,500,331,310,-1,500,439,331,-1,500,413,439,-1,46,105,94,-1,46,60,105,-1,106,3,80,-1,106,127,3,-1,1165,1265,1089,-1,1165,1273,1265,-1,642,647,579,-1,647,642,690,-1,596,744,808,-1,726,744,596,-1,806,726,792,-1,806,710,726,-1,65,32,36,-1,65,23,32,-1,194,94,216,-1,194,64,94,-1,393,656,659,-1,393,416,656,-1,236,643,713,-1,643,236,293,-1,1212,1322,1302,-1,1212,1268,1322,-1,1231,1252,1282,-1,1245,1252,1231,-1,969,1024,819,-1,1024,969,1057,-1,1133,1111,1141,-1,1133,1185,1111,-1,561,574,530,-1,561,466,574,-1,826,573,765,-1,936,573,826,-1,315,461,262,-1,315,515,461,-1,406,839,386,-1,406,874,839,-1,444,559,568,-1,444,435,559,-1,791,814,922,-1,814,791,779,-1,668,556,568,-1,669,556,668,-1,1235,1333,1301,-1,1333,1235,1296,-1,1144,1217,1117,-1,1223,1217,1144,-1,814,658,846,-1,814,661,658,-1,1267,1320,1249,-1,1267,1337,1320,-1,844,1003,840,-1,844,1026,1003,-1,993,996,958,-1,993,1027,996,-1,993,1140,1191,-1,993,958,1140,-1,916,931,951,-1,916,901,931,-1,916,815,901,-1,997,1229,1000,-1,997,1203,1229,-1,873,732,718,-1,905,732,873,-1,976,798,728,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc3_Geo_5_43_normalIndex_7()
		{
			int[] value = {798,976,999,-1,678,732,757,-1,676,732,678,-1,797,651,754,-1,797,646,651,-1,740,913,754,-1,971,913,740,-1,1108,925,913,-1,1044,925,1108,-1,1227,1251,1151,-1,1227,1271,1251,-1,812,660,798,-1,657,660,812,-1,827,653,654,-1,653,827,876,-1,979,861,1040,-1,979,846,861,-1,494,546,598,-1,494,410,546,-1,440,127,398,-1,440,222,127,-1,1081,830,782,-1,1081,1187,830,-1,1215,745,1067,-1,1215,934,745,-1,1175,1137,1155,-1,1126,1137,1175,-1,506,648,926,-1,372,648,506,-1,1120,869,1176,-1,1120,909,869,-1,1156,859,892,-1,1156,1101,859,-1,1280,1333,1332,-1,1301,1333,1280,-1,1332,962,1278,-1,1332,1112,962,-1,418,357,337,-1,416,357,418,-1,26,118,56,-1,166,118,26,-1,921,965,967,-1,921,1088,965,-1,1088,605,995,-1,921,605,1088,-1,1255,1246,1220,-1,1255,1290,1246,-1,583,222,562,-1,583,207,222,-1,222,3,127,-1,222,207,3,-1,912,1136,889,-1,912,1068,1136,-1,865,972,823,-1,865,1077,972,-1,911,934,1010,-1,934,911,745,-1,598,881,920,-1,598,546,881,-1,1100,1129,1198,-1,1129,1100,920,-1,1046,1189,1040,-1,1171,1189,1046,-1,1188,1147,1228,-1,1171,1147,1188,-1,654,812,827,-1,812,654,657,-1,1303,1286,1290,-1,1303,1307,1286,-1,624,754,651,-1,740,754,624,-1,646,672,651,-1,646,673,672,-1,757,679,678,-1,757,764,679,-1,764,1000,720,-1,1000,764,997,-1,646,873,718,-1,873,646,797,-1,555,815,446,-1,815,555,901,-1,1027,1191,1222,-1,1027,993,1191,-1,955,916,951,-1,956,916,955,-1,956,958,916,-1,1143,321,531,-1,1143,980,321,-1,1006,1249,970,-1,1006,1267,1249,-1,814,979,922,-1,979,814,846,-1,881,1146,1128,-1,881,847,1146,-1,991,959,1039,-1,991,1037,959,-1,669,615,556,-1,670,615,669,-1,701,539,525,-1,671,539,701,-1,435,539,559,-1,435,471,539,-1,308,447,476,-1,308,439,447,-1,748,386,839,-1,386,748,292,-1,1092,619,569,-1,1116,619,1092,-1,896,887,1008,-1,896,804,887,-1,1011,1133,1141,-1,1011,933,1133,-1,1322,1204,1247,-1,1322,1269,1204,-1,819,954,641,-1,1024,954,819,-1,858,793,553,-1,793,858,906,-1,659,349,393,-1,349,659,737,-1,32,94,64,-1,32,46,94,-1,792,877,806,-1,877,792,872,-1,710,746,621,-1,746,710,806,-1,543,739,621,-1,543,407,739,-1,730,924,717,-1,730,853,924,-1,23,46,32,-1,23,13,46,-1,1023,684,683,-1,1023,1018,684,-1,681,403,209,-1,681,687,403,-1,465,562,222,-1,588,562,465,-1,241,94,105,-1,94,241,216,-1,500,342,413,-1,500,356,342,-1,245,186,242,-1,245,163,186,-1,1025,1146,1041,-1,1134,1146,1025,-1,922,1157,953,-1,1157,922,979,-1,186,386,242,-1,406,386,186,-1,611,515,542,-1,558,515,611,-1,1240,1271,1259,-1,1240,1251,1271,-1,1179,1000,1229,-1,1179,976,1000,-1,1256,1303,1291,-1,1303,1256,1201,-1,740,579,717,-1,579,740,624,-1,1117,839,1144,-1,748,839,1117,-1,278,1025,841,-1,824,1025,278,-1,16,26,56,-1,16,2,26,-1,195,89,82,-1,195,200,89,-1,2,24,26,-1,2,17,24,-1,577,284,736,-1,284,577,270,-1,510,912,749,-1,912,510,607,-1,1219,1232,1304,-1,1219,1223,1232,-1,304,538,351,-1,304,565,538,-1,767,1039,959,-1,1039,767,944,-1,1123,1332,1333,-1,1123,1112,1332,-1,80,351,106,-1,80,304,351,-1,585,892,712,-1,813,892,585,-1,238,373,14,-1,373,238,490,-1,865,1126,1175,-1,1126,865,1012,-1,1187,1137,1242,-1,1187,1081,1137,-1,474,264,372,-1,394,264,474,-1,934,1309,1033,-1,934,1215,1309,-1,1090,1114,1293,-1,973,1114,1090,-1,1065,1242,1250,-1,1187,1242,1065,-1,1073,805,644,-1,1073,1114,805,-1,1249,1342,1260,-1,1249,1320,1342,-1,155,303,328,-1,200,303,155,-1,1016,113,896,-1,1016,178,113,-1,936,637,1017,-1,637,936,826,-1,1078,988,954,-1,1078,1105,988,-1,1245,1244,1252,-1,1245,1236,1244,-1,1193,1106,966,-1,1193,1200,1106,-1,241,337,357,-1,224,337,241,-1,250,218,249,-1,302,218,250,-1,608,933,844,-1,608,729,933,-1,1127,338,458,-1,338,1127,1103,-1,1205,1048,1035,-1,1173,1048,1205,-1,1140,1038,1214,-1,1038,1140,1054,-1,281,753,502,-1,281,408,753,-1,251,787,553,-1,251,210,787,-1,836,1257,533,-1,1257,836,1285,-1,880,545,379,-1,880,990,545,-1,523,836,396,-1,836,523,899,-1,1266,1165,990,-1,1266,1273,1165,-1,627,377,614,-1,627,375,377,-1,540,203,453,-1,203,540,211,-1,888,778,586,-1,888,1042,778,-1,368,478,519,-1,368,268,478,-1,415,433,333,-1,600,433,415,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc3_Geo_5_43_normalIndex_8()
		{
			int[] value = {945,511,560,-1,945,903,511,-1,146,173,217,-1,146,157,173,-1,655,495,480,-1,655,658,495,-1,480,653,655,-1,653,480,470,-1,353,197,196,-1,353,360,197,-1,544,353,344,-1,353,544,529,-1,136,42,44,-1,117,42,136,-1,57,38,54,-1,57,34,38,-1,589,742,696,-1,742,589,603,-1,672,704,696,-1,672,673,704,-1,679,584,678,-1,679,578,584,-1,341,578,625,-1,343,578,341,-1,487,704,630,-1,566,704,487,-1,524,781,898,-1,514,781,524,-1,149,319,123,-1,149,404,319,-1,421,378,400,-1,421,355,378,-1,421,385,355,-1,1045,199,811,-1,1045,361,199,-1,217,229,219,-1,229,217,173,-1,518,229,417,-1,518,212,229,-1,948,795,762,-1,795,948,938,-1,731,669,788,-1,669,731,670,-1,822,701,825,-1,701,822,671,-1,774,894,788,-1,774,897,894,-1,908,935,897,-1,908,987,935,-1,496,886,499,-1,886,496,941,-1,957,595,505,-1,1051,595,957,-1,612,266,775,-1,266,612,228,-1,456,336,697,-1,456,445,336,-1,456,537,445,-1,110,148,39,-1,148,110,201,-1,148,316,120,-1,148,334,316,-1,150,104,158,-1,150,107,104,-1,107,121,104,-1,107,98,121,-1,147,39,135,-1,39,147,61,-1,1002,659,950,-1,737,659,1002,-1,1243,1308,1274,-1,1243,1297,1308,-1,467,548,535,-1,472,548,467,-1,599,638,724,-1,535,638,599,-1,634,799,724,-1,634,863,799,-1,87,706,77,-1,809,706,87,-1,75,77,20,-1,87,77,75,-1,1034,1121,1014,-1,1034,1170,1121,-1,198,317,312,-1,317,198,212,-1,1058,1158,1082,-1,1051,1158,1058,-1,886,1160,910,-1,1121,1160,886,-1,570,597,541,-1,597,570,614,-1,42,85,45,-1,85,42,73,-1,180,424,369,-1,180,240,424,-1,169,74,90,-1,169,136,74,-1,800,695,799,-1,695,800,734,-1,317,1064,496,-1,1064,317,518,-1,1071,885,1013,-1,1071,1032,885,-1,1275,1199,1305,-1,1199,1275,1221,-1,453,592,586,-1,453,484,592,-1,108,392,274,-1,215,392,108,-1,803,1042,989,-1,803,778,1042,-1,301,576,384,-1,399,576,301,-1,11,221,9,-1,11,235,221,-1,989,1263,1237,-1,989,1042,1263,-1,709,968,868,-1,837,968,709,-1,233,478,171,-1,318,478,233,-1,230,153,96,-1,230,263,153,-1,1080,868,968,-1,868,1080,948,-1,31,415,311,-1,31,119,415,-1,232,254,51,-1,254,232,366,-1,96,213,93,-1,213,96,153,-1,536,271,705,-1,536,232,271,-1,1,99,84,-1,1,25,99,-1,1043,1184,1015,-1,1184,1043,1142,-1,1233,327,445,-1,1233,1166,327,-1,711,405,326,-1,517,405,711,-1,371,267,388,-1,371,201,267,-1,98,97,91,-1,98,107,97,-1,214,159,374,-1,214,164,159,-1,994,1104,983,-1,1104,994,1131,-1,1124,1097,1096,-1,1097,1124,1019,-1,402,738,497,-1,402,477,738,-1,1004,220,854,-1,243,220,1004,-1,306,139,309,-1,139,306,170,-1,307,205,130,-1,287,205,307,-1,591,1059,831,-1,591,939,1059,-1,1169,964,777,-1,1182,964,1169,-1,78,59,129,-1,78,50,59,-1,50,279,443,-1,79,279,50,-1,1001,1182,1174,-1,1001,992,1182,-1,947,1001,1174,-1,1001,947,818,-1,629,687,864,-1,687,629,686,-1,177,78,350,-1,177,72,78,-1,507,818,947,-1,443,818,507,-1,796,468,964,-1,796,350,468,-1,87,507,809,-1,59,507,87,-1,147,857,854,-1,135,857,147,-1,635,857,135,-1,462,409,363,-1,409,462,437,-1,123,21,149,-1,123,0,21,-1,428,409,591,-1,400,409,428,-1,1295,1300,1312,-1,1300,1295,1276,-1,977,994,930,-1,977,1019,994,-1,150,267,145,-1,150,257,267,-1,708,1096,1097,-1,1096,708,521,-1,961,722,845,-1,722,961,775,-1,228,84,266,-1,1,84,228,-1,1015,914,763,-1,914,1015,1184,-1,862,816,697,-1,862,761,816,-1,772,326,365,-1,711,326,772,-1,22,119,31,-1,119,22,170,-1,333,88,277,-1,88,333,141,-1,5,137,88,-1,5,35,137,-1,190,943,699,-1,190,601,943,-1,709,244,482,-1,244,709,399,-1,1324,1139,1340,-1,1139,1324,1069,-1,450,755,636,-1,755,450,527,-1,391,725,773,-1,391,513,725,-1,1324,1263,1197,-1,1324,1340,1263,-1,692,472,467,-1,692,693,472,-1,622,1032,811,-1,622,885,1032,-1,48,244,132,-1,244,48,184,-1,484,833,592,-1,609,833,484,-1,1058,776,606,-1,1075,776,1058,-1,1253,1149,1262,-1,1253,1142,1149,-1,1316,1325,1287,-1,1316,1341,1325,-1,695,680,685,-1,734,680,695,-1,505,231,187,-1,231,505,595,-1,766,603,698,-1,742,603,766,-1,38,90,53,-1,154,90,38,-1,341,168,114,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc3_Geo_5_43_normalIndex_9()
		{
			int[] value = {341,364,168,-1,73,103,85,-1,73,92,103,-1,828,734,800,-1,734,828,780,-1,957,1160,1102,-1,1160,957,940,-1,1163,1064,1022,-1,1163,941,1064,-1,111,157,146,-1,152,157,111,-1,998,843,935,-1,998,984,843,-1,1243,1104,1238,-1,1145,1104,1243,-1,773,879,1122,-1,879,773,725,-1,864,681,1138,-1,864,687,681,-1,522,290,298,-1,290,522,777,-1,684,316,683,-1,684,298,316,-1,1297,1319,1308,-1,1297,1329,1319,-1,424,616,698,-1,424,488,616,-1,620,723,727,-1,723,620,548,-1,690,723,691,-1,690,716,723,-1,685,599,695,-1,688,599,685,-1,1002,1049,1063,-1,950,1049,1002,-1,547,483,789,-1,437,483,547,-1,388,521,708,-1,521,388,322,-1,142,20,120,-1,142,75,20,-1,226,332,204,-1,226,402,332,-1,845,587,551,-1,722,587,845,-1,430,769,707,-1,430,551,769,-1,780,871,825,-1,871,780,828,-1,498,940,475,-1,940,498,910,-1,894,1036,866,-1,894,904,1036,-1,822,908,784,-1,822,855,908,-1,735,731,866,-1,731,735,602,-1,774,667,784,-1,667,774,668,-1,661,564,526,-1,662,564,661,-1,198,464,219,-1,198,493,464,-1,367,526,432,-1,495,526,367,-1,52,4,6,-1,52,81,4,-1,0,102,21,-1,29,102,0,-1,885,989,900,-1,885,803,989,-1,287,385,205,-1,287,355,385,-1,485,524,898,-1,441,524,485,-1,487,234,285,-1,438,234,487,-1,584,438,613,-1,438,584,419,-1,618,674,664,-1,625,674,618,-1,630,676,613,-1,676,630,675,-1,431,566,414,-1,589,566,431,-1,239,369,431,-1,369,239,180,-1,529,654,516,-1,657,654,529,-1,197,152,115,-1,152,197,174,-1,151,299,305,-1,299,151,174,-1,217,248,146,-1,426,248,217,-1,464,770,426,-1,464,795,770,-1,917,511,903,-1,917,915,511,-1,137,277,88,-1,137,260,277,-1,399,868,576,-1,709,868,399,-1,203,484,453,-1,203,274,484,-1,1340,1122,1218,-1,1340,1139,1122,-1,1122,759,773,-1,1122,1139,759,-1,101,66,128,-1,101,54,66,-1,687,719,403,-1,686,719,687,-1,340,396,165,-1,523,396,340,-1,156,340,165,-1,156,347,340,-1,1062,1294,899,-1,1294,1062,1265,-1,1285,1266,1195,-1,1285,1294,1266,-1,379,181,628,-1,181,379,156,-1,486,1194,458,-1,486,1212,1194,-1,1212,486,713,-1,942,884,981,-1,906,884,942,-1,1321,1222,1191,-1,1321,1343,1222,-1,942,931,753,-1,931,942,951,-1,41,49,36,-1,68,49,41,-1,337,376,418,-1,337,302,376,-1,1078,1190,1196,-1,1078,1087,1190,-1,249,641,250,-1,819,641,249,-1,573,395,491,-1,569,395,573,-1,1260,1116,1092,-1,1116,1260,1342,-1,412,328,580,-1,155,328,412,-1,530,479,650,-1,530,574,479,-1,89,100,12,-1,89,83,100,-1,1017,572,970,-1,572,1017,637,-1,1215,1327,1309,-1,1173,1327,1215,-1,1254,1010,1066,-1,1202,1010,1254,-1,1207,1339,1254,-1,1207,1306,1339,-1,401,1152,648,-1,401,743,1152,-1,1101,640,859,-1,944,640,1101,-1,207,14,3,-1,238,14,207,-1,372,640,474,-1,640,372,506,-1,80,14,131,-1,80,3,14,-1,872,692,877,-1,872,693,692,-1,313,747,531,-1,313,459,747,-1,1101,1288,1213,-1,1156,1288,1101,-1,893,1235,1068,-1,1235,893,1132,-1,749,889,702,-1,749,912,889,-1,144,69,37,-1,133,69,144,-1,459,273,330,-1,459,313,273,-1,680,652,685,-1,652,680,611,-1,849,1118,874,-1,849,991,1118,-1,652,542,543,-1,611,542,652,-1,1272,1167,1256,-1,1272,1209,1167,-1,924,1161,971,-1,924,1107,1161,-1,1259,1299,1298,-1,1271,1299,1259,-1,744,802,808,-1,771,802,744,-1,186,460,434,-1,460,186,223,-1,183,284,262,-1,284,183,292,-1,278,179,323,-1,278,382,179,-1,1186,1230,1198,-1,1230,1186,1188,-1,223,310,331,-1,223,175,310,-1,1268,1269,1322,-1,1269,1268,1257,-1,643,1257,1268,-1,1257,643,533,-1,1070,817,1018,-1,1070,628,817,-1,744,710,821,-1,710,744,726,-1,649,726,596,-1,792,726,649,-1,649,690,691,-1,649,647,690,-1,746,685,652,-1,685,746,688,-1,289,349,275,-1,349,289,393,-1,1268,713,643,-1,1268,1212,713,-1,1302,1194,1212,-1,1282,1194,1302,-1,1216,1236,1239,-1,1216,1244,1236,-1,1239,1190,1185,-1,1239,1236,1190,-1,1023,1192,1247,-1,1023,1030,1192,-1,1192,1231,1302,-1,1105,1231,1192,-1,619,395,569,-1,395,619,557,-1,571,883,639,-1,571,801,883,-1,461,558,525,-1,515,558,461,-1,406,849,874,-1,434,849,406,-1,413,435,444,-1,413,352,435,-1,447,568,556,-1,447,444,568,-1,667,568,559,-1,668,568,667,-1,779,661,814,-1,661,779,662,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc3_Geo_5_43_normalIndex_10()
		{
			int[] value = {546,394,581,-1,410,394,546,-1,1093,824,953,-1,1093,1134,824,-1,1093,1129,1128,-1,1162,1129,1093,-1,1337,1289,1336,-1,1337,1267,1289,-1,1241,1343,1321,-1,1343,1241,1318,-1,351,459,442,-1,351,538,459,-1,958,1054,1140,-1,958,956,1054,-1,815,856,446,-1,856,815,902,-1,1113,873,1053,-1,873,1113,905,-1,905,757,732,-1,929,757,905,-1,674,728,664,-1,728,674,720,-1,676,718,732,-1,675,718,676,-1,797,913,925,-1,913,797,754,-1,971,1108,913,-1,1161,1108,971,-1,1299,1209,1311,-1,1209,1299,1227,-1,986,798,999,-1,812,798,986,-1,1147,986,1148,-1,1147,982,986,-1,653,861,655,-1,876,861,653,-1,846,655,861,-1,846,658,655,-1,1162,1198,1129,-1,1162,1186,1198,-1,830,429,440,-1,830,448,429,-1,1066,1207,1254,-1,1066,1083,1207,-1,474,944,767,-1,944,474,640,-1,490,712,869,-1,490,585,712,-1,565,469,702,-1,565,304,469,-1,1136,838,889,-1,1115,838,1136,-1,15,178,37,-1,15,113,178,-1,656,418,633,-1,656,416,418,-1,771,520,802,-1,771,626,520,-1,8,113,15,-1,8,12,113,-1,1225,1220,1246,-1,1220,1225,1278,-1,562,1112,583,-1,562,962,1112,-1,632,869,712,-1,869,632,928,-1,1283,1152,1250,-1,1283,1270,1152,-1,875,1289,927,-1,875,1086,1289,-1,1073,1010,1202,-1,1073,911,1010,-1,429,907,383,-1,429,448,907,-1,465,429,427,-1,440,429,465,-1,920,1128,1129,-1,920,881,1128,-1,876,1040,861,-1,1046,1040,876,-1,1228,1313,1230,-1,1228,1298,1313,-1,982,812,986,-1,982,827,812,-1,999,1211,1148,-1,999,1179,1211,-1,1053,1209,1113,-1,1209,1053,1167,-1,1246,1286,1172,-1,1246,1290,1286,-1,651,631,624,-1,651,672,631,-1,718,673,646,-1,673,718,675,-1,720,679,764,-1,679,720,674,-1,757,997,764,-1,997,757,929,-1,1151,905,1113,-1,905,1151,929,-1,1222,996,1027,-1,996,1222,1205,-1,981,951,942,-1,981,955,951,-1,747,1109,1172,-1,747,923,1109,-1,1321,1130,1241,-1,1321,1214,1130,-1,1336,1323,1337,-1,1318,1323,1336,-1,970,623,1006,-1,970,572,623,-1,741,670,665,-1,741,615,670,-1,671,559,539,-1,667,559,671,-1,556,476,447,-1,615,476,556,-1,439,444,447,-1,439,413,444,-1,434,860,849,-1,860,434,460,-1,736,292,748,-1,292,736,284,-1,883,810,639,-1,883,758,810,-1,1005,619,1116,-1,1005,557,619,-1,561,883,491,-1,561,758,883,-1,1105,1196,1231,-1,1078,1196,1105,-1,1150,896,1008,-1,1150,1016,896,-1,1127,1282,1252,-1,1127,1194,1282,-1,281,251,408,-1,251,281,68,-1,289,416,393,-1,416,289,357,-1,36,64,41,-1,36,32,64,-1,691,872,649,-1,872,691,694,-1,652,621,746,-1,652,543,621,-1,621,821,710,-1,621,739,821,-1,730,808,853,-1,596,808,730,-1,980,24,321,-1,980,390,24,-1,604,756,645,-1,794,756,604,-1,1018,719,684,-1,1018,817,719,-1,641,988,794,-1,641,954,988,-1,27,2,16,-1,7,2,27,-1,342,245,242,-1,356,245,342,-1,163,223,186,-1,175,223,163,-1,1148,1228,1147,-1,1148,1259,1228,-1,1259,1148,1240,-1,847,1041,1146,-1,959,1041,847,-1,959,1021,1041,-1,1251,1211,1229,-1,1251,1240,1211,-1,1307,1201,1248,-1,1307,1303,1201,-1,717,971,740,-1,717,924,971,-1,1326,1256,1291,-1,1326,1272,1256,-1,1125,748,1117,-1,1125,736,748,-1,1021,849,860,-1,849,1021,1037,-1,610,779,791,-1,610,741,779,-1,105,224,241,-1,133,224,105,-1,56,8,16,-1,56,82,8,-1,200,389,303,-1,200,195,389,-1,17,7,13,-1,2,7,17,-1,995,736,1125,-1,736,995,577,-1,838,702,889,-1,565,702,838,-1,176,531,321,-1,176,313,531,-1,712,859,632,-1,892,859,712,-1,1176,926,1270,-1,926,1176,928,-1,1155,1081,1090,-1,1081,1155,1137,-1,372,401,648,-1,264,401,372,-1,1293,1254,1339,-1,1202,1254,1293,-1,1090,1339,1155,-1,1293,1339,1090,-1,1083,1077,1207,-1,1083,972,1077,-1,644,782,398,-1,644,805,782,-1,856,996,1035,-1,996,856,902,-1,328,572,637,-1,303,572,328,-1,969,178,1016,-1,969,280,178,-1,637,580,328,-1,637,826,580,-1,194,289,275,-1,289,194,216,-1,1057,1087,1024,-1,1057,1111,1087,-1,1236,1196,1190,-1,1245,1196,1236,-1,1103,1252,1244,-1,1127,1252,1103,-1,1003,890,840,-1,1038,890,1003,-1,890,1038,978,-1,408,553,793,-1,408,251,553,-1,283,1103,1074,-1,283,338,1103,-1,1214,1191,1140,-1,1214,1321,1191,-1,293,265,643,-1,293,252,265,-1,396,533,265,-1,396,836,533,-1,379,347,156,-1,347,379,545,-1,899,1285,836,-1,1285,899,1294,-1,891,899,523,-1,899,891,1062,-1,347,768,340,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getc3_Geo_5_43_normalIndex_11()
		{
			int[] value = {347,835,768,-1,165,265,182,-1,165,396,265,-1,181,209,403,-1,181,125,209,-1,375,457,377,-1,375,256,457,-1,1226,1316,1287,-1,1316,1226,1180,-1,983,930,994,-1,930,983,932,-1,235,773,759,-1,235,391,773,-1,473,715,636,-1,420,715,473,-1,190,58,93,-1,190,70,58,-1,52,492,422,-1,52,259,492,-1,333,271,141,-1,333,433,271,-1,436,917,960,-1,436,915,917,-1,917,879,919,-1,879,917,903,-1,219,426,217,-1,219,464,426,-1,480,367,305,-1,480,495,367,-1,653,516,654,-1,470,516,653,-1,660,529,544,-1,529,660,657,-1,196,344,353,-1,168,344,196,-1,414,239,431,-1,239,414,296,-1,431,603,589,-1,603,431,369,-1,696,566,589,-1,696,704,566,-1,613,678,584,-1,678,613,676,-1,544,364,618,-1,344,364,544,-1,613,487,630,-1,487,613,438,-1,438,191,234,-1,419,191,438,-1,346,123,319,-1,139,123,346,-1,193,21,102,-1,193,130,21,-1,348,497,504,-1,348,345,497,-1,721,365,325,-1,721,772,365,-1,670,602,665,-1,670,731,602,-1,784,671,822,-1,671,784,667,-1,866,788,894,-1,788,866,731,-1,897,904,894,-1,897,935,904,-1,505,940,957,-1,505,475,940,-1,871,1029,1082,-1,871,828,1029,-1,722,517,587,-1,517,722,405,-1,761,786,816,-1,761,878,786,-1,237,226,204,-1,237,158,226,-1,201,334,148,-1,201,371,334,-1,445,192,336,-1,445,327,192,-1,91,110,61,-1,110,91,97,-1,20,135,39,-1,20,77,135,-1,706,1110,635,-1,1047,1110,706,-1,656,950,659,-1,656,932,950,-1,1274,1312,1300,-1,1274,1308,1312,-1,724,695,599,-1,724,799,695,-1,501,724,638,-1,501,634,724,-1,541,616,488,-1,616,541,727,-1,79,177,255,-1,79,72,177,-1,1340,1237,1263,-1,1340,1218,1237,-1,1085,998,1102,-1,998,1085,984,-1,1121,1177,1160,-1,1177,1121,1170,-1,115,196,197,-1,85,196,115,-1,103,196,85,-1,312,493,198,-1,312,384,493,-1,312,324,384,-1,109,92,114,-1,109,103,92,-1,154,34,95,-1,154,38,34,-1,369,698,603,-1,369,424,698,-1,90,18,53,-1,90,74,18,-1,595,253,231,-1,595,606,253,-1,498,324,499,-1,354,324,498,-1,564,735,549,-1,564,602,735,-1,1131,1238,1104,-1,1238,1131,1221,-1,1334,1287,1325,-1,1334,1262,1287,-1,952,1142,1043,-1,952,1149,1142,-1,1335,1328,1329,-1,1328,1335,1341,-1,606,359,253,-1,776,359,606,-1,586,540,453,-1,540,586,778,-1,811,1168,1045,-1,811,1032,1168,-1,203,67,47,-1,67,203,211,-1,1197,1042,888,-1,1042,1197,1263,-1,948,1050,938,-1,1080,1050,948,-1,423,167,70,-1,420,167,423,-1,263,185,254,-1,230,185,263,-1,943,968,699,-1,968,943,1080,-1,88,51,5,-1,51,88,141,-1,5,254,185,-1,254,5,51,-1,268,260,137,-1,268,368,260,-1,560,705,945,-1,560,536,705,-1,346,485,309,-1,441,485,346,-1,772,1015,711,-1,1015,772,1043,-1,1166,370,327,-1,1166,1060,370,-1,763,711,1015,-1,763,517,711,-1,257,388,267,-1,257,322,388,-1,98,258,121,-1,258,98,243,-1,477,226,164,-1,477,402,226,-1,452,348,504,-1,452,307,348,-1,362,307,452,-1,31,10,22,-1,31,33,10,-1,309,552,306,-1,309,485,552,-1,362,363,287,-1,363,362,462,-1,1079,1047,706,-1,1079,1094,1047,-1,809,947,1079,-1,809,507,947,-1,350,129,468,-1,350,78,129,-1,72,50,78,-1,72,79,50,-1,411,350,796,-1,411,177,350,-1,818,575,1001,-1,575,818,451,-1,1094,1153,1055,-1,1094,1159,1153,-1,677,1138,681,-1,677,1153,1138,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getc3_Coord_6_43_point_1()
		{
			double[] value = {0.0,54.9991,-1.1116,0.0,54.9944,-1.1255,-0.1021,55.0064,-1.1268,-0.2143,54.2362,-2.0919,-0.1965,54.2191,-2.08,-0.2206,54.221,-2.0612,-0.028,54.4044,-2.0272,-0.0404,54.3246,-2.0377,-0.0611,54.3801,-2.0363,-0.0743,54.3568,-1.8127,0.0,54.3451,-1.8521,-0.0754,54.364,-1.8018,-0.0601,54.2909,-1.8812,-0.058,54.2872,-1.8924,-0.0501,54.2961,-1.8835,-0.06,54.2938,-2.0334,-0.0541,54.2721,-2.0114,-0.091,54.2353,-2.0655,-0.1199,54.2907,-2.095,-0.1678,54.3403,-1.9933,-0.0875,54.3322,-2.0456,-0.0765,54.253,-1.9501,-0.124,54.2674,-1.8616,-0.1162,54.2467,-1.9072,-0.3144,54.4285,-1.6252,-0.3087,54.4286,-1.6259,-0.3596,54.4101,-1.5286,-0.4423,54.3879,-1.381,-0.4817,54.3755,-1.4211,-0.4351,54.3857,-1.3879,-0.8245,54.6233,-1.2553,-0.7922,54.6703,-1.1486,-0.8277,54.63,-1.2592,-0.4115,54.424,-1.3293,-0.4193,54.4221,-1.3259,-0.4148,54.4158,-1.34,-0.5705,54.6251,-1.1516,-0.5782,54.6292,-1.1434,-0.5809,54.6181,-1.1482,-0.3772,54.4269,-1.4108,-0.3969,54.398,-1.4433,-0.6284,54.4464,-1.4043,-0.5709,54.4017,-1.4534,-0.5877,54.4411,-1.3863,-0.3824,54.5706,-1.5577,-0.3985,54.5719,-1.5421,-0.4374,54.602,-1.5441,-0.1183,54.7562,-1.6785,-0.099,54.7231,-1.6808,0.0,54.7372,-1.7011,-0.1771,54.7656,-1.6537,-0.2261,54.7313,-1.6266,-0.1607,54.7278,-1.6554,-0.218,54.6195,-1.6327,-0.2387,54.5257,-1.6374,-0.1918,54.4893,-1.685,-0.7813,54.8318,-1.3434,-0.7237,54.8002,-1.3801,-0.7234,54.7705,-1.3788,-0.7192,54.8085,-1.3785,-0.7751,54.8396,-1.3454,-0.7166,54.8695,-1.3271,-0.1246,54.7529,-1.6852,-0.1952,54.7829,-1.6538,-0.4466,54.8316,-1.3355,-0.4406,54.8283,-1.3371,-0.5172,54.7694,-1.3793,-0.8052,54.9016,-1.2614,-0.8005,54.9073,-1.2655,0.0,54.7395,-1.7086,-0.4019,54.8906,-1.2909,-0.4097,54.8925,-1.2929,-0.4426,54.959,-1.2256,-0.3965,54.8257,-1.3759,-0.3881,54.8217,-1.38,-0.3957,54.8214,-1.3852,-0.4386,54.96,-1.2192,-0.4522,54.9748,-1.2008,-0.4398,54.9365,-1.213,-0.7835,54.872,-1.2298,-0.7073,54.6576,-0.9831,-0.7846,54.6689,-1.0112,-0.7282,54.6869,-1.0709,-0.9066,54.6297,-0.9477,-0.8779,54.638,-0.987,-0.826,54.6088,-0.9662,-0.8536,54.6269,-0.906,-0.8763,54.6683,-0.8861,-0.9085,54.6448,-0.9183,-0.7192,54.8057,-0.7602,-0.7409,54.7962,-0.8022,-0.7095,54.7742,-0.7843,-0.9088,54.8321,-0.947,-0.9452,54.7731,-0.9569,-0.9091,54.7536,-0.8935,-0.736,54.8761,-0.845,-0.7145,54.8711,-0.8627,-0.7587,54.8473,-0.9121,-0.7192,54.9485,-0.7898,-0.7167,54.951,-0.8016,-0.6806,54.8965,-0.7107,-0.6907,54.9025,-0.7141,-0.6866,54.8862,-0.7131,-0.7118,54.857,-1.0497,-0.6657,54.8456,-0.9888,-0.6025,54.8435,-1.0291,-0.6986,54.9162,-1.0951,-0.6112,54.9402,-1.0947,-0.5596,54.8374,-0.8589,-0.6439,54.8394,-0.8783,-0.5713,54.8829,-0.8548,-0.6115,54.748,-0.8619,-0.5954,54.752,-0.8402,-0.668,54.74,-0.8232,-0.5287,54.7641,-0.8329,-0.5236,54.8198,-0.8021,-0.43,54.7445,-1.0189,-0.4567,54.751,-1.0384,-0.3924,54.6779,-1.0805,-0.495,54.8827,-0.8649,-0.4825,54.8313,-0.8614,-0.5079,54.9342,-0.8612,-0.5555,54.8826,-0.8554,0.0,54.7166,-1.1903,0.0,54.6847,-1.1847,-0.0322,54.7165,-1.1824,-0.5348,54.7443,-1.0559,-0.5052,54.6725,-1.1129,-0.4629,54.7003,-1.0929,-0.46,54.9048,-1.1391,-0.4208,54.8589,-1.174,-0.48,54.9153,-1.1605,-0.4595,55.0096,-0.8831,-0.4341,55.0182,-0.934,-0.4499,54.9606,-0.9632,-0.3714,55.0208,-1.0652,-0.3827,54.9412,-1.0803,-0.4315,54.9625,-1.012,-0.4532,54.9377,-1.0313,-0.4669,54.9182,-1.0128,-0.4602,54.9235,-0.9821,-0.4691,54.9311,-1.0631,-0.4827,54.9282,-1.0874,-0.4873,54.9114,-1.0436,-0.4429,54.908,-1.122,-0.2601,55.0611,-1.1083,-0.2755,55.0789,-1.0688,-0.2386,55.0462,-1.0633,-0.3909,54.8549,-1.1512,-0.3693,54.8855,-1.1266,-0.3067,54.8305,-1.147,-0.4178,54.9235,-1.1014,-0.3419,54.925,-1.1111,-0.23,54.7717,-1.6235,-0.3016,54.7861,-1.5634,-0.4793,54.5315,-1.231,-0.5126,54.6278,-1.1861,-0.2382,55.0017,-1.1523,-0.2191,54.9443,-1.1683,-0.2622,54.9643,-1.1579,-0.2178,54.9338,-0.74,-0.2386,54.9359,-0.7137,-0.2184,54.9177,-0.7301,0.0,54.9883,-1.1417,-0.3095,54.5437,-1.1599,-0.3358,54.6041,-1.1474,-0.2978,54.5322,-1.178,-0.3005,54.5981,-0.8106,-0.292,54.5831,-0.7917,-0.2916,54.5927,-0.7823,-0.2045,54.7306,-1.1685,-0.2556,54.7805,-1.1578,-0.2509,54.8782,-1.1518,-0.2271,54.6323,-1.1926,-0.3143,54.619,-1.1683,-0.2719,54.6852,-1.1836,-0.2351,55.0124,-1.1439,-0.234,55.033,-1.1091,-0.169,55.0193,-1.12,-0.259,54.9953,-0.7508,-0.3162,55.0396,-0.789,-0.2743,54.9955,-0.7258,-0.1308,54.8507,-0.6554,-0.1212,54.8915,-0.6899,-0.2959,54.9705,-0.7154,-0.2927,54.9198,-0.7164,-0.2672,54.9212,-0.7062,-0.2291,54.6389,-0.7096,-0.2563,54.6221,-0.7351,-0.2469,54.5759,-0.6975,-0.3106,54.9075,-1.1325,-0.2974,55.0288,-0.8152,-0.2112,54.9584,-0.7821,-0.3083,55.0173,-0.8945,-0.2916,55.0076,-0.8746,-0.2883,55.0024,-0.8968,-0.2875,54.7115,-1.5655,-0.3395,54.7159,-1.4838,-0.3325,54.6575,-1.4801,0.0,54.474,-1.9846,0.0,54.4096,-2.0236,-0.0353,54.278,-1.9924,0.0,54.3064,-1.906,-0.2645,54.5341,-1.1959,-0.4105,54.5792,-1.3015,-0.3769,54.631,-1.375,-0.3986,54.6802,-1.2808,-0.3905,54.7002,-1.1844,-0.3586,54.7341,-1.2182,-0.3384,54.7175,-1.1706,-0.3671,54.6892,-1.4075,-0.0695,54.5588,-1.2122,-0.1482,54.5531,-1.21,-0.1431,54.6406,-1.1935,-0.3099,54.5404,-1.5578,-0.3387,54.4547,-1.5207,-0.153,54.355,-1.7605,-0.1024,54.47,-1.7516,-0.2935,54.6232,-1.5693,-0.3845,54.4044,-1.53,-0.4828,54.4052,-1.5037,-0.4931,54.494,-1.5385,-0.3497,54.6333,-1.6179,-0.3432,54.5627,-1.6125,-0.4712,54.6982,-1.5352,-0.5317,54.7189,-1.5022,-0.4564,54.7579,-1.4375,-0.404,54.7808,-1.5069,-0.4125,54.7224,-1.5683,-0.1616,54.4505,-1.8891,-0.1036,54.5726,-1.881,-0.0939,54.4715,-1.9625,-0.2114,54.3647,-1.8843,-0.2098,54.4308,-1.8178,-0.4201,54.5704,-1.5314,-0.4667,54.5779,-1.5407,-0.6701,54.8701,-1.2973,-0.6246,54.8215,-1.3431,-0.4536,54.9752,-1.2055,-0.5828,54.9628,-1.2019,-0.5469,55.0142,-1.1585,-0.1813,55.0141,-1.0014,-0.2651,55.069,-1.0201,-0.2678,55.0084,-0.9202,-0.2876,55.0219,-0.9151,-0.3535,55.0508,-0.8619,-0.3802,55.0447,-0.8399,-0.3351,55.0314,-0.7725,-0.2494,55.0165,-0.9373,-0.1992,54.9915,-0.9143,-0.129,55.0149,-1.0496,-0.1341,54.9955,-1.0032,-0.1201,54.9,-0.7019,-0.1213,54.9285,-0.7752,-0.0721,55.0106,-1.0592,-0.0974,55.0099,-1.1037,-0.1644,55.0242,-1.09,-0.3925,55.0664,-0.9118,-0.4078,54.883,-0.7939,-0.4138,54.9474,-0.7997,-0.4873,54.9494,-0.7941,-0.332,54.9323,-0.7641,-0.3259,54.8633,-0.7614,-0.2149,54.7862,-0.6828,-0.2204,54.8628,-0.696,-0.2827,54.8618,-0.7216,-0.7518,54.8835,-1.1279,-0.7318,54.7265,-1.3757,-0.776,54.7713,-1.3089,-0.7773,54.7826,-1.1821,-0.7913,54.7086,-1.2811,-0.767,54.6603,-1.3646,-0.7187,54.5797,-1.4534,-0.7819,54.7529,-1.1726,-0.7864,54.6782,-1.142,-0.7424,54.6611,-1.1278,-0.4833,54.7575,-1.058,-0.492,54.3799,-1.4152,-0.5469,54.4358,-1.3682,-0.5254,54.4537,-1.3332,-0.4869,54.5258,-1.2315,-0.304,54.5246,-1.1661,-0.2818,54.509,-1.1832,-0.2797,54.5046,-1.1089,-0.3292,54.5645,-1.1068,-0.297,54.5856,-0.8196,-0.2661,54.5479,-0.8486,-0.3232,54.5547,-1.0311,-0.3215,54.5527,-1.103,-0.1978,54.4932,-0.6639,-0.1956,54.4406,-0.6844,-0.1897,54.4312,-0.6826,-0.1948,54.5895,-0.6481,-0.1338,54.5897,-0.6151,-0.1207,54.6546,-0.6232,-0.1826,54.649,-0.6682,-0.1966,54.714,-0.6798,-0.2326,54.7027,-0.733,-0.3332,54.638,-0.9189,-0.3228,54.6076,-0.9258,-0.6335,54.7136,-1.0066,-0.6583,54.6958,-0.9444,-0.3779,54.6927,-0.933,-0.3785,54.7149,-0.8317,-0.3939,54.8004,-0.8174,-0.464,54.7645,-0.832,-0.5767,54.9399,-0.7603,-0.6414,54.9344,-0.7108,-0.5735,54.8839,-0.7684,-0.6461,54.8866,-0.7223,-0.9191,54.7094,-1.0138,-0.8935,54.7635,-1.0189,-0.8171,54.7764,-1.0503,-0.7986,54.8281,-1.0459,-0.8493,54.8263,-1.0117,-0.7975,54.8489,-0.9587,-0.5509,54.9134,-1.0689,-0.604,54.8885,-1.0527,-0.4729,54.7623,-0.8541,-0.426,54.7498,-0.9448,-0.3858,54.6754,-1.0208,-0.3693,54.7822,-1.4741,-0.3231,54.8232,-1.5386,0.2143,54.2362,-2.0919,0.2462,54.2402,-2.059,0.2206,54.221,-2.0612,0.0754,54.364,-1.8018,0.0,54.3689,-1.8347,0.0472,54.269,-1.9885,0.0541,54.2721,-2.0114,0.091,54.2353,-2.0655,0.06,54.2938,-2.0334,0.1033,54.2685,-2.0866,0.1162,54.2467,-1.9072,0.124,54.2674,-1.8616,0.0765,54.253,-1.9501,0.3087,54.4286,-1.6259,0.3144,54.4285,-1.6252,0.3845,54.4044,-1.53,0.4869,54.5258,-1.2315,0.4793,54.5315,-1.231,0.4115,54.424,-1.3293,0.4423,54.3879,-1.381,0.4351,54.3857,-1.3879,0.4817,54.3755,-1.4211,0.8277,54.63,-1.2592,0.7927,54.6828,-1.1503,0.7922,54.6703,-1.1486,0.654,54.4385,-1.4789,0.6526,54.4338,-1.4724,0.6417,54.4304,-1.4801,0.2541,54.4099,-1.7029,0.2486,54.4102,-1.7019,0.2499,54.4073,-1.7094,0.5877,54.4411,-1.3863,0.6284,54.4464,-1.4043,0.3985,54.5719,-1.5421,0.394,54.637,-1.5795,0.452,54.6348,-1.5482,0.1183,54.7562,-1.6785,0.1771,54.7656,-1.6537,0.1867,54.7812,-1.6488,0.1607,54.7278,-1.6554,0.2261,54.7313,-1.6266,0.23,54.7717,-1.6235,0.3944,54.4918,-1.5626,0.416,54.4881,-1.5409,0.0603,54.7144,-1.7476,0.0,54.6632,-1.8215,0.7234,54.7705,-1.3788,0.7237,54.8002,-1.3801,0.7813,54.8318,-1.3434,0.7751,54.8396,-1.3454,0.7192,54.8085,-1.3785,0.6799,54.8388,-1.343,0.1952,54.7829,-1.6538,0.1246,54.7529,-1.6852,0.4406,54.8283,-1.3371,0.4466,54.8316,-1.3355,0.5214,54.7755,-1.3776,0.8005,54.9073,-1.2655,0.8052,54.9016,-1.2614,0.4386,54.96,-1.2192,0.4426,54.959,-1.2256,0.4097,54.8925,-1.2929,0.3957,54.8214,-1.3852,0.3881,54.8217,-1.38,0.3965,54.8257,-1.3759,0.4398,54.9365,-1.213,0.4522,54.9748,-1.2008,0.7835,54.872,-1.2298,0.7282,54.6869,-1.0709,0.7846,54.6689,-1.0112,0.7073,54.6576,-0.9831,0.826,54.6088,-0.9662,0.8779,54.638,-0.987,0.9066,54.6297,-0.9477,0.9085,54.6448,-0.9183,0.8763,54.6683,-0.8861,0.8536,54.6269,-0.906,0.7095,54.7742,-0.7843,0.7409,54.7962,-0.8022,0.7192,54.8057,-0.7602,0.9091,54.7536,-0.8935,0.9452,54.7731,-0.9569,0.9088,54.8321,-0.947,0.8021,54.8316,-0.8887,0.7587,54.8473,-0.9121,0.7145,54.8711,-0.8627,0.7167,54.951,-0.8016,0.7192,54.9485,-0.7898,0.746,54.8687,-0.8233,0.6866,54.8862,-0.7131,0.6907,54.9025,-0.7141,0.6806,54.8965,-0.7107,0.6025,54.8435,-1.0291,0.6657,54.8456,-0.9888,0.7118,54.857,-1.0497,0.6112,54.9402,-1.0947,0.6986,54.9162,-1.0951,0.6439,54.8394,-0.8783,0.6304,54.8015,-0.8715,0.5596,54.8374,-0.8589,0.6455,54.8233,-0.9885,0.6661,54.8033,-0.9329,0.692,54.8587,-0.9418,0.5555,54.8826,-0.8554,0.5713,54.8829,-0.8548,0.5236,54.8198,-0.8021,0.5287,54.7641,-0.8329,0.5954,54.752,-0.8402,0.4772,54.893,-0.9976,0.4636,54.8339,-0.9983,0.485,54.827,-1.0291,0.495,54.8827,-0.8649,0.5079,54.9342,-0.8612,0.0322,54.7165,-1.1824,0.4629,54.7003,-1.0929,0.5052,54.6725,-1.1129,0.5348,54.7443,-1.0559,0.48,54.9153,-1.1605,0.4208,54.8589,-1.174,0.46,54.9048,-1.1391,0.4595,55.0096,-0.8831,0.4647,54.9467,-0.9159,0.4499,54.9606,-0.9632,0.4315,54.9625,-1.012,0.3827,54.9412,-1.0803,0.3714,55.0208,-1.0652,0.4602,54.9235,-0.9821,0.4669,54.9182,-1.0128,0.4532,54.9377,-1.0313,0.51,54.9166,-1.0609,0.4827,54.9282,-1.0874,0.4691,54.9311,-1.0631,0.5008,54.9296,-1.1043,0.2386,55.0462,-1.0633,0.2755,55.0789,-1.0688,0.2601,55.0611,-1.1083,0.3558,54.8048,-1.163,0.3067,54.8305,-1.147,0.3693,54.8855,-1.1266,0.4178,54.9235,-1.1014,0.2912,54.7473,-1.5635,0.5126,54.6278,-1.1861,0.5705,54.6251,-1.1516,0.2613,55.0151,-1.1556,0.2622,54.9643,-1.1579,0.2191,54.9443,-1.1683,0.2184,54.9177,-0.7301,0.2386,54.9359,-0.7137,0.2178,54.9338,-0.74,0.1021,55.0064,-1.1268,0.2978,54.5322,-1.178,0.3143,54.619,-1.1683,0.3095,54.5437,-1.1599,0.2916,54.5927,-0.7823,0.297,54.5856,-0.8196,0.3005,54.5981,-0.8106,0.2054,54.8548,-1.1721,0.2509,54.8782,-1.1518,0.2556,54.7805,-1.1578,0.2719,54.6852,-1.1836,0.2271,54.6323,-1.1926,0.169,55.0193,-1.12,0.234,55.033,-1.1091,0.2351,55.0124,-1.1439,0.2743,54.9955,-0.7258,0.3162,55.0396,-0.789,0.259,54.9953,-0.7508,0.1212,54.8915,-0.6899,0.1308,54.8507,-0.6554,0.2672,54.9212,-0.7062,0.2927,54.9198,-0.7164,0.2959,54.9705,-0.7154,0.2469,54.5759,-0.6975,0.2563,54.6221,-0.7351,0.2291,54.6389,-0.7096,0.3106,54.9075,-1.1325,0.2112,54.9584,-0.7821,0.2974,55.0288,-0.8152,0.2883,55.0024,-0.8968,0.2916,55.0076,-0.8746,0.3083,55.0173,-0.8945,0.1307,54.6455,-1.8084,0.0,54.3057,-1.981,0.0353,54.278,-1.9924,0.1036,54.5726,-1.881,0.0,54.5814,-1.8921,0.2645,54.5341,-1.1959,0.4397,54.6545,-1.2201,0.3905,54.7002,-1.1844,0.3986,54.6802,-1.2808,0.4105,54.5792,-1.3015,0.3769,54.631,-1.375,0.3395,54.7159,-1.4838,0.3325,54.6575,-1.4801,0.3671,54.6892,-1.4075,0.0635,54.6395,-1.1821,0.1431,54.6406,-1.1935,0.1482,54.5531,-1.21,0.0644,54.7165,-1.1746,0.0378,54.7983,-1.1805,0.0,54.893,-1.1722,0.0843,54.9004,-1.1715,0.0,54.846,-1.1789,0.3099,54.5404,-1.5578,0.2387,54.5257,-1.6374,0.1918,54.4893,-1.685,0.1024,54.47,-1.7516,0.4931,54.494,-1.5385,0.3824,54.5706,-1.5577,0.3387,54.5012,-1.6187,0.3432,54.5627,-1.6125,0.3497,54.6333,-1.6179,0.4564,54.7579,-1.4375,0.5317,54.7189,-1.5022,0.4712,54.6982,-1.5352,0.404,54.7808,-1.5069,0.1724,54.5635,-1.8134,0.1854,54.7044,-1.7144,0.2071,54.6484,-1.7364,0.1631,54.3841,-1.9556,0.1616,54.4505,-1.8891,0.2098,54.4308,-1.8178,0.2114,54.3647,-1.8843,0.4095,54.8786,-1.3084,0.5172,54.7694,-1.3793,0.6224,54.8724,-1.2685,0.4864,54.871,-1.2712,0.5144,54.9062,-1.2331,0.6246,54.8215,-1.3431,0.7166,54.8695,-1.3271,0.4536,54.9752,-1.2055,0.5469,55.0142,-1.1585,0.5828,54.9628,-1.2019,0.1992,54.9915,-0.9143,0.2494,55.0165,-0.9373,0.1813,55.0141,-1.0014,0.1341,54.9955,-1.0032,0.129,55.0149,-1.0496,0.1213,54.9285,-0.7752,0.1201,54.9,-0.7019,0.1644,55.0242,-1.09,0.0974,55.0099,-1.1037,0.3925,55.0664,-0.9118,0.3944,55.0418,-0.842,0.4078,54.883,-0.7939,0.4848,54.879,-0.7991,0.4873,54.9494,-0.7941,0.2827,54.8618,-0.7216,0.3259,54.8633,-0.7614,0.2204,54.8628,-0.696,0.2149,54.7862,-0.6828,0.2582,54.7825,-0.7297,0.7518,54.8835,-1.1279,0.776,54.7713,-1.3089,0.7318,54.7265,-1.3757,0.7187,54.5797,-1.4534,0.6755,54.6807,-1.433,0.5674,54.4005,-1.463,0.4933,54.3798,-1.4271,0.5694,54.4164,-1.4943,0.7819,54.7529,-1.1726,0.7913,54.7086,-1.2811,0.7773,54.7826,-1.1821,0.7424,54.6611,-1.1278,0.7702,54.717,-1.0834,0.4788,54.6545,-1.1683,0.5324,54.4925,-1.2764,0.4193,54.4221,-1.3259,0.2797,54.5046,-1.1089,0.2818,54.509,-1.1832,0.304,54.5246,-1.1661,0.1301,54.4808,-1.0689,0.2213,54.4938,-1.0618,0.2211,54.4981,-0.9675,0.3292,54.5645,-1.1068,0.3358,54.6041,-1.1474,0.2509,54.5162,-0.7814,0.2772,54.5598,-0.7547,0.2428,54.5007,-0.7174,0.3215,54.5527,-1.103,0.3232,54.5547,-1.0311,0.1978,54.4932,-0.6639,0.1373,54.5023,-0.6279,0.1415,54.4308,-0.6468,0.2773,54.5698,-0.7449,0.2422,54.5089,-0.706,0.1207,54.6546,-0.6232,0.1338,54.5897,-0.6151,0.1948,54.5895,-0.6481,0.2326,54.7027,-0.733,0.1966,54.714,-0.6798,0.1826,54.649,-0.6682,0.2941,54.6884,-0.7815,0.3228,54.6076,-0.9258,0.3332,54.638,-0.9189,0.6583,54.6958,-0.9444,0.6335,54.7136,-1.0066,0.3785,54.7149,-0.8317,0.3779,54.6927,-0.933,0.464,54.7645,-0.832,0.3939,54.8004,-0.8174,0.5735,54.8839,-0.7684,0.6414,54.9344,-0.7108,0.5767,54.9399,-0.7603,0.6461,54.8866,-0.7223,0.9191,54.7094,-1.0138,0.8314,54.73,-1.0401,0.8171,54.7764,-1.0503,0.7975,54.8489,-0.9587,0.8493,54.8263,-1.0117,0.7986,54.8281,-1.0459,0.604,54.8885,-1.0527,0.5509,54.9134,-1.0689,0.426,54.7498,-0.9448,0.4729,54.7623,-0.8541,0.3693,54.7822,-1.4741,0.3699,54.8203,-1.4547,0.3231,54.8232,-1.5386,0.3384,54.7175,-1.1706,0.3211,54.7614,-1.1689,0.3913,54.8408,-1.3101,0.3935,54.8685,-1.3022,0.2421,54.8032,-1.615,0.3016,54.7861,-1.5634,0.43,54.7445,-1.0189,0.4629,54.904,-0.9325,0.6857,54.9191,-0.8456,0.6816,54.9824,-0.7876,0.6783,54.9817,-0.7682,0.7444,54.8095,-0.804,0.8008,54.7914,-0.8536,0.9648,54.7081,-0.9585,0.7788,54.7831,-1.1007,0.8964,54.7137,-0.8815,0.7888,54.6992,-0.8505,0.713,54.8115,-0.7539,0.6968,54.8115,-0.7583,0.5782,54.8219,-0.7908,0.6527,54.8069,-0.7773,0.4721,54.814,-0.8147,0.7452,54.6755,-0.8915,0.8433,54.6089,-0.9298,0.5862,54.731,-1.0539,0.5782,54.6292,-1.1434,0.69,54.6417,-1.1113,0.1274,54.7253,-0.6296,0.0649,54.6564,-0.6018,0.0668,54.5871,-0.6012,0.1956,54.4406,-0.6844,0.2348,54.4975,-0.7007,0.3157,54.5948,-0.9249,0.2748,54.5425,-0.945,0.2348,54.4907,-0.7127,0.1949,54.4327,-0.6955,0.1929,54.4435,-0.7457,0.2661,54.5479,-0.8486,0.1921,54.4679,-0.8081,0.2732,54.5196,-1.0417,0.1337,54.3967,-0.7718,0.1324,54.3771,-0.6849,0.1897,54.4312,-0.6826,0.6845,54.5853,-1.1889,0.6088,54.5594,-1.2195,0.6336,54.5354,-1.2733,0.4447,54.5527,-1.2656,0.7632,54.8256,-1.1061,0.7552,54.4868,-1.4398,0.6462,54.5348,-1.5016,0.4828,54.4052,-1.5037,0.7725,54.838,-1.2029,0.6628,54.7796,-1.4039,0.4341,55.0182,-0.934,0.3619,55.0894,-0.9684,0.3465,55.0063,-1.1044,0.3318,55.0981,-1.0395,0.4429,54.908,-1.122,0.0526,54.8973,-0.6848,0.0523,54.9185,-0.768,0.2452,54.9948,-0.9064,0.2729,54.9908,-0.8745,0.3351,55.0314,-0.7725,0.2855,55.0607,-0.9484,0.7013,54.9987,-1.1341,0.7778,54.963,-1.1775,0.7024,54.9364,-1.2392,0.6353,55.0183,-1.127,0.5066,54.8248,-1.3147,0.6552,54.7869,-1.4006,0.662,54.9472,-1.2099,0.5976,54.6238,-1.5151,0.5106,54.5866,-1.5414,0.3064,54.618,-1.6657,0.2885,54.7125,-1.6584,0.3352,54.7831,-1.5797,0.3282,54.8218,-1.5425,0.4125,54.7224,-1.5683,0.4374,54.602,-1.5441,0.4201,54.5704,-1.5314,0.2393,54.5335,-1.7436,0.2507,54.4565,-1.7302,0.4667,54.5779,-1.5407,0.4194,54.5287,-1.5404,0.0501,54.2961,-1.8835,0.0743,54.3568,-1.8127,0.2793,54.4221,-1.6628,0.3772,54.4269,-1.4108,0.4148,54.4158,-1.34,0.3745,54.5015,-1.3905,0.1402,54.4735,-1.2168,0.0707,54.4723,-1.2072,0.0695,54.5588,-1.2122,0.3701,54.7243,-1.3112,0.3586,54.7341,-1.2182,0.2799,54.5169,-1.1911,0.0939,54.4715,-1.9625,0.1678,54.3403,-1.9933,0.1379,54.7464,-1.6948,0.3419,54.925,-1.1111,0.3126,54.9877,-1.1457,0.4177,54.9886,-0.8034,0.4138,54.9474,-0.7997,0.2539,55.0233,-1.1485,0.0,54.4671,-1.2001,0.0,54.482,-1.206,0.3622,54.6872,-1.1481,0.3802,55.0447,-0.8399,0.391,55.0378,-0.834,0.2871,55.0565,-1.1356,0.3396,55.0193,-0.7674,0.2907,54.9839,-0.718,0.2382,55.0017,-1.1523,0.382,54.6787,-1.1142,0.3924,54.6779,-1.0805,0.3524,54.7507,-1.4831,0.3687,54.7529,-1.4107,0.3842,54.7884,-1.3936,0.545,54.9395,-1.1198,0.4181,54.8973,-1.2089,0.298,55.0492,-1.1402,0.3167,55.0733,-1.0918,0.3909,54.8549,-1.1512,0.371,54.8101,-1.1884,0.3858,54.6754,-1.0208,0.5104,54.8167,-1.0417,0.4567,54.751,-1.0384,0.531,54.8816,-0.7857,0.5335,54.7647,-0.8502,0.7549,54.8574,-1.0027,0.5659,54.8616,-1.0323,0.6861,54.6568,-1.0584,0.8076,54.8216,-0.8794,0.5865,54.9652,-0.7916,0.5902,54.9637,-0.8032,0.6627,54.869,-0.8727,0.8935,54.7635,-1.0189,0.8979,54.8431,-0.9673,0.9533,54.675,-0.9762,0.9605,54.6779,-0.9566,0.4019,54.8906,-1.2909,0.2438,54.8025,-1.6197,0.6523,54.7764,-1.4054,0.1518,54.6158,-1.6731,0.218,54.6195,-1.6327,0.2198,54.6999,-1.6324,0.4292,54.3854,-1.4756,0.7864,54.6782,-1.142,0.6923,54.6316,-1.1182,0.5809,54.6181,-1.1482,0.1996,54.3093,-2.0465,0.2059,54.329,-1.9502,0.1893,54.2545,-2.1183,0.1834,54.2415,-2.1114,0.1383,54.2545,-2.1137,0.058,54.2872,-1.8924,0.0396,54.2875,-2.0123,0.0805,54.3534,-1.8059,0.0601,54.2909,-1.8812,0.153,54.355,-1.7605,0.1538,54.3496,-1.7711,0.0404,54.3246,-2.0377,0.0611,54.3801,-2.0363,0.0875,54.3322,-2.0456,0.2252,54.2612,-2.0953,0.1775,54.2284,-2.1046,-0.2613,55.0151,-1.1556,-0.3126,54.9877,-1.1457,-0.3211,54.7614,-1.1689,-0.3935,54.8685,-1.3022,-0.3913,54.8408,-1.3101,-0.3699,54.8203,-1.4547,-0.2421,54.8032,-1.615,-0.4444,54.8294,-0.9409,-0.4636,54.8339,-0.9983,-0.5819,54.922,-0.8417,-0.6627,54.869,-0.8727,-0.4629,54.904,-0.9325,-0.6816,54.9824,-0.7876,-0.6857,54.9191,-0.8456,-0.6783,54.9817,-0.7682,-0.8076,54.8216,-0.8794,-0.8008,54.7914,-0.8536,-0.7444,54.8095,-0.804,-0.9648,54.7081,-0.9585,-0.8314,54.73,-1.0401,-0.7788,54.7831,-1.1007,-0.7888,54.6992,-0.8505,-0.7965,54.7784,-0.849,-0.8964,54.7137,-0.8815,-0.713,54.8115,-0.7539,-0.5782,54.8219,-0.7908,-0.2941,54.6884,-0.7815,-0.7452,54.6755,-0.8915,-0.69,54.6417,-1.1113,-0.5862,54.731,-1.0539,-0.6861,54.6568,-1.0584,-0.1274,54.7253,-0.6296,-0.1301,54.7886,-0.6385,-0.0668,54.5871,-0.6012,-0.0649,54.6564,-0.6018,-0.2732,54.5196,-1.0417,-0.2748,54.5425,-0.945,-0.3157,54.5948,-0.9249,-0.1921,54.4679,-0.8081,-0.2509,54.5162,-0.7814,-0.2213,54.4938,-1.0618,-0.3311,54.5665,-1.0333,-0.1337,54.3967,-0.7718,-0.1929,54.4435,-0.7457,-0.1415,54.4308,-0.6468,-0.1324,54.3771,-0.6849,-0.6336,54.5354,-1.2733,-0.6088,54.5594,-1.2195,-0.6845,54.5853,-1.1889,-0.4397,54.6545,-1.2201,-0.4447,54.5527,-1.2656,-0.7632,54.8256,-1.1061,-0.7552,54.4868,-1.4398,-0.6462,54.5348,-1.5016,-0.5694,54.4164,-1.4943,-0.5976,54.6238,-1.5151,-0.776,54.805,-1.3268,-0.7725,54.838,-1.2029,-0.6628,54.7796,-1.4039,-0.6755,54.6807,-1.433,-0.6961,54.956,-1.1193,-0.4177,54.9886,-0.8034,-0.391,55.0378,-0.834,-0.4554,55.0092,-0.8384,-0.4073,55.0144,-0.9904,-0.3318,55.0981,-1.0395,-0.3167,55.0733,-1.0918,-0.2729,54.9908,-0.8745,-0.2855,55.0607,-0.9484,-0.7778,54.963,-1.1775,-0.7013,54.9987,-1.1341,-0.662,54.9472,-1.2099,-0.6353,55.0183,-1.127,-0.5066,54.8248,-1.3147,-0.5214,54.7755,-1.3776,-0.6552,54.7869,-1.4006,-0.6799,54.8388,-1.343,-0.7024,54.9364,-1.2392,-0.2885,54.7125,-1.6584,-0.3064,54.618,-1.6657,-0.3771,54.8193,-1.4568,-0.3282,54.8218,-1.5425,-0.6523,54.7764,-1.4054,-0.3352,54.7831,-1.5797,-0.3387,54.5012,-1.6187,-0.1538,54.3496,-1.7711,-0.209,54.3513,-1.7952,-0.2143,54.3148,-1.8617,0.0,54.4373,-1.7949,-0.2486,54.4102,-1.7019,-0.3894,54.4554,-1.363,-0.2054,54.8548,-1.1721,-0.1434,54.8051,-1.169,-0.0707,54.4723,-1.2072,-0.3622,54.6872,-1.1481,-0.382,54.6787,-1.1142,-0.3701,54.7243,-1.3112,-0.1307,54.6455,-1.8084,-0.1631,54.3841,-1.9556,-0.1379,54.7464,-1.6948,-0.0603,54.7144,-1.7476,-0.1854,54.7044,-1.7144,-0.2452,54.9948,-0.9064,-0.3254,55.0365,-0.8906,-0.3465,55.0063,-1.1044,-0.3558,54.8048,-1.163,-0.2539,55.0233,-1.1485,-0.2833,55.0572,-1.1318,-0.07,54.4641,-1.1991,-0.228,54.5339,-1.2057,-0.2942,55.0498,-1.1364,-0.3944,55.0418,-0.842,-0.3804,55.0707,-0.9079,-0.2907,54.9839,-0.718,-0.2912,54.7473,-1.5635,-0.3524,54.7507,-1.4831,-0.3842,54.7884,-1.3936,-0.3779,54.7875,-1.3154,-0.5008,54.9296,-1.1043,-0.545,54.9395,-1.1198,-0.4181,54.8973,-1.2089,-0.3656,54.7492,-1.3174,-0.3631,54.756,-1.2174,-0.3461,54.7574,-1.1775,-0.4647,54.9467,-0.9159,-0.371,54.8101,-1.1884,-0.485,54.827,-1.0291,-0.531,54.8816,-0.7857,-0.6661,54.8033,-0.9329,-0.692,54.8587,-0.9418,-0.7549,54.8574,-1.0027,-0.5659,54.8616,-1.0323,-0.746,54.8687,-0.8233,-0.8021,54.8316,-0.8887,-0.5865,54.9652,-0.7916,-0.8979,54.8431,-0.9673,-0.9605,54.6779,-0.9566,-0.9533,54.675,-0.9762,-0.4095,54.8786,-1.3084,-0.2438,54.8025,-1.6197,-0.2198,54.6999,-1.6324,-0.1518,54.6158,-1.6731,-0.1531,54.6956,-1.6593,-0.6417,54.4304,-1.4801,-0.5674,54.4005,-1.463,-0.4292,54.3854,-1.4756,-0.7927,54.6828,-1.1503,-0.6923,54.6316,-1.1182,-0.2059,54.329,-1.9502,-0.2376,54.3093,-2.0057,-0.1893,54.2545,-2.1183,-0.1512,54.2755,-2.1191,-0.1383,54.2545,-2.1137,-0.0472,54.269,-1.9885,-0.0805,54.3534,-1.8059,-0.2252,54.2612,-2.0953,-0.1775,54.2284,-2.1046,-0.1834,54.2415,-2.1114,-0.0396,54.2875,-2.0123,-0.1996,54.3093,-2.0465,-0.4933,54.3798,-1.4271,-0.4194,54.5287,-1.5404,-0.452,54.6348,-1.5482,-0.5106,54.5866,-1.5414,-0.416,54.4881,-1.5409,-0.2793,54.4221,-1.6628,-0.9343,54.771,-0.9798,-0.5902,54.9637,-0.8032,-0.7219,54.8194,-0.7594,-0.6455,54.8233,-0.9885,-0.5104,54.8167,-1.0417,-0.3862,54.8153,-1.2138,-0.3687,54.7529,-1.4107,-0.3414,54.6167,-1.1009,-0.3396,55.0193,-0.7674,-0.4916,54.9604,-0.7996,-0.2799,54.5169,-1.1911,-0.1402,54.4735,-1.2168,-0.1397,54.7198,-1.1773,-0.3745,54.5015,-1.3905,-0.3944,54.4918,-1.5626,-0.2507,54.4565,-1.7302,-0.2393,54.5335,-1.7436,-0.3529,54.7214,-1.6156,-0.7319,54.8982,-1.2945,-0.5463,54.8107,-1.3353,-0.3619,55.0894,-0.9684,-0.7661,54.9215,-1.1565,-0.654,54.4385,-1.4789,-0.7252,54.5975,-1.1988,-0.1347,54.4461,-0.8297,-0.3424,54.6241,-1.0157,-0.2211,54.4981,-0.9675};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getc3_Coord_6_43_point_2()
		{
			double[] value = {-0.2133,54.4922,-0.8987,-0.1949,54.4327,-0.6955,-0.2348,54.4907,-0.7127,-0.2348,54.4975,-0.7007,-0.8433,54.6089,-0.9298,-0.4721,54.814,-0.8147,-0.6527,54.8069,-0.7773,-0.6968,54.8115,-0.7583,-0.7807,54.7464,-1.0913,-0.6471,54.9455,-0.7135,0.1965,54.2191,-2.08,0.1512,54.2755,-2.1191,0.2376,54.3093,-2.0057,0.492,54.3799,-1.4152,0.3387,54.4547,-1.5207,0.3596,54.4101,-1.5286,0.1531,54.6956,-1.6593,0.9343,54.771,-0.9798,0.736,54.8761,-0.845,0.7219,54.8194,-0.7594,0.4833,54.7575,-1.058,0.3461,54.7574,-1.1775,0.3862,54.8153,-1.2138,0.3779,54.7875,-1.3154,0.2875,54.7115,-1.5655,0.3414,54.6167,-1.1009,0.3894,54.4554,-1.363,0.228,54.5339,-1.2057,0.07,54.4641,-1.1991,0.4916,54.9604,-0.7996,0.2876,55.0219,-0.9151,0.2678,55.0084,-0.9202,0.3529,54.7214,-1.6156,0.3771,54.8193,-1.4568,0.5463,54.8107,-1.3353,0.2651,55.069,-1.0201,0.4073,55.0144,-0.9904,0.776,54.805,-1.3268,0.767,54.6603,-1.3646,0.5254,54.4537,-1.3332,0.7252,54.5975,-1.1988,0.1347,54.4461,-0.8297,0.3424,54.6241,-1.0157,0.3311,54.5665,-1.0333,0.2133,54.4922,-0.8987,0.1301,54.7886,-0.6385,0.668,54.74,-0.8232,0.7965,54.7784,-0.849,0.7807,54.7464,-1.0913,0.6471,54.9455,-0.7135,0.4444,54.8294,-0.9409,0.8841,54.8478,-0.9568,0.292,54.5831,-0.7917,0.1337,54.474,-0.99,0.743,54.651,-1.1341,0.6872,54.486,-1.381,0.332,54.9323,-0.7641,0.3489,55.0247,-0.7717,0.0721,55.0106,-1.0592,0.2529,54.9818,-0.8468,0.2016,54.9779,-0.8581,0.6701,54.8701,-1.2973,0.2729,54.5757,-1.7046,0.2712,54.5405,-1.7013,0.0757,54.7982,-1.1709,0.3586,54.7247,-1.412,0.028,54.4044,-2.0272,0.3535,55.0508,-0.8619,0.3529,55.0636,-0.8951,0.3254,55.0365,-0.8906,0.1743,55.0029,-1.1368,0.2045,54.7306,-1.1685,0.1063,54.9959,-1.1385,0.4873,54.9114,-1.0436,0.0,54.7984,-1.1901,0.5575,54.9231,-0.8429,0.4554,55.0092,-0.8384,0.4825,54.8313,-0.8614,0.5017,54.8844,-1.0248,0.6115,54.748,-0.8619,0.4708,54.9455,-1.1889,0.099,54.7231,-1.6808,0.5709,54.4017,-1.4534,0.8245,54.6233,-1.2553,-0.8841,54.8478,-0.9568,-0.2422,54.5089,-0.706,-0.2773,54.5698,-0.7449,-0.2428,54.5007,-0.7174,-0.2772,54.5598,-0.7547,-0.743,54.651,-1.1341,-0.5324,54.4925,-1.2764,-0.7294,54.5701,-1.2602,-0.7236,54.5348,-1.326,-0.4788,54.6545,-1.1683,-0.7702,54.717,-1.0834,-0.2582,54.7825,-0.7297,-0.4848,54.879,-0.7991,-0.3489,55.0247,-0.7717,-0.2016,54.9779,-0.8581,-0.2529,54.9818,-0.8468,-0.5144,54.9062,-1.2331,-0.4864,54.871,-1.2712,-0.1724,54.5635,-1.8134,-0.394,54.637,-1.5795,-0.2712,54.5405,-1.7013,-0.2729,54.5757,-1.7046,-0.0378,54.7983,-1.1805,-0.0757,54.7982,-1.1709,-0.0843,54.9004,-1.1715,-0.0635,54.6395,-1.1821,-0.0644,54.7165,-1.1746,-0.3586,54.7247,-1.412,-0.3529,55.0636,-0.8951,-0.1743,55.0029,-1.1368,-0.1063,54.9959,-1.1385,-0.51,54.9166,-1.0609,-0.5575,54.9231,-0.8429,-0.6304,54.8015,-0.8715,-0.4708,54.9455,-1.1889,-0.1867,54.7812,-1.6488,-0.6526,54.4338,-1.4724,-0.2499,54.4073,-1.7094,-0.2541,54.4099,-1.7029,-0.1033,54.2685,-2.0866,-0.2462,54.2402,-2.059,-0.1253,54.2207,-2.0227,-0.1288,54.2277,-2.096,-0.1881,54.2098,-2.0255,-0.1568,54.2122,-2.0607,-0.2411,54.2771,-1.9772,-0.164,54.2188,-1.9807,-0.25,54.2559,-2.0198,-0.2061,54.2945,-1.911,-0.8093,54.558,-1.3431,-0.7529,54.4818,-1.4354,-0.8115,54.563,-1.3479,-0.2844,54.4211,-1.6656,-0.2747,54.4736,-1.6991,-0.2986,54.4906,-1.668,-0.3031,54.5476,-1.659,-0.2628,54.7679,-1.6364,-0.6224,54.8724,-1.2685,-0.7033,54.996,-1.1274,-0.7807,54.9593,-1.171,-0.8204,54.7015,-1.0344,-0.9195,54.679,-1.0073,-0.5318,54.9415,-0.7829,-0.5351,54.9528,-0.7881,-0.5487,54.962,-0.814,-0.5441,54.9636,-0.8035,-0.5054,54.9713,-0.8183,-0.5093,54.9686,-0.8283,-0.5501,54.8025,-1.0419,-0.4772,54.893,-0.9976,-0.5017,54.8844,-1.0248,-0.5476,54.9752,-1.1453,-0.6262,54.9776,-1.1163,-0.427,54.6956,-1.141,0.0,54.8945,-0.6765,-0.0534,54.8895,-0.6726,0.0,54.8864,-0.665,-0.0526,54.8973,-0.6848,-0.3507,55.0939,-0.9641,-0.1768,54.9907,-1.1444,-0.2235,54.484,-1.2106,-0.0592,54.3774,-0.6702,0.0,54.4339,-0.6273,-0.0724,54.4352,-0.6239,0.0,54.3786,-0.6745,-0.0592,54.3709,-0.715,-0.1338,54.3734,-0.7165,-0.2909,55.0967,-1.0293,-0.318,55.0878,-0.9532,-0.2214,54.7472,-1.6727,0.0,54.5609,-1.2102,0.0,54.6522,-1.1837,-0.3459,54.5829,-1.4528,-0.0911,54.6917,-1.6845,-0.0857,54.6104,-1.7084,-0.2071,54.6484,-1.7364,-0.2478,54.6804,-1.6974,-0.3057,55.0795,-1.0883,-0.3205,55.1032,-1.0372,-0.0717,54.9877,-1.0003,-0.134,54.9647,-0.923,-0.0641,54.9593,-0.9229,-0.0594,54.846,-0.6374,-0.0584,54.9396,-0.8502,0.0,54.9545,-0.9253,0.0,54.9354,-0.8452,0.0,54.7875,-0.6146,-0.0618,54.7872,-0.6188,0.0,54.8473,-0.6346,-0.6872,54.486,-1.381,-0.1337,54.474,-0.99,-0.1301,54.4808,-1.0689,-0.0676,54.4426,-0.8351,-0.0677,54.3916,-0.7829,0.0,54.3906,-0.7843,0.0,54.37,-0.7191,0.0,54.482,-1.0863,-0.0587,54.4672,-1.0018,-0.0625,54.4761,-1.0801,0.0,54.472,-1.0078,-0.0637,54.4636,-1.1451,0.0,54.4676,-1.1445,-0.0666,54.5012,-0.6095,-0.1373,54.5023,-0.6279,-0.0637,54.7332,-0.6096,-0.5808,54.951,-0.7646,0.0,54.6915,-1.7018,0.0,54.3176,-2.0069,0.1568,54.2122,-2.0607,0.1288,54.2277,-2.096,0.2159,54.2913,-2.0802,0.25,54.2559,-2.0198,0.2443,54.2579,-2.0747,0.2466,54.2875,-2.0478,0.1199,54.2907,-2.095,0.2061,54.2945,-1.911,0.2411,54.2771,-1.9772,0.3969,54.398,-1.4433,0.2986,54.4906,-1.668,0.2844,54.4211,-1.6656,0.2214,54.7472,-1.6727,0.2478,54.6804,-1.6974,0.2628,54.7679,-1.6364,0.7033,54.996,-1.1274,0.7807,54.9593,-1.171,0.6961,54.956,-1.1193,0.7661,54.9215,-1.1565,0.8204,54.7015,-1.0344,0.9195,54.679,-1.0073,0.5318,54.9415,-0.7829,0.5351,54.9528,-0.7881,0.5487,54.962,-0.814,0.5441,54.9636,-0.8035,0.5941,54.7869,-1.0393,0.6375,54.7682,-0.9952,0.5054,54.9713,-0.8183,0.5093,54.9686,-0.8283,0.5501,54.8025,-1.0419,0.3631,54.756,-1.2174,0.5476,54.9752,-1.1453,0.6262,54.9776,-1.1163,0.427,54.6956,-1.141,0.0534,54.8895,-0.6726,0.3804,55.0707,-0.9079,0.3507,55.0939,-0.9641,0.1768,54.9907,-1.1444,0.2235,54.484,-1.2106,0.0592,54.3774,-0.6702,0.0724,54.4352,-0.6239,0.0592,54.3709,-0.715,0.1338,54.3734,-0.7165,0.2909,55.0967,-1.0293,0.318,55.0878,-0.9532,0.2935,54.6232,-1.5693,0.6599,54.7497,-0.9388,0.1397,54.7198,-1.1773,0.1434,54.8051,-1.169,0.3459,54.5829,-1.4528,0.0857,54.6104,-1.7084,0.0,54.5539,-1.7487,0.0911,54.6917,-1.6845,0.209,54.3513,-1.7952,0.2143,54.3148,-1.8617,0.2747,54.4736,-1.6991,0.134,54.9647,-0.923,0.0717,54.9877,-1.0003,0.0641,54.9593,-0.9229,0.0594,54.846,-0.6374,0.0584,54.9396,-0.8502,0.0618,54.7872,-0.6188,0.7236,54.5348,-1.326,0.7294,54.5701,-1.2602,0.7529,54.4818,-1.4354,0.8093,54.558,-1.3431,0.5469,54.4358,-1.3682,0.0601,54.457,-0.9213,0.0587,54.4672,-1.0018,0.1344,54.464,-0.9116,0.0,54.4442,-0.843,0.0676,54.4426,-0.8351,0.0,54.4611,-0.9284,0.0637,54.4636,-1.1451,0.1325,54.4674,-1.1496,0.0625,54.4761,-1.0801,0.1393,54.4664,-1.2099,0.2183,54.474,-1.1419,0.2251,54.4765,-1.2031,0.0666,54.5012,-0.6095,0.0,54.5008,-0.6069,0.0,54.6551,-0.5949,0.0,54.5834,-0.5966,0.0637,54.7332,-0.6096,0.5808,54.951,-0.7646,0.5294,54.8797,-1.0355,0.3108,54.7777,-0.7757,0.0677,54.3916,-0.7829,0.0,54.9183,-0.7636,0.0,54.9999,-1.0657,0.1324,54.9543,-0.8587,0.3205,55.1032,-1.0372,0.7319,54.8982,-1.2945,0.1507,54.9136,-1.1641,0.0,54.3427,-2.0297,0.3656,54.7492,-1.3174,0.3057,55.0795,-1.0883,0.5819,54.922,-0.8417,0.5443,55.0129,-1.153,0.6337,55.0169,-1.1207,0.3031,54.5476,-1.659,0.164,54.2188,-1.9807,0.1253,54.2207,-2.0227,0.1881,54.2098,-2.0255,-0.5294,54.8797,-1.0355,-0.5941,54.7869,-1.0393,-0.3108,54.7777,-0.7757,0.0,54.737,-0.605,-0.1325,54.4674,-1.1496,-0.1393,54.4664,-1.2099,-0.0523,54.9185,-0.768,-0.1324,54.9543,-0.8587,-0.1507,54.9136,-1.1641,-0.2251,54.4765,-1.2031,-0.1063,54.9835,-1.1462,-0.6375,54.7682,-0.9952,-0.5443,55.0129,-1.153,-0.6337,55.0169,-1.1207,-0.2466,54.2875,-2.0478,-0.2159,54.2913,-2.0802,-0.2443,54.2579,-2.0747,-0.9555,54.7022,-0.9827,-0.6599,54.7497,-0.9388,-0.5335,54.7647,-0.8502,0.0,54.9748,-1.1512,0.0,54.9794,-0.9941,-0.1344,54.464,-0.9116,-0.0601,54.457,-0.9213,-0.2183,54.474,-1.1419,0.8115,54.563,-1.3479,0.9555,54.7022,-0.9827,0.1063,54.9835,-1.1462};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_44_vector_1()
		{
			double[] value = {-0.9992,0.0385,-0.0111,-0.9969,0.0544,-0.0566,-0.9951,0.0986,-0.0085,-0.9933,0.0835,-0.0796,-0.9912,0.0018,0.1323,-0.9895,0.0737,0.1246,-0.9881,0.147,0.046,-0.9856,0.0588,0.1587,-0.9804,0.1887,0.0563,-0.9798,-0.0468,-0.1945,-0.9792,0.1988,0.0402,-0.9703,-0.2312,-0.0707,-0.9697,0.1862,0.158,-0.9665,-0.0745,0.2457,-0.9633,0.2525,-0.091,-0.9628,0.2702,0.0069,-0.96,0.2798,-0.011,-0.9569,-0.2807,0.074,-0.9561,-0.1931,0.2202,-0.9543,-0.0021,-0.2989,-0.9483,0.2427,-0.2045,-0.9472,-0.082,-0.3101,-0.9461,0.0357,0.3219,-0.9419,-0.0862,0.3247,-0.9395,-0.2648,-0.2175,-0.9384,-0.2513,0.237,-0.9353,0.2795,-0.2172,-0.9348,0.3468,0.0765,-0.9328,-0.2546,-0.2551,-0.9277,0.2684,-0.2597,-0.9268,-0.061,0.3705,-0.9267,-0.152,-0.3438,-0.9254,-0.0485,0.3759,-0.9241,0.1922,-0.3303,-0.9222,-0.3819,-0.0609,-0.9203,0.3872,0.0556,-0.9187,-0.0776,0.3871,-0.9184,0.1156,0.3783,-0.9134,-0.3975,0.0882,-0.9113,0.1326,-0.3897,-0.9112,-0.2475,-0.3292,-0.9096,-0.2892,0.2983,-0.9092,-0.3901,0.1457,-0.9084,0.4176,-0.0211,-0.9071,-0.3974,0.1388,-0.906,-0.0255,0.4225,-0.9059,0.0369,0.422,-0.9055,0.1863,0.3813,-0.9019,0.2265,-0.3678,-0.9019,-0.1078,0.4183,-0.9008,-0.3642,0.2365,-0.9006,-0.39,0.1921,-0.8969,0.4415,-0.0241,-0.8958,-0.4042,0.1848,-0.894,-0.4378,0.0948,-0.8917,0.3608,-0.2733,-0.8887,0.4486,-0.0947,-0.8863,-0.4623,0.0274,-0.8854,0.3902,0.2525,-0.8849,-0.1986,0.4214,-0.8823,0.1857,0.4325,-0.8709,-0.0915,-0.4828,-0.8692,-0.4916,-0.0529,-0.8668,-0.4315,0.25,-0.8612,-0.1672,0.4799,-0.858,-0.2014,0.4725,-0.8574,-0.4695,0.2106,-0.8557,-0.2863,0.431,-0.8541,-0.4364,0.2829,-0.8537,0.313,0.4162,-0.8536,0.4749,0.214,-0.8531,-0.0297,-0.521,-0.8494,-0.0281,-0.5269,-0.8488,-0.5109,0.1365,-0.8484,-0.518,0.1091,-0.8481,0.5233,-0.0827,-0.8474,-0.2799,-0.4512,-0.8459,-0.4775,0.2377,-0.8435,0.4761,-0.2487,-0.8433,-0.5149,-0.1542,-0.8392,0.0002,0.5438,-0.8382,0.2773,0.4696,-0.8347,0.4586,0.3049,-0.8285,0.5574,0.0542,-0.827,0.3622,0.4301,-0.826,-0.2557,0.5022,-0.8241,-0.4936,-0.278,-0.8211,-0.4933,0.2872,-0.8172,0.0135,-0.5763,-0.8153,0.2285,0.5321,-0.814,-0.5568,0.1654,-0.8097,-0.0973,-0.5787,-0.8094,-0.5811,0.0851,-0.8079,-0.0752,0.5845,-0.8058,-0.082,0.5865,-0.8049,-0.5932,0.0145,-0.8042,0.0355,0.5933,-0.7996,-0.0344,-0.5995,-0.798,-0.0736,-0.5982,-0.7979,0.0192,0.6024,-0.7967,0.5798,-0.1707,-0.7945,-0.5978,0.1064,-0.7933,0.2966,-0.5317,-0.7908,-0.3316,0.5146,-0.7903,-0.0569,-0.6101,-0.7876,0.0013,0.6162,-0.7866,-0.4804,0.3878,-0.7831,-0.0311,-0.6211,-0.7807,0.5935,0.1959,-0.7739,-0.3909,0.4983,-0.7738,0.1319,-0.6196,-0.7737,0.1858,0.6057,-0.7734,-0.5517,0.3121,-0.7728,0.6202,-0.1349,-0.7727,-0.6318,0.0613,-0.7721,0.0836,0.63,-0.7719,0.4085,-0.4871,-0.7717,-0.629,-0.0942,-0.771,0.5099,-0.3816,-0.7694,-0.628,-0.1169,-0.7651,0.4005,-0.5042,-0.762,-0.0808,-0.6425,-0.7612,0.5544,-0.3365,-0.761,-0.5371,0.3638,-0.7578,0.5418,-0.3636,-0.757,-0.4741,-0.4497,-0.7539,-0.1897,0.6289,-0.7536,-0.6336,0.1752,-0.7524,-0.6468,0.1247,-0.7511,0.6597,-0.0237,-0.7503,-0.2927,-0.5928,-0.7501,0.2913,0.5937,-0.7492,0.6421,-0.1626,-0.7486,0.1237,0.6514,-0.7476,0.5809,-0.322,-0.7453,-0.6184,0.2492,-0.7401,-0.6723,0.0188,-0.7373,0.3534,-0.5758,-0.7324,0.6793,-0.0465,-0.7322,-0.3537,0.5821,-0.7316,-0.6472,-0.2142,-0.7302,-0.5082,-0.4567,-0.7268,0.5042,-0.4663,-0.724,0.2458,-0.6445,-0.7222,0.069,0.6883,-0.721,0.0583,-0.6905,-0.7207,-0.1765,0.6704,-0.7197,-0.6938,-0.0255,-0.7149,0.3129,-0.6253,-0.7147,-0.6595,0.2328,-0.7142,0.0652,-0.6969,-0.7078,-0.0909,0.7006,-0.7066,0.2672,0.6552,-0.7052,-0.215,0.6756,-0.7051,-0.6822,0.1936,-0.704,0.5514,0.4475,-0.7039,0.0092,-0.7103,-0.702,-0.0452,0.7108,-0.7006,-0.0563,-0.7114,-0.6967,-0.0958,-0.7109,-0.693,-0.1332,-0.7086,-0.692,-0.4602,0.5562,-0.6919,0.2168,-0.6886,-0.6918,0.6633,0.2852,-0.6906,-0.1344,-0.7106,-0.688,-0.6156,-0.3843,-0.6876,0.2,-0.698,-0.6852,0.6283,-0.3684,-0.684,-0.536,0.4949,-0.6794,-0.7252,0.1114,-0.6716,-0.3736,0.6399,-0.6704,0.6594,0.3403,-0.6637,-0.7443,0.0747,-0.6571,-0.2474,0.7121,-0.652,0.2033,0.7305,-0.648,0.7454,-0.1562,-0.6462,-0.6094,0.4595,-0.6413,0.0977,-0.761,-0.639,0.7431,0.1988,-0.6343,0.724,0.271,-0.6318,-0.6822,-0.3681,-0.6271,-0.2511,-0.7374,-0.6255,-0.7801,0.0131,-0.6251,0.772,0.115,-0.6229,0.3122,-0.7173,-0.6227,0.2429,0.7438,-0.6215,0.7273,0.291,-0.6167,0.7816,-0.0938,-0.6162,0.1728,-0.7684,-0.6158,-0.7695,-0.1692,-0.6143,0.199,0.7636,-0.6143,-0.7549,-0.2297,-0.6115,0.6999,-0.369,-0.6105,0.2217,-0.7604,-0.6103,-0.2909,0.7368,-0.6074,0.6887,0.3959,-0.607,-0.1997,0.7692,-0.6028,0.1174,0.7892,-0.6025,-0.0189,0.7979,-0.598,-0.7384,-0.3119,-0.5961,0.2349,0.7677,-0.5946,0.3519,-0.7229,-0.5939,-0.0606,0.8022,-0.591,0.2616,0.7631,-0.5905,0.3587,-0.723,-0.5869,-0.8097,-0.0024,-0.585,-0.5521,0.5942,-0.5848,0.0557,-0.8093,-0.582,0.8119,0.0453,-0.5813,-0.5767,-0.5741,-0.5798,-0.8071,0.1115,-0.5795,-0.2951,0.7597,-0.5783,-0.0922,0.8106,-0.5777,-0.4446,0.6846,-0.5773,-0.2843,-0.7655,-0.5766,0.8116,-0.0937,-0.5759,-0.078,0.8138,-0.5726,-0.2083,0.793,-0.5725,0.0207,0.8197,-0.5715,-0.1684,0.8031,-0.5709,-0.81,-0.1343,-0.5687,-0.1129,-0.8148,-0.5678,-0.723,-0.3936,-0.5677,0.8204,-0.0684,-0.5667,-0.0196,0.8237,-0.5656,-0.0351,-0.8239,-0.5642,-0.1689,-0.8082,-0.5638,0.7382,-0.3705,-0.5624,0.6696,-0.4851,-0.5622,-0.1635,0.8107,-0.5615,0.2977,0.7721,-0.5593,0.767,-0.3146,-0.5574,-0.5882,0.5859,-0.5564,0.5735,0.6013,-0.5549,-0.8301,-0.0548,-0.5548,-0.1826,-0.8117,-0.5542,-0.548,0.6266,-0.5516,0.2835,-0.7845,-0.5512,0.2616,-0.7923,-0.5473,-0.8296,0.1107,-0.5466,-0.1868,-0.8163,-0.5454,-0.0468,0.8369,-0.5442,0.6842,0.4855,-0.5442,-0.8089,-0.2228,-0.5416,0.7668,-0.3444,-0.5411,0.5267,0.6555,-0.5406,-0.3015,0.7854,-0.54,0.3369,-0.7713,-0.5363,-0.597,0.5966,-0.5312,0.75,0.3941,-0.5308,0.6897,0.4925,-0.5263,-0.8417,0.1207,-0.5261,-0.7973,0.2958,-0.526,0.6541,-0.5436,-0.5221,-0.0921,0.8479,-0.522,-0.5745,-0.6304,-0.5209,0.0658,-0.8511,-0.5183,0.3397,-0.7848,-0.5181,-0.7283,-0.4484,-0.5178,0.7129,-0.473,-0.515,0.2659,-0.8149,-0.5147,-0.6453,0.5646,-0.5143,0.8553,-0.0635,-0.513,0.0292,0.8579,-0.5129,0.2037,0.834,-0.5108,-0.8349,0.2052,-0.5091,0.8368,-0.2013,-0.5083,0.3269,-0.7967,-0.5079,0.7982,-0.3238,-0.5073,0.8026,0.314,-0.5055,0.7968,-0.3311,-0.5013,-0.8647,-0.0312,-0.5013,0.4293,-0.7513,-0.4984,-0.541,0.6774,-0.4982,0.7586,0.4199,-0.4972,-0.3803,0.7799,-0.4932,0.5778,-0.6503,-0.4913,-0.0151,-0.8709,-0.4858,0.386,0.7842,-0.4831,-0.8664,-0.1265,-0.4814,0.8205,0.3084,-0.4801,-0.7942,0.3725,-0.4791,-0.8772,0.0321,-0.4767,-0.8017,0.3607,-0.4754,0.8593,-0.1886,-0.475,-0.8797,0.0215,-0.4736,0.6139,-0.6315,-0.473,-0.8787,-0.0648,-0.4728,-0.0591,-0.8792,-0.4691,-0.1926,0.8619,-0.4677,0.7265,-0.5034,-0.4636,-0.7343,0.4959,-0.4617,0.8869,0.0133,-0.4606,-0.7281,0.5077,-0.4602,0.2661,-0.847,-0.46,-0.2203,0.8601,-0.4585,-0.8569,0.2358,-0.4584,0.8663,0.1985,-0.4567,0.5358,-0.7102,-0.4549,0.1329,0.8806,-0.4505,-0.4667,0.7611,-0.4451,0.8194,0.3613,-0.444,0.0682,0.8934,-0.4434,0.3331,0.8321,-0.4429,-0.1227,0.8881,-0.4405,0.058,0.8959,-0.4398,-0.6307,0.6393,-0.4394,-0.4852,-0.756,-0.4378,0.8522,0.2864,-0.4374,-0.6196,0.6518,-0.4337,0.8996,0.0519,-0.4301,-0.2152,-0.8768,-0.4292,0.2539,0.8668,-0.4284,-0.8138,0.3927,-0.4278,0.8524,-0.3005,-0.4261,0.8294,-0.3614,-0.4259,0.5453,-0.722,-0.4258,0.1245,0.8962,-0.4251,0.8622,0.2754,-0.4246,-0.8051,0.4142,-0.4246,0.4714,-0.773,-0.4238,-0.8988,-0.1119,-0.4237,0.5457,-0.7229,-0.4229,0.662,0.6187,-0.4229,0.4768,0.7706,-0.4207,0.5529,0.7192,-0.4174,0.5671,0.71,-0.4158,0.8967,-0.1517,-0.4146,0.6898,0.5935,-0.4128,0.5766,-0.705,-0.4119,-0.5461,0.7295,-0.4114,0.9109,0.0322,-0.4097,0.4374,-0.8005,-0.4092,-0.4457,-0.7962,-0.4092,0.5943,-0.6924,-0.407,0.6074,-0.6822,-0.4068,0.8306,-0.3802,-0.402,0.0467,0.9144,-0.401,-0.7652,0.5037,-0.4,0.1447,-0.905,-0.397,-0.704,-0.5889,-0.3968,-0.9108,-0.1145,-0.3957,0.7244,0.5645,-0.3956,-0.7991,-0.4528,-0.3949,-0.4153,0.8195,-0.3934,0.2138,-0.8941,-0.3929,-0.8087,0.4377,-0.3904,-0.2116,-0.896,-0.3898,-0.0434,-0.9199,-0.382,-0.3298,0.8633,-0.3818,0.7357,-0.5594,-0.38,-0.4927,0.7828,-0.3754,0.8809,0.2882,-0.3734,-0.1628,0.9133,-0.3732,0.7624,0.5287,-0.3717,-0.8327,0.4103,-0.3708,0.6878,0.624,-0.3699,-0.0882,0.9249,-0.3697,0.8417,0.3934,-0.3685,0.5124,-0.7757,-0.3672,0.0219,0.9299,-0.3637,-0.6416,-0.6753,-0.3614,-0.6924,-0.6245,-0.3609,-0.9171,0.1694,-0.3569,-0.8375,0.4138,-0.356,0.3088,0.882,-0.3541,-0.396,0.8473,-0.3533,0.1794,0.9181,-0.352,0.7309,-0.5847,-0.3496,-0.85,-0.3942,-0.3454,0.8581,-0.38,-0.3443,0.5663,-0.7488,-0.3436,0.7131,0.6111,-0.3426,0.9386,-0.0394,-0.3415,-0.0995,-0.9346,-0.3411,0.0712,-0.9373,-0.3392,0.8611,0.3786,-0.3389,-0.0195,-0.9406,-0.3375,-0.8086,0.4819,-0.3352,0.5794,-0.7429,-0.3347,0.6589,-0.6736,-0.3345,-0.9422,0.0193,-0.3331,0.6645,0.6689,-0.3321,-0.3899,0.8589,-0.3314,0.4061,0.8516,-0.3313,-0.8218,0.4637,-0.3304,0.8609,0.3868,-0.3281,0.0565,-0.943,-0.3273,0.5334,-0.78,-0.3236,0.7712,0.5482,-0.3226,-0.2761,-0.9054,-0.3223,-0.889,-0.3253,-0.3219,0.9464,0.0275,-0.3214,-0.29,0.9014,-0.3158,0.2022,0.927,-0.3152,0.7551,-0.5749,-0.3142,-0.9471,0.0653,-0.3132,0.5025,0.8058,-0.3131,-0.816,0.4859,-0.3129,0.9041,0.291,-0.3116,-0.7762,0.5481,-0.3088,0.1119,0.9445,-0.3076,-0.0384,-0.9507,-0.3072,-0.2219,-0.9254,-0.3047,-0.8304,0.4664,-0.3022,0.9424,-0.1437,-0.3014,0.8515,0.429,-0.2986,0.4205,-0.8568,-0.2983,-0.9218,0.2477,-0.2978,-0.8923,0.3392,-0.2974,-0.1531,0.9424,-0.2966,-0.0437,-0.954,-0.2928,0.835,-0.466,-0.2926,0.9068,0.3035,-0.2913,-0.9449,0.1494,-0.2885,-0.5243,-0.8012,-0.2865,-0.139,0.948,-0.2818,0.2458,0.9275,-0.2815,0.0226,0.9593,-0.2798,-0.8641,-0.4183,-0.2772,0.9217,-0.2714,-0.2772,-0.8313,0.4817,-0.2741,0.9051,0.3251,-0.274,0.8881,0.3692,-0.2728,-0.3258,-0.9052,-0.2658,0.4311,-0.8623,-0.2631,-0.2592,0.9293,-0.2611,-0.4843,0.835,-0.2606,-0.774,0.5771,-0.258,-0.5759,0.7757,-0.2486,0.6616,-0.7075,-0.2464,-0.9646,0.0936,-0.2446,0.4446,0.8617,-0.2442,-0.7147,-0.6554,-0.2423,0.9469,0.2115,-0.2415,0.8999,0.3631,-0.2404,-0.3172,0.9174,-0.237,-0.9588,-0.1564,-0.2359,-0.9592,-0.1557,-0.2343,0.9422,0.2395,-0.2339,-0.7655,0.5993,-0.2339,-0.8598,0.4539,-0.2332,-0.6093,0.7579,-0.2309,-0.9562,0.1801,-0.2298,0.9383,0.2584,-0.2294,0.9272,-0.2962,-0.2274,-0.5663,0.7922,-0.2274,0.9487,0.2199,-0.2268,-0.579,0.7831,-0.2257,0.9738,-0.0293,-0.2244,0.4551,-0.8617,-0.2237,-0.9029,-0.367,-0.2224,-0.6399,-0.7356,-0.2218,0.3245,0.9195,-0.2214,-0.4583,0.8608,-0.221,-0.4504,0.8651,-0.2197,0.6553,-0.7227,-0.2195,0.0111,-0.9756,-0.2156,-0.7593,0.6139,-0.2154,-0.7473,0.6287,-0.2146,0.9501,0.2264,-0.2143,0.9711,-0.1052,-0.2143,-0.9455,-0.2453,-0.2134,0.6772,-0.7042,-0.2118,-0.1236,0.9695,-0.2114,-0.8824,0.4204,-0.2107,0.791,-0.5744,-0.2088,0.0497,-0.9767,-0.2083,0.8972,-0.3893,-0.2074,0.3033,0.9301,-0.2063,0.072,0.9758,-0.2035,0.9581,0.2017,-0.2026,-0.0019,-0.9793,-0.1994,0.5675,-0.7989,-0.199,0.6856,0.7003,-0.1983,0.9313,0.3054,-0.1968,0.9324,0.3032,-0.1954,-0.309,-0.9308,-0.1952,0.9761,0.0953,-0.194,0.7796,-0.5954,-0.1935,0.1339,0.9719,-0.1918,0.7775,-0.5989,-0.1897,0.8716,-0.4521,-0.1888,-0.7232,-0.6643,-0.1867,0.8524,0.4883,-0.1862,-0.6749,0.714,-0.1824,-0.6758,0.7142,-0.1794,-0.9803,-0.0831,-0.1794,0.0982,-0.9789,-0.1762,0.833,-0.5244,-0.1745,0.6213,-0.7639,-0.1738,0.7261,-0.6653,-0.1712,0.9804,-0.0978,-0.1689,0.0665,0.9834,-0.1688,-0.3698,0.9136,-0.1685,0.2385,0.9564,-0.1674,0.4384,0.883,-0.1667,0.0043,-0.986,-0.1663,0.921,0.3523,-0.164,0.7955,0.5834,-0.1631,0.9049,0.3932,-0.162,-0.006,-0.9868,-0.1599,-0.7189,0.6765,-0.1569,0.7531,-0.639,-0.1547,-0.1743,-0.9725,-0.154,0.9713,0.1815,-0.1525,0.9768,0.1506,-0.1523,-0.925,0.3481,-0.1517,-0.5111,-0.846,-0.1515,-0.1016,-0.9832,-0.1515,0.9884,-0.0136,-0.148,-0.6068,0.7809,-0.1472,0.5123,-0.8461,-0.146,-0.7288,0.669,-0.1446,-0.8043,0.5764,-0.1437,0.8797,-0.4533,-0.1431,-0.0462,0.9886,-0.1429,0.9783,-0.1501,-0.1412,0.0686,0.9876,-0.1396,0.9902,0.006,-0.1393,0.1796,-0.9738,-0.1383,0.8515,-0.5058,-0.1375,0.3181,-0.938,-0.1362,-0.9801,-0.1445,-0.1347,-0.8103,0.5703,-0.1328,0.9847,-0.1132,-0.1327,0.4674,0.874,-0.1324,0.153,-0.9793,-0.1323,0.6758,-0.7252,-0.1307,-0.1685,0.977,-0.1303,0.5729,-0.8092,-0.1294,-0.9855,0.1102,-0.1283,0.6268,-0.7686,-0.1268,-0.8985,0.4203,-0.1257,-0.9428,-0.3088,-0.1254,0.0153,-0.992,-0.1253,-0.727,0.6752,-0.1246,0.8418,-0.5252,-0.1244,-0.3926,0.9112,-0.1222,0.9807,0.1525,-0.1192,-0.2302,0.9658,-0.1186,0.1491,-0.9817,-0.116,0.6062,-0.7868,-0.1158,0.4063,-0.9064,-0.1117,-0.4144,0.9032,-0.1072,0.4239,-0.8993,-0.1067,-0.1482,0.9832,-0.1065,-0.9934,0.0419,-0.1056,0.0614,-0.9925,-0.1052,0.7291,0.6763,-0.1052,0.7181,-0.6879,-0.1052,0.5848,-0.8043,-0.1051,-0.7323,0.6729,-0.1039,-0.9762,-0.1906,-0.1028,0.7547,-0.648,-0.1025,-0.6214,0.7767,-0.1025,0.9633,0.2481,-0.1017,0.6923,-0.7144,-0.1013,0.8874,-0.4498,-0.0993,0.9352,0.3399,-0.0987,-0.4868,0.8679,-0.0986,0.7767,-0.6222,-0.0983,-0.7204,-0.6865,-0.0964,-0.8605,-0.5003,-0.0956,0.7424,0.6631,-0.0939,-0.1774,0.9796,-0.0934,-0.9946,0.0462,-0.0904,0.7957,-0.5989,-0.0902,0.9549,0.283,-0.0881,0.8084,-0.582,-0.0881,0.0941,-0.9917,-0.0874,0.763,-0.6405,-0.087,0.3259,0.9414,-0.0829,0.7533,-0.6524,-0.0799,0.6149,-0.7846,-0.0796,-0.7259,-0.6831,-0.0773,0.6346,0.769,-0.0772,0.7615,-0.6436,-0.076,-0.8494,-0.5223,-0.0747,-0.4118,-0.9082,-0.0736,0.9479,-0.31,-0.0734,0.2077,0.9754,-0.0729,-0.9837,0.1642,-0.0724,-0.0104,-0.9973,-0.0699,-0.8892,-0.4521,-0.0652,0.235,-0.9698,-0.0645,0.2745,0.9594,-0.0638,0.6439,-0.7625,-0.0618,-0.8489,0.5249,-0.0604,-0.9943,0.088,-0.0601,0.5371,0.8414,-0.056,-0.8742,0.4823,-0.0556,0.7611,0.6462,-0.0555,0.0398,-0.9977,-0.0499,0.8195,-0.5708,-0.0494,0.9833,-0.1752,-0.0493,0.1983,-0.9789,-0.0492,0.157,-0.9864,-0.0485,-0.3095,0.9497,-0.0479,0.1523,-0.9872,-0.0476,-0.7484,-0.6616,-0.0449,-0.0879,0.9951,-0.0425,0.9153,0.4005,-0.0422,-0.9149,-0.4014,-0.0422,0.8428,-0.5365,-0.0416,0.2955,-0.9544,-0.0408,0.8941,-0.4461,-0.0406,0.9962,-0.077,-0.0397,-0.077,-0.9962,-0.0386,0.9988,-0.031,-0.0379,0.8827,0.4684,-0.0374,0.6328,-0.7734,-0.0369,0.7831,-0.6208,-0.035,-0.9876,-0.153,-0.0349,0.1666,-0.9854,-0.0348,0.9662,0.2555,-0.0313,0.1115,-0.9933,-0.0294,0.4783,-0.8777,-0.0281,-0.8576,0.5136,-0.0266,0.78,-0.6253,-0.0257,0.1303,-0.9911,-0.0247,0.1572,-0.9873,-0.0242,-0.7867,0.6169,-0.0224,0.6238,0.7812,-0.0221,-0.9305,-0.3656,-0.0221,-0.9972,-0.072,-0.02,0.2605,-0.9653,-0.0194,0.2301,-0.973,-0.0191,0.4206,-0.907,-0.0191,0.374,-0.9272,-0.0189,-0.9923,-0.122,-0.0185,-0.8245,-0.5656,-0.0175,0.8781,-0.4782,-0.0163,0.5936,0.8046,-0.0159,0.1574,-0.9874,-0.0156,-0.85,0.5265,-0.0155,0.5141,-0.8576,-0.0151,0.6614,0.7499,-0.0147,0.0342,-0.9993,-0.0138,0.7346,-0.6783,-0.0133,0.9753,0.2206,-0.0132,0.8486,-0.5289,-0.0123,-0.2103,-0.9776,-0.0112,-0.8514,0.5245,-0.0108,-0.9537,0.3004,-0.0105,0.9796,-0.2007,-0.0097,-0.9987,0.0503,-0.0079,0.1703,-0.9854,-0.0064,0.5957,0.8032,-0.004,0.1961,-0.9806,-0.0031,0.738,-0.6748,-0.0022,-0.9959,0.0908,-0.0004,0.4046,-0.9145,0.0,0.0519,0.9987,0.0,-0.0675,0.9977,0.0,0.1515,0.9885,0.0,-0.1659,0.9861,0.0,-0.2077,0.9782,0.0,0.2486,0.9686,0.0,-0.3347,0.9423,0.0,-0.4584,0.8887,0.0,0.4772,0.8788,0.0,0.7145,0.6996,0.0,-0.7502,0.6612,0.0,-0.8696,0.4937,0.0,0.8988,0.4383,0.0,-0.9231,0.3846,0.0,0.9508,0.3098,0.0,0.9559,0.2935,0.0,0.9729,0.2313,0.0,0.9731,0.2304,0.0,0.9897,0.1435,0.0,-0.9936,0.1128,0.0,-0.9975,0.0712,0.0,-0.997,-0.078,0.0,-0.9914,-0.1308,0.0,-0.9872,-0.1593,0.0,-0.9762,-0.2168,0.0,-0.9057,-0.424,0.0,-0.8628,-0.5055,0.0,0.7688,-0.6395,0.0,-0.7535,-0.6574,0.0,0.7268,-0.6869,0.0,0.6529,-0.7574,0.0,0.5986,-0.8011,0.0,0.418,-0.9085,0.0,0.3423,-0.9396,0.0,-0.2164,-0.9763,0.0,0.1707,-0.9853,0.0,0.1601,-0.9871,0.0,0.1399,-0.9902,0.0,0.1216,-0.9926,0.0,0.1155,-0.9933,0.0,-0.0832,-0.9965,0.0,-0.0677,-0.9977,0.0004,0.4046,-0.9145,0.0022,-0.9959,0.0908,0.0042,0.7402,-0.6723,0.0057,-0.3408,-0.9401,0.0064,0.5957,0.8032,0.0071,0.944,-0.3299,0.0087,0.9832,-0.1826,0.0088,0.2361,0.9717,0.0093,0.5,-0.866,0.0097,-0.9987,0.0503,0.0108,-0.9537,0.3004,0.0112,-0.8514,0.5245,0.0116,0.7306,-0.6827,0.0132,0.8486,-0.5289,0.0133,0.9753,0.2206,0.0147,0.0342,-0.9993,0.0151,0.6614,0.7499,0.0155,0.5141,-0.8576,0.0156,-0.85,0.5265,0.0172,-0.5327,0.8461,0.0175,0.8781,-0.4782,0.0176,0.1265,-0.9918,0.0188,-0.3634,-0.9314,0.0189,-0.9923,-0.122,0.0191,0.374,-0.9272,0.0221,-0.9972,-0.072,0.0224,0.6238,0.7812,0.0229,0.7685,-0.6394,0.0241,0.2153,-0.9763,0.0247,0.1572,-0.9873,0.0254,-0.8539,0.5198,0.0257,0.1303,-0.9911,0.0263,0.2226,-0.9746,0.0281,-0.8576,0.5136,0.0302,-0.2088,-0.9775,0.032,0.1484,-0.9884,0.0348,0.9662,0.2555,0.035,-0.9876,-0.153,0.0363,0.8301,-0.5564,0.0374,0.6328,-0.7734,0.0379,0.8827,0.4684,0.0383,0.8996,-0.4351,0.0383,-0.4312,0.9015,0.0397,-0.077,-0.9962,0.0397,0.1168,-0.9924,0.0422,-0.9149,-0.4014,0.0425,0.9153,0.4005,0.0432,-0.9244,-0.3791,0.0449,-0.0879,0.9951,0.0462,0.1495,-0.9877,0.0476,-0.7484,-0.6616,0.0479,0.1523,-0.9872,0.0489,-0.8122,0.5814,0.0494,0.9833,-0.1752,0.0497,0.7663,0.6405,0.0499,0.8432,-0.5352,0.0511,0.2863,-0.9568,0.0555,0.0398,-0.9977,0.056,-0.8742,0.4823,0.0604,-0.9943,0.088,0.0652,0.235,-0.9698,0.0691,0.7975,-0.5993,0.0699,-0.8892,-0.4521,0.0704,0.7338,-0.6758,0.0724,-0.0104,-0.9973,0.0729,-0.9837,0.1642,0.0729,0.6151,-0.7851,0.0734,0.2077,0.9754,0.0736,0.9479,-0.31,0.076,-0.8494,-0.5223,0.077,0.6093,-0.7892,0.0772,-0.404,-0.9115,0.0773,0.6346,0.769,0.0796,-0.7259,-0.6831,0.0797,0.7593,-0.6458,0.0864,-0.2733,0.958,0.0865,0.1494,-0.985,0.087,0.3259,0.9414,0.0878,-0.7181,-0.6903,0.0902,0.9549,0.283,0.0903,0.8363,-0.5407,0.0906,0.7659,-0.6365,0.0927,0.4284,-0.8988,0.0939,-0.1774,0.9796,0.0956,0.7424,0.6631,0.0969,0.8867,-0.452,0.0977,-0.6291,0.7712,0.0987,-0.4868,0.8679,0.0988,0.7187,-0.6882,0.0993,0.9352,0.3399,0.1013,0.5571,0.8243,0.1017,0.7793,-0.6184,0.102,-0.8671,-0.4875,0.1025,0.9633,0.2481,0.1039,-0.9762,-0.1906,0.1051,-0.7323,0.6729,0.1052,0.7291,0.6763,0.1056,0.0614,-0.9925,0.1065,-0.9934,0.0419,0.1067,0.7426,-0.6612,0.1067,-0.1482,0.9832,0.1072,0.4239,-0.8993,0.1083,-0.9922,0.0621,0.1117,-0.4144,0.9032,0.1158,0.4063,-0.9064,0.116,0.6062,-0.7868,0.117,0.5894,-0.7993,0.1227,0.0985,-0.9875,0.1244,-0.3926,0.9112,0.1246,0.8418,-0.5252,0.1253,-0.727,0.6752,0.1254,0.0153,-0.992,0.1257,-0.9428,-0.3088,0.1268,0.1416,-0.9818,0.1268,-0.8985,0.4203,0.1276,0.6311,-0.7651,0.1294,-0.9855,0.1102,0.1307,-0.1685,0.977,0.1324,0.153,-0.9793,0.1327,0.4674,0.874,0.1347,-0.8103,0.5703,0.1347,0.573,-0.8084,0.136,0.3352,-0.9323,0.1362,-0.9801,-0.1445,0.1376,0.8508,-0.5072,0.1378,0.1955,-0.971,0.1379,0.0265,-0.9901,0.1389,0.9774,0.1595,0.1396,0.9902,0.006,0.1412,0.0686,0.9876,0.1427,0.9798,-0.1401,0.1429,0.9783,-0.1501,0.1431,-0.0462,0.9886,0.1437,0.8797,-0.4533,0.1464,0.5528,-0.8203,0.148,-0.6035,0.7835,0.1506,-0.7183,0.6792,0.1507,-0.3503,0.9244,0.1515,0.9884,-0.0136,0.1515,-0.1016,-0.9832,0.1517,-0.5111,-0.846,0.1523,-0.925,0.3481,0.1525,0.9768,0.1506,0.1537,-0.2107,0.9654,0.154,0.9713,0.1815,0.1547,-0.1743,-0.9725,0.1564,0.4166,0.8956,0.1569,0.7531,-0.639,0.1631,0.9049,0.3932,0.1667,0.0043,-0.986,0.1683,0.716,-0.6775,0.1685,0.2385,0.9564,0.1689,0.0665,0.9834,0.1704,-0.283,-0.9439,0.171,0.9227,0.3454,0.1755,0.5889,-0.7889,0.176,0.6729,-0.7185,0.1768,-0.7136,0.6779,0.1794,0.0982,-0.9789,0.1796,-0.7647,0.6188,0.1828,0.9512,0.2487,0.1862,-0.6749,0.714,0.1877,-0.6954,0.6937,0.1888,-0.7232,-0.6643,0.1897,0.8716,-0.4521,0.1919,0.7989,0.5701,0.1935,0.1339,0.9719,0.194,0.7796,-0.5954,0.1946,0.3478,-0.9172,0.195,-0.2157,-0.9568,0.1952,0.9761,0.0953,0.1968,0.9324,0.3032,0.1989,-0.534,0.8217,0.199,0.6856,0.7003,0.1994,0.5675,-0.7989,0.2,0.804,-0.56,0.2023,0.9732,-0.1092,0.2026,-0.0019,-0.9793,0.2046,-0.9733,-0.1041,0.2056,0.9271,0.3135,0.2063,0.9736,-0.0977,0.2063,0.072,0.9758,0.2088,0.0497,-0.9767,0.2107,0.791,-0.5744,0.2114,-0.8824,0.4204,0.2115,0.9054,-0.3681,0.2118,-0.1236,0.9695,0.2134,0.6772,-0.7042,0.2142,0.6741,-0.707,0.2143,-0.9455,-0.2453,0.2154,-0.7473,0.6287,0.2154,0.9456,0.2437,0.2166,0.6565,-0.7226,0.2189,0.3204,0.9217,0.2218,0.3245,0.9195,0.2224,-0.6399,-0.7356,0.2237,-0.9029,-0.367,0.2244,0.4551,-0.8617,0.2248,0.9744,-0.005,0.2274,0.9487,0.2199,0.2275,0.9736,0.0192,0.2294,0.9272,-0.2962,0.2298,0.9383,0.2584,0.2303,-0.5672,0.7907,0.2309,-0.9562,0.1801,0.2332,-0.6093,0.7579,0.2336,-0.7706,0.593,0.2339,-0.8598,0.4539,0.2339,-0.7655,0.5993,0.2343,0.9422,0.2395,0.2359,-0.9592,-0.1557,0.237,-0.9588,-0.1564,0.2404,-0.3172,0.9174,0.2415,0.8999,0.3631,0.2417,0.7618,-0.601,0.2423,0.9469,0.2115,0.2442,-0.7147,-0.6554,0.2451,0.8377,0.4881,0.2464,-0.9646,0.0936,0.2503,0.8522,-0.4594,0.2506,-0.5652,0.786,0.2537,-0.834,0.4901,0.258,-0.5759,0.7757,0.2608,0.4205,-0.869,0.2611,-0.4843,0.835,0.2631,-0.2592,0.9293,0.2632,-0.0409,-0.9639,0.2632,0.4316,0.8628,0.2704,-0.4756,0.8371,0.2728,-0.3258,-0.9052,0.2729,-0.9476,0.166,0.274,0.8881,0.3692,0.2769,0.9143,0.2957,0.2772,0.9217,-0.2714,0.2798,-0.8641,-0.4183,0.2815,0.0226,0.9593,0.2833,-0.7863,0.549,0.2865,-0.139,0.948,0.2884,-0.0544,-0.956,0.2885,-0.5243,-0.8012,0.2926,0.9068,0.3035,0.2961,0.9468,-0.1259,0.2966,-0.0437,-0.954,0.2974,-0.1531,0.9424,0.2983,-0.9218,0.2477,0.3014,0.8515,0.429,0.3037,0.6802,0.6672,0.3055,-0.8892,0.3406,0.3088,0.1119,0.9445,0.3129,0.9041,0.291,0.3131,-0.816,0.4859,0.3132,0.5025,0.8058,0.3142,-0.9471,0.0653,0.3158,0.2022,0.927,0.3203,0.6566,-0.6828,0.3214,-0.29,0.9014,0.3219,-0.7927,0.5177,0.3236,0.7712,0.5482,0.3255,0.1782,0.9286,0.3273,0.5334,-0.78,0.3296,-0.8274,0.4547,0.3297,-0.8671,0.3733,0.3304,0.8609,0.3868,0.3304,-0.8272,0.4545,0.332,0.4117,0.8487,0.3321,-0.3899,0.8589,0.3322,0.7466,-0.5764,0.3334,-0.889,-0.3138,0.3345,-0.9422,0.0193,0.3352,0.5794,-0.7429,0.3354,0.0614,-0.9401,0.3415,-0.0995,-0.9346,0.3433,0.0019,-0.9392,0.3436,0.7131,0.6111,0.3469,0.8577,-0.3795,0.3472,0.3208,0.8812,0.3496,-0.85,-0.3942,0.352,0.7309,-0.5847,0.3541,-0.396,0.8473,0.3562,0.0997,-0.9291,0.3562,0.6273,-0.6925,0.3569,-0.8375,0.4138,0.3609,0.8605,0.3596,0.3614,-0.6924,-0.6245,0.3637,0.1893,0.9121,0.3647,-0.6549,-0.6619,0.367,-0.9106,0.1901,0.3672,0.0219,0.9299,0.3699,-0.0882,0.9249,0.3708,0.6878,0.624,0.3715,0.9262,-0.0642,0.3734,-0.1628,0.9133,0.3754,0.8809,0.2882,0.3754,0.5536,-0.7434,0.38,-0.4927,0.7828,0.3818,0.7357,-0.5594,0.3828,0.8247,0.4163,0.3904,-0.2116,-0.896,0.3906,-0.815,0.428,0.3914,0.0543,0.9186,0.3914,0.487,-0.7808,0.3946,-0.8054,0.4422,0.3956,-0.7991,-0.4528,0.3957,0.7244,0.5645,0.3967,-0.4148,0.8189};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_44_vector_2()
		{
			double[] value = {0.3968,-0.9108,-0.1145,0.397,-0.704,-0.5889,0.4008,-0.3116,0.8616,0.4008,-0.0065,-0.9161,0.401,-0.7652,0.5037,0.4019,0.4836,-0.7776,0.4044,0.5448,0.7346,0.405,0.135,-0.9043,0.4068,0.8306,-0.3802,0.4084,0.5634,-0.7182,0.4092,-0.4457,-0.7962,0.4097,0.4374,-0.8005,0.4104,0.8689,0.2768,0.4112,-0.5509,0.7262,0.4114,0.9109,0.0322,0.4146,0.6898,0.5935,0.4158,0.8967,-0.1517,0.4174,0.5671,0.71,0.4199,0.5323,-0.7351,0.42,0.0374,0.9067,0.4201,0.8662,0.2706,0.4229,0.4768,0.7706,0.4229,0.662,0.6187,0.4236,0.5521,-0.7182,0.4237,0.5457,-0.7229,0.4243,0.1205,0.8975,0.4246,0.2046,-0.8819,0.4246,-0.8051,0.4142,0.4248,-0.4958,0.7575,0.4261,0.8294,-0.3614,0.4277,0.583,-0.6908,0.4278,0.8524,-0.3005,0.4284,-0.8138,0.3927,0.4301,-0.2152,-0.8768,0.4337,0.8996,0.0519,0.4374,-0.6196,0.6518,0.4378,0.8522,0.2864,0.439,0.7398,0.5098,0.4394,-0.4852,-0.756,0.44,0.8212,0.3632,0.4405,0.058,0.8959,0.4417,0.2517,0.8611,0.4429,-0.1227,0.8881,0.4434,0.3331,0.8321,0.447,-0.8677,0.2175,0.4499,-0.8867,-0.1063,0.4549,0.1329,0.8806,0.4562,-0.7355,0.5009,0.458,-0.5994,0.6565,0.4589,-0.201,0.8654,0.46,-0.2203,0.8601,0.4617,0.8869,0.0133,0.4622,-0.0802,-0.8832,0.4658,-0.8849,0.0084,0.4664,-0.8828,-0.0564,0.4695,-0.7358,0.4881,0.4699,-0.803,0.3665,0.4736,0.6139,-0.6315,0.4755,0.8594,-0.1882,0.4801,-0.7942,0.3725,0.4825,0.8207,0.3059,0.483,0.5101,-0.7117,0.4831,-0.8664,-0.1265,0.4845,-0.331,0.8097,0.4858,0.386,0.7842,0.4884,-0.4876,0.7237,0.4913,-0.0151,-0.8709,0.492,-0.8705,0.0139,0.4923,0.7261,0.48,0.4932,0.2776,-0.8245,0.4984,0.7059,-0.5034,0.4984,-0.541,0.6774,0.5001,0.4005,-0.7678,0.5013,-0.8647,-0.0312,0.5031,-0.7152,-0.4851,0.5055,0.7968,-0.3311,0.5073,0.8026,0.314,0.5079,0.7982,-0.3238,0.5083,0.3269,-0.7967,0.5108,-0.8349,0.2052,0.5129,0.2037,0.834,0.513,0.0292,0.8579,0.5143,0.8553,-0.0635,0.515,0.2659,-0.8149,0.5154,0.2453,-0.8211,0.5167,0.5456,0.6599,0.5178,0.7129,-0.473,0.5183,0.3397,-0.7848,0.5208,0.038,-0.8529,0.522,-0.5745,-0.6304,0.5221,-0.0921,0.8479,0.5247,-0.6286,0.5741,0.5251,0.8281,-0.1961,0.5261,-0.1975,0.8272,0.5261,-0.7973,0.2958,0.5263,-0.8417,0.1207,0.5273,0.7523,0.395,0.5308,0.6897,0.4925,0.5361,-0.2991,0.7894,0.5363,0.317,-0.7822,0.5363,-0.597,0.5966,0.5416,0.7668,-0.3444,0.5436,0.683,0.4879,0.5442,-0.8089,-0.2228,0.5454,-0.0468,0.8369,0.546,0.365,-0.7541,0.5465,-0.1391,-0.8258,0.5466,-0.1868,-0.8163,0.5473,-0.8296,0.1107,0.5477,-0.5101,0.6632,0.5497,-0.5448,0.6333,0.5516,0.2835,-0.7845,0.5548,-0.1826,-0.8117,0.5549,-0.8301,-0.0548,0.5574,-0.5882,0.5859,0.5575,-0.2624,0.7876,0.5605,0.6732,-0.4823,0.5629,0.7604,-0.324,0.5641,0.8199,0.098,0.5656,-0.0351,-0.8239,0.5658,0.7059,-0.4262,0.5677,0.8204,-0.0684,0.5678,-0.723,-0.3936,0.5687,-0.1129,-0.8148,0.569,-0.0051,0.8223,0.569,0.6515,-0.5018,0.5694,0.5776,0.5849,0.5709,-0.81,-0.1343,0.5715,-0.1684,0.8031,0.5726,-0.2083,0.793,0.5734,0.241,-0.783,0.5751,0.0072,0.8181,0.5766,0.8116,-0.0937,0.5773,-0.1899,-0.7941,0.5783,-0.0922,0.8106,0.5791,-0.8083,0.1061,0.5794,0.2499,0.7758,0.5811,0.2651,0.7695,0.5813,-0.5767,-0.5741,0.5848,0.0557,-0.8093,0.5869,-0.8097,-0.0024,0.5905,0.3587,-0.723,0.5961,0.2349,0.7677,0.598,-0.7384,-0.3119,0.599,0.7943,-0.1015,0.5992,-0.0821,0.7964,0.6025,-0.0189,0.7979,0.6028,0.1174,0.7892,0.6064,-0.2018,0.7691,0.6074,0.6887,0.3959,0.6115,0.6999,-0.369,0.6143,-0.7549,-0.2297,0.6143,0.199,0.7636,0.6158,-0.7695,-0.1692,0.6162,0.1728,-0.7684,0.6227,0.2429,0.7438,0.6229,0.3122,-0.7173,0.6239,-0.0065,0.7815,0.6251,0.772,0.115,0.6255,-0.7801,0.0131,0.6295,0.7232,0.2841,0.6318,-0.6822,-0.3681,0.6322,-0.1891,0.7514,0.6343,0.724,0.271,0.6391,-0.2931,0.711,0.6413,0.0977,-0.761,0.6442,0.7319,0.222,0.6458,-0.7481,0.1527,0.6462,-0.6094,0.4595,0.6462,-0.1779,-0.7421,0.648,0.7454,-0.1562,0.652,0.2033,0.7305,0.6572,-0.7502,0.0735,0.6581,-0.3716,0.6548,0.6698,-0.6348,-0.3853,0.6704,0.6594,0.3403,0.6738,0.6398,-0.3698,0.6844,0.6813,0.2597,0.685,-0.0831,-0.7238,0.6865,-0.5095,0.5187,0.6876,0.2,-0.698,0.6919,0.2168,-0.6886,0.6925,0.0123,-0.7213,0.6928,-0.4606,0.5548,0.6932,0.553,0.4622,0.7006,-0.0563,-0.7114,0.702,-0.0452,0.7108,0.7052,-0.215,0.6756,0.7066,0.2672,0.6552,0.7078,-0.0909,0.7006,0.7142,0.0652,-0.6969,0.7147,-0.6595,0.2328,0.7147,0.32,-0.6219,0.7154,-0.0735,-0.6949,0.7197,-0.6938,-0.0255,0.7204,0.6933,-0.0191,0.721,0.0583,-0.6905,0.7217,0.3064,0.6207,0.7243,-0.1835,0.6646,0.7288,0.0614,0.6819,0.7293,-0.0845,-0.6789,0.7298,-0.6654,0.1567,0.7302,-0.5082,-0.4567,0.7316,-0.6472,-0.2142,0.7318,0.492,-0.4716,0.7322,-0.3537,0.5821,0.7324,0.6793,-0.0465,0.7373,0.3534,-0.5758,0.7391,0.2533,-0.6241,0.7401,-0.6723,0.0188,0.7435,-0.1864,0.6422,0.7451,-0.3907,0.5405,0.7453,-0.6184,0.2492,0.7492,0.6421,-0.1626,0.7503,-0.2927,-0.5928,0.7511,-0.6472,-0.1304,0.7511,-0.0558,-0.6578,0.7512,0.4274,-0.5031,0.7536,-0.6336,0.1752,0.7578,0.5418,-0.3636,0.7602,-0.64,0.1119,0.7604,0.1395,0.6343,0.761,-0.5371,0.3638,0.7633,0.5356,-0.3611,0.7663,-0.4756,-0.4319,0.7691,-0.5515,0.3231,0.771,0.5099,-0.3816,0.7717,-0.629,-0.0942,0.7721,0.0836,0.63,0.7727,-0.6318,0.0613,0.7737,0.1858,0.6057,0.7738,0.1319,-0.6196,0.7741,0.5555,-0.3037,0.7751,0.6154,-0.1434,0.7798,0.5881,-0.2146,0.7807,0.5935,0.1959,0.7831,-0.0311,-0.6211,0.7866,-0.4804,0.3878,0.7876,0.0013,0.6162,0.7903,-0.0569,-0.6101,0.7908,-0.3316,0.5146,0.7933,0.2966,-0.5317,0.7939,0.0278,0.6074,0.7952,-0.0565,0.6038,0.798,-0.0736,-0.5982,0.7996,-0.0344,-0.5995,0.8,-0.5887,0.1162,0.8031,0.3863,-0.4537,0.8049,-0.5932,0.0145,0.8063,0.0218,0.5912,0.8079,-0.0752,0.5845,0.8094,-0.5811,0.0851,0.8097,-0.0973,-0.5787,0.8124,0.2275,0.5369,0.8172,0.0135,-0.5763,0.8181,-0.5089,0.2679,0.8186,-0.5461,0.178,0.8211,-0.4933,0.2872,0.8241,-0.4936,-0.278,0.826,-0.2557,0.5022,0.827,0.3622,0.4301,0.8334,-0.2942,-0.4679,0.8347,0.4586,0.3049,0.8392,0.0002,0.5438,0.8404,0.5389,0.0573,0.8433,-0.5149,-0.1542,0.8435,0.4761,-0.2487,0.8449,0.257,0.4691,0.8459,-0.4775,0.2377,0.8467,0.5213,-0.1063,0.8487,0.4796,0.2228,0.8488,-0.5109,0.1365,0.849,-0.5144,0.1206,0.8494,-0.0281,-0.5269,0.8504,-0.1804,0.4942,0.8537,0.313,0.4162,0.8541,-0.4364,0.2829,0.8561,-0.0333,-0.5157,0.8597,-0.5063,-0.0677,0.863,-0.1637,0.4779,0.8657,-0.2838,0.4123,0.8668,-0.4315,0.25,0.8709,-0.0915,-0.4828,0.8817,0.3962,0.2562,0.8823,0.1857,0.4325,0.8849,-0.1986,0.4214,0.8863,-0.4623,0.0274,0.8887,0.4486,-0.0947,0.8907,0.2077,-0.4044,0.8926,0.4506,-0.018,0.894,-0.4378,0.0948,0.8979,-0.3781,0.2254,0.9005,-0.1752,-0.398,0.9006,-0.39,0.1921,0.9008,-0.3642,0.2365,0.9017,-0.1287,0.4128,0.9021,0.4311,0.0205,0.9059,0.0369,0.422,0.906,-0.0255,0.4225,0.9092,-0.3901,0.1457,0.9096,-0.2892,0.2983,0.9113,0.1725,0.3739,0.9113,0.1326,-0.3897,0.9134,-0.3975,0.0882,0.9147,0.3151,-0.2532,0.9159,0.1188,0.3835,0.9203,0.3872,0.0556,0.9222,-0.3819,-0.0609,0.9254,-0.0485,0.3759,0.9267,-0.152,-0.3438,0.9267,-0.2502,-0.2804,0.9286,-0.3521,0.1168,0.9293,-0.077,0.3612,0.931,-0.0646,0.3591,0.932,0.3528,0.0836,0.9335,0.1841,-0.3078,0.9352,0.2641,-0.2361,0.9378,-0.2546,-0.2362,0.941,0.2555,-0.2219,0.9419,-0.0862,0.3247,0.942,-0.2312,0.2432,0.9472,-0.082,-0.3101,0.9483,0.2427,-0.2045,0.9517,-0.0224,-0.3061,0.9538,0.2861,-0.0915,0.9553,0.2934,-0.0365,0.9574,-0.1945,0.2133,0.9588,0.0533,0.2791,0.9607,-0.2617,0.0926,0.9665,-0.0745,0.2457,0.9688,0.2412,0.0576,0.9702,0.1849,0.1569,0.9703,-0.2312,-0.0707,0.9766,-0.0033,-0.2148,0.9819,0.1824,0.0514,0.9856,0.0588,0.1587,0.9877,0.1552,0.0171,0.9887,0.0012,0.15,0.9888,0.1485,0.0127,0.9895,0.0737,0.1246,0.9933,0.0835,-0.0796,0.996,0.0893,0.0092,0.9971,0.0551,-0.052,0.998,0.0633,0.002};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc3disc_Geo_5_49_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,0,15,7,-1,16,17,18,-1,19,20,21,-1,22,23,24,-1,25,26,27,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,37,38,39,-1,40,41,42,-1,43,44,45,-1,46,47,48,-1,49,50,51,-1,52,37,53,-1,54,55,56,-1,43,57,58,-1,59,60,49,-1,61,50,56,-1,62,63,64,-1,65,66,67,-1,68,69,70,-1,71,72,4,-1,73,74,75,-1,76,77,78,-1,79,77,80,-1,81,82,83,-1,84,85,79,-1,86,87,88,-1,10,89,90,-1,91,92,93,-1,93,92,6,-1,94,95,96,-1,97,98,11,-1,61,67,66,-1,99,100,101,-1,102,69,68,-1,38,103,72,-1,44,104,105,-1,44,42,104,-1,41,106,107,-1,26,108,109,-1,39,38,71,-1,108,26,22,-1,110,111,19,-1,55,112,67,-1,113,114,115,-1,116,117,98,-1,92,7,6,-1,93,118,119,-1,120,121,116,-1,122,123,87,-1,108,88,124,-1,125,126,110,-1,127,128,129,-1,14,130,115,-1,131,132,133,-1,80,134,135,-1,81,136,137,-1,83,138,139,-1,140,135,134,-1,141,74,71,-1,142,143,56,-1,47,144,43,-1,145,146,46,-1,147,64,148,-1,46,146,149,-1,149,103,38,-1,53,39,150,-1,151,102,152,-1,153,154,155,-1,29,28,156,-1,157,114,34,-1,158,159,160,-1,35,113,161,-1,156,162,20,-1,163,34,158,-1,164,31,33,-1,22,26,25,-1,16,165,17,-1,99,166,100,-1,9,167,10,-1,168,169,170,-1,94,6,124,-1,171,3,172,-1,105,104,173,-1,173,172,105,-1,3,5,172,-1,6,8,124,-1,173,171,172,-1,34,163,157,-1,165,21,17,-1,22,25,23,-1,164,174,31,-1,175,176,18,-1,20,24,156,-1,23,25,177,-1,35,114,113,-1,114,35,34,-1,156,177,29,-1,153,155,101,-1,178,151,152,-1,179,53,150,-1,37,149,38,-1,147,62,64,-1,43,48,47,-1,142,56,50,-1,180,67,112,-1,74,73,71,-1,140,134,181,-1,182,83,139,-1,83,3,138,-1,82,183,184,-1,135,84,80,-1,133,185,131,-1,14,186,130,-1,128,9,129,-1,126,111,110,-1,124,109,108,-1,122,87,86,-1,187,15,2,-1,116,97,120,-1,93,96,118,-1,98,97,116,-1,130,113,115,-1,61,55,67,-1,153,101,100,-1,19,165,110,-1,86,108,22,-1,39,71,73,-1,109,27,26,-1,42,41,107,-1,42,107,104,-1,105,45,44,-1,38,72,71,-1,150,39,73,-1,73,75,150,-1,68,152,102,-1,99,101,188,-1,66,189,61,-1,18,113,175,-1,97,11,90,-1,190,191,118,-1,91,93,192,-1,90,11,10,-1,88,108,86,-1,115,132,131,-1,79,80,84,-1,3,171,138,-1,83,193,81,-1,79,78,77,-1,76,78,194,-1,105,172,195,-1,74,196,75,-1,4,141,71,-1,68,70,197,-1,67,180,65,-1,62,52,63,-1,56,55,61,-1,43,144,57,-1,54,100,55,-1,48,145,46,-1,48,43,45,-1,58,40,42,-1,53,37,39,-1,61,51,50,-1,34,36,198,-1,31,199,32,-1,200,201,202,-1,30,203,28,-1,27,204,25,-1,205,22,24,-1,165,19,21,-1,176,16,18,-1,206,207,140,-1,11,129,9,-1,7,15,8,-1,3,184,4,-1,0,2,15,-1,14,89,186,-1,13,89,14,-1,197,85,84,-1,85,197,70,-1,141,137,74,-1,183,137,141,-1,87,191,190,-1,191,87,123,-1,195,208,209,-1,195,210,208,-1,174,211,31,-1,174,212,211,-1,213,198,214,-1,198,213,159,-1,32,202,33,-1,200,202,32,-1,164,202,215,-1,164,33,202,-1,30,201,200,-1,29,201,30,-1,204,201,29,-1,23,156,24,-1,23,177,156,-1,216,217,162,-1,216,36,217,-1,40,218,211,-1,40,219,218,-1,220,221,222,-1,223,221,220,-1,224,225,226,-1,225,224,221,-1,226,159,213,-1,160,159,226,-1,214,28,203,-1,214,216,28,-1,155,178,152,-1,154,178,155,-1,142,227,228,-1,60,227,142,-1,62,37,52,-1,62,149,37,-1,153,54,154,-1,100,54,153,-1,61,229,51,-1,61,189,229,-1,230,231,232,-1,223,231,230,-1,233,234,232,-1,233,59,234,-1,228,143,142,-1,228,235,143,-1,236,112,166,-1,112,236,169,-1,107,173,104,-1,237,173,107,-1,139,171,173,-1,139,138,171,-1,194,238,239,-1,240,238,194,-1,106,237,107,-1,106,241,237,-1,242,239,238,-1,243,239,242,-1,76,244,77,-1,244,76,245,-1,170,134,244,-1,181,134,170,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc3disc_Geo_5_49_coordIndex_2()
		{
			int[] value = {81,183,82,-1,81,137,183,-1,116,191,117,-1,116,118,191,-1,12,115,131,-1,12,14,115,-1,127,125,110,-1,129,125,127,-1,246,9,128,-1,9,246,167,-1,247,119,121,-1,248,119,247,-1,249,248,250,-1,248,249,192,-1,251,252,253,-1,241,252,251,-1,254,255,256,-1,243,255,254,-1,257,258,185,-1,257,259,258,-1,120,90,260,-1,90,120,97,-1,157,115,114,-1,115,157,132,-1,176,127,16,-1,128,127,176,-1,68,155,152,-1,155,68,261,-1,122,22,205,-1,122,86,22,-1,27,262,263,-1,27,109,262,-1,2,174,164,-1,2,1,174,-1,1,212,174,-1,1,264,212,-1,215,2,164,-1,187,2,215,-1,205,111,122,-1,111,205,19,-1,261,101,155,-1,101,261,188,-1,66,265,189,-1,265,66,266,-1,267,132,157,-1,132,267,133,-1,268,185,258,-1,185,268,131,-1,259,256,258,-1,259,254,256,-1,251,249,269,-1,251,253,249,-1,91,249,253,-1,192,249,91,-1,247,120,270,-1,247,121,120,-1,7,91,0,-1,7,92,91,-1,0,264,1,-1,264,0,252,-1,82,3,83,-1,82,184,3,-1,78,81,193,-1,81,78,79,-1,180,244,245,-1,168,244,180,-1,168,170,244,-1,76,271,245,-1,76,272,271,-1,269,238,273,-1,242,238,269,-1,274,173,237,-1,173,274,139,-1,272,194,239,-1,194,272,76,-1,5,72,210,-1,5,4,72,-1,172,210,195,-1,172,5,210,-1,166,206,236,-1,166,99,206,-1,112,168,180,-1,112,169,168,-1,65,266,66,-1,266,65,257,-1,275,276,277,-1,275,278,276,-1,279,144,277,-1,57,144,279,-1,51,59,49,-1,229,59,51,-1,234,59,229,-1,280,232,234,-1,230,232,280,-1,265,229,189,-1,229,265,281,-1,282,178,283,-1,282,151,178,-1,209,48,45,-1,209,145,48,-1,275,46,147,-1,275,47,46,-1,50,60,142,-1,49,60,50,-1,36,214,198,-1,36,216,214,-1,284,226,225,-1,284,160,226,-1,221,230,225,-1,230,221,223,-1,211,199,31,-1,211,218,199,-1,156,216,162,-1,28,216,156,-1,161,18,17,-1,18,161,113,-1,25,29,177,-1,25,204,29,-1,200,285,30,-1,200,32,285,-1,159,34,198,-1,34,159,158,-1,20,205,24,-1,19,205,20,-1,117,123,126,-1,117,191,123,-1,190,88,87,-1,190,95,88,-1,136,74,137,-1,136,196,74,-1,135,207,286,-1,135,140,207,-1,181,169,236,-1,181,170,169,-1,84,286,197,-1,84,135,286,-1,4,183,141,-1,184,183,4,-1,117,125,98,-1,117,126,125,-1,186,10,167,-1,89,10,186,-1,146,209,208,-1,145,209,146,-1,212,40,211,-1,212,41,40,-1,213,203,287,-1,214,203,213,-1,17,217,161,-1,21,217,17,-1,32,288,285,-1,32,199,288,-1,289,157,163,-1,289,267,157,-1,284,281,289,-1,281,284,280,-1,222,219,220,-1,222,218,219,-1,224,222,221,-1,224,288,222,-1,224,213,287,-1,226,213,224,-1,58,44,43,-1,58,42,44,-1,148,227,278,-1,227,148,228,-1,208,149,146,-1,208,103,149,-1,54,143,283,-1,54,56,143,-1,149,147,46,-1,149,62,147,-1,63,53,179,-1,63,52,53,-1,283,235,282,-1,283,143,235,-1,57,40,58,-1,57,219,40,-1,231,220,279,-1,220,231,223,-1,232,276,233,-1,231,276,232,-1,60,233,227,-1,233,60,59,-1,64,228,148,-1,64,235,228,-1,136,79,85,-1,136,81,79,-1,197,261,68,-1,261,197,286,-1,207,99,188,-1,207,206,99,-1,193,194,78,-1,194,193,240,-1,240,273,238,-1,182,273,240,-1,237,251,274,-1,251,237,241,-1,239,254,272,-1,254,239,243,-1,271,257,65,-1,271,259,257,-1,134,77,244,-1,80,77,134,-1,122,126,123,-1,111,126,122,-1,248,93,119,-1,192,93,248,-1,250,247,255,-1,247,250,248,-1,252,106,264,-1,252,241,106,-1,255,242,250,-1,242,255,243,-1,260,270,120,-1,268,270,260,-1,90,13,260,-1,13,90,89,-1,95,118,96,-1,95,190,118,-1,175,128,176,-1,246,128,175,-1,16,110,165,-1,127,110,16,-1,263,187,215,-1,187,263,262,-1,45,195,209,-1,45,105,195,-1,265,133,267,-1,265,266,133,-1,103,210,72,-1,103,208,210,-1,69,150,75,-1,102,150,69,-1,166,55,100,-1,112,55,166,-1,6,96,93,-1,6,94,96,-1,118,121,119,-1,116,121,118,-1,260,131,268,-1,260,12,131,-1,12,260,13,-1,258,270,268,-1,258,256,270,-1,250,269,249,-1,269,250,242,-1,0,253,252,-1,91,253,0,-1,247,256,255,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc3disc_Geo_5_49_coordIndex_3()
		{
			int[] value = {270,256,247,-1,109,8,262,-1,109,124,8,-1,262,15,187,-1,262,8,15,-1,130,167,246,-1,186,167,130,-1,266,185,133,-1,257,185,266,-1,65,245,271,-1,180,245,65,-1,272,259,271,-1,272,254,259,-1,273,251,269,-1,273,274,251,-1,273,139,274,-1,139,273,182,-1,83,240,193,-1,240,83,182,-1,188,286,207,-1,286,188,261,-1,70,75,196,-1,75,70,69,-1,227,276,278,-1,276,227,233,-1,279,276,231,-1,279,277,276,-1,219,279,220,-1,219,57,279,-1,281,234,229,-1,280,234,281,-1,235,63,282,-1,63,235,64,-1,282,179,151,-1,282,63,179,-1,277,47,275,-1,277,144,47,-1,154,283,178,-1,154,54,283,-1,147,278,275,-1,278,147,148,-1,150,151,179,-1,151,150,102,-1,224,285,288,-1,224,287,285,-1,199,222,288,-1,222,199,218,-1,160,163,158,-1,160,289,163,-1,289,160,284,-1,225,280,284,-1,280,225,230,-1,289,265,267,-1,281,265,289,-1,162,21,20,-1,21,162,217,-1,36,161,217,-1,36,35,161,-1,204,263,201,-1,204,27,263,-1,287,30,285,-1,203,30,287,-1,215,201,263,-1,215,202,201,-1,264,41,212,-1,264,106,41,-1,113,246,175,-1,130,246,113,-1,129,98,125,-1,11,98,129,-1,95,124,88,-1,95,94,124,-1,196,85,70,-1,136,85,196,-1,140,236,206,-1,140,181,236,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc3disc_Geo_5_49_normalIndex_1()
		{
			int[] value = {82,188,205,-1,259,171,176,-1,34,52,107,-1,33,28,31,-1,102,80,87,-1,82,121,52,-1,258,286,283,-1,273,288,285,-1,268,287,289,-1,276,240,245,-1,271,281,269,-1,214,217,241,-1,215,244,254,-1,14,51,26,-1,135,138,89,-1,79,68,58,-1,22,74,49,-1,110,76,122,-1,17,14,2,-1,41,64,55,-1,79,181,97,-1,129,90,110,-1,99,76,55,-1,7,15,16,-1,177,183,174,-1,194,98,196,-1,67,63,171,-1,69,170,78,-1,189,212,233,-1,264,212,235,-1,275,282,262,-1,242,255,264,-1,223,118,115,-1,28,50,40,-1,62,12,30,-1,30,12,34,-1,36,27,6,-1,56,48,31,-1,99,174,183,-1,197,53,88,-1,21,98,194,-1,51,46,63,-1,68,101,85,-1,68,89,101,-1,138,154,105,-1,240,222,226,-1,26,51,67,-1,222,240,268,-1,95,193,273,-1,64,187,174,-1,230,221,93,-1,25,38,48,-1,12,52,34,-1,30,11,43,-1,75,57,25,-1,218,100,118,-1,222,115,116,-1,61,91,95,-1,96,72,60,-1,87,70,93,-1,94,113,111,-1,235,250,260,-1,275,246,251,-1,262,274,227,-1,256,260,250,-1,164,170,67,-1,59,32,55,-1,74,163,79,-1,20,19,22,-1,18,16,35,-1,22,19,8,-1,8,46,51,-1,2,26,10,-1,1,21,9,-1,5,4,13,-1,281,271,272,-1,184,221,215,-1,178,199,159,-1,244,230,252,-1,272,265,288,-1,168,215,178,-1,236,214,241,-1,268,240,276,-1,258,277,286,-1,197,200,53,-1,33,37,28,-1,185,201,210,-1,36,34,116,-1,234,259,165,-1,85,101,208,-1,208,165,85,-1,259,176,165,-1,34,107,116,-1,208,234,165,-1,215,168,184,-1,277,285,286,-1,268,276,287,-1,236,219,214,-1,211,225,283,-1,288,289,272,-1,287,276,278,-1,244,221,230,-1,221,244,215,-1,272,278,281,-1,5,13,88,-1,3,1,9,-1,0,2,10,-1,14,8,51,-1,18,7,16,-1,79,49,74,-1,59,55,76,-1,192,174,187,-1,170,69,67,-1,256,250,239,-1,213,262,227,-1,262,259,274,-1,282,263,253,-1,260,242,235,-1,111,114,94,-1,87,54,70,-1,72,33,60,-1,91,193,95,-1,116,226,222,-1,218,118,223,-1,224,121,205,-1,25,56,75,-1,30,6,11,-1,48,56,25,-1,70,230,93,-1,99,64,174,-1,5,88,53,-1,273,277,95,-1,223,222,268,-1,26,67,69,-1,226,245,240,-1,89,138,105,-1,89,105,101,-1,85,58,68,-1,51,63,67,-1,10,26,69,-1,69,78,10,-1,194,9,21,-1,197,88,202,-1,183,173,99,-1,283,230,211,-1,56,31,40,-1,39,45,11,-1,62,30,77,-1,40,31,28,-1,115,222,223,-1,93,113,94,-1,264,235,242,-1,259,234,274,-1,262,248,275,-1,264,233,212,-1,189,233,198,-1,85,165,66,-1,170,190,78,-1,171,164,67,-1,194,196,229,-1,174,192,177,-1,7,17,15,-1,55,64,99,-1,79,163,181,-1,41,53,64,-1,49,20,22,-1,49,79,58,-1,97,135,89,-1,2,14,26,-1,99,122,76,-1,215,254,231,-1,214,123,217,-1,267,284,270,-1,269,257,271,-1,245,279,276,-1,280,268,289,-1,277,273,285,-1,225,258,283,-1,237,232,256,-1,31,60,33,-1,52,121,107,-1,259,253,171,-1,82,205,121,-1,87,50,54,-1,80,50,87,-1,229,255,242,-1,255,229,196,-1,164,251,170,-1,263,251,164,-1,118,45,39,-1,45,118,100,-1,66,44,47,-1,66,65,44,-1,219,191,214,-1,219,203,191,-1,207,231,249,-1,231,207,199,-1,217,270,241,-1,267,270,217,-1,236,270,243,-1,236,241,270,-1,269,284,267,-1,281,284,269,-1,279,284,281,-1,287,272,289,-1,287,278,272,-1,266,261,265,-1,266,254,261,-1,135,104,191,-1,135,151,104,-1,150,119,109,-1,148,119,150,-1,155,126,167,-1,126,155,119,-1,167,199,207,-1,159,199,167,-1,249,271,257,-1,249,266,271,-1,13,3,9,-1,4,3,13,-1,59,83,42,-1,90,83,59,-1,7,14,17,-1,7,8,14,-1,5,41,4,-1,53,41,5,-1,99,161,122,-1,99,173,161,-1,146,172,162,-1,148,172,146,-1,124,158,162,-1,124,129,158,-1,42,32,59,-1,42,24,32,-1,238,187,200,-1,187,238,201,-1,105,208,101,-1,166,208,105,-1,227,234,208,-1,227,274,234,-1,198,169,160,-1,204,169,198,-1,154,166,105,-1,154,141,166,-1,142,160,169,-1,143,160,142,-1,189,206,212,-1,206,189,175,-1,210,250,206,-1,239,250,210,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc3disc_Geo_5_49_normalIndex_2()
		{
			int[] value = {275,263,282,-1,275,251,263,-1,25,45,38,-1,25,11,45,-1,102,93,94,-1,102,87,93,-1,96,61,95,-1,60,61,96,-1,71,33,72,-1,33,71,37,-1,92,43,57,-1,86,43,92,-1,108,86,120,-1,86,108,77,-1,139,125,106,-1,141,125,139,-1,144,128,156,-1,143,128,144,-1,152,153,114,-1,152,145,153,-1,75,40,84,-1,40,75,56,-1,184,93,221,-1,93,184,113,-1,225,96,258,-1,72,96,225,-1,194,13,9,-1,13,194,195,-1,218,268,280,-1,218,223,268,-1,245,220,247,-1,245,226,220,-1,205,219,236,-1,205,188,219,-1,188,203,219,-1,188,186,203,-1,243,205,236,-1,224,205,243,-1,280,193,218,-1,193,280,273,-1,195,88,13,-1,88,195,202,-1,183,137,173,-1,137,183,136,-1,117,113,184,-1,113,117,111,-1,112,114,153,-1,114,112,94,-1,145,156,153,-1,145,144,156,-1,139,108,140,-1,139,106,108,-1,62,108,106,-1,77,108,62,-1,92,75,103,-1,92,57,75,-1,52,62,82,-1,52,12,62,-1,82,186,188,-1,186,82,125,-1,282,259,262,-1,282,253,259,-1,233,275,248,-1,275,233,264,-1,192,206,175,-1,185,206,192,-1,185,210,206,-1,189,134,175,-1,189,132,134,-1,140,169,180,-1,142,169,140,-1,182,208,166,-1,208,182,227,-1,132,198,160,-1,198,132,189,-1,176,63,65,-1,176,171,63,-1,165,65,66,-1,165,176,65,-1,200,237,238,-1,200,197,237,-1,187,185,192,-1,187,201,185,-1,177,136,183,-1,136,177,152,-1,73,133,157,-1,73,81,133,-1,179,163,157,-1,181,163,179,-1,122,129,110,-1,161,129,122,-1,158,129,161,-1,147,162,158,-1,146,162,147,-1,137,161,173,-1,161,137,149,-1,23,3,29,-1,23,1,3,-1,47,49,58,-1,47,20,49,-1,73,22,18,-1,73,74,22,-1,76,90,59,-1,110,90,76,-1,254,249,231,-1,254,266,249,-1,130,167,126,-1,130,159,167,-1,119,146,126,-1,146,119,148,-1,191,123,214,-1,191,104,123,-1,272,266,265,-1,271,266,272,-1,252,283,286,-1,283,252,230,-1,276,281,278,-1,276,279,281,-1,267,216,269,-1,267,217,216,-1,199,215,231,-1,215,199,178,-1,288,280,289,-1,273,280,288,-1,38,100,91,-1,38,45,100,-1,39,115,118,-1,39,27,115,-1,246,170,251,-1,246,190,170,-1,260,232,228,-1,260,256,232,-1,239,201,238,-1,239,210,201,-1,242,228,229,-1,242,260,228,-1,171,263,164,-1,253,263,171,-1,38,61,48,-1,38,91,61,-1,54,28,37,-1,50,28,54,-1,19,47,44,-1,20,47,19,-1,203,135,191,-1,203,138,135,-1,207,257,209,-1,249,257,207,-1,286,261,252,-1,285,261,286,-1,217,131,216,-1,217,123,131,-1,127,184,168,-1,127,117,184,-1,130,149,127,-1,149,130,147,-1,109,151,150,-1,109,104,151,-1,155,109,119,-1,155,131,109,-1,155,207,209,-1,167,207,155,-1,97,68,79,-1,97,89,68,-1,35,83,81,-1,83,35,42,-1,44,8,19,-1,44,46,8,-1,41,32,29,-1,41,55,32,-1,8,18,22,-1,8,7,18,-1,15,2,0,-1,15,17,2,-1,29,24,23,-1,29,32,24,-1,181,135,97,-1,181,151,135,-1,172,150,179,-1,150,172,148,-1,162,133,124,-1,172,133,162,-1,90,124,83,-1,124,90,129,-1,16,42,35,-1,16,24,42,-1,246,264,255,-1,246,275,264,-1,229,195,194,-1,195,229,228,-1,232,197,202,-1,232,237,197,-1,248,198,233,-1,198,248,204,-1,204,180,169,-1,213,180,204,-1,166,139,182,-1,139,166,141,-1,160,144,132,-1,144,160,143,-1,134,152,177,-1,134,145,152,-1,250,212,206,-1,235,212,250,-1,218,91,100,-1,193,91,218,-1,86,30,43,-1,77,30,86,-1,120,92,128,-1,92,120,86,-1,125,154,186,-1,125,141,154,-1,128,142,120,-1,142,128,143,-1,84,103,75,-1,112,103,84,-1,40,80,84,-1,80,40,50,-1,27,11,6,-1,27,39,11,-1,211,72,225,-1,71,72,211,-1,258,95,277,-1,96,95,258,-1,247,224,243,-1,224,247,220,-1,58,66,47,-1,58,85,66,-1,137,111,117,-1,137,136,111,-1,46,65,63,-1,46,44,65,-1,98,10,78,-1,21,10,98,-1,200,64,53,-1,187,64,200,-1,34,6,30,-1,34,36,6,-1,11,57,43,-1,25,57,11,-1,84,94,112,-1,84,102,94,-1,102,84,80,-1,153,103,112,-1,153,156,103,-1,120,140,108,-1,140,120,142,-1,82,106,125,-1,62,106,82,-1,92,156,128,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc3disc_Geo_5_49_normalIndex_3()
		{
			int[] value = {103,156,92,-1,226,107,220,-1,226,116,107,-1,220,121,224,-1,220,107,121,-1,70,37,71,-1,54,37,70,-1,136,114,111,-1,152,114,136,-1,177,175,134,-1,192,175,177,-1,132,145,134,-1,132,144,145,-1,180,139,140,-1,180,182,139,-1,180,227,182,-1,227,180,213,-1,262,204,248,-1,204,262,213,-1,202,228,232,-1,228,202,195,-1,196,78,190,-1,78,196,98,-1,83,133,81,-1,133,83,124,-1,179,133,172,-1,179,157,133,-1,151,179,150,-1,151,181,179,-1,149,158,161,-1,147,158,149,-1,24,15,23,-1,15,24,16,-1,23,0,1,-1,23,15,0,-1,157,74,73,-1,157,163,74,-1,4,29,3,-1,4,41,29,-1,18,81,73,-1,81,18,35,-1,10,1,0,-1,1,10,21,-1,155,216,131,-1,155,209,216,-1,123,109,131,-1,109,123,104,-1,159,168,178,-1,159,127,168,-1,127,159,130,-1,126,147,130,-1,147,126,146,-1,127,137,117,-1,149,137,127,-1,265,285,288,-1,285,265,261,-1,254,252,261,-1,254,244,252,-1,279,247,284,-1,279,245,247,-1,209,269,216,-1,257,269,209,-1,243,284,247,-1,243,270,284,-1,186,138,203,-1,186,154,138,-1,230,71,211,-1,70,71,230,-1,60,48,61,-1,31,48,60,-1,27,116,115,-1,27,36,116,-1,190,255,196,-1,246,255,190,-1,256,238,237,-1,256,239,238,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc4_Geo_5_55_coordIndex_2()
		{
			int[] value = {586,587,588,-1,589,590,586,-1,591,592,448,-1,593,594,595,-1,490,493,412,-1,596,597,366,-1,598,599,600,-1,442,601,602,-1,448,603,604,-1,589,425,590,-1,493,487,605,-1,558,424,489,-1,606,440,581,-1,607,417,416,-1,608,580,609,-1,610,411,611,-1,439,612,613,-1,614,600,591,-1,615,616,617,-1,500,618,437,-1,462,454,453,-1,619,620,621,-1,622,623,624,-1,625,626,627,-1,628,567,629,-1,630,499,631,-1,632,633,495,-1,496,634,635,-1,565,636,637,-1,557,560,583,-1,638,639,559,-1,561,640,559,-1,641,549,642,-1,643,375,644,-1,645,646,647,-1,648,643,649,-1,610,611,394,-1,405,544,387,-1,650,372,651,-1,541,537,542,-1,539,504,652,-1,539,653,654,-1,655,519,656,-1,657,535,536,-1,658,388,659,-1,660,661,522,-1,401,531,543,-1,662,663,664,-1,531,530,543,-1,395,665,529,-1,399,526,528,-1,360,515,666,-1,515,667,668,-1,669,222,335,-1,670,671,672,-1,509,673,674,-1,675,676,420,-1,505,506,382,-1,677,678,507,-1,211,511,510,-1,346,357,679,-1,336,342,337,-1,567,564,680,-1,681,633,632,-1,424,583,585,-1,487,492,488,-1,555,550,549,-1,553,550,555,-1,682,485,683,-1,684,685,686,-1,614,687,685,-1,616,688,600,-1,621,478,689,-1,620,478,621,-1,503,476,603,-1,690,691,481,-1,692,693,694,-1,693,463,694,-1,691,471,695,-1,524,523,696,-1,465,467,468,-1,334,464,469,-1,501,462,461,-1,456,502,449,-1,456,449,453,-1,609,580,697,-1,449,502,450,-1,698,427,699,-1,447,698,448,-1,441,579,581,-1,429,700,500,-1,437,701,429,-1,433,432,702,-1,703,688,430,-1,704,426,428,-1,705,706,697,-1,704,582,707,-1,613,408,439,-1,673,422,431,-1,421,403,404,-1,708,420,615,-1,587,413,588,-1,605,412,493,-1,386,611,405,-1,409,577,709,-1,406,405,611,-1,692,663,710,-1,396,395,711,-1,528,527,661,-1,610,393,392,-1,712,411,610,-1,388,544,543,-1,379,372,374,-1,713,714,715,-1,380,391,381,-1,546,644,375,-1,646,377,379,-1,383,382,506,-1,716,522,521,-1,362,670,511,-1,38,717,363,-1,344,718,507,-1,719,720,721,-1,722,352,355,-1,353,723,1,-1,2,338,0,-1,724,346,725,-1,726,727,728,-1,513,719,729,-1,510,512,335,-1,332,730,470,-1,731,365,364,-1,329,331,732,-1,524,696,365,-1,400,399,733,-1,135,134,164,-1,734,735,736,-1,89,91,737,-1,738,315,89,-1,105,190,739,-1,105,740,190,-1,132,310,136,-1,737,91,275,-1,741,742,82,-1,145,303,743,-1,168,744,164,-1,93,175,304,-1,745,746,747,-1,748,200,749,-1,750,751,752,-1,753,291,195,-1,754,755,756,-1,281,285,283,-1,191,281,280,-1,757,758,759,-1,760,187,311,-1,761,186,277,-1,188,762,763,-1,764,53,52,-1,81,62,239,-1,261,765,257,-1,256,766,37,-1,253,73,767,-1,241,768,245,-1,240,238,237,-1,767,73,6,-1,769,232,234,-1,770,771,230,-1,772,230,231,-1,14,231,229,-1,228,224,32,-1,226,773,774,-1,775,221,20,-1,776,775,19,-1,301,218,98,-1,777,218,245,-1,213,212,778,-1,766,765,779,-1,46,212,766,-1,780,166,165,-1,120,148,124,-1,781,294,782,-1,178,783,784,-1,785,786,787,-1,788,789,752,-1,107,790,108,-1,763,791,325,-1,792,280,183,-1,182,793,87,-1,182,181,794,-1,795,88,325,-1,90,793,796,-1,176,784,177,-1,797,175,93,-1,167,171,165,-1,798,788,799,-1,149,796,800,-1,16,15,159,-1,801,802,149,-1,152,150,803,-1,801,151,804,-1,150,156,159,-1,805,147,138,-1,805,145,806,-1,807,141,143,-1,139,147,119,-1,140,143,303,-1,137,743,142,-1,747,746,798,-1,318,317,127,-1,808,735,734,-1,131,317,809,-1,118,810,127,-1,309,101,144,-1,120,123,810,-1,811,118,812,-1,192,314,739,-1,314,192,313,-1,780,811,813,-1,100,301,98,-1,216,215,814,-1,156,155,159,-1,87,90,323,-1,180,86,795,-1,815,816,817,-1,68,80,742,-1,95,97,82,-1,301,300,245,-1,7,818,114,-1,17,242,153,-1,819,63,54,-1,54,69,820,-1,821,56,55,-1,248,44,822,-1,60,208,61,-1,819,823,59,-1,823,819,54,-1,45,59,49,-1,824,57,825,-1,825,326,328,-1,826,827,828,-1,829,322,10,-1,40,827,830,-1,33,4,34,-1,29,773,831,-1,5,774,832,-1,833,834,835,-1,22,21,836,-1,24,837,833,-1,838,839,36,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc4_Geo_5_55_coordIndex_3()
		{
			int[] value = {840,20,835,-1,27,26,260,-1,841,20,221,-1,150,15,803,-1,842,770,772,-1,4,359,34,-1,30,831,28,-1,359,679,357,-1,13,842,772,-1,260,843,27,-1,212,37,766,-1,835,844,840,-1,838,845,839,-1,833,21,24,-1,833,835,841,-1,26,28,831,-1,5,4,774,-1,773,846,831,-1,33,774,4,-1,40,42,827,-1,829,10,847,-1,828,848,826,-1,849,825,57,-1,44,208,58,-1,824,51,57,-1,59,823,49,-1,54,56,823,-1,779,47,46,-1,60,65,64,-1,208,248,61,-1,248,208,44,-1,54,70,69,-1,63,70,54,-1,114,113,76,-1,76,8,114,-1,114,8,7,-1,218,301,245,-1,82,81,95,-1,850,102,741,-1,80,82,742,-1,87,323,88,-1,308,307,764,-1,814,92,216,-1,100,96,301,-1,315,314,313,-1,110,133,111,-1,173,851,116,-1,812,813,811,-1,123,318,810,-1,117,319,122,-1,127,126,118,-1,809,852,131,-1,734,853,808,-1,810,318,127,-1,811,780,139,-1,137,142,854,-1,303,138,140,-1,119,811,139,-1,807,143,140,-1,855,805,806,-1,855,148,805,-1,159,15,150,-1,801,804,849,-1,803,856,152,-1,149,151,801,-1,16,159,158,-1,149,800,157,-1,799,747,798,-1,165,744,167,-1,93,161,797,-1,176,178,784,-1,90,87,793,-1,182,794,857,-1,182,87,86,-1,311,187,189,-1,325,188,763,-1,188,325,324,-1,290,195,194,-1,178,858,783,-1,781,292,294,-1,202,199,859,-1,120,119,148,-1,165,807,780,-1,766,779,46,-1,778,327,213,-1,768,777,245,-1,775,210,209,-1,20,19,775,-1,774,33,226,-1,229,517,14,-1,231,14,772,-1,770,230,772,-1,769,860,232,-1,73,72,236,-1,237,241,240,-1,861,862,863,-1,241,237,768,-1,253,767,864,-1,37,865,256,-1,261,257,262,-1,866,263,822,-1,239,300,81,-1,764,867,53,-1,761,184,186,-1,311,185,760,-1,757,868,758,-1,280,792,191,-1,281,283,282,-1,203,754,756,-1,753,869,291,-1,752,204,750,-1,748,749,789,-1,172,745,747,-1,168,167,744,-1,870,871,305,-1,316,168,164,-1,170,172,747,-1,95,81,300,-1,82,850,741,-1,274,737,275,-1,132,136,129,-1,105,104,740,-1,89,737,738,-1,734,736,316,-1,135,164,166,-1,126,130,872,-1,521,520,873,-1,365,731,524,-1,516,329,732,-1,731,364,873,-1,332,470,333,-1,336,513,729,-1,679,350,347,-1,346,874,725,-1,337,348,347,-1,353,1,354,-1,722,355,357,-1,34,360,32,-1,507,875,344,-1,38,363,39,-1,511,363,362,-1,379,374,876,-1,506,877,383,-1,379,876,646,-1,546,545,644,-1,380,389,391,-1,369,546,375,-1,379,651,372,-1,544,388,387,-1,410,878,407,-1,610,879,712,-1,392,879,610,-1,711,880,396,-1,527,881,882,-1,409,709,406,-1,878,712,883,-1,615,884,708,-1,709,421,404,-1,431,674,673,-1,885,705,697,-1,428,582,704,-1,688,616,430,-1,451,434,455,-1,408,440,439,-1,429,886,700,-1,441,594,579,-1,581,444,441,-1,447,427,698,-1,699,702,698,-1,697,887,609,-1,449,461,453,-1,452,888,457,-1,455,501,461,-1,468,334,469,-1,467,334,468,-1,523,730,696,-1,471,464,695,-1,690,481,480,-1,503,477,476,-1,889,574,573,-1,478,477,689,-1,600,617,616,-1,614,685,479,-1,890,684,686,-1,682,683,484,-1,553,555,558,-1,556,555,549,-1,487,493,492,-1,424,557,583,-1,495,494,632,-1,632,891,681,-1,892,571,893,-1,564,894,680,-1,895,896,897,-1,346,679,347,-1,385,373,372,-1,898,211,510,-1,507,505,875,-1,507,718,677,-1,419,675,420,-1,674,899,509,-1,670,672,727,-1,669,335,337,-1,515,668,666,-1,360,666,32,-1,518,656,519,-1,731,873,520,-1,882,525,527,-1,528,733,399,-1,400,733,665,-1,395,400,665,-1,397,900,398,-1,664,534,901,-1,662,664,902,-1,881,901,903,-1,402,401,543,-1,660,522,716,-1,385,387,373,-1,658,659,904,-1,657,536,653,-1,655,656,905,-1,653,906,654,-1,340,907,908,-1,539,654,504,-1,541,538,537,-1,405,387,386,-1,393,610,394,-1,645,647,909,-1,643,644,649,-1,489,553,558,-1,561,554,640,-1,638,910,639,-1,557,561,560,-1,565,633,636,-1,633,565,495,-1,631,897,630,-1,628,911,567,-1,627,912,625,-1,623,913,624,-1,403,402,404,-1,914,500,700,-1,462,459,454,-1,437,429,500,-1,617,884,615,-1,612,575,613,-1,409,408,613,-1,608,606,580,-1,879,883,712,-1,558,557,424,-1,487,423,605,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc4_Geo_5_55_coordIndex_4()
		{
			int[] value = {425,428,590,-1,448,698,603,-1,602,436,442,-1,600,915,598,-1,366,916,596,-1,471,469,464,-1,412,917,490,-1,448,604,591,-1,586,588,589,-1,584,707,582,-1,580,606,581,-1,417,883,879,-1,406,410,407,-1,402,405,404,-1,918,621,689,-1,617,479,884,-1,570,680,571,-1,569,629,567,-1,495,566,919,-1,562,920,563,-1,559,639,560,-1,554,561,557,-1,556,640,554,-1,489,488,552,-1,642,549,551,-1,546,921,415,-1,922,923,924,-1,405,402,543,-1,539,652,537,-1,535,925,528,-1,529,665,530,-1,733,528,925,-1,523,525,882,-1,525,520,522,-1,329,516,518,-1,516,229,518,-1,32,666,228,-1,515,360,356,-1,513,336,335,-1,513,512,726,-1,673,509,403,-1,509,926,508,-1,507,715,506,-1,503,450,502,-1,500,455,618,-1,927,893,894,-1,499,630,497,-1,928,929,930,-1,568,570,474,-1,706,931,697,-1,491,547,492,-1,555,554,558,-1,485,486,683,-1,482,484,683,-1,490,917,932,-1,472,486,414,-1,481,884,479,-1,478,573,476,-1,473,475,918,-1,471,933,472,-1,470,694,463,-1,469,934,466,-1,467,935,332,-1,465,468,466,-1,464,334,333,-1,462,501,460,-1,459,462,460,-1,457,502,456,-1,455,461,449,-1,452,456,453,-1,475,936,918,-1,443,436,435,-1,446,448,592,-1,445,601,442,-1,434,595,443,-1,441,444,442,-1,701,602,703,-1,435,437,618,-1,434,451,432,-1,688,915,600,-1,585,425,424,-1,423,425,589,-1,432,451,450,-1,422,673,403,-1,420,708,418,-1,463,695,464,-1,917,412,414,-1,932,485,682,-1,937,938,939,-1,406,611,411,-1,404,406,709,-1,401,403,509,-1,398,400,397,-1,523,903,730,-1,397,400,395,-1,381,394,650,-1,392,393,381,-1,388,658,373,-1,651,378,650,-1,378,381,650,-1,378,651,379,-1,376,370,369,-1,713,678,370,-1,368,940,361,-1,364,366,597,-1,363,717,361,-1,360,34,359,-1,358,514,354,-1,356,359,357,-1,352,354,355,-1,723,2,1,-1,337,342,351,-1,348,874,346,-1,345,941,343,-1,336,729,341,-1,504,875,505,-1,340,0,338,-1,330,942,331,-1,326,213,327,-1,325,88,323,-1,320,322,829,-1,319,809,317,-1,316,134,734,-1,738,110,315,-1,312,189,324,-1,311,191,792,-1,84,83,66,-1,136,310,146,-1,103,102,850,-1,103,306,101,-1,142,170,943,-1,736,173,944,-1,304,174,94,-1,124,121,123,-1,145,805,138,-1,172,945,745,-1,297,946,298,-1,750,204,296,-1,292,205,293,-1,291,196,193,-1,286,196,291,-1,190,281,191,-1,282,284,947,-1,282,279,281,-1,792,185,311,-1,276,307,274,-1,272,51,267,-1,270,50,265,-1,264,270,265,-1,63,80,67,-1,65,60,62,-1,59,58,819,-1,866,261,263,-1,256,948,252,-1,227,230,254,-1,253,864,251,-1,250,61,248,-1,247,769,71,-1,239,245,300,-1,243,861,949,-1,818,112,114,-1,238,8,76,-1,238,6,8,-1,7,6,73,-1,154,234,232,-1,227,229,231,-1,33,32,224,-1,224,950,225,-1,223,841,221,-1,218,220,98,-1,217,951,215,-1,46,778,212,-1,213,326,214,-1,209,211,898,-1,21,5,24,-1,841,835,20,-1,204,749,202,-1,198,193,196,-1,192,739,190,-1,188,324,189,-1,186,183,952,-1,792,183,185,-1,182,86,180,-1,178,179,953,-1,175,177,944,-1,174,304,173,-1,170,165,171,-1,172,171,945,-1,164,744,165,-1,797,161,163,-1,158,160,79,-1,155,157,162,-1,11,17,153,-1,151,152,804,-1,149,156,150,-1,147,805,148,-1,144,806,145,-1,139,807,140,-1,138,147,139,-1,137,854,107,-1,780,807,139,-1,135,954,133,-1,132,129,128,-1,129,136,107,-1,126,128,130,-1,125,955,121,-1,101,309,102,-1,119,118,811,-1,120,810,118,-1,135,813,812,-1,115,174,116,-1,112,956,113,-1,105,111,106,-1,108,957,109,-1,98,220,99,-1,95,301,96,-1,94,216,92,-1,86,88,795,-1,324,323,312,-1,81,80,65,-1,235,244,72,-1,76,113,74,-1,69,67,66,-1,68,84,66,-1,741,85,742,-1,65,80,63,-1,239,62,61,-1,45,44,58,-1,327,958,328,-1,54,820,55,-1,51,273,52,-1,50,43,45,-1,48,778,46,-1,860,769,247,-1,40,210,41,-1,40,830,38,-1,35,37,213,-1,959,960,18,-1,29,831,30,-1,23,837,24,-1,961,962,776,-1,840,18,20,-1,221,775,209,-1,15,17,803,-1,13,772,14,-1,11,154,9,-1,233,232,860,-1,669,223,222,-1,4,679,359,-1,4,3,679,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc4_Geo_5_55_coordIndex_5()
		{
			int[] value = {770,963,964,-1,842,963,770,-1,242,861,243,-1,862,861,242,-1,838,35,965,-1,35,838,36,-1,776,18,961,-1,776,19,18,-1,966,23,25,-1,23,966,967,-1,968,31,30,-1,31,968,969,-1,23,843,837,-1,843,23,27,-1,844,258,970,-1,259,258,844,-1,828,42,971,-1,42,828,827,-1,972,326,825,-1,972,973,326,-1,12,974,975,-1,974,12,976,-1,963,829,847,-1,977,829,963,-1,826,830,827,-1,826,975,830,-1,804,321,972,-1,804,152,321,-1,271,779,978,-1,779,271,47,-1,863,79,78,-1,158,79,863,-1,979,980,981,-1,980,979,982,-1,163,817,816,-1,163,800,817,-1,276,849,867,-1,801,849,276,-1,215,77,814,-1,77,215,983,-1,984,112,985,-1,956,112,984,-1,318,122,319,-1,123,122,318,-1,871,125,305,-1,871,955,125,-1,131,83,132,-1,131,852,83,-1,853,737,808,-1,853,738,737,-1,853,134,133,-1,734,134,853,-1,812,126,872,-1,812,118,126,-1,743,143,142,-1,743,303,143,-1,943,747,799,-1,170,747,943,-1,787,953,815,-1,953,787,786,-1,180,325,791,-1,180,795,325,-1,986,815,987,-1,815,986,787,-1,988,989,990,-1,988,991,989,-1,990,791,992,-1,990,180,791,-1,198,993,994,-1,993,198,197,-1,868,278,758,-1,995,278,868,-1,996,997,998,-1,999,997,996,-1,785,986,287,-1,785,787,986,-1,1000,1001,298,-1,1002,1001,1000,-1,1003,1004,1005,-1,1003,1006,1004,-1,195,289,753,-1,290,289,195,-1,1007,859,781,-1,1007,754,859,-1,292,206,205,-1,292,201,206,-1,785,286,1008,-1,287,286,785,-1,748,1009,200,-1,748,1010,1009,-1,75,777,768,-1,75,981,777,-1,1011,1012,980,-1,951,1012,1011,-1,962,1013,41,-1,962,965,1013,-1,209,222,221,-1,209,898,222,-1,985,949,984,-1,949,985,243,-1,982,1014,1015,-1,1014,982,1016,-1,247,1017,860,-1,1017,247,1018,-1,1019,225,950,-1,225,1019,1020,-1,262,249,263,-1,262,251,249,-1,1021,254,1022,-1,254,1021,960,-1,1021,838,961,-1,845,838,1021,-1,58,63,819,-1,58,64,63,-1,261,43,978,-1,43,261,866,-1,47,1023,48,-1,1023,47,1024,-1,52,69,764,-1,52,820,69,-1,762,1025,763,-1,762,1026,1025,-1,1027,1028,1029,-1,1030,1028,1027,-1,1031,277,1032,-1,1031,761,277,-1,762,187,760,-1,187,762,188,-1,952,759,758,-1,952,279,759,-1,759,1033,757,-1,1033,759,947,-1,284,1034,1035,-1,284,1036,1034,-1,1034,1037,1038,-1,1034,1039,1037,-1,1040,293,1041,-1,293,1040,294,-1,755,1003,756,-1,755,1042,1003,-1,1043,1044,1045,-1,1046,1044,1043,-1,1047,1048,1045,-1,1047,288,1048,-1,1049,869,753,-1,1049,1040,869,-1,798,789,788,-1,798,748,789,-1,953,858,178,-1,953,786,858,-1,298,1050,1000,-1,946,1050,298,-1,1051,799,1052,-1,1051,943,799,-1,1053,799,788,-1,1052,799,1053,-1,135,780,813,-1,135,166,780,-1,1054,371,370,-1,1054,465,371,-1,364,1055,873,-1,1055,364,1056,-1,351,340,339,-1,907,340,351,-1,352,1057,353,-1,1058,1057,352,-1,1059,725,338,-1,1059,1060,725,-1,724,357,346,-1,724,722,357,-1,1061,1062,908,-1,1061,1063,1062,-1,345,875,1064,-1,875,345,344,-1,1065,916,1054,-1,596,916,1065,-1,670,1066,671,-1,670,362,1066,-1,1067,331,367,-1,732,331,1067,-1,974,717,38,-1,974,1067,717,-1,1068,646,876,-1,647,646,1068,-1,527,1069,881,-1,1069,527,526,-1,663,1070,710,-1,663,662,1070,-1,1071,880,711,-1,1071,1072,880,-1,921,369,371,-1,369,921,546,-1,466,1073,1074,-1,1073,466,934,-1,1075,431,430,-1,1075,674,431,-1,1076,463,693,-1,463,1076,695,-1,425,582,428,-1,425,585,582,-1,1077,396,880,-1,396,1077,1078,-1,703,915,688,-1,602,915,703,-1,575,409,613,-1,577,409,575,-1,914,575,612,-1,700,575,914,-1,598,1079,599,-1,598,1080,1079,-1,607,446,1079,-1,607,586,446,-1,593,702,699,-1,433,702,593,-1,887,578,609,-1,887,888,578,-1,889,478,620,-1,889,573,478,-1,574,591,604,-1,614,591,574,-1,685,912,686,-1,687,912,685,-1,486,933,937,-1,486,472,933,-1,1081,681,1082,-1,1083,681,1081,-1,1084,1085,1086,-1,1084,1087,1085,-1,1088,483,1082,-1,1088,1089,483,-1,891,1090,1088,-1,891,1091,1090,-1,1092,1093,1094,-1,1093,1092,1095,-1,1096,584,1097,-1,1096,707,584,-1,1098,891,632,-1,1098,1091,891,-1,929,1099,930,-1,929,1100,1099,-1,622,1101,623,-1,622,895,1101,-1,1102,562,911,-1,1102,1103,562,-1,1104,919,1105,-1,919,1104,634,-1,563,894,564,-1,927,894,563,-1,566,637,1106,-1,566,565,637,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc4_Geo_5_55_coordIndex_6()
		{
			int[] value = {1107,1108,1106,-1,1107,1109,1108,-1,624,936,1110,-1,624,619,936,-1,351,874,348,-1,351,339,874,-1,1111,1087,1084,-1,1111,1112,1087,-1,926,1113,1071,-1,926,1114,1113,-1,675,1070,1115,-1,419,1070,675,-1,674,676,899,-1,1075,676,674,-1,356,354,514,-1,356,355,354,-1,519,330,329,-1,519,1116,330,-1,733,530,665,-1,530,733,925,-1,1117,902,664,-1,1117,1118,902,-1,1117,1119,1118,-1,902,1120,662,-1,902,1118,1120,-1,661,536,528,-1,661,660,536,-1,388,530,659,-1,388,543,530,-1,653,660,906,-1,653,536,660,-1,519,1121,1116,-1,1121,519,655,-1,1062,1,0,-1,358,1,1062,-1,538,653,539,-1,538,657,653,-1,941,1121,1122,-1,941,1123,1121,-1,0,908,1062,-1,908,0,340,-1,728,720,719,-1,720,728,1122,-1,374,542,876,-1,540,542,374,-1,1124,922,924,-1,1124,909,922,-1,1125,380,378,-1,390,380,1125,-1,383,909,647,-1,909,383,922,-1,375,648,376,-1,648,375,643,-1,1126,552,548,-1,1126,1127,552,-1,1128,1129,1130,-1,1129,1128,1131,-1,1132,1133,1134,-1,1133,1132,1135,-1,553,1127,1136,-1,553,552,1127,-1,638,640,1137,-1,559,640,638,-1,1138,638,1139,-1,1138,910,638,-1,639,1140,1141,-1,910,1140,639,-1,1142,1140,1143,-1,1142,628,1140,-1,1144,1106,1108,-1,1144,566,1106,-1,1006,1145,1103,-1,1006,1146,1145,-1,1147,1148,1149,-1,1046,1148,1147,-1,1150,1151,1152,-1,1151,1150,1148,-1,1152,634,1104,-1,635,634,1152,-1,1105,499,498,-1,1105,1144,499,-1,474,569,568,-1,569,474,1097,-1,480,685,684,-1,685,480,479,-1,889,913,625,-1,913,889,620,-1,460,500,914,-1,500,460,501,-1,603,574,604,-1,603,476,574,-1,438,612,439,-1,458,612,438,-1,438,606,608,-1,438,440,606,-1,879,415,417,-1,879,392,415,-1,581,878,883,-1,878,581,407,-1,599,591,600,-1,591,599,592,-1,934,472,413,-1,469,472,934,-1,713,507,678,-1,713,715,507,-1,450,702,432,-1,450,503,702,-1,473,1097,474,-1,1097,473,1096,-1,473,1153,1096,-1,473,1154,1153,-1,709,576,421,-1,709,577,576,-1,1100,890,686,-1,1100,929,890,-1,570,475,474,-1,570,572,475,-1,566,1105,919,-1,566,1144,1105,-1,1155,1152,1151,-1,1155,635,1152,-1,1148,1043,1151,-1,1043,1148,1046,-1,1103,920,562,-1,1103,1145,920,-1,631,1144,1108,-1,499,1144,631,-1,1037,1143,1038,-1,1037,1142,1143,-1,1143,910,1138,-1,1143,1140,910,-1,1139,1137,1156,-1,638,1137,1139,-1,1137,556,1157,-1,1137,640,556,-1,488,548,552,-1,492,548,488,-1,642,1134,1133,-1,642,551,1134,-1,1130,1136,1127,-1,1136,1130,1129,-1,1158,548,547,-1,1158,1126,548,-1,1074,607,416,-1,1074,1073,607,-1,648,714,376,-1,924,714,648,-1,377,1125,378,-1,1125,377,1159,-1,876,537,1068,-1,542,537,876,-1,719,1160,729,-1,1160,719,721,-1,1063,1160,1161,-1,1160,1063,1061,-1,1123,345,1162,-1,345,1123,941,-1,906,1064,654,-1,1163,1064,906,-1,1116,1123,1164,-1,1123,1116,1121,-1,659,925,535,-1,659,530,925,-1,508,395,529,-1,711,395,508,-1,1118,1165,1120,-1,1119,1165,1118,-1,664,1166,1117,-1,664,901,1166,-1,527,522,661,-1,525,522,527,-1,524,520,525,-1,731,520,524,-1,1164,330,1116,-1,330,1164,1055,-1,518,228,656,-1,518,229,228,-1,222,510,335,-1,222,898,510,-1,692,418,693,-1,692,710,418,-1,509,1114,926,-1,509,899,1114,-1,1089,1084,1167,-1,1084,1089,1111,-1,622,1110,1168,-1,622,624,1110,-1,1101,1108,1109,-1,1101,631,1108,-1,563,1169,1170,-1,563,920,1169,-1,1106,1099,1107,-1,1106,637,1099,-1,680,568,567,-1,680,570,568,-1,1104,498,1171,-1,1105,498,1104,-1,911,564,567,-1,911,562,564,-1,1168,895,622,-1,1168,896,895,-1,1100,1107,1099,-1,1100,627,1107,-1,1098,1172,1091,-1,1098,1173,1172,-1,1174,1097,584,-1,569,1097,1174,-1,1175,547,491,-1,1158,547,1175,-1,1091,1176,1090,-1,1091,1172,1176,-1,1088,1111,1089,-1,1088,1090,1111,-1,1086,999,1177,-1,999,1086,1085,-1,1081,937,939,-1,1081,482,937,-1,482,486,937,-1,482,683,486,-1,938,480,684,-1,480,938,690,-1,889,614,574,-1,687,614,889,-1,458,608,459,-1,608,458,438,-1,885,699,705,-1,885,593,699,-1,586,447,446,-1,586,590,447,-1,883,444,581,-1,883,445,444,-1,579,697,580,-1,885,697,579,-1,443,594,441,-1,594,443,595,-1,700,576,575,-1,700,886,576,-1,701,436,602,-1,436,701,437,-1,900,1117,1166,-1,1117,900,1078,-1,710,419,418,-1,1070,419,710,-1,371,1074,921,-1,1074,371,466,-1,1113,1072,1071,-1,1165,1072,1113,-1,692,532,663,-1,532,692,694,-1,394,386,385,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc4_Geo_5_55_coordIndex_7()
		{
			int[] value = {386,394,611,-1,713,376,714,-1,713,370,376,-1,365,935,366,-1,365,696,935,-1,1178,368,1179,-1,1178,940,368,-1,368,331,942,-1,331,368,367,-1,671,1180,677,-1,671,1066,1180,-1,1065,1178,596,-1,1178,1065,1180,-1,1063,358,1062,-1,1063,667,358,-1,1181,1060,1059,-1,1182,1060,1181,-1,1057,1060,1182,-1,1058,1060,1057,-1,1183,1060,1058,-1,1184,1060,1183,-1,347,669,337,-1,349,669,347,-1,1181,338,2,-1,1181,1059,338,-1,1183,352,722,-1,1183,1058,352,-1,341,351,342,-1,341,907,351,-1,1056,330,1055,-1,330,1056,942,-1,857,993,987,-1,857,794,993,-1,152,322,321,-1,152,856,322,-1,319,1185,809,-1,1185,319,851,-1,85,132,83,-1,741,132,85,-1,310,144,146,-1,310,309,144,-1,306,144,101,-1,144,306,806,-1,174,1186,94,-1,174,115,1186,-1,100,121,955,-1,100,99,121,-1,297,945,946,-1,745,945,297,-1,784,169,177,-1,169,784,1050,-1,751,788,752,-1,1053,788,751,-1,294,1049,782,-1,294,1040,1049,-1,289,1047,1187,-1,1047,289,288,-1,1045,1188,1047,-1,1044,1188,1045,-1,1044,1147,1189,-1,1147,1044,1046,-1,1042,1006,1003,-1,1042,1146,1006,-1,1190,1040,1041,-1,1190,869,1040,-1,1036,1039,1034,-1,1036,296,1039,-1,1036,283,1191,-1,283,1036,284,-1,947,1035,1033,-1,947,284,1035,-1,279,947,759,-1,947,279,282,-1,1029,185,1027,-1,1029,760,185,-1,1032,1132,1031,-1,1135,1132,1032,-1,1030,1128,1028,-1,1131,1128,1030,-1,760,1026,762,-1,760,1029,1026,-1,268,51,824,-1,267,51,268,-1,270,47,271,-1,1024,47,270,-1,56,1192,823,-1,1192,56,821,-1,264,821,272,-1,266,821,264,-1,266,1192,821,-1,765,978,779,-1,978,765,261,-1,960,961,18,-1,1021,961,960,-1,258,26,1193,-1,260,26,258,-1,1022,845,1021,-1,1022,1194,845,-1,252,262,257,-1,252,251,262,-1,831,1193,26,-1,1193,831,846,-1,1022,230,771,-1,254,230,1022,-1,246,252,948,-1,246,253,252,-1,240,61,250,-1,240,239,61,-1,253,71,73,-1,253,246,71,-1,78,861,863,-1,949,861,78,-1,1195,982,979,-1,1016,982,1195,-1,243,1196,244,-1,985,1196,243,-1,234,153,235,-1,234,154,153,-1,160,92,814,-1,92,160,1197,-1,951,219,1012,-1,951,217,219,-1,1087,1198,991,-1,1087,1112,1198,-1,837,834,833,-1,837,843,834,-1,746,297,1010,-1,746,745,297,-1,1041,1199,1190,-1,1041,1002,1199,-1,286,869,1190,-1,286,291,869,-1,781,1200,1007,-1,1200,781,782,-1,199,749,200,-1,749,199,202,-1,206,200,1009,-1,206,201,200,-1,1002,783,1199,-1,1002,1000,783,-1,196,986,197,-1,196,287,986,-1,998,992,1025,-1,997,992,998,-1,758,186,952,-1,278,186,758,-1,1112,1201,1198,-1,1112,1176,1201,-1,997,990,992,-1,988,990,997,-1,180,989,181,-1,180,990,989,-1,815,179,816,-1,179,815,953,-1,736,168,316,-1,168,736,944,-1,171,169,945,-1,171,167,169,-1,957,133,954,-1,133,957,111,-1,738,133,110,-1,853,133,738,-1,852,308,83,-1,852,1202,308,-1,130,109,872,-1,129,109,130,-1,305,302,306,-1,302,305,125,-1,850,305,103,-1,305,850,870,-1,851,117,116,-1,117,851,319,-1,99,122,121,-1,115,122,99,-1,115,117,122,-1,1016,956,984,-1,1195,956,1016,-1,956,1195,1203,-1,216,1186,217,-1,216,94,1186,-1,89,323,90,-1,323,89,312,-1,74,981,75,-1,74,979,981,-1,983,78,77,-1,983,1204,78,-1,1196,72,244,-1,236,72,1196,-1,273,820,52,-1,273,55,820,-1,778,958,327,-1,778,48,958,-1,977,320,829,-1,977,1205,320,-1,842,977,963,-1,848,977,842,-1,39,210,40,-1,39,211,210,-1,973,214,326,-1,973,1206,214,-1,828,1206,1205,-1,971,1206,828,-1,773,225,846,-1,773,226,225,-1,960,255,254,-1,959,255,960,-1,31,832,29,-1,832,31,1207,-1,23,1208,27,-1,23,967,1208,-1,969,1207,31,-1,1207,969,1209,-1,260,834,843,-1,834,260,259,-1,964,847,233,-1,963,847,964,-1,849,972,825,-1,849,804,972,-1,669,836,223,-1,669,349,836,-1,350,836,349,-1,350,22,836,-1,7,1196,818,-1,7,236,1196,-1,11,803,17,-1,11,856,803,-1,517,12,14,-1,976,12,517,-1,16,242,17,-1,16,862,242,-1,965,961,838,-1,965,962,961,-1,1210,966,25,-1,1210,1211,966,-1,1212,30,28,-1,30,1212,968,-1,5,25,24,-1,5,1210,25,-1,1193,970,258,-1,1193,1020,970,-1,37,839,865,-1,36,839,37,-1,321,973,972,-1,973,321,320,-1,971,41,1013,-1,971,42,41,-1,13,975,826,-1,975,13,12,-1,830,974,38,-1,830,975,974,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc4_Geo_5_55_coordIndex_8()
		{
			int[] value = {50,978,43,-1,978,50,271,-1,68,85,84,-1,85,68,742,-1,158,862,16,-1,158,863,862,-1,980,1015,1011,-1,980,982,1015,-1,57,867,849,-1,53,867,57,-1,275,801,276,-1,802,801,275,-1,99,1186,115,-1,99,220,1186,-1,159,1197,160,-1,155,1197,159,-1,105,314,110,-1,105,739,314,-1,113,1203,74,-1,956,1203,113,-1,741,309,132,-1,309,741,102,-1,955,96,100,-1,955,871,96,-1,131,127,317,-1,127,131,128,-1,1213,1185,1214,-1,1213,1202,1185,-1,808,274,1213,-1,808,737,274,-1,135,872,954,-1,872,135,812,-1,155,161,1197,-1,155,162,161,-1,170,807,165,-1,141,807,170,-1,304,944,173,-1,304,175,944,-1,800,793,817,-1,800,796,793,-1,197,987,993,-1,987,197,986,-1,1085,991,988,-1,1085,1087,991,-1,794,994,993,-1,794,1215,994,-1,1201,198,994,-1,1201,1216,198,-1,1093,995,868,-1,1095,995,1093,-1,740,1052,1053,-1,740,104,1052,-1,198,1217,193,-1,198,1216,1217,-1,1008,786,785,-1,1008,858,786,-1,1001,299,298,-1,1001,207,299,-1,756,1005,295,-1,756,1003,1005,-1,753,1187,1049,-1,289,1187,753,-1,202,754,203,-1,754,202,859,-1,199,781,859,-1,199,292,781,-1,292,199,201,-1,293,207,1001,-1,293,205,207,-1,181,1215,794,-1,181,989,1215,-1,214,965,35,-1,214,1013,965,-1,980,777,981,-1,980,1012,777,-1,983,951,1011,-1,951,983,215,-1,217,220,219,-1,220,217,1186,-1,29,774,773,-1,29,832,774,-1,1218,233,860,-1,233,1218,964,-1,240,6,238,-1,767,6,240,-1,1219,984,949,-1,1014,984,1219,-1,1014,1016,984,-1,1015,1219,1204,-1,1015,1014,1219,-1,246,1018,247,-1,246,948,1018,-1,249,864,250,-1,251,864,249,-1,1017,1218,860,-1,1194,1218,1017,-1,255,950,227,-1,1019,950,255,-1,248,263,249,-1,263,248,822,-1,1017,865,839,-1,1017,1018,865,-1,959,1019,255,-1,1220,1019,959,-1,840,970,1220,-1,840,844,970,-1,866,44,43,-1,44,866,822,-1,1023,264,269,-1,1024,264,1023,-1,1024,270,264,-1,266,50,49,-1,265,50,266,-1,48,269,958,-1,269,48,1023,-1,55,272,821,-1,55,273,272,-1,1025,1221,998,-1,1025,1026,1221,-1,1029,1221,1026,-1,1029,1028,1221,-1,761,1030,1027,-1,761,1031,1030,-1,1032,278,995,-1,277,278,1032,-1,183,279,952,-1,183,280,279,-1,757,1222,1223,-1,1222,757,1033,-1,1038,1035,1034,-1,1035,1038,1224,-1,190,1225,285,-1,740,1225,190,-1,750,1225,751,-1,750,1191,1225,-1,1173,1226,1217,-1,1226,1173,1227,-1,1228,1045,1048,-1,1043,1045,1228,-1,194,288,290,-1,1226,288,194,-1,1048,288,1226,-1,1189,755,1229,-1,1042,755,1189,-1,1007,1188,1229,-1,1007,1200,1188,-1,1005,1037,1039,-1,1005,1004,1037,-1,176,797,179,-1,175,797,176,-1,946,169,1050,-1,945,169,946,-1,124,855,302,-1,148,855,124,-1,854,943,1051,-1,854,142,943,-1,764,83,308,-1,69,83,764,-1,66,83,69,-1,790,1052,104,-1,790,1051,1052,-1,192,189,313,-1,192,311,189,-1,736,1214,173,-1,735,1214,736,-1,796,802,90,-1,802,796,149,-1,1166,398,900,-1,1166,1069,398,-1,534,903,901,-1,903,534,533,-1,718,343,672,-1,344,343,718,-1,719,726,728,-1,719,513,726,-1,725,1184,724,-1,1060,1184,725,-1,353,1182,723,-1,1057,1182,353,-1,339,725,874,-1,338,725,339,-1,908,341,1061,-1,341,908,907,-1,362,940,1066,-1,361,940,362,-1,678,1054,370,-1,678,1065,1054,-1,974,732,1067,-1,976,732,974,-1,597,1056,364,-1,1056,597,1179,-1,717,367,361,-1,717,1067,367,-1,916,465,1054,-1,916,467,465,-1,384,647,1068,-1,383,647,384,-1,523,881,903,-1,881,523,882,-1,662,1115,1070,-1,662,1120,1115,-1,1072,1077,880,-1,1077,1072,1230,-1,937,690,938,-1,937,933,690,-1,414,932,917,-1,932,414,485,-1,587,934,413,-1,934,587,1073,-1,921,416,415,-1,921,1074,416,-1,884,1076,708,-1,481,1076,884,-1,423,588,605,-1,423,589,588,-1,426,706,705,-1,704,706,426,-1,1078,397,396,-1,397,1078,900,-1,455,435,618,-1,434,435,455,-1,914,458,460,-1,612,458,914,-1,1080,601,445,-1,598,601,1080,-1,1079,417,607,-1,417,1079,1080,-1,1079,592,599,-1,1079,446,592,-1,595,433,593,-1,595,434,433,-1,452,578,888,-1,452,454,578,-1,471,690,933,-1,471,691,690,-1,918,1154,473,-1,1154,918,689,-1,890,928,939,-1,929,928,890,-1,490,682,491,-1,490,932,682,-1,939,1083,1081,-1,928,1083,939,-1,1167,1086,1231,-1,1167,1084,1086,-1,491,1231,1175,-1,491,682,1231,-1,1082,891,1088,-1,681,891,1082,-1,641,1094,1157,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc4_Geo_5_55_coordIndex_9()
		{
			int[] value = {1094,641,1092,-1,1177,996,1232,-1,996,1177,999,-1,1083,930,636,-1,1083,928,930,-1,1101,626,623,-1,626,1101,1109,-1,1004,1103,1102,-1,1004,1006,1103,-1,634,495,919,-1,495,634,496,-1,927,1170,497,-1,927,563,1170,-1,896,630,897,-1,896,892,630,-1,637,930,1099,-1,930,637,636,-1,1168,572,571,-1,1168,1110,572,-1,926,711,508,-1,926,1071,711,-1,1114,1115,1113,-1,1115,1114,675,-1,670,512,511,-1,670,726,512,-1,726,670,727,-1,666,656,228,-1,666,668,656,-1,1162,716,521,-1,1163,716,1162,-1,667,1161,668,-1,1063,1161,667,-1,904,538,541,-1,904,657,538,-1,655,1122,1121,-1,720,1122,655,-1,343,1122,728,-1,1122,343,941,-1,394,372,650,-1,394,385,372,-1,645,1124,1159,-1,645,909,1124,-1,648,1124,924,-1,649,1124,648,-1,923,383,877,-1,922,383,923,-1,392,545,415,-1,392,391,545,-1,1232,1233,1234,-1,996,1233,1232,-1,1233,1130,1234,-1,1233,1128,1130,-1,1129,1132,1134,-1,1131,1132,1129,-1,1135,1092,1133,-1,1135,1095,1092,-1,550,1136,551,-1,550,553,1136,-1,1093,1156,1094,-1,1156,1093,1223,-1,1139,1224,1138,-1,1222,1224,1139,-1,1141,560,639,-1,1141,1174,560,-1,1141,628,629,-1,1141,1140,628,-1,1235,632,494,-1,1235,1098,632,-1,1155,1227,1235,-1,1227,1155,1228,-1,1149,1146,1147,-1,1149,1145,1146,-1,1150,1149,1148,-1,1150,1169,1149,-1,1150,1104,1171,-1,1152,1104,1150,-1,1142,911,628,-1,1142,1102,911,-1,1110,475,572,-1,475,1110,936,-1,625,623,626,-1,623,625,913,-1,1154,457,888,-1,1154,689,457,-1,609,459,608,-1,609,578,459,-1,931,887,697,-1,931,1153,887,-1,931,704,707,-1,704,931,706,-1,1082,482,1081,-1,1082,483,482,-1,366,467,916,-1,366,935,467,-1,598,602,601,-1,915,602,598,-1,702,603,698,-1,503,603,702,-1,487,424,423,-1,487,489,424,-1,1096,931,707,-1,1096,1153,931,-1,586,1073,587,-1,1073,586,607,-1,1154,887,1153,-1,1154,888,887,-1,1075,616,615,-1,1075,430,616,-1,429,422,886,-1,429,431,422,-1,620,624,913,-1,624,620,619,-1,889,912,687,-1,625,912,889,-1,936,621,918,-1,936,619,621,-1,1037,1102,1142,-1,1037,1004,1102,-1,1150,1170,1169,-1,1150,1171,1170,-1,920,1149,1169,-1,1149,920,1145,-1,635,494,496,-1,635,1235,494,-1,1235,635,1155,-1,1151,1228,1155,-1,1228,1151,1043,-1,1235,1173,1098,-1,1227,1173,1235,-1,1174,629,569,-1,1174,1141,629,-1,1174,583,560,-1,583,1174,584,-1,1138,1038,1143,-1,1224,1038,1138,-1,1222,1156,1223,-1,1139,1156,1222,-1,1157,1156,1137,-1,1157,1094,1156,-1,641,1133,1092,-1,1133,641,642,-1,1129,551,1136,-1,1129,1134,551,-1,1234,1127,1126,-1,1234,1130,1127,-1,1234,1158,1232,-1,1234,1126,1158,-1,649,389,390,-1,649,644,389,-1,924,877,714,-1,923,877,924,-1,646,1159,377,-1,1159,646,645,-1,390,1124,649,-1,390,1159,1124,-1,390,1125,1159,-1,1068,652,384,-1,537,652,1068,-1,504,1064,875,-1,654,1064,504,-1,1061,729,1160,-1,1061,341,729,-1,1161,721,905,-1,721,1161,1160,-1,1064,1162,345,-1,1064,1163,1162,-1,541,658,904,-1,540,658,541,-1,668,905,656,-1,905,668,1161,-1,1164,1162,521,-1,1162,1164,1123,-1,535,904,659,-1,904,535,657,-1,1163,660,716,-1,1163,906,660,-1,529,401,508,-1,401,529,531,-1,534,663,532,-1,663,534,664,-1,1165,1230,1072,-1,1230,1165,1119,-1,1069,901,881,-1,901,1069,1166,-1,873,1164,521,-1,1055,1164,873,-1,708,693,418,-1,1076,693,708,-1,899,675,1114,-1,899,676,675,-1,382,652,504,-1,382,384,652,-1,672,677,718,-1,672,671,677,-1,1089,484,483,-1,1089,1167,484,-1,895,631,1101,-1,895,897,631,-1,497,893,927,-1,630,893,497,-1,892,893,630,-1,627,686,912,-1,627,1100,686,-1,1171,497,1170,-1,498,497,1171,-1,680,893,571,-1,894,893,680,-1,571,896,1168,-1,571,892,896,-1,627,1109,1107,-1,627,626,1109,-1,1083,633,681,-1,1083,636,633,-1,1175,1232,1158,-1,1232,1175,1177,-1,549,1157,556,-1,1157,549,641,-1,1090,1112,1111,-1,1090,1176,1112,-1,1231,1177,1175,-1,1177,1231,1086,-1,1167,682,484,-1,1167,1231,682,-1,684,939,938,-1,890,939,684,-1,614,617,600,-1,614,479,617,-1,502,689,477,-1,689,502,457,-1,481,695,1076,-1,481,691,695,-1,427,705,699,-1,426,705,427,-1,427,590,428,-1,590,427,447,-1,417,445,883,-1,417,1080,445,-1,885,594,593,-1,594,885,579,-1,421,886,422,-1,421,576,886,-1,440,407,581,-1,408,407,440,-1,701,430,429,-1,701,703,430,-1,1078,1119,1117,-1,1078,1230,1119,-1,1077,1230,1078,-1,1075,420,676,-1,1075,615,420,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc4_Geo_5_55_coordIndex_10()
		{
			int[] value = {412,588,413,-1,605,588,412,-1,1120,1113,1115,-1,1120,1165,1113,-1,533,694,470,-1,533,532,694,-1,878,411,712,-1,410,411,878,-1,540,373,658,-1,540,374,373,-1,391,644,545,-1,391,389,644,-1,714,506,715,-1,714,877,506,-1,596,1179,597,-1,596,1178,1179,-1,1179,942,1056,-1,942,1179,368,-1,511,39,363,-1,511,211,39,-1,677,1065,678,-1,677,1180,1065,-1,1180,940,1178,-1,940,1180,1066,-1,667,514,358,-1,667,515,514,-1,905,720,655,-1,720,905,721,-1,723,1181,2,-1,1182,1181,723,-1,1184,722,724,-1,1184,1183,722,-1,728,672,343,-1,728,727,672,-1,903,470,730,-1,903,533,470,-1,732,517,516,-1,517,732,976,-1,332,696,730,-1,332,935,696,-1,1069,399,398,-1,1069,526,399,-1,1214,851,173,-1,1214,1185,851,-1,106,790,104,-1,108,790,106,-1,854,790,107,-1,854,1051,790,-1,145,137,146,-1,145,743,137,-1,871,97,96,-1,871,870,97,-1,1000,784,783,-1,1050,784,1000,-1,798,1010,748,-1,746,1010,798,-1,295,1039,296,-1,295,1005,1039,-1,1187,1188,1200,-1,1188,1187,1047,-1,1189,1188,1044,-1,1189,1229,1188,-1,1146,1189,1147,-1,1146,1042,1189,-1,1227,1048,1226,-1,1228,1048,1227,-1,193,1226,194,-1,193,1217,1226,-1,296,1191,750,-1,296,1036,1191,-1,285,1191,283,-1,285,1225,1191,-1,1224,1033,1035,-1,1033,1224,1222,-1,757,1093,868,-1,1223,1093,757,-1,1027,184,761,-1,1027,185,184,-1,995,1135,1032,-1,995,1095,1135,-1,1132,1030,1031,-1,1030,1132,1131,-1,1028,1233,1221,-1,1028,1128,1233,-1,1233,998,1221,-1,998,1233,996,-1,958,268,824,-1,268,958,269,-1,1192,49,823,-1,266,49,1192,-1,264,267,269,-1,264,272,267,-1,766,257,765,-1,766,256,257,-1,1220,18,840,-1,959,18,1220,-1,1220,1020,1019,-1,970,1020,1220,-1,839,1194,1017,-1,845,1194,839,-1,865,948,256,-1,948,865,1018,-1,1194,771,1218,-1,1022,771,1194,-1,767,250,864,-1,767,240,250,-1,76,768,237,-1,768,76,75,-1,1204,949,78,-1,1219,949,1204,-1,769,72,71,-1,72,769,234,-1,770,1218,771,-1,964,1218,770,-1,227,224,228,-1,227,950,224,-1,775,41,210,-1,776,41,775,-1,962,41,776,-1,814,79,160,-1,814,77,79,-1,1012,218,777,-1,1012,219,218,-1,991,1215,989,-1,1198,1215,991,-1,1010,299,1009,-1,1010,297,299,-1,1041,1001,1002,-1,1041,293,1001,-1,1229,754,1007,-1,1229,755,754,-1,1008,1190,1199,-1,1008,286,1190,-1,752,749,204,-1,752,789,749,-1,782,1187,1200,-1,1187,782,1049,-1,203,295,204,-1,203,756,295,-1,207,1009,299,-1,207,206,1009,-1,1199,858,1008,-1,1199,783,858,-1,1172,1217,1216,-1,1172,1173,1217,-1,1053,1225,740,-1,1225,1053,751,-1,763,992,791,-1,992,763,1025,-1,1176,1216,1201,-1,1176,1172,1216,-1,1198,994,1215,-1,1198,1201,994,-1,999,988,997,-1,1085,988,999,-1,817,987,815,-1,817,857,987,-1,793,857,817,-1,793,182,857,-1,797,816,179,-1,163,816,797,-1,944,169,168,-1,169,944,177,-1,163,157,800,-1,163,162,157,-1,954,109,957,-1,954,872,109,-1,735,1213,1214,-1,735,808,1213,-1,308,1213,274,-1,1202,1213,308,-1,809,1202,852,-1,1202,809,1185,-1,806,302,855,-1,302,806,306,-1,108,111,957,-1,111,108,106,-1,89,313,312,-1,89,315,313,-1,1197,93,92,-1,93,1197,161,-1,307,867,764,-1,307,276,867,-1,802,91,90,-1,275,91,802,-1,870,82,97,-1,82,870,850,-1,1203,979,74,-1,1195,979,1203,-1,1011,1204,983,-1,1011,1015,1204,-1,244,153,242,-1,235,153,244,-1,824,328,958,-1,824,825,328,-1,856,10,322,-1,856,11,10,-1,848,1205,977,-1,848,828,1205,-1,13,848,842,-1,826,848,13,-1,1206,1013,214,-1,1206,971,1013,-1,1205,973,320,-1,1206,973,1205,-1,846,1020,1193,-1,846,225,1020,-1,967,1212,1208,-1,967,968,1212,-1,967,969,968,-1,967,1209,969,-1,967,1211,1209,-1,1211,967,966,-1,832,1210,5,-1,832,1207,1210,-1,841,21,833,-1,223,21,841,-1,836,21,223,-1,27,1212,28,-1,27,1208,1212,-1,1207,1211,1210,-1,1207,1209,1211,-1,834,844,835,-1,834,259,844,-1,10,233,847,-1,233,10,9,-1,818,985,112,-1,818,1196,985,-1,3,350,679,-1,350,3,22,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc4_Geo_5_55_normalIndex_1()
		{
			int[] value = {28,332,129,-1,298,446,141,-1,878,517,975,-1,385,97,31,-1,388,246,598,-1,26,11,15,-1,1103,429,722,-1,159,289,298,-1,558,209,262,-1,1208,1079,1106,-1,384,662,299,-1,629,530,630,-1,276,890,693,-1,608,610,297,-1,170,192,297,-1,1147,1233,1113,-1,566,736,520,-1,1113,859,921,-1,484,495,220,-1,753,565,663,-1,484,220,203,-1,1117,970,1113,-1,1133,1221,1112,-1,929,1044,994,-1,810,980,1019,-1,652,841,980,-1,701,402,679,-1,887,1153,1157,-1,263,351,186,-1,1086,1164,1138,-1,196,712,448,-1,1050,1024,1142,-1,1026,751,673,-1,424,953,665,-1,1229,1150,1202,-1,922,541,906,-1,1045,800,1161,-1,872,898,892,-1,411,799,334,-1,898,1028,902,-1,389,818,741,-1,490,820,468,-1,215,586,745,-1,664,371,401,-1,664,907,1008,-1,140,40,29,-1,94,124,29,-1,94,411,334,-1,29,4,103,-1,1051,1054,766,-1,411,243,493,-1,1084,876,910,-1,742,534,789,-1,899,967,719,-1,978,992,586,-1,86,3,22,-1,22,3,35,-1,305,302,31,-1,55,18,146,-1,67,12,153,-1,505,225,682,-1,1065,1137,773,-1,1214,1196,1230,-1,1014,1207,1125,-1,1068,820,806,-1,1192,1194,1223,-1,1159,1194,1102,-1,881,768,947,-1,1134,811,864,-1,986,811,1134,-1,911,1015,1120,-1,1058,1151,1074,-1,391,567,378,-1,281,459,408,-1,116,382,138,-1,261,672,787,-1,198,237,363,-1,159,298,141,-1,1117,1198,1044,-1,271,259,606,-1,693,416,191,-1,191,107,276,-1,323,442,423,-1,926,684,549,-1,300,611,419,-1,831,1005,669,-1,831,669,530,-1,990,649,646,-1,1022,990,874,-1,839,464,385,-1,302,839,385,-1,402,857,325,-1,517,679,403,-1,1157,1226,1128,-1,1193,1170,1183,-1,238,483,344,-1,1193,1183,1077,-1,701,759,879,-1,1198,1133,1044,-1,1190,1052,1162,-1,949,813,832,-1,1124,1155,990,-1,707,813,783,-1,1228,1166,1191,-1,948,934,1035,-1,994,1112,1164,-1,929,980,841,-1,550,533,545,-1,595,501,638,-1,544,769,921,-1,529,536,484,-1,807,415,278,-1,784,986,914,-1,1130,1185,1135,-1,1098,1110,1017,-1,1058,1092,1135,-1,244,294,281,-1,578,435,527,-1,391,378,267,-1,111,201,156,-1,787,896,977,-1,1029,1013,809,-1,1229,1129,1111,-1,1008,907,1037,-1,1084,932,967,-1,401,745,907,-1,1064,665,953,-1,534,742,1014,-1,1161,1216,1181,-1,1086,1019,980,-1,719,493,243,-1,475,473,807,-1,103,447,315,-1,1072,1074,1151,-1,1182,1143,1120,-1,1028,972,1122,-1,1188,1065,1054,-1,27,195,309,-1,104,65,93,-1,18,86,146,-1,1160,1195,1149,-1,78,188,137,-1,637,518,993,-1,1212,1219,1232,-1,955,487,829,-1,157,236,44,-1,70,377,487,-1,296,338,219,-1,1007,1073,795,-1,792,1073,943,-1,829,319,795,-1,1057,950,852,-1,998,884,1062,-1,332,293,852,-1,791,884,709,-1,1009,1053,923,-1,1121,1139,1152,-1,1009,969,1055,-1,1030,1109,1158,-1,118,36,2,-1,1030,761,919,-1,379,462,125,-1,462,564,478,-1,656,503,482,-1,189,247,100,-1,14,36,100,-1,681,564,714,-1,478,655,589,-1,478,396,306,-1,77,407,498,-1,776,720,266,-1,149,105,123,-1,6,71,102,-1,763,439,136,-1,273,102,227,-1,74,469,210,-1,856,764,754,-1,939,933,815,-1,123,83,330,-1,90,150,258,-1,313,185,221,-1,575,733,704,-1,823,842,1021,-1,1063,1038,837,-1,343,187,790,-1,1210,1218,1197,-1,1197,1063,1021,-1,1218,1231,1091,-1,63,21,20,-1,1197,1218,1038,-1,359,502,808,-1,467,147,303,-1,359,808,661,-1,336,467,454,-1,167,257,163,-1,147,255,82,-1,1219,1220,1225,-1,1158,1209,1145,-1,1200,1212,1232,-1,1145,1211,1154,-1,1220,1219,1224,-1,1097,803,1154,-1,327,277,251,-1,52,96,19,-1,50,175,738,-1,803,210,469,-1,362,543,471,-1,193,210,328,-1,114,326,172,-1,91,288,222,-1,41,91,222,-1,670,866,711,-1,1067,1023,1080,-1,321,226,661,-1,361,96,308,-1,579,824,656,-1,871,824,1040,-1,61,149,295,-1,961,966,1002,-1,955,1002,767,-1,884,770,555,-1,596,621,646,-1,350,214,637,-1,399,270,347,-1,930,937,381,-1,835,836,535,-1,10,64,51,-1,952,991,680,-1,268,535,390,-1,286,301,452,-1,59,199,120,-1,42,121,71,-1,856,744,1011,-1,368,507,222,-1,248,427,581,-1,504,372,172,-1,46,101,98,-1,95,88,46,-1,152,130,81,-1,457,828,651,-1,866,987,1020,-1,412,329,217,-1,346,855,395,-1,52,8,39,-1,16,62,13,-1,671,303,257,-1,763,136,102,-1,1140,995,1132,-1,345,200,252,-1,310,200,345,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc4_Geo_5_55_normalIndex_2()
		{
			int[] value = {180,563,212,-1,112,66,180,-1,32,49,20,-1,843,1099,1087,-1,91,41,74,-1,1131,1105,1152,-1,695,272,166,-1,1218,1070,928,-1,20,179,48,-1,112,258,66,-1,41,114,53,-1,88,150,172,-1,918,790,1132,-1,431,754,764,-1,492,995,748,-1,260,227,155,-1,187,54,73,-1,1,166,32,-1,571,432,168,-1,321,525,837,-1,82,303,147,-1,142,34,117,-1,428,223,206,-1,25,190,176,-1,256,412,178,-1,1123,1080,1031,-1,819,973,866,-1,711,802,650,-1,987,924,984,-1,95,130,200,-1,239,139,152,-1,81,108,152,-1,320,248,451,-1,532,761,705,-1,706,307,470,-1,659,532,697,-1,260,155,306,-1,71,121,100,-1,335,118,264,-1,199,286,120,-1,452,579,461,-1,452,425,499,-1,110,214,241,-1,285,268,390,-1,43,14,72,-1,485,557,347,-1,149,51,42,-1,865,885,749,-1,51,64,42,-1,77,106,10,-1,720,835,535,-1,709,555,406,-1,555,240,204,-1,821,611,955,-1,1078,1114,985,-1,295,312,685,-1,847,796,815,-1,824,871,656,-1,1127,1156,1040,-1,606,966,961,-1,1007,1062,938,-1,487,377,829,-1,412,651,739,-1,785,973,819,-1,150,200,310,-1,114,222,326,-1,101,427,248,-1,372,427,101,-1,354,193,279,-1,133,30,75,-1,1,17,30,-1,432,420,166,-1,117,19,229,-1,34,19,117,-1,308,52,179,-1,554,1010,738,-1,1046,1082,1168,-1,1082,1220,1168,-1,1010,1097,1180,-1,937,930,1205,-1,1209,1200,1211,-1,1232,1225,1154,-1,226,82,255,-1,336,361,359,-1,336,359,147,-1,748,995,830,-1,359,361,502,-1,184,185,497,-1,21,184,20,-1,1210,1140,1132,-1,575,228,321,-1,837,844,575,-1,842,823,465,-1,771,420,733,-1,322,313,221,-1,486,440,830,-1,322,345,364,-1,73,439,187,-1,312,330,704,-1,83,123,6,-1,814,815,571,-1,563,469,212,-1,53,74,41,-1,247,155,71,-1,136,13,37,-1,102,71,155,-1,1046,885,974,-1,407,77,80,-1,535,836,557,-1,260,396,589,-1,511,227,260,-1,14,121,42,-1,125,118,2,-1,1119,875,1075,-1,564,655,478,-1,1011,705,761,-1,307,379,125,-1,503,656,871,-1,341,347,270,-1,1053,1078,966,-1,608,868,923,-1,338,945,1040,-1,132,60,33,-1,1088,1057,998,-1,950,583,332,-1,129,157,28,-1,976,1007,678,-1,779,883,162,-1,767,132,92,-1,961,1002,955,-1,1212,1222,1224,-1,850,1139,1121,-1,637,993,846,-1,937,1205,1139,-1,266,720,356,-1,766,1054,1065,-1,1217,1186,1204,-1,1026,673,1043,-1,1171,1122,1026,-1,898,1058,927,-1,898,981,1058,-1,103,315,243,-1,1043,673,415,-1,476,959,1138,-1,967,932,584,-1,1196,1184,1065,-1,953,1192,1064,-1,1093,997,960,-1,854,382,474,-1,1041,1032,935,-1,282,267,378,-1,413,694,780,-1,1135,1092,1110,-1,1151,1135,1185,-1,863,996,1004,-1,737,911,1072,-1,647,986,784,-1,1015,734,858,-1,373,220,495,-1,1164,1112,1193,-1,948,777,783,-1,707,597,693,-1,832,679,964,-1,1183,1177,1077,-1,1170,1128,1226,-1,964,679,878,-1,880,839,857,-1,725,1039,1022,-1,639,1022,874,-1,598,874,646,-1,649,831,629,-1,669,466,352,-1,249,300,722,-1,458,249,429,-1,1111,926,922,-1,963,926,1077,-1,191,416,365,-1,597,777,762,-1,566,416,597,-1,752,773,1137,-1,745,992,907,-1,164,156,213,-1,1159,1060,1199,-1,414,903,804,-1,957,893,935,-1,411,758,799,-1,858,941,1149,-1,1163,1185,1134,-1,947,915,1024,-1,947,768,727,-1,1094,1142,1149,-1,751,915,410,-1,1194,1199,1223,-1,1049,1192,953,-1,1214,1207,1137,-1,982,957,908,-1,86,410,522,-1,11,26,12,-1,89,165,86,-1,35,3,23,-1,89,22,24,-1,3,18,12,-1,1141,978,1084,-1,1141,967,1085,-1,904,742,789,-1,876,978,586,-1,910,789,932,-1,493,584,534,-1,960,997,982,-1,195,27,40,-1,1172,1186,1217,-1,4,27,160,-1,215,173,40,-1,447,1045,899,-1,745,401,173,-1,417,215,409,-1,1074,972,927,-1,972,1074,1143,-1,752,417,430,-1,906,1111,922,-1,442,323,292,-1,18,55,12,-1,1024,751,1160,-1,881,1050,1094,-1,917,931,894,-1,1019,1086,959,-1,1229,1202,1138,-1,1111,1129,1077,-1,517,453,741,-1,15,238,305,-1,900,929,753,-1,753,652,582,-1,526,663,565,-1,1190,1233,1174,-1,1133,1198,1221,-1,900,772,970,-1,772,900,753,-1,1113,970,859,-1,314,203,126,-1,126,78,137,-1,253,218,148,-1,122,93,97,-1,297,218,366,-1,530,446,630,-1,384,466,909,-1,141,352,231,-1,437,920,869,-1,289,159,445,-1,209,688,437,-1,936,1016,890,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc4_Geo_5_55_normalIndex_3()
		{
			int[] value = {1144,722,869,-1,1079,1208,1191,-1,397,722,300,-1,3,26,23,-1,202,725,639,-1,446,791,630,-1,662,909,1106,-1,791,938,1062,-1,246,202,639,-1,1191,1001,1079,-1,416,693,597,-1,869,1167,1144,-1,936,1108,1016,-1,437,159,209,-1,437,869,397,-1,1208,1106,909,-1,141,446,352,-1,466,944,909,-1,530,352,446,-1,297,192,218,-1,122,97,113,-1,148,182,253,-1,76,126,203,-1,1233,1198,1117,-1,314,484,203,-1,970,772,859,-1,753,663,772,-1,762,736,566,-1,1133,994,1044,-1,1198,1190,1221,-1,1190,1198,1233,-1,753,841,652,-1,929,841,753,-1,741,818,1157,-1,1157,975,741,-1,741,975,517,-1,926,1111,1077,-1,1138,1164,1229,-1,1101,800,476,-1,1086,1138,959,-1,1024,1160,1142,-1,473,475,373,-1,292,424,442,-1,906,1150,1111,-1,1122,972,1143,-1,1028,1051,902,-1,1068,703,820,-1,409,430,417,-1,401,195,173,-1,468,309,371,-1,40,140,215,-1,160,134,4,-1,1217,1213,1172,-1,173,195,40,-1,417,752,876,-1,493,534,508,-1,932,1084,910,-1,586,417,876,-1,904,789,910,-1,1076,1141,1085,-1,1076,992,1141,-1,12,26,3,-1,89,24,76,-1,23,45,35,-1,86,22,89,-1,11,12,67,-1,86,522,146,-1,908,960,982,-1,1137,1184,1214,-1,953,505,1049,-1,1194,1159,1199,-1,751,1024,915,-1,947,727,870,-1,947,1024,1050,-1,1072,911,1120,-1,1149,1015,858,-1,1015,1149,1195,-1,527,378,567,-1,1159,979,1060,-1,164,111,156,-1,261,116,154,-1,745,586,992,-1,1137,904,752,-1,597,762,566,-1,365,188,191,-1,1177,963,1077,-1,249,259,271,-1,722,429,249,-1,352,530,669,-1,646,621,598,-1,874,598,639,-1,725,1022,639,-1,880,962,839,-1,679,402,403,-1,1226,1183,1170,-1,556,245,283,-1,1183,1226,1177,-1,832,964,989,-1,693,886,707,-1,948,783,934,-1,1115,1035,1174,-1,1193,1129,1164,-1,373,169,220,-1,647,811,986,-1,1072,864,737,-1,863,853,996,-1,1185,1163,1151,-1,1135,1110,1098,-1,672,413,780,-1,282,205,267,-1,935,787,1041,-1,854,474,893,-1,1125,1093,960,-1,1196,1214,1184,-1,1215,1173,1216,-1,1188,1196,1065,-1,1014,1125,960,-1,1229,1164,1129,-1,1138,1101,476,-1,807,1043,415,-1,103,243,94,-1,898,872,981,-1,1026,1043,1171,-1,1217,1204,1188,-1,766,1065,773,-1,140,124,393,-1,270,399,774,-1,1139,850,937,-1,596,637,846,-1,850,1121,774,-1,1212,1224,1219,-1,487,767,92,-1,938,943,1073,-1,1007,546,678,-1,829,795,1073,-1,950,332,852,-1,1088,998,1062,-1,630,709,629,-1,1040,585,338,-1,608,923,610,-1,966,923,1053,-1,125,2,85,-1,871,724,503,-1,125,85,307,-1,1011,744,705,-1,564,681,655,-1,1030,1011,761,-1,125,264,118,-1,121,14,100,-1,273,788,763,-1,260,436,511,-1,589,436,260,-1,80,349,407,-1,836,891,912,-1,136,37,102,-1,788,511,1042,-1,571,318,814,-1,37,83,6,-1,704,685,312,-1,901,486,830,-1,221,345,322,-1,420,432,733,-1,808,1021,661,-1,439,790,187,-1,575,311,228,-1,1210,1099,1140,-1,1132,1231,1210,-1,21,185,184,-1,497,465,184,-1,830,713,748,-1,359,255,147,-1,467,692,454,-1,661,226,255,-1,1211,1232,1154,-1,1200,1232,1211,-1,930,1222,1205,-1,1097,1225,1180,-1,554,738,175,-1,308,96,52,-1,5,39,8,-1,19,96,229,-1,166,168,432,-1,1,30,50,-1,183,133,75,-1,354,279,471,-1,372,101,88,-1,98,101,248,-1,114,41,222,-1,150,95,200,-1,866,670,819,-1,819,827,785,-1,1096,855,1118,-1,651,971,739,-1,873,1000,1036,-1,1007,938,1073,-1,189,36,118,-1,609,606,961,-1,1040,824,585,-1,1040,945,1127,-1,933,847,815,-1,685,551,295,-1,1078,985,883,-1,821,955,829,-1,555,204,406,-1,709,406,629,-1,350,241,214,-1,850,774,399,-1,912,381,836,-1,535,356,720,-1,266,356,106,-1,77,266,106,-1,498,888,776,-1,749,680,755,-1,865,749,794,-1,891,755,999,-1,105,149,42,-1,485,347,341,-1,189,100,36,-1,43,72,181,-1,285,390,425,-1,110,241,79,-1,425,463,499,-1,44,68,7,-1,452,499,579,-1,199,301,286,-1,71,100,247,-1,396,260,306,-1,706,470,723,-1,532,705,697,-1,172,372,88,-1,81,46,108,-1,239,211,139,-1,95,81,130,-1,987,973,924,-1,973,987,866,-1,1031,1036,1123,-1,256,339,412,-1,176,38,25,-1,223,47,206,-1,123,105,6,-1,197,321,228,-1,82,257,303,-1,837,575,321,-1,168,318,571,-1,54,16,73,-1,136,439,73,-1,492,918,995,-1,436,1042,511,-1,88,95,150,-1,114,90,53,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc4_Geo_5_55_normalIndex_4()
		{
			int[] value = {258,221,66,-1,20,184,179,-1,928,1038,1218,-1,166,500,695,-1,1152,1169,1131,-1,1097,1154,1225,-1,74,87,91,-1,20,48,32,-1,180,212,112,-1,252,364,345,-1,995,918,1132,-1,754,1042,436,-1,102,273,763,-1,105,71,6,-1,274,117,229,-1,168,50,318,-1,346,739,855,-1,217,178,412,-1,866,1020,954,-1,457,540,828,-1,152,139,130,-1,46,81,95,-1,98,108,46,-1,172,326,504,-1,451,248,581,-1,1011,1061,856,-1,553,514,588,-1,71,105,42,-1,452,461,286,-1,268,280,535,-1,10,106,64,-1,356,535,280,-1,930,381,912,-1,381,399,347,-1,637,596,350,-1,596,646,350,-1,629,406,649,-1,555,709,884,-1,767,487,955,-1,767,1002,779,-1,312,295,123,-1,295,265,61,-1,1040,1075,871,-1,308,502,361,-1,321,661,525,-1,1081,1118,971,-1,1080,1123,1067,-1,434,333,826,-1,329,346,277,-1,440,479,830,-1,288,368,222,-1,101,46,88,-1,193,328,279,-1,362,471,279,-1,91,87,158,-1,803,328,210,-1,738,318,50,-1,19,8,52,-1,327,251,274,-1,1097,698,803,-1,1224,1168,1220,-1,1154,1066,1145,-1,1200,1189,1212,-1,1209,1211,1145,-1,1225,1232,1219,-1,82,226,163,-1,257,82,163,-1,454,361,336,-1,661,255,359,-1,467,336,147,-1,251,234,274,-1,1197,1038,1063,-1,63,20,49,-1,1091,1070,1218,-1,1021,1087,1197,-1,1210,1231,1218,-1,844,928,771,-1,1063,837,525,-1,1021,808,823,-1,420,500,166,-1,310,258,150,-1,90,258,112,-1,823,808,502,-1,330,312,123,-1,815,814,939,-1,1220,1180,1225,-1,87,74,210,-1,158,193,354,-1,342,304,316,-1,102,155,227,-1,6,102,37,-1,149,123,295,-1,776,266,498,-1,930,999,1222,-1,498,266,77,-1,478,306,335,-1,589,396,478,-1,14,43,36,-1,264,462,335,-1,462,478,335,-1,462,264,125,-1,919,1109,1030,-1,1119,1156,1109,-1,1055,1095,1009,-1,1121,1152,1105,-1,923,868,1009,-1,709,630,791,-1,293,770,852,-1,884,791,1062,-1,1057,852,998,-1,583,129,332,-1,829,377,319,-1,795,546,1007,-1,219,127,296,-1,487,92,70,-1,579,585,824,-1,44,28,157,-1,518,1034,993,-1,78,191,188,-1,1149,1142,1160,-1,104,93,122,-1,309,160,27,-1,1188,1054,1217,-1,1171,1028,1122,-1,1182,1120,1195,-1,1072,1151,1163,-1,712,196,810,-1,243,315,719,-1,1161,800,1101,-1,1161,1181,1045,-1,534,1014,798,-1,1204,1068,1235,-1,1064,806,665,-1,907,664,401,-1,967,1141,1084,-1,1125,1201,1093,-1,1029,1187,1013,-1,1041,787,977,-1,111,198,201,-1,267,281,391,-1,244,281,267,-1,1058,1135,1151,-1,1098,1017,988,-1,1098,1130,1135,-1,1163,864,1072,-1,278,475,807,-1,529,484,595,-1,544,921,533,-1,550,544,533,-1,929,1086,980,-1,994,1133,1112,-1,970,1117,900,-1,1115,948,1035,-1,707,775,813,-1,990,1022,1124,-1,832,989,949,-1,1162,1221,1190,-1,879,880,701,-1,1193,1077,1129,-1,483,556,488,-1,453,389,741,-1,1128,975,1157,-1,1128,878,975,-1,517,878,679,-1,302,857,839,-1,990,646,874,-1,530,629,831,-1,831,1033,1005,-1,419,397,300,-1,926,549,922,-1,423,370,323,-1,566,365,416,-1,191,78,107,-1,271,606,609,-1,159,141,209,-1,397,869,722,-1,787,474,261,-1,408,391,281,-1,1074,927,1058,-1,1015,1195,1120,-1,986,1134,1146,-1,1163,1134,864,-1,947,1050,881,-1,1159,1102,1048,-1,1192,1223,1235,-1,806,1064,1068,-1,1014,1137,1207,-1,1125,1207,1201,-1,1065,1184,1137,-1,1049,505,682,-1,67,153,186,-1,55,146,225,-1,31,15,305,-1,22,35,24,-1,86,18,3,-1,978,1141,992,-1,899,1085,967,-1,876,904,910,-1,1084,978,876,-1,493,508,411,-1,752,904,876,-1,766,716,1051,-1,103,94,29,-1,94,243,411,-1,140,29,124,-1,1008,925,664,-1,1045,447,800,-1,586,215,417,-1,745,173,215,-1,766,430,409,-1,490,806,820,-1,389,394,818,-1,898,902,892,-1,799,750,334,-1,922,549,541,-1,1229,1111,1150,-1,665,442,424,-1,1050,1142,1094,-1,1195,1160,1182,-1,1164,1086,994,-1,325,344,402,-1,1157,818,887,-1,652,980,810,-1,1019,712,810,-1,476,448,959,-1,994,1086,929,-1,1193,1112,1221,-1,1113,1233,1117,-1,188,360,137,-1,753,582,565,-1,484,536,495,-1,921,1147,1113,-1,520,365,566,-1,962,880,879,-1,297,259,170,-1,297,366,608,-1,276,693,191,-1,1203,1175,1103,-1,384,909,662,-1,558,688,209,-1,1069,355,458,-1,1144,1103,722,-1,300,249,271,-1,26,15,23,-1,246,639,598,-1,31,302,385,-1,464,839,962,-1,821,419,611,-1,446,938,791,-1,446,298,938,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc4_Geo_5_55_normalIndex_5()
		{
			int[] value = {725,151,731,-1,202,151,725,-1,238,556,483,-1,245,556,238,-1,936,276,235,-1,276,936,890,-1,458,1103,1069,-1,458,429,1103,-1,324,558,262,-1,558,324,559,-1,548,299,662,-1,299,548,348,-1,558,1001,688,-1,1001,558,1079,-1,1167,1228,1234,-1,1166,1228,1167,-1,148,192,131,-1,192,148,218,-1,69,78,126,-1,69,84,78,-1,388,607,398,-1,607,388,604,-1,151,122,113,-1,135,122,151,-1,253,366,218,-1,253,398,366,-1,24,65,69,-1,24,35,65,-1,769,762,946,-1,762,769,736,-1,283,186,351,-1,67,186,283,-1,740,560,942,-1,560,740,438,-1,682,894,931,-1,682,522,894,-1,278,76,169,-1,89,76,278,-1,323,263,292,-1,263,323,275,-1,418,389,444,-1,394,389,418,-1,195,371,309,-1,401,371,195,-1,1173,1008,1216,-1,1173,925,1008,-1,4,196,103,-1,4,134,196,-1,1213,1043,1172,-1,1213,1171,1043,-1,1213,1054,1051,-1,1217,1054,1213,-1,409,140,393,-1,409,215,140,-1,584,789,534,-1,584,932,789,-1,798,960,908,-1,1014,960,798,-1,804,1048,917,-1,1048,804,903,-1,881,1149,941,-1,881,1094,1149,-1,654,917,816,-1,917,654,804,-1,574,568,667,-1,574,538,568,-1,667,941,715,-1,667,881,941,-1,408,592,481,-1,592,408,459,-1,853,914,996,-1,757,914,853,-1,626,562,521,-1,632,562,626,-1,414,654,294,-1,414,804,654,-1,1047,460,1013,-1,450,460,1047,-1,765,605,812,-1,765,613,605,-1,378,435,282,-1,527,435,378,-1,367,154,164,-1,367,413,154,-1,111,237,198,-1,111,138,237,-1,414,244,433,-1,294,244,414,-1,854,509,382,-1,854,916,509,-1,1153,963,1177,-1,1153,942,963,-1,331,708,560,-1,370,708,331,-1,355,115,170,-1,355,235,115,-1,271,611,300,-1,271,609,611,-1,444,488,418,-1,488,444,483,-1,438,421,353,-1,421,438,404,-1,879,1003,962,-1,1003,879,897,-1,1176,1005,1033,-1,1005,1176,1178,-1,934,1052,1035,-1,934,949,1052,-1,1136,1124,1116,-1,1124,1136,1175,-1,1136,936,1069,-1,1108,936,1136,-1,1117,929,900,-1,1117,1044,929,-1,948,1147,946,-1,1147,948,1115,-1,736,700,520,-1,700,736,690,-1,495,652,373,-1,495,582,652,-1,734,687,858,-1,734,593,687,-1,561,512,552,-1,519,512,561,-1,539,784,653,-1,539,647,784,-1,734,911,737,-1,911,734,1015,-1,1146,1004,996,-1,1146,1130,1004,-1,1004,861,863,-1,861,1004,988,-1,1017,849,862,-1,1017,1025,849,-1,849,602,599,-1,849,848,602,-1,171,201,207,-1,201,171,156,-1,694,765,780,-1,694,735,765,-1,619,691,660,-1,617,691,619,-1,570,648,660,-1,570,578,648,-1,224,205,282,-1,224,171,205,-1,982,893,957,-1,982,854,893,-1,1048,979,1159,-1,1048,903,979,-1,1013,1206,1047,-1,1187,1206,1013,-1,781,908,895,-1,781,798,908,-1,965,908,957,-1,895,908,965,-1,766,752,430,-1,766,773,752,-1,1165,1158,1109,-1,1165,1209,1158,-1,1121,510,774,-1,510,1121,1083,-1,319,44,236,-1,68,44,319,-1,1057,889,950,-1,940,889,1057,-1,380,678,157,-1,380,677,678,-1,976,1062,1007,-1,976,1088,1062,-1,0,56,7,-1,0,57,56,-1,219,585,357,-1,585,219,338,-1,1148,1169,1165,-1,1131,1169,1148,-1,1078,1104,1114,-1,1078,1053,1104,-1,840,993,969,-1,846,993,840,-1,607,868,608,-1,607,840,868,-1,287,307,85,-1,470,307,287,-1,836,833,891,-1,833,836,835,-1,885,958,974,-1,885,865,958,-1,290,349,80,-1,290,496,349,-1,1061,1030,1158,-1,1030,1061,1011,-1,1145,825,956,-1,825,1145,1066,-1,760,704,733,-1,760,685,704,-1,1090,1220,1082,-1,1220,1090,1180,-1,258,345,221,-1,258,310,345,-1,797,407,349,-1,407,797,851,-1,771,500,420,-1,928,500,771,-1,16,136,73,-1,13,136,16,-1,197,16,54,-1,228,16,197,-1,695,284,272,-1,695,747,284,-1,431,63,284,-1,431,180,63,-1,843,465,497,-1,842,465,843,-1,713,671,748,-1,713,692,671,-1,5,19,34,-1,5,8,19,-1,39,32,48,-1,1,32,39,-1,30,38,75,-1,17,38,30,-1,328,698,342,-1,328,803,698,-1,422,785,642,-1,576,785,422,-1,702,634,657,-1,702,633,634,-1,756,543,642,-1,756,726,543,-1,827,743,756,-1,827,728,743,-1,480,612,383,-1,612,480,622,-1,340,252,269,-1,340,364,252,-1,590,827,819,-1,590,728,827,-1,333,805,826,-1,333,254,805,-1,428,778,223,-1,428,873,778,-1,426,457,339,-1,426,472,457,-1,838,954,1012,-1,954,838,802,-1,828,971,651,-1,1081,971,828,-1,1020,984,1018,-1,1020,987,984,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc4_Geo_5_55_normalIndex_6()
		{
			int[] value = {746,1027,1018,-1,746,786,1027,-1,206,234,317,-1,206,142,234,-1,319,546,795,-1,319,236,546,-1,729,633,702,-1,729,635,633,-1,265,676,290,-1,265,531,676,-1,847,958,905,-1,933,958,847,-1,685,796,551,-1,760,796,685,-1,884,852,770,-1,884,998,852,-1,214,518,637,-1,214,194,518,-1,356,64,106,-1,64,356,280,-1,822,794,749,-1,822,817,794,-1,822,834,817,-1,794,882,865,-1,794,817,882,-1,557,390,535,-1,557,485,390,-1,14,64,72,-1,14,42,64,-1,425,485,463,-1,425,390,485,-1,214,119,194,-1,119,214,110,-1,56,332,28,-1,293,332,56,-1,301,425,452,-1,301,285,425,-1,127,119,99,-1,127,161,119,-1,28,7,56,-1,7,28,44,-1,162,60,132,-1,60,162,99,-1,2,120,85,-1,59,120,2,-1,696,553,588,-1,696,723,553,-1,640,564,462,-1,714,564,640,-1,503,723,470,-1,723,503,553,-1,761,659,919,-1,659,761,532,-1,641,504,507,-1,641,683,504,-1,623,721,730,-1,721,623,624,-1,627,577,699,-1,577,627,628,-1,372,683,675,-1,372,504,683,-1,239,108,232,-1,152,108,239,-1,375,239,376,-1,375,211,239,-1,139,208,144,-1,211,208,139,-1,387,208,386,-1,387,256,208,-1,1059,1018,1027,-1,1059,1020,1018,-1,613,506,472,-1,613,614,506,-1,615,542,528,-1,617,542,615,-1,643,572,666,-1,572,643,542,-1,666,802,838,-1,650,802,666,-1,1012,1080,1023,-1,1012,1059,1080,-1,277,217,329,-1,217,277,269,-1,175,30,133,-1,30,175,50,-1,5,47,25,-1,47,5,34,-1,163,321,197,-1,321,163,226,-1,179,39,48,-1,179,52,39,-1,343,54,187,-1,167,54,343,-1,343,918,492,-1,343,790,918,-1,436,856,754,-1,436,589,856,-1,1132,788,1042,-1,788,1132,763,-1,272,32,166,-1,32,272,49,-1,1066,803,469,-1,1154,803,1066,-1,1119,1040,1156,-1,1119,1075,1040,-1,502,465,823,-1,502,308,465,-1,327,269,277,-1,269,327,340,-1,327,456,340,-1,327,449,456,-1,37,62,83,-1,37,13,62,-1,254,183,75,-1,254,333,183,-1,346,251,277,-1,346,395,251,-1,1020,1012,954,-1,1020,1059,1012,-1,580,666,572,-1,580,650,666,-1,542,619,572,-1,619,542,617,-1,472,540,457,-1,472,506,540,-1,1031,1059,1027,-1,1080,1059,1031,-1,602,386,599,-1,602,387,386,-1,386,211,375,-1,386,208,211,-1,376,232,374,-1,239,232,376,-1,232,98,242,-1,232,108,98,-1,326,507,504,-1,222,507,326,-1,451,699,577,-1,451,581,699,-1,730,675,683,-1,675,730,721,-1,547,507,368,-1,547,641,507,-1,956,431,764,-1,956,825,431,-1,659,875,919,-1,588,875,659,-1,379,640,462,-1,640,379,689,-1,85,286,287,-1,120,286,85,-1,132,9,92,-1,9,132,33,-1,57,9,58,-1,9,57,0,-1,161,219,233,-1,219,161,127,-1,463,357,499,-1,337,357,463,-1,194,161,230,-1,161,194,119,-1,72,280,268,-1,72,64,280,-1,61,77,10,-1,80,77,61,-1,817,801,882,-1,834,801,817,-1,749,793,822,-1,749,755,793,-1,836,347,557,-1,381,347,836,-1,937,399,381,-1,850,399,937,-1,230,518,194,-1,518,230,510,-1,350,649,241,-1,350,646,649,-1,611,961,955,-1,611,609,961,-1,1046,939,1082,-1,1046,974,939,-1,295,531,265,-1,295,551,531,-1,726,702,668,-1,702,726,729,-1,428,317,732,-1,428,206,317,-1,778,1027,786,-1,778,1031,1027,-1,828,587,867,-1,828,540,587,-1,1018,805,746,-1,1018,984,805,-1,739,329,412,-1,739,346,329,-1,838,1023,845,-1,1012,1023,838,-1,339,651,412,-1,339,457,651,-1,732,873,428,-1,732,1000,873,-1,254,746,805,-1,254,176,746,-1,590,631,728,-1,590,625,631,-1,177,269,252,-1,217,269,177,-1,524,368,288,-1,547,368,524,-1,728,636,743,-1,728,631,636,-1,756,729,726,-1,756,743,729,-1,657,632,674,-1,632,657,634,-1,422,342,316,-1,422,362,342,-1,362,328,342,-1,362,279,328,-1,304,175,133,-1,175,304,554,-1,5,1,39,-1,17,1,5,-1,167,492,257,-1,492,167,343,-1,901,497,486,-1,901,843,497,-1,180,21,63,-1,180,66,21,-1,1042,1231,1132,-1,1042,1091,1231,-1,1140,830,995,-1,901,830,1140,-1,1197,1099,1210,-1,1099,1197,1087,-1,228,62,16,-1,228,311,62,-1,844,1038,928,-1,1038,844,837,-1,888,822,793,-1,822,888,851,-1,974,933,939,-1,958,933,974,-1,1158,956,1061,-1,956,1158,1145,-1,676,496,290,-1,801,496,676,-1,1046,952,885,-1,952,1046,1168,-1,306,247,189,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc4_Geo_5_55_normalIndex_7()
		{
			int[] value = {247,306,155,-1,1119,919,875,-1,1119,1109,919,-1,1139,1189,1152,-1,1139,1205,1189,-1,1107,1055,1100,-1,1107,1095,1055,-1,1055,993,1034,-1,993,1055,969,-1,1114,1126,1127,-1,1114,1104,1126,-1,1148,1107,1131,-1,1107,1148,1126,-1,57,293,56,-1,57,240,293,-1,358,677,380,-1,686,677,358,-1,889,677,686,-1,940,677,889,-1,983,677,940,-1,913,677,983,-1,1073,821,829,-1,792,821,1073,-1,358,157,129,-1,358,380,157,-1,983,1057,1088,-1,983,940,1057,-1,70,319,377,-1,70,68,319,-1,1083,518,510,-1,518,1083,1034,-1,870,592,816,-1,870,727,592,-1,35,93,65,-1,35,45,93,-1,309,537,160,-1,537,309,703,-1,448,103,196,-1,476,103,448,-1,315,899,719,-1,315,447,899,-1,1181,899,1045,-1,899,1181,1085,-1,806,477,665,-1,806,490,477,-1,906,664,925,-1,906,541,664,-1,1029,1201,1187,-1,1093,1201,1029,-1,1199,1230,1223,-1,1230,1199,1206,-1,1032,957,935,-1,965,957,1032,-1,156,224,213,-1,156,171,224,-1,435,570,400,-1,570,435,578,-1,660,591,570,-1,691,591,660,-1,691,615,710,-1,615,691,617,-1,735,613,765,-1,735,614,613,-1,216,171,207,-1,216,205,171,-1,1025,848,849,-1,1025,977,848,-1,1025,1110,1089,-1,1110,1025,1017,-1,988,862,861,-1,988,1017,862,-1,1130,988,1004,-1,988,1130,1098,-1,552,864,561,-1,552,737,864,-1,653,627,539,-1,628,627,653,-1,519,623,512,-1,624,623,519,-1,737,593,734,-1,737,552,593,-1,501,484,314,-1,595,484,501,-1,544,736,769,-1,690,736,544,-1,663,594,772,-1,594,663,526,-1,550,526,529,-1,545,526,550,-1,545,594,526,-1,777,946,762,-1,946,777,948,-1,1175,1069,1103,-1,1136,1069,1175,-1,1228,1208,1179,-1,1191,1208,1228,-1,1116,1108,1136,-1,1116,1071,1108,-1,813,934,783,-1,813,949,934,-1,909,1179,1208,-1,1179,909,944,-1,1116,1022,1039,-1,1124,1022,1116,-1,759,813,775,-1,759,832,813,-1,1170,1221,1162,-1,1170,1193,1221,-1,832,701,679,-1,832,759,701,-1,351,556,283,-1,488,556,351,-1,455,438,740,-1,404,438,455,-1,483,405,344,-1,444,405,483,-1,857,305,325,-1,857,302,305,-1,153,424,292,-1,424,153,143,-1,370,684,708,-1,370,423,684,-1,633,513,538,-1,633,635,513,-1,688,920,437,-1,688,1001,920,-1,997,1029,916,-1,997,1093,1029,-1,207,491,216,-1,207,450,491,-1,244,205,216,-1,244,267,205,-1,164,392,367,-1,392,164,213,-1,116,474,382,-1,474,116,261,-1,237,382,509,-1,237,138,382,-1,450,1060,491,-1,450,1047,1060,-1,281,654,459,-1,281,294,654,-1,521,715,687,-1,562,715,521,-1,996,986,1146,-1,914,986,996,-1,635,494,513,-1,635,636,494,-1,562,667,715,-1,574,667,562,-1,881,568,768,-1,881,667,568,-1,917,1102,931,-1,1102,917,1048,-1,1204,1196,1188,-1,1196,1204,1235,-1,1207,1230,1201,-1,1207,1214,1230,-1,750,1051,716,-1,1051,750,902,-1,1171,1051,1028,-1,1213,1051,1171,-1,134,473,196,-1,134,489,473,-1,124,334,393,-1,94,334,124,-1,1216,1037,1181,-1,1037,1216,1008,-1,1101,1216,1161,-1,1216,1101,1215,-1,703,468,820,-1,468,703,309,-1,541,371,664,-1,490,371,541,-1,490,468,371,-1,404,394,418,-1,455,394,404,-1,394,455,441,-1,442,477,423,-1,442,665,477,-1,1026,1160,751,-1,1160,1026,1182,-1,887,942,1153,-1,887,740,942,-1,275,351,263,-1,275,369,351,-1,405,402,344,-1,403,402,405,-1,536,582,495,-1,536,565,582,-1,365,360,188,-1,365,520,360,-1,135,104,122,-1,135,128,104,-1,202,135,151,-1,182,135,202,-1,610,259,297,-1,610,606,259,-1,84,107,78,-1,84,109,107,-1,148,109,128,-1,131,109,148,-1,466,1005,944,-1,466,669,1005,-1,1175,1155,1124,-1,1203,1155,1175,-1,299,231,384,-1,231,299,174,-1,558,860,1079,-1,558,559,860,-1,348,174,299,-1,174,348,291,-1,1191,920,1001,-1,920,1191,1166,-1,731,113,464,-1,151,113,731,-1,76,69,126,-1,76,24,69,-1,821,445,419,-1,821,792,445,-1,943,445,792,-1,943,289,445,-1,517,405,453,-1,517,403,405,-1,31,23,15,-1,31,45,23,-1,621,388,598,-1,604,388,621,-1,11,238,15,-1,11,245,238,-1,235,1069,936,-1,235,355,1069,-1,145,324,262,-1,145,250,324,-1,877,662,1106,-1,662,877,548,-1,141,262,209,-1,141,145,262,-1,1179,1234,1228,-1,1179,1178,1234,-1,693,1016,886,-1,890,1016,693,-1,65,84,69,-1,84,65,104,-1,131,170,115,-1,131,192,170,-1,246,398,253,-1,398,246,388,-1,366,607,608,-1,366,398,607,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc4_Geo_5_55_normalIndex_8()
		{
			int[] value = {921,946,1147,-1,946,921,769,-1,1019,448,712,-1,448,1019,959,-1,67,245,11,-1,67,283,245,-1,560,353,331,-1,560,438,353,-1,203,169,76,-1,220,169,203,-1,415,89,278,-1,165,89,415,-1,541,477,490,-1,541,549,477,-1,12,143,153,-1,55,143,12,-1,898,972,1028,-1,898,927,972,-1,818,441,887,-1,394,441,818,-1,476,447,103,-1,447,476,800,-1,925,1150,906,-1,925,1173,1150,-1,4,40,27,-1,40,4,29,-1,951,537,968,-1,951,489,537,-1,1172,807,951,-1,1172,1043,807,-1,766,393,716,-1,393,766,409,-1,55,505,143,-1,55,225,505,-1,1014,904,1137,-1,742,904,1014,-1,1064,1235,1068,-1,1064,1192,1235,-1,522,915,894,-1,522,410,915,-1,459,816,592,-1,816,459,654,-1,634,538,574,-1,634,633,538,-1,727,481,592,-1,727,516,481,-1,494,408,481,-1,494,515,408,-1,612,757,853,-1,622,757,612,-1,981,895,965,-1,981,872,895,-1,408,644,391,-1,408,515,644,-1,433,903,414,-1,433,979,903,-1,460,809,1013,-1,460,363,809,-1,780,812,896,-1,780,765,812,-1,282,400,224,-1,435,400,282,-1,261,413,672,-1,413,261,154,-1,116,164,154,-1,116,111,164,-1,111,116,138,-1,201,363,460,-1,201,198,363,-1,768,516,727,-1,768,568,516,-1,107,235,276,-1,107,115,235,-1,560,963,942,-1,560,708,963,-1,275,370,331,-1,370,275,323,-1,423,549,684,-1,549,423,477,-1,384,352,466,-1,384,231,352,-1,1006,464,962,-1,464,1006,731,-1,1170,878,1128,-1,964,878,1170,-1,443,418,488,-1,421,418,443,-1,421,404,418,-1,353,443,369,-1,353,421,443,-1,759,897,879,-1,759,775,897,-1,1052,989,1162,-1,949,989,1052,-1,1003,1006,962,-1,1071,1006,1003,-1,1155,1033,990,-1,1176,1033,1155,-1,1190,1035,1052,-1,1035,1190,1174,-1,1003,886,1016,-1,1003,897,886,-1,1203,1176,1155,-1,1227,1176,1203,-1,1144,1234,1227,-1,1144,1167,1234,-1,1115,1233,1147,-1,1233,1115,1174,-1,700,550,638,-1,690,550,700,-1,690,544,550,-1,545,921,859,-1,533,921,545,-1,520,638,360,-1,638,520,700,-1,565,529,526,-1,565,536,529,-1,687,523,521,-1,687,593,523,-1,552,523,593,-1,552,512,523,-1,647,519,561,-1,647,539,519,-1,653,914,757,-1,784,914,653,-1,1134,1130,1146,-1,1134,1185,1130,-1,863,601,603,-1,601,863,861,-1,599,862,849,-1,862,599,600,-1,1058,1056,1092,-1,981,1056,1058,-1,1041,1056,1032,-1,1041,1089,1056,-1,625,658,644,-1,658,625,616,-1,618,660,648,-1,619,660,618,-1,567,578,527,-1,658,578,567,-1,648,578,658,-1,710,694,645,-1,735,694,710,-1,367,591,645,-1,367,392,591,-1,812,602,848,-1,812,605,602,-1,1194,1049,1102,-1,1192,1049,1194,-1,1187,1230,1206,-1,1201,1230,1187,-1,907,1076,1037,-1,992,1076,907,-1,508,798,781,-1,508,534,798,-1,373,196,473,-1,652,196,373,-1,810,196,652,-1,758,895,872,-1,758,781,895,-1,1074,1120,1143,-1,1074,1072,1120,-1,1204,968,1068,-1,1186,968,1204,-1,410,165,751,-1,165,410,86,-1,793,776,888,-1,793,833,776,-1,680,999,755,-1,999,680,991,-1,945,296,985,-1,338,296,945,-1,132,779,162,-1,132,767,779,-1,678,913,976,-1,677,913,678,-1,950,686,583,-1,889,686,950,-1,236,678,546,-1,157,678,236,-1,7,70,0,-1,70,7,68,-1,1053,1095,1104,-1,1009,1095,1053,-1,1156,1165,1109,-1,1156,1148,1165,-1,607,846,840,-1,604,846,607,-1,1105,1083,1121,-1,1083,1105,1100,-1,868,969,1009,-1,868,840,969,-1,1169,1209,1165,-1,1169,1200,1209,-1,482,470,287,-1,503,470,482,-1,930,891,999,-1,891,930,912,-1,865,905,958,-1,865,882,905,-1,496,797,349,-1,797,496,782,-1,342,554,304,-1,342,698,554,-1,210,158,87,-1,158,210,193,-1,563,1066,469,-1,1066,563,825,-1,1061,764,856,-1,1061,956,764,-1,318,1090,814,-1,738,1090,318,-1,90,212,53,-1,90,112,212,-1,313,440,486,-1,322,440,313,-1,851,498,407,-1,498,851,888,-1,661,1063,525,-1,1021,1063,661,-1,197,167,163,-1,54,167,197,-1,747,1070,1091,-1,695,1070,747,-1,284,754,431,-1,754,284,747,-1,284,49,272,-1,284,63,49,-1,1087,842,843,-1,1087,1021,842,-1,467,671,692,-1,467,303,671,-1,1097,554,698,-1,1097,1010,554,-1,274,449,327,-1,449,274,229,-1,183,434,316,-1,333,434,183,-1,91,354,288,-1,91,158,354,-1,316,576,422,-1,434,576,316,-1,668,657,569,-1,668,702,657,-1,288,569,524,-1,288,354,569,-1,642,827,756,-1,785,827,642,-1,320,383,242,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc4_Geo_5_55_normalIndex_9()
		{
			int[] value = {383,320,480,-1,674,626,718,-1,626,674,632,-1,576,826,924,-1,576,434,826,-1,778,190,223,-1,190,778,786,-1,605,472,426,-1,605,613,472,-1,802,866,954,-1,866,802,711,-1,1081,867,1067,-1,1081,828,867,-1,1000,1123,1036,-1,1000,1096,1123,-1,984,826,805,-1,826,984,924,-1,732,395,855,-1,732,317,395,-1,265,80,61,-1,265,290,80,-1,531,905,676,-1,905,531,847,-1,1078,1002,966,-1,1078,779,1002,-1,779,1078,883,-1,406,241,649,-1,406,204,241,-1,233,341,270,-1,337,341,233,-1,240,58,204,-1,57,58,240,-1,181,301,199,-1,181,285,301,-1,110,99,119,-1,60,99,110,-1,296,99,162,-1,99,296,127,-1,306,118,335,-1,306,189,118,-1,706,696,689,-1,706,723,696,-1,659,696,588,-1,697,696,659,-1,514,503,724,-1,553,503,514,-1,589,744,856,-1,589,655,744,-1,718,620,717,-1,626,620,718,-1,620,730,717,-1,620,623,730,-1,721,627,699,-1,624,627,721,-1,628,480,577,-1,628,622,480,-1,427,675,581,-1,427,372,675,-1,612,374,383,-1,374,612,603,-1,376,600,375,-1,601,600,376,-1,144,130,139,-1,144,177,130,-1,144,256,178,-1,144,208,256,-1,573,819,670,-1,573,590,819,-1,580,616,573,-1,616,580,618,-1,528,614,615,-1,528,506,614,-1,643,528,542,-1,643,587,528,-1,643,838,845,-1,666,838,643,-1,387,339,256,-1,387,426,339,-1,317,251,395,-1,251,317,234,-1,25,223,190,-1,223,25,47,-1,449,454,692,-1,449,229,454,-1,748,257,492,-1,748,671,257,-1,479,713,830,-1,479,456,713,-1,479,322,364,-1,322,479,440,-1,642,362,422,-1,642,543,362,-1,1152,1200,1169,-1,1152,1189,1200,-1,695,928,1070,-1,500,928,695,-1,465,179,184,-1,308,179,465,-1,114,150,90,-1,114,172,150,-1,340,479,364,-1,340,456,479,-1,180,825,563,-1,825,180,431,-1,449,713,456,-1,449,692,713,-1,760,432,571,-1,760,733,432,-1,575,330,311,-1,575,704,330,-1,34,206,47,-1,206,34,142,-1,5,38,17,-1,25,38,5,-1,234,117,274,-1,234,142,117,-1,602,426,387,-1,602,605,426,-1,643,867,587,-1,643,845,867,-1,540,528,587,-1,528,540,506,-1,650,670,711,-1,650,573,670,-1,573,650,580,-1,572,618,580,-1,618,572,619,-1,573,625,590,-1,616,625,573,-1,177,178,217,-1,177,144,178,-1,177,200,130,-1,200,177,252,-1,375,599,386,-1,600,599,375,-1,601,374,603,-1,376,374,601,-1,242,374,232,-1,242,383,374,-1,320,577,480,-1,577,320,451,-1,721,581,675,-1,721,699,581,-1,717,683,641,-1,717,730,683,-1,717,547,718,-1,717,641,547,-1,697,681,714,-1,697,705,681,-1,588,724,875,-1,514,724,588,-1,307,689,379,-1,689,307,706,-1,714,696,697,-1,714,689,696,-1,714,640,689,-1,287,461,482,-1,286,461,287,-1,579,357,585,-1,499,357,579,-1,0,92,9,-1,0,70,92,-1,58,33,79,-1,33,58,9,-1,357,233,219,-1,357,337,233,-1,199,43,181,-1,59,43,199,-1,204,79,241,-1,79,204,58,-1,230,233,270,-1,233,230,161,-1,268,181,72,-1,181,268,285,-1,337,485,341,-1,337,463,485,-1,10,149,61,-1,149,10,51,-1,680,885,952,-1,885,680,749,-1,801,782,496,-1,782,801,834,-1,833,755,891,-1,755,833,793,-1,774,230,270,-1,510,230,774,-1,814,1082,939,-1,1090,1082,814,-1,551,847,531,-1,551,796,847,-1,656,461,579,-1,656,482,461,-1,985,1127,945,-1,985,1114,1127,-1,726,471,543,-1,726,668,471,-1,873,1031,778,-1,873,1036,1031,-1,1067,1118,1081,-1,1123,1118,1067,-1,1096,1118,1123,-1,176,75,38,-1,176,254,75,-1,845,1067,867,-1,1023,1067,845,-1,739,1118,855,-1,971,1118,739,-1,855,1000,732,-1,855,1096,1000,-1,176,786,746,-1,176,190,786,-1,576,973,785,-1,576,924,973,-1,524,718,547,-1,718,524,674,-1,248,242,98,-1,242,248,320,-1,743,635,729,-1,743,636,635,-1,569,674,524,-1,674,569,657,-1,668,354,471,-1,668,569,354,-1,133,316,304,-1,183,316,133,-1,1,168,166,-1,1,50,168,-1,361,229,96,-1,229,361,454,-1,738,1180,1090,-1,738,1010,1180,-1,185,486,497,-1,313,486,185,-1,185,66,221,-1,66,185,21,-1,754,1091,1042,-1,754,747,1091,-1,901,1099,843,-1,1099,901,1140,-1,83,311,330,-1,83,62,311,-1,790,763,1132,-1,439,763,790,-1,844,733,575,-1,844,771,733,-1,851,834,822,-1,851,782,834,-1,797,782,851,-1,760,815,796,-1,760,571,815,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc4_Geo_5_55_normalIndex_10()
		{
			int[] value = {74,212,469,-1,53,212,74,-1,882,676,905,-1,882,801,676,-1,991,1168,1224,-1,991,952,1168,-1,788,227,511,-1,273,227,788,-1,59,36,43,-1,59,2,36,-1,655,705,744,-1,655,681,705,-1,875,871,1075,-1,875,724,871,-1,1131,1100,1105,-1,1131,1107,1100,-1,1100,1034,1083,-1,1034,1100,1055,-1,966,610,923,-1,966,606,610,-1,1127,1148,1156,-1,1127,1126,1148,-1,1126,1095,1107,-1,1095,1126,1104,-1,240,770,293,-1,240,555,770,-1,79,60,110,-1,60,79,33,-1,583,358,129,-1,686,358,583,-1,913,1088,976,-1,913,983,1088,-1,162,985,296,-1,162,883,985,-1,999,1224,1222,-1,999,991,1224,-1,846,621,596,-1,621,846,604,-1,1212,1205,1222,-1,1212,1189,1205,-1,833,720,776,-1,833,835,720,-1,968,703,1068,-1,968,537,703,-1,892,758,872,-1,799,758,892,-1,508,758,411,-1,508,781,758,-1,967,493,719,-1,967,584,493,-1,1173,1202,1150,-1,1173,1215,1202,-1,1047,1199,1060,-1,1206,1199,1047,-1,982,916,854,-1,997,916,982,-1,896,848,977,-1,896,812,848,-1,400,591,392,-1,591,400,570,-1,710,591,691,-1,710,645,591,-1,614,710,615,-1,614,735,710,-1,616,648,658,-1,618,648,616,-1,391,658,567,-1,391,644,658,-1,977,1089,1041,-1,977,1025,1089,-1,1092,1089,1110,-1,1092,1056,1089,-1,600,861,862,-1,861,600,601,-1,863,612,853,-1,603,612,863,-1,561,811,647,-1,561,864,811,-1,757,628,653,-1,757,622,628,-1,627,519,539,-1,519,627,624,-1,512,620,523,-1,512,623,620,-1,620,521,523,-1,521,620,626,-1,360,501,314,-1,501,360,638,-1,594,859,772,-1,545,859,594,-1,550,595,638,-1,550,529,595,-1,597,783,777,-1,597,707,783,-1,1227,1103,1144,-1,1203,1103,1227,-1,1227,1178,1176,-1,1234,1178,1227,-1,1016,1071,1003,-1,1108,1071,1016,-1,886,775,707,-1,775,886,897,-1,1071,1039,1006,-1,1116,1039,1071,-1,964,1162,989,-1,964,1170,1162,-1,1157,1177,1226,-1,1177,1157,1153,-1,369,488,351,-1,443,488,369,-1,880,402,701,-1,402,880,857,-1,725,1006,1039,-1,731,1006,725,-1,990,831,649,-1,990,1033,831,-1,249,170,259,-1,458,170,249,-1,355,170,458,-1,292,186,153,-1,292,263,186,-1,708,926,963,-1,708,684,926,-1,538,516,568,-1,513,516,538,-1,916,809,509,-1,916,1029,809,-1,207,460,450,-1,207,201,460,-1,645,413,367,-1,645,694,413,-1,433,216,491,-1,433,244,216,-1,935,474,787,-1,935,893,474,-1,213,400,392,-1,400,213,224,-1,672,896,787,-1,672,780,896,-1,363,509,809,-1,363,237,509,-1,491,979,433,-1,491,1060,979,-1,631,644,515,-1,631,625,644,-1,965,1056,981,-1,1056,965,1032,-1,858,715,941,-1,715,858,687,-1,636,515,494,-1,636,631,515,-1,513,481,516,-1,513,494,481,-1,632,574,562,-1,634,574,632,-1,894,816,917,-1,894,870,816,-1,915,870,894,-1,915,947,870,-1,1049,931,1102,-1,682,931,1049,-1,1235,1230,1196,-1,1230,1235,1223,-1,682,146,522,-1,682,225,146,-1,716,334,750,-1,716,393,334,-1,1186,951,968,-1,1186,1172,951,-1,473,951,807,-1,489,951,473,-1,160,489,134,-1,489,160,537,-1,1085,1037,1076,-1,1037,1085,1181,-1,799,902,750,-1,902,799,892,-1,1026,1143,1182,-1,1026,1122,1143,-1,143,953,424,-1,953,143,505,-1,475,169,373,-1,475,278,169,-1,165,673,751,-1,415,673,165,-1,1215,1138,1202,-1,1138,1215,1101,-1,441,740,887,-1,455,740,441,-1,331,369,275,-1,331,353,369,-1,344,305,238,-1,325,305,344,-1,314,137,360,-1,314,126,137,-1,45,97,93,-1,45,31,97,-1,182,128,135,-1,182,148,128,-1,246,182,202,-1,253,182,246,-1,109,115,107,-1,109,131,115,-1,128,84,104,-1,109,84,128,-1,944,1178,1179,-1,944,1005,1178,-1,559,877,860,-1,559,548,877,-1,559,348,548,-1,559,291,348,-1,559,250,291,-1,250,559,324,-1,231,145,141,-1,231,174,145,-1,397,159,437,-1,419,159,397,-1,445,159,419,-1,1079,877,1106,-1,1079,860,877,-1,174,250,145,-1,174,291,250,-1,920,1167,869,-1,920,1166,1167,-1,97,464,113,-1,464,97,385,-1,453,444,389,-1,453,405,444,-1,298,943,938,-1,943,298,289,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getc4_Coord_6_55_point_1()
		{
			double[] value = {-0.2244,53.7969,-2.1177,-0.1868,53.8298,-2.1466,-0.2136,53.7744,-2.1779,0.0056,53.8173,-2.0591,0.007,53.8335,-2.0609,0.0721,53.738,-2.1266,0.7802,54.2953,-1.4696,0.7402,54.3769,-1.4499,0.8387,54.4163,-1.4328,0.4199,54.329,-1.4452,0.416,54.3246,-1.4424,0.4419,54.3236,-1.3924,0.0878,54.2278,-1.7096,0.1863,54.2446,-1.6641,0.0888,54.232,-1.7152,0.4805,54.3152,-1.264,0.4429,54.4237,-1.2884,0.4424,54.3975,-1.3164,0.2202,53.8236,-1.7853,0.2121,53.82,-1.786,0.1946,53.7784,-1.8805,0.0348,53.7476,-2.052,0.0053,53.7722,-2.0355,0.1322,53.7086,-2.1594,0.0705,53.7083,-2.117,0.1193,53.7141,-2.1605,0.2244,53.7969,-2.1177,0.2154,53.7227,-2.1646,0.2136,53.7744,-2.1779,0.174,53.8284,-2.146,0.1776,53.7905,-2.1813,0.1704,53.7879,-2.1805,0.0,54.0586,-1.9333,0.0558,53.9384,-2.0082,0.0,53.9365,-2.0085,0.3936,53.8527,-1.5545,0.4033,53.8559,-1.5813,0.4771,53.8522,-1.5338,0.0,54.1012,-1.7816,0.0,54.0351,-1.8282,0.1105,54.0475,-1.7769,0.2227,53.9537,-1.7208,0.2135,54.0294,-1.7154,0.8779,53.8408,-1.3991,0.9156,53.9734,-1.3457,0.8941,53.9326,-1.3146,0.662,53.7715,-1.4759,0.6727,53.7723,-1.4703,0.5757,53.7867,-1.4435,0.8866,53.9273,-1.313,0.8735,53.8381,-1.3942,0.5746,53.9758,-1.2855,0.632,54.015,-1.2396,0.5693,53.9841,-1.2806,0.7354,54.02,-1.2296,0.6891,54.0125,-1.2362,0.7349,54.0116,-1.237,0.5688,53.9845,-1.2813,0.8887,54.0359,-1.2788,0.8542,54.0064,-1.2563,0.8521,54.1896,-1.274,0.8531,54.1954,-1.286,0.8486,54.1953,-1.273,0.8092,54.0862,-1.2154,0.8374,54.0982,-1.2316,0.774,54.1331,-1.1964,0.6903,54.0602,-1.1724,0.705,54.0677,-1.1801,0.7126,54.0768,-1.1594,0.6795,54.0457,-1.1931,0.7053,54.0517,-1.1949,0.5794,54.2212,-1.4931,0.5337,54.3524,-1.4003,0.6714,54.2469,-1.4818,0.8932,54.5582,-1.2147,0.898,54.5543,-1.2109,0.9076,54.5002,-1.3281,0.5173,54.4933,-1.1867,0.52,54.4967,-1.1923,0.5166,54.4931,-1.1871,0.7527,54.1263,-1.1875,0.7659,54.1465,-1.1888,0.7627,54.1398,-1.1769,0.6507,54.1084,-1.1175,0.7015,54.0745,-1.1543,0.7074,54.0766,-1.1403,0.3418,54.0794,-1.1701,0.3604,54.0807,-1.1558,0.3561,54.0351,-1.1521,0.4077,54.0823,-1.1187,0.4074,54.0907,-1.1281,0.4214,54.0848,-1.1269,0.517,54.3873,-1.1567,0.4994,54.3749,-1.1401,0.5635,54.3619,-1.145,0.8,54.2393,-1.1742,0.7768,54.3224,-1.1335,0.8015,54.2296,-1.1624,0.7682,54.3449,-1.1339,0.7051,54.3343,-1.1217,0.7644,54.3322,-1.1275,0.8032,54.0496,-0.9618,0.7712,54.0138,-1.0177,0.8193,54.0628,-1.0216,0.4163,54.1196,-0.8853,0.433,54.0728,-0.9381,0.4587,54.0821,-0.9362,0.6175,54.1061,-0.9273,0.5193,54.1056,-0.934,0.6176,54.109,-0.935,0.4407,54.0752,-0.9462,0.4578,54.0836,-0.9408,0.7851,54.447,-1.3532,0.9011,54.505,-1.329,0.8327,54.4264,-1.4322,0.6506,54.3206,-1.129,0.5681,54.2823,-1.1119,0.6324,54.2756,-1.1012,0.6518,54.2094,-0.9549,0.6581,54.2171,-0.9546,0.6842,54.1988,-0.9939,0.7233,54.2431,-1.0718,0.6412,54.2683,-1.0957,0.6801,54.2142,-1.0492,0.7436,54.1739,-1.0064,0.8304,54.1455,-1.0139,0.6497,54.1803,-0.9554,0.668,54.1793,-0.989,0.6649,54.1426,-0.9883,0.6488,54.0963,-0.9557,0.6505,54.1553,-0.9544,0.6691,54.1258,-1.0275,0.6776,54.0711,-1.0173,0.461,54.1382,-0.945,0.4829,54.2045,-0.9478,0.5374,54.2236,-0.9312,0.6544,54.0781,-0.9393,0.6667,54.1491,-0.8939,0.7022,54.2554,-0.8859,0.6496,54.2546,-0.9309,0.6572,54.2817,-0.8862,0.5943,54.2903,-0.8829,0.6233,54.2272,-0.8918,0.6549,54.2819,-0.8772,0.7736,54.0791,-0.9267,0.7358,54.1892,-0.8966,0.7191,54.1169,-0.9002,0.6895,54.2312,-0.921,0.7297,54.1744,-0.9546,0.4815,54.1978,-1.1902,0.4889,54.2425,-1.2512,0.5029,54.1589,-1.2386,0.4938,54.1868,-1.3241,0.4528,54.3878,-1.3299,0.4459,54.3271,-1.3963,0.4905,54.3548,-1.1784,0.4904,54.2859,-1.1935,0.4838,54.2886,-1.1794,0.4652,54.4616,-1.2437,0.4951,54.3584,-1.2046,0.5182,54.4162,-1.1711,0.4887,54.3767,-1.1529,0.4817,54.3551,-1.166,0.46,54.3596,-1.156,0.5034,54.2711,-0.9488,0.5372,54.3237,-0.8959,0.5459,54.2847,-0.9279,0.5136,54.3826,-0.9404,0.4954,54.3567,-0.9839,0.5084,54.442,-0.9733,0.5408,54.3182,-0.8828,0.5154,54.3852,-0.8933,0.5051,54.3804,-0.867,0.5188,54.3069,-1.0881,0.566,54.3195,-1.1273,0.4865,54.3903,-1.1069,0.4743,54.4232,-1.1089,0.485,54.426,-1.0643,0.4582,54.5069,-1.1301,0.4541,54.4397,-1.1548,0.2909,54.0379,-1.2107,0.2819,54.1431,-1.2073,0.3374,54.1713,-1.1828,0.2904,53.9246,-0.8601,0.2771,53.9204,-0.8638,0.2702,53.9401,-0.9566,0.2498,53.8894,-0.7788,0.3352,53.9474,-1.059,0.3463,53.9432,-1.1416,0.3459,53.9552,-1.058,0.3471,54.0785,-0.87,0.3267,54.0351,-0.8838,0.3573,54.0317,-0.9537,0.1834,54.4341,-1.1915,0.1877,54.4219,-1.1275,0.2014,54.4243,-1.1305,0.2571,54.4646,-1.2115,0.2595,54.4576,-1.2181,0.182,54.4279,-1.1991,0.3119,54.4067,-0.7678,0.3352,54.4303,-0.7618,0.3289,54.4346,-0.7697,0.2759,54.337,-0.7636,0.2648,54.3279,-0.7608,0.2726,54.318,-0.7564,0.3813,54.4858,-0.8154,0.3685,54.4793,-0.78,0.4185,54.5097,-0.8032,0.9046,54.0533,-1.3038,0.0636,53.8936,-1.8513,0.1094,53.9739,-1.816,0.0,53.9679,-1.8682,0.5711,53.7989,-1.4891,0.4596,53.8538,-1.4888,0.3674,53.9453,-1.5546,0.5803,54.4427,-1.1413,0.5705,54.3922,-1.1474,0.6608,54.396,-1.135,0.7905,54.4029,-1.1415,0.719,54.4064,-1.1154,0.7054,54.3482,-1.1246,0.0708,53.8221,-1.8972,0.0,53.8291,-1.9515,0.007,53.7815,-1.9804,0.0903,54.0435,-1.9256,0.1643,53.9445,-2.0122,0.1448,53.9478,-2.0156,0.1569,54.081,-1.8442,0.0,54.1383,-1.863,0.0,54.1957,-1.8136,0.2253,54.1348,-1.751,0.1166,54.1726,-1.7965,0.4311,54.3238,-1.4804,0.3807,54.3069,-1.4988,0.4703,54.3073,-1.4342,0.5245,54.351,-1.3963,0.6629,54.3555,-1.4389,0.9142,54.3718,-1.3135,0.8705,54.3213,-1.4124,0.8539,54.2447,-1.2932,0.8476,54.2259,-1.3871,0.8889,54.3134,-1.3044,0.4478,54.4061,-1.3188,0.5765,54.4239,-1.3267,0.5294,54.3625,-1.3943,0.8699,54.3732,-1.2046,0.5896,54.1647,-1.5031,0.5147,54.1798,-1.5108,0.9024,54.0582,-1.3276,0.8345,54.0662,-1.4053,0.8489,54.1643,-1.3772,0.7391,54.0544,-1.4744,0.6756,54.0665,-1.4939,0.674,54.149,-1.4935,0.2491,54.0215,-1.7721,0.2148,53.993,-1.8344,0.5815,53.9435,-1.5243,0.6694,53.9465,-1.5241,0.2132,53.7896,-2.0186,0.2084,53.7544,-2.0113,0.2195,53.7439,-2.057,0.7828,53.861,-1.4985,0.76,53.955,-1.4825,0.8579,53.957,-1.4324,0.7126,53.8808,-1.368,0.7992,53.8629,-1.3718,0.8067,53.9082,-1.3362,0.6323,53.9308,-1.3272,0.6055,53.9027,-1.3549,0.5976,53.8577,-1.3904,0.7462,53.8355,-1.4175,0.7845,53.7875,-1.455,0.68,53.9547,-1.3093,0.637,54.0076,-1.2466,0.4999,54.102,-1.1485,0.4832,54.0926,-1.1785,0.5187,54.0779,-1.2154,0.1858,53.8638,-0.7751,0.1793,53.8462,-0.7239,0.2489,53.9476,-0.7574,0.2838,53.9623,-0.8245,0.2744,54.0277,-0.8005,0.2315,54.0122,-0.743,0.2239,54.0683,-0.7432,0.1802,54.0576,-0.6944,0.2806,54.0882,-0.8021,0.3434,54.5142,-1.1496,0.3215,54.5137,-1.2033,0.1651,54.4048,-1.0496,0.2335,54.4117,-1.056,0.1933,54.4189,-1.1169,0.2643,54.4656,-1.1555,0.3314,54.4358,-0.8287,0.4038,54.4985,-0.885,0.3298,54.441,-0.8951,0.1724,54.2966,-0.7009,0.1938,54.2035,-0.6901,0.4475,54.4801,-0.7955,0.4774,54.5414,-0.8719,0.4268,54.5064,-0.7967,0.8258,54.2877,-1.223,0.7791,54.332,-1.1427,0.825,54.1195,-0.9752,0.6999,54.2525,-0.8786,0.5076,54.3447,-1.1181,0.8374,54.1364,-1.016,0.8289,54.1118,-0.9719,0.5489,54.0807,-1.183,0.578,54.1138,-1.1443,0.7402,54.019,-0.9778,0.6936,54.0504,-0.9561,0.3162,53.9665,-0.9566,0.3748,54.028,-1.1131,0.3852,54.0362,-1.0323,0.397,54.0574,-0.953,0.4208,54.0831,-1.0283,0.4706,54.2646,-0.9918,0.6681,54.1814,-1.0396,0.6732,54.2083,-1.0506,0.6316,54.2651,-1.1001,0.4031,54.1261,-1.4907,0.4513,54.1245,-1.4138,0.4332,54.2295,-1.4414,0.3698,54.0289,-1.1267,0.3529,53.9567,-1.1363,0.3515,53.9492,-1.1539,0.4179,53.9421,-1.4762,0.4986,53.841,-1.4086,0.4996,53.8484,-1.4046,-0.1878,54.2467,-1.6679,-0.2717,54.266,-1.6106,-0.1863,54.2446,-1.6641,-0.4819,54.3058,-1.2809,-0.4805,54.3152,-1.264,-0.4889,54.2425,-1.2512,-0.0708,53.8221,-1.8972,-0.1946,53.7784,-1.8805,-0.0737,53.7625,-1.9644,-0.2154,53.7227,-2.1646,-0.2139,53.7325,-2.0671,-0.2195,53.7439,-2.057,-0.195,53.767,-1.9562,-0.1865,53.7599,-1.9553,-0.3337,53.8668,-1.6318,-0.4033,53.8559,-1.5813,-0.4196,53.9689,-1.5826,-0.0705,53.7083,-2.117,-0.0348,53.7476,-2.052,-0.0795,53.7306,-2.0346,-0.006,53.7774,-1.9942,-0.0053,53.7722,-2.0355,-0.2001,53.7461,-2.0112,-0.137,53.7594,-2.1725,-0.1704,53.7879,-2.1805,-0.174,53.8284,-2.146,-0.1122,53.7947,-2.13,-0.0781,53.8608,-2.0647,-0.0721,53.738,-2.1266,-0.1712,53.8924,-2.0822,-0.007,53.8335,-2.0609,-0.0558,53.9384,-2.0082,-0.2043,54.104,-1.7034,-0.2135,54.0294,-1.7154,-0.1105,54.0475,-1.7769,-0.3789,54.3058,-1.4956,-0.416,54.3246,-1.4424,-0.4332,54.2295,-1.4414,-0.1951,54.1767,-1.6802,-0.2795,54.1881,-1.614,-0.5688,53.9845,-1.2813,-0.4876,53.9144,-1.3585,-0.5416,54.0608,-1.2612,-0.8887,54.0359,-1.2788,-0.9046,54.0533,-1.3038,-0.9156,53.9734,-1.3457,-0.5746,53.9758,-1.2855,-0.4953,53.9088,-1.3553,-0.8866,53.9273,-1.313,-0.8465,53.9998,-1.2573,-0.8941,53.9326,-1.3146,-0.7349,54.0116,-1.237,-0.7354,54.02,-1.2296,-0.662,53.7715,-1.4759,-0.6727,53.7723,-1.4703,-0.6722,53.7734,-1.4769,-0.8374,54.0982,-1.2316,-0.774,54.1331,-1.1964,-0.8521,54.1896,-1.274,-0.8531,54.1954,-1.286,-0.6891,54.0125,-1.2362,-0.7356,53.9568,-1.2937,-0.6876,54.0196,-1.2276,-0.6795,54.0457,-1.1931,-0.7053,54.0517,-1.1949,-0.8092,54.0862,-1.2154,-0.9076,54.5002,-1.3281,-0.9011,54.505,-1.329,-0.8327,54.4264,-1.4322,-0.7412,54.3891,-1.4458,-0.7402,54.3769,-1.4499,-0.8387,54.4163,-1.4328,-0.8699,54.3732,-1.2046,-0.8258,54.2877,-1.223,-0.7791,54.332,-1.1427,-0.8,54.2393,-1.1742,-0.7659,54.1465,-1.1888,-0.7627,54.1398,-1.1769,-0.7299,54.0506,-1.0741,-0.7712,54.0138,-1.0177,-0.8205,54.0978,-1.0948,-0.7177,54.0788,-1.1457,-0.7126,54.0768,-1.1594,-0.3698,54.0289,-1.1267,-0.4074,54.0907,-1.1281,-0.3604,54.0807,-1.1558,-0.594,54.0471,-1.2137,-0.5489,54.0807,-1.183,-0.578,54.1138,-1.1443,-0.5277,54.4203,-1.1665,-0.5803,54.4427,-1.1413,-0.5705,54.3922,-1.1474,-0.7768,54.3224,-1.1335,-0.7644,54.3322,-1.1275,-0.3852,54.0362,-1.0323,-0.3573,54.0317,-0.9537,-0.397,54.0574,-0.953,-0.4578,54.0836,-0.9408,-0.461,54.1382,-0.945,-0.4407,54.0752,-0.9462,-0.7233,54.2431,-1.0718,-0.6506,54.3206,-1.129,-0.7051,54.3343,-1.1217,-0.6103,54.2164,-0.9328,-0.6119,54.2053,-0.9333,-0.6518,54.2094,-0.9549,-0.6781,54.196,-0.9942,-0.6732,54.2083,-1.0506,-0.6801,54.2142,-1.0492,-0.7736,54.0791,-0.9267,-0.8032,54.0496,-0.9618,-0.7402,54.019,-0.9778,-0.6649,54.1426,-0.9883,-0.6681,54.1814,-1.0396,-0.668,54.1793,-0.989,-0.6691,54.1258,-1.0275,-0.645,54.1625,-1.111,-0.4635,54.1648,-1.0746,-0.4427,54.15,-1.0143,-0.4567,54.2073,-1.0033,-0.6496,54.2546,-0.9309,-0.5985,54.2711,-0.9309,-0.6526,54.2216,-0.9513,-0.6549,54.2819,-0.8772,-0.7022,54.2554,-0.8859,-0.6999,54.2525,-0.8786,-0.6581,54.2171,-0.9546,-0.6572,54.2817,-0.8862,-0.5943,54.2903,-0.8829,-0.7905,54.1268,-0.938,-0.7358,54.1892,-0.8966,-0.7845,54.1377,-0.9432,-0.6895,54.2312,-0.921,-0.7391,54.1973,-0.9042,-0.4951,54.3584,-1.2046,-0.4904,54.2859,-1.1935,-0.5189,54.1204,-1.291,-0.511,54.0883,-1.2297,-0.4938,54.1868,-1.3241,-0.5029,54.1589,-1.2386,-0.4815,54.1978,-1.1902,-0.4429,54.4237,-1.2884,-0.4838,54.2886,-1.1794,-0.4308,54.1796,-1.1505,-0.4501,54.2602,-0.8538,-0.3811,54.2929,-0.8185,-0.416,54.3872,-0.8001,-0.5163,54.3402,-0.9399,-0.5372,54.3237,-0.8959,-0.5154,54.3852,-0.8933,-0.4865,54.3903,-1.1069,-0.4695,54.3989,-1.148,-0.4887,54.3767,-1.1529,-0.3375,54.2872,-1.1958,-0.2746,54.2485,-1.209,-0.2819,54.1431,-1.2073,-0.3418,54.0794,-1.1701,-0.3706,54.1853,-1.1668,-0.3459,53.9552,-1.058,-0.3352,53.9474,-1.059,-0.3162,53.9665,-0.9566,-0.3515,53.9492,-1.1539,-0.2987,53.9338,-1.2089,-0.3463,53.9432,-1.1416,-0.3529,53.9567,-1.1363,-0.1877,54.4219,-1.1275,-0.2014,54.4243,-1.1305,-0.1933,54.4189,-1.1169,-0.2863,54.3678,-0.8366,-0.2829,54.3873,-0.8958,-0.3298,54.441,-0.8951,-0.7436,54.1739,-1.0064,-0.7297,54.1744,-0.9546,-0.5942,54.2922,-0.8922,-0.5459,54.2847,-0.9279,-0.5841,53.8458,-1.5358,-0.5711,53.7989,-1.4891,-0.5708,53.7831,-1.4519,-0.4596,53.8538,-1.4888,-0.908,54.4411,-1.2037,-0.7905,54.4029,-1.1415,-0.0636,53.8936,-1.8513,-0.1094,53.9739,-1.816,-0.1275,53.8868,-1.8226,-0.2121,53.82,-1.786,-0.1525,53.8983,-2.0795,-0.1448,53.9478,-2.0156,-0.0888,54.232,-1.7152,0.0,54.236,-1.7223,-0.1166,54.1726,-1.7965,-0.2253,54.1348,-1.751,-0.4311,54.3238,-1.4804,-0.4497,54.2158,-1.5416,-0.5052,54.2192,-1.4972,-0.4528,54.3878,-1.3299,-0.4459,54.3271,-1.3963,-0.4703,54.3073,-1.4342,-0.6629,54.3555,-1.4389,-0.5337,54.3524,-1.4003,-0.6714,54.2469,-1.4818,-0.9142,54.3718,-1.3135,-0.8476,54.2259,-1.3871,-0.8889,54.3134,-1.3044,-0.469,54.4655,-1.2473,-0.4474,54.4294,-1.2909,-0.568,54.4517,-1.2827,-0.7458,54.159,-1.4555,-0.674,54.149,-1.4935,-0.7828,53.861,-1.4985,-0.76,53.955,-1.4825,-0.6694,53.9465,-1.5241,-0.9092,53.9759,-1.3672,-0.8579,53.957,-1.4324,-0.8707,53.8866,-1.4329,-0.8539,54.2447,-1.2932,-0.8486,54.1953,-1.273,-0.632,54.015,-1.2396,-0.5693,53.9841,-1.2806,-0.2952,53.9272,-1.2016,-0.2876,53.9353,-1.1393,-0.2498,53.8894,-0.7788,-0.2771,53.9204,-0.8638,-0.1954,53.9129,-0.8546,-0.2717,53.9382,-1.0495,-0.2702,53.9401,-0.9566,-0.2838,53.9623,-0.8245,-0.2904,53.9246,-0.8601,-0.2554,53.8967,-0.7723,-0.3267,54.0351,-0.8838,-0.308,53.9626,-0.9134,-0.2315,54.0122,-0.743,-0.2806,54.0882,-0.8021,-0.2744,54.0277,-0.8005,-0.1668,54.3067,-0.708,-0.2644,54.342,-0.7812,-0.2648,54.3279,-0.7608,-0.2643,54.4656,-1.1555,-0.2904,54.4608,-1.076,-0.2726,54.318,-0.7564,-0.324,54.3137,-0.7649,-0.3109,54.2306,-0.7853,-0.3285,54.3281,-0.7629,-0.3352,54.4303,-0.7618,-0.3665,54.411,-0.7605,-0.5136,54.3826,-0.9404,-0.4954,54.3567,-0.9839,-0.8374,54.1364,-1.016,-0.8207,54.2358,-1.0852,-0.8373,54.1785,-1.0911,-0.6798,54.2075,-0.8889,-0.6488,54.0963,-0.9557,-0.6544,54.0781,-0.9393,-0.6776,54.0711,-1.0173,-0.433,54.0728,-0.9381,-0.3471,54.0785,-0.87,-0.3553,54.1251,-0.8563,-0.3919,54.0564,-0.9432,-0.454,54.1042,-1.0979,-0.4214,54.0848,-1.1269,-0.4077,54.0823,-1.1187,-0.4208,54.0831,-1.0283,-0.4286,54.0934,-1.0275,-0.4678,54.279,-1.0368,-0.4657,54.2219,-1.0557,-0.6151,54.1683,-0.9354,-0.6505,54.1553,-0.9544,-0.6497,54.1803,-0.9554,-0.4031,54.1261,-1.4907,-0.3857,54.2184,-1.4905,-0.5716,54.2226,-1.1212,-0.5125,54.2386,-1.1082,-0.5188,54.3069,-1.0881,-0.6392,54.2166,-1.1044,-0.6316,54.2651,-1.1001,-0.5034,54.2711,-0.9488,-0.4706,54.2646,-0.9918,-0.3748,54.028,-1.1131,-0.6936,54.0504,-0.9561,-0.4999,54.102,-1.1485,-0.7191,54.1169,-0.9002,-0.6667,54.1491,-0.8939,-0.705,54.0677,-1.1801,-0.7527,54.1263,-1.1875,-0.8289,54.1118,-0.9719,-0.8193,54.0628,-1.0216,-0.4851,54.3779,-1.0564,-0.5635,54.3619,-1.145,-0.566,54.3195,-1.1273,-0.5076,54.3447,-1.1181,-0.6842,54.1988,-0.9939,-0.4735,54.4311,-0.8254,-0.5041,54.4475,-0.8779,-0.5051,54.3804,-0.867,-0.4268,54.5064,-0.7967,-0.4774,54.5414,-0.8719,-0.4475,54.4801,-0.7955,-0.4995,54.5142,-0.9696,-0.4775,54.5632,-0.9655,-0.4589,54.572,-1.0778,-0.1938,54.2035,-0.6901,-0.2523,54.2172,-0.7376,-0.3314,54.4358,-0.8287,-0.4038,54.4985,-0.885,-0.1834,54.4341,-1.1915,-0.2571,54.4646,-1.2115,-0.2335,54.4117,-1.056,-0.1651,54.4048,-1.0496,-0.3215,54.5137,-1.2033,-0.3434,54.5142,-1.1496,-0.1732,53.9906,-0.6932,-0.2239,54.0683,-0.7432,-0.2489,53.9476,-0.7574,-0.1793,53.8462,-0.7239,-0.1858,53.8638,-0.7751,-0.6323,53.9308,-1.3272,-0.637,54.0076,-1.2466,-0.7992,53.8629,-1.3718,-0.8735,53.8381,-1.3942,-0.7845,53.7875,-1.455,-0.6055,53.9027,-1.3549,-0.68,53.9547,-1.3093,-0.8471,54.009,-1.2519,-0.8542,54.0064,-1.2563,-0.6715,53.8431,-1.5244,-0.6756,54.0665,-1.4939,-0.5815,53.9435,-1.5243,-0.2491,54.0215,-1.7721,-0.1569,54.081,-1.8442,-0.7391,54.0544,-1.4744,-0.9024,54.0582,-1.3276,-0.8489,54.1643,-1.3772,-0.5896,54.1647,-1.5031,-0.5794,54.2212,-1.4931,-0.5802,54.5141,-1.1612,-0.52,54.4967,-1.1923,-0.5995,54.4793,-1.2353,-0.8705,54.3213,-1.4124,-0.0903,54.0435,-1.9256,-0.1643,53.9445,-2.0122,-0.1543,54.0163,-1.9173,-0.007,53.7815,-1.9804,-0.2227,53.9537,-1.7208,-0.3106,53.9423,-1.6263,-0.3252,53.867,-1.6272,-0.7682,54.3449,-1.1339,-0.7054,54.3482,-1.1246,-0.654,54.4584,-1.1109,-0.6608,54.396,-1.135,-0.3674,53.9453,-1.5546,-0.4179,53.9421,-1.4762,-0.0056,53.8173,-2.0591,-0.2842,54.332,-0.7572,-0.2595,54.4576,-1.2181,-0.2909,54.0379,-1.2107,-0.3374,54.1713,-1.1828,-0.4541,54.4397,-1.1548,-0.4743,54.4232,-1.1089,-0.4582,54.5069,-1.1301,-0.485,54.426,-1.0643,-0.5681,54.2823,-1.1119,-0.5408,54.3182,-0.8828,-0.46,54.3596,-1.156,-0.4817,54.3551,-1.166,-0.5166,54.4931,-1.1871,-0.5182,54.4162,-1.1711,-0.4652,54.4616,-1.2437,-0.4905,54.3548,-1.1784,-0.4419,54.3236,-1.3924,-0.6175,54.1061,-0.9273,-0.4829,54.2045,-0.9478,-0.5289,54.1625,-0.9344,-0.8304,54.1455,-1.0139,-0.6412,54.2683,-1.0957,-0.5374,54.2236,-0.9312,-0.6324,54.2756,-1.1012,-0.4587,54.0821,-0.9362,-0.5212,54.1077,-0.9374,-0.5193,54.1056,-0.934,-0.4163,54.1196,-0.8853,-0.517,54.3873,-1.1567,-0.8015,54.2296,-1.1624,-0.5173,54.4933,-1.1867,-0.898,54.5543,-1.2109,-0.7015,54.0745,-1.1543,-0.4996,53.8484,-1.4046,-0.5063,53.8429,-1.4015,-0.4986,53.841,-1.4086,-0.5147,54.1798,-1.5108,-0.1031,54.1111,-1.7534,-0.3936,53.8527,-1.5545,-0.2202,53.8236,-1.7853,-0.2463,53.9135,-1.7829,-0.2378,53.9075,-1.8042,-0.1169,53.731,-2.1648,-0.1776,53.7905,-2.1813,-0.1193,53.7141,-2.1605,-0.1322,53.7086,-2.1594,-0.2454,53.8499,-1.7402,-0.2515,53.8545,-1.7335,-0.254,53.8544,-1.7373,-0.2025,53.7833,-1.8805,-0.4424,54.3975,-1.3164,-0.4199,54.329,-1.4452,-0.0878,54.2278,-1.7096,-0.7802,54.2953,-1.4696,0.4567,54.2073,-1.0033,0.4657,54.2219,-1.0557,0.4678,54.279,-1.0368,0.454,54.1042,-1.0979,0.4286,54.0934,-1.0275,0.3919,54.0564,-0.9432,0.3553,54.1251,-0.8563,0.7299,54.0506,-1.0741,0.7177,54.0788,-1.1457,0.6798,54.2075,-0.8889,0.5163,54.3402,-0.9399,0.4735,54.4311,-0.8254,0.4447,54.4092,-0.8127,0.4884,54.3425,-0.8616,0.3665,54.411,-0.7605,0.2842,54.332,-0.7572,0.2523,54.2172,-0.7376,0.3109,54.2306,-0.7853,0.324,54.3137,-0.7649,0.2459,54.4174,-1.0608,0.2644,54.342,-0.7812,0.1569,54.3257,-0.7483,0.1668,54.3067,-0.708,0.0844,53.8831,-0.6653,0.1816,53.852,-0.7146,0.1874,53.9133,-0.7048,0.2717,53.9382,-1.0495,0.1954,53.9129,-0.8546,0.2876,53.9353,-1.1393,0.2952,53.9272,-1.2016,0.594,54.0471,-1.2137,0.6715,53.8431,-1.5244,0.5841,53.8458,-1.5358,0.7724,54.2313,-1.4555,0.908,54.4411,-1.2037,0.5052,54.2192,-1.4972,0.2717,54.266,-1.6106,0.2926,54.1568,-1.6814,0.1878,54.2467,-1.6679,0.1525,53.8983,-2.0795,0.0781,53.8608,-2.0647,0.1275,53.8868,-1.8226,0.2454,53.8499,-1.7402,0.8222,54.4709,-1.1197,0.5708,53.7831,-1.4519,0.6722,53.7734,-1.4769,0.5985,54.2711,-0.9309,0.2863,54.3678,-0.8366,0.2829,54.3873,-0.8958,0.4589,54.572,-1.0778,0.4794,54.5085,-1.0756,0.3904,54.5457,-1.1753,0.4029,54.5448,-1.1758,0.3932,54.5398,-1.1814,0.3811,54.2929,-0.8185,0.3285,54.3281,-0.7629,0.5145,54.1259,-0.9158,0.2987,53.9338,-1.2089,0.308,53.9626,-0.9134,0.3706,54.1853,-1.1668,0.2746,54.2485,-1.209,0.345,54.0437,-1.1668,0.4308,54.1796,-1.1505,0.4695,54.3989,-1.148,0.416,54.3872,-0.8001,0.4501,54.2602,-0.8538,0.4411,54.2856,-1.1575,0.511,54.0883,-1.2297,0.476,54.1021,-1.1871,0.4819,54.3058,-1.2809,0.5189,54.1204,-1.291,0.7391,54.1973,-0.9042,0.7905,54.1268,-0.938,0.5942,54.2922,-0.8922,0.4635,54.1648,-1.0746,0.6392,54.2166,-1.1044,0.6781,54.196,-0.9942,0.6526,54.2216,-0.9513,0.6119,54.2053,-0.9333,0.6103,54.2164,-0.9328,0.5277,54.4203,-1.1665,0.3917,54.4696,-1.1925,0.4294,54.3929,-1.1665,0.3828,54.309,-1.1817,0.7412,54.3891,-1.4458,0.8471,54.009,-1.2519,0.6876,54.0196,-1.2276,0.7356,53.9568,-1.2937,0.9092,53.9759,-1.3672,0.8465,53.9998,-1.2573,0.4953,53.9088,-1.3553,0.4876,53.9144,-1.3585,0.1951,54.1767,-1.6802,0.2043,54.104,-1.7034,0.291,54.106,-1.6192,0.3857,54.2184,-1.4905,0.1031,54.1111,-1.7534,0.1868,53.8298,-2.1466,0.1122,53.7947,-2.13,0.0795,53.7306,-2.0346,0.2001,53.7461,-2.0112,0.1865,53.7599,-1.9553,0.006,53.7774,-1.9942,0.1019,53.7093,-2.1046,0.3337,53.8668,-1.6318,0.4196,53.9689,-1.5826,0.2025,53.7833,-1.8805,0.0737,53.7625,-1.9644,0.2689,54.2645,-1.6082,0.2139,53.7325,-2.0671,0.195,53.767,-1.9562,0.3476,53.9524,-1.6473,0.1712,53.8924,-2.0822,0.3789,54.3058,-1.4956,0.2795,54.1881,-1.614,0.5416,54.0608,-1.2612,0.8205,54.0978,-1.0948,0.5688,54.2715,-1.1108,0.645,54.1625,-1.111,0.4427,54.15,-1.0143,0.6143,54.1726,-0.902,0.7845,54.1377,-0.9432,0.4686,54.2531,-1.3572,0.3375,54.2872,-1.1958,0.4341,54.5598,-1.1319,0.2761,54.3478,-0.7783,0.4497,54.2158,-1.5416,0.568,54.4517,-1.2827,0.4474,54.4294,-1.2909,0.469,54.4655,-1.2473,0.7458,54.159,-1.4555,0.5083,53.9716,-1.5338,0.8707,53.8866,-1.4329,0.5497,54.0533,-1.2529,0.0974,53.8309,-0.6902,0.2904,54.4608,-1.076,0.8373,54.1785,-1.0911,0.8207,54.2358,-1.0852,0.6151,54.1683,-0.9354,-0.3807,54.3069,-1.4988,-0.1019,53.7093,-2.1046,-0.4771,53.8522,-1.5338,-0.8779,53.8408,-1.3991,-0.5757,53.7867,-1.4435,-0.7074,54.0766,-1.1403,-0.6903,54.0602,-1.1724,-0.8932,54.5582,-1.2147,-0.5294,54.3625,-1.3943,-0.5245,54.351,-1.3963,-0.6507,54.1084,-1.1175,-0.4994,54.3749,-1.1401,-0.6176,54.109,-0.935,-0.8114,54.2382,-1.0765,-0.6143,54.1726,-0.902,-0.6233,54.2272,-0.8918,-0.5084,54.442,-0.9733,-0.4306,54.5027,-1.1686,-0.182,54.4279,-1.1991,-0.3289,54.4346,-0.7697,-0.3119,54.4067,-0.7678,-0.2759,54.337,-0.7636,-0.4185,54.5097,-0.8032,-0.3685,54.4793,-0.78,-0.3813,54.4858,-0.8154,0.0,53.898,-1.9014,-0.719,54.4064,-1.1154,-0.7851,54.447,-1.3532,-0.5765,54.4239,-1.3267,-0.6407,54.4995,-1.2162,-0.4478,54.4061,-1.3188,-0.8345,54.0662,-1.4053,-0.2148,53.993,-1.8344,-0.5806,54.0623,-1.5086,-0.2084,53.7544,-2.0113,-0.2132,53.7896,-2.0186,-0.7462,53.8355,-1.4175,-0.1802,54.0576,-0.6944,-0.1724,54.2966,-0.7009,-0.4794,54.5085,-1.0756,-0.4992,54.5037,-0.8741,-0.825,54.1195,-0.9752,-0.5688,54.2715,-1.1108,-0.4513,54.1245,-1.4138,-0.3561,54.0351,-1.1521,-0.4884,54.3425,-0.8616,-0.2459,54.4174,-1.0608,-0.1569,54.3257,-0.7483,-0.5497,54.0533,-1.2529,-0.6778,53.8181,-1.429,-0.6289,53.8297,-1.4153,-0.5976,53.8577,-1.3904,-0.7724,54.2313,-1.4555,-0.8222,54.4709,-1.1197,-0.2761,54.3478,-0.7783,-0.3932,54.5398,-1.1814,-0.4029,54.5448,-1.1758,-0.3904,54.5457,-1.1753,-0.5145,54.1259,-0.9158,-0.345,54.0437,-1.1668,-0.4411,54.2856,-1.1575,-0.476,54.1021,-1.1871,-0.4686,54.2531,-1.3572,-0.4447,54.4092,-0.8127,-0.3828,54.309,-1.1817,-0.4294,54.3929,-1.1665,-0.3917,54.4696,-1.1925,-0.291,54.106,-1.6192,-0.3476,53.9524,-1.6473,-0.2689,54.2645,-1.6082,0.5311,54.2474,-0.8835,0.4851,54.3779,-1.0564,0.5041,54.4475,-0.8779,0.4992,54.5037,-0.8741,0.1732,53.9906,-0.6932,0.5806,54.0623,-1.5086,0.5995,54.4793,-1.2353,0.1543,54.0163,-1.9173,0.654,54.4584,-1.1109,0.2554,53.8967,-0.7723,0.4306,54.5027,-1.1686,0.5289,54.1625,-0.9344,0.8114,54.2382,-1.0765,0.8089,54.4993,-1.2957,0.5212,54.1077,-0.9374,0.5063,53.8429,-1.4015,0.2378,53.9075,-1.8042,0.2463,53.9135,-1.7829,0.254,53.8544,-1.7373,0.2515,53.8545,-1.7335,0.3321,54.2801,-1.5503,0.336,54.2819,-1.5524,0.3252,53.867,-1.6272,0.1295,53.721,-2.1749,0.1391,53.717,-2.1741,0.1726,53.7774,-2.1902,0.1673,53.7756,-2.1897,0.2056,53.8447,-1.9725,0.3009,54.0237,-1.6228,0.4695,54.0194,-1.3862,0.4113,54.0334,-1.4845,0.0,54.1684,-1.7416,0.0974,54.1749,-1.7255,0.0,54.2329,-1.719,0.341,54.2008,-1.5516,0.7872,53.7888,-1.4606,0.821,54.5765,-1.1415,0.7448,54.5648,-1.1126,0.823,54.5733,-1.1359,0.7436,54.5683,-1.119,0.5777,54.5106,-1.1552,0.7269,54.4843,-1.274,0.6921,54.4146,-1.3685,0.3258,54.5089,-1.2084,0.3326,54.4337,-1.2085,0.1104,54.0343,-1.2134,0.1999,54.1259,-1.2027,0.2054,54.0274,-1.2111,0.1055,54.1313,-1.2004,0.2115,53.9232,-1.2142,0.2661,54.3711,-1.2188,0.1885,54.3237,-1.1995,0.0969,53.8269,-0.7001,0.0,53.9329,-1.2056,0.1158,53.9303,-1.2215,0.1165,53.9233,-1.2145,0.0,53.9389,-1.2125};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getc4_Coord_6_55_point_2()
		{
			double[] value = {0.4775,54.5632,-0.9655,0.4676,54.544,-0.8747,0.4673,54.5653,-0.966,0.0814,54.3052,-0.6754,0.0,54.2941,-0.6529,0.0846,54.2949,-0.6673,0.0,54.3048,-0.6606,0.2744,54.3612,-0.8371,0.423,54.5617,-1.1307,0.3757,54.4758,-0.7727,0.4039,54.4513,-0.773,0.6636,54.5387,-1.1246,0.7387,54.4738,-1.0935,0.3106,53.9423,-1.6263,0.6865,54.5166,-1.2044,0.6637,54.5421,-1.1315,0.7456,54.5375,-1.1982,0.447,54.0773,-1.5679,0.5248,54.0677,-1.5187,0.1871,53.9577,-1.9165,0.1904,53.9167,-1.9958,0.293,53.9373,-1.7196,0.303,54.046,-1.7013,0.6289,53.8297,-1.4153,0.6778,53.8181,-1.429,0.2122,53.9174,-1.2071,0.2144,53.935,-1.1328,0.2061,53.9383,-0.9548,0.1186,53.9481,-1.0377,0.2117,53.9403,-1.0388,0.1163,53.9456,-0.9379,0.1185,53.9178,-0.8518,0.1147,53.8535,-0.7645,0.0862,53.9709,-0.6529,0.1003,54.1246,-0.6538,0.093,54.0388,-0.6544,0.1973,54.1267,-0.6977,0.0,54.2191,-0.6399,0.0,54.1148,-0.642,0.1065,54.2112,-0.6528,0.3144,54.4524,-0.9943,0.3982,54.5183,-0.9794,0.0789,54.3242,-0.7172,0.0,54.3867,-0.9531,0.0778,54.3702,-0.8739,0.0784,54.3875,-0.9573,0.0,54.3691,-0.8735,0.1594,54.39,-0.9774,0.0849,54.4059,-1.0418,0.2745,54.408,-0.9901,0.4995,54.5142,-0.9696,0.512,54.1832,-0.8916,0.4236,54.195,-0.8633,0.3672,54.2101,-0.8315,-0.4695,54.0194,-1.3862,-0.336,54.2819,-1.5524,-0.3321,54.2801,-1.5503,-0.1673,53.7756,-2.1897,-0.1426,53.7545,-2.1838,-0.2005,53.7274,-2.1779,-0.1391,53.717,-2.1741,-0.2056,53.8447,-1.9725,-0.2049,53.8651,-2.0632,-0.1904,53.9167,-1.9958,-0.5083,53.9716,-1.5338,-0.4113,54.0334,-1.4845,-0.3009,54.0237,-1.6228,-0.0974,54.1749,-1.7255,-0.7872,53.7888,-1.4606,-0.6615,54.3673,-1.4346,-0.5777,54.5106,-1.1552,-0.823,54.5733,-1.1359,-0.821,54.5765,-1.1415,-0.4832,54.0926,-1.1785,-0.5187,54.0779,-1.2154,-0.6577,54.3488,-1.1361,-0.5043,54.3843,-1.1631,-0.8044,54.5267,-1.2474,-0.8089,54.4993,-1.2957,-0.5062,54.1703,-1.1283,-0.5748,54.1682,-1.1327,-0.3326,54.4337,-1.2085,-0.2661,54.3711,-1.2188,-0.3258,54.5089,-1.2084,-0.1055,54.1313,-1.2004,0.0,54.0431,-1.2064,-0.1104,54.0343,-1.2134,0.0,54.136,-1.1902,-0.1885,54.3237,-1.1995,-0.1941,54.2247,-1.1998,-0.095,54.3259,-1.1907,-0.0896,54.4299,-1.1826,-0.0969,53.8269,-0.7001,0.0,53.8237,-0.6683,-0.0974,53.8309,-0.6902,0.0,53.8199,-0.6782,-0.4236,54.195,-0.8633,-0.3672,54.2101,-0.8315,-0.0892,54.4353,-1.1748,-0.423,54.5617,-1.1307,-0.4341,54.5598,-1.1319,-0.4676,54.544,-0.8747,-0.0846,54.2949,-0.6673,-0.0814,54.3052,-0.6754,-0.2615,54.4021,-0.9887,-0.2745,54.408,-0.9901,-0.3717,54.522,-1.0744,-0.4498,54.5751,-1.0752,-0.3982,54.5183,-0.9794,-0.4673,54.5653,-0.966,-0.4039,54.4513,-0.773,-0.1004,54.2284,-1.1928,0.0,54.2307,-1.1846,-0.7448,54.5648,-1.1126,-0.7387,54.4738,-1.0935,-0.6636,54.5387,-1.1246,-0.2926,54.1568,-1.6814,-0.7269,54.4843,-1.274,-0.6865,54.5166,-1.2044,-0.7456,54.5375,-1.1982,-0.6637,54.5421,-1.1315,-0.303,54.046,-1.7013,-0.293,53.9373,-1.7196,-0.359,54.0515,-1.6333,-0.7126,53.8808,-1.368,-0.7942,53.9448,-1.3053,-0.2144,53.935,-1.1328,-0.2117,53.9403,-1.0388,0.0,53.9571,-1.0336,-0.1163,53.9456,-0.9379,-0.1186,53.9481,-1.0377,0.0,53.9492,-0.9308,0.0,53.921,-0.8447,-0.1147,53.8535,-0.7645,-0.1185,53.9178,-0.8518,0.0,53.8525,-0.7517,-0.2061,53.9383,-0.9548,-0.1874,53.9133,-0.7048,-0.093,54.0388,-0.6544,-0.0862,53.9709,-0.6529,-0.1973,54.1267,-0.6977,-0.2466,54.141,-0.7471,-0.1065,54.2112,-0.6528,-0.1003,54.1246,-0.6538,-0.3144,54.4524,-0.9943,-0.0789,54.3242,-0.7172,0.0,54.3251,-0.7054,0.0,54.3486,-0.7844,-0.0778,54.3702,-0.8739,-0.0795,54.3467,-0.7906,-0.1579,54.3667,-0.8898,-0.0784,54.3875,-0.9573,-0.1594,54.39,-0.9774,-0.512,54.1832,-0.8916,-0.5311,54.2474,-0.8835,-0.0849,54.4059,-1.0418,-0.0844,53.8831,-0.6653,-0.1816,53.852,-0.7146,-0.2122,53.9174,-1.2071,-0.8067,53.9082,-1.3362,-0.2146,53.8823,-1.8935,-0.1871,53.9577,-1.9165,-0.447,54.0773,-1.5679,-0.5248,54.0677,-1.5187,-0.3475,54.185,-1.6217,-0.7436,54.5683,-1.119,-0.6921,54.4146,-1.3685,-0.1999,54.1259,-1.2027,-0.3757,54.4758,-0.7727,-0.1592,54.3427,-0.8009,-0.2744,54.3612,-0.8371,-0.2701,54.3812,-0.8954,0.0,54.4315,-1.1836,0.0,54.4382,-1.1757,-0.3018,54.1483,-0.8043,-0.2115,53.9232,-1.2142,0.0,54.3254,-1.1791,-0.1158,53.9303,-1.2215,-0.3498,54.1156,-1.5526,-0.341,54.2008,-1.5516,-0.3586,54.0304,-1.5536,-0.1991,53.7656,-2.1877,-0.1726,53.7774,-2.1902,-0.1278,53.7336,-2.1781,-0.1295,53.721,-2.1749,0.5716,54.2226,-1.1212,0.6577,54.3488,-1.1361,0.2615,54.4021,-0.9887,0.1579,54.3667,-0.8898,0.0795,54.3467,-0.7906,0.3717,54.522,-1.0744,0.2466,54.141,-0.7471,0.7942,53.9448,-1.3053,0.2049,53.8651,-2.0632,0.359,54.0515,-1.6333,0.7868,54.5389,-1.2183,0.6615,54.3673,-1.4346,0.5043,54.3843,-1.1631,0.1004,54.2284,-1.1928,0.4498,54.5751,-1.0752,0.2701,54.3812,-0.8954,0.095,54.3259,-1.1907,0.5748,54.1682,-1.1327,0.8044,54.5267,-1.2474,0.5802,54.5141,-1.1612,0.3498,54.1156,-1.5526,0.3586,54.0304,-1.5536,0.137,53.7594,-2.1725,0.2005,53.7274,-2.1779,0.1426,53.7545,-2.1838,0.1169,53.731,-2.1648,0.1278,53.7336,-2.1781,0.1991,53.7656,-2.1877,0.5062,54.1703,-1.1283,0.5125,54.2386,-1.1082,0.1941,54.2247,-1.1998,0.0896,54.4299,-1.1826,0.0892,54.4353,-1.1748,0.3475,54.185,-1.6217,0.6407,54.4995,-1.2162,0.2146,53.8823,-1.8935,0.1203,53.9373,-1.1294,0.0,53.9623,-0.6388,0.0,53.8723,-0.6481,0.0,54.0295,-0.6401,0.3018,54.1483,-0.8043,0.0882,54.4228,-1.1177,0.0,54.4202,-1.109,0.0,54.4038,-1.0319,0.1592,54.3427,-0.8009,-0.7868,54.5389,-1.2183,-0.2054,54.0274,-1.2111,-0.1165,53.9233,-1.2145,0.0,53.9485,-1.1319,-0.1203,53.9373,-1.1294,-0.0882,54.4228,-1.1177};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_56_vector_1()
		{
			double[] value = {-0.9991,0.041,-0.011,-0.9987,0.0509,0.0018,-0.998,-0.0503,0.0393,-0.9977,-0.0677,-0.0077,-0.9905,-0.0849,0.1079,-0.9903,0.0446,-0.1317,-0.9867,-0.114,0.1161,-0.9855,0.0184,0.1685,-0.983,0.0202,-0.1826,-0.983,0.0517,-0.1763,-0.9818,-0.1855,-0.0397,-0.9794,0.193,0.0588,-0.9791,0.0449,0.1983,-0.9781,0.0506,-0.2018,-0.9771,0.1772,0.1176,-0.9759,0.0715,-0.206,-0.973,0.122,0.1959,-0.9704,-0.0042,-0.2414,-0.97,0.078,-0.2302,-0.9697,0.205,0.133,-0.9696,-0.1705,-0.1753,-0.9684,-0.2474,-0.0302,-0.9662,-0.1918,-0.1721,-0.966,-0.2174,0.1403,-0.9624,-0.205,0.1782,-0.9602,0.2732,-0.0582,-0.9599,-0.1884,0.2077,-0.9595,0.1129,0.2583,-0.959,0.2411,-0.1487,-0.9558,0.0187,-0.2934,-0.9525,0.1695,-0.2531,-0.9516,0.2172,0.2174,-0.9512,-0.1922,0.2413,-0.9489,-0.0568,-0.3105,-0.948,0.101,0.3018,-0.9475,-0.1533,0.2806,-0.9473,0.1419,0.287,-0.9468,-0.0016,-0.322,-0.9439,0.1784,-0.278,-0.9419,-0.1273,-0.3107,-0.9374,0.185,-0.2952,-0.9349,-0.351,0.0519,-0.9288,-0.2432,0.2797,-0.9243,0.2533,-0.2855,-0.9227,-0.3323,0.1956,-0.9162,-0.1702,0.3629,-0.9139,-0.1136,0.3897,-0.9098,0.2695,0.3156,-0.9087,-0.1714,-0.3807,-0.9072,-0.1645,0.3871,-0.9024,0.431,-0.0005,-0.9023,-0.3907,0.1822,-0.9018,0.1156,-0.4165,-0.8948,-0.4136,-0.1684,-0.8893,0.0678,0.4524,-0.888,0.2979,-0.3503,-0.8879,0.4249,-0.1763,-0.8858,0.4197,-0.198,-0.8816,0.3674,-0.2962,-0.8807,0.1283,-0.456,-0.8805,-0.1049,-0.4623,-0.8761,-0.1429,0.4605,-0.8723,0.457,0.1743,-0.8702,-0.2438,0.4282,-0.8682,-0.2101,-0.4495,-0.8681,-0.0304,0.4954,-0.8676,-0.4947,0.051,-0.8675,0.3976,0.299,-0.8655,-0.3992,0.3026,-0.8643,-0.0214,0.5026,-0.8638,-0.4728,0.1739,-0.8592,-0.2864,0.424,-0.856,0.0979,-0.5076,-0.856,-0.511,-0.0786,-0.8557,-0.2458,-0.4552,-0.8547,0.2196,-0.4703,-0.85,-0.4625,0.2523,-0.8443,0.3811,-0.3767,-0.8443,-0.2159,0.4905,-0.8403,0.2621,-0.4746,-0.8371,0.4795,0.2631,-0.837,-0.0465,0.5452,-0.8357,0.5374,0.1129,-0.8296,0.3987,0.3909,-0.8289,-0.0372,0.5582,-0.8274,-0.5387,-0.159,-0.8272,-0.0237,-0.5614,-0.8266,-0.0753,-0.5578,-0.826,-0.5578,0.0812,-0.8256,-0.4725,-0.3085,-0.8248,-0.563,0.0525,-0.8227,-0.4509,-0.3463,-0.8224,-0.5636,0.0779,-0.8215,-0.1052,0.5605,-0.8189,-0.2938,-0.493,-0.8184,-0.365,0.4438,-0.8178,0.5288,-0.2272,-0.8139,0.3898,0.4308,-0.8129,-0.3942,0.4287,-0.8058,-0.1051,-0.5828,-0.8044,0.3119,0.5057,-0.8017,-0.5973,0.0234,-0.7996,-0.5217,-0.2975,-0.7951,-0.5902,-0.1397,-0.7918,-0.0579,0.608,-0.786,-0.3272,0.5246,-0.783,-0.1526,-0.603,-0.7771,-0.1568,0.6095,-0.7768,-0.0267,0.6292,-0.7747,-0.0952,0.6251,-0.7733,0.1782,-0.6085,-0.7686,0.6397,0.002,-0.7669,-0.6412,0.0261,-0.7652,0.5266,0.3703,-0.7633,-0.627,0.1554,-0.7625,-0.1513,0.6291,-0.7606,0.4685,0.4494,-0.7602,0.0479,0.6479,-0.7562,-0.0485,0.6526,-0.7562,0.1242,-0.6425,-0.7557,-0.114,-0.6449,-0.7515,0.259,0.6067,-0.7501,-0.1053,0.6529,-0.7495,0.0015,0.662,-0.7483,-0.0184,-0.6631,-0.7479,-0.3743,0.5483,-0.7463,-0.287,0.6005,-0.7451,-0.1083,-0.6581,-0.745,-0.0837,0.6618,-0.7449,0.2495,-0.6187,-0.7447,-0.1685,0.6458,-0.743,-0.1194,0.6586,-0.7347,-0.6759,0.0576,-0.734,0.0797,-0.6744,-0.7337,-0.1662,0.6589,-0.7332,-0.1044,0.6719,-0.7328,-0.5001,-0.4615,-0.7257,-0.3685,0.581,-0.7237,0.5846,0.3667,-0.7219,-0.0579,0.6895,-0.7185,0.0205,-0.6952,-0.7182,0.039,-0.6948,-0.7162,-0.0802,0.6932,-0.7148,0.6871,0.13,-0.7138,-0.1558,0.6828,-0.7137,0.0195,-0.7002,-0.7113,0.1136,-0.6937,-0.7088,0.7044,-0.0388,-0.7072,-0.1477,0.6914,-0.7069,-0.3778,0.598,-0.7068,-0.636,0.3097,-0.7045,0.5238,0.4789,-0.7018,0.0511,0.7105,-0.6986,0.236,0.6754,-0.6977,0.656,0.288,-0.6957,-0.4441,0.5646,-0.6951,0.7025,0.1527,-0.6947,-0.6469,-0.3145,-0.6895,-0.0572,-0.722,-0.689,-0.7231,-0.0496,-0.689,-0.1616,0.7065,-0.6802,0.0649,-0.7301,-0.679,-0.7039,-0.2085,-0.6781,0.7091,0.1933,-0.6773,0.715,0.1732,-0.6757,-0.3792,-0.6322,-0.6746,0.1425,0.7243,-0.6727,0.2416,0.6993,-0.6711,0.5375,0.5106,-0.6673,-0.6407,0.3797,-0.6649,-0.2187,0.7142,-0.6629,0.715,0.2221,-0.6621,-0.7363,0.1396,-0.662,0.7326,-0.1583,-0.6596,0.4246,-0.6202,-0.6587,0.311,-0.6851,-0.6575,0.7128,-0.2442,-0.6528,-0.2382,0.7191,-0.6503,-0.0753,0.7559,-0.6477,-0.0984,-0.7555,-0.6463,-0.6924,0.3208,-0.6444,0.1912,-0.7404,-0.6418,-0.1457,0.7529,-0.6377,0.1819,-0.7485,-0.6371,-0.1795,-0.7496,-0.6359,-0.1999,-0.7455,-0.6345,0.5345,0.5584,-0.6314,-0.5925,0.5003,-0.6314,-0.5994,0.492,-0.6307,0.0602,0.7737,-0.6267,0.7762,0.0696,-0.6224,-0.7506,0.2217,-0.6219,-0.1555,0.7675,-0.6219,-0.0649,-0.7804,-0.6211,0.3505,-0.701,-0.6195,0.4935,0.6105,-0.6179,-0.6092,0.497,-0.6148,0.6465,0.4517,-0.6148,0.786,-0.0658,-0.6116,0.2347,-0.7555,-0.6102,-0.4558,0.648,-0.61,0.787,0.0929,-0.6096,0.521,0.5974,-0.6076,-0.4923,0.6232,-0.6068,0.6121,-0.507,-0.6037,0.7578,0.2475,-0.5999,0.164,0.7831,-0.5983,0.7784,0.1902,-0.5945,-0.0916,0.7988,-0.5943,-0.7563,-0.2734,-0.5941,-0.1893,-0.7818,-0.5922,-0.0733,0.8024,-0.5892,-0.7609,-0.272,-0.5875,0.768,0.2548,-0.5833,0.4406,-0.6824,-0.5819,0.2678,-0.7679,-0.5747,0.8023,0.1616,-0.5733,-0.1973,0.7952,-0.5729,-0.2688,0.7743,-0.5707,-0.0683,-0.8183,-0.5702,-0.5944,0.5671,-0.5671,-0.7887,-0.2373,-0.5667,-0.823,0.0394,-0.5645,0.7342,0.3772,-0.5636,0.7863,0.2529,-0.5622,0.363,-0.7431,-0.5593,0.8127,-0.1634,-0.5591,-0.828,0.0431,-0.5578,0.6062,0.5669,-0.5566,0.3754,0.7411,-0.5548,0.3636,-0.7483,-0.5521,0.4367,-0.7102,-0.5519,-0.1119,0.8263,-0.5514,0.0684,-0.8314,-0.5491,-0.2354,0.8019,-0.5485,-0.7222,0.4214,-0.5446,-0.8191,0.1802,-0.5439,0.7711,0.3311,-0.5424,0.5627,-0.6238,-0.5415,-0.0198,0.8405,-0.5412,0.7035,-0.4606,-0.5397,0.5397,-0.6462,-0.5391,-0.5349,0.6506,-0.5377,-0.7645,0.3555,-0.5372,0.8288,0.1563,-0.5363,0.7158,-0.4473,-0.5359,0.4007,0.7431,-0.5359,-0.0175,0.8441,-0.5328,-0.8436,-0.0664,-0.5268,-0.3873,0.7566,-0.5223,-0.015,-0.8527,-0.5212,-0.2587,0.8133,-0.5169,-0.3444,0.7837,-0.516,-0.2788,0.8099,-0.515,0.7077,-0.4836,-0.5124,0.6112,-0.6032,-0.51,0.0274,0.8597,-0.509,0.0424,0.8597,-0.5059,-0.8612,0.0488,-0.5054,-0.3003,0.8089,-0.5029,-0.7123,0.4895,-0.4999,0.5051,0.7036,-0.4984,-0.6015,-0.6243,-0.4947,0.5679,0.6579,-0.493,-0.2492,0.8336,-0.4922,-0.1369,0.8596,-0.492,0.1933,-0.8489,-0.4917,0.8538,0.1711,-0.4904,0.0212,-0.8712,-0.4892,-0.2623,0.8318,-0.4812,0.3892,-0.7855,-0.4778,-0.3573,0.8025,-0.4754,-0.2867,0.8317,-0.4753,-0.8475,-0.2363,-0.473,-0.1162,0.8734,-0.4716,0.5589,0.6821,-0.4694,-0.7985,0.3767,-0.4685,-0.2789,0.8383,-0.4656,-0.8815,0.0783,-0.4655,-0.0784,-0.8816,-0.4588,-0.1961,-0.8666,-0.4537,0.7843,-0.4232,-0.4522,0.8395,0.3013,-0.4522,0.851,-0.2671,-0.4507,-0.269,0.8512,-0.4481,0.13,-0.8845,-0.4475,-0.1254,-0.8854,-0.4449,-0.7516,-0.4871,-0.4425,-0.3924,-0.8064,-0.4381,-0.8068,-0.3964,-0.4373,0.556,0.7069,-0.4343,0.1654,-0.8855,-0.4339,0.2152,0.8749,-0.4319,0.7154,-0.5492,-0.4315,0.8361,-0.3388,-0.4278,-0.2698,0.8627,-0.4273,-0.7882,-0.4429,-0.4269,-0.3669,0.8266,-0.4268,-0.2407,-0.8717,-0.4263,0.5904,-0.6854,-0.4257,-0.5929,0.6836,-0.4251,0.2331,-0.8747,-0.4243,0.8584,-0.2882,-0.4222,0.2706,0.8652,-0.4198,-0.0239,-0.9073,-0.4113,0.5417,-0.7331,-0.4106,-0.1906,0.8917,-0.4102,-0.7898,0.456,-0.4097,0.327,-0.8516,-0.4052,0.0595,0.9123,-0.4052,-0.8569,0.3185,-0.4028,0.5803,0.7078,-0.3996,0.0999,0.9112,-0.3941,-0.53,-0.7509,-0.3929,-0.5114,0.7643,-0.3926,-0.8313,0.3935,-0.3849,0.0233,-0.9227,-0.3835,0.0179,0.9234,-0.3797,0.8661,0.3251,-0.3776,-0.8672,0.3246,-0.3769,-0.9246,0.0559,-0.3766,0.8361,0.3989,-0.373,-0.8983,0.2324,-0.3726,0.018,0.9278,-0.372,-0.4576,-0.8076,-0.3702,0.638,-0.6752,-0.3696,-0.9157,0.1578,-0.3654,-0.2045,0.9081,-0.3649,-0.1132,-0.9241,-0.3646,-0.249,0.8973,-0.3621,0.452,0.8153,-0.3599,0.5605,0.7459,-0.356,0.6836,-0.6372,-0.3555,0.6136,-0.7051,-0.352,-0.5297,-0.7717,-0.3513,-0.3193,0.8802,-0.3492,0.9109,-0.2199,-0.347,0.0822,-0.9342,-0.347,-0.7239,-0.5963,-0.3469,0.4269,0.8351,-0.3455,-0.2921,0.8918,-0.345,0.2424,-0.9067,-0.345,-0.0958,-0.9337,-0.3442,-0.3675,0.864,-0.3401,0.5576,-0.7573,-0.3392,-0.8617,0.3774,-0.3374,-0.1962,0.9207,-0.3368,0.4786,-0.8109,-0.3333,0.2401,-0.9117,-0.332,0.9242,-0.189,-0.3284,0.6707,-0.6651,-0.3273,0.9407,-0.0886,-0.3263,0.5307,-0.7822,-0.3252,0.9452,0.0283,-0.3244,0.0028,-0.9459,-0.3226,-0.7713,0.5486,-0.3191,-0.0293,-0.9473,-0.3186,0.0272,-0.9475,-0.3184,0.0297,-0.9475,-0.3183,0.6664,-0.6743,-0.3168,-0.6228,0.7154,-0.3126,0.9304,-0.1913,-0.3091,-0.0852,-0.9472,-0.3067,0.8985,0.3141,-0.3057,-0.5091,0.8046,-0.3014,-0.9499,0.0828,-0.2995,-0.3882,0.8715,-0.2991,0.9102,0.2866,-0.296,-0.9157,-0.272,-0.2916,0.9557,-0.0408,-0.2905,-0.0768,0.9538,-0.2896,0.4277,0.8563,-0.2881,-0.954,-0.0833,-0.2879,-0.7405,0.6072,-0.2877,-0.2338,0.9287,-0.2866,-0.0146,0.9579,-0.2864,-0.0646,0.9559,-0.2852,-0.9258,0.2482,-0.2846,0.9175,0.2779,-0.2842,-0.5964,0.7507,-0.2839,-0.5288,-0.7998,-0.2818,0.7785,-0.5608,-0.2811,0.3246,0.9031,-0.2787,-0.686,0.6721,-0.2774,0.6277,-0.7274,-0.2764,0.9588,0.0661,-0.2715,-0.0324,0.9619,-0.2711,0.0892,0.9584,-0.2707,0.2742,0.9228,-0.2706,0.8284,-0.4905,-0.2697,0.0861,-0.9591,-0.2673,0.9403,-0.2108,-0.2668,0.9223,0.2796,-0.2645,0.0041,-0.9644,-0.2618,0.8,-0.5398,-0.2615,-0.0702,0.9626,-0.2591,-0.6265,0.735,-0.2586,-0.8444,0.4691,-0.2585,-0.3585,0.897,-0.2575,0.835,-0.4863,-0.2558,0.9375,0.2357,-0.2547,0.7182,0.6475,-0.251,0.5014,-0.828,-0.2497,0.3212,-0.9135,-0.249,0.873,-0.4195,-0.2478,0.5759,-0.7791,-0.2474,0.6813,-0.689,-0.2465,0.8052,-0.5394,-0.2463,0.3898,-0.8874,-0.2449,0.0404,-0.9687,-0.2443,-0.1,-0.9645,-0.2426,-0.8521,0.4638,-0.241,0.1518,0.9586,-0.24,0.8856,0.3977,-0.2394,0.91,-0.3385,-0.2393,-0.9684,-0.0708,-0.2332,-0.8161,-0.5288,-0.2331,0.3616,-0.9027,-0.2331,0.8174,-0.5268,-0.2322,-0.7997,0.5537,-0.2308,0.2608,0.9374,-0.2284,0.8675,-0.4419,-0.2252,-0.0266,-0.974,-0.2251,-0.1719,0.9591,-0.2237,0.5763,0.7861,-0.2233,0.0928,-0.9703,-0.2218,0.4368,0.8718,-0.2203,-0.9443,-0.2446,-0.2188,0.6496,0.7282,-0.2184,-0.8056,0.5507,-0.2151,-0.0005,-0.9766,-0.2114,-0.7818,0.5865,-0.2113,0.4168,0.8841,-0.2108,0.9644,-0.1595,-0.2084,0.4505,-0.8681,-0.2058,0.9508,0.2314,-0.2055,-0.8466,0.4909,-0.2046,-0.9214,0.3304,-0.2042,0.9704,0.1285,-0.2032,-0.9637,-0.1733,-0.2027,-0.9543,0.2195,-0.1982,0.8649,-0.4612,-0.198,0.0544,0.9787,-0.1929,0.8673,-0.4589,-0.1928,0.844,-0.5004,-0.1918,-0.9507,0.2436,-0.1906,0.2903,-0.9378,-0.1882,-0.9327,0.3078,-0.1864,-0.9806,-0.0611,-0.1851,-0.1237,0.9749,-0.1846,0.9692,0.1632,-0.1815,-0.8908,-0.4166,-0.1808,0.1593,-0.9705,-0.1807,0.6152,-0.7674,-0.1798,0.5291,0.8293,-0.1792,0.8813,-0.4372,-0.1791,-0.2887,0.9405,-0.1789,0.7858,0.592,-0.1753,-0.7308,0.6597,-0.175,0.2703,-0.9467,-0.1725,0.9471,0.2706,-0.1697,-0.2911,-0.9415,-0.1668,-0.5601,0.8115,-0.1662,0.085,-0.9824,-0.1642,0.8929,-0.4193,-0.1641,0.0024,-0.9864,-0.1634,0.7282,-0.6656,-0.1619,0.6227,0.7655,-0.1608,0.3839,0.9092,-0.1606,-0.5401,-0.8261,-0.1563,-0.9372,0.3118,-0.1525,0.0146,-0.9882,-0.1522,0.7876,0.597,-0.1513,-0.509,0.8473,-0.15,0.1268,0.9805,-0.1491,-0.854,0.4985,-0.1482,-0.8991,-0.4118,-0.1453,0.147,0.9784,-0.1404,-0.6093,0.7804,-0.1396,-0.5107,0.8484,-0.1391,-0.9903,-0.0069,-0.1375,-0.0189,-0.9903,-0.1363,-0.8144,-0.564,-0.1337,0.8259,-0.5477,-0.1317,-0.6486,0.7496,-0.131,0.1314,-0.9826,-0.1293,-0.4625,-0.8772,-0.1282,-0.9317,0.3399,-0.1209,0.8674,-0.4827,-0.1183,-0.205,0.9716,-0.118,0.4074,0.9056,-0.1162,0.9931,-0.0183,-0.1137,-0.3417,0.9329,-0.1129,-0.2679,0.9568,-0.1123,0.0387,-0.9929,-0.1105,-0.725,0.6799,-0.1059,0.9921,0.0667,-0.1034,0.0106,-0.9946,-0.1027,0.5839,-0.8053,-0.1018,0.1404,-0.9848,-0.0995,-0.0749,0.9922,-0.0993,-0.6294,0.7707,-0.0985,0.5581,-0.8239,-0.0972,-0.944,0.3153,-0.0958,-0.9926,0.075,-0.0941,0.7935,-0.6013,-0.0932,0.9305,0.3542,-0.0928,-0.9896,0.1102,-0.0909,-0.2563,0.9623,-0.0882,0.5054,0.8584,-0.0837,0.8998,-0.4282,-0.0826,-0.93,0.3582,-0.0825,-0.9957,0.0412,-0.0809,0.0408,-0.9959,-0.0809,-0.6259,0.7757,-0.0803,0.4885,-0.8689,-0.0791,0.0117,-0.9968,-0.0768,0.2963,-0.952,-0.0767,0.9334,-0.3504,-0.0742,-0.9823,-0.1717,-0.0731,-0.7814,0.6198,-0.0724,-0.9447,-0.3198,-0.0723,-0.0059,-0.9974,-0.0722,-0.9876,0.1394,-0.0719,-0.4324,-0.8988,-0.0714,0.9946,-0.0752,-0.0712,-0.7108,0.6997,-0.0689,0.9668,0.2459,-0.0688,0.9573,0.2808,-0.0685,-0.7011,0.7097,-0.0674,0.5524,-0.8309,-0.0674,-0.0586,0.996,-0.0653,-0.7337,0.6763,-0.0621,-0.7045,0.707,-0.0603,-0.156,0.9859,-0.0574,0.2068,-0.9767,-0.0574,-0.7437,0.666,-0.0568,-0.2153,0.9749,-0.0561,0.1007,-0.9933,-0.0516,-0.8947,-0.4436,-0.049,0.9319,0.3594,-0.0469,0.366,0.9294,-0.0464,0.9712,0.2338,-0.0457,-0.029,-0.9985,-0.0439,-0.7104,0.7025,-0.0432,-0.6521,0.7569,-0.0431,-0.9837,0.1744,-0.0423,-0.9709,-0.2357,-0.0422,0.2684,-0.9624,-0.0418,0.0687,0.9968,-0.0417,-0.6865,0.7259,-0.0417,-0.2729,0.9611,-0.0414,-0.9987,0.0282,-0.0411,-0.6813,0.7308,-0.0407,0.1571,-0.9867,-0.0406,0.739,-0.6725,-0.0397,0.8481,-0.5284,-0.0374,0.3648,-0.9303,-0.0365,-0.9607,-0.275,-0.0361,-0.6478,-0.7609,-0.0342,0.5689,0.8217,-0.0337,-0.9912,-0.1278,-0.0337,-0.3454,-0.9378,-0.0326,-0.9877,-0.1527,-0.0322,-0.689,0.724,-0.0314,-0.7622,0.6466,-0.0303,-0.9473,-0.3189,-0.0282,0.9727,0.2305,-0.0276,0.0561,-0.998,-0.0272,0.057,-0.998,-0.027,0.9734,0.2274,-0.0255,0.3154,0.9486,-0.0214,0.9761,0.2165,-0.0212,0.9754,0.2193,-0.0208,0.0952,-0.9952,-0.0194,0.5876,0.8089,-0.0189,0.383,-0.9236,-0.018,-0.879,-0.4765,-0.0174,0.9794,0.2012,-0.0157,-0.3295,-0.944,-0.0145,0.9769,0.213,-0.0142,-0.9303,-0.3665,-0.0128,-0.7853,0.619,-0.0125,0.6181,-0.786,-0.012,-0.1519,0.9883,-0.0119,-0.7301,-0.6832,-0.0116,0.6358,-0.7717,-0.011,0.958,0.2867,-0.0109,-0.6256,0.7801,-0.0106,-0.7705,0.6374,-0.0088,0.9842,-0.1767,-0.0082,0.967,0.2548,-0.0077,-0.0431,-0.999,-0.0045,-0.9904,0.1383,-0.0041,-0.6603,0.751,-0.0028,-0.6542,0.7563,-0.0011,0.9995,-0.0312,-0.0008,-0.3128,-0.9498,-0.0005,0.9995,-0.033,0.0,-0.0075,1.0,0.0,0.0178,0.9998,0.0,-0.0566,0.9984,0.0,0.088,0.9961,0.0,-0.252,0.9677,0.0,0.2721,0.9623,0.0,0.382,0.9242,0.0,-0.3934,0.9194,0.0,-0.4061,0.9138,0.0,-0.5113,0.8594,0.0,-0.5253,0.8509,0.0,-0.528,0.8492,0.0,-0.5861,0.8103,0.0,-0.6988,0.7154,0.0,0.7602,0.6497,0.0,0.9345,0.356,0.0,0.9634,0.2682,0.0,0.9721,0.2346,0.0,0.9754,0.2203,0.0,0.9776,0.2106,0.0,0.9776,0.2104,0.0,-0.9894,0.1453,0.0,0.9913,0.1316,0.0,-0.9996,0.027,0.0,-0.9999,0.0147,0.0,-0.9799,-0.1994,0.0,0.9737,-0.2277,0.0,-0.972,-0.235,0.0,-0.8874,-0.461,0.0,-0.8699,-0.4932,0.0,0.6184,-0.7859,0.0,0.4885,-0.8726,0.0,0.4061,-0.9138,0.0,-0.3766,-0.9264,0.0,0.1169,-0.9931,0.0,0.108,-0.9942,0.0,0.0481,-0.9988,0.0,0.0391,-0.9992,0.0006,0.9735,-0.2286,0.0018,-0.6284,0.7779,0.0026,0.9731,-0.2302,0.0041,-0.6603,0.751,0.0045,-0.9904,0.1383,0.0077,-0.0431,-0.999,0.0082,0.967,0.2548,0.0088,0.9842,-0.1767,0.011,0.958,0.2867,0.0128,0.7728,-0.6345,0.0142,-0.9303,-0.3665,0.0145,0.9769,0.213,0.0158,0.6713,-0.741,0.0174,0.9794,0.2012,0.0176,0.6671,0.7447,0.0178,-0.7773,0.6289,0.018,-0.879,-0.4765,0.0189,0.383,-0.9236,0.0198,-0.7823,0.6226,0.02,-0.9381,-0.3459,0.0208,0.0952,-0.9952,0.0212,0.9754,0.2193,0.0212,-0.6481,0.7612,0.0214,0.9761,0.2165,0.0232,0.6542,-0.756,0.0234,0.6051,-0.7958,0.0242,-0.6846,0.7285,0.0248,0.582,0.8128,0.0255,0.3154,0.9486,0.027,0.9734,0.2274,0.0272,0.057,-0.998,0.0276,0.0561,-0.998,0.0279,0.7214,-0.6919,0.0282,0.9727,0.2305,0.0298,-0.1617,0.9864,0.0307,0.6634,0.7476,0.0326,-0.9877,-0.1527,0.0337,-0.3454,-0.9378,0.0337,-0.9912,-0.1278,0.0342,0.5689,0.8217,0.0361,-0.6478,-0.7609,0.0365,-0.9607,-0.275,0.0366,0.2289,-0.9728,0.0397,0.8481,-0.5284,0.0407,-0.7667,0.6407,0.0407,0.1571,-0.9867,0.0414,-0.9987,0.0282,0.0417,-0.2729,0.9611,0.0418,0.0687,0.9968,0.0422,0.2684,-0.9624,0.0423,-0.9709,-0.2357,0.0431,-0.9837,0.1744,0.0432,-0.6521,0.7569,0.0459,-0.6867,0.7255,0.0464,0.9712,0.2338,0.0467,-0.1744,0.9836,0.0471,-0.7222,-0.6901,0.049,0.9319,0.3594,0.0491,-0.2259,0.9729,0.0499,-0.6848,0.727,0.0502,-0.7133,0.6991,0.0514,-0.0335,-0.9981,0.0516,-0.8947,-0.4436,0.0523,-0.6562,0.7528,0.0537,0.3807,-0.9231,0.0561,0.1007,-0.9933,0.0587,-0.0987,0.9934,0.0607,0.3483,0.9354,0.0642,-0.7337,0.6764,0.0658,-0.678,0.7321,0.0668,0.1143,-0.9912,0.0674,-0.0586,0.996,0.0674,0.5524,-0.8309,0.0688,0.9573,0.2808,0.0689,0.9668,0.2459,0.0694,-0.9153,0.3968,0.0696,-0.2448,0.9671,0.0712,-0.7108,0.6997,0.0719,-0.4324,-0.8988,0.0719,0.037,-0.9967,0.0722,-0.9876,0.1394,0.0724,-0.9447,-0.3198,0.0724,-0.3512,0.9335,0.0741,0.2992,-0.9513,0.0742,-0.9823,-0.1717,0.0747,-0.9088,0.4104,0.0748,-0.7079,0.7023,0.0757,-0.7787,0.6227,0.0785,0.9335,-0.3499,0.0791,0.0117,-0.9968,0.0803,-0.0517,-0.9954,0.0803,0.4885,-0.8689,0.0809,0.0408,-0.9959,0.0825,-0.9957,0.0412,0.0837,0.8998,-0.4282,0.0882,0.5054,0.8584,0.0919,0.3839,0.9188,0.0928,-0.9896,0.1102,0.0932,0.9305,0.3542,0.0951,-0.9442,0.3153,0.0958,-0.9926,0.075,0.0991,0.8459,-0.524,0.1023,0.1405,0.9848,0.1059,0.9921,0.0667,0.1067,0.6015,-0.7917,0.1112,0.4934,0.8627,0.1123,0.0387,-0.9929,0.1127,-0.7286,0.6756,0.1149,0.9933,0.0142,0.1162,0.9931,-0.0183,0.1183,-0.205,0.9716,0.1203,-0.255,0.9594,0.1209,0.8674,-0.4827,0.1238,-0.4588,-0.8799,0.1296,-0.4937,-0.8599,0.1304,0.5268,-0.84,0.1325,-0.6143,0.7779,0.1326,-0.5216,0.8428,0.1337,0.8259,-0.5477,0.1375,-0.0189,-0.9903,0.1391,-0.9903,-0.0069,0.1396,-0.5107,0.8484,0.1407,0.1225,-0.9824,0.1453,0.147,0.9784,0.1463,-0.6409,0.7536,0.1477,-0.8186,-0.555,0.1482,-0.8991,-0.4118,0.1491,-0.854,0.4985,0.1522,0.7876,0.597,0.1546,-0.0089,-0.9879,0.1598,-0.7933,0.5875,0.1601,0.0298,-0.9867,0.1604,-0.9307,0.3288,0.1606,0.7257,-0.669,0.1608,0.3839,0.9092,0.1618,-0.5584,0.8136,0.1643,0.4262,-0.8896,0.1652,0.8899,-0.4253,0.1662,0.085,-0.9824,0.1705,0.6129,-0.7715,0.1713,-0.2888,-0.9419,0.1725,0.9471,0.2706,0.1753,-0.7308,0.6597,0.1789,0.7858,0.592,0.1791,-0.2887,0.9405,0.1792,0.8813,-0.4372,0.1808,0.1593,-0.9705,0.1815,-0.8908,-0.4166,0.1834,0.272,-0.9447,0.1846,0.9692,0.1632,0.186,0.2624,0.9469,0.1864,-0.9806,-0.0611,0.1867,0.6141,0.7668,0.1882,-0.9327,0.3078,0.1906,0.2903,-0.9378,0.1918,-0.9507,0.2436,0.1928,0.844,-0.5004,0.1929,0.8673,-0.4589,0.1935,-0.9189,0.3439,0.1954,-0.196,0.9609,0.1982,0.8649,-0.4612,0.1992,-0.1136,0.9733,0.1994,-0.9548,0.2205,0.2032,-0.9637,-0.1733,0.2042,0.9704,0.1285,0.2058,0.9508,0.2314,0.2082,-0.0621,-0.9761,0.2084,0.4505,-0.8681,0.2108,0.9644,-0.1595,0.2113,0.4168,0.8841,0.2114,-0.7818,0.5865,0.2179,0.3724,-0.9021,0.2188,0.6496,0.7282,0.2193,-0.8513,0.4767,0.2203,-0.9443,-0.2446,0.2218,0.4368,0.8718,0.2233,0.0928,-0.9703,0.2237,0.5763,0.7861,0.2251,0.0322,0.9738,0.2252,-0.0266,-0.974,0.2284,0.8675,-0.4419,0.229,0.8027,-0.5507,0.2299,0.9518,-0.2032,0.2308,0.2608,0.9374,0.2322,-0.7997,0.5537,0.2331,0.8174,-0.5268,0.2331,0.0102,-0.9724,0.2332,-0.8161,-0.5288,0.2393,-0.9684,-0.0708,0.2394,0.91,-0.3385,0.24,0.3954,-0.8866,0.24,0.8856,0.3977,0.2424,-0.8541,0.4601,0.2449,-0.852,0.4626,0.245,0.6835,-0.6876,0.2464,0.0606,-0.9673,0.2478,0.5759,-0.7791,0.249,0.873,-0.4195,0.2497,0.3212,-0.9135,0.251,0.5014,-0.828,0.2547,0.7182,0.6475,0.2558,0.9375,0.2357,0.2575,0.835,-0.4863,0.2585,-0.3585,0.897,0.2591,-0.6265,0.735,0.2617,0.0238,-0.9649,0.2645,0.0041,-0.9644,0.2662,0.446,0.8546,0.2668,0.9223,0.2796,0.2682,0.2758,0.923,0.2692,-0.0537,0.9616,0.2711,0.0892,0.9584,0.2715,-0.0324,0.9619,0.273,0.9592,0.0732,0.2739,0.8132,-0.5135,0.2751,0.6229,-0.7324,0.2787,-0.686,0.6721,0.2794,-0.0613,0.9582,0.2797,0.3097,0.9088,0.2806,-0.7338,0.6187,0.2818,0.7785,-0.5608,0.2821,-0.9195,-0.2736,0.2832,-0.6004,0.7478,0.2839,-0.5288,-0.7998,0.2864,-0.0646,0.9559,0.2866,-0.0146,0.9579,0.2877,-0.2338,0.9287,0.2881,-0.954,-0.0833,0.2916,0.9557,-0.0408,0.2979,0.9226,0.2452,0.2991,0.9102,0.2866,0.2995,-0.3882,0.8715,0.3016,-0.9154,0.2666,0.3035,-0.0965,-0.9479,0.3046,-0.9489,0.0819,0.3057,-0.5091,0.8046,0.3067,0.8985,0.3141,0.3129,0.6601,-0.6829,0.3168,-0.6228,0.7154,0.3183,0.6664,-0.6743,0.3184,0.0297,-0.9475,0.3191,-0.0293,-0.9473,0.3193,0.2196,-0.9219,0.3208,0.4914,-0.8097,0.3244,0.0028,-0.9459,0.3252,0.9452,0.0283,0.3262,-0.7816,0.5317,0.3263,0.5307,-0.7822,0.3273,0.9407,-0.0886,0.329,0.0064,-0.9443,0.3292,0.9257,-0.1864,0.3308,0.8063,-0.4904,0.3333,0.2401,-0.9117,0.3377,-0.7177,-0.609,0.3401,0.5576,-0.7573,0.3429,-0.9161,0.2076,0.3441,-0.2166,0.9136,0.345,-0.0958,-0.9337,0.3455,-0.2921,0.8918,0.3469,0.4269,0.8351,0.347,0.0822,-0.9342,0.3489,-0.8589,0.3749,0.3497,-0.3929,0.8505,0.3513,-0.3193,0.8802,0.3541,-0.5302,-0.7704,0.3552,-0.5781,-0.7346,0.3555,0.6136,-0.7051,0.3559,0.9241,-0.1391,0.3599,0.5605,0.7459,0.3621,0.452,0.8153,0.3622,0.8379,0.4084,0.3654,-0.2045,0.9081,0.3662,0.6787,-0.6366,0.369,0.9051,-0.2112,0.3696,-0.9157,0.1578,0.3702,0.638,-0.6752,0.372,-0.4576,-0.8076,0.3769,-0.9246,0.0559,0.3813,-0.1485,-0.9124,0.3835,0.0179,0.9234,0.3849,0.0233,-0.9227,0.3926,-0.8313,0.3935,0.3929,-0.5114,0.7643,0.3974,-0.8637,0.31,0.3985,-0.7954,0.4566,0.3996,0.0999,0.9112,0.4004,-0.3932,0.8277,0.4015,0.8409,-0.3628,0.4028,0.5803,0.7078,0.4048,-0.2804,0.8704,0.4052,-0.8569,0.3185,0.4052,0.0595,0.9123,0.4106,-0.1906,0.8917,0.4113,0.5417,-0.7331,0.4198,-0.0239,-0.9073,0.4242,0.2848,0.8596,0.4244,0.0702,0.9027,0.4251,0.2331,-0.8747,0.4255,-0.1884,0.8852,0.4273,-0.7882,-0.4429,0.4302,0.8545,-0.2911,0.4318,-0.2342,-0.871,0.4339,0.2152,0.8749,0.4343,0.1654,-0.8855,0.4351,-0.3874,-0.8128,0.4373,0.556,0.7069,0.4381,-0.8068,-0.3964,0.4391,0.7198,-0.5376,0.4409,-0.8129,0.3806,0.4449,-0.7516,-0.4871,0.4473,-0.0655,-0.892,0.4475,-0.1254,-0.8854,0.4481,0.13,-0.8845,0.4505,0.6064,-0.6552,0.4507,-0.269,0.8512,0.4522,0.851,-0.2671,0.4579,0.8265,0.3275,0.4599,0.8218,0.3365,0.4618,-0.5949,0.6579,0.4656,-0.8815,0.0783,0.4685,-0.2789,0.8383,0.4716,0.5589,0.6821,0.4717,-0.8523,-0.226,0.474,-0.1245,0.8717,0.4778,-0.3573,0.8025,0.4812,0.3892,-0.7855,0.4836,-0.1202,0.867,0.4854,-0.1765,-0.8563,0.4892,-0.2623,0.8318,0.4892,-0.2877,0.8233,0.4895,0.0631,0.8697,0.4912,-0.2727,0.8272,0.4914,-0.299,0.818,0.4929,-0.2457,0.8347,0.4939,0.5529,0.6711,0.4944,-0.8672,0.0587,0.4945,0.764,-0.4145,0.4947,0.5679,0.6579,0.497,0.1918,-0.8463,0.4984,-0.6015,-0.6243,0.51,0.0274,0.8597,0.5124,0.6112,-0.6032,0.515,0.7077,-0.4836,0.5158,-0.7196,0.465,0.5169,-0.3444,0.7837,0.5212,-0.2587,0.8133,0.5223,-0.015,-0.8527,0.5271,0.8338,0.1643,0.5273,-0.7313,0.4327,0.5328,-0.8436,-0.0664,0.5328,0.8342,0.1423,0.533,-0.0314,0.8455,0.5339,-0.0387,-0.8447,0.5355,0.5443,-0.6458,0.5363,0.7158,-0.4473,0.5373,0.8221,-0.1884,0.5374,0.403,0.7408,0.5375,-0.0133,0.8432,0.5377,-0.7645,0.3555,0.5391,-0.5349,0.6506,0.5394,-0.2334,0.8091,0.5416,0.4359,-0.7188,0.5424,0.5627,-0.6238};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_56_vector_2()
		{
			double[] value = {0.5439,0.7711,0.3311,0.5446,-0.8191,0.1802,0.5496,-0.2964,0.7811,0.5514,0.0684,-0.8314,0.5519,-0.1119,0.8263,0.5525,0.6894,-0.4684,0.5548,0.3636,-0.7483,0.557,-0.7808,-0.283,0.5578,0.6062,0.5669,0.5621,-0.2546,0.7869,0.5622,0.363,-0.7431,0.5632,-0.5977,0.5706,0.5636,0.7863,0.2529,0.5645,0.7342,0.3772,0.5652,0.3624,0.7411,0.5678,-0.8219,0.0459,0.5707,-0.0683,-0.8183,0.5726,-0.0511,0.8182,0.5747,0.8023,0.1616,0.5752,-0.8163,0.0519,0.576,0.7729,0.2661,0.5797,0.2562,-0.7735,0.5833,0.4406,-0.6824,0.5875,0.768,0.2548,0.5933,-0.1669,-0.7875,0.5945,-0.0916,0.7988,0.5951,-0.7595,-0.2627,0.5983,0.7784,0.1902,0.5987,-0.7807,-0.1794,0.5999,0.164,0.7831,0.6076,-0.4923,0.6232,0.61,0.787,0.0929,0.6111,-0.2535,0.7498,0.6113,0.6143,-0.4989,0.6114,0.5219,0.5948,0.6116,0.2347,-0.7555,0.6148,0.786,-0.0658,0.6148,0.6465,0.4517,0.6195,0.4935,0.6105,0.6211,0.3505,-0.701,0.6249,-0.7477,0.2245,0.6283,-0.1025,0.7712,0.6283,-0.6222,0.467,0.6299,-0.7014,0.3335,0.6307,0.0602,0.7737,0.6314,-0.5925,0.5003,0.6345,0.5345,0.5584,0.6346,0.771,0.0536,0.6377,0.1819,-0.7485,0.6399,0.327,-0.6954,0.6414,-0.0684,-0.7642,0.6422,-0.1907,-0.7424,0.6444,0.1912,-0.7404,0.6464,-0.1815,0.7411,0.6527,-0.1884,-0.7339,0.6528,-0.1629,0.7398,0.6528,-0.2382,0.7191,0.6528,0.4469,-0.6117,0.657,-0.4235,0.6237,0.6629,0.715,0.2221,0.6657,0.7081,-0.2354,0.6673,-0.6407,0.3797,0.6692,0.0517,-0.7413,0.6707,0.7186,-0.1838,0.6711,0.5375,0.5106,0.6741,-0.0636,-0.7359,0.6757,-0.3792,-0.6322,0.6773,0.715,0.1732,0.6787,0.1354,0.7218,0.679,-0.7039,-0.2085,0.6798,-0.1766,0.7118,0.6802,0.0649,-0.7301,0.6803,-0.7096,0.1833,0.6847,-0.7289,0.0033,0.687,-0.6504,0.324,0.6872,-0.5479,0.4771,0.6876,0.7085,0.1587,0.6903,-0.4034,0.6007,0.6905,-0.1907,0.6977,0.6947,-0.6469,-0.3145,0.6951,0.7025,0.1527,0.6977,0.656,0.288,0.6986,0.236,0.6754,0.7045,0.5238,0.4789,0.707,0.7068,-0.0254,0.7073,0.2403,0.6648,0.709,-0.4448,0.5472,0.7094,0.0062,-0.7048,0.7137,0.0195,-0.7002,0.7138,-0.1558,0.6828,0.7148,0.6871,0.13,0.715,-0.1457,0.6838,0.7152,-0.1437,0.684,0.7162,-0.0632,0.695,0.7208,-0.0187,-0.6929,0.7208,-0.1329,0.6803,0.7237,0.5846,0.3667,0.7245,0.0905,-0.6833,0.7294,0.0509,0.6822,0.7332,-0.0021,-0.68,0.7332,-0.1044,0.6719,0.734,-0.489,-0.4713,0.734,0.0797,-0.6744,0.736,-0.6743,0.0596,0.743,-0.1194,0.6586,0.7435,-0.0885,0.6629,0.7449,0.2495,-0.6187,0.745,-0.0837,0.6618,0.7451,-0.1083,-0.6581,0.7463,-0.287,0.6005,0.7492,-0.0542,0.6601,0.7495,0.0015,0.662,0.7499,0.2507,0.6122,0.7505,-0.3751,0.5441,0.7515,-0.1324,0.6463,0.7557,-0.114,-0.6449,0.7562,0.1242,-0.6425,0.7562,-0.0485,0.6526,0.7606,0.4685,0.4494,0.7624,-0.3774,0.5256,0.7633,-0.627,0.1554,0.7678,0.5059,0.393,0.7681,-0.6291,-0.1194,0.7686,0.6397,0.002,0.7733,0.1782,-0.6085,0.7745,0.0492,0.6306,0.7747,-0.0952,0.6251,0.7771,-0.1568,0.6095,0.783,-0.1526,-0.603,0.786,-0.3272,0.5246,0.788,-0.0357,0.6147,0.7918,-0.0579,0.608,0.7951,-0.5902,-0.1397,0.7992,0.3137,0.5126,0.8014,-0.5969,0.0388,0.8016,-0.0535,0.5954,0.8058,-0.1051,-0.5828,0.8106,0.4989,-0.3065,0.8116,-0.5096,-0.2856,0.8182,0.3772,0.4338,0.8189,-0.2938,-0.493,0.8212,0.5578,0.1205,0.8224,-0.0606,-0.5657,0.8248,-0.563,0.0525,0.8253,-0.5595,0.0768,0.8256,-0.4725,-0.3085,0.8256,-0.3763,0.4205,0.8274,-0.5387,-0.159,0.8289,-0.0372,0.5582,0.8295,-0.441,-0.3427,0.8296,0.3987,0.3909,0.8297,-0.4149,0.3733,0.832,-0.0909,0.5472,0.8366,0.4789,0.2658,0.84,-0.0029,-0.5426,0.8403,0.2621,-0.4746,0.8434,-0.2176,0.4913,0.8446,0.379,-0.3781,0.85,-0.4625,0.2523,0.8547,0.2196,-0.4703,0.8557,-0.2458,-0.4552,0.856,-0.511,-0.0786,0.856,0.0979,-0.5076,0.8568,-0.513,0.0521,0.8604,-0.2863,0.4215,0.8643,-0.0214,0.5026,0.8655,-0.3992,0.3026,0.8657,-0.4713,0.1684,0.8675,0.3976,0.299,0.8681,-0.0304,0.4954,0.8682,-0.2101,-0.4495,0.8686,-0.4903,-0.0718,0.8702,-0.2438,0.4282,0.8723,0.457,0.1743,0.8775,0.1214,-0.4639,0.8805,-0.1049,-0.4623,0.8816,0.3674,-0.2962,0.8843,-0.1228,0.4505,0.8858,0.4197,-0.198,0.8879,0.4249,-0.1763,0.888,0.2979,-0.3503,0.8893,0.0678,0.4524,0.8948,-0.4136,-0.1684,0.8985,-0.403,0.1743,0.899,-0.0268,-0.4372,0.9014,-0.1555,0.4041,0.9072,-0.1645,0.3871,0.9098,0.2695,0.3156,0.914,-0.2098,-0.3471,0.9162,-0.1702,0.3629,0.9185,0.2692,-0.2896,0.9227,-0.3323,0.1956,0.9228,0.3814,-0.0543,0.9288,-0.2432,0.2797,0.9326,0.2064,-0.296,0.9349,-0.351,0.0519,0.9419,-0.1273,-0.3107,0.9436,0.192,-0.2699,0.944,0.1474,0.2953,0.945,0.1887,-0.2673,0.9475,-0.1533,0.2806,0.948,0.101,0.3018,0.9483,-0.0137,-0.317,0.9489,-0.0568,-0.3105,0.9512,-0.1922,0.2413,0.9523,0.2187,0.2127,0.9561,0.2844,-0.0711,0.9584,0.2341,0.1633,0.959,0.2411,-0.1487,0.9624,-0.205,0.1782,0.9656,0.0087,-0.26,0.9662,-0.1918,-0.1721,0.9681,-0.2058,0.143,0.9684,-0.2474,-0.0302,0.9724,0.0633,-0.2247,0.9726,0.0382,-0.2295,0.973,0.122,0.1959,0.975,-0.1555,-0.159,0.9758,0.0867,0.2006,0.976,-0.1606,0.1471,0.9768,0.0615,0.2051,0.9771,0.1772,0.1176,0.9785,0.0672,-0.1951,0.9786,0.042,-0.2014,0.9805,0.188,0.0578,0.9821,0.057,-0.1795,0.9822,-0.1753,-0.0676,0.983,0.0517,-0.1763,0.9855,0.0184,0.1685,0.9867,-0.114,0.1161,0.9903,0.0446,-0.1317,0.9918,-0.0878,0.0928,0.9963,-0.0844,-0.0144,0.9965,-0.0702,0.045,0.9991,0.041,-0.011,0.9993,0.0272,0.0253};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc4disc_Geo_5_61_coordIndex_2()
		{
			int[] value = {109,144,118,-1,109,142,144,-1,143,146,148,-1,145,146,143,-1,149,179,147,-1,149,177,179,-1,26,150,27,-1,26,126,150,-1,152,177,151,-1,177,152,173,-1,8,35,9,-1,134,35,8,-1,180,121,124,-1,180,153,121,-1,157,155,154,-1,156,155,157,-1,158,39,159,-1,158,38,39,-1,180,114,42,-1,114,180,32,-1,44,4,45,-1,44,5,4,-1,51,47,97,-1,51,72,47,-1,76,106,66,-1,106,76,107,-1,181,162,182,-1,181,104,162,-1,182,165,181,-1,163,165,182,-1,98,97,100,-1,98,51,97,-1,79,87,86,-1,87,79,88,-1,171,182,170,-1,171,163,182,-1,162,170,182,-1,132,170,162,-1,83,77,75,-1,83,82,77,-1,60,88,79,-1,60,123,88,-1,61,122,135,-1,61,63,122,-1,48,40,49,-1,48,28,40,-1,68,15,14,-1,15,68,131,-1,178,89,71,-1,178,167,89,-1,15,168,127,-1,15,131,168,-1,2,128,73,-1,2,93,128,-1,20,56,74,-1,56,20,13,-1,77,23,22,-1,77,172,23,-1,135,90,136,-1,90,135,91,-1,75,133,83,-1,74,133,75,-1,83,81,84,-1,83,133,81,-1,132,85,170,-1,84,85,132,-1,168,54,80,-1,168,86,54,-1,138,163,171,-1,138,166,163,-1,63,123,122,-1,63,88,123,-1,92,174,130,-1,175,174,92,-1,176,5,44,-1,176,6,5,-1,181,176,102,-1,181,165,176,-1,102,104,181,-1,102,105,104,-1,101,129,105,-1,129,101,107,-1,66,160,67,-1,106,160,66,-1,103,172,161,-1,103,64,172,-1,154,41,157,-1,154,42,41,-1,159,146,158,-1,149,146,159,-1,156,142,155,-1,145,142,156,-1,42,153,180,-1,42,154,153,-1,180,111,32,-1,111,180,124,-1,17,126,125,-1,17,140,126,-1,115,147,179,-1,147,115,116,-1,143,27,150,-1,143,148,27,-1,118,141,139,-1,118,144,141,-1,120,118,139,-1,119,118,120,-1,71,179,178,-1,71,115,179,-1,126,15,127,-1,126,26,15,-1,164,175,92,-1,175,164,166,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc4disc_Geo_5_61_normalIndex_2()
		{
			int[] value = {100,117,110,-1,100,89,117,-1,114,87,108,-1,88,87,114,-1,86,121,77,-1,86,84,121,-1,46,103,78,-1,46,55,103,-1,39,84,58,-1,84,39,85,-1,79,44,45,-1,68,44,79,-1,118,60,123,-1,118,81,60,-1,74,64,73,-1,65,64,74,-1,70,127,99,-1,70,80,127,-1,118,144,115,-1,144,118,69,-1,28,17,13,-1,28,33,17,-1,6,8,5,-1,6,16,8,-1,23,18,19,-1,18,23,22,-1,49,93,91,-1,49,48,93,-1,91,59,49,-1,92,59,91,-1,10,5,7,-1,10,6,5,-1,177,170,171,-1,170,177,175,-1,120,91,131,-1,120,92,91,-1,93,131,91,-1,134,131,93,-1,154,128,152,-1,154,138,128,-1,178,175,177,-1,178,173,175,-1,153,163,143,-1,153,168,163,-1,3,54,0,-1,3,72,54,-1,164,107,76,-1,107,164,172,-1,140,151,148,-1,140,141,151,-1,107,181,109,-1,107,172,181,-1,36,24,57,-1,36,25,24,-1,155,162,157,-1,162,155,167,-1,128,96,112,-1,128,95,96,-1,143,139,126,-1,139,143,146,-1,152,158,154,-1,157,158,152,-1,154,160,145,-1,154,158,160,-1,134,137,131,-1,145,137,134,-1,181,165,182,-1,181,171,165,-1,125,92,120,-1,125,90,92,-1,168,173,163,-1,168,175,173,-1,43,83,35,-1,98,83,43,-1,50,33,28,-1,50,51,33,-1,49,50,40,-1,49,59,50,-1,40,48,49,-1,40,34,48,-1,20,27,34,-1,27,20,22,-1,19,15,1,-1,18,15,19,-1,41,95,94,-1,41,52,95,-1,73,132,74,-1,73,115,132,-1,99,87,70,-1,86,87,99,-1,65,89,64,-1,88,89,65,-1,115,81,118,-1,115,73,81,-1,118,61,69,-1,61,118,123,-1,53,55,119,-1,53,67,55,-1,122,77,121,-1,77,122,47,-1,114,78,103,-1,114,108,78,-1,110,106,97,-1,110,117,106,-1,124,110,97,-1,111,110,124,-1,148,121,140,-1,148,122,121,-1,55,107,109,-1,55,46,107,-1,56,98,43,-1,98,56,90,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc5_Geo_5_67_coordIndex_2()
		{
			int[] value = {587,588,589,-1,590,591,348,-1,396,404,400,-1,592,593,594,-1,595,596,597,-1,598,599,600,-1,601,584,602,-1,603,601,604,-1,602,605,606,-1,607,608,411,-1,609,610,611,-1,407,422,612,-1,423,573,613,-1,614,615,616,-1,415,617,618,-1,619,620,621,-1,622,623,624,-1,416,415,618,-1,625,626,627,-1,628,626,629,-1,630,631,632,-1,633,634,635,-1,623,636,624,-1,637,638,639,-1,640,641,642,-1,639,643,644,-1,645,646,647,-1,458,648,649,-1,650,651,652,-1,464,463,653,-1,654,655,656,-1,0,657,434,-1,658,659,660,-1,661,662,459,-1,644,467,663,-1,664,665,573,-1,652,651,638,-1,467,637,663,-1,650,466,666,-1,667,653,463,-1,668,669,635,-1,444,445,670,-1,671,672,673,-1,674,675,676,-1,673,416,671,-1,677,678,615,-1,424,429,679,-1,680,679,426,-1,420,616,615,-1,598,681,599,-1,409,682,683,-1,684,600,511,-1,518,685,560,-1,588,587,686,-1,390,687,404,-1,688,689,382,-1,690,686,389,-1,691,585,584,-1,592,692,491,-1,693,694,695,-1,582,696,393,-1,697,580,581,-1,577,698,699,-1,367,697,700,-1,520,365,334,-1,701,613,702,-1,555,703,704,-1,705,706,519,-1,377,532,567,-1,508,565,707,-1,558,708,709,-1,557,710,711,-1,554,712,713,-1,549,552,714,-1,714,715,685,-1,716,541,540,-1,542,538,537,-1,540,551,717,-1,718,719,708,-1,720,721,569,-1,493,722,723,-1,724,396,395,-1,725,712,554,-1,712,378,726,-1,532,377,712,-1,727,728,703,-1,725,535,533,-1,476,482,481,-1,729,730,501,-1,731,355,354,-1,471,732,473,-1,733,734,576,-1,521,735,630,-1,516,448,514,-1,410,550,607,-1,488,484,505,-1,736,737,730,-1,736,729,728,-1,728,481,704,-1,499,528,498,-1,661,650,662,-1,738,342,366,-1,739,597,740,-1,506,505,486,-1,741,636,742,-1,506,555,704,-1,498,743,480,-1,744,500,479,-1,745,746,747,-1,745,477,746,-1,477,476,748,-1,737,504,730,-1,749,750,751,-1,752,753,754,-1,755,756,757,-1,755,758,732,-1,759,760,761,-1,759,471,470,-1,666,468,653,-1,762,763,462,-1,467,655,468,-1,464,764,465,-1,632,631,634,-1,765,766,435,-1,441,442,435,-1,767,667,439,-1,647,640,656,-1,642,768,764,-1,769,770,771,-1,772,773,774,-1,775,776,777,-1,439,257,767,-1,260,259,647,-1,768,263,769,-1,432,434,657,-1,430,778,779,-1,425,424,780,-1,781,428,423,-1,782,783,784,-1,416,673,785,-1,412,416,413,-1,413,786,787,-1,515,788,608,-1,414,789,408,-1,614,407,406,-1,404,401,400,-1,405,790,791,-1,792,724,793,-1,794,713,795,-1,598,796,681,-1,586,797,692,-1,689,383,382,-1,693,798,372,-1,376,381,384,-1,799,375,383,-1,376,591,379,-1,570,706,705,-1,704,703,728,-1,367,366,345,-1,536,344,363,-1,800,364,362,-1,590,801,373,-1,352,356,802,-1,352,354,355,-1,337,801,335,-1,340,344,803,-1,350,804,805,-1,191,806,807,-1,808,322,809,-1,308,323,810,-1,811,812,322,-1,325,320,314,-1,813,328,814,-1,315,815,316,-1,816,813,817,-1,314,313,814,-1,818,819,811,-1,150,310,309,-1,306,820,821,-1,822,823,824,-1,181,99,101,-1,825,301,313,-1,304,826,818,-1,105,305,304,-1,827,826,828,-1,103,829,104,-1,71,830,303,-1,831,67,832,-1,833,834,835,-1,292,291,834,-1,144,836,74,-1,64,837,838,-1,288,62,64,-1,69,839,840,-1,841,289,842,-1,843,283,51,-1,52,51,49,-1,286,276,284,-1,844,845,846,-1,265,847,42,-1,848,849,850,-1,851,852,850,-1,853,854,855,-1,264,856,857,-1,263,244,433,-1,238,240,436,-1,248,858,859,-1,248,247,858,-1,1,253,860,-1,225,861,862,-1,261,863,3,-1,22,241,240,-1,864,865,238,-1,866,867,29,-1,868,869,870,-1,871,222,872,-1,23,221,220,-1,873,163,215,-1,164,874,875,-1,876,212,205,-1,877,878,879,-1,203,202,204,-1,196,880,881,-1,183,882,184,-1,177,176,883,-1,74,836,142,-1,884,885,852,-1,232,886,887,-1,888,889,890,-1,882,155,176,-1,127,108,891,-1,57,892,55,-1,175,280,171,-1,191,170,172,-1,893,894,104,-1,895,883,896,-1,896,883,192,-1,873,215,216,-1,897,898,873,-1,328,326,814,-1,813,816,329,-1,317,899,900,-1,901,902,187,-1,178,203,903,-1,185,902,889,-1,904,905,906,-1,121,907,146,-1,150,307,151,-1,133,908,909,-1,135,148,132,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc5_Geo_5_67_coordIndex_3()
		{
			int[] value = {122,910,131,-1,911,912,913,-1,914,891,915,-1,127,916,128,-1,917,173,136,-1,918,916,919,-1,920,914,921,-1,920,922,923,-1,147,924,910,-1,121,123,293,-1,925,60,59,-1,894,926,112,-1,926,894,893,-1,891,110,107,-1,106,927,107,-1,113,928,119,-1,191,870,929,-1,13,93,930,-1,91,90,821,-1,87,931,88,-1,85,84,308,-1,82,932,933,-1,934,829,935,-1,303,830,936,-1,937,938,72,-1,939,940,297,-1,68,145,69,-1,312,811,819,-1,298,297,941,-1,812,321,942,-1,54,925,76,-1,943,934,935,-1,44,58,45,-1,944,945,946,-1,947,282,281,-1,54,53,925,-1,174,917,49,-1,148,144,143,-1,948,949,950,-1,846,951,842,-1,268,952,13,-1,953,845,39,-1,954,887,955,-1,956,957,958,-1,229,959,230,-1,887,954,37,-1,960,961,962,-1,254,962,963,-1,963,237,255,-1,964,236,235,-1,965,966,25,-1,10,967,15,-1,968,969,9,-1,861,225,243,-1,9,969,967,-1,970,261,971,-1,972,973,8,-1,7,6,3,-1,24,23,226,-1,223,862,968,-1,862,861,968,-1,226,219,24,-1,7,3,5,-1,8,974,972,-1,19,5,4,-1,9,967,10,-1,975,960,962,-1,976,861,243,-1,968,9,223,-1,18,10,15,-1,230,959,977,-1,235,25,964,-1,167,234,978,-1,963,28,237,-1,254,963,255,-1,37,31,887,-1,869,979,980,-1,229,981,959,-1,956,982,957,-1,39,38,953,-1,952,93,13,-1,842,983,846,-1,858,984,985,-1,986,987,988,-1,266,267,989,-1,148,135,144,-1,48,174,49,-1,990,947,281,-1,946,991,944,-1,945,947,940,-1,44,992,58,-1,937,943,935,-1,76,75,54,-1,298,941,75,-1,819,825,312,-1,66,993,832,-1,940,941,297,-1,936,828,303,-1,932,994,933,-1,821,166,91,-1,896,192,807,-1,13,930,995,-1,929,806,191,-1,97,96,996,-1,113,115,928,-1,104,894,111,-1,107,915,891,-1,893,927,926,-1,111,894,112,-1,120,119,928,-1,997,927,893,-1,925,53,60,-1,193,156,155,-1,293,998,121,-1,910,122,147,-1,920,124,922,-1,920,999,914,-1,918,128,916,-1,173,909,136,-1,921,124,920,-1,915,921,914,-1,153,911,913,-1,131,130,122,-1,135,132,908,-1,919,133,909,-1,907,1000,146,-1,904,906,304,-1,1001,61,125,-1,921,915,997,-1,902,890,889,-1,901,1002,1003,-1,900,318,317,-1,873,216,897,-1,896,1004,895,-1,104,1001,893,-1,191,172,870,-1,1005,1006,167,-1,55,281,57,-1,127,891,914,-1,175,174,280,-1,170,1007,175,-1,888,180,889,-1,194,187,186,-1,852,1008,884,-1,63,74,142,-1,1009,77,1010,-1,162,178,177,-1,883,895,177,-1,882,159,184,-1,881,194,196,-1,203,204,157,-1,876,205,1011,-1,874,1012,875,-1,873,1013,163,-1,220,226,23,-1,222,1014,872,-1,1015,6,973,-1,1016,1017,1018,-1,172,868,870,-1,980,34,1005,-1,866,29,28,-1,864,238,30,-1,22,240,239,-1,3,971,261,-1,1,860,1019,-1,1020,238,436,-1,433,1,0,-1,264,1019,856,-1,853,1021,854,-1,851,1008,852,-1,269,41,43,-1,267,844,848,-1,268,984,41,-1,844,846,1022,-1,33,270,958,-1,954,275,37,-1,276,275,284,-1,52,49,917,-1,841,842,951,-1,840,70,69,-1,288,64,289,-1,290,64,838,-1,144,74,145,-1,835,1023,833,-1,294,287,843,-1,303,300,71,-1,103,935,829,-1,936,827,828,-1,304,906,105,-1,818,904,304,-1,301,1024,313,-1,822,824,1025,-1,821,90,306,-1,309,308,150,-1,811,311,818,-1,816,817,1026,-1,315,1027,1028,-1,315,317,318,-1,315,319,1029,-1,813,329,328,-1,811,322,309,-1,308,810,85,-1,808,323,322,-1,807,192,191,-1,350,805,1030,-1,350,349,804,-1,340,364,344,-1,337,1031,801,-1,352,358,353,-1,352,1032,357,-1,801,1031,373,-1,364,348,362,-1,536,580,344,-1,345,697,367,-1,705,1033,570,-1,376,361,591,-1,799,378,375,-1,376,384,383,-1,383,375,376,-1,372,374,693,-1,689,799,383,-1,797,1034,692,-1,794,793,713,-1,793,794,792,-1,791,399,405,-1,404,403,401,-1,787,614,406,-1,408,1035,414,-1,1036,411,1037,-1,606,512,600,-1,512,511,600,-1,608,607,515,-1,787,414,413,-1,416,785,413,-1,782,784,1038,-1,419,1039,1038,-1,428,424,423,-1,1040,426,615,-1,424,679,780,-1,430,1041,778,-1,769,433,434,-1,647,658,260,-1,257,258,767,-1,769,434,770,-1,777,1042,775,-1,774,1043,772,-1,771,1044,769,-1,642,641,768,-1,667,440,439,-1,435,437,441,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc5_Geo_5_67_coordIndex_4()
		{
			int[] value = {435,444,765,-1,633,632,634,-1,1045,1046,1047,-1,464,642,764,-1,467,644,655,-1,762,465,763,-1,468,1048,653,-1,759,732,471,-1,759,761,752,-1,755,732,754,-1,755,1049,756,-1,752,1050,753,-1,1051,749,751,-1,477,748,744,-1,1052,475,745,-1,744,479,1053,-1,506,704,483,-1,742,1054,741,-1,1055,695,694,-1,661,651,650,-1,499,498,497,-1,728,729,481,-1,736,730,729,-1,488,505,529,-1,1056,516,556,-1,1057,1058,619,-1,550,513,607,-1,516,514,513,-1,521,630,1059,-1,1060,733,576,-1,766,765,1061,-1,354,1030,731,-1,1062,487,1052,-1,748,476,481,-1,1056,556,506,-1,725,1063,535,-1,535,1064,533,-1,377,378,712,-1,724,541,793,-1,541,716,793,-1,725,533,712,-1,394,493,723,-1,569,709,720,-1,531,1065,1066,-1,708,711,718,-1,540,717,543,-1,542,1067,538,-1,540,543,716,-1,714,685,1068,-1,710,1069,1070,-1,507,1071,1072,-1,1072,1073,507,-1,714,1068,549,-1,554,713,545,-1,727,703,570,-1,709,571,558,-1,509,508,707,-1,567,566,377,-1,519,739,705,-1,1074,728,727,-1,613,575,702,-1,365,734,334,-1,700,576,367,-1,699,578,577,-1,697,345,580,-1,582,393,392,-1,695,798,693,-1,491,593,592,-1,1075,492,400,-1,382,1055,688,-1,1076,390,404,-1,686,690,588,-1,400,399,1075,-1,685,561,560,-1,684,1077,600,-1,1078,1079,594,-1,409,1036,682,-1,420,615,426,-1,680,426,1080,-1,495,1081,496,-1,664,573,423,-1,1082,1057,1083,-1,672,417,673,-1,670,765,444,-1,635,1084,668,-1,440,667,463,-1,1085,650,666,-1,638,637,652,-1,665,1086,573,-1,431,434,432,-1,459,458,661,-1,638,651,649,-1,659,1087,660,-1,649,651,661,-1,655,1088,656,-1,464,653,1048,-1,652,466,650,-1,661,458,649,-1,1085,660,1087,-1,644,663,639,-1,1089,626,625,-1,656,640,642,-1,639,663,637,-1,1090,635,1091,-1,634,1084,635,-1,629,1061,628,-1,416,618,671,-1,450,1092,452,-1,622,1093,623,-1,620,418,621,-1,614,677,615,-1,613,781,423,-1,790,407,612,-1,1094,1095,425,-1,1096,1097,1098,-1,1040,1080,426,-1,411,410,607,-1,594,559,1078,-1,605,512,606,-1,604,1099,603,-1,1077,598,600,-1,597,1100,595,-1,593,559,594,-1,347,1101,335,-1,492,396,400,-1,801,590,348,-1,1076,404,396,-1,584,586,1102,-1,596,689,688,-1,380,1103,384,-1,1100,597,1104,-1,1067,542,395,-1,582,392,583,-1,365,576,734,-1,520,334,333,-1,613,573,575,-1,572,332,1105,-1,1060,698,1106,-1,571,709,569,-1,519,706,564,-1,567,565,546,-1,517,563,568,-1,564,706,562,-1,703,571,570,-1,1107,517,568,-1,561,1078,559,-1,558,555,556,-1,554,545,544,-1,548,1108,552,-1,507,1073,548,-1,550,551,1109,-1,1071,1070,1072,-1,507,547,546,-1,716,543,545,-1,542,537,540,-1,539,1109,537,-1,532,712,533,-1,1066,530,531,-1,517,1107,1068,-1,547,1107,546,-1,503,528,499,-1,527,1110,1111,-1,351,350,1112,-1,349,1113,1114,-1,469,1115,526,-1,521,572,522,-1,1116,520,485,-1,519,564,517,-1,516,332,449,-1,1059,630,1117,-1,1079,510,512,-1,509,1071,507,-1,513,515,607,-1,516,513,1118,-1,504,737,502,-1,499,497,500,-1,1047,618,1119,-1,494,1120,495,-1,492,1075,493,-1,505,484,486,-1,483,704,481,-1,478,1121,479,-1,477,745,475,-1,1122,1123,1124,-1,473,1125,474,-1,471,1126,469,-1,466,468,666,-1,463,465,762,-1,462,763,460,-1,451,1127,452,-1,1128,448,450,-1,1092,1059,674,-1,447,670,445,-1,442,444,435,-1,439,441,437,-1,642,654,656,-1,438,770,434,-1,435,1020,436,-1,263,433,769,-1,432,1041,430,-1,779,665,1129,-1,779,778,665,-1,427,1130,1131,-1,780,679,680,-1,422,616,420,-1,414,1035,412,-1,411,1036,409,-1,386,1036,1037,-1,408,789,401,-1,405,407,790,-1,687,402,404,-1,401,405,399,-1,399,791,397,-1,394,396,492,-1,723,391,393,-1,794,1132,792,-1,1132,388,390,-1,691,588,690,-1,382,384,1103,-1,379,381,376,-1,377,531,375,-1,375,530,361,-1,372,590,373,-1,359,1133,371,-1,736,728,1074,-1,368,1134,369,-1,365,738,366,-1,363,364,800,-1,361,348,591,-1,1031,1113,373,-1,351,1112,359,-1,352,802,1032,-1,351,1113,349,-1,1135,1031,337,-1,348,364,340,-1,346,803,344,-1,341,366,342,-1,340,803,338,-1,335,1101,336,-1,1105,332,334,-1,331,327,329,-1,324,326,1136,-1,308,309,322,-1,312,314,320,-1,315,1029,1027,-1,315,1028,815,-1,312,825,313,-1,311,811,309,-1,307,150,308,-1,90,86,85,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc5_Geo_5_67_coordIndex_5()
		{
			int[] value = {102,119,1137,-1,299,300,304,-1,80,1024,301,-1,72,71,300,-1,298,1138,296,-1,294,65,287,-1,149,293,123,-1,291,149,143,-1,289,290,842,-1,839,69,288,-1,287,70,840,-1,284,47,285,-1,282,58,57,-1,280,174,48,-1,277,276,286,-1,271,1139,273,-1,269,952,268,-1,41,984,265,-1,244,1,433,-1,260,863,261,-1,241,1140,258,-1,1141,254,256,-1,250,252,1142,-1,247,249,1143,-1,244,246,253,-1,243,224,262,-1,261,861,976,-1,242,1140,241,-1,239,238,865,-1,237,238,1144,-1,236,978,234,-1,228,230,1016,-1,227,26,1145,-1,226,220,224,-1,11,1146,223,-1,220,222,871,-1,1146,20,219,-1,216,218,897,-1,165,214,215,-1,214,205,212,-1,208,206,165,-1,210,1147,208,-1,207,1011,205,-1,180,179,889,-1,158,157,204,-1,199,201,1148,-1,198,1149,196,-1,155,882,183,-1,170,192,154,-1,977,188,190,-1,155,883,176,-1,103,1150,935,-1,820,306,1151,-1,902,185,187,-1,184,182,101,-1,182,179,181,-1,178,903,176,-1,154,156,170,-1,1152,982,1153,-1,173,917,174,-1,170,175,171,-1,169,1005,167,-1,97,91,166,-1,1144,255,237,-1,182,1154,179,-1,158,184,159,-1,911,153,151,-1,100,120,101,-1,152,1155,150,-1,121,998,305,-1,148,143,149,-1,146,153,147,-1,142,836,140,-1,113,139,115,-1,906,905,1156,-1,132,131,137,-1,135,908,133,-1,148,130,132,-1,61,1157,126,-1,129,108,127,-1,129,118,108,-1,124,126,922,-1,121,147,122,-1,1158,117,118,-1,109,108,118,-1,114,928,115,-1,113,119,111,-1,110,891,108,-1,907,105,107,-1,102,104,111,-1,193,183,120,-1,98,1159,96,-1,95,930,93,-1,86,90,92,-1,996,87,89,-1,86,932,84,-1,82,933,83,-1,80,302,78,-1,298,75,77,-1,831,940,939,-1,67,1023,65,-1,72,938,73,-1,70,835,68,-1,66,832,67,-1,61,1001,59,-1,992,56,58,-1,52,1160,50,-1,49,283,47,-1,884,1008,1161,-1,12,268,13,-1,1162,1163,1152,-1,33,1164,31,-1,28,30,237,-1,25,27,964,-1,242,22,24,-1,1165,19,21,-1,18,15,17,-1,14,855,12,-1,1019,264,1,-1,973,6,8,-1,15,974,16,-1,3,863,4,-1,974,8,16,-1,3,1015,971,-1,6,1015,3,-1,863,1166,4,-1,863,260,1166,-1,1167,857,853,-1,857,1167,960,-1,226,862,219,-1,226,225,862,-1,221,865,222,-1,239,865,221,-1,236,1168,1169,-1,236,964,1168,-1,254,975,962,-1,1170,975,254,-1,1171,1172,1173,-1,1172,1171,1174,-1,1175,1176,1177,-1,1175,886,1176,-1,35,190,36,-1,35,1178,190,-1,957,1152,1163,-1,957,982,1152,-1,1179,272,1180,-1,272,1179,1153,-1,951,845,953,-1,951,846,845,-1,989,1143,250,-1,989,847,1143,-1,952,94,93,-1,952,1181,94,-1,838,1182,1183,-1,838,1184,1182,-1,847,267,42,-1,847,989,267,-1,54,281,55,-1,54,990,281,-1,60,1157,61,-1,1157,60,892,-1,943,77,76,-1,1010,77,943,-1,819,301,825,-1,301,819,827,-1,77,1138,298,-1,77,1009,1138,-1,948,1185,931,-1,950,1185,948,-1,821,807,166,-1,821,896,807,-1,166,806,98,-1,806,166,807,-1,1159,995,930,-1,995,1159,1186,-1,14,995,1173,-1,14,13,995,-1,927,915,107,-1,997,915,927,-1,1158,129,156,-1,1158,118,129,-1,916,914,999,-1,127,914,916,-1,52,923,922,-1,137,923,52,-1,112,1156,905,-1,112,926,1156,-1,133,911,134,-1,911,133,912,-1,152,1187,1155,-1,1188,1187,152,-1,919,912,133,-1,916,912,919,-1,1000,110,109,-1,907,110,1000,-1,110,907,107,-1,105,121,305,-1,105,907,121,-1,128,1007,129,-1,918,1007,128,-1,1189,162,177,-1,160,162,1189,-1,203,162,161,-1,203,178,162,-1,902,1003,890,-1,902,901,1003,-1,1190,879,878,-1,1190,1191,879,-1,815,99,181,-1,99,815,1028,-1,319,900,330,-1,900,319,318,-1,1192,1193,1194,-1,1192,1195,1193,-1,324,218,1196,-1,324,1197,218,-1,1198,1199,808,-1,1199,1198,1200,-1,1201,1202,1203,-1,1202,1201,1204,-1,320,324,1196,-1,320,325,324,-1,89,933,994,-1,89,1205,933,-1,1174,866,1206,-1,1207,866,1174,-1,1208,965,959,-1,965,1208,966,-1,82,151,307,-1,151,82,81,-1,934,59,829,-1,59,934,925,-1,235,189,188,-1,235,234,189,-1,877,195,878,-1,877,1002,195,-1,18,21,11,-1,17,21,18,-1,45,991,46,-1,45,944,991,-1,141,1205,1209,-1,1205,141,140,-1,822,177,895,-1,177,822,1189,-1,1210,880,1211,-1,1212,880,1210,-1,1213,202,201,-1,204,202,1213,-1,1214,1215,1216,-1,1214,1003,1215,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc5_Geo_5_67_coordIndex_6()
		{
			int[] value = {1147,1204,1201,-1,210,1204,1147,-1,212,1200,1198,-1,1200,212,876,-1,211,164,875,-1,165,164,211,-1,1217,1012,1218,-1,1012,1217,875,-1,1012,1219,1193,-1,874,1219,1012,-1,1220,872,1014,-1,872,1220,1221,-1,1222,1208,1223,-1,1224,1208,1222,-1,872,245,871,-1,245,872,246,-1,1225,1226,1224,-1,1227,1226,1225,-1,228,1228,1229,-1,1228,228,1230,-1,1231,1230,1018,-1,1231,1232,1230,-1,979,1018,35,-1,979,1231,1018,-1,870,980,1005,-1,980,870,869,-1,1207,867,866,-1,1207,978,867,-1,19,7,5,-1,19,1165,7,-1,1233,860,1234,-1,860,1233,1235,-1,1227,249,248,-1,1227,1225,249,-1,854,1236,859,-1,854,1021,1236,-1,238,1237,1144,-1,1237,238,1020,-1,12,854,985,-1,855,854,12,-1,988,850,849,-1,988,851,850,-1,849,844,1022,-1,848,844,849,-1,1182,987,1183,-1,987,1182,1238,-1,957,1239,1164,-1,1240,1239,957,-1,233,887,31,-1,233,232,887,-1,275,279,284,-1,954,279,275,-1,955,279,954,-1,47,840,839,-1,283,840,47,-1,837,1184,838,-1,837,1241,1184,-1,88,1185,1209,-1,88,931,1185,-1,835,291,68,-1,835,834,291,-1,833,292,834,-1,296,292,833,-1,947,941,940,-1,947,990,941,-1,1242,79,1150,-1,1242,1243,79,-1,827,818,826,-1,818,827,819,-1,1244,1245,1216,-1,1245,1244,1246,-1,1247,1025,824,-1,1025,1247,1248,-1,1249,823,1151,-1,1249,824,823,-1,816,1137,99,-1,1026,1137,816,-1,1250,1246,1251,-1,1252,1246,1250,-1,326,314,814,-1,325,314,326,-1,1151,1253,1249,-1,1151,1254,1253,-1,1202,1253,1203,-1,1202,1255,1253,-1,323,1199,810,-1,1199,323,808,-1,25,1226,26,-1,1226,25,966,-1,1256,1257,1258,-1,1256,1259,1257,-1,349,1260,804,-1,1114,1260,349,-1,343,1261,1262,-1,1263,1261,343,-1,1264,1265,1263,-1,1264,1266,1265,-1,1258,1267,1256,-1,1258,1250,1267,-1,536,581,580,-1,582,581,536,-1,1268,1269,1270,-1,1269,1268,1271,-1,1272,1273,1274,-1,1273,1272,1275,-1,555,571,703,-1,558,571,555,-1,693,371,694,-1,371,693,374,-1,489,689,490,-1,489,799,689,-1,1102,594,605,-1,592,594,1102,-1,794,1034,797,-1,795,1034,794,-1,398,1075,399,-1,398,493,1075,-1,699,1276,578,-1,699,391,1276,-1,1037,387,386,-1,387,1037,402,-1,608,1035,408,-1,608,788,1035,-1,1077,683,682,-1,684,683,1077,-1,787,677,614,-1,677,787,786,-1,1038,785,419,-1,1038,784,785,-1,1277,428,781,-1,1277,1120,428,-1,1278,1279,612,-1,1278,1096,1279,-1,496,1130,494,-1,496,1280,1130,-1,768,1281,263,-1,641,1281,768,-1,767,1166,660,-1,767,258,1166,-1,437,257,439,-1,257,437,436,-1,1282,430,779,-1,1283,430,1282,-1,774,775,1042,-1,774,773,775,-1,1284,1042,1285,-1,1284,774,1042,-1,1286,1282,1287,-1,1286,1283,1282,-1,1044,768,769,-1,764,768,1044,-1,646,658,647,-1,658,646,659,-1,443,445,444,-1,443,1288,445,-1,735,631,630,-1,735,1289,631,-1,515,1290,1291,-1,515,514,1290,-1,1292,1293,1294,-1,451,1293,1292,-1,1295,1093,1296,-1,1295,1297,1093,-1,1298,1285,1299,-1,1298,1284,1285,-1,1300,1287,668,-1,1300,1286,1287,-1,764,763,465,-1,764,1044,763,-1,1298,1091,1301,-1,1091,1298,1302,-1,1303,1304,474,-1,1304,1303,1305,-1,760,1306,1307,-1,760,1308,1306,-1,1309,1125,758,-1,1125,1309,1310,-1,754,759,752,-1,754,732,759,-1,757,1311,1312,-1,756,1311,757,-1,761,1050,752,-1,761,1313,1050,-1,1314,753,1315,-1,1314,1049,753,-1,749,1275,750,-1,1275,749,1316,-1,501,744,748,-1,744,501,500,-1,1317,1318,1319,-1,1317,1320,1318,-1,744,746,477,-1,1053,746,744,-1,1321,479,1121,-1,1053,479,1321,-1,482,505,483,-1,505,482,529,-1,1322,1269,1323,-1,1270,1269,1322,-1,639,649,648,-1,639,638,649,-1,1124,1324,478,-1,1124,1190,1324,-1,1057,1325,1058,-1,1057,1082,1325,-1,1326,1325,1082,-1,1326,1327,1325,-1,1328,735,1329,-1,1289,735,1328,-1,1330,1331,1332,-1,1331,1330,1333,-1,1334,1335,1336,-1,1334,1337,1335,-1,1306,336,1101,-1,336,1306,1338,-1,1339,1340,805,-1,1340,1339,1304,-1,473,1126,471,-1,1126,473,472,-1,1030,353,350,-1,1030,354,353,-1,1032,1341,736,-1,1341,1032,802,-1,1316,1111,1110,-1,1316,1122,1111,-1,529,476,475,-1,476,529,482,-1,1320,1342,1318,-1,1320,1343,1342,-1,1343,1323,1342,-1,1343,1322,1323,-1,362,1344,800,-1,362,1345,1344,-1,549,1107,547,-1,549,1068,1107,-1,518,1068,685,-1,1068,518,517,-1,719,1344,720,-1,719,1346,1344,-1,1063,696,535,-1,1067,696,1063,-1,720,708,719,-1,720,709,708,-1,377,1065,531,-1,377,566,1065,-1,1347,1072,1348,-1,1347,1073,1072,-1,1109,540,537,-1,1109,551,540,-1,725,1348,1063,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc5_Geo_5_67_coordIndex_7()
		{
			int[] value = {725,1347,1348,-1,683,552,409,-1,683,714,552,-1,1349,1072,1070,-1,1349,539,1072,-1,557,708,558,-1,557,711,708,-1,727,1033,1074,-1,1033,727,570,-1,1350,579,609,-1,579,1350,577,-1,523,1351,1329,-1,574,1351,523,-1,365,1116,738,-1,520,1116,365,-1,393,1067,395,-1,696,1067,393,-1,795,489,1034,-1,726,489,795,-1,798,379,372,-1,380,379,798,-1,596,490,689,-1,596,595,490,-1,389,687,390,-1,389,686,687,-1,347,801,348,-1,335,801,347,-1,796,1036,386,-1,1036,796,682,-1,542,724,395,-1,542,541,724,-1,1352,496,1081,-1,1352,1280,496,-1,1279,397,791,-1,397,1279,1353,-1,1350,1277,701,-1,1350,1354,1277,-1,775,1040,776,-1,1080,1040,775,-1,1117,632,1054,-1,1117,630,632,-1,418,672,621,-1,418,417,672,-1,1355,636,623,-1,1355,742,636,-1,1127,1290,1128,-1,1290,1127,1356,-1,629,1357,1141,-1,1358,1357,629,-1,462,443,442,-1,443,462,461,-1,1085,653,667,-1,1085,666,653,-1,432,625,1041,-1,432,1089,625,-1,1086,778,1359,-1,665,778,1086,-1,457,645,1360,-1,457,646,645,-1,425,664,423,-1,425,1095,664,-1,457,659,646,-1,457,459,659,-1,1166,658,660,-1,260,658,1166,-1,1041,1359,778,-1,1041,625,1359,-1,654,464,1048,-1,464,654,642,-1,442,762,462,-1,442,441,762,-1,1361,634,1362,-1,634,1361,1084,-1,1089,629,626,-1,1089,1358,629,-1,1363,1329,1351,-1,1363,1328,1329,-1,1356,1291,1290,-1,1291,1356,1119,-1,742,676,675,-1,1355,676,742,-1,1057,621,1083,-1,621,1057,619,-1,1039,1325,1364,-1,1039,1058,1325,-1,616,407,614,-1,407,616,422,-1,773,1080,775,-1,680,1080,773,-1,701,781,613,-1,1277,781,701,-1,1365,397,1353,-1,1366,397,1365,-1,796,385,681,-1,386,385,796,-1,604,602,606,-1,601,602,604,-1,604,600,599,-1,604,606,600,-1,559,595,1100,-1,593,595,559,-1,589,691,584,-1,589,588,691,-1,1103,798,695,-1,1103,380,798,-1,596,740,597,-1,596,688,740,-1,581,700,697,-1,581,583,700,-1,1105,734,733,-1,1105,334,734,-1,574,522,575,-1,574,523,522,-1,574,1086,1351,-1,573,1086,574,-1,700,1060,576,-1,700,698,1060,-1,569,706,570,-1,706,569,562,-1,1069,516,1118,-1,1069,556,516,-1,553,1108,548,-1,553,544,1108,-1,550,539,1349,-1,550,1109,539,-1,717,410,409,-1,717,551,410,-1,1070,509,710,-1,1070,1071,509,-1,359,705,1133,-1,359,1033,705,-1,1347,554,553,-1,725,554,1347,-1,553,1073,1347,-1,553,548,1073,-1,565,534,707,-1,565,532,534,-1,565,567,532,-1,363,1344,1346,-1,363,800,1344,-1,510,1078,561,-1,1078,510,1079,-1,1367,1323,1368,-1,1367,1342,1323,-1,1369,1342,1367,-1,1369,1318,1342,-1,501,504,499,-1,501,730,504,-1,749,1122,1316,-1,749,1123,1122,-1,503,1273,1110,-1,1273,503,502,-1,1341,356,1274,-1,1341,802,356,-1,1304,1259,1340,-1,1259,1304,1305,-1,1338,1370,336,-1,1370,1338,526,-1,1336,1371,338,-1,1336,1335,1371,-1,1331,1314,1261,-1,1331,1333,1314,-1,1370,337,336,-1,337,1370,1135,-1,392,699,583,-1,391,699,392,-1,447,1328,1372,-1,447,1289,1328,-1,1090,1302,624,-1,1090,1091,1302,-1,535,582,536,-1,535,696,582,-1,560,1100,1104,-1,560,559,1100,-1,1054,633,741,-1,633,1054,632,-1,743,1122,1124,-1,1111,1122,743,-1,1096,1353,1279,-1,1096,1098,1353,-1,1368,1269,369,-1,1368,1323,1269,-1,1121,1210,1321,-1,1121,1212,1210,-1,1319,1369,747,-1,1319,1318,1369,-1,1333,1049,1314,-1,1333,756,1049,-1,1335,761,1371,-1,1335,1313,761,-1,473,758,1125,-1,473,732,758,-1,474,1310,1303,-1,474,1125,1310,-1,1308,1338,1306,-1,1308,524,1338,-1,1373,1305,1303,-1,1305,1373,1374,-1,1084,1300,668,-1,1361,1300,1084,-1,1364,1327,1375,-1,1327,1364,1325,-1,1300,1376,1286,-1,1377,1376,1300,-1,1301,1284,1298,-1,1301,1378,1284,-1,1294,1297,1295,-1,1294,1293,1297,-1,1093,455,623,-1,1093,1297,455,-1,1047,1294,1045,-1,1047,1292,1294,-1,451,1356,1127,-1,1292,1356,451,-1,514,1128,1290,-1,514,448,1128,-1,449,521,1059,-1,572,521,449,-1,446,1288,1362,-1,446,445,1288,-1,1379,1287,1282,-1,1287,1379,1380,-1,777,1285,1042,-1,1285,777,1381,-1,438,430,1283,-1,438,431,430,-1,1129,1094,1379,-1,1129,1095,1094,-1,1237,435,766,-1,1237,1020,435,-1,429,1130,427,-1,429,494,1130,-1,429,426,679,-1,429,427,426,-1,1097,1352,1098,-1,1097,1280,1352,-1,1278,422,421,-1,422,1278,612,-1,1354,1120,1277,-1,1354,495,1120,-1,418,1039,419,-1,418,620,1039,-1,673,419,785,-1,419,673,417,-1,788,412,1035,-1,788,415,412,-1,788,617,415,-1,598,682,796,-1,598,1077,682,-1,402,408,403,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc5_Geo_5_67_coordIndex_8()
		{
			int[] value = {402,1037,408,-1,686,402,687,-1,686,387,402,-1,701,577,1350,-1,701,702,577,-1,493,1382,722,-1,1382,493,398,-1,724,1076,396,-1,1076,724,792,-1,388,690,389,-1,388,691,690,-1,585,691,388,-1,1102,602,584,-1,605,602,1102,-1,694,1133,740,-1,1133,694,371,-1,530,721,1345,-1,721,530,1066,-1,1272,750,1275,-1,1272,1383,750,-1,369,1271,370,-1,369,1269,1271,-1,368,1264,342,-1,370,1264,368,-1,1033,1112,1074,-1,1033,359,1112,-1,1383,1250,1251,-1,1383,1267,1250,-1,1031,1114,1113,-1,1031,1135,1114,-1,1263,342,1264,-1,343,342,1263,-1,1263,1331,1261,-1,1265,1331,1263,-1,1336,803,346,-1,1336,338,803,-1,1114,1370,1260,-1,1135,1370,1114,-1,1259,1384,1340,-1,1384,1259,1256,-1,1345,361,530,-1,361,1345,362,-1,330,1194,331,-1,330,1385,1194,-1,321,1196,942,-1,321,320,1196,-1,1203,1254,1386,-1,1203,1253,1254,-1,1255,1249,1253,-1,1249,1255,1387,-1,1385,900,1388,-1,1385,330,900,-1,1246,1388,1245,-1,1388,1246,1252,-1,1387,824,1249,-1,1387,1247,824,-1,751,1246,1244,-1,751,1251,1246,-1,1242,817,1243,-1,817,1242,1026,-1,1243,80,79,-1,1243,1024,80,-1,296,939,297,-1,296,833,939,-1,66,46,991,-1,294,46,66,-1,63,837,64,-1,142,837,63,-1,1209,89,88,-1,89,1209,1205,-1,839,285,47,-1,839,288,285,-1,277,285,841,-1,286,285,277,-1,279,1175,280,-1,955,1175,279,-1,1139,276,278,-1,1389,276,1139,-1,1164,233,31,-1,1164,1239,233,-1,271,1180,272,-1,271,274,1180,-1,1163,1240,957,-1,1163,1390,1240,-1,1161,1182,949,-1,1238,1182,1161,-1,849,986,988,-1,1022,986,849,-1,1022,1391,986,-1,43,885,269,-1,43,852,885,-1,259,976,1392,-1,259,261,976,-1,256,1144,1237,-1,256,255,1144,-1,252,40,1142,-1,252,273,40,-1,273,1393,274,-1,252,1393,273,-1,248,1145,1227,-1,859,1145,248,-1,246,860,253,-1,246,1234,860,-1,29,864,30,-1,1394,864,29,-1,978,168,167,-1,168,978,1207,-1,1177,280,1175,-1,280,1177,171,-1,231,886,232,-1,886,231,1176,-1,1017,230,1178,-1,1016,230,1017,-1,1230,1016,1018,-1,1230,228,1016,-1,274,1395,1180,-1,1393,1395,274,-1,1145,1226,1227,-1,1145,26,1226,-1,872,1234,246,-1,872,1221,1234,-1,223,219,862,-1,223,1146,219,-1,1395,1223,1396,-1,1222,1223,1395,-1,1221,1168,1397,-1,1221,1220,1168,-1,1193,1218,1012,-1,1193,1195,1218,-1,217,213,1398,-1,213,217,216,-1,875,1399,211,-1,875,1217,1399,-1,214,206,205,-1,165,206,214,-1,1311,209,1312,-1,1311,210,209,-1,876,1400,1200,-1,1400,876,1011,-1,1330,210,1311,-1,1330,1204,210,-1,1148,202,161,-1,1148,201,202,-1,201,1401,1213,-1,201,200,1401,-1,1402,1211,1401,-1,1402,1210,1211,-1,881,195,194,-1,195,881,878,-1,1239,1229,1228,-1,1239,1390,1229,-1,1239,1240,1390,-1,1189,1025,1403,-1,822,1025,1189,-1,1150,73,938,-1,79,73,1150,-1,969,972,967,-1,969,1404,972,-1,1002,187,195,-1,1002,901,187,-1,197,185,1154,-1,186,185,197,-1,1179,1152,1153,-1,1162,1152,1179,-1,1179,1405,1162,-1,1405,1179,1396,-1,168,1174,1171,-1,168,1207,1174,-1,1406,1203,1386,-1,1203,1406,1201,-1,1198,809,1398,-1,808,809,1198,-1,1407,324,1136,-1,324,1407,1197,-1,1374,1192,1257,-1,1192,1374,1195,-1,1408,815,181,-1,1408,316,815,-1,1002,1215,1003,-1,1215,1002,877,-1,157,903,203,-1,157,159,903,-1,1409,1320,199,-1,1320,1409,1343,-1,1410,1343,1409,-1,1343,1410,1322,-1,1411,311,310,-1,1412,311,1411,-1,997,124,921,-1,997,125,124,-1,125,893,1001,-1,125,997,893,-1,1411,1187,139,-1,1187,1411,1155,-1,81,911,151,-1,81,134,911,-1,116,139,1187,-1,139,116,115,-1,1156,105,906,-1,106,105,1156,-1,916,913,912,-1,999,913,916,-1,132,909,908,-1,909,132,136,-1,103,1242,1150,-1,1242,103,102,-1,927,1156,926,-1,927,106,1156,-1,156,114,1158,-1,114,156,193,-1,116,1158,114,-1,1158,116,117,-1,1137,100,99,-1,1137,119,100,-1,931,1413,948,-1,931,87,1413,-1,1173,1186,1171,-1,1173,995,1186,-1,1004,821,820,-1,1004,896,821,-1,71,78,830,-1,71,73,78,-1,145,62,69,-1,145,74,62,-1,56,892,57,-1,56,1157,892,-1,946,66,991,-1,946,993,66,-1,1008,1238,1161,-1,851,1238,1008,-1,838,1414,290,-1,838,1183,1414,-1,1181,1413,94,-1,1413,1181,1415,-1,266,250,1142,-1,266,989,250,-1,234,1006,189,-1,167,1006,234,-1,1164,958,957,-1,33,958,1164,-1,977,1178,230,-1,1178,977,190,-1,1177,1416,868,-1,1177,1176,1416,-1,1357,254,1141,-1,1357,1170,254,-1,1220,1169,1168,-1,1394,1169,1220,-1,23,239,221,-1,22,239,23,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc5_Geo_5_67_coordIndex_9()
		{
			int[] value = {960,264,857,-1,975,264,960,-1,853,14,1167,-1,853,855,14,-1,16,21,17,-1,21,16,1165,-1,12,984,268,-1,985,984,12,-1,970,1015,1404,-1,1015,970,971,-1,1170,0,2,-1,1170,1357,0,-1,24,19,242,-1,19,24,20,-1,864,222,865,-1,864,1014,222,-1,1206,1172,1174,-1,961,1172,1206,-1,1167,1173,1172,-1,1167,14,1173,-1,34,979,35,-1,34,980,979,-1,1163,1405,1417,-1,1163,1162,1405,-1,1153,956,272,-1,956,1153,982,-1,1018,1178,35,-1,1018,1017,1178,-1,1143,265,247,-1,847,265,1143,-1,949,1184,950,-1,1184,949,1182,-1,51,295,843,-1,51,50,295,-1,312,812,811,-1,312,321,812,-1,70,1023,835,-1,1023,70,65,-1,1010,937,72,-1,943,937,1010,-1,827,302,301,-1,827,936,302,-1,1009,293,1138,-1,1009,998,293,-1,135,83,144,-1,134,83,135,-1,134,81,83,-1,994,996,89,-1,996,994,92,-1,98,929,1159,-1,806,929,98,-1,930,96,1159,-1,930,95,96,-1,922,1160,52,-1,1160,922,126,-1,146,1188,152,-1,1000,1188,146,-1,137,910,923,-1,137,131,910,-1,109,1188,1000,-1,117,1188,109,-1,905,113,112,-1,905,138,113,-1,140,144,83,-1,140,836,144,-1,123,130,149,-1,123,122,130,-1,998,299,305,-1,1009,299,998,-1,918,175,1007,-1,918,173,175,-1,155,192,883,-1,155,154,192,-1,160,1403,1418,-1,160,1189,1403,-1,1418,161,160,-1,1148,161,1418,-1,182,158,1154,-1,158,182,184,-1,879,1051,1419,-1,1051,879,1191,-1,99,1027,816,-1,99,1028,1027,-1,1029,330,329,-1,330,1029,319,-1,1013,164,163,-1,1013,874,164,-1,1194,1219,331,-1,1194,1193,1219,-1,1196,217,942,-1,1196,218,217,-1,1200,1420,1199,-1,1420,1200,1400,-1,1202,1330,1332,-1,1202,1204,1330,-1,1407,898,1197,-1,1407,873,898,-1,929,1186,1159,-1,929,169,1186,-1,28,1206,866,-1,28,963,1206,-1,981,1208,959,-1,981,1223,1208,-1,1408,180,888,-1,180,1408,181,-1,1324,878,881,-1,1190,878,1324,-1,974,967,972,-1,15,967,974,-1,1248,1322,1410,-1,1248,1270,1322,-1,176,159,882,-1,176,903,159,-1,196,1211,880,-1,196,1149,1211,-1,1213,198,204,-1,1213,1149,198,-1,199,1317,200,-1,1320,1317,199,-1,198,1154,158,-1,198,197,1154,-1,1216,1419,1244,-1,1216,1215,1419,-1,207,1201,1406,-1,1147,1201,207,-1,1147,206,208,-1,207,206,1147,-1,209,211,1399,-1,209,208,211,-1,1398,212,1198,-1,212,1398,213,-1,1218,1421,1217,-1,1373,1421,1218,-1,1013,1407,1422,-1,873,1407,1013,-1,11,20,1146,-1,11,21,20,-1,966,1224,1226,-1,966,1208,1224,-1,871,224,220,-1,224,871,245,-1,227,1397,27,-1,1233,1397,227,-1,1423,1224,1222,-1,1225,1224,1423,-1,229,1229,1417,-1,1229,229,228,-1,1230,231,1228,-1,1230,1232,231,-1,1416,1231,979,-1,1416,1232,1231,-1,978,1169,867,-1,978,236,1169,-1,242,4,1140,-1,242,19,4,-1,262,245,244,-1,262,224,245,-1,1236,1233,227,-1,1235,1233,1236,-1,251,1225,1423,-1,249,1225,251,-1,250,249,251,-1,1143,249,250,-1,856,1236,1021,-1,856,1235,1236,-1,257,240,241,-1,257,436,240,-1,1166,1140,4,-1,258,1140,1166,-1,1281,262,263,-1,1281,243,262,-1,1414,1391,983,-1,1391,1414,986,-1,269,1181,952,-1,885,1181,269,-1,1389,271,270,-1,1139,271,1389,-1,38,277,953,-1,38,278,277,-1,1160,992,50,-1,1160,56,992,-1,284,48,47,-1,279,48,284,-1,287,283,843,-1,287,840,283,-1,1185,1184,1241,-1,1184,1185,950,-1,141,1185,1241,-1,1209,1185,141,-1,1205,83,933,-1,1205,140,83,-1,1138,292,296,-1,1138,293,292,-1,54,941,990,-1,54,75,941,-1,72,1009,1010,-1,1009,72,299,-1,1412,139,138,-1,1411,139,1412,-1,928,193,120,-1,928,114,193,-1,1214,1245,899,-1,1214,1216,1245,-1,1248,1268,1270,-1,1248,1247,1268,-1,932,307,84,-1,932,82,307,-1,1252,1258,1424,-1,1250,1258,1252,-1,306,1254,1151,-1,306,1425,1254,-1,1255,1332,1426,-1,1332,1255,1202,-1,810,1420,1425,-1,1420,810,1199,-1,1136,328,327,-1,1136,326,328,-1,1257,1424,1258,-1,1192,1424,1257,-1,1301,635,669,-1,1301,1091,635,-1,1101,340,339,-1,340,1101,347,-1,1262,341,343,-1,1262,1334,341,-1,1426,1266,1427,-1,1265,1266,1426,-1,345,341,346,-1,345,366,341,-1,1256,1428,1384,-1,1267,1428,1256,-1,1428,1274,731,-1,1274,1428,1272,-1,360,1113,351,-1,373,1113,360,-1,1427,1271,1268,-1,1427,1266,1271,-1,368,485,1134,-1,1116,485,368,-1,1274,502,1341,-1,502,1274,1273,-1,371,373,360,-1,374,373,371,-1,518,1104,519,-1,518,560,1104,-1,584,603,589,-1,603,584,601,-1,587,387,686,-1,587,385,387,-1,794,388,1132,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc5_Geo_5_67_coordIndex_10()
		{
			int[] value = {794,797,388,-1,792,390,1076,-1,1132,390,792,-1,1429,578,1276,-1,579,578,1429,-1,1366,398,397,-1,398,1366,1382,-1,401,406,405,-1,401,789,406,-1,783,786,784,-1,678,786,783,-1,678,677,786,-1,618,1046,671,-1,1046,618,1047,-1,1045,621,672,-1,1045,1430,621,-1,1098,1365,1353,-1,1098,1352,1365,-1,420,1131,421,-1,420,427,1131,-1,1130,1097,1131,-1,1097,1130,1280,-1,1129,664,1095,-1,1129,665,664,-1,641,1392,1281,-1,640,1392,641,-1,1061,1141,256,-1,629,1141,1061,-1,1282,1129,1379,-1,779,1129,1282,-1,774,1378,1043,-1,1378,774,1284,-1,438,1286,1376,-1,438,1283,1286,-1,662,1085,1087,-1,650,1085,662,-1,446,1289,447,-1,631,1289,446,-1,1092,449,1059,-1,1092,450,449,-1,456,452,676,-1,453,452,456,-1,1293,453,456,-1,453,1293,451,-1,1431,1296,1083,-1,1431,1295,1296,-1,1299,1381,1375,-1,1299,1285,1381,-1,669,1287,1380,-1,668,1287,669,-1,1044,460,763,-1,1044,771,460,-1,1302,1299,1432,-1,1302,1298,1299,-1,460,1433,461,-1,460,1377,1433,-1,1339,474,1304,-1,1339,472,474,-1,759,1308,760,-1,470,1308,759,-1,1434,1310,1309,-1,1434,1421,1310,-1,1309,1312,1434,-1,1312,1309,757,-1,1315,1050,1337,-1,1315,753,1050,-1,1316,1273,1275,-1,1110,1273,1316,-1,1402,1319,1435,-1,1402,1317,1319,-1,1053,1435,746,-1,1321,1435,1053,-1,478,1212,1121,-1,1324,1212,478,-1,332,1056,333,-1,332,516,1056,-1,484,1134,485,-1,484,1436,1134,-1,391,722,1276,-1,391,723,722,-1,1099,599,681,-1,599,1099,604,-1,466,637,467,-1,466,652,637,-1,500,480,479,-1,497,480,500,-1,683,715,714,-1,715,683,684,-1,1432,1326,622,-1,1326,1432,1327,-1,521,1329,735,-1,521,523,1329,-1,524,526,1338,-1,525,526,524,-1,1339,804,1437,-1,805,804,1339,-1,1262,1337,1334,-1,1262,1315,1337,-1,1101,1307,1306,-1,1101,339,1307,-1,1260,1437,804,-1,1260,1115,1437,-1,1437,472,1339,-1,472,1437,1126,-1,353,1112,350,-1,1112,353,358,-1,1074,1032,736,-1,1074,357,1032,-1,1123,1190,1124,-1,1191,1190,1123,-1,1110,528,503,-1,527,528,1110,-1,487,475,1052,-1,475,487,488,-1,487,1436,484,-1,487,1062,1436,-1,1118,1070,1069,-1,1118,1349,1070,-1,1346,535,363,-1,1346,1064,535,-1,1348,539,538,-1,1348,1072,539,-1,719,1064,1346,-1,719,718,1064,-1,1063,538,1067,-1,1063,1348,538,-1,1065,562,1066,-1,563,562,1065,-1,1108,409,552,-1,1108,717,409,-1,1069,557,556,-1,710,557,1069,-1,710,707,711,-1,707,710,509,-1,546,568,567,-1,546,1107,568,-1,522,1060,1106,-1,1060,522,733,-1,611,495,1354,-1,611,1081,495,-1,577,1106,698,-1,577,702,1106,-1,738,368,342,-1,1116,368,738,-1,1429,609,579,-1,1429,610,609,-1,1034,491,692,-1,489,491,1034,-1,372,591,590,-1,372,379,591,-1,491,595,593,-1,491,490,595,-1,715,561,685,-1,715,510,561,-1,512,594,1079,-1,605,594,512,-1,1037,608,408,-1,608,1037,411,-1,612,791,790,-1,791,612,1279,-1,609,1354,1350,-1,609,611,1354,-1,1094,780,772,-1,425,780,1094,-1,776,615,678,-1,1040,615,776,-1,675,1054,742,-1,675,1117,1054,-1,1117,674,1059,-1,675,674,1117,-1,1119,617,1291,-1,617,1119,618,-1,1296,622,1326,-1,1296,1093,622,-1,452,1128,450,-1,1128,452,1127,-1,625,1363,1359,-1,625,627,1363,-1,626,1372,627,-1,626,628,1372,-1,741,635,1090,-1,635,741,633,-1,461,1288,443,-1,1288,461,1433,-1,636,1090,624,-1,636,741,1090,-1,656,645,647,-1,645,656,1088,-1,657,1089,432,-1,657,1358,1089,-1,648,457,1360,-1,458,457,648,-1,1360,1088,643,-1,1088,1360,645,-1,1087,459,662,-1,459,1087,659,-1,0,1358,657,-1,1357,1358,0,-1,655,643,1088,-1,643,655,644,-1,441,463,762,-1,441,440,463,-1,1362,1433,1361,-1,1362,1288,1433,-1,1061,670,628,-1,670,1061,765,-1,1363,1372,1328,-1,1363,627,1372,-1,1351,1359,1363,-1,1086,1359,1351,-1,452,674,676,-1,1092,674,452,-1,1326,1083,1296,-1,1083,1326,1082,-1,620,1058,1039,-1,620,619,1058,-1,1355,456,676,-1,456,1355,454,-1,780,773,772,-1,780,680,773,-1,1366,611,610,-1,1366,1365,611,-1,587,603,1099,-1,589,603,587,-1,510,684,511,-1,715,684,510,-1,586,592,1102,-1,586,692,592,-1,695,382,1103,-1,382,695,1055,-1,698,583,699,-1,698,700,583,-1,572,733,522,-1,572,1105,733,-1,1106,575,522,-1,702,575,1106,-1,726,713,712,-1,726,795,713,-1,1065,568,563,-1,568,1065,566,-1,1133,739,740,-1,1133,705,739,-1,718,533,1064,-1,718,534,533,-1,544,717,1108,-1,543,717,544,-1,718,707,534,-1,718,711,707,-1,569,1066,562,-1,1066,569,721,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getc5_Geo_5_67_coordIndex_11()
		{
			int[] value = {395,723,393,-1,394,723,395,-1,716,713,793,-1,545,713,716,-1,799,726,378,-1,799,489,726,-1,513,1349,1118,-1,1349,513,550,-1,333,506,486,-1,506,333,1056,-1,1368,1062,1367,-1,1062,1368,1436,-1,1052,1367,1062,-1,1052,1369,1367,-1,748,729,501,-1,748,481,729,-1,1051,1123,749,-1,1051,1191,1123,-1,358,1074,1112,-1,1074,358,357,-1,356,731,1274,-1,731,356,355,-1,1259,1374,1257,-1,1259,1305,1374,-1,1370,1115,1260,-1,1370,526,1115,-1,339,1371,1307,-1,339,338,1371,-1,1261,1315,1262,-1,1261,1314,1315,-1,470,524,1308,-1,524,470,469,-1,1372,670,447,-1,670,1372,628,-1,1302,622,624,-1,622,1302,1432,-1,737,1341,502,-1,737,736,1341,-1,498,1111,743,-1,1111,498,527,-1,648,643,639,-1,643,648,1360,-1,1055,740,688,-1,1055,694,740,-1,369,1436,1368,-1,369,1134,1436,-1,1295,1045,1294,-1,1431,1045,1295,-1,1431,1430,1045,-1,743,478,480,-1,743,1124,478,-1,1321,1402,1435,-1,1210,1402,1321,-1,1435,747,746,-1,747,1435,1319,-1,745,1369,1052,-1,747,1369,745,-1,756,1330,1311,-1,1330,756,1333,-1,1337,1313,1335,-1,1337,1050,1313,-1,754,1049,755,-1,754,753,1049,-1,758,757,1309,-1,757,758,755,-1,761,1307,1371,-1,761,760,1307,-1,1421,1303,1310,-1,1421,1373,1303,-1,1115,1126,1437,-1,1115,469,1126,-1,1361,1377,1300,-1,1433,1377,1361,-1,1432,1375,1327,-1,1432,1299,1375,-1,1048,655,654,-1,468,655,1048,-1,1376,460,771,-1,460,1376,1377,-1,1301,1380,1378,-1,669,1380,1301,-1,1375,782,1364,-1,1375,1381,782,-1,455,1293,456,-1,455,1297,1293,-1,623,454,1355,-1,623,455,454,-1,1119,1292,1047,-1,1119,1356,1292,-1,1362,631,446,-1,634,631,1362,-1,660,667,767,-1,667,660,1085,-1,438,771,770,-1,771,438,1376,-1,1380,1043,1378,-1,1380,1379,1043,-1,1381,783,782,-1,1381,777,783,-1,678,777,776,-1,777,678,783,-1,772,1379,1094,-1,772,1043,1379,-1,766,256,1237,-1,1061,256,766,-1,640,259,1392,-1,647,259,640,-1,1120,429,428,-1,1120,494,429,-1,1096,1131,1097,-1,1096,421,1131,-1,1278,421,1096,-1,1365,1081,611,-1,1365,1352,1081,-1,1430,1083,621,-1,1083,1430,1431,-1,1364,1038,1039,-1,1038,1364,782,-1,1046,672,671,-1,672,1046,1045,-1,413,784,786,-1,413,785,784,-1,1291,788,515,-1,1291,617,788,-1,789,787,406,-1,789,414,787,-1,1366,1429,1382,-1,1366,610,1429,-1,1429,722,1382,-1,1429,1276,722,-1,681,587,1099,-1,681,385,587,-1,585,797,586,-1,797,585,388,-1,597,519,1104,-1,597,739,519,-1,720,1345,721,-1,720,1344,1345,-1,1383,751,750,-1,751,1383,1251,-1,370,1266,1264,-1,1271,1266,370,-1,1428,1383,1272,-1,1428,1267,1383,-1,731,1384,1428,-1,1384,731,1030,-1,1332,1265,1426,-1,1332,1331,1265,-1,1334,346,341,-1,1334,1336,346,-1,1340,1030,805,-1,1030,1340,1384,-1,818,1412,904,-1,818,311,1412,-1,1385,1192,1194,-1,1385,1424,1192,-1,322,942,809,-1,322,812,942,-1,1425,1386,1254,-1,1386,1425,1420,-1,1387,1426,1427,-1,1387,1255,1426,-1,1425,85,810,-1,85,1425,306,-1,1388,1424,1385,-1,1388,1252,1424,-1,899,1388,900,-1,899,1245,1388,-1,814,817,813,-1,814,313,817,-1,1247,1427,1268,-1,1427,1247,1387,-1,895,823,822,-1,895,1004,823,-1,888,899,1408,-1,888,1214,899,-1,313,1243,817,-1,313,1024,1243,-1,138,904,1412,-1,138,905,904,-1,828,304,303,-1,828,826,304,-1,829,1001,104,-1,59,1001,829,-1,946,940,993,-1,946,945,940,-1,67,833,1023,-1,831,833,67,-1,831,939,833,-1,68,143,145,-1,68,291,143,-1,1241,142,141,-1,1241,837,142,-1,87,94,1413,-1,95,94,87,-1,841,288,289,-1,285,288,841,-1,953,841,951,-1,953,277,841,-1,50,44,295,-1,44,50,992,-1,278,273,1139,-1,278,40,273,-1,40,278,38,-1,1389,37,276,-1,1389,32,37,-1,270,32,1389,-1,270,33,32,-1,272,958,270,-1,272,956,958,-1,885,1415,1181,-1,884,1415,885,-1,846,1391,1022,-1,846,983,1391,-1,1238,988,987,-1,988,1238,851,-1,267,43,42,-1,43,267,848,-1,850,43,848,-1,852,43,850,-1,856,853,857,-1,856,1021,853,-1,1392,243,1281,-1,1392,976,243,-1,858,854,859,-1,985,854,858,-1,856,860,1235,-1,1019,860,856,-1,1423,252,251,-1,1423,1393,252,-1,227,859,1236,-1,227,1145,859,-1,1394,867,1169,-1,867,1394,29,-1,169,870,1005,-1,169,929,870,-1,868,171,1177,-1,171,868,172,-1,1176,1232,1416,-1,1176,231,1232,-1,233,1228,231,-1,233,1239,1228,-1,1417,1390,1163,-1,1390,1417,1229,-1,1393,1222,1395,-1,1423,1222,1393,-1,1234,1397,1233,-1,1234,1221,1397,-1,1396,1180,1395,-1,1396,1179,1180,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getc5_Geo_5_67_coordIndex_12()
		{
			int[] value = {1397,964,27,-1,1397,1168,964,-1,1195,1373,1218,-1,1195,1374,1373,-1,216,214,213,-1,216,215,214,-1,1217,1434,1399,-1,1434,1217,1421,-1,1312,1399,1434,-1,1312,209,1399,-1,1011,1406,1400,-1,207,1406,1011,-1,1051,1244,1419,-1,1051,751,1244,-1,200,1402,1401,-1,1402,200,1317,-1,1401,1149,1213,-1,1401,1211,1149,-1,1212,881,880,-1,1212,1324,881,-1,1248,1403,1025,-1,1403,1248,1410,-1,1183,986,1414,-1,987,986,1183,-1,8,1165,16,-1,8,7,1165,-1,194,197,196,-1,194,186,197,-1,1157,1160,126,-1,1157,56,1160,-1,1405,1223,981,-1,1405,1396,1223,-1,1171,169,168,-1,169,1171,1186,-1,1197,897,218,-1,1197,898,897,-1,327,1219,1422,-1,327,331,1219,-1,1400,1386,1420,-1,1386,1400,1406,-1,1398,942,217,-1,809,942,1398,-1,1422,1136,327,-1,1136,1422,1407,-1,874,1422,1219,-1,874,1013,1422,-1,816,1029,329,-1,816,1027,1029,-1,317,1408,899,-1,1408,317,316,-1,1214,890,1003,-1,1214,888,890,-1,877,1419,1215,-1,1419,877,879,-1,889,1154,185,-1,1154,889,179,-1,1409,1148,1418,-1,199,1148,1409,-1,1410,1418,1403,-1,1409,1418,1410,-1,53,892,60,-1,53,55,892,-1,1411,150,1155,-1,310,150,1411,-1,1187,117,116,-1,1187,1188,117,-1,999,924,913,-1,920,924,999,-1,147,913,924,-1,147,153,913,-1,102,1026,1242,-1,1026,102,1137,-1,917,137,52,-1,137,917,136,-1,919,173,918,-1,173,919,909,-1,923,924,920,-1,924,923,910,-1,170,129,1007,-1,129,170,156,-1,97,92,91,-1,996,92,97,-1,884,949,1415,-1,1161,949,884,-1,96,87,996,-1,95,87,96,-1,823,820,1151,-1,823,1004,820,-1,92,932,86,-1,932,92,994,-1,1150,937,935,-1,938,937,1150,-1,302,830,78,-1,936,830,302,-1,831,993,940,-1,993,831,832,-1,943,925,934,-1,943,76,925,-1,58,944,45,-1,944,58,282,-1,947,944,282,-1,947,945,944,-1,294,295,46,-1,294,843,295,-1,39,844,267,-1,845,844,39,-1,290,983,842,-1,290,1414,983,-1,1415,948,1413,-1,948,1415,949,-1,265,858,247,-1,265,984,858,-1,39,1142,40,-1,39,266,1142,-1,189,36,190,-1,1006,36,189,-1,34,1006,1005,-1,34,36,1006,-1,955,886,1175,-1,955,887,886,-1,981,1417,1405,-1,229,1417,981,-1,868,979,869,-1,868,1416,979,-1,1172,960,1167,-1,960,1172,961,-1,1206,962,961,-1,962,1206,963,-1,25,188,965,-1,25,235,188,-1,1394,1014,864,-1,1394,1220,1014,-1,965,977,959,-1,188,977,965,-1,970,861,261,-1,970,968,861,-1,975,2,264,-1,1170,2,975,-1,1015,972,1404,-1,1015,973,972,-1,968,1404,969,-1,968,970,1404,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc5_Geo_5_67_normalIndex_1()
		{
			int[] value = {719,354,682,-1,1319,1274,1317,-1,1355,1361,1329,-1,29,1,105,-1,691,1347,1262,-1,243,1064,479,-1,105,1,52,-1,1059,203,333,-1,638,78,179,-1,499,318,123,-1,1189,1228,1154,-1,321,26,50,-1,1181,1047,1205,-1,26,321,227,-1,81,297,194,-1,391,661,613,-1,367,316,86,-1,36,323,543,-1,554,566,1196,-1,398,322,386,-1,868,557,410,-1,651,644,1187,-1,296,500,252,-1,261,62,615,-1,778,166,210,-1,23,3,76,-1,500,296,619,-1,172,112,30,-1,173,622,773,-1,514,493,952,-1,218,204,650,-1,1298,1246,1129,-1,597,1116,1098,-1,1422,1358,1395,-1,1391,1404,1431,-1,340,355,80,-1,1050,1021,1208,-1,1390,1423,1370,-1,996,1071,1149,-1,1096,834,276,-1,152,39,87,-1,511,1071,624,-1,355,452,275,-1,670,508,495,-1,1289,1364,1311,-1,435,262,441,-1,1311,1364,1187,-1,1095,1349,1110,-1,241,379,902,-1,1273,1110,1432,-1,276,98,0,-1,1053,1062,858,-1,869,939,458,-1,856,327,670,-1,983,544,1095,-1,42,338,679,-1,338,856,679,-1,216,856,338,-1,474,214,325,-1,403,259,235,-1,438,412,270,-1,1259,1057,1132,-1,1215,1431,1404,-1,1296,1350,1327,-1,610,569,915,-1,490,445,450,-1,158,279,222,-1,28,34,68,-1,68,80,44,-1,80,136,100,-1,200,547,582,-1,76,622,173,-1,1137,1224,1125,-1,610,1099,894,-1,136,205,214,-1,582,936,909,-1,836,563,464,-1,656,689,608,-1,412,480,351,-1,466,464,259,-1,1203,1159,1133,-1,987,917,966,-1,1132,938,987,-1,1236,1294,1279,-1,1132,1332,1259,-1,1323,1076,1184,-1,203,179,10,-1,15,83,168,-1,33,29,105,-1,55,61,6,-1,128,123,318,-1,853,835,897,-1,823,793,842,-1,1212,1042,1012,-1,1123,1154,1018,-1,634,1034,1018,-1,1139,638,995,-1,346,61,55,-1,271,56,85,-1,535,520,515,-1,578,476,461,-1,271,159,354,-1,1027,1080,692,-1,683,1139,671,-1,731,735,880,-1,263,271,725,-1,601,682,354,-1,583,661,391,-1,534,297,745,-1,826,391,537,-1,38,126,65,-1,277,303,126,-1,227,113,18,-1,54,92,18,-1,429,550,323,-1,516,396,557,-1,566,242,543,-1,93,11,5,-1,188,261,210,-1,166,296,37,-1,13,252,223,-1,904,759,544,-1,544,759,417,-1,51,62,261,-1,367,86,370,-1,666,424,121,-1,129,3,211,-1,773,873,463,-1,253,545,211,-1,545,611,129,-1,1050,1096,452,-1,136,80,275,-1,427,597,204,-1,218,229,47,-1,17,2,143,-1,181,843,234,-1,244,185,190,-1,244,127,184,-1,196,146,181,-1,59,77,47,-1,629,256,309,-1,576,420,404,-1,404,257,395,-1,284,526,219,-1,1291,884,1240,-1,1202,1145,1378,-1,971,782,572,-1,1388,1233,1269,-1,1324,1315,1378,-1,1011,1030,905,-1,1193,1101,1253,-1,1193,1310,1247,-1,1193,1066,1015,-1,905,593,590,-1,1074,1295,1315,-1,1394,1388,1421,-1,484,1028,841,-1,870,684,625,-1,344,590,593,-1,565,595,343,-1,928,1074,970,-1,45,928,827,-1,923,1087,986,-1,1414,1206,1162,-1,1384,1151,1256,-1,332,659,509,-1,326,483,471,-1,530,519,969,-1,690,587,1183,-1,1183,1140,1400,-1,1369,1411,1272,-1,1428,1418,1338,-1,1400,1411,1407,-1,238,482,882,-1,1328,1419,1435,-1,1035,1210,1328,-1,1385,1427,1399,-1,696,660,1070,-1,607,1044,953,-1,697,575,696,-1,903,824,1044,-1,1250,1218,837,-1,726,719,1085,-1,425,710,409,-1,1085,1218,1285,-1,329,787,764,-1,460,497,282,-1,209,150,151,-1,606,148,267,-1,635,433,639,-1,517,585,579,-1,246,175,89,-1,1377,1219,1264,-1,1359,1430,1420,-1,1113,1320,1398,-1,70,94,189,-1,453,388,672,-1,1089,1037,967,-1,588,602,496,-1,1337,1195,1346,-1,1158,1001,1016,-1,1168,1158,1216,-1,1293,1425,1408,-1,813,581,530,-1,879,840,832,-1,496,889,857,-1,1235,877,1226,-1,1290,1305,1393,-1,1346,1281,1225,-1,860,335,447,-1,831,893,973,-1,985,871,885,-1,148,606,862,-1,71,154,237,-1,454,1016,1001,-1,454,526,1016,-1,106,25,58,-1,72,70,96,-1,70,230,96,-1,1040,857,1200,-1,1216,1213,1089,-1,1235,1393,1305,-1,1013,928,301,-1,124,570,376,-1,1394,1083,1209,-1,559,1185,1292,-1,328,451,580,-1,90,331,948,-1,63,335,860,-1,193,373,149,-1,940,482,165,-1,373,193,860,-1,149,373,186,-1,678,1141,331,-1,1231,1225,1114,-1,1090,1286,1114,-1,1135,790,796,-1,604,290,310,-1,71,310,290,-1,298,335,63,-1,14,64,48,-1,1160,984,1297,-1,66,148,284,-1,95,53,22,-1,484,841,300,-1,140,192,180,-1,1233,1388,1222,-1,962,935,540,-1,986,1087,1162,-1,742,430,992,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc5_Geo_5_67_normalIndex_2()
		{
			int[] value = {1376,998,1188,-1,830,1112,1315,-1,969,1272,1140,-1,1275,1322,1118,-1,1299,1301,920,-1,1073,1122,1017,-1,1009,742,991,-1,1237,1009,1121,-1,991,1019,1014,-1,989,1104,882,-1,162,268,397,-1,1338,1070,1117,-1,607,95,16,-1,1267,1138,1092,-1,1035,1024,828,-1,1343,1417,1088,-1,820,529,653,-1,1210,1035,828,-1,236,305,183,-1,286,305,413,-1,142,157,226,-1,392,421,931,-1,529,381,653,-1,1386,1198,1220,-1,1023,1086,1374,-1,1220,1134,1406,-1,525,250,558,-1,175,556,487,-1,258,374,957,-1,1430,1359,1241,-1,1367,1401,1072,-1,719,758,1085,-1,163,117,164,-1,114,84,89,-1,1406,1320,1436,-1,760,988,95,-1,957,374,1198,-1,1320,1386,1436,-1,258,1113,1227,-1,443,1241,1359,-1,1313,1120,931,-1,282,209,254,-1,1124,1060,1412,-1,255,231,389,-1,1412,1210,1124,-1,1354,1242,1138,-1,1044,824,780,-1,789,780,697,-1,696,1092,1138,-1,1073,1351,1122,-1,238,883,362,-1,571,1017,893,-1,154,249,790,-1,998,1376,1182,-1,509,1239,1272,-1,1318,1433,1414,-1,771,1182,659,-1,488,430,742,-1,1275,1321,1408,-1,668,814,1265,-1,935,921,471,-1,791,1222,962,-1,140,202,307,-1,841,791,339,-1,454,484,219,-1,79,16,40,-1,1231,1161,1303,-1,387,341,237,-1,45,124,64,-1,335,298,365,-1,1286,1348,1397,-1,1090,833,954,-1,1141,744,993,-1,149,186,125,-1,125,357,249,-1,342,451,328,-1,580,1185,559,-1,328,165,4,-1,752,1230,1348,-1,1437,1342,1160,-1,581,375,383,-1,560,969,519,-1,1217,744,1141,-1,744,827,1164,-1,124,45,744,-1,1084,1357,1161,-1,1217,1083,570,-1,1037,1195,1337,-1,1392,1410,1226,-1,1238,1310,1253,-1,189,313,388,-1,8,212,300,-1,106,88,142,-1,862,606,871,-1,482,940,989,-1,1216,1158,1281,-1,1368,1403,1410,-1,1368,1392,1357,-1,1357,1337,1303,-1,1235,1200,857,-1,114,258,84,-1,794,782,1028,-1,440,920,845,-1,1225,1281,1016,-1,299,381,312,-1,1225,1231,1303,-1,857,533,496,-1,974,877,602,-1,949,863,817,-1,949,967,863,-1,967,1037,1180,-1,1403,1393,1410,-1,891,951,688,-1,228,304,278,-1,448,467,518,-1,448,492,313,-1,155,144,208,-1,155,189,94,-1,1227,1398,1241,-1,1341,1415,1264,-1,1320,1401,1398,-1,1430,1389,1420,-1,226,157,421,-1,311,390,425,-1,764,460,425,-1,195,443,329,-1,558,1023,1072,-1,1374,1169,1389,-1,1167,1278,1352,-1,876,821,919,-1,861,929,977,-1,329,683,195,-1,735,731,558,-1,1169,725,1167,-1,837,1085,758,-1,1250,1058,1280,-1,953,1044,852,-1,330,903,607,-1,1148,1170,1314,-1,1210,1412,1380,-1,1328,1210,1419,-1,1419,1345,1382,-1,885,1005,1104,-1,1435,1424,1407,-1,1267,1338,1418,-1,1272,1400,1140,-1,1428,1396,1214,-1,536,560,898,-1,652,993,1032,-1,1073,1067,1351,-1,992,774,1321,-1,1433,1206,1414,-1,668,975,565,-1,970,986,1162,-1,1308,928,1206,-1,970,1112,923,-1,984,341,387,-1,1303,1161,1357,-1,841,1028,1233,-1,1209,1388,1394,-1,1434,1421,1295,-1,830,1258,595,-1,1193,1247,1252,-1,1193,1253,1310,-1,1240,1258,1291,-1,1378,1388,1360,-1,1030,864,1039,-1,1099,1402,1221,-1,233,59,291,-1,47,77,170,-1,122,111,59,-1,256,196,234,-1,513,420,384,-1,244,245,185,-1,528,513,846,-1,234,843,384,-1,359,314,122,-1,42,2,17,-1,427,647,945,-1,502,586,786,-1,68,340,80,-1,603,873,843,-1,545,485,359,-1,1390,611,545,-1,531,485,449,-1,1021,753,1208,-1,23,102,253,-1,943,615,437,-1,1106,1166,922,-1,759,904,1166,-1,939,946,619,-1,252,850,755,-1,37,296,252,-1,166,19,75,-1,21,13,46,-1,288,242,566,-1,1196,566,543,-1,5,18,93,-1,747,347,366,-1,583,654,661,-1,865,914,812,-1,746,551,812,-1,407,178,446,-1,601,187,510,-1,725,271,726,-1,1018,1034,710,-1,520,337,315,-1,520,535,337,-1,354,159,153,-1,61,350,67,-1,880,1266,1319,-1,638,1139,1034,-1,907,972,1018,-1,1287,1288,1228,-1,1043,1163,1268,-1,24,168,60,-1,78,83,15,-1,1356,1259,1332,-1,1057,999,895,-1,1186,1236,1203,-1,632,807,693,-1,351,480,466,-1,836,779,849,-1,136,91,100,-1,279,158,415,-1,619,946,858,-1,598,591,551,-1,793,816,609,-1,147,41,134,-1,91,214,158,-1,435,996,1108,-1,557,567,386,-1,450,550,569,-1,1099,610,915,-1,1365,1127,1208,-1,434,415,982,-1,982,415,894,-1,1356,1332,1323,-1,1375,1344,1356,-1,420,309,384,-1,513,528,404,-1,190,264,197,-1,394,240,582,-1,222,351,225,-1,200,240,41,-1,418,505,1136,-1,670,1312,856,-1,42,229,338,-1,241,892,667,-1,902,983,1110,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc5_Geo_5_67_normalIndex_3()
		{
			int[] value = {508,1107,1349,-1,207,27,191,-1,523,1108,1373,-1,435,131,262,-1,947,490,1273,-1,324,131,135,-1,1063,523,1244,-1,1063,1251,1255,-1,327,762,1107,-1,670,495,417,-1,302,644,651,-1,1127,1146,834,-1,1146,1127,1365,-1,1108,1149,1370,-1,1423,1387,1370,-1,276,141,452,-1,1099,1268,1379,-1,1347,1422,1416,-1,1116,597,945,-1,1298,1257,1246,-1,204,218,47,-1,493,481,930,-1,273,753,512,-1,253,102,353,-1,137,120,3,-1,1004,698,424,-1,778,458,166,-1,181,122,314,-1,121,424,377,-1,111,146,358,-1,322,302,112,-1,139,273,512,-1,367,410,316,-1,317,422,198,-1,436,396,516,-1,322,398,302,-1,445,947,543,-1,983,939,869,-1,1276,1038,1172,-1,366,132,46,-1,826,1105,1347,-1,171,347,297,-1,399,609,411,-1,20,352,9,-1,835,788,897,-1,609,399,227,-1,1197,1254,1131,-1,1027,1131,1155,-1,1155,1123,1080,-1,295,1012,1042,-1,932,673,499,-1,1,224,243,-1,294,306,29,-1,350,61,346,-1,29,306,224,-1,913,880,1199,-1,875,1263,1329,-1,1361,1355,1319,-1,179,78,6,-1,33,67,294,-1,67,350,294,-1,6,10,179,-1,1361,1319,1317,-1,1329,941,875,-1,1059,1317,1274,-1,29,224,1,-1,1100,1197,1131,-1,442,350,346,-1,294,29,33,-1,52,1,243,-1,897,788,1056,-1,1042,499,295,-1,1296,1212,1282,-1,1155,1189,1123,-1,1027,1155,1080,-1,227,321,609,-1,1163,1010,1190,-1,835,618,788,-1,20,97,352,-1,297,81,171,-1,1105,1422,1347,-1,46,320,366,-1,337,478,269,-1,686,792,848,-1,534,745,640,-1,983,902,939,-1,323,445,543,-1,419,436,516,-1,198,99,317,-1,422,436,698,-1,367,475,410,-1,137,139,512,-1,112,172,322,-1,121,377,172,-1,314,603,181,-1,62,248,437,-1,698,377,424,-1,353,449,253,-1,481,900,930,-1,945,1215,1116,-1,982,894,1221,-1,1347,1416,1383,-1,1379,1402,1099,-1,1404,1391,1234,-1,276,39,141,-1,1208,1127,1096,-1,1370,1373,1108,-1,1365,1387,1146,-1,1096,1127,834,-1,275,452,141,-1,1405,1387,1365,-1,302,398,644,-1,205,325,214,-1,417,274,670,-1,1107,508,327,-1,1063,1289,1251,-1,1063,459,523,-1,324,262,131,-1,490,667,1273,-1,1244,1289,1063,-1,1373,1244,523,-1,216,207,191,-1,1349,1095,508,-1,902,1110,892,-1,135,241,667,-1,1312,1061,856,-1,418,1136,545,-1,1284,1187,1364,-1,1244,1373,1405,-1,240,134,41,-1,394,532,265,-1,197,127,190,-1,1356,1323,1375,-1,982,636,434,-1,1208,1284,1365,-1,1099,915,1268,-1,1260,1271,1296,-1,386,516,557,-1,435,1108,523,-1,450,445,550,-1,610,439,450,-1,147,34,41,-1,936,582,547,-1,551,562,598,-1,500,619,858,-1,145,30,12,-1,270,222,279,-1,415,434,279,-1,91,235,100,-1,849,936,836,-1,351,466,403,-1,1186,1203,1126,-1,999,761,895,-1,1356,1277,1259,-1,15,6,78,-1,168,220,60,-1,1191,1355,1263,-1,822,918,859,-1,915,1043,1268,-1,1190,1181,1260,-1,1287,1228,1189,-1,907,1018,1154,-1,638,1034,634,-1,1319,1199,880,-1,354,153,221,-1,709,1018,710,-1,726,354,719,-1,601,221,187,-1,407,161,178,-1,746,562,551,-1,537,391,613,-1,745,747,865,-1,826,478,391,-1,747,366,781,-1,50,38,9,-1,399,113,227,-1,18,113,93,-1,1196,543,947,-1,21,46,132,-1,75,210,166,-1,37,252,13,-1,223,252,755,-1,939,619,458,-1,922,783,1106,-1,51,188,288,-1,253,211,23,-1,1021,512,753,-1,353,531,449,-1,545,1136,1390,-1,359,418,545,-1,873,1094,843,-1,502,786,741,-1,945,597,427,-1,17,47,42,-1,122,143,359,-1,528,846,867,-1,244,416,371,-1,244,190,127,-1,244,184,334,-1,513,404,420,-1,122,59,17,-1,47,170,204,-1,233,77,59,-1,1221,894,1099,-1,1030,1039,1178,-1,1030,1011,864,-1,1378,1421,1388,-1,1240,1201,1258,-1,1193,1015,1101,-1,1193,1192,1066,-1,1258,1201,595,-1,1421,1315,1295,-1,1209,1222,1388,-1,1233,791,841,-1,387,646,984,-1,970,1074,1112,-1,1308,827,928,-1,970,1162,1206,-1,1206,928,970,-1,565,343,668,-1,1433,1308,1206,-1,774,1194,1321,-1,652,898,993,-1,898,652,536,-1,1214,1183,1428,-1,1272,1411,1400,-1,1382,1267,1418,-1,1407,1339,1435,-1,872,882,1207,-1,1014,973,1017,-1,973,893,1017,-1,1104,989,885,-1,1382,1435,1419,-1,1210,1380,1419,-1,1148,1314,1302,-1,1399,1371,1302,-1,903,1044,607,-1,906,697,1138,-1,1044,780,852,-1,1250,924,1058,-1,1167,726,1085,-1,558,163,735,-1,683,671,195,-1,1167,1085,1278,-1,977,958,861,-1,919,886,876,-1,1352,1381,1167,-1,1374,1086,1169,-1,443,787,329,-1,425,409,764,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc5_Geo_5_67_normalIndex_4()
		{
			int[] value = {425,282,311,-1,392,226,421,-1,541,648,645,-1,1430,1374,1389,-1,1320,1406,1401,-1,1341,1420,1415,-1,1398,1426,1241,-1,155,313,189,-1,155,208,228,-1,448,313,278,-1,448,368,467,-1,228,308,304,-1,687,891,688,-1,967,1180,974,-1,1022,1089,949,-1,974,602,815,-1,1225,1303,1346,-1,312,215,299,-1,1363,1265,814,-1,114,374,258,-1,1235,857,889,-1,1357,1392,1337,-1,1368,1410,1392,-1,1216,1281,1213,-1,955,862,1114,-1,1283,1353,1343,-1,940,985,989,-1,862,871,985,-1,106,142,177,-1,31,8,300,-1,390,311,356,-1,1253,1178,1238,-1,997,1168,1022,-1,1180,1037,1337,-1,955,1114,1225,-1,1217,1229,1083,-1,1083,754,570,-1,45,827,744,-1,560,451,898,-1,451,342,898,-1,1217,570,744,-1,530,581,383,-1,1160,1397,1437,-1,301,292,926,-1,1348,954,752,-1,328,4,90,-1,580,1048,1185,-1,328,90,342,-1,125,249,73,-1,833,1000,1103,-1,860,961,1306,-1,1306,978,860,-1,125,73,149,-1,1141,993,948,-1,1084,1161,984,-1,1397,1297,1286,-1,447,335,365,-1,64,14,45,-1,237,440,387,-1,1097,1357,1084,-1,16,22,40,-1,484,212,219,-1,339,300,841,-1,307,192,140,-1,791,1233,1222,-1,935,471,483,-1,1265,975,668,-1,1408,1322,1275,-1,933,813,1140,-1,1414,1363,1318,-1,633,509,1272,-1,1182,771,998,-1,1140,1183,933,-1,249,796,790,-1,571,959,1017,-1,1036,1046,1118,-1,238,872,883,-1,696,1138,697,-1,789,697,800,-1,840,797,832,-1,760,95,607,-1,1143,1283,942,-1,1060,1385,1412,-1,254,311,282,-1,931,1142,1313,-1,787,443,1359,-1,380,258,1227,-1,1198,1386,957,-1,988,174,95,-1,1218,1085,837,-1,89,175,114,-1,1198,374,487,-1,117,116,164,-1,487,374,114,-1,1401,1150,1072,-1,1430,1241,1426,-1,957,1113,258,-1,114,175,487,-1,380,164,116,-1,1406,1436,1220,-1,336,305,236,-1,1072,1023,1374,-1,1220,1436,1386,-1,501,931,769,-1,421,1142,931,-1,413,356,286,-1,1210,828,1124,-1,267,247,433,-1,820,623,529,-1,1417,1427,1088,-1,1267,1354,1138,-1,16,330,607,-1,1396,1338,1117,-1,1109,1171,953,-1,756,589,649,-1,906,800,697,-1,882,482,989,-1,1118,1135,1036,-1,1019,973,1014,-1,1121,1340,1237,-1,959,1073,1017,-1,920,1165,1299,-1,1322,1135,1118,-1,1324,1081,1291,-1,813,969,1140,-1,1258,830,1315,-1,633,1272,969,-1,742,992,1054,-1,1301,1433,1318,-1,1087,1335,1162,-1,1165,920,680,-1,1048,580,519,-1,935,483,540,-1,484,300,212,-1,454,219,526,-1,16,95,22,-1,66,284,35,-1,31,202,43,-1,1297,1397,1160,-1,237,341,310,-1,64,298,63,-1,71,290,48,-1,310,341,604,-1,1161,1297,984,-1,32,71,48,-1,796,1036,1135,-1,1286,1231,1114,-1,1141,948,331,-1,373,182,186,-1,860,978,373,-1,940,165,801,-1,961,1103,1306,-1,860,193,63,-1,342,90,948,-1,580,559,328,-1,1292,801,559,-1,124,744,570,-1,926,1013,301,-1,71,32,73,-1,193,32,63,-1,1305,1200,1235,-1,1040,1174,910,-1,905,1030,908,-1,1011,1052,1128,-1,70,206,230,-1,106,66,25,-1,804,454,1001,-1,237,310,71,-1,862,284,148,-1,177,142,167,-1,1046,831,973,-1,447,961,860,-1,985,885,989,-1,862,985,994,-1,1393,1403,1290,-1,1235,889,877,-1,645,828,620,-1,879,847,840,-1,813,933,581,-1,1281,1158,1016,-1,1346,1303,1337,-1,588,662,602,-1,967,949,1089,-1,805,750,630,-1,388,522,672,-1,189,160,70,-1,1113,1398,1227,-1,1359,1420,1341,-1,1264,1415,1377,-1,635,498,433,-1,507,606,267,-1,247,177,255,-1,151,254,209,-1,460,282,425,-1,329,764,409,-1,1374,1367,1072,-1,1285,1278,1085,-1,425,709,710,-1,725,726,1167,-1,837,924,1250,-1,1280,988,1245,-1,1280,1058,988,-1,575,637,524,-1,852,780,789,-1,1070,1092,696,-1,1435,1339,1328,-1,882,872,238,-1,1151,872,1207,-1,1407,1424,1400,-1,1428,1338,1396,-1,1239,1369,1272,-1,1400,1428,1183,-1,1183,1214,690,-1,530,969,813,-1,383,326,471,-1,652,272,536,-1,272,332,509,-1,488,998,771,-1,1414,1162,1335,-1,923,986,970,-1,45,301,928,-1,928,1013,1074,-1,565,830,595,-1,593,401,344,-1,1368,1357,1097,-1,870,950,684,-1,484,794,1028,-1,1394,1421,1434,-1,1074,1315,1112,-1,1201,1052,595,-1,905,908,593,-1,1193,1252,1192,-1,905,1052,1011,-1,1179,1201,1240,-1,1315,1421,1378,-1,1269,1360,1388,-1,971,1028,782,-1,1378,1360,1202,-1,1291,1081,884,-1,35,284,219,-1,395,576,404,-1,629,309,785,-1,47,17,59,-1,181,234,196,-1,244,334,416,-1,244,371,245,-1,181,603,843,-1,143,122,17,-1,229,42,47,-1,597,650,204,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc5_Geo_5_67_normalIndex_5()
		{
			int[] value = {1050,452,795,-1,129,211,545,-1,773,1094,873,-1,3,23,211,-1,121,239,666,-1,51,261,188,-1,544,417,495,-1,904,544,869,-1,13,223,46,-1,19,166,37,-1,188,210,75,-1,93,36,11,-1,396,410,557,-1,550,445,323,-1,54,18,5,-1,126,118,277,-1,537,1105,826,-1,391,478,583,-1,271,354,726,-1,735,1266,880,-1,1139,1248,671,-1,681,1027,692,-1,578,461,503,-1,535,515,614,-1,271,85,159,-1,346,55,263,-1,880,350,442,-1,995,1248,1139,-1,634,1018,972,-1,1123,1018,1045,-1,1012,1282,1212,-1,853,897,822,-1,128,318,372,-1,6,15,55,-1,105,49,33,-1,15,168,24,-1,49,203,10,-1,1323,1184,1375,-1,1132,1279,1332,-1,1279,1203,1236,-1,987,1159,1132,-1,966,1069,987,-1,1133,1126,1203,-1,34,28,41,-1,259,403,466,-1,656,608,568,-1,464,621,836,-1,214,91,136,-1,610,894,474,-1,1056,1137,1125,-1,214,415,158,-1,1021,592,512,-1,647,427,655,-1,240,200,582,-1,100,44,80,-1,44,28,68,-1,222,225,158,-1,474,325,610,-1,156,97,82,-1,490,947,445,-1,610,450,569,-1,1327,1260,1296,-1,1404,1116,1215,-1,1045,1080,1123,-1,44,213,28,-1,259,100,235,-1,207,216,338,-1,355,275,80,-1,679,201,42,-1,670,274,611,-1,983,869,544,-1,856,216,327,-1,858,946,1053,-1,276,0,39,-1,1136,505,1144,-1,1110,1349,1432,-1,902,892,241,-1,983,1095,1110,-1,1187,1082,1311,-1,441,996,435,-1,441,624,996,-1,1289,1311,1251,-1,670,327,508,-1,349,511,624,-1,1071,996,624,-1,152,141,39,-1,276,452,1096,-1,1149,1108,996,-1,1312,1390,1370,-1,1050,1208,1096,-1,205,136,275,-1,1431,1413,1391,-1,1395,1416,1422,-1,650,597,1098,-1,1234,1298,1129,-1,650,481,218,-1,493,930,952,-1,773,463,173,-1,121,172,30,-1,943,698,1004,-1,615,783,261,-1,3,120,76,-1,210,922,778,-1,62,437,615,-1,1187,1284,651,-1,475,868,410,-1,1196,1077,554,-1,543,242,36,-1,598,562,643,-1,691,826,1347,-1,293,489,156,-1,50,378,321,-1,1189,1154,1123,-1,499,123,295,-1,995,638,179,-1,1176,1059,333,-1,52,243,479,-1,1262,446,691,-1,221,601,354,-1,1263,1355,1329,-1,243,941,1064,-1,1319,1266,1274,-1,941,1329,1064,-1,1319,1191,1199,-1,1355,1191,1319,-1,1266,723,1274,-1,1266,735,723,-1,1223,510,407,-1,510,1223,1197,-1,6,67,10,-1,6,61,67,-1,83,972,168,-1,634,972,83,-1,1012,260,1029,-1,1012,295,260,-1,1027,1100,1131,-1,964,1100,1027,-1,1366,1326,1362,-1,1326,1366,1334,-1,811,878,881,-1,811,816,878,-1,1047,1125,1205,-1,1047,1008,1125,-1,352,156,489,-1,352,97,156,-1,289,65,281,-1,65,289,82,-1,132,347,171,-1,132,366,347,-1,640,614,578,-1,640,654,614,-1,1105,1358,1422,-1,1105,1091,1358,-1,755,916,675,-1,755,1007,916,-1,654,745,661,-1,654,640,745,-1,322,516,386,-1,322,419,516,-1,644,1082,1187,-1,1082,644,567,-1,139,30,112,-1,12,30,139,-1,314,873,603,-1,873,314,531,-1,30,239,121,-1,30,145,239,-1,1276,1157,1257,-1,1172,1157,1276,-1,945,1221,1215,-1,945,982,1221,-1,1215,1402,1431,-1,1402,1215,1221,-1,1413,1383,1416,-1,1383,1413,1372,-1,1262,1383,1362,-1,1262,1347,1383,-1,1387,1373,1370,-1,1405,1373,1387,-1,349,441,325,-1,349,624,441,-1,131,523,459,-1,435,523,131,-1,1196,1255,1251,-1,1432,1255,1196,-1,834,1144,505,-1,834,1146,1144,-1,241,207,379,-1,207,241,27,-1,679,199,201,-1,751,199,679,-1,135,27,241,-1,131,27,135,-1,1061,1149,1071,-1,1312,1149,1061,-1,1149,1312,1370,-1,1390,670,611,-1,1390,1312,670,-1,262,439,441,-1,324,439,262,-1,468,270,279,-1,438,270,468,-1,351,270,412,-1,351,222,270,-1,240,265,134,-1,240,394,265,-1,724,693,807,-1,724,715,693,-1,245,340,68,-1,340,245,371,-1,184,197,257,-1,197,184,127,-1,539,546,400,-1,539,612,546,-1,629,1184,552,-1,629,1211,1184,-1,925,319,233,-1,319,925,963,-1,1078,888,990,-1,888,1078,956,-1,196,629,552,-1,196,256,629,-1,1129,930,900,-1,1129,1111,930,-1,1334,1287,1261,-1,1330,1287,1334,-1,600,932,788,-1,932,600,673,-1,493,338,229,-1,338,493,514,-1,273,651,753,-1,651,273,302,-1,1042,1224,1137,-1,1042,1212,1224,-1,632,909,807,-1,632,532,909,-1,52,333,105,-1,479,333,52,-1,316,99,86,-1,316,317,99,-1,1062,1111,1153,-1,1111,1062,1053,-1,502,279,434,-1,279,502,468,-1,720,779,763,-1,721,779,720,-1,577,480,608,-1,466,480,577,-1,266,402,382,-1,266,265,402,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc5_Geo_5_67_normalIndex_6()
		{
			int[] value = {1069,956,1078,-1,966,956,1069,-1,1236,963,925,-1,963,1236,1186,-1,938,1057,895,-1,1132,1057,938,-1,851,761,775,-1,761,851,895,-1,761,740,546,-1,999,740,761,-1,232,60,220,-1,60,232,101,-1,494,600,542,-1,549,600,494,-1,60,56,24,-1,56,60,85,-1,486,616,549,-1,594,616,486,-1,853,854,874,-1,854,853,809,-1,802,809,859,-1,802,770,809,-1,1010,859,1047,-1,1010,802,859,-1,1268,1190,1260,-1,1190,1268,1163,-1,1330,1288,1287,-1,1330,1282,1288,-1,1059,1361,1317,-1,1059,1176,1361,-1,107,153,119,-1,153,107,130,-1,594,515,520,-1,594,486,515,-1,178,138,315,-1,178,161,138,-1,1018,707,1045,-1,707,1018,709,-1,691,178,269,-1,446,178,691,-1,848,812,914,-1,848,746,812,-1,914,747,781,-1,865,747,914,-1,916,792,675,-1,792,916,776,-1,352,911,378,-1,912,911,352,-1,842,609,321,-1,842,793,609,-1,113,429,93,-1,399,429,113,-1,411,429,399,-1,36,75,19,-1,242,75,36,-1,850,1007,755,-1,850,1020,1007,-1,1246,1157,1153,-1,1246,1257,1157,-1,922,904,778,-1,922,1166,904,-1,1106,759,1166,-1,666,759,1106,-1,436,377,698,-1,436,419,377,-1,1049,622,592,-1,1049,1102,622,-1,531,359,485,-1,359,531,314,-1,491,385,382,-1,385,491,465,-1,767,741,786,-1,741,767,765,-1,806,586,655,-1,806,786,586,-1,528,795,340,-1,867,795,528,-1,702,465,701,-1,428,465,702,-1,309,234,384,-1,256,234,309,-1,655,839,806,-1,655,829,839,-1,888,839,990,-1,888,810,839,-1,77,319,170,-1,319,77,233,-1,499,616,318,-1,616,499,673,-1,960,704,703,-1,960,899,704,-1,1011,657,864,-1,1128,657,1011,-1,572,444,431,-1,599,444,572,-1,631,627,599,-1,631,658,627,-1,703,1006,960,-1,703,702,1006,-1,1209,962,1222,-1,935,962,1209,-1,734,676,736,-1,676,734,674,-1,1051,1173,1175,-1,1173,1051,1055,-1,1231,1297,1161,-1,1286,1297,1231,-1,668,344,814,-1,344,668,343,-1,1293,1433,1425,-1,1293,1308,1433,-1,1054,1118,1019,-1,1275,1118,1054,-1,652,1194,774,-1,1032,1194,652,-1,587,933,1183,-1,587,581,933,-1,307,285,192,-1,307,326,285,-1,1207,1256,1151,-1,1256,1207,1369,-1,1104,1339,1407,-1,1104,1005,1339,-1,959,362,883,-1,571,362,959,-1,1382,1354,1267,-1,1354,1382,1345,-1,1302,1380,1399,-1,1302,1314,1380,-1,348,903,330,-1,348,847,903,-1,798,1041,1117,-1,798,756,1041,-1,832,637,879,-1,832,743,637,-1,1169,728,725,-1,1086,728,1169,-1,195,723,164,-1,195,671,723,-1,409,683,329,-1,683,409,710,-1,1300,1250,1280,-1,1307,1250,1300,-1,919,861,958,-1,919,821,861,-1,944,958,976,-1,944,919,958,-1,1331,1300,1309,-1,1331,1307,1300,-1,1381,1169,1167,-1,1389,1169,1381,-1,250,163,558,-1,163,250,117,-1,497,209,282,-1,497,432,209,-1,88,157,142,-1,88,108,157,-1,885,555,626,-1,885,871,555,-1,605,628,573,-1,635,628,605,-1,564,623,685,-1,564,596,623,-1,887,976,937,-1,887,944,976,-1,1333,1309,1313,-1,1333,1331,1309,-1,1389,1415,1420,-1,1389,1381,1415,-1,887,769,819,-1,769,887,838,-1,665,890,672,-1,890,665,825,-1,144,363,408,-1,144,115,363,-1,538,522,492,-1,522,538,584,-1,278,155,228,-1,278,313,155,-1,518,714,711,-1,467,714,518,-1,208,308,228,-1,208,283,308,-1,361,304,345,-1,361,368,304,-1,891,1055,951,-1,1055,891,1031,-1,1226,974,1180,-1,974,1226,877,-1,716,803,768,-1,716,722,803,-1,974,863,967,-1,815,863,974,-1,677,602,662,-1,815,602,677,-1,1195,1281,1346,-1,1281,1195,1213,-1,738,676,748,-1,736,676,738,-1,1220,487,556,-1,1220,1198,487,-1,630,727,588,-1,630,724,727,-1,1283,1147,1353,-1,1283,1143,1147,-1,927,1147,1143,-1,927,981,1147,-1,103,88,69,-1,108,88,103,-1,718,548,729,-1,548,718,477,-1,818,472,1119,-1,818,406,472,-1,363,884,1081,-1,884,363,251,-1,699,1033,1039,-1,1033,699,890,-1,388,160,189,-1,160,388,453,-1,1178,1101,1030,-1,1178,1253,1101,-1,1192,1270,1368,-1,1270,1192,1252,-1,1031,910,1174,-1,1031,805,910,-1,1213,1037,1089,-1,1037,1213,1195,-1,722,777,803,-1,722,733,777,-1,733,748,777,-1,733,738,748,-1,1295,1429,1434,-1,1295,1325,1429,-1,149,32,193,-1,149,73,32,-1,154,73,249,-1,73,154,71,-1,1230,1429,1437,-1,1230,1243,1429,-1,1229,921,1083,-1,1048,921,1229,-1,1437,1348,1230,-1,1437,1397,1348,-1,45,292,301,-1,45,14,292,-1,1249,1306,1409,-1,1249,978,1306,-1,801,328,559,-1,801,165,328,-1,1217,1409,1229,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc5_Geo_5_67_normalIndex_7()
		{
			int[] value = {1217,1249,1409,-1,362,186,238,-1,362,125,186,-1,1115,1306,1103,-1,1115,1292,1306,-1,1090,1348,1286,-1,1090,954,1348,-1,1084,646,1097,-1,646,1084,984,-1,133,180,162,-1,180,133,140,-1,58,74,69,-1,53,74,58,-1,484,804,794,-1,454,804,484,-1,471,1048,519,-1,921,1048,471,-1,1032,1293,1194,-1,1164,1293,1032,-1,975,923,565,-1,1087,923,975,-1,1301,1425,1433,-1,1301,1299,1425,-1,659,1239,509,-1,659,1182,1239,-1,1324,1258,1315,-1,1291,1258,1324,-1,1067,872,1151,-1,872,1067,883,-1,580,560,519,-1,580,451,560,-1,664,832,797,-1,664,743,832,-1,1041,690,1214,-1,690,1041,766,-1,133,348,79,-1,133,369,348,-1,861,906,929,-1,800,906,861,-1,167,226,215,-1,167,142,226,-1,1427,1060,1088,-1,1427,1385,1060,-1,423,381,529,-1,423,312,381,-1,498,555,507,-1,555,498,561,-1,413,706,681,-1,470,706,413,-1,1264,497,460,-1,497,1264,1219,-1,380,1241,443,-1,380,1227,1241,-1,837,236,924,-1,837,336,236,-1,174,1058,217,-1,988,1058,174,-1,246,525,669,-1,246,250,525,-1,953,760,607,-1,953,1171,760,-1,246,117,250,-1,246,89,117,-1,723,163,164,-1,735,163,723,-1,924,217,1058,-1,924,236,217,-1,1367,1430,1426,-1,1430,1367,1374,-1,460,1341,1264,-1,460,764,1341,-1,1177,421,405,-1,421,1177,1142,-1,336,413,305,-1,336,470,413,-1,109,69,74,-1,109,103,69,-1,561,626,555,-1,626,561,620,-1,312,389,231,-1,423,389,312,-1,1283,1088,942,-1,1088,1283,1343,-1,1371,1147,1156,-1,1371,1353,1147,-1,1092,1338,1267,-1,1338,1092,1070,-1,821,800,861,-1,789,800,821,-1,79,330,16,-1,348,330,79,-1,521,690,766,-1,426,690,521,-1,1067,1384,1351,-1,1151,1384,1067,-1,1121,991,1014,-1,1009,991,1121,-1,1121,1017,1122,-1,1121,1014,1017,-1,1135,1299,1165,-1,1322,1299,1135,-1,1188,488,742,-1,1188,998,488,-1,1335,975,1265,-1,1335,1087,975,-1,1301,845,920,-1,1301,1318,845,-1,962,339,791,-1,962,540,339,-1,35,212,8,-1,35,219,212,-1,53,25,22,-1,53,58,25,-1,53,174,74,-1,95,174,53,-1,339,31,300,-1,339,202,31,-1,1160,341,984,-1,341,1160,604,-1,1000,862,994,-1,1000,1114,862,-1,678,182,373,-1,678,331,182,-1,940,1292,1115,-1,940,801,1292,-1,4,482,238,-1,4,165,482,-1,1103,447,833,-1,1103,961,447,-1,593,387,401,-1,593,646,387,-1,1249,1141,678,-1,1217,1141,1249,-1,678,978,1249,-1,678,373,978,-1,298,376,365,-1,298,124,376,-1,298,64,124,-1,1394,1429,1243,-1,1394,1434,1429,-1,831,1036,796,-1,1036,831,1046,-1,799,748,739,-1,799,777,748,-1,855,777,799,-1,855,803,777,-1,1226,1393,1235,-1,1226,1410,1393,-1,891,805,1031,-1,891,750,805,-1,1305,1173,1174,-1,1173,1305,1290,-1,1270,1247,1175,-1,1270,1252,1247,-1,890,899,1033,-1,899,890,825,-1,251,808,884,-1,808,251,230,-1,1119,506,1202,-1,1119,472,506,-1,548,361,444,-1,548,477,361,-1,808,1240,884,-1,1240,808,1179,-1,483,307,540,-1,326,307,483,-1,151,103,176,-1,151,108,103,-1,501,838,653,-1,501,769,838,-1,1083,935,1209,-1,1083,921,935,-1,790,1165,680,-1,790,1135,1165,-1,215,392,299,-1,392,215,226,-1,533,805,630,-1,910,805,533,-1,756,766,1041,-1,756,649,766,-1,739,676,684,-1,739,748,676,-1,662,720,677,-1,662,721,720,-1,768,855,817,-1,768,803,855,-1,477,368,361,-1,477,467,368,-1,472,208,506,-1,472,283,208,-1,388,492,522,-1,388,313,492,-1,672,584,665,-1,672,522,584,-1,115,251,363,-1,115,72,251,-1,708,825,665,-1,825,708,705,-1,1142,1333,1313,-1,1177,1333,1142,-1,1156,981,979,-1,981,1156,1147,-1,1333,1316,1331,-1,1336,1316,1333,-1,819,944,887,-1,819,844,944,-1,573,596,564,-1,573,628,596,-1,623,585,529,-1,623,596,585,-1,645,573,541,-1,645,605,573,-1,635,561,498,-1,605,561,635,-1,871,507,555,-1,871,606,507,-1,148,106,177,-1,66,106,148,-1,150,432,405,-1,150,209,432,-1,1130,1309,1300,-1,1309,1130,1065,-1,977,976,958,-1,976,977,980,-1,1285,1250,1307,-1,1285,1218,1250,-1,1245,1109,1130,-1,1245,1171,1109,-1,707,425,390,-1,707,709,425,-1,824,637,575,-1,824,879,637,-1,824,697,780,-1,824,575,697,-1,589,664,649,-1,589,743,664,-1,798,1070,660,-1,1070,798,1117,-1,369,847,348,-1,369,840,847,-1,1427,1371,1399,-1,1427,1417,1371,-1,1412,1399,1380,-1,1399,1412,1385,-1,1005,1328,1339,-1,1005,1035,1328,-1,1005,1024,1035,-1,1073,883,1067,-1,1073,959,883,-1,1369,1407,1411,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc5_Geo_5_67_normalIndex_8()
		{
			int[] value = {1369,1207,1407,-1,1182,1369,1239,-1,1182,1256,1369,-1,79,140,133,-1,79,40,140,-1,581,414,375,-1,414,581,587,-1,560,633,969,-1,633,560,536,-1,332,771,659,-1,332,488,771,-1,430,488,332,-1,1054,991,742,-1,1019,991,1054,-1,814,401,845,-1,401,814,344,-1,1013,1342,1325,-1,1342,1013,926,-1,1051,951,1055,-1,1051,968,951,-1,684,674,625,-1,684,676,674,-1,870,631,782,-1,625,631,870,-1,646,908,1097,-1,646,593,908,-1,968,702,701,-1,968,1006,702,-1,1201,1128,1052,-1,1201,1179,1128,-1,599,782,631,-1,572,782,599,-1,599,548,444,-1,627,548,599,-1,1119,1360,1269,-1,1119,1202,1360,-1,1128,808,657,-1,1179,808,1128,-1,899,1079,1033,-1,1079,899,960,-1,1325,1074,1013,-1,1074,1325,1295,-1,257,400,395,-1,257,360,400,-1,146,552,358,-1,146,196,552,-1,990,829,1003,-1,990,839,829,-1,810,806,839,-1,806,810,784,-1,360,197,364,-1,360,257,197,-1,465,364,385,-1,364,465,428,-1,784,786,806,-1,784,767,786,-1,688,465,491,-1,688,701,465,-1,1049,846,1102,-1,846,1049,867,-1,1102,773,622,-1,1102,1094,773,-1,666,1004,424,-1,666,1106,1004,-1,62,86,99,-1,51,86,62,-1,500,850,252,-1,858,850,500,-1,1153,1129,1246,-1,1129,1153,1111,-1,19,11,36,-1,19,37,11,-1,54,11,21,-1,5,11,54,-1,429,811,550,-1,411,811,429,-1,118,18,92,-1,57,18,118,-1,378,842,321,-1,378,911,842,-1,126,281,65,-1,126,303,281,-1,489,912,352,-1,489,866,912,-1,643,916,1038,-1,776,916,643,-1,914,686,848,-1,781,686,914,-1,781,642,686,-1,613,591,537,-1,613,551,591,-1,731,442,730,-1,731,880,442,-1,692,1045,707,-1,692,1080,1045,-1,461,194,503,-1,461,277,194,-1,277,456,303,-1,461,456,277,-1,520,372,594,-1,315,372,520,-1,85,153,159,-1,85,119,153,-1,1228,907,1154,-1,1002,907,1228,-1,1282,1350,1296,-1,1350,1282,1330,-1,881,550,811,-1,550,881,569,-1,823,816,793,-1,816,823,878,-1,918,897,1008,-1,822,897,918,-1,809,822,859,-1,809,853,822,-1,303,457,281,-1,456,457,303,-1,372,616,594,-1,372,318,616,-1,60,119,85,-1,60,101,119,-1,33,10,67,-1,33,49,10,-1,457,542,455,-1,494,542,457,-1,101,260,104,-1,101,232,260,-1,546,775,761,-1,546,612,775,-1,1076,1294,1025,-1,1294,1076,1323,-1,895,901,938,-1,895,851,901,-1,1279,1159,1203,-1,1132,1159,1279,-1,714,917,711,-1,714,966,917,-1,1186,1026,963,-1,1026,1186,1126,-1,718,966,714,-1,718,956,966,-1,568,480,412,-1,568,608,480,-1,608,694,577,-1,608,689,694,-1,717,763,694,-1,717,720,763,-1,849,909,936,-1,909,849,807,-1,911,874,854,-1,911,866,874,-1,911,912,866,-1,468,741,700,-1,502,741,468,-1,592,76,120,-1,622,76,592,-1,306,875,224,-1,306,772,875,-1,532,582,909,-1,532,394,582,-1,563,200,213,-1,547,200,563,-1,289,156,82,-1,293,156,289,-1,289,504,293,-1,504,289,455,-1,1350,1334,1366,-1,1350,1330,1334,-1,1093,990,1003,-1,990,1093,1078,-1,925,291,1025,-1,233,291,925,-1,1232,629,785,-1,629,1232,1211,-1,705,539,704,-1,539,705,612,-1,169,245,68,-1,169,185,245,-1,532,402,265,-1,402,532,632,-1,403,225,351,-1,403,235,225,-1,663,722,656,-1,722,663,733,-1,695,733,663,-1,733,695,738,-1,7,143,2,-1,110,143,7,-1,1405,1289,1244,-1,1405,1364,1289,-1,1364,1365,1284,-1,1364,1405,1365,-1,7,199,0,-1,199,7,201,-1,514,207,338,-1,514,379,207,-1,87,0,199,-1,0,87,39,-1,1144,1390,1136,-1,1423,1390,1144,-1,131,191,27,-1,459,191,131,-1,1110,667,892,-1,667,1110,1273,-1,1021,1049,592,-1,1049,1021,1050,-1,1387,1144,1146,-1,1387,1423,1144,-1,325,152,349,-1,152,325,205,-1,87,349,152,-1,349,87,511,-1,795,355,340,-1,795,452,355,-1,1257,1304,1276,-1,1257,1298,1304,-1,1362,1372,1366,-1,1362,1383,1372,-1,636,945,647,-1,636,982,945,-1,23,173,102,-1,23,76,173,-1,458,296,166,-1,458,619,296,-1,868,567,557,-1,868,1082,567,-1,198,62,99,-1,198,248,62,-1,562,776,643,-1,746,776,562,-1,755,393,223,-1,755,675,393,-1,1091,1304,1358,-1,1304,1091,1068,-1,534,578,503,-1,534,640,578,-1,1212,1271,1224,-1,1296,1271,1212,-1,378,9,352,-1,50,9,378,-1,1056,1008,897,-1,1008,1056,1125,-1,881,934,1043,-1,881,878,934,-1,706,1027,681,-1,706,964,1027,-1,232,1029,260,-1,1002,1029,232,-1,78,634,83,-1,638,634,78,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc5_Geo_5_67_normalIndex_9()
		{
			int[] value = {1197,601,510,-1,1100,601,1197,-1,407,1262,1223,-1,407,446,1262,-1,1064,333,479,-1,333,1064,1176,-1,691,478,826,-1,269,478,691,-1,913,1191,772,-1,1191,913,1199,-1,964,719,682,-1,964,706,719,-1,179,1059,995,-1,1059,179,203,-1,907,168,972,-1,907,220,168,-1,1261,1326,1334,-1,1254,1326,1261,-1,1223,1362,1326,-1,1223,1262,1362,-1,1181,1010,1047,-1,1181,1190,1010,-1,489,504,757,-1,489,293,504,-1,82,20,65,-1,20,82,97,-1,859,1008,1047,-1,859,918,1008,-1,614,583,535,-1,654,583,614,-1,1038,1007,1172,-1,1007,1038,916,-1,566,370,288,-1,566,554,370,-1,181,111,122,-1,181,146,111,-1,210,783,922,-1,783,210,261,-1,12,137,3,-1,139,137,12,-1,531,463,873,-1,531,353,463,-1,145,417,239,-1,145,274,417,-1,902,952,939,-1,379,952,902,-1,379,514,952,-1,900,1234,1129,-1,1234,900,1098,-1,1431,1379,1413,-1,1402,1379,1431,-1,1416,1391,1413,-1,1416,1395,1391,-1,1251,1077,1196,-1,1077,1251,1311,-1,856,751,679,-1,1061,751,856,-1,1432,1107,1255,-1,1432,1349,1107,-1,1071,751,1061,-1,511,751,1071,-1,505,276,834,-1,505,98,276,-1,1053,939,952,-1,1053,946,939,-1,495,1095,544,-1,495,508,1095,-1,274,129,611,-1,145,129,274,-1,324,450,439,-1,324,490,450,-1,214,894,415,-1,214,474,894,-1,438,700,641,-1,438,468,700,-1,641,412,438,-1,568,412,641,-1,44,259,213,-1,259,44,100,-1,693,687,553,-1,687,693,715,-1,340,416,528,-1,340,371,416,-1,334,257,404,-1,257,334,184,-1,1277,1057,1259,-1,1277,999,1057,-1,400,740,395,-1,400,546,740,-1,552,1076,358,-1,552,1184,1076,-1,963,617,319,-1,617,963,1026,-1,888,718,729,-1,888,956,718,-1,1232,1344,1211,-1,1232,1356,1344,-1,1379,1372,1413,-1,1379,1327,1372,-1,1189,1261,1287,-1,1189,1155,1261,-1,618,600,788,-1,618,542,600,-1,169,34,147,-1,34,169,68,-1,727,807,849,-1,724,807,727,-1,941,224,875,-1,243,224,941,-1,765,738,695,-1,765,736,738,-1,158,235,91,-1,158,225,235,-1,836,763,779,-1,836,621,763,-1,577,464,466,-1,577,621,464,-1,656,716,689,-1,722,716,656,-1,464,213,259,-1,464,563,213,-1,382,553,491,-1,382,402,553,-1,1133,1078,1093,-1,1069,1078,1133,-1,1069,1159,987,-1,1133,1159,1069,-1,917,938,901,-1,917,987,938,-1,1025,1236,925,-1,1236,1025,1294,-1,775,712,851,-1,708,712,775,-1,1277,1232,1152,-1,1356,1232,1277,-1,105,203,49,-1,105,333,203,-1,673,549,616,-1,673,600,549,-1,24,55,15,-1,55,24,56,-1,128,104,123,-1,107,104,128,-1,462,549,494,-1,486,549,462,-1,835,874,757,-1,874,835,853,-1,809,823,854,-1,809,770,823,-1,934,802,1010,-1,934,770,802,-1,1282,1029,1288,-1,1282,1012,1029,-1,995,1274,1248,-1,995,1059,1274,-1,263,56,271,-1,263,55,56,-1,138,107,128,-1,130,107,138,-1,476,486,462,-1,515,486,476,-1,578,515,476,-1,614,515,578,-1,187,138,161,-1,187,130,138,-1,683,1034,1139,-1,683,710,1034,-1,723,1248,1274,-1,671,1248,723,-1,728,263,725,-1,728,346,263,-1,393,642,320,-1,642,393,686,-1,537,1091,1105,-1,591,1091,537,-1,57,126,38,-1,118,126,57,-1,81,54,171,-1,81,92,54,-1,1077,475,554,-1,1077,868,475,-1,93,323,36,-1,429,323,93,-1,188,242,288,-1,188,75,242,-1,1157,1007,1020,-1,1007,1157,1172,-1,1062,1157,1020,-1,1153,1157,1062,-1,1111,952,930,-1,1111,1053,952,-1,239,759,666,-1,239,417,759,-1,322,377,419,-1,322,172,377,-1,3,145,12,-1,145,3,129,-1,110,0,98,-1,7,0,110,-1,141,205,275,-1,141,152,205,-1,266,385,264,-1,266,382,385,-1,765,734,736,-1,765,767,734,-1,481,229,218,-1,481,493,229,-1,428,703,473,-1,702,703,428,-1,427,829,655,-1,427,469,829,-1,810,729,732,-1,729,810,888,-1,170,617,469,-1,617,170,319,-1,785,420,576,-1,785,309,420,-1,704,473,703,-1,539,473,704,-1,819,931,1120,-1,819,769,931,-1,1081,1378,1145,-1,1378,1081,1324,-1,431,971,572,-1,431,818,971,-1,732,658,737,-1,627,658,732,-1,1233,971,1269,-1,1233,1028,971,-1,960,1075,1079,-1,1006,1075,960,-1,1075,1175,1238,-1,1175,1075,1051,-1,590,1052,905,-1,595,1052,590,-1,737,674,734,-1,737,658,674,-1,870,1001,950,-1,804,1001,870,-1,1175,1290,1270,-1,1290,1175,1173,-1,344,595,590,-1,343,595,344,-1,154,680,237,-1,154,790,680,-1,742,1237,1188,-1,1237,742,1009,-1,1376,1256,1182,-1,1376,1384,1256,-1,652,332,272,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc5_Geo_5_67_normalIndex_10()
		{
			int[] value = {652,774,332,-1,536,509,633,-1,272,509,536,-1,280,192,285,-1,180,192,280,-1,426,587,690,-1,587,426,414,-1,1400,1418,1428,-1,1400,1424,1418,-1,1170,1345,1314,-1,1242,1345,1170,-1,1242,1354,1345,-1,828,648,1124,-1,648,828,645,-1,541,1088,1060,-1,541,527,1088,-1,649,521,766,-1,649,664,521,-1,696,524,660,-1,696,575,524,-1,637,589,524,-1,589,637,743,-1,1245,760,1171,-1,1245,988,760,-1,1086,730,728,-1,1023,730,1086,-1,356,681,692,-1,413,681,356,-1,1300,1245,1130,-1,1280,1245,1300,-1,919,844,886,-1,844,919,944,-1,1285,1331,1316,-1,1285,1307,1331,-1,84,380,116,-1,258,380,84,-1,150,108,151,-1,157,108,150,-1,247,148,177,-1,247,267,148,-1,579,433,389,-1,639,433,579,-1,628,639,579,-1,639,628,635,-1,574,685,942,-1,574,564,685,-1,937,980,979,-1,937,976,980,-1,1120,1309,1065,-1,1313,1309,1120,-1,1381,1377,1415,-1,1381,1352,1377,-1,838,937,896,-1,838,887,937,-1,1377,1204,1219,-1,1377,1336,1204,-1,699,672,890,-1,699,453,672,-1,155,115,144,-1,94,115,155,-1,713,584,538,-1,713,712,584,-1,538,711,713,-1,711,538,518,-1,345,308,406,-1,345,304,308,-1,1031,1173,1055,-1,1174,1173,1031,-1,717,768,749,-1,717,716,768,-1,815,749,863,-1,677,749,815,-1,588,721,662,-1,727,721,588,-1,284,955,526,-1,284,862,955,-1,1158,950,1001,-1,1158,965,950,-1,326,375,285,-1,326,383,375,-1,1340,1122,1351,-1,1122,1340,1121,-1,1113,1386,1320,-1,1113,957,1386,-1,877,496,602,-1,889,496,877,-1,362,357,125,-1,357,362,571,-1,896,927,820,-1,927,896,981,-1,106,69,88,-1,106,58,69,-1,72,230,251,-1,96,230,72,-1,699,864,287,-1,1039,864,699,-1,431,406,818,-1,431,345,406,-1,1081,408,363,-1,1081,1145,408,-1,657,287,864,-1,657,206,287,-1,287,453,699,-1,453,287,160,-1,1101,908,1030,-1,908,1101,1015,-1,1097,1192,1368,-1,1097,1066,1192,-1,750,724,630,-1,715,724,750,-1,1174,1200,1305,-1,1040,1200,1174,-1,1168,1089,1022,-1,1089,1168,1216,-1,1168,965,1158,-1,1168,997,965,-1,994,1103,1000,-1,994,1115,1103,-1,1243,1083,1394,-1,1243,754,1083,-1,1409,1292,1185,-1,1409,1306,1292,-1,1230,754,1243,-1,1230,752,754,-1,1229,1185,1048,-1,1229,1409,1185,-1,292,604,926,-1,290,604,292,-1,182,238,186,-1,182,4,238,-1,1000,1090,1114,-1,833,1090,1000,-1,833,365,954,-1,365,833,447,-1,63,48,64,-1,63,32,48,-1,25,31,43,-1,31,25,8,-1,397,840,369,-1,397,797,840,-1,140,43,202,-1,140,40,43,-1,794,870,782,-1,804,870,794,-1,280,162,180,-1,280,268,162,-1,1194,1408,1321,-1,1293,1408,1194,-1,565,1112,830,-1,565,923,1112,-1,1408,1299,1322,-1,1408,1425,1299,-1,357,796,249,-1,357,831,796,-1,973,1118,1046,-1,1019,1118,973,-1,1207,1104,1407,-1,1104,1207,882,-1,1117,1214,1396,-1,1214,1117,1041,-1,162,369,133,-1,162,397,369,-1,1109,852,876,-1,953,852,1109,-1,929,1138,1242,-1,906,1138,929,-1,231,215,312,-1,231,167,215,-1,167,255,177,-1,231,255,167,-1,620,1024,626,-1,1024,620,828,-1,685,820,927,-1,685,623,820,-1,433,507,267,-1,507,433,498,-1,236,109,217,-1,236,183,109,-1,305,176,183,-1,305,286,176,-1,299,931,501,-1,931,299,392,-1,1219,432,497,-1,432,1219,1204,-1,381,501,653,-1,381,299,501,-1,1072,525,558,-1,525,1072,1150,-1,758,336,837,-1,758,470,336,-1,556,246,669,-1,175,246,556,-1,669,1150,1134,-1,1150,669,525,-1,116,89,84,-1,89,116,117,-1,719,470,758,-1,706,470,719,-1,1401,1134,1150,-1,1134,1401,1406,-1,764,1359,1341,-1,764,787,1359,-1,405,1204,1177,-1,405,432,1204,-1,356,254,286,-1,254,356,311,-1,109,176,103,-1,109,183,176,-1,74,217,109,-1,174,217,74,-1,433,255,389,-1,247,255,433,-1,927,942,685,-1,942,927,1143,-1,1417,1353,1371,-1,1417,1343,1353,-1,423,579,389,-1,579,423,517,-1,852,821,876,-1,852,789,821,-1,426,397,268,-1,426,521,397,-1,1376,1237,1340,-1,1188,1237,1376,-1,831,571,893,-1,357,571,831,-1,992,1275,1054,-1,992,1321,1275,-1,1265,1414,1335,-1,1414,1265,1363,-1,202,540,307,-1,202,339,540,-1,66,8,25,-1,66,35,8,-1,43,22,25,-1,40,22,43,-1,1164,993,744,-1,1164,1032,993,-1,292,48,290,-1,48,292,14,-1,401,440,845,-1,401,387,440,-1,752,570,754,-1,752,376,570,-1,331,4,182,-1,90,4,331,-1,752,365,376,-1,752,954,365,-1,1160,926,604,-1,926,1160,1342,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getc5_Geo_5_67_normalIndex_11()
		{
			int[] value = {519,383,471,-1,530,383,519,-1,342,993,898,-1,948,993,342,-1,1308,1164,827,-1,1308,1293,1164,-1,985,1115,994,-1,1115,985,940,-1,526,1225,1016,-1,1225,526,955,-1,739,997,799,-1,997,739,965,-1,1022,799,997,-1,1022,855,799,-1,1180,1392,1226,-1,1180,1337,1392,-1,687,750,891,-1,687,715,750,-1,1015,1097,908,-1,1097,1015,1066,-1,1247,1238,1175,-1,1238,1247,1310,-1,899,705,704,-1,899,825,705,-1,808,206,657,-1,808,230,206,-1,1145,506,408,-1,1145,1202,506,-1,444,345,431,-1,444,361,345,-1,94,72,115,-1,72,94,70,-1,176,254,151,-1,254,176,286,-1,838,820,653,-1,820,838,896,-1,1403,1270,1290,-1,1403,1368,1270,-1,857,910,533,-1,910,857,1040,-1,556,1134,1220,-1,1134,556,669,-1,1363,845,1318,-1,1363,814,845,-1,684,965,739,-1,684,950,965,-1,564,541,573,-1,574,541,564,-1,574,527,541,-1,533,588,496,-1,533,630,588,-1,677,717,749,-1,720,717,677,-1,749,817,863,-1,817,749,768,-1,949,855,1022,-1,817,855,949,-1,467,718,714,-1,718,467,477,-1,406,283,472,-1,406,308,283,-1,278,368,448,-1,278,304,368,-1,492,518,538,-1,518,492,448,-1,208,408,506,-1,208,144,408,-1,712,665,584,-1,712,708,665,-1,206,160,287,-1,206,70,160,-1,1177,1336,1333,-1,1204,1336,1177,-1,896,979,981,-1,896,937,979,-1,1426,1401,1367,-1,1398,1401,1426,-1,1316,1377,1352,-1,1377,1316,1336,-1,819,1065,844,-1,1120,1065,819,-1,979,1148,1156,-1,979,980,1148,-1,585,628,579,-1,585,596,628,-1,529,517,423,-1,529,585,517,-1,620,605,645,-1,620,561,605,-1,405,157,150,-1,421,157,405,-1,164,443,195,-1,443,164,380,-1,1285,1352,1278,-1,1352,1285,1316,-1,1065,886,844,-1,1065,1130,886,-1,980,1170,1148,-1,980,977,1170,-1,1242,977,929,-1,977,1242,1170,-1,876,1130,1109,-1,876,886,1130,-1,390,692,707,-1,356,692,390,-1,1023,731,730,-1,558,731,1023,-1,847,824,903,-1,847,879,824,-1,756,524,589,-1,756,660,524,-1,798,660,756,-1,521,797,397,-1,521,664,797,-1,527,942,1088,-1,942,527,574,-1,1156,1302,1371,-1,1302,1156,1148,-1,648,1060,1124,-1,1060,648,541,-1,1419,1314,1345,-1,1419,1380,1314,-1,626,1005,885,-1,626,1024,1005,-1,1424,1382,1418,-1,1424,1435,1382,-1,426,280,414,-1,426,268,280,-1,280,375,414,-1,280,285,375,-1,1351,1376,1340,-1,1351,1384,1376,-1,430,774,992,-1,774,430,332,-1,920,237,680,-1,920,440,237,-1,1437,1325,1342,-1,1437,1429,1325,-1,968,688,951,-1,688,968,701,-1,625,658,631,-1,674,658,625,-1,1075,968,1051,-1,1075,1006,968,-1,1238,1079,1075,-1,1079,1238,1178,-1,729,627,732,-1,729,548,627,-1,818,1269,971,-1,818,1119,1269,-1,1033,1178,1039,-1,1178,1033,1079,-1,359,110,418,-1,359,143,110,-1,360,539,400,-1,360,473,539,-1,59,358,291,-1,59,111,358,-1,469,1003,829,-1,1003,469,617,-1,784,732,737,-1,784,810,732,-1,469,204,170,-1,204,469,427,-1,364,473,360,-1,364,428,473,-1,264,364,197,-1,264,385,364,-1,384,846,513,-1,384,843,846,-1,767,737,734,-1,737,767,784,-1,434,586,502,-1,434,636,586,-1,147,264,169,-1,147,266,264,-1,843,1102,846,-1,843,1094,1102,-1,98,418,110,-1,98,505,418,-1,449,545,253,-1,449,485,545,-1,753,1284,1208,-1,651,1284,753,-1,198,698,248,-1,198,422,698,-1,615,1106,783,-1,943,1106,615,-1,943,1004,1106,-1,778,869,458,-1,778,904,869,-1,1020,858,1062,-1,1020,850,858,-1,1298,1358,1304,-1,1395,1358,1298,-1,21,37,13,-1,11,37,21,-1,171,21,132,-1,171,54,21,-1,554,367,370,-1,367,554,475,-1,92,277,118,-1,92,194,277,-1,194,92,81,-1,57,227,18,-1,57,26,227,-1,38,26,57,-1,38,50,26,-1,65,9,38,-1,65,20,9,-1,591,1068,1091,-1,598,1068,591,-1,366,642,781,-1,366,320,642,-1,776,848,792,-1,848,776,746,-1,745,613,661,-1,613,745,865,-1,812,613,865,-1,551,613,812,-1,187,407,510,-1,187,161,407,-1,730,346,728,-1,730,442,346,-1,337,178,315,-1,269,178,337,-1,187,153,130,-1,221,153,187,-1,462,461,476,-1,462,456,461,-1,128,315,138,-1,128,372,315,-1,1002,1288,1029,-1,1288,1002,1228,-1,1327,1268,1260,-1,1327,1379,1268,-1,1043,569,881,-1,569,1043,915,-1,878,770,934,-1,878,823,770,-1,842,854,823,-1,842,911,854,-1,757,866,489,-1,866,757,874,-1,456,494,457,-1,462,494,456,-1,119,104,107,-1,119,101,104,-1,455,281,457,-1,455,289,281,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getc5_Geo_5_67_normalIndex_12()
		{
			int[] value = {104,295,123,-1,104,260,295,-1,612,708,775,-1,612,705,708,-1,1323,1279,1294,-1,1323,1332,1279,-1,851,713,901,-1,713,851,712,-1,711,901,713,-1,711,917,901,-1,1126,1093,1026,-1,1133,1093,1126,-1,687,491,553,-1,687,688,491,-1,689,717,694,-1,717,689,716,-1,694,621,577,-1,694,763,621,-1,721,849,779,-1,721,727,849,-1,765,700,741,-1,700,765,695,-1,675,686,393,-1,792,686,675,-1,1329,1176,1064,-1,1329,1361,1176,-1,936,563,836,-1,936,547,563,-1,1082,1077,1311,-1,1082,868,1077,-1,504,542,618,-1,504,455,542,-1,1366,1327,1350,-1,1327,1366,1372,-1,1211,1375,1184,-1,1211,1344,1375,-1,576,740,1152,-1,576,395,740,-1,1026,1003,617,-1,1003,1026,1093,-1,1025,358,1076,-1,291,358,1025,-1,1152,785,576,-1,785,1152,1232,-1,999,1152,740,-1,999,1277,1152,-1,528,334,404,-1,528,416,334,-1,190,169,264,-1,169,190,185,-1,266,134,265,-1,266,147,134,-1,632,553,402,-1,553,632,693,-1,41,213,200,-1,213,41,28,-1,663,568,641,-1,656,568,663,-1,695,641,700,-1,663,641,695,-1,398,567,644,-1,398,386,567,-1,7,42,201,-1,2,42,7,-1,199,511,87,-1,199,751,511,-1,459,762,191,-1,1063,762,459,-1,327,191,762,-1,327,216,191,-1,1050,867,1049,-1,867,1050,795,-1,947,1432,1196,-1,1432,947,1273,-1,135,490,324,-1,490,135,667,-1,1255,762,1063,-1,762,1255,1107,-1,610,441,439,-1,441,610,325,-1,1404,1098,1116,-1,1234,1098,1404,-1,598,1038,1068,-1,643,1038,598,-1,1391,1298,1234,-1,1395,1298,1391,-1,586,647,655,-1,586,636,647,-1,1098,481,650,-1,481,1098,900,-1,592,137,512,-1,120,137,592,-1,463,102,173,-1,353,102,463,-1,943,248,698,-1,248,943,437,-1,139,302,273,-1,139,112,302,-1,410,317,316,-1,317,410,396,-1,436,317,396,-1,436,422,317,-1,51,370,86,-1,51,288,370,-1,297,747,745,-1,347,747,297,-1,223,320,46,-1,223,393,320,-1,1068,1276,1304,-1,1276,1068,1038,-1,583,337,535,-1,583,478,337,-1,297,503,194,-1,297,534,503,-1,1224,1205,1125,-1,1271,1205,1224,-1,1181,1271,1260,-1,1181,1205,1271,-1,411,816,811,-1,411,609,816,-1,618,757,504,-1,835,757,618,-1,1043,1010,1163,-1,1043,934,1010,-1,1326,1197,1223,-1,1197,1326,1254,-1,1261,1131,1254,-1,1131,1261,1155,-1,499,1137,932,-1,499,1042,1137,-1,1002,220,907,-1,1002,232,220,-1,932,1056,788,-1,1137,1056,932,-1,913,350,880,-1,913,294,350,-1,1100,682,601,-1,964,682,1100,-1,1191,875,772,-1,1191,1263,875,-1,294,772,306,-1,294,913,772,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getc5_Coord_6_67_point_1()
		{
			double[] value = {0.0,53.822,-1.7681,-0.1279,53.7695,-1.8215,-0.0614,53.8212,-1.7541,-0.0829,53.4189,-2.2725,-0.0487,53.4127,-2.1933,-0.0793,53.3906,-2.2424,-0.1114,53.3907,-2.3155,-0.1141,53.3685,-2.2883,-0.1458,53.3122,-2.3544,-0.1964,53.4291,-2.2928,-0.2017,53.3587,-2.3198,-0.1703,53.3673,-2.2737,-0.3933,53.8685,-1.416,-0.389,53.8696,-1.409,-0.3365,53.8525,-1.4925,-0.188,53.2971,-2.3397,-0.166,53.2823,-2.3191,-0.1697,53.2814,-2.3158,-0.193,53.2993,-2.3305,-0.1146,53.339,-2.1895,-0.1173,53.3396,-2.189,-0.1368,53.3276,-2.2479,-0.1317,53.3707,-2.0362,-0.1345,53.372,-2.0376,-0.1115,53.3349,-2.1293,-0.3993,53.4306,-1.5922,-0.4004,53.5435,-1.5804,-0.3501,53.5413,-1.6453,-0.155,53.6047,-1.7215,-0.1894,53.5173,-1.7444,-0.1162,53.5213,-1.8135,-0.8711,53.5544,-1.2363,-0.871,53.5589,-1.2389,-0.9157,53.5062,-1.2903,-0.443,53.4408,-1.4438,-0.4475,53.4359,-1.4452,-0.4411,53.4384,-1.4474,-0.8702,53.5618,-1.2346,-0.7699,53.7645,-1.4087,-0.7646,53.776,-1.4151,-0.7679,53.7627,-1.4146,-0.4694,53.8415,-1.381,-0.5438,53.8217,-1.3913,-0.5697,53.8737,-1.3217,-0.9101,53.4655,-1.0376,-0.9137,53.4502,-1.0078,-0.9841,53.4958,-1.0115,-0.8399,53.6919,-1.1736,-0.7669,53.6323,-1.1636,-0.7884,53.6022,-1.1141,-0.8456,53.5054,-1.0669,-0.8414,53.55,-1.0875,-0.6955,53.5565,-1.0659,-0.7656,53.4171,-0.9374,-0.7738,53.4271,-0.9329,-0.7683,53.417,-0.9405,-0.7482,53.412,-1.0482,-0.7779,53.4024,-0.9996,-0.8608,53.4268,-1.0184,-0.7047,53.398,-0.9239,-0.7208,53.3958,-0.9597,-0.693,53.4024,-0.9669,-0.7826,53.8507,-1.071,-0.7772,53.8668,-1.064,-0.8234,53.9467,-1.061,-0.9196,53.6589,-0.9885,-0.9732,53.5749,-0.9677,-0.9141,53.6514,-0.9787,-0.8053,53.7644,-1.0636,-0.8127,53.7784,-1.071,-0.8382,53.7131,-1.045,-0.7513,53.6335,-0.7793,-0.7464,53.5398,-0.8236,-0.7501,53.629,-0.7696,-0.7695,53.8492,-1.0662,-0.783,53.4591,-0.9267,-0.7709,53.4627,-0.9058,-0.7733,53.4741,-0.9055,-0.719,53.6815,-0.7474,-0.6812,53.634,-0.7144,-0.6597,53.7142,-0.7228,-0.5663,53.6961,-1.1076,-0.5063,53.7344,-1.1248,-0.581,53.7347,-1.1106,-0.4379,53.7705,-1.1135,-0.3926,53.8057,-1.1411,-0.4214,53.7806,-1.1765,-0.4619,53.906,-1.1916,-0.5069,53.8722,-1.154,-0.5126,53.7921,-1.1646,-0.3733,53.7457,-1.2219,-0.4126,53.7458,-1.2269,-0.4517,53.7863,-1.1854,-0.4095,53.9076,-1.3103,-0.4326,53.9449,-1.2507,-0.4274,53.9014,-1.2484,-0.4334,53.83,-1.2425,-0.4379,53.7759,-1.2381,-0.4276,53.7243,-1.2745,-0.3823,53.4753,-0.894,-0.4128,53.4749,-0.9265,-0.3727,53.4377,-0.9431,-0.5736,53.5035,-0.8594,-0.6534,53.4758,-0.8391,-0.6365,53.4335,-0.8854,-0.6559,53.5867,-0.921,-0.6563,53.5394,-0.9279,-0.6429,53.5367,-0.9984,-0.581,53.5619,-1.0343,-0.581,53.5665,-1.0306,-0.6126,53.5513,-1.0143,-0.5667,53.4841,-0.8878,-0.5667,53.4866,-0.892,-0.5041,53.5012,-0.9201,-0.4917,53.5352,-1.0304,-0.4805,53.5299,-0.9695,-0.4931,53.5443,-1.0241,-0.5347,53.5672,-1.0429,-0.5397,53.5612,-1.0477,-0.4998,53.4972,-0.9183,-0.4389,53.4847,-0.9624,-0.6633,53.5793,-1.0041,-0.6889,53.5851,-1.0269,-0.6958,53.5789,-1.0188,-0.648,53.527,-1.0145,-0.6754,53.4683,-0.9884,-0.6961,53.4606,-1.0348,-0.5834,53.5638,-1.0414,-0.5804,53.5652,-1.0514,-0.5584,53.561,-1.0739,-0.7013,53.5987,-1.0558,-0.6953,53.5957,-1.0614,-0.6795,53.6367,-1.08,-0.5962,53.6692,-1.0967,-0.5901,53.6794,-1.0987,-0.6322,53.6857,-1.0984,-0.6797,53.5897,-1.0857,-0.6925,53.5671,-1.0626,-0.4998,53.5783,-0.9203,-0.4862,53.5878,-0.976,-0.5957,53.7734,-1.1137,-0.6057,53.8423,-1.094,-0.6815,53.8368,-1.0685,-0.7113,53.6697,-1.0818,-0.6391,53.732,-1.1013,-0.8036,53.7794,-1.0642,-0.6142,53.6236,-1.0224,-0.6564,53.5934,-1.0145,-0.6851,53.6473,-1.08,-0.7158,53.5849,-1.0445,-0.4823,53.7415,-1.0197,-0.561,53.6884,-1.0438,-0.5536,53.6547,-1.0394,-0.6253,53.6253,-1.024,-0.4937,53.5419,-1.1672,-0.4797,53.5264,-1.15,-0.5208,53.5417,-1.1048,-0.375,53.394,-1.1526,-0.3756,53.3935,-1.0352,-0.3846,53.399,-1.1521,-0.2972,53.3756,-1.2809,-0.2967,53.3699,-1.2755,-0.3067,53.3779,-1.2772,-0.234,53.7468,-0.8407,-0.2253,53.7413,-0.8419,-0.2212,53.7766,-0.9251,-0.4072,53.7059,-1.246,-0.3581,53.5096,-1.4996,-0.3396,53.585,-1.5004,-0.3904,53.6618,-1.3884,-0.5375,53.56,-1.2187,-0.6388,53.5867,-1.2168,-0.5429,53.5646,-1.2582,-0.629,53.5816,-1.11,-0.6991,53.6015,-1.1536,-0.6296,53.5789,-1.1511,-0.4153,53.4455,-1.2022,-0.3723,53.4478,-1.2357,-0.3704,53.4021,-1.2232,-0.3524,53.3435,-0.9288,-0.3467,53.3237,-0.885,-0.3555,53.4013,-0.8978,-0.3559,53.3568,-0.9441,-0.4106,53.464,-1.0295,-0.3828,53.4007,-1.0333,-0.3373,53.2835,-0.8812,-0.2631,53.2758,-0.9206,-0.2531,53.2436,-0.8828,-0.461,53.3865,-1.5717,-0.4203,53.4304,-1.5309,-0.4866,53.378,-1.525,-0.4905,53.5795,-1.2599,-0.4509,53.5807,-1.2372,-0.4787,53.5175,-1.0438,-0.1901,53.2711,-0.8997,-0.1752,53.2365,-0.8453,-0.1904,53.3222,-0.9737,-0.2576,53.3052,-0.9693,-0.2669,53.351,-1.055,-0.1118,53.3415,-1.2783,-0.115,53.3572,-1.2197,-0.2014,53.3599,-1.2193,-0.2765,53.3675,-1.2207,-0.3643,53.3958,-1.2178,-0.2736,53.3748,-1.1521,-0.276,53.8691,-0.9893,-0.2172,53.8122,-1.0006,-0.2151,53.8581,-1.0834,-0.1585,53.7849,-0.9951,-0.0755,53.7693,-0.9938,-0.072,53.8012,-1.1024,-0.162,53.7592,-0.9155,-0.3299,53.9091,-0.9784,-0.3275,53.8966,-0.888,-0.2751,53.8281,-0.9131,-0.2659,53.7866,-0.8221,-0.3162,53.8688,-0.8076,-0.3703,53.9292,-0.7874,-0.3312,53.8673,-0.7065,-0.1255,53.4496,-2.1426,-0.1508,53.5023,-2.0086,-0.1408,53.4184,-1.9678,-0.1424,53.4345,-1.9209,-0.1564,53.4766,-2.2216,-0.1394,53.5847,-2.0226,-0.1329,53.5695,-2.0857,-0.13,53.474,-2.0698,-0.3389,53.6206,-1.6284,-0.6551,53.3889,-1.468,-0.6562,53.3323,-1.5324,-0.5607,53.3383,-1.5536,-0.6925,53.5049,-1.3213,-0.7667,53.5086,-1.3015,-0.8272,53.4935,-1.3193,-0.3762,53.4667,-1.5438,-0.3978,53.4292,-1.5898,-0.3358,53.4287,-1.6333,-0.0848,53.5921,-1.7735,-0.0575,53.5112,-1.8739,-0.137,53.4166,-1.9668,-0.04,53.464,-1.9548,-0.0421,53.4281,-2.0411,-0.1086,53.3342,-2.1284,-0.0781,53.614,-2.0956,-0.1047,53.7043,-1.9257,-0.1604,53.5956,-1.9403,-0.1823,53.6072,-1.8692,-0.5064,53.7538,-1.4616,-0.4947,53.7142,-1.5106,-0.5922,53.6966,-1.4976,-0.6451,53.7525,-1.4503,-0.6514,53.6886,-1.4863,-0.7254,53.6785,-1.4712,-0.1564,53.6982,-1.8566,-0.0624,53.7434,-1.7372,-0.0681,53.6657,-1.7534,0.0,53.66,-1.783,0.0,53.4463,-2.0334,0.0,53.4455,-2.1066,0.0,53.5402,-2.1998,0.0,53.4773,-2.2033,-0.0577,53.5065,-2.22,-0.0945,53.6549,-2.0185,0.0,53.7147,-1.9695,-0.1404,53.8229,-1.7236,-0.5091,53.7659,-1.4578,-0.6873,53.7693,-1.4478,-0.6629,53.8368,-1.3812,-0.3991,53.8777,-1.4097,-0.4662,53.9074,-1.3222,-0.9178,53.5394,-1.3668,-0.8791,53.5723,-1.4308,-0.9092,53.4483,-1.4454,-0.7879,53.6722,-1.4555,-0.8209,53.5933,-1.482,-0.854,53.6148,-1.2494,-0.8532,53.6664,-1.3107,-0.8459,53.7785,-1.3006,-0.8112,53.7219,-1.361,-0.7716,53.6112,-1.1892,-0.6912,53.6005,-1.2007,-0.807,53.4101,-0.9711,-0.862,53.4202,-0.9798,-0.8447,53.6216,-1.1069,-0.8354,53.6626,-1.2037,-0.8694,53.7722,-1.2137,-0.8491,53.7377,-1.2593,-0.9238,53.6456,-1.0205,-0.8651,53.8249,-1.1521,-0.8583,53.9029,-1.178,-0.8204,54.0205,-1.1188,-0.7447,53.6461,-1.0791,-0.7454,53.566,-1.031,-0.7247,53.5642,-0.9934,-0.9869,53.5699,-1.0186,-0.9124,53.5198,-1.0513,-0.7802,53.5378,-0.984,-0.8085,53.4695,-0.9495,-0.7832,53.4718,-0.9256,-0.7142,53.5875,-0.883,-0.7019,53.6469,-0.8438,-0.5915,53.7441,-0.7797,-0.6701,53.7405,-0.7444,-0.6958,53.7013,-0.818,-0.6361,53.6635,-0.8679,-0.665,53.6269,-0.9085,-0.317,53.7842,-1.2186,-0.4832,53.7353,-1.086,-0.4623,53.8201,-1.0083,-0.4588,53.8161,-0.9256,-0.4639,53.734,-0.9524,-0.4927,53.7171,-0.8852,-0.4531,53.8231,-0.81,-0.5115,53.7092,-0.7893,-0.4242,53.7811,-0.7748,-0.2755,53.4845,-0.8412,-0.2867,53.4369,-0.8354,-0.2571,53.4273,-0.804,-0.2406,53.4683,-0.8053,-0.2527,53.5218,-0.7946,-0.3937,53.8271,-0.7264,-0.4251,53.8666,-0.801,-0.4362,53.8873,-0.911,-0.4219,53.8927,-0.9995,-0.3186,53.7994,-0.6884,-0.3722,53.7889,-0.7192,-0.3654,53.7341,-0.729,-0.2478,53.6643,-0.7348,-0.3542,53.6723,-0.7624,-0.3235,53.6067,-0.794,-0.2299,53.5591,-0.7481,-0.2412,53.6578,-0.7342,0.4905,53.5795,-1.2599,0.4509,53.5807,-1.2372,0.41,53.667,-1.2576,0.4251,53.8666,-0.801,0.3381,53.8664,-0.7034,0.3937,53.8271,-0.7264,0.3966,53.9563,-0.9714,0.3896,53.9528,-0.8813,0.4362,53.8873,-0.911,0.3053,53.8486,-1.2066,0.2428,53.7272,-1.2458,0.2314,53.8029,-1.22,0.4623,53.8201,-1.0083,0.3926,53.8057,-1.1411,0.39,53.8793,-1.1231,0.4283,53.8711,-0.8146,0.459,53.8208,-0.819,0.3542,53.6723,-0.7624,0.3235,53.6067,-0.794,0.4038,53.6362,-0.7932,0.2755,53.4845,-0.8412,0.2995,53.5456,-0.8175,0.2527,53.5218,-0.7946,0.2406,53.4683,-0.8053,0.2571,53.4273,-0.804,0.3289,53.4799,-0.8676,0.3297,53.5074,-0.848,0.4938,53.5739,-0.8325,0.4945,53.6445,-0.803,0.539,53.7279,-0.8471,0.4927,53.7171,-0.8852,0.4823,53.7415,-1.0197,0.4588,53.8161,-0.9256,0.3772,53.7011,-1.2358,0.317,53.7842,-1.2186,0.3733,53.7457,-1.2219,0.2661,53.6106,-1.2656,0.1825,53.4967,-1.2844,0.1734,53.5884,-1.2581,0.6088,53.647,-0.7545,0.5915,53.7441,-0.7797,0.5115,53.7092,-0.7893,0.6046,53.7028,-0.7514,0.6361,53.6635,-0.8679,0.6147,53.7166,-0.824,0.6559,53.5867,-0.921,0.665,53.6269,-0.9085,0.5936,53.7459,-0.7856,0.6729,53.7441,-0.755,0.6633,53.7288,-0.8006,0.7513,53.6335,-0.7793,0.7019,53.6469,-0.8438,0.6958,53.7013,-0.818,0.9869,53.5699,-1.0186,0.9146,53.5741,-1.0651,0.9238,53.6456,-1.0205,0.8222,53.5765,-0.9842,0.9119,53.6552,-0.9816,0.8299,53.7114,-1.0401,0.5515,53.7726,-1.1397,0.5312,53.7526,-1.137,0.581,53.7347,-1.1106,0.6459,53.7782,-1.1042,0.6391,53.732,-1.1013,0.8036,53.7794,-1.0642,0.7273,54.0358,-1.0994,0.7058,53.9202,-1.0558,0.8234,53.9467,-1.061,0.7826,53.8507,-1.071,0.8651,53.8249,-1.1521,0.854,53.6752,-1.071,0.8406,53.7525,-1.1425,0.8127,53.7784,-1.071,0.8583,53.9029,-1.178,0.8755,53.8309,-1.2663,0.8532,53.9144,-1.28,0.8399,53.6919,-1.1736,0.6955,53.5565,-1.0659,0.6792,53.5851,-1.0929,0.7884,53.6022,-1.1141,0.854,53.6148,-1.2494,0.8532,53.6664,-1.3107,0.8491,53.7377,-1.2593,0.7913,53.5702,-1.2346,0.8702,53.5618,-1.2346,0.9157,53.5062,-1.2903,0.9295,53.4221,-1.3777,0.9178,53.5394,-1.3668,0.7217,53.8811,-1.3436,0.7588,53.9401,-1.2702,0.8461,53.9199,-1.2828,0.3991,53.8777,-1.4097,0.4694,53.8415,-1.381,0.4304,53.8032,-1.4558,0.6629,53.8368,-1.3812,0.65,53.8844,-1.3103,0.4662,53.9074,-1.3222,0.5697,53.8737,-1.3217,0.261,53.7688,-1.6759,0.2042,53.7611,-1.7645,0.1404,53.8229,-1.7236,0.0,53.7669,-1.8715,0.1279,53.7695,-1.8215,0.0575,53.5112,-1.8739,0.0,53.483,-1.9456,0.04,53.464,-1.9548,0.2182,53.6946,-1.7733,0.0421,53.4281,-2.0411,0.1317,53.3707,-2.0362,0.137,53.4166,-1.9668,0.1352,53.4319,-1.9182,0.1749,53.4332,-1.8607,0.1162,53.5213,-1.8135,0.1894,53.5173,-1.7444,0.241,53.518,-1.6767,0.237,53.5959,-1.6512,0.5429,53.5646,-1.2582,0.4622,53.5816,-1.3439,0.4887,53.498,-1.365,0.6093,53.4909,-1.3543,0.493,53.4927,-1.3673,0.5514,53.4599,-1.393,0.5414,53.4015,-1.4698,0.59,53.385,-1.4777,0.5242,53.43,-1.4331,0.1306,53.4298,-2.3177,0.1368,53.3683,-2.3489,0.1114,53.3907,-2.3155,0.1935,53.5346,-1.8781,0.1804,53.435,-1.8651,0.1424,53.4345,-1.9209,0.1345,53.372,-2.0376,0.13,53.474,-2.0698,0.1508,53.5023,-2.0086,0.1368,53.3276,-2.2479,0.1703,53.3673,-2.2737,0.1489,53.4182,-2.2042,0.2672,53.755,-0.7421,0.2659,53.7866,-0.8221,0.234,53.7468,-0.8407,0.234,53.6983,-0.7656,0.2253,53.7413,-0.8419,0.1656,53.6897,-0.7517,0.3643,53.3958,-1.2178,0.375,53.394,-1.1526,0.2736,53.3748,-1.1521,0.0968,53.2884,-0.8825,0.1904,53.3222,-0.9737,0.1901,53.2711,-0.8997,0.3828,53.4007,-1.0333,0.3846,53.399,-1.1521,0.4437,53.4578,-1.1372,0.3723,53.4478,-1.2357,0.351,53.5585,-1.243,0.4075,53.5583,-1.2275,0.3067,53.3779,-1.2772,0.3704,53.4021,-1.2232,0.7421,53.5376,-0.9214,0.7685,53.479,-0.8715,0.7733,53.4741,-0.9055,0.7695,53.8492,-1.0662,0.6815,53.8368,-1.0685,0.5689,53.9205,-1.2592,0.5244,53.9641,-1.235,0.5874,53.9422,-1.2371,0.2631,53.2758,-0.9206,0.2531,53.2436,-0.8828,0.3373,53.2835,-0.8812,0.2576,53.3052,-0.9693,0.3492,53.3485,-0.9453,0.3026,53.2891,-0.8175,0.2956,53.2453,-0.8167,0.3414,53.2885,-0.875,0.4153,53.4455,-1.2022,0.4797,53.5264,-1.15,0.6122,53.5521,-1.0203,0.6118,53.5469,-1.0169,0.581,53.5619,-1.0343,0.7475,53.3985,-0.978,0.7779,53.4024,-0.9996,0.807,53.4101,-0.9711,0.6296,53.5789,-1.1511,0.6388,53.5867,-1.2168,0.6912,53.6005,-1.2007,0.5375,53.56,-1.2187,0.658,53.473,-0.9359,0.6676,53.4214,-0.9269,0.6365,53.4335,-0.8854,0.3828,53.6616,-1.244,0.3904,53.6618,-1.3884,0.4166,53.7672,-1.3307,0.3871,53.7416,-1.3927,0.299,53.8269,-0.7557,0.288,53.7925,-0.7387,0.3117,53.8009,-0.691,0.2423,53.207,-0.7813,0.2938,53.2406,-0.8237,0.3741,53.4009,-1.2166,0.5431,53.6506,-0.872,0.6366,53.5939,-0.893,0.6507,53.5588,-0.9962,0.6142,53.6236,-1.0224,0.6023,53.5922,-1.0241,0.561,53.6884,-1.0438,0.4832,53.7353,-1.086,0.631,53.6709,-1.0993,0.5962,53.6692,-1.0967,0.5936,53.5793,-1.0905,0.6795,53.6367,-1.08,0.6851,53.6473,-1.08,0.6322,53.6857,-1.0984,0.6953,53.5957,-1.0614,0.6813,53.588,-1.0352,0.6889,53.5851,-1.0269,0.6448,53.5301,-1.0034,0.6443,53.5317,-1.0113,0.6467,53.5374,-1.0169,0.648,53.527,-1.0145,0.629,53.5816,-1.11,0.6797,53.5897,-1.0857,0.677,53.5326,-1.0356,0.6557,53.5898,-1.0187,0.6564,53.5934,-1.0145,0.4787,53.5175,-1.0438,0.5208,53.5417,-1.1048,0.5349,53.5596,-1.0481,0.4917,53.5352,-1.0304,0.7413,53.4265,-0.9185,0.7047,53.398,-0.9239,0.7208,53.3958,-0.9597,0.5667,53.4866,-0.892,0.6326,53.4731,-0.9117,0.6344,53.4626,-0.9098,0.6126,53.5513,-1.0143,0.6563,53.5394,-0.9279,0.6429,53.5367,-0.9984,0.6563,53.4841,-0.9336,0.5041,53.5012,-0.9201,0.4998,53.4972,-0.9183,0.4752,53.521,-0.9728,0.4218,53.673,-1.3442,0.389,53.8696,-1.409,0.3893,53.8222,-1.4013,0.4199,53.8618,-1.3205,0.4126,53.7458,-1.2269,0.4619,53.906,-1.1916,0.5069,53.8722,-1.154,0.5014,53.9161,-1.1542,0.4379,53.7705,-1.1135,0.4638,53.7622,-1.1474,0.5063,53.7344,-1.1248,0.4903,53.7736,-1.1611,0.8673,53.5204,-0.9442,0.8596,53.5314,-0.9459,0.8085,53.4695,-0.9495,0.9732,53.5749,-0.9677,0.9551,53.5784,-0.9437,0.9661,53.5681,-0.9429,0.53,53.7646,-0.7912,0.5329,53.7661,-0.7966,0.783,53.4591,-0.9267,0.7709,53.4627,-0.9058,0.7738,53.4271,-0.9329,0.7646,53.4687,-0.8658,0.7438,53.5299,-0.8174,0.707,53.4921,-0.8116,0.9101,53.4655,-1.0376,0.9137,53.4502,-1.0078,0.8608,53.4268,-1.0184,0.9086,53.4497,-0.9721,0.8614,53.4254,-0.97,0.9742,53.4903,-0.9651,0.9125,53.445,-0.9818,0.8106,53.4185,-0.9618,0.862,53.4202,-0.9798,0.6991,53.6015,-1.1536,0.7669,53.6323,-1.1636,0.512,53.9972,-1.1528,0.5146,53.9984,-1.1503,0.5156,54.0014,-1.1571,0.8553,53.9795,-1.2067,0.4095,53.9076,-1.3103,0.8165,53.8364,-1.3438,0.7646,53.776,-1.4151,0.8092,53.8428,-1.3467,0.786,53.5702,-1.2304,0.7867,53.5636,-1.2343,0.9271,53.4138,-1.3858,0.9288,53.4168,-1.3827,0.9268,53.4154,-1.3783,0.6569,53.3329,-1.5371,0.5607,53.3383,-1.5536,0.5602,53.3397,-1.558,0.2233,53.839,-1.643,0.1416,53.7431,-1.7099,0.2258,53.7628,-1.6421,0.1434,53.6825,-1.7096,0.0624,53.7434,-1.7372,0.3581,53.5096,-1.4996,0.2971,53.508,-1.5977,0.3762,53.4667,-1.5438,0.3978,53.4292,-1.5898,0.3358,53.4287,-1.6333,0.3993,53.4306,-1.5922,0.548,53.3424,-1.5559,0.193,53.2993,-2.3305,0.188,53.2971,-2.3397,0.1946,53.3609,-2.3277,0.073,53.5625,-2.157,0.0781,53.614,-2.0956,0.1329,53.5695,-2.0857,0.1852,53.4355,-2.2982,0.1964,53.4291,-2.2928,0.1003,53.4708,-2.2717,0.0946,53.4646,-2.2721,0.0577,53.5065,-2.22,0.1442,53.3639,-2.3564,0.1532,53.3045,-2.3593,0.133,53.3274,-2.2492,0.166,53.2823,-2.3191,0.1697,53.2814,-2.3158,0.1115,53.3349,-2.1293,0.1361,53.5359,-2.152,0.1564,53.4766,-2.2216,0.1255,53.5424,-2.153,0.0614,53.8212,-1.7541,0.0488,53.4395,-2.2394,0.0829,53.4189,-2.2725,0.0487,53.4127,-2.1933,0.1458,53.3122,-2.3544,0.1141,53.3685,-2.2883,0.2017,53.3587,-2.3198,0.3933,53.8685,-1.416,0.342,53.8541,-1.4949,0.1173,53.3396,-2.189,0.1086,53.3342,-2.1284,0.3501,53.5413,-1.6453,0.4004,53.5435,-1.5804,0.155,53.6047,-1.7215,0.8711,53.5544,-1.2363,0.9119,53.5029,-1.2876,0.871,53.5589,-1.2389,0.443,53.4408,-1.4438,0.4411,53.4384,-1.4474,0.4475,53.4359,-1.4452,0.7699,53.7645,-1.4087,0.7679,53.7627,-1.4146,0.5438,53.8217,-1.3913,0.5954,53.7678,-1.4539,0.9841,53.4958,-1.0115,0.8456,53.5054,-1.0669,0.7195,53.4576,-1.0712,0.7482,53.412,-1.0482,0.693,53.4024,-0.9669,0.9196,53.6589,-0.9885,0.8382,53.7131,-1.045,0.7434,53.5376,-0.8125,0.7464,53.5398,-0.8236,0.9141,53.6514,-0.9787,0.8675,53.5361,-0.9446,0.7832,53.4718,-0.9256,0.6597,53.7142,-0.7228,0.6812,53.634,-0.7144,0.719,53.6815,-0.7474,0.5663,53.6961,-1.1076,0.4214,53.7806,-1.1765,0.4736,53.8116,-1.1895,0.5126,53.7921,-1.1646,0.4517,53.7863,-1.1854,0.4326,53.9449,-1.2507,0.4274,53.9014,-1.2484,0.4389,53.4847,-0.9624,0.4106,53.464,-1.0295,0.5736,53.5035,-0.8594,0.5667,53.4841,-0.8878,0.581,53.5665,-1.0306,0.4931,53.5443,-1.0241,0.4805,53.5299,-0.9695,0.5397,53.5612,-1.0477,0.5347,53.5672,-1.0429,0.6633,53.5793,-1.0041,0.6958,53.5789,-1.0188,0.6961,53.4606,-1.0348,0.7206,53.4072,-1.0075,0.7013,53.5987,-1.0558,0.6925,53.5671,-1.0626,0.5459,53.608,-1.0422,0.5041,53.6135,-1.0295,0.4862,53.5878,-0.976,0.4998,53.5783,-0.9203,0.6057,53.8423,-1.094,0.5957,53.7734,-1.1137,0.7113,53.6697,-1.0818,0.6253,53.6253,-1.024,0.7039,53.5624,-0.9559,0.4128,53.4749,-0.9265,0.3727,53.4377,-0.9431,0.3559,53.3568,-0.9441,0.3524,53.3435,-0.9288,0.2218,53.4573,-0.7752,0.2212,53.7766,-0.9251,0.4276,53.7243,-1.2745,0.4072,53.7059,-1.246,0.3396,53.585,-1.5004,0.3555,53.4013,-0.8978,0.3467,53.3237,-0.885,0.3286,53.7139,-1.228,0.6534,53.4758,-0.8391,0.6924,53.5557,-0.7629,0.461,53.3865,-1.5717,0.4866,53.378,-1.525,0.1752,53.2365,-0.8453,0.2669,53.351,-1.055,0.2765,53.3675,-1.2207,0.2049,53.3605,-1.1526,0.2014,53.3599,-1.2193,0.3756,53.3935,-1.0352,0.0751,53.2056,-0.7007,0.06,53.2846,-0.6901,0.0,53.2831,-0.6815,0.276,53.8691,-0.9893,0.2151,53.8581,-1.0834,0.2172,53.8122,-1.0006,0.1585,53.7849,-0.9951,0.072,53.8012,-1.1024,0.0755,53.7693,-0.9938,0.162,53.7592,-0.9155,0.2751,53.8281,-0.9131,0.3275,53.8966,-0.888,0.3299,53.9091,-0.9784,0.1408,53.4184,-1.9678,0.1687,53.5214,-1.9406,0.1394,53.5847,-2.0226,0.0848,53.5921,-1.7735,0.0611,53.5879,-1.7911,0.0359,53.4174,-2.1168,0.0945,53.6549,-2.0185,0.1047,53.7043,-1.9257,0.1564,53.6982,-1.8566,0.1823,53.6072,-1.8692,0.5064,53.7538,-1.4616,0.5952,53.7546,-1.4561,0.5922,53.6966,-1.4976,0.6451,53.7525,-1.4503,0.6893,53.7559,-1.4479,0.7254,53.6785,-1.4712,0.3002,53.8509,-1.5637,0.3128,53.7855,-1.5934,0.5091,53.7659,-1.4578,0.4138,53.9122,-1.3134,0.8209,53.5933,-1.482,0.7879,53.6722,-1.4555,0.8356,53.6378,-1.4008,0.8736,53.6067,-1.3326,0.8112,53.7219,-1.361,0.8459,53.7785,-1.3006,0.7716,53.6112,-1.1892,0.8694,53.7722,-1.2137,0.861,53.9751,-1.2019,0.8204,54.0205,-1.1188,0.7447,53.6461,-1.0791,0.7158,53.5849,-1.0445,0.7454,53.566,-1.031,0.7247,53.5642,-0.9934,0.9124,53.5198,-1.0513,0.7802,53.5378,-0.984,0.6701,53.7405,-0.7444,0.7142,53.5875,-0.883,0.4639,53.734,-0.9524,0.4531,53.8231,-0.81,0.2867,53.4369,-0.8354,0.4219,53.8927,-0.9995,0.2478,53.6643,-0.7348,0.2412,53.6578,-0.7342,-0.4273,53.672,-1.2907,-0.41,53.667,-1.2576,-0.3966,53.9563,-0.9714,-0.3896,53.9528,-0.8813,-0.39,53.8793,-1.1231,-0.459,53.8208,-0.819,-0.4283,53.8711,-0.8146,-0.4038,53.6362,-0.7932,-0.4142,53.7148,-0.7734,-0.3155,53.4429,-0.8695,-0.3839,53.5303,-0.8547,-0.4945,53.6445,-0.803,-0.539,53.7279,-0.8471,-0.5329,53.7661,-0.7966,-0.3286,53.7139,-1.228,-0.3772,53.7011,-1.2358,-0.2722,53.5197,-1.2776,-0.2661,53.6106,-1.2656,-0.1734,53.5884,-1.2581,-0.53,53.7646,-0.7912,-0.6147,53.7166,-0.824,-0.5936,53.7459,-0.7856,-0.6633,53.7288,-0.8006,-0.6958,53.3956,-0.8894,-0.7203,53.6864,-0.758,-0.8675,53.5361,-0.9446,-0.9551,53.5784,-0.9437,-0.8222,53.5765,-0.9842,-0.787,53.6287,-1.0492,-0.8299,53.7114,-1.0401,-0.6459,53.7782,-1.1042,-0.7058,53.9202,-1.0558,-0.7273,54.0358,-1.0994,-0.8406,53.7525,-1.1425,-0.854,53.6752,-1.071,-0.8755,53.8309,-1.2663,-0.861,53.9751,-1.2019,-0.9146,53.5741,-1.0651,-0.7217,53.8811,-1.3436,-0.8092,53.8428,-1.3467,-0.8461,53.9199,-1.2828,-0.5954,53.7678,-1.4539,-0.65,53.8844,-1.3103,-0.6907,53.9278,-1.2662,-0.6358,53.9143,-1.2721,-0.6216,53.9494,-1.226,-0.5689,53.9205,-1.2592,-0.3002,53.8509,-1.5637,-0.3655,53.7886,-1.5302,-0.342,53.8541,-1.4949,-0.261,53.7688,-1.6759,-0.2274,53.8407,-1.647,-0.4229,53.7923,-1.4592,-0.4055,53.7172,-1.5225,-0.2182,53.6946,-1.7733,-0.1255,53.5424,-2.153,-0.1361,53.5359,-2.152,-0.0488,53.4395,-2.2394,-0.1749,53.4332,-1.8607,-0.1352,53.4319,-1.9182,-0.237,53.5959,-1.6512,-0.241,53.518,-1.6767,-0.5603,53.5336,-1.2997,-0.4887,53.498,-1.365,-0.4622,53.5816,-1.3439,-0.1687,53.5214,-1.9406,-0.1935,53.5346,-1.8781,-0.2672,53.755,-0.7421,-0.234,53.6983,-0.7656,-0.1644,53.7251,-0.8338,-0.3232,53.9092,-1.0419,-0.1564,53.1993,-0.734,-0.0882,53.2347,-0.8047,-0.0738,53.2018,-0.7067,-0.1045,53.3223,-0.9648,-0.0968,53.2884,-0.8825,-0.4437,53.4578,-1.1372,-0.4075,53.5583,-1.2275,-0.5244,53.9641,-1.235,-0.4901,53.9385,-1.2774,-0.7232,53.5637,-1.2316,-0.7867,53.5636,-1.2343,-0.3026,53.2891,-0.8175,-0.3414,53.2885,-0.875,-0.2956,53.2453,-0.8167,-0.6118,53.5469,-1.0169,-0.7475,53.3985,-0.978,-0.658,53.473,-0.9359,-0.6344,53.4626,-0.9098,-0.351,53.5585,-1.243,-0.3828,53.6616,-1.244,-0.299,53.8269,-0.7557,-0.288,53.7925,-0.7387,-0.2387,53.3701,-0.7668,-0.2218,53.4573,-0.7752,-0.2423,53.207,-0.7813,-0.2938,53.2406,-0.8237,-0.3741,53.4009,-1.2166,-0.5431,53.6506,-0.872,-0.5557,53.5669,-0.8852,-0.6366,53.5939,-0.893,-0.6507,53.5588,-0.9962,-0.631,53.6709,-1.0993,-0.6291,53.5875,-1.104,-0.6813,53.588,-1.0352,-0.5867,53.6747,-1.0516,-0.5928,53.6651,-1.0599,-0.6238,53.6221,-1.0297,-0.6122,53.5521,-1.0203,-0.6448,53.5301,-1.0034,-0.5857,53.5707,-1.0475,-0.6792,53.5851,-1.0929,-0.5896,53.5726,-1.0941,-0.5936,53.5793,-1.0905,-0.6467,53.5374,-1.0169,-0.6443,53.5317,-1.0113,-0.677,53.5326,-1.0356,-0.6756,53.5446,-1.034,-0.6557,53.5898,-1.0187,-0.7413,53.4265,-0.9185,-0.6326,53.4731,-0.9117,-0.6563,53.4841,-0.9336,-0.4752,53.521,-0.9728,-0.4218,53.673,-1.3442,-0.4199,53.8618,-1.3205,-0.5014,53.9161,-1.1542,-0.4638,53.7622,-1.1474,-0.5312,53.7526,-1.137,-0.7326,53.4292,-0.8753,-0.707,53.4921,-0.8116,-0.6729,53.7441,-0.755,-0.7438,53.5299,-0.8174,-0.7434,53.5376,-0.8125,-0.8596,53.5314,-0.9459,-0.8673,53.5204,-0.9442,-0.8133,53.4555,-0.9503,-0.3776,53.929,-0.7859,-0.7646,53.4687,-0.8658,-0.9125,53.445,-0.9818,-0.9086,53.4497,-0.9721,-0.9742,53.4903,-0.9651,-0.8614,53.4254,-0.97,-0.512,53.9972,-1.1528,-0.5156,54.0014,-1.1571,-0.5146,53.9984,-1.1503,-0.8532,53.9144,-1.28,-0.4138,53.9122,-1.3134,-0.8165,53.8364,-1.3438,-0.7913,53.5702,-1.2346,-0.786,53.5702,-1.2304,-0.9288,53.4168,-1.3827,-0.9268,53.4154,-1.3783,-0.9295,53.4221,-1.3777,-0.5602,53.3397,-1.558,-0.2233,53.839,-1.643,-0.2258,53.7628,-1.6421,-0.1416,53.7431,-1.7099,-0.1434,53.6825,-1.7096,-0.3401,53.4305,-1.6371,-0.4637,53.388,-1.5762,-0.4666,53.4273,-1.5912,-0.1946,53.3609,-2.3277,-0.148,53.4853,-2.2282,-0.1852,53.4355,-2.2982,-0.1003,53.4708,-2.2717,-0.0946,53.4646,-2.2721,-0.1442,53.3639,-2.3564,-0.1368,53.3683,-2.3489,-0.1532,53.3045,-2.3593,-0.134,53.819,-1.7178,-0.073,53.5625,-2.157,-0.548,53.3424,-1.5559,-0.2971,53.508,-1.5977,-0.493,53.4927,-1.3673,-0.4873,53.4969,-1.3675,-0.6569,53.3329,-1.5371,-0.9271,53.4138,-1.3858,-0.8553,53.9795,-1.2067,-0.4304,53.8032,-1.4558,-0.4207,53.7963,-1.4605,-0.7571,54.0021,-1.1857,-0.6859,54.0113,-1.1649,-0.6684,53.9451,-1.2338,-0.6444,53.7658,-1.4492,-0.8106,53.4185,-0.9618,-0.9775,53.4859,-0.9808,-0.8512,53.4576,-1.0522,-0.9661,53.5681,-0.9429,-0.4903,53.7736,-1.1611,-0.3893,53.8222,-1.4013,-0.4736,53.8116,-1.1895,-0.6591,53.4775,-0.943,-0.7039,53.5624,-0.9559,-0.6168,53.558,-1.0229};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getc5_Coord_6_67_point_2()
		{
			double[] value = {-0.6023,53.5922,-1.0241,-0.6676,53.4214,-0.9269,-0.2377,53.2059,-0.7773,-0.2414,53.2096,-0.7722,-0.3403,53.6436,-1.2377,-0.4215,53.5599,-1.4032,-0.3835,53.4875,-1.4807,-0.5784,53.5694,-1.1054,-0.5874,53.9422,-1.2371,-0.7421,53.5376,-0.9214,-0.7685,53.479,-0.8715,-0.2871,53.8957,-1.0742,-0.1656,53.6897,-0.7517,-0.2422,53.703,-0.7638,-0.1804,53.435,-1.8651,-0.1306,53.4298,-2.3177,-0.59,53.385,-1.4777,-0.5414,53.4015,-1.4698,-0.5242,53.43,-1.4331,-0.2042,53.7611,-1.7645,0.0,53.509,-1.8827,-0.3128,53.7855,-1.5934,-0.7588,53.9401,-1.2702,-0.9119,53.6552,-0.9816,-0.6046,53.7028,-0.7514,-0.1825,53.4967,-1.2844,-0.4938,53.5739,-0.8325,-0.3297,53.5074,-0.848,-0.3289,53.4799,-0.8676,-0.2995,53.5456,-0.8175,0.2299,53.5591,-0.7481,0.4242,53.7811,-0.7748,0.3155,53.4429,-0.8695,0.5027,53.5122,-0.8743,0.7611,53.5377,-0.9527,0.8354,53.6626,-1.2037,0.8414,53.55,-1.0875,0.8447,53.6216,-1.1069,0.8791,53.5723,-1.4308,0.9092,53.4483,-1.4454,0.6873,53.7693,-1.4478,0.2274,53.8407,-1.647,0.6514,53.6886,-1.4863,0.4947,53.7142,-1.5106,0.1604,53.5956,-1.9403,0.8534,53.464,-1.3526,0.8272,53.4935,-1.3193,0.7667,53.5086,-1.3015,0.1255,53.4496,-2.1426,0.1567,53.8312,-1.0966,0.2871,53.8957,-1.0742,0.0,53.2096,-0.6973,0.2967,53.3699,-1.2755,0.1992,53.3459,-1.0645,0.4203,53.4304,-1.5309,0.7501,53.629,-0.7696,0.4937,53.5419,-1.1672,0.8724,53.3531,-1.4718,0.8985,53.4061,-1.4627,0.4215,53.5599,-1.4032,0.4379,53.7759,-1.2381,0.0681,53.6657,-1.7534,0.2972,53.3756,-1.2809,0.5867,53.6747,-1.0516,0.5536,53.6547,-1.0394,0.6348,53.5391,-0.9014,0.5557,53.5669,-0.8852,0.5901,53.6794,-1.0987,0.6754,53.4683,-0.9884,0.5584,53.561,-1.0739,0.5804,53.5652,-1.0514,0.5834,53.5638,-1.0414,0.5857,53.5707,-1.0475,0.6168,53.558,-1.0229,0.3823,53.4753,-0.894,0.7772,53.8668,-1.064,0.8053,53.7644,-1.0636,0.8512,53.4576,-1.0522,0.7656,53.4171,-0.9374,0.7683,53.417,-0.9405,0.6444,53.7658,-1.4492,0.5492,53.9773,-1.2106,0.8682,53.35,-1.4745,0.8672,53.3497,-1.4698,0.3401,53.4305,-1.6371,0.1146,53.339,-2.1895,0.3365,53.8525,-1.4925,0.0793,53.3906,-2.2424,0.148,53.4853,-2.2282,0.134,53.819,-1.7178,0.4637,53.388,-1.5762,0.4666,53.4273,-1.5912,0.4873,53.4969,-1.3675,0.6562,53.3323,-1.5324,0.4229,53.7923,-1.4592,0.4207,53.7963,-1.4605,0.7571,54.0021,-1.1857,0.6684,53.9451,-1.2338,0.6859,54.0113,-1.1649,0.9775,53.4859,-0.9808,0.7326,53.4292,-0.8753,0.3776,53.929,-0.7859,0.8133,53.4555,-0.9503,0.7203,53.6864,-0.758,0.6958,53.3956,-0.8894,0.4273,53.672,-1.2907,0.4334,53.83,-1.2425,0.6591,53.4775,-0.943,0.6756,53.5446,-1.034,0.6291,53.5875,-1.104,0.2414,53.2096,-0.7722,0.2377,53.2059,-0.7773,0.3839,53.5303,-0.8547,0.4142,53.7148,-0.7734,0.3654,53.7341,-0.729,0.2778,53.7298,-0.7046,0.3403,53.6436,-1.2377,0.3835,53.4875,-1.4807,0.5784,53.5694,-1.1054,0.7232,53.5637,-1.2316,0.4901,53.9385,-1.2774,0.1045,53.3223,-0.9648,0.1564,53.1993,-0.734,0.0738,53.2018,-0.7067,0.0882,53.2347,-0.8047,0.1644,53.7251,-0.8338,0.2422,53.703,-0.7638,0.5644,53.5272,-1.3029,0.5603,53.5336,-1.2997,0.3655,53.7886,-1.5302,0.6358,53.9143,-1.2721,0.6907,53.9278,-1.2662,0.787,53.6287,-1.0492,0.5965,53.5621,-0.8094,0.2722,53.5197,-1.2776,0.3722,53.7889,-0.7192,-0.2838,53.7251,-0.7026,-0.5027,53.5122,-0.8743,-0.7611,53.5377,-0.9527,-0.8356,53.6378,-1.4008,-0.0359,53.4174,-2.1168,0.0,53.74,-1.755,-0.6893,53.7559,-1.4479,-0.5952,53.7546,-1.4561,-0.0611,53.5879,-1.7911,-0.4108,53.6218,-1.557,-0.1489,53.4182,-2.2042,-0.1567,53.8312,-1.0966,-0.1875,53.3506,-1.285,-0.1992,53.3459,-1.0645,-0.6924,53.5557,-0.7629,-0.2428,53.7272,-1.2458,-0.8724,53.3531,-1.4718,-0.8985,53.4061,-1.4627,-0.3492,53.3485,-0.9453,-0.4939,53.6784,-1.0265,-0.6348,53.5391,-0.9014,-0.7206,53.4072,-1.0075,-0.5349,53.5596,-1.0481,-0.4166,53.7672,-1.3307,-0.7195,53.4576,-1.0712,-0.5492,53.9773,-1.2106,-0.8682,53.35,-1.4745,-0.8672,53.3497,-1.4698,-0.9119,53.5029,-1.2876,-0.133,53.3274,-2.2492,0.0,53.4537,-2.1715,-0.2953,53.8496,-1.5613,-0.2841,53.4397,-1.7138,-0.2792,53.438,-1.7107,-0.0597,53.8161,-1.7438,-0.3328,53.6912,-1.4931,-0.2933,53.7724,-1.5631,-0.3353,53.7992,-1.4926,-0.2905,53.6686,-1.5659,-0.7217,53.5704,-1.2277,-0.6596,53.5489,-1.2593,-0.657,53.5551,-1.2553,-0.4911,53.3786,-1.5192,-0.8432,53.3992,-1.5254,-0.8429,53.4689,-1.5167,-0.4368,53.949,-1.2553,-0.6163,54.0229,-1.1235,-0.728,54.0386,-1.1067,-0.6157,54.02,-1.1162,-0.5408,53.9262,-1.1168,-0.3871,53.7416,-1.3927,-0.5041,53.6135,-1.0295,-0.5459,53.608,-1.0422,-0.2789,53.4448,-1.2817,0.0,53.2308,-0.8117,0.0,53.2054,-0.704,-0.0644,53.6073,-0.6725,-0.1547,53.6311,-0.6986,-0.1582,53.6216,-0.6964,-0.0636,53.617,-0.6757,-0.3381,53.8664,-0.7034,-0.3117,53.8009,-0.691,-0.3895,53.9577,-0.9718,-0.3681,53.9451,-1.0825,-0.3615,53.9466,-1.0787,-0.1683,53.8566,-1.1567,-0.0664,53.8156,-1.1817,-0.1704,53.8541,-1.1653,-0.0655,53.8188,-1.1732,-0.5515,53.7726,-1.1397,-0.2282,53.6905,-1.6415,-0.2933,53.5737,-1.5729,-0.5763,53.4151,-1.5851,-0.5503,53.8509,-1.1165,0.0,53.3541,-1.0769,-0.1147,53.3441,-1.069,0.0,53.3317,-0.9796,-0.2049,53.3605,-1.1526,-0.2408,53.2808,-0.7588,-0.1581,53.2029,-0.7285,-0.1531,53.2822,-0.7188,-0.0789,53.7051,-0.8196,-0.0714,53.6767,-0.7366,-0.2361,53.6663,-0.7351,-0.2345,53.4473,-1.7783,-0.245,53.5393,-1.7984,-0.6751,53.4937,-1.5552,-0.672,53.4022,-1.5737,-0.5846,53.502,-1.5711,-0.5855,53.6001,-1.5463,-0.4804,53.5284,-1.5769,-0.4975,53.6163,-1.5588,-0.7274,53.4528,-1.3914,-0.74,53.3958,-1.4439,-0.6423,53.4384,-1.4215,-0.5514,53.4599,-1.393,-0.6093,53.4909,-1.3543,-0.3007,53.6201,-1.6987,-0.2311,53.6073,-1.7898,-0.2818,53.7072,-1.6881,-0.3239,53.7113,-1.6138,0.0,53.5733,-1.819,-0.6064,53.9979,-1.1789,-0.8534,53.464,-1.3526,-0.8563,53.4313,-1.3877,-0.6332,53.9282,-1.0748,-0.5965,53.5621,-0.8094,-0.6088,53.647,-0.7545,-0.06,53.2846,-0.6901,-0.1467,53.3485,-0.7256,-0.0547,53.346,-0.6943,-0.0879,53.578,-1.2608,-0.1012,53.4848,-1.2815,-0.1716,53.6822,-1.2483,0.0,53.4135,-0.6858,0.0,53.3418,-0.6863,-0.0546,53.4126,-0.6976,-0.1614,53.7821,-1.2211,-0.2314,53.8029,-1.22,-0.0709,53.748,-1.2325,0.0597,53.5124,-0.6791,0.0,53.603,-0.6653,0.0,53.5052,-0.6686,0.0644,53.6073,-0.6725,0.2838,53.7251,-0.7026,0.1704,53.8541,-1.1653,0.2324,53.8856,-1.1617,0.1614,53.7821,-1.2211,0.1716,53.6822,-1.2483,0.0709,53.748,-1.2325,0.0786,53.6635,-1.2453,0.0546,53.4126,-0.6976,0.0,53.5642,-1.2596,0.1012,53.4848,-1.2815,0.0,53.4752,-1.2831,0.0879,53.578,-1.2608,0.1467,53.3485,-0.7256,0.2408,53.2808,-0.7588,0.2387,53.3701,-0.7668,0.1531,53.2822,-0.7188,0.5503,53.8509,-1.1165,0.4368,53.949,-1.2553,0.7887,53.9736,-1.2259,0.8164,54.0235,-1.1262,0.6216,53.9494,-1.226,0.0,53.647,-2.0789,0.3239,53.7113,-1.6138,0.2818,53.7072,-1.6881,0.5855,53.6001,-1.5463,0.6686,53.6009,-1.5226,0.3007,53.6201,-1.6987,0.3389,53.6206,-1.6284,0.2293,53.4453,-1.7744,0.2933,53.5737,-1.5729,0.657,53.5551,-1.2553,0.7217,53.5704,-1.2277,0.6925,53.5049,-1.3213,0.6423,53.4384,-1.4215,0.7274,53.4528,-1.3914,0.74,53.3958,-1.4439,0.7632,53.3329,-1.5082,0.6551,53.3889,-1.468,0.5846,53.502,-1.5711,0.6751,53.4937,-1.5552,0.3032,53.5416,-1.7159,0.4804,53.5284,-1.5769,0.5763,53.4151,-1.5851,0.0714,53.6767,-0.7366,0.1547,53.6311,-0.6986,0.0636,53.617,-0.6757,0.3703,53.9292,-0.7874,0.3826,53.9535,-0.8814,0.3162,53.8688,-0.8076,0.0777,53.7352,-0.9058,0.0789,53.7051,-0.8196,0.0,53.7848,-1.0941,0.0,53.7546,-0.9923,0.3232,53.9092,-1.0419,0.1683,53.8566,-1.1567,0.2301,53.888,-1.1528,0.1581,53.2029,-0.7285,0.0,53.3535,-1.2315,0.1118,53.3415,-1.2783,0.115,53.3572,-1.2197,0.0,53.3433,-1.292,0.1147,53.3441,-1.069,0.0,53.4116,-1.29,0.1061,53.4152,-1.2825,0.0,53.2861,-0.8788,0.8432,53.3992,-1.5254,0.7642,53.3332,-1.5129,0.764,53.3883,-1.5502,0.2905,53.6686,-1.5659,0.3328,53.6912,-1.4931,0.0,53.8094,-1.1729,0.0664,53.8156,-1.1817,0.0,53.8063,-1.1821,0.0655,53.8188,-1.1732,0.3069,53.9181,-1.1451,0.3615,53.9466,-1.0787,0.3681,53.9451,-1.0825,0.3022,53.9206,-1.1373,0.3312,53.8673,-0.7065,0.2361,53.6663,-0.7351,0.1582,53.6216,-0.6964,0.2979,53.3892,-0.8296,0.1111,53.3457,-1.2837,0.0,53.348,-1.297,0.4759,53.6826,-0.9667,0.4966,53.6798,-0.9006,0.4939,53.6784,-1.0265,0.6238,53.6221,-1.0297,0.5928,53.6651,-1.0599,0.5896,53.5726,-1.0941,0.4688,53.9715,-1.2004,0.3353,53.7992,-1.4926,0.6064,53.9979,-1.1789,0.728,54.0386,-1.1067,0.4728,53.9756,-1.2053,0.4911,53.3786,-1.5192,0.6596,53.5489,-1.2593,0.0,53.8161,-1.7577,0.0597,53.8161,-1.7438,0.2953,53.8496,-1.5613,0.14,53.4383,-2.3199,0.2841,53.4397,-1.7138,0.2792,53.438,-1.7107,0.2933,53.7724,-1.5631,0.8429,53.4689,-1.5167,0.6163,54.0229,-1.1235,0.6157,54.02,-1.1162,0.1874,53.3555,-1.2904,0.185,53.4261,-1.2873,0.1875,53.3506,-1.285,0.3186,53.7994,-0.6884,0.3895,53.9577,-0.9718,0.2282,53.6905,-1.6415,0.0,53.6653,-0.729,0.0,53.6127,-0.6691,0.7604,53.4814,-1.5382,0.2311,53.6073,-1.7898,0.245,53.5393,-1.7984,0.4975,53.6163,-1.5588,0.4055,53.7172,-1.5225,0.4108,53.6218,-1.557,0.7412,53.5982,-1.5024,0.6332,53.9282,-1.0748,0.0547,53.346,-0.6943,0.1482,53.5312,-0.7008,-0.1482,53.5312,-0.7008,-0.2324,53.8856,-1.1617,-0.0786,53.6635,-1.2453,-0.1339,53.4243,-0.7286,-0.8736,53.6067,-1.3326,-0.8128,53.4037,-1.4239,-0.7887,53.9736,-1.2259,0.0,53.5939,-2.1519,-0.7412,53.5982,-1.5024,-0.2293,53.4453,-1.7744,-0.7604,53.4814,-1.5382,-0.764,53.3883,-1.5502,-0.3032,53.5416,-1.7159,-0.3826,53.9535,-0.8814,-0.0777,53.7352,-0.9058,-0.3022,53.9206,-1.1373,-0.1181,53.3548,-1.1572,0.0,53.3589,-1.1575,-0.185,53.4261,-1.2873,-0.14,53.4383,-2.3199,-0.7642,53.3332,-1.5129,-0.2301,53.888,-1.1528,-0.2778,53.7298,-0.7046,-0.2979,53.3892,-0.8296,-0.1111,53.3457,-1.2837,-0.1061,53.4152,-1.2825,-0.4759,53.6826,-0.9667,-0.4966,53.6798,-0.9006,-0.4688,53.9715,-1.2004,-0.8164,54.0235,-1.1262,-0.4728,53.9756,-1.2053,-0.5644,53.5272,-1.3029,-0.7632,53.3329,-1.5082,-0.1874,53.3555,-1.2904,-0.0751,53.2056,-0.7007,-0.3069,53.9181,-1.1451,0.0,53.6937,-0.8036,-0.244,53.6727,-0.7348,-0.6686,53.6009,-1.5226,-0.0597,53.5124,-0.6791,-0.3053,53.8486,-1.2066,0.0,53.7369,-1.231,0.0,53.6503,-1.2442,0.1339,53.4243,-0.7286,0.5408,53.9262,-1.1168,0.8563,53.4313,-1.3877,0.8128,53.4037,-1.4239,0.672,53.4022,-1.5737,0.2345,53.4473,-1.7783,0.0,53.7185,-0.885,0.1181,53.3548,-1.1572,0.2789,53.4448,-1.2817,0.244,53.6727,-0.7348};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_68_vector_1()
		{
			double[] value = {-0.9999,-0.0018,0.0122,-0.998,-0.0115,-0.0622,-0.9886,0.148,-0.028,-0.9883,0.1419,0.0565,-0.9876,-0.094,-0.1259,-0.9871,-0.1299,-0.0934,-0.9862,-0.0521,-0.1573,-0.9854,0.1696,0.0117,-0.9826,0.1307,-0.1316,-0.982,-0.1324,0.1345,-0.9795,-0.1208,0.161,-0.9775,-0.2092,0.0264,-0.9768,0.0592,0.2059,-0.9724,0.1062,0.2079,-0.9711,0.0246,-0.2373,-0.9707,-0.0386,-0.237,-0.9678,0.2304,0.1015,-0.9672,0.2542,-0.0012,-0.9668,0.2325,-0.1057,-0.9663,-0.0621,0.2497,-0.9624,-0.2693,-0.0371,-0.9601,-0.0242,-0.2786,-0.9593,-0.1149,0.2579,-0.956,0.2648,-0.1266,-0.9532,-0.1129,-0.2806,-0.952,-0.0121,0.3059,-0.9514,0.2243,0.2112,-0.9489,0.3133,-0.0363,-0.947,-0.3042,-0.1032,-0.9455,0.3161,-0.0782,-0.9438,0.1394,0.2995,-0.9421,0.2973,0.1554,-0.9405,-0.2748,-0.1997,-0.9403,0.3078,0.1455,-0.9392,-0.0365,0.3415,-0.939,-0.3011,-0.1664,-0.9379,-0.3451,0.0339,-0.9369,-0.0407,0.3472,-0.9326,0.3523,-0.0787,-0.93,-0.2729,-0.2463,-0.9276,0.0141,0.3733,-0.9254,-0.3205,0.2021,-0.9248,0.3084,0.2226,-0.9207,-0.0451,0.3876,-0.9206,-0.3903,0.0104,-0.9189,0.2011,-0.3394,-0.9161,0.4005,-0.021,-0.9139,0.3775,-0.1494,-0.913,-0.0414,-0.4058,-0.9091,-0.1341,0.3945,-0.9058,0.0323,0.4224,-0.9041,0.21,-0.3721,-0.9039,-0.4252,0.0456,-0.9,0.0514,0.4329,-0.897,-0.0555,-0.4386,-0.8959,0.3386,-0.2875,-0.8957,0.3095,-0.3192,-0.8953,0.4453,-0.0075,-0.8918,0.0228,0.4519,-0.8907,0.4525,0.0448,-0.8905,-0.021,-0.4545,-0.8899,0.4135,-0.1927,-0.8865,0.349,0.3039,-0.8858,-0.4577,0.0769,-0.8839,-0.1863,0.4289,-0.8779,0.1027,-0.4678,-0.8769,-0.2542,0.408,-0.8767,0.4469,-0.178,-0.8737,-0.1147,0.4727,-0.8713,-0.0316,0.4897,-0.8711,0.3591,0.335,-0.8673,-0.1817,-0.4633,-0.8666,0.4539,0.2074,-0.8665,-0.4073,-0.2887,-0.8659,0.0232,0.4998,-0.8658,0.3514,-0.3563,-0.8639,-0.0351,0.5024,-0.8624,0.4658,-0.1983,-0.8622,-0.4994,0.0848,-0.8607,0.4571,0.2241,-0.8567,-0.4754,0.1999,-0.8503,0.1943,-0.4891,-0.8495,-0.1617,-0.5023,-0.8483,-0.4928,0.1935,-0.8482,-0.4911,-0.1984,-0.848,0.2702,-0.4559,-0.8466,-0.3695,-0.383,-0.8444,-0.2743,0.4602,-0.8427,-0.1525,0.5163,-0.8418,-0.0245,-0.5392,-0.8406,0.2749,0.4667,-0.839,-0.5441,0.0077,-0.838,0.255,-0.4824,-0.8378,-0.3691,0.4024,-0.8374,0.5173,0.1767,-0.8371,0.5407,0.0837,-0.8352,0.433,0.3391,-0.8338,-0.5488,-0.0602,-0.8317,0.0971,-0.5467,-0.8301,-0.5383,0.1451,-0.8279,-0.5505,0.1077,-0.8249,0.0189,-0.5649,-0.8237,0.5581,0.0997,-0.823,-0.0489,0.5659,-0.8208,0.0192,-0.5709,-0.8202,-0.221,0.5276,-0.8197,-0.1655,0.5484,-0.8194,0.1891,-0.5411,-0.8175,-0.1661,0.5514,-0.8143,0.0038,0.5804,-0.8137,0.2239,-0.5364,-0.813,0.5263,0.2491,-0.8127,-0.4142,0.4098,-0.8118,0.135,0.5681,-0.8108,-0.3377,-0.4781,-0.8088,0.5757,0.1203,-0.8059,-0.515,-0.2919,-0.8055,-0.0786,-0.5873,-0.8046,0.5197,-0.2874,-0.8012,0.2162,-0.5579,-0.7994,-0.302,0.5193,-0.7987,0.23,0.556,-0.7961,0.6032,0.0487,-0.7942,0.0857,-0.6016,-0.7913,0.3746,0.4832,-0.7911,-0.4049,-0.4584,-0.7904,0.4404,-0.4257,-0.7895,0.0071,0.6138,-0.7878,0.209,-0.5794,-0.7844,0.5539,-0.2791,-0.7841,0.3029,-0.5417,-0.7835,-0.4576,-0.4204,-0.7824,0.3344,-0.5254,-0.778,0.4877,0.3961,-0.7778,-0.3971,0.4872,-0.7775,-0.3742,0.5054,-0.777,-0.6127,0.1443,-0.7739,-0.2506,0.5817,-0.7733,0.2673,-0.5749,-0.7721,-0.423,0.4742,-0.7714,0.0353,0.6354,-0.7708,-0.6052,-0.1992,-0.7698,-0.4077,0.4911,-0.7684,0.3787,-0.5159,-0.7666,0.637,0.0817,-0.766,0.6364,0.0904,-0.7654,0.4522,0.4579,-0.7638,-0.0047,0.6454,-0.7578,-0.4194,0.4998,-0.7572,-0.3683,-0.5394,-0.7565,-0.3887,0.526,-0.7533,-0.1953,0.628,-0.7528,-0.611,0.2448,-0.7528,0.2863,-0.5927,-0.7525,-0.5932,-0.2861,-0.7524,0.616,0.2333,-0.7524,-0.6009,-0.2699,-0.7522,-0.4185,0.5089,-0.7484,-0.41,-0.5214,-0.7442,0.4107,-0.5267,-0.7407,0.4902,0.4595,-0.7405,0.3397,-0.5799,-0.7398,0.4554,0.4952,-0.7368,-0.219,-0.6396,-0.7333,-0.6448,-0.2158,-0.7332,-0.3043,0.6082,-0.7314,0.2427,0.6373,-0.7272,-0.495,0.4756,-0.7256,-0.6795,-0.1087,-0.7243,0.1689,0.6685,-0.7236,0.3998,-0.5626,-0.7227,0.1668,-0.6707,-0.7205,-0.2157,0.659,-0.7162,0.3382,0.6105,-0.7122,0.6033,0.3588,-0.711,0.1184,-0.6932,-0.7072,-0.0757,0.7029,-0.7042,-0.3295,0.629,-0.7027,0.409,-0.5821,-0.6998,-0.7124,0.0535,-0.6993,0.0134,0.7147,-0.6982,0.4492,0.5574,-0.6963,0.034,-0.7169,-0.6953,-0.0159,0.7185,-0.6936,-0.3695,0.6183,-0.6933,0.2453,0.6776,-0.6926,-0.1045,-0.7137,-0.6914,0.4487,-0.5662,-0.6898,0.5784,-0.4355,-0.6888,0.646,0.3291,-0.6849,0.2467,0.6856,-0.6845,0.1855,-0.705,-0.6842,-0.114,0.7203,-0.6818,-0.6121,-0.4006,-0.6811,0.3031,-0.6665,-0.6754,-0.7374,0.0124,-0.6719,0.1505,0.7251,-0.6699,-0.023,0.7421,-0.6684,-0.3833,0.6374,-0.6684,-0.0222,0.7435,-0.6642,-0.6847,-0.3001,-0.6641,0.0495,0.746,-0.6634,0.1913,0.7234,-0.6632,-0.7086,0.2409,-0.6629,0.5137,-0.5446,-0.6588,-0.7511,0.0421,-0.6581,0.0827,0.7484,-0.6562,0.712,0.2498,-0.6561,0.7458,0.1152,-0.6471,-0.4949,0.5799,-0.6462,0.6919,0.3222,-0.6435,0.4187,-0.6408,-0.6434,0.2968,-0.7057,-0.642,-0.684,-0.3464,-0.6409,-0.6992,-0.3168,-0.64,-0.7277,0.2468,-0.64,0.6534,0.4043,-0.6389,0.6523,0.4078,-0.6378,0.7493,-0.178,-0.6365,-0.1986,-0.7453,-0.6339,-0.6824,-0.364,-0.6339,0.5039,-0.5867,-0.6334,-0.5316,-0.5623,-0.6321,0.6698,0.3897,-0.6319,0.2145,-0.7448,-0.6265,-0.7192,-0.3004,-0.6238,-0.6837,0.3787,-0.6238,0.1011,0.775,-0.6229,0.7233,0.2981,-0.6222,0.7828,0.0055,-0.6174,0.263,0.7414,-0.6151,-0.6386,0.4624,-0.6146,-0.6655,-0.4235,-0.6119,0.7861,-0.0876,-0.6102,0.0148,0.7921,-0.6069,-0.7918,-0.0689,-0.6058,0.6166,0.5028,-0.6056,-0.7842,0.1348,-0.6037,-0.3376,-0.7222,-0.6036,0.7093,0.3642,-0.6025,-0.7977,-0.0273,-0.6016,0.212,0.7701,-0.6011,-0.2035,-0.7728,-0.5998,-0.5015,-0.6234,-0.5983,-0.1799,0.7808,-0.5955,0.0264,0.8029,-0.5934,0.3376,-0.7307,-0.5927,-0.4874,0.6411,-0.5885,0.1899,0.7858,-0.5851,-0.7693,-0.2566,-0.5796,0.3525,-0.7348,-0.5783,0.597,0.556,-0.5781,0.1833,0.7951,-0.576,0.6128,-0.5411,-0.5728,-0.3366,0.7474,-0.5712,-0.4926,0.6566,-0.5697,-0.1903,0.7995,-0.5695,-0.25,0.783,-0.5669,-0.814,0.127,-0.5658,-0.8155,-0.1217,-0.5655,-0.6625,-0.4912,-0.565,0.7663,0.3059,-0.5629,-0.8106,-0.1614,-0.5616,0.6962,-0.4472,-0.5609,0.1401,0.816,-0.5608,-0.5505,0.6184,-0.5565,-0.018,0.8306,-0.5555,-0.5268,0.6434,-0.5549,0.5485,0.6254,-0.5541,0.3369,-0.7612,-0.5511,-0.3906,-0.7374,-0.5489,0.6773,-0.4898,-0.5469,0.3597,0.756,-0.5462,-0.6899,0.475,-0.5423,0.8364,-0.0796,-0.5386,-0.8397,-0.0699,-0.5386,-0.3939,-0.7448,-0.537,0.4679,-0.702,-0.5361,0.7492,0.3888,-0.5345,-0.0931,-0.84,-0.5322,0.0801,0.8429,-0.5316,0.2039,-0.8221,-0.5295,-0.6097,0.5898,-0.5275,0.8433,0.1029,-0.525,-0.8362,-0.1585,-0.5248,-0.145,0.8388,-0.5216,-0.1328,0.8428,-0.5209,0.1861,0.8331,-0.5197,0.0224,-0.854,-0.5146,-0.1852,-0.8372,-0.512,-0.0661,-0.8564,-0.5114,0.8407,0.1782,-0.5091,0.116,-0.8528,-0.5091,-0.7736,-0.3773,-0.5086,0.7775,-0.37,-0.5043,-0.6756,-0.5379,-0.5026,-0.0622,0.8623,-0.5023,0.3226,-0.8023,-0.502,-0.1403,0.8534,-0.5007,-0.8524,-0.1507,-0.5004,0.6098,-0.6146,-0.4987,0.2075,-0.8416,-0.498,-0.7566,0.4237,-0.4971,0.3921,-0.774,-0.4939,0.8099,0.3164,-0.4914,0.011,0.8708,-0.4902,0.6573,-0.5724,-0.4876,0.1687,0.8566,-0.4871,0.8491,0.2043,-0.4853,-0.3357,0.8074,-0.4821,-0.4732,-0.7373,-0.4803,-0.4762,0.7366,-0.4787,-0.8421,0.2485,-0.4779,0.7989,0.3652,-0.4778,0.8779,-0.0313,-0.4746,0.4024,-0.7828,-0.4731,-0.8312,-0.292,-0.4724,-0.8627,0.1802,-0.4722,0.1687,-0.8652,-0.4698,0.7902,-0.3936,-0.467,0.7725,-0.4304,-0.466,-0.3291,0.8213,-0.4649,-0.5243,0.7134,-0.4612,-0.8862,-0.0433,-0.4606,-0.8791,0.1231,-0.4604,-0.8875,-0.0196,-0.4529,0.1291,0.8822,-0.4525,0.867,0.2089,-0.4517,0.0857,0.888,-0.4476,-0.8396,0.3077,-0.4457,0.8465,-0.2911,-0.4434,0.8354,-0.3248,-0.443,0.4275,0.788,-0.44,-0.7615,0.476,-0.4383,-0.4683,0.7672,-0.4373,-0.8989,-0.0296,-0.4366,0.5715,0.6949,-0.4364,0.3192,-0.8412,-0.4363,0.6336,0.6389,-0.4362,0.8404,0.3216,-0.4347,-0.6144,0.6584,-0.4341,-0.895,0.1027,-0.4332,0.556,0.7094,-0.4322,0.1541,0.8885,-0.4312,-0.2476,0.8676,-0.4312,0.901,-0.0487,-0.4307,0.751,-0.5004,-0.427,0.4679,-0.7738,-0.4235,0.8631,-0.2751,-0.4223,-0.7704,0.4777,-0.4189,0.7614,-0.4948,-0.4184,-0.8959,-0.1492,-0.4182,-0.7217,0.5517,-0.4177,0.9052,0.0781,-0.4154,0.7261,-0.5479,-0.4153,-0.8753,0.2479,-0.412,-0.2864,0.865,-0.4106,-0.832,-0.3731,-0.4099,0.7803,0.4723,-0.4071,0.5904,-0.6969,-0.4034,-0.1824,0.8966,-0.4026,0.9152,-0.0175,-0.4014,-0.3269,-0.8556,-0.4014,0.8625,0.3082,-0.3999,-0.0648,0.9143,-0.3975,-0.2307,0.8881,-0.3954,0.6124,-0.6845,-0.3948,-0.5403,-0.7431,-0.3903,0.8543,0.3433,-0.386,0.905,-0.1788,-0.3849,-0.2368,-0.8921,-0.3826,-0.3832,0.8407,-0.3792,0.2883,-0.8793,-0.3764,-0.268,-0.8868,-0.3761,-0.911,-0.1692,-0.3733,-0.1539,0.9148,-0.3717,0.0793,0.9249,-0.3678,-0.1874,0.9108,-0.365,-0.5757,0.7317,-0.3603,0.5657,0.7417,-0.3597,-0.9321,-0.0434,-0.358,-0.9236,-0.1372,-0.3578,0.0219,0.9335,-0.3562,-0.0282,0.934,-0.3547,-0.2061,0.912,-0.3543,0.1056,0.9292,-0.353,-0.8289,0.4339,-0.3518,-0.6345,0.6882,-0.3493,0.8381,0.419,-0.3477,-0.7537,0.5577,-0.346,-0.5431,0.765,-0.3455,0.6818,-0.6448,-0.3443,-0.9385,-0.0256,-0.3426,0.9336,-0.1052,-0.3426,-0.9385,-0.0423,-0.3403,-0.045,0.9392,-0.3394,-0.9278,0.1548,-0.3378,0.9403,-0.0406,-0.3353,-0.7802,0.528,-0.3351,-0.2328,0.913,-0.335,0.0801,0.9388,-0.3338,-0.5183,0.7874,-0.3329,-0.5333,0.7777,-0.3319,-0.9423,-0.0445,-0.3303,-0.454,0.8275,-0.3292,-0.9345,0.1357,-0.3263,0.9353,-0.1366,-0.3255,0.8929,-0.3111,-0.3229,0.9387,0.1211,-0.3218,-0.837,0.4426,-0.3213,-0.8484,-0.4206,-0.3202,-0.5412,0.7775,-0.3193,-0.8797,-0.3525,-0.3158,-0.0546,0.9473,-0.3148,0.1447,0.9381,-0.3122,-0.2516,-0.9161,-0.3121,-0.5004,0.8076,-0.3103,0.9166,0.2521,-0.3076,0.2552,-0.9166,-0.3059,-0.5948,0.7434,-0.3036,-0.4662,0.8309,-0.3035,-0.9353,0.182,-0.2963,-0.564,0.7708,-0.2949,-0.8415,0.4526,-0.2927,0.2428,0.9249,-0.2924,-0.764,0.5752,-0.2921,0.6701,0.6824,-0.2911,0.3248,-0.8999,-0.2908,-0.0644,0.9546,-0.2907,-0.6608,0.692,-0.2893,0.2268,0.93,-0.2886,0.7592,-0.5833,-0.2869,-0.9307,0.2269,-0.2846,-0.6815,0.6742,-0.2842,0.0218,-0.9585,-0.2832,-0.8631,-0.4183,-0.2826,-0.615,0.7361,-0.2815,0.4445,0.8504,-0.2791,-0.3283,-0.9024,-0.2765,-0.9608,-0.0198,-0.2763,-0.6267,0.7286,-0.276,-0.9611,0.0137,-0.2755,0.6982,-0.6607,-0.2755,-0.9524,0.1304,-0.2725,0.7677,-0.58,-0.2709,-0.9499,-0.1557,-0.2705,0.9197,-0.2845,-0.2663,-0.9287,0.2579,-0.2663,0.8972,0.3522,-0.2638,0.8164,-0.5136,-0.2621,-0.965,0.0015,-0.2614,0.2588,0.9299,-0.2607,-0.9491,-0.1767,-0.26,0.7526,0.605,-0.2576,-0.0055,-0.9662,-0.2556,-0.2495,-0.934,-0.2549,0.3551,-0.8994,-0.2549,0.2315,-0.9389,-0.2524,0.1006,0.9624,-0.2513,-0.2975,-0.9211,-0.25,-0.9344,0.2537,-0.2495,0.4148,-0.875,-0.2483,0.3448,-0.9052,-0.2482,0.7602,0.6004,-0.248,-0.9291,-0.2745,-0.2419,0.0637,0.9682,-0.2409,-0.9698,-0.0392,-0.2395,0.9259,0.292,-0.2392,0.0642,-0.9688,-0.2384,0.449,-0.8611,-0.2381,0.5628,0.7915,-0.238,0.2347,0.9425,-0.2368,0.967,-0.0936,-0.2343,-0.142,0.9617,-0.2338,-0.9051,-0.3552,-0.2338,-0.4669,-0.8529,-0.2336,0.4554,-0.8591,-0.2332,0.9701,-0.0671,-0.2293,0.5091,-0.8296,-0.2272,-0.9378,0.2625,-0.2195,-0.9729,0.0728,-0.2195,0.8901,0.3995,-0.214,-0.976,-0.0412,-0.2131,0.5625,0.7988,-0.213,0.2252,-0.9507,-0.2122,0.7468,-0.6303,-0.2117,0.3177,-0.9243,-0.2104,-0.4829,-0.85,-0.2099,0.2157,0.9536,-0.2088,-0.9127,0.3512,-0.2072,-0.9293,0.3056,-0.2065,-0.0153,0.9783,-0.2058,0.9118,0.3553,-0.2049,0.7963,0.5691,-0.2045,0.242,-0.9485,-0.2031,0.8933,0.401,-0.203,-0.7973,-0.5685,-0.2011,-0.9535,0.2244,-0.2001,-0.7111,0.674,-0.1995,-0.4819,-0.8532,-0.1977,-0.184,0.9628,-0.196,-0.6276,-0.7534,-0.1938,0.1149,-0.9743,-0.1936,0.2021,-0.96,-0.1931,-0.8575,-0.4768,-0.1927,0.1312,-0.9724,-0.1925,0.9811,-0.0192,-0.1922,-0.7175,0.6695,-0.1902,0.8988,0.395,-0.1898,0.4612,0.8667,-0.1891,0.9188,-0.3466,-0.1883,-0.2971,0.9361,-0.1882,-0.5712,0.799,-0.1866,-0.4217,0.8873,-0.1864,0.6544,0.7329,-0.1829,0.5099,-0.8406,-0.1822,-0.9241,0.3359,-0.1822,-0.8124,0.5539,-0.1802,0.932,0.3144,-0.1802,0.0991,0.9786,-0.1798,0.5694,-0.8021,-0.1796,0.9837,-0.0096,-0.1794,0.9076,0.3795,-0.1788,-0.5489,-0.8166,-0.1771,0.8003,-0.5728,-0.1766,0.7243,-0.6665,-0.1764,-0.6302,-0.7562,-0.1757,-0.721,0.6703,-0.1755,-0.5244,0.8332,-0.1743,-0.9771,0.1223,-0.1738,-0.1772,0.9687,-0.1728,0.9762,-0.1313,-0.1704,-0.9847,0.036,-0.1702,-0.8735,-0.4562,-0.1682,0.3946,-0.9033,-0.168,0.5313,-0.8303,-0.166,0.2714,0.9481,-0.1656,0.7898,-0.5905,-0.1648,0.9243,0.3442,-0.1644,0.1175,0.9794,-0.1625,0.6202,0.7675,-0.1617,-0.753,0.6378,-0.16,-0.166,-0.9731,-0.1591,-0.6515,-0.7418,-0.1576,0.7235,0.6721,-0.155,0.5403,-0.827,-0.1518,0.4883,0.8594,-0.1518,-0.8127,-0.5626,-0.1517,0.7738,-0.615,-0.1508,0.1964,-0.9689,-0.1496,-0.9164,0.3712,-0.1471,0.7413,-0.6548,-0.1447,0.498,0.855,-0.1442,-0.5118,0.8469,-0.1427,-0.2941,-0.9451,-0.1425,-0.6901,0.7095,-0.1417,0.1857,-0.9723,-0.1414,-0.9871,-0.0747,-0.141,0.5875,-0.7968,-0.1376,-0.0251,0.9902,-0.136,0.1591,0.9779,-0.1358,-0.7234,0.6769,-0.1356,0.6744,-0.7258,-0.135,-0.846,-0.5158,-0.1324,-0.7148,0.6867,-0.1316,0.7463,0.6524,-0.1306,-0.3744,-0.918,-0.1306,-0.9907,0.0384,-0.1292,-0.9354,-0.3293,-0.1265,-0.9507,0.2832,-0.1238,0.2468,0.9611,-0.1197,-0.7715,-0.6249,-0.1183,0.4446,-0.8879,-0.1163,-0.7606,0.6387,-0.1159,-0.7223,0.6818,-0.1155,0.7978,-0.5918,-0.1152,-0.2823,0.9524,-0.1148,-0.9905,-0.0754,-0.1146,0.2886,-0.9506,-0.1142,-0.7819,0.6128,-0.1142,0.0562,0.9919,-0.1142,-0.3076,0.9447,-0.1142,-0.862,-0.4939,-0.1117,0.5068,-0.8548,-0.1106,0.9382,0.3279,-0.1096,-0.7671,0.632,-0.109,0.141,-0.984,-0.1089,0.1113,0.9878,-0.1064,-0.8561,-0.5057,-0.1059,0.7758,-0.622,-0.1049,-0.2913,0.9509,-0.1049,0.8129,-0.5729,-0.1009,-0.5306,0.8416,-0.1007,-0.5022,0.8588,-0.1,0.3174,-0.943,-0.0996,0.0138,0.9949,-0.0972,-0.7223,0.6847,-0.0964,0.5245,-0.8459,-0.096,0.8143,-0.5725,-0.095,0.4573,-0.8842,-0.0947,-0.1127,-0.9891,-0.094,0.9796,-0.1777,-0.0934,-0.9081,-0.4082,-0.0902,0.5078,0.8567,-0.0891,-0.481,-0.8722,-0.0878,-0.8214,0.5636,-0.0873,-0.9667,0.2405,-0.0869,0.8252,-0.5581,-0.0859,-0.9939,0.0692,-0.0856,-0.5738,0.8145,-0.0853,-0.9826,-0.1651,-0.0848,0.7991,-0.5951,-0.0825,0.5285,0.8449,-0.0815,0.7819,-0.618,-0.0801,0.377,-0.9227,-0.08,0.5252,0.8472,-0.0796,0.173,-0.9817,-0.0775,0.7886,-0.61,-0.0771,-0.8251,-0.5597,-0.0765,-0.1022,0.9918,-0.0738,-0.654,0.7529,-0.0721,-0.978,-0.1957,-0.0713,-0.2092,0.9753,-0.0703,-0.9585,0.2761,-0.0701,-0.8764,0.4765,-0.0677,0.1976,-0.9779,-0.0671,-0.6299,0.7738,-0.0671,0.3776,-0.9235,-0.0665,-0.751,0.657,-0.0657,-0.0021,0.9978,-0.0655,-0.8928,-0.4456,-0.0654,0.1671,-0.9838,-0.0651,-0.9929,0.0991,-0.0637,0.2012,0.9775,-0.0637,-0.8815,0.4678,-0.0629,-0.8093,0.5841,-0.0626,0.1166,-0.9912,-0.0623,0.7863,-0.6147,-0.0612,-0.8966,0.4387,-0.0612,-0.76,0.6471,-0.0605,0.4048,-0.9124,-0.0605,-0.3826,-0.9219,-0.0601,0.8183,-0.5717,-0.0597,0.8314,-0.5525,-0.0591,-0.9963,0.0627,-0.0587,-0.8012,0.5955,-0.0573,-0.7875,0.6137,-0.0564,0.1508,-0.987,-0.0556,-0.7679,0.6382,-0.0549,0.8495,-0.5247,-0.0546,0.9715,-0.2306,-0.0509,-0.9956,0.0783,-0.0491,0.7818,0.6216,-0.0489,-0.7399,-0.6709,-0.0481,0.4742,-0.8791,-0.0445,0.2366,-0.9706,-0.0435,-0.981,-0.1892,-0.0435,-0.3212,0.946,-0.0419,0.1509,-0.9877,-0.0418,0.6217,0.7822,-0.0402,0.788,-0.6144,-0.0401,0.7662,-0.6414,-0.039,-0.9512,-0.306,-0.0381,-0.4585,-0.8879,-0.0381,0.8383,-0.5439,-0.0377,0.8433,0.5361,-0.0373,0.7047,0.7085,-0.0366,-0.4039,0.9141,-0.0358,0.3459,0.9376,-0.0349,0.6233,-0.7812,-0.0348,0.8608,0.5077,-0.0321,-0.9994,-0.0126,-0.0294,0.8102,0.5854,-0.0285,-0.1081,-0.9937,-0.0279,0.2022,-0.9789,-0.0265,0.9993,0.0262,-0.025,0.1276,-0.9915,-0.0214,-0.986,-0.1656,-0.0207,0.3475,-0.9375,-0.0204,0.0359,0.9991,-0.0172,-0.9474,0.3197,-0.0171,-0.1444,0.9894,-0.0159,0.9973,-0.0711,-0.0152,-0.9676,0.252,-0.0152,0.1303,-0.9914,-0.0146,-0.9459,0.3241,-0.0142,0.8547,-0.5189,-0.0142,-0.5476,0.8366,-0.0138,-0.0531,0.9985,-0.0124,-0.9931,0.1168,-0.0117,0.7302,0.6832,-0.0096,0.8025,-0.5966,-0.0089,-0.3579,0.9337,-0.0082,-0.9858,0.1675,-0.0082,-0.9969,-0.0786,-0.0078,0.0272,-0.9996,-0.0069,0.7155,-0.6985,-0.0042,0.7356,-0.6775,-0.0033,-0.1019,0.9948,-0.0022,0.4327,0.9015,-0.002,0.0348,-0.9994,0.0,0.0401,0.9992,0.0,-0.0825,0.9966,0.0,-0.1165,0.9932,0.0,0.1452,0.9894,0.0,0.5584,0.8295,0.0,0.5629,0.8265,0.0,-0.6114,0.7913,0.0,0.8373,0.5468,0.0,-0.8404,0.542,0.0,-0.8911,0.4539,0.0,0.9486,0.3166,0.0,0.9487,0.3163,0.0,0.949,0.3152,0.0,0.9567,0.2911,0.0,-0.9844,0.1762,0.0,-0.9905,0.1376,0.0,-0.9997,-0.0234,0.0,0.9997,-0.024,0.0,0.9974,-0.072,0.0,-0.9908,-0.1353,0.0,-0.9528,-0.3037,0.0,-0.9484,-0.3171,0.0,-0.9474,-0.3199,0.0,-0.8813,-0.4725,0.0,0.8691,-0.4947,0.0,0.8666,-0.4991,0.0,-0.8587,-0.5125,0.0,0.838,-0.5457,0.0,0.7961,-0.6052,0.0,0.7392,-0.6735,0.0,0.5204,-0.8539,0.0,0.3533,-0.9355,0.0,-0.348,-0.9375,0.0,0.2082,-0.9781,0.0,-0.1953,-0.9807,0.0,0.1771,-0.9842,0.0,0.1638,-0.9865,0.0,0.0918,-0.9958,0.002,0.0348,-0.9994,0.0022,0.4327,0.9015,0.0029,0.1476,-0.989,0.0033,-0.1019,0.9948,0.004,0.7402,-0.6724,0.0041,0.8465,0.5324,0.0042,0.7356,-0.6775,0.0049,0.7311,-0.6822,0.0069,0.7155,-0.6985,0.0078,0.0272,-0.9996,0.0082,-0.9969,-0.0786,0.0082,-0.9858,0.1675,0.009,-0.038,0.9992,0.0099,-0.0227,0.9997,0.0103,-0.9506,0.3101,0.0112,0.0512,0.9986,0.0117,0.7302,0.6832,0.0142,0.8547,-0.5189,0.0146,-0.9459,0.3241,0.0159,0.9973,-0.0711,0.017,0.7843,0.6202,0.0183,0.8035,-0.5951,0.0192,0.8187,0.5739,0.0207,0.3475,-0.9375,0.0214,-0.986,-0.1656,0.0238,-0.8963,0.4428,0.025,0.1276,-0.9915,0.0265,0.9993,0.0262,0.0279,0.2022,-0.9789,0.0281,-0.9945,0.1011,0.0285,-0.1081,-0.9937,0.0337,-0.8116,0.5833,0.0341,0.5355,0.8439,0.0349,0.6233,-0.7812,0.0358,0.3459,0.9376,0.0373,0.7047,0.7085,0.0377,0.8433,0.5361,0.0381,0.8383,-0.5439,0.0381,-0.4585,-0.8879,0.0389,0.1957,0.9799,0.039,-0.9512,-0.306,0.0401,0.7662,-0.6414,0.0402,0.788,-0.6144,0.0404,0.2272,-0.973,0.0418,0.6217,0.7822,0.0419,0.1509,-0.9877,0.0435,-0.3212,0.946,0.0444,0.1813,-0.9824,0.0448,-0.8868,0.4599,0.0472,-0.7408,-0.6701,0.0481,0.4742,-0.8791,0.0509,-0.9956,0.0783,0.0546,0.9715,-0.2306,0.0549,0.8495,-0.5247,0.0558,-0.8285,0.5571,0.0564,0.1508,-0.987,0.0573,-0.7875,0.6137,0.0591,-0.9963,0.0627,0.0597,0.8314,-0.5525,0.0601,0.8183,-0.5717,0.0605,-0.3826,-0.9219,0.0605,0.4048,-0.9124,0.0606,-0.4294,0.9011,0.0608,-0.7834,0.6185,0.0624,-0.9824,-0.1759,0.0626,0.1166,-0.9912,0.0651,-0.9929,0.0991,0.0654,0.1671,-0.9838,0.0655,-0.8928,-0.4456,0.0657,-0.0021,0.9978,0.0665,-0.751,0.657,0.0671,0.3776,-0.9235,0.0671,-0.6299,0.7738,0.0676,0.7891,-0.6105,0.0713,-0.1137,0.991,0.0713,-0.2092,0.9753,0.0721,-0.978,-0.1957,0.0738,-0.654,0.7529,0.074,-0.9954,0.0601,0.0775,0.7886,-0.61,0.0796,0.173,-0.9817,0.0797,-0.8244,-0.5604,0.0801,0.377,-0.9227,0.081,-0.7904,0.6072,0.0813,-0.8232,0.5619,0.0815,0.7819,-0.618,0.0825,0.5285,0.8449,0.0843,0.823,-0.5617,0.0848,0.7991,-0.5951,0.0856,-0.5738,0.8145,0.0857,0.4345,-0.8966,0.086,0.5165,0.8519,0.0878,-0.9957,0.0311,0.0879,0.7175,-0.691,0.0885,-0.8769,0.4725,0.0891,-0.481,-0.8722,0.092,-0.9529,0.2889,0.0934,-0.9081,-0.4082,0.094,0.9796,-0.1777,0.0947,-0.1127,-0.9891,0.095,0.4573,-0.8842,0.096,0.8143,-0.5725,0.0964,0.5245,-0.8459,0.0988,-0.7923,0.6021,0.0996,0.0138,0.9949,0.1,0.3174,-0.943,0.1009,-0.5306,0.8416,0.1028,-0.327,0.9394,0.1049,0.8129,-0.5729,0.1059,0.7758,-0.622,0.1064,-0.8561,-0.5057,0.1089,0.1113,0.9878,0.1106,0.9382,0.3279,0.1117,0.5068,-0.8548,0.112,-0.7326,0.6714,0.1123,-0.7567,0.6441,0.1135,-0.9433,-0.312,0.1135,0.2428,0.9634,0.1142,-0.862,-0.4939,0.1142,-0.3076,0.9447,0.1142,-0.7819,0.6128,0.1145,-0.5678,-0.8152,0.1146,0.2886,-0.9506,0.1147,-0.9825,-0.1468,0.1148,-0.9905,-0.0754,0.1152,-0.2823,0.9524,0.1155,0.7978,-0.5918,0.1159,-0.7223,0.6818,0.1184,-0.4662,0.8767,0.1197,-0.7715,-0.6249,0.1208,0.1583,0.98,0.1219,0.1584,-0.9798,0.1265,-0.9507,0.2832,0.1306,-0.3744,-0.918,0.1316,0.7463,0.6524,0.1324,-0.7148,0.6867,0.1331,0.1969,-0.9713,0.1336,0.5188,-0.8444,0.135,-0.846,-0.5158,0.1358,-0.7234,0.6769,0.1361,0.7384,-0.6604,0.1396,0.5819,-0.8012,0.1425,-0.6901,0.7095,0.1427,-0.676,-0.7229,0.1427,-0.2941,-0.9451,0.1447,0.498,0.855,0.1496,-0.9164,0.3712,0.1502,0.6013,-0.7848,0.1508,0.1964,-0.9689,0.1517,0.7738,-0.615,0.1518,-0.8127,-0.5626,0.1518,0.4883,0.8594,0.1541,-0.5189,0.8408,0.1547,-0.0477,0.9868,0.1552,-0.9801,-0.124,0.1555,-0.6384,-0.7538,0.1572,0.9035,0.3986,0.16,-0.166,-0.9731,0.1619,-0.9783,0.1294,0.1621,0.6939,0.7016,0.1644,0.1175,0.9794,0.1647,0.6467,0.7447,0.1648,0.9243,0.3442,0.1653,0.0723,0.9836,0.1656,0.7898,-0.5905,0.166,0.2714,0.9481,0.1674,-0.4051,0.8988,0.1682,0.3946,-0.9033,0.1693,-0.9584,0.2297,0.1695,-0.5313,0.83,0.1702,-0.8735,-0.4562,0.1704,-0.9847,0.036,0.1719,-0.7484,0.6406,0.1757,-0.721,0.6703,0.1766,0.7243,-0.6665,0.1771,0.8003,-0.5728,0.1792,-0.9646,0.1937,0.1796,0.9837,-0.0096,0.1802,0.932,0.3144,0.1822,-0.8124,0.5539,0.1829,0.5099,-0.8406,0.1832,-0.5783,0.795,0.1864,0.6544,0.7329,0.1874,0.4753,0.8596,0.188,0.9765,-0.1057,0.1891,0.9188,-0.3466,0.1925,0.9811,-0.0192,0.1927,0.1312,-0.9724,0.1931,-0.8575,-0.4768,0.1936,0.5765,-0.7938,0.1936,0.2021,-0.96,0.1947,0.5643,0.8023,0.1958,-0.4829,-0.8535,0.196,-0.6276,-0.7534,0.1977,-0.184,0.9628,0.1978,-0.6981,0.6881,0.2008,0.8131,0.5464,0.203,-0.7973,-0.5685,0.2045,0.242,-0.9485,0.2058,0.9118,0.3553,0.2064,0.0835,0.9749,0.2072,-0.9293,0.3056,0.2073,-0.487,-0.8484,0.2088,-0.9127,0.3512,0.2099,0.2157,0.9536,0.2117,0.3177,-0.9243,0.213,0.2252,-0.9507,0.2133,-0.1586,0.964,0.214,-0.976,-0.0412,0.2156,0.9137,0.3445,0.2195,-0.9729,0.0728,0.2197,0.0949,-0.9709,0.2204,0.0028,0.9754,0.2281,0.2258,0.9471,0.2293,0.5091,-0.8296,0.2306,-0.34,0.9117,0.2331,-0.9092,-0.3451,0.2332,0.9701,-0.0671,0.2334,-0.9375,0.258,0.2336,0.4554,-0.8591,0.2338,-0.4669,-0.8529,0.2343,-0.142,0.9617,0.2345,-0.8806,-0.4119,0.2367,0.8858,0.3991,0.2368,0.967,-0.0936,0.2381,0.5628,0.7915,0.2392,0.0642,-0.9688,0.2395,0.9259,0.292,0.2409,-0.9698,-0.0392,0.2419,0.0637,0.9682,0.2424,0.1046,0.9645,0.2439,0.7266,-0.6423,0.2442,0.4618,-0.8527,0.2451,-0.9434,0.2233,0.2454,-0.9236,0.2946,0.248,-0.9291,-0.2745,0.2482,0.7602,0.6004,0.2483,0.3448,-0.9052,0.2495,0.4148,-0.875,0.2513,-0.2975,-0.9211,0.2549,0.2315,-0.9389,0.2549,0.3551,-0.8994,0.2556,-0.2495,-0.934,0.2576,-0.0055,-0.9662,0.2584,0.2359,0.9368,0.2607,-0.9491,-0.1767,0.2621,-0.965,0.0015,0.2639,0.8166,-0.5134,0.2663,0.8972,0.3522,0.2686,0.9111,-0.3126,0.2709,-0.9499,-0.1557,0.2725,0.7677,-0.58,0.2736,-0.6224,0.7334,0.2739,0.2171,0.9369,0.2745,0.8911,0.3614,0.2765,-0.9608,-0.0198,0.2769,-0.9522,0.1287,0.2777,-0.9119,0.302,0.2791,-0.3283,-0.9024,0.2802,0.4327,0.8569,0.2802,0.7581,0.5889};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_68_vector_2()
		{
			double[] value = {0.2811,-0.9589,0.0384,0.2842,0.0218,-0.9585,0.2869,-0.9307,0.2269,0.2886,0.7592,-0.5833,0.2893,0.2268,0.93,0.2907,-0.6608,0.692,0.2908,-0.0644,0.9546,0.2921,0.6701,0.6824,0.2949,-0.8415,0.4526,0.2963,-0.564,0.7708,0.3033,-0.6784,0.6691,0.3036,-0.4662,0.8309,0.305,-0.9349,0.1816,0.3076,0.2552,-0.9166,0.3114,-0.9389,0.1467,0.3121,-0.5004,0.8076,0.3122,-0.2516,-0.9161,0.3127,-0.8565,-0.4107,0.3129,-0.7575,0.573,0.3143,-0.5989,0.7366,0.3148,0.1447,0.9381,0.3183,-0.5858,0.7453,0.3193,-0.8797,-0.3525,0.3198,0.7124,-0.6247,0.3202,-0.5412,0.7775,0.3229,0.9387,0.1211,0.3263,0.9353,-0.1366,0.3282,-0.0689,0.9421,0.329,0.3088,-0.8924,0.3292,-0.9345,0.1357,0.3303,-0.454,0.8275,0.3329,-0.5333,0.7777,0.3336,0.9152,0.2261,0.335,0.0801,0.9388,0.335,-0.8242,0.4565,0.3351,-0.2328,0.913,0.3353,-0.7802,0.528,0.3356,-0.9412,-0.0384,0.3378,0.9403,-0.0406,0.3403,-0.045,0.9392,0.3426,-0.9385,-0.0423,0.3426,0.9336,-0.1052,0.3429,-0.9391,-0.0228,0.343,-0.6651,0.6634,0.3455,0.6818,-0.6448,0.346,-0.5431,0.765,0.3468,-0.8184,0.4582,0.3477,-0.7537,0.5577,0.3488,0.553,0.7566,0.3497,-0.5015,0.7913,0.3518,-0.6345,0.6882,0.3543,0.1056,0.9292,0.3547,-0.2061,0.912,0.3562,-0.0282,0.934,0.3573,-0.179,0.9167,0.3578,0.0219,0.9335,0.358,-0.9236,-0.1372,0.3598,0.8269,0.4322,0.3619,0.882,-0.3018,0.3621,-0.9312,-0.041,0.3664,-0.5654,0.739,0.3717,0.0793,0.9249,0.3733,-0.1539,0.9148,0.3764,-0.268,-0.8868,0.3768,-0.9117,-0.1639,0.3792,0.2883,-0.8793,0.3826,-0.3832,0.8407,0.3849,-0.2368,-0.8921,0.386,0.905,-0.1788,0.3903,0.8543,0.3433,0.3927,0.611,-0.6874,0.393,-0.2364,0.8886,0.3946,0.7906,-0.4683,0.3948,-0.5403,-0.7431,0.3984,0.5857,-0.7058,0.3999,-0.0648,0.9143,0.4014,0.8625,0.3082,0.4014,-0.3269,-0.8556,0.4026,0.9152,-0.0175,0.4034,-0.1824,0.8966,0.4065,-0.2862,0.8676,0.4099,0.7803,0.4723,0.4106,-0.832,-0.3731,0.4128,0.6315,0.6564,0.4153,-0.8753,0.2479,0.4154,0.7261,-0.5479,0.4168,0.7279,-0.5445,0.4177,0.9052,0.0781,0.4182,-0.7217,0.5517,0.4184,-0.8959,-0.1492,0.4223,-0.7704,0.4777,0.4235,0.8631,-0.2751,0.427,0.4679,-0.7738,0.4312,0.901,-0.0487,0.4322,0.1541,0.8885,0.4332,0.556,0.7094,0.4341,-0.895,0.1027,0.4347,-0.6144,0.6584,0.4362,0.8404,0.3216,0.4364,-0.8826,-0.1751,0.4366,0.5715,0.6949,0.4383,-0.4683,0.7672,0.4398,-0.2541,0.8614,0.4407,-0.8918,-0.1024,0.4413,-0.8954,-0.059,0.4413,0.8503,-0.2868,0.443,0.4275,0.788,0.4434,0.8354,-0.3248,0.4434,-0.8959,-0.0275,0.4451,0.2985,-0.8443,0.4517,0.0857,0.888,0.4529,0.1291,0.8822,0.458,0.8887,-0.0229,0.4592,-0.7212,0.5186,0.4604,-0.8875,-0.0196,0.4606,-0.8791,0.1231,0.4618,0.5883,-0.6639,0.4641,0.7758,-0.4274,0.4649,-0.5243,0.7134,0.4698,0.7902,-0.3936,0.4722,0.1687,-0.8652,0.4724,-0.8627,0.1802,0.4731,-0.8312,-0.292,0.4734,-0.4631,0.7493,0.4784,-0.3322,0.8129,0.4787,-0.8421,0.2485,0.481,0.849,0.2188,0.4821,-0.4732,-0.7373,0.4853,-0.3357,0.8074,0.4876,0.1687,0.8566,0.4894,0.4098,-0.7698,0.4914,0.011,0.8708,0.4924,0.7977,0.3483,0.4939,0.8099,0.3164,0.4956,0.6636,-0.5604,0.498,-0.7566,0.4237,0.4987,0.2075,-0.8416,0.5007,-0.8524,-0.1507,0.5023,0.3226,-0.8023,0.5023,-0.8272,0.252,0.5026,-0.0622,0.8623,0.5044,0.8531,0.1332,0.5053,-0.6764,-0.5359,0.5091,-0.7736,-0.3773,0.5091,0.116,-0.8528,0.5114,0.8407,0.1782,0.512,-0.0661,-0.8564,0.5146,-0.1852,-0.8372,0.518,0.4247,-0.7425,0.5182,-0.1268,0.8458,0.5188,0.7757,-0.3594,0.5197,0.0224,-0.854,0.5209,0.1861,0.8331,0.5248,-0.145,0.8388,0.5274,-0.5939,0.6076,0.5307,-0.1473,0.8347,0.5316,0.2039,-0.8221,0.5322,0.0801,0.8429,0.5345,-0.0931,-0.84,0.5361,0.7492,0.3888,0.5386,-0.3939,-0.7448,0.5386,-0.8397,-0.0699,0.5427,0.5934,-0.5944,0.5441,-0.4947,0.6777,0.5448,0.8358,-0.0675,0.5462,-0.6899,0.475,0.5469,0.3597,0.756,0.5489,0.6773,-0.4898,0.5511,-0.3906,-0.7374,0.5526,0.7137,-0.4304,0.553,0.4521,-0.6998,0.5541,0.3369,-0.7612,0.5549,0.5485,0.6254,0.5565,-0.018,0.8306,0.5608,-0.5505,0.6184,0.5609,0.1401,0.816,0.5623,-0.8179,0.1214,0.5655,-0.6625,-0.4912,0.5695,-0.25,0.783,0.5697,-0.1903,0.7995,0.57,-0.8115,-0.1291,0.5712,-0.4926,0.6566,0.5755,0.7755,0.2596,0.5781,0.1833,0.7951,0.5783,0.597,0.556,0.5805,0.2441,0.7768,0.583,0.7999,0.1422,0.5851,-0.7693,-0.2566,0.5885,0.1899,0.7858,0.5913,-0.3214,0.7396,0.5927,-0.4874,0.6411,0.5934,0.3376,-0.7307,0.5955,0.0264,0.8029,0.5983,-0.1799,0.7808,0.6036,0.7093,0.3642,0.6036,-0.7949,-0.0625,0.6037,-0.3376,-0.7222,0.6058,0.6166,0.5028,0.6062,-0.4963,-0.6215,0.6065,0.3409,-0.7183,0.6075,-0.7939,-0.0279,0.6102,0.0148,0.7921,0.6119,0.7861,-0.0876,0.6134,0.7351,0.2887,0.6146,-0.6655,-0.4235,0.6151,-0.6386,0.4624,0.6182,0.4536,-0.642,0.6197,-0.2095,-0.7563,0.6204,-0.7759,0.1145,0.6222,0.7828,0.0055,0.6238,0.1011,0.775,0.6238,0.2582,0.7377,0.6238,-0.6837,0.3787,0.6265,-0.7192,-0.3004,0.6321,0.6698,0.3897,0.6321,0.3176,-0.7068,0.6334,-0.5316,-0.5623,0.6338,0.67,0.3867,0.6339,0.5039,-0.5867,0.6339,-0.6824,-0.364,0.6363,0.2053,-0.7436,0.6365,-0.1986,-0.7453,0.6378,0.7493,-0.178,0.6389,0.6523,0.4078,0.64,-0.7277,0.2468,0.6409,-0.6992,-0.3168,0.642,-0.684,-0.3464,0.6443,-0.7472,0.163,0.6471,-0.4949,0.5799,0.6513,0.7167,0.2493,0.658,-0.0013,0.753,0.6588,-0.7511,0.0421,0.6592,0.0951,0.7459,0.6629,0.5137,-0.5446,0.6634,0.1913,0.7234,0.6644,-0.6866,-0.2951,0.6654,0.7397,0.1005,0.6684,-0.3833,0.6374,0.6699,-0.023,0.7421,0.6705,0.6681,0.3227,0.6719,0.1505,0.7251,0.6759,-0.7317,0.0881,0.6811,0.3031,-0.6665,0.6815,0.0675,0.7287,0.6818,-0.6121,-0.4006,0.683,0.4286,-0.5914,0.6842,-0.114,0.7203,0.6849,0.2467,0.6856,0.6861,-0.7268,0.0327,0.6906,0.1595,-0.7054,0.6914,0.4487,-0.5662,0.6926,-0.1045,-0.7137,0.6933,0.2453,0.6776,0.6936,-0.3695,0.6183,0.6953,-0.0159,0.7185,0.6963,0.034,-0.7169,0.6964,0.5981,-0.3966,0.6993,0.0134,0.7147,0.7009,0.4467,0.556,0.7027,0.6211,0.347,0.7042,-0.3295,0.629,0.7072,-0.0757,0.7029,0.7078,0.6062,0.3626,0.7122,0.1218,-0.6913,0.7145,-0.6959,-0.0722,0.7162,0.3382,0.6105,0.7178,-0.2014,-0.6664,0.7227,0.1668,-0.6707,0.7228,-0.4528,0.5221,0.7236,0.3998,-0.5626,0.7243,0.1689,0.6685,0.7272,-0.495,0.4756,0.7314,0.247,0.6356,0.7332,-0.3043,0.6082,0.7333,-0.6448,-0.2158,0.738,-0.1988,0.6449,0.7398,0.4554,0.4952,0.7407,0.4902,0.4595,0.7442,0.4107,-0.5267,0.7447,0.6285,0.2244,0.7461,0.3508,-0.566,0.7484,-0.41,-0.5214,0.7522,-0.4185,0.5089,0.7524,-0.6009,-0.2699,0.7525,-0.5932,-0.2861,0.7528,0.2863,-0.5927,0.7528,-0.611,0.2448,0.7533,-0.1953,0.628,0.7565,-0.3887,0.526,0.7572,-0.3683,-0.5394,0.7638,-0.0047,0.6454,0.7654,0.4522,0.4579,0.7655,-0.3923,0.51,0.766,0.6364,0.0904,0.7666,0.637,0.0817,0.7684,0.3787,-0.5159,0.7698,-0.4077,0.4911,0.7708,-0.6052,-0.1992,0.7714,0.0353,0.6354,0.7721,-0.423,0.4742,0.7733,0.2673,-0.5749,0.7739,-0.2506,0.5817,0.7763,0.459,-0.4321,0.777,-0.6127,0.1443,0.778,0.4877,0.3961,0.7802,-0.397,0.4834,0.7835,-0.4576,-0.4204,0.7841,0.3029,-0.5417,0.7844,0.5539,-0.2791,0.7878,0.209,-0.5794,0.7895,0.0071,0.6138,0.7911,-0.4049,-0.4584,0.7913,0.3746,0.4832,0.7942,0.0857,-0.6016,0.7977,0.498,-0.3401,0.7987,0.5992,0.0556,0.8012,0.2162,-0.5579,0.8013,-0.5138,-0.3065,0.802,-0.2965,0.5186,0.805,-0.0922,-0.586,0.8075,-0.2237,0.5458,0.8111,0.2158,0.5437,0.8127,-0.4142,0.4098,0.8129,0.5691,0.1236,0.813,0.5263,0.2491,0.8137,0.2239,-0.5364,0.8143,0.0038,0.5804,0.8147,-0.1474,0.5609,0.8167,0.0892,0.5701,0.8168,-0.3514,-0.4575,0.8175,-0.1661,0.5514,0.8194,0.1891,-0.5411,0.8204,0.5294,0.216,0.8208,0.0192,-0.5709,0.823,-0.0489,0.5659,0.8237,0.5581,0.0997,0.8249,0.0189,-0.5649,0.8265,-0.5536,0.102,0.8272,0.3172,-0.4638,0.8287,-0.3395,0.445,0.8301,-0.5383,0.1451,0.8315,-0.5269,0.1761,0.8317,0.0971,-0.5467,0.8338,-0.5488,-0.0602,0.8375,0.4097,0.3616,0.838,0.255,-0.4824,0.839,-0.5441,0.0077,0.8391,0.5383,0.0779,0.8399,-0.2827,0.4633,0.8406,0.2749,0.4667,0.8427,-0.1525,0.5163,0.8466,-0.3695,-0.383,0.848,0.2702,-0.4559,0.8495,-0.1617,-0.5023,0.8503,0.1943,-0.4891,0.8528,-0.0262,-0.5216,0.8557,0.378,0.3534,0.8567,-0.4754,0.1999,0.8607,0.4571,0.2241,0.8614,-0.5011,0.0835,0.8624,0.4658,-0.1983,0.8658,-0.4602,-0.1964,0.8659,0.0232,0.4998,0.8661,-0.0383,0.4984,0.8665,-0.4073,-0.2887,0.8673,-0.1817,-0.4633,0.8713,-0.0316,0.4897,0.8719,0.4448,-0.2046,0.8737,-0.1147,0.4727,0.8753,0.357,-0.3262,0.8775,-0.1843,0.4428,0.8779,0.1027,-0.4678,0.8804,0.0041,0.4741,0.882,-0.4649,0.0769,0.8837,0.3838,-0.2679,0.8874,0.4322,0.1602,0.8893,0.3596,0.2827,0.8905,-0.021,-0.4545,0.8907,0.4525,0.0448,0.8922,-0.2303,0.3884,0.8953,0.4453,-0.0075,0.8957,0.3095,-0.3192,0.897,-0.0555,-0.4386,0.9,0.0514,0.4329,0.9024,0.2314,-0.3636,0.9026,0.0339,0.4291,0.9108,-0.4115,0.0345,0.913,-0.0414,-0.4058,0.9139,0.3775,-0.1494,0.9178,0.3123,-0.2451,0.9189,0.2011,-0.3394,0.9199,-0.038,0.3904,0.9206,-0.3903,0.0104,0.9236,-0.325,0.2034,0.9266,0.3041,0.2214,0.9276,0.0141,0.3733,0.9288,0.3693,-0.0303,0.93,-0.2729,-0.2463,0.9309,-0.1199,0.3451,0.9326,0.3523,-0.0787,0.9365,-0.0327,0.3491,0.9384,0.3178,0.1356,0.939,-0.3011,-0.1664,0.9392,-0.0365,0.3415,0.9397,0.2773,0.2003,0.9405,-0.2748,-0.1997,0.9425,0.3258,-0.0741,0.9429,-0.3323,-0.0213,0.9438,0.1394,0.2995,0.9468,0.3173,-0.0544,0.947,-0.3042,-0.1032,0.951,-0.0688,0.3014,0.9535,0.217,0.2092,0.9561,-0.0221,0.2921,0.9575,0.2596,-0.1259,0.9585,-0.0924,-0.2699,0.9593,-0.1149,0.2579,0.9624,-0.2693,-0.0371,0.9625,-0.0014,-0.2714,0.9631,0.2277,-0.1438,0.9662,-0.0276,-0.2562,0.9672,0.2542,-0.0012,0.9673,0.2296,0.1077,0.9711,0.0246,-0.2373,0.9744,-0.2247,0.0077,0.9768,0.0592,0.2059,0.9801,-0.093,0.1752,0.982,-0.1324,0.1345,0.9821,0.1235,0.1419,0.9854,0.1696,0.0117,0.9862,-0.0521,-0.1573,0.9866,0.1241,-0.1063,0.9876,-0.094,-0.1259,0.9877,0.1442,0.0597,0.9886,0.148,-0.028,0.9913,-0.1141,-0.0662,0.9973,-0.0208,-0.0702,0.9999,-0.0018,0.0122};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc5disc_Geo_5_73_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,0,2,12,-1,13,14,15,-1,14,16,15,-1,17,18,19,-1,20,21,22,-1,23,14,24,-1,5,25,13,-1,26,27,28,-1,29,30,31,-1,32,33,34,-1,35,36,37,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,47,48,46,-1,49,50,51,-1,52,53,54,-1,55,56,57,-1,58,59,57,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,64,69,70,-1,71,72,73,-1,74,75,76,-1,77,78,79,-1,80,81,75,-1,82,83,84,-1,85,83,86,-1,87,88,89,-1,90,91,76,-1,92,93,94,-1,95,61,60,-1,96,97,8,-1,53,65,6,-1,98,99,100,-1,101,63,52,-1,102,89,103,-1,102,32,34,-1,102,103,32,-1,104,105,101,-1,53,52,63,-1,106,6,97,-1,107,108,96,-1,22,93,92,-1,19,109,110,-1,110,12,76,-1,89,102,86,-1,111,82,84,-1,112,113,114,-1,115,66,116,-1,7,117,118,-1,119,120,121,-1,122,71,123,-1,123,70,69,-1,124,125,126,-1,101,105,127,-1,128,11,10,-1,129,57,56,-1,56,41,129,-1,49,96,108,-1,130,95,131,-1,132,42,41,-1,48,133,44,-1,46,45,134,-1,50,135,51,-1,57,59,104,-1,136,137,138,-1,104,52,55,-1,139,39,38,-1,4,25,5,-1,140,36,35,-1,25,24,14,-1,44,28,27,-1,18,30,20,-1,141,142,143,-1,144,100,99,-1,20,19,18,-1,145,13,15,-1,146,147,29,-1,148,10,9,-1,149,79,78,-1,103,145,32,-1,8,97,6,-1,30,18,31,-1,91,90,150,-1,78,151,149,-1,15,32,145,-1,16,33,15,-1,99,33,144,-1,152,31,18,-1,27,153,44,-1,14,13,25,-1,140,154,36,-1,4,37,25,-1,139,155,39,-1,136,138,156,-1,104,55,57,-1,46,134,47,-1,48,44,46,-1,132,157,42,-1,131,50,130,-1,56,158,41,-1,128,107,11,-1,101,127,69,-1,8,11,107,-1,123,127,126,-1,123,69,127,-1,121,159,119,-1,160,161,9,-1,7,121,117,-1,74,12,2,-1,112,80,113,-1,83,82,112,-1,111,81,82,-1,111,98,90,-1,102,85,86,-1,91,110,76,-1,162,149,151,-1,151,163,162,-1,17,19,110,-1,22,164,93,-1,107,96,8,-1,165,17,110,-1,100,150,90,-1,63,65,53,-1,104,59,105,-1,59,166,105,-1,34,167,102,-1,89,168,103,-1,52,104,101,-1,100,90,98,-1,106,53,6,-1,150,165,91,-1,60,169,95,-1,19,163,109,-1,92,94,170,-1,76,111,90,-1,171,87,89,-1,171,89,86,-1,83,85,84,-1,112,172,83,-1,173,80,75,-1,76,12,74,-1,174,175,87,-1,73,119,71,-1,70,123,71,-1,70,159,64,-1,66,115,67,-1,8,7,118,-1,61,148,62,-1,176,177,135,-1,58,57,129,-1,108,130,49,-1,54,55,52,-1,178,179,158,-1,50,49,130,-1,47,169,48,-1,44,153,45,-1,41,43,129,-1,38,40,43,-1,35,37,4,-1,99,34,33,-1,32,15,33,-1,28,180,26,-1,13,145,5,-1,24,181,23,-1,20,30,21,-1,143,16,14,-1,12,110,0,-1,149,170,79,-1,11,160,9,-1,110,91,165,-1,182,49,51,-1,168,3,5,-1,58,166,59,-1,183,35,184,-1,140,35,183,-1,185,58,40,-1,185,166,58,-1,170,186,79,-1,170,94,186,-1,62,187,188,-1,189,187,62,-1,21,29,190,-1,21,30,29,-1,23,191,147,-1,23,181,191,-1,33,142,144,-1,16,142,33,-1,143,142,16,-1,21,164,22,-1,21,180,164,-1,190,192,26,-1,190,191,192,-1,193,194,195,-1,193,196,194,-1,24,37,195,-1,24,25,37,-1,139,140,155,-1,154,140,139,-1,138,157,156,-1,138,42,157,-1,134,197,198,-1,134,45,197,-1,106,182,199,-1,97,182,106,-1,47,200,131,-1,47,134,200,-1,136,201,202,-1,136,197,201,-1,177,178,203,-1,179,178,177,-1,158,132,41,-1,158,179,132,-1,204,205,188,-1,206,205,204,-1,63,69,64,-1,63,101,69,-1,207,116,208,-1,115,116,207,-1,123,125,122,-1,123,126,125,-1,122,72,71,-1,66,72,122,-1,209,210,211,-1,209,212,210,-1,211,213,214,-1,211,215,213,-1,161,189,9,-1,161,213,189,-1,64,121,7,-1,64,159,121,-1,216,210,217,-1,216,218,210,-1,217,173,219,-1,173,217,220,-1,221,114,113,-1,114,221,222,-1,87,172,174,-1,172,87,171,-1,109,151,1,-1,151,109,163,-1,84,102,167,-1,102,84,85,-1,223,204,224,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc5disc_Geo_5_73_coordIndex_2()
		{
			int[] value = {223,206,204,-1,92,20,22,-1,20,92,162,-1,206,48,205,-1,133,48,206,-1,167,99,98,-1,34,99,167,-1,3,89,88,-1,89,3,168,-1,183,207,225,-1,183,226,207,-1,124,227,208,-1,185,227,124,-1,130,61,95,-1,130,128,61,-1,228,206,223,-1,228,133,206,-1,93,224,94,-1,93,223,224,-1,84,98,111,-1,167,98,84,-1,170,162,92,-1,170,149,162,-1,68,175,174,-1,175,68,67,-1,171,83,172,-1,86,83,171,-1,114,172,112,-1,114,174,172,-1,210,220,217,-1,220,210,212,-1,229,217,219,-1,216,217,229,-1,186,77,79,-1,77,186,229,-1,78,74,2,-1,74,78,77,-1,215,189,213,-1,189,215,187,-1,161,214,213,-1,214,161,117,-1,73,212,209,-1,212,73,221,-1,159,71,119,-1,159,70,71,-1,226,115,207,-1,67,115,226,-1,6,64,7,-1,6,65,64,-1,135,131,200,-1,131,135,50,-1,230,132,176,-1,157,132,230,-1,178,55,54,-1,178,56,55,-1,178,158,56,-1,40,129,43,-1,58,129,40,-1,198,200,134,-1,200,198,230,-1,137,154,139,-1,137,231,154,-1,181,195,194,-1,195,181,24,-1,232,26,192,-1,27,26,232,-1,152,150,233,-1,152,165,150,-1,190,180,21,-1,26,180,190,-1,191,194,192,-1,181,194,191,-1,100,233,150,-1,100,144,233,-1,189,148,9,-1,189,62,148,-1,234,94,224,-1,94,234,186,-1,118,11,8,-1,118,160,11,-1,227,40,39,-1,227,185,40,-1,184,4,3,-1,184,35,4,-1,145,168,5,-1,103,168,145,-1,155,183,225,-1,183,155,140,-1,235,188,187,-1,235,204,188,-1,151,2,1,-1,2,151,78,-1,236,183,184,-1,236,226,183,-1,23,143,14,-1,141,143,23,-1,142,146,237,-1,142,141,146,-1,201,196,202,-1,196,201,232,-1,180,228,164,-1,180,28,228,-1,17,152,18,-1,17,165,152,-1,147,190,29,-1,190,147,191,-1,231,196,193,-1,231,202,196,-1,36,195,37,-1,195,36,193,-1,38,42,138,-1,43,42,38,-1,45,201,197,-1,45,153,201,-1,51,199,182,-1,199,51,203,-1,169,131,95,-1,131,169,47,-1,203,135,177,-1,135,203,51,-1,198,136,156,-1,136,198,197,-1,54,203,178,-1,54,199,203,-1,179,176,132,-1,176,179,177,-1,188,60,62,-1,205,60,188,-1,208,125,124,-1,116,125,208,-1,122,116,66,-1,122,125,116,-1,72,221,73,-1,72,222,221,-1,120,211,214,-1,120,209,211,-1,210,215,211,-1,218,215,210,-1,75,111,76,-1,81,111,75,-1,234,218,216,-1,234,235,218,-1,219,75,74,-1,75,219,173,-1,80,220,113,-1,220,80,173,-1,222,174,114,-1,222,68,174,-1,87,236,88,-1,87,175,236,-1,19,162,163,-1,19,20,162,-1,205,169,60,-1,48,169,205,-1,225,208,227,-1,225,207,208,-1,88,184,3,-1,88,236,184,-1,166,124,105,-1,166,185,124,-1,128,108,107,-1,130,108,128,-1,164,223,93,-1,164,228,223,-1,109,0,110,-1,109,1,0,-1,175,226,236,-1,175,67,226,-1,112,81,80,-1,81,112,82,-1,212,113,220,-1,212,221,113,-1,219,77,229,-1,219,74,77,-1,186,216,229,-1,186,234,216,-1,117,160,118,-1,117,161,160,-1,218,187,215,-1,187,218,235,-1,121,214,117,-1,121,120,214,-1,209,119,73,-1,209,120,119,-1,66,222,72,-1,222,66,68,-1,128,148,61,-1,128,10,148,-1,124,127,105,-1,124,126,127,-1,53,199,54,-1,53,106,199,-1,156,230,198,-1,156,157,230,-1,182,96,49,-1,96,182,97,-1,200,176,135,-1,200,230,176,-1,136,231,137,-1,202,231,136,-1,138,139,38,-1,138,137,139,-1,154,193,36,-1,231,193,154,-1,201,27,232,-1,153,27,201,-1,233,31,152,-1,233,237,31,-1,133,28,44,-1,133,228,28,-1,29,237,146,-1,29,31,237,-1,196,192,194,-1,196,232,192,-1,237,144,142,-1,144,237,233,-1,147,141,23,-1,147,146,141,-1,224,235,234,-1,224,204,235,-1,39,225,227,-1,225,39,155,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc5disc_Geo_5_73_normalIndex_1()
		{
			int[] value = {223,202,67,-1,201,178,196,-1,23,54,4,-1,89,34,6,-1,223,67,48,-1,184,191,221,-1,191,215,221,-1,230,218,213,-1,200,195,185,-1,205,191,174,-1,196,147,184,-1,167,154,152,-1,217,210,224,-1,232,231,235,-1,171,162,133,-1,91,51,42,-1,44,62,101,-1,129,87,81,-1,76,103,81,-1,19,25,13,-1,5,2,9,-1,8,21,16,-1,26,7,16,-1,58,56,88,-1,73,187,74,-1,93,130,128,-1,187,190,172,-1,66,78,98,-1,55,53,59,-1,57,80,164,-1,142,72,53,-1,63,86,46,-1,102,86,180,-1,186,197,203,-1,84,193,59,-1,181,177,155,-1,49,56,58,-1,18,1,4,-1,2,74,23,-1,79,236,233,-1,109,73,5,-1,198,203,211,-1,198,232,235,-1,198,211,232,-1,3,39,109,-1,2,5,73,-1,0,23,1,-1,30,24,18,-1,185,177,181,-1,213,207,225,-1,225,48,59,-1,203,198,180,-1,36,63,46,-1,170,143,159,-1,75,93,47,-1,54,182,148,-1,99,145,183,-1,68,66,156,-1,156,172,190,-1,32,52,64,-1,109,39,150,-1,37,6,34,-1,50,16,21,-1,21,44,50,-1,19,18,24,-1,35,49,40,-1,31,62,44,-1,103,132,129,-1,81,87,71,-1,25,20,13,-1,16,7,3,-1,104,92,82,-1,3,5,8,-1,83,51,91,-1,178,147,196,-1,116,162,171,-1,147,174,191,-1,129,152,154,-1,218,210,200,-1,219,229,214,-1,226,233,236,-1,200,213,218,-1,212,184,221,-1,220,209,217,-1,65,34,89,-1,204,164,80,-1,211,212,232,-1,4,1,23,-1,210,218,224,-1,193,84,234,-1,80,216,204,-1,221,232,212,-1,215,231,221,-1,236,231,226,-1,222,224,218,-1,154,120,129,-1,191,184,147,-1,116,123,162,-1,178,133,147,-1,83,69,51,-1,104,82,90,-1,3,8,16,-1,81,71,76,-1,103,129,81,-1,31,45,62,-1,40,25,35,-1,21,22,44,-1,37,30,6,-1,109,150,190,-1,4,6,30,-1,156,150,64,-1,156,190,150,-1,183,165,99,-1,151,179,89,-1,54,183,182,-1,55,48,67,-1,170,142,143,-1,86,63,170,-1,36,72,63,-1,36,79,84,-1,198,102,180,-1,193,225,59,-1,199,204,216,-1,216,206,199,-1,230,213,225,-1,185,176,177,-1,30,18,4,-1,237,230,225,-1,233,234,84,-1,73,74,2,-1,3,7,39,-1,7,27,39,-1,235,166,198,-1,203,208,211,-1,5,3,109,-1,233,84,79,-1,0,2,23,-1,234,237,193,-1,58,60,49,-1,213,206,207,-1,181,155,173,-1,59,36,84,-1,189,186,203,-1,189,203,180,-1,86,102,46,-1,170,169,86,-1,96,142,53,-1,59,48,55,-1,140,158,186,-1,98,99,66,-1,172,156,66,-1,172,165,187,-1,93,75,130,-1,4,54,148,-1,56,65,88,-1,28,15,20,-1,26,16,50,-1,24,35,19,-1,9,8,5,-1,10,17,22,-1,25,19,35,-1,76,60,103,-1,129,120,87,-1,44,101,50,-1,91,42,101,-1,171,133,178,-1,236,235,231,-1,232,221,231,-1,152,161,167,-1,184,212,196,-1,174,188,205,-1,200,210,195,-1,214,215,191,-1,48,225,223,-1,204,173,164,-1,6,151,89,-1,225,193,237,-1,14,19,13,-1,208,201,196,-1,26,27,7,-1,112,171,175,-1,116,171,112,-1,29,26,42,-1,29,27,26,-1,173,97,164,-1,173,155,97,-1,88,135,105,-1,144,135,88,-1,195,217,194,-1,195,210,217,-1,205,192,209,-1,205,188,192,-1,231,229,226,-1,215,229,231,-1,214,229,215,-1,195,176,185,-1,195,161,176,-1,194,160,167,-1,194,192,160,-1,139,153,163,-1,139,136,153,-1,174,133,163,-1,174,147,133,-1,83,116,69,-1,123,116,83,-1,82,45,90,-1,82,62,45,-1,71,94,77,-1,71,87,94,-1,0,14,12,-1,1,14,0,-1,76,41,40,-1,76,71,41,-1,104,119,121,-1,104,94,119,-1,15,10,11,-1,17,10,15,-1,22,31,44,-1,22,17,31,-1,125,100,105,-1,126,100,125,-1,73,190,187,-1,73,109,190,-1,70,47,38,-1,75,47,70,-1,156,52,68,-1,156,64,52,-1,68,78,66,-1,93,78,68,-1,108,117,127,-1,108,115,117,-1,127,146,157,-1,127,134,146,-1,179,144,89,-1,179,146,144,-1,187,183,54,-1,187,165,183,-1,107,117,110,-1,107,118,117,-1,110,96,85,-1,96,110,131,-1,114,159,143,-1,159,114,113,-1,186,169,140,-1,169,186,189,-1,207,216,202,-1,216,207,206,-1,46,198,166,-1,198,46,102,-1,141,125,138,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc5disc_Geo_5_73_normalIndex_2()
		{
			int[] value = {141,126,125,-1,181,200,185,-1,200,181,199,-1,126,103,100,-1,132,103,126,-1,166,236,79,-1,235,236,166,-1,201,203,197,-1,203,201,208,-1,112,70,61,-1,112,111,70,-1,32,33,38,-1,29,33,32,-1,35,56,49,-1,35,37,56,-1,137,126,141,-1,137,132,126,-1,177,138,155,-1,177,141,138,-1,46,79,36,-1,166,79,46,-1,173,199,181,-1,173,204,199,-1,128,158,140,-1,158,128,130,-1,189,86,169,-1,180,86,189,-1,159,169,170,-1,159,140,169,-1,117,131,110,-1,131,117,115,-1,95,110,85,-1,107,110,95,-1,97,57,164,-1,57,97,95,-1,80,55,67,-1,55,80,57,-1,134,144,146,-1,144,134,135,-1,179,157,146,-1,157,179,182,-1,98,115,108,-1,115,98,114,-1,165,66,99,-1,165,172,66,-1,111,75,70,-1,130,75,111,-1,23,187,54,-1,23,74,187,-1,20,40,41,-1,40,20,25,-1,43,31,28,-1,45,31,43,-1,10,8,9,-1,10,21,8,-1,10,22,21,-1,42,50,101,-1,26,50,42,-1,77,41,71,-1,41,77,43,-1,92,123,83,-1,92,122,123,-1,188,163,153,-1,163,188,174,-1,149,167,160,-1,154,167,149,-1,222,234,227,-1,222,237,234,-1,194,161,195,-1,167,161,194,-1,192,153,160,-1,188,153,192,-1,233,227,234,-1,233,226,227,-1,144,65,89,-1,144,88,65,-1,106,155,138,-1,155,106,97,-1,148,6,4,-1,148,151,6,-1,33,42,51,-1,33,29,42,-1,175,178,201,-1,175,171,178,-1,212,208,196,-1,211,208,212,-1,69,112,61,-1,112,69,116,-1,124,105,135,-1,124,125,105,-1,216,67,202,-1,67,216,80,-1,168,112,175,-1,168,111,112,-1,205,214,191,-1,219,214,205,-1,229,220,228,-1,229,219,220,-1,119,136,121,-1,136,119,149,-1,161,137,176,-1,161,152,137,-1,230,222,218,-1,230,237,222,-1,209,194,217,-1,194,209,192,-1,122,136,139,-1,122,121,136,-1,162,163,133,-1,163,162,139,-1,91,62,82,-1,101,62,91,-1,87,119,94,-1,87,120,119,-1,13,12,14,-1,12,13,11,-1,60,40,49,-1,40,60,76,-1,11,20,15,-1,20,11,13,-1,77,104,90,-1,104,77,94,-1,9,11,10,-1,9,12,11,-1,17,28,31,-1,28,17,15,-1,105,58,88,-1,100,58,105,-1,38,52,32,-1,47,52,38,-1,68,47,93,-1,68,52,47,-1,78,114,98,-1,78,113,114,-1,145,127,157,-1,145,108,127,-1,117,134,127,-1,118,134,117,-1,53,36,59,-1,72,36,53,-1,106,118,107,-1,106,124,118,-1,85,53,55,-1,53,85,96,-1,142,131,143,-1,131,142,96,-1,113,140,159,-1,113,128,140,-1,186,168,197,-1,186,158,168,-1,213,199,206,-1,213,200,199,-1,100,60,58,-1,103,60,100,-1,61,38,33,-1,61,70,38,-1,197,175,201,-1,197,168,175,-1,27,32,39,-1,27,29,32,-1,37,24,30,-1,35,24,37,-1,176,141,177,-1,176,137,141,-1,207,223,225,-1,207,202,223,-1,158,111,168,-1,158,130,111,-1,170,72,142,-1,72,170,63,-1,115,143,131,-1,115,114,143,-1,85,57,95,-1,85,55,57,-1,97,107,95,-1,97,106,107,-1,182,151,148,-1,182,179,151,-1,118,135,134,-1,135,118,124,-1,183,157,182,-1,183,145,157,-1,108,99,98,-1,108,145,99,-1,93,113,78,-1,113,93,128,-1,37,65,56,-1,37,34,65,-1,32,150,39,-1,32,64,150,-1,2,12,9,-1,2,0,12,-1,90,43,77,-1,90,45,43,-1,14,18,19,-1,18,14,1,-1,41,28,20,-1,41,43,28,-1,104,122,92,-1,121,122,104,-1,82,83,91,-1,82,92,83,-1,123,139,162,-1,122,139,123,-1,119,154,149,-1,120,154,119,-1,227,224,222,-1,227,228,224,-1,132,152,129,-1,132,137,152,-1,217,228,220,-1,217,224,228,-1,136,160,153,-1,136,149,160,-1,228,226,229,-1,226,228,227,-1,209,219,205,-1,209,220,219,-1,138,124,106,-1,138,125,124,-1,51,61,33,-1,61,51,69,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc6_Geo_5_79_coordIndex_2()
		{
			int[] value = {614,615,616,-1,617,618,619,-1,620,621,622,-1,602,601,619,-1,623,624,625,-1,626,627,280,-1,628,629,630,-1,631,632,275,-1,633,513,503,-1,634,635,636,-1,637,638,639,-1,634,640,641,-1,642,643,644,-1,645,646,647,-1,648,649,650,-1,651,652,653,-1,518,654,655,-1,656,657,519,-1,658,659,660,-1,661,662,663,-1,664,461,665,-1,666,667,668,-1,669,450,670,-1,671,430,429,-1,672,673,432,-1,624,628,674,-1,675,676,677,-1,678,679,680,-1,516,498,500,-1,681,682,683,-1,684,685,686,-1,562,687,685,-1,571,688,575,-1,565,689,690,-1,691,692,559,-1,557,693,694,-1,573,695,696,-1,568,697,698,-1,699,436,700,-1,446,701,702,-1,703,701,445,-1,704,705,706,-1,707,435,708,-1,635,709,710,-1,711,706,712,-1,713,714,715,-1,716,717,718,-1,640,719,720,-1,448,467,721,-1,713,722,723,-1,724,722,702,-1,725,726,727,-1,728,729,730,-1,662,441,725,-1,731,732,733,-1,734,704,731,-1,735,443,442,-1,736,737,738,-1,595,739,740,-1,741,742,743,-1,744,562,685,-1,745,746,747,-1,557,748,749,-1,750,751,752,-1,753,754,752,-1,755,593,756,-1,732,757,758,-1,759,760,761,-1,762,763,675,-1,469,471,764,-1,765,766,767,-1,768,608,610,-1,769,770,771,-1,553,772,773,-1,553,774,772,-1,539,775,536,-1,776,777,778,-1,779,780,781,-1,782,783,679,-1,784,785,786,-1,645,487,787,-1,788,789,790,-1,643,791,792,-1,426,793,644,-1,495,794,496,-1,795,791,796,-1,539,536,535,-1,502,797,798,-1,799,800,801,-1,785,802,786,-1,803,728,730,-1,804,672,805,-1,806,5,807,-1,808,809,810,-1,811,810,678,-1,812,813,676,-1,669,805,814,-1,815,816,504,-1,817,818,440,-1,819,664,820,-1,821,822,527,-1,782,628,630,-1,630,783,782,-1,823,824,825,-1,28,826,751,-1,573,579,827,-1,828,2,553,-1,804,438,829,-1,448,830,449,-1,704,734,831,-1,584,590,595,-1,497,501,500,-1,832,833,834,-1,832,777,776,-1,835,836,837,-1,838,826,28,-1,839,840,841,-1,808,674,809,-1,453,842,454,-1,482,843,819,-1,844,456,454,-1,845,846,847,-1,543,818,848,-1,815,504,512,-1,849,850,801,-1,851,852,786,-1,853,763,637,-1,854,714,648,-1,855,624,674,-1,856,587,857,-1,857,587,858,-1,669,438,804,-1,859,860,786,-1,861,862,863,-1,864,797,501,-1,849,800,865,-1,866,867,868,-1,869,870,871,-1,872,796,873,-1,495,874,861,-1,494,875,876,-1,642,796,791,-1,873,796,877,-1,644,643,426,-1,463,646,645,-1,784,860,770,-1,786,802,878,-1,879,789,792,-1,880,596,740,-1,881,882,835,-1,551,550,539,-1,883,884,885,-1,536,531,886,-1,549,2,1,-1,587,586,858,-1,769,615,887,-1,653,888,889,-1,608,768,4,-1,610,656,890,-1,891,892,893,-1,704,757,731,-1,894,895,896,-1,647,897,898,-1,899,900,485,-1,901,636,635,-1,902,455,456,-1,555,554,903,-1,752,754,556,-1,750,691,904,-1,556,754,748,-1,905,567,906,-1,907,742,698,-1,737,908,738,-1,607,909,910,-1,613,911,912,-1,613,612,911,-1,735,442,913,-1,894,914,915,-1,661,915,914,-1,700,704,845,-1,733,916,917,-1,436,699,803,-1,661,464,788,-1,790,789,913,-1,918,919,920,-1,921,662,725,-1,708,730,919,-1,850,500,799,-1,445,444,922,-1,854,715,714,-1,717,716,720,-1,641,923,711,-1,924,919,729,-1,925,921,874,-1,636,926,719,-1,490,927,928,-1,929,930,854,-1,854,650,929,-1,441,707,708,-1,730,435,437,-1,705,449,712,-1,931,703,896,-1,847,846,720,-1,435,707,848,-1,932,933,697,-1,690,689,428,-1,575,688,934,-1,935,742,936,-1,937,689,687,-1,685,684,744,-1,938,514,939,-1,816,476,475,-1,630,629,940,-1,941,432,942,-1,943,944,945,-1,429,946,947,-1,669,668,450,-1,451,842,453,-1,948,949,950,-1,475,764,471,-1,951,952,470,-1,953,954,955,-1,791,956,879,-1,907,933,957,-1,519,518,890,-1,869,958,870,-1,649,520,650,-1,900,899,487,-1,853,959,866,-1,960,488,901,-1,961,828,745,-1,811,503,808,-1,868,962,963,-1,964,631,274,-1,965,966,632,-1,967,823,675,-1,968,969,970,-1,971,625,627,-1,972,973,555,-1,974,956,785,-1,975,976,977,-1,908,737,978,-1,979,883,980,-1,981,982,614,-1,983,616,615,-1,611,610,609,-1,606,856,857,-1,593,903,756,-1,586,588,596,-1,984,985,986,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc6_Geo_5_79_coordIndex_3()
		{
			int[] value = {586,585,987,-1,806,856,5,-1,988,827,579,-1,583,989,591,-1,692,558,990,-1,690,7,6,-1,991,568,570,-1,906,686,905,-1,742,935,992,-1,686,906,993,-1,687,686,685,-1,560,6,8,-1,749,994,995,-1,996,673,0,-1,997,548,547,-1,829,545,0,-1,998,546,545,-1,541,533,532,-1,534,999,1000,-1,1001,1002,1003,-1,1001,1004,1002,-1,527,822,524,-1,681,472,521,-1,808,505,1005,-1,1006,1007,511,-1,955,509,1008,-1,1009,1010,509,-1,498,497,500,-1,876,875,798,-1,1011,859,852,-1,1012,495,491,-1,484,490,926,-1,487,486,1013,-1,1014,481,480,-1,1015,1016,478,-1,1017,473,472,-1,683,1018,927,-1,952,479,478,-1,913,1000,999,-1,459,1019,821,-1,1020,454,842,-1,667,1021,1022,-1,479,917,665,-1,470,705,831,-1,914,894,1023,-1,915,803,895,-1,804,805,669,-1,758,438,732,-1,1024,848,818,-1,432,805,672,-1,1025,433,1026,-1,961,947,1027,-1,814,1028,666,-1,773,756,903,-1,84,421,93,-1,7,427,1029,-1,1030,1031,239,-1,1032,1033,235,-1,46,1034,1035,-1,408,410,18,-1,1036,1037,143,-1,206,64,406,-1,1038,201,110,-1,1039,1040,205,-1,15,1041,399,-1,1042,242,1037,-1,394,243,1043,-1,1044,1045,248,-1,385,1046,386,-1,1047,91,90,-1,1048,1049,186,-1,133,1050,399,-1,1051,1052,358,-1,1053,1054,1055,-1,387,385,384,-1,385,1056,372,-1,1057,1058,1046,-1,1059,352,1060,-1,1061,381,1062,-1,383,1063,94,-1,1064,381,1065,-1,378,1066,1067,-1,379,1067,1068,-1,1069,76,379,-1,373,1070,227,-1,226,1071,67,-1,271,1072,50,-1,1056,366,1073,-1,371,370,369,-1,1074,367,1075,-1,1076,369,1077,-1,1078,1079,257,-1,357,356,1080,-1,1044,42,354,-1,354,350,1044,-1,353,348,354,-1,111,1081,108,-1,1082,117,346,-1,331,330,343,-1,111,341,340,-1,338,1083,1084,-1,339,1084,1085,-1,1086,331,334,-1,329,112,116,-1,22,1087,1088,-1,1089,1090,213,-1,1091,561,560,-1,317,8,7,-1,225,324,323,-1,1092,225,224,-1,162,1093,1094,-1,1095,324,225,-1,1029,317,7,-1,217,1096,1090,-1,1097,1098,1099,-1,1100,988,1101,-1,1102,313,312,-1,1103,1104,1105,-1,1106,1107,313,-1,299,130,296,-1,1108,295,291,-1,1109,1110,289,-1,1111,290,123,-1,1112,1113,1114,-1,1115,166,1116,-1,347,1117,80,-1,98,1118,1119,-1,283,1120,278,-1,283,282,1120,-1,1121,1122,1123,-1,274,273,1124,-1,1125,1123,137,-1,271,57,58,-1,415,1126,21,-1,1127,268,267,-1,264,94,1128,-1,356,263,1080,-1,1129,957,933,-1,1118,87,392,-1,1074,1130,1131,-1,1132,400,399,-1,1055,391,1050,-1,1133,1134,1135,-1,1136,1042,1137,-1,1043,245,240,-1,239,1138,416,-1,1139,1140,1141,-1,234,1142,1032,-1,37,1143,1144,-1,51,1145,1055,-1,356,1146,1147,-1,157,1148,224,-1,222,1149,323,-1,1094,936,162,-1,1150,218,1151,-1,1029,221,223,-1,933,1152,1153,-1,48,110,201,-1,1154,189,188,-1,1155,202,192,-1,16,401,194,-1,62,1034,46,-1,1038,176,1156,-1,1157,184,183,-1,1065,380,190,-1,197,200,191,-1,172,1158,77,-1,1159,1160,174,-1,1161,1162,194,-1,191,189,192,-1,262,1163,193,-1,1164,1039,204,-1,1165,226,1166,-1,174,62,1156,-1,172,177,176,-1,1159,174,1167,-1,393,1168,250,-1,89,91,251,-1,64,206,1035,-1,1036,1169,1132,-1,1170,1171,408,-1,251,404,405,-1,1172,1039,1164,-1,115,1082,109,-1,293,1173,1174,-1,293,1175,1176,-1,1177,1178,1179,-1,166,1180,1116,-1,1129,209,162,-1,324,1095,321,-1,1091,215,150,-1,1089,149,148,-1,423,1088,1087,-1,1181,1104,1182,-1,143,241,410,-1,32,11,200,-1,264,1128,1061,-1,265,1183,1184,-1,406,403,1155,-1,1185,1186,1187,-1,12,128,13,-1,97,126,292,-1,125,96,79,-1,1188,1189,313,-1,1084,327,23,-1,118,117,115,-1,1113,113,1190,-1,112,114,1191,-1,1192,1193,1194,-1,1106,302,301,-1,87,1168,393,-1,100,1195,1196,-1,1197,79,96,-1,90,93,92,-1,83,84,1198,-1,74,1199,1200,-1,74,69,81,-1,1068,252,375,-1,76,1201,1202,-1,74,73,1199,-1,1200,1203,383,-1,117,1082,115,-1,1204,71,70,-1,1205,1127,1206,-1,1207,1208,1209,-1,66,1210,67,-1,1202,1201,1211,-1,257,360,1078,-1,1189,1188,299,-1,60,1188,1102,-1,60,130,299,-1,1212,365,58,-1,262,261,1163,-1,1213,1214,1142,-1,267,266,1215,-1,1216,1217,1166,-1,50,49,139,-1,1218,175,10,-1,48,411,111,-1,1219,45,395,-1,1044,40,42,-1,1046,385,372,-1,1209,198,1165,-1,841,417,1220,-1,28,1221,1222,-1,837,836,1194,-1,1223,1224,1225,-1,1226,1192,107,-1,1226,1227,1098,-1,373,226,67,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc6_Geo_5_79_coordIndex_4()
		{
			int[] value = {314,1107,163,-1,171,401,400,-1,297,13,128,-1,393,169,109,-1,1228,1229,1215,-1,1,0,545,-1,853,639,638,-1,655,4,768,-1,886,735,999,-1,638,959,853,-1,1215,266,1228,-1,393,109,1082,-1,127,297,128,-1,171,400,170,-1,314,163,311,-1,22,1088,120,-1,1098,1230,1226,-1,1192,1231,107,-1,1225,1232,1223,-1,1194,1233,837,-1,1222,1234,28,-1,1220,1235,841,-1,58,59,1212,-1,1137,395,394,-1,395,1236,1219,-1,1154,188,207,-1,110,48,111,-1,411,341,111,-1,1218,63,175,-1,139,1237,50,-1,1216,1207,1217,-1,1195,100,377,-1,1215,1238,267,-1,1213,1239,1214,-1,1212,281,365,-1,60,299,1188,-1,60,1102,61,-1,1189,299,298,-1,240,19,410,-1,95,100,99,-1,1202,1211,1240,-1,1210,373,67,-1,1209,1217,1207,-1,1206,373,1205,-1,70,422,1204,-1,1200,383,382,-1,1118,72,88,-1,73,1241,1199,-1,1202,77,76,-1,375,374,1068,-1,81,88,74,-1,74,1200,69,-1,86,83,1198,-1,90,92,1242,-1,96,99,1197,-1,1196,1243,100,-1,393,392,87,-1,71,1244,69,-1,301,164,1106,-1,1192,1194,1232,-1,1191,116,112,-1,1190,1114,1113,-1,118,115,108,-1,121,120,144,-1,1110,125,79,-1,259,97,292,-1,295,129,256,-1,1185,1187,1245,-1,171,142,141,-1,1155,1154,406,-1,1184,402,265,-1,1061,1183,264,-1,200,197,32,-1,1246,1236,1247,-1,1087,1248,423,-1,148,150,1089,-1,150,27,1091,-1,212,153,149,-1,149,1089,212,-1,1249,1148,157,-1,160,1250,161,-1,1179,294,1177,-1,1176,1173,293,-1,289,1251,1109,-1,406,405,403,-1,405,404,403,-1,1036,1132,398,-1,1035,1034,64,-1,251,250,89,-1,250,1038,393,-1,1159,1167,1240,-1,249,172,176,-1,1156,1167,174,-1,1166,1217,1165,-1,204,203,1164,-1,193,1252,262,-1,191,199,189,-1,1162,195,194,-1,1160,175,174,-1,77,177,172,-1,200,199,191,-1,190,1253,1065,-1,1157,1254,184,-1,1156,201,1038,-1,194,196,16,-1,1155,203,202,-1,201,46,48,-1,1153,1255,933,-1,1150,219,218,-1,222,323,223,-1,224,158,157,-1,1256,1094,1093,-1,1146,1257,1147,-1,51,1055,1054,-1,1144,276,37,-1,138,1237,139,-1,234,1213,1142,-1,1139,238,1140,-1,239,416,1258,-1,240,242,1043,-1,1136,1137,394,-1,1172,1133,1135,-1,1050,135,1055,-1,399,390,1132,-1,1074,1259,1130,-1,1118,88,87,-1,210,1250,160,-1,257,129,128,-1,257,1079,129,-1,71,1204,1244,-1,356,1147,263,-1,264,92,94,-1,267,1238,1127,-1,30,32,1063,-1,415,414,1126,-1,58,1072,271,-1,1125,137,136,-1,274,1124,1260,-1,1123,273,1121,-1,1261,232,33,-1,102,56,55,-1,1248,1087,1182,-1,98,1119,1197,-1,1262,347,80,-1,1116,1263,1115,-1,1102,103,61,-1,1102,1264,103,-1,1112,1265,1113,-1,290,124,123,-1,1109,125,1110,-1,1108,291,1174,-1,296,300,299,-1,306,144,423,-1,1106,313,1189,-1,1103,309,1104,-1,1102,312,1264,-1,60,14,130,-1,1100,1101,24,-1,1266,310,1099,-1,217,1267,1096,-1,1029,318,317,-1,321,1250,322,-1,324,320,223,-1,1268,1256,1093,-1,1092,1095,225,-1,323,158,225,-1,222,1269,1149,-1,216,1091,560,-1,1089,150,1090,-1,213,212,1089,-1,1181,214,213,-1,22,155,1087,-1,329,116,330,-1,1086,334,333,-1,339,1085,1270,-1,338,1084,339,-1,111,340,1081,-1,331,343,342,-1,1271,1191,114,-1,117,1272,346,-1,1081,344,108,-1,353,354,351,-1,351,355,1060,-1,1246,1219,1236,-1,357,1080,1187,-1,1078,254,1079,-1,1076,1273,369,-1,1074,1075,1274,-1,371,369,368,-1,1056,1073,370,-1,50,1237,271,-1,1071,65,67,-1,373,1206,1070,-1,379,374,1069,-1,1068,374,379,-1,379,378,1067,-1,381,380,1065,-1,1062,1183,1061,-1,1059,1060,1275,-1,1057,1276,1058,-1,385,389,1056,-1,1055,135,1053,-1,358,357,1051,-1,1277,1278,1279,-1,399,1041,133,-1,1242,1047,90,-1,355,41,1280,-1,248,40,1044,-1,394,1281,243,-1,1042,1136,242,-1,399,16,15,-1,205,204,1039,-1,110,169,1038,-1,1036,143,1169,-1,1170,408,18,-1,1035,47,46,-1,1032,235,234,-1,1030,239,1258,-1,427,221,1029,-1,85,83,82,-1,93,90,84,-1,666,669,814,-1,961,1282,947,-1,1025,434,433,-1,432,941,805,-1,758,439,438,-1,670,450,732,-1,450,1283,732,-1,465,914,1023,-1,470,449,705,-1,665,461,479,-1,451,450,668,-1,1022,1284,667,-1,842,1284,1020,-1,459,821,664,-1,913,879,1000,-1,1285,952,478,-1,478,1286,1015,-1,479,461,460,-1,1014,1287,481,-1,1013,787,487,-1,484,926,485,-1,1012,1288,495,-1,786,852,859,-1,852,1289,1011,-1,875,496,798,-1,497,867,864,-1,1290,759,761,-1,1009,508,1010,-1,955,510,509,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc6_Geo_5_79_coordIndex_5()
		{
			int[] value = {511,510,1006,-1,1005,1291,808,-1,518,1292,654,-1,472,522,521,-1,524,525,527,-1,1000,975,534,-1,532,542,541,-1,998,544,546,-1,997,547,546,-1,996,0,1293,-1,555,973,1294,-1,995,1295,749,-1,560,559,6,-1,937,564,563,-1,687,905,686,-1,993,684,686,-1,1296,992,1297,-1,905,689,565,-1,567,566,569,-1,568,566,570,-1,6,572,690,-1,990,1298,692,-1,1299,989,834,-1,988,579,1101,-1,586,987,582,-1,986,589,984,-1,596,858,586,-1,606,857,603,-1,609,612,611,-1,615,769,983,-1,982,1300,614,-1,980,1301,979,-1,908,978,1302,-1,975,977,621,-1,785,784,974,-1,971,627,626,-1,679,678,810,-1,968,1303,969,-1,965,632,631,-1,274,1260,964,-1,963,866,868,-1,503,505,808,-1,961,1027,828,-1,853,866,963,-1,487,645,900,-1,649,521,520,-1,518,768,890,-1,568,741,569,-1,791,879,792,-1,953,955,1304,-1,951,470,831,-1,1285,475,471,-1,1305,949,948,-1,453,452,451,-1,669,666,668,-1,947,1282,429,-1,943,945,1306,-1,941,942,1307,-1,760,1308,512,-1,630,940,1309,-1,475,1016,816,-1,938,515,514,-1,1297,992,935,-1,684,1310,744,-1,687,564,937,-1,934,577,575,-1,932,1152,933,-1,707,443,848,-1,896,716,931,-1,705,712,706,-1,441,708,725,-1,928,718,490,-1,926,717,719,-1,921,727,874,-1,924,920,919,-1,923,706,711,-1,720,719,717,-1,854,1311,715,-1,703,445,922,-1,850,799,801,-1,918,708,919,-1,921,725,727,-1,920,862,918,-1,790,913,441,-1,661,788,790,-1,437,436,803,-1,733,917,951,-1,440,439,817,-1,700,757,704,-1,915,895,894,-1,1305,922,444,-1,735,913,999,-1,616,983,1312,-1,613,912,1313,-1,607,1314,909,-1,741,743,569,-1,1315,744,1310,-1,557,556,748,-1,750,904,751,-1,750,752,556,-1,555,903,972,-1,1316,973,986,-1,732,438,670,-1,901,926,636,-1,900,898,485,-1,647,1023,897,-1,895,847,896,-1,893,1317,891,-1,608,4,3,-1,889,771,653,-1,887,770,769,-1,772,756,773,-1,536,775,531,-1,980,883,885,-1,551,539,538,-1,835,1318,881,-1,880,600,596,-1,869,877,958,-1,879,913,789,-1,786,878,851,-1,784,770,887,-1,645,424,463,-1,643,1319,426,-1,877,1320,873,-1,642,877,796,-1,494,876,658,-1,495,861,794,-1,872,873,1321,-1,956,791,795,-1,536,886,999,-1,871,1322,869,-1,867,497,868,-1,849,801,800,-1,501,497,864,-1,794,861,863,-1,518,517,1292,-1,858,604,857,-1,856,806,587,-1,674,808,855,-1,639,853,637,-1,849,1290,850,-1,512,1308,815,-1,848,443,543,-1,543,998,818,-1,844,454,1020,-1,819,820,482,-1,458,822,1019,-1,462,1010,460,-1,800,799,634,-1,839,841,1235,-1,838,28,1234,-1,835,837,581,-1,881,832,776,-1,832,834,1323,-1,553,773,554,-1,595,588,584,-1,831,705,704,-1,829,672,804,-1,2,1293,0,-1,500,1324,799,-1,596,600,858,-1,573,696,579,-1,751,29,28,-1,489,1325,927,-1,460,1286,478,-1,630,1326,783,-1,821,1019,822,-1,664,821,820,-1,435,848,1024,-1,815,476,816,-1,676,763,812,-1,633,811,678,-1,810,811,808,-1,806,807,781,-1,730,437,803,-1,502,501,797,-1,502,798,863,-1,877,869,1322,-1,872,795,796,-1,642,644,1327,-1,426,425,793,-1,643,642,791,-1,788,464,463,-1,787,424,645,-1,784,786,860,-1,872,1321,802,-1,779,781,807,-1,777,765,778,-1,531,735,886,-1,539,550,775,-1,545,829,440,-1,771,889,769,-1,890,768,610,-1,4,655,5,-1,764,1328,469,-1,762,1329,763,-1,759,1308,760,-1,732,731,757,-1,647,898,900,-1,756,1330,755,-1,670,438,669,-1,554,773,903,-1,559,904,691,-1,693,557,749,-1,747,1295,745,-1,992,743,742,-1,741,698,742,-1,684,993,1310,-1,736,605,737,-1,983,1313,912,-1,441,913,442,-1,731,733,734,-1,788,1319,789,-1,662,790,441,-1,729,919,730,-1,931,724,701,-1,702,701,724,-1,713,1331,722,-1,448,447,467,-1,640,720,846,-1,718,931,716,-1,715,1331,713,-1,711,712,930,-1,1332,635,710,-1,435,730,708,-1,704,706,923,-1,703,931,701,-1,446,445,701,-1,845,699,700,-1,698,741,568,-1,557,694,1333,-1,1334,935,936,-1,690,571,565,-1,571,575,570,-1,428,689,937,-1,562,564,687,-1,683,1335,681,-1,500,850,516,-1,678,680,1336,-1,1326,1337,1338,-1,677,967,675,-1,624,623,628,-1,673,433,432,-1,671,429,943,-1,805,941,1339,-1,666,1340,667,-1,668,842,451,-1,665,459,664,-1,950,949,1341,-1,661,790,662,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc6_Geo_5_79_coordIndex_6()
		{
			int[] value = {956,795,785,-1,494,658,660,-1,656,519,890,-1,518,655,768,-1,1011,651,653,-1,648,650,854,-1,647,900,645,-1,800,634,641,-1,637,1342,638,-1,634,924,635,-1,503,811,633,-1,763,676,675,-1,631,275,274,-1,628,623,629,-1,626,280,279,-1,623,625,971,-1,603,1343,606,-1,602,619,618,-1,622,1344,620,-1,617,619,977,-1,616,981,614,-1,613,888,611,-1,608,910,609,-1,3,856,606,-1,603,857,604,-1,600,880,601,-1,595,740,596,-1,593,1345,594,-1,591,984,589,-1,588,586,582,-1,1346,559,692,-1,575,577,573,-1,559,1346,572,-1,566,565,571,-1,567,905,565,-1,689,905,687,-1,904,559,561,-1,556,558,750,-1,557,1333,558,-1,1316,1333,694,-1,555,746,553,-1,552,1347,550,-1,549,1,547,-1,546,547,1,-1,544,998,543,-1,542,1347,540,-1,536,999,534,-1,533,543,531,-1,528,530,1348,-1,458,524,822,-1,902,456,844,-1,522,891,520,-1,519,659,517,-1,761,514,516,-1,512,513,760,-1,1009,509,511,-1,508,1009,506,-1,503,512,504,-1,502,1324,500,-1,499,868,497,-1,875,491,496,-1,494,491,875,-1,1012,491,493,-1,489,927,490,-1,483,485,898,-1,480,482,526,-1,475,477,764,-1,522,472,474,-1,1349,1017,1350,-1,469,447,470,-1,465,646,463,-1,527,820,821,-1,458,1019,459,-1,452,1283,450,-1,447,449,470,-1,444,446,1351,-1,441,443,707,-1,699,895,803,-1,440,829,438,-1,435,1024,436,-1,434,942,432,-1,431,946,429,-1,7,690,428,-1,793,1327,644,-1,463,424,426,-1,420,93,421,-1,419,245,1352,-1,105,1220,417,-1,416,1138,414,-1,235,1033,412,-1,407,1213,234,-1,409,143,410,-1,404,1047,402,-1,401,16,399,-1,384,386,246,-1,1136,1043,242,-1,243,1281,396,-1,45,1281,394,-1,393,1082,345,-1,387,384,390,-1,1353,1065,1254,-1,1279,358,1052,-1,387,1145,388,-1,382,94,420,-1,381,1061,197,-1,76,1354,378,-1,100,95,377,-1,376,1355,377,-1,68,1069,374,-1,373,1210,1205,-1,1216,1356,140,-1,372,1056,370,-1,367,369,1273,-1,366,364,1073,-1,1357,363,365,-1,58,362,1072,-1,358,1146,356,-1,355,351,354,-1,351,1060,352,-1,350,354,348,-1,345,1082,346,-1,342,344,1081,-1,341,1083,338,-1,327,1084,1083,-1,339,1270,337,-1,335,332,1358,-1,332,334,1358,-1,331,1086,329,-1,328,1359,327,-1,1087,1360,1182,-1,325,152,156,-1,216,560,8,-1,159,1149,1269,-1,320,324,321,-1,322,1250,210,-1,320,322,319,-1,318,315,216,-1,218,26,1151,-1,1361,1362,1151,-1,24,1233,1363,-1,312,314,1266,-1,1102,1188,313,-1,313,1107,314,-1,309,1103,310,-1,308,1364,306,-1,301,284,1365,-1,300,167,298,-1,296,297,1179,-1,294,295,1108,-1,1174,291,293,-1,289,1110,124,-1,78,80,285,-1,286,1117,287,-1,285,1365,284,-1,300,296,1366,-1,281,277,282,-1,278,1120,279,-1,38,37,276,-1,275,1121,273,-1,54,232,52,-1,272,1367,270,-1,270,57,271,-1,11,1160,198,-1,268,1228,266,-1,1242,92,265,-1,263,1147,261,-1,258,376,259,-1,12,359,257,-1,129,1079,255,-1,252,1068,253,-1,1118,98,72,-1,251,173,249,-1,1134,1368,1135,-1,246,386,247,-1,1043,1136,394,-1,245,1043,243,-1,407,1239,1213,-1,239,1031,237,-1,236,20,234,-1,232,1261,233,-1,55,1369,229,-1,226,228,1166,-1,220,319,218,-1,1370,936,1094,-1,214,151,212,-1,209,1255,210,-1,208,1035,206,-1,205,181,180,-1,203,204,180,-1,201,1156,62,-1,198,187,199,-1,380,197,190,-1,30,9,31,-1,195,1371,196,-1,193,1163,183,-1,192,202,190,-1,189,199,187,-1,1041,15,186,-1,182,184,1372,-1,179,181,1372,-1,202,180,179,-1,63,62,174,-1,172,249,173,-1,89,1168,1198,-1,170,1169,143,-1,1038,169,393,-1,1109,1176,1175,-1,168,1180,166,-1,224,1148,1092,-1,209,160,162,-1,1093,162,161,-1,155,1126,156,-1,153,212,151,-1,216,215,1091,-1,1088,423,120,-1,241,240,410,-1,144,306,145,-1,265,264,1183,-1,143,409,141,-1,140,1356,138,-1,137,232,54,-1,133,135,1050,-1,297,130,13,-1,129,295,127,-1,126,97,96,-1,124,78,122,-1,1083,1170,18,-1,119,22,120,-1,116,1191,117,-1,113,1113,114,-1,107,1231,105,-1,103,1373,104,-1,73,1243,1241,-1,98,1197,99,-1,95,99,96,-1,93,420,94,-1,89,250,1168,-1,88,81,86,-1,85,421,84,-1,76,1069,1201,-1,79,1262,80,-1,75,1354,76,-1,72,74,88,-1,1191,1272,117,-1,65,1211,68,-1,1165,1217,1209,-1,98,100,1243,-1,1034,62,64,-1,19,407,20,-1,14,61,104,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc6_Geo_5_79_coordIndex_7()
		{
			int[] value = {57,56,59,-1,57,270,55,-1,53,52,1374,-1,240,419,407,-1,51,1054,49,-1,1171,1170,411,-1,1219,43,45,-1,41,355,42,-1,101,36,38,-1,385,387,389,-1,1064,1065,1375,-1,27,1221,28,-1,26,1100,24,-1,1106,1189,302,-1,226,1165,1071,-1,23,327,1359,-1,18,410,19,-1,1085,1084,23,-1,11,31,9,-1,18,327,1083,-1,960,1332,710,-1,5,856,3,-1,1363,25,24,-1,1363,1376,25,-1,1231,1232,1225,-1,1192,1232,1231,-1,836,1232,1194,-1,1232,836,1223,-1,1235,1225,1224,-1,1220,1225,1235,-1,33,137,1377,-1,33,232,137,-1,1275,1130,1059,-1,1275,1276,1130,-1,1378,1379,1380,-1,1378,1381,1379,-1,139,1382,140,-1,1382,139,1245,-1,1383,1277,1384,-1,1385,1277,1383,-1,1214,1228,268,-1,1228,1214,1239,-1,278,1386,1387,-1,278,280,1386,-1,1388,1367,1389,-1,1388,1369,1367,-1,1390,1125,1391,-1,1390,1124,1125,-1,14,359,12,-1,1392,359,14,-1,1033,360,412,-1,360,1033,1078,-1,1167,1202,1240,-1,178,1202,1167,-1,1071,198,1160,-1,1165,198,1071,-1,1393,1199,1241,-1,1393,1394,1199,-1,1395,1394,75,-1,1395,1203,1394,-1,1226,1373,103,-1,1226,107,1373,-1,298,302,1189,-1,298,1115,302,-1,414,1139,325,-1,414,1138,1139,-1,1185,1396,1186,-1,1396,1185,1053,-1,229,1397,230,-1,1398,1397,229,-1,1399,1400,1401,-1,1399,1402,1400,-1,1184,403,402,-1,403,1184,1155,-1,197,1128,32,-1,1128,197,1061,-1,1181,1360,214,-1,1181,1182,1360,-1,1116,1403,1111,-1,1180,1403,1116,-1,1177,1404,1178,-1,1404,1177,1405,-1,1173,1406,1407,-1,1173,1176,1406,-1,1174,1407,1108,-1,1173,1407,1174,-1,1408,288,287,-1,288,1408,1409,-1,1049,1040,1135,-1,1049,1048,1040,-1,1169,400,1132,-1,1169,170,400,-1,249,1038,250,-1,249,176,1038,-1,405,173,251,-1,405,1218,173,-1,188,1162,1161,-1,188,187,1162,-1,193,17,1252,-1,17,193,1410,-1,1202,177,77,-1,1202,178,177,-1,1253,1254,1065,-1,1254,1253,184,-1,1411,195,1208,-1,1411,1371,195,-1,194,171,1161,-1,401,171,194,-1,192,1154,1155,-1,1154,192,189,-1,1382,1208,1207,-1,1208,1382,1411,-1,1206,1412,1070,-1,1206,1413,1412,-1,1414,1415,1416,-1,1414,418,1415,-1,238,131,1140,-1,237,131,238,-1,244,1352,245,-1,1417,1352,244,-1,1418,1417,1419,-1,1417,1418,1420,-1,1421,1137,1042,-1,1421,1045,1137,-1,391,399,1050,-1,391,390,399,-1,1158,75,77,-1,1158,1395,75,-1,1255,1129,933,-1,1255,209,1129,-1,1127,1214,268,-1,1205,1214,1127,-1,1422,1423,1424,-1,1422,1390,1423,-1,1124,1123,1125,-1,1124,273,1123,-1,233,1374,52,-1,233,1425,1374,-1,1377,34,33,-1,1426,34,1377,-1,1400,1427,1428,-1,1400,1429,1427,-1,1430,1120,282,-1,1428,1120,1430,-1,1119,347,1262,-1,1119,345,347,-1,1251,1176,1109,-1,1251,1406,1176,-1,1406,1431,1405,-1,1406,1251,1431,-1,1117,346,287,-1,1117,347,346,-1,1365,286,305,-1,1365,285,286,-1,1364,145,306,-1,1364,1432,145,-1,1107,164,163,-1,164,1107,1106,-1,1181,1105,1104,-1,1105,1181,213,-1,103,1227,1226,-1,1264,1227,103,-1,1193,1376,1363,-1,1193,1230,1376,-1,1433,1100,1434,-1,1433,988,1100,-1,310,1435,1099,-1,310,1103,1435,-1,1361,1097,1099,-1,1361,211,1097,-1,220,318,1029,-1,219,318,220,-1,321,1268,1250,-1,1095,1268,321,-1,1093,1250,1268,-1,1250,1093,161,-1,1092,1249,1370,-1,1249,1092,1148,-1,561,27,29,-1,561,1091,27,-1,149,1436,147,-1,1436,149,153,-1,1415,1436,1416,-1,1415,147,1436,-1,1360,155,154,-1,1360,1087,155,-1,329,113,112,-1,1086,113,329,-1,335,1085,119,-1,335,1270,1085,-1,1437,1081,340,-1,1437,342,1081,-1,1265,114,1113,-1,1271,114,1265,-1,108,343,118,-1,108,344,343,-1,528,1438,1439,-1,1438,528,1440,-1,1441,529,1442,-1,1441,1443,529,-1,1444,1219,1246,-1,1444,43,1219,-1,1205,1142,1214,-1,1205,1210,1142,-1,1386,1445,1387,-1,1446,1445,1386,-1,1077,370,1073,-1,1077,369,370,-1,1057,368,1131,-1,368,1057,371,-1,51,1072,362,-1,50,1072,51,-1,65,1160,1159,-1,1160,65,1071,-1,258,253,1447,-1,258,255,253,-1,378,1195,1066,-1,378,1196,1195,-1,1060,1280,1275,-1,1060,355,1280,-1,1276,1131,1130,-1,1276,1057,1131,-1,1382,1187,1080,-1,1245,1187,1382,-1,1385,1448,1368,-1,1385,1383,1448,-1,1146,1279,1449,-1,1146,358,1279,-1,1133,1450,1134,-1,1133,1064,1450,-1,265,1047,1242,-1,265,402,1047,-1,1046,247,386,-1,1058,247,1046,-1,1137,1044,1247,-1,1137,1045,1044,-1,1451,1452,1453,-1,1452,1451,1454,-1,1036,1042,1037,-1,1421,1042,1036,-1,382,69,1200,-1,382,70,69,-1,871,1013,1322,-1,787,1013,871,-1,953,1274,954,-1,1455,1274,953,-1,1456,818,817,-1,818,1456,1024,-1,1283,733,732,-1,1283,916,733,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc6_Geo_5_79_coordIndex_8()
		{
			int[] value = {951,479,952,-1,951,917,479,-1,1284,668,667,-1,1284,842,668,-1,1457,1451,1379,-1,1458,1451,1457,-1,1350,489,1459,-1,489,1350,1325,-1,1017,1460,473,-1,1017,1349,1460,-1,474,891,522,-1,474,892,891,-1,1008,819,843,-1,1008,462,819,-1,795,802,785,-1,802,795,872,-1,1011,1461,651,-1,1289,1461,1011,-1,797,876,798,-1,797,864,876,-1,1006,1274,1075,-1,1006,954,1274,-1,511,1462,1463,-1,1007,1462,511,-1,1464,506,1463,-1,1465,506,1464,-1,1466,1464,1467,-1,1466,1468,1464,-1,864,942,876,-1,1307,942,864,-1,1003,1469,1001,-1,1469,1003,1470,-1,1471,525,524,-1,1471,1472,525,-1,1001,1440,1004,-1,1473,1440,1001,-1,1474,541,540,-1,1475,541,1474,-1,1476,772,774,-1,772,1476,1477,-1,1478,884,1479,-1,1478,1480,884,-1,1347,775,550,-1,1347,542,775,-1,1295,961,745,-1,1295,995,961,-1,994,1481,945,-1,994,1482,1481,-1,826,752,751,-1,826,753,752,-1,1483,428,937,-1,427,428,1483,-1,906,1297,993,-1,906,1296,1297,-1,1334,1484,1315,-1,1484,1334,936,-1,1298,1485,578,-1,1298,990,1485,-1,834,583,1323,-1,834,989,583,-1,1333,990,558,-1,985,990,1333,-1,986,972,592,-1,986,973,972,-1,755,1345,593,-1,1486,1345,755,-1,622,601,598,-1,619,601,622,-1,534,621,620,-1,621,534,975,-1,1487,1488,1489,-1,1488,1487,1312,-1,912,1312,983,-1,1312,912,1488,-1,975,974,976,-1,1000,974,975,-1,626,1303,971,-1,626,969,1303,-1,1427,970,969,-1,970,1427,1429,-1,825,1490,823,-1,825,1491,1490,-1,813,677,676,-1,1492,677,813,-1,965,964,1493,-1,631,964,965,-1,513,939,514,-1,939,513,633,-1,1494,1495,1496,-1,1494,1497,1495,-1,907,697,933,-1,698,697,907,-1,1498,925,874,-1,1499,925,1498,-1,470,1285,471,-1,952,1285,470,-1,453,1500,452,-1,1500,453,457,-1,1501,1497,1502,-1,1501,1495,1497,-1,1028,1340,666,-1,1028,1501,1340,-1,767,943,1306,-1,767,671,943,-1,1503,1504,1481,-1,1504,1503,1505,-1,1016,1285,478,-1,1016,475,1285,-1,865,1506,849,-1,865,929,1506,-1,847,716,896,-1,847,720,716,-1,803,1507,728,-1,803,915,1507,-1,711,929,865,-1,929,711,930,-1,1018,928,927,-1,1018,723,928,-1,727,861,874,-1,861,727,726,-1,830,715,1311,-1,830,1508,715,-1,641,846,923,-1,640,846,641,-1,710,662,921,-1,662,710,663,-1,863,920,502,-1,920,863,862,-1,831,733,951,-1,734,733,831,-1,1351,468,949,-1,466,468,1351,-1,1344,1509,620,-1,1344,1510,1509,-1,1511,612,609,-1,1511,911,612,-1,1488,911,1511,-1,911,1488,912,-1,1512,909,1314,-1,1512,1489,909,-1,1513,908,982,-1,1513,738,908,-1,1294,1316,694,-1,1316,1294,973,-1,899,926,901,-1,899,485,926,-1,894,897,1023,-1,894,896,897,-1,970,1514,968,-1,1515,1514,970,-1,1516,680,1338,-1,1516,1517,680,-1,1518,893,892,-1,1518,477,893,-1,944,961,995,-1,1282,961,944,-1,611,653,652,-1,653,611,888,-1,600,604,858,-1,978,604,600,-1,883,1479,884,-1,883,1330,1479,-1,543,735,531,-1,543,443,735,-1,779,832,780,-1,832,779,777,-1,1519,1499,1498,-1,1520,1499,1519,-1,770,859,771,-1,860,859,770,-1,1498,495,1288,-1,1498,874,495,-1,486,1499,1520,-1,1499,486,488,-1,496,863,798,-1,496,794,863,-1,763,1496,637,-1,1329,1496,763,-1,962,1492,813,-1,962,1521,1492,-1,1468,624,855,-1,625,624,1468,-1,947,1026,996,-1,1026,947,946,-1,1459,1349,1350,-1,1349,1459,1522,-1,850,761,516,-1,1290,761,850,-1,1523,844,1020,-1,1470,844,1523,-1,482,1304,843,-1,482,481,1304,-1,762,823,1490,-1,675,823,762,-1,1332,901,635,-1,901,1332,960,-1,1524,1235,1224,-1,1524,839,1235,-1,882,836,835,-1,882,1223,836,-1,882,776,1524,-1,882,881,776,-1,696,580,579,-1,580,696,1525,-1,774,2,549,-1,774,553,2,-1,835,580,1318,-1,580,835,581,-1,563,1483,937,-1,1483,563,1526,-1,1325,683,927,-1,683,1325,1335,-1,467,1527,468,-1,1527,467,1528,-1,674,782,809,-1,628,782,674,-1,1470,1457,1469,-1,1470,1523,1457,-1,728,709,729,-1,728,1507,709,-1,946,1025,1026,-1,1025,946,431,-1,1339,814,805,-1,638,814,1339,-1,633,1336,939,-1,678,1336,633,-1,1494,1329,1493,-1,1494,1496,1329,-1,963,813,812,-1,963,962,813,-1,1017,1325,1350,-1,1017,1335,1325,-1,486,1320,1013,-1,1520,1320,486,-1,1519,1288,1529,-1,1288,1519,1498,-1,1327,877,642,-1,1327,958,877,-1,1519,1320,1520,-1,1320,1519,873,-1,618,1302,602,-1,618,1300,1302,-1,777,766,765,-1,777,779,766,-1,772,1330,756,-1,1330,772,1479,-1,431,1530,654,-1,431,430,1530,-1,1293,828,1027,-1,1293,2,828,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc6_Geo_5_79_coordIndex_9()
		{
			int[] value = {1317,815,1308,-1,1317,893,815,-1,1338,824,1516,-1,824,1338,1337,-1,1531,970,1429,-1,1531,1515,970,-1,1295,693,749,-1,747,693,1295,-1,584,591,590,-1,584,583,591,-1,1489,1513,1487,-1,1512,1513,1489,-1,1344,1532,1510,-1,1344,597,1532,-1,922,948,483,-1,922,1305,948,-1,709,663,710,-1,709,1507,663,-1,722,928,723,-1,724,928,722,-1,1331,702,722,-1,1331,1533,702,-1,1508,448,721,-1,830,448,1508,-1,854,712,1311,-1,930,712,854,-1,1533,715,1508,-1,1533,1331,715,-1,1534,573,827,-1,1534,574,573,-1,681,649,682,-1,681,521,649,-1,682,1018,683,-1,1018,682,1535,-1,823,1516,824,-1,967,1516,823,-1,638,1028,814,-1,638,1342,1028,-1,767,1504,765,-1,1504,767,1306,-1,1502,1340,1501,-1,1502,1536,1340,-1,1536,667,1340,-1,1536,1021,667,-1,1537,1538,1539,-1,1538,1537,1424,-1,660,519,657,-1,660,659,519,-1,1327,870,958,-1,1327,793,870,-1,637,1495,1342,-1,1496,1495,637,-1,1517,967,677,-1,1516,967,1517,-1,1531,632,1515,-1,1531,275,632,-1,629,971,1303,-1,971,629,623,-1,981,1312,1487,-1,1312,981,616,-1,781,987,585,-1,987,781,780,-1,982,1302,1300,-1,982,908,1302,-1,621,619,622,-1,977,619,621,-1,607,608,3,-1,607,910,608,-1,880,598,601,-1,599,598,880,-1,1345,595,594,-1,1345,739,595,-1,986,594,589,-1,594,986,592,-1,881,833,832,-1,881,1318,833,-1,1534,1152,932,-1,1433,1152,1534,-1,989,578,1485,-1,578,989,576,-1,576,573,577,-1,573,576,695,-1,688,1346,934,-1,688,572,1346,-1,1526,1315,1484,-1,1526,563,1315,-1,751,561,29,-1,904,561,751,-1,1482,754,753,-1,1482,748,754,-1,1482,1503,1481,-1,1503,1482,753,-1,746,1294,747,-1,555,1294,746,-1,540,552,1540,-1,540,1347,552,-1,884,1540,885,-1,884,1480,1540,-1,1541,1477,1476,-1,1477,1541,1478,-1,1475,1541,997,-1,1475,1474,1541,-1,539,1509,537,-1,539,535,1509,-1,1002,524,523,-1,1471,524,1002,-1,529,1014,530,-1,1014,529,1443,-1,523,455,902,-1,458,455,523,-1,1381,1001,1469,-1,1381,1473,1001,-1,517,658,434,-1,658,517,659,-1,761,513,514,-1,760,513,761,-1,1467,1386,1466,-1,1467,1446,1386,-1,507,1465,1291,-1,507,506,1465,-1,1542,1462,1007,-1,1542,1543,1462,-1,505,816,1005,-1,505,504,816,-1,924,502,920,-1,924,1324,502,-1,660,651,1461,-1,657,651,660,-1,851,1012,493,-1,1012,851,878,-1,820,526,482,-1,526,820,527,-1,462,509,1010,-1,462,1008,509,-1,815,477,476,-1,815,893,477,-1,1544,1328,1518,-1,1545,1328,1544,-1,468,1341,949,-1,468,1527,1341,-1,483,897,922,-1,897,483,898,-1,458,453,455,-1,453,458,457,-1,1546,1451,1458,-1,1546,1454,1451,-1,452,916,1283,-1,452,1500,916,-1,1537,1502,1497,-1,1539,1502,1537,-1,787,425,424,-1,787,871,425,-1,382,422,70,-1,382,420,422,-1,1274,1259,1074,-1,1274,1455,1259,-1,411,1547,1171,-1,411,47,1547,-1,1421,398,246,-1,1421,1036,398,-1,1451,1380,1379,-1,1451,1453,1380,-1,1247,395,1137,-1,395,1247,1236,-1,1064,1278,1450,-1,1064,1375,1278,-1,1384,1279,1052,-1,1277,1279,1384,-1,1187,1051,357,-1,1186,1051,1187,-1,1243,72,98,-1,1243,73,72,-1,1447,376,258,-1,1447,1355,376,-1,375,66,68,-1,1210,66,375,-1,1542,367,1273,-1,1542,1075,367,-1,363,1073,364,-1,1073,363,1077,-1,1387,363,1357,-1,1387,1445,363,-1,271,138,269,-1,271,1237,138,-1,1032,1210,375,-1,1032,1142,1210,-1,1378,1444,1548,-1,1378,43,1444,-1,1442,352,1441,-1,353,352,1442,-1,1439,349,348,-1,349,1439,1438,-1,349,1246,350,-1,349,1444,1246,-1,340,337,1437,-1,338,337,340,-1,337,335,1358,-1,337,1270,335,-1,1549,336,121,-1,332,336,1549,-1,118,330,116,-1,343,330,118,-1,414,156,1126,-1,156,414,325,-1,1416,326,1141,-1,1436,326,1416,-1,148,1221,27,-1,1221,148,147,-1,1249,1526,1484,-1,1526,1249,1269,-1,210,319,322,-1,210,1550,319,-1,218,1550,316,-1,319,1550,218,-1,1150,1362,1267,-1,1151,1362,1150,-1,1096,1103,1105,-1,1435,1103,1096,-1,1101,1233,24,-1,1101,837,1233,-1,1227,312,1266,-1,1227,1264,312,-1,163,309,311,-1,163,308,309,-1,1248,306,423,-1,1248,307,306,-1,304,1364,165,-1,304,1432,1364,-1,145,1551,1112,-1,145,1432,1551,-1,167,1115,298,-1,167,166,1115,-1,1175,292,126,-1,293,292,1175,-1,1409,1271,1265,-1,1409,1408,1271,-1,288,305,286,-1,305,288,303,-1,168,1178,1404,-1,168,1366,1178,-1,345,1118,392,-1,1119,1118,345,-1,282,276,1430,-1,282,277,276,-1,1401,1428,1430,-1,1401,1400,1428,-1,1399,1377,1122,-1,1399,1426,1377,-1,102,59,56,-1,102,101,59,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc6_Geo_5_79_coordIndex_10()
		{
			int[] value = {1413,1127,1238,-1,1413,1206,1127,-1,1390,1418,1423,-1,1390,1391,1418,-1,1128,1063,32,-1,1128,94,1063,-1,1184,203,1155,-1,1184,1164,203,-1,255,260,256,-1,255,258,260,-1,1079,253,255,-1,254,253,1079,-1,1538,1423,1552,-1,1538,1424,1423,-1,243,1553,244,-1,1553,243,397,-1,244,1419,1417,-1,1419,244,1553,-1,1414,131,106,-1,1414,1140,131,-1,1352,1228,419,-1,1228,1352,1229,-1,1397,33,35,-1,1397,1261,33,-1,1554,1367,272,-1,1554,1389,1367,-1,1080,1411,1382,-1,1411,1080,263,-1,26,1434,1100,-1,1434,26,316,-1,193,1555,1410,-1,182,1555,193,-1,1371,263,262,-1,1411,263,1371,-1,190,179,1253,-1,179,190,202,-1,1556,1041,186,-1,133,1041,1556,-1,1048,205,1040,-1,1048,1557,205,-1,172,30,1158,-1,172,9,30,-1,1551,288,1409,-1,303,288,1551,-1,1403,1405,1431,-1,1403,1404,1405,-1,310,314,311,-1,1266,314,310,-1,151,156,152,-1,151,154,156,-1,1554,227,1070,-1,1554,228,227,-1,1401,1426,1399,-1,1426,1401,1144,-1,1369,1398,229,-1,1388,1398,1369,-1,135,1396,1053,-1,134,1396,135,-1,238,1138,239,-1,1138,238,1139,-1,237,132,131,-1,237,1558,132,-1,146,121,144,-1,146,1549,121,-1,132,107,106,-1,1373,107,132,-1,1263,122,284,-1,122,1263,123,-1,1200,1394,1203,-1,1200,1199,1394,-1,69,82,81,-1,82,69,1244,-1,1354,1394,1393,-1,1354,75,1394,-1,178,1156,176,-1,178,1167,1156,-1,1374,1238,53,-1,1238,1374,1413,-1,136,1391,1125,-1,1559,1391,136,-1,1369,270,1367,-1,1369,55,270,-1,1215,53,1238,-1,1215,54,53,-1,415,328,416,-1,1359,328,415,-1,1051,1384,1052,-1,1051,1560,1384,-1,206,1154,207,-1,206,406,1154,-1,1380,43,1378,-1,43,1380,44,-1,1280,1276,1275,-1,1280,1058,1276,-1,39,1143,37,-1,1143,39,231,-1,1384,1561,1383,-1,1384,1560,1561,-1,1363,1194,1193,-1,1363,1233,1194,-1,23,119,1085,-1,22,119,23,-1,327,20,236,-1,327,18,20,-1,211,1376,1097,-1,25,1376,211,-1,1483,1269,222,-1,1483,1526,1269,-1,1353,1375,1065,-1,1353,1449,1375,-1,1448,186,1049,-1,1448,1556,186,-1,101,1212,59,-1,101,38,1212,-1,1259,1059,1130,-1,1259,1562,1059,-1,412,1258,413,-1,412,1030,1258,-1,419,1239,407,-1,419,1228,1239,-1,283,1387,1357,-1,283,278,1387,-1,1388,1412,1425,-1,1389,1412,1388,-1,1124,1422,1260,-1,1390,1422,1124,-1,1375,1279,1278,-1,1449,1279,1375,-1,1033,375,252,-1,1032,375,1033,-1,376,97,259,-1,376,95,97,-1,1392,104,1558,-1,104,1392,14,-1,1231,1220,105,-1,1231,1225,1220,-1,411,1083,341,-1,411,1170,1083,-1,260,295,256,-1,260,291,295,-1,1392,1030,359,-1,1031,1030,1392,-1,21,1359,415,-1,23,1359,21,-1,49,1245,139,-1,1185,1245,49,-1,35,230,1397,-1,35,231,230,-1,1400,1531,1429,-1,1402,1531,1400,-1,21,155,22,-1,155,21,1126,-1,167,1366,168,-1,167,300,1366,-1,1180,1404,1403,-1,1180,168,1404,-1,1407,1405,1177,-1,1407,1406,1405,-1,1272,287,346,-1,287,1272,1408,-1,1133,1164,1062,-1,1164,1133,1172,-1,171,208,207,-1,141,208,171,-1,173,10,9,-1,1218,10,173,-1,1253,1372,184,-1,1253,179,1372,-1,181,182,1372,-1,1555,182,181,-1,15,1410,185,-1,15,17,1410,-1,196,262,1252,-1,196,1371,262,-1,1208,1162,1209,-1,1208,195,1162,-1,207,1161,171,-1,207,188,1161,-1,1410,1557,185,-1,1557,1410,1555,-1,1153,210,1255,-1,1153,1550,210,-1,1370,1256,1092,-1,1370,1094,1256,-1,217,1150,1267,-1,217,315,1150,-1,1254,1257,1353,-1,1254,1157,1257,-1,230,102,229,-1,230,36,102,-1,36,230,39,-1,418,106,105,-1,1414,106,418,-1,1563,1552,1564,-1,1538,1552,1563,-1,1454,1564,1452,-1,1563,1564,1454,-1,1229,1417,1420,-1,1352,1417,1229,-1,1045,246,248,-1,1421,246,1045,-1,1204,82,1244,-1,82,1204,85,-1,1420,1215,1229,-1,1420,1559,1215,-1,1261,1398,233,-1,1261,1397,1398,-1,1121,1531,1402,-1,1531,1121,275,-1,1428,279,1120,-1,279,1428,1427,-1,1251,290,1431,-1,1251,289,290,-1,1263,1111,123,-1,1116,1111,1263,-1,285,1117,286,-1,285,80,1117,-1,127,1179,297,-1,1179,127,294,-1,305,301,1365,-1,305,304,301,-1,163,1364,308,-1,1364,163,165,-1,308,1104,309,-1,308,307,1104,-1,1230,1192,1226,-1,1193,1192,1230,-1,1152,1434,1153,-1,1152,1433,1434,-1,1362,1099,1435,-1,1362,1361,1099,-1,26,1361,1151,-1,26,211,1361,-1,315,219,1150,-1,318,219,315,-1,1415,1221,147,-1,1415,1222,1221,-1,214,154,151,-1,154,214,1360,-1,1190,332,1549,-1,332,1190,333,-1,121,335,119,-1,121,336,335,-1,342,334,331,-1,342,1437,334,-1,1440,1548,1438,-1,1440,1473,1548,-1,529,1439,1442,-1,529,528,1439,-1,359,412,360,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getc6_Geo_5_79_coordIndex_11()
		{
			int[] value = {359,1030,412,-1,228,272,1356,-1,272,228,1554,-1,361,365,364,-1,365,361,58,-1,1446,1076,1445,-1,1076,1446,1543,-1,361,388,362,-1,388,361,366,-1,1145,362,388,-1,51,362,1145,-1,1447,1068,1067,-1,1447,253,1068,-1,377,1066,1195,-1,377,1355,1066,-1,378,1393,1196,-1,1393,378,1354,-1,1562,1443,1441,-1,1565,1443,1562,-1,1207,140,1382,-1,140,1207,1216,-1,1561,133,1556,-1,1561,134,133,-1,1368,1450,1385,-1,1368,1134,1450,-1,1135,1039,1172,-1,1039,1135,1040,-1,45,396,1281,-1,44,396,45,-1,1452,396,1453,-1,397,396,1452,-1,384,1132,390,-1,1132,384,398,-1,208,409,1547,-1,141,409,208,-1,1416,1140,1414,-1,1416,1141,1140,-1,87,1198,1168,-1,87,86,1198,-1,1319,463,426,-1,788,463,1319,-1,877,1013,1320,-1,1013,877,1322,-1,840,778,1505,-1,839,778,840,-1,1456,436,1024,-1,1456,700,436,-1,1566,467,466,-1,1566,721,467,-1,1458,1523,1022,-1,1458,1457,1523,-1,664,462,461,-1,664,819,462,-1,465,647,646,-1,1023,647,465,-1,1459,948,950,-1,948,1459,489,-1,1017,681,1335,-1,681,1017,472,-1,1527,1522,1341,-1,1522,1527,1567,-1,891,1506,520,-1,891,1317,1506,-1,955,843,1304,-1,1008,843,955,-1,878,1321,1529,-1,1321,878,802,-1,492,1289,493,-1,492,1461,1289,-1,507,1286,508,-1,1015,1286,507,-1,1009,1463,506,-1,511,1463,1009,-1,1463,1467,1464,-1,1463,1462,1467,-1,1468,1465,1464,-1,1468,855,1465,-1,1307,867,1568,-1,864,867,1307,-1,844,1003,902,-1,1470,1003,844,-1,526,1472,480,-1,526,525,1472,-1,1471,530,1472,-1,1348,530,1471,-1,1004,528,1348,-1,1004,1440,528,-1,542,531,775,-1,532,531,542,-1,538,1301,980,-1,538,537,1301,-1,533,1475,544,-1,1475,533,541,-1,549,1476,774,-1,548,1476,549,-1,1474,1478,1541,-1,1480,1478,1474,-1,885,552,551,-1,885,1540,552,-1,748,994,749,-1,748,1482,994,-1,840,1503,838,-1,1503,840,1505,-1,692,750,558,-1,750,692,691,-1,991,575,574,-1,991,570,575,-1,578,934,1298,-1,578,577,934,-1,984,990,985,-1,984,1485,990,-1,581,1101,579,-1,1101,581,837,-1,582,1323,583,-1,1323,582,987,-1,589,595,590,-1,595,589,594,-1,593,972,903,-1,592,972,593,-1,1345,599,739,-1,599,1345,1486,-1,1532,755,979,-1,755,1532,1486,-1,978,605,604,-1,605,978,737,-1,888,1313,889,-1,888,613,1313,-1,537,1510,1301,-1,1509,1510,537,-1,598,1344,622,-1,598,597,1344,-1,1314,736,1512,-1,1343,736,1314,-1,956,1000,879,-1,956,974,1000,-1,279,969,626,-1,279,1427,969,-1,1490,1514,966,-1,1491,1514,1490,-1,809,679,810,-1,679,809,782,-1,762,1493,1329,-1,965,1493,762,-1,1497,1569,1537,-1,1569,1497,1494,-1,488,899,901,-1,899,488,487,-1,703,897,896,-1,897,703,922,-1,652,657,656,-1,651,657,652,-1,665,457,459,-1,665,1500,457,-1,1501,1342,1495,-1,1501,1028,1342,-1,1570,1454,1546,-1,1570,1563,1454,-1,1539,1563,1570,-1,1539,1538,1563,-1,765,1505,778,-1,765,1504,1505,-1,679,1338,680,-1,783,1338,679,-1,783,1326,1338,-1,929,520,1506,-1,929,650,520,-1,934,692,1298,-1,1346,692,934,-1,1297,1334,993,-1,1334,1297,935,-1,568,932,697,-1,932,568,991,-1,1566,1508,721,-1,1566,1533,1508,-1,923,845,704,-1,845,923,846,-1,641,865,800,-1,865,641,711,-1,723,1535,713,-1,1018,1535,723,-1,724,718,928,-1,724,931,718,-1,447,1528,467,-1,447,469,1528,-1,446,466,1351,-1,1566,466,446,-1,960,921,925,-1,921,960,710,-1,620,535,534,-1,620,1509,535,-1,1489,1511,909,-1,1511,1489,1488,-1,1512,738,1513,-1,738,1512,736,-1,1343,605,736,-1,603,605,1343,-1,746,828,553,-1,746,745,828,-1,498,515,499,-1,516,515,498,-1,1491,968,1514,-1,1491,940,968,-1,1517,1336,680,-1,1517,1571,1336,-1,1518,764,477,-1,1518,1328,764,-1,1282,943,429,-1,1282,944,943,-1,766,671,767,-1,671,766,1572,-1,610,652,656,-1,652,610,611,-1,545,818,998,-1,818,545,440,-1,839,776,778,-1,1524,776,839,-1,807,1530,1572,-1,807,5,1530,-1,771,1011,653,-1,859,1011,771,-1,876,434,658,-1,876,942,434,-1,708,726,725,-1,726,708,918,-1,585,806,781,-1,587,806,585,-1,1422,964,1260,-1,1422,1569,964,-1,1521,1571,1492,-1,1521,938,1571,-1,1466,625,1468,-1,627,625,1466,-1,1339,1307,1568,-1,1339,941,1307,-1,853,812,763,-1,853,963,812,-1,996,1027,947,-1,996,1293,1027,-1,1460,474,473,-1,474,1460,1544,-1,847,699,845,-1,847,895,699,-1,481,953,1304,-1,953,481,1287,-1,1309,1326,630,-1,1309,1337,1326,-1,1545,1460,1567,-1,1460,1545,1544,-1,1524,1223,882,-1,1524,1224,1223,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getc6_Geo_5_79_coordIndex_12()
		{
			int[] value = {1525,695,1299,-1,1525,696,695,-1,672,0,673,-1,0,672,829,-1,1525,834,833,-1,1525,1299,834,-1,838,841,840,-1,838,1234,841,-1,1528,1567,1527,-1,1567,1528,1545,-1,825,1337,1309,-1,824,1337,825,-1,1287,1455,953,-1,1287,1565,1455,-1,1379,1469,1457,-1,1381,1469,1379,-1,1506,1308,759,-1,1506,1317,1308,-1,1349,1567,1460,-1,1349,1522,1567,-1,638,1568,959,-1,638,1339,1568,-1,1386,627,1466,-1,280,627,1386,-1,939,1571,938,-1,1336,1571,939,-1,1493,1569,1494,-1,1569,1493,964,-1,654,5,655,-1,654,1530,5,-1,1292,434,1025,-1,1292,517,434,-1,861,918,862,-1,861,726,918,-1,634,1324,924,-1,634,799,1324,-1,873,1529,1321,-1,1529,873,1519,-1,617,976,887,-1,617,977,976,-1,976,784,887,-1,976,974,784,-1,1302,600,602,-1,600,1302,978,-1,1572,779,807,-1,779,1572,766,-1,551,980,885,-1,551,538,980,-1,1300,617,614,-1,618,617,1300,-1,430,1572,1530,-1,430,671,1572,-1,433,996,1026,-1,433,673,996,-1,1518,474,1544,-1,892,474,1518,-1,1309,1491,825,-1,1491,1309,940,-1,938,499,515,-1,938,1521,499,-1,907,936,742,-1,907,957,936,-1,1487,982,981,-1,1513,982,1487,-1,607,1343,1314,-1,606,1343,607,-1,1486,597,599,-1,597,1486,1532,-1,489,483,948,-1,484,483,489,-1,661,465,464,-1,914,465,661,-1,1456,439,758,-1,1456,817,439,-1,663,915,661,-1,1507,915,663,-1,960,1499,488,-1,960,925,1499,-1,1533,446,702,-1,1533,1566,446,-1,729,635,924,-1,635,729,709,-1,717,490,718,-1,926,490,717,-1,648,713,1535,-1,648,714,713,-1,719,634,636,-1,640,634,719,-1,449,1311,712,-1,830,1311,449,-1,574,932,991,-1,1534,932,574,-1,649,1535,682,-1,649,648,1535,-1,1521,868,499,-1,868,1521,962,-1,995,945,944,-1,995,994,945,-1,1539,1536,1502,-1,1539,1570,1536,-1,1570,1021,1536,-1,1570,1546,1021,-1,955,1006,510,-1,954,1006,955,-1,793,871,870,-1,425,871,793,-1,1568,866,959,-1,1568,867,866,-1,1537,1422,1424,-1,1569,1422,1537,-1,1490,965,762,-1,1490,966,965,-1,677,1571,1517,-1,1571,677,1492,-1,1515,966,1514,-1,1515,632,966,-1,940,1303,968,-1,940,629,1303,-1,563,744,1315,-1,563,562,744,-1,887,614,617,-1,614,887,615,-1,909,609,910,-1,909,1511,609,-1,1510,979,1301,-1,1510,1532,979,-1,889,983,769,-1,889,1313,983,-1,1330,979,755,-1,1330,883,979,-1,740,599,880,-1,740,739,599,-1,985,1316,986,-1,985,1333,1316,-1,1323,780,832,-1,1323,987,780,-1,1525,1318,580,-1,1318,1525,833,-1,827,1433,1534,-1,1433,827,988,-1,1485,591,989,-1,591,1485,984,-1,1299,576,989,-1,576,1299,695,-1,572,571,690,-1,572,688,571,-1,1296,567,569,-1,1296,906,567,-1,569,992,1296,-1,569,743,992,-1,1315,993,1334,-1,1315,1310,993,-1,826,1503,753,-1,1503,826,838,-1,747,694,693,-1,747,1294,694,-1,1474,1540,1480,-1,540,1540,1474,-1,1477,1479,772,-1,1477,1478,1479,-1,1476,997,1541,-1,997,1476,548,-1,997,544,1475,-1,997,546,544,-1,902,1002,523,-1,1002,902,1003,-1,1002,1348,1471,-1,1002,1004,1348,-1,480,530,1014,-1,480,1472,530,-1,1025,654,1292,-1,654,1025,431,-1,855,1291,1465,-1,855,808,1291,-1,1462,1446,1467,-1,1462,1543,1446,-1,1015,1291,1005,-1,1015,507,1291,-1,1075,1007,1006,-1,1542,1007,1075,-1,1005,1016,1015,-1,1005,816,1016,-1,494,1461,492,-1,660,1461,494,-1,493,852,851,-1,852,493,1289,-1,1529,1012,878,-1,1529,1288,1012,-1,1443,1287,1014,-1,1443,1565,1287,-1,460,508,1286,-1,460,1010,508,-1,759,849,1506,-1,759,1290,849,-1,469,1545,1528,-1,1545,469,1328,-1,1459,1341,1522,-1,950,1341,1459,-1,444,949,1305,-1,444,1351,949,-1,1022,1020,1284,-1,1022,1523,1020,-1,1022,1546,1458,-1,1022,1021,1546,-1,917,1500,665,-1,1500,917,916,-1,758,700,1456,-1,758,757,700,-1,1306,1481,1504,-1,1481,1306,945,-1,1319,792,789,-1,643,792,1319,-1,90,1198,84,-1,90,89,1198,-1,1419,1423,1418,-1,1419,1552,1423,-1,1035,1547,47,-1,208,1547,1035,-1,242,143,1037,-1,242,241,143,-1,186,1557,1048,-1,1557,186,185,-1,44,1453,396,-1,1380,1453,44,-1,248,41,40,-1,248,247,41,-1,1184,1062,1164,-1,1184,1183,1062,-1,1368,1049,1135,-1,1049,1368,1448,-1,134,1560,1396,-1,134,1561,1560,-1,1053,49,1054,-1,1185,49,1053,-1,371,1046,372,-1,1046,371,1057,-1,1441,1059,1562,-1,1441,352,1059,-1,1241,1196,1393,-1,1241,1243,1196,-1,1355,1067,1066,-1,1067,1355,1447,-1,389,366,1056,-1,389,388,366,-1,1273,1543,1542,-1,1273,1076,1543,-1,1445,1077,363,-1,1077,1445,1076,-1,269,1356,272,-1,269,138,1356,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getc6_Geo_5_79_coordIndex_13()
		{
			int[] value = {252,1078,1033,-1,252,254,1078,-1,1548,1381,1378,-1,1381,1548,1473,-1,1247,350,1246,-1,1247,1044,350,-1,348,1442,1439,-1,1442,348,353,-1,1438,1444,349,-1,1438,1548,1444,-1,1408,1191,1271,-1,1272,1191,1408,-1,1358,1437,337,-1,334,1437,1358,-1,1086,1190,113,-1,333,1190,1086,-1,326,153,152,-1,153,326,1436,-1,1415,417,1222,-1,1415,418,417,-1,150,217,1090,-1,150,215,217,-1,222,427,1483,-1,221,427,222,-1,1256,1095,1092,-1,1095,1256,1268,-1,1484,1370,1249,-1,1484,936,1370,-1,1435,1267,1362,-1,1096,1267,1435,-1,1266,1098,1227,-1,1099,1098,1266,-1,1096,213,1090,-1,1096,1105,213,-1,1248,1104,307,-1,1104,1248,1182,-1,304,164,301,-1,164,304,165,-1,1112,146,145,-1,146,1112,1114,-1,1109,126,125,-1,1175,126,1109,-1,1112,1409,1265,-1,1551,1409,1112,-1,1108,1177,294,-1,1407,1177,1108,-1,124,79,78,-1,124,1110,79,-1,157,1269,1249,-1,159,1269,157,-1,1430,1144,1401,-1,276,1144,1430,-1,1122,1402,1399,-1,1402,1122,1121,-1,1388,233,1398,-1,1388,1425,233,-1,1123,1377,137,-1,1377,1123,1122,-1,1420,1391,1559,-1,1418,1391,1420,-1,1162,198,1209,-1,198,1162,187,-1,422,85,1204,-1,422,421,85,-1,367,1131,368,-1,367,1074,1131,-1,397,1564,1553,-1,1564,397,1452,-1,1553,1552,1419,-1,1552,1553,1564,-1,1141,325,1139,-1,325,1141,326,-1,281,38,277,-1,281,1212,38,-1,391,1145,387,-1,1145,391,1055,-1,1257,1449,1353,-1,1449,1257,1146,-1,1157,1147,1257,-1,261,1147,1157,-1,159,323,1149,-1,159,158,323,-1,223,220,1029,-1,223,320,220,-1,1153,316,1550,-1,1153,1434,316,-1,1252,16,196,-1,1252,17,16,-1,1218,64,63,-1,405,64,1218,-1,183,261,1157,-1,261,183,1163,-1,11,175,1160,-1,11,10,175,-1,205,1555,181,-1,1557,1555,205,-1,1395,30,1063,-1,1158,30,1395,-1,1159,1211,65,-1,1159,1240,1211,-1,408,1547,409,-1,1171,1547,408,-1,1047,251,91,-1,1047,404,251,-1,1062,1064,1133,-1,1062,381,1064,-1,303,1432,304,-1,303,1551,1432,-1,1366,1179,1178,-1,1366,296,1179,-1,1111,1431,290,-1,1111,1403,1431,-1,936,1129,162,-1,957,1129,936,-1,1070,1389,1554,-1,1389,1070,1412,-1,1426,1143,34,-1,1426,1144,1143,-1,1051,1396,1560,-1,1051,1186,1396,-1,328,235,413,-1,236,235,328,-1,1558,1031,1392,-1,237,1031,1558,-1,259,291,260,-1,259,292,291,-1,1549,1114,1190,-1,146,1114,1549,-1,1373,1558,104,-1,1373,132,1558,-1,302,1263,284,-1,302,1115,1263,-1,1197,1262,79,-1,1119,1262,1197,-1,1395,383,1203,-1,1395,1063,383,-1,1211,1069,68,-1,1201,1069,1211,-1,1559,54,1215,-1,1559,136,54,-1,1425,1413,1374,-1,1412,1413,1425,-1,281,1357,365,-1,281,283,1357,-1,413,416,328,-1,413,1258,416,-1,1277,1450,1278,-1,1277,1385,1450,-1,1356,1166,228,-1,1356,1216,1166,-1,1455,1562,1259,-1,1565,1562,1455,-1,1058,41,247,-1,1058,1280,41,-1,231,34,1143,-1,231,35,34,-1,1383,1556,1448,-1,1383,1561,1556,-1,841,1222,417,-1,1222,841,1234,-1,1098,1376,1230,-1,1376,1098,1097,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc6_Geo_5_79_normalIndex_1()
		{
			int[] value = {1521,1572,1321,-1,1026,1202,1544,-1,895,907,749,-1,204,952,1116,-1,126,364,27,-1,1301,1303,1351,-1,264,515,58,-1,63,237,252,-1,1221,1196,1401,-1,177,771,776,-1,1116,671,936,-1,1116,938,671,-1,193,243,153,-1,203,385,454,-1,385,203,205,-1,803,668,532,-1,941,768,1074,-1,1306,1148,1177,-1,889,1198,996,-1,186,239,351,-1,290,84,358,-1,1043,358,194,-1,27,307,922,-1,1512,1510,1181,-1,1365,1292,1346,-1,1088,1292,1365,-1,1142,652,1373,-1,1569,1442,1265,-1,509,477,389,-1,1466,1556,1457,-1,1248,1518,1163,-1,1084,1163,1340,-1,1281,1450,1553,-1,1164,1228,1050,-1,1325,1092,1079,-1,1275,1511,1277,-1,1549,1454,1384,-1,185,90,203,-1,1014,226,922,-1,420,210,247,-1,1434,1356,1290,-1,1290,1150,1434,-1,1075,993,1514,-1,1434,1487,1356,-1,631,1475,1240,-1,569,315,573,-1,1225,1273,1354,-1,1366,1153,1511,-1,694,183,255,-1,305,27,364,-1,210,130,99,-1,321,267,382,-1,351,468,412,-1,1425,1285,1414,-1,1239,1339,1276,-1,644,1037,994,-1,277,316,261,-1,348,316,177,-1,164,142,176,-1,213,151,184,-1,433,1293,340,-1,1209,1190,546,-1,1199,918,859,-1,900,1071,975,-1,1356,1235,1290,-1,1405,1339,1424,-1,1276,1339,1405,-1,42,160,204,-1,1517,1481,1510,-1,291,161,514,-1,405,217,388,-1,553,963,874,-1,1301,1032,347,-1,1069,923,445,-1,174,270,75,-1,1047,963,553,-1,1539,1558,1415,-1,762,270,174,-1,1274,481,716,-1,1306,1138,1512,-1,217,74,175,-1,217,251,421,-1,965,1226,1243,-1,1101,1383,1209,-1,1401,1196,1326,-1,218,688,404,-1,375,266,982,-1,1559,1438,1476,-1,733,435,1269,-1,1217,1537,1293,-1,1467,1508,1530,-1,89,90,290,-1,205,105,167,-1,230,137,186,-1,83,17,53,-1,72,64,34,-1,829,1007,1260,-1,660,572,699,-1,1501,1387,1231,-1,25,443,401,-1,274,314,234,-1,214,378,255,-1,77,183,126,-1,286,678,330,-1,1124,1246,1157,-1,1325,1404,1420,-1,1248,1163,1281,-1,752,498,751,-1,1274,716,1116,-1,1324,817,1187,-1,1308,817,1324,-1,661,778,775,-1,612,692,454,-1,637,745,746,-1,657,643,669,-1,1134,1225,1242,-1,1312,1452,1304,-1,1225,1466,1242,-1,958,1354,928,-1,737,969,1096,-1,1117,694,766,-1,1238,305,565,-1,1041,1264,1255,-1,1005,1045,1134,-1,1220,1000,1207,-1,1073,1318,1218,-1,1439,1480,1411,-1,1419,1316,1429,-1,1135,982,266,-1,1559,1456,1401,-1,674,1355,266,-1,1566,1476,1500,-1,1500,1533,1542,-1,1269,1328,1532,-1,266,749,674,-1,111,119,142,-1,51,53,65,-1,557,599,633,-1,562,575,623,-1,686,698,562,-1,656,681,810,-1,681,888,968,-1,590,496,611,-1,1536,1562,1554,-1,863,896,827,-1,677,712,696,-1,594,532,475,-1,820,343,731,-1,77,23,52,-1,1043,1305,1180,-1,1172,1286,1121,-1,1315,1305,1286,-1,761,925,1023,-1,1193,1174,1344,-1,1508,1467,1377,-1,636,525,1088,-1,1275,617,1107,-1,381,383,477,-1,762,1156,1571,-1,646,508,1079,-1,1534,1486,1548,-1,1272,1205,1279,-1,1253,1030,1272,-1,1536,1477,1284,-1,1074,1342,1320,-1,660,659,603,-1,1440,1534,1501,-1,1085,1437,1529,-1,1018,326,462,-1,361,494,1181,-1,515,829,547,-1,807,1089,559,-1,1148,1049,1177,-1,83,58,547,-1,46,47,17,-1,107,82,56,-1,420,537,368,-1,608,829,699,-1,890,974,880,-1,315,625,644,-1,461,598,484,-1,931,907,816,-1,1538,1540,1552,-1,1498,1555,1468,-1,250,406,152,-1,1011,770,830,-1,583,339,280,-1,452,1322,1149,-1,1065,249,285,-1,313,196,123,-1,223,253,570,-1,253,522,570,-1,254,689,336,-1,101,21,172,-1,346,523,478,-1,1106,1229,1111,-1,1251,563,976,-1,838,1165,1267,-1,837,946,1161,-1,301,39,101,-1,929,934,722,-1,30,3,146,-1,1066,511,909,-1,3,6,337,-1,1176,1166,1154,-1,1120,1166,1176,-1,1176,1098,813,-1,197,62,300,-1,100,216,209,-1,402,387,438,-1,296,259,302,-1,413,680,554,-1,195,402,263,-1,268,248,44,-1,1413,1493,1403,-1,821,742,1233,-1,689,726,898,-1,765,940,1013,-1,858,914,856,-1,165,956,653,-1,10,9,98,-1,68,60,79,-1,933,984,1072,-1,418,653,673,-1,987,884,1572,-1,759,808,875,-1,966,500,1015,-1,1337,1302,1249,-1,1155,1378,632,-1,1309,767,815,-1,1234,1407,1210,-1,94,31,40,-1,31,188,78,-1,4,31,87,-1,215,895,1309,-1,169,118,12,-1,127,48,76,-1,371,434,446,-1,170,122,149,-1,257,246,311,-1,170,149,279,-1,134,158,96,-1,256,497,356,-1,372,487,279,-1,353,369,571,-1,549,430,416,-1,318,531,499,-1,334,457,1026,-1,899,518,804,-1,833,540,479,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc6_Geo_5_79_normalIndex_2()
		{
			int[] value = {212,129,610,-1,88,349,329,-1,124,97,262,-1,416,430,329,-1,881,932,844,-1,962,951,746,-1,1119,954,1186,-1,901,885,775,-1,728,263,402,-1,299,458,842,-1,1055,1021,706,-1,299,502,190,-1,325,287,419,-1,265,201,154,-1,451,439,429,-1,1289,1241,882,-1,1493,1547,1447,-1,1278,1358,1403,-1,1299,1336,1259,-1,1173,1550,1408,-1,156,21,71,-1,865,910,577,-1,744,313,567,-1,1499,1540,1538,-1,1513,1519,1498,-1,932,1119,1022,-1,1343,1386,1436,-1,1282,1484,1485,-1,44,62,100,-1,470,386,181,-1,357,282,35,-1,1234,244,282,-1,87,133,12,-1,94,304,328,-1,1197,591,1309,-1,1378,1410,1170,-1,169,245,376,-1,188,391,472,-1,604,406,327,-1,1149,1352,1189,-1,1397,1352,1322,-1,148,36,33,-1,504,250,495,-1,458,647,1372,-1,15,33,168,-1,622,539,527,-1,1496,1331,1416,-1,502,1090,1129,-1,249,1229,541,-1,622,959,655,-1,1169,959,1189,-1,1280,1059,1406,-1,80,85,54,-1,1550,583,1280,-1,208,293,187,-1,140,148,208,-1,219,280,339,-1,597,663,819,-1,372,710,697,-1,367,1027,384,-1,1140,1234,282,-1,1431,1399,1369,-1,1378,1393,1435,-1,1227,1394,1257,-1,1295,1298,1257,-1,536,497,919,-1,293,333,486,-1,155,139,45,-1,1160,1223,1343,-1,1251,976,1191,-1,1359,1473,1443,-1,1388,899,804,-1,202,59,298,-1,1337,995,1256,-1,1337,1002,995,-1,79,345,98,-1,1046,1323,1151,-1,1360,543,627,-1,1395,1367,1484,-1,13,24,166,-1,265,511,651,-1,407,409,1130,-1,287,20,102,-1,484,233,419,-1,1098,685,813,-1,2,20,308,-1,79,98,9,-1,209,283,485,-1,145,26,95,-1,24,359,166,-1,394,80,54,-1,1058,1513,1025,-1,1195,1544,1445,-1,528,1363,1488,-1,1224,1488,1282,-1,1333,1258,1386,-1,744,1025,961,-1,645,578,387,-1,505,524,830,-1,231,156,723,-1,822,1010,1013,-1,1395,1119,1186,-1,1186,1367,1395,-1,1381,1418,1330,-1,771,1262,1394,-1,169,371,332,-1,1491,1321,1337,-1,1058,1011,1310,-1,249,220,285,-1,148,140,136,-1,149,158,372,-1,197,216,100,-1,516,393,224,-1,516,1323,1046,-1,501,788,790,-1,1132,1262,771,-1,921,1035,773,-1,528,1022,1363,-1,223,228,253,-1,722,424,231,-1,535,522,253,-1,350,638,1044,-1,418,524,399,-1,645,387,195,-1,121,49,95,-1,548,465,166,-1,1031,1223,1055,-1,331,539,451,-1,442,932,1022,-1,1270,311,324,-1,324,311,466,-1,744,1011,1058,-1,295,114,166,-1,1012,444,395,-1,510,283,216,-1,121,26,5,-1,709,469,476,-1,192,297,711,-1,131,308,1056,-1,1098,1188,1012,-1,1120,924,1048,-1,325,308,20,-1,1056,308,441,-1,419,287,484,-1,346,201,265,-1,13,114,59,-1,166,359,1184,-1,73,409,102,-1,580,487,697,-1,639,715,501,-1,500,966,79,-1,417,702,584,-1,98,165,92,-1,875,1321,1572,-1,311,246,466,-1,202,129,16,-1,882,601,426,-1,899,1388,1202,-1,804,1278,1311,-1,1294,1341,1178,-1,148,333,208,-1,1244,1076,1422,-1,154,503,69,-1,235,162,146,-1,628,842,458,-1,700,570,522,-1,1249,1302,945,-1,1257,1298,1155,-1,1227,1197,1396,-1,1155,1298,1393,-1,41,40,11,-1,886,1027,472,-1,663,670,819,-1,457,473,456,-1,479,463,586,-1,479,540,463,-1,219,339,303,-1,1244,1109,1214,-1,1173,1214,1109,-1,327,148,350,-1,187,182,138,-1,406,604,394,-1,1173,523,407,-1,1130,409,303,-1,432,57,110,-1,1528,1550,1280,-1,495,54,57,-1,49,100,145,-1,1322,452,354,-1,331,527,539,-1,1331,1496,1129,-1,190,143,15,-1,198,57,85,-1,1215,1528,1188,-1,842,703,1090,-1,337,180,1009,-1,132,91,331,-1,331,429,132,-1,583,504,495,-1,54,250,152,-1,36,285,168,-1,1497,1397,1422,-1,1044,638,1129,-1,250,504,399,-1,338,785,391,-1,328,304,816,-1,12,133,117,-1,1200,1027,792,-1,1146,304,244,-1,282,357,1140,-1,764,268,841,-1,578,946,837,-1,1186,954,1091,-1,1094,1498,1417,-1,1509,1515,1446,-1,1538,1535,1516,-1,744,577,313,-1,196,228,223,-1,28,492,288,-1,837,1191,976,-1,189,320,563,-1,913,809,593,-1,20,1,73,-1,886,785,791,-1,1403,1493,1311,-1,192,8,297,-1,439,821,429,-1,162,235,511,-1,1031,823,709,-1,893,909,628,-1,1478,1491,1431,-1,1224,402,528,-1,476,871,1017,-1,930,901,778,-1,972,998,885,-1,1449,1381,1343,-1,926,877,847,-1,854,844,951,-1,691,448,1249,-1,7,1,24,-1,18,22,113,-1,670,663,587,-1,362,417,236,-1,642,626,212,-1,568,610,129,-1,833,804,518,-1,334,1270,324,-1,497,945,919,-1,246,279,487,-1,70,178,173,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc6_Geo_5_79_normalIndex_3()
		{
			int[] value = {246,257,227,-1,1195,1270,1544,-1,743,332,371,-1,122,116,96,-1,591,632,147,-1,328,907,895,-1,103,188,4,-1,11,35,41,-1,1027,1200,519,-1,35,11,763,-1,244,35,282,-1,767,895,749,-1,1435,1455,1462,-1,1507,1519,1521,-1,905,808,759,-1,1310,987,1521,-1,602,884,987,-1,984,653,956,-1,10,222,37,-1,649,658,605,-1,649,729,658,-1,1013,1010,898,-1,470,838,742,-1,528,438,396,-1,708,666,554,-1,593,413,344,-1,400,241,413,-1,62,197,100,-1,1048,924,485,-1,949,295,465,-1,1203,1098,1176,-1,3,337,703,-1,511,1066,917,-1,978,934,929,-1,370,507,301,-1,449,1165,838,-1,181,544,180,-1,320,39,301,-1,303,37,222,-1,336,740,822,-1,513,253,228,-1,910,970,902,-1,39,138,71,-1,563,36,136,-1,1109,1244,556,-1,1214,394,1076,-1,1058,1025,744,-1,486,1011,293,-1,422,399,524,-1,1498,1025,1513,-1,1526,1555,1525,-1,1478,1516,1482,-1,961,1042,865,-1,1256,919,945,-1,1084,974,1092,-1,907,931,1168,-1,19,32,34,-1,128,106,17,-1,1306,1421,1167,-1,807,559,264,-1,1400,1392,1276,-1,965,1181,494,-1,990,1138,1290,-1,1123,825,421,-1,1301,480,1085,-1,1451,1260,1392,-1,1342,660,983,-1,872,1319,1231,-1,1486,1382,1548,-1,1097,1050,1228,-1,467,460,347,-1,321,596,1085,-1,306,408,731,-1,410,620,734,-1,1272,1486,1534,-1,1486,1287,1344,-1,1204,1300,1382,-1,718,712,561,-1,1426,1571,1541,-1,508,648,1079,-1,1564,1571,1385,-1,381,423,390,-1,383,390,455,-1,755,477,383,-1,1377,1271,1508,-1,1467,1353,1346,-1,1187,1133,1198,-1,1287,1315,1268,-1,1174,1193,1023,-1,732,761,693,-1,911,1023,1112,-1,157,163,77,-1,343,820,850,-1,872,532,594,-1,594,827,872,-1,696,863,594,-1,1150,906,1434,-1,1350,1475,1562,-1,633,599,496,-1,1150,968,888,-1,681,588,0,-1,810,0,690,-1,595,633,623,-1,557,1075,631,-1,237,323,273,-1,355,927,688,-1,171,815,767,-1,674,749,907,-1,1537,1532,1328,-1,806,1537,1217,-1,546,1054,374,-1,1560,1532,1537,-1,1168,674,907,-1,982,1427,927,-1,1334,1348,1459,-1,1247,743,754,-1,1327,1316,1419,-1,1502,1398,1391,-1,1087,1252,1316,-1,1264,305,1238,-1,1020,766,737,-1,1004,1444,958,-1,979,928,1273,-1,1213,1338,1152,-1,988,900,894,-1,1554,1479,1457,-1,1549,1570,1567,-1,669,641,637,-1,669,643,641,-1,679,574,600,-1,778,661,634,-1,490,600,412,-1,1187,358,1043,-1,82,141,63,-1,861,751,498,-1,1404,1079,1335,-1,820,1157,850,-1,676,791,785,-1,1570,1450,1477,-1,732,870,967,-1,1371,1437,1085,-1,734,1030,596,-1,1545,1288,1078,-1,1379,1451,1349,-1,983,699,829,-1,34,50,56,-1,61,135,120,-1,83,735,128,-1,385,284,482,-1,996,1064,734,-1,820,1113,1115,-1,433,352,1217,-1,435,366,1328,-1,374,792,546,-1,1458,1559,1523,-1,1168,733,1269,-1,785,786,1236,-1,1177,1290,1138,-1,529,445,923,-1,150,74,75,-1,1303,1529,1539,-1,1512,1421,1306,-1,990,291,1086,-1,1122,874,963,-1,1385,1156,174,-1,762,716,270,-1,42,360,389,-1,1464,1376,1517,-1,1433,1412,1539,-1,270,445,75,-1,1246,1034,1047,-1,1219,1123,251,-1,1428,1467,1524,-1,1517,1512,1086,-1,42,161,291,-1,1464,1517,1141,-1,1284,1175,443,-1,1164,1050,401,-1,1181,965,1167,-1,1400,1389,1371,-1,845,1067,807,-1,401,462,361,-1,1490,1123,1219,-1,1487,1350,1356,-1,1096,1108,1033,-1,1096,1016,989,-1,1100,1125,1118,-1,900,750,894,-1,676,1101,546,-1,1532,1560,1533,-1,171,375,348,-1,355,261,316,-1,625,273,323,-1,1114,1398,1127,-1,1276,1007,559,-1,938,1116,716,-1,1404,1335,1426,-1,1420,1503,1068,-1,494,326,150,-1,398,232,281,-1,126,183,364,-1,1277,1153,969,-1,1366,1511,1556,-1,1263,1105,1316,-1,0,51,252,-1,1240,1475,1487,-1,1338,993,846,-1,1075,1514,1489,-1,920,1162,1070,-1,1087,1045,1005,-1,1450,1175,1284,-1,1384,1024,392,-1,1561,1556,1511,-1,1228,1092,1325,-1,1163,1084,1179,-1,1265,488,579,-1,1265,1142,1248,-1,455,274,525,-1,477,878,560,-1,1265,1442,488,-1,579,483,508,-1,1475,1350,1487,-1,1245,1373,652,-1,1104,861,1110,-1,1441,1568,1546,-1,1292,1062,1346,-1,560,878,1182,-1,77,52,157,-1,1105,1263,1264,-1,307,1263,1327,-1,307,305,1264,-1,551,1121,1043,-1,1246,1124,1034,-1,506,868,735,-1,498,752,521,-1,1495,1474,1524,-1,1198,889,1285,-1,705,1481,952,-1,1177,1049,1150,-1,1053,1074,1320,-1,872,803,532,-1,1382,1486,1344,-1,1546,1274,1428,-1,773,537,640,-1,771,310,440,-1,790,788,1070,-1,783,781,727,-1,1061,920,247,-1,1061,1390,1348,-1,1377,1467,1346,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc6_Geo_5_79_normalIndex_4()
		{
			int[] value = {1429,1252,1199,-1,1424,1529,1437,-1,565,364,183,-1,1284,1235,1356,-1,552,489,521,-1,1572,1521,987,-1,1031,706,1021,-1,1447,1202,1388,-1,92,219,222,-1,1021,823,1031,-1,521,752,552,-1,1284,1356,1350,-1,694,565,183,-1,1424,1437,1405,-1,1429,1199,1411,-1,237,273,315,-1,1348,1183,1061,-1,920,526,247,-1,727,852,783,-1,1070,1128,790,-1,440,772,771,-1,640,782,773,-1,1043,194,551,-1,1349,1320,1342,-1,1320,1051,1053,-1,529,923,1226,-1,1290,1177,1150,-1,1049,968,1150,-1,705,1510,1481,-1,1285,1368,1198,-1,1495,1441,1474,-1,1024,1384,1107,-1,521,550,498,-1,506,618,868,-1,551,657,1121,-1,307,1264,1263,-1,307,1327,922,-1,1105,1264,1041,-1,829,515,559,-1,1275,1384,1454,-1,560,1182,1131,-1,1062,1377,1346,-1,1546,1474,1441,-1,1110,1377,1104,-1,652,880,1245,-1,579,508,646,-1,1570,1569,1553,-1,1442,736,488,-1,560,389,477,-1,525,636,455,-1,1248,1553,1265,-1,1265,579,1142,-1,1281,1163,1179,-1,1228,1325,1370,-1,1511,1454,1561,-1,392,1216,1384,-1,1284,1477,1450,-1,1373,1565,1142,-1,1005,918,1087,-1,920,1070,852,-1,1489,631,1075,-1,846,1152,1338,-1,1240,1487,1434,-1,573,315,644,-1,1444,1366,1556,-1,678,1277,969,-1,766,255,378,-1,398,281,606,-1,1424,1339,1239,-1,150,529,494,-1,1068,1018,1420,-1,1426,1503,1404,-1,716,762,938,-1,862,1051,1003,-1,323,876,625,-1,316,348,355,-1,348,177,171,-1,218,176,261,-1,261,355,218,-1,200,352,433,-1,1209,1492,1190,-1,1118,1117,1100,-1,989,1108,1096,-1,958,843,1004,-1,494,361,326,-1,361,462,326,-1,1400,1371,1440,-1,1167,1421,1181,-1,401,443,1164,-1,443,990,1284,-1,1464,1141,1131,-1,25,42,291,-1,1086,1141,1517,-1,1524,1474,1428,-1,251,175,1219,-1,1047,1362,1246,-1,270,481,445,-1,1412,1558,1539,-1,1376,1481,1517,-1,389,161,42,-1,716,481,270,-1,174,609,1385,-1,1122,1029,874,-1,1086,1138,990,-1,1539,1415,1303,-1,150,175,74,-1,1138,1306,1177,-1,1236,1185,785,-1,1458,1438,1559,-1,435,1328,1269,-1,1217,1293,433,-1,992,374,1054,-1,1113,1208,1115,-1,996,734,620,-1,482,612,385,-1,1425,1368,1285,-1,83,506,735,-1,61,64,135,-1,34,56,38,-1,829,1260,983,-1,1379,1349,1342,-1,1490,1545,1078,-1,596,382,734,-1,1085,1253,1371,-1,732,814,870,-1,1570,1553,1450,-1,1383,1492,1209,-1,77,255,183,-1,77,163,255,-1,1373,1245,1565,-1,820,1115,1157,-1,1404,1325,1079,-1,498,550,861,-1,671,938,648,-1,82,107,141,-1,1043,1133,1187,-1,490,412,468,-1,778,634,780,-1,600,661,679,-1,125,230,193,-1,90,84,290,-1,876,323,1127,-1,1549,1567,1561,-1,1551,1554,1457,-1,894,1143,988,-1,1327,1014,922,-1,1327,1357,1014,-1,1213,1332,1338,-1,928,1354,1273,-1,1004,1366,1444,-1,1020,737,1033,-1,1238,1255,1264,-1,1073,644,625,-1,1087,1316,1105,-1,1502,1439,1398,-1,1327,1419,1357,-1,307,27,305,-1,1247,754,1221,-1,1453,1480,1459,-1,982,1430,1427,-1,1168,1355,674,-1,1533,1492,1542,-1,1532,1500,1269,-1,1531,992,1054,-1,806,1560,1537,-1,1328,1293,1537,-1,435,159,366,-1,266,171,767,-1,355,348,927,-1,688,218,355,-1,1114,404,688,-1,237,151,323,-1,557,631,599,-1,595,623,575,-1,810,690,760,-1,681,0,810,-1,1150,888,906,-1,633,496,590,-1,1504,1489,1514,-1,1475,1563,1562,-1,906,611,1434,-1,696,594,677,-1,677,475,561,-1,862,1053,1051,-1,343,850,281,-1,157,234,163,-1,911,879,1023,-1,732,693,704,-1,1174,1023,925,-1,1287,1268,1193,-1,1198,1368,1187,-1,1353,1365,1346,-1,1377,1110,1271,-1,383,636,755,-1,455,636,383,-1,383,381,390,-1,1571,1156,1385,-1,1541,1503,1426,-1,718,561,664,-1,1204,1082,1300,-1,1486,1279,1287,-1,734,382,410,-1,731,343,306,-1,566,1361,1126,-1,1085,480,321,-1,1370,1097,1228,-1,475,668,654,-1,1231,803,872,-1,1342,912,660,-1,1451,1379,1260,-1,1085,1303,1301,-1,421,251,1123,-1,1290,1235,990,-1,1400,1276,1389,-1,845,807,264,-1,1167,1148,1306,-1,128,17,83,-1,19,34,38,-1,931,733,1168,-1,1340,1163,1518,-1,1092,1228,1084,-1,865,744,961,-1,1478,1522,1516,-1,1526,1468,1555,-1,1498,1094,1025,-1,486,770,1011,-1,567,313,293,-1,313,191,293,-1,478,1109,556,-1,563,285,36,-1,71,21,39,-1,196,313,577,-1,902,667,910,-1,228,667,513,-1,336,822,156,-1,303,73,37,-1,542,320,301,-1,301,294,370,-1,39,21,101,-1,978,980,934,-1,917,651,511,-1,3,703,146,-1,1203,1137,1098,-1,166,465,295,-1,465,1099,949,-1,924,813,485,-1,197,469,510,-1,86,155,45,-1,400,302,241,-1,593,680,413,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc6_Geo_5_79_normalIndex_5()
		{
			int[] value = {554,680,708,-1,396,271,528,-1,1493,1520,1547,-1,838,1233,742,-1,898,765,1013,-1,37,18,10,-1,956,1072,984,-1,602,673,884,-1,905,759,884,-1,1507,1521,1470,-1,1249,448,1060,-1,1462,1409,1435,-1,767,1309,895,-1,1146,1210,1407,-1,244,41,35,-1,763,357,35,-1,43,519,582,-1,41,304,94,-1,40,31,78,-1,188,31,4,-1,895,215,328,-1,147,144,591,-1,238,116,224,-1,743,371,754,-1,246,227,170,-1,173,134,70,-1,487,466,246,-1,334,324,318,-1,518,540,833,-1,129,202,568,-1,626,292,212,-1,236,240,362,-1,670,587,431,-1,18,113,97,-1,24,13,7,-1,854,951,962,-1,1484,1282,1488,-1,926,960,877,-1,972,885,901,-1,778,780,930,-1,1017,709,476,-1,402,438,528,-1,1478,1482,1491,-1,1031,709,1017,-1,511,265,162,-1,439,742,821,-1,1493,1388,1311,-1,188,367,78,-1,20,73,102,-1,913,593,682,-1,189,563,136,-1,542,837,976,-1,81,492,28,-1,223,123,196,-1,744,865,577,-1,1516,1522,1538,-1,1509,1446,1423,-1,1094,1417,860,-1,139,278,195,-1,1186,1091,1291,-1,837,507,578,-1,764,248,268,-1,582,519,1200,-1,357,1222,1140,-1,244,1210,1146,-1,117,48,12,-1,338,786,785,-1,504,280,399,-1,1422,1496,1497,-1,36,168,33,-1,583,495,1280,-1,1009,1416,337,-1,703,1331,1090,-1,1528,1406,1188,-1,198,110,57,-1,143,33,15,-1,1129,1090,1331,-1,331,206,527,-1,1397,1322,354,-1,49,145,95,-1,432,495,57,-1,1528,1280,1406,-1,110,444,432,-1,1130,303,583,-1,1173,407,1130,-1,152,406,394,-1,187,138,189,-1,830,770,505,-1,327,333,148,-1,1214,1076,1244,-1,81,354,452,-1,219,303,222,-1,610,568,724,-1,479,586,558,-1,457,450,473,-1,367,384,78,-1,1374,1140,1222,-1,1378,1155,1393,-1,1227,1396,1394,-1,1227,1257,1155,-1,1249,945,691,-1,459,448,173,-1,293,1011,567,-1,628,703,842,-1,162,69,146,-1,154,556,503,-1,1076,1044,1422,-1,1178,964,1294,-1,899,1202,1026,-1,426,298,882,-1,16,59,202,-1,995,919,1256,-1,98,345,165,-1,236,417,584,-1,500,79,60,-1,501,411,639,-1,580,549,487,-1,192,441,8,-1,73,303,409,-1,166,1184,548,-1,13,59,16,-1,265,461,346,-1,287,377,484,-1,441,985,1056,-1,325,441,308,-1,1120,1048,1299,-1,1098,1012,685,-1,131,1056,836,-1,1,20,2,-1,98,92,222,-1,711,939,192,-1,469,197,476,-1,121,95,26,-1,216,197,510,-1,685,1012,395,-1,1493,1413,1520,-1,466,531,324,-1,1270,1195,311,-1,1022,528,442,-1,706,1031,1055,-1,121,86,49,-1,195,278,645,-1,399,280,418,-1,418,602,524,-1,535,253,513,-1,231,723,722,-1,689,1010,740,-1,172,241,101,-1,26,145,299,-1,921,773,782,-1,1132,771,772,-1,501,790,446,-1,639,516,1046,-1,516,224,179,-1,1337,1256,1302,-1,372,279,149,-1,136,36,148,-1,1310,1513,1058,-1,1321,1470,1521,-1,100,221,145,-1,487,549,466,-1,169,376,371,-1,1394,776,771,-1,6,14,180,-1,101,294,301,-1,1186,1364,1367,-1,822,740,1010,-1,156,822,723,-1,250,399,422,-1,645,946,578,-1,1386,1223,1333,-1,728,1224,1282,-1,1488,1224,528,-1,1195,1445,627,-1,54,152,394,-1,209,216,283,-1,209,485,395,-1,441,192,939,-1,131,2,308,-1,325,419,55,-1,484,598,233,-1,287,325,20,-1,407,523,346,-1,651,461,265,-1,13,166,114,-1,131,836,359,-1,1360,627,1445,-1,1323,1359,1151,-1,165,219,92,-1,79,966,345,-1,987,1310,830,-1,298,426,202,-1,1311,1388,804,-1,1202,1447,1544,-1,1191,1307,1251,-1,1160,1103,1223,-1,155,278,139,-1,293,208,333,-1,154,69,162,-1,919,581,536,-1,567,1011,744,-1,1302,1256,945,-1,1309,1396,1197,-1,1410,1378,1435,-1,1369,1409,1431,-1,519,384,1027,-1,367,472,1027,-1,357,763,1222,-1,597,499,663,-1,568,558,586,-1,583,303,339,-1,208,187,140,-1,407,377,409,-1,1550,1130,583,-1,85,57,54,-1,1497,1169,1352,-1,1189,1352,1169,-1,622,1039,959,-1,249,1065,1229,-1,502,1129,638,-1,1416,1497,1496,-1,527,1039,622,-1,15,168,91,-1,630,458,1372,-1,250,54,495,-1,148,33,143,-1,1397,1497,1352,-1,1149,1322,1352,-1,350,604,327,-1,472,367,188,-1,1378,1170,916,-1,1283,1200,792,-1,328,87,94,-1,87,12,4,-1,816,304,1146,-1,1234,1210,244,-1,181,108,470,-1,100,49,44,-1,1282,1485,1266,-1,1364,1402,1469,-1,1436,1449,1343,-1,932,881,1119,-1,1519,1555,1498,-1,1499,1538,1509,-1,1025,1094,915,-1,865,1001,910,-1,577,228,196,-1,71,336,156,-1,288,492,1052,-1,1173,1130,1550,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc6_Geo_5_79_normalIndex_6()
		{
			int[] value = {1,2,24,-1,1120,1299,1259,-1,1278,1403,1311,-1,1493,1447,1388,-1,949,1289,882,-1,451,429,331,-1,154,162,265,-1,26,299,190,-1,1055,1083,1021,-1,299,198,458,-1,402,1224,728,-1,1223,1386,1343,-1,901,775,778,-1,1119,881,954,-1,962,746,745,-1,881,844,854,-1,318,425,334,-1,416,329,349,-1,262,272,124,-1,88,329,113,-1,610,642,212,-1,479,601,833,-1,899,456,518,-1,1026,1270,334,-1,318,324,531,-1,549,580,430,-1,372,697,487,-1,497,675,356,-1,96,70,134,-1,279,246,170,-1,436,1309,591,-1,12,48,169,-1,1309,436,215,-1,31,94,87,-1,40,41,94,-1,304,41,244,-1,1396,1309,815,-1,1155,632,1227,-1,1378,916,632,-1,459,916,1170,-1,1249,1399,1337,-1,1015,973,966,-1,875,1572,759,-1,884,759,1572,-1,673,602,418,-1,1072,973,933,-1,98,222,10,-1,653,418,165,-1,858,856,701,-1,689,898,1010,-1,700,522,535,-1,1233,1294,821,-1,1403,1336,1413,-1,45,268,44,-1,195,263,139,-1,400,413,554,-1,302,400,296,-1,402,195,387,-1,209,221,100,-1,300,476,197,-1,924,1176,813,-1,1120,1176,924,-1,1203,1176,1154,-1,6,180,337,-1,30,146,69,-1,929,722,940,-1,837,1161,1191,-1,1233,838,1267,-1,1008,449,207,-1,1251,1065,563,-1,478,201,346,-1,1013,723,822,-1,689,740,336,-1,123,191,313,-1,1065,285,563,-1,452,1149,747,-1,583,280,504,-1,604,1076,394,-1,830,1310,1011,-1,250,422,406,-1,1468,1417,1498,-1,1552,1535,1538,-1,907,328,816,-1,233,55,419,-1,346,461,484,-1,890,1092,974,-1,608,699,530,-1,420,640,537,-1,56,50,107,-1,17,106,46,-1,547,506,83,-1,1089,1276,559,-1,462,1097,1018,-1,1529,1303,1085,-1,1534,1548,1501,-1,1379,983,1260,-1,660,912,659,-1,1074,912,1342,-1,1284,1350,1536,-1,1272,1534,1253,-1,1380,1385,1029,-1,1126,731,408,-1,1272,1064,1205,-1,646,1079,890,-1,1571,1426,762,-1,477,437,381,-1,1384,1275,1107,-1,617,474,1107,-1,1088,755,636,-1,1377,1062,1104,-1,1495,1527,1414,-1,1344,1287,1193,-1,761,1023,879,-1,1315,1286,1268,-1,1136,1172,1121,-1,1043,1180,1133,-1,731,1113,820,-1,475,677,594,-1,677,561,712,-1,827,594,863,-1,1536,1350,1562,-1,590,611,906,-1,968,588,681,-1,51,0,588,-1,810,760,656,-1,686,562,615,-1,562,623,615,-1,633,595,557,-1,65,104,51,-1,323,512,1127,-1,111,142,184,-1,266,767,749,-1,340,366,159,-1,1500,1532,1533,-1,1542,1492,1383,-1,1500,1542,1566,-1,1355,1135,266,-1,1559,1401,1523,-1,1448,1494,1523,-1,1221,1128,1139,-1,1419,1429,1453,-1,1327,1263,1316,-1,1316,1252,1429,-1,1439,1502,1480,-1,1218,887,1073,-1,1005,1134,1095,-1,1255,1071,1041,-1,1238,565,1118,-1,1117,766,1020,-1,1033,737,1096,-1,958,1444,1354,-1,1466,1457,1242,-1,1312,1479,1452,-1,1242,1095,1134,-1,1255,1238,1147,-1,657,692,643,-1,637,641,745,-1,454,385,612,-1,775,679,661,-1,351,230,186,-1,1308,717,817,-1,817,358,1187,-1,1116,1376,1274,-1,751,552,752,-1,1370,1325,1420,-1,1157,1115,1124,-1,286,617,678,-1,126,23,77,-1,255,163,214,-1,274,455,314,-1,1570,1549,1569,-1,401,160,25,-1,1288,520,1078,-1,1501,1548,1387,-1,983,1379,1342,-1,699,983,660,-1,547,618,506,-1,34,32,72,-1,53,58,83,-1,230,125,137,-1,290,309,89,-1,1467,1530,1524,-1,1476,1566,1559,-1,289,792,374,-1,404,164,218,-1,1101,1185,1383,-1,1243,1167,965,-1,421,388,217,-1,175,251,217,-1,1138,1086,1512,-1,1274,1069,481,-1,1156,762,174,-1,671,204,936,-1,1558,1472,1415,-1,1047,1034,963,-1,75,74,174,-1,445,481,1069,-1,480,1301,347,-1,553,874,564,-1,405,388,564,-1,74,217,405,-1,1510,1512,1517,-1,42,25,160,-1,1164,1175,1179,-1,1405,1389,1276,-1,990,1235,1284,-1,1004,989,1016,-1,975,750,900,-1,1217,352,806,-1,1101,1209,546,-1,1054,546,1190,-1,151,141,184,-1,176,218,164,-1,266,375,171,-1,273,625,315,-1,1007,829,559,-1,644,1073,1037,-1,1420,1404,1503,-1,1276,1089,1239,-1,1414,1527,1425,-1,412,230,351,-1,321,382,596,-1,565,305,364,-1,255,766,694,-1,1153,1277,1511,-1,1354,1466,1225,-1,588,845,264,-1,569,237,315,-1,631,1489,1475,-1,993,1338,1514,-1,247,526,420,-1,1014,211,226,-1,1442,1216,736,-1,1549,1561,1454,-1,1275,1454,1511,-1,1092,890,1079,-1,1164,443,1175,-1,1553,1248,1281,-1,1340,974,1084,-1,477,755,878,-1,1556,1551,1457,-1,509,437,477,-1,1569,1265,1553,-1,1489,1563,1475,-1,1365,1182,1088,-1,1428,1474,1546,-1,1549,1384,1216,-1,1421,1512,1181,-1,515,547,58,-1,27,922,226,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc6_Geo_5_79_normalIndex_7()
		{
			int[] value = {358,84,194,-1,358,817,290,-1,239,186,317,-1,829,608,547,-1,996,620,889,-1,1067,845,1049,-1,1053,941,1074,-1,668,475,532,-1,185,203,454,-1,1486,1272,1279,-1,1564,1385,1557,-1,177,310,771,-1,1401,1247,1221,-1,1087,1105,1045,-1,1467,1428,1353,-1,252,51,104,-1,264,559,515,-1,690,0,252,-1,1116,936,204,-1,264,51,588,-1,893,630,1372,-1,1544,1270,1026,-1,1139,1196,1221,-1,1139,1201,1196,-1,526,852,727,-1,920,852,526,-1,788,852,1070,-1,852,788,783,-1,782,727,781,-1,640,727,782,-1,193,412,415,-1,193,230,412,-1,664,870,718,-1,664,1082,870,-1,873,801,730,-1,873,795,801,-1,1285,1250,1414,-1,1250,1285,606,-1,363,566,414,-1,517,566,363,-1,868,552,751,-1,552,868,618,-1,637,818,855,-1,637,746,818,-1,312,717,831,-1,312,309,717,-1,613,490,534,-1,613,634,490,-1,27,23,126,-1,29,23,27,-1,106,52,46,-1,52,106,157,-1,1141,560,1131,-1,514,560,1141,-1,1353,1274,1376,-1,1428,1274,1353,-1,403,488,736,-1,403,471,488,-1,576,471,509,-1,576,483,471,-1,1061,211,1014,-1,1061,247,211,-1,1041,1045,1105,-1,1041,988,1045,-1,107,61,111,-1,107,50,61,-1,398,242,232,-1,242,398,410,-1,89,109,105,-1,112,109,89,-1,616,721,635,-1,616,672,721,-1,1068,326,1018,-1,326,1068,150,-1,762,1335,938,-1,1335,762,1426,-1,1114,512,404,-1,1114,1127,512,-1,894,769,979,-1,750,769,894,-1,1100,944,1125,-1,944,1100,986,-1,1108,981,1077,-1,1108,989,981,-1,1033,1077,1020,-1,1108,1077,1033,-1,1483,1304,1452,-1,1304,1483,1314,-1,460,825,1078,-1,460,467,825,-1,1389,1437,1371,-1,1389,1405,1437,-1,25,990,443,-1,25,291,990,-1,361,160,401,-1,361,705,160,-1,923,1412,1433,-1,923,1069,1412,-1,1047,1351,1362,-1,1351,1047,1036,-1,560,161,389,-1,560,514,161,-1,609,1029,1385,-1,1029,609,874,-1,1432,1558,1568,-1,1432,1472,1558,-1,1539,1424,1433,-1,1529,1424,1539,-1,75,529,150,-1,529,75,445,-1,1250,1568,1441,-1,1568,1250,1432,-1,1110,812,1271,-1,1110,683,812,-1,225,335,229,-1,225,368,335,-1,64,130,135,-1,72,130,64,-1,572,530,699,-1,585,530,572,-1,665,585,650,-1,585,665,619,-1,1460,1349,1451,-1,1460,1319,1349,-1,1030,1085,596,-1,1030,1253,1085,-1,360,509,389,-1,360,576,509,-1,1185,676,785,-1,1185,1101,676,-1,861,868,751,-1,1104,868,861,-1,794,714,796,-1,794,613,714,-1,634,600,490,-1,634,661,600,-1,137,317,186,-1,137,341,317,-1,415,243,193,-1,427,243,415,-1,721,774,687,-1,721,777,774,-1,607,641,643,-1,687,641,607,-1,1567,1554,1551,-1,1567,1536,1554,-1,843,989,1004,-1,843,981,989,-1,981,849,986,-1,981,843,849,-1,1479,1562,1452,-1,1479,1554,1562,-1,1095,1312,1207,-1,1095,1242,1312,-1,887,1037,1073,-1,887,1028,1037,-1,1252,918,1199,-1,918,1252,1087,-1,1114,1391,1398,-1,1391,1114,688,-1,1014,1390,1061,-1,1357,1390,1014,-1,1162,1201,1139,-1,1162,1183,1201,-1,787,1247,1230,-1,787,743,1247,-1,1480,1505,1459,-1,1480,1502,1505,-1,1448,1334,1459,-1,1448,1326,1334,-1,1476,1355,1168,-1,1438,1355,1476,-1,1533,1531,1492,-1,1560,1531,1533,-1,1054,1492,1531,-1,1492,1054,1190,-1,806,200,289,-1,200,806,352,-1,815,177,776,-1,815,171,177,-1,261,199,277,-1,199,261,176,-1,335,199,229,-1,335,277,199,-1,512,151,213,-1,512,323,151,-1,557,993,1075,-1,595,993,557,-1,686,690,569,-1,686,760,690,-1,720,906,888,-1,720,590,906,-1,1332,1514,1338,-1,1504,1514,1332,-1,1434,496,1240,-1,1434,611,496,-1,858,867,903,-1,867,858,805,-1,826,914,851,-1,826,957,914,-1,948,1053,862,-1,948,941,1053,-1,1104,735,868,-1,1104,1062,735,-1,818,955,855,-1,834,955,818,-1,1112,1193,1268,-1,1112,1023,1193,-1,1204,925,967,-1,925,1204,1174,-1,996,1133,1180,-1,1198,1133,996,-1,1365,1376,1464,-1,1376,1365,1353,-1,286,314,379,-1,286,214,314,-1,381,1024,423,-1,381,392,1024,-1,561,654,664,-1,561,475,654,-1,1082,967,870,-1,1082,1204,967,-1,1250,281,850,-1,606,281,1250,-1,517,380,520,-1,517,363,380,-1,1113,1126,1461,-1,1113,731,1126,-1,1545,1313,1288,-1,1545,1564,1313,-1,1420,1097,1370,-1,1420,1018,1097,-1,1382,1387,1548,-1,1300,1387,1382,-1,1349,872,1003,-1,1349,1319,872,-1,800,828,713,-1,828,800,799,-1,1400,1451,1392,-1,1460,1451,1400,-1,646,1142,579,-1,646,652,1142,-1,711,917,939,-1,651,917,711,-1,913,704,809,-1,891,704,913,-1,428,524,505,-1,524,428,422,-1,191,187,293,-1,191,182,187,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc6_Geo_5_79_normalIndex_8()
		{
			int[] value = {189,39,320,-1,189,138,39,-1,667,577,910,-1,667,228,577,-1,839,800,801,-1,857,800,839,-1,207,6,260,-1,6,207,14,-1,449,1159,1165,-1,449,1008,1159,-1,1267,1294,1233,-1,1267,1341,1294,-1,344,231,424,-1,344,172,231,-1,2,359,24,-1,359,2,131,-1,949,1194,1289,-1,1099,1194,949,-1,283,1048,485,-1,283,510,1048,-1,708,704,693,-1,708,809,704,-1,554,662,447,-1,666,662,554,-1,397,296,447,-1,269,296,397,-1,707,397,624,-1,707,464,397,-1,510,1417,1048,-1,860,1417,510,-1,605,695,649,-1,695,605,614,-1,725,765,898,-1,725,869,765,-1,649,805,729,-1,784,805,649,-1,942,984,933,-1,848,984,942,-1,883,995,1002,-1,995,883,904,-1,1006,702,738,-1,1006,997,702,-1,973,345,966,-1,973,1072,345,-1,1409,1478,1431,-1,1409,1462,1478,-1,1455,1345,1446,-1,1455,1375,1345,-1,1262,1257,1394,-1,1262,1295,1257,-1,741,816,1146,-1,931,816,741,-1,11,582,763,-1,11,43,582,-1,1283,793,1374,-1,793,1283,792,-1,144,67,76,-1,144,147,67,-1,224,122,179,-1,224,116,122,-1,916,147,632,-1,178,147,916,-1,173,691,256,-1,173,448,691,-1,536,675,497,-1,545,675,536,-1,262,430,369,-1,329,430,262,-1,10,97,124,-1,97,10,18,-1,719,592,589,-1,592,719,724,-1,586,724,568,-1,724,586,592,-1,18,7,22,-1,37,7,18,-1,962,960,854,-1,962,877,960,-1,774,847,877,-1,847,774,777,-1,1330,1158,1381,-1,1330,1145,1158,-1,1258,1436,1386,-1,1232,1436,1258,-1,972,930,1080,-1,901,930,972,-1,263,841,268,-1,841,263,728,-1,1038,947,1081,-1,1038,897,947,-1,886,391,785,-1,472,391,886,-1,1063,1215,1188,-1,999,1215,1063,-1,563,542,976,-1,320,542,563,-1,223,115,123,-1,115,223,254,-1,991,897,908,-1,991,947,897,-1,1042,1001,865,-1,1042,991,1001,-1,1443,1509,1423,-1,1443,1499,1509,-1,1237,1347,1345,-1,1347,1237,1206,-1,507,542,301,-1,507,837,542,-1,5,322,121,-1,5,132,322,-1,1044,1496,1422,-1,1044,1129,1496,-1,394,866,80,-1,394,1214,866,-1,15,132,5,-1,132,15,91,-1,544,1009,180,-1,544,655,1009,-1,1406,1012,1188,-1,1012,1406,1059,-1,220,527,206,-1,220,538,527,-1,190,638,143,-1,502,638,190,-1,1372,1550,1528,-1,1550,1372,1408,-1,395,110,209,-1,110,395,444,-1,136,187,189,-1,140,187,136,-1,747,1111,492,-1,1106,1111,747,-1,272,93,124,-1,272,258,93,-1,493,540,518,-1,493,463,540,-1,592,463,493,-1,463,592,586,-1,621,473,450,-1,621,589,473,-1,802,670,626,-1,802,819,670,-1,1060,459,1170,-1,459,1060,448,-1,235,703,628,-1,235,146,703,-1,1244,503,556,-1,1244,1422,503,-1,847,950,926,-1,892,950,847,-1,1465,1485,1469,-1,1465,1463,1485,-1,1329,1178,1341,-1,1329,1161,1178,-1,1515,1478,1462,-1,1522,1478,1515,-1,833,882,1241,-1,882,833,601,-1,549,531,466,-1,587,531,549,-1,417,738,702,-1,417,581,738,-1,418,219,165,-1,418,280,219,-1,1360,516,543,-1,516,1360,1323,-1,1102,999,1063,-1,1093,999,1102,-1,59,295,298,-1,114,295,59,-1,1063,1098,1137,-1,1063,1188,1098,-1,1066,999,1093,-1,999,1066,909,-1,813,395,485,-1,813,685,395,-1,1223,1081,1055,-1,1103,1081,1223,-1,871,1232,1258,-1,871,757,1232,-1,464,932,442,-1,844,932,464,-1,1516,1525,1507,-1,1525,1516,1535,-1,260,1008,207,-1,1008,260,1057,-1,49,45,44,-1,86,45,49,-1,753,535,513,-1,614,535,753,-1,722,682,424,-1,722,934,682,-1,1160,1381,1158,-1,1343,1381,1160,-1,630,628,458,-1,628,630,893,-1,840,782,781,-1,840,921,782,-1,715,788,501,-1,715,783,788,-1,715,1046,840,-1,715,639,1046,-1,376,434,371,-1,434,376,373,-1,1002,1321,875,-1,1002,1337,1321,-1,501,434,411,-1,434,501,446,-1,1407,741,1146,-1,741,1407,789,-1,14,181,180,-1,181,14,108,-1,1229,1192,1111,-1,1192,1229,1297,-1,1022,1395,1363,-1,1119,1395,1022,-1,614,839,695,-1,614,753,839,-1,80,647,85,-1,80,866,647,-1,1535,1526,1525,-1,1526,1535,1552,-1,915,961,1025,-1,1021,961,915,-1,728,1266,841,-1,1282,1266,728,-1,1038,1103,1080,-1,1038,1081,1103,-1,1017,1258,1333,-1,1017,871,1258,-1,449,14,207,-1,449,108,14,-1,1066,985,917,-1,1093,985,1066,-1,1102,1137,1171,-1,1137,1102,1063,-1,55,441,325,-1,55,8,441,-1,1102,985,1093,-1,985,1102,1056,-1,349,431,416,-1,349,292,431,-1,1323,1473,1359,-1,1323,1360,1473,-1,995,581,919,-1,581,995,738,-1,1552,1543,1547,-1,1552,1540,1543,-1,1470,1491,1482,-1,1470,1321,1491,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc6_Geo_5_79_normalIndex_9()
		{
			int[] value = {964,645,278,-1,964,1178,645,-1,1469,1418,1465,-1,1418,1469,1402,-1,779,847,777,-1,779,892,847,-1,1409,1410,1435,-1,1369,1410,1409,-1,149,96,158,-1,149,122,96,-1,589,802,719,-1,621,802,589,-1,272,365,258,-1,272,353,365,-1,354,28,30,-1,354,81,28,-1,647,1408,1372,-1,647,866,1408,-1,959,1009,655,-1,1169,1009,959,-1,1039,1189,959,-1,1039,1040,1189,-1,538,249,541,-1,220,249,538,-1,331,168,206,-1,91,168,331,-1,1040,527,538,-1,1040,1039,527,-1,342,169,332,-1,342,118,169,-1,470,439,386,-1,470,742,439,-1,386,544,181,-1,544,386,453,-1,1381,1465,1418,-1,1449,1465,1381,-1,1021,1042,961,-1,1021,1083,1042,-1,1443,1347,1359,-1,1347,1443,1423,-1,908,1001,991,-1,908,937,1001,-1,937,910,1001,-1,937,970,910,-1,853,797,835,-1,797,853,796,-1,1259,1403,1358,-1,1259,1336,1403,-1,55,297,8,-1,55,233,297,-1,1055,947,1083,-1,1081,947,1055,-1,1463,1449,1436,-1,1465,1449,1463,-1,779,885,892,-1,779,775,885,-1,954,854,960,-1,854,954,881,-1,642,724,719,-1,724,642,610,-1,627,227,257,-1,227,627,543,-1,626,431,292,-1,626,670,431,-1,97,329,262,-1,113,329,97,-1,457,899,1026,-1,457,456,899,-1,580,369,430,-1,571,369,580,-1,675,372,356,-1,675,710,372,-1,173,356,134,-1,356,173,256,-1,639,393,516,-1,639,411,393,-1,342,786,338,-1,787,786,342,-1,116,76,67,-1,76,116,127,-1,127,169,48,-1,169,127,245,-1,133,436,117,-1,133,215,436,-1,789,1374,793,-1,789,1407,1374,-1,1394,815,776,-1,1396,815,1394,-1,1375,1298,1295,-1,1375,1393,1298,-1,1375,1237,1345,-1,1237,1375,1295,-1,1399,1060,1369,-1,1249,1060,1399,-1,933,1015,977,-1,933,973,1015,-1,702,977,584,-1,702,997,977,-1,943,904,883,-1,904,943,1006,-1,848,943,905,-1,848,942,943,-1,79,93,68,-1,79,9,93,-1,658,898,726,-1,725,898,658,-1,914,978,856,-1,978,914,957,-1,726,570,700,-1,689,570,726,-1,795,649,695,-1,795,784,649,-1,1413,1299,1468,-1,1299,1413,1336,-1,45,263,268,-1,139,263,45,-1,624,818,707,-1,624,834,818,-1,259,269,271,-1,259,296,269,-1,756,662,666,-1,756,824,662,-1,438,578,396,-1,438,387,578,-1,198,209,110,-1,198,221,209,-1,1259,1289,1194,-1,1358,1289,1259,-1,548,1203,1154,-1,1203,548,1184,-1,723,940,722,-1,940,723,1013,-1,172,413,241,-1,172,344,413,-1,645,1161,946,-1,645,1178,1161,-1,1254,1307,1329,-1,1296,1307,1254,-1,1111,1052,492,-1,1111,1192,1052,-1,30,503,354,-1,503,30,69,-1,689,223,570,-1,223,689,254,-1,748,800,857,-1,748,799,800,-1,123,182,191,-1,123,115,182,-1,853,908,897,-1,835,908,853,-1,651,598,461,-1,651,711,598,-1,646,880,652,-1,646,890,880,-1,704,814,732,-1,704,891,814,-1,1049,1144,1067,-1,1049,1148,1144,-1,1460,1440,1501,-1,1460,1400,1440,-1,800,730,801,-1,800,713,730,-1,1003,1320,1349,-1,1320,1003,1051,-1,1564,1361,1313,-1,1564,1557,1361,-1,414,1126,408,-1,566,1126,414,-1,281,306,343,-1,232,306,281,-1,1216,1569,1549,-1,1216,1442,1569,-1,379,617,286,-1,379,474,617,-1,525,1292,1088,-1,1062,1292,525,-1,756,761,879,-1,756,693,761,-1,1172,1268,1286,-1,1268,1172,1112,-1,855,1172,1136,-1,855,955,1172,-1,1187,1425,1324,-1,1187,1368,1425,-1,128,1062,525,-1,128,735,1062,-1,873,948,935,-1,873,941,948,-1,851,712,826,-1,696,712,851,-1,903,896,863,-1,896,903,867,-1,896,862,827,-1,896,948,862,-1,888,656,720,-1,681,656,888,-1,656,686,615,-1,656,760,686,-1,832,698,573,-1,562,698,832,-1,1240,599,631,-1,496,599,1240,-1,107,184,141,-1,184,107,111,-1,229,119,120,-1,199,119,229,-1,316,310,177,-1,310,316,277,-1,200,789,793,-1,789,200,159,-1,1383,1566,1542,-1,1383,1471,1566,-1,1559,1471,1456,-1,1566,1471,1559,-1,1458,1494,1430,-1,1523,1494,1458,-1,1427,1502,1391,-1,1505,1502,1427,-1,754,1128,1221,-1,754,790,1128,-1,1390,1419,1453,-1,1390,1357,1419,-1,1199,1439,1411,-1,1199,1218,1439,-1,876,1073,625,-1,876,1318,1073,-1,1000,887,859,-1,1000,1028,887,-1,1037,1211,1213,-1,1037,1028,1211,-1,1071,988,1041,-1,1071,900,988,-1,1016,969,1153,-1,1096,969,1016,-1,1314,1504,1332,-1,1314,1483,1504,-1,1304,1207,1312,-1,1207,1304,1220,-1,975,1125,944,-1,975,1147,1125,-1,1536,1570,1477,-1,1567,1570,1536,-1,643,612,607,-1,643,692,612,-1,635,687,607,-1,635,721,687,-1,616,415,574,-1,616,427,415,-1,90,194,84,-1,90,185,194,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc6_Geo_5_79_normalIndex_10()
		{
			int[] value = {683,861,550,-1,683,1110,861,-1,613,665,714,-1,613,534,665,-1,1335,648,938,-1,1335,1079,648,-1,1068,175,150,-1,1068,1219,175,-1,214,330,378,-1,214,286,330,-1,163,314,214,-1,234,314,163,-1,797,714,739,-1,797,796,714,-1,660,629,572,-1,629,660,603,-1,572,650,585,-1,650,572,629,-1,225,130,210,-1,225,135,130,-1,530,552,608,-1,552,530,489,-1,109,193,153,-1,109,125,193,-1,1317,717,1308,-1,1317,831,717,-1,850,1432,1250,-1,1432,850,1157,-1,1401,1230,1247,-1,1230,1401,1456,-1,1047,533,1036,-1,553,533,1047,-1,1472,1157,1246,-1,1432,1157,1472,-1,174,405,609,-1,405,174,74,-1,275,480,347,-1,321,480,275,-1,467,421,825,-1,467,555,421,-1,42,671,360,-1,42,204,671,-1,1211,1304,1314,-1,1220,1304,1211,-1,769,986,849,-1,769,944,986,-1,1480,1429,1411,-1,1453,1429,1480,-1,164,184,142,-1,164,213,184,-1,1317,1508,1271,-1,1317,1530,1508,-1,635,427,616,-1,427,635,482,-1,309,112,89,-1,312,112,309,-1,382,242,410,-1,267,242,382,-1,64,50,34,-1,50,64,61,-1,72,99,130,-1,72,66,99,-1,994,573,644,-1,994,832,573,-1,99,247,210,-1,211,247,99,-1,1143,1225,1134,-1,1225,1143,1273,-1,579,471,483,-1,579,488,471,-1,1142,1518,1248,-1,1518,1142,1565,-1,437,471,403,-1,437,509,471,-1,514,1086,291,-1,514,1141,1086,-1,317,550,239,-1,550,317,683,-1,468,534,490,-1,491,534,468,-1,309,817,717,-1,309,290,817,-1,521,239,550,-1,521,351,239,-1,82,65,56,-1,104,65,82,-1,306,414,408,-1,306,319,414,-1,965,529,1226,-1,965,494,529,-1,730,941,873,-1,941,730,768,-1,654,1082,664,-1,654,1300,1082,-1,205,284,385,-1,284,205,167,-1,414,276,363,-1,414,319,276,-1,1139,1070,1162,-1,1139,1128,1070,-1,252,569,690,-1,237,569,252,-1,51,58,53,-1,51,264,58,-1,1326,1201,1334,-1,1196,1201,1326,-1,741,159,435,-1,741,789,159,-1,1380,1557,1385,-1,1380,1461,1557,-1,380,347,460,-1,380,275,347,-1,185,551,194,-1,185,454,551,-1,814,718,870,-1,814,864,718,-1,46,38,47,-1,46,19,38,-1,608,618,547,-1,608,552,618,-1,669,855,1136,-1,669,637,855,-1,312,812,341,-1,831,812,312,-1,634,794,780,-1,613,794,634,-1,1557,1126,1361,-1,1461,1126,1557,-1,106,525,274,-1,128,525,106,-1,617,1277,678,-1,617,1275,1277,-1,29,226,66,-1,226,29,27,-1,526,640,420,-1,526,727,640,-1,1049,588,968,-1,1049,845,588,-1,330,766,378,-1,330,737,766,-1,29,19,23,-1,32,19,29,-1,63,104,82,-1,252,104,63,-1,889,606,1285,-1,398,606,889,-1,153,105,109,-1,153,167,105,-1,721,779,777,-1,672,779,721,-1,63,151,237,-1,151,63,141,-1,1071,1147,975,-1,1071,1255,1147,-1,750,944,769,-1,750,975,944,-1,1077,986,1100,-1,1077,981,986,-1,1563,1452,1562,-1,1452,1563,1483,-1,1545,1219,1541,-1,1219,1545,1490,-1,1424,1243,1226,-1,1239,1243,1424,-1,160,952,204,-1,705,952,160,-1,609,564,874,-1,609,405,564,-1,388,553,564,-1,533,553,388,-1,1301,1036,1032,-1,1301,1351,1036,-1,1415,1246,1362,-1,1415,1472,1246,-1,1568,1412,1546,-1,1568,1558,1412,-1,1226,1433,1424,-1,1226,923,1433,-1,1036,555,1032,-1,555,1036,533,-1,1236,1383,1185,-1,1236,1471,1383,-1,289,992,806,-1,289,374,992,-1,982,1458,1430,-1,982,1135,1458,-1,1029,1208,1380,-1,1029,1122,1208,-1,105,90,89,-1,105,203,90,-1,203,105,205,-1,368,210,420,-1,225,210,368,-1,798,739,811,-1,797,739,798,-1,799,811,828,-1,798,811,799,-1,489,585,619,-1,530,585,489,-1,1319,1501,1231,-1,1460,1501,1319,-1,1245,1518,1565,-1,1518,1245,1340,-1,619,521,489,-1,619,491,521,-1,125,112,137,-1,125,109,112,-1,679,779,672,-1,779,679,775,-1,687,745,641,-1,745,687,774,-1,843,928,849,-1,843,958,928,-1,1143,979,1273,-1,894,979,1143,-1,1242,1479,1312,-1,1242,1457,1479,-1,694,1118,565,-1,1118,694,1117,-1,1207,1005,1095,-1,1207,1000,1005,-1,1199,887,1218,-1,887,1199,859,-1,1218,1398,1439,-1,1218,1318,1398,-1,1183,920,1061,-1,1162,920,1183,-1,786,1230,1236,-1,786,787,1230,-1,1494,1459,1505,-1,1494,1448,1459,-1,1401,1448,1523,-1,1401,1326,1448,-1,1135,1438,1458,-1,1355,1438,1135,-1,335,310,277,-1,335,440,310,-1,404,213,164,-1,213,404,512,-1,846,562,832,-1,562,846,575,-1,573,686,569,-1,573,698,686,-1,590,623,633,-1,590,720,623,-1,805,935,867,-1,805,784,935,-1,914,903,851,-1,914,858,903,-1,23,46,52,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getc6_Geo_5_79_normalIndex_11()
		{
			int[] value = {23,19,46,-1,1530,1308,1527,-1,1308,1530,1317,-1,1305,1121,1286,-1,1121,1305,1043,-1,834,911,955,-1,911,834,824,-1,1305,1205,1180,-1,1205,1305,1315,-1,1064,1180,1205,-1,996,1180,1064,-1,379,455,390,-1,379,314,455,-1,1107,423,1024,-1,1107,474,423,-1,381,403,392,-1,403,381,437,-1,864,957,826,-1,971,957,864,-1,1441,1414,1250,-1,1414,1441,1495,-1,276,321,275,-1,276,267,321,-1,520,1313,517,-1,520,1288,1313,-1,1078,1123,1490,-1,1123,1078,825,-1,1074,659,912,-1,768,659,1074,-1,828,659,713,-1,603,659,828,-1,1534,1371,1253,-1,1371,1534,1440,-1,1243,1089,1144,-1,1239,1089,1243,-1,229,135,225,-1,229,120,135,-1,1450,1179,1175,-1,1450,1281,1179,-1,377,346,484,-1,407,346,377,-1,441,917,985,-1,917,441,939,-1,1035,1151,1206,-1,921,1151,1035,-1,428,406,422,-1,428,327,406,-1,1019,1229,1106,-1,1019,541,1229,-1,857,753,902,-1,857,839,753,-1,156,172,21,-1,156,231,172,-1,478,154,201,-1,556,154,478,-1,260,28,288,-1,28,260,6,-1,449,470,108,-1,470,449,838,-1,1192,1057,1052,-1,1057,1192,1212,-1,1294,322,821,-1,1294,964,322,-1,593,424,682,-1,344,424,593,-1,1184,836,1171,-1,836,1184,359,-1,1166,1099,1154,-1,1166,1194,1099,-1,259,294,302,-1,370,294,259,-1,400,447,296,-1,554,447,400,-1,447,624,397,-1,447,662,624,-1,464,269,397,-1,464,442,269,-1,860,469,684,-1,510,469,860,-1,535,605,700,-1,614,605,535,-1,940,869,929,-1,940,765,869,-1,725,856,869,-1,701,856,725,-1,729,858,701,-1,729,805,858,-1,1072,165,345,-1,956,165,1072,-1,60,240,236,-1,60,68,240,-1,653,848,673,-1,848,653,984,-1,875,883,1002,-1,808,883,875,-1,942,1006,943,-1,997,1006,942,-1,584,1015,500,-1,584,977,1015,-1,1393,1455,1435,-1,1393,1375,1455,-1,1035,1237,1132,-1,1237,1035,1206,-1,591,1227,632,-1,1227,591,1197,-1,103,12,118,-1,103,4,12,-1,76,117,144,-1,76,48,117,-1,70,147,178,-1,70,67,147,-1,446,754,371,-1,754,446,790,-1,170,179,122,-1,179,170,227,-1,134,372,158,-1,372,134,356,-1,497,691,945,-1,256,691,497,-1,675,571,710,-1,571,675,545,-1,365,536,362,-1,536,365,545,-1,587,499,531,-1,499,587,663,-1,601,558,426,-1,601,479,558,-1,68,258,240,-1,93,258,68,-1,369,272,262,-1,369,353,272,-1,450,597,621,-1,425,597,450,-1,1,37,73,-1,1,7,37,-1,745,877,962,-1,745,774,877,-1,1158,950,998,-1,1145,950,1158,-1,1363,1484,1488,-1,1484,1363,1395,-1,1160,1080,1103,-1,972,1080,1160,-1,897,953,853,-1,953,897,1038,-1,909,235,628,-1,235,909,511,-1,1397,503,1422,-1,503,1397,354,-1,1241,1358,1278,-1,1289,1358,1241,-1,71,254,336,-1,71,115,254,-1,991,1083,947,-1,991,1042,1083,-1,758,799,748,-1,758,798,799,-1,835,798,758,-1,835,797,798,-1,1359,1206,1151,-1,1359,1347,1206,-1,1484,1469,1485,-1,1367,1469,1484,-1,1367,1364,1469,-1,132,821,322,-1,132,429,821,-1,117,591,144,-1,436,591,117,-1,582,1283,763,-1,1283,582,1200,-1,188,338,391,-1,338,188,103,-1,1019,538,541,-1,1019,1040,538,-1,143,350,148,-1,350,143,638,-1,190,5,26,-1,5,190,15,-1,655,453,622,-1,544,453,655,-1,1169,1416,1009,-1,1169,1497,1416,-1,1065,1297,1229,-1,1065,1251,1297,-1,1149,1106,747,-1,1019,1106,1149,-1,893,1528,1215,-1,1528,893,1372,-1,124,9,10,-1,124,93,9,-1,589,493,473,-1,493,589,592,-1,621,819,802,-1,819,621,597,-1,425,499,597,-1,318,499,425,-1,1399,1491,1337,-1,1399,1431,1491,-1,62,248,300,-1,44,248,62,-1,1145,926,950,-1,1145,1091,926,-1,1463,1266,1485,-1,1463,1261,1266,-1,1329,1191,1161,-1,1329,1307,1191,-1,1522,1509,1538,-1,1522,1515,1509,-1,1473,1499,1443,-1,1499,1473,1506,-1,804,1241,1278,-1,1241,804,833,-1,987,524,602,-1,524,987,830,-1,921,1046,1151,-1,840,1046,921,-1,1445,1543,1506,-1,1445,1544,1543,-1,298,949,882,-1,295,949,298,-1,1048,1468,1299,-1,1048,1417,1468,-1,495,1059,1280,-1,1059,495,432,-1,257,1195,627,-1,311,1195,257,-1,794,930,780,-1,794,953,930,-1,757,1261,1232,-1,757,764,1261,-1,707,844,464,-1,951,844,707,-1,915,860,684,-1,915,1094,860,-1,1031,1333,1223,-1,1031,1017,1333,-1,1507,1482,1516,-1,1507,1470,1482,-1,1159,1267,1165,-1,1267,1159,1254,-1,1044,604,350,-1,1044,1076,604,-1,934,913,682,-1,913,934,980,-1,1291,1364,1186,-1,1291,1402,1364,-1,1296,1159,1212,-1,1159,1296,1254,-1,840,783,715,-1,840,781,783,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getc6_Geo_5_79_normalIndex_12()
		{
			int[] value = {373,245,238,-1,373,376,245,-1,1513,1521,1519,-1,1521,1513,1310,-1,373,224,393,-1,373,238,224,-1,1132,773,1035,-1,1132,772,773,-1,1297,1212,1192,-1,1212,1297,1296,-1,1330,1402,1291,-1,1418,1402,1330,-1,980,891,913,-1,980,971,891,-1,801,695,839,-1,795,695,801,-1,322,278,155,-1,322,964,278,-1,1008,1212,1159,-1,1008,1057,1212,-1,1021,684,823,-1,1021,915,684,-1,818,951,707,-1,746,951,818,-1,841,1261,764,-1,1266,1261,841,-1,1080,953,1038,-1,953,1080,930,-1,1547,1544,1447,-1,1547,1543,1544,-1,1520,1468,1526,-1,1520,1413,1468,-1,1012,432,444,-1,1012,1059,432,-1,299,221,198,-1,299,145,221,-1,1056,1171,836,-1,1171,1056,1102,-1,88,22,16,-1,88,113,22,-1,22,13,16,-1,22,7,13,-1,431,549,416,-1,549,431,587,-1,1506,1360,1445,-1,1360,1506,1473,-1,500,236,584,-1,500,60,236,-1,292,88,212,-1,349,88,292,-1,1540,1506,1543,-1,1540,1499,1506,-1,1555,1507,1525,-1,1555,1519,1507,-1,1329,1267,1254,-1,1341,1267,1329,-1,1291,1145,1330,-1,1145,1291,1091,-1,764,300,248,-1,764,757,300,-1,886,792,1027,-1,886,791,792,-1,719,626,642,-1,802,626,719,-1,457,425,450,-1,334,425,457,-1,545,353,571,-1,353,545,365,-1,6,30,28,-1,3,30,6,-1,1173,478,523,-1,1109,478,1173,-1,428,770,486,-1,428,505,770,-1,1408,1214,1173,-1,866,1214,1408,-1,893,999,909,-1,893,1215,999,-1,1040,1149,1189,-1,1040,1019,1149,-1,85,458,198,-1,458,85,647,-1,1331,337,1416,-1,703,337,1331,-1,451,622,453,-1,451,539,622,-1,1090,299,842,-1,502,299,1090,-1,285,206,168,-1,220,206,285,-1,118,338,103,-1,342,338,118,-1,439,453,386,-1,439,451,453,-1,757,476,300,-1,476,757,871,-1,1462,1446,1515,-1,1462,1455,1446,-1,835,937,908,-1,835,758,937,-1,758,970,937,-1,758,748,970,-1,593,708,680,-1,809,708,593,-1,233,711,297,-1,598,711,233,-1,684,709,823,-1,684,469,709,-1,853,794,796,-1,953,794,853,-1,1158,972,1160,-1,1158,998,972,-1,1436,1261,1463,-1,1261,1436,1232,-1,892,998,950,-1,892,885,998,-1,1091,960,926,-1,1091,954,960,-1,1407,1140,1374,-1,1407,1234,1140,-1,16,212,88,-1,212,16,129,-1,473,518,456,-1,473,493,518,-1,258,362,240,-1,258,365,362,-1,426,568,202,-1,426,558,568,-1,581,362,536,-1,581,417,362,-1,697,571,580,-1,697,710,571,-1,178,459,173,-1,178,916,459,-1,179,543,516,-1,179,227,543,-1,373,411,434,-1,411,373,393,-1,332,787,342,-1,787,332,743,-1,67,96,116,-1,96,67,70,-1,238,127,116,-1,127,238,245,-1,215,87,328,-1,215,133,87,-1,43,40,78,-1,43,11,40,-1,78,519,43,-1,78,384,519,-1,1374,763,1283,-1,1374,1222,763,-1,1262,1237,1295,-1,1237,1262,1132,-1,1369,1170,1410,-1,1369,1060,1170,-1,942,977,997,-1,933,977,942,-1,904,738,995,-1,904,1006,738,-1,883,905,943,-1,905,883,808,-1,905,673,848,-1,905,884,673,-1,700,658,726,-1,658,700,605,-1,658,701,725,-1,658,729,701,-1,929,856,978,-1,929,869,856,-1,1526,1547,1520,-1,1547,1526,1552,-1,442,271,269,-1,442,528,271,-1,662,834,624,-1,662,824,834,-1,370,271,396,-1,370,259,271,-1,693,666,708,-1,756,666,693,-1,396,507,370,-1,396,578,507,-1,1120,1194,1166,-1,1259,1194,1120,-1,1154,465,548,-1,465,1154,1099,-1,1171,1203,1184,-1,1171,1137,1203,-1,957,980,978,-1,957,971,980,-1,101,302,294,-1,101,241,302,-1,155,121,322,-1,155,86,121,-1,1251,1296,1297,-1,1296,1251,1307,-1,260,1052,1057,-1,288,1052,260,-1,452,492,81,-1,452,747,492,-1,902,513,667,-1,902,753,513,-1,902,748,857,-1,902,970,748,-1,138,115,71,-1,115,138,182,-1,486,327,428,-1,486,333,327,-1,1423,1345,1347,-1,1345,1423,1446,-1,377,102,409,-1,287,102,377,-1,1228,1179,1084,-1,1228,1164,1179,-1,650,714,665,-1,650,739,714,-1,1167,1144,1148,-1,1243,1144,1167,-1,1260,1276,1392,-1,1260,1007,1276,-1,347,555,467,-1,555,347,1032,-1,768,713,659,-1,730,713,768,-1,1231,668,803,-1,1231,1387,668,-1,1068,1541,1219,-1,1068,1503,1541,-1,520,460,1078,-1,460,520,380,-1,267,319,242,-1,267,276,319,-1,410,889,620,-1,398,889,410,-1,1174,1382,1344,-1,1382,1174,1204,-1,826,718,864,-1,826,712,718,-1,736,392,403,-1,736,1216,392,-1,474,390,423,-1,390,474,379,-1,1279,1315,1287,-1,1279,1205,1315,-1,879,824,756,-1,879,911,824,-1,955,1112,1172,-1,1112,955,911,-1,1324,1527,1308,-1,1324,1425,1527,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getc6_Geo_5_79_normalIndex_13()
		{
			int[] value = {274,157,106,-1,274,234,157,-1,935,795,873,-1,795,935,784,-1,1003,827,862,-1,1003,872,827,-1,863,851,903,-1,851,863,696,-1,867,948,896,-1,867,935,948,-1,1483,1489,1504,-1,1563,1489,1483,-1,615,720,656,-1,623,720,615,-1,595,846,993,-1,575,846,595,-1,119,176,142,-1,176,119,199,-1,335,537,440,-1,335,368,537,-1,348,982,927,-1,348,375,982,-1,435,931,741,-1,733,931,435,-1,992,1560,806,-1,1560,992,1531,-1,793,289,200,-1,793,792,289,-1,1505,1430,1494,-1,1427,1430,1505,-1,1453,1348,1390,-1,1459,1348,1453,-1,1427,688,927,-1,1427,1391,688,-1,876,1398,1318,-1,1398,876,1127,-1,1000,918,1005,-1,918,1000,859,-1,1213,994,1037,-1,994,1213,1152,-1,1004,1153,1366,-1,1016,1153,1004,-1,1213,1314,1332,-1,1211,1314,1213,-1,1020,1100,1117,-1,1077,1100,1020,-1,1354,1556,1466,-1,1354,1444,1556,-1,433,159,200,-1,340,159,433,-1,607,482,635,-1,612,482,607,-1,574,672,616,-1,672,574,679,-1,312,137,112,-1,312,341,137,-1,600,415,412,-1,415,600,574,-1,619,534,491,-1,665,534,619,-1,1412,1274,1546,-1,1274,1412,1069,-1,880,1340,1245,-1,880,974,1340,-1,761,967,925,-1,761,732,967,-1,603,811,629,-1,811,603,828,-1,629,739,650,-1,739,629,811,-1,120,111,61,-1,111,120,119,-1,657,454,692,-1,657,551,454,-1,1030,1064,1272,-1,1064,1030,734,-1,1208,1461,1380,-1,1461,1208,1113,-1,1122,1115,1208,-1,1124,1115,1122,-1,340,1328,366,-1,340,1293,1328,-1,1269,1476,1168,-1,1269,1500,1476,-1,1236,1456,1471,-1,1236,1230,1456,-1,1362,1303,1415,-1,1362,1351,1303,-1,705,1181,1510,-1,361,1181,705,-1,963,1124,1122,-1,1124,963,1034,-1,1116,1481,1376,-1,1116,952,1481,-1,421,533,388,-1,555,533,421,-1,576,671,648,-1,360,671,576,-1,1464,1182,1365,-1,1464,1131,1182,-1,807,1144,1089,-1,1067,1144,807,-1,1097,401,1050,-1,1097,462,401,-1,1541,1564,1545,-1,1541,1571,1564,-1,1220,1028,1000,-1,1220,1211,1028,-1,1147,1118,1125,-1,1147,1238,1118,-1,979,849,928,-1,979,769,849,-1,792,676,546,-1,791,676,792,-1,1271,831,1317,-1,831,1271,812,-1,427,284,243,-1,427,482,284,-1,306,242,319,-1,306,232,242,-1,65,17,47,-1,53,17,65,-1,66,32,29,-1,72,32,66,-1,678,737,330,-1,678,969,737,-1,832,1152,846,-1,994,1152,832,-1,211,66,226,-1,211,99,66,-1,1045,1143,1134,-1,1045,988,1143,-1,1561,1551,1556,-1,1567,1551,1561,-1,576,508,483,-1,576,648,508,-1,1182,755,1088,-1,878,755,1182,-1,491,351,521,-1,491,468,351,-1,341,683,317,-1,812,683,341,-1,657,1136,1121,-1,657,669,1136,-1,47,56,65,-1,47,38,56,-1,566,1313,1361,-1,566,517,1313,-1,1527,1524,1530,-1,1527,1495,1524,-1,891,864,814,-1,971,864,891,-1,1300,668,1387,-1,1300,654,668,-1,167,243,284,-1,167,153,243,-1,363,275,380,-1,363,276,275,-1,773,440,537,-1,440,773,772,-1,1348,1201,1183,-1,1201,1348,1334,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getc6_Coord_6_79_point_1()
		{
			double[] value = {-0.5028,53.0607,-1.4463,-0.4985,53.0575,-1.4496,-0.4438,52.9826,-1.5507,-0.4424,53.4579,-1.4217,-0.4387,53.4555,-1.4183,-0.42,53.4212,-1.4929,-0.0173,52.967,-2.2435,0.0,52.9764,-2.3318,0.0,52.9864,-2.2386,0.7448,53.1478,-1.1517,0.703,53.1285,-1.1432,0.696,53.1504,-1.1245,0.4377,53.4555,-1.4178,0.4387,53.4555,-1.4183,0.42,53.4212,-1.4929,0.5618,52.9821,-1.0196,0.5383,52.9981,-1.0364,0.5654,52.9989,-1.0145,0.5347,53.0763,-1.3637,0.4573,53.0999,-1.3231,0.5138,53.1397,-1.3469,0.4125,52.9849,-1.6027,0.4304,52.929,-1.6236,0.4438,52.9826,-1.55,0.0624,53.2643,-2.0504,0.1342,53.2325,-2.0418,0.1243,53.1855,-2.1452,0.0155,53.039,-1.9811,0.0,53.1075,-1.9472,0.0,53.0616,-1.9886,0.7653,53.1423,-1.1245,0.7307,53.1464,-1.1245,0.7807,53.1319,-1.0999,0.2935,53.2683,-1.0621,0.2883,53.2389,-1.0092,0.2986,53.2476,-1.0067,0.3247,53.2003,-0.9177,0.3128,53.1932,-0.9207,0.3306,53.1651,-0.8787,0.3197,53.2066,-0.9272,0.3367,52.8264,-1.1007,0.3653,52.7749,-1.0279,0.3118,52.8254,-1.0987,0.17,52.8619,-1.3738,0.171,52.8813,-1.3891,0.2458,52.8933,-1.385,0.6931,53.1004,-1.2529,0.619,53.0732,-1.2729,0.6666,53.0924,-1.2812,0.508,53.1718,-0.893,0.4659,53.1716,-0.8747,0.464,53.1057,-0.9063,0.3395,53.3434,-1.1201,0.3377,53.3703,-1.1653,0.2821,53.3421,-1.2273,0.4015,53.3244,-0.8691,0.3782,53.2461,-0.8573,0.383,53.2436,-0.8483,0.3541,53.1521,-0.8382,0.3516,53.1671,-0.8465,0.4101,53.4271,-1.5106,0.3629,53.4137,-1.5929,0.6851,53.1363,-1.2042,0.6769,53.137,-1.1603,0.6728,53.0968,-1.1814,0.6128,53.2585,-1.1559,0.5745,53.3058,-1.165,0.5593,53.3061,-1.1202,0.591,53.2982,-1.2217,0.9792,53.2092,-1.1225,0.9845,53.172,-1.1032,1.0529,53.1787,-1.0972,0.9163,53.284,-1.1579,0.9136,53.2795,-1.1366,0.9177,53.2396,-1.1354,0.8,53.2193,-1.1631,0.7446,53.2565,-1.1928,0.7529,53.2171,-1.1748,0.856,53.3571,-1.3883,0.9186,53.4192,-1.2762,0.8542,53.2836,-1.4335,0.9635,53.1924,-1.147,1.0511,53.1494,-1.1247,0.9751,53.148,-1.1624,0.9315,53.1259,-1.1602,1.0357,53.1109,-1.1298,0.9432,53.1607,-1.1753,0.9129,53.1826,-1.207,0.9177,53.2398,-1.1508,0.8624,53.1222,-1.1924,0.8859,53.1008,-1.1608,0.8373,53.0825,-1.1811,0.8684,53.0743,-1.1172,0.9167,53.0887,-1.1211,0.8505,53.1047,-1.0887,0.8223,53.5107,-1.1457,0.8947,53.486,-1.2177,0.8203,53.5428,-1.171,0.9078,53.3652,-1.1748,0.8798,53.4536,-1.1823,0.8676,53.427,-1.1532,0.3404,53.1737,-0.8819,0.3579,53.2449,-0.8947,0.3146,53.401,-1.6696,0.3713,53.415,-1.5723,0.136,53.3278,-1.8194,0.2186,53.3154,-1.7742,0.2411,53.3812,-1.7537,0.8082,53.1193,-1.3399,0.7935,53.13,-1.3328,0.7047,53.1167,-1.2907,0.7028,53.1041,-1.2921,0.9031,52.9184,-1.5228,0.8344,52.8701,-1.5869,0.9066,52.9186,-1.53,0.7981,53.1283,-1.3434,0.9144,52.9932,-1.4567,0.8807,53.0662,-1.3902,0.8763,53.062,-1.3814,0.4432,52.9293,-1.619,0.5106,52.8649,-1.6572,0.5313,52.8553,-1.6535,0.7905,53.3059,-1.4647,0.787,53.3219,-1.4667,0.8539,53.3719,-1.3942,0.8934,53.4897,-1.2242,0.819,53.5436,-1.1765,0.5015,53.5075,-1.3444,0.4966,53.5062,-1.3396,0.5547,53.5474,-1.2661,0.4196,53.4323,-1.4929,0.29,53.3052,-1.6871,0.2986,53.3431,-1.6699,0.5568,52.9897,-0.9511,0.5647,53.0427,-0.9092,0.5374,53.0433,-0.9257,0.2107,53.3233,-1.2257,0.2171,53.2597,-1.1487,0.4859,53.2712,-0.9171,0.5171,53.2352,-0.9171,0.522,53.2484,-0.9462,0.5178,53.0365,-1.1965,0.4968,53.0199,-1.173,0.4572,53.0106,-1.2355,0.5236,52.8653,-1.6654,0.637,52.9674,-1.7015,0.6562,52.8625,-1.6669,0.1329,53.0762,-1.8817,0.1005,53.0228,-1.9273,0.1509,53.0178,-1.8939,0.0819,52.9891,-1.9601,0.2691,52.9731,-1.7916,0.2622,53.0097,-1.7786,0.2063,53.0148,-1.8492,0.3415,52.9605,-1.7178,0.3947,52.9609,-1.6755,0.3383,52.9962,-1.7074,0.1319,52.9314,-2.601,0.1851,52.927,-2.5806,0.115,52.9233,-2.563,0.146,53.1553,-2.4767,0.1706,53.1515,-2.5392,0.1176,53.1504,-2.5389,0.4861,53.1616,-1.6567,0.5438,53.1963,-1.629,0.5439,53.16,-1.6512,0.6154,53.3303,-1.4907,0.5659,53.3449,-1.4847,0.6005,53.3737,-1.4245,0.7546,53.1411,-1.2803,0.4757,53.0034,-1.1496,0.5115,53.0385,-1.1443,0.7514,53.1727,-1.1687,0.7476,53.1293,-1.1685,0.6721,53.1696,-1.1809,0.6629,53.1595,-1.1444,0.7356,53.1666,-1.2039,0.7469,53.1905,-1.1881,0.7215,53.1844,-1.1986,0.7021,53.0468,-0.9922,0.6924,53.005,-1.0184,0.6699,53.0157,-0.9915,0.6459,53.0536,-0.9745,0.6642,53.1099,-0.9463,0.6995,53.0989,-0.9496,0.5998,52.9563,-0.9924,0.592,52.9081,-0.9984,0.6059,53.1532,-1.0966,0.5821,53.1125,-1.1221,0.666,53.1023,-1.1132,0.7421,53.059,-1.0065,0.7456,53.0986,-1.0636,0.7314,53.0815,-1.0755,0.6145,53.0459,-0.9691,0.5262,53.1068,-1.0414,0.5475,53.17,-1.0168,0.553,53.0877,-1.0132,0.76,53.1023,-1.0599,0.6173,53.1782,-1.0992,0.6806,53.1236,-1.1076,0.6941,53.1431,-1.1005,0.7141,53.115,-1.2484,0.7302,53.0387,-1.0223,0.7193,52.9916,-1.0533,0.6946,52.9812,-1.0205,0.6627,52.9717,-1.0029,0.635,53.1273,-1.1627,0.577,53.0795,-1.1495,0.5694,53.0579,-1.2122,0.0892,53.1654,-2.4665,0.1288,53.1435,-2.4121,0.1657,53.2186,-2.038,0.2141,52.9803,-1.8711,0.2393,52.9454,-1.9035,0.2956,52.9295,-1.8052,0.0673,52.9715,-2.0313,0.0127,52.9715,-2.1189,0.1346,52.9468,-2.0369,0.138,53.1041,-2.2344,0.1024,53.0481,-2.2309,0.1103,53.0367,-2.3309,0.0665,52.9433,-2.4036,0.0665,52.9383,-2.4596,0.1237,52.9644,-2.4257,0.1774,52.9645,-2.6185,0.2024,52.9715,-2.5811,0.5343,53.2902,-1.0848,0.4974,53.3479,-1.051,0.5033,53.338,-0.9953,0.3622,53.3,-0.9223,0.3272,53.254,-0.9409,0.3021,53.2233,-0.9557,0.2792,53.2977,-1.1329,0.3713,53.3544,-1.0272,0.4662,53.2313,-1.3286,0.4699,53.2435,-1.3647,0.4957,53.1499,-1.3846,0.3571,53.3138,-1.5984,0.3599,53.2554,-1.6208,0.3975,53.2647,-1.5323,0.396,53.0789,-1.3134,0.4282,53.0499,-1.3055,0.3866,53.0171,-1.3042,0.2385,53.0324,-1.3289,0.2378,53.104,-1.3038,0.3092,53.099,-1.3199,0.3889,52.8671,-1.0907,0.3946,52.7807,-1.0309,0.3629,52.8281,-1.1027,0.7505,53.1591,-1.1829,0.7696,53.1082,-1.2187,0.769,53.0986,-1.1884,0.55,53.3495,-1.2762,0.6008,53.4356,-1.2282,0.5405,53.4283,-1.2733,0.5828,53.5232,-1.2272,0.559,53.5478,-1.2633,0.4918,53.4791,-1.3173,0.6504,53.543,-1.1792,0.7234,53.5681,-1.1492,0.6343,53.5671,-1.2023,0.6467,53.1624,-0.9293,0.5985,53.1373,-0.9532,0.6019,53.1944,-0.9283,0.8229,53.0689,-1.0855,0.8265,53.0403,-1.0965,0.2832,53.3426,-1.2383,0.2842,53.3433,-1.2377,0.3362,53.3332,-1.2471,0.4522,53.3174,-0.8768,0.41,53.3243,-0.8674,0.4335,53.2518,-0.85,0.4701,53.3739,-0.9191,0.0741,53.2401,-1.1502,0.0,53.2222,-1.1485,0.0,53.1967,-1.0697,0.2574,53.1568,-0.8784,0.2682,53.1393,-0.835,0.1174,53.0884,-0.7475,0.0,53.0968,-0.8063,0.0,53.0705,-0.758,0.2831,53.1303,-0.8109,0.2132,53.1255,-0.8051,0.2204,53.1072,-0.7773,0.7154,53.2867,-1.5046,0.8049,53.266,-1.4987,0.806,53.2013,-1.5435,0.8748,53.1506,-1.516,0.8061,53.1341,-1.5749,0.7893,53.4298,-1.3519,0.7796,53.4024,-1.3806,0.6369,53.5684,-1.2062,0.7244,53.5692,-1.1548,0.6939,53.523,-1.256,0.5402,53.479,-1.3548,0.5599,53.548,-1.2691,0.4926,53.4149,-1.4354,0.4424,53.4579,-1.4217,0.5202,53.3334,-1.5404,0.4623,53.386,-1.5332,0.5124,53.3745,-1.4706,0.6485,53.2231,-1.6156,0.6219,53.3013,-1.5321,0.7095,53.141,-1.6313,0.6442,53.1539,-1.6544,0.7132,53.1788,-1.6158,0.5152,52.9669,-1.7183,0.476,52.9789,-1.7389,0.4768,53.0671,-1.6935,0.4039,53.077,-1.7619,0.3285,53.1653,-1.8384,0.4085,53.1722,-1.7348,0.3872,53.2643,-1.71,0.4701,53.3105,-1.6062,0.3903,53.2244,-1.7146,0.0887,52.9786,-2.133,0.1155,53.169,-2.2493,0.0173,52.967,-2.2435,0.0511,52.9971,-2.2344,0.1312,53.0972,-2.3319,0.149,53.0278,-2.3993,0.1885,53.0549,-2.4901,0.1576,53.0816,-2.4039,0.1913,52.9079,-2.5318,0.2074,52.9904,-2.4909,0.3284,53.0647,-1.6791,0.261,53.0708,-1.7655,0.5028,53.0607,-1.4458,0.4648,53.1595,-1.4378,0.8328,52.9812,-1.5072,0.8335,53.0033,-1.4747,0.7916,52.9892,-1.4991,0.6685,52.9147,-1.6023,0.7285,52.9124,-1.5793,0.7156,52.978,-1.5236,0.5328,52.9584,-1.5808,0.5751,52.9291,-1.598,0.5861,53.0229,-1.4973,0.5771,53.0476,-1.4498,0.5216,53.0355,-1.4914,0.6456,53.0661,-1.4052,0.6222,53.0762,-1.3265,0.7712,53.0473,-1.4487,0.8148,53.0358,-1.4335,0.7925,53.074,-1.3984,0.8924,53.2256,-1.3252,0.9026,53.1629,-1.409,0.8888,53.2252,-1.3823,0.1762,52.8419,-1.0868,0.1696,52.8545,-1.1679,0.2662,52.8681,-1.1728,0.2577,52.7945,-1.0116,0.1712,52.7523,-0.9432,0.1819,52.803,-1.0008,0.2647,52.8407,-1.0883,0.3166,52.7926,-1.009,0.6412,53.2048,-0.866,0.6159,53.1919,-0.8321,0.6712,53.1963,-0.8068,0.4327,53.4063,-1.4095,0.4577,53.4127,-1.3565,0.3501,53.0634,-0.8687,0.4047,53.0898,-0.8952,0.2147,53.0117,-0.8058,0.2877,53.0312,-0.8403,0.2859,53.126,-0.8025,0.3391,52.9942,-0.8884,0.1068,52.8197,-0.8337,0.2149,52.8248,-0.8358,0.2178,52.8976,-0.8368,0.2874,52.9104,-0.8603,0.2908,52.8379,-0.8451,0.3554,52.8532,-0.8906,0.5072,53.3427,-1.1142,0.6368,53.3212,-1.2401,0.5512,53.3143,-1.2588,0.7329,53.5424,-1.1363,0.8283,53.4713,-1.1278,0.8073,53.3223,-1.1759,0.7268,53.3177,-1.2211,0.7691,53.0908,-0.99,0.7804,53.0536,-0.9833,0.9161,53.1654,-1.1093,0.8566,53.1591,-1.1183,0.4268,52.8765,-0.9894,0.4123,52.8675,-0.9412,0.4044,52.8079,-1.0171,0.4608,52.9704,-0.9518,0.3988,53.0114,-0.9222,0.4021,52.9418,-0.9234,0.4795,52.9453,-1.0142,0.5026,52.9837,-0.9595,0.9012,53.2091,-1.2576,0.814,53.1693,-1.2623,0.3245,52.9293,-1.3505,0.3041,52.8946,-1.3447,0.1705,52.9288,-1.3656,0.1673,53.0235,-1.3137,0.4167,52.9089,-1.0853,0.5195,52.9474,-1.0273,0.4775,52.9693,-1.0701,0.4944,53.0261,-1.066,0.8014,53.018,-1.1226,0.74,53.0489,-1.13,0.7486,53.0584,-1.1566,0.7148,53.0846,-1.1645,0.6649,53.1181,-1.1465,0.421,53.1427,-1.3262,0.5313,53.0522,-1.3098,0.5192,53.0354,-1.2472,0.4742,53.072,-1.3193,0.6183,53.0768,-1.3159,0.4436,53.3303,-1.3808,0.4503,53.2524,-1.41,0.3699,53.0734,-1.6183,0.4135,53.0655,-1.567,0.4287,53.1686,-1.4991,0.064,53.2645,-1.8564,0.1402,53.2587,-1.8307,0.3616,53.1579,-1.3138,0.9236,53.114,-1.0937,0.9781,53.1027,-1.1217,0.9761,53.1214,-1.0919,0.494,52.891,-1.6876,-0.9167,53.0887,-1.1217,-0.9781,53.1027,-1.1222,-0.9315,53.1259,-1.1606,0.0,52.9876,-2.3843,-0.0665,52.9433,-2.4037,-0.3975,53.2647,-1.5325,-0.4053,53.3165,-1.5194,-0.4287,53.326,-1.4213,-0.4662,53.2313,-1.3288,-0.4699,53.2435,-1.365,-0.4794,53.3321,-1.3257,-0.6931,53.1004,-1.2535,-0.608,53.0739,-1.2267,-0.6738,53.1106,-1.2125,-0.4742,53.072,-1.3198,-0.5313,53.0522,-1.3104,-0.5469,53.0719,-1.3543,-0.7562,53.1193,-1.2501,-0.7546,53.1411,-1.2808,-0.7047,53.1167,-1.2912,-0.72,52.9177,-1.0262,-0.6946,52.9812,-1.0213,-0.6627,52.9717,-1.0037,-0.5396,52.9352,-1.0239,-0.5618,52.9821,-1.0204,-0.5383,52.9981,-1.0371,-0.3866,53.0171,-1.3048,-0.3532,52.9739,-1.3248,-0.3724,52.9248,-1.2488,-0.3458,52.8967,-1.2679,-0.3041,52.8946,-1.3452,-0.305,52.8856,-1.2747,-0.2802,52.8794,-1.3233,-0.3496,52.8777,-1.1867,-0.3141,52.8688,-1.1863,-0.3629,52.8281,-1.1034,-0.4123,52.8671,-0.9431,-0.4044,52.8076,-1.0186,-0.3596,52.7584,-0.9241,-0.8859,53.1008,-1.1613,-0.8373,53.0825,-1.1817,-0.8178,53.0341,-1.1495,-0.6373,52.8963,-1.0076,-0.592,52.9081,-0.9993,-0.644,52.8961,-0.9842,-0.5568,52.9897,-0.9518,-0.5195,52.9474,-1.0281,-0.5363,52.9928,-0.9571,-0.6712,53.1963,-0.807,-0.669,53.1665,-0.8134,-0.6138,53.1695,-0.8308,-0.5059,53.0361,-0.9424,-0.5055,53.1128,-0.9016,-0.5363,53.117,-0.8944,-0.4608,52.9704,-0.9525,-0.4268,52.8765,-0.9901,-0.1712,52.7239,-0.9595,-0.1666,52.6937,-0.9265,-0.2676,52.7022,-0.9573,-0.7738,53.0115,-1.0127,-0.7804,53.0536,-0.9839,-0.7876,53.0734,-1.0353,-0.8566,53.1591,-1.1186,-0.8505,53.1047,-1.0892,-0.8152,53.1442,-1.1251,-0.7723,53.0623,-0.9155,-0.7691,53.0908,-0.9905,-0.7268,53.3177,-1.2212,-0.7059,53.3751,-1.2042,-0.7957,53.3902,-1.162,-0.6248,53.36,-1.2472,-0.7446,53.2565,-1.193,-0.6599,53.2882,-1.2336,-0.5072,53.3427,-1.1142,-0.4974,53.3479,-1.0511,-0.4614,53.4002,-1.0363,-0.5343,53.2902,-1.085,-0.5593,53.3061,-1.1203,-0.6128,53.2585,-1.1561,-0.4335,53.2518,-0.8501,-0.4659,53.1716,-0.875,-0.4208,53.1636,-0.8631,-0.2891,52.9718,-0.8545,-0.3391,52.9941,-0.8889,-0.3406,52.9217,-0.8871,-0.2908,52.8188,-0.8601,-0.2149,52.7951,-0.8553,-0.2178,52.8762,-0.8462,-0.4712,53.244,-0.8892,-0.4522,53.3174,-0.8768,-0.4701,53.3739,-0.9191,-0.4691,53.3893,-0.9773,-0.5033,53.338,-0.9954,-0.4894,53.4153,-1.312,-0.4918,53.4791,-1.3173,-0.5372,53.5001,-1.2673,-0.6002,53.2067,-0.9012,-0.6412,53.2048,-0.8663,-0.6159,53.1919,-0.8323,-0.2662,52.8681,-1.1734,-0.2647,52.8375,-1.09,-0.2577,52.7799,-1.0207,-0.2705,52.7434,-0.9796,-0.3166,52.7847,-1.0165,0.0,52.8232,-1.0882,0.0,52.7984,-1.0089,-0.1105,52.7878,-1.0123,-0.8082,53.1193,-1.3404,-0.7925,53.074,-1.3991,-0.7508,53.0737,-1.396,-0.9026,53.1629,-1.4093,-0.9142,53.0827,-1.4432,-0.8807,53.0662,-1.3909,-0.9004,52.9789,-1.5372,-0.9066,52.9186,-1.5311,-0.9259,52.9906,-1.4598,-0.7916,52.9892,-1.4999,-0.7712,53.0473,-1.4494,-0.8148,53.0358,-1.4343,-0.7028,53.1041,-1.2926,-0.6456,53.0661,-1.4058,-0.5463,53.0721,-1.3674,-0.5771,53.0476,-1.4504,-0.5216,53.0355,-1.492,-0.5114,53.0032,-1.5252,-0.4592,52.9833,-1.5458,-0.9144,52.9932,-1.4575,-0.9031,52.9184,-1.5239,-0.8328,52.9812,-1.5081,-0.4304,52.929,-1.6243,-0.4605,52.9084,-1.6555,-0.405,52.9239,-1.6937,-0.1719,52.975,-1.9301,-0.2141,52.9803,-1.8714,-0.1841,52.9604,-1.9681,-0.0127,52.9715,-2.1189,0.0,52.9979,-2.1252,0.0,53.0236,-2.0423,-0.115,52.9233,-2.5631,-0.0668,52.9488,-2.51,-0.1007,52.915,-2.5259,-0.149,53.0278,-2.3994,-0.1576,53.0816,-2.404,-0.1885,53.0549,-2.4902,-0.1288,53.1435,-2.4121,-0.1783,53.1285,-2.4916,-0.1312,53.0972,-2.3319,-0.1103,53.0367,-2.331,-0.0511,52.9971,-2.2344,-0.1243,53.1855,-2.1453,-0.1155,53.169,-2.2494,-0.138,53.1041,-2.2345,-0.216,53.158,-2.0298,-0.1609,53.1202,-2.1468,-0.2304,53.1152,-2.0294,-0.0624,53.2643,-2.0504,-0.1015,53.3006,-1.9594,-0.0636,53.3151,-1.9563,-0.3872,53.2643,-1.7101,-0.3134,53.2044,-1.8347,-0.3903,53.2244,-1.7148,-0.4155,53.3596,-1.6067,-0.4701,53.3105,-1.6064,-0.4452,53.376,-1.5541,-0.4834,53.251,-1.6212,-0.4039,53.077,-1.7623,-0.4085,53.1722,-1.7351,-0.3285,53.1653,-1.8386,-0.476,52.9789,-1.7395,-0.5152,52.9669,-1.719,-0.4768,53.0671,-1.694,-0.4861,53.1616,-1.6571,-0.5415,53.2777,-1.5845,-0.7095,53.141,-1.6317,-0.7132,53.1788,-1.6161,-0.6442,53.1539,-1.6548,-0.6219,53.3013,-1.5323,-0.7262,53.2505,-1.5634,-0.7154,53.2867,-1.5047,-0.5124,53.3745,-1.4706,-0.5202,53.3334,-1.5405,-0.5659,53.3449,-1.4847,-0.4926,53.4149,-1.4354,-0.4994,53.449,-1.4109,-0.5015,53.5075,-1.3444,-0.5867,53.5085,-1.3099,-0.5599,53.548,-1.2691,-0.6369,53.5684,-1.2062,-0.653,53.5347,-1.272,-0.6939,53.523,-1.256,-0.8539,53.3719,-1.3942,-0.9146,53.4247,-1.2857,-0.7893,53.4298,-1.3519,-0.856,53.3571,-1.3883,-0.7905,53.3059,-1.4648,-0.8049,53.266,-1.4988,-0.8748,53.1506,-1.5164,-0.8706,53.2147,-1.4728,-0.806,53.2013,-1.5438,-0.2682,53.1393,-0.8352,-0.2831,53.1303,-0.8111,-0.2204,53.1072,-0.7775,-0.107,53.1055,-0.8046,-0.1174,53.0883,-0.7476,-0.3306,53.1651,-0.879,-0.2574,53.1568,-0.8786,-0.3128,53.1932,-0.9209,-0.0741,53.2401,-1.1503,-0.0807,53.198,-1.0736,-0.41,53.3243,-0.8674,-0.6173,53.1782,-1.0996,-0.696,53.1504,-1.125,-0.6941,53.1431,-1.1009,-0.2823,53.3423,-1.2385,-0.3371,53.2421,-1.2865,-0.2832,53.3426,-1.2384,-0.6059,53.1532,-1.097,-0.5609,53.169,-1.0629,-0.9635,53.1924,-1.1472,-0.9432,53.1607,-1.1756,-0.9751,53.148,-1.1627,-0.8684,53.0743,-1.1178,-0.8505,53.0606,-1.1366,-0.8265,53.0403,-1.0972,-0.6467,53.1624,-0.9297,-0.657,53.193,-0.9038,-0.6019,53.1944,-0.9286,-0.6504,53.543,-1.1792,-0.6343,53.5671,-1.2023,-0.7234,53.5681,-1.1492,-0.4327,53.4063,-1.4095,-0.4377,53.4555,-1.4178,-0.559,53.5478,-1.2633,-0.5828,53.5232,-1.2272,-0.55,53.3495,-1.2763,-0.5405,53.4283,-1.2733,-0.6008,53.4356,-1.2282,-0.769,53.0986,-1.189,-0.7505,53.1591,-1.1834,-0.7476,53.1293,-1.169,-0.3946,52.78,-1.0329,-0.3889,52.8671,-1.0914,-0.3092,53.099,-1.3203,-0.2385,53.0324,-1.3292,-0.3183,53.0234,-1.327,-0.396,53.0789,-1.3138,-0.4282,53.0499,-1.3061,-0.3571,53.3138,-1.5985,-0.5138,53.1397,-1.3474,-0.4957,53.1499,-1.3851,-0.3415,53.1556,-0.8418,-0.2792,53.2977,-1.133,-0.3395,53.3434,-1.1202,-0.3713,53.3544,-1.0273,-0.4015,53.3244,-0.8692,-0.3579,53.2449,-0.8949,-0.3622,53.3,-0.9224,-0.6819,53.2014,-0.8484,-0.7009,53.185,-0.8809,-0.753,53.1612,-0.8766,-0.1774,52.9645,-2.6186,-0.1851,52.927,-2.5807,-0.2024,52.9715,-2.5812,-0.1913,52.9079,-2.532,-0.1024,53.0481,-2.231,-0.1237,52.9644,-2.4258,-0.0611,52.9826,-2.3337,-0.0673,52.9715,-2.0314,-0.1346,52.9468,-2.037,-0.2691,52.9731,-1.792,-0.2956,52.9295,-1.8057,-0.1657,53.2186,-2.0381,-0.1342,53.2325,-2.0419,-0.0608,53.1804,-2.394,-0.0892,53.1654,-2.4665,-0.635,53.1273,-1.1632,-0.5694,53.0579,-1.2129,-0.6924,53.005,-1.0191,-0.6699,53.0157,-0.9922,-0.7193,52.9916,-1.0541,-0.5115,53.0385,-1.1449,-0.4944,53.0261,-1.0666,-0.5262,53.1068,-1.0419,-0.7141,53.115,-1.2489,-0.7063,53.1623,-1.2132,-0.703,53.1285,-1.1437,-0.7448,53.1478,-1.1522,-0.5475,53.17,-1.0171,-0.553,53.0877,-1.0137,-0.6642,53.1099,-0.9468,-0.6304,53.127,-0.9499,-0.6145,53.0459,-0.9697,-0.7314,53.0815,-1.0761,-0.7456,53.0986,-1.0641,-0.7421,53.059,-1.0071,-0.6806,53.1236,-1.1081,-0.666,53.1023,-1.1137,-0.5998,52.9563,-0.9932,-0.6779,53.0624,-0.9778,-0.6995,53.0989,-0.9501,-0.7021,53.0468,-0.9928,-0.7356,53.1666,-1.2043,-0.7215,53.1844,-1.199,-0.7469,53.1905,-1.1885,-0.6769,53.137,-1.1608,-0.6629,53.1595,-1.1449,-0.6851,53.1363,-1.2047,-0.4968,53.0199,-1.1737,-0.4572,53.0106,-1.2361,-0.4521,52.9749,-1.1572,-0.4757,53.0034,-1.1502,-0.7935,53.13,-1.3333,-0.6005,53.3737,-1.4245,-0.6154,53.3303,-1.4908,-0.6426,53.3614,-1.4416,-0.5439,53.16,-1.6516,-0.5438,53.1963,-1.6293,-0.146,53.1553,-2.4767,-0.1176,53.1504,-2.5389,-0.1706,53.1515,-2.5392,-0.1319,52.9314,-2.6011,-0.3821,52.9921,-1.6572,-0.3947,52.9609,-1.6761,-0.3415,52.9605,-1.7183,-0.2063,53.0148,-1.8495,-0.2622,53.0097,-1.779,-0.0819,52.9891,-1.9602,-0.0155,53.039,-1.9811,-0.1005,53.0228,-1.9274,-0.1329,53.0762,-1.8818,-0.1509,53.0178,-1.8941,-0.637,52.9674,-1.7023,-0.5236,52.8653,-1.6663,-0.5178,53.0365,-1.1971,-0.5192,53.0354,-1.2478,-0.522,53.2484,-0.9464,-0.4859,53.2712,-0.9172,-0.503,53.311,-0.9523,-0.2171,53.2597,-1.1488,-0.2821,53.3421,-1.2273,-0.5374,53.0433,-0.9263,-0.2186,53.3154,-1.7743,-0.2986,53.3431,-1.6699,-0.29,53.3052,-1.6872,-0.4966,53.5062,-1.3396,-0.8934,53.4897,-1.2242,-0.8947,53.486,-1.2177,-0.8203,53.5428,-1.171,-0.5313,52.8553,-1.6545,-0.5106,52.8649,-1.6581,-0.4432,52.9293,-1.6197,-0.8763,53.062,-1.382,-0.1314,53.3812,-1.8037,-0.2411,53.3812,-1.7537,-0.136,53.3278,-1.8194,-0.3122,53.4002,-1.6678,-0.3146,53.401,-1.6696,-0.3629,53.4137,-1.5929,-0.3404,53.1737,-0.8822,-0.3247,53.2003,-0.918,-0.9198,53.3957,-1.2261,-0.9078,53.3652,-1.1748,-0.8676,53.427,-1.1532,-0.9236,53.114,-1.0941,-0.8624,53.1222,-1.1929,-0.8495,53.1416,-1.2161,-0.7696,53.1082,-1.2193,-0.9177,53.2398,-1.1509,-0.9129,53.1826,-1.2073,-1.0357,53.1109,-1.1301,-0.6875,53.2549,-1.198,-0.9163,53.284,-1.1579,-0.9177,53.2396,-1.1355,-0.5745,53.3058,-1.1652,-0.591,53.2982,-1.2218,-0.5659,53.2271,-1.0875,-0.5702,53.2162,-1.0398,-0.5521,53.2442,-1.0325,-0.9036,53.3402,-1.1296,-0.6728,53.0968,-1.1819,-0.4573,53.0999,-1.3236,-0.421,53.1427,-1.3266,-0.4101,53.4271,-1.5106,-0.3713,53.415,-1.5723,-0.3541,53.1521,-0.8384,-0.3516,53.1671,-0.8468,-0.3782,53.2461,-0.8574,-0.383,53.2436,-0.8484,-0.3377,53.3703,-1.1653,-0.3933,53.3986,-1.1035,-0.3616,53.1579,-1.3141,-0.508,53.1718,-0.8933,-0.464,53.1057,-0.9067,-0.5718,53.0644,-1.3164,-0.6183,53.0768,-1.3166,-0.3582,52.735,-0.9727,-0.3349,52.7368,-0.9939,-0.3653,52.7724,-1.0318,-0.3118,52.8244,-1.0999,-0.2935,53.2683,-1.0623,-0.2986,53.2476,-1.0069,-0.2883,53.2389,-1.0093,-0.0525,53.0922,-1.9239,-0.0619,53.2361,-2.1476,-0.4125,52.9849,-1.6033,-0.5347,53.0763,-1.3643,-0.5654,52.9989,-1.0152,-0.4775,52.9693,-1.0708,-0.2442,53.3824,-1.7587,-0.1928,53.3042,-1.8885,-0.237,53.2643,-1.9074,-0.0818,53.3581,-1.8866,0.0,53.3678,-1.9007,0.0,53.3381,-1.9669,-0.0576,53.165,-1.8943,-0.0628,53.3302,-1.8343,-0.064,53.2645,-1.8564,0.0,53.2664,-1.8639,-0.3245,52.9293,-1.351,-0.2838,52.7019,-0.9288,-0.2388,52.8732,-1.3652,-0.577,53.0795,-1.15,-0.5821,53.1125,-1.1226,-0.6583,53.0894,-1.1261,-0.6666,53.0924,-1.2818,-0.5438,53.2414,-0.9786,-0.5293,53.2714,-1.0268,-0.8545,53.3918,-1.1391,-0.8283,53.4713,-1.1278,-0.2842,53.3433,-1.2377,-0.5985,53.1373,-0.9536,-0.2859,53.126,-0.8027,-0.4196,53.4323,-1.4929,-0.4623,53.386,-1.5332,-0.5147,53.3244,-1.5414,-0.8223,53.5107,-1.1457,-0.8798,53.4536,-1.1823,-0.7144,53.2129,-1.1862,-0.6852,53.2092,-1.1949,-0.6478,53.2564,-1.1888,-0.5056,53.3228,-1.2087,-0.5561,53.2108,-0.9928,-0.3965,53.3671,-1.1909,-0.4467,53.3561,-1.1992,-0.4332,53.396,-1.1153,-1.0529,53.1787,-1.0974,-1.0375,53.1346,-1.0967,-0.9761,53.1214,-1.0922,-0.9136,53.2795,-1.1366,-0.8927,53.2297,-1.1369,-0.7529,53.2171,-1.1751,-0.6368,53.3212,-1.2402,-0.5512,53.3143,-1.259,-0.9792,53.2092,-1.1226,-0.8665,53.3314,-1.1487,-0.9012,53.2091,-1.2578,-0.6485,53.2231,-1.6159,-0.1413,53.3841,-1.8075,-0.0751,53.3876,-1.8181,-0.7141,52.8636,-1.6437,-0.7204,52.8512,-1.6262,-0.8344,52.8701,-1.5881,-0.7981,53.1283,-1.3439,-0.9186,53.4192,-1.2762,-0.7244,53.5692,-1.1548,-0.819,53.5436,-1.1765,-0.5547,53.5474,-1.2661,-0.5732,53.183,-0.8655,-0.5713,53.1705,-0.864,-0.5391,53.1719,-0.8874,-0.74,53.0489,-1.1307,-0.6649,53.1181,-1.1471,-0.7314,53.0395,-1.104,-0.7823,53.009,-1.0931,-0.8002,53.0365,-1.0582,-0.8155,53.0883,-1.0619,-0.8229,53.0689,-1.0861,-0.7807,53.1319,-1.1004,-0.247,52.8853,-1.2777,-0.494,52.891,-1.6884,-0.0152,53.0057,-2.0296,-0.2074,52.9904,-2.4911,-0.2261,53.0561,-2.5687,-0.0588,53.1761,-2.4564,-0.7038,53.3457,-1.4717,-0.5842,53.4469,-1.3662,-0.5402,53.479,-1.3548,-0.6666,53.5119,-1.2833,-0.7154,53.4847,-1.2866,-0.814,53.1693,-1.2627,-0.7486,53.0584,-1.1573,-0.7148,53.0846,-1.1651,-0.4022,52.9397,-1.1666,-0.4167,52.9089,-1.086,-0.6961,53.1782,-1.2095,-0.6721,53.1696,-1.1813,-0.6651,53.2006,-1.1623,-0.7514,53.1727,-1.1691,-0.7463,52.9611,-1.0398,-0.5288,53.1097,-1.1024,-0.6399,53.2011,-1.1265,-0.77,53.1825,-1.1524,-0.76,53.1023,-1.0604,-0.7647,53.121,-0.9266,-0.7221,53.0824,-0.9614,-0.5701,53.1948,-0.9501,-0.5652,53.154,-0.9767,-0.7302,53.0387,-1.023,-0.0631,53.1797,-2.3336,0.0,53.2017,-2.3738,-0.1642,53.0445,-2.1354,-0.1068,53.1171,-2.5691,0.0,53.0899,-2.525,-0.0665,52.9383,-2.4597,-0.4253,53.3957,-0.9704,-0.424,53.3755,-0.9168,-0.2367,53.1813,-0.9538,-0.4222,53.2331,-1.3016,-0.4865,53.2974,-1.2977,-0.3599,53.2554,-1.621,-0.3482,53.1656,-1.641,-0.2801,53.1669,-1.7463,-0.4262,53.2594,-1.4528,-0.4287,53.1686,-1.4994,-0.7669,52.9991,-0.9673,-0.696,52.884,-0.9691,-0.7316,52.9356,-0.8978,-0.4471,52.9391,-1.0783,-0.4795,52.9453,-1.0149,-0.0801,52.705,-0.8729,-0.0948,52.7368,-0.8516,-0.2025,52.7235,-0.8591,-0.9135,53.2755,-1.2192,0.0,53.1458,-2.4493,-1.057,53.1651,-1.1058,-0.3362,53.3332,-1.2472,-0.7653,53.1423,-1.125,-0.3699,53.0734,-1.6187,-0.4019,53.4001,-1.1125,-0.343,53.3717,-1.175,-0.0675,53.2811,-1.2264,-0.1439,53.2417,-1.1511,-0.1518,53.2096,-1.0708,-0.3267,53.305,-1.0411,-0.1679,53.1669,-0.9531,-0.0949,53.1376,-0.8801,-0.0859,53.1667,-0.9497,-0.2132,53.1255,-0.8053,-0.4388,52.9201,-1.7159,-0.3808,52.9296,-1.7641,-0.908,53.2876,-1.291,-0.8888,53.2252,-1.3825,-0.9042,53.2903,-1.3472,-0.8542,53.2836,-1.4336,-0.6227,53.3141,-1.5326,-0.7101,52.961,-1.6683,-0.8397,52.8756,-1.5973,-0.7796,53.4024,-1.3806,-0.7456,53.3739,-1.4311,-0.7737,53.4657,-1.2979,-0.3399,53.0862,-1.8638,-0.3176,52.9909,-1.8963,-0.4083,52.986,-1.7976,-0.359,53.3331,-1.6906,0.0,53.2537,-2.1489,-0.2668,53.1781,-1.944,-0.2654,53.019,-1.9826,-0.1158,53.1472,-2.3304,-0.1815,53.1494,-2.5732,-0.1591,53.0188,-2.6259,-0.261,53.0708,-1.7658,-0.3284,53.0647,-1.6795,-0.4648,53.1595,-1.4382,-0.5861,53.0229,-1.498,-0.6222,53.0762,-1.3271,-0.8365,53.1631,-1.349};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getc6_Coord_6_79_point_2()
		{
			double[] value = {-0.8924,53.2256,-1.3254,-0.0928,52.8632,-1.2629,-0.1696,52.8541,-1.1692,-0.1655,52.8783,-1.2733,-0.0959,52.8504,-1.165,-0.4047,53.0898,-0.8956,-0.1068,52.7957,-0.8499,-0.1145,52.8701,-0.8307,-0.2946,52.7396,-0.8831,-0.2874,52.8995,-0.8664,-0.3554,52.8465,-0.898,-0.7329,53.5424,-1.1363,-0.8073,53.3223,-1.1759,-0.9161,53.1654,-1.1096,-0.0936,52.733,-0.9516,-0.3988,53.0114,-0.9227,-0.4612,53.032,-0.932,-0.7269,53.1535,-0.7879,-0.7178,53.1378,-0.9175,-0.3367,52.8262,-1.1016,-0.2458,52.8933,-1.3854,-0.1673,53.0235,-1.3139,-0.1705,52.9288,-1.3659,-0.8014,53.018,-1.1233,-0.619,53.0732,-1.2735,-0.4436,53.3303,-1.3809,-0.4503,53.2524,-1.4103,-0.4135,53.0655,-1.5675,-0.2907,53.1689,-1.2963,0.0611,52.9826,-2.3337,0.4287,53.326,-1.4212,0.4053,53.3165,-1.5193,0.4865,53.2974,-1.2975,0.4794,53.3321,-1.3256,0.6738,53.1106,-1.2119,0.608,53.0739,-1.2261,0.4022,52.9397,-1.166,0.4073,52.964,-1.2406,0.7562,53.1193,-1.2496,0.72,52.9177,-1.0252,0.6826,52.8844,-1.015,0.5396,52.9352,-1.0231,0.3724,52.9248,-1.2482,0.3183,53.0234,-1.3266,0.3141,52.8688,-1.1857,0.3496,52.8777,-1.1861,0.3596,52.7679,-0.9117,0.8178,53.0341,-1.1488,0.6373,52.8963,-1.0067,0.644,52.8961,-0.9832,0.5363,52.9928,-0.9565,0.6138,53.1695,-0.8305,0.669,53.1665,-0.8131,0.5363,53.117,-0.894,0.5055,53.1128,-0.9012,0.5059,53.0361,-0.9419,0.3406,52.925,-0.8841,0.2946,52.7625,-0.8621,0.3582,52.7427,-0.9623,0.1666,52.7241,-0.907,0.2705,52.7634,-0.9645,0.7876,53.0734,-1.0347,0.7738,53.0115,-1.012,0.8152,53.1442,-1.1246,0.7723,53.0623,-0.9149,0.7647,53.121,-0.9261,0.7957,53.3902,-1.162,0.7059,53.3751,-1.2042,0.6248,53.36,-1.2472,0.6599,53.2882,-1.2334,0.4614,53.4002,-1.0363,0.5863,53.2478,-1.1098,0.4208,53.1636,-0.8628,0.2891,52.9754,-0.8534,0.0948,52.7603,-0.8348,0.0,52.8212,-0.8412,0.1088,52.944,-0.8012,0.2125,52.961,-0.8223,0.4894,53.4153,-1.312,0.5372,53.5001,-1.2673,0.6002,53.2067,-0.901,0.7508,53.0737,-1.3953,0.8365,53.1631,-1.3486,0.5463,53.0721,-1.3668,0.4985,53.0575,-1.449,0.4592,52.9833,-1.5451,0.7898,52.9463,-1.5483,0.405,52.9239,-1.6931,0.4605,52.9084,-1.6547,0.1719,52.975,-1.9298,0.1841,52.9604,-1.9678,0.0152,53.0057,-2.0296,0.1591,53.0188,-2.6258,0.1815,53.1494,-2.5732,0.1068,53.1171,-2.5691,0.2261,53.0561,-2.5686,0.2654,53.019,-1.9823,0.2113,53.243,-1.9583,0.237,53.2643,-1.9073,0.2668,53.1781,-1.9438,0.0619,53.2361,-2.1476,0.0,53.2958,-2.0512,0.4155,53.3596,-1.6067,0.3399,53.0862,-1.8634,0.4083,52.986,-1.797,0.3176,52.9909,-1.8959,0.5415,53.2777,-1.5843,0.4834,53.251,-1.621,0.5867,53.5085,-1.3099,0.7737,53.4657,-1.2979,0.9146,53.4247,-1.2857,0.7456,53.3739,-1.4311,0.7101,52.961,-1.6675,0.8397,52.8756,-1.5962,0.7141,52.8636,-1.6426,0.6227,53.3141,-1.5325,0.7038,53.3457,-1.4717,0.8706,53.2147,-1.4726,0.9135,53.2755,-1.2192,0.908,53.2876,-1.2909,0.107,53.1055,-0.8045,0.0807,53.198,-1.0735,0.1518,53.2096,-1.0707,0.1439,53.2417,-1.151,0.0675,53.2811,-1.2264,0.1432,53.2949,-1.2287,0.3821,52.9921,-1.6567,0.3965,53.3671,-1.1908,0.8155,53.0883,-1.0613,0.0588,53.1761,-2.4564,0.1843,52.7241,-0.872,0.2025,52.7564,-0.8349,0.4471,52.9391,-1.0776,0.7669,52.9991,-0.9665,0.7316,52.9356,-0.8969,0.696,52.884,-0.9681,0.3532,52.9739,-1.3242,0.3458,52.8967,-1.2673,0.3892,53.1692,-1.5663,0.3482,53.1656,-1.6408,0.2819,53.2446,-1.7157,0.2801,53.1669,-1.7461,0.4475,53.3004,-1.2585,0.2911,53.2138,-0.958,0.2367,53.1813,-0.9536,0.4612,53.032,-0.9315,0.6819,53.2014,-0.8482,0.657,53.193,-0.9035,0.1455,52.9751,-2.6134,0.1007,52.915,-2.5258,0.1642,53.0445,-2.1353,0.1609,53.1202,-2.1467,0.0,53.2097,-2.3186,0.0631,53.1797,-2.3336,0.6583,53.0894,-1.1255,0.7314,53.0395,-1.1033,0.7063,53.1623,-1.2128,0.6821,53.15,-0.9205,0.77,53.1825,-1.152,0.6651,53.2006,-1.162,0.6399,53.2011,-1.1262,0.5288,53.1097,-1.1019,0.5609,53.169,-1.0626,0.6304,53.127,-0.9494,0.7463,52.9611,-1.0389,0.5659,53.2271,-1.0872,0.5293,53.2714,-1.0266,0.6961,53.1782,-1.2091,0.8495,53.1416,-1.2157,0.4521,52.9749,-1.1566,0.5469,53.0719,-1.3537,0.5718,53.0644,-1.3158,0.7285,52.9242,-1.013,0.6666,53.5119,-1.2833,0.653,53.5347,-1.272,0.7466,53.5062,-1.2622,0.7154,53.4847,-1.2866,0.5842,53.4469,-1.3662,0.5607,53.4201,-1.3966,0.4994,53.449,-1.4109,0.6426,53.3614,-1.4416,0.3261,52.934,-1.8169,0.3808,52.9296,-1.7635,0.8002,53.0365,-1.0575,0.7823,53.009,-1.0923,0.5391,53.1719,-0.8871,0.5713,53.1705,-0.8637,0.5732,53.183,-0.8652,0.4452,53.376,-1.554,0.5147,53.3244,-1.5413,0.7204,52.8512,-1.6251,0.9259,52.9906,-1.4589,0.1413,53.3841,-1.8074,0.1281,53.3418,-1.8812,0.0818,53.3581,-1.8866,0.8545,53.3918,-1.1391,0.8665,53.3314,-1.1487,0.9198,53.3957,-1.2261,0.9028,53.1414,-1.1838,0.8927,53.2297,-1.1368,0.9031,53.2004,-1.1239,0.6875,53.2549,-1.1978,0.7144,53.2129,-1.1859,0.8547,53.1896,-1.1341,1.0375,53.1346,-1.0964,0.4467,53.3561,-1.1991,0.4332,53.396,-1.1153,0.5438,53.2414,-0.9783,0.5561,53.2108,-0.9925,0.5702,53.2162,-1.0396,0.5056,53.3228,-1.2086,0.6478,53.2564,-1.1886,0.3415,53.1556,-0.8416,0.4222,53.2331,-1.3013,0.3883,53.3231,-1.2565,0.2823,53.3423,-1.2384,0.5246,53.2565,-0.9745,0.5521,53.2442,-1.0323,0.7121,53.1162,-1.1551,0.2388,52.8732,-1.3647,0.0628,53.3302,-1.8342,0.0525,53.0922,-1.9238,0.0576,53.165,-1.8942,0.0,53.3935,-1.8188,0.0,53.39,-1.8151,0.0593,53.3849,-1.8161,0.2442,53.3824,-1.7587,0.2806,53.2945,-1.8109,0.3371,53.2421,-1.2863,0.2912,53.2361,-1.2719,0.1928,53.3042,-1.8884,0.1314,53.3812,-1.8037,0.0751,53.3876,-1.8181,0.0636,53.3151,-1.9563,0.0,53.1635,-1.9092,0.0,53.3299,-1.8323,0.2802,52.8794,-1.3228,0.4712,53.244,-0.889,0.343,53.3717,-1.175,0.3804,53.2436,-1.2934,0.6852,53.2092,-1.1946,0.9023,53.2796,-1.1326,0.8505,53.0606,-1.1359,0.9036,53.3402,-1.1296,1.057,53.1651,-1.1056,0.5493,53.1925,-0.8927,0.247,52.8853,-1.2772,0.305,52.8856,-1.2741,0.4388,52.9201,-1.7152,0.0759,52.9899,-2.5588,0.1783,53.1285,-2.4916,0.7315,53.4352,-1.3411,0.5837,53.0668,-0.9911,0.7221,53.0824,-0.9609,0.7178,53.1378,-0.9171,0.0608,53.1804,-2.394,0.1857,53.101,-2.6124,0.7009,53.185,-0.8806,0.4262,53.2594,-1.4526,0.0801,52.7253,-0.8585,0.0,53.2761,-1.2211,0.3267,53.305,-1.041,0.9042,53.2903,-1.3472,0.714,53.3082,-1.5086,0.359,53.3331,-1.6905,0.8304,52.9607,-1.6039,0.3134,53.2044,-1.8345,0.2241,53.0222,-2.0383,0.2266,53.1118,-2.58,0.0668,52.9488,-2.51,0.5114,53.0032,-1.5245,0.9004,52.9789,-1.5364,0.9142,53.0827,-1.4426,0.1145,52.8899,-0.8216,0.0,52.7466,-0.8532,0.2676,52.7256,-0.9389,0.2838,52.7251,-0.9084,0.7104,53.0788,-0.8143,0.7526,53.0883,-0.8107,0.7269,53.1535,-0.7876,0.3349,52.746,-0.9831,0.2496,52.938,-1.3617,-0.3892,53.1692,-1.5666,-0.4073,52.964,-1.2412,-0.2496,52.938,-1.3621,-0.5026,52.9837,-0.9601,-0.4021,52.9418,-0.924,-0.0761,52.7053,-0.905,-0.804,53.2634,-1.1715,-0.7699,53.4653,-1.1436,-0.5246,53.2565,-0.9747,-0.3501,53.0634,-0.8691,-0.4577,53.4127,-1.3565,-0.445,53.0587,-1.5111,-0.3665,52.9192,-1.7286,-0.3383,52.9962,-1.7079,-0.2266,53.1118,-2.58,-0.1857,53.101,-2.6124,-0.2241,53.0222,-2.0386,-0.2113,53.243,-1.9584,-0.787,53.3219,-1.4667,-0.8304,52.9607,-1.6048,-0.714,53.3082,-1.5087,-0.1891,53.1484,-0.8782,-0.1843,52.6918,-0.8946,-0.7285,52.9242,-1.0139,-0.2819,53.2446,-1.7158,-0.4475,53.3004,-1.2587,-0.5171,53.2352,-0.9173,-0.2911,53.2138,-0.9582,-0.1455,52.9751,-2.6134,-0.5837,53.0668,-0.9917,-0.7315,53.4352,-1.3411,-0.7466,53.5062,-1.2622,-0.5607,53.4201,-1.3966,-0.0759,52.9899,-2.5589,-0.3261,52.934,-1.8174,-0.5493,53.1925,-0.893,-0.1281,53.3418,-1.8812,-0.9028,53.1414,-1.1842,-0.9031,53.2004,-1.1241,-0.9023,53.2796,-1.1326,-0.9845,53.172,-1.1035,-0.2806,53.2945,-1.811,-0.5863,53.2478,-1.11,-0.7665,53.1244,-0.8667,-0.3197,53.2066,-0.9274,-1.0511,53.1494,-1.1249,-0.5647,53.0427,-0.9098,-0.2107,53.3233,-1.2258,-0.6562,52.8625,-1.668,-0.6459,53.0536,-0.9751,-0.7307,53.1464,-1.125,-0.2393,52.9454,-1.9039,-0.0891,53.0515,-2.5751,-0.7517,53.1616,-0.8407,-0.4153,53.3742,-0.9178,-0.3021,53.2233,-0.9559,-0.3272,53.254,-0.941,-0.3804,53.2436,-1.2936,-0.2378,53.104,-1.3041,-0.6929,52.9444,-0.8953,-0.2912,53.2361,-1.2721,-0.5393,53.3973,-1.4223,-0.8061,53.1341,-1.5754,-0.5452,53.0666,-1.6882,-0.0887,52.9786,-2.1331,-0.8335,53.0033,-1.4755,-0.1012,52.8259,-1.0873,-0.7104,53.0788,-0.8148,-0.7526,53.0883,-0.8112,-0.6826,52.8844,-1.016,0.2907,53.1689,-1.296,0.753,53.1612,-0.8762,0.804,53.2634,-1.1713,0.7699,53.4653,-1.1436,0.503,53.311,-0.9522,0.2239,53.1001,-0.7618,0.6463,52.9667,-1.5509,0.445,53.0587,-1.5105,0.3665,52.9192,-1.728,0.216,53.158,-2.0297,0.2304,53.1152,-2.0293,0.1015,53.3006,-1.9593,0.5452,53.0666,-1.6877,0.7262,53.2505,-1.5632,0.5393,53.3973,-1.4223,0.424,53.3755,-0.9168,0.6929,52.9444,-0.8944,0.4153,53.3742,-0.9178,0.0891,53.0515,-2.575,0.5652,53.154,-0.9763,0.6779,53.0624,-0.9772,0.3122,53.4002,-1.6678,0.3933,53.3986,-1.1035,0.7665,53.1244,-0.8663,0.1712,53.2662,-1.96,0.2218,53.2279,-1.0753,0.0981,52.8532,-1.3662,0.0,52.8718,-1.3821,0.0996,52.8732,-1.3824,0.0,52.8511,-1.3632,0.564,53.2081,-0.9273,0.6487,53.0229,-0.8608,0.6595,53.0948,-0.8285,0.6945,53.0111,-0.8456,0.0,53.0633,-0.7424,0.1203,53.0814,-0.7318,0.4167,53.3943,-0.9702,0.4253,53.3957,-0.9704,0.0674,53.2814,-1.2374,0.1434,53.2954,-1.2397,0.4179,53.3812,-1.4973,0.8611,53.2683,-1.1505,0.8527,53.22,-1.1501,0.8054,53.1775,-1.144,0.5662,53.1142,-0.8765,0.3327,53.2852,-0.9869,0.3667,53.3272,-0.9748,0.1598,53.1882,-1.0118,0.0859,53.1667,-0.9496,0.1679,53.1669,-0.9529,0.0836,53.1804,-1.0081,0.6692,53.3822,-1.4131,0.6216,53.3943,-1.3995,0.6436,53.4208,-1.368,0.676,53.4533,-1.326,0.6218,53.482,-1.3173,0.89,53.0782,-1.5354,0.8193,53.0632,-1.6003,0.607,53.0003,-0.9809,0.5701,53.1948,-0.9498,0.4226,53.4056,-1.03,0.4019,53.4001,-1.1125,0.211,53.2525,-1.79,0.1373,53.1636,-1.8567,0.2157,53.1625,-1.8161,0.2368,53.1747,-1.2795,0.1532,53.2258,-1.2552,0.158,53.1587,-1.276,0.229,53.2428,-1.2577,0.3753,52.9063,-1.1685,0.0,53.2768,-1.2322,0.0724,53.2075,-1.2539,0.0,53.2032,-1.2561,0.4139,53.4043,-1.0296,0.2297,53.2016,-1.0075,0.0,53.1314,-0.8736,0.0949,53.1376,-0.88,0.0,53.1591,-0.9508,0.1891,53.1484,-0.878,0.7021,53.4083,-1.3752,0.646,53.0646,-1.6822,0.0,53.2264,-2.2421,0.0639,53.2041,-2.2468,0.2815,53.0982,-1.965,0.2057,53.0747,-1.8329,0.6942,53.0331,-1.4678,0.0959,52.8515,-1.1638,0.1012,52.8337,-1.0877,0.0,52.8479,-1.1629,0.0936,52.7537,-0.9394,0.1105,52.8045,-1.0073,0.0,52.7491,-0.9544,0.1655,52.8783,-1.273,0.111,52.9936,-0.7847,0.0,52.9845,-0.7861,0.6816,53.4527,-1.1863,0.6451,52.9584,-0.9067,0.7517,53.1616,-0.8404,0.7442,53.0014,-0.8463,0.0,52.9182,-1.3651,0.0958,53.0138,-1.3148,0.0998,52.9183,-1.3601,0.0,53.0146,-1.3256,0.0,52.7171,-0.8743,-0.5748,53.0568,-1.2611,-0.0996,52.8732,-1.3826,-0.0998,52.9183,-1.3603,-0.7442,53.0014,-0.847,-0.6595,53.0948,-0.8289,-0.6816,53.4527,-1.1863,-0.1088,52.9304,-0.8028,-0.2125,52.9492,-0.8235,-0.2147,53.0075,-0.8048,-0.2877,53.0309,-0.8406,-0.1203,53.0814,-0.7318,-0.111,52.9852,-0.7819,-0.2239,53.1001,-0.762,-0.0981,52.8532,-1.3664,-0.17,52.8619,-1.3741,-0.1762,52.834,-1.0881,-0.1819,52.7821,-1.0091,0.0,52.861,-1.2571,-0.7156,52.978,-1.5244,-0.6942,53.0331,-1.4685,-0.5328,52.9584,-1.5816,-0.5751,52.9291,-1.5989,-0.6685,52.9147,-1.6032,-0.6585,52.8468,-1.6517,-0.7285,52.9124,-1.5804,-0.2157,53.1625,-1.8162,-0.2057,53.0747,-1.8331,0.0,52.9908,-2.432,0.0,53.0459,-2.5209,-0.2815,53.0982,-1.9652,-0.646,53.0646,-1.6828,-0.7021,53.4083,-1.3752,-0.676,53.4533,-1.326,-0.6436,53.4208,-1.368,-0.2218,53.2279,-1.0755,-0.2297,53.2016,-1.0076,-0.4139,53.4043,-1.0296,-0.1432,53.2949,-1.2288,-0.1434,53.2954,-1.2397,-0.229,53.2428,-1.2579,-0.2109,53.3241,-1.2367,-0.1532,53.2258,-1.2553,-0.8,53.2193,-1.1633,-0.8054,53.1775,-1.1444,-0.3753,52.9063,-1.1691,-0.2368,53.1747,-1.2797,-0.158,53.1587,-1.2762,-0.1373,53.1636,-1.8568,-0.211,53.2525,-1.7901,-0.1402,53.2587,-1.8307,-0.564,53.2081,-0.9275,-0.7121,53.1162,-1.1556,-0.607,53.0003,-0.9816,-0.89,53.0782,-1.536,-0.8193,53.0632,-1.6009,-0.6218,53.482,-1.3173,-0.6216,53.3943,-1.3995,-0.6692,53.3822,-1.4131,-0.1598,53.1882,-1.012,-0.0836,53.1804,-1.0082,-0.3327,53.2852,-0.9871,-0.3667,53.3272,-0.9748,-0.5662,53.1142,-0.877,-0.8527,53.22,-1.1503,-0.8547,53.1896,-1.1344,-0.4226,53.4056,-1.03,-0.6945,53.0111,-0.8463,-0.171,52.8813,-1.3895,-0.0593,53.3849,-1.8161,-0.1712,53.2662,-1.9601,0.0,52.9941,-2.4798,-0.6451,52.9584,-0.9075,-0.5993,52.9732,-0.9252,-0.8611,53.2683,-1.1506,-0.4179,53.3812,-1.4974,0.0,53.1766,-1.0087,-0.7107,53.0601,-1.6585,-0.6385,53.008,-0.9869,-0.0639,53.2041,-2.2468,-0.6821,53.15,-0.9208,-0.1626,53.0913,-1.2948,-0.0724,53.2075,-1.254,0.0,53.1424,-1.276,-0.0802,53.1432,-1.2756,-0.7898,52.9463,-1.5493,-0.6463,52.9667,-1.5517,0.0,52.8782,-0.8305,0.0,52.9349,-0.808,-0.6091,53.1044,-0.8449,-0.6027,53.0351,-0.8829,-0.0958,53.0138,-1.3149,0.5748,53.0568,-1.2605,0.0928,52.8632,-1.2627,0.6585,52.8468,-1.6506,0.1158,53.1472,-2.3303,0.7107,53.0601,-1.6579,0.0802,53.1432,-1.2755,0.1626,53.0913,-1.2946,0.4691,53.3893,-0.9773,0.6385,53.008,-0.9862,0.5993,52.9732,-0.9244,0.6313,52.964,-0.9977,0.3584,53.3562,-1.584,0.2109,53.3241,-1.2366,0.6091,53.1044,-0.8445,0.6027,53.0351,-0.8823,0.0761,52.7243,-0.8921,0.0,53.0782,-1.2981,0.0878,53.0786,-1.2949,0.0,52.7161,-0.9052,-0.6313,52.964,-0.9985,-0.6487,53.0229,-0.8614,-0.3883,53.3231,-1.2566,-0.0674,53.2814,-1.2375,-0.0878,53.0786,-1.2951,-0.4167,53.3943,-0.9702,-0.3584,53.3562,-1.5841};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_80_vector_1()
		{
			double[] value = {-0.9991,-0.0386,-0.0189,-0.9961,-0.0121,-0.088,-0.995,0.0891,0.0457,-0.9942,0.0328,0.1024,-0.993,0.0206,0.1167,-0.9923,0.1197,0.0321,-0.9912,-0.0556,0.1198,-0.991,-0.116,-0.0665,-0.99,0.1369,-0.0329,-0.987,0.1073,0.1197,-0.9818,0.0522,0.1829,-0.9811,-0.0501,-0.1868,-0.9811,-0.0408,-0.1893,-0.9779,0.0806,0.1928,-0.9766,0.1621,0.1413,-0.9743,-0.2058,-0.0912,-0.9732,0.1599,-0.1652,-0.9694,-0.1352,0.205,-0.9632,0.1624,-0.2141,-0.955,-0.0344,0.2947,-0.9536,0.2574,-0.1561,-0.9523,-0.2997,-0.0574,-0.9495,0.0228,-0.3129,-0.9493,0.086,0.3022,-0.9489,0.2195,0.2269,-0.9466,-0.2917,0.1373,-0.9423,0.1953,0.272,-0.9379,0.0142,0.3465,-0.9371,-0.3382,0.0863,-0.9337,0.0331,0.3566,-0.9233,-0.3643,0.1221,-0.9194,0.1178,0.3752,-0.9184,0.0288,0.3945,-0.9167,-0.1945,-0.3491,-0.9142,-0.0776,0.3979,-0.9119,-0.1886,-0.3646,-0.9048,-0.2516,-0.3436,-0.904,-0.427,0.0215,-0.9038,-0.1917,0.3825,-0.8997,-0.436,0.0217,-0.8989,0.1612,0.4074,-0.8988,-0.162,0.4073,-0.8969,0.1698,0.4083,-0.8959,0.3504,-0.273,-0.8952,0.4301,0.1163,-0.8912,0.2678,0.366,-0.89,-0.0854,0.4479,-0.8843,-0.24,0.4006,-0.8834,0.2367,-0.4045,-0.8789,0.4466,0.1677,-0.8733,-0.0763,0.4812,-0.8724,0.1334,0.4702,-0.8706,0.0988,0.4819,-0.8706,-0.3598,0.3356,-0.8696,-0.2893,0.4003,-0.8671,0.0095,-0.4981,-0.8631,-0.1872,0.4691,-0.8593,0.0066,0.5115,-0.8506,-0.2803,-0.4449,-0.8482,0.4242,0.3173,-0.8419,-0.495,-0.215,-0.8402,-0.0585,0.5391,-0.8402,0.5406,0.0432,-0.8395,-0.3226,0.4373,-0.8385,-0.131,0.5289,-0.838,-0.2875,0.4638,-0.8367,-0.0221,0.5472,-0.8357,0.1168,-0.5366,-0.8341,0.0658,-0.5477,-0.8334,-0.3719,0.4088,-0.8322,0.1671,-0.5288,-0.831,-0.4012,-0.3853,-0.8281,-0.1714,0.5337,-0.8253,-0.4639,-0.3219,-0.8249,0.4824,-0.2947,-0.8245,-0.0438,0.5641,-0.8234,0.145,-0.5486,-0.8228,0.2616,0.5045,-0.8215,0.4641,0.3313,-0.8209,-0.4063,0.4013,-0.8188,0.5036,-0.2758,-0.8179,-0.5726,-0.0569,-0.817,-0.2443,0.5223,-0.817,0.2114,-0.5365,-0.8156,0.326,0.4781,-0.8141,0.5463,-0.1971,-0.8126,0.5367,0.2272,-0.8123,-0.5108,0.2815,-0.8116,0.1133,-0.5731,-0.8096,0.4618,0.3624,-0.8095,0.3132,0.4967,-0.8094,0.2103,-0.5483,-0.8093,0.0779,0.5821,-0.8093,0.2198,-0.5447,-0.8092,-0.2791,0.5171,-0.8073,0.5843,0.0828,-0.807,0.3055,-0.5055,-0.8057,0.3927,-0.4434,-0.8028,0.0774,0.5912,-0.8003,0.0259,0.599,-0.7989,0.4676,0.3783,-0.7985,-0.2763,0.5348,-0.7969,-0.2362,-0.5561,-0.7964,0.6038,-0.0346,-0.7961,-0.2487,0.5516,-0.7925,0.4228,0.4396,-0.792,0.0409,0.6091,-0.7912,-0.2383,0.5632,-0.7895,0.5522,0.2678,-0.7887,0.551,0.2726,-0.7885,0.1751,0.5895,-0.7856,-0.1833,0.591,-0.7853,0.5729,0.2348,-0.7819,0.3411,-0.5219,-0.781,0.2604,0.5677,-0.7807,-0.5563,-0.2848,-0.78,0.3792,-0.4978,-0.7794,-0.3983,-0.4836,-0.7785,0.6055,-0.1652,-0.7774,-0.0717,0.6249,-0.7751,-0.1123,0.6218,-0.7743,0.607,0.1789,-0.7716,0.38,-0.5101,-0.7714,-0.5454,-0.3278,-0.7713,0.3419,-0.5369,-0.7682,0.5596,0.3109,-0.7668,0.6418,0.0039,-0.7667,0.389,-0.5107,-0.7643,0.6444,0.0244,-0.764,0.4099,-0.4983,-0.7634,-0.1526,0.6276,-0.7625,0.0306,0.6463,-0.7592,0.4886,-0.43,-0.7537,-0.6355,-0.1672,-0.7537,0.2271,-0.6168,-0.751,-0.192,0.6318,-0.7484,-0.4278,-0.5069,-0.7475,0.6311,0.2073,-0.7465,-0.5887,-0.3101,-0.7452,0.2811,0.6048,-0.7451,-0.6641,-0.0619,-0.7435,-0.4482,0.4964,-0.7412,-0.2669,0.6159,-0.7387,-0.518,0.4313,-0.7358,-0.3864,-0.5561,-0.7336,0.5094,0.4499,-0.7329,0.4183,0.5366,-0.7328,-0.3911,-0.5568,-0.7296,-0.6624,0.1701,-0.7291,0.2774,-0.6256,-0.7268,-0.6364,-0.2584,-0.7262,-0.4695,0.5022,-0.7252,-0.6765,0.128,-0.7232,0.6154,0.3134,-0.7232,-0.5925,0.3549,-0.7194,0.5896,0.3671,-0.7186,-0.6105,-0.333,-0.7169,-0.0078,0.6971,-0.7152,0.3182,-0.6223,-0.7103,-0.6174,-0.3382,-0.7101,0.1662,-0.6842,-0.708,-0.163,0.6871,-0.7046,-0.2803,0.6519,-0.7031,0.0913,0.7052,-0.7027,-0.4585,0.5441,-0.7017,0.0521,0.7105,-0.7017,0.235,0.6726,-0.7011,0.5163,0.4918,-0.7008,0.0954,-0.707,-0.7,0.6356,-0.3257,-0.6994,0.3061,-0.6459,-0.6964,-0.6441,0.3164,-0.6948,-0.4994,0.5175,-0.6932,-0.2088,-0.6898,-0.6914,0.6982,-0.1856,-0.6911,-0.2999,-0.6576,-0.6893,-0.3447,0.6372,-0.6878,-0.4998,0.5264,-0.6846,-0.4034,-0.6071,-0.6843,0.4962,-0.5343,-0.6839,0.5951,-0.4221,-0.6817,0.6868,-0.2521,-0.6816,-0.678,-0.275,-0.6815,0.7264,0.0894,-0.6813,-0.3467,0.6447,-0.6777,0.54,0.4991,-0.6771,0.6918,0.2507,-0.6769,-0.6929,-0.2482,-0.6757,0.7093,0.2011,-0.6727,-0.6716,-0.3104,-0.672,-0.522,0.5253,-0.6718,-0.6098,-0.4204,-0.6717,0.6163,0.4111,-0.669,0.6496,0.3611,-0.6686,0.457,0.5866,-0.6679,0.1791,0.7224,-0.6675,-0.0901,-0.7392,-0.6653,0.7455,-0.0403,-0.665,0.4829,0.5698,-0.6631,-0.1634,0.7304,-0.6623,-0.2726,-0.6978,-0.6565,-0.7451,-0.1173,-0.6537,0.715,-0.248,-0.6524,0.4465,0.6124,-0.6521,0.7508,-0.1058,-0.6507,0.4326,0.624,-0.6475,0.171,-0.7426,-0.6472,-0.1895,0.7384,-0.6466,-0.7623,-0.0302,-0.6456,0.6223,0.4427,-0.6436,-0.0789,0.7613,-0.6433,0.685,0.3419,-0.641,0.3698,-0.6726,-0.6402,-0.3999,0.6559,-0.6362,0.1122,0.7633,-0.6327,-0.7743,-0.015,-0.6319,0.6699,0.3897,-0.6284,0.3326,-0.7032,-0.6252,-0.6336,0.4557,-0.6252,-0.4381,0.646,-0.6233,0.1017,-0.7753,-0.6221,0.4389,0.6484,-0.6205,-0.5385,0.5701,-0.6185,-0.7294,-0.2922,-0.6173,0.5879,-0.5228,-0.6168,-0.189,0.7641,-0.6155,0.7144,0.3329,-0.6124,0.5304,-0.5862,-0.6119,-0.1303,-0.7802,-0.6103,-0.1554,0.7768,-0.6086,0.7174,0.3391,-0.605,-0.796,-0.0185,-0.6017,0.0262,0.7983,-0.5997,-0.7473,-0.2864,-0.5863,-0.0974,0.8042,-0.5852,0.211,0.783,-0.5842,-0.5331,-0.6119,-0.5832,-0.6827,0.4402,-0.5826,0.6129,-0.5337,-0.5815,0.7974,0.1612,-0.5808,0.0385,-0.8131,-0.5716,-0.0882,0.8158,-0.5715,-0.2215,0.7902,-0.5713,0.7339,0.3675,-0.565,-0.8205,0.0866,-0.5638,0.669,-0.4844,-0.5637,0.5258,-0.637,-0.5584,0.6519,0.5131,-0.5576,0.8174,0.1448,-0.5575,-0.0082,-0.8302,-0.5573,-0.8228,0.1117,-0.5546,-0.1278,-0.8222,-0.5532,-0.5655,0.6117,-0.5519,-0.6966,-0.4584,-0.5502,-0.7604,-0.345,-0.5498,0.7838,0.2887,-0.5494,-0.0725,-0.8324,-0.5464,0.6493,-0.5291,-0.5453,0.2255,-0.8074,-0.5443,-0.13,0.8287,-0.5439,-0.4785,0.6894,-0.5437,-0.4989,0.6749,-0.5423,0.4361,-0.7181,-0.5419,0.3335,0.7714,-0.5416,-0.833,-0.1132,-0.54,-0.7857,0.3018,-0.5389,-0.8419,0.0286,-0.5358,-0.4104,0.738,-0.5352,0.6567,0.5313,-0.5348,-0.2747,0.799,-0.5321,0.4485,0.7181,-0.5289,-0.306,0.7916,-0.5259,0.3482,-0.776,-0.5253,-0.8509,-0.0024,-0.5233,0.1116,0.8448,-0.5205,-0.5418,0.6599,-0.5198,-0.4046,0.7524,-0.5194,-0.2821,0.8066,-0.5187,0.557,0.6486,-0.5184,0.3212,-0.7925,-0.5166,-0.7285,0.4499,-0.516,0.5668,0.6422,-0.5155,-0.7202,-0.4643,-0.5154,0.8481,0.1229,-0.5149,0.6932,0.5044,-0.5149,-0.0749,-0.854,-0.5125,0.1156,0.8509,-0.5114,-0.0606,-0.8572,-0.5109,-0.7048,0.4922,-0.5059,0.0656,-0.8601,-0.5054,0.5088,0.6969,-0.5045,-0.5377,0.6756,-0.5013,0.3433,-0.7942,-0.4997,-0.768,-0.4006,-0.4969,-0.0698,0.865,-0.4964,0.4744,0.727,-0.4961,-0.1494,0.8553,-0.4956,-0.4423,0.7475,-0.4944,0.7759,0.3917,-0.4936,0.2095,0.8441,-0.4928,0.87,-0.0142,-0.4927,-0.4124,0.7662,-0.4921,-0.0463,0.8693,-0.4909,-0.8292,-0.2672,-0.4895,-0.6998,0.5203,-0.4888,0.8667,-0.0997,-0.4883,-0.0367,0.8719,-0.4868,0.8733,0.0182,-0.4867,0.3657,0.7934,-0.486,0.7576,0.4356,-0.4823,-0.3586,0.7993,-0.4816,0.6777,-0.5557,-0.48,0.8425,0.2445,-0.4792,-0.3227,-0.8162,-0.4791,-0.2123,0.8517,-0.479,-0.8773,-0.0298,-0.4782,-0.466,0.7444,-0.4782,0.8766,0.0544,-0.4758,0.7467,-0.4648,-0.4755,-0.267,0.8382,-0.4737,-0.854,0.2153,-0.4722,-0.571,0.6715,-0.4707,0.8737,0.123,-0.4707,-0.8448,0.2547,-0.4697,0.6961,-0.543,-0.4681,0.493,-0.7334,-0.4647,-0.7799,-0.4194,-0.4631,-0.8726,0.1554,-0.4622,-0.8267,0.3207,-0.4574,0.5901,-0.6653,-0.4569,0.7335,0.5032,-0.4567,0.3139,-0.8324,-0.4527,0.8544,-0.2549,-0.4526,-0.8916,0.0156,-0.4523,0.6497,-0.611,-0.4513,-0.235,0.8608,-0.4505,-0.6825,-0.5755,-0.4503,0.87,-0.201,-0.4471,0.8862,-0.1215,-0.447,-0.893,-0.0522,-0.4455,-0.8086,-0.3843,-0.4452,0.8885,0.1111,-0.4451,0.8639,-0.2359,-0.445,0.611,0.6547,-0.444,-0.5167,0.732,-0.4435,-0.2949,0.8464,-0.4427,-0.6802,-0.5842,-0.4426,-0.8237,-0.3544,-0.4415,-0.7116,0.5466,-0.4395,0.4203,-0.7938,-0.4388,-0.797,0.4151,-0.4327,0.8806,0.1931,-0.4326,-0.1188,-0.8937,-0.4315,0.2959,-0.8522,-0.4311,-0.6976,-0.5723,-0.4298,-0.8093,0.4004,-0.4296,0.3064,-0.8495,-0.4288,-0.2355,-0.8721,-0.4282,0.2674,0.8632,-0.4272,0.1891,0.8842,-0.4243,0.4279,0.798,-0.4237,-0.4653,-0.7771,-0.4237,-0.054,-0.9042,-0.4232,-0.4106,0.8076,-0.4223,0.8717,-0.2486,-0.4209,0.2036,-0.8839,-0.4202,-0.9014,-0.1044,-0.4192,0.8964,0.1438,-0.4182,-0.1981,0.8865,-0.4176,0.4023,-0.8147,-0.417,-0.1991,0.8868,-0.4138,0.8195,-0.3965,-0.4129,0.3642,-0.8348,-0.4118,0.7563,-0.5084,-0.4103,0.4774,-0.777,-0.4058,-0.8726,0.2718,-0.4036,0.7961,-0.451,-0.4008,-0.5342,-0.7443,-0.4007,0.8296,0.3888,-0.4004,-0.2768,0.8735,-0.4002,-0.6122,0.682,-0.3995,-0.0769,0.9135,-0.3976,-0.4324,0.8093,-0.3965,-0.0316,0.9175,-0.3943,0.9157,0.0773,-0.3929,0.7082,0.5866,-0.3924,0.8039,-0.447,-0.3919,-0.1967,0.8987,-0.3918,0.3533,-0.8495,-0.3897,0.2099,0.8967,-0.3869,-0.3427,0.8561,-0.3862,0.922,-0.0289,-0.386,-0.047,0.9213,-0.3855,0.7436,-0.5463,-0.3854,-0.921,0.0557,-0.3852,0.6532,0.6518,-0.3852,-0.3587,0.8502,-0.3848,-0.3538,0.8525,-0.3842,0.1442,0.9119,-0.3819,-0.9236,-0.0321,-0.3803,-0.0698,0.9222,-0.3783,-0.539,-0.7526,-0.3764,0.0969,0.9214,-0.3752,0.0386,0.9262,-0.3749,-0.9096,0.1793,-0.3742,0.5884,-0.7167,-0.3715,-0.8934,0.2525,-0.3676,-0.5698,-0.735,-0.3673,-0.1582,0.9166,-0.3662,-0.645,-0.6708,-0.3616,-0.2476,0.8989,-0.3612,0.7756,-0.5177,-0.3612,0.8069,0.4673,-0.36,-0.0896,0.9286,-0.3599,-0.2712,0.8927,-0.3594,0.8525,0.3795,-0.3585,0.4611,-0.8117,-0.3534,-0.4945,-0.7941,-0.3528,-0.6171,0.7033,-0.3502,-0.048,-0.9355,-0.3499,-0.2344,0.907,-0.3451,0.1413,-0.9279,-0.3446,-0.9387,-0.0092,-0.3422,-0.2739,0.8988,-0.342,-0.9147,0.2152,-0.3416,0.654,-0.675,-0.3409,0.9097,-0.2373,-0.3398,0.8619,0.3764,-0.3394,-0.94,-0.0355,-0.339,0.6926,-0.6366,-0.339,0.6704,-0.66,-0.3387,0.2807,-0.898,-0.3375,-0.1596,0.9277,-0.336,-0.6372,-0.6936,-0.3357,0.7937,-0.5073,-0.3344,-0.9378,0.0933,-0.3343,-0.8649,-0.3744,-0.3341,0.1304,0.9335,-0.3334,-0.3135,0.8891,-0.3328,0.7824,-0.5264,-0.3319,-0.3614,0.8713,-0.3315,0.9241,0.1899,-0.3305,0.3998,0.8549,-0.3277,-0.887,-0.3255,-0.3274,-0.1181,0.9375,-0.3266,-0.3479,0.8788,-0.326,0.8004,-0.503,-0.3248,-0.2732,0.9055,-0.3231,-0.8436,-0.4288,-0.3215,0.2792,0.9048,-0.3211,0.5696,-0.7566,-0.3205,0.4505,-0.8333,-0.3186,-0.5284,-0.787,-0.3183,0.5349,-0.7827,-0.3176,0.8192,0.4776,-0.3163,-0.1303,0.9397,-0.3153,0.671,-0.6711,-0.3151,0.6085,-0.7283,-0.3135,0.94,-0.1345,-0.3125,-0.8635,-0.396,-0.3077,-0.888,0.3418,-0.3076,-0.9509,0.0344,-0.3068,-0.7077,-0.6365,-0.3059,0.6028,-0.7369,-0.3036,0.3231,0.8964,-0.303,0.1107,0.9466,-0.3025,0.4873,-0.8192,-0.3019,-0.6501,-0.6973,-0.3013,0.8817,0.3631,-0.3011,0.8314,-0.467,-0.3011,0.9533,0.0218,-0.2999,0.2566,0.9188,-0.2996,0.9538,-0.0201,-0.2992,0.6386,-0.709,-0.2991,-0.2738,0.9141,-0.2976,-0.7794,-0.5514,-0.2973,0.9158,-0.2701,-0.2964,0.2986,0.9072,-0.2944,-0.8069,-0.512,-0.2932,0.7844,-0.5466,-0.289,-0.8202,-0.4937,-0.2872,-0.073,0.9551,-0.2781,0.883,0.3781,-0.2779,0.4308,0.8586,-0.2769,-0.6089,-0.7434,-0.2733,0.8746,0.4006,-0.2732,-0.9458,-0.1754,-0.2657,0.6106,-0.746,-0.2634,0.1709,0.9494,-0.2622,0.2924,-0.9197,-0.2607,0.9094,0.324,-0.2606,0.7816,-0.5668,-0.2603,-0.9291,0.2628,-0.2585,0.6128,-0.7468,-0.2561,-0.9087,-0.3298,-0.2561,-0.4446,0.8583,-0.2529,-0.7597,0.5991,-0.2527,-0.1134,-0.9609,-0.2526,0.8856,-0.3898,-0.2526,0.8551,-0.4528,-0.2524,-0.7703,0.5855,-0.2517,0.8484,-0.4658,-0.2514,-0.3326,0.909,-0.2507,-0.9311,-0.265,-0.2501,-0.8571,0.4503,-0.2493,-0.9366,-0.2464,-0.2482,0.402,-0.8813,-0.2466,-0.3197,0.9149,-0.2466,0.4437,0.8616,-0.2449,0.32,0.9152,-0.2447,0.9411,-0.2334,-0.2441,0.0993,0.9646,-0.2437,-0.9296,0.2763,-0.2436,-0.1821,-0.9526,-0.2414,-0.4361,0.8669,-0.2401,-0.2002,-0.9499,-0.24,0.9183,-0.3148,-0.2399,-0.4625,0.8535,-0.2396,0.7011,-0.6715,-0.2373,0.8932,-0.3819,-0.2364,-0.664,0.7094,-0.236,0.7537,-0.6134,-0.2352,-0.9713,-0.0349,-0.2351,-0.5084,-0.8284,-0.2344,-0.972,-0.0186,-0.2335,0.8444,0.4821,-0.2325,0.3721,0.8986,-0.2315,0.2665,-0.9356,-0.2297,0.0476,0.9721,-0.2293,-0.9728,-0.0326,-0.2274,0.2922,-0.9289,-0.226,0.4593,-0.859,-0.2259,-0.8774,-0.4233,-0.2256,0.2788,-0.9335,-0.2238,0.7381,-0.6365,-0.2238,-0.9221,-0.3156,-0.223,-0.0662,-0.9726,-0.2218,-0.2964,0.929,-0.2214,0.2132,-0.9516,-0.2199,0.3009,-0.928,-0.2198,0.7799,-0.5861,-0.2192,0.1384,-0.9658,-0.2184,-0.6318,0.7437,-0.2175,0.9218,-0.321,-0.217,0.6541,-0.7246,-0.215,0.2362,-0.9476,-0.2142,0.8854,-0.4127,-0.2114,0.0027,-0.9774,-0.2113,-0.1107,0.9711,-0.2109,0.4195,-0.8829,-0.2099,0.9486,-0.237,-0.2095,0.7986,0.5642,-0.2086,0.3208,-0.9239,-0.2078,0.4107,-0.8878,-0.2058,-0.1808,0.9617,-0.2049,0.2028,-0.9575,-0.2039,-0.9379,-0.2806,-0.1981,-0.7114,0.6744,-0.1978,0.7648,-0.6132,-0.1963,-0.6626,-0.7228,-0.1945,-0.1418,0.9706,-0.1934,-0.6871,-0.7003,-0.1865,-0.6204,0.7618,-0.1821,-0.9234,-0.3378,-0.1815,0.5518,-0.814,-0.1808,0.9052,-0.3847,-0.18,-0.3355,0.9247,-0.1791,-0.543,-0.8204,-0.1787,0.7787,-0.6015,-0.1784,-0.7128,0.6783,-0.1777,-0.9773,-0.1154,-0.1763,0.3889,-0.9043,-0.176,0.3055,-0.9358,-0.176,-0.9752,0.1343,-0.1759,0.9176,0.3565,-0.1758,-0.6119,0.7712,-0.1752,0.4508,0.8752,-0.1742,0.1514,-0.973,-0.174,-0.3745,0.9107,-0.1735,0.3456,0.9222,-0.1717,0.5826,-0.7944,-0.1709,-0.4939,-0.8526,-0.1699,0.2939,-0.9406,-0.1697,-0.978,-0.1213,-0.169,-0.9472,0.2725,-0.1689,0.3083,-0.9362,-0.168,0.6889,-0.7051,-0.1646,0.4885,-0.8569,-0.1643,-0.9726,0.1643,-0.1637,0.7158,-0.6788,-0.1625,-0.7909,0.5899,-0.1577,-0.9811,-0.1121,-0.1577,0.6934,-0.7031,-0.1574,-0.4832,0.8612,-0.1558,-0.9082,-0.3884,-0.1505,-0.6348,0.7579,-0.1504,-0.6406,0.753,-0.1495,0.7671,-0.6239,-0.1475,-0.9891,0.0046,-0.1469,-0.8031,0.5774,-0.1444,0.8674,0.4761,-0.1443,0.9877,-0.0598,-0.1411,-0.9772,0.1585,-0.1408,0.3677,-0.9192,-0.1366,-0.9904,-0.0216,-0.1366,-0.9897,-0.0424,-0.1363,0.6894,0.7115,-0.1341,0.936,0.3253,-0.1341,0.1677,-0.9767,-0.1328,0.7107,-0.6908,-0.1326,0.7871,-0.6024,-0.1317,-0.7963,0.5904,-0.1309,0.912,0.3887,-0.13,0.7651,-0.6306,-0.1293,-0.9144,-0.3836,-0.1289,-0.7338,0.667,-0.1273,0.9305,0.3435,-0.1259,0.1908,0.9735,-0.1252,0.353,-0.9272,-0.1242,0.264,-0.9565,-0.1226,-0.303,0.9451,-0.1218,0.718,-0.6853,-0.1217,0.4312,-0.894,-0.1217,-0.708,0.6956,-0.1213,-0.4105,0.9037,-0.1212,-0.7336,-0.6687,-0.1204,0.784,-0.609,-0.1163,0.9631,-0.2428,-0.1156,0.8296,0.5463,-0.1142,0.2707,-0.9559,-0.1142,0.9685,0.2214,-0.1137,-0.6951,0.7098,-0.1128,-0.9935,-0.0175,-0.1106,-0.7462,0.6564,-0.1092,0.9501,0.2923,-0.1066,0.9382,0.3294,-0.1056,0.246,0.9635,-0.1053,0.9196,0.3785,-0.105,-0.6182,0.779,-0.1021,0.9884,-0.1128,-0.1009,-0.3334,0.9374,-0.1007,0.9283,0.3579,-0.1002,0.77,-0.6301,-0.0997,0.8816,0.4614,-0.099,-0.6896,-0.7174,-0.0978,0.0243,0.9949,-0.0977,0.3438,0.934,-0.0971,0.7159,-0.6914,-0.0938,0.6028,0.7924,-0.0932,-0.995,-0.0367,-0.093,0.2848,-0.9541,-0.092,-0.2828,0.9547,-0.0902,0.3184,0.9436,-0.0895,-0.8917,0.4437,-0.0888,-0.8375,-0.5392,-0.0887,0.5807,-0.8092,-0.0884,-0.8161,0.5711,-0.0882,0.8931,0.4412,-0.0855,-0.9679,-0.2365,-0.0847,0.431,-0.8984,-0.0846,0.3023,-0.9495,-0.0842,0.8842,0.4595,-0.0839,-0.3739,0.9237,-0.0836,0.9021,-0.4233,-0.0829,-0.8861,-0.4561,-0.0814,0.2495,-0.965,-0.0807,-0.33,0.9405,-0.0806,0.3787,-0.922,-0.0799,-0.855,-0.5125,-0.0785,0.8797,0.4691,-0.0777,0.7917,-0.6059,-0.0765,0.8607,0.5032,-0.0765,0.9637,0.2559,-0.0755,-0.9445,0.3197,-0.0732,-0.9948,0.071,-0.0732,0.2967,-0.9522,-0.0722,0.9368,-0.3424,-0.0714,-0.8326,-0.5492,-0.0713,0.7438,0.6645,-0.0712,0.9278,0.3663,-0.0702,-0.087,0.9937,-0.0701,-0.9307,0.359,-0.0701,-0.9478,0.3112,-0.067,0.977,-0.2023,-0.0651,0.6225,-0.7799,-0.0638,0.5604,0.8258,-0.063,-0.7051,0.7063,-0.0629,0.9203,0.3862,-0.0629,-0.9856,-0.157,-0.0621,-0.9423,-0.329,-0.062,-0.7773,0.626,-0.0616,-0.8315,-0.5521,-0.0614,0.9211,0.3844,-0.0599,-0.1661,0.9843,-0.0596,0.8837,-0.4643,-0.0588,-0.9318,-0.3582,-0.0583,-0.8233,-0.5645,-0.0559,0.4971,-0.8659,-0.0555,-0.5674,0.8216,-0.055,0.1801,-0.9821,-0.0535,-0.9983,-0.025,-0.0535,-0.9254,-0.3753,-0.0524,-0.9863,0.1562,-0.0511,0.8375,0.5441,-0.0501,-0.3696,0.9278,-0.0501,0.4445,-0.8944,-0.0497,0.551,-0.833,-0.0494,0.2962,0.9539,-0.0491,-0.1396,0.989,-0.0485,0.8905,-0.4525,-0.0482,0.4481,-0.8927,-0.0474,-0.3818,0.923,-0.0466,-0.7821,-0.6214,-0.0458,0.4345,-0.8995,-0.0415,0.2763,-0.9602,-0.0414,0.9902,0.1336,-0.0412,0.594,0.8034,-0.0409,0.8437,0.5352,-0.0403,-0.9467,-0.3197,-0.04,0.7977,-0.6017,-0.04,-0.8162,0.5764,-0.039,0.9461,0.3216,-0.0371,-0.8555,-0.5165,-0.0358,-0.7623,-0.6462,-0.0351,0.7713,-0.6356,-0.0318,-0.915,-0.4021,-0.0317,-0.9628,-0.2685,-0.031,0.116,0.9928,-0.0301,0.4968,0.8674,-0.03,-0.9751,-0.2197,-0.0288,-0.1378,-0.99,-0.0286,0.6446,0.7639,-0.0285,-0.3163,0.9482,-0.0276,-0.9563,0.2911,-0.0259,-0.3985,0.9168,-0.0247,0.7403,-0.6719,-0.0245,-0.0592,0.9979,-0.0238,0.9884,-0.1498,-0.0236,-0.9997,0.0108,-0.0232,0.3017,-0.9531,-0.0226,-0.8432,-0.5371,-0.0197,-0.9972,-0.0724,-0.0197,0.9996,0.0189,-0.0188,0.9464,-0.3226,-0.0183,-0.1186,-0.9928,-0.0178,0.8963,0.4431,-0.0168,0.8988,0.4381,-0.0162,-0.7509,-0.6602,-0.0162,0.3684,-0.9295,-0.0161,-0.9969,0.0765,-0.0143,0.8279,-0.5607,-0.0135,0.6373,-0.7705,-0.0133,0.5596,-0.8286,-0.0125,-0.1214,-0.9925,-0.0117,0.9068,-0.4214,-0.011,0.4696,0.8828,-0.0104,-0.2795,0.9601,-0.01,0.9986,0.0528,-0.0085,0.3,-0.9539,-0.0081,-0.8254,0.5645,-0.0078,-0.7462,0.6656,-0.0069,-0.0725,0.9973,-0.0066,0.7795,0.6264,-0.0061,0.0315,-0.9995,-0.0037,0.9695,0.2449,-0.0032,-0.7732,-0.6342,-0.0032,0.9323,-0.3617,-0.0029,-0.9818,0.19,-0.0018,-0.113,-0.9936,-0.0015,0.8107,-0.5854,-0.0007,-0.9481,-0.3179,-0.0003,-0.4991,0.8665,-0.0003,-0.4916,0.8708,-0.0002,-0.3735,0.9276,-0.0002,0.9109,0.4126,-0.0002,0.9337,0.358,-0.0001,-0.7302,0.6832,-0.0001,0.9495,0.3137,-0.0001,0.9092,0.4163,-0.0001,0.9605,0.2782,-0.0001,0.9328,0.3604,0.0,0.2847,0.9586,0.0,-0.3706,0.9288,0.0,0.9737,0.2277,0.0,-0.9996,-0.0273,0.0,0.9819,-0.1894,0.0,0.9785,-0.2061,0.0,0.9661,-0.2581,0.0,0.9258,-0.378,0.0,-0.9043,-0.427,0.0,0.8793,-0.4763,0.0,0.8039,-0.5947,0.0,0.4402,-0.8979,0.0001,-0.3052,-0.9523,0.0002,0.8166,-0.5772,0.0004,-0.9367,-0.3501,0.0004,0.3106,-0.9505,0.0005,0.3199,-0.9474,0.0006,0.3544,-0.9351,0.0007,0.3694,-0.9293,0.0008,0.3896,-0.921,0.001,-0.193,-0.9812,0.0014,0.8108,-0.5853,0.0044,-0.8577,-0.514,0.0048,0.9356,-0.3529,0.0057,-0.9744,-0.2248,0.0063,0.031,-0.9995,0.0065,-0.9532,-0.3024,0.0071,-0.7467,0.6651,0.0074,-0.2972,0.9548,0.0077,-0.8251,0.565,0.0097,0.2997,-0.954,0.01,0.9986,0.0528,0.0113,0.4683,0.8835,0.0116,-0.8544,0.5194,0.0125,-0.8933,0.4493,0.0126,-0.9721,0.234,0.0126,0.4843,0.8748,0.0137,0.252,0.9676,0.0142,0.8281,-0.5604,0.0143,0.9999,0.0033,0.0146,0.9997,-0.0189,0.0158,-0.7859,-0.6182,0.0158,0.6371,-0.7706,0.0161,-0.385,0.9228,0.0166,-0.7517,-0.6593,0.0168,-0.817,-0.5764,0.0175,-0.9723,-0.2332,0.0176,0.3681,-0.9296,0.0193,-0.1199,-0.9926,0.0195,-0.9795,-0.2004,0.0215,0.9648,0.2619,0.0234,-0.9997,0.0121,0.0238,0.9884,-0.1498,0.0239,-0.4336,0.9008,0.0243,0.3019,-0.953,0.0249,-0.0606,0.9979,0.0253,-0.4,0.9162,0.0288,0.6439,0.7646,0.0307,-0.1375,-0.99,0.0309,0.1158,0.9928,0.0342,0.8197,0.5717,0.0349,0.5782,0.8152,0.0351,0.7713,-0.6356,0.0353,0.8795,0.4746,0.0359,-0.9755,-0.2172,0.037,-0.9862,0.1614,0.0387,0.9461,0.3216,0.0397,-0.8166,0.5758,0.04,0.7977,-0.6017,0.0401,0.9986,-0.034,0.041,-0.8696,-0.4921,0.0415,0.9902,0.1335,0.0423,0.2765,-0.9601,0.0438,0.8951,0.4437,0.0463,0.2723,0.9611,0.0466,-0.8081,-0.5871,0.0474,0.4347,-0.8993,0.0475,-0.9487,-0.3125,0.0485,0.4468,-0.8933,0.0498,0.745,-0.6652,0.052,0.8848,-0.463,0.0528,-0.9983,-0.024,0.0548,-0.9529,-0.2982,0.0558,-0.97,-0.2368,0.0559,0.1811,-0.9819,0.0559,0.4511,-0.8907,0.0565,-0.978,-0.2009,0.0569,0.6335,-0.7717,0.0571,-0.7541,-0.6542,0.0575,-0.9289,0.3658,0.0588,0.971,-0.2319,0.059,-0.9447,-0.3227,0.0595,-0.9318,-0.3581,0.0602,0.5673,-0.8213,0.0612,-0.7777,0.6256,0.0621,-0.8318,-0.5515,0.0626,0.9203,0.3862,0.064,0.5616,0.8249,0.0652,-0.2653,0.9619,0.0654,-0.3673,0.9278,0.0689,0.9124,0.4035,0.0695,0.7446,0.6639,0.0696,-0.7041,0.7067,0.0699,-0.9308,0.3588,0.071,0.9278,0.3663,0.0722,0.9368,-0.3424,0.0738,0.2952,-0.9526,0.0754,-0.9444,0.3199,0.0755,0.0553,0.9956,0.076,-0.2948,0.9525,0.076,-0.8897,0.4502,0.0763,0.9637,0.2559,0.0769,0.8604,0.5038,0.0779,0.7914,-0.6063,0.0807,-0.9929,0.0879,0.0817,-0.9772,-0.1958,0.082,0.2499,-0.9648,0.0823,-0.8813,-0.4653,0.083,0.8801,-0.4675,0.0835,0.902,-0.4237,0.0839,0.8842,0.4595,0.0862,0.4314,-0.898,0.0876,-0.9572,-0.2759,0.0878,-0.619,0.7805,0.0879,-0.8165,0.5707,0.0896,-0.8915,0.4441,0.0929,-0.9942,-0.0549,0.0938,0.2852,-0.9539,0.0942,0.6015,0.7933,0.0951,0.3122,-0.9452,0.0952,-0.3282,0.9398,0.0964,0.3925,-0.9147,0.097,-0.868,0.4871,0.0974,-0.8666,-0.4894,0.0975,0.3749,-0.9219,0.0982,-0.9811,-0.1668,0.0985,0.3414,0.9347,0.0998,0.4733,-0.8752,0.0998,-0.6887,-0.7181,0.1006,0.9879,-0.1183,0.1007,-0.3336,0.9373,0.1008,0.9719,-0.2127,0.1048,-0.6172,0.7798,0.106,0.2442,0.9639,0.106,-0.0271,0.994,0.1064,0.9382,0.3294,0.1065,-0.9935,-0.0414,0.1068,0.7529,-0.6494,0.1074,-0.6807,-0.7246,0.1091,0.9501,0.2923,0.1094,-0.9938,-0.0219,0.1102,0.8925,0.4374,0.1104,-0.747,0.6557,0.1125,-0.9288,-0.353,0.1127,-0.9935,-0.0155,0.1145,0.9714,0.2079,0.1153,0.2712,-0.9556,0.1156,0.8299,0.5458,0.1164,0.3387,0.9337,0.1169,-0.5767,-0.8085,0.1173,-0.9188,-0.3769,0.1213,-0.7089,0.6948,0.1214,-0.7283,0.6744,0.1218,0.7179,-0.6854,0.122,-0.7328,-0.6695,0.1221,-0.3045,0.9446,0.1247,0.2648,-0.9562,0.1257,-0.9917,-0.0254,0.1259,0.1908,0.9735,0.1271,0.9305,0.3435,0.1294,0.9144,0.3836,0.1296,0.735,-0.6656,0.1304,0.7652,-0.6305,0.1306,0.912,0.3888,0.1314,-0.4189,0.8985,0.1315,-0.7969,0.5897,0.1316,-0.783,-0.608,0.1326,0.7871,-0.6024,0.1337,0.4943,-0.859,0.1339,0.9361,0.3253,0.1347,0.1689,-0.9764,0.1355,0.9218,0.3633,0.1356,0.4001,-0.9064,0.1363,0.6888,0.712,0.1364,-0.9904,-0.0206,0.1375,-0.7228,0.6772,0.1393,-0.433,0.8906,0.1411,-0.9772,0.1586,0.1411,0.9881,-0.0616,0.142,0.3681,-0.9189,0.1432,-0.9471,-0.2873,0.1441,0.8674,0.4762,0.1468,-0.8036,0.5767,0.1476,-0.989,0.0055,0.1495,0.7669,-0.6241,0.1497,-0.6416,0.7523,0.1501,-0.6359,0.7571,0.1508,-0.7645,-0.6267,0.155,0.7822,-0.6035,0.1571,-0.9523,-0.2618,0.1577,0.6934,-0.7031,0.1577,-0.9811,-0.1119,0.1605,0.1356,-0.9777,0.1623,-0.7915,0.5893,0.1629,0.3633,0.9173,0.1637,0.7158,-0.6788,0.1642,-0.9727,0.1642,0.1644,0.4875,-0.8575,0.168,0.6889,-0.7051,0.1691,-0.9782,-0.1207,0.1696,0.3089,-0.9358,0.17,0.2936,-0.9407,0.1706,-0.9428,0.2863,0.1715,-0.4952,-0.8517,0.1727,-0.976,0.1328,0.1736,-0.3733,0.9113,0.1752,-0.613,0.7704,0.1757,0.9176,0.3566,0.1758,0.449,0.8761};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_80_vector_2()
		{
			double[] value = {0.1765,0.3874,-0.9049,0.1769,0.3061,-0.9354,0.1772,-0.701,0.6908,0.1778,-0.9773,-0.1155,0.1787,0.7787,-0.6015,0.1789,0.5928,-0.7852,0.1796,-0.6254,0.7593,0.1797,-0.5437,-0.8198,0.18,-0.3375,0.924,0.1829,0.7112,-0.6788,0.187,-0.8647,-0.4662,0.1915,-0.6621,-0.7245,0.1947,-0.1439,0.9702,0.1958,-0.728,-0.657,0.1969,0.9243,-0.3268,0.1978,-0.7122,0.6735,0.1978,0.7648,-0.6132,0.2032,0.9506,-0.2348,0.2041,-0.938,-0.2802,0.2055,0.2048,-0.957,0.2058,0.7079,-0.6757,0.209,0.3219,-0.9234,0.2093,0.7985,0.5644,0.2093,-0.0882,0.9739,0.2113,-0.1107,0.9711,0.212,0.0041,-0.9773,0.2125,0.8899,-0.4036,0.2142,0.8854,-0.4127,0.2155,0.2343,-0.948,0.2171,0.653,-0.7256,0.2179,-0.6311,0.7445,0.2188,0.849,-0.4809,0.2197,0.1365,-0.966,0.2198,0.7799,-0.5861,0.2201,0.2991,-0.9285,0.2214,-0.2966,0.929,0.2218,0.2112,-0.9519,0.2236,-0.0681,-0.9723,0.2241,0.7382,-0.6363,0.2247,0.396,-0.8903,0.226,0.2807,-0.9328,0.226,0.4583,-0.8596,0.228,0.293,-0.9285,0.2289,0.0459,0.9724,0.2291,-0.9728,-0.0338,0.2296,0.4036,-0.8857,0.2311,0.3721,0.899,0.2318,0.2646,-0.9361,0.2339,0.844,0.4826,0.2344,-0.972,-0.0186,0.2346,-0.5101,-0.8275,0.2351,-0.9713,-0.0349,0.2359,-0.6651,0.7085,0.2365,-0.9235,-0.3019,0.2372,0.8932,-0.382,0.2384,0.7517,-0.6149,0.2389,0.1593,0.9579,0.2396,-0.4642,0.8527,0.2408,-0.1987,-0.95,0.2414,-0.4378,0.8661,0.2433,-0.9298,0.2762,0.2434,0.9174,-0.3148,0.2448,0.941,-0.2335,0.2456,0.3179,0.9158,0.2459,-0.3185,0.9155,0.2465,-0.8608,-0.4453,0.2474,0.4418,0.8623,0.2493,-0.9366,-0.2463,0.251,-0.9311,-0.2646,0.2513,-0.3309,0.9096,0.2517,0.8483,-0.4658,0.2526,0.8549,-0.4531,0.2527,-0.7603,0.5984,0.2536,-0.1148,-0.9605,0.2537,-0.1755,-0.9512,0.2547,-0.7629,0.5942,0.2561,-0.9084,-0.3306,0.2585,0.6128,-0.7468,0.26,-0.929,0.2634,0.2602,0.0968,0.9607,0.2606,0.9094,0.3241,0.2607,0.7818,-0.5665,0.2617,-0.9313,0.2532,0.2626,0.2931,-0.9193,0.2633,-0.6555,-0.7078,0.2642,-0.9037,-0.337,0.2658,-0.4122,0.8715,0.2704,0.6174,-0.7387,0.2733,0.8747,0.4002,0.2733,-0.9458,-0.1752,0.2777,-0.0734,0.9579,0.278,0.883,0.3782,0.2785,-0.9581,0.0672,0.2787,0.4289,0.8593,0.2823,0.4092,-0.8676,0.2856,0.7005,-0.654,0.2932,0.7844,-0.5466,0.2943,-0.8075,-0.5112,0.297,0.2966,0.9076,0.2991,-0.2738,0.9141,0.2992,0.6386,-0.709,0.2996,0.9538,-0.0201,0.3008,0.2543,0.9192,0.3012,0.8817,0.3632,0.3012,0.8312,-0.4674,0.3025,0.4863,-0.8197,0.3028,-0.6492,-0.6977,0.303,0.1107,0.9466,0.3059,0.6028,-0.7369,0.3071,-0.7069,-0.6372,0.3072,0.9146,-0.2631,0.3073,-0.8883,0.3414,0.3093,-0.2423,0.9196,0.3104,0.9504,0.0176,0.3128,-0.8635,-0.3956,0.3132,0.7918,-0.5243,0.3136,0.9399,-0.1349,0.3142,0.6911,-0.6509,0.3151,0.6085,-0.7283,0.3157,0.8236,0.4712,0.3165,-0.1313,0.9394,0.3183,0.379,0.8689,0.3184,0.5335,-0.7836,0.3186,-0.5295,-0.7862,0.3206,0.449,-0.834,0.3211,0.5695,-0.7567,0.3213,0.2804,0.9045,0.3234,-0.8437,-0.4284,0.3261,0.8004,-0.503,0.3264,-0.3497,0.8782,0.3272,-0.887,-0.3259,0.3273,-0.116,0.9378,0.3313,-0.3616,0.8715,0.3331,-0.3123,0.8897,0.3332,0.4419,-0.8329,0.3346,-0.8649,-0.3743,0.3346,0.2997,0.8934,0.3348,0.1282,0.9335,0.3357,-0.8623,0.3792,0.3358,0.7936,-0.5073,0.3363,-0.637,-0.6937,0.3374,-0.1578,0.928,0.3375,0.9223,0.1884,0.3385,0.2793,-0.8985,0.3394,-0.94,-0.0354,0.3397,0.8619,0.3765,0.3406,-0.9346,0.1022,0.3417,0.6538,-0.6751,0.3446,-0.9387,-0.0092,0.3456,0.1433,-0.9274,0.3491,-0.6181,0.7043,0.3497,-0.2348,0.907,0.3497,-0.4948,-0.7955,0.3499,0.906,-0.2382,0.3518,-0.2871,0.8909,0.3528,-0.8363,0.4196,0.3539,0.9056,-0.2338,0.3593,0.7059,-0.6104,0.3593,0.8525,0.3796,0.3597,-0.2731,0.8922,0.3611,0.8069,0.4675,0.3613,-0.2491,0.8986,0.3614,0.7755,-0.5177,0.3668,-0.0489,-0.929,0.3668,-0.5712,-0.7343,0.3675,-0.1602,0.9161,0.37,-0.3533,0.8592,0.3715,-0.8933,0.2528,0.3733,-0.8922,0.2542,0.3741,0.5895,-0.7159,0.3746,-0.9097,0.1793,0.3758,0.0367,0.926,0.3776,-0.3584,0.8538,0.3786,-0.538,-0.7531,0.3793,-0.0188,0.9251,0.3812,-0.6098,-0.6948,0.3813,-0.0142,0.9243,0.3819,-0.9236,-0.0322,0.3843,0.1426,0.9121,0.3846,-0.5369,-0.7509,0.3848,-0.3577,0.8509,0.3849,-0.9213,0.0558,0.385,0.654,0.6513,0.3857,0.7435,-0.5463,0.386,-0.0474,0.9213,0.3862,0.922,-0.0289,0.3867,0.7067,0.5925,0.3888,0.1056,0.9152,0.3902,0.208,0.8969,0.3918,0.3551,-0.8488,0.3942,0.9158,0.0772,0.397,-0.4338,0.8088,0.3996,-0.6133,0.6813,0.3999,0.0162,0.9164,0.4004,-0.2768,0.8735,0.4026,0.9144,0.0409,0.4038,0.796,-0.451,0.4054,-0.8728,0.2718,0.4079,-0.1816,0.8948,0.4088,0.3538,-0.8413,0.4103,0.4775,-0.777,0.4121,0.7561,-0.5084,0.4145,0.8685,-0.272,0.4152,-0.0653,0.9074,0.4156,-0.4808,0.7721,0.4163,-0.198,0.8874,0.4178,-0.1985,0.8866,0.4179,0.4007,-0.8153,0.4187,0.8071,-0.4163,0.4192,0.8965,0.1437,0.4203,-0.9014,-0.1044,0.4213,0.2016,-0.8842,0.4229,-0.4122,0.807,0.4241,-0.0561,-0.9039,0.4242,-0.464,-0.7777,0.4249,0.4263,0.7986,0.4272,0.1892,0.8841,0.4291,-0.2359,-0.8719,0.4303,0.3051,-0.8496,0.4312,-0.6981,-0.5716,0.4318,0.2941,-0.8527,0.4324,0.8193,-0.3765,0.4328,-0.1183,-0.8937,0.4336,0.88,0.1938,0.4359,0.2599,0.8617,0.4376,0.4134,-0.7985,0.4388,-0.7967,0.4156,0.4409,-0.7118,0.5468,0.4419,-0.6811,-0.5838,0.4426,-0.8233,-0.3553,0.4452,0.8638,-0.2358,0.4452,-0.6961,-0.5633,0.4453,0.8885,0.1111,0.4455,0.6103,0.655,0.4458,-0.8084,-0.3844,0.4468,-0.8931,-0.0517,0.4471,0.8862,-0.1214,0.4507,-0.2355,0.861,0.4523,0.6496,-0.6111,0.4526,-0.8916,0.0156,0.4543,-0.2806,0.8455,0.4569,0.7335,0.5032,0.4575,0.5892,-0.666,0.4632,-0.8725,0.1555,0.4651,-0.7795,-0.4196,0.4652,-0.4047,0.7873,0.4659,0.2973,-0.8334,0.4664,0.8422,-0.2706,0.4679,0.4914,-0.7346,0.4701,-0.845,0.2547,0.4707,0.8737,0.1228,0.4715,-0.5721,0.6711,0.4726,0.355,-0.8066,0.4736,-0.854,0.2156,0.4753,-0.2686,0.8378,0.4759,0.7465,-0.465,0.4762,-0.8772,-0.0611,0.4775,-0.4664,0.7446,0.4783,0.8765,0.0544,0.4791,-0.2125,0.8516,0.4797,-0.3235,-0.8156,0.4801,0.8424,0.2446,0.4816,-0.3588,0.7996,0.4819,0.6716,-0.5627,0.4855,0.687,-0.5407,0.4856,0.4288,0.7617,0.4861,0.7575,0.4358,0.4885,-0.0384,0.8717,0.4892,-0.1266,0.863,0.4903,-0.7073,0.5093,0.4912,0.8671,-0.0821,0.4928,0.87,-0.0142,0.4931,-0.4109,0.7669,0.4931,0.3558,-0.7939,0.4933,0.2112,0.8438,0.4964,0.4744,0.727,0.4969,-0.7791,-0.3822,0.5003,0.7741,0.388,0.5009,0.7461,0.4388,0.5021,-0.0584,0.8629,0.5043,-0.5389,0.6748,0.5045,0.0393,-0.8625,0.5056,0.5082,0.6972,0.5061,0.0658,-0.86,0.5064,-0.8238,-0.2549,0.5084,0.5493,0.6632,0.5097,-0.2643,0.8187,0.5107,0.0004,0.8598,0.5108,-0.7043,0.493,0.5125,0.1156,0.8509,0.5134,-0.7268,0.4563,0.5149,0.6931,0.5046,0.5153,0.8482,0.1228,0.5157,-0.7203,-0.464,0.5164,0.5662,0.6425,0.5187,-0.2825,0.8069,0.5194,-0.406,0.7519,0.52,-0.5429,0.6595,0.5203,-0.5168,0.6799,0.5235,0.1105,0.8448,0.5239,-0.8516,0.0145,0.525,-0.0272,-0.8507,0.5253,-0.8509,-0.0024,0.5256,-0.1182,-0.8425,0.5262,0.3465,-0.7766,0.5278,-0.3056,0.7925,0.5319,-0.8426,0.0839,0.5353,-0.4117,0.7376,0.5372,0.679,0.5004,0.5377,-0.8431,0.0048,0.5388,-0.8398,-0.0662,0.5392,0.7603,0.3622,0.5425,0.4347,-0.7188,0.5439,-0.4773,0.6902,0.5455,0.2236,-0.8077,0.5467,-0.1167,0.8292,0.5474,0.523,-0.6533,0.5479,0.8207,0.162,0.5501,-0.0736,-0.8318,0.5504,-0.7603,-0.3448,0.5523,-0.6967,-0.4579,0.5526,-0.5662,0.6116,0.5552,-0.1259,-0.8221,0.5609,0.6525,0.5095,0.5614,0.285,0.7769,0.5631,-0.7619,0.3201,0.564,0.6688,-0.4843,0.565,0.6206,-0.5437,0.565,-0.8205,0.0869,0.5713,-0.2229,0.7899,0.5714,0.7338,0.3676,0.5748,0.5425,0.6126,0.5811,0.0363,-0.813,0.5815,0.7973,0.1616,0.5829,0.6127,-0.5337,0.5852,0.2122,0.7826,0.5863,-0.0977,0.8042,0.5867,-0.6799,0.4399,0.5876,-0.5252,-0.6156,0.5947,-0.8033,-0.0332,0.5993,-0.748,-0.2853,0.6018,0.0247,0.7982,0.6062,-0.1183,-0.7865,0.6087,0.7173,0.3392,0.6094,-0.0331,0.7922,0.6098,-0.156,0.777,0.6118,0.6993,0.3697,0.6165,-0.1896,0.7642,0.6175,0.5876,-0.5228,0.6185,-0.7295,-0.2921,0.6213,-0.5371,0.5706,0.6237,0.1001,-0.7753,0.6283,0.334,-0.7027,0.6303,0.4038,0.6631,0.6323,0.3789,-0.6757,0.6327,-0.7743,-0.0149,0.633,-0.4259,0.6465,0.6363,0.5057,-0.5826,0.6387,0.1129,0.7611,0.6434,-0.0794,0.7614,0.6452,0.6837,0.3409,0.6472,-0.1879,0.7388,0.6478,0.1696,-0.7427,0.6496,0.4647,0.6017,0.6508,0.4322,0.6243,0.6516,0.6206,0.4361,0.6523,0.7177,-0.2437,0.6546,0.4354,0.618,0.6549,0.2231,0.722,0.6554,-0.4217,0.6265,0.6564,-0.7453,-0.1173,0.6573,-0.6752,-0.3349,0.6604,0.7473,-0.073,0.6614,0.6144,0.4302,0.6625,-0.2724,-0.6978,0.6626,-0.164,0.7308,0.6647,0.4837,0.5694,0.6652,0.7455,-0.0404,0.6653,-0.6082,0.433,0.6679,-0.0908,-0.7387,0.669,0.7037,-0.2392,0.6691,0.6495,0.3612,0.6748,-0.5151,0.5284,0.6756,0.7093,0.201,0.6759,0.2402,0.6967,0.6765,0.6031,-0.4227,0.6773,0.6917,0.2507,0.6794,-0.6609,-0.3188,0.6798,0.7282,0.0872,0.6813,-0.6786,-0.2744,0.6846,0.4958,-0.5343,0.6848,-0.4038,-0.6066,0.6854,-0.6065,-0.403,0.687,-0.3736,0.6233,0.6875,-0.5,0.5267,0.6877,0.5377,0.4879,0.691,-0.6445,0.3274,0.6915,-0.299,-0.6576,0.6936,-0.2094,-0.6892,0.6942,-0.5015,0.5163,0.6988,-0.6627,-0.2693,0.7001,0.6354,-0.3257,0.7012,0.516,0.492,0.7015,0.0941,0.7064,0.7049,-0.2787,0.6523,0.7075,-0.6766,-0.204,0.7081,-0.1645,0.6867,0.7104,-0.6172,-0.3382,0.7112,0.1524,-0.6863,0.7126,-0.3138,0.6274,0.7143,-0.448,0.5376,0.7156,0.3174,-0.6222,0.7158,-0.4806,0.5066,0.7169,-0.0083,0.6972,0.7191,0.59,0.3671,0.7198,0.1088,-0.6856,0.7204,0.6663,-0.1923,0.7218,0.6871,0.0832,0.7233,0.6153,0.3135,0.7235,0.304,-0.6198,0.7237,-0.5916,0.3553,0.7253,-0.6764,0.1282,0.7268,-0.6362,-0.2589,0.7276,-0.2227,0.6488,0.7297,-0.6622,0.1702,0.7303,0.2801,0.6231,0.7325,0.4191,0.5364,0.733,-0.3914,-0.5563,0.7333,0.51,0.4497,0.7345,0.2872,-0.6148,0.736,-0.3866,-0.5557,0.737,-0.4424,0.5109,0.7379,0.519,-0.4314,0.7386,-0.5316,0.4146,0.7425,0.0538,0.6677,0.7467,-0.2752,0.6056,0.7476,0.6309,0.2073,0.7483,-0.4283,-0.5066,0.7538,-0.6355,-0.1671,0.7541,0.2262,-0.6166,0.755,-0.57,-0.3242,0.7611,0.6304,0.1526,0.7627,0.0316,0.646,0.7632,-0.1532,0.6277,0.764,0.4099,-0.4983,0.7652,0.5121,0.3902,0.766,-0.1023,0.6346,0.7668,0.6418,0.0039,0.767,0.3887,-0.5106,0.7684,0.5594,0.311,0.7705,-0.2796,-0.5728,0.7714,-0.5455,-0.3275,0.7715,0.3406,-0.5374,0.7719,0.3795,-0.51,0.7738,0.2903,0.563,0.7771,-0.0723,0.6252,0.7786,0.6055,-0.1652,0.7789,0.3351,-0.5301,0.7795,-0.3984,-0.4834,0.7803,0.3788,-0.4977,0.7807,-0.5564,-0.2846,0.784,0.5661,0.2548,0.7852,-0.184,0.5912,0.7854,0.5727,0.2348,0.7884,0.1763,0.5894,0.7888,0.5508,0.2726,0.7897,0.1509,-0.5947,0.7915,0.4721,0.3881,0.7919,0.0623,0.6075,0.7926,0.4224,0.4397,0.7958,-0.2496,0.5518,0.7964,0.6038,-0.0346,0.7999,0.2019,-0.5651,0.8003,0.0252,0.5991,0.8003,0.5919,0.0963,0.8009,0.0449,0.5971,0.8011,-0.5075,0.3173,0.803,-0.4974,-0.3282,0.8045,-0.2136,0.5542,0.8059,0.3918,-0.4438,0.8073,0.3049,-0.5054,0.8091,0.5598,-0.1788,0.8095,-0.2339,0.5385,0.8095,0.2183,-0.5449,0.8096,0.3127,0.4967,0.8098,0.4615,0.3624,0.8114,-0.266,0.5205,0.8124,0.0732,0.5784,0.8159,0.3199,0.4817,0.8165,-0.399,0.4172,0.8178,-0.5727,-0.0568,0.821,-0.3541,0.4478,0.8214,0.4643,0.3312,0.8228,0.2616,0.5045,0.8236,0.1446,-0.5484,0.8242,0.5284,0.2038,0.8246,-0.0451,0.5639,0.8248,0.4827,-0.2943,0.8249,0.148,-0.5455,0.828,-0.1721,0.5337,0.8283,-0.2862,0.4817,0.8307,-0.4032,-0.3839,0.8324,0.1664,-0.5285,0.8337,-0.371,0.409,0.8342,0.0642,-0.5477,0.8359,0.1163,-0.5364,0.8367,-0.0227,0.5473,0.8378,-0.2882,0.4638,0.8401,0.5407,0.0432,0.8444,-0.1418,0.5167,0.8447,0.4569,-0.2787,0.846,0.4286,0.3173,0.8461,-0.2949,0.444,0.8508,-0.2796,-0.4449,0.8511,-0.4802,-0.2123,0.8523,-0.0347,0.5218,0.8629,-0.1879,0.4692,0.8646,0.0461,0.5004,0.8665,0.0083,-0.4991,0.8704,-0.3603,0.3356,0.8706,0.0985,0.482,0.8724,0.1328,0.4704,0.8732,-0.0769,0.4813,0.8835,0.2365,-0.4044,0.8841,0.4307,0.1814,0.8841,-0.2406,0.4006,0.8899,-0.0861,0.4479,0.8911,0.2684,0.366,0.8921,0.1913,0.4093,0.8941,-0.2648,-0.3611,0.8952,0.4303,0.1163,0.8959,0.3503,-0.2731,0.8988,-0.1619,0.4073,0.8989,0.1615,0.4073,0.8998,-0.4359,0.0205,0.9037,-0.1923,0.3825,0.9041,-0.4268,0.0218,0.9119,-0.1888,-0.3645,0.9141,-0.0782,0.398,0.9164,-0.215,-0.3377,0.9184,0.0283,0.3946,0.9234,-0.364,0.122,0.9275,0.1353,0.3485,0.9337,0.0327,0.3567,0.9347,0.022,0.3548,0.9372,-0.338,0.0864,0.9421,0.1958,0.2722,0.9494,0.0858,0.3023,0.9504,-0.3063,-0.0542,0.952,0.1987,0.2329,0.953,-0.2862,0.0994,0.9544,-0.0017,-0.2984,0.955,-0.0348,0.2947,0.9554,0.26,-0.1402,0.9633,0.1617,-0.2141,0.9731,-0.153,0.1723,0.9733,0.1623,-0.1623,0.9765,0.1624,0.1413,0.9799,-0.1886,-0.0653,0.9811,-0.0409,-0.1892,0.9811,-0.0502,-0.1866,0.9815,0.0767,0.1756,0.9818,0.0527,0.1826,0.987,0.1076,0.1195,0.9885,-0.0656,0.1363,0.99,0.137,-0.0336,0.9903,0.0405,0.1331,0.991,-0.1161,-0.0665,0.9923,0.1197,0.0322,0.995,0.0891,0.0457,0.9956,0.0109,-0.0936,0.9963,0.0112,0.0849,0.9991,-0.039,-0.0193};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc6disc_Geo_5_85_coordIndex_2()
		{
			int[] value = {152,211,212,-1,152,129,211,-1,177,152,213,-1,177,76,152,-1,106,214,25,-1,106,174,214,-1,165,15,22,-1,16,15,165,-1,213,212,215,-1,213,152,212,-1,211,216,217,-1,211,129,216,-1,216,205,217,-1,216,210,205,-1,206,209,218,-1,204,209,206,-1,207,219,156,-1,207,218,219,-1,166,154,87,-1,154,166,123,-1,77,176,175,-1,79,176,77,-1,77,219,78,-1,77,202,219,-1,207,160,201,-1,207,159,160,-1,73,220,75,-1,220,73,72,-1,221,72,71,-1,72,221,220,-1,222,193,223,-1,193,222,200,-1,168,222,195,-1,168,199,222,-1,151,66,65,-1,66,151,57,-1,176,169,196,-1,169,176,79,-1,195,169,168,-1,195,194,169,-1,150,194,2,-1,150,197,194,-1,54,187,109,-1,54,53,187,-1,192,188,190,-1,188,192,189,-1,49,190,48,-1,190,49,191,-1,172,51,170,-1,178,51,172,-1,41,48,148,-1,48,41,45,-1,189,224,187,-1,189,225,224,-1,22,28,165,-1,29,28,22,-1,186,26,226,-1,186,27,26,-1,183,51,185,-1,183,52,51,-1,171,183,32,-1,182,183,171,-1,30,171,31,-1,30,186,171,-1,214,110,109,-1,214,174,110,-1,8,180,179,-1,7,180,8,-1,213,10,177,-1,181,10,213,-1,146,144,143,-1,144,146,140,-1,103,157,163,-1,103,125,157,-1,196,174,176,-1,196,110,174,-1,150,164,197,-1,111,164,150,-1,106,203,175,-1,106,105,203,-1,8,215,117,-1,8,179,215,-1,10,178,172,-1,178,10,181,-1,14,101,15,-1,101,14,83,-1,167,5,94,-1,3,5,167,-1,224,25,214,-1,25,224,26,-1,226,184,182,-1,226,225,184,-1,7,185,180,-1,185,7,34,-1,144,39,36,-1,144,139,39,-1,45,43,46,-1,45,41,43,-1,188,135,148,-1,135,188,53,-1,170,191,147,-1,191,170,50,-1,52,192,50,-1,52,184,192,-1,142,113,128,-1,114,113,142,-1,68,223,193,-1,68,65,223,-1,65,149,223,-1,149,65,67,-1,227,198,208,-1,227,199,198,-1,69,151,65,-1,69,130,151,-1,208,221,227,-1,210,221,208,-1,167,74,73,-1,94,74,167,-1,102,84,126,-1,84,102,83,-1,198,78,209,-1,79,78,198,-1,88,206,201,-1,88,120,206,-1,212,161,162,-1,212,211,161,-1,167,177,3,-1,177,167,76,-1,108,158,137,-1,85,158,108,-1,137,122,165,-1,158,122,137,-1,112,44,46,-1,112,64,44,-1,114,115,96,-1,115,114,142,-1,140,91,20,-1,140,146,91,-1,215,162,117,-1,215,212,162,-1,90,162,161,-1,162,90,118,-1,217,161,211,-1,119,161,217,-1,119,205,120,-1,217,205,119,-1,201,218,207,-1,206,218,201,-1,218,78,219,-1,218,209,78,-1,124,166,159,-1,123,166,124,-1,175,202,77,-1,175,203,202,-1,18,86,19,-1,121,86,18,-1,202,156,219,-1,202,126,156,-1,87,158,81,-1,158,87,122,-1,121,21,153,-1,21,121,18,-1,216,75,220,-1,216,129,75,-1,221,216,220,-1,221,210,216,-1,199,200,222,-1,200,199,227,-1,195,223,149,-1,195,222,223,-1,58,151,60,-1,57,151,58,-1,71,227,221,-1,200,227,71,-1,66,17,67,-1,66,59,17,-1,128,132,69,-1,113,132,128,-1,109,224,214,-1,109,187,224,-1,184,189,192,-1,189,184,225,-1,136,191,49,-1,136,147,191,-1,133,12,134,-1,133,173,12,-1,224,226,26,-1,225,226,224,-1,31,28,30,-1,31,138,28,-1,185,32,183,-1,34,32,185,-1,186,182,171,-1,186,226,182,-1,146,118,91,-1,116,118,146,-1,181,215,179,-1,181,213,215,-1,105,157,203,-1,105,163,157,-1,197,110,196,-1,164,110,197,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc6disc_Geo_5_85_normalIndex_1()
		{
			int[] value = {13,46,32,-1,38,43,34,-1,188,135,173,-1,70,43,54,-1,57,40,31,-1,213,216,220,-1,13,32,11,-1,201,223,202,-1,182,201,202,-1,184,152,87,-1,92,75,71,-1,97,103,95,-1,108,101,169,-1,137,188,146,-1,189,176,169,-1,178,206,221,-1,126,66,36,-1,30,102,47,-1,60,120,102,-1,60,77,120,-1,132,86,104,-1,170,161,44,-1,67,60,102,-1,17,14,20,-1,7,12,14,-1,6,8,1,-1,29,16,26,-1,29,80,41,-1,96,91,128,-1,128,151,109,-1,151,122,133,-1,174,168,116,-1,212,222,218,-1,217,213,215,-1,226,205,218,-1,222,212,219,-1,140,88,98,-1,202,187,182,-1,28,35,39,-1,221,223,227,-1,5,0,2,-1,12,3,36,-1,20,12,24,-1,196,204,184,-1,164,78,152,-1,160,166,78,-1,44,55,13,-1,226,193,221,-1,161,142,64,-1,161,171,55,-1,24,44,13,-1,204,164,152,-1,36,3,4,-1,5,30,1,-1,2,23,9,-1,202,223,221,-1,28,18,35,-1,199,185,183,-1,98,88,187,-1,98,123,141,-1,205,195,212,-1,226,218,222,-1,220,224,219,-1,205,227,223,-1,213,210,211,-1,180,204,192,-1,100,35,42,-1,133,122,159,-1,80,100,41,-1,7,15,6,-1,8,21,1,-1,2,0,21,-1,16,17,20,-1,27,15,41,-1,67,25,50,-1,24,66,107,-1,50,127,77,-1,5,25,30,-1,178,190,139,-1,169,176,139,-1,188,189,146,-1,78,71,87,-1,189,206,178,-1,209,203,202,-1,11,20,10,-1,88,182,187,-1,22,42,35,-1,57,31,43,-1,188,197,200,-1,40,37,28,-1,34,43,31,-1,180,164,204,-1,221,206,209,-1,31,28,34,-1,207,197,199,-1,28,31,40,-1,200,189,188,-1,43,70,57,-1,5,2,9,-1,209,202,221,-1,176,189,178,-1,152,78,87,-1,146,101,137,-1,146,169,101,-1,169,139,108,-1,103,87,95,-1,178,193,190,-1,25,67,30,-1,50,77,60,-1,70,127,57,-1,70,85,127,-1,66,126,138,-1,44,24,107,-1,50,60,67,-1,14,12,20,-1,49,26,32,-1,21,8,15,-1,100,42,41,-1,111,32,46,-1,21,0,1,-1,7,19,15,-1,109,100,96,-1,133,159,143,-1,186,212,195,-1,213,220,214,-1,192,198,177,-1,212,218,205,-1,186,182,88,-1,192,125,180,-1,219,214,220,-1,222,225,226,-1,198,211,194,-1,186,149,194,-1,98,141,140,-1,98,131,123,-1,187,183,98,-1,185,175,183,-1,18,22,35,-1,5,1,0,-1,47,36,4,-1,216,196,184,-1,53,160,78,-1,24,13,10,-1,55,44,161,-1,161,64,73,-1,227,226,221,-1,161,73,171,-1,24,10,20,-1,166,92,78,-1,164,53,78,-1,204,152,184,-1,224,220,191,-1,39,34,28,-1,186,88,149,-1,212,208,219,-1,226,227,205,-1,213,214,210,-1,192,215,198,-1,151,133,81,-1,96,128,109,-1,15,27,21,-1,1,4,6,-1,7,3,12,-1,8,6,15,-1,116,56,51,-1,26,11,32,-1,25,5,18,-1,44,107,170,-1,132,90,86,-1,50,57,127,-1,107,66,138,-1,30,67,102,-1,66,24,36,-1,221,193,178,-1,169,146,189,-1,137,135,188,-1,108,84,101,-1,78,92,71,-1,184,87,103,-1,176,178,139,-1,11,10,13,-1,196,217,204,-1,36,24,12,-1,57,50,40,-1,54,62,70,-1,188,173,197,-1,33,37,40,-1,209,200,203,-1,18,28,37,-1,55,46,13,-1,171,46,55,-1,171,111,46,-1,118,181,117,-1,118,166,181,-1,173,199,197,-1,173,185,199,-1,38,54,43,-1,54,38,72,-1,61,94,106,-1,61,59,94,-1,93,104,82,-1,112,104,93,-1,86,106,99,-1,86,61,106,-1,87,65,95,-1,87,71,65,-1,191,139,190,-1,139,191,97,-1,155,163,156,-1,170,163,155,-1,90,70,62,-1,90,85,70,-1,132,145,130,-1,132,134,145,-1,145,138,120,-1,163,138,145,-1,18,33,25,-1,18,37,33,-1,76,100,80,-1,100,76,96,-1,4,7,6,-1,3,7,4,-1,49,52,58,-1,49,32,52,-1,21,23,2,-1,23,21,27,-1,52,45,51,-1,52,48,45,-1,56,119,79,-1,119,56,116,-1,74,96,76,-1,74,91,96,-1,100,39,35,-1,100,109,39,-1,88,147,149,-1,140,147,88,-1,172,125,192,-1,172,179,125,-1,215,211,198,-1,215,213,211,-1,148,141,150,-1,141,148,154,-1,177,194,162,-1,198,194,177,-1,119,148,124,-1,119,153,148,-1,208,186,194,-1,208,212,186,-1,150,124,148,-1,124,150,136,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc6disc_Geo_5_85_normalIndex_2()
		{
			int[] value = {143,165,129,-1,143,159,165,-1,72,143,83,-1,72,133,143,-1,166,114,92,-1,166,118,114,-1,191,216,184,-1,220,216,191,-1,83,129,105,-1,83,143,129,-1,165,144,158,-1,165,159,144,-1,144,150,158,-1,144,136,150,-1,154,153,157,-1,148,153,154,-1,162,167,177,-1,162,157,167,-1,208,214,219,-1,214,208,210,-1,174,117,181,-1,116,117,174,-1,174,167,168,-1,174,172,167,-1,162,149,147,-1,162,194,149,-1,151,121,122,-1,121,151,128,-1,110,128,91,-1,128,110,121,-1,68,76,63,-1,76,68,74,-1,56,68,58,-1,56,79,68,-1,19,16,29,-1,16,19,17,-1,117,51,45,-1,51,117,116,-1,58,51,56,-1,58,52,51,-1,111,52,32,-1,111,48,52,-1,161,155,142,-1,161,170,155,-1,134,163,145,-1,163,134,156,-1,77,145,120,-1,145,77,130,-1,62,86,90,-1,61,86,62,-1,126,120,138,-1,120,126,102,-1,156,113,155,-1,156,115,113,-1,184,97,191,-1,103,97,184,-1,65,75,69,-1,65,71,75,-1,82,86,99,-1,82,104,86,-1,84,82,101,-1,93,82,84,-1,95,84,108,-1,95,65,84,-1,114,64,142,-1,114,118,64,-1,173,106,94,-1,135,106,173,-1,83,54,72,-1,59,54,83,-1,207,200,197,-1,200,207,203,-1,164,125,53,-1,164,180,125,-1,45,118,117,-1,45,64,118,-1,111,73,48,-1,171,73,111,-1,166,179,181,-1,166,160,179,-1,173,105,185,-1,173,94,105,-1,54,61,62,-1,61,54,59,-1,213,196,216,-1,196,213,217,-1,81,34,39,-1,38,34,81,-1,113,92,114,-1,92,113,75,-1,69,112,93,-1,69,115,112,-1,135,99,106,-1,99,135,137,-1,200,206,189,-1,200,209,206,-1,102,36,47,-1,102,126,36,-1,163,107,138,-1,107,163,170,-1,90,130,85,-1,130,90,132,-1,104,134,132,-1,104,112,134,-1,22,23,42,-1,9,23,22,-1,80,63,76,-1,80,29,63,-1,29,49,63,-1,49,29,26,-1,89,119,124,-1,89,79,119,-1,41,19,29,-1,41,15,19,-1,124,110,89,-1,136,110,124,-1,81,109,151,-1,39,109,81,-1,204,215,192,-1,215,204,217,-1,119,168,153,-1,116,168,119,-1,140,154,147,-1,140,141,154,-1,129,131,175,-1,129,165,131,-1,81,72,38,-1,72,81,133,-1,193,225,190,-1,226,225,193,-1,190,224,191,-1,225,224,190,-1,4,30,47,-1,4,1,30,-1,9,18,5,-1,18,9,22,-1,203,187,202,-1,203,207,187,-1,105,175,185,-1,105,129,175,-1,98,175,131,-1,175,98,183,-1,158,131,165,-1,123,131,158,-1,123,150,141,-1,158,150,123,-1,147,157,162,-1,154,157,147,-1,157,168,167,-1,157,153,168,-1,211,208,194,-1,210,208,211,-1,181,172,174,-1,181,179,172,-1,201,205,223,-1,195,205,201,-1,172,177,167,-1,172,192,177,-1,219,225,222,-1,225,219,224,-1,195,182,186,-1,182,195,201,-1,144,122,121,-1,144,159,122,-1,110,144,121,-1,110,136,144,-1,79,74,68,-1,74,79,89,-1,58,63,49,-1,58,68,63,-1,14,19,7,-1,17,19,14,-1,91,89,110,-1,74,89,91,-1,16,11,26,-1,16,20,11,-1,42,27,41,-1,23,27,42,-1,142,113,114,-1,142,155,113,-1,112,156,134,-1,156,112,115,-1,127,130,77,-1,127,85,130,-1,25,40,50,-1,25,33,40,-1,113,69,75,-1,115,69,113,-1,108,97,95,-1,108,139,97,-1,99,101,82,-1,137,101,99,-1,65,93,84,-1,65,69,93,-1,207,183,187,-1,199,183,207,-1,59,105,94,-1,59,83,105,-1,160,125,179,-1,160,53,125,-1,48,64,45,-1,73,64,48,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc7_Geo_5_91_coordIndex_2()
		{
			int[] value = {591,592,593,-1,594,595,596,-1,597,593,587,-1,598,599,600,-1,601,602,603,-1,604,605,606,-1,607,563,608,-1,609,610,611,-1,612,613,614,-1,615,616,617,-1,618,619,620,-1,621,622,623,-1,612,614,599,-1,624,611,625,-1,626,627,628,-1,593,629,591,-1,609,615,630,-1,631,632,633,-1,634,635,636,-1,637,638,639,-1,640,641,497,-1,574,642,568,-1,643,644,645,-1,646,647,631,-1,648,649,650,-1,651,496,652,-1,653,654,655,-1,656,657,658,-1,659,509,506,-1,660,661,662,-1,663,662,664,-1,665,666,667,-1,668,667,666,-1,666,669,668,-1,670,671,672,-1,673,671,670,-1,674,599,614,-1,674,675,676,-1,677,678,679,-1,680,681,669,-1,682,683,684,-1,685,686,687,-1,688,565,689,-1,690,691,692,-1,691,685,693,-1,694,695,592,-1,696,697,698,-1,553,699,700,-1,518,701,516,-1,702,703,704,-1,705,219,706,-1,707,708,709,-1,710,711,709,-1,595,710,708,-1,712,713,714,-1,715,716,595,-1,617,717,718,-1,719,720,721,-1,722,723,724,-1,725,726,727,-1,491,493,728,-1,729,730,244,-1,731,732,733,-1,734,697,735,-1,736,737,722,-1,738,739,740,-1,741,742,738,-1,734,743,585,-1,744,745,746,-1,575,747,748,-1,749,688,689,-1,750,492,751,-1,752,739,753,-1,754,755,737,-1,754,756,757,-1,758,759,760,-1,761,762,758,-1,763,764,765,-1,527,766,767,-1,765,768,769,-1,770,683,771,-1,566,772,773,-1,774,775,688,-1,668,776,663,-1,667,668,663,-1,686,685,777,-1,614,613,778,-1,676,675,779,-1,780,561,563,-1,781,782,711,-1,623,622,783,-1,784,785,637,-1,786,787,788,-1,789,786,790,-1,548,791,792,-1,793,794,791,-1,795,796,797,-1,338,340,798,-1,799,798,800,-1,801,800,344,-1,802,803,804,-1,805,802,806,-1,807,806,808,-1,809,810,808,-1,640,811,812,-1,813,814,809,-1,815,816,813,-1,817,818,819,-1,820,818,506,-1,508,821,822,-1,643,823,824,-1,825,826,827,-1,828,829,830,-1,831,832,833,-1,834,835,836,-1,837,838,839,-1,840,841,842,-1,843,834,844,-1,845,846,847,-1,489,393,392,-1,848,849,850,-1,851,852,847,-1,535,853,854,-1,855,856,857,-1,523,856,858,-1,859,696,860,-1,524,523,861,-1,862,731,733,-1,863,862,864,-1,865,866,867,-1,743,868,869,-1,870,528,486,-1,410,871,408,-1,872,871,873,-1,874,416,415,-1,416,874,875,-1,876,420,419,-1,877,423,420,-1,878,879,880,-1,878,504,881,-1,882,883,432,-1,884,881,504,-1,870,885,699,-1,560,886,887,-1,569,642,574,-1,517,888,889,-1,890,891,892,-1,504,503,893,-1,894,895,896,-1,897,898,899,-1,556,900,901,-1,902,903,904,-1,905,906,907,-1,908,909,589,-1,910,576,909,-1,911,912,913,-1,829,914,915,-1,916,917,918,-1,919,920,916,-1,920,921,922,-1,923,924,706,-1,925,923,706,-1,634,484,926,-1,927,651,928,-1,708,596,595,-1,929,921,567,-1,922,930,931,-1,918,932,916,-1,915,914,933,-1,934,931,930,-1,935,641,640,-1,936,501,500,-1,937,590,909,-1,904,938,555,-1,939,940,941,-1,942,943,892,-1,944,892,945,-1,573,572,946,-1,945,947,516,-1,948,571,701,-1,642,886,560,-1,744,743,869,-1,699,553,949,-1,950,951,952,-1,504,878,880,-1,881,654,878,-1,953,954,653,-1,875,874,788,-1,546,871,872,-1,955,549,873,-1,585,743,744,-1,956,660,957,-1,594,702,595,-1,865,863,866,-1,866,958,867,-1,864,959,866,-1,731,861,523,-1,960,695,694,-1,961,962,963,-1,964,535,534,-1,965,847,849,-1,966,967,844,-1,846,850,849,-1,846,968,850,-1,845,843,969,-1,845,852,970,-1,971,972,841,-1,837,971,840,-1,834,836,966,-1,834,843,838,-1,839,838,843,-1,973,974,975,-1,973,704,976,-1,565,977,689,-1,829,828,978,-1,539,564,537,-1,643,645,826,-1,645,644,680,-1,822,821,979,-1,632,817,980,-1,656,981,819,-1,982,814,981,-1,983,812,811,-1,809,814,982,-1,807,896,984,-1,985,986,815,-1,987,988,989,-1,990,991,992,-1,990,992,804,-1,993,804,803,-1,994,995,796,-1,797,637,542,-1,792,791,785,-1,720,764,763,-1,783,671,673,-1,996,997,998,-1,672,783,999,-1,1000,999,1001,-1,1002,779,675,-1,1003,667,997,-1,668,669,681,-1,690,692,1004,-1,561,684,1005,-1,683,682,930,-1,1006,1007,859,-1,768,519,526,-1,526,1006,1008,-1,1007,1006,525,-1,1009,1010,527,-1,1009,1011,1012,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc7_Geo_5_91_coordIndex_3()
		{
			int[] value = {765,769,1013,-1,741,1014,521,-1,756,1015,757,-1,750,740,752,-1,739,742,753,-1,1016,1017,794,-1,424,655,431,-1,837,1018,1019,-1,697,734,698,-1,621,1020,1021,-1,1022,1023,1024,-1,1025,751,1026,-1,1019,1027,837,-1,696,859,1007,-1,1028,697,696,-1,1029,858,856,-1,730,729,925,-1,1030,1031,1032,-1,521,766,519,-1,1033,720,1034,-1,664,1035,1036,-1,716,1037,714,-1,1038,711,714,-1,708,710,709,-1,1039,596,1040,-1,517,516,888,-1,1041,1042,719,-1,693,1043,774,-1,774,688,749,-1,773,772,775,-1,770,1044,1045,-1,677,1046,678,-1,1047,1048,1049,-1,1002,1000,779,-1,1050,1051,1000,-1,928,662,663,-1,662,928,951,-1,707,660,956,-1,656,819,657,-1,935,658,905,-1,718,717,1052,-1,1053,1006,1054,-1,1055,1056,926,-1,953,653,655,-1,1057,952,651,-1,1058,1059,833,-1,654,881,1060,-1,1061,646,1062,-1,1063,1064,1065,-1,927,776,681,-1,649,1066,1058,-1,485,634,1047,-1,1062,633,1067,-1,1068,1069,987,-1,495,659,632,-1,627,1070,1071,-1,1072,597,1073,-1,582,1071,576,-1,1074,1075,1076,-1,599,1077,600,-1,659,817,632,-1,999,783,622,-1,616,1013,617,-1,610,609,1078,-1,1074,611,610,-1,563,1079,610,-1,578,629,624,-1,912,1080,913,-1,589,588,1081,-1,909,1071,937,-1,627,1071,582,-1,606,1082,604,-1,606,586,1082,-1,860,587,695,-1,562,1083,563,-1,1084,559,1085,-1,936,1086,555,-1,811,640,1087,-1,1088,503,505,-1,1089,639,1017,-1,1090,594,1091,-1,540,1092,1093,-1,933,914,932,-1,865,545,869,-1,863,868,735,-1,1094,1018,853,-1,985,813,1095,-1,1014,1096,1097,-1,768,526,1008,-1,1098,948,518,-1,513,515,512,-1,657,820,508,-1,1099,509,644,-1,657,822,514,-1,564,978,1100,-1,905,658,906,-1,498,1081,502,-1,1087,640,497,-1,1023,1022,753,-1,965,849,848,-1,1101,9,11,-1,227,107,1102,-1,475,303,479,-1,373,473,1103,-1,1104,465,1105,-1,272,303,273,-1,1106,103,469,-1,1107,461,17,-1,1107,1108,461,-1,1108,1109,459,-1,1110,1111,447,-1,447,1111,79,-1,1112,81,80,-1,213,1113,17,-1,1114,1115,1116,-1,1117,443,76,-1,1118,270,1119,-1,1120,67,437,-1,449,164,430,-1,157,1121,155,-1,157,163,1122,-1,1123,427,19,-1,427,167,1124,-1,168,426,1125,-1,417,1126,327,-1,418,327,329,-1,1127,62,409,-1,62,61,1128,-1,1129,1130,443,-1,97,1131,1119,-1,1132,1133,1134,-1,404,407,1135,-1,1136,1137,402,-1,249,248,38,-1,1138,209,210,-1,38,250,1139,-1,1140,1141,1142,-1,1143,49,252,-1,398,397,1144,-1,46,1145,395,-1,387,1146,1147,-1,258,391,1148,-1,259,258,395,-1,260,388,389,-1,381,390,389,-1,386,1149,1150,-1,387,1147,378,-1,379,388,380,-1,389,388,382,-1,975,974,1151,-1,1152,216,1153,-1,373,275,1154,-1,1155,52,51,-1,53,75,51,-1,1156,158,370,-1,197,1157,158,-1,365,29,28,-1,363,176,144,-1,362,357,173,-1,361,1158,358,-1,1159,356,358,-1,1158,360,1160,-1,1161,355,353,-1,349,1162,1163,-1,989,1164,1165,-1,346,1162,1166,-1,347,346,1166,-1,1167,347,1168,-1,337,1169,1170,-1,64,323,336,-1,322,331,330,-1,1171,191,1172,-1,129,191,190,-1,181,180,311,-1,1173,321,190,-1,140,232,231,-1,125,1173,189,-1,313,127,1174,-1,188,311,183,-1,310,1157,187,-1,1175,1154,205,-1,74,307,306,-1,199,305,307,-1,399,1176,1177,-1,299,36,35,-1,1178,36,299,-1,1177,40,1178,-1,40,1176,1179,-1,1180,1181,1182,-1,41,1183,294,-1,1184,294,1180,-1,293,1185,291,-1,1186,1187,292,-1,1188,1189,290,-1,1190,1191,34,-1,267,269,286,-1,283,1192,281,-1,265,1193,282,-1,333,1194,334,-1,431,166,424,-1,1195,1196,383,-1,95,271,211,-1,1197,1198,131,-1,1199,1200,264,-1,1201,1202,6,-1,261,1203,262,-1,383,1204,1195,-1,399,400,1205,-1,400,211,254,-1,1206,1207,1202,-1,1202,1201,1206,-1,36,295,34,-1,234,233,1172,-1,181,1208,317,-1,1209,1210,223,-1,223,222,318,-1,221,1210,1102,-1,1146,1145,5,-1,203,202,1211,-1,277,276,309,-1,199,308,1212,-1,305,199,201,-1,1156,1213,197,-1,194,145,165,-1,1049,1214,147,-1,113,193,204,-1,127,1215,1174,-1,126,312,1215,-1,180,178,1216,-1,1217,1216,178,-1,177,179,1218,-1,172,362,173,-1,1219,174,1220,-1,170,1221,230,-1,316,301,300,-1,483,1222,1223,-1,166,433,167,-1,166,168,1125,-1,165,1101,1224,-1,163,164,1225,-1,1226,1227,1228,-1,1229,1230,142,-1,1228,1064,1226,-1,10,1157,310,-1,163,157,156,-1,412,409,408,-1,433,166,431,-1,350,143,1230,-1,1165,351,1226,-1,161,144,175,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc7_Geo_5_91_coordIndex_4()
		{
			int[] value = {87,86,1231,-1,1232,85,94,-1,134,1233,135,-1,114,1234,125,-1,131,321,1173,-1,231,1185,1235,-1,1236,117,141,-1,1236,121,135,-1,1236,1237,72,-1,1238,1239,83,-1,469,103,470,-1,1240,1241,466,-1,100,85,467,-1,137,94,99,-1,209,96,210,-1,72,1242,73,-1,430,1243,449,-1,33,444,1130,-1,1109,1108,1107,-1,458,1244,1245,-1,1159,1246,1247,-1,66,68,1119,-1,106,105,217,-1,1093,1248,1249,-1,1118,56,55,-1,55,406,1118,-1,253,405,403,-1,397,1250,1251,-1,359,1252,1163,-1,1253,268,1254,-1,301,1178,299,-1,31,445,32,-1,25,30,26,-1,367,23,172,-1,1255,1256,24,-1,365,172,1219,-1,1257,1154,75,-1,463,1219,464,-1,16,15,1240,-1,14,151,1247,-1,1200,1258,265,-1,394,1148,1259,-1,265,264,1200,-1,61,60,332,-1,16,1240,13,-1,1161,1260,355,-1,1257,374,1154,-1,362,172,364,-1,29,365,1219,-1,367,172,365,-1,25,1261,30,-1,31,1116,445,-1,1253,1254,34,-1,267,1192,1262,-1,56,1263,104,-1,1264,1265,481,-1,1250,1196,1251,-1,253,1266,405,-1,1104,473,465,-1,1249,1267,1093,-1,1263,105,104,-1,1194,1268,1269,-1,18,20,1270,-1,1247,151,1159,-1,1107,1271,1109,-1,33,1130,1129,-1,164,156,430,-1,430,69,1243,-1,1237,135,1272,-1,43,76,1273,-1,89,91,474,-1,137,99,1274,-1,100,99,85,-1,466,150,1240,-1,83,134,1238,-1,133,124,93,-1,1272,122,1242,-1,72,117,1236,-1,135,1237,1236,-1,1236,141,119,-1,116,169,171,-1,1173,1197,131,-1,125,115,114,-1,144,176,175,-1,1275,1234,114,-1,1233,123,135,-1,85,99,94,-1,86,1276,1231,-1,99,98,1274,-1,175,1277,161,-1,351,1227,1226,-1,143,142,1230,-1,147,149,485,-1,155,429,156,-1,310,11,10,-1,1064,1063,1226,-1,142,162,1229,-1,1278,1124,167,-1,1121,1279,155,-1,1224,1280,165,-1,1125,428,166,-1,433,1278,167,-1,1281,483,1223,-1,377,1282,1121,-1,316,1177,301,-1,170,300,1221,-1,1220,464,1219,-1,1218,1132,177,-1,188,126,189,-1,127,126,1215,-1,204,314,113,-1,1049,147,485,-1,194,165,195,-1,1156,197,158,-1,305,201,304,-1,199,1212,200,-1,1211,277,309,-1,1211,309,203,-1,235,1207,1206,-1,444,33,32,-1,318,224,223,-1,223,226,1209,-1,229,217,227,-1,238,1283,284,-1,181,317,182,-1,128,191,129,-1,1172,1284,234,-1,295,1253,34,-1,243,1206,1201,-1,1285,246,245,-1,254,1205,400,-1,1205,1176,399,-1,1192,283,282,-1,1198,132,131,-1,1235,1286,140,-1,327,326,329,-1,265,1258,1193,-1,1192,1287,281,-1,1288,269,287,-1,1190,34,1254,-1,239,1188,290,-1,1185,1289,291,-1,1180,1290,1184,-1,42,41,294,-1,1180,1182,1291,-1,40,1177,1176,-1,1178,301,1177,-1,291,299,35,-1,399,1177,316,-1,303,272,304,-1,306,1292,74,-1,1175,205,1293,-1,187,186,310,-1,183,1294,188,-1,313,1174,1295,-1,125,189,126,-1,1173,190,189,-1,181,311,153,-1,190,321,129,-1,65,1249,1248,-1,335,64,336,-1,337,1296,1169,-1,1166,1297,347,-1,353,352,18,-1,346,1298,1162,-1,989,1299,1164,-1,354,360,1300,-1,1158,361,360,-1,454,1159,358,-1,358,357,361,-1,361,357,1252,-1,1301,1252,362,-1,28,1302,365,-1,367,366,21,-1,1157,1255,158,-1,158,160,370,-1,53,1261,25,-1,1155,51,1175,-1,1154,374,373,-1,275,1303,1304,-1,1152,1153,1305,-1,975,1151,1305,-1,382,381,389,-1,379,382,388,-1,378,380,387,-1,386,1150,383,-1,386,385,1149,-1,381,1306,390,-1,389,258,260,-1,258,1148,395,-1,387,1307,1146,-1,46,395,47,-1,1148,391,1259,-1,50,398,1144,-1,1140,1142,1308,-1,1138,210,1309,-1,38,401,249,-1,404,1136,402,-1,1135,1136,404,-1,404,405,406,-1,227,217,105,-1,1134,177,1132,-1,1119,270,97,-1,411,62,1128,-1,409,57,1127,-1,418,329,414,-1,417,327,418,-1,18,1123,19,-1,157,1122,1310,-1,436,1120,437,-1,1118,1119,68,-1,76,439,1117,-1,1116,31,1114,-1,214,213,17,-1,475,474,1311,-1,1312,447,79,-1,1260,1112,355,-1,447,446,1110,-1,1109,1313,459,-1,467,1314,100,-1,17,16,1107,-1,151,150,1220,-1,303,1311,273,-1,465,473,472,-1,476,1104,474,-1,475,1311,303,-1,179,178,182,-1,11,1216,1101,-1,1023,753,742,-1,793,550,549,-1,498,502,501,-1,896,1315,984,-1,978,828,1100,-1,818,657,819,-1,658,657,514,-1,822,657,508,-1,512,511,513,-1,518,517,1098,-1,521,1014,1097,-1,1316,740,757,-1,1090,1091,544,-1,924,923,1317,-1,1018,854,853,-1,735,862,863,-1,545,544,869,-1,540,1093,1267,-1,702,594,703,-1,744,551,700,-1,1087,1318,811,-1,941,1319,556,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc7_Geo_5_91_coordIndex_5()
		{
			int[] value = {936,555,554,-1,1085,649,648,-1,1085,893,1084,-1,1320,1074,1079,-1,1321,568,530,-1,918,580,579,-1,627,582,628,-1,909,576,1071,-1,1081,641,589,-1,624,625,578,-1,583,612,598,-1,1083,613,1320,-1,610,608,563,-1,610,1079,1074,-1,1078,608,610,-1,1322,1323,1324,-1,622,1021,999,-1,1074,1076,625,-1,582,576,1325,-1,1072,1073,605,-1,495,632,631,-1,1326,1068,987,-1,1327,1062,1067,-1,431,655,882,-1,408,871,1328,-1,649,1329,650,-1,927,681,494,-1,1326,1063,1065,-1,1062,1327,1061,-1,1065,1068,1326,-1,884,648,650,-1,651,1046,1057,-1,953,655,1330,-1,1055,926,1331,-1,833,950,831,-1,1053,1008,1006,-1,717,1053,1052,-1,935,1332,658,-1,707,661,660,-1,672,1000,1003,-1,1002,1050,1000,-1,1049,485,1047,-1,1046,652,678,-1,683,770,1045,-1,773,775,1044,-1,774,749,693,-1,693,685,1043,-1,1031,1041,719,-1,1031,1333,1041,-1,489,1334,967,-1,596,956,1040,-1,714,713,1038,-1,716,714,710,-1,595,702,715,-1,737,1335,722,-1,664,1036,998,-1,619,673,620,-1,1033,721,720,-1,521,1097,766,-1,493,1030,1032,-1,1030,1333,1031,-1,1029,1336,858,-1,696,1337,1028,-1,1007,1337,696,-1,739,752,740,-1,493,492,1338,-1,1021,622,621,-1,615,618,616,-1,790,786,788,-1,739,738,742,-1,750,1339,740,-1,758,1015,759,-1,521,1340,741,-1,764,1341,1342,-1,765,1013,763,-1,1009,767,1011,-1,1009,1343,1010,-1,525,1344,1007,-1,526,525,1006,-1,859,1054,1006,-1,1005,1045,1044,-1,561,780,684,-1,692,978,1004,-1,681,776,668,-1,1003,1345,667,-1,675,777,1002,-1,1000,672,999,-1,617,630,615,-1,672,671,783,-1,997,663,998,-1,673,619,783,-1,1033,673,1346,-1,720,763,1034,-1,1092,540,1347,-1,797,542,541,-1,796,795,994,-1,804,1348,990,-1,505,805,807,-1,990,986,991,-1,988,1299,989,-1,806,809,808,-1,982,810,809,-1,983,811,898,-1,981,983,982,-1,813,981,814,-1,819,813,816,-1,822,979,514,-1,507,1349,508,-1,644,681,680,-1,826,1350,643,-1,512,515,537,-1,978,689,829,-1,973,1351,704,-1,973,1352,974,-1,843,845,839,-1,834,838,1353,-1,966,844,834,-1,971,841,840,-1,845,970,839,-1,845,969,846,-1,849,847,846,-1,967,1354,844,-1,964,853,535,-1,855,1355,1356,-1,961,1357,962,-1,1358,856,523,-1,960,860,695,-1,523,858,731,-1,864,1359,959,-1,866,959,958,-1,957,1040,956,-1,744,746,585,-1,642,1360,1361,-1,549,872,873,-1,546,872,547,-1,788,1362,875,-1,504,880,505,-1,1058,833,1329,-1,1085,648,893,-1,950,1363,951,-1,699,949,1364,-1,551,744,869,-1,560,568,642,-1,701,518,948,-1,945,516,701,-1,931,918,917,-1,1365,944,945,-1,896,946,1315,-1,942,892,944,-1,556,939,941,-1,904,555,1086,-1,902,1086,936,-1,500,902,936,-1,913,1080,591,-1,934,930,682,-1,908,933,932,-1,1366,914,829,-1,922,931,917,-1,566,929,567,-1,664,662,661,-1,927,496,651,-1,634,485,484,-1,1367,1368,715,-1,706,730,925,-1,922,917,920,-1,916,1366,919,-1,916,920,917,-1,911,913,1369,-1,908,589,933,-1,915,905,907,-1,1318,1087,499,-1,590,589,909,-1,1086,902,904,-1,556,901,939,-1,898,1370,899,-1,894,1371,895,-1,890,892,943,-1,889,1098,517,-1,560,887,1372,-1,699,1364,870,-1,486,528,487,-1,882,432,431,-1,649,1085,1066,-1,424,1330,655,-1,878,954,879,-1,877,420,876,-1,876,419,875,-1,875,419,416,-1,874,415,1373,-1,1374,789,1328,-1,870,1375,528,-1,543,545,867,-1,867,545,865,-1,863,864,866,-1,862,733,864,-1,1028,861,731,-1,860,960,859,-1,535,854,1376,-1,851,847,965,-1,848,850,1377,-1,1334,1354,967,-1,847,852,845,-1,969,843,844,-1,1018,1094,1019,-1,837,839,971,-1,834,1353,835,-1,840,1018,837,-1,831,1378,832,-1,977,829,689,-1,825,1350,826,-1,824,507,1099,-1,508,1349,821,-1,818,817,506,-1,819,980,817,-1,819,981,813,-1,815,813,985,-1,809,1095,813,-1,983,981,812,-1,896,807,808,-1,807,805,806,-1,988,986,990,-1,802,804,992,-1,344,343,801,-1,1379,799,800,-1,798,1380,338,-1,797,541,795,-1,793,1016,794,-1,548,793,791,-1,789,792,786,-1,786,784,787,-1,637,797,784,-1,638,637,785,-1,783,619,623,-1,781,711,1038,-1,1035,664,709,-1,563,607,780,-1,1053,1054,1052,-1,779,1001,676,-1,778,1381,614,-1,777,675,686,-1,663,997,667,-1,1382,666,665,-1,775,772,688,-1,773,929,566,-1,1005,684,1045,-1,683,930,771,-1,1008,1053,768,-1,767,1009,527,-1,1383,520,765,-1,760,761,758,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc7_Geo_5_91_coordIndex_6()
		{
			int[] value = {740,1316,738,-1,753,1384,752,-1,750,1338,492,-1,698,587,860,-1,734,585,698,-1,1015,1096,757,-1,1022,1024,1041,-1,1026,1385,491,-1,755,1025,1026,-1,969,968,846,-1,257,1386,1387,-1,697,1028,735,-1,855,1029,856,-1,1388,729,244,-1,493,1032,728,-1,725,1389,726,-1,721,1031,719,-1,719,1042,720,-1,602,618,615,-1,718,630,617,-1,715,1368,716,-1,714,1037,712,-1,595,716,710,-1,710,714,711,-1,705,220,219,-1,704,1390,702,-1,699,1391,700,-1,860,696,698,-1,694,592,1392,-1,691,777,685,-1,690,1393,691,-1,687,1043,685,-1,770,773,1044,-1,683,1045,684,-1,669,1394,680,-1,679,636,677,-1,674,686,675,-1,674,614,1381,-1,673,670,1346,-1,672,1003,670,-1,666,1394,669,-1,665,667,1345,-1,664,998,663,-1,662,1395,660,-1,506,817,659,-1,658,1332,656,-1,1322,718,1323,-1,718,1052,1323,-1,1329,833,832,-1,651,652,1046,-1,1059,1396,833,-1,881,884,650,-1,631,1062,646,-1,1329,649,1058,-1,819,816,980,-1,637,639,542,-1,634,636,1047,-1,496,647,652,-1,633,1062,631,-1,630,1078,609,-1,593,597,629,-1,626,1397,627,-1,1398,910,581,-1,611,1074,625,-1,599,598,612,-1,621,623,1399,-1,618,623,619,-1,779,1000,1001,-1,612,1075,613,-1,611,1400,609,-1,607,608,1324,-1,676,599,674,-1,604,1401,605,-1,601,1399,602,-1,597,587,1073,-1,1039,594,596,-1,703,594,1090,-1,591,1080,592,-1,937,1071,1070,-1,585,587,698,-1,584,628,582,-1,581,910,579,-1,606,605,1073,-1,578,1325,576,-1,570,574,1402,-1,573,1365,571,-1,557,569,558,-1,488,530,568,-1,567,977,565,-1,486,560,1372,-1,889,557,559,-1,551,553,700,-1,1347,542,1403,-1,547,872,549,-1,548,1374,546,-1,543,1090,544,-1,542,1347,540,-1,930,922,771,-1,1404,1405,1406,-1,535,1355,536,-1,533,1377,531,-1,530,488,487,-1,525,527,1010,-1,524,1344,522,-1,514,979,515,-1,509,1099,507,-1,508,820,506,-1,657,818,820,-1,1315,1088,984,-1,748,747,1084,-1,499,1087,497,-1,556,1319,554,-1,496,927,494,-1,491,1385,492,-1,392,4,490,-1,483,485,149,-1,477,475,479,-1,478,1103,476,-1,475,477,476,-1,274,469,471,-1,465,467,1105,-1,462,464,472,-1,12,1247,1246,-1,467,466,1314,-1,459,461,1108,-1,1407,456,458,-1,453,1408,454,-1,452,355,450,-1,446,448,1409,-1,445,71,444,-1,441,1117,439,-1,66,1119,438,-1,437,215,435,-1,19,1124,1225,-1,432,1410,433,-1,1124,19,427,-1,1123,425,427,-1,422,424,428,-1,416,419,417,-1,414,416,418,-1,1118,1266,270,-1,407,404,406,-1,404,402,403,-1,402,1411,249,-1,401,38,37,-1,399,1309,210,-1,248,250,38,-1,1412,250,252,-1,396,1250,397,-1,395,1148,394,-1,1146,1307,1145,-1,389,391,258,-1,387,388,260,-1,1195,1251,1196,-1,1150,381,383,-1,378,1413,379,-1,383,1196,386,-1,377,1121,375,-1,275,373,1303,-1,369,1156,370,-1,24,21,159,-1,365,1302,366,-1,22,176,364,-1,362,364,176,-1,1252,357,362,-1,361,1252,359,-1,356,1159,151,-1,354,1160,360,-1,354,1300,353,-1,353,1300,348,-1,349,351,1162,-1,347,1167,348,-1,345,1414,343,-1,342,345,339,-1,338,1415,339,-1,1416,1417,1418,-1,1416,1296,1417,-1,337,1170,335,-1,331,333,332,-1,330,331,59,-1,329,330,413,-1,328,325,326,-1,325,336,323,-1,321,130,129,-1,318,222,319,-1,74,1292,118,-1,313,115,125,-1,315,122,192,-1,73,1419,74,-1,73,315,1419,-1,313,1295,202,-1,188,1294,312,-1,311,180,186,-1,185,184,1213,-1,276,1212,308,-1,302,304,201,-1,1289,299,291,-1,296,1420,297,-1,294,1184,295,-1,291,35,1421,-1,287,289,1288,-1,1193,1262,1192,-1,283,266,265,-1,281,1203,6,-1,274,471,272,-1,1422,1423,1424,-1,1131,438,1119,-1,271,95,97,-1,1193,1258,1190,-1,1192,282,1193,-1,238,284,1425,-1,253,211,271,-1,1411,1426,249,-1,247,249,1426,-1,244,246,1388,-1,243,1201,8,-1,241,1188,239,-1,235,1206,233,-1,234,1427,235,-1,140,1286,111,-1,230,1221,231,-1,227,1209,228,-1,226,223,224,-1,221,223,1210,-1,221,1102,1218,-1,218,220,1428,-1,216,217,1429,-1,33,1114,31,-1,214,1430,215,-1,212,437,67,-1,211,400,210,-1,208,209,1138,-1,205,207,1293,-1,275,1304,276,-1,204,193,202,-1,187,1157,197,-1,196,1431,194,-1,115,313,193,-1,314,192,113,-1,1171,154,191,-1,154,189,190,-1,185,1294,183,-1,182,178,180,-1,177,1432,178,-1,22,1256,175,-1,1219,172,174,-1,170,230,171,-1,375,1121,157,-1,165,9,1101,-1,1121,1433,1279,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc7_Geo_5_91_coordIndex_7()
		{
			int[] value = {163,1225,1124,-1,162,142,161,-1,76,443,442,-1,154,1171,152,-1,363,1301,362,-1,147,196,148,-1,144,161,142,-1,232,140,141,-1,137,1274,138,-1,90,468,1434,-1,136,133,93,-1,134,121,1238,-1,114,192,124,-1,132,1435,130,-1,128,130,1286,-1,231,1235,140,-1,192,122,124,-1,121,1236,119,-1,117,72,118,-1,88,112,1436,-1,111,1435,109,-1,1275,114,133,-1,101,1276,86,-1,107,227,105,-1,101,103,1106,-1,1314,466,1241,-1,96,1437,97,-1,92,94,137,-1,89,468,90,-1,1232,83,85,-1,1424,1115,81,-1,82,442,78,-1,81,1115,79,-1,70,1438,77,-1,0,439,76,-1,69,1438,70,-1,458,1109,1271,-1,67,1439,68,-1,1127,60,62,-1,59,1127,57,-1,56,104,54,-1,302,479,303,-1,1440,1441,1442,-1,49,398,50,-1,47,1443,45,-1,44,434,1,-1,42,1178,40,-1,39,1179,37,-1,30,1261,28,-1,24,1256,22,-1,23,367,21,-1,23,364,172,-1,1161,1270,1260,-1,1243,1423,1422,-1,14,1247,12,-1,1271,1244,458,-1,9,1277,10,-1,8,1201,6,-1,4,392,5,-1,277,1154,275,-1,277,205,1154,-1,368,21,366,-1,368,159,21,-1,27,374,1257,-1,27,372,374,-1,1444,56,1439,-1,56,1444,1263,-1,1298,1163,1162,-1,1298,359,1163,-1,1445,1259,1135,-1,1445,394,1259,-1,1440,1446,1441,-1,1440,1447,1446,-1,396,49,1143,-1,396,398,49,-1,406,1266,1118,-1,1266,406,405,-1,1448,1296,1416,-1,1296,1448,1169,-1,1449,1194,1269,-1,1449,334,1194,-1,1244,1246,1245,-1,1246,1244,12,-1,1409,1313,457,-1,1409,1450,1313,-1,1451,1129,1452,-1,1451,33,1129,-1,69,429,1438,-1,69,430,429,-1,214,1453,1430,-1,460,1453,214,-1,1408,1245,1246,-1,1408,1454,1245,-1,84,1239,1106,-1,1239,84,83,-1,138,1455,1113,-1,138,1274,1455,-1,117,171,141,-1,117,116,171,-1,125,1197,1173,-1,125,1234,1197,-1,1456,109,1457,-1,109,1456,1458,-1,110,1458,112,-1,110,109,1458,-1,133,1198,1275,-1,136,1198,133,-1,112,1459,1436,-1,1458,1459,112,-1,1165,1063,989,-1,1165,1226,1063,-1,1460,1461,1462,-1,1463,1461,1460,-1,1228,1431,1214,-1,1228,1229,1431,-1,1255,159,158,-1,1255,24,159,-1,9,161,1277,-1,9,146,161,-1,1310,1281,1223,-1,1464,1281,1310,-1,377,1224,1282,-1,1280,1224,377,-1,1465,436,435,-1,1465,1134,436,-1,1218,107,1132,-1,107,1218,1102,-1,1432,1217,178,-1,1432,1466,1217,-1,1435,1286,130,-1,1435,111,1286,-1,307,308,199,-1,307,1467,308,-1,202,206,1211,-1,202,1295,206,-1,441,1452,1117,-1,441,1468,1452,-1,77,429,155,-1,77,1438,429,-1,106,54,104,-1,106,1469,54,-1,1429,1428,1470,-1,1429,482,1428,-1,1102,1209,227,-1,1102,1210,1209,-1,1283,237,1471,-1,238,237,1283,-1,319,1208,1472,-1,1208,319,317,-1,1284,191,128,-1,1284,1172,191,-1,1191,35,34,-1,1421,35,1191,-1,1199,1427,1187,-1,1427,1199,1473,-1,279,224,278,-1,279,225,224,-1,266,1207,1473,-1,266,280,1207,-1,1474,1156,369,-1,1213,1156,1474,-1,324,331,322,-1,324,333,331,-1,1475,256,1476,-1,257,256,1475,-1,1288,1477,1478,-1,1288,289,1477,-1,1479,1189,1188,-1,1479,1480,1189,-1,1481,268,1253,-1,1481,269,268,-1,1180,240,1290,-1,1291,240,1180,-1,1291,297,1482,-1,1291,1182,297,-1,39,1183,41,-1,1483,1183,39,-1,1178,295,36,-1,42,295,1178,-1,208,118,470,-1,208,116,118,-1,1484,200,1212,-1,200,1484,1485,-1,1474,1486,1487,-1,1488,1486,1474,-1,1489,243,242,-1,1489,1490,243,-1,293,128,1185,-1,128,293,1284,-1,63,1460,1269,-1,63,1491,1460,-1,1492,1493,1494,-1,1495,1493,1492,-1,1416,341,1448,-1,1416,1496,341,-1,1167,1497,1498,-1,1168,1497,1167,-1,1164,1297,1166,-1,1297,1164,1414,-1,1298,348,1300,-1,348,1298,346,-1,360,1298,1300,-1,359,1298,360,-1,1158,452,455,-1,1160,452,1158,-1,144,1301,363,-1,144,143,1301,-1,174,357,356,-1,174,173,357,-1,1302,1499,1500,-1,1302,28,1499,-1,51,1154,1175,-1,51,75,1154,-1,483,1501,484,-1,1281,1501,483,-1,1151,1152,1305,-1,1151,45,1152,-1,1204,382,379,-1,1204,383,382,-1,1195,1502,1503,-1,1204,1502,1195,-1,1504,1503,1505,-1,1504,1506,1503,-1,1145,259,395,-1,1145,1307,259,-1,1507,391,390,-1,1259,391,1507,-1,385,1508,1441,-1,385,384,1508,-1,1509,1510,1511,-1,1509,1512,1510,-1,49,1509,1513,-1,49,48,1509,-1,1139,1308,1483,-1,1308,1139,1140,-1,1426,1447,1440,-1,1426,1411,1447,-1,1483,38,1139,-1,1483,39,38,-1,434,435,2,-1,434,1465,435,-1,1310,375,157,-1,1310,1223,375,-1,1279,77,155,-1,82,77,1279,-1,441,1453,1514,-1,441,440,1453,-1,1112,450,355,-1,80,450,1112,-1,1241,15,1455,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc7_Geo_5_91_coordIndex_8()
		{
			int[] value = {15,1241,1240,-1,1240,14,13,-1,1240,150,14,-1,91,1311,474,-1,273,1311,91,-1,1104,1103,473,-1,1103,1104,476,-1,11,180,1216,-1,11,310,180,-1,978,749,689,-1,978,692,749,-1,507,823,1349,-1,507,824,823,-1,828,510,1100,-1,828,830,510,-1,544,1515,552,-1,1091,1515,544,-1,985,991,986,-1,985,1095,991,-1,965,1516,958,-1,965,848,1516,-1,1517,1406,1405,-1,1517,1518,1406,-1,1355,1376,1356,-1,1355,535,1376,-1,868,865,869,-1,863,865,868,-1,541,1519,795,-1,540,1519,541,-1,548,550,793,-1,550,548,547,-1,1315,575,748,-1,946,575,1315,-1,946,572,575,-1,891,1520,1521,-1,1520,891,890,-1,747,1098,1084,-1,1098,747,948,-1,942,895,1371,-1,895,942,944,-1,577,913,591,-1,1398,913,577,-1,746,586,585,-1,746,1082,586,-1,937,588,590,-1,937,1070,588,-1,613,562,778,-1,562,613,1083,-1,1072,611,624,-1,1072,1400,611,-1,718,1078,630,-1,1322,1078,718,-1,582,1076,583,-1,582,1325,1076,-1,583,1522,584,-1,583,598,1522,-1,1020,598,600,-1,598,1020,1522,-1,1523,1401,604,-1,1401,1523,1524,-1,1069,1327,1067,-1,1068,1327,1069,-1,1092,1525,1093,-1,1092,1526,1525,-1,996,1346,670,-1,996,1527,1346,-1,652,646,678,-1,652,647,646,-1,631,496,495,-1,631,647,496,-1,1331,1528,1055,-1,1528,1331,1529,-1,952,831,950,-1,831,952,1057,-1,1364,1375,870,-1,1364,957,1375,-1,768,717,769,-1,717,768,1053,-1,928,952,951,-1,651,952,928,-1,618,1399,623,-1,618,602,1399,-1,1530,690,1531,-1,1393,690,1530,-1,1532,887,886,-1,1532,1521,887,-1,904,1520,938,-1,904,1533,1520,-1,1351,1534,1535,-1,1534,1351,1536,-1,723,1335,1537,-1,1335,723,722,-1,1036,782,1538,-1,1035,782,1036,-1,673,1034,620,-1,673,1033,1034,-1,520,1340,521,-1,1340,520,1383,-1,1042,1024,1341,-1,1041,1024,1042,-1,713,1539,1540,-1,713,712,1539,-1,1333,1384,1041,-1,1333,1338,1384,-1,732,858,1336,-1,732,731,858,-1,736,1541,1542,-1,736,722,1541,-1,1384,1022,1041,-1,1384,753,1022,-1,760,1543,1544,-1,1545,1543,760,-1,791,638,785,-1,791,794,638,-1,722,1540,1539,-1,1540,722,724,-1,1386,1475,1546,-1,1475,1386,257,-1,1545,759,1547,-1,1545,760,759,-1,1548,1479,725,-1,1548,1480,1479,-1,1096,1549,1097,-1,1096,1015,1549,-1,726,1012,1011,-1,1012,726,1550,-1,1551,1552,1550,-1,1551,1553,1552,-1,1552,961,1554,-1,961,1552,1357,-1,1344,1010,522,-1,525,1010,1344,-1,1054,960,1052,-1,859,960,1054,-1,682,780,911,-1,684,780,682,-1,1555,1005,1556,-1,1005,1555,561,-1,1530,1557,1558,-1,1557,1530,1531,-1,561,778,562,-1,561,1555,778,-1,924,1368,1367,-1,1317,1368,924,-1,998,1527,996,-1,1527,998,1036,-1,1346,721,1033,-1,721,1346,1559,-1,720,1341,764,-1,1042,1341,720,-1,1362,1560,1561,-1,1362,1562,1560,-1,787,995,1562,-1,796,995,787,-1,1562,1563,1560,-1,1562,995,1563,-1,1564,993,1565,-1,1564,1566,993,-1,993,1348,804,-1,1379,1348,993,-1,1567,505,880,-1,805,505,1567,-1,988,1069,986,-1,988,987,1069,-1,1067,986,1069,-1,986,1067,815,-1,816,632,980,-1,816,633,632,-1,981,1332,812,-1,981,656,1332,-1,1568,821,1569,-1,1568,979,821,-1,978,539,1004,-1,978,564,539,-1,1501,926,484,-1,926,1501,1331,-1,976,1352,973,-1,976,532,1352,-1,838,1027,1353,-1,838,837,1027,-1,1570,1019,1571,-1,1019,1570,1027,-1,1571,1504,1505,-1,1571,1572,1504,-1,968,1334,850,-1,968,1354,1334,-1,972,1573,1517,-1,972,970,1573,-1,534,1574,964,-1,534,1575,1574,-1,1576,962,1357,-1,1576,1577,962,-1,857,962,1578,-1,963,962,857,-1,1091,1039,1515,-1,594,1039,1091,-1,871,1374,1328,-1,871,546,1374,-1,424,877,1330,-1,424,423,877,-1,432,1529,1579,-1,432,883,1529,-1,1396,950,833,-1,1396,529,950,-1,552,869,544,-1,869,552,551,-1,1580,887,1533,-1,1580,1372,887,-1,895,946,896,-1,946,895,573,-1,502,588,1581,-1,1081,588,502,-1,497,1081,498,-1,497,641,1081,-1,931,580,918,-1,580,931,934,-1,1366,932,914,-1,916,932,1366,-1,709,661,707,-1,709,664,661,-1,1582,831,1057,-1,1582,1378,831,-1,1582,636,635,-1,636,1582,677,-1,919,921,920,-1,567,921,919,-1,913,581,1369,-1,913,1398,581,-1,910,908,579,-1,910,909,908,-1,894,899,1371,-1,899,894,897,-1,1583,1584,500,-1,1583,1585,1584,-1,888,557,889,-1,557,888,1360,-1,885,486,1586,-1,885,870,486,-1,648,504,893,-1,648,884,504,-1,1587,881,650,-1,881,1587,1060,-1,1579,1331,1501,-1,1529,1331,1579,-1,877,1561,1588,-1,876,1561,877,-1,874,790,788,-1,1373,790,874,-1,873,410,1589,-1,871,410,873,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc7_Geo_5_91_coordIndex_9()
		{
			int[] value = {524,1028,1337,-1,861,1028,524,-1,1029,1404,1336,-1,1029,1590,1404,-1,856,963,857,-1,856,1358,963,-1,1577,1578,962,-1,1577,1591,1578,-1,1591,1592,536,-1,1591,1512,1592,-1,841,1517,1405,-1,841,972,1517,-1,490,1334,489,-1,531,1334,490,-1,854,840,842,-1,840,854,1018,-1,1570,1353,1027,-1,1570,835,1353,-1,1516,1593,543,-1,1593,1516,533,-1,1569,825,1568,-1,1569,1350,825,-1,1569,1349,823,-1,821,1349,1569,-1,633,815,1067,-1,633,816,815,-1,983,897,982,-1,983,898,897,-1,807,1088,505,-1,807,984,1088,-1,801,1299,988,-1,801,343,1299,-1,1566,1379,993,-1,1566,799,1379,-1,1594,798,799,-1,1380,798,1594,-1,1380,1492,338,-1,1380,1595,1492,-1,540,1495,1519,-1,540,1267,1495,-1,1562,788,787,-1,788,1562,1362,-1,1526,1347,1403,-1,1526,1092,1347,-1,1013,618,620,-1,1013,616,618,-1,721,1032,1031,-1,721,1559,1032,-1,782,709,711,-1,782,1035,709,-1,617,769,717,-1,617,1013,769,-1,1043,1555,1556,-1,687,1555,1043,-1,1531,827,1557,-1,1531,1596,827,-1,929,770,771,-1,773,770,929,-1,694,1052,960,-1,1323,1052,694,-1,1357,1553,1576,-1,1552,1553,1357,-1,1554,1550,1552,-1,1550,1554,1012,-1,764,1383,765,-1,764,1342,1383,-1,1015,1597,1549,-1,1015,758,1597,-1,762,1598,1548,-1,1598,762,761,-1,1544,761,760,-1,761,1544,1598,-1,1599,1547,1600,-1,1547,1599,1545,-1,1386,1599,1542,-1,1386,1546,1599,-1,1339,755,754,-1,755,1339,1025,-1,1541,729,1387,-1,1541,1601,729,-1,745,1082,746,-1,1082,745,1602,-1,1333,493,1338,-1,1333,1030,493,-1,1542,1387,1386,-1,1542,1541,1387,-1,1336,1406,732,-1,1406,1336,1404,-1,1540,1038,713,-1,1038,1540,724,-1,1603,491,728,-1,1537,491,1603,-1,1341,1023,1342,-1,1024,1023,1341,-1,1597,726,1011,-1,1597,727,726,-1,1539,1541,722,-1,1539,1601,1541,-1,1392,1080,912,-1,1080,1392,592,-1,1538,1527,1036,-1,1538,1604,1527,-1,1317,716,1368,-1,1317,1037,716,-1,1367,706,924,-1,1367,705,706,-1,704,1593,976,-1,1593,704,703,-1,903,1533,904,-1,1580,1533,903,-1,892,947,945,-1,947,892,891,-1,1583,1602,745,-1,1602,1583,1397,-1,1574,1572,964,-1,1504,1572,1574,-1,774,1556,775,-1,774,1043,1556,-1,1382,645,680,-1,645,1382,826,-1,686,1381,687,-1,1381,686,674,-1,1558,1050,1530,-1,1558,1051,1050,-1,635,1378,1582,-1,635,1056,1378,-1,1529,1587,1528,-1,1587,1529,883,-1,678,1061,679,-1,678,646,1061,-1,997,670,1003,-1,997,996,670,-1,1017,638,794,-1,638,1017,639,-1,1463,1526,1605,-1,1526,1463,1525,-1,1606,1523,626,-1,1523,1606,1524,-1,1522,621,1607,-1,621,1522,1020,-1,1606,1522,1607,-1,584,1522,1606,-1,597,624,629,-1,597,1072,624,-1,626,584,1606,-1,626,628,584,-1,1608,1401,603,-1,1401,1608,605,-1,606,587,586,-1,606,1073,587,-1,1040,1515,1039,-1,1040,949,1515,-1,1397,1523,1602,-1,1397,626,1523,-1,625,1325,578,-1,1325,625,1076,-1,503,1084,893,-1,503,748,1084,-1,1371,1609,942,-1,1609,1371,899,-1,948,575,571,-1,747,575,948,-1,1584,902,500,-1,1584,903,902,-1,977,1610,829,-1,919,977,567,-1,977,919,1610,-1,1084,889,559,-1,889,1084,1098,-1,516,1360,888,-1,1361,1360,516,-1,900,555,938,-1,555,900,556,-1,1016,549,1611,-1,549,1016,793,-1,994,1380,1594,-1,994,1595,1380,-1,536,1575,534,-1,1575,536,1592,-1,1518,1573,1359,-1,1517,1573,1518,-1,848,533,1516,-1,533,848,1377,-1,1547,1015,756,-1,1015,1547,759,-1,949,552,1515,-1,949,553,552,-1,1337,1344,524,-1,1337,1007,1344,-1,1363,529,528,-1,529,1363,950,-1,748,1088,1315,-1,503,1088,748,-1,494,659,495,-1,494,509,659,-1,196,1612,148,-1,195,1612,196,-1,1613,1485,1484,-1,1613,480,1485,-1,1103,1614,373,-1,478,1614,1103,-1,465,464,466,-1,472,464,465,-1,454,1246,1159,-1,454,1408,1246,-1,453,452,451,-1,455,452,453,-1,1514,1468,441,-1,1450,1468,1514,-1,70,444,71,-1,1130,444,70,-1,2,215,1430,-1,2,435,215,-1,82,1433,1273,-1,82,1279,1433,-1,1615,422,1616,-1,422,1615,421,-1,412,329,413,-1,414,329,412,-1,1445,407,54,-1,1445,1135,407,-1,1137,1411,402,-1,1137,1447,1411,-1,1617,252,251,-1,1143,252,1617,-1,296,1511,1510,-1,1511,296,298,-1,384,396,1508,-1,384,1250,396,-1,1507,1306,1618,-1,1507,390,1306,-1,1145,3,5,-1,3,1145,46,-1,1195,1506,1251,-1,1503,1506,1195,-1,1502,1505,1503,-1,1619,1505,1502,-1,378,1620,1413,-1,1621,1620,378,-1,1223,376,375,-1,376,1223,1222,-1,371,1500,1499,-1,371,370,1500,-1,366,1500,368,-1,1500,366,1302,-1,349,143,350,-1,349,1301,143,-1,455,358,1158,-1,455,454,358,-1,1270,353,18,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc7_Geo_5_91_coordIndex_10()
		{
			int[] value = {1270,1161,353,-1,1299,1414,1164,-1,1299,343,1414,-1,342,1496,1168,-1,342,341,1496,-1,339,1448,341,-1,1448,339,1415,-1,1492,1415,338,-1,1492,1494,1415,-1,1495,1249,1493,-1,1495,1267,1249,-1,327,1417,328,-1,1126,1417,327,-1,65,1491,63,-1,65,1248,1491,-1,1284,292,234,-1,1284,293,292,-1,1490,152,1171,-1,1490,1489,152,-1,315,204,1419,-1,204,315,314,-1,1487,1213,1474,-1,1487,185,1213,-1,1304,1212,276,-1,1304,1484,1212,-1,1292,470,118,-1,470,1292,471,-1,297,1142,298,-1,1142,297,1182,-1,1291,241,240,-1,1291,1482,241,-1,1622,290,1189,-1,288,290,1622,-1,288,1623,289,-1,1622,1623,288,-1,1478,1624,1625,-1,1477,1624,1478,-1,1624,256,1626,-1,1624,1476,256,-1,263,1287,285,-1,262,1287,263,-1,246,1627,255,-1,246,1628,1627,-1,1629,438,1131,-1,1630,438,1629,-1,255,1626,256,-1,255,1627,1626,-1,7,1203,261,-1,7,6,1203,-1,281,266,283,-1,266,281,280,-1,1285,1628,246,-1,1628,1285,1265,-1,237,318,320,-1,318,237,236,-1,1200,1187,1186,-1,1187,1200,1199,-1,240,1631,1290,-1,240,239,1631,-1,1627,279,238,-1,1627,1628,279,-1,103,208,470,-1,102,208,103,-1,152,1472,1208,-1,152,1489,1472,-1,1209,1264,228,-1,1209,226,1264,-1,1470,220,1534,-1,1470,1428,220,-1,1470,216,1429,-1,1153,216,1470,-1,446,457,456,-1,457,446,1409,-1,215,212,213,-1,212,215,437,-1,1473,235,1427,-1,235,1473,1207,-1,1630,1113,438,-1,138,1113,1630,-1,1506,1574,1144,-1,1574,1506,1504,-1,1467,309,308,-1,1467,203,309,-1,1234,1198,1197,-1,1275,1198,1234,-1,1215,1487,1486,-1,1215,312,1487,-1,376,148,1612,-1,376,1222,148,-1,1122,1464,1310,-1,1410,1464,1122,-1,1214,1064,1228,-1,1064,1214,1049,-1,1220,466,464,-1,466,1220,150,-1,1462,1632,1128,-1,1461,1632,1462,-1,1436,1630,1629,-1,1436,1459,1630,-1,123,93,124,-1,1233,93,123,-1,1633,119,140,-1,1633,120,119,-1,87,120,1633,-1,1231,120,87,-1,1457,1435,132,-1,109,1435,1457,-1,1238,1276,1239,-1,1238,1231,1276,-1,92,139,1456,-1,92,137,139,-1,112,1633,110,-1,87,1633,112,-1,96,88,1437,-1,96,86,88,-1,1444,1133,108,-1,1444,1120,1133,-1,1459,138,1630,-1,1459,139,138,-1,1437,1436,1629,-1,1436,1437,88,-1,1232,134,83,-1,1233,134,1232,-1,1243,20,449,-1,1243,1422,20,-1,1634,451,1110,-1,453,451,1634,-1,1424,1116,1115,-1,1116,1424,1423,-1,461,214,17,-1,461,460,214,-1,1614,1303,373,-1,1303,478,1613,-1,1614,478,1303,-1,71,1243,69,-1,445,1243,71,-1,1468,1451,1452,-1,448,1451,1468,-1,1269,64,63,-1,1269,1268,64,-1,1494,1170,1169,-1,1494,1493,1170,-1,330,58,413,-1,330,59,58,-1,1575,48,50,-1,1592,48,1575,-1,1618,1447,1137,-1,1447,1618,1446,-1,1443,394,1445,-1,47,394,1443,-1,269,1478,286,-1,1288,1478,269,-1,1439,1120,1444,-1,1439,67,1120,-1,1179,1205,37,-1,1179,1176,1205,-1,44,1466,434,-1,1282,1466,44,-1,1270,1422,1260,-1,1422,1270,20,-1,175,10,1277,-1,175,1256,10,-1,1244,13,12,-1,1271,13,1244,-1,27,462,372,-1,27,26,462,-1,25,1257,75,-1,25,27,1257,-1,1130,78,443,-1,1130,70,78,-1,1465,1466,1432,-1,1465,434,1466,-1,46,1151,3,-1,46,45,1151,-1,1259,1136,1135,-1,1136,1259,1507,-1,1441,1617,1442,-1,1617,1441,1508,-1,1508,1143,1617,-1,396,1143,1508,-1,1415,1169,1448,-1,1415,1494,1169,-1,61,334,1449,-1,332,334,61,-1,1109,457,1313,-1,458,457,1109,-1,1271,16,13,-1,1107,16,1271,-1,440,1430,1453,-1,440,2,1430,-1,442,1273,76,-1,82,1273,442,-1,80,1111,450,-1,80,79,1111,-1,453,1454,1408,-1,453,1634,1454,-1,85,1434,468,-1,85,84,1434,-1,1455,17,1113,-1,17,1455,15,-1,1455,98,1241,-1,98,1455,1274,-1,209,101,96,-1,101,209,102,-1,1134,1120,436,-1,1120,1134,1133,-1,123,1272,135,-1,122,1272,123,-1,136,1456,1457,-1,1456,136,92,-1,132,136,1457,-1,1198,136,132,-1,1459,1456,139,-1,1458,1456,1459,-1,1491,1463,1460,-1,1525,1463,1491,-1,324,1194,333,-1,1268,1194,324,-1,154,311,188,-1,154,153,311,-1,1229,194,1431,-1,1229,162,194,-1,1214,196,147,-1,1214,1431,196,-1,1157,1256,1255,-1,1157,10,1256,-1,1280,195,165,-1,195,1280,1612,-1,1294,1487,312,-1,1294,185,1487,-1,1174,1486,207,-1,1486,1174,1215,-1,184,197,1213,-1,184,198,197,-1,1211,205,277,-1,1211,206,205,-1,208,169,116,-1,208,1138,169,-1,1451,447,1312,-1,448,447,1451,-1,1514,460,459,-1,460,1514,1453,-1,1469,216,1152,-1,106,216,1469,-1,218,482,481,-1,218,1428,482,-1,108,1132,107,-1,1133,1132,108,-1,319,1635,320,-1,1472,1635,319,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getc7_Geo_5_91_coordIndex_11()
		{
			int[] value = {1188,1636,1479,-1,241,1636,1188,-1,1253,1184,1481,-1,295,1184,1253,-1,8,1635,242,-1,1635,8,1471,-1,318,278,224,-1,236,278,318,-1,1440,247,1426,-1,1442,247,1440,-1,247,250,248,-1,250,247,251,-1,1637,1147,1146,-1,1638,1147,1637,-1,1283,263,284,-1,1283,261,263,-1,1202,280,6,-1,1202,1207,280,-1,1254,1193,1190,-1,1262,1193,1254,-1,1191,1258,1200,-1,1190,1258,1191,-1,1497,1616,425,-1,1497,1639,1616,-1,1125,425,1616,-1,1125,426,425,-1,1471,261,1283,-1,1471,8,261,-1,1425,285,1625,-1,284,285,1425,-1,1475,1640,1641,-1,1475,1476,1640,-1,1287,267,285,-1,1287,1192,267,-1,1623,1641,1640,-1,1641,1623,1642,-1,1631,269,1481,-1,1631,287,269,-1,1421,292,291,-1,1421,1186,292,-1,1420,1482,297,-1,1643,1482,1420,-1,1181,1483,1308,-1,1181,1183,1483,-1,170,1138,1309,-1,1138,170,169,-1,201,1485,302,-1,1485,201,200,-1,369,1488,1474,-1,369,1155,1488,-1,1419,203,1467,-1,203,1419,204,-1,1289,231,1221,-1,1289,1185,231,-1,221,319,222,-1,221,317,319,-1,243,233,1206,-1,243,1490,233,-1,1286,1185,128,-1,1286,1235,1185,-1,1639,1615,1616,-1,1639,1418,1615,-1,330,325,322,-1,325,330,326,-1,1269,1462,1449,-1,1462,1269,1460,-1,337,325,328,-1,337,336,325,-1,1496,1418,1639,-1,1418,1496,1416,-1,340,345,344,-1,340,339,345,-1,425,1498,1497,-1,425,1123,1498,-1,1414,342,1297,-1,342,1414,345,-1,1498,348,1167,-1,352,348,1498,-1,1160,355,452,-1,355,1160,354,-1,1220,356,151,-1,356,1220,174,-1,371,1155,369,-1,371,52,1155,-1,1469,1445,54,-1,1443,1445,1469,-1,379,1502,1204,-1,379,1413,1502,-1,386,1250,384,-1,1196,1250,386,-1,260,1307,387,-1,260,259,1307,-1,1446,385,1441,-1,1446,1149,385,-1,1592,1509,48,-1,1592,1512,1509,-1,1513,1511,1141,-1,1513,1509,1511,-1,1140,250,1412,-1,1140,1139,250,-1,1442,251,247,-1,1442,1617,251,-1,254,37,1205,-1,37,254,401,-1,410,411,1589,-1,411,410,409,-1,1126,421,1615,-1,421,1126,417,-1,428,1616,422,-1,1125,1616,428,-1,426,167,427,-1,426,168,167,-1,1281,1579,1501,-1,1579,1281,1464,-1,1124,1122,163,-1,1278,1122,1124,-1,19,164,449,-1,19,1225,164,-1,1224,1466,1282,-1,1224,1217,1466,-1,213,438,1113,-1,212,438,213,-1,1312,33,1451,-1,1114,33,1312,-1,1454,458,1245,-1,1454,1407,458,-1,1105,468,89,-1,1105,467,468,-1,90,469,274,-1,90,1434,469,-1,480,478,477,-1,478,480,1613,-1,217,482,1429,-1,229,482,217,-1,244,218,245,-1,244,219,218,-1,498,1319,499,-1,1319,498,554,-1,907,510,830,-1,907,511,510,-1,1100,512,564,-1,1100,510,512,-1,569,1360,642,-1,569,557,1360,-1,1363,1375,1395,-1,1363,528,1375,-1,1352,531,490,-1,1352,532,531,-1,959,965,958,-1,851,965,959,-1,1590,1405,1404,-1,1644,1405,1590,-1,1356,1644,1590,-1,1644,1356,1376,-1,1374,792,789,-1,1374,548,792,-1,795,1595,994,-1,795,1519,1595,-1,542,1089,1403,-1,542,639,1089,-1,947,1521,1532,-1,1521,947,891,-1,501,554,498,-1,554,501,936,-1,1586,1372,1580,-1,1586,486,1372,-1,1321,574,568,-1,574,1321,1402,-1,944,573,895,-1,944,1365,573,-1,940,899,1370,-1,940,1609,899,-1,1398,576,910,-1,1398,577,576,-1,500,1581,1583,-1,502,1581,500,-1,1070,1581,588,-1,627,1581,1070,-1,593,695,587,-1,592,695,593,-1,949,957,1364,-1,1040,957,949,-1,1320,1075,1074,-1,1075,1320,613,-1,1077,676,1001,-1,1077,599,676,-1,1399,1607,621,-1,1607,1399,601,-1,1400,605,1608,-1,605,1400,1072,-1,609,1608,615,-1,609,1400,1608,-1,583,1075,612,-1,1075,583,1076,-1,1602,604,1082,-1,1602,1523,604,-1,1632,1645,955,-1,1645,1632,1461,-1,589,935,905,-1,641,935,589,-1,1064,1048,1065,-1,1049,1048,1064,-1,1060,655,654,-1,1060,882,655,-1,636,1048,1047,-1,636,679,1048,-1,509,681,644,-1,509,494,681,-1,677,1057,1046,-1,1582,1057,677,-1,1558,1345,1051,-1,1558,665,1345,-1,1530,1002,1393,-1,1050,1002,1530,-1,1020,1077,1021,-1,1077,1020,600,-1,680,666,1382,-1,680,1394,666,-1,692,693,749,-1,692,691,693,-1,1323,1392,1324,-1,1323,694,1392,-1,1391,885,1585,-1,699,885,1391,-1,900,943,901,-1,890,943,900,-1,704,1535,1390,-1,1535,704,1351,-1,220,1535,1534,-1,220,705,1535,-1,1603,782,781,-1,782,1603,1538,-1,1479,1389,725,-1,1479,1636,1389,-1,767,1097,1549,-1,1097,767,766,-1,1038,723,781,-1,724,723,1038,-1,1601,925,729,-1,923,925,1601,-1,1384,750,752,-1,1338,750,1384,-1,751,1385,1026,-1,751,492,1385,-1,966,1637,967,-1,1637,966,1638,-1,755,1335,737,-1,755,1026,1335,-1,738,1014,741,-1,1014,738,1316,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getc7_Geo_5_91_coordIndex_12()
		{
			int[] value = {742,1340,1023,-1,1340,742,741,-1,1588,1565,879,-1,1588,1564,1565,-1,879,953,1588,-1,879,954,953,-1,1026,1537,1335,-1,1026,491,1537,-1,754,736,1600,-1,736,754,737,-1,1543,1475,1641,-1,1543,1546,1475,-1,757,1339,754,-1,757,740,1339,-1,1641,1544,1543,-1,1642,1544,1641,-1,762,725,727,-1,762,1548,725,-1,1389,1550,726,-1,1389,1551,1550,-1,1553,1643,1420,-1,1553,1551,1643,-1,1646,1554,961,-1,1646,1343,1554,-1,765,519,768,-1,520,519,765,-1,912,780,607,-1,911,780,912,-1,772,565,688,-1,772,566,565,-1,1382,1558,1557,-1,1382,665,1558,-1,687,778,1555,-1,1381,778,687,-1,1527,1559,1346,-1,1527,1604,1559,-1,1561,1564,1588,-1,1561,1560,1564,-1,784,792,785,-1,786,792,784,-1,1645,1089,1611,-1,1605,1089,1645,-1,784,796,787,-1,784,797,796,-1,1560,1566,1564,-1,1563,1566,1560,-1,800,340,344,-1,800,798,340,-1,1567,879,1565,-1,1567,880,879,-1,1379,801,1348,-1,800,801,1379,-1,802,1567,803,-1,1567,802,805,-1,896,810,894,-1,808,810,896,-1,812,935,640,-1,1332,935,812,-1,1596,825,827,-1,1596,538,825,-1,1004,538,1596,-1,1004,539,538,-1,1378,1055,832,-1,1056,1055,1378,-1,1620,836,835,-1,836,1620,1621,-1,1505,1570,1571,-1,1570,1505,1619,-1,1572,1019,1094,-1,1019,1572,1571,-1,1354,969,844,-1,1354,968,969,-1,850,531,1377,-1,850,1334,531,-1,970,851,1573,-1,970,852,851,-1,1376,842,1644,-1,1376,854,842,-1,1577,296,1510,-1,1576,296,1577,-1,855,1590,1029,-1,1590,855,1356,-1,733,1359,864,-1,733,1518,1359,-1,867,1516,543,-1,867,958,1516,-1,790,1328,789,-1,1328,790,1373,-1,876,1362,1561,-1,875,1362,876,-1,1588,1330,877,-1,1330,1588,953,-1,654,954,878,-1,654,653,954,-1,1528,650,1329,-1,1528,1587,650,-1,1396,1402,1321,-1,1396,1059,1402,-1,745,1585,1583,-1,1585,745,1391,-1,1521,1533,887,-1,1533,1521,1520,-1,1318,898,811,-1,1318,1370,898,-1,905,933,589,-1,933,905,915,-1,1610,1366,829,-1,1366,1610,919,-1,1367,702,1390,-1,702,1367,715,-1,706,244,730,-1,706,219,244,-1,663,927,928,-1,663,776,927,-1,771,921,929,-1,921,771,922,-1,907,829,915,-1,907,830,829,-1,579,932,918,-1,932,579,908,-1,1369,580,934,-1,581,580,1369,-1,939,1609,940,-1,939,901,1609,-1,1365,701,571,-1,945,701,1365,-1,901,942,1609,-1,901,943,942,-1,642,1532,886,-1,1361,1532,642,-1,744,1391,745,-1,1391,744,700,-1,570,1059,1058,-1,1059,570,1402,-1,832,1528,1329,-1,832,1055,1528,-1,1328,415,408,-1,1328,1373,415,-1,955,1589,1632,-1,873,1589,955,-1,743,735,868,-1,734,735,743,-1,523,1646,1358,-1,523,522,1646,-1,1518,732,1406,-1,1518,733,732,-1,961,1358,1646,-1,963,1358,961,-1,1591,1355,1578,-1,1591,536,1355,-1,1510,1591,1577,-1,1510,1512,1591,-1,1644,841,1405,-1,1644,842,841,-1,533,976,1593,-1,532,976,533,-1,971,970,972,-1,839,970,971,-1,1619,835,1570,-1,1619,1620,835,-1,836,1638,966,-1,1621,1638,836,-1,973,1536,1351,-1,975,1536,973,-1,1568,538,537,-1,538,1568,825,-1,979,537,515,-1,537,979,1568,-1,823,1350,1569,-1,823,643,1350,-1,894,982,897,-1,982,894,810,-1,991,809,806,-1,809,991,1095,-1,802,991,806,-1,992,991,802,-1,1348,988,990,-1,801,988,1348,-1,1565,803,1567,-1,803,1565,993,-1,799,1563,1594,-1,799,1566,1563,-1,1519,1492,1595,-1,1492,1519,1495,-1,1605,1403,1089,-1,1605,1526,1403,-1,620,763,1013,-1,1034,763,620,-1,1032,1604,728,-1,1032,1559,1604,-1,1051,1003,1000,-1,1051,1345,1003,-1,1596,690,1004,-1,1596,1531,690,-1,607,1392,912,-1,607,1324,1392,-1,766,526,519,-1,526,766,527,-1,1343,522,1010,-1,522,1343,1646,-1,1420,1576,1553,-1,1576,1420,296,-1,1012,1343,1009,-1,1012,1554,1343,-1,1636,1551,1389,-1,1551,1636,1643,-1,758,727,1597,-1,758,762,727,-1,1647,1548,1598,-1,1647,1480,1548,-1,1544,1647,1598,-1,1544,1642,1647,-1,1546,1545,1599,-1,1545,1546,1543,-1,1542,1600,736,-1,1542,1599,1600,-1,751,1339,750,-1,1025,1339,751,-1,1388,1387,729,-1,1387,1388,257,-1,955,1611,549,-1,1645,1611,955,-1,911,934,682,-1,911,1369,934,-1,826,1557,827,-1,1557,826,1382,-1,967,393,489,-1,393,967,1637,-1,712,1601,1539,-1,712,923,1601,-1,1537,781,723,-1,1537,1603,781,-1,1023,1383,1342,-1,1023,1340,1383,-1,1549,1011,767,-1,1549,1597,1011,-1,728,1538,1603,-1,1538,728,1604,-1,1317,712,1037,-1,1317,923,712,-1,705,1390,1535,-1,705,1367,1390,-1,543,703,1090,-1,543,1593,703,-1,1066,570,1058,-1,1066,558,570,-1,1585,1586,1584,-1,885,1586,1585,-1,964,1094,853,-1,1572,1094,964,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getc7_Geo_5_91_coordIndex_13()
		{
			int[] value = {775,1005,1044,-1,775,1556,1005,-1,777,1393,1002,-1,777,691,1393,-1,951,1395,662,-1,951,1363,1395,-1,596,707,956,-1,708,707,596,-1,1056,634,926,-1,635,634,1056,-1,882,1587,883,-1,1060,1587,882,-1,1061,1068,1065,-1,1327,1068,1061,-1,824,644,643,-1,824,1099,644,-1,679,1065,1048,-1,679,1061,1065,-1,1461,1605,1645,-1,1605,1461,1463,-1,1063,987,989,-1,1063,1326,987,-1,615,603,602,-1,615,1608,603,-1,1524,603,1401,-1,1524,601,603,-1,601,1606,1607,-1,1524,1606,601,-1,1021,1001,999,-1,1021,1077,1001,-1,1322,608,1078,-1,1322,1324,608,-1,1581,1397,1583,-1,1581,627,1397,-1,629,577,591,-1,578,577,629,-1,941,1370,1318,-1,941,940,1370,-1,1580,1584,1586,-1,1584,1580,903,-1,1320,563,1083,-1,1320,1079,563,-1,1066,559,558,-1,1066,1085,559,-1,1361,947,1532,-1,1361,516,947,-1,938,890,900,-1,938,1520,890,-1,1318,1319,941,-1,499,1319,1318,-1,1017,1611,1089,-1,1017,1016,1611,-1,995,1594,1563,-1,994,1594,995,-1,862,1028,731,-1,862,735,1028,-1,1359,851,959,-1,1573,851,1359,-1,4,1352,490,-1,974,1352,4,-1,756,1600,1547,-1,756,754,1600,-1,957,1395,1375,-1,660,1395,957,-1,1096,1316,757,-1,1014,1316,1096,-1,855,1578,1355,-1,855,857,1578,-1,1321,529,1396,-1,529,1321,530,-1,658,513,906,-1,658,514,513,-1,906,511,907,-1,906,513,511,-1,377,1612,1280,-1,377,376,1612,-1,179,221,1218,-1,179,182,221,-1,1285,481,1265,-1,245,481,1285,-1,480,302,1485,-1,479,302,480,-1,373,462,472,-1,373,372,462,-1,1104,89,474,-1,1105,89,1104,-1,91,274,273,-1,274,91,90,-1,1634,1407,1454,-1,1634,456,1407,-1,1114,79,1115,-1,79,1114,1312,-1,1110,456,1634,-1,1110,446,456,-1,1452,443,1117,-1,443,1452,1129,-1,1118,1439,56,-1,68,1439,1118,-1,1282,1433,1121,-1,1282,44,1433,-1,1464,432,1579,-1,1464,1410,432,-1,421,423,422,-1,421,420,423,-1,415,412,408,-1,415,414,412,-1,413,57,409,-1,413,58,57,-1,1589,1128,1632,-1,1128,1589,411,-1,253,270,1266,-1,270,253,271,-1,108,1263,1444,-1,1263,108,105,-1,1141,1412,1513,-1,1412,1141,1140,-1,1141,298,1142,-1,1141,1511,298,-1,1574,50,1144,-1,1574,1575,50,-1,1618,1149,1446,-1,1618,1306,1149,-1,1152,1443,1469,-1,1443,1152,45,-1,1306,1150,1149,-1,1150,1306,381,-1,1413,1619,1502,-1,1413,1620,1619,-1,1638,378,1147,-1,378,1638,1621,-1,1536,1305,1153,-1,1305,1536,975,-1,52,1499,53,-1,371,1499,52,-1,53,28,1261,-1,1499,28,53,-1,370,368,1500,-1,370,160,368,-1,1301,1163,1252,-1,1163,1301,349,-1,351,1166,1162,-1,351,1164,1166,-1,351,1165,1164,-1,18,1498,1123,-1,1498,18,352,-1,1297,1168,347,-1,1168,1297,342,-1,1168,1639,1497,-1,1168,1496,1639,-1,1296,328,1417,-1,328,1296,337,-1,1418,1126,1615,-1,1418,1417,1126,-1,1187,234,292,-1,234,1187,1427,-1,233,1171,1172,-1,1490,1171,233,-1,152,181,153,-1,1208,181,152,-1,228,481,482,-1,481,228,1264,-1,1293,1155,1175,-1,1293,1488,1155,-1,307,1419,1467,-1,74,1419,307,-1,1292,272,471,-1,272,1292,306,-1,1309,316,170,-1,316,1309,399,-1,41,1179,39,-1,1179,41,40,-1,1308,1182,1181,-1,1142,1182,1308,-1,1183,1180,294,-1,1183,1181,1180,-1,1643,241,1482,-1,1643,1636,241,-1,239,287,1631,-1,239,290,287,-1,1189,1647,1622,-1,1189,1480,1647,-1,1647,1623,1622,-1,1647,1642,1623,-1,1477,1476,1624,-1,1640,1476,1477,-1,1625,1626,1425,-1,1625,1624,1626,-1,1287,1203,281,-1,1203,1287,262,-1,255,1388,246,-1,257,1388,255,-1,1449,1128,61,-1,1128,1449,1462,-1,1640,289,1623,-1,289,1640,1477,-1,1199,266,1473,-1,266,1199,264,-1,1627,1425,1626,-1,1627,238,1425,-1,393,1146,5,-1,1637,1146,393,-1,1628,225,279,-1,1628,1265,225,-1,320,1471,237,-1,320,1635,1471,-1,1421,1200,1186,-1,1421,1191,1200,-1,1290,1481,1184,-1,1290,1631,1481,-1,1472,242,1635,-1,1489,242,1472,-1,225,1264,226,-1,225,1265,1264,-1,1534,1153,1470,-1,1536,1153,1534,-1,1450,459,1313,-1,1450,1514,459,-1,1251,1144,397,-1,1144,1251,1506,-1,1293,1486,1488,-1,1486,1293,207,-1,306,304,272,-1,306,305,304,-1,207,1295,1174,-1,207,206,1295,-1,183,198,184,-1,187,198,183,-1,1224,1216,1217,-1,1216,1224,1101,-1,1221,299,1289,-1,300,299,1221,-1,149,1222,483,-1,1222,149,148,-1,1122,433,1410,-1,433,1122,1278,-1,1227,1229,1228,-1,1229,1227,1230,-1,162,145,194,-1,162,146,145,-1,324,64,1268,-1,64,324,323,-1,1525,1248,1093,-1,1525,1491,1248,-1,1230,351,350,-1,351,1230,1227,-1,1239,101,1106,-1,1239,1276,101,-1,110,140,111,-1,110,1633,140,-1,1233,94,93,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getc7_Geo_5_91_coordIndex_14()
		{
			int[] value = {1233,1232,94,-1,141,230,232,-1,230,141,171,-1,121,1231,1238,-1,121,120,1231,-1,73,122,315,-1,1242,122,73,-1,1241,100,1314,-1,1241,98,100,-1,1437,1131,97,-1,1437,1629,1131,-1,469,84,1106,-1,84,469,1434,-1,450,1110,451,-1,1111,1110,450,-1,1613,1304,1303,-1,1613,1484,1304,-1,72,1272,1242,-1,72,1237,1272,-1,2,439,0,-1,440,439,2,-1,445,1423,1243,-1,1116,1423,445,-1,1450,448,1468,-1,1409,448,1450,-1,1424,1260,1422,-1,1424,1112,1260,-1,1424,81,1112,-1,60,59,332,-1,1127,59,60,-1,1493,335,1170,-1,335,1493,1249,-1,335,65,64,-1,335,1249,65,-1,254,403,249,-1,254,253,403,-1,1507,1137,1136,-1,1137,1507,1618,-1,1151,4,3,-1,4,1151,974,-1,1625,286,1478,-1,1625,285,286,-1,1432,1134,1465,-1,1134,1432,177,-1,1262,268,267,-1,268,1262,1254,-1,1513,252,49,-1,1513,1412,252,-1,44,1273,1433,-1,43,1273,44,-1,30,1219,463,-1,30,29,1219,-1,26,463,462,-1,26,30,463,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc7_Geo_5_91_normalIndex_1()
		{
			int[] value = {1238,1286,1305,-1,771,789,726,-1,1554,1504,1367,-1,1596,1586,1613,-1,122,442,149,-1,739,632,799,-1,390,1199,909,-1,644,458,755,-1,482,458,644,-1,328,340,239,-1,593,470,412,-1,1041,1018,1024,-1,813,356,312,-1,115,72,138,-1,280,168,203,-1,1238,1361,1340,-1,1286,1238,1340,-1,717,572,467,-1,749,587,751,-1,519,621,559,-1,265,179,385,-1,728,637,159,-1,407,368,1064,-1,648,172,696,-1,643,998,489,-1,1450,1331,1263,-1,1202,987,736,-1,346,559,328,-1,1266,1361,1238,-1,1522,1403,1331,-1,579,432,994,-1,1451,1403,1522,-1,1581,1240,1219,-1,300,132,76,-1,541,991,478,-1,553,1295,1320,-1,244,538,395,-1,800,1166,750,-1,1077,887,779,-1,357,542,614,-1,926,542,1074,-1,300,538,1077,-1,47,8,71,-1,76,132,1,-1,1333,1213,1243,-1,434,953,674,-1,551,738,1343,-1,1405,1631,1434,-1,1009,1065,1122,-1,65,220,224,-1,224,456,293,-1,1434,1035,1213,-1,1630,1593,1343,-1,553,573,1295,-1,710,619,360,-1,143,551,601,-1,1528,949,1001,-1,1618,1615,1596,-1,1182,1420,1262,-1,149,98,25,-1,965,1418,1102,-1,1461,1476,1465,-1,1023,507,493,-1,1611,1615,1545,-1,1503,1476,1477,-1,1589,1618,1596,-1,1394,1521,1508,-1,351,315,436,-1,618,471,365,-1,792,343,458,-1,1557,1641,1573,-1,1636,1566,1568,-1,1312,1417,1341,-1,1323,1464,1312,-1,1102,1231,989,-1,1102,473,107,-1,1425,1213,1333,-1,1243,1042,1333,-1,1543,1546,1393,-1,1464,1454,1409,-1,639,100,150,-1,663,616,758,-1,308,540,622,-1,602,887,782,-1,359,244,176,-1,643,765,998,-1,954,971,1208,-1,999,614,783,-1,985,785,796,-1,1123,769,964,-1,1197,1194,1115,-1,757,1086,1036,-1,327,117,374,-1,164,87,578,-1,1146,1399,1264,-1,518,520,776,-1,960,441,1367,-1,845,1011,1121,-1,19,27,26,-1,178,193,380,-1,367,174,176,-1,1040,1012,825,-1,1079,943,1255,-1,1494,1475,1484,-1,1367,1504,1494,-1,1616,1595,1619,-1,1158,1051,704,-1,395,545,348,-1,359,538,244,-1,472,483,920,-1,252,431,373,-1,1146,1264,1105,-1,1264,1096,1105,-1,1554,1614,1569,-1,1595,1556,1599,-1,1337,1484,1290,-1,1158,967,1290,-1,747,768,891,-1,747,634,768,-1,54,23,14,-1,169,299,203,-1,812,705,642,-1,125,222,253,-1,85,271,248,-1,495,597,715,-1,431,901,670,-1,1636,1602,1323,-1,1323,1312,1488,-1,1231,1078,1065,-1,1042,1117,663,-1,1425,1135,1094,-1,1009,1122,1117,-1,315,286,222,-1,736,674,1202,-1,1123,1568,1075,-1,1003,761,1054,-1,594,456,224,-1,42,37,69,-1,2,37,42,-1,140,397,0,-1,666,140,120,-1,13,29,159,-1,20,99,29,-1,133,30,21,-1,838,233,841,-1,233,92,147,-1,788,784,309,-1,242,128,207,-1,416,620,537,-1,207,254,317,-1,354,317,341,-1,323,429,361,-1,334,319,381,-1,448,343,457,-1,458,582,755,-1,721,652,774,-1,507,565,493,-1,777,628,767,-1,262,298,212,-1,1505,1536,1535,-1,683,884,688,-1,1314,1176,1371,-1,938,959,1410,-1,793,688,1207,-1,1253,1032,869,-1,786,829,726,-1,413,467,585,-1,714,1062,763,-1,283,359,194,-1,26,112,174,-1,86,26,318,-1,95,318,214,-1,205,179,108,-1,108,179,265,-1,840,1084,844,-1,1120,1084,1064,-1,1084,1211,552,-1,1174,797,811,-1,1153,1374,811,-1,1153,753,781,-1,781,1329,1153,-1,1388,807,832,-1,480,1381,1303,-1,1394,1348,832,-1,1448,1495,1476,-1,826,822,1376,-1,1286,1462,1305,-1,1366,1395,1239,-1,606,765,643,-1,1164,1229,1185,-1,1306,1025,1403,-1,1073,1018,1249,-1,931,762,1097,-1,1298,909,1199,-1,226,200,267,-1,206,134,216,-1,966,1080,917,-1,1068,1013,1016,-1,291,384,234,-1,393,126,635,-1,635,1219,956,-1,928,707,780,-1,197,184,298,-1,282,337,352,-1,352,278,326,-1,192,74,278,-1,1011,985,1047,-1,1036,1086,1149,-1,1292,875,872,-1,342,414,449,-1,948,786,905,-1,243,97,371,-1,61,84,52,-1,1496,1201,1524,-1,878,1099,941,-1,745,446,1254,-1,1200,1015,899,-1,1015,1200,876,-1,1408,1311,1322,-1,1246,1162,1147,-1,612,613,599,-1,1369,1310,864,-1,1511,1579,1533,-1,1370,1378,1444,-1,183,276,270,-1,183,270,414,-1,1070,935,1163,-1,896,890,894,-1,1088,1058,1127,-1,1212,1514,1467,-1,1386,1260,1466,-1,921,1090,1487,-1,1277,1591,1090,-1,1159,944,667,-1,1028,571,709,-1,320,153,191,-1,342,449,488,-1,888,668,492,-1,1322,1088,1301,-1,1401,1604,1558,-1,358,488,449,-1,245,129,153,-1,754,673,1198,-1,129,245,330,-1,673,754,511,-1,427,405,67,-1,1112,1171,658,-1,314,350,1098,-1,1247,1350,1125,-1,1143,1509,1228,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc7_Geo_5_91_normalIndex_2()
		{
			int[] value = {512,814,583,-1,1111,936,720,-1,561,583,1125,-1,605,438,900,-1,1601,1578,1640,-1,1570,1517,1561,-1,1007,492,697,-1,1050,460,302,-1,209,241,218,-1,1518,1516,1531,-1,1523,1497,1584,-1,1364,1215,1379,-1,209,218,438,-1,213,302,16,-1,1278,911,1100,-1,583,223,512,-1,1050,1518,1355,-1,35,646,695,-1,388,198,230,-1,1608,1583,1482,-1,1622,1548,1496,-1,330,608,358,-1,1148,689,631,-1,102,33,35,-1,166,167,152,-1,91,52,36,-1,135,124,259,-1,1156,997,1224,-1,873,876,1200,-1,90,79,6,-1,10,6,81,-1,304,231,266,-1,225,266,231,-1,231,161,225,-1,534,1136,641,-1,1527,1136,534,-1,288,438,218,-1,288,477,349,-1,113,114,277,-1,201,68,161,-1,1157,1402,1044,-1,1000,651,919,-1,1216,1401,1397,-1,1287,1134,1377,-1,1134,1000,1170,-1,1103,803,814,-1,1437,1491,1398,-1,667,404,984,-1,599,656,612,-1,879,1030,665,-1,607,785,701,-1,433,506,481,-1,523,861,481,-1,936,523,506,-1,461,439,730,-1,570,679,936,-1,1531,1492,1335,-1,526,1555,1479,-1,382,251,505,-1,733,1133,1118,-1,243,371,690,-1,531,885,845,-1,1621,1646,1639,-1,1299,1491,1282,-1,577,307,382,-1,190,66,158,-1,185,123,190,-1,1299,1107,1247,-1,952,1060,979,-1,511,195,485,-1,1279,1216,1397,-1,83,97,145,-1,49,66,60,-1,355,160,307,-1,355,699,499,-1,955,741,735,-1,798,934,955,-1,1638,1620,1587,-1,1444,1358,1452,-1,1587,1520,1588,-1,1498,1402,1564,-1,1604,1319,1530,-1,982,862,1216,-1,225,38,10,-1,266,225,10,-1,651,1000,716,-1,218,241,592,-1,349,477,532,-1,895,888,492,-1,589,877,861,-1,1379,1215,1140,-1,1645,1606,1608,-1,1513,1647,1245,-1,1093,1513,973,-1,1487,1633,1532,-1,1617,1627,1633,-1,1526,1624,1612,-1,838,841,1429,-1,1551,1429,1363,-1,1300,1363,784,-1,1458,1539,1519,-1,1404,1458,1414,-1,1316,1414,1291,-1,1330,1191,1291,-1,1622,1625,1327,-1,1272,1257,1330,-1,1205,1203,1272,-1,1307,1067,1192,-1,897,1067,1200,-1,899,892,907,-1,1148,1082,1128,-1,937,661,903,-1,1431,1347,1389,-1,111,139,148,-1,981,819,963,-1,274,494,311,-1,246,669,722,-1,453,981,916,-1,369,568,795,-1,948,829,786,-1,1230,922,1057,-1,1252,626,795,-1,890,533,625,-1,1267,1460,1296,-1,1579,1460,1626,-1,1334,1437,1256,-1,1533,1579,1537,-1,1380,1621,1639,-1,1419,1380,1550,-1,1442,1560,1538,-1,1107,1269,1242,-1,281,183,342,-1,844,574,840,-1,567,574,581,-1,290,811,797,-1,811,290,500,-1,335,781,753,-1,263,807,781,-1,344,1172,1273,-1,344,446,157,-1,284,325,822,-1,137,157,446,-1,281,423,404,-1,488,655,455,-1,245,608,330,-1,613,557,391,-1,529,504,881,-1,446,745,347,-1,1384,1422,1309,-1,1428,1510,1439,-1,709,564,686,-1,624,627,580,-1,1413,1259,1354,-1,1114,975,1509,-1,698,427,975,-1,913,945,729,-1,1347,1459,1445,-1,1293,1297,1365,-1,1324,1368,1293,-1,1368,1576,1469,-1,539,528,701,-1,475,539,701,-1,388,875,329,-1,34,91,39,-1,506,720,936,-1,1642,1576,1558,-1,1469,1373,1304,-1,1365,1265,1293,-1,1445,1459,1321,-1,1151,1304,1373,-1,1585,1548,1622,-1,746,1099,878,-1,924,1228,975,-1,580,536,571,-1,678,1206,1251,-1,1237,853,881,-1,1285,881,725,-1,1198,673,1043,-1,725,576,612,-1,479,754,656,-1,608,655,488,-1,952,1107,1242,-1,404,667,497,-1,235,59,136,-1,446,344,1273,-1,157,124,344,-1,321,269,135,-1,500,290,1245,-1,921,574,567,-1,880,1277,581,-1,1247,1107,952,-1,399,90,186,-1,1111,879,936,-1,1442,1419,1560,-1,1560,1544,1538,-1,1550,1559,1560,-1,1621,1537,1579,-1,1234,803,1103,-1,1360,1109,1315,-1,727,890,896,-1,1274,795,922,-1,1129,910,916,-1,568,1057,922,-1,568,712,1057,-1,369,453,387,-1,369,626,629,-1,232,617,669,-1,274,232,246,-1,981,963,1129,-1,981,453,494,-1,311,494,453,-1,676,787,791,-1,676,665,802,-1,1401,1349,1397,-1,1347,1431,1427,-1,1127,1301,1088,-1,1148,631,661,-1,631,689,201,-1,907,892,1039,-1,646,1307,1186,-1,1156,1217,1192,-1,1221,1257,1217,-1,1268,1327,1625,-1,1330,1257,1221,-1,1316,1309,1258,-1,1220,1270,1205,-1,1095,1244,828,-1,1362,1357,1407,-1,1362,1407,1519,-1,1574,1519,1539,-1,1572,1635,1624,-1,1612,1608,1467,-1,1532,1633,1606,-1,1555,1620,1638,-1,1140,1136,1527,-1,236,144,57,-1,641,1140,882,-1,604,882,685,-1,691,532,477,-1,410,266,144,-1,225,161,68,-1,1287,1377,1392,-1,888,1044,939,-1,1402,1157,1373,-1,1332,1396,1334,-1,1520,1369,1378,-1,1378,1332,1385,-1,1396,1332,1370,-1,1507,1486,1444,-1,1507,1375,1344,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc7_Geo_5_91_normalIndex_3()
		{
			int[] value = {1587,1588,1603,-1,185,422,864,-1,699,1005,499,-1,83,158,49,-1,66,123,60,-1,1547,1529,1627,-1,832,259,826,-1,274,310,409,-1,1491,1299,1398,-1,1364,1027,1019,-1,28,426,313,-1,170,145,154,-1,409,682,274,-1,1437,1334,1396,-1,1472,1491,1437,-1,1435,1626,1460,-1,885,531,475,-1,110,1145,1232,-1,864,1358,1369,-1,1540,1555,1597,-1,81,684,498,-1,679,547,730,-1,662,861,730,-1,506,523,481,-1,562,720,417,-1,613,612,557,-1,272,1248,526,-1,1170,1021,982,-1,982,1216,1279,-1,1530,1319,862,-1,1498,1037,1155,-1,113,46,114,-1,514,530,820,-1,691,604,532,-1,711,569,604,-1,39,6,10,-1,6,39,59,-1,433,90,399,-1,1156,1192,997,-1,1585,1224,1413,-1,1335,1492,1342,-1,1457,1332,1383,-1,188,210,329,-1,321,135,259,-1,82,136,91,-1,182,202,148,-1,124,157,156,-1,295,102,118,-1,806,805,522,-1,34,38,68,-1,167,196,182,-1,872,388,514,-1,118,695,1026,-1,517,1130,1095,-1,84,873,646,-1,911,866,491,-1,773,561,1353,-1,314,491,427,-1,55,15,9,-1,438,772,900,-1,873,1307,646,-1,882,1140,1215,-1,1516,1603,1531,-1,460,1050,961,-1,55,302,460,-1,492,94,460,-1,67,223,213,-1,945,870,729,-1,1509,1143,1038,-1,975,491,924,-1,911,491,314,-1,1561,1313,1570,-1,1561,1350,1313,-1,1256,1125,803,-1,668,305,492,-1,204,191,151,-1,746,484,571,-1,1625,1622,1634,-1,1085,745,1254,-1,1081,1482,1529,-1,1288,1111,1150,-1,1212,560,831,-1,1321,1459,1265,-1,1442,1466,1242,-1,1419,1269,1282,-1,372,310,533,-1,1220,1272,1346,-1,422,633,1049,-1,1520,1378,1385,-1,400,479,599,-1,1246,1147,1322,-1,997,897,899,-1,1173,876,689,-1,997,907,1162,-1,1301,1427,1436,-1,1413,1224,1259,-1,1201,1038,941,-1,1634,1622,1496,-1,426,28,60,-1,1274,922,1230,-1,1553,1596,1613,-1,757,926,1091,-1,337,271,192,-1,298,184,468,-1,383,393,659,-1,472,271,483,-1,1126,779,928,-1,904,1016,799,-1,904,1161,1016,-1,1161,1076,1068,-1,406,336,762,-1,762,336,579,-1,603,994,432,-1,954,694,799,-1,990,912,1165,-1,1029,1025,1266,-1,402,545,706,-1,1154,998,1239,-1,1298,1477,1495,-1,1465,1499,1461,-1,1465,1503,1470,-1,377,1303,1199,-1,1303,1521,1489,-1,1508,1381,1328,-1,1153,435,397,-1,1374,397,666,-1,549,1064,1084,-1,1064,368,815,-1,1052,1053,1025,-1,395,671,706,-1,1271,1236,1456,-1,95,108,103,-1,88,80,86,-1,26,27,72,-1,502,782,359,-1,72,178,189,-1,324,554,463,-1,459,587,380,-1,763,1062,933,-1,572,535,585,-1,793,744,496,-1,1079,869,737,-1,943,1079,585,-1,1255,1207,1253,-1,1314,1032,1253,-1,1410,1014,1446,-1,793,496,683,-1,884,1207,688,-1,1253,1207,1176,-1,791,787,883,-1,886,999,1020,-1,298,252,219,-1,466,621,519,-1,559,346,519,-1,898,1023,628,-1,1454,1565,1023,-1,721,470,593,-1,457,343,1001,-1,448,429,471,-1,381,428,361,-1,22,323,361,-1,428,319,450,-1,389,341,317,-1,416,370,425,-1,828,401,550,-1,242,370,257,-1,128,242,257,-1,106,128,77,-1,21,78,127,-1,172,37,30,-1,42,13,120,-1,445,107,105,-1,220,107,473,-1,1566,1636,1488,-1,809,594,473,-1,143,374,117,-1,1009,809,989,-1,1117,1122,942,-1,1231,1488,1312,-1,1602,1565,1464,-1,249,219,308,-1,736,715,597,-1,639,495,715,-1,283,285,292,-1,125,312,356,-1,275,312,125,-1,292,280,275,-1,280,285,175,-1,273,260,462,-1,168,165,169,-1,261,169,273,-1,14,45,54,-1,256,363,23,-1,649,770,634,-1,1455,1275,813,-1,1158,704,967,-1,1599,1490,1569,-1,1595,1433,1556,-1,20,119,99,-1,826,1394,832,-1,1233,1338,1371,-1,244,348,176,-1,609,584,456,-1,1326,1218,1616,-1,1289,1382,1554,-1,1494,1501,1475,-1,1371,972,1233,-1,283,194,211,-1,194,176,174,-1,509,1447,1382,-1,1382,1289,509,-1,312,299,813,-1,87,164,105,-1,1566,1152,1075,-1,1010,1138,964,-1,964,769,1003,-1,1123,1138,1091,-1,744,535,726,-1,616,663,476,-1,373,431,670,-1,639,901,322,-1,495,639,150,-1,898,1280,1454,-1,1543,1618,1589,-1,820,1119,1182,-1,1333,1042,758,-1,1122,950,942,-1,1065,1078,950,-1,1636,1641,1610,-1,1590,1610,1641,-1,1557,1573,1214,-1,618,448,471,-1,444,365,62,-1,315,155,327,-1,286,253,222,-1,1292,1432,1453,-1,1394,1376,1521,-1,1394,1508,1328,-1,1589,1553,1515,-1,1503,1477,1506,-1,908,1144,1142,-1,1351,1250,1528,-1,1142,805,908,-1,1586,1565,1602,-1,1503,1465,1476,-1,1211,1084,840,-1,1376,1394,826,-1,620,949,1250,-1,550,537,908,-1,1611,1001,792,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getc7_Geo_5_91_normalIndex_4()
		{
			int[] value = {132,300,889,-1,1609,1219,1320,-1,1630,1637,1593,-1,1213,794,1009,-1,456,594,809,-1,117,45,130,-1,1184,953,601,-1,1184,1343,1593,-1,1184,1552,1202,-1,1430,1424,1581,-1,928,779,707,-1,590,510,126,-1,750,1219,635,-1,710,1320,1166,-1,782,538,359,-1,1202,1339,987,-1,1495,1441,1298,-1,1024,1073,1053,-1,1076,1161,904,-1,917,403,396,-1,22,75,12,-1,643,489,706,-1,614,542,783,-1,831,1087,430,-1,402,385,179,-1,179,205,402,-1,367,214,318,-1,1062,1048,1204,-1,334,386,425,-1,647,1051,1225,-1,253,275,125,-1,1041,1249,1018,-1,328,412,340,-1,774,755,618,-1,978,778,482,-1,721,618,444,-1,208,219,346,-1,384,444,234,-1,632,739,590,-1,149,25,12,-1,1218,1542,1595,-1,413,737,378,-1,1595,1616,1218,-1,368,407,29,-1,632,590,442,-1,389,465,341,-1,208,212,219,-1,448,618,582,-1,470,721,444,-1,774,618,721,-1,328,527,412,-1,1041,1165,1249,-1,647,1225,813,-1,1158,1490,1318,-1,385,501,357,-1,1110,1104,1047,-1,1048,1338,1204,-1,367,379,214,-1,383,184,393,-1,430,834,831,-1,501,542,357,-1,119,163,563,-1,390,909,566,-1,12,25,22,-1,904,610,1076,-1,1024,1053,1052,-1,1477,1476,1495,-1,1495,1450,1441,-1,1552,1593,1607,-1,1361,1266,1426,-1,541,478,282,-1,710,1166,867,-1,750,1166,1219,-1,126,98,590,-1,1581,1630,1430,-1,1035,1434,1295,-1,1607,1405,1339,-1,1202,953,1184,-1,1593,1552,1184,-1,1184,601,551,-1,434,351,436,-1,809,609,456,-1,1009,1243,1213,-1,1001,343,792,-1,748,794,1213,-1,1637,1631,1593,-1,1219,1166,1320,-1,300,1033,889,-1,1166,800,867,-1,792,1567,1611,-1,537,1144,908,-1,949,1528,1250,-1,1182,1262,872,-1,1461,1448,1476,-1,1602,1613,1586,-1,805,806,908,-1,1528,1545,1351,-1,1478,1489,1521,-1,1499,1440,1461,-1,1515,1562,1589,-1,1328,1348,1394,-1,1376,1478,1521,-1,1352,1292,1453,-1,1535,1411,1499,-1,286,292,253,-1,315,222,155,-1,62,234,444,-1,1214,1271,1557,-1,1231,1065,989,-1,1122,1065,950,-1,758,1135,1333,-1,820,1182,872,-1,1543,1589,1546,-1,898,1454,1023,-1,495,150,248,-1,639,322,100,-1,476,373,670,-1,476,670,616,-1,578,1447,509,-1,1073,1024,1018,-1,1003,1197,964,-1,964,1115,1010,-1,1036,783,757,-1,1264,1502,1337,-1,1566,1075,1568,-1,65,107,220,-1,105,51,87,-1,299,647,813,-1,441,509,1289,-1,1195,1121,1011,-1,174,211,194,-1,211,285,283,-1,1490,1599,1556,-1,584,293,456,-1,130,101,143,-1,397,140,666,-1,1595,1542,1433,-1,1490,1463,1569,-1,958,704,747,-1,1455,813,1225,-1,518,649,634,-1,45,58,54,-1,273,279,261,-1,203,168,169,-1,273,462,524,-1,280,292,285,-1,275,253,292,-1,54,125,356,-1,283,292,286,-1,271,472,248,-1,597,734,736,-1,249,308,331,-1,1464,1323,1602,-1,1312,1308,1231,-1,1117,942,940,-1,1009,989,1065,-1,809,473,989,-1,1566,1488,1418,-1,473,594,220,-1,696,430,1087,-1,133,172,30,-1,21,11,78,-1,257,173,128,-1,317,254,390,-1,242,303,370,-1,828,842,401,-1,354,319,215,-1,428,381,319,-1,134,22,361,-1,361,429,381,-1,381,429,386,-1,437,386,448,-1,593,742,721,-1,774,652,644,-1,1565,978,1023,-1,1023,493,628,-1,559,527,328,-1,466,519,249,-1,219,212,298,-1,252,296,247,-1,886,1020,988,-1,791,883,988,-1,1176,1314,1253,-1,884,1176,1207,-1,683,688,793,-1,1410,1446,1371,-1,1410,959,1014,-1,1314,1034,1032,-1,1253,1079,1255,-1,1079,737,585,-1,793,983,744,-1,572,585,467,-1,737,869,378,-1,751,763,933,-1,324,463,268,-1,502,359,419,-1,72,112,26,-1,95,88,86,-1,103,88,95,-1,95,214,205,-1,757,783,542,-1,1456,1557,1271,-1,706,545,395,-1,1120,1064,815,-1,1084,728,549,-1,1374,666,1174,-1,1153,397,1374,-1,390,377,1199,-1,1465,1470,1438,-1,1395,1154,1239,-1,402,706,489,-1,1266,1164,1029,-1,1165,1041,990,-1,971,954,799,-1,337,282,316,-1,986,762,579,-1,465,603,341,-1,762,931,406,-1,1076,1113,1068,-1,635,415,750,-1,799,632,904,-1,25,98,62,-1,271,316,483,-1,393,184,197,-1,352,383,282,-1,337,316,271,-1,1573,1641,1568,-1,1613,1610,1553,-1,426,60,123,-1,1617,1591,1277,-1,1201,941,1099,-1,1309,1179,1258,-1,1427,1431,1436,-1,1067,997,1192,-1,1224,997,1162,-1,907,997,899,-1,1322,1311,1246,-1,599,613,400,-1,864,422,1049,-1,333,158,499,-1,1288,1150,1260,-1,528,539,543,-1,310,625,533,-1,1282,1380,1419,-1,1466,1260,1242,-1,1212,831,834,-1,879,1111,1030,-1,952,1159,984,-1,1634,1575,1625,-1,1251,1241,709,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getc7_Geo_5_91_normalIndex_5()
		{
			int[] value = {746,571,1028,-1,151,167,166,-1,151,347,204,-1,41,55,94,-1,217,358,270,-1,1365,1171,1112,-1,911,314,1100,-1,975,427,491,-1,1038,1548,1509,-1,213,16,67,-1,350,209,605,-1,305,241,41,-1,460,697,492,-1,460,94,55,-1,961,697,460,-1,1190,1281,1210,-1,1215,1019,882,-1,55,9,16,-1,314,427,40,-1,773,1353,1517,-1,84,646,35,-1,760,517,1095,-1,398,118,1026,-1,826,259,284,-1,840,574,420,-1,167,181,152,-1,34,68,61,-1,760,806,522,-1,118,398,295,-1,522,517,760,-1,137,166,152,-1,91,46,82,-1,321,259,297,-1,188,329,294,-1,148,235,111,-1,1457,1385,1332,-1,1492,1457,1342,-1,1585,1294,1224,-1,433,79,90,-1,641,604,410,-1,691,711,604,-1,820,872,514,-1,46,36,114,-1,1402,1498,1155,-1,1530,862,1037,-1,982,1279,1170,-1,1170,1000,1021,-1,1145,272,526,-1,1145,287,272,-1,948,1116,910,-1,720,399,417,-1,730,439,662,-1,679,730,523,-1,936,879,570,-1,307,142,382,-1,81,498,57,-1,1497,1527,1584,-1,1540,1479,1555,-1,864,1049,1358,-1,371,110,1232,-1,110,287,1145,-1,1435,1632,1626,-1,1437,1474,1472,-1,1396,1474,1437,-1,66,49,158,-1,371,97,32,-1,1019,1215,1364,-1,1518,1523,1516,-1,973,1513,1245,-1,66,190,123,-1,83,180,158,-1,955,1005,741,-1,864,375,185,-1,1620,1284,1391,-1,1587,1603,1638,-1,1507,1452,1375,-1,1507,1481,1486,-1,1370,1471,1396,-1,1378,1370,1332,-1,1334,1383,1332,-1,939,1155,1037,-1,888,895,1044,-1,1377,1427,1392,-1,68,38,225,-1,410,338,266,-1,477,716,691,-1,604,641,882,-1,1531,1355,1518,-1,641,1136,1140,-1,144,10,57,-1,1527,1497,1140,-1,1540,1527,1196,-1,1555,1638,1597,-1,560,1212,947,-1,1612,1467,1514,-1,1624,1526,1572,-1,1519,1473,1362,-1,1254,1404,1316,-1,1362,1270,1357,-1,1244,842,828,-1,1414,1330,1291,-1,1221,1191,1330,-1,1268,1625,1510,-1,1217,1268,1221,-1,1272,1217,1257,-1,1192,1272,1203,-1,907,1039,1162,-1,1015,1004,899,-1,689,68,201,-1,661,970,1148,-1,1322,1147,1088,-1,1427,1397,1347,-1,676,596,665,-1,676,808,787,-1,453,369,311,-1,981,494,740,-1,1129,916,981,-1,232,669,246,-1,369,629,311,-1,369,387,568,-1,922,795,568,-1,910,664,916,-1,727,533,890,-1,1267,1056,1181,-1,1360,1189,1109,-1,1468,1460,1579,-1,1234,1256,803,-1,1579,1626,1621,-1,1550,1571,1559,-1,1560,1559,1544,-1,186,417,399,-1,952,979,1247,-1,608,588,591,-1,1277,567,581,-1,921,567,1090,-1,1245,1209,500,-1,446,1273,1254,-1,182,148,181,-1,151,166,347,-1,235,93,59,-1,404,497,255,-1,1159,952,1242,-1,488,358,608,-1,656,599,479,-1,725,612,656,-1,1304,1365,1297,-1,1059,1285,725,-1,1309,1043,1179,-1,1237,881,1285,-1,709,678,1251,-1,580,571,484,-1,624,484,746,-1,878,624,746,-1,729,870,512,-1,1151,1373,1157,-1,1114,1321,1265,-1,1177,1459,1347,-1,1469,1304,1297,-1,1604,1642,1558,-1,81,6,79,-1,34,52,91,-1,388,872,875,-1,508,521,570,-1,701,885,475,-1,1469,1297,1368,-1,1293,1177,1324,-1,1293,1368,1297,-1,913,729,759,-1,1114,1509,1321,-1,1445,1413,1354,-1,1575,1634,1524,-1,1228,1509,975,-1,484,624,580,-1,709,686,678,-1,1510,1500,1439,-1,1384,1443,1422,-1,529,881,853,-1,391,400,613,-1,488,455,411,-1,404,255,281,-1,342,183,414,-1,284,822,826,-1,167,151,196,-1,832,297,259,-1,344,269,1172,-1,263,781,335,-1,335,753,500,-1,500,753,811,-1,290,797,486,-1,1055,1093,420,-1,281,121,183,-1,1386,1466,1538,-1,1538,1466,1442,-1,1419,1550,1560,-1,1380,1639,1550,-1,1472,1537,1621,-1,1256,1234,1334,-1,890,625,974,-1,1252,795,1274,-1,1230,1057,1180,-1,1116,664,910,-1,795,626,369,-1,387,453,916,-1,310,372,409,-1,274,311,232,-1,981,740,819,-1,246,310,274,-1,111,109,139,-1,1349,1347,1397,-1,937,970,661,-1,1128,1015,1173,-1,899,1004,892,-1,1067,1307,1200,-1,1192,1186,1307,-1,1192,1217,1272,-1,1205,1272,1220,-1,1330,1346,1272,-1,1268,1217,1327,-1,1309,1316,1291,-1,1316,1404,1414,-1,1244,1270,1362,-1,1458,1519,1407,-1,784,788,1300,-1,1493,1551,1363,-1,1429,1400,838,-1,1612,1514,1526,-1,1617,1547,1627,-1,1487,1617,1633,-1,1093,1532,1513,-1,1513,1645,1647,-1,1608,1612,1645,-1,1583,1608,1606,-1,1140,1497,1379,-1,589,861,662,-1,684,81,481,-1,492,1007,895,-1,1457,1383,1342,-1,532,685,349,-1,592,503,218,-1,716,477,651,-1,10,144,266,-1,366,231,304,-1,862,1319,1216,-1,1530,1642,1604,-1,939,1044,1155,-1,1402,1373,1564,-1,1385,1457,1520,-1,1452,1507,1444,-1,1302,1310,1587,-1,735,798,955,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getc7_Geo_5_91_normalIndex_6()
		{
			int[] value = {158,333,190,-1,60,31,49,-1,83,32,97,-1,1398,1125,1256,-1,1299,1247,1398,-1,1005,633,499,-1,28,313,272,-1,154,141,243,-1,160,170,154,-1,387,712,568,-1,825,630,600,-1,1491,1472,1282,-1,1267,1435,1460,-1,824,531,845,-1,371,1232,690,-1,733,743,1133,-1,1479,1145,526,-1,526,1248,1555,-1,1578,1523,1518,-1,1335,1355,1531,-1,570,521,679,-1,730,547,461,-1,936,679,523,-1,523,730,861,-1,607,796,785,-1,665,516,879,-1,404,874,984,-1,1256,1437,1398,-1,1103,814,1083,-1,1134,716,1000,-1,1287,929,1134,-1,919,1021,1000,-1,1498,1530,1037,-1,1402,1155,1044,-1,161,238,201,-1,277,230,113,-1,288,651,477,-1,288,218,503,-1,1527,534,1196,-1,641,410,534,-1,231,238,161,-1,304,266,338,-1,81,57,10,-1,6,24,90,-1,1200,1307,873,-1,1224,1294,1156,-1,1190,1335,1281,-1,1335,1342,1281,-1,181,148,139,-1,91,36,46,-1,202,228,148,-1,157,137,152,-1,35,118,102,-1,181,167,182,-1,1192,1203,1186,-1,1608,1482,1467,-1,388,230,514,-1,52,33,36,-1,695,118,35,-1,1355,961,1050,-1,583,561,223,-1,1278,951,911,-1,598,698,658,-1,302,55,16,-1,438,605,209,-1,1364,1379,1541,-1,1523,1379,1497,-1,532,604,685,-1,209,15,241,-1,302,923,1050,-1,1007,697,1210,-1,349,438,288,-1,1570,1643,1517,-1,1601,1541,1578,-1,561,1125,1353,-1,562,1111,720,-1,1030,1111,1288,-1,512,870,814,-1,924,491,866,-1,1247,1125,1398,-1,1098,1100,314,-1,658,698,1112,-1,1561,1517,1353,-1,67,40,427,-1,129,330,199,-1,1198,1059,754,-1,320,245,153,-1,449,270,358,-1,1558,1349,1401,-1,342,488,411,-1,391,320,191,-1,1159,667,984,-1,947,1467,996,-1,1090,567,1277,-1,1487,1055,921,-1,1386,1288,1260,-1,1467,947,1212,-1,1373,1469,1564,-1,1582,1317,1598,-1,890,1056,894,-1,1163,1180,1070,-1,270,449,414,-1,1370,1444,1486,-1,1533,1471,1511,-1,1162,1039,1147,-1,876,1173,1015,-1,899,897,1200,-1,997,1067,897,-1,1179,1085,1258,-1,485,195,204,-1,1524,1634,1496,-1,709,1241,1028,-1,52,34,61,-1,243,141,97,-1,786,789,905,-1,1292,872,1262,-1,278,337,192,-1,326,468,352,-1,337,278,352,-1,920,928,780,-1,393,635,659,-1,291,234,197,-1,122,12,75,-1,635,126,415,-1,1068,1016,1161,-1,902,966,917,-1,206,146,134,-1,267,341,226,-1,931,1097,1131,-1,1249,1263,1073,-1,1185,1029,1164,-1,643,706,606,-1,1239,1208,1366,-1,1199,1489,1506,-1,822,1325,1376,-1,1489,1199,1303,-1,377,480,1303,-1,1388,832,1348,-1,811,753,1153,-1,1174,811,1374,-1,402,379,545,-1,108,95,205,-1,95,86,318,-1,86,7,26,-1,112,72,115,-1,283,419,359,-1,27,178,72,-1,353,178,380,-1,714,1048,1062,-1,585,737,413,-1,744,983,535,-1,1253,869,1079,-1,793,1207,1255,-1,1233,1204,1338,-1,1446,1314,1371,-1,683,868,884,-1,1371,1338,1410,-1,1535,1499,1505,-1,252,298,296,-1,777,898,628,-1,482,644,507,-1,721,742,652,-1,458,343,582,-1,448,582,343,-1,386,429,448,-1,381,386,334,-1,323,22,25,-1,354,450,319,-1,354,215,317,-1,317,215,207,-1,416,537,370,-1,128,106,207,-1,309,362,788,-1,147,309,233,-1,838,250,233,-1,17,4,18,-1,17,11,4,-1,21,127,133,-1,13,20,29,-1,120,13,159,-1,666,120,552,-1,0,2,140,-1,2,30,37,-1,594,224,220,-1,1003,769,761,-1,736,734,674,-1,1117,1243,1009,-1,1094,1405,1425,-1,987,718,736,-1,987,1094,718,-1,1117,940,663,-1,1231,1308,1078,-1,1488,1636,1323,-1,1341,1417,1280,-1,431,322,901,-1,85,248,150,-1,58,125,54,-1,812,863,705,-1,169,261,299,-1,54,356,345,-1,747,891,958,-1,1433,1318,1490,-1,1599,1619,1595,-1,1569,1501,1554,-1,920,780,472,-1,1168,1449,1141,-1,671,606,706,-1,348,244,395,-1,1433,1542,1455,-1,1490,1556,1433,-1,1264,1337,1069,-1,367,176,348,-1,7,3,26,-1,19,26,3,-1,845,1121,824,-1,441,1289,1367,-1,776,649,518,-1,578,509,164,-1,87,394,578,-1,143,101,71,-1,327,155,117,-1,757,1010,1086,-1,1115,964,1197,-1,1123,964,1138,-1,1123,1091,1214,-1,985,796,1063,-1,999,783,1137,-1,1024,990,1041,-1,971,1226,1208,-1,765,1239,998,-1,176,194,359,-1,602,782,502,-1,308,622,331,-1,252,247,431,-1,758,1042,663,-1,1464,1565,1454,-1,1393,1345,1543,-1,1243,1117,1042,-1,1135,1425,1333,-1,445,1102,107,-1,1102,989,473,-1,1341,1308,1312,-1,1568,1641,1636,-1,1557,1623,1641,-1,458,778,792,-1,444,618,365,-1,315,327,436,-1,1505,1499,1465,-1,1589,1596,1553,-1,1499,1415,1440,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getc7_Geo_5_91_normalIndex_7()
		{
			int[] value = {1503,1506,1489,-1,1545,1528,1611,-1,1266,1025,1306,-1,1102,445,965,-1,457,437,448,-1,1182,1393,1420,-1,1001,1611,1528,-1,374,143,601,-1,710,867,619,-1,991,956,1046,-1,573,1035,1295,-1,1630,1343,1430,-1,1213,1425,1434,-1,293,104,224,-1,65,224,101,-1,117,130,143,-1,1425,1405,1434,-1,1343,1184,551,-1,953,1202,674,-1,76,1,64,-1,71,104,47,-1,748,1213,1035,-1,1077,1033,300,-1,926,757,542,-1,1077,779,1126,-1,415,126,510,-1,538,301,395,-1,553,1320,710,-1,541,956,991,-1,1609,1581,1219,-1,1141,912,994,-1,1451,1306,1403,-1,994,912,579,-1,1331,1485,1522,-1,1238,1164,1266,-1,1450,1485,1331,-1,917,1076,610,-1,998,713,489,-1,549,407,1064,-1,159,549,728,-1,385,357,265,-1,85,192,271,-1,50,332,63,-1,587,763,751,-1,467,490,717,-1,1340,1462,1286,-1,203,275,280,-1,138,175,115,-1,412,527,593,-1,482,778,458,-1,755,774,644,-1,755,582,618,-1,389,566,465,-1,1441,1449,1168,-1,149,12,122,-1,610,403,917,-1,1596,1567,1586,-1,1367,1289,1554,-1,789,786,726,-1,373,219,252,-1,373,308,219,-1,565,644,652,-1,565,507,644,-1,239,212,208,-1,239,262,212,-1,1031,385,713,-1,385,1031,501,-1,303,425,370,-1,303,334,425,-1,237,378,103,-1,237,413,378,-1,50,364,332,-1,50,56,364,-1,714,587,459,-1,714,763,587,-1,205,379,402,-1,379,205,214,-1,73,11,17,-1,11,73,78,-1,469,119,563,-1,469,99,119,-1,403,75,396,-1,75,403,122,-1,1131,1113,1080,-1,1131,1193,1113,-1,1066,1052,1045,-1,1066,1024,1052,-1,1450,1448,1485,-1,1450,1495,1448,-1,971,1227,1226,-1,1013,1227,971,-1,146,396,75,-1,146,440,396,-1,1240,1424,1126,-1,1424,1240,1581,-1,619,654,694,-1,619,867,654,-1,953,436,601,-1,953,434,436,-1,1009,609,809,-1,1009,794,609,-1,240,47,221,-1,47,240,43,-1,8,43,1,-1,8,47,43,-1,1035,584,748,-1,573,584,1035,-1,1,116,64,-1,43,116,1,-1,550,806,828,-1,550,908,806,-1,1017,843,827,-1,839,843,1017,-1,1142,1345,1119,-1,1142,1351,1345,-1,978,507,1023,-1,978,482,507,-1,1596,1611,1567,-1,1596,1615,1611,-1,1438,1352,1453,-1,1336,1352,1438,-1,1535,1515,1411,-1,1562,1515,1535,-1,1525,1395,1366,-1,1525,1456,1395,-1,1214,926,1271,-1,926,1214,1091,-1,1623,1590,1641,-1,1623,1563,1590,-1,104,101,224,-1,104,71,101,-1,715,901,639,-1,715,764,901,-1,663,540,476,-1,663,940,540,-1,1185,1045,1029,-1,1185,1167,1045,-1,1522,1448,1461,-1,1522,1485,1448,-1,614,265,357,-1,614,513,265,-1,1137,1063,1061,-1,1137,1149,1063,-1,1091,1010,757,-1,1091,1138,1010,-1,1502,1399,1421,-1,1264,1399,1502,-1,761,1152,731,-1,1152,761,1075,-1,51,107,65,-1,51,105,107,-1,1275,356,813,-1,345,356,1275,-1,1326,394,363,-1,394,1326,1372,-1,1096,1197,1105,-1,1096,1194,1197,-1,1619,1447,1372,-1,1619,1614,1447,-1,1006,898,777,-1,1280,898,1006,-1,69,13,42,-1,69,20,13,-1,816,1012,968,-1,825,1012,816,-1,958,980,977,-1,958,891,980,-1,657,770,649,-1,657,672,770,-1,451,1051,647,-1,451,704,1051,-1,273,520,279,-1,524,520,273,-1,524,705,766,-1,524,462,705,-1,138,165,168,-1,177,165,138,-1,275,299,312,-1,203,299,275,-1,602,674,707,-1,602,434,674,-1,44,100,322,-1,100,44,5,-1,1006,855,1132,-1,575,855,1006,-1,544,441,960,-1,544,264,441,-1,14,65,45,-1,65,14,51,-1,648,1017,563,-1,648,1106,1017,-1,836,289,229,-1,833,289,836,-1,17,92,73,-1,17,48,92,-1,106,70,131,-1,77,70,106,-1,401,173,257,-1,173,401,362,-1,303,207,215,-1,207,303,242,-1,319,303,215,-1,334,303,319,-1,428,267,216,-1,450,267,428,-1,1001,437,457,-1,1001,949,437,-1,365,429,323,-1,365,471,429,-1,742,708,732,-1,742,593,708,-1,519,219,249,-1,519,346,219,-1,1292,823,875,-1,1352,823,1292,-1,883,886,988,-1,883,717,886,-1,972,1176,884,-1,972,1371,1176,-1,1233,906,962,-1,972,906,1233,-1,858,962,860,-1,858,976,962,-1,535,943,585,-1,535,983,943,-1,392,869,1032,-1,378,869,392,-1,959,487,332,-1,959,938,487,-1,723,801,692,-1,723,810,801,-1,587,723,556,-1,587,749,723,-1,189,268,177,-1,268,189,324,-1,3,56,50,-1,3,7,56,-1,177,72,189,-1,177,138,72,-1,1462,1366,1305,-1,1462,1525,1366,-1,1438,1505,1465,-1,1438,1453,1505,-1,1440,1522,1461,-1,1451,1522,1440,-1,1185,1227,1223,-1,1185,1229,1227,-1,603,226,341,-1,432,226,603,-1,510,739,654,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getc7_Geo_5_91_normalIndex_8()
		{
			int[] value = {739,510,590,-1,590,149,442,-1,590,98,149,-1,478,316,282,-1,483,316,478,-1,383,468,184,-1,468,383,352,-1,1613,1636,1610,-1,1613,1602,1636,-1,1427,1279,1397,-1,1427,1377,1279,-1,1015,1082,1004,-1,1015,1128,1082,-1,1431,1408,1436,-1,1431,1389,1408,-1,1260,611,944,-1,1150,611,1260,-1,1220,1357,1270,-1,1220,1346,1357,-1,1274,1412,1544,-1,1274,1230,1412,-1,1283,1598,1317,-1,1283,1592,1598,-1,1056,974,1181,-1,1056,890,974,-1,1269,1442,1242,-1,1419,1442,1269,-1,1514,1356,1526,-1,1212,1356,1514,-1,1487,1591,1617,-1,1591,1487,1090,-1,1179,511,485,-1,1043,511,1179,-1,1043,673,511,-1,504,447,474,-1,447,504,529,-1,195,400,204,-1,400,195,479,-1,1237,1422,1443,-1,1422,1237,1285,-1,405,729,512,-1,598,729,405,-1,979,1350,1247,-1,979,1313,1350,-1,924,1143,1228,-1,924,866,1143,-1,241,668,592,-1,668,241,305,-1,773,302,213,-1,773,923,302,-1,1335,961,1355,-1,1190,961,1335,-1,314,9,350,-1,314,40,9,-1,350,1072,1098,-1,350,605,1072,-1,1027,605,900,-1,605,1027,1072,-1,1534,1643,1570,-1,1643,1534,1605,-1,1130,398,1026,-1,517,398,1130,-1,560,835,831,-1,560,546,835,-1,236,1196,534,-1,236,724,1196,-1,36,102,114,-1,36,33,102,-1,35,52,84,-1,35,33,52,-1,294,187,188,-1,187,294,306,-1,136,111,235,-1,111,136,82,-1,255,121,281,-1,255,186,121,-1,1520,1492,1588,-1,1492,1520,1457,-1,39,136,59,-1,91,136,39,-1,1523,1541,1379,-1,1523,1578,1541,-1,817,1287,1071,-1,929,1287,817,-1,595,455,655,-1,595,474,455,-1,580,447,536,-1,580,421,447,-1,596,852,586,-1,852,596,854,-1,251,142,227,-1,142,251,382,-1,498,877,927,-1,684,877,498,-1,1527,1597,1584,-1,1527,1540,1597,-1,1310,375,864,-1,375,1310,1302,-1,1248,313,1284,-1,272,313,1248,-1,439,555,548,-1,439,461,555,-1,287,31,272,-1,287,32,31,-1,1646,1626,1632,-1,1646,1621,1626,-1,577,615,636,-1,577,382,615,-1,31,28,272,-1,31,60,28,-1,735,700,693,-1,675,700,735,-1,1633,1583,1606,-1,1633,1627,1583,-1,382,548,555,-1,548,382,505,-1,630,816,681,-1,816,630,825,-1,675,741,703,-1,675,735,741,-1,640,657,733,-1,640,672,657,-1,633,1261,1049,-1,633,1005,1261,-1,1133,1344,1375,-1,1344,1133,1101,-1,871,1169,1101,-1,871,918,1169,-1,1169,1360,1359,-1,1360,1169,1189,-1,1471,1486,1511,-1,1370,1486,1471,-1,1383,1234,1342,-1,1334,1234,1383,-1,1157,895,913,-1,1044,895,1157,-1,915,939,893,-1,939,915,888,-1,817,638,515,-1,638,817,1071,-1,888,592,668,-1,888,915,592,-1,528,521,508,-1,543,521,528,-1,57,724,236,-1,724,57,498,-1,1196,1479,1540,-1,1479,1196,1387,-1,1555,1284,1620,-1,1248,1284,1555,-1,1209,1628,1187,-1,1209,1644,1628,-1,1647,1635,1644,-1,1624,1635,1647,-1,1644,1629,1628,-1,1644,1635,1629,-1,1594,1574,1580,-1,1594,1600,1574,-1,1574,1473,1519,-1,1493,1473,1574,-1,1512,1254,1273,-1,1404,1254,1512,-1,1244,1130,1270,-1,1244,1095,1130,-1,1026,1270,1130,-1,1270,1026,1205,-1,1203,646,1186,-1,1203,695,646,-1,1217,1294,1327,-1,1217,1156,1294,-1,946,892,925,-1,946,1039,892,-1,1427,1127,1392,-1,1427,1301,1127,-1,823,329,875,-1,329,823,294,-1,802,808,676,-1,802,935,808,-1,494,682,740,-1,494,274,682,-1,752,409,702,-1,409,752,682,-1,702,858,860,-1,702,687,858,-1,712,1116,1057,-1,712,664,1116,-1,617,1276,1283,-1,617,629,1276,-1,896,856,727,-1,896,849,856,-1,957,1109,1189,-1,957,932,1109,-1,1296,1109,1092,-1,1315,1109,1296,-1,1150,562,611,-1,1111,562,1150,-1,574,1055,420,-1,574,921,1055,-1,832,263,297,-1,832,807,263,-1,822,306,821,-1,822,325,306,-1,228,235,148,-1,228,276,235,-1,944,1242,1260,-1,1242,944,1159,-1,418,455,421,-1,418,411,455,-1,1422,1043,1309,-1,1043,1422,1198,-1,941,1143,993,-1,1038,1143,941,-1,1496,1038,1201,-1,1496,1548,1038,-1,1304,1171,1365,-1,1171,1304,1151,-1,1177,1265,1459,-1,1293,1265,1177,-1,481,79,433,-1,481,81,79,-1,96,111,82,-1,96,109,111,-1,96,230,198,-1,230,96,113,-1,1324,1576,1368,-1,1558,1576,1324,-1,729,658,759,-1,729,598,658,-1,698,1114,1112,-1,698,975,1114,-1,1384,1439,1443,-1,1439,1384,1428,-1,969,677,878,-1,969,680,677,-1,557,320,391,-1,320,557,588,-1,423,342,408,-1,423,281,342,-1,166,446,347,-1,166,137,446,-1,171,157,152,-1,157,171,156,-1,821,294,823,-1,306,294,821,-1,263,1187,995,-1,335,1187,263,-1,290,973,1245,-1,486,973,290,-1,581,844,847,-1,574,844,581,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getc7_Geo_5_91_normalIndex_9()
		{
			int[] value = {1533,1472,1474,-1,1537,1472,1533,-1,1435,1582,1632,-1,1435,1390,1582,-1,1460,1315,1296,-1,1460,1468,1315,-1,932,1092,1109,-1,932,914,1092,-1,914,818,894,-1,914,810,818,-1,669,1283,1317,-1,669,617,1283,-1,905,1116,948,-1,1070,1116,905,-1,625,246,722,-1,246,625,310,-1,752,740,682,-1,752,819,740,-1,1412,1139,1386,-1,1139,1412,1163,-1,925,937,946,-1,925,970,937,-1,925,1004,1082,-1,892,1004,925,-1,695,1205,1026,-1,695,1203,1205,-1,1268,1428,1221,-1,1268,1510,1428,-1,1316,1085,1254,-1,1316,1258,1085,-1,1300,842,1244,-1,1300,788,842,-1,1600,1493,1574,-1,1600,1551,1493,-1,1577,1429,1551,-1,1400,1429,1577,-1,1400,836,838,-1,1400,1416,836,-1,1212,833,1356,-1,1212,834,833,-1,1644,1245,1647,-1,1245,1644,1209,-1,546,947,996,-1,546,560,947,-1,1603,1523,1584,-1,1603,1516,1523,-1,1479,1232,1145,-1,1479,1387,1232,-1,877,481,861,-1,877,684,481,-1,1531,1588,1492,-1,1531,1603,1588,-1,1021,915,893,-1,919,915,1021,-1,1071,903,638,-1,1071,1183,903,-1,1642,1498,1564,-1,1530,1498,1642,-1,1103,1342,1234,-1,1281,1342,1103,-1,1189,918,957,-1,1169,918,1189,-1,1359,1101,1169,-1,1101,1359,1344,-1,1620,1302,1587,-1,1620,1391,1302,-1,1005,1235,1261,-1,1005,955,1235,-1,934,653,640,-1,653,934,798,-1,693,798,735,-1,798,693,653,-1,660,703,645,-1,703,660,675,-1,630,660,636,-1,630,681,660,-1,180,160,355,-1,160,180,170,-1,615,531,600,-1,615,558,531,-1,1060,1313,979,-1,1313,1060,1188,-1,287,371,32,-1,287,110,371,-1,636,600,630,-1,636,615,600,-1,1632,1598,1646,-1,1598,1632,1582,-1,548,662,439,-1,662,548,505,-1,525,243,690,-1,227,243,525,-1,1284,426,1391,-1,313,426,1284,-1,1235,1133,1375,-1,1235,1118,1133,-1,555,615,382,-1,555,558,615,-1,1083,870,945,-1,870,1083,814,-1,927,724,498,-1,927,1108,724,-1,543,679,521,-1,543,547,679,-1,508,701,528,-1,508,607,701,-1,665,1139,802,-1,1139,665,1030,-1,627,421,580,-1,418,421,627,-1,881,576,725,-1,576,881,504,-1,969,1188,1060,-1,1188,969,951,-1,856,687,727,-1,858,687,856,-1,982,893,862,-1,982,1021,893,-1,366,631,201,-1,631,366,661,-1,651,503,919,-1,503,651,288,-1,515,711,817,-1,515,569,711,-1,198,109,96,-1,198,210,109,-1,306,171,187,-1,171,306,325,-1,114,295,277,-1,114,102,295,-1,144,534,410,-1,144,236,534,-1,1529,1583,1627,-1,1583,1529,1482,-1,839,546,623,-1,546,839,835,-1,1406,1534,1278,-1,1534,1406,1605,-1,1072,1364,1423,-1,1364,1072,1027,-1,1406,1072,1423,-1,1098,1072,1406,-1,561,213,223,-1,561,773,213,-1,1278,1098,1406,-1,1278,1100,1098,-1,1483,1643,1640,-1,1643,1483,1517,-1,1561,1125,1350,-1,1561,1353,1125,-1,417,611,562,-1,417,497,611,-1,951,1534,1188,-1,951,1278,1534,-1,16,40,67,-1,40,16,9,-1,745,204,347,-1,745,485,204,-1,1443,1178,1237,-1,1178,1443,1439,-1,479,511,754,-1,195,511,479,-1,677,624,878,-1,677,627,624,-1,1349,1222,1347,-1,1324,1349,1558,-1,1349,1324,1222,-1,204,391,191,-1,391,204,400,-1,612,588,557,-1,591,588,612,-1,564,571,536,-1,571,564,709,-1,1547,1277,1175,-1,1277,1547,1617,-1,1572,1400,1577,-1,1572,1416,1400,-1,894,849,896,-1,849,894,818,-1,1592,1276,1571,-1,1283,1276,1592,-1,1230,1163,1412,-1,1163,1230,1180,-1,703,1005,699,-1,1005,703,741,-1,497,944,611,-1,497,667,944,-1,1474,1471,1533,-1,1474,1396,1471,-1,93,276,183,-1,276,93,235,-1,485,1085,1179,-1,745,1085,485,-1,61,873,84,-1,61,876,873,-1,1393,1549,1420,-1,1546,1549,1393,-1,89,5,44,-1,89,74,5,-1,468,424,298,-1,326,424,468,-1,393,234,126,-1,197,234,393,-1,134,75,22,-1,134,146,75,-1,206,267,200,-1,216,267,206,-1,1223,1167,1185,-1,1193,1167,1223,-1,1331,1073,1263,-1,1053,1073,1331,-1,1305,1208,1226,-1,1305,1366,1208,-1,1451,1415,1426,-1,1451,1440,1415,-1,454,1388,650,-1,1388,454,1329,-1,1211,666,552,-1,1174,666,1211,-1,237,108,265,-1,237,103,108,-1,80,7,86,-1,80,56,7,-1,258,380,193,-1,459,380,258,-1,812,692,801,-1,692,812,642,-1,938,714,487,-1,938,1048,714,-1,392,1034,376,-1,392,1032,1034,-1,535,771,726,-1,771,535,572,-1,1233,976,1204,-1,962,976,1233,-1,906,860,962,-1,857,860,906,-1,683,851,868,-1,848,851,683,-1,1453,1536,1505,-1,1536,1453,1432,-1,767,732,708,-1,767,628,732,-1,652,732,565,-1,732,652,742,-1,416,949,620,-1,416,437,949,-1,216,361,428,-1,216,134,361,-1,566,317,390,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getc7_Geo_5_91_normalIndex_10()
		{
			int[] value = {566,389,317,-1,842,362,401,-1,842,788,362,-1,147,48,77,-1,147,92,48,-1,233,73,92,-1,73,233,250,-1,836,250,838,-1,836,229,250,-1,833,430,289,-1,833,834,430,-1,397,4,0,-1,435,4,397,-1,696,1106,648,-1,696,1087,1106,-1,51,23,87,-1,51,14,23,-1,264,965,445,-1,264,544,965,-1,1094,758,718,-1,758,1094,1135,-1,1132,1280,1006,-1,1132,1341,1280,-1,247,322,431,-1,247,44,322,-1,734,707,674,-1,707,734,780,-1,705,463,642,-1,463,705,462,-1,524,776,520,-1,524,766,776,-1,804,634,770,-1,768,634,804,-1,768,865,891,-1,804,865,768,-1,977,992,1002,-1,980,992,977,-1,992,1012,1008,-1,992,968,1012,-1,1484,1463,1290,-1,1475,1463,1484,-1,1121,1022,1040,-1,1121,1089,1022,-1,339,606,671,-1,452,606,339,-1,1040,1008,1012,-1,1040,1022,1008,-1,1504,1501,1494,-1,1504,1554,1501,-1,1569,1619,1599,-1,1619,1569,1614,-1,1195,1089,1121,-1,1089,1195,1104,-1,1399,1003,1054,-1,1003,1399,1146,-1,1218,363,256,-1,363,1218,1326,-1,520,443,279,-1,520,518,443,-1,1022,1096,1264,-1,1022,1089,1096,-1,779,602,707,-1,887,602,779,-1,965,731,1152,-1,965,544,731,-1,1010,1110,1086,-1,1010,1115,1110,-1,1061,796,852,-1,1061,1063,796,-1,1061,999,1137,-1,1020,999,1061,-1,931,1080,966,-1,1080,931,1131,-1,1208,765,954,-1,765,1208,1239,-1,1372,578,394,-1,578,1372,1447,-1,452,694,606,-1,619,694,452,-1,976,856,933,-1,856,976,858,-1,764,670,901,-1,764,616,670,-1,794,584,609,-1,748,584,794,-1,950,1132,855,-1,950,1078,1132,-1,1536,1420,1549,-1,1536,1432,1420,-1,1470,1336,1438,-1,1325,1336,1470,-1,1119,805,1142,-1,805,1119,820,-1,62,126,234,-1,126,62,98,-1,827,846,815,-1,843,846,827,-1,64,452,339,-1,64,116,452,-1,1631,1295,1434,-1,1637,1295,1631,-1,162,551,143,-1,162,738,551,-1,132,738,162,-1,889,738,132,-1,221,104,293,-1,47,104,221,-1,1430,1033,1424,-1,1430,889,1033,-1,553,360,240,-1,553,710,360,-1,1,162,8,-1,132,162,1,-1,538,76,301,-1,538,300,76,-1,1031,1236,1074,-1,1031,1154,1236,-1,116,619,452,-1,116,360,619,-1,301,64,339,-1,64,301,76,-1,1609,1630,1581,-1,1637,1630,1609,-1,1441,909,1298,-1,1441,1168,909,-1,464,200,406,-1,206,200,464,-1,1141,1165,912,-1,1165,1141,1449,-1,1016,971,799,-1,1016,1013,971,-1,424,296,298,-1,296,326,89,-1,424,326,296,-1,1263,1441,1450,-1,1249,1441,1263,-1,1167,1066,1045,-1,1097,1066,1167,-1,563,172,648,-1,563,163,172,-1,229,127,78,-1,229,289,127,-1,120,637,552,-1,120,159,637,-1,849,749,751,-1,818,749,849,-1,376,56,80,-1,56,376,364,-1,490,413,237,-1,467,413,490,-1,704,977,967,-1,958,977,704,-1,713,1154,1031,-1,713,998,1154,-1,175,211,115,-1,175,285,211,-1,1340,1563,1462,-1,1411,1563,1340,-1,566,1168,465,-1,1168,566,909,-1,792,1586,1567,-1,792,778,1586,-1,403,442,122,-1,610,442,403,-1,239,291,262,-1,239,340,291,-1,328,208,346,-1,328,239,208,-1,1053,1403,1025,-1,1053,1331,1403,-1,1525,1563,1623,-1,1525,1462,1563,-1,572,883,771,-1,572,717,883,-1,378,88,103,-1,88,378,392,-1,332,258,63,-1,258,332,487,-1,487,459,258,-1,714,459,487,-1,250,78,73,-1,250,229,78,-1,368,99,469,-1,29,99,368,-1,1076,1080,1113,-1,917,1080,1076,-1,610,632,442,-1,904,632,610,-1,1229,1226,1227,-1,1229,1305,1226,-1,1306,1426,1266,-1,1451,1426,1306,-1,432,336,226,-1,432,579,336,-1,206,440,146,-1,206,464,440,-1,1219,1046,956,-1,1219,1240,1046,-1,654,799,694,-1,799,654,739,-1,654,800,510,-1,800,654,867,-1,782,1077,538,-1,1077,782,887,-1,1456,1154,1395,-1,1154,1456,1236,-1,1631,1607,1593,-1,1405,1607,1631,-1,573,240,221,-1,240,573,553,-1,293,573,221,-1,584,573,293,-1,116,240,360,-1,43,240,116,-1,1106,839,1017,-1,835,839,1106,-1,69,119,20,-1,163,119,69,-1,1102,1488,1231,-1,1102,1418,1488,-1,1351,1543,1345,-1,1351,1545,1543,-1,1119,1393,1182,-1,1119,1345,1393,-1,1565,778,978,-1,1565,1586,778,-1,1562,1546,1589,-1,1546,1562,1549,-1,1308,1132,1078,-1,1308,1341,1132,-1,942,855,622,-1,855,942,950,-1,1417,1454,1280,-1,1417,1409,1454,-1,476,308,373,-1,476,540,308,-1,602,351,434,-1,602,502,351,-1,1066,762,986,-1,1097,762,1066,-1,1223,1013,1068,-1,1013,1223,1227,-1,513,999,886,-1,614,999,513,-1,985,1149,1047,-1,985,1063,1149,-1,1074,1271,926,-1,1236,1271,1074,-1,761,1124,1054,-1,731,1124,761,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getc7_Geo_5_91_normalIndex_11()
		{
			int[] value = {649,775,657,-1,776,775,649,-1,647,261,451,-1,299,261,647,-1,1367,1124,960,-1,1124,1367,1421,-1,1003,1105,1197,-1,1146,1105,1003,-1,50,19,3,-1,63,19,50,-1,19,178,27,-1,178,19,193,-1,830,496,744,-1,837,496,830,-1,1502,1484,1337,-1,1502,1494,1484,-1,1382,1614,1554,-1,1382,1447,1614,-1,1225,1433,1455,-1,1318,1433,1225,-1,1275,1542,1218,-1,1455,1542,1275,-1,70,650,480,-1,70,53,650,-1,1328,480,650,-1,1328,1381,480,-1,1421,1494,1502,-1,1421,1367,1494,-1,1069,1290,1002,-1,1337,1290,1069,-1,816,930,790,-1,816,968,930,-1,1463,1158,1290,-1,1463,1490,1158,-1,865,790,930,-1,790,865,756,-1,443,704,451,-1,443,747,704,-1,345,23,54,-1,345,256,23,-1,863,766,705,-1,859,766,863,-1,260,177,268,-1,260,165,177,-1,315,502,419,-1,502,315,351,-1,150,5,85,-1,5,150,100,-1,777,575,1006,-1,777,466,575,-1,718,616,764,-1,616,718,758,-1,58,117,155,-1,58,45,117,-1,1123,761,769,-1,1123,1075,761,-1,441,164,509,-1,441,264,164,-1,101,45,65,-1,101,130,45,-1,53,454,650,-1,53,18,454,-1,120,2,42,-1,2,120,140,-1,563,827,469,-1,827,563,1017,-1,21,2,0,-1,21,30,2,-1,48,18,53,-1,18,48,17,-1,841,309,784,-1,841,233,309,-1,480,131,70,-1,480,377,131,-1,362,147,173,-1,147,362,309,-1,131,207,106,-1,254,207,131,-1,450,341,267,-1,341,450,354,-1,62,323,25,-1,323,62,365,-1,767,466,777,-1,767,621,466,-1,513,237,265,-1,490,237,513,-1,884,906,972,-1,884,868,906,-1,1410,1048,938,-1,1338,1048,1410,-1,1255,983,793,-1,1255,943,983,-1,364,959,332,-1,364,1014,959,-1,818,723,749,-1,818,810,723,-1,556,692,554,-1,556,723,692,-1,324,178,353,-1,324,189,178,-1,63,193,19,-1,63,258,193,-1,174,115,211,-1,115,174,112,-1,844,1120,847,-1,1120,844,1084,-1,435,1329,454,-1,1329,435,1153,-1,1348,650,1388,-1,1328,650,1348,-1,1381,1521,1303,-1,1381,1508,1521,-1,1352,821,823,-1,821,1352,1336,-1,1489,1470,1503,-1,1478,1470,1489,-1,1199,1477,1298,-1,1199,1506,1477,-1,1515,1563,1411,-1,1515,1590,1563,-1,954,606,694,-1,765,606,954,-1,986,1024,1066,-1,990,1024,986,-1,440,917,396,-1,440,902,917,-1,659,956,541,-1,659,635,956,-1,991,928,920,-1,991,1046,928,-1,74,326,278,-1,326,74,89,-1,783,1149,1137,-1,1036,1149,783,-1,845,985,1011,-1,845,785,985,-1,1201,1241,1524,-1,1241,1201,1028,-1,1354,1408,1389,-1,1354,1311,1408,-1,1436,1322,1301,-1,1436,1408,1322,-1,245,588,608,-1,245,320,588,-1,93,121,24,-1,93,183,121,-1,808,1070,905,-1,808,935,1070,-1,1559,1274,1544,-1,1252,1274,1559,-1,1390,1317,1582,-1,1160,1317,1390,-1,1181,1160,1390,-1,1160,1181,974,-1,1055,1532,1093,-1,1055,1487,1532,-1,1526,1416,1572,-1,1526,1356,1416,-1,1467,1081,996,-1,1467,1482,1081,-1,576,474,595,-1,474,576,504,-1,1099,1028,1201,-1,1028,1099,746,-1,408,411,418,-1,408,342,411,-1,217,330,358,-1,330,217,199,-1,1285,1198,1422,-1,1285,1059,1198,-1,1206,1439,1500,-1,1206,1178,1439,-1,598,427,698,-1,598,405,427,-1,878,993,969,-1,941,993,878,-1,866,993,1143,-1,911,993,866,-1,583,803,1125,-1,814,803,583,-1,497,186,255,-1,417,186,497,-1,41,15,55,-1,15,41,241,-1,772,349,685,-1,772,438,349,-1,1541,1423,1364,-1,1423,1541,1601,-1,923,1517,1483,-1,1517,923,773,-1,1050,1483,1518,-1,1050,923,1483,-1,350,15,209,-1,15,350,9,-1,1188,1570,1313,-1,1188,1534,1570,-1,846,850,880,-1,850,846,843,-1,1509,1585,1413,-1,1548,1585,1509,-1,805,530,522,-1,820,530,805,-1,156,259,124,-1,156,284,259,-1,230,530,514,-1,230,277,530,-1,876,68,689,-1,876,61,68,-1,113,82,46,-1,96,82,113,-1,515,338,569,-1,515,304,338,-1,817,691,929,-1,711,691,817,-1,1027,772,1019,-1,772,1027,900,-1,201,231,366,-1,201,238,231,-1,1377,1170,1279,-1,1377,1134,1170,-1,1281,1083,1210,-1,1281,1103,1083,-1,874,423,680,-1,404,423,874,-1,564,853,686,-1,529,853,564,-1,665,586,516,-1,586,665,596,-1,796,586,852,-1,796,607,586,-1,525,877,589,-1,877,525,927,-1,657,743,733,-1,657,775,743,-1,1452,1049,1261,-1,1049,1452,1358,-1,662,251,589,-1,505,251,662,-1,558,475,531,-1,539,475,558,-1,31,83,49,-1,32,83,31,-1,145,141,154,-1,145,97,141,-1,1129,830,910,-1,830,1129,837,-1,160,142,307,-1,160,154,142,-1,190,422,185,-1,422,190,333,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getc7_Geo_5_91_normalIndex_12()
		{
			int[] value = {123,375,426,-1,375,123,185,-1,995,1580,1172,-1,995,1594,1580,-1,1172,321,995,-1,1172,269,321,-1,154,227,142,-1,154,243,227,-1,355,577,645,-1,577,355,307,-1,700,816,790,-1,700,681,816,-1,499,180,355,-1,499,158,180,-1,790,693,700,-1,756,693,790,-1,934,733,1118,-1,934,640,733,-1,743,1101,1133,-1,743,871,1101,-1,918,859,863,-1,918,871,859,-1,1480,1359,1360,-1,1480,1481,1359,-1,1587,1369,1520,-1,1310,1369,1587,-1,945,895,1007,-1,913,895,945,-1,1319,1401,1216,-1,1319,1604,1401,-1,366,515,638,-1,366,304,515,-1,919,592,915,-1,503,592,919,-1,724,1387,1196,-1,724,1108,1387,-1,1187,1594,995,-1,1187,1628,1594,-1,1645,1532,1606,-1,1513,1532,1645,-1,850,1081,1175,-1,623,1081,850,-1,1645,1624,1647,-1,1645,1612,1624,-1,1628,1600,1594,-1,1629,1600,1628,-1,1363,841,784,-1,1363,1429,841,-1,1512,1172,1580,-1,1512,1273,1172,-1,1493,1300,1473,-1,1363,1300,1493,-1,1458,1512,1539,-1,1512,1458,1404,-1,1309,1191,1384,-1,1291,1191,1309,-1,1327,1585,1622,-1,1294,1585,1327,-1,1183,937,903,-1,1183,1058,937,-1,1392,1058,1183,-1,1392,1127,1058,-1,109,188,139,-1,210,188,109,-1,851,963,819,-1,963,851,848,-1,860,752,702,-1,752,860,857,-1,687,409,372,-1,409,687,702,-1,664,387,916,-1,664,712,387,-1,1057,1070,1180,-1,1057,1116,1070,-1,629,1252,1276,-1,629,626,1252,-1,974,722,1160,-1,974,625,722,-1,932,812,801,-1,957,812,932,-1,1267,1390,1435,-1,1390,1267,1181,-1,1639,1571,1550,-1,1639,1592,1571,-1,1538,1412,1386,-1,1538,1544,1412,-1,973,420,1093,-1,420,973,486,-1,335,1209,1187,-1,500,1209,335,-1,995,297,263,-1,297,995,321,-1,124,269,344,-1,124,135,269,-1,187,152,181,-1,187,171,152,-1,228,199,217,-1,228,202,199,-1,1060,680,969,-1,680,1060,874,-1,474,421,455,-1,421,474,447,-1,1575,1510,1625,-1,1575,1500,1510,-1,1413,1321,1509,-1,1321,1413,1445,-1,1222,1177,1347,-1,1177,1222,1324,-1,508,879,516,-1,879,508,570,-1,701,845,885,-1,701,785,845,-1,10,34,39,-1,10,38,34,-1,1564,1576,1642,-1,1576,1564,1469,-1,1354,1347,1445,-1,1354,1389,1347,-1,1112,1265,1365,-1,1265,1112,1114,-1,759,1171,1151,-1,658,1171,759,-1,678,1178,1206,-1,678,686,1178,-1,1059,656,754,-1,725,656,1059,-1,686,1237,1178,-1,686,853,1237,-1,608,595,655,-1,591,595,608,-1,952,874,1060,-1,874,952,984,-1,129,202,182,-1,202,129,199,-1,139,187,181,-1,139,188,187,-1,420,797,840,-1,420,486,797,-1,880,847,846,-1,581,847,880,-1,1107,1282,1269,-1,1299,1282,1107,-1,1579,1480,1468,-1,1579,1511,1480,-1,1592,1646,1598,-1,1592,1639,1646,-1,1360,1468,1480,-1,1315,1468,1360,-1,914,1056,1092,-1,914,894,1056,-1,801,914,932,-1,801,810,914,-1,1160,669,1317,-1,1160,722,669,-1,1163,802,1139,-1,935,802,1163,-1,232,629,617,-1,311,629,232,-1,857,819,752,-1,857,851,819,-1,963,837,1129,-1,848,837,963,-1,676,854,596,-1,791,854,676,-1,946,1058,1088,-1,1058,946,937,-1,1039,1088,1147,-1,1088,1039,946,-1,1082,970,925,-1,1082,1148,970,-1,1384,1221,1428,-1,1221,1384,1191,-1,1357,1330,1414,-1,1330,1357,1346,-1,1458,1357,1414,-1,1407,1357,1458,-1,1473,1244,1362,-1,1300,1244,1473,-1,1580,1539,1512,-1,1539,1580,1574,-1,1551,1629,1577,-1,1551,1600,1629,-1,1356,836,1416,-1,836,1356,833,-1,623,996,1081,-1,623,546,996,-1,1584,1638,1603,-1,1597,1638,1584,-1,1232,1108,690,-1,1232,1387,1108,-1,569,410,604,-1,569,338,410,-1,1183,1287,1392,-1,1183,1071,1287,-1,1007,1083,945,-1,1007,1210,1083,-1,1358,1378,1369,-1,1378,1358,1444,-1,1481,1511,1486,-1,1511,1481,1480,-1,863,957,918,-1,957,863,812,-1,1344,1481,1507,-1,1344,1359,1481,-1,775,871,743,-1,871,775,859,-1,955,1118,1235,-1,955,934,1118,-1,719,640,653,-1,719,672,640,-1,693,719,653,-1,693,756,719,-1,681,675,660,-1,675,681,700,-1,636,645,577,-1,636,660,645,-1,145,180,83,-1,170,180,145,-1,824,600,531,-1,600,824,825,-1,880,1175,1277,-1,850,1175,880,-1,913,1151,1157,-1,913,759,1151,-1,661,638,903,-1,638,661,366,-1,910,829,948,-1,829,910,830,-1,461,558,555,-1,461,539,558,-1,227,589,251,-1,227,525,589,-1,426,1302,1391,-1,426,375,1302,-1,1261,1375,1452,-1,1261,1235,1375,-1,690,927,525,-1,927,690,1108,-1,543,461,547,-1,543,539,461,-1,607,516,586,-1,607,508,516,-1,1386,1030,1288,-1,1386,1139,1030,-1,196,129,182,-1,196,153,129,-1,680,408,677,-1,423,408,680,-1,727,372,533,-1,687,372,727,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getc7_Geo_5_91_normalIndex_13()
		{
			int[] value = {862,939,1037,-1,862,893,939,-1,716,929,691,-1,716,1134,929,-1,59,24,6,-1,59,93,24,-1,720,433,399,-1,506,433,720,-1,210,388,329,-1,198,388,210,-1,284,171,325,-1,156,171,284,-1,295,517,522,-1,398,517,295,-1,1128,689,1148,-1,1128,1173,689,-1,277,522,530,-1,277,295,522,-1,843,623,850,-1,623,843,839,-1,806,1095,828,-1,806,760,1095,-1,1518,1640,1578,-1,1518,1483,1640,-1,1605,1640,1643,-1,1605,1601,1640,-1,1601,1406,1423,-1,1605,1406,1601,-1,1019,685,882,-1,1019,772,685,-1,1190,697,961,-1,1190,1210,697,-1,993,951,969,-1,993,911,951,-1,223,405,512,-1,67,405,223,-1,1251,1500,1575,-1,1251,1206,1500,-1,418,677,408,-1,677,418,627,-1,41,492,305,-1,41,94,492,-1,196,191,153,-1,196,151,191,-1,591,576,595,-1,591,612,576,-1,536,529,564,-1,536,447,529,-1,1575,1241,1251,-1,1524,1241,1575,-1,1529,1175,1081,-1,1529,1547,1175,-1,1635,1577,1629,-1,1572,1577,1635,-1,1380,1472,1621,-1,1380,1282,1472,-1,1571,1252,1559,-1,1276,1252,1571,-1,789,808,905,-1,787,808,789,-1,699,645,703,-1,699,355,645,-1,186,24,121,-1,90,24,186,-1,633,333,499,-1,422,333,633,-1,1267,1092,1056,-1,1267,1296,1092,-1,217,276,228,-1,276,217,270,-1,1224,1246,1259,-1,1224,1162,1246,-1,1259,1311,1354,-1,1259,1246,1311,-1,1535,1549,1562,-1,1535,1536,1549,-1,1573,1123,1214,-1,1573,1568,1123,-1,1195,1047,1104,-1,1011,1047,1195,-1,74,85,5,-1,192,85,74,-1,298,291,197,-1,298,262,291,-1,383,541,282,-1,659,541,383,-1,478,920,483,-1,920,478,991,-1,464,902,440,-1,464,966,902,-1,990,579,912,-1,579,990,986,-1,406,966,464,-1,406,931,966,-1,1045,1025,1029,-1,1025,1045,1052,-1,402,713,385,-1,489,713,402,-1,1411,1415,1499,-1,1411,1340,1415,-1,1336,822,821,-1,1336,1325,822,-1,1329,807,1388,-1,1329,781,807,-1,797,1211,840,-1,797,1174,1211,-1,552,728,1084,-1,552,637,728,-1,847,815,846,-1,815,847,1120,-1,367,545,379,-1,545,367,348,-1,1074,501,1031,-1,501,1074,542,-1,554,353,556,-1,353,554,324,-1,554,642,463,-1,554,692,642,-1,856,751,933,-1,856,849,751,-1,376,1014,364,-1,376,1034,1014,-1,886,490,513,-1,490,886,717,-1,1034,1446,1014,-1,1446,1034,1314,-1,868,857,906,-1,868,851,857,-1,837,683,496,-1,683,837,848,-1,854,988,1020,-1,988,854,791,-1,621,708,559,-1,767,708,621,-1,559,593,527,-1,708,593,559,-1,628,565,732,-1,628,493,565,-1,437,425,386,-1,425,437,416,-1,537,257,370,-1,537,401,257,-1,537,550,401,-1,390,131,377,-1,131,390,254,-1,173,77,128,-1,77,173,147,-1,77,53,70,-1,77,48,53,-1,11,0,4,-1,0,11,21,-1,18,435,454,-1,18,4,435,-1,363,87,23,-1,87,363,394,-1,164,445,105,-1,264,445,164,-1,965,1566,1418,-1,1152,1566,965,-1,1086,1047,1149,-1,1047,1086,1110,-1,331,466,249,-1,331,575,466,-1,715,718,764,-1,736,718,715,-1,734,472,780,-1,472,734,597,-1,419,286,315,-1,286,419,283,-1,168,175,138,-1,175,168,280,-1,268,462,260,-1,463,462,268,-1,165,273,169,-1,165,260,273,-1,859,776,766,-1,859,775,776,-1,518,747,443,-1,518,634,747,-1,770,719,804,-1,770,672,719,-1,719,865,804,-1,719,756,865,-1,980,968,992,-1,930,968,980,-1,1002,1008,1069,-1,1002,992,1008,-1,1463,1501,1569,-1,1501,1463,1475,-1,1040,824,1121,-1,825,824,1040,-1,469,815,368,-1,815,469,827,-1,930,891,865,-1,891,930,980,-1,1326,1619,1372,-1,1619,1326,1616,-1,1022,1069,1008,-1,1022,1264,1069,-1,829,744,726,-1,830,744,829,-1,1089,1194,1096,-1,1089,1104,1194,-1,1054,1421,1399,-1,1054,1124,1421,-1,345,1218,256,-1,345,1275,1218,-1,279,451,261,-1,279,443,451,-1,731,960,1124,-1,544,960,731,-1,1194,1110,1115,-1,1194,1104,1110,-1,852,1020,1061,-1,854,1020,852,-1,1193,1068,1113,-1,1193,1223,1068,-1,1204,933,1062,-1,933,1204,976,-1,331,855,575,-1,855,331,622,-1,597,248,472,-1,597,495,248,-1,622,940,942,-1,622,540,940,-1,1312,1409,1417,-1,1464,1409,1312,-1,1515,1610,1590,-1,1610,1515,1553,-1,155,125,58,-1,222,125,155,-1,1262,1432,1292,-1,1432,1262,1420,-1,1470,1376,1325,-1,1376,1470,1478,-1,1144,1351,1142,-1,1351,1144,1250,-1,1545,1618,1543,-1,1545,1615,1618,-1,69,172,163,-1,172,69,37,-1,835,1087,831,-1,835,1106,1087,-1,1250,537,620,-1,537,1250,1144,-1,1424,1077,1126,-1,1424,1033,1077,-1,8,143,71,-1,8,162,143,-1,1637,1320,1295,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getc7_Geo_5_91_normalIndex_14()
		{
			int[] value = {1637,1609,1320,-1,601,327,374,-1,327,601,436,-1,1343,889,1430,-1,1343,738,889,-1,987,1405,1094,-1,1339,1405,987,-1,510,750,415,-1,510,800,750,-1,301,671,395,-1,301,339,671,-1,928,1240,1126,-1,1240,928,1046,-1,226,406,200,-1,336,406,226,-1,89,247,296,-1,89,44,247,-1,1202,1607,1339,-1,1202,1552,1607,-1,1305,1164,1238,-1,1229,1164,1305,-1,1249,1449,1441,-1,1165,1449,1249,-1,1193,1097,1167,-1,1131,1097,1193,-1,1141,465,1168,-1,1141,603,465,-1,1141,994,603,-1,407,159,29,-1,549,159,407,-1,289,133,127,-1,133,289,430,-1,133,696,172,-1,133,430,696,-1,174,318,26,-1,174,367,318,-1,392,80,88,-1,80,392,376,-1,883,789,771,-1,789,883,787,-1,1002,967,977,-1,1002,1290,967,-1,1623,1456,1525,-1,1456,1623,1557,-1,1318,1051,1158,-1,1051,1318,1225,-1,556,380,587,-1,556,353,380,-1,1340,1426,1415,-1,1361,1426,1340,-1,412,444,384,-1,412,470,444,-1,340,384,291,-1,340,412,384,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getc7_Coord_6_91_point_1()
		{
			double[] value = {-0.3959,52.5604,-1.7498,-0.4057,52.5817,-1.7181,-0.4611,52.5632,-1.6931,-0.0778,52.3471,-1.5906,0.0,52.3508,-1.5853,-0.0722,52.3438,-1.5411,-0.3614,52.8507,-1.3041,-0.3419,52.8369,-1.3176,-0.3266,52.8493,-1.3731,-0.3149,52.8105,-1.6912,-0.3322,52.8925,-1.6218,-0.349,52.8271,-1.6315,-0.7671,52.4786,-1.7238,-0.7291,52.4967,-1.6847,-0.7654,52.5304,-1.6719,-0.6826,52.5432,-1.6586,-0.6969,52.5141,-1.6711,-0.6479,52.5386,-1.6601,-0.3373,52.3907,-2.0759,-0.1902,52.3719,-2.0845,-0.3281,52.39,-2.031,-0.431,52.8262,-1.6494,-0.4214,52.8136,-1.6563,-0.4992,52.7685,-1.688,-0.3659,52.8971,-1.6305,-0.8703,52.7926,-1.5907,-0.8518,52.7546,-1.6101,-0.8942,52.7923,-1.5714,-0.6872,52.8097,-1.6318,-0.7103,52.7599,-1.6729,-0.7852,52.7552,-1.6396,-0.3419,52.3729,-1.9559,-0.3307,52.3841,-1.9472,-0.3785,52.4034,-1.9288,-0.4322,52.6971,-1.1418,-0.4534,52.7089,-1.1398,-0.4538,52.6742,-1.1447,-0.4343,52.4339,-1.2321,-0.3972,52.3831,-1.186,-0.3845,52.4518,-1.1689,-0.4477,52.5242,-1.1875,-0.387,52.5185,-1.1422,-0.3856,52.5969,-1.1223,-0.3418,52.5491,-1.7853,-0.3341,52.5811,-1.7659,-0.1377,52.3663,-1.5984,-0.1387,52.3569,-1.5902,-0.2252,52.3763,-1.5887,-0.0661,52.157,-1.1008,-0.1506,52.1646,-1.1018,-0.0675,52.1553,-1.1126,-0.7994,52.9111,-1.5391,-0.7293,52.9547,-1.5121,-0.793,52.8694,-1.5712,-0.2836,52.4529,-1.5658,-0.3427,52.4798,-1.514,-0.3449,52.5117,-1.5227,-0.0815,52.5685,-2.7708,-0.0847,52.5649,-2.7506,-0.1497,52.5937,-2.8354,-0.1504,52.6588,-2.8417,-0.1524,52.6766,-2.8434,-0.1137,52.6021,-2.8389,-0.0809,52.7907,-2.6591,-0.0916,52.784,-2.6581,-0.0774,52.7892,-2.6548,-0.4467,52.5383,-1.5199,-0.4116,52.5465,-1.5475,-0.4272,52.5264,-1.4984,-0.2528,52.3965,-1.9719,-0.286,52.4452,-1.9082,-0.2678,52.3953,-1.963,-0.7388,52.6138,-1.3428,-0.7532,52.6372,-1.357,-0.8482,52.6419,-1.3523,-0.8623,52.8715,-1.5493,-0.3456,52.5386,-1.7886,-0.2947,52.4863,-1.8738,-0.3001,52.4769,-1.8683,-0.4457,52.3173,-2.0033,-0.4456,52.3186,-2.0109,-0.3809,52.3154,-2.0154,-0.3069,52.5042,-1.8458,-0.7186,52.5326,-1.4521,-0.7309,52.5223,-1.4599,-0.7393,52.5479,-1.4974,-0.6057,52.5302,-1.4047,-0.6035,52.549,-1.4029,-0.5984,52.534,-1.4217,-0.888,52.5567,-1.5211,-0.8093,52.5172,-1.4757,-0.8944,52.5388,-1.4908,-0.6484,52.5953,-1.5028,-0.6979,52.6131,-1.484,-0.7035,52.5809,-1.5022,-0.5573,52.4927,-1.3803,-0.5982,52.5128,-1.391,-0.5414,52.4977,-1.4282,-0.7074,52.5668,-1.5448,-0.7129,52.5568,-1.5169,-0.7375,52.5672,-1.5491,-0.6578,52.5036,-1.3966,-0.6709,52.5053,-1.3744,-0.7304,52.501,-1.3969,-0.2872,52.5033,-1.5555,-0.2975,52.5713,-1.5432,-0.2155,52.4893,-1.5887,-0.2988,52.6261,-1.5375,-0.3313,52.5808,-1.5434,-0.5815,52.6293,-1.4349,-0.5767,52.6159,-1.4111,-0.5654,52.6493,-1.3929,-0.5907,52.5665,-1.4342,-0.7405,52.7573,-1.4109,-0.7054,52.7232,-1.4426,-0.7205,52.7741,-1.4362,-0.6844,52.5863,-1.3086,-0.6849,52.5942,-1.3348,-0.7364,52.5831,-1.324,-0.6388,52.5877,-1.3502,-0.6432,52.5643,-1.3731,-0.69,52.5522,-1.3946,-0.7485,52.68,-1.3961,-0.7359,52.6346,-1.4326,-0.7131,52.6612,-1.4483,-0.6584,52.7936,-1.4395,-0.6444,52.8413,-1.4316,-0.6888,52.8347,-1.4227,-0.5086,52.7059,-1.3415,-0.5193,52.7173,-1.3951,-0.55,52.694,-1.4051,-0.5778,52.7169,-1.4215,-0.5935,52.6861,-1.4342,-0.6841,52.6632,-1.4619,-0.7129,52.5586,-1.4325,-0.7155,52.5838,-1.4034,-0.6396,52.6497,-1.4683,-0.6547,52.5764,-1.5196,-0.6323,52.5632,-1.5351,-0.6257,52.5669,-1.5029,-0.589,52.6152,-1.3402,-0.6417,52.5958,-1.3241,-0.2337,52.7962,-1.8491,-0.2369,52.799,-1.8505,-0.2759,52.8083,-1.7817,-0.2705,52.7635,-1.7855,-0.2732,52.7856,-1.784,-0.1054,52.7118,-1.949,-0.162,52.6804,-1.9234,-0.1015,52.6876,-1.967,-0.7706,52.5661,-1.6545,-0.7757,52.6014,-1.7376,-0.3945,52.7743,-1.4501,-0.4184,52.784,-1.4835,-0.4663,52.7974,-1.4596,-0.2535,52.4998,-1.9038,-0.2107,52.4554,-1.9776,-0.2002,52.5275,-1.9461,-0.4509,53.0025,-1.5317,-0.4585,52.8913,-1.6062,-0.4977,52.936,-1.5553,-0.2726,52.8059,-1.7791,-0.2375,52.7745,-1.8569,-0.1599,52.4678,-2.0299,-0.1914,52.4326,-2.0111,-0.2671,52.7319,-1.7903,-0.0548,52.4454,-2.2127,-0.0907,52.4079,-2.1921,-0.0941,52.4068,-2.2283,-0.6341,52.5619,-1.292,-0.6046,52.5578,-1.2768,-0.6432,52.5852,-1.293,-0.6014,52.7644,-1.6903,-0.5942,52.7248,-1.7494,-0.7059,52.6934,-1.7253,-0.3183,52.8767,-1.6766,-0.4025,52.8135,-1.6952,-0.3876,52.6422,-1.5736,-0.3739,52.6976,-1.6062,-0.3781,52.6864,-1.5492,-0.3634,52.7885,-1.5786,-0.389,52.7602,-1.5076,-0.3769,52.729,-1.5205,-0.4387,52.889,-1.5094,-0.4541,52.9122,-1.4998,-0.5353,52.918,-1.4362,-0.4328,52.8932,-1.512,-0.4328,52.8997,-1.515,-0.522,52.8564,-1.4561,-0.5597,52.8146,-1.4515,-0.5006,52.7646,-1.4416,-0.4755,52.7551,-1.3738,-0.7373,52.7,-1.4162,-0.78,52.7812,-1.4001,-0.2318,52.7467,-1.8711,-0.2166,52.7152,-1.8716,-0.1687,52.7149,-1.9182,-0.4412,52.9956,-1.5128,-0.4411,52.9108,-1.5095,-1.0288,52.6673,-1.3797,-1.094,52.6737,-1.3996,-1.0635,52.6152,-1.387,-0.8383,52.8015,-1.4045,-0.8836,52.7571,-1.4211,-0.8131,52.7414,-1.3983,-0.8404,52.9144,-1.4377,-0.8171,52.883,-1.3984,-0.7664,52.9136,-1.3981,-0.685,52.5124,-1.3474,-0.6157,52.5118,-1.3598,-0.5632,52.5029,-1.3348,-0.5103,52.4464,-1.3394,-0.4944,52.5418,-1.5613,-0.5419,52.5459,-1.6106,-0.5764,52.5241,-1.6705,-0.5017,52.5612,-1.6329,-0.1291,52.4551,-1.5921,-0.2184,52.5578,-1.5717,-0.0844,52.7042,-1.4647,0.0,52.6932,-1.4729,0.0,52.5983,-1.5019,-0.3272,52.7174,-1.5151,-0.2977,52.7548,-1.4725,-0.2566,52.7533,-1.4792,-0.2139,52.7954,-1.4393,-0.1867,52.7847,-1.4337,-0.2247,52.7463,-1.4753,-0.2622,52.6271,-1.5426,-0.1998,52.6568,-1.5173,-0.2052,52.6283,-1.5398,-0.6104,52.5868,-1.2804,-0.5698,52.6392,-1.3014,-0.6022,52.5983,-1.3235,-0.4256,52.8478,-1.3058,-0.45,52.8589,-1.2397,-0.4033,52.8958,-1.265,-0.2432,52.8022,-1.4258,-0.2715,52.8111,-1.408,-0.2532,52.7629,-1.3629,-0.1423,52.6174,-0.9432,-0.1445,52.5998,-0.935,-0.0566,52.5896,-0.9291,-0.337,52.8514,-1.3883,-0.3824,52.8719,-1.3453,0.0,52.7561,-1.4372,-0.0902,52.7587,-1.4408,-0.0919,52.7653,-1.4254,-0.3967,52.2561,-1.2271,-0.4003,52.3215,-1.2052,-0.4158,52.3639,-1.2846,-0.3356,52.2849,-1.133,-0.3424,52.2283,-1.1528,-0.2549,52.1945,-1.1229,-0.4482,52.423,-1.3741,-0.4692,52.4047,-1.3075,-0.0683,52.7264,-1.35,-0.0626,52.7235,-1.3452,0.0,52.7173,-1.3557,-0.1772,52.3524,-1.4309,-0.1593,52.3507,-1.4455,-0.1566,52.3748,-1.4125,-0.3113,52.8087,-1.3311,-0.3248,52.7961,-1.2959,-0.297,52.7673,-1.2968,-0.416,52.8428,-1.1459,-0.4077,52.8244,-1.163,-0.4013,52.861,-1.2123,-0.3193,52.6996,-1.1858,-0.3395,52.6862,-1.1599,-0.2668,52.6746,-1.0955,-0.4965,52.4835,-1.4301,-0.5065,52.4433,-1.3792,-0.9373,52.5074,-1.3798,-0.9113,52.5092,-1.4315,-0.8244,52.4942,-1.4238,-0.9569,52.8516,-1.474,-1.0131,52.8046,-1.4336,-0.934,52.8471,-1.4525,-0.2174,52.7975,-1.4204,-0.1901,52.7867,-1.4148,-0.3869,52.8597,-1.2544,-0.3762,52.8278,-1.2581,-0.3779,52.7967,-1.1856,-0.3859,52.8182,-1.2145,-0.2676,52.7392,-1.3081,-0.2882,52.7187,-1.2516,-0.2816,52.6962,-1.1852,-0.2147,52.6599,-1.0614,-0.1269,52.6616,-1.0414,-0.1319,52.6654,-1.1043,-0.1278,52.6562,-1.0049,-0.4844,52.723,-1.1774,-0.4824,52.7955,-1.1739,-0.5055,52.7587,-1.2262,-0.3153,52.5663,-1.0417,-0.3809,52.6481,-1.1107,0.0,52.3511,-0.9948,-0.0625,52.4349,-0.968,-0.0598,52.3551,-1.0036,-0.5052,52.6251,-1.1952,-0.551,52.578,-1.2291,-0.5031,52.5928,-1.2008,-1.0689,52.6099,-1.4231,-0.9963,52.5415,-1.4016,-1.0074,52.551,-1.3793,-0.9836,52.5988,-1.3552,-0.9339,52.5845,-1.3386,-0.9291,52.6586,-1.3782,-1.0182,52.738,-1.419,-0.9662,52.7821,-1.4173,-0.3525,52.8393,-1.5938,-0.4225,52.8444,-1.5076,-0.6174,52.9004,-1.406,-0.7449,52.8165,-1.4103,-0.7715,52.7263,-1.4025,-0.7903,52.6897,-1.3933,-0.5429,52.5435,-1.2443,-0.3496,52.7364,-1.4934,-0.245,52.8005,-1.4451,-0.329,52.7739,-1.4559,-0.28,52.8124,-1.4243,-0.5449,52.7369,-1.4289,-0.1233,52.6525,-2.7026,-0.1102,52.7299,-2.6751,-0.1228,52.7297,-2.7095,-0.0992,52.6249,-2.6305,-0.1033,52.5514,-2.6441,-0.0716,52.5257,-2.5586,-0.1097,52.5906,-2.5464,-0.0504,52.5442,-2.6313,-0.1276,52.5736,-2.7208,-0.1609,52.6648,-2.7521,-0.1612,52.6746,-2.8347,-0.1589,52.7384,-2.7468,-0.1446,52.7571,-2.8125,-0.0569,52.7461,-2.6133,-0.0764,52.7085,-2.6199,-0.0873,52.69,-2.5419,0.0,52.7606,-2.3902,-0.0602,52.7361,-2.3245,0.0,52.7744,-2.3288,-0.0971,52.699,-2.3226,-0.1464,52.7077,-2.2056,0.0,52.8035,-2.1291,0.0,52.7928,-2.2292,-0.07,52.7525,-2.2176,-0.2923,52.6357,-2.0756,-0.2268,52.6271,-2.1504,-0.3189,52.5753,-2.0869,-0.2776,52.765,-1.9034,-0.19,52.8023,-1.8969,-0.138,52.8136,-1.9143,-0.3487,52.4536,-2.0926,-0.4303,52.4636,-2.0419,-0.4728,52.5432,-1.9644,-0.5269,52.4408,-2.0001,-0.6953,52.6377,-1.7799,-0.5726,52.6829,-1.8061,-0.6468,52.6114,-1.8574,-0.4046,52.6751,-1.9396,-0.451,52.6126,-1.9421,-0.5063,52.6412,-1.8931,-0.459,52.7469,-1.7768,-0.3548,52.7838,-1.7694,-0.4855,52.7588,-1.6995,-0.6023,52.7756,-1.6869,-0.4961,52.8132,-1.6469,-0.5046,52.7804,-1.6782,-0.4925,52.8892,-1.598,-0.6536,53.026,-1.4422,-0.5792,52.9551,-1.5177,-0.6676,52.9663,-1.5082,-0.9075,52.7906,-1.5619,-0.9334,52.7996,-1.5413,-0.9055,52.8292,-1.543,-0.2035,52.5877,-1.9055,-0.2082,52.6338,-1.8892,-0.2581,52.6255,-1.8132,-0.0626,52.342,-1.3582,-0.125,52.32,-1.3001,-0.1131,52.3504,-1.3623,-0.2058,52.3178,-1.337,-0.1787,52.3212,-1.3108,-0.1761,52.2922,-1.2443,-0.3106,52.1857,-1.2325,-0.3217,52.2198,-1.2915,-0.19,52.2502,-1.2568,-0.1114,52.3879,-1.4292,-0.1694,52.3662,-1.3828,-0.1956,52.3494,-1.3953,-0.2919,52.335,-1.4357,-0.292,52.3554,-1.4662,0.0,52.3414,-1.5448,0.0,52.342,-1.5425,-0.2747,52.3884,-1.5615,-0.2188,52.3803,-1.5511,-0.2446,52.169,-1.1515,-0.1428,52.1838,-1.1656,-0.149,52.1604,-1.1146,-0.5331,52.4964,-1.2663,-0.522,52.4792,-1.2973,-0.4285,52.4073,-1.2563,-0.3701,52.3791,-1.3818,-0.4106,52.3962,-1.3675,-0.3667,52.3968,-1.4344,-0.3994,52.4275,-1.426,-0.3912,52.4523,-1.4547,-0.3421,52.4385,-1.5056,0.0,52.5745,-2.7091,-0.0425,52.571,-2.7811,0.0,52.5804,-2.7715,-0.0659,52.6217,-2.8332,-0.0248,52.5496,-2.7218,-0.0735,52.5579,-2.7106,-0.0201,52.5396,-2.6336,0.0,52.5574,-2.6285,0.0,52.5484,-2.5408,-0.0131,52.5242,-2.48,-0.0113,52.5317,-2.5528,0.0,52.5233,-2.4717,0.0,52.5077,-2.4063,-0.0148,52.4998,-2.4167,-0.0251,52.4586,-2.362,0.0,52.4849,-2.3554,0.0,52.4671,-2.259,-0.151,52.3749,-2.2559,-0.1177,52.3836,-2.2376,-0.1354,52.3618,-2.175,-0.0412,52.4401,-2.2865,-0.2502,52.4534,-1.941,-0.2413,52.405,-1.9815,0.0,52.4746,-2.1845,0.0,52.5012,-2.1363,-0.0648,52.4627,-2.1523,-0.4155,52.6029,-1.6863,-0.4557,52.5801,-1.6366,-0.4334,52.5894,-1.5814,-0.4577,52.5559,-1.5847,-0.5434,52.5574,-1.5343,-0.4024,52.5542,-1.7535,-0.4627,52.5586,-1.7003,-0.4673,52.5196,-1.7801,-0.3151,52.4976,-1.8413,-0.3535,52.4852,-1.8424,-0.3195,52.3953,-1.9386,-0.2727,52.3818,-1.9724,-0.5734,52.4198,-1.8625,-0.5101,52.3919,-1.9025,-0.4899,52.444,-1.855,-0.2525,52.3969,-1.9919,-0.5248,52.3588,-1.9797,-0.5897,52.4079,-1.9368,-0.5997,52.4653,-1.9627,-0.6775,52.4224,-1.8559,-0.7134,52.5118,-1.868,-0.658,52.4905,-1.9159,-0.6426,52.4287,-1.8137,-0.6279,52.4589,-1.7669,-0.6809,52.4623,-1.7473,-0.602,52.4912,-1.7264,-0.5776,52.5197,-1.6792,-0.6467,52.5345,-1.6659,-0.8559,52.7438,-1.6099,-0.7872,52.7465,-1.6388,-0.7827,52.6997,-1.6684,-0.8456,52.6281,-1.5861,-0.7798,52.6086,-1.6175,-0.7926,52.5717,-1.5325,-0.8016,52.5493,-1.5042,-0.7707,52.5065,-1.4266,-0.7511,52.5043,-1.3686,-0.8447,52.502,-1.378,-0.8407,52.6996,-1.6311,-0.8575,52.6647,-1.5857,-0.973,52.6062,-1.5189,-1.0076,52.6144,-1.486,-0.9819,52.6471,-1.534,-1.0479,52.6602,-1.5046,-1.0415,52.7422,-1.5233,-1.0642,52.6152,-1.4608,-1.0878,52.6708,-1.4691,-0.1348,52.7264,-1.4643,-0.1331,52.619,-1.5198,-0.0814,52.6465,-1.9921,0.0,52.6608,-2.0106,0.0,52.7037,-1.9743,0.4611,52.5632,-1.6918,0.4057,52.5817,-1.717,0.3959,52.5604,-1.7487,0.0722,52.3438,-1.5408,0.0778,52.3471,-1.5903,0.3266,52.8493,-1.3725,0.3614,52.8507,-1.3034,0.3669,52.8804,-1.3272,0.3322,52.8925,-1.6212,0.3122,52.8737,-1.6783,0.3149,52.8105,-1.6906,0.7654,52.5304,-1.6699,0.7291,52.4967,-1.6827,0.7671,52.4786,-1.7217,0.6479,52.5386,-1.6584,0.6969,52.5141,-1.6692,0.6826,52.5432,-1.6568,0.3281,52.39,-2.0299,0.1902,52.3719,-2.0839,0.3373,52.3907,-2.0748,0.4214,52.8136,-1.6554,0.431,52.8262,-1.6486,0.5046,52.7804,-1.6771,0.3518,52.8959,-1.6366,0.8942,52.7923,-1.57,0.8518,52.7546,-1.6086,0.8703,52.7926,-1.5893,0.7852,52.7552,-1.6381,0.7103,52.7599,-1.6716,0.7879,52.7915,-1.6126,0.3785,52.4034,-1.9276,0.3307,52.3841,-1.9461,0.3419,52.3729,-1.9547,0.4538,52.6742,-1.1436,0.4534,52.7089,-1.1387,0.4322,52.6971,-1.1407,0.3845,52.4518,-1.1673,0.3972,52.3831,-1.1846,0.4343,52.4339,-1.2307,0.4477,52.5242,-1.1862,0.4568,52.6096,-1.1545,0.3856,52.5969,-1.1199,0.4155,52.6029,-1.6852,0.3341,52.5811,-1.765,0.3418,52.5491,-1.7843,0.1387,52.3569,-1.5897,0.1377,52.3663,-1.5978,0.2248,52.384,-1.5969,0.0675,52.1553,-1.1123,0.149,52.1604,-1.1139,0.0661,52.157,-1.1005,0.793,52.8694,-1.57,0.7293,52.9547,-1.5111,0.7994,52.9111,-1.5381,0.0445,52.7544,-2.6087,0.0569,52.7461,-2.6132,0.0916,52.784,-2.658,0.2836,52.4529,-1.5648,0.3449,52.5117,-1.5216,0.3427,52.4798,-1.5129,0.0815,52.5685,-2.7707,0.1427,52.5967,-2.8426,0.1497,52.5937,-2.8352,0.1524,52.6766,-2.8433,0.1504,52.6588,-2.8415,0.4272,52.5264,-1.4971,0.383,52.5299,-1.5303,0.4116,52.5465,-1.5463,0.7237,52.4912,-1.6826,0.6717,52.4758,-1.7255,0.6809,52.4623,-1.7453,0.286,52.4452,-1.9073,0.2775,52.4511,-1.9135,0.2528,52.3965,-1.9711,0.4024,52.5542,-1.7523,0.8482,52.6419,-1.3505,0.7532,52.6372,-1.3553,0.7388,52.6138,-1.341,0.8623,52.8715,-1.5481,1.0394,52.7931,-1.4514,1.0966,52.7485,-1.4436,1.0922,52.7404,-1.4829,0.3456,52.5386,-1.7876,0.3001,52.4769,-1.8674,0.2947,52.4863,-1.8729,0.3774,52.3183,-2.0033,0.3809,52.3154,-2.0141,0.4456,52.3186,-2.0094,0.3151,52.4976,-1.8403,0.3678,52.3168,-2.012,0.7393,52.5479,-1.4955,0.7309,52.5223,-1.4579,0.7186,52.5326,-1.4502,0.888,52.5567,-1.519,0.8944,52.5388,-1.4887,0.8093,52.5172,-1.4736,0.7035,52.5809,-1.5004,0.6979,52.6131,-1.4823,0.6484,52.5953,-1.5011,0.5414,52.4977,-1.4266,0.5832,52.5249,-1.4228,0.5982,52.5128,-1.3892,0.7117,52.5626,-1.6159,0.7798,52.6086,-1.6156,0.7551,52.5651,-1.5863,0.715,52.5034,-1.4228,0.6709,52.5053,-1.3725,0.6578,52.5036,-1.3947,0.2975,52.5713,-1.5423,0.2622,52.6271,-1.5418,0.2988,52.6261,-1.5367,0.6504,52.5184,-1.4001,0.6841,52.6632,-1.4603,0.7054,52.7232,-1.4411,0.6755,52.7147,-1.4393,0.5815,52.6293,-1.4334,0.5654,52.6493,-1.3915,0.5767,52.6159,-1.4096,0.5933,52.5454,-1.4468,0.6035,52.549,-1.4012,0.5984,52.534,-1.42,0.7364,52.5831,-1.3222,0.6849,52.5942,-1.3331,0.6388,52.5877,-1.3485,0.6854,52.5787,-1.358,0.69,52.5522,-1.3928,0.7131,52.6612,-1.4466,0.7485,52.68,-1.3945,0.7373,52.7,-1.4146,0.589,52.6152,-1.3386,0.5624,52.6463,-1.3208,0.5698,52.6392,-1.3,0.5405,52.6611,-1.3716,0.5193,52.7173,-1.3939,0.5086,52.7059,-1.3403,0.5935,52.6861,-1.4328,0.5778,52.7169,-1.4202,0.55,52.694,-1.4038,0.6975,52.5281,-1.4156,0.7129,52.5586,-1.4306,0.6257,52.5669,-1.5012,0.6584,52.5648,-1.5372,0.6547,52.5764,-1.5179,0.7061,52.5151,-1.4229,0.6022,52.5983,-1.3219,0.2726,52.8059,-1.7785,0.2759,52.8083,-1.7811,0.2369,52.799,-1.85,0.1015,52.6876,-1.9668,0.162,52.6804,-1.923,0.1687,52.7149,-1.9178,0.1102,52.7299,-2.675,0.1228,52.7297,-2.7094,0.1224,52.7978,-2.7192,0.7757,52.6014,-1.7358,0.7706,52.5661,-1.6526,0.3535,52.4852,-1.8413,0.4977,52.936,-1.5545,0.3599,52.9031,-1.6275,0.4509,53.0025,-1.5311,0.2375,52.7745,-1.8564,0.2732,52.7856,-1.7834,0.1914,52.4326,-2.0105,0.2107,52.4554,-1.9769,0.1599,52.4678,-2.0294,0.3173,52.757,-1.7012,0.2705,52.7635,-1.7849,0.0941,52.4068,-2.228,0.0907,52.4079,-2.1919,0.0548,52.4454,-2.2126,0.5942,52.7248,-1.7482,0.6014,52.7644,-1.6891,0.7092,52.7476,-1.6734,0.3183,52.8767,-1.676,0.3876,52.6422,-1.5726,0.3781,52.6864,-1.5483,0.3739,52.6976,-1.6053,0.3634,52.7885,-1.5778,0.3769,52.729,-1.5196,0.5353,52.918,-1.4353,0.4541,52.9122,-1.499,0.4387,52.889,-1.5086,0.4328,52.8932,-1.5112,0.4328,52.8997,-1.5142,0.4663,52.7974,-1.4586,0.5006,52.7646,-1.4405,0.5597,52.8146,-1.4504,0.4755,52.7551,-1.3727,0.7405,52.7573,-1.4095,0.7449,52.8165,-1.409,0.7205,52.7741,-1.4348,0.2166,52.7152,-1.8711,0.2318,52.7467,-1.8706,0.1736,52.7441,-1.9118,0.4412,52.9956,-1.5121,0.3396,52.8994,-1.6091,0.9373,52.5074,-1.3775,1.0074,52.551,-1.3771,0.9339,52.5845,-1.3366,0.8383,52.8015,-1.4031,0.78,52.7812,-1.3987,0.8131,52.7414,-1.3968,1.0131,52.8046,-1.4322,0.9569,52.8516,-1.4727,0.7903,52.9568,-1.4124,0.8171,52.883,-1.3972,0.8404,52.9144,-1.4366,0.9096,52.8161,-1.4117,0.6322,52.5113,-1.3215,0.6157,52.5118,-1.358,0.522,52.4792,-1.2957,0.5103,52.4464,-1.3378,0.5573,52.4927,-1.3786,0.4577,52.5559,-1.5834,0.4467,52.5383,-1.5186,0.3869,52.361,-1.953,0.2184,52.5578,-1.5711,0.2155,52.4893,-1.588,0.1291,52.4551,-1.5916,0.0741,52.6089,-1.5066,0.0844,52.7042,-1.4644,0.328,52.6681,-1.5383,0.3015,52.6668,-1.5296,0.3272,52.7174,-1.5143,0.2987,52.6999,-1.5091,0.2977,52.7548,-1.4718,0.1867,52.7847,-1.4332,0.2139,52.7954,-1.4388,0.2566,52.7533,-1.4786,0.2052,52.6283,-1.5392,0.2571,52.6841,-1.5157,0.562,52.6094,-1.2595,0.6104,52.5868,-1.2787,0.4033,52.8958,-1.2642,0.45,52.8589,-1.2388,0.4256,52.8478,-1.305,0.2532,52.7629,-1.3623,0.2715,52.8111,-1.4074,0.2432,52.8022,-1.4253,0.0668,52.6448,-0.9236,0.1445,52.623,-0.9224,0.1423,52.6413,-0.9301,0.337,52.8514,-1.3876,0.0919,52.7653,-1.4252,0.0902,52.7587,-1.4405,0.4158,52.3639,-1.2831,0.4011,52.2943,-1.2828,0.4032,52.3135,-1.3115,0.5065,52.4433,-1.3775,0.4482,52.423,-1.3726,0.2517,52.7363,-1.3118,0.2676,52.7392,-1.3074,0.3837,52.7569,-1.1909,0.3779,52.7967,-1.1848,0.3592,52.7629,-1.2122,0.4146,52.7459,-1.1559,0.4168,52.7765,-1.15,0.4965,52.4835,-1.4285,0.498,52.5452,-1.4813,0.5434,52.5574,-1.5327,0.5378,52.5261,-1.4707,0.2927,52.3338,-1.9944,0.3321,52.3781,-2.0156,0.934,52.8471,-1.4513,0.3762,52.8278,-1.2574,0.3438,52.8215,-1.2977,0.3859,52.8182,-1.2137,0.4077,52.8244,-1.1622,0.2882,52.7187,-1.2508,0.297,52.7673,-1.2961,0.2816,52.6962,-1.1823,0.3193,52.6996,-1.184,0.2147,52.6748,-1.0538,0.2049,52.6826,-1.0962,0.1319,52.6758,-1.1023,0.1269,52.6781,-1.0365,0.1278,52.6761,-0.9968,0.5055,52.7587,-1.2251,0.4824,52.7955,-1.1729,0.4844,52.723,-1.1763,0.3809,52.6481,-1.1083,0.3041,52.6334,-1.0309,0.5052,52.6251,-1.1939,0.5149,52.6632,-1.2325,1.0635,52.6152,-1.385,1.0689,52.6099,-1.421,1.08,52.7551,-1.4151,1.094,52.6737,-1.3978,0.9662,52.7821,-1.4158,1.0182,52.738,-1.4173,0.3525,52.8393,-1.5931,0.7863,52.848,-1.403,0.7903,52.6897,-1.3916,0.6888,52.8347,-1.4215,0.8523,52.5761,-1.3372,0.28,52.8124,-1.4237,0.329,52.7739,-1.4552,0.5449,52.7369,-1.4277,0.0992,52.6249,-2.6303,0.1233,52.6525,-2.7025,0.1033,52.5514,-2.6439,0.1097,52.5906,-2.5463,0.0716,52.5257,-2.5585,0.0735,52.5579,-2.7105,0.0504,52.5442,-2.6312,0.1609,52.6648,-2.752,0.1276,52.5736,-2.7207,0.1612,52.6746,-2.8346,0.1589,52.7384,-2.7467,0.0591,52.7287,-2.5432,0.0873,52.69,-2.5418,0.0764,52.7085,-2.6198,0.0602,52.7361,-2.3244,0.0971,52.699,-2.3225,0.07,52.7525,-2.2175,0.0885,52.7696,-2.129,0.3189,52.5753,-2.0861,0.2305,52.5935,-2.1555,0.2268,52.6271,-2.1499,0.3487,52.4536,-2.0916,0.3945,52.5575,-2.021,0.4303,52.4636,-2.0406,0.4728,52.5432,-1.9632,0.451,52.6126,-1.941,0.5207,52.5518,-1.9413,0.7868,52.5557,-1.7808,0.6953,52.6377,-1.7783,0.4404,52.7134,-1.8692,0.5063,52.6412,-1.8919,0.2776,52.765,-1.9029,0.3127,52.7782,-1.8384,0.4025,52.8135,-1.6944,0.4855,52.7588,-1.6985,0.459,52.7469,-1.7758,0.4992,52.7685,-1.687,0.5992,52.8076,-1.6411,0.6023,52.7756,-1.6857,0.4925,52.8892,-1.5972,0.4585,52.8913,-1.6054,0.6676,52.9663,-1.5074,0.5421,53.0174,-1.4762,0.6536,53.026,-1.4415,0.9055,52.8292,-1.5417,0.9334,52.7996,-1.5399,0.9075,52.7906,-1.5604,0.2581,52.6255,-1.8125,0.2035,52.5877,-1.9049,0.2541,52.5638,-1.8577,0.1131,52.3504,-1.3619,0.0663,52.3176,-1.2874,0.0626,52.342,-1.358,0.1761,52.2922,-1.2433,0.1787,52.3212,-1.3101,0.2058,52.3178,-1.3362,0.19,52.2502,-1.256,0.3217,52.2198,-1.2902,0.3106,52.1857,-1.2312,0.1694,52.3662,-1.3822,0.1114,52.3879,-1.4287,0.1956,52.3494,-1.3945,0.1772,52.3524,-1.4302,0.292,52.3554,-1.4651,0.2747,52.3884,-1.5605,0.281,52.3783,-1.5256,0.2188,52.3803,-1.5503,0.3366,52.3514,-1.4477,0.2919,52.335,-1.4346,0.1428,52.1838,-1.1649,0.2319,52.1801,-1.1935,0.2549,52.1945,-1.1218,0.3356,52.2849,-1.1317,0.2525,52.2385,-1.0903,0.4003,52.3215,-1.2037,0.5331,52.4964,-1.2647,0.5632,52.5029,-1.3331,0.4285,52.4073,-1.2548,0.4106,52.3962,-1.3661,0.3994,52.4275,-1.4246,0.3701,52.3791,-1.3805,0.3912,52.4523,-1.4534,0.3667,52.3968,-1.4331,0.3421,52.4385,-1.5045,0.4306,52.4626,-1.4215,0.4158,52.5078,-1.4738,0.4557,52.5801,-1.6353,0.0425,52.571,-2.7811,0.1137,52.6021,-2.8388,0.0659,52.6217,-2.8332,0.0113,52.5317,-2.5528,0.0131,52.5242,-2.4799,0.0148,52.4998,-2.4166,0.0251,52.4586,-2.3619,0.1354,52.3618,-2.1746,0.151,52.3749,-2.2555,0.2119,52.3585,-2.1703,0.1185,52.4203,-2.1282,0.0648,52.4627,-2.1521,0.0648,52.4997,-2.115,0.164,52.4191,-2.0618,0.5017,52.5612,-1.6315,0.4055,52.5095,-1.8107,0.4673,52.5196,-1.7787,0.3195,52.3953,-1.9375,0.2678,52.3953,-1.9621,0.5589,52.4515,-1.8095,0.4899,52.444,-1.8535,0.5101,52.3919,-1.9009,0.2525,52.3969,-1.9911,0.5997,52.4653,-1.961,0.5248,52.3588,-1.978,0.5269,52.4408,-1.9986,0.658,52.4905,-1.9141,0.7134,52.5118,-1.8662,0.6775,52.4224,-1.8539,0.6279,52.4589,-1.765,0.6426,52.4287,-1.8118,0.6467,52.5345,-1.6642,0.5776,52.5197,-1.6775,0.602,52.4912,-1.7246,0.7827,52.6997,-1.6668,0.7872,52.7465,-1.6374,0.8559,52.7438,-1.6084,0.8627,52.5907,-1.5576,0.7926,52.5717,-1.5306,0.8016,52.5493,-1.5022,0.8447,52.502,-1.3758,0.7511,52.5043,-1.3665,0.7707,52.5065,-1.4245,0.8575,52.6647,-1.584,0.8407,52.6996,-1.6295,0.9819,52.6471,-1.5321,1.0076,52.6144,-1.484,0.973,52.6062,-1.5169,1.0415,52.7422,-1.5217,1.0479,52.6602,-1.5027,1.0878,52.6708,-1.4673,1.0642,52.6152,-1.4588,0.1601,52.7796,-1.4279,0.1348,52.7264,-1.464,0.0951,52.7648,-1.4365,0.0814,52.6465,-1.9919,0.349,52.8271,-1.6308,0.3632,52.7592,-1.6481,1.0988,52.6726,-1.4293,0.9963,52.5415,-1.3994,0.964,52.5631,-1.4617,0.9326,52.6317,-1.5551,0.8456,52.6281,-1.5842,0.9113,52.5092,-1.4292,0.7743,52.6534,-1.7014,0.6928,52.5069,-1.6694,0.7375,52.5672,-1.5472,0.615,52.4751,-1.7465,0.6724,52.4443,-1.7745,0.7056,52.4349,-1.8066,0.7624,52.4652,-1.7453,0.5848,52.4039,-1.9283,0.5734,52.4198,-1.8608,0.5227,52.3557,-1.9707,0.4385,52.3603,-1.9445,0.429,52.3406,-2.0275,0.4342,52.4237,-1.8883,0.2984,52.3364,-1.987,0.3867,52.567,-1.5527,0.3264,52.6131,-1.7457,0.3774,52.6913,-1.6657,0.3208,52.6948,-1.7204,0.0972,52.4088,-2.3065,0.1177,52.3836,-2.2373,0.0742,52.6855,-2.8475,0.3375,52.6233,-1.5502,0.4035,52.6104,-1.5854,0.3373,52.3847,-1.4985,0.3471,52.3617,-1.4456,0.5875,52.5103,-1.299,0.2321,52.3975,-1.0399,0.1573,52.3,-1.0302,0.2466,52.3217,-1.0575,0.0738,52.1893,-1.1512,0.3264,52.3738,-1.4979,0.0653,52.363,-1.4385,0.0698,52.3413,-1.5108,0.1593,52.3507,-1.4449,0.1566,52.3748,-1.4119,0.3108,52.2858,-1.3793,0.2069,52.2781,-1.2881,0.3204,52.2579,-1.3476,0.0647,52.4007,-1.5945,0.0,52.3586,-1.5938,0.0,52.4006,-1.5831,0.1338,52.4063,-1.595,1.0252,52.7865,-1.4769,0.8695,52.9273,-1.4639,0.6872,52.8097,-1.6305,0.3548,52.7838,-1.7687,0.5726,52.6829,-1.8048,0.5738,52.5858,-1.9038,0.6468,52.6114,-1.8559,0.433,52.4072,-2.0438,0.3401,52.719,-1.9227,0.2466,52.7222,-1.9712,0.1186,52.8192,-1.922,0.1014,52.7838,-2.0363,0.0,52.8389,-1.9124,0.2103,52.718,-2.0393,0.3459,52.6532,-2.005,0.2923,52.6357,-2.0749,0.1874,52.622,-2.2215,0.0647,52.7175,-2.4696,0.0877,52.6578,-2.462,0.4184,52.784,-1.4826,0.4225,52.8444,-1.5067,0.389,52.7602,-1.5067,0.5929,52.7696,-1.4441};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getc7_Coord_6_91_point_2()
		{
			double[] value = {0.6444,52.8413,-1.4305,0.6584,52.7936,-1.4382,0.7286,52.884,-1.4032,0.522,52.8564,-1.4551,0.8062,52.9707,-1.447,0.9291,52.6586,-1.3764,0.4943,52.5302,-1.21,0.4762,52.4836,-1.243,0.5031,52.5928,-1.1994,0.3153,52.5702,-1.0338,0.387,52.5185,-1.14,0.2417,52.622,-0.9705,0.2364,52.5463,-0.9749,0.5261,52.6875,-1.2798,0.3907,52.7269,-1.1569,0.2668,52.6811,-1.0893,0.1446,52.7571,-2.8124,0.1277,52.797,-2.7243,0.1746,52.2327,-1.2344,0.1332,52.2647,-1.2005,0.6311,52.6955,-1.4443,0.6157,52.7357,-1.4412,0.416,52.8428,-1.1451,0.4425,52.7949,-1.1188,0.4237,52.8599,-1.1291,0.3248,52.7961,-1.2952,0.3113,52.8087,-1.3304,0.1333,52.2919,-1.233,0.4692,52.4047,-1.3059,0.3424,52.2283,-1.1514,0.3818,52.8889,-1.289,0.4007,52.8921,-1.2717,0.3824,52.8719,-1.3446,0.4683,52.7762,-1.3595,0.4872,52.7692,-1.3004,0.3496,52.7364,-1.4926,0.372,52.7553,-1.4709,0.2247,52.7463,-1.4748,0.245,52.8005,-1.4446,0.3313,52.5808,-1.5424,0.3618,52.5874,-1.5591,0.4128,52.8929,-1.21,0.4229,52.8954,-1.215,0.8836,52.7571,-1.4195,1.0288,52.6673,-1.3778,0.9836,52.5988,-1.3531,0.2671,52.7319,-1.7897,0.1054,52.7118,-1.9488,0.1128,52.7416,-1.9446,0.0,52.7314,-1.9476,0.6846,52.9011,-1.4009,0.6174,52.9004,-1.405,0.6046,52.5578,-1.2751,0.551,52.578,-1.2276,0.5429,52.5435,-1.2428,0.146,52.597,-1.9533,0.155,52.6404,-1.9337,0.2598,52.6865,-1.7935,0.2535,52.4998,-1.9031,0.2798,52.5279,-1.8524,0.0916,52.4393,-2.1424,0.1827,52.781,-1.8962,0.2337,52.7962,-1.8487,0.0,52.8342,-1.9084,0.0,52.7787,-1.9267,0.1233,52.7828,-1.9237,0.2502,52.4534,-1.9402,0.19,52.8023,-1.8965,0.1365,52.8116,-1.9111,0.138,52.8136,-1.914,0.7074,52.5668,-1.5429,0.7129,52.5568,-1.5151,0.6501,52.5438,-1.3905,0.6057,52.5302,-1.403,0.7155,52.5838,-1.4016,0.7359,52.6346,-1.4309,0.7187,52.5906,-1.466,0.667,52.7477,-1.438,0.6417,52.5958,-1.3224,0.725,52.6126,-1.3639,0.7304,52.501,-1.3949,0.7179,52.5477,-1.6538,0.5729,52.5415,-1.4588,0.7426,52.6382,-1.3578,0.2613,52.3838,-1.9776,0.2413,52.405,-1.9807,0.6633,52.4954,-1.7072,0.772,52.4908,-1.7226,0.4141,52.3986,-2.051,0.1138,52.8053,-2.7226,0.2872,52.5033,-1.5545,0.3212,52.5415,-1.532,0.0443,52.7806,-2.6507,0.0,52.7692,-2.6466,0.1373,52.2082,-1.1811,0.4046,52.6751,-1.9387,0.3395,52.6862,-1.1578,0.3732,52.6638,-1.1142,0.2727,52.3818,-1.9715,0.3659,52.8971,-1.6299,0.8994,52.8354,-1.5433,-0.3173,52.757,-1.7019,-0.3015,52.6668,-1.5304,-0.9565,52.6968,-1.5372,-0.9326,52.6317,-1.557,-0.8627,52.5907,-1.5596,-0.715,52.5034,-1.4248,-0.6928,52.5069,-1.6713,-0.6633,52.4954,-1.7091,-0.6717,52.4758,-1.7274,-0.5848,52.4039,-1.93,-0.5227,52.3557,-1.9724,-0.429,52.3406,-2.0289,-0.6039,52.5567,-1.5825,-0.3869,52.361,-1.9543,-0.3774,52.3183,-2.0046,-0.2984,52.3364,-1.9881,-0.4055,52.5095,-1.8119,-0.4158,52.5078,-1.4751,-0.498,52.5452,-1.4828,-0.3867,52.567,-1.5538,-0.2541,52.5638,-1.8584,-0.1158,52.4801,-2.0686,-0.2119,52.3585,-2.171,-0.1185,52.4203,-2.1286,-0.0972,52.4088,-2.3067,-0.0738,52.5004,-2.4791,-0.1427,52.5967,-2.8428,-0.0742,52.6855,-2.8476,-0.366,52.4443,-1.8856,-0.335,52.445,-1.8941,-0.5378,52.5261,-1.4723,-0.3375,52.6233,-1.5512,-0.3618,52.5874,-1.5601,-0.4035,52.6104,-1.5865,-0.3373,52.3847,-1.4997,-0.3471,52.3617,-1.4469,-0.3748,52.3089,-1.3808,-0.6322,52.5113,-1.3234,-0.3249,52.3439,-1.1149,-0.2466,52.3217,-1.0618,-0.1573,52.3,-1.0342,-0.159,52.373,-1.0069,-0.249,52.174,-1.138,-0.0738,52.1893,-1.1517,-0.1398,52.3523,-1.5364,-0.0698,52.3413,-1.5111,-0.0653,52.363,-1.4387,-0.281,52.3783,-1.5266,-0.3204,52.2579,-1.3489,-0.2069,52.2781,-1.289,-0.077,52.3575,-1.5991,-0.1338,52.4063,-1.5955,-0.0663,52.4468,-1.5841,-0.8695,52.9273,-1.4649,-0.7223,53.0175,-1.4404,-0.5421,53.0174,-1.4768,-0.3396,52.8994,-1.6098,-0.5738,52.5858,-1.9053,-0.7868,52.5557,-1.7827,-0.5207,52.5518,-1.9427,-0.433,52.4072,-2.0451,-0.2466,52.7222,-1.9717,-0.3401,52.719,-1.9235,-0.1014,52.7838,-2.0365,-0.1186,52.8192,-1.9222,-0.2103,52.718,-2.0398,-0.2305,52.5935,-2.1561,-0.1874,52.622,-2.2219,-0.0647,52.7175,-2.4697,-0.0591,52.7287,-2.5433,-0.4349,52.7776,-1.4124,-0.4683,52.7762,-1.3605,-0.5929,52.7696,-1.4453,-0.7286,52.884,-1.4043,-0.8062,52.9707,-1.4479,-0.4762,52.4836,-1.2445,-0.4943,52.5302,-1.2114,-0.4568,52.6096,-1.1557,-0.4397,52.469,-1.2115,-0.2364,52.5335,-0.9848,-0.2309,52.465,-1.0143,-0.1537,52.4413,-0.9763,-0.309,52.486,-1.0741,-0.3041,52.6257,-1.0404,-0.5261,52.6875,-1.2811,-0.4552,52.796,-1.1206,-0.4339,52.8621,-1.1321,-0.0668,52.6307,-0.9321,-0.0604,52.6551,-0.9924,-0.4146,52.7459,-1.1569,-0.438,52.7375,-1.1304,-0.3592,52.7629,-1.213,-0.3837,52.7569,-1.1918,-0.1277,52.797,-2.7243,-0.1332,52.2647,-1.2018,-0.1746,52.2327,-1.2352,-0.6157,52.7357,-1.4425,-0.6311,52.6955,-1.4457,-0.4237,52.8599,-1.1299,-0.4425,52.7949,-1.1197,-0.3669,52.8804,-1.3279,-0.3818,52.8889,-1.2897,-0.3438,52.8215,-1.2985,-0.1333,52.2919,-1.2343,-0.474,52.4583,-1.2646,-0.4007,52.8921,-1.2724,-0.3939,52.8937,-1.2604,-0.372,52.7553,-1.4717,-0.2571,52.6841,-1.5163,-0.2987,52.6999,-1.5098,-0.9096,52.8161,-1.4131,-1.08,52.7551,-1.4167,-0.5443,52.9995,-1.4415,-0.1128,52.7416,-1.9449,-0.6846,52.9011,-1.4019,-0.3632,52.7592,-1.6489,-0.3774,52.6913,-1.6666,-0.328,52.6681,-1.5392,-0.7092,52.7476,-1.6747,-0.7743,52.6534,-1.7031,-0.562,52.6094,-1.261,-0.155,52.6404,-1.934,-0.146,52.597,-1.9536,-0.3208,52.6948,-1.7212,-0.164,52.4191,-2.0623,-0.1175,52.8156,-1.9182,-0.1365,52.8116,-1.9113,-0.1233,52.7828,-1.9239,-0.1827,52.781,-1.8966,-0.1866,52.8,-1.8932,-0.6501,52.5438,-1.3923,-0.7255,52.5653,-1.484,-0.7187,52.5906,-1.4678,-0.667,52.7477,-1.4393,-0.5624,52.6463,-1.3222,-0.6854,52.5787,-1.3598,-0.725,52.6126,-1.3657,-0.6975,52.5281,-1.4175,-0.7061,52.5151,-1.4249,-0.7179,52.5477,-1.6557,-0.7117,52.5626,-1.6177,-0.7426,52.6382,-1.3595,-0.2613,52.3838,-1.9785,-0.7605,52.4732,-1.722,-0.7624,52.4652,-1.7474,-0.7702,52.4705,-1.7498,-0.772,52.4908,-1.7247,-0.0443,52.7806,-2.6508,-0.0445,52.7544,-2.6088,-0.2319,52.1801,-1.1945,-0.1373,52.2082,-1.1818,-0.4404,52.7134,-1.8702,-0.3732,52.6638,-1.1166,-0.3907,52.7269,-1.1578,-0.3599,52.9031,-1.6281,-0.3518,52.8959,-1.6372,-0.8994,52.8354,-1.5446,-0.4168,52.7765,-1.1509,-0.3264,52.3738,-1.4991,-0.4359,52.3887,-2.0417,-0.7879,52.7915,-1.614,-0.3686,52.7435,-1.1904,-0.3212,52.5415,-1.533,-0.1831,52.7371,-1.4703,-0.1601,52.7796,-1.4283,-0.4306,52.4626,-1.4229,0.0,52.7642,-2.6021,-0.1224,52.7978,-2.7193,-0.1138,52.8053,-2.7226,-0.4141,52.3986,-2.0523,-0.7237,52.4912,-1.6846,-0.7333,52.6323,-1.372,-0.337,52.5445,-1.7938,-0.6584,52.5648,-1.5389,-0.6755,52.7147,-1.4408,-0.6504,52.5184,-1.4019,-0.3122,52.8737,-1.6788,-0.0916,52.4393,-2.1427,-0.2798,52.5279,-1.8532,-0.2598,52.6865,-1.7942,-0.0727,52.6003,-2.028,-0.3264,52.6131,-1.7466,-0.2822,52.7858,-1.347,-0.4872,52.7692,-1.3015,-0.0951,52.7648,-1.4367,-0.5405,52.6611,-1.3729,-0.3383,52.7769,-1.253,-0.2049,52.6726,-1.1012,-0.5149,52.6632,-1.2337,-0.2417,52.6026,-0.984,-0.1457,52.5264,-0.9458,-0.8523,52.5761,-1.3392,-0.7903,52.9568,-1.4134,-0.5358,52.8955,-1.439,-0.7863,52.848,-1.4043,-0.0877,52.6578,-2.4621,-0.1781,52.7145,-2.1273,-0.3459,52.6532,-2.0058,0.0,52.8189,-2.0281,-0.3945,52.5575,-2.0221,-0.3127,52.7782,-1.839,-0.5992,52.8076,-1.6422,-1.0252,52.7865,-1.4784,-1.0394,52.7931,-1.4528,-0.0647,52.4007,-1.5948,-0.3108,52.2858,-1.3806,-0.1234,52.3472,-1.4748,-0.2321,52.3975,-1.0466,-0.5875,52.5103,-1.3007,-0.1365,52.5379,-1.9945,-0.964,52.5631,-1.4638,-0.4385,52.3603,-1.946,-0.615,52.4751,-1.7483,-0.7551,52.5651,-1.5882,0.4359,52.3887,-2.0403,0.3686,52.7435,-1.1895,0.1831,52.7371,-1.4698,0.7702,52.4705,-1.7477,0.7605,52.4732,-1.7199,0.7333,52.6323,-1.3703,0.337,52.5445,-1.7928,0.6432,52.5852,-1.2913,0.6341,52.5619,-1.2903,0.6844,52.5863,-1.3068,0.7255,52.5653,-1.4821,0.1175,52.8156,-1.918,0.1866,52.8,-1.8929,0.0248,52.5496,-2.7218,0.2002,52.5275,-1.9455,0.0412,52.4401,-2.2864,0.0727,52.6003,-2.0278,0.7059,52.6934,-1.7238,0.3939,52.8937,-1.2597,0.1398,52.3523,-1.5358,0.2822,52.7858,-1.3463,0.3967,52.2561,-1.2255,0.474,52.4583,-1.2631,0.3869,52.8597,-1.2537,0.3383,52.7769,-1.2522,0.438,52.7375,-1.1294,0.4339,52.8621,-1.1313,0.4552,52.796,-1.1196,0.309,52.4862,-1.0676,0.4397,52.469,-1.2101,0.5358,52.8955,-1.4381,0.4349,52.7776,-1.4114,0.0774,52.7892,-2.6547,0.1781,52.7145,-2.127,0.4961,52.8132,-1.6459,0.5792,52.9551,-1.5169,0.0663,52.4468,-1.5839,0.077,52.3575,-1.5988,0.125,52.32,-1.2995,0.1234,52.3472,-1.4743,0.1506,52.1646,-1.1011,0.249,52.174,-1.1369,0.159,52.3734,-1.001,0.3249,52.3439,-1.1126,0.3748,52.3089,-1.3793,0.335,52.445,-1.8931,0.366,52.4443,-1.8845,0.0738,52.5004,-2.479,0.3927,52.6503,-1.6752,0.4334,52.5894,-1.5802,0.4457,52.3173,-2.0018,0.9565,52.6968,-1.5355,0.1331,52.619,-1.5194,0.1998,52.6568,-1.5168,0.8244,52.4942,-1.4216,0.7083,52.4376,-1.8155,0.5897,52.4079,-1.935,0.4627,52.5586,-1.6989,0.0201,52.5396,-2.6335,0.0847,52.5649,-2.7505,0.4167,52.6065,-1.6341,0.2446,52.169,-1.1504,0.2252,52.3763,-1.5878,0.2082,52.6338,-1.8887,0.1464,52.7077,-2.2053,0.0539,52.7384,-2.3847,0.7715,52.7263,-1.401,0.5443,52.9995,-1.4407,0.4534,52.7357,-1.1294,0.4013,52.861,-1.2115,0.3419,52.8369,-1.3169,0.0626,52.7235,-1.345,0.0683,52.7264,-1.3499,0.0,52.7521,-1.434,0.0566,52.6004,-0.9233,0.1378,52.5433,-1.5545,0.4944,52.5418,-1.5599,0.685,52.5124,-1.3455,0.7664,52.9136,-1.3971,0.4411,52.9108,-1.5088,0.3925,52.6532,-1.62,0.3023,52.5474,-1.8208,0.6323,52.5632,-1.5333,0.7788,52.5227,-1.464,0.574,52.667,-1.4126,0.6432,52.5643,-1.3714,0.5907,52.5665,-1.4326,0.3069,52.5042,-1.8449,0.0809,52.7907,-2.6591,0.3874,52.2142,-1.241,0.3771,52.2064,-1.2475,0.3879,52.219,-1.2499,-0.6724,52.4443,-1.7764,-0.7083,52.4376,-1.8175,-0.5589,52.4515,-1.8112,-0.0648,52.4997,-2.1151,-0.4032,52.3135,-1.313,-0.2525,52.2385,-1.0918,-0.0663,52.3176,-1.2879,-0.0885,52.7696,-2.1292,-0.0539,52.7384,-2.3848,-0.1101,52.64,-2.3792,-0.1119,52.5626,-2.4637,-0.1226,52.5434,-2.3913,-0.8362,52.7018,-1.392,0.0,52.4352,-0.9653,-0.4534,52.7357,-1.1304,-0.3321,52.3781,-2.0166,-0.2927,52.3338,-1.9955,-0.3678,52.3168,-2.0133,-0.2517,52.7363,-1.3125,-0.4011,52.2943,-1.2844,-0.4229,52.8954,-1.2157,-0.0741,52.6089,-1.5069,-0.1378,52.5433,-1.5549,-0.5176,52.5436,-1.6776,-0.1736,52.7441,-1.9122,-0.3925,52.6532,-1.6211,-0.3023,52.5474,-1.8217,-0.7788,52.5227,-1.4661,-0.574,52.667,-1.414,-0.5933,52.5454,-1.4485,-0.5832,52.5249,-1.4245,-0.2775,52.4511,-1.9143,-0.383,52.5299,-1.5314,-0.3879,52.219,-1.2515,-0.3771,52.2064,-1.2491,-0.3874,52.2142,-1.2426,-0.2248,52.384,-1.5977,-0.3572,52.5554,-1.5374,-0.2806,52.3994,-1.568,-0.3823,52.2561,-1.3406,-0.3929,52.2645,-1.3351,-0.0817,52.7085,-2.382,-0.1337,52.7621,-2.8196,-0.5469,52.4776,-1.7807,-0.4342,52.4237,-1.8897,-0.4199,52.4666,-1.8509,-0.5197,52.5396,-1.6853,-0.7056,52.4349,-1.8086,-0.6612,52.5598,-1.606,-0.6195,52.5905,-1.4866,-0.5988,52.6417,-1.4525,-0.5939,52.5858,-1.4611,-0.5975,52.5659,-1.476,-0.0612,52.7915,-2.7491,0.0,52.7535,-2.8257,-0.0712,52.7581,-2.8207,0.0,52.7761,-2.7807,-0.0681,52.5418,-2.079,-0.4167,52.6065,-1.6353,-0.3927,52.6503,-1.6762,-0.9182,52.7194,-1.4185,-0.4786,52.4818,-1.8188,-0.2287,52.4354,-1.5962,-0.0763,52.5326,-1.5437,-0.2985,52.8345,-1.3903,-0.3536,52.793,-1.4372,-0.4128,52.8929,-1.2107,-0.6433,53.0103,-1.4099,0.0,52.6988,-1.2939,-0.0654,52.7028,-1.288,-0.1321,52.6811,-1.1948,-0.212,52.6898,-1.1829,0.0,52.6393,-0.9318,0.0,52.6571,-0.994,-0.2938,52.6416,-1.0466,-0.0554,52.5241,-0.9412,-0.3134,52.4213,-1.1006,-1.0966,52.7485,-1.4452,-1.0988,52.6726,-1.4311,-0.6996,52.9317,-1.3927,-0.6151,52.9227,-1.4028,-0.7124,53.0,-1.4053,-0.3745,52.8109,-1.421,-0.4002,52.8362,-1.3747,-0.0443,52.7843,-2.6732,0.0,52.7581,-2.485,-0.0466,52.739,-2.5406,-0.0515,52.7312,-2.4731,0.0,52.7592,-2.5584,-0.1279,52.6342,-2.3238,-0.2057,52.4964,-2.2364,-0.2499,52.4503,-2.1659,-0.6868,52.8766,-1.5871,-0.5935,52.8742,-1.5857,0.0,52.6099,-2.0516,-0.067,52.2949,-1.2289,-0.0683,52.2545,-1.1835,0.0,52.2056,-1.1642,0.0,52.2607,-1.1862,-0.0685,52.2094,-1.1666,-0.3366,52.3514,-1.449,-0.3361,52.1751,-1.2041,-0.0625,52.2145,-1.0573,0.0,52.275,-1.0318,-0.0653,52.2858,-1.0327,0.0,52.2142,-1.0548,-0.1553,52.2204,-1.0665,-0.5349,52.5037,-1.7499,0.3572,52.5554,-1.5363,0.2806,52.3994,-1.567,0.3823,52.2561,-1.339,0.3929,52.2645,-1.3335,0.0466,52.739,-2.5405,0.5469,52.4776,-1.7791,0.4786,52.4818,-1.8174,0.6396,52.6497,-1.4668,0.5975,52.5659,-1.4743,0.5939,52.5858,-1.4595,0.0,52.7766,-2.6915,0.0443,52.7843,-2.6731,0.3945,52.7743,-1.4492,0.1365,52.5379,-1.9941,0.0681,52.5418,-2.0788,0.6996,52.9317,-1.3917,0.7124,53.0,-1.4045,0.4199,52.4666,-1.8496,0.5349,52.5037,-1.7483,0.0,52.5214,-1.5364,0.0763,52.5326,-1.5435,0.0,52.4444,-1.5712,0.2985,52.8345,-1.3896,0.3536,52.793,-1.4364,0.1901,52.7867,-1.4143,0.2174,52.7975,-1.4199,0.157,52.7434,-1.348,0.1542,52.7322,-1.3253,0.0659,52.6796,-1.2007,0.0649,52.6715,-1.1148,0.1321,52.6827,-1.1914,0.0654,52.7028,-1.2871,0.212,52.6911,-1.1788,0.0604,52.6666,-0.9873,0.2938,52.6504,-1.0371,0.1457,52.5429,-0.939,0.0554,52.5318,-0.9392,0.1537,52.448,-0.9716,0.0625,52.4391,-0.9663,0.2309,52.4693,-1.0072,0.8362,52.7018,-1.3904,0.9182,52.7194,-1.4168,0.6433,53.0103,-1.4091,0.6151,52.9227,-1.4018,0.4002,52.8362,-1.3739,0.1226,52.5434,-2.391,0.0753,52.4754,-2.4129,0.1119,52.5626,-2.4635,0.1101,52.64,-2.379,0.1505,52.5271,-2.331,0.2057,52.4964,-2.2358,0.1279,52.6342,-2.3236,0.2499,52.4503,-2.1652,0.6868,52.8766,-1.5861,0.5935,52.8742,-1.5847,0.067,52.2949,-1.228,0.0683,52.2545,-1.1826,0.0685,52.2094,-1.166,0.3643,52.2999,-1.3843,0.0,52.1892,-1.1505,0.0,52.1526,-1.1148,0.0598,52.3551,-1.001,0.0653,52.2858,-1.0307,0.1553,52.2204,-1.0646,0.0,52.5471,-2.0985,0.5197,52.5396,-1.6838,0.6612,52.5598,-1.6042,0.2116,52.6812,-1.8745,0.6039,52.5567,-1.5808,0.5764,52.5241,-1.6688,0.5419,52.5459,-1.6091,0.5176,52.5436,-1.6761,0.1158,52.4801,-2.0683,0.0842,52.4237,-2.3553,0.0,52.6379,-2.8292,0.3408,52.1796,-1.1903,0.0625,52.2145,-1.0562,0.0,52.1561,-1.1016,0.2287,52.4354,-1.5954,0.0817,52.7085,-2.3819,0.0515,52.7312,-2.473,0.7223,53.0175,-1.4396,0.2329,52.6402,-0.977,0.0652,52.6745,-1.0489,0.1483,52.7094,-1.278,0.2355,52.7122,-1.2649,0.1582,52.781,-1.4085,0.581,52.5634,-1.4921,0.3069,52.8357,-1.4059,0.3745,52.8109,-1.4202,0.0612,52.7915,-2.7491,0.6195,52.5905,-1.485,0.5988,52.6417,-1.451,0.5952,52.5869,-1.3689,0.6749,52.4183,-1.8451,0.9873,52.7717,-1.5322,0.1337,52.7621,-2.8195,-0.2116,52.6812,-1.875,-1.0922,52.7404,-1.4845,-0.9873,52.7717,-1.5337,-0.0753,52.4754,-2.413,-0.0842,52.4237,-2.3555,-0.3408,52.1796,-1.1918,-0.3643,52.2999,-1.3857,0.0,52.3004,-1.2347,0.0,52.3171,-1.2916,0.0,52.3408,-1.3639,-0.0652,52.6653,-1.0504,-0.0649,52.6657,-1.1153,-0.1483,52.7094,-1.2794,-0.2355,52.7122,-1.2661,-0.1542,52.7322,-1.3257,-0.157,52.7434,-1.3484,-0.1582,52.781,-1.4089,-0.5729,52.5415,-1.4605,-0.581,52.5634,-1.4937,-0.2329,52.6194,-0.9904,0.0,52.7038,-2.8497,-0.5952,52.5869,-1.3705,-0.6749,52.4183,-1.8471,-0.3069,52.8357,-1.4065,0.0,52.5896,-0.9309,0.0,52.3404,-1.5162,0.0,52.3585,-1.438,-0.1505,52.5271,-2.3313,-0.0659,52.6784,-1.2026,0.0,52.675,-1.2099,0.0,52.6658,-1.1253,0.0,52.5271,-0.9394,0.3361,52.1751,-1.2027,0.0712,52.7581,-2.8207,0.3134,52.4213,-1.0959,0.0,52.6642,-1.0569};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_92_vector_1()
		{
			double[] value = {-0.9965,-0.0825,-0.0151,-0.9832,0.1825,-0.0069,-0.9828,0.107,0.1507,-0.9784,-0.1988,-0.0568,-0.9773,-0.1471,-0.1521,-0.9746,-0.2217,-0.0307,-0.9742,-0.2256,-0.0017,-0.9663,-0.0917,-0.2407,-0.9629,0.2636,0.0571,-0.9543,-0.1515,0.2575,-0.9533,-0.013,0.3017,-0.9531,0.2993,-0.0444,-0.9529,-0.2109,0.2179,-0.9479,-0.0815,0.3079,-0.9408,0.3156,0.1238,-0.9403,0.0492,0.3368,-0.938,0.1717,-0.3012,-0.9359,0.2832,-0.2095,-0.9355,-0.1457,-0.3218,-0.9355,-0.23,0.2682,-0.9316,0.1997,0.3037,-0.9214,0.3865,0.0411,-0.9208,0.1656,-0.3532,-0.9206,0.278,0.2742,-0.9172,-0.3884,-0.0889,-0.9157,0.3014,-0.2658,-0.9123,-0.4094,-0.0116,-0.9111,-0.1296,0.3914,-0.9109,0.038,0.411,-0.9089,0.0432,-0.4148,-0.908,0.2837,0.3084,-0.9067,0.2907,0.3057,-0.905,0.2669,0.3311,-0.9037,-0.0209,0.4276,-0.9031,-0.2367,0.3582,-0.8996,0.339,0.2752,-0.8983,0.0344,0.438,-0.8981,0.1255,0.4215,-0.8976,-0.0689,0.4354,-0.8963,-0.2516,0.3652,-0.8959,-0.4438,-0.0211,-0.8904,0.4063,0.2052,-0.8904,-0.0018,0.4553,-0.889,-0.0783,0.4511,-0.8878,0.4568,0.057,-0.8852,0.4465,0.1304,-0.8813,0.0861,0.4646,-0.8803,-0.0319,0.4734,-0.878,0.3148,-0.3605,-0.8755,0.4074,0.2599,-0.8747,-0.444,-0.1942,-0.8725,0.4573,-0.172,-0.8703,-0.1402,0.4722,-0.8661,-0.0854,-0.4925,-0.8661,0.016,0.4996,-0.8652,0.4506,-0.2201,-0.8647,-0.3488,-0.3614,-0.8638,0.4824,0.1453,-0.8628,0.2834,0.4187,-0.8611,-0.3378,0.38,-0.8599,0.1453,0.4894,-0.8582,0.4401,0.2644,-0.8567,0.269,-0.4402,-0.8484,-0.526,0.06,-0.847,-0.4524,-0.2791,-0.8456,0.5326,0.036,-0.8451,0.2346,0.4803,-0.8448,-0.2265,-0.4847,-0.8435,0.4855,0.2297,-0.8417,0.0699,0.5354,-0.8398,-0.0348,-0.5417,-0.8397,0.4346,0.3255,-0.837,-0.1124,0.5356,-0.8354,0.5372,-0.1167,-0.8347,-0.272,-0.4787,-0.8331,-0.5478,-0.077,-0.8323,-0.3603,-0.4212,-0.8317,0.3287,-0.4475,-0.8293,0.5587,-0.011,-0.8291,0.203,-0.521,-0.8288,-0.1891,-0.5267,-0.8255,0.4778,-0.3004,-0.8242,-0.0614,0.5629,-0.8229,0.4055,0.398,-0.8214,0.5697,-0.0276,-0.8143,-0.5803,-0.0114,-0.8118,-0.4443,-0.3791,-0.8082,0.5743,-0.1302,-0.8034,-0.4228,-0.4192,-0.8029,0.2875,-0.5221,-0.8005,-0.0669,-0.5956,-0.8,-0.1798,0.5724,-0.7984,0.5423,-0.2617,-0.7948,-0.4453,0.4124,-0.7941,0.5939,0.1293,-0.784,-0.4836,-0.3893,-0.7836,-0.0441,0.6198,-0.7812,0.4742,0.406,-0.7789,-0.4331,0.4536,-0.7783,0.5024,-0.3765,-0.7755,-0.0399,0.6301,-0.7728,0.5655,0.2882,-0.7717,-0.2113,0.5999,-0.7693,-0.3862,-0.5089,-0.7665,0.1258,0.6298,-0.7633,0.5549,-0.331,-0.7613,0.1745,-0.6245,-0.7607,0.6491,-0.0055,-0.7607,-0.1781,-0.6242,-0.7591,-0.1335,0.6371,-0.759,0.6372,0.1337,-0.7588,-0.2626,0.596,-0.7588,-0.5125,0.4019,-0.7569,0.1635,0.6328,-0.7555,0.0732,0.6511,-0.7554,-0.4098,0.5113,-0.7552,-0.6362,0.1578,-0.7541,0.6257,0.1994,-0.7518,0.2653,0.6036,-0.7506,0.6038,0.2684,-0.7479,-0.6512,0.1286,-0.745,-0.6661,-0.0359,-0.7432,-0.516,0.4259,-0.7432,-0.0455,0.6675,-0.7422,-0.6443,0.1845,-0.7351,0.0365,0.677,-0.734,-0.5891,-0.3378,-0.7335,0.6732,0.0935,-0.7298,0.4214,-0.5383,-0.7283,-0.3529,0.5875,-0.7256,0.6844,-0.0716,-0.7159,-0.0818,-0.6934,-0.7159,0.3651,-0.5952,-0.7121,0.5174,0.4747,-0.7093,0.0206,-0.7046,-0.7089,-0.7038,-0.0454,-0.7076,-0.251,0.6605,-0.706,-0.5059,0.4956,-0.7042,-0.197,0.6821,-0.7039,-0.2915,0.6477,-0.7032,-0.7076,-0.0696,-0.7022,0.5846,0.4064,-0.6984,0.5896,0.4057,-0.6982,0.7107,-0.0859,-0.6967,0.3238,0.6402,-0.6951,0.5387,0.476,-0.6929,-0.6521,-0.3076,-0.6912,0.6438,-0.3281,-0.6895,-0.3978,0.6052,-0.6881,-0.3959,0.608,-0.6879,-0.3156,0.6536,-0.6876,-0.633,0.3557,-0.6863,-0.4496,0.5718,-0.6846,-0.3812,0.6213,-0.6843,0.5966,0.4193,-0.6836,0.426,0.5926,-0.6814,-0.585,0.4398,-0.6811,-0.5596,0.4722,-0.6793,0.4679,0.5654,-0.6783,-0.6299,-0.3782,-0.6763,0.5803,0.4537,-0.676,0.1961,0.7103,-0.6752,0.5836,-0.4511,-0.6752,0.5075,0.5353,-0.6693,0.6496,-0.3606,-0.6682,-0.2896,0.6853,-0.6677,-0.4802,0.5689,-0.6675,-0.3955,0.6309,-0.667,-0.2574,0.6992,-0.6664,-0.1056,0.7381,-0.666,0.5822,0.4663,-0.6645,-0.5105,0.5457,-0.6631,0.4731,0.58,-0.662,0.6854,-0.3032,-0.6619,-0.7439,0.0925,-0.6607,-0.411,0.6281,-0.66,-0.7489,0.0598,-0.6597,-0.1526,0.7358,-0.6595,-0.1929,0.7266,-0.6552,-0.2398,-0.7164,-0.6537,0.5719,0.4956,-0.6535,-0.4117,0.6351,-0.6531,-0.441,0.6156,-0.6518,-0.6346,0.4153,-0.651,-0.1601,-0.742,-0.6476,0.1151,0.7532,-0.6475,-0.5042,-0.5714,-0.6468,-0.4374,0.6247,-0.6462,-0.2967,0.7031,-0.6462,-0.08,0.759,-0.6457,0.2147,0.7328,-0.6426,-0.5508,0.5326,-0.6425,-0.6081,-0.4663,-0.6419,-0.3315,0.6914,-0.6411,-0.7046,0.3043,-0.6409,-0.7193,-0.2681,-0.6403,-0.426,0.6392,-0.6371,-0.1432,-0.7574,-0.6371,-0.0551,0.7688,-0.6367,-0.4455,0.6294,-0.6357,-0.6324,-0.4427,-0.6354,0.6065,0.4779,-0.6354,-0.436,0.6373,-0.6354,-0.1684,0.7536,-0.6352,-0.768,0.0815,-0.6349,-0.4694,-0.6137,-0.6339,-0.6445,-0.4276,-0.6338,0.3055,-0.7106,-0.6309,0.5066,-0.5877,-0.6294,-0.2345,0.7408,-0.6294,-0.157,0.761,-0.6284,-0.543,0.557,-0.6272,0.5043,-0.5936,-0.623,0.2381,-0.7451,-0.6179,-0.551,-0.5609,-0.6179,0.402,-0.6757,-0.6175,0.0455,-0.7852,-0.6174,-0.4522,0.6437,-0.6165,0.0597,0.7851,-0.6163,0.7813,0.0987,-0.6158,0.6584,0.4329,-0.6123,-0.2462,0.7513,-0.6119,-0.0877,0.7861,-0.6108,-0.292,-0.736,-0.6104,0.3893,0.6898,-0.6104,0.0557,0.7901,-0.6103,-0.5778,-0.5419,-0.6093,0.7853,0.1092,-0.6038,-0.4549,0.6546,-0.6038,0.797,-0.0115,-0.6038,-0.0506,0.7956,-0.6026,0.0702,0.7949,-0.6024,-0.5655,-0.5633,-0.5978,0.7865,-0.1551,-0.5972,0.2168,-0.7723,-0.5971,-0.4137,0.6872,-0.5952,0.6924,0.4079,-0.5946,-0.295,-0.7479,-0.5929,0.0463,0.804,-0.5916,0.27,-0.7597,-0.5874,-0.3406,0.7342,-0.5869,0.4785,0.6531,-0.5849,0.583,-0.5639,-0.5774,0.8105,0.0984,-0.5773,-0.8128,-0.0777,-0.5772,-0.4868,0.6557,-0.577,-0.4429,-0.6862,-0.576,0.8117,-0.0968,-0.5758,-0.6296,0.5216,-0.5744,0.8174,0.044,-0.5717,0.8194,-0.0433,-0.5706,0.8052,0.1616,-0.5674,0.8169,-0.1032,-0.5643,-0.2161,0.7967,-0.5632,-0.0756,-0.8229,-0.5629,-0.6037,-0.5645,-0.5599,0.0838,0.8243,-0.5599,0.7574,-0.3359,-0.5587,-0.7325,0.389,-0.5581,-0.8124,0.1689,-0.5577,-0.3523,0.7516,-0.557,0.3298,0.7622,-0.557,0.2829,-0.7808,-0.5525,-0.7716,-0.3152,-0.5523,0.6737,-0.4909,-0.5498,0.0501,-0.8338,-0.5493,0.0172,0.8355,-0.5484,0.0516,-0.8346,-0.5478,-0.2106,0.8097,-0.5456,-0.8269,-0.1361,-0.5436,-0.5002,0.674,-0.5433,-0.8137,-0.2067,-0.5411,0.7755,0.3252,-0.5408,-0.2027,0.8164,-0.5402,-0.5822,-0.6076,-0.5402,-0.2116,0.8145,-0.54,-0.5199,0.6619,-0.5387,-0.1346,0.8316,-0.5361,-0.3433,-0.7712,-0.536,0.213,0.8169,-0.5348,-0.3896,0.7498,-0.5342,-0.8447,-0.0349,-0.5339,-0.5597,-0.6338,-0.5331,-0.6748,0.5103,-0.5324,-0.71,0.4609,-0.5317,-0.5524,0.642,-0.5232,-0.4228,0.7399,-0.523,0.8375,0.1582,-0.5212,0.0226,0.8531,-0.5203,0.848,0.1006,-0.5184,-0.8485,-0.1061,-0.5158,0.2085,-0.8309,-0.5141,-0.4341,0.7397,-0.5124,-0.1612,0.8435,-0.5117,-0.491,0.7051,-0.5114,-0.1712,0.8421,-0.5079,0.6888,-0.5173,-0.5076,-0.8614,0.0197,-0.5056,0.3813,-0.7739,-0.5033,0.1844,0.8442,-0.5029,-0.2869,-0.8153,-0.5017,-0.7239,-0.4736,-0.5015,0.5899,-0.6329,-0.501,0.6126,-0.6113,-0.5007,0.0027,0.8656,-0.4991,0.5789,0.6448,-0.4984,-0.5476,0.6721,-0.4984,0.744,0.4451,-0.4982,0.4638,0.7326,-0.4962,0.8471,-0.1904,-0.4952,-0.4794,-0.7245,-0.4951,-0.7519,-0.4354,-0.4926,-0.0557,0.8685,-0.4923,0.4473,0.7467,-0.4919,-0.5957,0.635,-0.4911,-0.2593,0.8316,-0.491,-0.7158,-0.4965,-0.49,0.2083,-0.8465,-0.4899,-0.7811,-0.3871,-0.4893,0.4324,-0.7574,-0.488,-0.549,0.6786,-0.4875,-0.8667,-0.1057,-0.487,0.5458,0.6819,-0.4839,0.6277,-0.6098,-0.4822,-0.1913,0.8549,-0.4819,-0.5864,0.651,-0.4792,0.2653,-0.8367,-0.4767,0.4678,0.7442,-0.4728,0.3147,-0.823,-0.4695,-0.3914,0.7915,-0.4694,-0.5654,0.6782,-0.4666,0.4183,0.7793,-0.4654,-0.8355,-0.2922,-0.4627,0.5914,0.6604,-0.4625,0.6134,-0.6402,-0.4615,-0.814,-0.3527,-0.4608,-0.8746,0.1506,-0.4592,-0.6464,-0.6093,-0.4581,-0.176,0.8713,-0.4578,-0.7749,-0.4358,-0.4577,0.1923,-0.8681,-0.4553,0.1013,-0.8845,-0.4533,-0.8107,0.3706,-0.4522,0.8029,-0.3883,-0.4516,-0.8824,0.1323,-0.4512,-0.211,0.8671,-0.4481,0.5943,-0.6678,-0.4476,-0.894,-0.0196,-0.4475,-0.8471,-0.2866,-0.447,-0.0775,0.8912,-0.447,-0.4355,0.7814,-0.4459,-0.3215,0.8353,-0.4435,-0.2283,-0.8667,-0.4434,-0.4049,0.7997,-0.441,0.4238,-0.7912,-0.4404,0.7944,0.4183,-0.4387,-0.1851,0.8794,-0.4366,0.1229,-0.8912,-0.4358,-0.5521,0.7108,-0.4353,-0.8952,0.0957,-0.4318,-0.7756,0.4604,-0.4314,0.6012,-0.6727,-0.4301,0.8752,-0.2215,-0.4289,0.6669,0.6093,-0.426,-0.6961,-0.5779,-0.426,0.6151,-0.6635,-0.4252,0.5161,0.7436,-0.425,-0.7765,-0.4651,-0.4249,0.1,-0.8997,-0.424,-0.88,-0.2139,-0.4213,0.7688,-0.4811,-0.4205,0.907,-0.0208,-0.4192,-0.4782,-0.7717,-0.4186,0.5897,0.6907,-0.4174,0.8409,0.3444,-0.4131,-0.1755,0.8936,-0.4105,-0.5935,-0.6923,-0.4099,-0.8537,-0.3212,-0.4096,-0.7819,-0.4699,-0.407,-0.6317,-0.6598,-0.4057,-0.5393,0.7379,-0.4019,0.6016,-0.6903,-0.4019,0.7772,0.4841,-0.401,-0.2365,-0.885,-0.3986,0.2515,-0.882,-0.398,-0.2878,-0.8711,-0.3966,0.7642,-0.5086,-0.3963,-0.9041,0.1596,-0.3954,-0.3877,0.8326,-0.3947,-0.0119,-0.9187,-0.3937,-0.7951,-0.4614,-0.3926,-0.6162,0.6827,-0.3913,-0.7158,-0.5784,-0.3896,-0.4859,-0.7823,-0.3888,0.9173,0.086,-0.3877,-0.7608,-0.5204,-0.387,-0.9026,0.1885,-0.3869,-0.909,-0.1552,-0.3864,0.5189,0.7625,-0.3859,0.0699,-0.9199,-0.3857,-0.5702,0.7253,-0.3825,0.8904,-0.2467,-0.3824,-0.6695,-0.6369,-0.3819,-0.7707,0.51,-0.3758,-0.8276,-0.4169,-0.3756,-0.7446,-0.5517,-0.372,-0.9246,0.0823,-0.3714,-0.096,-0.9235,-0.3678,-0.8905,0.2677,-0.3646,-0.502,-0.7843,-0.3636,-0.055,0.9299,-0.36,-0.8327,0.4207,-0.3595,0.2925,-0.8861,-0.3587,-0.8195,-0.447,-0.3579,-0.7209,0.5935,-0.3576,-0.8955,-0.2651,-0.3571,0.8054,-0.473,-0.3562,-0.3497,-0.8665,-0.3562,-0.8584,0.3693,-0.352,-0.8183,0.4544,-0.3519,-0.8951,-0.2739,-0.3514,-0.8141,0.4624,-0.3504,0.5337,0.7697,-0.3494,-0.9367,-0.0221,-0.3488,0.3998,-0.8476,-0.3476,0.7669,-0.5394,-0.3457,-0.021,0.9381,-0.345,-0.8343,-0.43,-0.3435,0.4899,-0.8013,-0.3415,0.7298,-0.5922,-0.3406,0.8669,0.3639,-0.3403,0.6555,0.6742,-0.3363,-0.7578,-0.5592,-0.3347,0.3089,-0.8903,-0.3335,0.4388,0.8344,-0.3316,-0.8848,-0.3273,-0.3306,0.5299,0.781,-0.3303,0.8786,-0.3448,-0.3293,-0.1187,0.9367,-0.3292,0.8106,-0.4842,-0.3282,-0.9312,0.1587,-0.327,0.8282,-0.4551,-0.3261,-0.4788,0.8151,-0.3253,0.6916,0.6449,-0.3241,0.383,-0.865,-0.3219,0.9414,-0.1009,-0.3203,-0.8762,0.3602,-0.3169,-0.777,0.544,-0.314,0.8657,-0.3899,-0.3136,-0.723,0.6156,-0.3129,0.4287,-0.8475,-0.3127,0.7362,0.6001,-0.311,-0.9361,-0.1644,-0.3102,-0.8934,-0.325,-0.3089,-0.7951,-0.5219,-0.3088,-0.7862,0.5353,-0.3088,0.2058,0.9286,-0.3087,0.8626,-0.4008,-0.3086,0.6795,-0.6656,-0.3069,-0.7995,0.5164,-0.3065,0.8187,-0.4855,-0.3062,0.8285,-0.4689,-0.3005,-0.3529,0.8861,-0.3002,-0.3287,0.8955,-0.2999,-0.9534,0.0332,-0.2979,-0.2914,-0.909,-0.2974,0.9531,-0.0566,-0.2958,-0.9003,-0.3194,-0.2944,0.0529,-0.9542,-0.2936,0.6692,-0.6826,-0.2926,0.4039,-0.8667,-0.2925,0.746,-0.5983,-0.2907,-0.8629,0.4133,-0.29,0.6127,0.7352,-0.2857,-0.7198,0.6327,-0.2854,0.783,-0.5527,-0.2852,0.2234,0.9321,-0.285,-0.0917,0.9541,-0.2847,-0.8134,-0.5073,-0.2842,-0.6995,0.6557,-0.2842,-0.7984,-0.5309,-0.2832,0.5854,-0.7597,-0.2831,0.5221,-0.8045,-0.2827,-0.8947,-0.3458,-0.2824,-0.7353,0.6161,-0.2818,-0.4965,-0.821,-0.2815,-0.9517,-0.1225,-0.2786,-0.9549,-0.1027,-0.2783,-0.7687,0.5759,-0.2766,-0.8559,-0.437,-0.2746,-0.3645,-0.8898,-0.2736,-0.9514,0.1416,-0.2734,0.6234,0.7325,-0.2727,0.5707,-0.7745,-0.2726,-0.8659,-0.4194,-0.2715,0.0542,0.9609,-0.2708,-0.9618,0.0395,-0.268,-0.5137,-0.8151,-0.2671,0.8028,-0.533,-0.264,0.8497,0.4564,-0.2617,-0.9193,-0.294,-0.2617,-0.1061,-0.9593,-0.259,-0.8624,0.435,-0.2561,0.0268,0.9663,-0.2544,-0.7107,0.6559,-0.2542,0.9544,0.1567,-0.2528,0.369,-0.8944,-0.2528,0.522,-0.8147,-0.2527,0.4199,-0.8717,-0.2494,0.893,-0.3747,-0.2488,-0.955,0.1616,-0.2468,-0.8415,-0.4807,-0.2455,-0.871,-0.4256,-0.2451,0.0905,-0.9653,-0.2448,-0.3636,0.8988,-0.2447,-0.0167,0.9695,-0.2443,0.3989,-0.8839,-0.244,0.3834,0.8907,-0.2426,0.6243,0.7426,-0.2426,0.6842,-0.6878,-0.2417,0.1665,0.956,-0.2395,0.5103,-0.826,-0.2386,-0.2944,0.9254,-0.2372,0.4867,-0.8407,-0.2359,-0.2203,0.9465,-0.2339,0.8271,-0.511,-0.233,0.9544,-0.1864,-0.2329,0.5066,-0.8301,-0.2329,0.5488,-0.8029,-0.232,-0.8094,0.5395,-0.2303,-0.2415,0.9427,-0.2291,0.9687,0.0958,-0.2285,-0.222,0.9479,-0.2276,-0.7933,-0.5647,-0.2251,0.6475,0.728,-0.2251,-0.9716,-0.0728,-0.225,-0.8237,0.5205,-0.2242,0.9682,0.111,-0.2238,-0.9176,-0.3285,-0.2237,0.8656,-0.4479,-0.2232,0.2665,0.9376,-0.2226,-0.7333,-0.6424,-0.2198,0.0611,-0.9736,-0.2196,0.5379,-0.8139,-0.2185,0.6881,-0.6919,-0.2159,-0.6986,-0.6821,-0.2159,0.9716,0.0964,-0.2158,0.5346,-0.8171,-0.2151,0.94,0.2648,-0.2123,-0.4754,-0.8538,-0.2112,0.9676,0.138,-0.2107,0.8367,-0.5056,-0.21,-0.9684,-0.1345,-0.2099,-0.5347,0.8186,-0.2095,-0.3549,0.9111,-0.2091,0.9415,0.2643,-0.2062,-0.4523,0.8677,-0.2014,-0.6797,0.7053,-0.201,0.9438,0.2622,-0.1993,0.5391,-0.8183,-0.1987,0.9157,0.3493,-0.1979,-0.0931,-0.9758,-0.1969,-0.2306,-0.9529,-0.1964,0.9803,0.0188,-0.1962,-0.8322,0.5185,-0.1955,0.5887,-0.7843,-0.1954,-0.4106,-0.8906,-0.1946,-0.4648,-0.8638,-0.1943,-0.9759,0.099,-0.1938,-0.2902,0.9371,-0.1934,0.4533,-0.8701,-0.1934,-0.8089,0.5552,-0.1926,-0.8776,-0.4391,-0.1922,-0.4247,0.8847,-0.1918,-0.8454,-0.4984,-0.1907,0.571,0.7985,-0.19,-0.6896,0.6988,-0.1898,0.8816,0.4322,-0.1898,0.9402,-0.2829,-0.1897,-0.9628,0.1922,-0.1895,-0.8359,0.5151,-0.1878,-0.4003,-0.897,-0.1877,0.8897,-0.4161,-0.1873,-0.8963,-0.4019,-0.1843,-0.2406,0.953,-0.1803,-0.9824,-0.048,-0.1795,0.4198,-0.8897,-0.1788,-0.7806,0.5989,-0.1785,-0.7061,0.6852,-0.1782,0.8381,-0.5156,-0.1777,-0.6755,0.7157,-0.1776,-0.7327,0.657,-0.176,0.4104,0.8947,-0.175,0.6133,-0.7702,-0.1725,0.5246,0.8337,-0.17,-0.7022,0.6914,-0.1691,0.3248,-0.9305,-0.1686,-0.0278,0.9853,-0.1685,-0.8425,-0.5117,-0.168,-0.5792,0.7977,-0.1658,0.9079,0.3849,-0.1655,0.9848,0.0527,-0.1646,-0.8032,0.5725,-0.1638,-0.361,-0.9181,-0.1628,-0.2718,0.9485,-0.1624,-0.3746,0.9129,-0.1621,-0.9863,-0.0316,-0.1615,0.3965,-0.9037,-0.1607,-0.7269,0.6677,-0.1579,0.0786,0.9843,-0.1573,-0.6486,0.7447,-0.1561,-0.405,-0.9009,-0.1557,-0.6469,0.7465,-0.1548,-0.6877,0.7093,-0.1536,0.1961,-0.9685,-0.153,0.8779,0.4538,-0.1518,0.0363,0.9877,-0.1508,-0.7857,-0.6,-0.1507,0.5927,-0.7912,-0.1505,-0.9743,0.1676,-0.1463,0.9883,-0.0428,-0.1458,0.7087,-0.6903,-0.1456,0.0854,0.9857,-0.1442,0.9696,-0.1976,-0.1439,-0.7992,0.5836,-0.1439,-0.8778,-0.4568,-0.1432,-0.791,-0.5948,-0.1423,-0.8808,0.4517,-0.1423,0.6425,-0.7529,-0.1416,-0.7731,-0.6183,-0.1411,0.926,0.3501,-0.1407,0.9056,-0.4,-0.1402,-0.3087,0.9408,-0.139,0.8303,0.5397,-0.1373,0.9352,0.3264,-0.1368,-0.8543,-0.5014,-0.1359,0.8975,0.4195,-0.1356,-0.9797,-0.148,-0.1349,0.6068,0.7833,-0.1334,0.288,0.9483,-0.1322,0.9656,0.2241,-0.1284,0.0736,0.989,-0.1277,-0.3878,0.9129,-0.1274,-0.9685,-0.2138,-0.127,0.4909,-0.8619,-0.126,0.936,0.3286,-0.1253,0.9592,-0.2534,-0.1221,0.6529,0.7475,-0.122,0.9311,0.3437,-0.1205,0.554,0.8238,-0.1184,-0.8377,-0.5332,-0.1164,0.038,0.9925,-0.1162,0.6485,-0.7523,-0.1158,0.9929,0.0278,-0.1157,-0.9707,0.2106,-0.1157,-0.7502,0.651,-0.1153,-0.6486,0.7523,-0.1138,0.6055,0.7877,-0.1138,-0.8256,-0.5527,-0.1133,-0.626,-0.7716,-0.1132,0.9362,0.3327,-0.1112,0.9794,-0.1686,-0.1108,0.8224,-0.558,-0.1095,-0.0336,0.9934,-0.1087,-0.9545,0.2776,-0.106,0.2376,-0.9656,-0.1054,-0.9802,-0.1677,-0.105,-0.8065,-0.5818,-0.1049,0.5991,0.7938,-0.1042,-0.8435,-0.5269,-0.1042,0.213,0.9715,-0.101,-0.8633,-0.4944,-0.1004,0.9764,0.191,-0.0999,-0.8533,-0.5118,-0.0998,0.0601,0.9932,-0.0997,0.9796,0.1746,-0.0995,0.1578,-0.9824,-0.0995,-0.9278,0.3595,-0.0984,-0.8695,0.484,-0.0984,0.4544,-0.8854,-0.0982,-0.9883,0.1167,-0.0971,0.9485,0.3016,-0.0967,-0.8458,-0.5246,-0.0964,-0.9359,-0.3389,-0.0958,0.7967,-0.5968,-0.0947,-0.1325,0.9866,-0.0945,-0.9175,0.3863,-0.0945,-0.4836,-0.8702,-0.093,-0.8784,-0.4689,-0.0929,0.7891,-0.6071,-0.0927,0.866,-0.4914,-0.0907,-0.2014,0.9753,-0.0892,-0.3689,0.9252,-0.089,0.9954,0.0367,-0.0882,-0.9818,0.1684,-0.0871,0.9962,-0.0076,-0.0866,0.8538,0.5133,-0.0846,0.9937,-0.0733,-0.0845,-0.7537,-0.6518,-0.0835,0.9738,0.2113,-0.0824,0.9809,0.176,-0.0812,0.4489,-0.8899,-0.0811,-0.5412,-0.8369,-0.0805,0.9821,0.1705,-0.08,0.9273,0.3658,-0.0796,-0.3402,0.937,-0.0785,-0.8875,-0.4541,-0.0775,-0.8616,0.5017,-0.0773,0.6158,-0.7841,-0.0766,-0.864,0.4977,-0.0764,-0.7924,0.6052,-0.0762,-0.3118,0.9471,-0.0762,-0.9693,0.2336,-0.0736,-0.6878,-0.7222,-0.0734,-0.9971,0.0201,-0.0732,0.4946,0.866,-0.0712,-0.0534,0.996,-0.0704,-0.3191,-0.9451,-0.0699,0.4117,0.9086,-0.0688,0.9958,0.0607,-0.0684,0.1127,-0.9913,-0.0678,0.5516,-0.8313,-0.0672,-0.8868,-0.4572,-0.067,-0.4721,0.879,-0.067,0.9115,-0.4059,-0.0652,-0.75,0.6582,-0.0647,-0.9947,-0.0804,-0.0643,-0.7069,-0.7044,-0.0642,-0.9684,-0.2409,-0.0641,-0.9755,-0.2104,-0.0635,0.5445,-0.8364,-0.0628,0.6567,-0.7515,-0.0627,0.6394,-0.7663,-0.0622,0.5807,0.8118,-0.0618,-0.1637,0.9846,-0.0597,0.9975,0.0383,-0.0591,0.4348,0.8986,-0.0586,-0.9532,-0.2967,-0.0586,0.6934,-0.7182,-0.058,-0.7181,0.6936,-0.0567,-0.9134,-0.4031,-0.0549,0.9881,0.144,-0.0538,0.73,-0.6813,-0.053,-0.1012,0.9935,-0.0529,-0.9917,0.1173,-0.0519,-0.9638,-0.2615,-0.0506,-0.5365,0.8424,-0.0495,0.9297,0.3649,-0.0481,-0.1989,0.9788,-0.048,-0.856,0.5147,-0.0476,-0.9922,-0.115,-0.0472,-0.9609,-0.2729,-0.0468,-0.851,-0.5231,-0.0464,-0.9515,-0.304,-0.046,-0.8908,0.4521,-0.0444,0.6879,-0.7244,-0.0442,0.9966,0.0698,-0.0431,0.3142,-0.9484,-0.0426,0.1087,0.9932,-0.0423,-0.9944,-0.0965,-0.0421,0.337,0.9406,-0.0413,0.6732,-0.7383,-0.0411,-0.8026,0.5951,-0.0406,-0.9978,-0.0524,-0.0402,0.3285,0.9437,-0.0395,-0.9974,-0.0604,-0.0389,-0.2325,0.9718,-0.0386,0.7093,-0.7039,-0.0383,0.994,0.1021,-0.0381,0.6877,-0.725,-0.0374,0.9653,0.2586,-0.0359,-0.8885,-0.4575,-0.0351,-0.0451,0.9984,-0.0342,0.5407,-0.8405,-0.0342,0.6482,-0.7607,-0.0337,-0.0722,0.9968,-0.0318,-0.0394,0.9987,-0.0306,0.9938,-0.1072,-0.0271,0.8225,-0.568,-0.0271,-0.9993,0.0253,-0.0266,-0.8322,0.5538,-0.0265,-0.9251,-0.3789,-0.0225,-0.9997,-0.0052,-0.0209,0.3095,-0.9507,-0.0195,0.9855,-0.1687,-0.0193,0.4029,-0.9151,-0.0187,-0.9995,0.0244,-0.0186,-0.2995,-0.9539,-0.0179,0.9885,-0.1503,-0.0175,-0.8892,-0.4572,-0.017,0.9798,0.1992,-0.0157,0.2398,-0.9707,-0.0157,0.8925,-0.4507,-0.0144,-0.9949,0.1003,-0.0138,-0.0169,0.9998,-0.0132,-0.905,-0.4253,-0.0131,0.3782,-0.9256,-0.0125,-0.9875,-0.1571,-0.0122,0.9999,0.0111,-0.0122,-0.8512,0.5247,-0.0121,-0.9903,-0.1385,-0.012,-0.3862,0.9223,-0.0109,0.0681,-0.9976,-0.0103,-0.9999,0.0094,-0.0097,0.9962,0.0861,-0.009,-0.3605,0.9327,-0.0087,0.24,0.9707,-0.0082,-0.949,-0.3152,-0.0078,-0.3123,-0.9499,-0.0075,0.175,0.9845,-0.0072,-0.4961,0.8682,-0.0067,-0.9913,-0.1317,-0.0062,-0.3816,0.9243,-0.0053,0.1262,0.992,-0.0052,-0.9913,0.1318,-0.005,0.0607,-0.9981,-0.0033,0.9562,0.2928,-0.0025,-0.0148,0.9999,-0.0024,-0.8377,0.5461,-0.0012,-0.9369,-0.3495,-0.001,-0.5215,0.8533,-0.001,-0.6298,0.7768,-0.0009,-0.745,0.6671,-0.0009,-0.6022,0.7984,-0.0007,0.7942,0.6077,-0.0004,0.9363,0.3511,-0.0004,-0.9484,0.3172,-0.0003,0.6881,-0.7256,-0.0003,0.9508,0.3099,-0.0002,-0.995,0.1002,-0.0002,-0.9956,0.0934,-0.0001,0.9653,0.2612,-0.0001,-0.9984,0.0567,0.0,0.9936,0.1134,0.0,0.9936,0.1129,0.0,0.9983,0.0586,0.0,1.0,-0.0005,0.0,-0.9999,-0.0106,0.0,0.9975,-0.0713,0.0001,0.9547,-0.2975,0.0001,-0.9574,-0.2887,0.0001,0.9781,-0.2081,0.0002,0.9852,-0.1713,0.0002,0.6924,-0.7215,0.0002,-0.9052,-0.4249,0.0003,0.9892,-0.1463,0.0003,0.1022,-0.9948,0.0004,-0.4724,-0.8814,0.0005,-0.9629,-0.2699,0.0006,-0.9601,-0.2798,0.0007,0.6881,-0.7256,0.0011,-0.9532,-0.3022,0.0014,0.4194,-0.9078,0.0016,-0.9236,0.3834,0.0016,0.3338,-0.9427,0.0018,-0.0171,0.9999,0.0024,-0.6782,-0.7349,0.0029,-0.8817,-0.4718,0.0042,-0.5143,-0.8576,0.005,-0.2119,0.9773,0.0053,-0.5958,-0.8031,0.0054,0.6401,-0.7683,0.0066,0.2903,0.9569,0.0081,-0.3122,0.95,0.0091,0.1337,0.991,0.0101,0.9968,0.0793,0.0123,-0.9903,-0.1384,0.013,-0.9733,0.2293,0.0144,-0.9418,-0.3358,0.0146,-0.9048,-0.4255,0.0156,-0.9996,0.0225,0.0159,-0.2456,0.9692,0.0174,-0.6487,0.7609,0.0177,0.8934,-0.4489,0.02,-0.9948,-0.1003,0.0213,-0.6215,0.7831,0.0216,0.8234,-0.5671,0.0219,0.6752,-0.7374,0.023,-0.8534,0.5208,0.0234,0.309,-0.9508,0.0238,0.0351,-0.9991,0.0245,-0.8253,0.5642,0.0248,0.1353,0.9905,0.0261,-0.3034,-0.9525,0.0266,-0.9123,-0.4087,0.0283,0.6225,-0.7821,0.033,0.0827,-0.996,0.0334,-0.9816,0.188,0.0345,0.43,0.9022,0.0357,0.542,-0.8396,0.0364,-0.9984,-0.0436,0.0374,0.9908,0.1299,0.0391,0.7207,-0.6921,0.0399,0.3308,0.9429,0.0406,-0.8569,0.5139,0.0408,-0.1468,0.9883,0.0421,-0.9597,-0.2778,0.0427,0.6917,-0.7209,0.0431,0.987,-0.1547,0.0468,0.6617,-0.7483,0.0469,-0.1969,0.9793,0.0476,0.3245,0.9447,0.0478,-0.8651,0.4993,0.0487,0.9953,-0.0841,0.0491,-0.5378,0.8417,0.0512,-0.8831,-0.4664,0.0517,-0.8504,-0.5236,0.0518,0.5628,-0.825,0.0518,0.3255,0.9441,0.0526,-0.9637,-0.2617,0.0526,-0.9917,0.1173,0.054,-0.973,0.2243,0.0543,-0.8883,0.4561,0.0544,-0.8476,0.5278,0.0561,-0.4787,0.8762,0.0568,0.3997,0.9149,0.0572,-0.9963,0.0636,0.0576,-0.8784,0.4744,0.0579,-0.3266,0.9434,0.0581,0.1069,0.9926,0.059,-0.9927,-0.1054,0.0595,-0.9606,-0.2716,0.0596,-0.9532,-0.2966,0.06,0.6925,-0.7189,0.0601,-0.9959,-0.068,0.0636,0.6386,-0.7669,0.0638,0.1095,-0.9919,0.0643,0.6562,-0.7519,0.0645,-0.9755,-0.2106,0.0648,0.0728,0.9952,0.0657,0.9749,0.2125,0.0668,-0.9131,0.4022,0.067,-0.3789,0.923,0.0671,-0.7084,-0.7026,0.068,0.9632,0.2601,0.068,-0.3171,-0.946,0.0688,0.3035,-0.9503,0.069,0.6936,-0.717,0.0692,-0.8866,-0.4573,0.0727,0.4966,0.8649,0.0728,-0.1,0.9923,0.0733,-0.7241,0.6858,0.0747,-0.1987,0.9772,0.0754,-0.9694,0.2337,0.0755,-0.6882,-0.7216,0.0769,-0.8611,0.5025,0.078,0.6147,-0.7849,0.0802,0.8644,0.4963,0.0802,-0.9946,-0.0651,0.0815,0.9967,-0.0018,0.082,-0.2898,0.9536,0.0824,-0.9913,0.1026,0.0835,-0.8999,-0.4279,0.0845,0.9937,-0.0729,0.0851,-0.9922,0.091,0.0852,0.9631,0.2553,0.0854,-0.7528,-0.6527,0.0861,-0.3739,0.9235,0.0863,0.9627,0.2563,0.0868,-0.8519,-0.5165,0.087,0.8857,-0.4561,0.0871,0.9962,-0.0018,0.0879,-0.5436,-0.8347,0.0893,-0.9538,-0.2868,0.0893,0.5547,-0.8273,0.0916,0.9096,-0.4053,0.0935,-0.9177,0.3862,0.0937,0.9631,0.2525,0.0938,0.9455,0.312,0.094,-0.9778,0.1871,0.0946,0.6155,-0.7824,0.0953,-0.9165,0.3885,0.097,-0.8451,-0.5257,0.0977,-0.9823,-0.1596,0.0982,-0.9947,0.0296,0.0983,-0.8831,-0.4587,0.0985,-0.4881,-0.8672,0.099,0.9687,0.2275,0.0996,0.7774,-0.6211,0.1019,-0.8635,-0.4939,0.102,0.9673,0.232,0.1022,-0.9017,-0.4202,0.104,0.2157,0.9709,0.1077,-0.9546,0.2776,0.1088,-0.9652,-0.2377,0.1096,0.4187,-0.9015,0.1098,-0.7348,0.6693,0.1104,0.5941,0.7967,0.1105,0.1485,-0.9827,0.1127,0.0391,0.9929,0.1129,-0.6491,0.7522,0.1146,-0.825,-0.5535,0.115,0.9308,0.347,0.1154,-0.9707,0.2107,0.1188,-0.8447,-0.522,0.1193,-0.8379,-0.5326,0.1218,0.9311,0.3437,0.1234,0.6116,-0.7815,0.1245,-0.8047,-0.5805,0.1257,0.2202,-0.9673};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_92_vector_2()
		{
			double[] value = {0.1266,-0.0342,0.9914,0.1288,0.96,-0.2487,0.1301,0.9322,0.3379,0.1303,0.8219,-0.5546,0.1318,0.6383,-0.7584,0.1335,0.9512,0.2782,0.1346,0.6059,0.7841,0.1352,0.0869,0.987,0.1358,0.8958,0.4231,0.1363,-0.1349,0.9814,0.1372,0.4518,-0.8815,0.139,0.6648,-0.7339,0.1396,0.9256,0.3518,0.1412,-0.881,0.4515,0.1417,-0.7791,-0.6106,0.1421,0.4816,-0.8648,0.1427,-0.7996,0.5833,0.1443,0.9696,-0.1976,0.1445,-0.6902,0.709,0.1447,0.05,0.9882,0.1504,0.3079,-0.9395,0.1514,0.0389,0.9877,0.152,0.8779,0.4541,0.1531,0.9023,-0.4029,0.1535,-0.6476,0.7464,0.1539,-0.7204,0.6763,0.1549,0.9821,-0.1075,0.1551,-0.2245,0.9621,0.1563,-0.6477,0.7456,0.1564,-0.732,0.6631,0.1566,0.1953,-0.9682,0.1586,-0.4038,-0.901,0.1588,-0.8007,-0.5777,0.159,-0.0584,-0.9855,0.16,-0.7642,-0.6248,0.1611,-0.3764,0.9123,0.162,0.4909,-0.856,0.163,0.3304,0.9297,0.1642,-0.689,0.7059,0.1646,0.6192,-0.7678,0.1649,0.908,0.3852,0.1655,-0.5798,0.7978,0.1656,0.0739,0.9834,0.1662,-0.3622,-0.9172,0.168,-0.0256,0.9855,0.168,-0.7028,0.6912,0.1694,-0.842,-0.5122,0.1704,0.5013,-0.8483,0.1707,-0.882,-0.4393,0.1712,0.6704,0.722,0.1713,0.871,-0.4604,0.1731,0.808,0.5632,0.1756,-0.7332,0.657,0.1765,-0.7066,0.6852,0.1774,0.8535,-0.49,0.18,-0.9698,-0.1649,0.1803,-0.7826,0.5958,0.1806,-0.9824,-0.0479,0.181,0.718,-0.6721,0.181,-0.9641,0.1945,0.1815,-0.9828,-0.0348,0.1822,0.4198,-0.8892,0.1842,-0.7827,-0.5945,0.1851,0.4156,-0.8905,0.1853,-0.4226,-0.8872,0.1856,-0.3008,0.9354,0.188,-0.6903,0.6987,0.1883,0.8895,-0.4163,0.1883,-0.8363,0.515,0.1895,0.8809,0.4337,0.1895,-0.8797,-0.4362,0.1902,0.5722,0.7978,0.191,-0.4233,0.8856,0.1913,-0.6695,0.7178,0.1913,-0.1985,-0.9612,0.1916,0.7806,-0.595,0.1921,-0.8094,0.5549,0.1922,-0.8958,-0.4007,0.1928,-0.292,0.9368,0.1937,-0.976,0.0991,0.1949,-0.8327,0.5184,0.1964,0.9804,0.0187,0.1966,0.5878,-0.7847,0.1969,-0.7917,0.5783,0.1977,-0.8549,-0.4797,0.1977,-0.4116,-0.8896,0.1982,0.4938,-0.8467,0.1985,0.9157,0.3494,0.2,0.5377,-0.8191,0.2004,0.9439,0.2624,0.201,-0.4895,-0.8485,0.2014,0.356,-0.9125,0.2021,-0.4671,0.8608,0.2046,-0.9699,-0.132,0.2069,0.4412,0.8732,0.2069,0.9692,0.1336,0.2085,0.9416,0.2644,0.2085,-0.7307,0.6501,0.2089,-0.5336,0.8195,0.2106,-0.2347,0.949,0.2106,-0.742,0.6364,0.2108,-0.2601,0.9423,0.2114,0.6529,0.7273,0.2123,-0.8635,0.4574,0.2123,0.8722,-0.4407,0.2146,0.9401,0.2651,0.2158,0.9717,0.0964,0.2175,-0.6989,-0.6813,0.2198,0.6875,-0.6922,0.2204,-0.3516,0.9099,0.2214,0.5381,-0.8133,0.2224,0.0601,-0.9731,0.2229,-0.7341,-0.6414,0.2237,-0.8241,0.5203,0.2245,-0.6548,-0.7217,0.225,0.5114,-0.8294,0.2253,-0.9716,-0.0728,0.2262,-0.1531,0.962,0.2283,0.6663,0.7099,0.2284,-0.2418,0.943,0.2287,-0.4206,-0.8779,0.2288,0.9687,0.0958,0.2291,-0.2259,0.9468,0.2316,0.5736,-0.7857,0.2348,0.8271,-0.5106,0.2348,-0.9134,-0.3324,0.2387,-0.8661,-0.4392,0.2391,0.69,-0.6832,0.2395,0.5512,-0.7992,0.2414,-0.9704,-0.0036,0.2424,0.9643,0.1066,0.2427,-0.8228,0.5139,0.2439,-0.0186,0.9696,0.244,0.1084,0.9637,0.2456,0.1852,0.9515,0.2463,0.0691,0.9667,0.2466,0.6745,0.6959,0.2467,0.3989,-0.8832,0.2468,0.4264,-0.8702,0.248,0.0897,-0.9646,0.2481,0.4816,0.8406,0.2482,-0.841,-0.4807,0.2485,-0.286,0.9254,0.2487,-0.955,0.1617,0.2497,0.3906,0.8861,0.251,0.912,-0.3244,0.2541,0.9544,0.1568,0.2543,0.5171,-0.8173,0.2548,0.5946,-0.7625,0.2549,0.42,-0.871,0.2642,-0.1072,-0.9585,0.2647,-0.9104,-0.3179,0.2683,0.8405,-0.4708,0.2693,-0.9225,-0.2765,0.27,-0.5125,-0.8151,0.2713,0.0569,0.9608,0.2751,0.7399,-0.6138,0.2761,-0.8698,0.4089,0.277,0.8341,0.477,0.2775,-0.8558,-0.4366,0.279,-0.9548,-0.1023,0.281,-0.736,0.6158,0.2811,0.3884,-0.8776,0.2814,-0.3605,-0.8893,0.2816,-0.7746,0.5663,0.2823,-0.7,0.656,0.2836,-0.9482,0.1429,0.2839,-0.7205,0.6327,0.2842,-0.4955,-0.8208,0.2843,-0.3147,0.9056,0.2847,0.2257,0.9317,0.2849,-0.8138,-0.5066,0.285,-0.7985,-0.5303,0.2852,0.5352,-0.7952,0.2903,-0.9507,-0.109,0.294,0.6691,-0.6826,0.2943,-0.8575,-0.4221,0.2948,0.05,-0.9543,0.2997,-0.9534,0.0335,0.2998,-0.2925,-0.9081,0.3025,-0.8997,-0.3147,0.3051,-0.7997,0.5171,0.3053,-0.3087,0.9008,0.3059,0.9499,-0.0645,0.3069,0.8189,-0.4849,0.3074,-0.7867,0.5353,0.3096,0.8623,-0.4008,0.3096,-0.795,-0.5216,0.3111,-0.9361,-0.1642,0.3136,-0.3462,0.8842,0.3148,0.5231,0.792,0.3148,0.4274,-0.8475,0.3149,0.8653,-0.39,0.3154,-0.7776,0.5439,0.3157,0.8287,-0.4622,0.3158,0.8166,-0.4832,0.3186,0.9407,-0.116,0.3193,0.8262,-0.4641,0.3194,-0.771,-0.551,0.3194,-0.8764,0.3604,0.3204,0.6714,-0.6682,0.321,-0.4727,0.8207,0.3215,0.64,0.6979,0.3223,0.8903,-0.3218,0.3254,-0.526,-0.7858,0.3254,0.8116,-0.4852,0.3287,-0.9338,0.1412,0.3293,-0.8877,-0.3216,0.3304,-0.9434,-0.0292,0.332,-0.8847,-0.3272,0.332,0.4396,0.8346,0.3321,-0.8975,-0.2903,0.3338,0.8669,0.3702,0.3341,-0.1066,0.9365,0.3365,0.3096,-0.8894,0.3377,0.1988,0.92,0.34,0.6567,0.6731,0.3435,0.7154,-0.6084,0.3445,-0.0224,0.9385,0.3452,-0.8545,-0.388,0.3467,0.7346,-0.5832,0.3478,0.5323,-0.7718,0.3493,0.3979,-0.8483,0.3502,-0.8146,0.4624,0.3507,0.3887,-0.852,0.3538,0.5275,0.7724,0.3541,-0.8891,0.2901,0.3552,-0.8588,0.3693,0.3575,-0.8957,-0.2645,0.3589,-0.8332,0.4208,0.3597,-0.8193,-0.4464,0.3624,-0.0566,0.9303,0.3638,0.8199,-0.442,0.3641,-0.505,-0.7826,0.3647,-0.8278,0.4262,0.3692,0.7115,0.5978,0.3706,-0.3435,-0.863,0.3718,-0.9247,0.0823,0.3743,-0.68,0.6305,0.375,-0.8139,-0.4438,0.3766,-0.7439,-0.5521,0.3817,-0.7704,0.5106,0.3837,-0.6695,-0.636,0.3841,-0.1073,0.917,0.3857,0.8896,-0.2447,0.387,-0.9089,-0.1551,0.3871,0.262,-0.884,0.3886,-0.7608,-0.5198,0.3887,0.9173,0.0859,0.3903,-0.5771,0.7174,0.3913,0.517,0.7613,0.3917,-0.9002,0.1905,0.3928,-0.7155,-0.5777,0.3931,-0.8922,-0.2226,0.3945,-0.7952,-0.4605,0.3959,-0.9043,0.1599,0.3964,-0.9146,0.0804,0.3965,0.6044,-0.691,0.3969,-0.0132,-0.9178,0.3995,0.2494,-0.8821,0.3999,-0.2886,-0.8699,0.3999,0.7473,0.5307,0.4003,-0.3978,0.8255,0.4009,-0.6112,0.6825,0.4012,0.7774,0.4845,0.4012,-0.2387,-0.8843,0.4047,-0.576,0.7102,0.4051,-0.5418,0.7364,0.408,0.6097,-0.6795,0.4082,-0.6318,-0.6589,0.4083,0.7935,-0.4512,0.4083,0.0265,-0.9124,0.4101,0.7443,-0.5271,0.4103,-0.8537,-0.3205,0.4106,-0.7817,-0.4694,0.4119,-0.1769,0.8939,0.4122,-0.5935,-0.6913,0.4125,0.0964,-0.9059,0.4125,-0.7734,0.4814,0.4181,0.5911,0.6898,0.4189,0.5126,0.7495,0.4245,-0.2895,0.8579,0.4258,-0.7764,-0.4646,0.4273,-0.6959,-0.5771,0.4283,0.6675,0.6091,0.4303,-0.8864,0.1709,0.4365,-0.6793,0.5899,0.4389,0.4822,0.7582,0.4389,0.1218,-0.8902,0.4405,0.8946,-0.0752,0.4411,0.7917,0.4227,0.4427,0.4226,-0.7908,0.4431,-0.4309,0.7861,0.4434,-0.2307,-0.8661,0.4442,0.5943,-0.6704,0.4458,-0.4371,0.7811,0.4467,-0.4174,0.7914,0.4475,-0.6056,-0.658,0.4478,-0.8939,-0.0195,0.4481,-0.847,-0.286,0.4487,0.8702,-0.2037,0.4487,0.5931,-0.6685,0.4501,-0.2098,0.868,0.4514,-0.8825,0.1325,0.4517,-0.7323,-0.5097,0.4523,-0.8112,0.3707,0.453,-0.5628,0.6914,0.453,0.8025,-0.3882,0.4572,-0.1775,0.8715,0.4572,0.1001,-0.8837,0.4578,-0.2065,0.8647,0.4584,0.19,-0.8682,0.4615,0.1352,0.8768,0.4617,-0.7756,-0.4304,0.4618,-0.7665,-0.4463,0.4638,-0.1959,0.864,0.4654,0.228,-0.8552,0.4663,-0.8351,-0.2918,0.4665,0.5873,0.6615,0.4682,0.5091,0.7222,0.4699,-0.5767,0.6684,0.4709,-0.3411,-0.8136,0.4735,0.3128,-0.8234,0.4789,0.2984,0.8256,0.4795,0.2634,-0.8371,0.4805,-0.587,0.6516,0.4843,0.4448,0.7534,0.4851,0.6267,-0.6099,0.4877,-0.8666,-0.1058,0.4904,-0.7951,-0.3569,0.4919,0.471,-0.7322,0.493,-0.5318,0.6886,0.4937,-0.4506,0.7438,0.4945,0.1746,0.8515,0.4948,-0.7076,0.5046,0.4962,0.4493,0.7429,0.4971,-0.5481,0.6727,0.4978,0.7438,0.446,0.4983,-0.4966,-0.7107,0.4989,0.5781,0.6457,0.4996,-0.5465,0.6721,0.5,0.0012,0.866,0.5012,-0.2488,0.8288,0.5019,0.5905,-0.632,0.5034,-0.2439,0.8289,0.504,-0.1699,0.8468,0.504,0.6029,-0.6185,0.5063,0.3794,-0.7744,0.5076,-0.8614,0.0197,0.5084,0.688,-0.5178,0.5094,-0.7119,-0.4834,0.51,-0.1719,0.8428,0.5103,-0.4915,0.7057,0.5139,-0.3004,-0.8036,0.5164,0.2064,-0.8311,0.5193,0.842,0.1459,0.5202,0.8481,0.1006,0.523,0.6032,-0.6021,0.5262,0.1665,0.8339,0.5278,-0.3329,0.7815,0.5287,-0.2438,0.8131,0.5307,-0.4863,0.6942,0.5323,0.7748,-0.3411,0.5329,0.8118,-0.2388,0.5334,-0.1055,0.8392,0.5336,-0.561,-0.6329,0.5343,-0.8446,-0.035,0.5345,0.8391,0.101,0.5358,-0.3455,-0.7704,0.5363,-0.0207,0.8438,0.5379,-0.389,0.7479,0.5381,-0.583,-0.6088,0.5382,0.7789,0.3219,0.5385,-0.821,-0.1897,0.5418,-0.8296,-0.1347,0.5418,0.213,0.813,0.5423,-0.6929,0.4751,0.5424,0.4657,0.6992,0.545,-0.2098,0.8118,0.5455,0.385,0.7444,0.5458,-0.6842,-0.4837,0.5459,-0.8267,-0.1361,0.5477,0.8335,0.0726,0.548,-0.4519,0.7039,0.5497,0.0505,-0.8338,0.5511,-0.1949,0.8114,0.5516,0.0492,-0.8327,0.5532,0.6731,-0.4909,0.5571,-0.7669,-0.3187,0.5575,0.2811,-0.7812,0.5579,-0.7327,0.3897,0.559,0.0849,0.8248,0.5616,0.827,0.0273,0.5619,-0.0177,0.827,0.5637,-0.8105,0.1594,0.5641,-0.6028,-0.5643,0.5656,-0.5685,0.5974,0.5677,0.8166,-0.104,0.5701,-0.8198,-0.0539,0.5704,0.8052,0.1618,0.5717,0.8193,-0.0433,0.5761,0.8116,-0.0971,0.5761,-0.6285,0.5225,0.5829,-0.5135,0.6297,0.5854,-0.0457,-0.8095,0.5866,0.4777,0.654,0.5868,-0.3395,0.7351,0.587,0.5603,-0.5843,0.5921,0.268,-0.76,0.5925,0.0464,0.8042,0.5934,-0.4459,-0.6701,0.5936,-0.4096,0.6928,0.5961,-0.2953,-0.7466,0.5979,0.2153,-0.7721,0.6009,0.3649,-0.7112,0.6024,-0.4559,0.6551,0.6038,0.797,-0.0115,0.6048,0.0663,0.7936,0.6052,0.6971,0.3843,0.6065,-0.5808,-0.543,0.6076,-0.0932,0.7888,0.6093,0.7853,0.1094,0.611,-0.5782,-0.5408,0.6117,-0.2449,0.7522,0.612,-0.2902,-0.7357,0.616,0.0579,0.7856,0.6161,-0.4532,0.6443,0.6162,0.7815,0.0978,0.6186,0.0441,-0.7845,0.6187,0.775,-0.1288,0.6236,0.2395,-0.7442,0.6278,0.503,-0.594,0.6282,-0.1576,0.7619,0.6285,0.2379,0.7406,0.6285,-0.2364,0.741,0.6289,-0.347,0.6958,0.6316,0.5053,-0.588,0.6325,-0.7049,0.3209,0.6333,-0.4615,0.6213,0.6341,-0.6448,-0.4268,0.6341,-0.4369,0.638,0.6349,-0.7682,0.0822,0.6357,-0.4696,-0.6127,0.6361,-0.6326,-0.4418,0.6361,-0.1544,0.756,0.6373,-0.1451,-0.7568,0.6384,-0.5143,-0.5727,0.6384,0.7548,0.1507,0.6389,-0.427,0.6399,0.6414,-0.7192,-0.2671,0.6414,-0.5517,0.5332,0.6418,-0.4158,0.6443,0.6439,0.3228,0.6937,0.6451,-0.2974,0.7039,0.6453,0.5888,0.4867,0.6471,0.1139,0.7538,0.6485,-0.5032,-0.5711,0.6503,-0.0469,0.7582,0.6509,0.2881,-0.7024,0.6511,-0.1621,-0.7415,0.6516,-0.1906,0.7342,0.6519,-0.4419,0.6163,0.6529,-0.6367,0.4104,0.6537,0.5708,0.4969,0.6549,0.1267,0.745,0.6553,-0.4138,0.6319,0.6563,-0.2402,-0.7153,0.6571,0.4796,0.5816,0.6575,-0.0928,0.7477,0.6589,-0.5933,-0.4623,0.6592,-0.5093,0.5531,0.6616,-0.4109,0.6273,0.6619,-0.7437,0.0932,0.6624,0.6851,-0.3031,0.665,-0.4967,0.5577,0.6657,0.5822,0.4668,0.6663,-0.3963,0.6316,0.6666,-0.4809,0.5696,0.6674,-0.5864,0.459,0.6698,0.6491,-0.3606,0.6702,-0.1636,0.7239,0.6724,-0.2929,0.6797,0.676,0.5156,0.5265,0.676,0.5827,-0.4512,0.676,0.5801,0.4544,0.6764,-0.3797,0.6311,0.6784,-0.257,0.6883,0.6785,-0.63,-0.3779,0.68,0.2825,0.6766,0.6802,-0.5603,0.4727,0.681,0.4648,0.5659,0.6816,-0.7289,0.0644,0.6826,0.4273,0.5929,0.6826,0.6478,-0.3382,0.6841,0.5966,0.4197,0.6869,-0.6335,0.3562,0.6877,-0.3952,0.609,0.6882,0.4751,0.5483,0.6883,-0.3138,0.6541,0.6885,-0.3987,0.6059,0.6928,-0.6524,-0.3071,0.6949,0.5386,0.4765,0.6981,0.5897,0.406,0.6996,-0.4186,0.5791,0.7021,0.5846,0.4067,0.7028,-0.2923,0.6485,0.7051,-0.5067,0.4961,0.708,-0.116,0.6966,0.709,-0.7038,-0.0454,0.7099,-0.5926,-0.3806,0.71,0.0193,-0.7039,0.7127,-0.1976,0.6731,0.717,-0.0822,-0.6923,0.719,-0.6945,-0.0263,0.7202,0.4864,0.4947,0.7243,-0.2357,0.6479,0.7258,0.6842,-0.0716,0.728,0.3681,-0.5784,0.7295,0.6801,-0.0734,0.7306,0.4207,-0.5378,0.7325,0.0409,0.6796,0.7336,-0.6559,0.178,0.7389,-0.3669,0.5652,0.7413,0.6144,0.2701,0.7432,-0.5156,0.4264,0.7451,-0.666,-0.0359,0.7452,0.663,0.0714,0.7454,0.6663,0.0204,0.7456,0.2604,0.6134,0.7505,0.6039,0.2685,0.7523,0.0081,0.6587,0.7538,0.6261,0.1994,0.7549,-0.645,0.119,0.7552,-0.4098,0.5116,0.7553,-0.636,0.1582,0.7581,-0.2633,0.5967,0.7583,-0.134,0.6379,0.7585,-0.5125,0.4025,0.7614,-0.1785,-0.6232,0.7621,0.1738,-0.6237,0.7637,0.5543,-0.3309,0.7659,0.1271,0.6302,0.7675,-0.0294,0.6404,0.7677,0.0605,0.6379,0.7699,-0.3863,-0.508,0.7711,-0.2119,0.6004,0.7729,0.1982,0.6028,0.7784,0.5023,-0.3764,0.7787,-0.4327,0.4543,0.7829,-0.0446,0.6205,0.785,-0.3915,-0.4801,0.7893,0.5702,-0.2276,0.7941,0.5938,0.1294,0.7953,-0.2023,0.5715,0.7988,0.4497,0.3996,0.7991,0.5867,-0.1313,0.7997,0.1977,0.5669,0.8012,-0.0662,-0.5948,0.8031,0.2863,-0.5226,0.8038,-0.4228,-0.4186,0.8052,-0.4753,-0.3546,0.8073,-0.4243,-0.4102,0.8105,-0.0415,0.5843,0.8117,-0.4285,0.3969,0.8143,-0.5803,-0.0112,0.8164,0.5224,0.2462,0.8187,0.563,0.1125,0.8199,0.571,-0.0416,0.8226,0.4296,-0.3726,0.8228,0.4053,0.3983,0.8251,-0.4814,-0.2958,0.8293,-0.1894,-0.5258,0.8293,0.5587,-0.011,0.8296,0.2032,-0.5201,0.8321,0.3282,-0.447,0.833,-0.5479,-0.0765,0.8345,-0.2734,-0.4785,0.8354,0.5371,-0.1166,0.8393,0.4353,0.3256,0.8396,-0.1144,0.531,0.8403,-0.0351,-0.5409,0.8453,-0.2254,-0.4845,0.8484,-0.5259,0.0606,0.8532,0.0489,0.5193,0.8543,0.5197,0.007,0.857,0.2681,-0.4402,0.8611,0.4799,0.1678,0.8614,0.0027,0.508,0.8624,0.2843,0.4189,0.8633,0.0392,0.5031,0.8636,-0.3547,0.3584,0.8637,-0.1151,-0.4907,0.865,-0.3488,-0.3607,0.8651,0.4508,-0.2199,0.8665,-0.0856,-0.4918,0.8678,0.1173,0.483,0.8686,-0.1366,0.4763,0.8727,0.4509,-0.1872,0.8749,-0.4438,-0.194,0.8755,0.4073,0.2601,0.8783,0.3145,-0.3602,0.8801,-0.031,0.4739,0.8843,-0.0838,0.4593,0.8851,0.4468,0.1304,0.8877,0.4568,0.0567,0.8888,-0.0776,0.4516,0.8903,-0.0016,0.4554,0.8905,0.406,0.2054,0.8917,0.092,0.4432,0.8959,-0.4438,-0.0211,0.896,-0.2522,0.3656,0.8976,0.3439,0.2757,0.8977,0.2931,0.3289,0.9024,-0.2521,0.3494,0.9027,0.2628,0.3407,0.9036,-0.0213,0.4279,0.9081,0.0177,0.4184,0.909,0.043,-0.4146,0.9098,0.0514,0.4118,0.9108,0.2865,0.2974,0.9129,0.2764,0.3004,0.9154,-0.3965,0.0699,0.9159,0.3008,-0.2657,0.9173,-0.3882,-0.0889,0.9175,0.3966,0.0316,0.921,0.1648,-0.353,0.9224,-0.1272,0.3647,0.9315,0.1998,0.3039,0.9356,-0.1457,-0.3215,0.936,0.283,-0.2093,0.9379,0.1722,-0.301,0.9402,0.0483,0.3371,0.9437,-0.2207,0.2465,0.9479,-0.0814,0.3081,0.953,-0.2105,0.2179,0.9531,0.2993,-0.0444,0.9536,-0.0144,0.3009,0.9542,-0.1522,0.2576,0.9582,0.2522,0.1349,0.962,-0.1634,-0.2189,0.9629,0.2637,0.0571,0.9742,-0.2256,-0.0017,0.9746,-0.2217,-0.0306,0.9767,0.2139,-0.0148,0.9774,-0.1471,-0.1521,0.9828,0.107,0.1508,0.9839,-0.1784,-0.0139,0.9965,-0.0825,-0.0151};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc7disc_Geo_5_97_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,39,36,40,-1,41,42,43,-1,33,44,31,-1,34,45,46,-1,28,27,47,-1,48,6,49,-1,50,51,52,-1,53,5,4,-1,54,55,56,-1,57,58,59,-1,10,9,60,-1,61,62,63,-1,64,65,66,-1,67,68,69,-1,70,71,15,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,79,93,94,-1,95,96,97,-1,98,99,100,-1,101,102,103,-1,77,76,104,-1,78,105,93,-1,106,107,108,-1,109,110,111,-1,112,113,114,-1,115,114,113,-1,115,116,117,-1,118,119,120,-1,121,122,123,-1,121,114,109,-1,124,125,126,-1,124,111,110,-1,127,128,129,-1,130,124,131,-1,132,126,84,-1,133,107,134,-1,135,136,83,-1,93,137,138,-1,139,137,96,-1,140,141,88,-1,142,2,143,-1,144,145,146,-1,91,147,89,-1,148,149,150,-1,151,152,153,-1,72,17,154,-1,155,133,156,-1,157,29,28,-1,126,122,121,-1,109,114,129,-1,158,120,159,-1,160,112,118,-1,115,161,162,-1,163,164,160,-1,157,165,127,-1,28,47,166,-1,145,100,99,-1,167,168,102,-1,135,169,104,-1,137,93,105,-1,170,138,137,-1,141,92,91,-1,171,172,173,-1,82,81,174,-1,79,175,176,-1,177,76,153,-1,144,130,131,-1,131,178,144,-1,179,73,180,-1,72,74,181,-1,182,68,18,-1,65,64,183,-1,184,3,185,-1,186,62,61,-1,181,60,9,-1,187,188,64,-1,55,0,56,-1,50,5,53,-1,189,190,191,-1,192,193,51,-1,68,182,194,-1,183,64,188,-1,195,196,197,-1,198,199,200,-1,36,39,198,-1,201,202,43,-1,39,40,203,-1,40,36,38,-1,31,203,204,-1,31,45,34,-1,30,24,46,-1,205,41,35,-1,24,197,196,-1,30,32,206,-1,207,23,208,-1,209,19,210,-1,13,12,66,-1,184,211,4,-1,59,54,188,-1,55,54,58,-1,212,10,213,-1,214,212,213,-1,58,215,55,-1,59,188,187,-1,4,3,184,-1,13,66,216,-1,217,20,19,-1,19,209,217,-1,207,208,200,-1,206,218,30,-1,196,25,24,-1,35,219,205,-1,30,46,45,-1,30,197,24,-1,34,33,31,-1,204,32,31,-1,38,220,40,-1,203,44,39,-1,43,42,201,-1,221,39,222,-1,27,205,223,-1,199,207,200,-1,188,56,183,-1,182,53,194,-1,193,52,51,-1,191,49,189,-1,50,53,51,-1,0,224,56,-1,64,225,187,-1,70,181,9,-1,212,226,10,-1,226,11,10,-1,218,8,195,-1,3,63,185,-1,183,227,65,-1,68,67,18,-1,15,72,181,-1,90,179,180,-1,76,75,153,-1,175,228,176,-1,229,82,174,-1,88,141,91,-1,139,170,137,-1,105,96,137,-1,135,230,169,-1,168,103,102,-1,99,146,145,-1,157,28,166,-1,158,106,160,-1,115,162,116,-1,160,113,112,-1,106,231,163,-1,114,115,129,-1,121,111,126,-1,165,128,127,-1,155,108,133,-1,73,72,154,-1,153,75,151,-1,88,91,89,-1,146,86,144,-1,95,142,143,-1,87,140,88,-1,232,139,96,-1,138,94,93,-1,135,83,82,-1,233,234,235,-1,133,108,107,-1,132,122,126,-1,130,125,124,-1,117,127,129,-1,124,126,111,-1,121,109,111,-1,121,123,112,-1,118,120,158,-1,160,118,158,-1,117,129,115,-1,115,113,161,-1,114,121,112,-1,160,106,163,-1,231,106,108,-1,85,125,130,-1,79,78,93,-1,77,104,169,-1,236,101,103,-1,173,98,100,-1,96,105,97,-1,175,79,94,-1,179,90,92,-1,178,87,89,-1,237,229,174,-1,83,238,81,-1,79,176,80,-1,77,239,75,-1,73,179,74,-1,15,181,70,-1,69,12,67,-1,225,64,66,-1,63,3,61,-1,240,190,241,-1,60,213,10,-1,58,54,59,-1,54,56,188,-1,4,194,53,-1,242,50,52,-1,48,49,191,-1,27,243,47,-1,39,221,198,-1,44,203,31,-1,41,43,35,-1,198,221,199,-1,35,43,33,-1,30,45,31,-1,223,205,219,-1,24,26,223,-1,38,63,220,-1,38,185,63,-1,207,21,23,-1,72,15,17,-1,12,14,67,-1,71,241,209,-1,241,217,209,-1,14,18,67,-1,14,19,18,-1,11,244,9,-1,6,48,7,-1,5,61,3,-1,142,0,2,-1,215,0,55,-1,0,215,1,-1,186,242,245,-1,50,242,186,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc7disc_Geo_5_97_coordIndex_2()
		{
			int[] value = {216,246,13,-1,247,246,216,-1,248,246,247,-1,248,249,246,-1,248,250,249,-1,251,252,210,-1,253,252,251,-1,210,16,209,-1,210,252,16,-1,37,208,254,-1,200,208,37,-1,206,204,62,-1,204,206,32,-1,223,46,24,-1,219,46,223,-1,202,255,222,-1,201,255,202,-1,33,202,44,-1,33,43,202,-1,199,21,207,-1,199,256,21,-1,56,257,183,-1,257,56,224,-1,53,192,51,-1,182,192,53,-1,0,258,224,-1,0,142,258,-1,259,181,74,-1,181,259,60,-1,7,11,226,-1,7,48,11,-1,1,260,2,-1,1,22,260,-1,184,254,57,-1,184,185,254,-1,261,182,18,-1,192,182,261,-1,212,25,226,-1,212,26,25,-1,62,245,206,-1,186,245,62,-1,262,236,98,-1,236,262,263,-1,86,132,84,-1,86,264,132,-1,144,85,130,-1,144,86,85,-1,153,175,177,-1,175,153,228,-1,139,265,170,-1,139,134,265,-1,147,145,89,-1,145,147,100,-1,170,136,138,-1,170,83,136,-1,230,102,169,-1,230,167,102,-1,258,266,267,-1,266,258,97,-1,155,231,108,-1,268,231,155,-1,269,116,162,-1,116,269,270,-1,271,272,273,-1,272,271,274,-1,268,163,231,-1,163,268,273,-1,166,165,157,-1,275,165,166,-1,265,120,238,-1,265,159,120,-1,150,176,228,-1,149,176,150,-1,276,73,154,-1,180,73,276,-1,233,276,234,-1,233,277,276,-1,234,151,235,-1,234,278,151,-1,279,280,281,-1,280,279,282,-1,283,284,278,-1,284,283,281,-1,282,285,280,-1,286,285,282,-1,264,146,168,-1,146,264,86,-1,95,232,96,-1,95,143,232,-1,82,230,135,-1,230,82,229,-1,176,148,80,-1,148,176,149,-1,281,148,284,-1,280,148,281,-1,287,278,234,-1,287,283,278,-1,154,234,276,-1,234,154,287,-1,233,288,263,-1,235,288,233,-1,235,239,288,-1,238,119,81,-1,238,120,119,-1,126,85,84,-1,85,126,125,-1,110,165,124,-1,110,128,165,-1,289,290,271,-1,256,290,289,-1,272,163,273,-1,163,272,164,-1,113,164,161,-1,113,160,164,-1,141,291,292,-1,140,291,141,-1,76,293,104,-1,76,177,293,-1,98,103,99,-1,98,236,103,-1,94,177,175,-1,177,94,293,-1,147,90,171,-1,90,147,91,-1,232,134,139,-1,232,133,134,-1,80,266,78,-1,266,80,285,-1,47,140,166,-1,47,291,140,-1,101,263,288,-1,101,236,263,-1,71,240,241,-1,70,240,71,-1,243,212,214,-1,212,243,26,-1,294,190,189,-1,190,294,241,-1,267,295,257,-1,267,286,295,-1,23,1,215,-1,1,23,22,-1,48,244,11,-1,48,191,244,-1,211,57,59,-1,184,57,211,-1,242,49,6,-1,242,52,49,-1,296,41,205,-1,296,297,41,-1,297,42,41,-1,297,270,42,-1,201,274,255,-1,269,274,201,-1,36,200,37,-1,36,198,200,-1,34,219,35,-1,219,34,46,-1,62,220,63,-1,220,62,204,-1,298,22,21,-1,260,22,298,-1,13,251,14,-1,13,246,251,-1,20,294,299,-1,20,241,294,-1,241,20,217,-1,17,252,300,-1,252,17,16,-1,227,250,248,-1,227,295,250,-1,295,282,250,-1,295,286,282,-1,6,245,242,-1,6,8,245,-1,273,289,271,-1,273,268,289,-1,50,61,5,-1,186,61,50,-1,191,240,244,-1,190,240,191,-1,246,253,251,-1,246,249,253,-1,250,279,249,-1,250,282,279,-1,14,210,19,-1,251,210,14,-1,15,209,16,-1,15,71,209,-1,65,216,66,-1,65,247,216,-1,38,254,185,-1,37,254,38,-1,223,243,27,-1,223,26,243,-1,221,256,199,-1,221,290,256,-1,221,255,290,-1,221,222,255,-1,222,44,202,-1,44,222,39,-1,257,258,267,-1,257,224,258,-1,194,211,301,-1,4,211,194,-1,292,60,259,-1,292,213,60,-1,254,58,57,-1,58,254,208,-1,225,12,69,-1,225,66,12,-1,195,7,196,-1,8,7,195,-1,206,8,218,-1,245,8,206,-1,193,294,189,-1,193,299,294,-1,264,174,132,-1,264,237,174,-1,131,87,178,-1,87,131,275,-1,77,288,239,-1,77,101,288,-1,265,83,170,-1,83,265,238,-1,260,143,2,-1,143,260,156,-1,89,144,178,-1,144,89,145,-1,179,259,74,-1,179,92,259,-1,258,95,97,-1,142,95,258,-1,101,169,102,-1,101,77,169,-1,266,105,78,-1,266,97,105,-1,256,298,21,-1,256,289,298,-1,117,296,127,-1,296,117,297,-1,116,297,117,-1,270,297,116,-1,274,162,272,-1,274,269,162,-1,118,123,119,-1,112,123,118,-1,124,275,131,-1,124,165,275,-1,123,132,174,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc7disc_Geo_5_97_coordIndex_3()
		{
			int[] value = {123,122,132,-1,134,159,265,-1,134,107,159,-1,180,277,172,-1,180,276,277,-1,75,235,151,-1,235,75,239,-1,283,300,302,-1,283,287,300,-1,281,302,279,-1,281,283,302,-1,284,150,152,-1,150,284,148,-1,168,237,264,-1,168,167,237,-1,138,293,94,-1,136,293,138,-1,229,167,230,-1,229,237,167,-1,171,100,147,-1,171,173,100,-1,152,228,153,-1,152,150,228,-1,280,80,148,-1,80,280,285,-1,287,17,300,-1,287,154,17,-1,262,233,263,-1,172,233,262,-1,172,277,233,-1,278,152,151,-1,284,152,278,-1,156,298,155,-1,156,260,298,-1,119,174,81,-1,119,123,174,-1,128,109,129,-1,128,110,109,-1,107,158,159,-1,158,107,106,-1,272,161,164,-1,272,162,161,-1,127,29,157,-1,29,127,296,-1,99,168,146,-1,168,99,103,-1,136,104,293,-1,136,135,104,-1,92,292,259,-1,141,292,92,-1,143,133,232,-1,143,156,133,-1,285,267,266,-1,267,285,286,-1,173,262,98,-1,173,172,262,-1,87,166,140,-1,87,275,166,-1,171,180,172,-1,171,90,180,-1,299,192,261,-1,193,192,299,-1,214,47,243,-1,47,214,291,-1,226,196,7,-1,226,25,196,-1,257,227,183,-1,257,295,227,-1,208,215,58,-1,215,208,23,-1,70,244,240,-1,70,9,244,-1,69,187,225,-1,69,301,187,-1,52,189,49,-1,193,189,52,-1,301,68,194,-1,69,68,301,-1,291,213,292,-1,291,214,213,-1,29,205,27,-1,29,296,205,-1,42,269,201,-1,42,270,269,-1,255,271,290,-1,255,274,271,-1,204,40,220,-1,204,203,40,-1,195,30,218,-1,195,197,30,-1,299,18,20,-1,299,261,18,-1,300,253,302,-1,253,300,252,-1,302,249,279,-1,253,249,302,-1,248,65,227,-1,248,247,65,-1,301,59,187,-1,301,211,59,-1,298,268,155,-1,268,298,289,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getc7disc_Geo_5_97_normalIndex_1()
		{
			int[] value = {184,138,169,-1,286,300,295,-1,274,227,259,-1,77,64,168,-1,244,174,228,-1,162,171,170,-1,276,246,260,-1,185,134,210,-1,75,87,69,-1,117,130,151,-1,133,257,217,-1,250,255,121,-1,272,186,202,-1,269,272,273,-1,63,109,91,-1,250,245,257,-1,255,236,212,-1,130,117,129,-1,248,274,282,-1,293,299,292,-1,301,295,300,-1,270,240,251,-1,280,265,284,-1,64,77,78,-1,279,211,241,-1,261,218,201,-1,266,289,281,-1,127,191,162,-1,175,132,166,-1,34,12,3,-1,52,41,83,-1,58,15,13,-1,101,119,42,-1,226,233,139,-1,173,214,230,-1,41,31,23,-1,112,61,93,-1,14,19,46,-1,5,6,10,-1,3,12,0,-1,52,50,31,-1,37,85,65,-1,47,114,71,-1,36,60,54,-1,200,54,60,-1,200,190,238,-1,29,81,118,-1,43,82,86,-1,43,54,47,-1,225,206,161,-1,225,71,114,-1,180,95,181,-1,135,225,222,-1,107,161,101,-1,89,85,67,-1,1,8,13,-1,31,33,17,-1,39,33,61,-1,223,234,233,-1,167,169,131,-1,72,53,28,-1,214,80,139,-1,136,176,178,-1,76,128,56,-1,175,170,125,-1,115,89,165,-1,188,151,130,-1,161,82,43,-1,47,54,181,-1,30,118,116,-1,32,36,29,-1,200,120,141,-1,48,103,32,-1,188,237,180,-1,130,129,205,-1,53,46,19,-1,9,16,6,-1,1,2,0,-1,33,31,50,-1,20,17,33,-1,234,230,214,-1,59,45,35,-1,15,58,90,-1,41,38,88,-1,21,12,56,-1,72,135,222,-1,222,204,72,-1,208,132,96,-1,175,166,106,-1,298,289,276,-1,218,261,252,-1,288,286,243,-1,275,211,279,-1,106,78,77,-1,278,271,261,-1,240,184,251,-1,293,295,301,-1,287,268,256,-1,297,296,299,-1,289,298,302,-1,252,261,271,-1,183,164,94,-1,267,249,224,-1,272,269,267,-1,157,177,91,-1,269,273,264,-1,273,272,202,-1,257,264,215,-1,257,236,255,-1,133,75,212,-1,123,63,121,-1,75,94,164,-1,133,217,192,-1,231,210,239,-1,232,246,213,-1,174,244,201,-1,288,294,300,-1,284,270,271,-1,240,270,265,-1,68,64,74,-1,92,68,74,-1,265,229,240,-1,284,271,278,-1,300,286,288,-1,174,201,126,-1,254,260,246,-1,246,232,254,-1,231,239,224,-1,192,196,133,-1,164,87,75,-1,121,207,123,-1,133,212,236,-1,133,94,75,-1,255,250,257,-1,215,217,257,-1,202,220,273,-1,264,245,269,-1,91,109,157,-1,253,269,195,-1,117,123,66,-1,249,231,224,-1,271,251,252,-1,298,301,302,-1,296,292,299,-1,256,282,287,-1,293,301,299,-1,184,209,251,-1,261,263,278,-1,127,106,77,-1,68,110,64,-1,110,168,64,-1,196,259,183,-1,286,241,243,-1,252,221,218,-1,289,266,276,-1,162,175,106,-1,173,208,96,-1,12,34,56,-1,38,98,88,-1,22,15,90,-1,233,234,214,-1,39,20,33,-1,50,61,33,-1,1,7,2,-1,16,10,6,-1,19,28,53,-1,188,130,205,-1,30,37,32,-1,200,141,190,-1,32,60,36,-1,37,44,48,-1,54,200,181,-1,43,71,161,-1,237,95,180,-1,115,65,89,-1,132,175,125,-1,56,34,76,-1,233,214,139,-1,28,42,72,-1,112,167,131,-1,226,223,233,-1,73,39,61,-1,17,23,31,-1,1,13,15,-1,51,79,62,-1,89,65,85,-1,107,82,161,-1,135,206,225,-1,238,180,181,-1,225,161,71,-1,43,47,71,-1,43,86,36,-1,29,118,30,-1,32,29,30,-1,238,181,200,-1,200,60,120,-1,54,43,36,-1,32,37,48,-1,44,37,65,-1,119,206,135,-1,41,52,31,-1,3,0,2,-1,4,5,10,-1,35,14,46,-1,61,50,93,-1,38,41,23,-1,208,173,230,-1,204,226,139,-1,27,22,90,-1,13,57,58,-1,41,88,83,-1,3,24,34,-1,132,208,166,-1,162,106,127,-1,281,244,266,-1,263,261,201,-1,241,286,279,-1,242,268,258,-1,78,74,64,-1,265,270,284,-1,270,251,271,-1,300,302,301,-1,285,293,292,-1,248,282,256,-1,117,105,129,-1,269,253,267,-1,245,264,257,-1,63,91,121,-1,267,253,249,-1,121,91,250,-1,133,236,257,-1,66,123,207,-1,75,69,66,-1,202,241,220,-1,202,243,241,-1,231,185,210,-1,175,162,170,-1,244,228,266,-1,191,258,232,-1,258,254,232,-1,228,276,266,-1,228,246,276,-1,168,219,77,-1,274,248,227,-1,295,279,286,-1,167,184,169,-1,229,184,240,-1,184,229,138,-1,275,285,262,-1,293,285,275,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getc7disc_Geo_5_97_normalIndex_2()
		{
			int[] value = {126,199,174,-1,172,199,126,-1,163,199,172,-1,163,198,199,-1,163,182,198,-1,203,187,213,-1,194,187,203,-1,213,171,232,-1,213,187,171,-1,186,239,247,-1,224,239,186,-1,192,215,211,-1,215,192,217,-1,66,212,75,-1,207,212,66,-1,177,179,195,-1,157,179,177,-1,250,177,245,-1,250,91,177,-1,249,185,231,-1,249,193,185,-1,251,216,252,-1,216,251,209,-1,301,297,299,-1,298,297,301,-1,184,144,209,-1,184,167,144,-1,160,106,166,-1,106,160,78,-1,227,168,110,-1,227,248,168,-1,138,145,169,-1,138,134,145,-1,288,247,280,-1,288,243,247,-1,290,298,276,-1,297,298,290,-1,68,87,110,-1,68,69,87,-1,211,262,192,-1,275,262,211,-1,26,4,14,-1,4,26,18,-1,42,107,101,-1,42,40,107,-1,72,119,135,-1,72,42,119,-1,56,38,21,-1,38,56,98,-1,39,55,20,-1,39,67,55,-1,80,53,139,-1,53,80,46,-1,20,8,17,-1,20,13,8,-1,7,6,2,-1,7,9,6,-1,144,84,146,-1,84,144,93,-1,115,44,65,-1,104,44,115,-1,147,190,141,-1,190,147,148,-1,137,124,111,-1,124,137,142,-1,104,48,44,-1,48,104,111,-1,205,237,188,-1,235,237,205,-1,55,118,57,-1,55,116,118,-1,178,88,98,-1,176,88,178,-1,70,132,125,-1,96,132,70,-1,51,70,79,-1,51,49,70,-1,79,76,62,-1,79,97,76,-1,153,122,100,-1,122,153,156,-1,108,99,97,-1,99,108,100,-1,156,102,122,-1,152,102,156,-1,40,28,16,-1,28,40,42,-1,112,73,61,-1,112,131,73,-1,15,7,1,-1,7,15,22,-1,88,136,83,-1,136,88,176,-1,100,136,99,-1,122,136,100,-1,113,97,79,-1,113,108,97,-1,125,79,70,-1,79,125,113,-1,51,25,18,-1,62,25,51,-1,62,24,25,-1,57,81,58,-1,57,118,81,-1,161,119,101,-1,119,161,206,-1,114,237,225,-1,114,95,237,-1,140,189,137,-1,193,189,140,-1,124,48,111,-1,48,124,103,-1,60,103,120,-1,60,32,103,-1,234,158,159,-1,223,158,234,-1,12,11,0,-1,12,21,11,-1,14,10,19,-1,14,4,10,-1,23,21,38,-1,21,23,11,-1,80,173,59,-1,173,80,214,-1,73,67,39,-1,73,89,67,-1,83,84,52,-1,84,83,102,-1,129,223,205,-1,129,158,223,-1,5,18,25,-1,5,4,18,-1,191,242,258,-1,127,242,191,-1,105,68,92,-1,68,105,69,-1,277,268,287,-1,268,277,258,-1,146,197,216,-1,146,152,197,-1,210,138,229,-1,138,210,134,-1,248,219,168,-1,248,256,219,-1,294,280,284,-1,288,280,294,-1,285,282,274,-1,285,292,282,-1,150,63,123,-1,150,149,63,-1,149,109,63,-1,149,148,109,-1,157,142,179,-1,147,142,157,-1,272,224,186,-1,272,267,224,-1,255,207,121,-1,207,255,212,-1,211,220,241,-1,220,211,215,-1,143,134,185,-1,145,134,143,-1,174,203,228,-1,174,199,203,-1,260,277,283,-1,260,258,277,-1,258,260,254,-1,170,187,155,-1,187,170,171,-1,221,182,163,-1,221,197,182,-1,197,156,182,-1,197,152,156,-1,274,262,285,-1,274,259,262,-1,111,140,137,-1,111,104,140,-1,293,279,295,-1,275,279,293,-1,256,242,219,-1,268,242,256,-1,199,194,203,-1,199,198,194,-1,182,153,198,-1,182,156,153,-1,228,213,246,-1,203,213,228,-1,162,232,171,-1,162,191,232,-1,218,126,201,-1,218,172,126,-1,202,247,243,-1,186,247,202,-1,66,105,117,-1,66,69,105,-1,253,193,249,-1,253,189,193,-1,253,179,189,-1,253,195,179,-1,195,245,177,-1,245,195,269,-1,216,144,146,-1,216,209,144,-1,302,294,291,-1,300,294,302,-1,159,78,160,-1,159,74,78,-1,247,265,280,-1,265,247,239,-1,263,244,281,-1,263,201,244,-1,183,227,164,-1,259,227,183,-1,192,259,196,-1,262,259,192,-1,296,277,287,-1,296,283,277,-1,40,90,107,-1,40,27,90,-1,222,226,204,-1,226,222,235,-1,3,25,24,-1,3,5,25,-1,55,13,20,-1,13,55,57,-1,145,131,169,-1,131,145,165,-1,139,72,204,-1,72,139,53,-1,208,160,166,-1,208,230,160,-1,144,112,93,-1,167,112,144,-1,5,2,6,-1,5,3,2,-1,84,50,52,-1,84,93,50,-1,193,143,185,-1,193,140,143,-1,238,150,180,-1,150,238,149,-1,190,149,238,-1,148,149,190,-1,142,141,124,-1,142,147,141,-1,29,86,81,-1,36,86,29,-1,225,235,222,-1,225,237,235,-1,86,107,90,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getc7disc_Geo_5_97_normalIndex_3()
		{
			int[] value = {86,82,107,-1,67,116,55,-1,67,85,116,-1,96,49,45,-1,96,70,49,-1,34,62,76,-1,62,34,24,-1,108,155,154,-1,108,113,155,-1,100,154,153,-1,100,108,154,-1,99,178,128,-1,178,99,136,-1,16,27,40,-1,16,9,27,-1,17,11,23,-1,8,11,17,-1,22,9,7,-1,22,27,9,-1,59,46,80,-1,59,35,46,-1,128,98,56,-1,128,178,98,-1,122,83,136,-1,83,122,102,-1,113,170,155,-1,113,125,170,-1,26,51,18,-1,45,51,26,-1,45,49,51,-1,97,128,76,-1,99,128,97,-1,165,143,115,-1,165,145,143,-1,81,90,58,-1,81,86,90,-1,95,47,181,-1,95,114,47,-1,85,30,116,-1,30,85,37,-1,124,120,103,-1,124,141,120,-1,180,151,188,-1,151,180,150,-1,19,16,28,-1,16,19,10,-1,8,0,11,-1,8,1,0,-1,230,159,160,-1,234,159,230,-1,131,89,73,-1,131,165,89,-1,102,146,84,-1,146,102,152,-1,35,26,14,-1,35,45,26,-1,226,205,223,-1,226,235,205,-1,59,96,45,-1,59,173,96,-1,283,297,290,-1,296,297,283,-1,92,129,105,-1,129,92,158,-1,110,164,227,-1,110,87,164,-1,216,221,252,-1,216,197,221,-1,239,229,265,-1,229,239,210,-1,127,219,242,-1,127,77,219,-1,281,278,263,-1,281,291,278,-1,292,287,282,-1,296,287,292,-1,291,289,302,-1,281,289,291,-1,158,74,159,-1,158,92,74,-1,151,123,117,-1,151,150,123,-1,109,147,157,-1,109,148,147,-1,179,137,189,-1,179,142,137,-1,215,273,220,-1,215,264,273,-1,183,133,196,-1,183,94,133,-1,283,276,260,-1,283,290,276,-1,155,194,154,-1,194,155,187,-1,154,198,153,-1,194,198,154,-1,163,218,221,-1,163,172,218,-1,291,284,278,-1,291,294,284,-1,143,104,115,-1,104,143,140,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getcoccyx_Geo_5_103_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,9,13,-1,13,14,12,-1,15,16,17,-1,16,18,17,-1,19,20,21,-1,22,23,24,-1,24,25,22,-1,26,27,28,-1,26,29,27,-1,30,31,32,-1,30,33,31,-1,34,33,30,-1,34,35,33,-1,36,37,38,-1,36,39,37,-1,40,41,42,-1,41,43,42,-1,44,41,40,-1,44,45,41,-1,46,47,48,-1,46,49,47,-1,50,51,52,-1,52,53,50,-1,54,55,56,-1,56,57,54,-1,58,54,57,-1,58,59,54,-1,60,61,62,-1,60,63,61,-1,62,64,65,-1,62,61,64,-1,65,66,67,-1,65,64,66,-1,68,69,70,-1,70,71,68,-1,72,73,74,-1,72,75,73,-1,76,77,78,-1,76,79,77,-1,80,81,82,-1,80,83,81,-1,84,85,86,-1,84,87,85,-1,86,85,88,-1,88,89,86,-1,89,90,91,-1,89,88,90,-1,92,93,94,-1,92,95,93,-1,80,77,83,-1,80,78,77,-1,96,97,98,-1,97,99,98,-1,100,101,102,-1,102,103,100,-1,104,105,106,-1,107,108,109,-1,108,110,109,-1,111,112,113,-1,113,114,111,-1,115,116,117,-1,117,118,115,-1,119,120,121,-1,119,122,120,-1,123,124,125,-1,123,126,124,-1,27,127,128,-1,129,130,131,-1,131,132,129,-1,133,134,135,-1,133,17,134,-1,136,137,138,-1,139,140,141,-1,139,142,140,-1,143,144,145,-1,144,146,145,-1,59,147,148,-1,59,149,147,-1,150,151,66,-1,66,152,150,-1,153,154,155,-1,153,156,154,-1,157,158,159,-1,159,160,157,-1,114,161,162,-1,114,163,161,-1,164,165,166,-1,166,99,164,-1,167,168,169,-1,168,170,169,-1,171,160,172,-1,160,159,172,-1,173,174,175,-1,176,177,178,-1,178,179,176,-1,180,181,182,-1,180,15,181,-1,183,184,185,-1,183,186,184,-1,187,188,189,-1,187,190,188,-1,191,192,187,-1,187,189,191,-1,157,193,192,-1,192,194,157,-1,195,196,197,-1,197,198,195,-1,199,200,201,-1,201,202,199,-1,203,204,205,-1,205,124,203,-1,120,206,207,-1,120,125,206,-1,208,28,209,-1,208,26,28,-1,210,126,211,-1,210,212,126,-1,123,122,213,-1,213,214,123,-1,214,215,211,-1,214,216,215,-1,217,218,219,-1,220,221,222,-1,222,141,220,-1,223,224,225,-1,175,174,226,-1,226,227,175,-1,228,174,173,-1,173,229,228,-1,230,228,231,-1,228,232,231,-1,233,234,30,-1,234,34,30,-1,144,235,236,-1,144,143,235,-1,237,49,51,-1,51,238,237,-1,239,237,240,-1,237,241,240,-1,242,243,244,-1,244,245,242,-1,246,247,248,-1,248,249,246,-1,247,250,251,-1,251,252,247,-1,253,254,255,-1,255,256,253,-1,11,257,258,-1,11,116,257,-1,259,260,261,-1,259,118,260,-1,162,262,263,-1,263,264,162,-1,265,259,137,-1,259,138,137,-1,266,267,268,-1,266,269,267,-1,270,271,272,-1,273,274,275,-1,102,276,103,-1,102,277,276,-1,278,279,280,-1,279,281,280,-1,282,170,283,-1,283,284,282,-1,270,272,285,-1,285,286,270,-1,278,287,288,-1,287,219,288,-1,289,290,291,-1,290,292,291,-1,293,294,295,-1,295,296,293,-1,297,298,299,-1,297,300,298,-1,301,302,303,-1,304,268,305,-1,305,306,304,-1,307,100,165,-1,307,308,100,-1,256,309,302,-1,269,310,311,-1,312,167,98,-1,313,276,277,-1,277,5,313,-1,314,315,302,-1,302,309,314,-1,294,316,258,-1,294,315,316,-1,96,98,169,-1,98,167,169,-1,168,167,313,-1,317,318,319,-1,317,320,318,-1,321,136,322,-1,323,83,77,-1,77,324,323,-1,325,326,327,-1,327,328,325,-1,329,68,206,-1,68,207,206,-1,74,198,197,-1,197,72,74,-1,330,331,201,-1,331,332,201,-1,76,333,334,-1,76,78,333,-1,82,159,158,-1,158,80,82,-1,84,86,251,-1,86,252,251,-1,91,335,336,-1,336,89,91,-1,92,337,338,-1,92,94,337,-1,10,339,340,-1,341,55,20,-1,342,343,344,-1,344,345,342,-1,8,346,347,-1,8,7,346,-1,348,58,349,-1,57,350,349,-1,349,58,57,-1,65,67,351,-1,67,352,351,-1,60,62,353,-1,62,354,353,-1,355,356,357,-1,355,358,356,-1,359,360,361,-1,359,362,360,-1,363,364,365,-1,364,366,365,-1,367,368,369,-1,369,370,367,-1,48,371,372,-1,371,373,372,-1,374,375,376,-1,376,377,374,-1,378,379,380,-1,378,381,379,-1,382,383,384,-1,385,386,93,-1,386,387,93,-1,388,389,390,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getcoccyx_Geo_5_103_coordIndex_2()
		{
			int[] value = {389,391,390,-1,392,393,394,-1,393,395,394,-1,396,397,398,-1,397,399,398,-1,400,401,402,-1,400,403,401,-1,404,405,406,-1,405,407,406,-1,408,409,410,-1,409,411,410,-1,412,413,414,-1,415,416,417,-1,418,419,420,-1,421,422,423,-1,424,425,426,-1,427,428,429,-1,430,431,432,-1,430,433,431,-1,434,435,436,-1,436,437,434,-1,438,439,440,-1,440,441,438,-1,442,443,444,-1,444,445,442,-1,446,447,428,-1,428,427,446,-1,448,449,450,-1,451,452,422,-1,422,421,451,-1,416,415,453,-1,453,454,416,-1,455,424,456,-1,455,457,424,-1,458,442,459,-1,458,450,442,-1,460,459,461,-1,459,445,461,-1,462,463,464,-1,463,430,464,-1,465,466,467,-1,468,469,470,-1,469,446,470,-1,439,471,472,-1,472,440,439,-1,467,473,465,-1,467,474,473,-1,475,429,476,-1,475,427,429,-1,477,478,479,-1,477,480,478,-1,481,482,483,-1,482,484,480,-1,482,485,484,-1,486,487,488,-1,486,489,487,-1,490,491,492,-1,490,493,491,-1,494,495,496,-1,437,450,458,-1,497,412,498,-1,499,406,407,-1,499,500,406,-1,449,501,502,-1,449,503,501,-1,504,505,506,-1,504,507,505,-1,398,399,508,-1,399,509,508,-1,510,511,512,-1,511,513,512,-1,514,515,516,-1,515,517,516,-1,518,519,520,-1,518,521,519,-1,522,523,524,-1,522,525,523,-1,526,527,528,-1,527,529,528,-1,530,527,531,-1,531,532,530,-1,533,467,466,-1,466,534,533,-1,534,535,533,-1,534,536,535,-1,537,538,539,-1,537,540,538,-1,541,356,542,-1,541,536,356,-1,543,535,544,-1,543,545,535,-1,546,547,548,-1,549,550,551,-1,550,552,551,-1,553,554,555,-1,553,556,554,-1,557,558,559,-1,559,560,557,-1,561,562,563,-1,561,564,562,-1,565,566,567,-1,547,546,496,-1,546,494,496,-1,568,399,569,-1,568,509,399,-1,570,571,572,-1,571,573,572,-1,574,575,576,-1,530,577,578,-1,577,579,578,-1,555,580,581,-1,555,582,580,-1,583,584,585,-1,583,586,584,-1,587,588,501,-1,501,503,587,-1,553,555,589,-1,555,581,589,-1,515,514,590,-1,514,591,590,-1,511,592,593,-1,511,510,592,-1,594,432,431,-1,594,595,432,-1,539,596,597,-1,539,598,596,-1,599,600,492,-1,492,601,599,-1,342,108,602,-1,602,603,342,-1,107,604,605,-1,107,606,604,-1,456,417,416,-1,607,495,608,-1,396,609,397,-1,610,611,612,-1,610,613,611,-1,405,385,328,-1,405,386,385,-1,404,386,405,-1,404,614,386,-1,615,616,617,-1,617,618,615,-1,397,609,619,-1,619,620,397,-1,619,621,622,-1,622,620,619,-1,623,624,625,-1,623,626,624,-1,627,408,628,-1,627,409,408,-1,629,410,400,-1,629,630,410,-1,361,631,632,-1,632,366,361,-1,366,633,365,-1,366,632,633,-1,360,631,361,-1,360,634,631,-1,635,634,360,-1,635,636,634,-1,637,636,635,-1,637,638,636,-1,639,640,641,-1,639,642,640,-1,643,644,645,-1,178,646,647,-1,647,648,178,-1,649,650,651,-1,649,644,650,-1,645,652,653,-1,645,644,652,-1,652,654,523,-1,523,653,652,-1,380,655,656,-1,657,658,659,-1,658,660,659,-1,661,662,645,-1,519,662,661,-1,519,521,662,-1,663,664,665,-1,663,666,664,-1,667,500,499,-1,448,503,449,-1,448,414,503,-1,384,668,669,-1,384,383,668,-1,541,542,382,-1,670,671,672,-1,673,674,675,-1,676,537,677,-1,678,566,565,-1,679,674,673,-1,680,670,681,-1,414,498,412,-1,414,413,587,-1,587,503,414,-1,666,682,664,-1,666,683,682,-1,657,659,684,-1,685,686,687,-1,685,688,686,-1,689,541,382,-1,689,544,541,-1,690,32,31,-1,690,691,32,-1,654,691,690,-1,654,692,691,-1,644,693,650,-1,644,643,693,-1,694,651,650,-1,694,695,651,-1,696,562,695,-1,695,694,696,-1,697,562,696,-1,697,563,562,-1,646,698,699,-1,699,647,646,-1,700,48,47,-1,700,371,48,-1,701,367,702,-1,701,368,367,-1,703,704,368,-1,368,701,703,-1,705,704,703,-1,705,706,704,-1,707,706,705,-1,705,708,707,-1,63,709,580,-1,63,60,709,-1,580,710,581,-1,580,709,710,-1,581,362,589,-1,581,710,362,-1,711,363,712,-1,711,364,363,-1,712,707,708,-1,712,363,707,-1,411,403,410,-1,403,400,410,-1,713,714,715,-1,713,716,714,-1,717,718,719,-1,719,720,717,-1,721,622,621,-1,621,722,721,-1,609,393,723,-1,609,396,393,-1,723,392,724,-1,723,393,392,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getcoccyx_Geo_5_103_coordIndex_3()
		{
			int[] value = {724,389,725,-1,724,392,389,-1,387,94,93,-1,387,388,94,-1,721,722,719,-1,719,718,721,-1,441,570,572,-1,572,726,441,-1,452,727,728,-1,452,451,727,-1,557,577,558,-1,108,107,605,-1,605,602,108,-1,729,496,495,-1,729,730,496,-1,486,731,732,-1,732,489,486,-1,733,734,460,-1,733,735,734,-1,736,737,596,-1,596,598,736,-1,539,597,738,-1,738,537,539,-1,382,542,383,-1,129,638,130,-1,129,739,638,-1,682,740,741,-1,682,742,740,-1,594,743,595,-1,510,744,592,-1,744,745,592,-1,514,511,591,-1,511,593,591,-1,712,708,379,-1,708,746,379,-1,747,589,748,-1,747,553,589,-1,749,750,751,-1,749,752,750,-1,753,754,755,-1,753,756,754,-1,757,573,758,-1,757,572,573,-1,759,440,472,-1,759,760,440,-1,756,569,754,-1,756,568,569,-1,761,531,762,-1,559,561,560,-1,559,564,561,-1,763,178,648,-1,763,179,178,-1,764,765,766,-1,766,683,764,-1,656,767,768,-1,656,769,767,-1,770,769,771,-1,770,767,769,-1,772,753,771,-1,753,773,771,-1,774,549,775,-1,549,551,775,-1,199,585,200,-1,199,583,585,-1,776,777,778,-1,776,738,777,-1,596,401,779,-1,779,597,596,-1,544,536,541,-1,544,535,536,-1,539,780,598,-1,539,538,780,-1,534,466,357,-1,518,520,781,-1,520,745,781,-1,782,529,578,-1,762,531,526,-1,531,527,526,-1,762,783,761,-1,783,784,761,-1,783,785,786,-1,786,649,783,-1,787,788,692,-1,788,691,692,-1,789,590,591,-1,789,790,590,-1,514,516,513,-1,513,511,514,-1,791,792,700,-1,792,702,700,-1,791,239,793,-1,239,240,793,-1,794,795,796,-1,794,797,795,-1,798,799,504,-1,799,507,504,-1,508,798,398,-1,798,395,398,-1,444,667,490,-1,444,443,667,-1,498,436,435,-1,435,732,498,-1,486,800,801,-1,486,488,800,-1,481,802,485,-1,485,482,481,-1,488,595,743,-1,488,487,595,-1,483,482,480,-1,480,477,483,-1,457,455,803,-1,803,804,457,-1,805,469,806,-1,476,429,479,-1,807,727,808,-1,807,728,727,-1,809,810,671,-1,810,811,671,-1,471,812,472,-1,471,813,812,-1,469,805,446,-1,805,447,446,-1,465,810,466,-1,810,814,466,-1,735,462,815,-1,462,464,815,-1,734,434,437,-1,437,458,734,-1,733,460,816,-1,460,461,816,-1,445,459,442,-1,456,454,455,-1,456,416,454,-1,418,758,451,-1,451,421,418,-1,443,442,817,-1,804,431,433,-1,571,570,760,-1,808,675,807,-1,675,674,807,-1,449,442,450,-1,449,817,442,-1,437,436,448,-1,448,450,437,-1,464,430,432,-1,432,818,464,-1,570,441,440,-1,440,760,570,-1,759,675,760,-1,470,475,594,-1,405,328,407,-1,328,327,407,-1,623,779,401,-1,401,403,623,-1,714,716,551,-1,716,775,551,-1,628,585,584,-1,584,627,628,-1,717,552,819,-1,819,718,717,-1,622,755,754,-1,622,721,755,-1,393,396,395,-1,396,398,395,-1,389,392,391,-1,392,394,391,-1,94,388,337,-1,388,390,337,-1,617,609,723,-1,617,616,609,-1,412,820,821,-1,822,684,703,-1,342,603,343,-1,603,823,343,-1,670,672,824,-1,824,681,670,-1,363,365,707,-1,706,707,639,-1,707,365,639,-1,362,710,360,-1,710,635,360,-1,60,353,637,-1,637,709,60,-1,210,218,825,-1,210,826,218,-1,827,828,352,-1,352,67,827,-1,829,348,830,-1,348,349,830,-1,53,52,831,-1,52,832,831,-1,46,48,833,-1,48,372,833,-1,834,835,147,-1,147,836,834,-1,27,837,127,-1,385,93,95,-1,95,838,385,-1,91,92,335,-1,92,338,335,-1,86,89,252,-1,89,336,252,-1,71,839,207,-1,207,68,71,-1,325,840,326,-1,840,841,326,-1,842,843,844,-1,843,845,844,-1,846,847,69,-1,847,70,69,-1,10,9,12,-1,320,317,306,-1,307,848,849,-1,308,319,318,-1,850,851,852,-1,853,275,854,-1,855,856,311,-1,311,310,855,-1,294,258,257,-1,257,295,294,-1,857,169,858,-1,857,96,169,-1,302,301,256,-1,301,253,256,-1,285,854,286,-1,285,853,854,-1,316,315,314,-1,101,100,318,-1,100,308,318,-1,320,306,859,-1,306,305,859,-1,268,304,850,-1,850,266,268,-1,293,303,302,-1,302,315,293,-1,300,860,298,-1,860,857,298,-1,303,297,301,-1,297,299,301,-1,287,861,219,-1,272,862,285,-1,862,321,285,-1,858,170,282,-1,858,169,170,-1,861,287,863,-1,863,864,861,-1,322,273,275,-1,275,853,322,-1,262,865,263,-1,263,866,867,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getcoccyx_Geo_5_103_coordIndex_4()
		{
			int[] value = {867,264,263,-1,264,111,162,-1,111,114,162,-1,115,259,265,-1,115,118,259,-1,254,868,869,-1,869,870,254,-1,871,113,112,-1,294,293,315,-1,872,11,10,-1,873,326,841,-1,841,874,873,-1,314,875,844,-1,844,13,314,-1,249,876,877,-1,249,248,876,-1,878,251,250,-1,250,879,878,-1,143,142,880,-1,880,235,143,-1,515,144,517,-1,144,236,517,-1,221,220,881,-1,881,882,221,-1,883,884,885,-1,883,886,884,-1,887,888,889,-1,889,890,887,-1,227,226,891,-1,891,225,227,-1,227,892,175,-1,892,893,175,-1,894,219,861,-1,894,217,219,-1,211,123,214,-1,211,126,123,-1,28,128,825,-1,825,209,28,-1,895,26,208,-1,895,896,26,-1,897,898,899,-1,900,198,334,-1,900,195,198,-1,182,901,180,-1,182,902,901,-1,182,903,904,-1,182,181,903,-1,104,905,105,-1,905,906,105,-1,907,44,40,-1,40,908,907,-1,1,909,2,-1,171,172,878,-1,878,879,171,-1,910,284,911,-1,284,283,911,-1,312,98,166,-1,98,99,166,-1,912,913,914,-1,106,892,224,-1,224,915,106,-1,104,916,917,-1,917,905,104,-1,918,64,61,-1,61,919,918,-1,202,201,332,-1,332,920,202,-1,13,844,845,-1,845,14,13,-1,918,66,64,-1,918,152,66,-1,144,515,146,-1,515,590,146,-1,142,143,140,-1,143,145,140,-1,123,125,120,-1,120,122,123,-1,906,908,921,-1,921,922,906,-1,923,868,924,-1,923,925,868,-1,108,342,345,-1,345,110,108,-1,107,109,926,-1,926,606,107,-1,304,306,317,-1,927,928,112,-1,84,929,87,-1,930,931,323,-1,323,324,930,-1,838,328,385,-1,838,325,328,-1,932,325,838,-1,932,840,325,-1,933,842,934,-1,934,935,933,-1,87,929,936,-1,936,937,87,-1,937,82,81,-1,937,936,82,-1,938,939,940,-1,938,329,939,-1,846,330,847,-1,846,331,330,-1,630,71,70,-1,630,629,71,-1,941,828,830,-1,830,942,941,-1,942,349,943,-1,942,830,349,-1,944,828,941,-1,944,352,828,-1,945,351,352,-1,352,944,945,-1,131,351,945,-1,131,354,351,-1,130,354,131,-1,130,353,354,-1,946,947,948,-1,946,350,947,-1,36,885,39,-1,646,178,177,-1,177,949,646,-1,45,44,950,-1,950,949,45,-1,41,135,134,-1,134,43,41,-1,232,951,37,-1,37,39,232,-1,885,884,952,-1,952,39,885,-1,835,190,953,-1,954,19,955,-1,19,21,955,-1,883,885,956,-1,882,883,956,-1,882,881,883,-1,16,957,18,-1,16,958,957,-1,255,873,874,-1,9,316,13,-1,316,314,13,-1,837,959,960,-1,960,127,837,-1,28,27,128,-1,8,347,281,-1,4,313,5,-1,212,961,126,-1,305,270,859,-1,305,271,270,-1,127,212,128,-1,127,961,212,-1,962,959,837,-1,962,963,959,-1,309,255,874,-1,256,255,309,-1,882,957,958,-1,882,956,957,-1,36,956,885,-1,36,957,956,-1,18,134,17,-1,134,18,38,-1,955,964,954,-1,964,955,965,-1,953,25,966,-1,967,25,953,-1,22,967,193,-1,22,25,967,-1,968,965,955,-1,968,24,965,-1,246,964,969,-1,246,970,964,-1,971,21,20,-1,971,972,21,-1,973,147,835,-1,148,147,973,-1,224,974,975,-1,224,223,974,-1,952,34,231,-1,952,35,34,-1,232,952,231,-1,232,39,952,-1,43,951,42,-1,43,37,951,-1,177,45,949,-1,976,45,177,-1,646,950,698,-1,646,949,950,-1,51,46,52,-1,51,49,46,-1,53,55,50,-1,56,55,53,-1,151,67,66,-1,67,151,827,-1,829,149,348,-1,829,977,149,-1,827,977,829,-1,827,151,977,-1,59,348,149,-1,348,59,58,-1,330,978,847,-1,979,978,330,-1,72,846,75,-1,331,846,72,-1,74,79,76,-1,74,73,79,-1,843,980,981,-1,843,982,980,-1,842,982,843,-1,842,933,982,-1,95,91,90,-1,91,95,92,-1,166,276,312,-1,166,103,276,-1,110,7,6,-1,110,345,7,-1,983,984,985,-1,984,983,986,-1,983,987,986,-1,983,988,987,-1,989,3,990,-1,989,4,3,-1,991,99,97,-1,992,99,991,-1,868,993,869,-1,925,993,868,-1,927,260,994,-1,995,260,927,-1,296,300,297,-1,290,300,296,-1,922,105,906,-1,105,922,893,-1,908,42,921,-1,908,40,42,-1,996,944,997,-1,996,945,944,-1,998,942,999,-1,998,941,942,-1,1000,946,1001,-1,1000,943,946,-1,0,1000,1,-1,0,999,1000,-1,993,910,1002,-1,993,284,910,-1,282,923,858,-1,282,925,923,-1,161,262,162,-1,912,262,161,-1,1003,213,1004,-1,1005,213,1003,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getcoccyx_Geo_5_103_coordIndex_5()
		{
			int[] value = {120,839,121,-1,120,207,839,-1,1006,920,1007,-1,920,1006,202,-1,919,1008,918,-1,1008,919,1009,-1,1010,996,1011,-1,1010,132,996,-1,904,186,183,-1,904,903,186,-1,177,1012,976,-1,176,1012,177,-1,905,1013,907,-1,905,917,1013,-1,104,915,916,-1,104,106,915,-1,1014,1006,155,-1,1014,1015,1006,-1,1016,826,215,-1,1016,288,826,-1,971,59,148,-1,971,54,59,-1,1017,914,1018,-1,914,1017,865,-1,180,0,2,-1,180,901,0,-1,1019,871,1020,-1,897,871,1019,-1,23,879,1021,-1,23,171,879,-1,906,907,908,-1,906,905,907,-1,915,975,1022,-1,915,224,975,-1,917,1023,1024,-1,1023,917,916,-1,173,893,922,-1,893,173,175,-1,1013,1024,1025,-1,1013,917,1024,-1,921,951,229,-1,921,42,951,-1,181,1012,903,-1,1012,181,133,-1,909,16,2,-1,909,958,16,-1,904,902,182,-1,904,1011,902,-1,1026,132,1010,-1,1026,129,132,-1,63,919,61,-1,1027,919,63,-1,998,902,997,-1,901,902,998,-1,977,147,149,-1,836,147,977,-1,1028,152,1029,-1,1028,150,152,-1,1027,1009,919,-1,1009,1027,1030,-1,1031,1008,156,-1,1008,1031,1029,-1,1028,188,834,-1,1028,1032,188,-1,1033,1031,1034,-1,1033,1032,1031,-1,155,1035,1014,-1,155,154,1035,-1,1036,1034,1037,-1,1034,1036,1033,-1,22,171,23,-1,160,171,22,-1,900,1036,195,-1,900,191,1036,-1,196,1007,920,-1,196,1037,1007,-1,333,900,334,-1,194,900,333,-1,1038,959,1039,-1,960,959,1038,-1,896,897,1019,-1,897,896,898,-1,1040,896,895,-1,1040,898,896,-1,1004,1041,1003,-1,1042,1041,1004,-1,218,209,825,-1,218,217,209,-1,894,895,208,-1,894,1043,895,-1,161,1040,1044,-1,1040,161,163,-1,1044,1045,913,-1,1044,1043,1045,-1,1046,215,216,-1,1016,215,1046,-1,1003,606,926,-1,1003,1041,606,-1,279,1046,1047,-1,1016,1046,279,-1,1048,225,891,-1,223,225,1048,-1,1049,1048,233,-1,1049,1050,1048,-1,234,226,230,-1,234,891,226,-1,1051,888,887,-1,1051,1052,888,-1,890,884,886,-1,890,889,884,-1,38,957,36,-1,38,18,957,-1,1053,886,1054,-1,886,1053,890,-1,1055,887,1056,-1,1051,887,1055,-1,1057,1053,1058,-1,1057,1056,1053,-1,1059,881,220,-1,1054,881,1059,-1,222,909,1,-1,221,909,222,-1,140,1058,1059,-1,1058,140,145,-1,590,1057,146,-1,790,1057,590,-1,948,142,139,-1,142,948,880,-1,1060,55,341,-1,1060,50,55,-1,1061,1060,242,-1,1060,1061,238,-1,241,1062,1063,-1,241,1061,1062,-1,1064,244,970,-1,244,1064,245,-1,1065,1062,1066,-1,1062,1065,1063,-1,1067,1065,1068,-1,1067,1069,1065,-1,877,1064,249,-1,877,1066,1064,-1,244,19,954,-1,243,19,244,-1,1021,250,969,-1,1021,879,250,-1,1070,877,876,-1,877,1070,1068,-1,338,1071,1070,-1,1071,338,337,-1,335,248,336,-1,876,248,335,-1,963,1039,959,-1,963,1072,1039,-1,874,1073,309,-1,874,841,1073,-1,1074,326,873,-1,1074,327,326,-1,340,872,10,-1,340,1075,872,-1,258,9,11,-1,9,258,316,-1,1076,873,870,-1,873,1076,1074,-1,112,1020,871,-1,1020,112,928,-1,1075,117,872,-1,1075,994,117,-1,868,253,924,-1,254,253,868,-1,1077,870,869,-1,1076,870,1077,-1,115,1078,1079,-1,265,1078,115,-1,867,111,264,-1,867,995,111,-1,1080,867,866,-1,867,1080,261,-1,310,1081,992,-1,1081,269,266,-1,310,269,1081,-1,913,1018,914,-1,913,1045,1018,-1,866,865,1017,-1,263,865,866,-1,1080,273,138,-1,1080,274,273,-1,864,275,274,-1,864,863,275,-1,863,278,280,-1,863,287,278,-1,1047,6,8,-1,6,1047,1082,-1,347,990,3,-1,347,346,990,-1,988,343,987,-1,344,343,988,-1,97,289,991,-1,860,289,97,-1,168,283,170,-1,985,283,168,-1,136,862,311,-1,862,136,321,-1,992,855,310,-1,992,991,855,-1,97,857,860,-1,97,96,857,-1,266,852,1081,-1,266,850,852,-1,318,859,101,-1,859,318,320,-1,253,299,924,-1,301,299,253,-1,923,857,858,-1,298,857,923,-1,292,257,1079,-1,292,295,257,-1,1078,855,291,-1,855,1078,856,-1,853,321,322,-1,853,285,321,-1,850,317,851,-1,850,304,317,-1,308,849,319,-1,308,307,849,-1,852,849,848,-1,852,851,849,-1,339,837,27,-1,339,962,837,-1,73,1083,79,-1,940,1083,73,-1,846,938,75,-1,69,938,846,-1,847,630,70,-1,630,847,978,-1,982,81,980,-1,937,81,982,-1,204,939,205,-1,1084,939,204,-1,1039,930,1038,-1,931,930,1039,-1,981,845,843,-1,981,1072,845,-1,875,842,844,-1,934,842,875,-1,841,1085,1073,-1,840,1085,841,-1,71,1086,839,-1,71,629,1086,-1,172,929,878,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getcoccyx_Geo_5_103_coordIndex_6()
		{
			int[] value = {936,929,172,-1,85,933,935,-1,933,85,87,-1,838,90,932,-1,838,95,90,-1,52,833,832,-1,52,46,833,-1,53,947,56,-1,53,831,947,-1,828,829,830,-1,827,829,828,-1,128,210,825,-1,212,210,128,-1,288,218,826,-1,288,219,218,-1,677,668,383,-1,776,668,677,-1,637,710,709,-1,710,637,635,-1,704,639,641,-1,704,706,639,-1,823,681,824,-1,603,681,823,-1,725,1087,724,-1,614,1087,725,-1,617,724,1087,-1,617,723,724,-1,620,754,569,-1,620,622,754,-1,819,721,718,-1,721,819,755,-1,979,585,628,-1,979,200,585,-1,716,584,775,-1,716,627,584,-1,717,551,552,-1,717,714,551,-1,623,777,779,-1,623,625,777,-1,618,1088,502,-1,618,1089,1088,-1,501,1090,615,-1,1090,501,588,-1,612,1091,1092,-1,612,1093,1091,-1,610,778,1094,-1,610,1095,778,-1,619,616,1096,-1,619,609,616,-1,722,1097,611,-1,1097,722,621,-1,613,720,719,-1,613,1098,720,-1,713,624,626,-1,624,713,715,-1,1099,412,821,-1,412,1099,413,-1,426,423,417,-1,426,419,423,-1,447,674,428,-1,674,447,807,-1,1100,464,818,-1,815,464,1100,-1,816,600,599,-1,816,461,600,-1,675,571,760,-1,571,675,808,-1,804,468,431,-1,804,803,468,-1,758,420,757,-1,758,418,420,-1,757,425,1101,-1,420,425,757,-1,1102,816,438,-1,1102,733,816,-1,434,735,815,-1,734,735,434,-1,1103,675,759,-1,675,1103,673,-1,758,727,451,-1,758,573,727,-1,984,812,911,-1,984,1104,812,-1,757,1105,572,-1,757,1101,1105,-1,1106,824,1107,-1,824,1106,823,-1,671,679,672,-1,671,674,679,-1,805,807,447,-1,805,728,807,-1,605,680,602,-1,605,1108,680,-1,809,670,1109,-1,809,671,670,-1,811,429,428,-1,811,473,429,-1,803,469,468,-1,469,803,806,-1,475,743,594,-1,743,475,476,-1,1110,474,467,-1,474,1110,1111,-1,432,487,818,-1,595,487,432,-1,743,800,488,-1,800,743,478,-1,485,730,729,-1,485,802,730,-1,1112,800,484,-1,801,800,1112,-1,735,1102,462,-1,733,1102,735,-1,458,460,734,-1,458,459,460,-1,732,497,498,-1,497,732,731,-1,1113,608,1114,-1,608,1113,607,-1,493,667,499,-1,490,667,493,-1,1114,1115,820,-1,608,1115,1114,-1,817,502,1088,-1,817,449,502,-1,394,798,504,-1,798,394,395,-1,506,390,391,-1,506,1116,390,-1,1116,1067,1071,-1,1117,1067,1116,-1,798,1118,799,-1,508,1118,798,-1,1119,507,799,-1,1119,1120,507,-1,1121,1117,505,-1,1122,1117,1121,-1,1122,1123,1069,-1,1124,1123,1122,-1,797,1121,1120,-1,797,1125,1121,-1,1126,660,1127,-1,1126,659,660,-1,1128,797,794,-1,1128,1125,797,-1,793,1123,1124,-1,240,1123,793,-1,791,1128,792,-1,1128,791,793,-1,700,239,791,-1,239,700,47,-1,792,701,702,-1,792,1129,701,-1,745,1130,781,-1,745,744,1130,-1,591,377,789,-1,377,591,593,-1,592,520,374,-1,520,592,745,-1,663,518,567,-1,663,521,518,-1,1131,790,789,-1,1055,790,1131,-1,525,1131,376,-1,525,522,1131,-1,661,375,519,-1,661,1132,375,-1,645,1132,661,-1,1132,645,653,-1,1049,691,788,-1,1049,32,691,-1,785,692,786,-1,785,787,692,-1,649,784,783,-1,784,649,651,-1,762,785,783,-1,526,785,762,-1,528,788,787,-1,1133,788,528,-1,782,1050,1133,-1,782,974,1050,-1,1130,565,781,-1,565,1130,1134,-1,809,814,810,-1,814,809,1135,-1,605,1136,1108,-1,605,604,1136,-1,1136,1137,1138,-1,1137,1136,1139,-1,1140,467,533,-1,1140,1110,467,-1,574,1141,1142,-1,574,576,1141,-1,545,1141,1140,-1,545,1143,1141,-1,358,1144,540,-1,1144,358,355,-1,1139,538,1137,-1,1139,780,538,-1,736,1042,1145,-1,736,1146,1042,-1,737,1086,402,-1,737,1147,1086,-1,597,777,738,-1,597,779,777,-1,776,1095,668,-1,776,778,1095,-1,544,1148,543,-1,1148,544,689,-1,775,586,774,-1,586,775,584,-1,773,755,819,-1,755,773,753,-1,774,1149,549,-1,1149,774,1150,-1,770,773,550,-1,771,773,770,-1,756,772,688,-1,756,753,772,-1,1151,380,1152,-1,380,1151,655,-1,1149,767,770,-1,1149,1153,767,-1,752,1150,1154,-1,752,1155,1150,-1,749,1155,752,-1,1156,1155,749,-1,1157,767,1153,-1,768,767,1157,-1,656,378,380,-1,768,378,656,-1,556,1157,1156,-1,556,1158,1157,-1,751,1030,1159,-1,1035,1030,751,-1,378,747,381,-1,378,1158,747,-1,1160,1161,678,-1,1161,1160,1162,-1,1163,1164,1165,-1,1164,1163,1166,-1,583,1015,1167,-1,199,1015,583,-1,765,1161,1165,-1,765,764,1161,-1,1168,1026,185,-1,1026,1168,1169,-1,765,1170,766,-1,765,1171,1170,-1,683,566,764,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getcoccyx_Geo_5_103_coordIndex_7()
		{
			int[] value = {666,566,683,-1,742,683,766,-1,742,682,683,-1,184,763,1172,-1,184,179,763,-1,1173,742,1174,-1,742,1173,740,-1,698,1175,699,-1,1025,1175,698,-1,1176,784,1177,-1,761,784,1176,-1,1022,1178,1023,-1,1178,1022,579,-1,532,577,530,-1,532,558,577,-1,689,1115,1148,-1,1115,689,820,-1,1111,479,474,-1,1111,477,479,-1,813,911,812,-1,813,910,911,-1,730,547,496,-1,730,1179,547,-1,822,794,796,-1,822,1129,794,-1,684,705,703,-1,705,684,1180,-1,529,530,578,-1,527,530,529,-1,560,1178,557,-1,560,1181,1178,-1,561,699,1175,-1,561,563,699,-1,1170,763,1174,-1,1170,1172,763,-1,1164,1168,1171,-1,1164,1169,1168,-1,1159,749,751,-1,554,749,1159,-1,1154,750,752,-1,1154,1167,750,-1,1146,598,780,-1,598,1146,736,-1,604,1139,1136,-1,1139,604,1182,-1,813,601,1183,-1,601,813,471,-1,381,748,711,-1,381,747,748,-1,1152,1127,1151,-1,1127,1152,1126,-1,587,1091,588,-1,587,1184,1091,-1,642,744,640,-1,1130,744,642,-1,633,1160,1134,-1,1160,633,632,-1,631,1163,1162,-1,1163,631,634,-1,739,636,638,-1,739,1166,636,-1,820,382,821,-1,820,689,382,-1,537,776,677,-1,537,738,776,-1,1145,737,736,-1,1145,1147,737,-1,1177,559,1176,-1,564,559,1177,-1,548,1179,1143,-1,1179,548,547,-1,1100,732,435,-1,489,732,1100,-1,486,1113,731,-1,486,801,1113,-1,495,1112,729,-1,1112,495,607,-1,1002,491,1077,-1,1002,1183,491,-1,428,671,811,-1,428,674,671,-1,1185,1107,1103,-1,1185,1106,1107,-1,1103,1104,1185,-1,759,1104,1103,-1,453,728,805,-1,453,452,728,-1,483,574,481,-1,574,483,575,-1,1087,404,1089,-1,1087,614,404,-1,617,1089,618,-1,617,1087,1089,-1,1097,612,611,-1,612,1097,1093,-1,1094,613,610,-1,1094,1098,613,-1,624,1094,625,-1,624,1098,1094,-1,411,623,403,-1,411,626,623,-1,638,353,130,-1,353,638,637,-1,639,633,642,-1,365,633,639,-1,512,641,640,-1,641,512,369,-1,369,513,370,-1,369,512,513,-1,516,370,513,-1,370,516,373,-1,517,373,516,-1,373,517,372,-1,647,563,697,-1,563,647,699,-1,697,740,1173,-1,697,696,740,-1,741,696,694,-1,740,696,741,-1,694,693,741,-1,694,650,693,-1,654,524,523,-1,654,690,524,-1,1052,690,31,-1,524,690,1052,-1,1136,1109,1108,-1,1136,1138,1109,-1,1126,746,1180,-1,746,1126,1152,-1,684,796,657,-1,684,822,796,-1,1186,687,1187,-1,685,687,1186,-1,1151,687,686,-1,1151,1127,687,-1,658,1119,1188,-1,658,795,1119,-1,769,772,771,-1,772,769,1189,-1,1189,656,655,-1,1189,769,656,-1,1187,1118,1186,-1,1188,1118,1187,-1,1184,413,1099,-1,413,1184,587,-1,806,455,454,-1,455,806,803,-1,805,454,453,-1,454,805,806,-1,676,383,542,-1,383,676,677,-1,669,1099,384,-1,1099,669,1184,-1,667,817,500,-1,667,443,817,-1,665,521,663,-1,521,665,662,-1,662,643,645,-1,665,643,662,-1,741,664,682,-1,741,693,664,-1,1188,660,658,-1,1188,1187,660,-1,686,655,1151,-1,686,1189,655,-1,1189,688,772,-1,688,1189,686,-1,1187,1127,660,-1,687,1127,1187,-1,1188,799,1118,-1,799,1188,1119,-1,659,1180,684,-1,1126,1180,659,-1,379,1152,380,-1,379,746,1152,-1,974,578,975,-1,782,578,974,-1,692,652,786,-1,652,692,654,-1,652,649,786,-1,644,649,652,-1,697,648,647,-1,697,1173,648,-1,371,702,367,-1,702,371,700,-1,362,748,589,-1,362,359,748,-1,711,359,364,-1,748,359,711,-1,978,628,408,-1,978,979,628,-1,409,716,713,-1,409,627,716,-1,720,714,717,-1,715,714,720,-1,1097,1090,1093,-1,1096,1090,1097,-1,1096,615,1090,-1,616,615,1096,-1,389,387,725,-1,389,388,387,-1,808,573,571,-1,727,573,808,-1,681,602,680,-1,603,602,681,-1,984,1185,1104,-1,984,986,1185,-1,987,1185,986,-1,1185,987,1106,-1,679,1103,1107,-1,673,1103,679,-1,572,463,726,-1,572,1105,463,-1,1183,492,491,-1,1183,601,492,-1,801,607,1113,-1,801,1112,607,-1,558,1176,559,-1,558,532,1176,-1,695,564,1177,-1,564,695,562,-1,634,1166,1163,-1,1166,634,636,-1,632,1162,1160,-1,1162,632,631,-1,642,1134,1130,-1,1134,642,633,-1,1134,678,565,-1,678,1134,1160,-1,910,1183,1002,-1,1183,910,813,-1,599,471,439,-1,601,471,599,-1,481,1142,802,-1,481,574,1142,-1,780,1182,1146,-1,780,1139,1182,-1,402,596,737,-1,596,402,401,-1,586,1167,1154,-1,586,583,1167,-1,554,582,555,-1,554,1159,582,-1,1166,1169,1164,-1,1169,1166,739,-1,1172,1171,1168,-1,1170,1171,1172,-1,1174,648,1173,-1,1174,763,648,-1,1175,560,561,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getcoccyx_Geo_5_103_coordIndex_8()
		{
			int[] value = {560,1175,1181,-1,579,557,1178,-1,577,557,579,-1,1167,1014,750,-1,1015,1014,1167,-1,355,1135,1144,-1,814,1135,355,-1,708,1180,746,-1,1180,708,705,-1,1179,802,1142,-1,1179,730,802,-1,575,477,1111,-1,575,483,477,-1,678,764,566,-1,1161,764,678,-1,494,1148,1115,-1,494,546,1148,-1,509,685,1186,-1,568,685,509,-1,975,579,1022,-1,579,975,578,-1,1023,1181,1024,-1,1023,1178,1181,-1,532,761,1176,-1,532,531,761,-1,1024,1175,1025,-1,1181,1175,1024,-1,651,1177,784,-1,1177,651,695,-1,1174,766,1170,-1,1174,742,766,-1,666,567,566,-1,663,567,666,-1,1168,184,1172,-1,1168,185,184,-1,1165,1171,765,-1,1164,1171,1165,-1,739,1026,1169,-1,1026,739,129,-1,582,63,580,-1,582,1027,63,-1,1165,1162,1163,-1,1165,1161,1162,-1,379,711,712,-1,379,381,711,-1,553,1158,556,-1,747,1158,553,-1,1159,1027,582,-1,1159,1030,1027,-1,554,1156,749,-1,554,556,1156,-1,768,1158,378,-1,1157,1158,768,-1,1156,1153,1155,-1,1157,1153,1156,-1,1035,750,1014,-1,751,750,1035,-1,1155,1149,1150,-1,1155,1153,1149,-1,568,688,685,-1,568,756,688,-1,1149,550,549,-1,770,550,1149,-1,1154,774,586,-1,1150,774,1154,-1,550,819,552,-1,550,773,819,-1,669,1095,1092,-1,669,668,1095,-1,546,543,1148,-1,546,548,543,-1,543,1143,545,-1,548,1143,543,-1,540,676,358,-1,676,540,537,-1,1041,1146,1182,-1,1041,1042,1146,-1,1137,540,1144,-1,1137,538,540,-1,536,357,356,-1,357,536,534,-1,545,533,535,-1,533,545,1140,-1,1143,1142,1141,-1,1143,1179,1142,-1,1110,1141,576,-1,1141,1110,1140,-1,1144,1138,1137,-1,1144,1135,1138,-1,606,1182,604,-1,1041,1182,606,-1,1138,809,1109,-1,1138,1135,809,-1,529,1133,528,-1,529,782,1133,-1,1133,1049,788,-1,1050,1049,1133,-1,526,787,785,-1,528,787,526,-1,524,1051,522,-1,1051,524,1052,-1,653,525,1132,-1,525,653,523,-1,665,693,643,-1,693,665,664,-1,1132,376,375,-1,1132,525,376,-1,522,1055,1131,-1,522,1051,1055,-1,376,789,377,-1,1131,789,376,-1,519,374,520,-1,519,375,374,-1,567,781,565,-1,567,518,781,-1,377,592,374,-1,377,593,592,-1,510,640,744,-1,510,512,640,-1,703,1129,822,-1,1129,703,701,-1,1129,1128,794,-1,1129,792,1128,-1,1125,793,1124,-1,793,1125,1128,-1,795,1120,1119,-1,795,797,1120,-1,1125,1122,1121,-1,1125,1124,1122,-1,1122,1067,1117,-1,1069,1067,1122,-1,1120,505,507,-1,505,1120,1121,-1,657,795,658,-1,657,796,795,-1,508,1186,1118,-1,509,1186,508,-1,505,1116,506,-1,505,1117,1116,-1,1071,390,1116,-1,1071,337,390,-1,504,391,394,-1,504,506,391,-1,1092,1184,669,-1,1184,1092,1091,-1,1088,500,817,-1,500,1088,406,-1,407,1074,499,-1,1074,407,327,-1,497,820,412,-1,1114,820,497,-1,414,436,498,-1,414,448,436,-1,499,1076,493,-1,499,1074,1076,-1,1115,495,494,-1,1115,608,495,-1,731,1114,497,-1,1114,731,1113,-1,444,492,600,-1,444,490,492,-1,493,1077,491,-1,493,1076,1077,-1,818,489,1100,-1,818,487,489,-1,729,484,485,-1,1112,484,729,-1,484,478,480,-1,484,800,478,-1,1101,433,1105,-1,804,1101,457,-1,804,433,1101,-1,1111,576,575,-1,1110,576,1111,-1,476,478,743,-1,479,478,476,-1,429,474,479,-1,474,429,473,-1,810,473,811,-1,465,473,810,-1,680,1109,670,-1,680,1108,1109,-1,1107,672,679,-1,672,1107,824,-1,343,1106,987,-1,343,823,1106,-1,462,726,463,-1,462,1102,726,-1,812,759,472,-1,812,1104,759,-1,468,594,431,-1,468,470,594,-1,430,1105,433,-1,463,1105,430,-1,438,726,1102,-1,726,438,441,-1,425,457,1101,-1,457,425,424,-1,453,422,452,-1,453,415,422,-1,461,444,600,-1,461,445,444,-1,438,599,439,-1,438,816,599,-1,435,815,1100,-1,434,815,435,-1,470,427,475,-1,427,470,446,-1,417,424,426,-1,456,424,417,-1,419,421,423,-1,418,421,419,-1,419,425,420,-1,426,425,419,-1,417,422,415,-1,417,423,422,-1,384,821,382,-1,821,384,1099,-1,1098,715,720,-1,1098,624,715,-1,626,409,713,-1,626,411,409,-1,630,408,410,-1,630,978,408,-1,719,611,613,-1,611,719,722,-1,621,1096,1097,-1,621,619,1096,-1,625,778,777,-1,625,1094,778,-1,610,1092,1095,-1,610,612,1092,-1,588,1093,1090,-1,1093,588,1091,-1,615,502,501,-1,615,618,502,-1,1089,406,1088,-1,1089,404,406,-1,1086,400,402,-1,629,400,1086,-1,397,569,399,-1,397,620,569,-1,725,386,614,-1,386,725,387,-1,373,367,370,-1,371,367,373,-1,641,368,704,-1,368,641,369,-1,364,361,366,-1,364,359,361,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getcoccyx_Geo_5_103_coordIndex_9()
		{
			int[] value = {358,542,356,-1,358,676,542,-1,357,814,355,-1,814,357,466,-1,960,961,127,-1,960,203,961,-1,65,354,62,-1,65,351,354,-1,350,56,947,-1,57,56,350,-1,1058,1054,1059,-1,1054,1058,1053,-1,7,344,346,-1,7,345,344,-1,1190,90,88,-1,1190,932,90,-1,88,935,1190,-1,935,88,85,-1,929,251,878,-1,929,84,251,-1,159,936,172,-1,82,936,159,-1,80,333,78,-1,80,158,333,-1,201,979,330,-1,979,201,200,-1,332,72,197,-1,331,72,332,-1,198,76,334,-1,74,76,198,-1,205,329,206,-1,939,329,205,-1,1073,934,875,-1,1085,934,1073,-1,1072,931,1039,-1,981,931,1072,-1,204,930,1084,-1,930,204,1038,-1,933,937,982,-1,87,937,933,-1,980,83,323,-1,980,81,83,-1,79,324,77,-1,1083,324,79,-1,940,75,938,-1,940,73,75,-1,10,962,339,-1,10,12,962,-1,319,851,317,-1,851,319,849,-1,5,286,854,-1,5,277,286,-1,291,1079,1078,-1,291,292,1079,-1,924,298,923,-1,299,298,924,-1,312,313,167,-1,312,276,313,-1,862,269,311,-1,267,269,862,-1,848,165,164,-1,165,848,307,-1,852,164,1081,-1,852,848,164,-1,290,295,292,-1,290,296,295,-1,991,291,855,-1,991,289,291,-1,313,989,168,-1,313,4,989,-1,103,165,100,-1,166,165,103,-1,283,984,911,-1,984,283,985,-1,992,164,99,-1,1081,164,992,-1,346,988,990,-1,346,344,988,-1,3,281,347,-1,5,281,3,-1,277,270,286,-1,102,270,277,-1,6,109,110,-1,109,6,1082,-1,8,279,1047,-1,281,279,8,-1,275,280,854,-1,280,275,863,-1,272,267,862,-1,272,271,267,-1,138,322,136,-1,138,273,322,-1,1080,1017,274,-1,866,1017,1080,-1,864,1045,861,-1,864,1018,1045,-1,265,856,1078,-1,265,137,856,-1,261,138,259,-1,261,1080,138,-1,261,995,867,-1,261,260,995,-1,860,290,289,-1,860,300,290,-1,297,293,296,-1,303,293,297,-1,872,116,11,-1,872,117,116,-1,928,994,1075,-1,928,927,994,-1,255,870,873,-1,255,254,870,-1,1020,1075,340,-1,1020,928,1075,-1,875,309,1073,-1,314,309,875,-1,247,336,248,-1,247,252,336,-1,338,876,335,-1,1070,876,338,-1,1067,1070,1071,-1,1067,1068,1070,-1,969,247,246,-1,969,250,247,-1,249,970,246,-1,1064,970,249,-1,1068,1066,877,-1,1068,1065,1066,-1,1123,1065,1069,-1,1123,1063,1065,-1,1066,245,1064,-1,245,1066,1062,-1,955,972,968,-1,21,972,955,-1,245,1061,242,-1,1062,1061,245,-1,1123,241,1063,-1,1123,240,241,-1,1061,237,238,-1,1061,241,237,-1,239,49,237,-1,239,47,49,-1,50,238,51,-1,1060,238,50,-1,1001,141,222,-1,141,1001,139,-1,1058,146,1057,-1,1058,145,146,-1,220,140,1059,-1,220,141,140,-1,221,958,909,-1,882,958,221,-1,790,1056,1057,-1,790,1055,1056,-1,1056,890,1053,-1,890,1056,887,-1,1054,883,881,-1,886,883,1054,-1,30,1049,233,-1,1049,30,32,-1,34,230,231,-1,234,230,34,-1,229,232,228,-1,229,951,232,-1,230,174,228,-1,230,226,174,-1,233,891,234,-1,233,1048,891,-1,1050,223,1048,-1,974,223,1050,-1,1,1001,222,-1,1,1000,1001,-1,288,279,278,-1,288,1016,279,-1,1191,109,1082,-1,109,1191,926,-1,216,1191,1046,-1,216,1005,1191,-1,861,1043,894,-1,1045,1043,861,-1,1044,912,161,-1,912,1044,913,-1,1044,895,1043,-1,895,1044,1040,-1,217,208,209,-1,217,894,208,-1,215,210,211,-1,215,826,210,-1,214,1005,216,-1,213,1005,214,-1,1042,119,1145,-1,119,1042,1004,-1,1086,121,839,-1,1147,121,1086,-1,205,125,124,-1,125,205,206,-1,1038,203,960,-1,203,1038,204,-1,1019,26,896,-1,1019,29,26,-1,920,197,196,-1,920,332,197,-1,158,194,333,-1,158,157,194,-1,1036,196,195,-1,1036,1037,196,-1,194,191,900,-1,194,192,191,-1,193,160,22,-1,160,193,157,-1,835,966,973,-1,835,953,966,-1,189,1036,191,-1,1033,1036,189,-1,1037,153,1007,-1,153,1037,1034,-1,1034,156,153,-1,1034,1031,156,-1,189,1032,1033,-1,189,188,1032,-1,834,190,835,-1,834,188,190,-1,1032,1029,1031,-1,1029,1032,1028,-1,1030,154,1009,-1,1030,1035,154,-1,1029,918,1008,-1,1029,152,918,-1,150,834,836,-1,834,150,1028,-1,901,999,0,-1,901,998,999,-1,1011,997,902,-1,1011,996,997,-1,1015,202,1006,-1,1015,199,202,-1,1026,183,185,-1,1026,1010,183,-1,2,15,180,-1,2,16,15,-1,15,133,181,-1,17,133,15,-1,176,184,186,-1,179,184,176,-1,133,976,1012,-1,133,135,976,-1,1013,698,950,-1,1013,1025,698,-1,229,922,921,-1,229,173,922,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getcoccyx_Geo_5_103_coordIndex_10()
		{
			int[] value = {916,1022,1023,-1,916,915,1022,-1,106,893,892,-1,893,106,105,-1,1020,29,1019,-1,1020,340,29,-1,897,113,871,-1,897,899,113,-1,274,1018,864,-1,1017,1018,274,-1,899,114,113,-1,114,899,163,-1,242,341,243,-1,1060,341,242,-1,54,20,55,-1,54,971,20,-1,892,225,224,-1,892,227,225,-1,950,907,1013,-1,907,950,44,-1,176,903,1012,-1,903,176,186,-1,183,1011,904,-1,1011,183,1010,-1,156,1009,154,-1,156,1008,1009,-1,155,1007,153,-1,1007,155,1006,-1,122,1004,213,-1,122,119,1004,-1,1005,926,1191,-1,1005,1003,926,-1,925,284,993,-1,925,282,284,-1,151,836,977,-1,150,836,151,-1,968,973,966,-1,968,972,973,-1,137,311,856,-1,137,136,311,-1,1072,14,845,-1,963,14,1072,-1,139,946,948,-1,139,1001,946,-1,999,943,1000,-1,999,942,943,-1,997,941,998,-1,997,944,941,-1,945,132,131,-1,996,132,945,-1,27,340,339,-1,29,340,27,-1,203,126,961,-1,126,203,124,-1,121,1145,119,-1,1145,121,1147,-1,163,898,1040,-1,163,899,898,-1,116,1079,257,-1,116,115,1079,-1,994,118,117,-1,260,118,994,-1,995,112,111,-1,995,927,112,-1,869,1002,1077,-1,993,1002,869,-1,281,854,280,-1,5,854,281,-1,990,983,989,-1,983,990,988,-1,985,989,983,-1,985,168,989,-1,102,859,270,-1,859,102,101,-1,912,865,262,-1,912,914,865,-1,840,1190,1085,-1,1190,840,932,-1,1085,935,934,-1,935,1085,1190,-1,931,980,323,-1,931,981,980,-1,324,1084,930,-1,1083,1084,324,-1,1084,940,939,-1,940,1084,1083,-1,329,69,68,-1,69,329,938,-1,943,350,946,-1,943,349,350,-1,947,880,948,-1,947,831,880,-1,235,831,832,-1,880,831,235,-1,832,236,235,-1,832,833,236,-1,833,517,236,-1,833,372,517,-1,135,45,976,-1,45,135,41,-1,38,43,134,-1,43,38,37,-1,889,952,884,-1,952,889,35,-1,888,35,889,-1,35,888,33,-1,33,1052,31,-1,33,888,1052,-1,1047,1191,1082,-1,1191,1047,1046,-1,148,972,971,-1,148,973,972,-1,243,20,19,-1,341,20,243,-1,24,1021,965,-1,24,23,1021,-1,24,966,25,-1,968,966,24,-1,970,954,964,-1,244,954,970,-1,193,187,192,-1,193,967,187,-1,190,967,953,-1,187,967,190,-1,969,965,1021,-1,969,964,965,-1,12,963,962,-1,12,14,963,-1,268,271,305,-1,268,267,271,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getcoccyx_Geo_5_103_normalIndex_1()
		{
			int[] value = {27,3,15,-1,668,724,522,-1,540,730,438,-1,152,176,235,-1,88,152,122,-1,122,30,88,-1,62,29,32,-1,29,12,32,-1,124,204,50,-1,37,48,75,-1,75,66,37,-1,190,145,187,-1,190,160,145,-1,707,514,531,-1,707,711,514,-1,712,711,707,-1,712,709,711,-1,77,4,58,-1,77,16,4,-1,70,73,8,-1,73,13,8,-1,183,73,70,-1,183,194,73,-1,708,641,701,-1,708,693,641,-1,809,837,679,-1,679,452,809,-1,305,459,175,-1,175,61,305,-1,24,305,61,-1,24,369,305,-1,648,671,463,-1,648,627,671,-1,463,743,536,-1,463,671,743,-1,536,549,381,-1,536,743,549,-1,366,371,370,-1,370,423,366,-1,350,220,224,-1,350,352,220,-1,167,129,184,-1,167,150,129,-1,146,18,64,-1,146,92,18,-1,188,323,308,-1,188,111,323,-1,308,323,436,-1,436,406,308,-1,406,507,632,-1,406,436,507,-1,551,626,640,-1,551,487,626,-1,146,129,92,-1,146,184,129,-1,1118,1015,1159,-1,1015,1063,1159,-1,1090,951,840,-1,840,1105,1090,-1,168,80,222,-1,580,505,870,-1,505,868,870,-1,228,203,39,-1,39,19,228,-1,317,340,316,-1,316,365,317,-1,413,332,444,-1,413,297,332,-1,285,289,300,-1,285,315,289,-1,145,191,258,-1,589,639,403,-1,403,412,589,-1,110,55,104,-1,110,32,55,-1,439,333,661,-1,180,299,166,-1,180,282,299,-1,378,492,510,-1,492,476,510,-1,369,202,136,-1,369,431,202,-1,374,443,549,-1,549,404,374,-1,619,704,659,-1,619,611,704,-1,17,83,20,-1,20,1,17,-1,19,90,43,-1,19,93,90,-1,1051,1152,1189,-1,1189,1063,1051,-1,1086,845,1036,-1,845,827,1036,-1,9,1,5,-1,1,20,5,-1,46,125,126,-1,387,418,622,-1,622,583,387,-1,60,121,147,-1,60,62,121,-1,448,582,585,-1,448,415,582,-1,162,207,277,-1,162,113,207,-1,223,120,162,-1,162,277,223,-1,17,59,120,-1,120,109,17,-1,283,398,345,-1,345,238,283,-1,572,576,545,-1,545,685,572,-1,231,212,275,-1,275,289,231,-1,332,344,356,-1,332,300,344,-1,211,187,226,-1,211,190,187,-1,262,315,304,-1,262,241,315,-1,285,297,329,-1,329,272,285,-1,272,307,304,-1,272,313,307,-1,216,239,267,-1,192,53,56,-1,56,166,192,-1,490,451,546,-1,126,125,326,-1,326,394,126,-1,63,125,46,-1,46,23,63,-1,306,63,178,-1,63,36,178,-1,726,714,707,-1,714,712,707,-1,492,351,539,-1,492,378,351,-1,773,693,837,-1,837,866,773,-1,541,773,544,-1,773,738,544,-1,512,265,303,-1,303,521,512,-1,343,234,445,-1,445,504,343,-1,234,116,132,-1,132,269,234,-1,722,372,446,-1,446,628,722,-1,235,257,155,-1,235,340,257,-1,349,353,379,-1,349,365,353,-1,43,112,362,-1,362,246,43,-1,292,349,333,-1,349,661,333,-1,101,10,94,-1,101,42,10,-1,697,164,156,-1,895,949,853,-1,840,1010,1105,-1,840,646,1010,-1,497,375,771,-1,375,481,771,-1,529,827,491,-1,491,419,529,-1,697,156,520,-1,520,852,697,-1,497,442,320,-1,442,267,320,-1,225,261,144,-1,261,198,144,-1,287,199,193,-1,193,206,287,-1,917,996,1018,-1,917,861,996,-1,986,475,879,-1,314,94,218,-1,218,508,314,-1,1042,1090,1152,-1,1042,990,1090,-1,628,473,475,-1,42,67,138,-1,1172,1086,1159,-1,793,1010,646,-1,646,522,793,-1,286,232,475,-1,475,473,286,-1,199,173,155,-1,199,232,173,-1,1118,1159,1036,-1,1159,1086,1036,-1,845,1086,793,-1,691,915,914,-1,691,483,915,-1,390,439,765,-1,172,92,129,-1,129,185,172,-1,484,462,669,-1,669,615,484,-1,383,366,344,-1,366,356,344,-1,224,238,345,-1,345,350,224,-1,465,454,545,-1,454,441,545,-1,167,154,179,-1,167,184,154,-1,64,20,83,-1,83,146,64,-1,188,308,132,-1,308,269,132,-1,632,665,400,-1,400,406,632,-1,551,609,613,-1,551,640,609,-1,176,133,159,-1,377,459,204,-1,489,558,795,-1,795,829,489,-1,438,737,636,-1,438,730,737,-1,35,24,117,-1,61,108,117,-1,117,24,61,-1,536,381,281,-1,381,169,281,-1,648,463,656,-1,463,386,656,-1,902,945,954,-1,902,922,945,-1,1059,1035,1101,-1,1059,808,1035,-1,1148,1125,1075,-1,1125,1133,1075,-1,515,741,911,-1,911,821,515,-1,701,453,642,-1,453,635,642,-1,803,776,468,-1,468,470,803,-1,997,989,1102,-1,997,834,989,-1,1043,1000,1098,-1,79,728,626,-1,728,688,626,-1,623,629,616,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getcoccyx_Geo_5_103_normalIndex_2()
		{
			int[] value = {629,523,616,-1,753,904,784,-1,904,925,784,-1,993,1091,1060,-1,1091,1162,1060,-1,756,826,755,-1,756,815,826,-1,537,676,652,-1,676,718,652,-1,769,814,812,-1,814,824,812,-1,1017,1094,1049,-1,716,687,501,-1,149,324,213,-1,201,279,280,-1,918,759,500,-1,461,388,337,-1,1097,1061,1001,-1,1097,1124,1061,-1,1007,929,1033,-1,1033,1008,1007,-1,142,327,157,-1,157,71,142,-1,706,559,486,-1,486,205,706,-1,681,338,388,-1,388,461,681,-1,1022,910,963,-1,98,266,279,-1,279,201,98,-1,687,716,625,-1,625,974,687,-1,1099,918,874,-1,1099,1092,918,-1,897,706,294,-1,897,963,706,-1,271,294,177,-1,294,205,177,-1,955,976,1057,-1,976,1097,1057,-1,762,941,758,-1,1062,988,828,-1,988,681,828,-1,327,663,363,-1,363,157,327,-1,758,373,762,-1,758,290,373,-1,429,337,296,-1,429,461,337,-1,256,384,240,-1,256,359,384,-1,1082,842,458,-1,842,790,359,-1,842,962,790,-1,839,884,873,-1,839,881,884,-1,820,788,823,-1,820,770,788,-1,1053,985,1153,-1,1008,963,897,-1,950,1017,956,-1,777,652,718,-1,777,731,652,-1,910,1052,813,-1,910,1071,1052,-1,760,664,493,-1,760,700,664,-1,1060,1162,1077,-1,1162,1141,1077,-1,913,801,916,-1,801,838,916,-1,740,528,675,-1,528,560,675,-1,1139,1040,999,-1,1139,1135,1040,-1,562,513,654,-1,562,450,513,-1,864,798,502,-1,798,638,502,-1,948,798,1067,-1,1067,1121,948,-1,947,758,941,-1,941,977,947,-1,977,966,947,-1,977,975,966,-1,894,900,903,-1,894,898,900,-1,994,945,935,-1,994,975,945,-1,957,966,991,-1,957,908,966,-1,1044,1093,943,-1,912,1028,959,-1,1028,1012,959,-1,780,535,647,-1,780,783,535,-1,1016,1112,1106,-1,1106,983,1016,-1,1031,1119,992,-1,1031,1126,1119,-1,1187,1177,1184,-1,1093,1044,1153,-1,1044,1053,1153,-1,1182,1162,1186,-1,1182,1141,1162,-1,25,14,135,-1,14,2,135,-1,1003,392,660,-1,948,970,742,-1,970,797,742,-1,647,519,425,-1,647,547,519,-1,511,761,612,-1,511,757,761,-1,1163,1170,1052,-1,1052,1071,1163,-1,780,647,702,-1,647,425,702,-1,528,740,543,-1,740,749,543,-1,801,891,651,-1,801,913,891,-1,745,1001,1061,-1,745,844,1001,-1,903,857,890,-1,903,893,857,-1,426,561,823,-1,823,732,426,-1,489,505,342,-1,342,376,489,-1,580,532,319,-1,580,577,532,-1,874,501,687,-1,920,985,978,-1,993,1066,1091,-1,889,1023,995,-1,889,1005,1023,-1,676,79,615,-1,676,728,79,-1,537,728,676,-1,537,680,728,-1,953,928,670,-1,670,658,953,-1,1091,1066,1138,-1,1138,1110,1091,-1,1138,1173,1127,-1,1127,1110,1138,-1,825,932,867,-1,825,833,932,-1,763,769,695,-1,763,814,769,-1,645,812,756,-1,645,649,812,-1,1101,1056,1055,-1,1055,1133,1101,-1,1133,1047,1075,-1,1133,1055,1047,-1,1035,1056,1101,-1,1035,998,1056,-1,899,998,1035,-1,899,901,998,-1,799,901,899,-1,799,787,901,-1,1085,972,1021,-1,1085,1014,972,-1,1113,1180,1073,-1,622,644,846,-1,846,772,622,-1,1155,1188,1191,-1,1155,1180,1188,-1,1073,923,875,-1,1073,1180,923,-1,923,460,513,-1,513,875,923,-1,1102,1115,1081,-1,1074,1065,1142,-1,1065,1122,1142,-1,1087,1167,1073,-1,1040,1167,1087,-1,1040,1135,1167,-1,1161,1176,1168,-1,1161,1165,1176,-1,748,731,777,-1,1022,1071,910,-1,1022,1049,1071,-1,1098,973,1104,-1,1098,1000,973,-1,994,935,1043,-1,754,621,548,-1,477,672,399,-1,926,894,938,-1,1166,1177,1187,-1,524,672,477,-1,653,754,471,-1,1049,956,1017,-1,1049,1094,1163,-1,1163,1071,1049,-1,1165,1160,1176,-1,1165,1129,1160,-1,1074,1142,984,-1,1146,1120,1114,-1,1146,1156,1120,-1,1039,994,1043,-1,1039,991,994,-1,618,531,514,-1,618,617,531,-1,460,617,618,-1,460,449,617,-1,1180,1131,1188,-1,1180,1113,1131,-1,1178,1191,1188,-1,1178,1183,1191,-1,1117,1119,1183,-1,1183,1178,1117,-1,987,1119,1117,-1,987,992,1119,-1,644,596,883,-1,883,846,644,-1,457,701,641,-1,457,453,701,-1,382,515,361,-1,382,741,515,-1,734,1020,741,-1,741,382,734,-1,886,1020,734,-1,886,1130,1020,-1,1164,1130,886,-1,886,822,1164,-1,627,736,519,-1,627,648,736,-1,519,518,425,-1,519,736,518,-1,425,808,702,-1,425,518,808,-1,850,1148,739,-1,850,1125,1148,-1,739,1164,822,-1,739,1148,1164,-1,824,815,812,-1,815,756,812,-1,847,964,960,-1,847,835,964,-1,1026,1006,1064,-1,1064,1041,1026,-1,1046,1127,1173,-1,1173,1100,1046,-1,1066,904,921,-1,1066,993,904,-1,921,753,725,-1,921,904,753,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getcoccyx_Geo_5_103_normalIndex_3()
		{
			int[] value = {725,629,713,-1,725,753,629,-1,688,640,626,-1,688,623,640,-1,1046,1100,1064,-1,1064,1006,1046,-1,71,25,135,-1,135,200,71,-1,266,82,347,-1,266,98,82,-1,1016,970,1112,-1,505,580,319,-1,319,342,505,-1,968,1153,985,-1,968,1175,1153,-1,839,849,854,-1,854,881,839,-1,328,981,271,-1,328,924,981,-1,781,750,857,-1,857,893,781,-1,903,890,907,-1,907,894,903,-1,1043,935,1000,-1,589,787,639,-1,589,782,787,-1,1160,1083,1136,-1,1160,1078,1083,-1,745,533,844,-1,913,1011,891,-1,1011,1027,891,-1,740,801,749,-1,801,651,749,-1,739,822,989,-1,822,1054,989,-1,817,702,751,-1,817,780,702,-1,643,506,466,-1,643,655,506,-1,1174,1171,1109,-1,1174,1190,1171,-1,139,2,40,-1,139,135,2,-1,346,157,363,-1,346,107,157,-1,1190,1186,1171,-1,1190,1182,1186,-1,1144,1067,1068,-1,1106,1031,983,-1,1106,1126,1031,-1,805,622,772,-1,805,583,622,-1,1132,1045,1070,-1,1070,1129,1132,-1,1081,931,1004,-1,1081,1019,931,-1,969,1019,1072,-1,969,931,1019,-1,1134,1174,1072,-1,1174,1084,1072,-1,794,912,841,-1,912,959,841,-1,572,612,576,-1,572,511,612,-1,965,919,982,-1,965,907,919,-1,857,826,872,-1,872,890,857,-1,991,975,994,-1,991,966,975,-1,903,860,893,-1,903,900,860,-1,977,941,954,-1,1139,999,1137,-1,999,1027,1137,-1,703,638,742,-1,1068,1067,864,-1,1067,798,864,-1,1068,1128,1144,-1,1128,1169,1144,-1,1128,885,1013,-1,1013,1155,1128,-1,455,488,449,-1,488,617,449,-1,634,543,749,-1,634,593,543,-1,740,675,838,-1,838,801,740,-1,421,336,457,-1,336,361,457,-1,421,541,474,-1,541,544,474,-1,684,888,927,-1,684,673,888,-1,958,848,760,-1,848,700,760,-1,1077,958,1060,-1,958,925,1060,-1,486,748,820,-1,486,559,748,-1,956,1033,929,-1,929,854,956,-1,839,806,818,-1,839,873,806,-1,1082,1145,962,-1,962,842,1082,-1,873,844,533,-1,873,884,844,-1,458,842,359,-1,359,256,458,-1,1092,1099,1181,-1,1181,1150,1092,-1,495,988,1029,-1,296,337,240,-1,509,82,208,-1,509,347,82,-1,810,715,621,-1,715,432,621,-1,663,699,363,-1,663,775,699,-1,988,495,681,-1,495,338,681,-1,762,715,941,-1,715,863,941,-1,924,955,1002,-1,955,1057,1002,-1,981,1007,1008,-1,1008,897,981,-1,328,271,196,-1,271,177,196,-1,205,294,706,-1,874,974,1099,-1,874,687,974,-1,149,40,98,-1,98,201,149,-1,559,706,727,-1,1150,1061,1124,-1,14,25,107,-1,208,399,509,-1,399,672,509,-1,910,706,963,-1,910,727,706,-1,1008,1033,1022,-1,1022,963,1008,-1,1057,1097,1001,-1,1001,961,1057,-1,25,71,157,-1,157,107,25,-1,346,399,107,-1,828,429,745,-1,676,615,718,-1,615,669,718,-1,825,872,826,-1,826,815,825,-1,964,835,959,-1,835,841,959,-1,695,612,761,-1,761,763,695,-1,1026,1012,1037,-1,1037,1006,1026,-1,1127,1109,1171,-1,1127,1046,1109,-1,904,993,925,-1,993,1060,925,-1,629,753,523,-1,753,784,523,-1,640,623,609,-1,623,616,609,-1,670,1066,921,-1,670,928,1066,-1,1017,1032,1058,-1,816,984,734,-1,489,376,558,-1,376,401,558,-1,754,548,456,-1,456,471,754,-1,1148,1075,1164,-1,1130,1164,1085,-1,1164,1075,1085,-1,808,518,1035,-1,518,899,1035,-1,648,656,799,-1,799,736,648,-1,262,239,270,-1,262,263,239,-1,131,86,169,-1,169,381,131,-1,74,35,57,-1,35,117,57,-1,452,679,284,-1,679,368,284,-1,708,701,530,-1,701,642,530,-1,195,91,202,-1,202,355,195,-1,145,95,191,-1,79,626,487,-1,487,464,79,-1,632,551,665,-1,551,613,665,-1,308,406,269,-1,406,400,269,-1,423,437,356,-1,356,366,423,-1,484,674,462,-1,674,527,462,-1,233,115,130,-1,115,21,130,-1,385,397,371,-1,397,370,371,-1,176,152,88,-1,483,691,508,-1,1042,980,865,-1,990,914,915,-1,276,692,433,-1,733,853,804,-1,97,189,138,-1,138,67,97,-1,199,155,257,-1,257,193,199,-1,1048,1036,862,-1,1048,1118,1036,-1,475,986,628,-1,986,722,628,-1,520,804,852,-1,520,733,804,-1,173,232,286,-1,951,1090,915,-1,1090,990,915,-1,483,508,555,-1,508,218,555,-1,94,314,276,-1,276,101,94,-1,287,879,475,-1,475,232,287,-1,861,944,996,-1,944,1048,996,-1,879,917,986,-1,917,1018,986,-1,442,434,267,-1,156,127,520,-1,127,390,520,-1,862,827,529,-1,862,1036,827,-1,434,442,819,-1,819,906,434,-1,765,895,853,-1,853,733,765,-1,112,735,362,-1,362,831,407,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getcoccyx_Geo_5_103_normalIndex_4()
		{
			int[] value = {407,246,362,-1,246,228,43,-1,228,19,43,-1,317,349,292,-1,317,365,349,-1,372,367,409,-1,409,422,372,-1,137,39,203,-1,199,287,232,-1,237,235,176,-1,417,462,527,-1,527,469,417,-1,286,380,130,-1,130,122,286,-1,504,686,498,-1,504,445,686,-1,28,132,116,-1,116,51,28,-1,378,282,278,-1,278,351,378,-1,528,492,560,-1,492,539,560,-1,53,192,151,-1,151,54,53,-1,106,334,119,-1,106,391,334,-1,614,538,683,-1,683,744,614,-1,394,326,690,-1,690,546,394,-1,394,242,126,-1,242,72,126,-1,243,267,434,-1,243,216,267,-1,304,285,272,-1,304,315,285,-1,187,258,270,-1,270,226,187,-1,293,190,211,-1,293,253,190,-1,148,247,100,-1,165,238,179,-1,165,283,238,-1,147,76,60,-1,147,170,76,-1,147,236,264,-1,147,121,236,-1,168,209,80,-1,209,89,80,-1,161,183,70,-1,70,65,161,-1,3,7,15,-1,9,5,28,-1,28,51,9,-1,607,419,610,-1,419,491,610,-1,1172,1159,1189,-1,1159,1063,1189,-1,186,534,800,-1,222,242,451,-1,451,395,222,-1,168,302,325,-1,325,209,168,-1,657,743,671,-1,671,637,657,-1,685,545,441,-1,441,435,685,-1,122,130,21,-1,21,30,122,-1,657,549,743,-1,657,404,549,-1,492,528,476,-1,528,543,476,-1,282,378,299,-1,378,510,299,-1,285,300,332,-1,332,297,285,-1,89,65,34,-1,34,44,89,-1,767,367,620,-1,767,467,367,-1,505,489,829,-1,829,868,505,-1,580,870,662,-1,662,577,580,-1,314,508,691,-1,274,215,203,-1,188,102,111,-1,301,197,172,-1,172,185,301,-1,464,615,79,-1,464,484,615,-1,554,484,464,-1,554,674,484,-1,248,233,557,-1,557,630,248,-1,111,102,84,-1,84,49,111,-1,49,64,18,-1,49,84,64,-1,364,309,254,-1,364,383,309,-1,385,465,397,-1,385,454,465,-1,649,423,370,-1,649,645,423,-1,134,86,57,-1,57,141,134,-1,141,117,143,-1,141,57,117,-1,210,86,134,-1,210,169,86,-1,273,281,169,-1,169,210,273,-1,403,281,273,-1,403,386,281,-1,639,386,403,-1,639,656,386,-1,174,182,229,-1,174,108,182,-1,77,119,16,-1,644,622,418,-1,418,357,644,-1,194,183,321,-1,321,357,194,-1,73,104,55,-1,55,13,73,-1,36,0,4,-1,4,16,36,-1,119,334,268,-1,268,16,119,-1,91,113,78,-1,128,124,68,-1,124,50,68,-1,106,119,26,-1,54,106,26,-1,54,151,106,-1,29,22,12,-1,29,31,22,-1,446,417,469,-1,152,173,122,-1,173,286,122,-1,95,87,219,-1,219,191,95,-1,187,145,258,-1,438,636,481,-1,724,793,522,-1,241,252,315,-1,218,697,555,-1,218,164,697,-1,191,241,258,-1,191,252,241,-1,41,87,95,-1,41,6,87,-1,473,446,469,-1,628,446,473,-1,54,22,31,-1,54,26,22,-1,77,26,119,-1,77,22,26,-1,12,55,32,-1,55,12,58,-1,68,171,128,-1,171,68,105,-1,78,66,47,-1,96,66,78,-1,37,96,59,-1,37,66,96,-1,38,105,68,-1,38,75,105,-1,343,171,158,-1,343,335,171,-1,140,50,204,-1,140,33,50,-1,45,202,91,-1,136,202,45,-1,451,584,568,-1,451,490,584,-1,268,712,178,-1,268,709,712,-1,36,268,178,-1,36,16,268,-1,13,0,8,-1,13,4,0,-1,418,194,357,-1,288,194,418,-1,644,321,596,-1,644,357,321,-1,837,708,679,-1,837,693,708,-1,452,459,809,-1,175,459,452,-1,443,381,549,-1,381,443,131,-1,74,431,35,-1,74,341,431,-1,131,341,74,-1,131,443,341,-1,369,35,431,-1,35,369,24,-1,465,579,397,-1,586,579,465,-1,350,385,352,-1,454,385,350,-1,224,150,167,-1,224,220,150,-1,115,118,114,-1,115,81,118,-1,233,81,115,-1,233,248,81,-1,487,632,507,-1,632,487,551,-1,1189,1010,1172,-1,1189,1105,1010,-1,868,730,540,-1,868,829,730,-1,785,604,710,-1,604,785,597,-1,785,598,597,-1,785,796,598,-1,802,668,768,-1,802,724,668,-1,217,1063,1015,-1,227,1063,217,-1,367,416,409,-1,467,416,367,-1,274,353,298,-1,330,353,274,-1,206,861,917,-1,261,861,206,-1,44,80,89,-1,80,44,72,-1,65,8,34,-1,65,70,8,-1,259,210,181,-1,259,273,210,-1,99,141,69,-1,99,134,141,-1,52,174,103,-1,52,143,174,-1,27,52,3,-1,27,69,52,-1,416,607,606,-1,416,419,607,-1,529,767,862,-1,529,467,767,-1,90,112,43,-1,186,112,90,-1,430,329,405,-1,360,329,430,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getcoccyx_Geo_5_103_normalIndex_5()
		{
			int[] value = {332,437,444,-1,332,356,437,-1,720,435,525,-1,435,720,685,-1,637,682,657,-1,682,637,729,-1,408,259,255,-1,408,412,259,-1,264,415,448,-1,264,236,415,-1,418,249,288,-1,387,249,418,-1,209,331,161,-1,209,325,331,-1,168,395,302,-1,168,222,395,-1,567,720,659,-1,567,569,720,-1,322,263,307,-1,322,320,263,-1,140,369,136,-1,140,305,369,-1,936,800,877,-1,800,936,735,-1,60,27,15,-1,60,76,27,-1,163,137,153,-1,148,137,163,-1,48,51,85,-1,48,9,51,-1,89,161,65,-1,89,209,161,-1,395,568,565,-1,395,451,568,-1,325,578,581,-1,578,325,302,-1,46,72,44,-1,72,46,126,-1,331,581,587,-1,331,325,581,-1,34,0,23,-1,34,8,0,-1,121,249,236,-1,249,121,110,-1,7,29,15,-1,7,31,29,-1,264,170,147,-1,264,255,170,-1,590,412,408,-1,590,589,412,-1,627,637,671,-1,575,637,627,-1,99,170,181,-1,76,170,99,-1,341,202,431,-1,355,202,341,-1,318,404,393,-1,318,374,404,-1,575,729,637,-1,729,575,574,-1,402,682,611,-1,682,402,393,-1,318,207,195,-1,318,310,207,-1,358,402,482,-1,358,310,402,-1,659,573,567,-1,659,704,573,-1,354,482,478,-1,482,354,358,-1,37,9,48,-1,1,9,37,-1,165,354,283,-1,165,223,354,-1,398,525,435,-1,398,478,525,-1,154,165,179,-1,109,165,154,-1,250,87,123,-1,219,87,250,-1,253,148,163,-1,148,253,247,-1,295,253,293,-1,295,247,253,-1,405,570,430,-1,571,570,405,-1,239,226,270,-1,239,216,226,-1,243,293,211,-1,243,339,293,-1,90,295,348,-1,295,90,93,-1,348,631,534,-1,348,339,631,-1,312,307,313,-1,322,307,312,-1,430,577,662,-1,430,570,577,-1,375,312,291,-1,322,312,375,-1,694,546,690,-1,490,546,694,-1,594,694,726,-1,594,591,694,-1,714,326,306,-1,714,690,326,-1,595,538,614,-1,595,588,538,-1,744,334,391,-1,744,683,334,-1,58,22,77,-1,58,12,22,-1,705,391,428,-1,391,705,744,-1,592,614,689,-1,595,614,592,-1,550,705,721,-1,550,689,705,-1,414,151,192,-1,428,151,414,-1,56,7,3,-1,53,7,56,-1,299,721,414,-1,721,299,510,-1,543,550,476,-1,593,550,543,-1,229,282,180,-1,282,229,278,-1,766,459,377,-1,766,809,459,-1,774,766,512,-1,766,774,866,-1,738,678,677,-1,738,774,678,-1,447,303,335,-1,303,447,521,-1,650,678,494,-1,678,650,677,-1,601,650,633,-1,601,600,650,-1,498,447,504,-1,498,494,447,-1,303,124,128,-1,265,124,303,-1,85,116,158,-1,85,51,116,-1,666,498,686,-1,498,666,633,-1,613,608,666,-1,608,613,609,-1,665,445,400,-1,686,445,665,-1,6,123,87,-1,6,11,123,-1,469,556,473,-1,469,527,556,-1,599,462,417,-1,599,669,462,-1,159,237,176,-1,159,221,237,-1,155,152,235,-1,152,155,173,-1,602,417,422,-1,417,602,599,-1,203,153,137,-1,153,203,215,-1,221,316,237,-1,221,298,316,-1,367,722,620,-1,372,722,367,-1,605,422,409,-1,602,422,605,-1,317,230,260,-1,292,230,317,-1,407,228,246,-1,407,330,228,-1,807,407,831,-1,407,807,379,-1,67,244,227,-1,244,42,101,-1,67,42,244,-1,534,877,800,-1,534,631,877,-1,831,735,936,-1,362,735,831,-1,807,895,661,-1,807,949,895,-1,906,853,949,-1,906,819,853,-1,819,497,771,-1,819,442,497,-1,291,540,438,-1,540,291,440,-1,636,768,668,-1,636,737,768,-1,796,558,598,-1,795,558,796,-1,1015,225,217,-1,944,225,1015,-1,845,491,827,-1,710,491,845,-1,439,127,138,-1,127,439,390,-1,227,97,67,-1,227,217,97,-1,1015,1048,944,-1,1015,1118,1048,-1,101,433,244,-1,101,276,433,-1,915,555,951,-1,555,915,483,-1,722,1018,620,-1,986,1018,722,-1,767,1048,862,-1,996,1048,767,-1,198,257,260,-1,198,193,257,-1,230,97,144,-1,97,230,189,-1,733,390,765,-1,733,520,390,-1,276,691,692,-1,276,314,691,-1,990,865,914,-1,990,1042,865,-1,433,865,980,-1,433,692,865,-1,133,95,145,-1,133,41,95,-1,220,214,150,-1,254,214,220,-1,385,364,352,-1,371,364,385,-1,397,649,370,-1,649,397,579,-1,81,18,118,-1,49,18,81,-1,212,309,275,-1,251,309,212,-1,123,301,250,-1,197,301,123,-1,114,21,115,-1,114,11,21,-1,380,233,130,-1,557,233,380,-1,527,719,556,-1,674,719,527,-1,423,563,437,-1,423,645,563,-1,5,102,28,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getcoccyx_Geo_5_103_normalIndex_6()
		{
			int[] value = {84,102,5,-1,323,248,630,-1,248,323,111,-1,464,507,554,-1,464,487,507,-1,679,530,368,-1,679,708,530,-1,452,182,175,-1,452,284,182,-1,86,74,57,-1,131,74,86,-1,258,262,270,-1,241,262,258,-1,320,239,263,-1,320,267,239,-1,938,973,1000,-1,965,973,938,-1,799,518,736,-1,518,799,899,-1,1020,1085,1021,-1,1020,1130,1085,-1,401,471,456,-1,376,471,401,-1,713,496,725,-1,680,496,713,-1,670,725,496,-1,670,921,725,-1,1110,1171,1186,-1,1110,1127,1171,-1,1037,1046,1006,-1,1046,1037,1109,-1,586,612,695,-1,586,576,612,-1,835,761,841,-1,835,763,761,-1,1026,959,1012,-1,1026,964,959,-1,825,919,872,-1,825,867,919,-1,658,624,813,-1,658,480,624,-1,1052,1079,953,-1,1079,1052,1170,-1,995,1179,1069,-1,995,1080,1179,-1,889,982,939,-1,889,940,982,-1,1138,928,1111,-1,1138,1066,928,-1,1100,1076,1023,-1,1076,1100,1173,-1,1005,1041,1064,-1,1005,979,1041,-1,847,932,833,-1,932,847,960,-1,1151,1017,1058,-1,1017,1151,1094,-1,500,280,501,-1,500,324,280,-1,338,672,388,-1,672,338,509,-1,933,1057,961,-1,1002,1057,933,-1,196,561,426,-1,196,177,561,-1,399,14,107,-1,14,399,208,-1,1150,1062,1061,-1,1150,1181,1062,-1,40,213,139,-1,40,149,213,-1,139,759,946,-1,213,759,139,-1,245,196,142,-1,245,328,196,-1,1007,924,1002,-1,981,924,1007,-1,389,399,346,-1,399,389,477,-1,40,82,98,-1,40,2,82,-1,604,699,610,-1,604,485,699,-1,139,967,135,-1,139,946,967,-1,396,456,424,-1,456,396,401,-1,621,524,548,-1,621,672,524,-1,495,509,338,-1,495,347,509,-1,319,653,342,-1,319,752,653,-1,810,754,905,-1,810,621,754,-1,432,337,388,-1,432,373,337,-1,1181,988,1062,-1,988,1181,1029,-1,429,533,745,-1,533,429,296,-1,553,290,758,-1,290,553,311,-1,1001,884,961,-1,844,884,1001,-1,533,806,873,-1,806,533,384,-1,962,1175,968,-1,962,1145,1175,-1,859,806,790,-1,818,806,859,-1,924,245,955,-1,328,245,924,-1,897,271,981,-1,897,294,271,-1,854,950,956,-1,950,854,849,-1,892,978,971,-1,978,892,920,-1,770,748,777,-1,820,748,770,-1,971,1038,1032,-1,978,1038,971,-1,727,813,624,-1,727,910,813,-1,784,958,760,-1,958,784,925,-1,493,616,523,-1,493,526,616,-1,526,601,608,-1,552,601,526,-1,958,1034,848,-1,1077,1034,958,-1,855,700,848,-1,855,747,700,-1,698,552,664,-1,542,552,698,-1,542,603,600,-1,517,603,542,-1,673,698,747,-1,673,516,698,-1,1158,1122,1154,-1,1158,1142,1122,-1,420,673,684,-1,420,516,673,-1,474,603,517,-1,544,603,474,-1,421,420,336,-1,420,421,474,-1,457,541,421,-1,541,457,641,-1,336,382,361,-1,336,427,382,-1,1027,1089,1137,-1,1027,1011,1089,-1,749,470,634,-1,470,749,651,-1,891,999,803,-1,999,891,1027,-1,1161,1139,1184,-1,1161,1135,1139,-1,503,593,634,-1,592,593,503,-1,450,503,468,-1,450,562,503,-1,1087,776,1040,-1,1087,811,776,-1,1073,811,1087,-1,811,1073,875,-1,594,617,488,-1,594,531,617,-1,885,449,1013,-1,885,455,449,-1,1155,1169,1128,-1,1169,1155,1191,-1,1068,885,1128,-1,864,885,1068,-1,502,488,455,-1,499,488,502,-1,703,591,499,-1,703,584,591,-1,1089,1187,1137,-1,1187,1089,1140,-1,810,863,715,-1,863,810,869,-1,319,786,752,-1,319,532,786,-1,786,887,876,-1,887,786,830,-1,851,758,947,-1,851,553,758,-1,1003,843,1108,-1,1003,660,843,-1,908,843,851,-1,908,896,843,-1,922,882,898,-1,882,922,902,-1,830,900,887,-1,830,860,900,-1,781,571,566,-1,781,791,571,-1,750,563,755,-1,750,564,563,-1,890,919,907,-1,890,872,919,-1,965,940,973,-1,965,982,940,-1,991,1030,957,-1,1030,991,1039,-1,841,757,794,-1,757,841,761,-1,1084,1109,1037,-1,1109,1084,1174,-1,794,836,912,-1,836,794,723,-1,969,1084,1028,-1,1072,1084,969,-1,1190,1134,1156,-1,1190,1174,1134,-1,1143,1102,1147,-1,1102,1143,1115,-1,836,931,969,-1,836,832,931,-1,655,723,667,-1,655,717,723,-1,643,717,655,-1,792,717,643,-1,878,931,832,-1,1004,931,878,-1,1081,997,1102,-1,1004,997,1081,-1,783,878,792,-1,783,871,878,-1,466,574,472,-1,573,574,466,-1,997,817,834,-1,997,871,817,-1,1123,1116,1166,-1,1116,1123,1095,-1,1009,937,1025,-1,937,1009,934,-1,511,569,479,-1,572,569,511,-1,1045,1116,1025,-1,1045,1132,1116,-1,746,590,585,-1,590,746,789,-1,1045,952,1070,-1,1045,930,952,-1,1129,1177,1132,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getcoccyx_Geo_5_103_normalIndex_7()
		{
			int[] value = {1165,1177,1129,-1,1078,1129,1070,-1,1078,1160,1129,-1,582,805,779,-1,582,583,805,-1,909,1078,942,-1,1078,909,1083,-1,596,858,883,-1,587,858,596,-1,1149,1169,1157,-1,1144,1169,1149,-1,565,880,578,-1,880,565,797,-1,1121,970,948,-1,1121,1112,970,-1,1039,1038,1030,-1,1038,1039,1032,-1,311,240,290,-1,311,256,240,-1,775,610,699,-1,775,607,610,-1,1175,1093,1153,-1,1175,1103,1093,-1,816,684,927,-1,816,427,684,-1,984,886,734,-1,886,984,1050,-1,638,948,742,-1,798,948,638,-1,983,880,1016,-1,983,856,880,-1,1031,883,858,-1,1031,992,883,-1,952,805,942,-1,952,779,805,-1,937,746,930,-1,937,789,746,-1,472,643,466,-1,535,643,472,-1,667,506,655,-1,667,479,506,-1,791,893,860,-1,893,791,781,-1,532,830,786,-1,830,532,764,-1,775,732,778,-1,732,775,663,-1,834,751,850,-1,834,817,751,-1,1147,1154,1143,-1,1154,1147,1158,-1,1163,1179,1170,-1,1163,1185,1179,-1,1014,1011,972,-1,1089,1011,1014,-1,1047,1123,1140,-1,1123,1047,1055,-1,1056,1009,1095,-1,1009,1056,998,-1,782,901,787,-1,782,934,901,-1,1032,1043,1058,-1,1032,1039,1043,-1,894,965,938,-1,894,907,965,-1,566,750,781,-1,566,564,750,-1,1157,1106,1149,-1,1126,1106,1157,-1,943,1103,896,-1,1103,943,1093,-1,933,854,929,-1,881,854,933,-1,839,892,849,-1,839,818,892,-1,985,859,968,-1,859,985,920,-1,606,788,605,-1,606,778,788,-1,388,621,432,-1,388,672,621,-1,411,424,389,-1,411,396,424,-1,389,485,411,-1,346,485,389,-1,625,347,495,-1,625,266,347,-1,458,1003,1082,-1,1003,458,392,-1,496,537,480,-1,496,680,537,-1,670,480,658,-1,670,496,480,-1,1076,995,1023,-1,995,1076,1080,-1,939,1005,889,-1,939,979,1005,-1,932,939,867,-1,932,979,939,-1,824,825,815,-1,824,833,825,-1,787,656,639,-1,656,787,799,-1,1085,1047,1014,-1,1075,1047,1085,-1,916,1021,972,-1,1021,916,911,-1,911,838,821,-1,911,916,838,-1,675,821,838,-1,821,675,635,-1,560,635,675,-1,635,560,642,-1,846,992,987,-1,992,846,883,-1,987,1083,909,-1,987,1117,1083,-1,1136,1117,1178,-1,1083,1117,1136,-1,1178,1131,1136,-1,1178,1188,1131,-1,460,654,513,-1,460,618,654,-1,588,618,514,-1,654,618,588,-1,786,905,752,-1,786,876,905,-1,1158,1054,1050,-1,1054,1158,1147,-1,984,927,1074,-1,984,816,927,-1,1107,1114,1088,-1,1146,1114,1107,-1,1143,1114,1120,-1,1143,1154,1114,-1,1065,855,1024,-1,1065,888,855,-1,1019,1134,1072,-1,1134,1019,1096,-1,1096,1081,1115,-1,1096,1019,1081,-1,1088,1034,1107,-1,1024,1034,1088,-1,1185,1094,1151,-1,1094,1185,1163,-1,1029,1099,974,-1,1099,1029,1181,-1,495,974,625,-1,974,495,1029,-1,926,1000,935,-1,1000,926,938,-1,1104,1151,1098,-1,1151,1104,1185,-1,748,727,731,-1,748,559,727,-1,1168,1135,1161,-1,1135,1168,1167,-1,1167,1113,1073,-1,1168,1113,1167,-1,1136,1176,1160,-1,1136,1131,1176,-1,1024,1122,1065,-1,1024,1088,1122,-1,1120,1115,1143,-1,1120,1096,1115,-1,1096,1156,1134,-1,1156,1096,1120,-1,1088,1154,1122,-1,1114,1154,1088,-1,1024,848,1034,-1,848,1024,855,-1,1142,1050,984,-1,1158,1050,1142,-1,989,1147,1102,-1,989,1054,1147,-1,584,742,568,-1,703,742,584,-1,449,923,1013,-1,923,449,460,-1,923,1155,1013,-1,1180,1155,923,-1,987,772,846,-1,987,909,772,-1,453,361,515,-1,361,453,457,-1,808,751,702,-1,808,1059,751,-1,850,1059,1125,-1,751,1059,850,-1,579,695,769,-1,579,586,695,-1,814,835,847,-1,814,763,835,-1,1041,964,1026,-1,960,964,1041,-1,1076,1079,1080,-1,1111,1079,1076,-1,1111,953,1079,-1,928,953,1111,-1,629,688,713,-1,629,623,688,-1,208,2,14,-1,82,2,208,-1,471,342,653,-1,376,342,471,-1,604,411,485,-1,604,597,411,-1,598,411,597,-1,411,598,396,-1,524,389,424,-1,477,389,524,-1,135,976,200,-1,135,967,976,-1,778,823,788,-1,778,732,823,-1,818,920,892,-1,818,859,920,-1,1112,1149,1106,-1,1112,1121,1149,-1,1183,1126,1157,-1,1126,1183,1119,-1,998,934,1009,-1,934,998,901,-1,1055,1095,1123,-1,1095,1055,1056,-1,1014,1140,1089,-1,1140,1014,1047,-1,1140,1166,1187,-1,1166,1140,1123,-1,607,778,606,-1,778,607,775,-1,426,663,327,-1,732,663,426,-1,1082,1108,1145,-1,1082,1003,1108,-1,860,764,791,-1,860,830,764,-1,755,857,750,-1,857,755,826,-1,757,479,667,-1,757,511,479,-1,535,547,647,-1,535,472,547,-1,934,789,937,-1,789,934,782,-1,779,930,746,-1,952,930,779,-1,942,772,909,-1,942,805,772,-1,858,983,1031,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getcoccyx_Geo_5_103_normalIndex_8()
		{
			int[] value = {983,858,856,-1,797,1016,880,-1,970,1016,797,-1,479,567,506,-1,569,567,479,-1,902,869,882,-1,863,869,902,-1,822,1050,1054,-1,1050,822,886,-1,1103,1145,1108,-1,1103,1175,1145,-1,392,256,311,-1,392,458,256,-1,1166,1132,1177,-1,1116,1132,1166,-1,1053,1030,1038,-1,1053,1044,1030,-1,1141,1146,1107,-1,1182,1146,1141,-1,568,797,565,-1,797,568,742,-1,578,856,581,-1,578,880,856,-1,1121,1144,1149,-1,1121,1067,1144,-1,581,858,587,-1,856,858,581,-1,1191,1157,1169,-1,1157,1191,1183,-1,942,1070,952,-1,942,1078,1070,-1,1165,1184,1177,-1,1161,1184,1165,-1,746,582,779,-1,746,585,582,-1,1025,930,1045,-1,937,930,1025,-1,782,590,789,-1,590,782,589,-1,547,627,519,-1,547,575,627,-1,1025,1095,1009,-1,1025,1116,1095,-1,989,850,739,-1,989,834,850,-1,780,871,783,-1,817,871,780,-1,472,575,547,-1,472,574,575,-1,535,792,643,-1,535,783,792,-1,1004,871,997,-1,878,871,1004,-1,792,832,717,-1,878,832,792,-1,573,506,567,-1,466,506,573,-1,717,836,723,-1,717,832,836,-1,1182,1156,1146,-1,1182,1190,1156,-1,836,1028,912,-1,969,1028,836,-1,667,794,757,-1,723,794,667,-1,1028,1037,1012,-1,1028,1084,1037,-1,1104,940,1069,-1,1104,973,940,-1,1044,957,1030,-1,1044,943,957,-1,957,896,908,-1,943,896,957,-1,898,926,922,-1,926,898,894,-1,570,791,764,-1,570,571,791,-1,887,898,882,-1,887,900,898,-1,975,954,945,-1,954,975,977,-1,908,947,966,-1,947,908,851,-1,896,1108,843,-1,896,1103,1108,-1,553,843,660,-1,843,553,851,-1,882,876,887,-1,882,869,876,-1,577,764,532,-1,570,764,577,-1,876,810,905,-1,876,869,810,-1,638,499,502,-1,638,703,499,-1,499,594,488,-1,591,594,499,-1,864,455,885,-1,502,455,864,-1,654,595,562,-1,595,654,588,-1,875,450,811,-1,450,875,513,-1,1168,1131,1113,-1,1131,1168,1176,-1,811,468,776,-1,811,450,468,-1,562,592,503,-1,562,595,592,-1,468,634,470,-1,503,634,468,-1,1040,803,999,-1,1040,776,803,-1,1184,1137,1187,-1,1184,1139,1137,-1,470,891,803,-1,470,651,891,-1,913,972,1011,-1,913,916,972,-1,734,427,816,-1,427,734,382,-1,427,420,684,-1,427,336,420,-1,516,474,517,-1,474,516,420,-1,888,747,855,-1,888,673,747,-1,516,542,698,-1,516,517,542,-1,542,601,552,-1,600,601,542,-1,747,664,700,-1,664,747,698,-1,1074,888,1065,-1,1074,927,888,-1,1077,1107,1034,-1,1141,1107,1077,-1,664,526,493,-1,664,552,526,-1,608,616,526,-1,608,609,616,-1,760,523,784,-1,760,493,523,-1,1069,1185,1104,-1,1185,1069,1179,-1,624,731,727,-1,731,624,652,-1,718,599,777,-1,599,718,669,-1,950,1032,1017,-1,971,1032,950,-1,1049,1033,956,-1,1049,1022,1033,-1,777,602,770,-1,777,599,602,-1,1038,985,1053,-1,1038,978,985,-1,849,971,950,-1,971,849,892,-1,486,823,561,-1,486,820,823,-1,770,605,788,-1,770,602,605,-1,961,881,933,-1,961,884,881,-1,968,790,962,-1,859,790,968,-1,790,384,359,-1,790,806,384,-1,946,1124,967,-1,1150,946,1092,-1,1150,1124,946,-1,311,660,392,-1,553,660,311,-1,296,384,533,-1,240,384,296,-1,337,290,240,-1,290,337,373,-1,715,373,432,-1,762,373,715,-1,653,905,754,-1,653,752,905,-1,424,548,524,-1,548,424,456,-1,558,396,598,-1,558,401,396,-1,955,200,976,-1,955,245,200,-1,699,346,363,-1,699,485,346,-1,1062,745,1061,-1,1062,828,745,-1,1097,967,1124,-1,976,967,1097,-1,142,200,245,-1,200,142,71,-1,759,1092,946,-1,1092,759,918,-1,625,279,266,-1,625,716,279,-1,177,486,561,-1,177,205,486,-1,142,426,327,-1,142,196,426,-1,929,1002,933,-1,1007,1002,929,-1,828,461,429,-1,461,828,681,-1,501,918,500,-1,874,918,501,-1,324,201,280,-1,149,201,324,-1,324,759,213,-1,500,759,324,-1,501,279,716,-1,501,280,279,-1,1098,1058,1043,-1,1058,1098,1151,-1,979,960,1041,-1,979,932,960,-1,833,814,847,-1,833,824,814,-1,649,769,812,-1,649,579,769,-1,1064,1023,1005,-1,1023,1064,1100,-1,1173,1111,1076,-1,1173,1138,1111,-1,867,982,919,-1,867,939,982,-1,889,1069,940,-1,889,995,1069,-1,1170,1080,1079,-1,1080,1170,1179,-1,953,813,1052,-1,953,658,813,-1,480,652,624,-1,480,537,652,-1,563,756,755,-1,645,756,563,-1,1091,1186,1162,-1,1091,1110,1186,-1,713,728,680,-1,728,713,688,-1,635,515,821,-1,453,515,635,-1,1021,741,1020,-1,741,1021,911,-1,1125,1101,1133,-1,1125,1059,1101,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getcoccyx_Geo_5_103_normalIndex_9()
		{
			int[] value = {922,935,945,-1,922,926,935,-1,954,863,902,-1,863,954,941,-1,219,252,191,-1,219,231,252,-1,536,386,463,-1,536,281,386,-1,108,175,182,-1,61,175,108,-1,721,428,414,-1,428,721,705,-1,730,795,737,-1,730,829,795,-1,696,507,436,-1,696,554,507,-1,436,630,696,-1,630,436,323,-1,102,132,28,-1,102,188,132,-1,20,84,5,-1,64,84,20,-1,146,154,184,-1,146,83,154,-1,545,586,465,-1,586,545,576,-1,441,350,345,-1,454,350,441,-1,238,167,179,-1,224,167,238,-1,275,383,344,-1,309,383,275,-1,556,557,380,-1,719,557,556,-1,11,197,123,-1,114,197,11,-1,212,301,251,-1,301,212,250,-1,248,49,81,-1,111,49,248,-1,118,92,172,-1,118,18,92,-1,150,185,129,-1,214,185,150,-1,254,352,364,-1,254,220,352,-1,176,41,133,-1,176,88,41,-1,914,692,691,-1,692,914,865,-1,522,852,804,-1,522,646,852,-1,144,260,230,-1,144,198,260,-1,620,996,767,-1,1018,996,620,-1,1172,793,1086,-1,1172,1010,793,-1,127,42,138,-1,10,42,127,-1,980,1152,1051,-1,1152,980,1042,-1,433,1051,244,-1,433,980,1051,-1,261,193,198,-1,261,206,193,-1,217,144,97,-1,217,225,144,-1,793,802,845,-1,793,724,802,-1,1105,1152,1090,-1,1189,1152,1105,-1,491,604,610,-1,604,491,710,-1,227,1051,1063,-1,244,1051,227,-1,737,796,768,-1,737,795,796,-1,668,481,636,-1,522,481,668,-1,646,697,852,-1,840,697,646,-1,540,870,868,-1,870,540,440,-1,438,375,291,-1,481,375,438,-1,853,771,804,-1,771,853,819,-1,156,10,127,-1,156,164,10,-1,661,765,439,-1,661,895,765,-1,807,936,949,-1,831,936,807,-1,906,631,434,-1,906,877,631,-1,292,189,230,-1,292,333,189,-1,379,661,349,-1,379,807,661,-1,379,330,407,-1,379,353,330,-1,944,261,225,-1,944,861,261,-1,917,287,206,-1,879,287,917,-1,237,340,235,-1,237,316,340,-1,215,298,221,-1,215,274,298,-1,446,422,417,-1,446,372,422,-1,153,221,159,-1,153,215,221,-1,380,473,556,-1,286,473,380,-1,234,400,445,-1,234,269,400,-1,613,686,665,-1,666,686,613,-1,601,666,608,-1,601,633,666,-1,158,234,343,-1,158,116,234,-1,504,335,343,-1,447,335,504,-1,633,494,498,-1,633,650,494,-1,603,650,600,-1,603,677,650,-1,494,521,447,-1,521,494,678,-1,68,33,38,-1,50,33,68,-1,521,774,512,-1,678,774,521,-1,603,738,677,-1,603,544,738,-1,774,773,866,-1,774,738,773,-1,541,693,773,-1,541,641,693,-1,809,866,837,-1,766,866,809,-1,103,166,56,-1,166,103,180,-1,721,476,550,-1,721,510,476,-1,192,299,414,-1,192,166,299,-1,53,31,7,-1,54,31,53,-1,593,689,550,-1,593,592,689,-1,689,744,705,-1,744,689,614,-1,428,106,151,-1,391,106,428,-1,707,594,726,-1,594,707,531,-1,712,306,178,-1,714,306,712,-1,23,36,63,-1,23,0,36,-1,306,125,63,-1,306,326,125,-1,726,690,714,-1,726,694,690,-1,591,490,694,-1,584,490,591,-1,3,103,56,-1,3,52,103,-1,320,375,497,-1,320,322,375,-1,410,870,440,-1,870,410,662,-1,313,410,312,-1,313,360,410,-1,434,339,243,-1,631,339,434,-1,348,186,90,-1,186,348,534,-1,348,293,339,-1,293,348,295,-1,216,211,226,-1,216,243,211,-1,307,262,304,-1,307,263,262,-1,272,360,313,-1,329,360,272,-1,571,413,566,-1,413,571,405,-1,563,444,437,-1,564,444,563,-1,275,300,289,-1,300,275,344,-1,250,231,219,-1,231,250,212,-1,163,190,253,-1,163,160,190,-1,435,345,398,-1,435,441,345,-1,83,109,154,-1,83,17,109,-1,354,398,283,-1,354,478,398,-1,109,223,165,-1,109,120,223,-1,59,1,37,-1,1,59,17,-1,91,47,45,-1,91,78,47,-1,277,354,223,-1,358,354,277,-1,478,619,525,-1,619,478,482,-1,482,611,619,-1,482,402,611,-1,277,310,358,-1,277,207,310,-1,195,113,91,-1,195,207,113,-1,310,393,402,-1,393,310,318,-1,574,704,729,-1,574,573,704,-1,393,657,682,-1,393,404,657,-1,374,195,355,-1,195,374,318,-1,76,69,27,-1,76,99,69,-1,255,181,170,-1,255,259,181,-1,569,685,720,-1,569,572,685,-1,590,448,585,-1,590,408,448,-1,15,62,60,-1,15,29,62,-1,62,110,121,-1,32,110,62,-1,387,582,415,-1,583,582,387,-1,110,288,249,-1,110,104,288,-1,331,596,321,-1,331,587,596,-1,23,44,34,-1,23,46,44,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getcoccyx_Geo_5_103_normalIndex_10()
		{
			int[] value = {302,565,578,-1,302,395,565,-1,222,72,242,-1,72,222,80,-1,153,160,163,-1,153,159,160,-1,148,39,137,-1,148,100,39,-1,949,877,906,-1,936,877,949,-1,100,19,39,-1,19,100,93,-1,512,377,265,-1,766,377,512,-1,305,204,459,-1,305,140,204,-1,242,546,451,-1,242,394,546,-1,321,161,331,-1,161,321,183,-1,387,236,249,-1,236,387,415,-1,448,255,264,-1,255,448,408,-1,611,729,704,-1,611,682,729,-1,659,525,619,-1,525,659,720,-1,297,405,329,-1,297,413,405,-1,360,662,410,-1,360,430,662,-1,467,419,416,-1,467,529,419,-1,443,355,341,-1,374,355,443,-1,38,45,47,-1,38,33,45,-1,333,138,189,-1,333,439,138,-1,11,30,21,-1,6,30,11,-1,180,174,229,-1,180,103,174,-1,69,143,52,-1,69,141,143,-1,181,134,99,-1,181,210,134,-1,273,412,403,-1,259,412,273,-1,145,159,133,-1,160,159,145,-1,231,315,252,-1,315,231,289,-1,444,566,413,-1,566,444,564,-1,93,247,295,-1,93,100,247,-1,340,260,257,-1,340,317,260,-1,298,365,316,-1,353,365,298,-1,330,203,228,-1,330,274,203,-1,409,606,605,-1,416,606,409,-1,481,804,771,-1,522,804,481,-1,768,785,802,-1,785,768,796,-1,710,802,785,-1,710,845,802,-1,840,555,697,-1,555,840,951,-1,186,735,112,-1,186,800,735,-1,674,696,719,-1,696,674,554,-1,719,630,557,-1,630,719,696,-1,197,118,172,-1,197,114,118,-1,185,251,301,-1,214,251,185,-1,251,254,309,-1,254,251,214,-1,383,371,366,-1,371,383,364,-1,143,108,174,-1,143,117,108,-1,182,278,229,-1,182,284,278,-1,351,284,368,-1,278,284,351,-1,368,539,351,-1,368,530,539,-1,530,560,539,-1,530,642,560,-1,104,194,288,-1,194,104,73,-1,58,13,55,-1,13,58,4,-1,683,268,334,-1,268,683,709,-1,538,709,683,-1,709,538,711,-1,711,588,514,-1,711,538,588,-1,291,410,440,-1,410,291,312,-1,136,33,140,-1,136,45,33,-1,265,204,124,-1,377,204,265,-1,75,85,105,-1,75,48,85,-1,75,47,66,-1,38,47,75,-1,335,128,171,-1,303,128,335,-1,59,162,120,-1,59,96,162,-1,113,96,78,-1,162,96,113,-1,158,105,85,-1,158,171,105,-1,88,6,41,-1,88,30,6,-1,94,164,218,-1,94,10,164,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getcoccyx_Coord_6_103_point_1()
		{
			double[] value = {-0.2892,30.2994,-2.84,-0.3138,30.2225,-2.8621,-0.3033,30.2688,-2.7975,-0.3206,31.2142,-3.5136,-0.3198,31.1929,-3.569,-0.4143,31.1979,-3.5418,-0.1867,31.2708,-3.3461,-0.1892,31.2329,-3.3818,-0.3077,31.2396,-3.3725,-0.5086,30.7705,-3.3792,-0.6819,30.8791,-3.4376,-0.5843,30.8482,-3.456,-0.5436,30.7848,-3.362,-0.49,30.6907,-3.3528,-0.5246,30.7159,-3.3133,-0.2645,30.2622,-2.7447,-0.2816,30.2259,-2.7571,-0.2403,30.2376,-2.6505,-0.2477,30.1956,-2.667,-0.2914,30.2304,-3.0361,-0.2703,30.1924,-2.976,-0.3085,30.2511,-3.0167,-0.4664,30.5091,-3.0694,-0.4576,30.4628,-3.1066,-0.4107,30.4206,-3.0769,-0.4245,30.4603,-3.0377,-0.799,31.0704,-3.402,-0.694,30.9703,-3.3297,-0.6883,31.0116,-3.3198,-0.822,31.0158,-3.4089,-0.0616,30.0932,-2.6125,0.0,30.1194,-2.6204,0.0,30.0957,-2.6157,-0.0618,30.1116,-2.6213,-0.1383,30.0954,-2.6177,-0.1384,30.1149,-2.6216,-0.2266,30.1368,-2.6301,-0.2105,30.1733,-2.5971,-0.227,30.1819,-2.6087,-0.193,30.133,-2.6128,-0.1963,30.233,-2.5601,-0.2022,30.2281,-2.5755,-0.2109,30.2028,-2.5719,-0.2102,30.1953,-2.5893,-0.1621,30.2643,-2.5508,-0.1657,30.2573,-2.5688,-0.0919,30.2147,-2.9656,0.0,30.2131,-2.9835,0.0,30.2158,-2.9695,-0.0859,30.2179,-2.9781,-0.1948,30.1971,-2.9704,-0.1452,30.2078,-2.9782,-0.1529,30.2049,-2.9681,-0.2006,30.1984,-2.9541,-0.2522,30.219,-2.9352,-0.2241,30.1971,-2.9582,-0.2248,30.2007,-2.9453,-0.2454,30.2242,-2.927,-0.2534,30.2777,-2.9044,-0.2597,30.2689,-2.9099,0.0,30.4331,-2.8792,-0.0865,30.4334,-2.8836,-0.0868,30.4195,-2.8834,0.0,30.4475,-2.8833,-0.1602,30.4228,-2.8781,-0.1597,30.4115,-2.8822,-0.2038,30.3999,-2.8761,-0.2041,30.3875,-2.8762,-0.1507,30.7733,-3.0784,-0.1558,30.766,-3.0805,-0.0805,30.7717,-3.0654,-0.0779,30.7799,-3.0593,-0.2326,30.7504,-3.0624,-0.3325,30.7335,-3.1067,-0.3358,30.7286,-3.0994,-0.2357,30.7494,-3.0855,-0.3945,30.7008,-3.1247,-0.4209,30.6879,-3.149,-0.4365,30.6798,-3.1398,-0.3858,30.7112,-3.1339,-0.4721,30.6576,-3.1696,-0.4738,30.6428,-3.2039,-0.4834,30.6322,-3.1986,-0.4563,30.6619,-3.1785,-0.462,30.5877,-3.2836,-0.409,30.6048,-3.297,-0.4036,30.5855,-3.3086,-0.4558,30.6009,-3.2725,-0.3062,30.6137,-3.3024,-0.3041,30.5829,-3.3314,-0.2134,30.6231,-3.3107,-0.2156,30.5868,-3.3326,-0.1112,30.5848,-3.3297,0.0,30.6134,-3.3212,0.0,30.5879,-3.331,-0.1112,30.6125,-3.3117,-0.3303,31.0334,-3.7239,-0.3628,31.0234,-3.7784,-0.3461,31.1144,-3.7595,-0.3599,31.0987,-3.8275,-0.362,31.2346,-3.7768,-0.4067,31.2592,-3.7559,-0.4151,31.1983,-3.7087,-0.3416,31.1897,-3.7291,-0.1,30.1826,-2.3707,-0.1172,30.1539,-2.3757,-0.0936,30.1554,-2.3558,0.0,31.2039,-3.2739,0.0,31.225,-3.323,-0.0986,31.2676,-3.2767,-0.0989,31.2599,-3.3373,-1.0143,31.1442,-3.661,-1.0172,31.1025,-3.604,-1.1009,31.1436,-3.5817,-1.1055,31.1958,-3.6242,-0.5999,30.9831,-3.6376,-0.6003,30.9251,-3.5691,-0.724,30.9711,-3.6013,-0.7185,31.0268,-3.6488,-0.0752,30.8624,-3.0679,-0.1463,30.8202,-3.0661,-0.0754,30.8233,-3.0593,-0.1455,30.8629,-3.0824,-0.2313,30.8678,-3.127,-0.3379,30.8195,-3.1313,-0.2323,30.819,-3.0971,-0.3418,30.8854,-3.1582,-0.5046,30.8785,-3.2188,-0.5596,30.9361,-3.2669,0.0,30.429,-2.8463,0.0,30.442,-2.8673,-0.0878,30.4272,-2.8661,-0.0888,30.4275,-2.8417,-0.2156,30.2697,-2.637,-0.2239,30.215,-2.5972,-0.2107,30.2389,-2.5855,-0.573,31.1285,-3.7384,-0.575,31.0959,-3.7411,-0.6892,31.1651,-3.7362,-0.2544,30.1667,-2.9294,-0.2345,30.1317,-2.9276,-0.2712,30.1444,-2.9045,-0.2207,30.1543,-2.9446,-0.1674,30.1617,-2.9573,-0.0905,30.1575,-2.9675,-0.1663,30.1449,-2.9418,-0.0868,30.142,-2.9459,-0.2937,30.3248,-2.8913,-0.2935,30.2695,-2.9176,-0.2543,30.3045,-2.8995,-0.2447,30.3936,-2.8785,-0.2343,30.3779,-2.8802,-0.205,30.418,-2.8798,-0.1566,30.593,-2.9704,-0.0783,30.5505,-2.9453,-0.0795,30.6036,-2.9736,-0.1556,30.5451,-2.934,-0.4997,30.6098,-3.1002,-0.4785,30.653,-3.161,-0.4879,30.6263,-3.1906,-0.5012,30.5822,-3.135,-1.0893,31.268,-3.6154,-1.0932,31.2502,-3.6691,-1.0932,31.2134,-3.5738,-0.3632,31.1698,-3.8582,-0.3564,31.197,-3.825,-0.3377,31.1539,-3.773,-0.3164,31.116,-3.734,-0.2117,31.1444,-3.6564,-0.3098,31.0368,-3.701,-0.2278,31.0329,-3.672,-0.495,30.5556,-3.1799,-0.4909,30.6041,-3.2199,-0.1645,30.1143,-2.4882,-0.1527,30.0812,-2.5017,-0.1274,30.0762,-2.4096,-0.0836,30.3247,-2.6349,-0.0822,30.2853,-2.5807,0.0,30.304,-2.5804,0.0,30.3312,-2.6353,-0.2846,30.3071,-2.781,-0.2252,30.311,-2.7225,-0.2326,30.3556,-2.7651,-0.0918,30.4041,-2.7578,0.0,30.3702,-2.7085,0.0,30.3979,-2.7657,-0.0941,30.3679,-2.7086,-0.4026,30.5176,-2.9884,-0.3318,30.4924,-2.9413,-0.3567,30.5339,-2.9762,-0.3628,30.4611,-2.9585,-0.3993,30.5958,-2.9899,-0.4485,30.5736,-3.0146,-0.4647,30.5516,-3.0352,-0.4721,30.6298,-3.0749,-0.3416,30.688,-3.0284,-0.2421,30.7051,-3.0236,-0.2339,30.7412,-3.0487,-0.3378,30.7242,-3.0833,0.0,30.7288,-3.0257,0.0,30.7562,-3.0363,-0.0785,30.7507,-3.0395,-0.0777,30.7282,-3.0221,-0.4155,30.8129,-3.1605,-0.4032,30.7539,-3.1415,-0.3306,30.771,-3.1072,-0.2298,30.7881,-3.0872,-0.1475,30.7948,-3.0661,-0.779,31.1241,-3.4004,-0.6671,31.0703,-3.3307,-0.4743,30.9992,-3.2407,-0.3572,30.965,-3.1991,-0.438,30.9115,-3.2049,-0.16,30.9392,-3.1212,-0.2565,30.9478,-3.1562,-0.3945,31.0509,-3.2261,-0.2813,31.034,-3.1913,-0.6559,31.1299,-3.3443,-0.6296,31.1162,-3.3266,-0.6481,31.204,-3.3728,-0.2753,30.1204,-2.8518,-0.3038,30.1425,-2.8396,-0.3089,30.1566,-2.8852,-0.0446,30.078,-2.3863,-0.0425,30.1158,-2.3517,-0.0725,30.076,-2.3948,-0.1411,30.0729,-2.5077,-0.1065,30.0704,-2.4044,-0.2044,30.0844,-2.5624,-0.2106,30.1308,-2.5472,-0.1792,30.0647,-2.5671,-0.1993,30.0876,-2.6175,-0.2125,30.1162,-2.6044,-0.0624,30.0728,-2.555,-0.127,30.067,-2.5626,-0.1598,30.1763,-2.9705,-0.0906,30.1753,-2.9727,-0.0917,30.2144,-3.0143,-0.1508,30.199,-3.0133,0.0,30.2126,-3.0187,0.0,30.2484,-3.0795,-0.0997,30.2408,-3.0781,-0.2042,30.2167,-3.066,-0.2579,30.2194,-3.0532,-0.2751,30.2792,-3.1084,-0.2141,30.2855,-3.1151,-0.3329,30.3889,-3.2178,-0.386,30.4981,-3.3052,-0.2855,30.4937,-3.3293,-0.2482,30.4005,-3.2309,-0.441,30.511,-3.2668,-0.464,30.5796,-3.2824,-0.4014,30.5768,-3.3113,-0.332,30.7698,-3.4729,-0.2493,30.7547,-3.4827,-0.237,30.695,-3.424,-0.3427,30.7071,-3.4325,-0.5174,30.887,-3.5587,-0.4954,30.7961,-3.4811,-0.7101,31.0913,-3.7035,-0.807,31.0674,-3.6634,-0.7925,31.1355,-3.7039,-1.0765,31.311,-3.6996,-1.0007,31.2847,-3.7427,-1.0071,31.2107,-3.6979,-0.5973,31.0362,-3.6988,-0.4996,31.2178,-3.8368,-0.5367,31.2109,-3.7599,-0.5111,31.2569,-3.7884,-0.5171,31.1654,-3.7996,-0.483,31.2104,-3.703,-0.5238,31.2274,-3.7237,-0.5411,31.1926,-3.6914,-0.6752,31.2056,-3.6714,-0.7552,31.2499,-3.6463,-0.6511,31.21,-3.5989,-0.3322,31.1733,-3.6792,-0.4128,31.1565,-3.6464,-0.5412,31.2419,-3.3803,-0.412,31.2243,-3.3361,-0.5348,31.2262,-3.4435,-0.4158,31.2278,-3.4004,-0.2409,30.9605,-3.6407,-0.1352,31.0429,-3.664,-0.1458,30.9448,-3.6491,-0.551,31.1897,-3.6786,-0.5001,31.1644,-3.6407,-0.6439,31.2438,-3.4227,-0.5388,31.1829,-3.3236,-0.4802,30.9763,-3.7292,-0.4658,30.9188,-3.6608,-0.5152,31.0053,-3.7109,-0.516,30.9507,-3.6453,-0.4411,30.7747,-3.5002,-0.4758,30.7891,-3.4947,-0.4943,30.8825,-3.5648,-0.4594,30.8536,-3.5783,-0.3726,30.8264,-3.5759,-0.3365,30.9014,-3.6066,-0.3411,30.8447,-3.5362,-0.3779,30.8978,-3.6445,-0.344,30.7691,-3.4765,-0.3602,30.7163,-3.4411,-0.3691,30.7627,-3.4991,-0.4995,31.263,-3.7907,-0.5033,31.2682,-3.7617,-0.4886,31.2653,-3.7698,-0.3655,31.2041,-3.831,-0.3723,31.2361,-3.7864,-0.3446,30.6665,-3.3916,-0.5144,31.1468,-3.7984,-0.5386,31.1154,-3.7491,-0.335,31.1383,-3.7472,-0.3189,31.1715,-3.6494,-0.4267,30.6687,-3.3777,-0.4386,30.7383,-3.42,-0.4569,30.7383,-3.4064,-0.463,31.2673,-3.787,-0.4099,31.2623,-3.7677,-0.4086,31.2563,-3.7852,-0.4681,31.27,-3.7671,-0.5704,31.1784,-3.7093,-0.6227,31.1918,-3.6775,-0.4573,30.6751,-3.1835,-0.4189,30.7021,-3.1546,-0.1097,30.6218,-3.3332,-0.1088,30.6266,-3.3467,0.0,30.6138,-3.3477,0.0,30.6211,-3.3324,-0.232,30.7745,-3.0883,-0.079,30.7614,-3.0517,-0.1532,30.756,-3.0484,-0.1534,30.7482,-3.0343,-0.4467,30.6735,-3.1325,-0.3977,30.6957,-3.1158,-0.2153,30.5726,-3.3361,-0.3041,30.5705,-3.3372,0.0,30.5715,-3.3372,-0.1115,30.5692,-3.3298,-0.6893,30.909,-3.3927,-0.8241,30.9694,-3.4698,-0.2385,30.1893,-3.0042,0.0,31.2138,-3.3542,0.0,31.2092,-3.3685,-0.1015,31.2214,-3.3823,-0.1008,31.2283,-3.3696,-0.1901,31.2258,-3.3942,-0.3089,31.2382,-3.3873,-0.252,30.2863,-2.9022,-0.2542,30.2789,-2.9009,-0.2454,30.223,-2.9251,-0.1592,30.4097,-2.8795,-0.2036,30.3852,-2.875,0.0,30.4324,-2.8757,-0.087,30.4178,-2.8803,0.5104,31.0831,-3.2641,0.5983,31.0406,-3.2911,0.6296,31.1162,-3.3266,0.4743,30.9992,-3.2407,0.2318,30.3664,-2.8811,0.2036,30.3852,-2.875,0.2317,30.3652,-2.8789,0.2041,30.3875,-2.8762,0.252,30.2863,-2.9022,0.2406,30.3347,-2.8907,0.2542,30.2789,-2.9009,0.2407,30.3337,-2.8882,0.1529,30.2049,-2.9681,0.2006,30.1984,-2.9541,0.2002,30.1967,-2.9526,0.1542,30.1922,-2.9698,0.0919,30.2147,-2.9656,0.0,30.1985,-2.9698,0.0902,30.1938,-2.9714,0.2362,30.1081,-2.8697,0.2282,30.113,-2.8033,0.1579,30.1166,-2.8163,0.1652,30.1214,-2.8864,0.3056,30.4369,-2.9065,0.2937,30.3248,-2.8913,0.3312,30.3986,-2.925,0.269,30.3649,-2.884,0.694,30.9703,-3.3297,0.5046,30.8785,-3.2188,0.5415,30.8688,-3.2492,0.0,30.6126,-3.3201,0.1107,30.62,-3.3154,0.1112,30.6125,-3.3117,0.1112,30.5848,-3.3297,0.2156,30.5868,-3.3326,0.1115,30.5692,-3.3298,0.2153,30.5726,-3.3361,0.3041,30.5829,-3.3314,0.4036,30.5855,-3.3086,0.3041,30.5705,-3.3372,0.4014,30.5768,-3.3113,0.462,30.5877,-3.2836,0.4803,30.5937,-3.2671,0.464,30.5796,-3.2824,0.4834,30.5851,-3.2616,0.0779,30.7799,-3.0593,0.1475,30.7948,-3.0661,0.0809,30.7959,-3.0565,0.1507,30.7733,-3.0784,0.2157,30.6234,-3.338,0.1097,30.6218,-3.3332,0.2157,30.6318,-3.3527,0.1088,30.6266,-3.3467,0.0794,30.7655,-3.0627,0.1556,30.7585,-3.0752,0.0805,30.7717,-3.0654,0.1558,30.766,-3.0805,0.6819,30.8791,-3.4376,0.5436,30.7848,-3.362,0.5086,30.7705,-3.3792,0.4681,31.27,-3.7671,0.4886,31.2653,-3.7698,0.463,31.2673,-3.787,0.3655,31.2041,-3.831,0.3989,31.2135,-3.8438,0.3697,31.1834,-3.8565,0.3723,31.2361,-3.7864,0.4099,31.2623,-3.7677,0.4086,31.2563,-3.7852,0.4904,31.2257,-3.8383,0.4621,31.1859,-3.8663,0.4523,31.2216,-3.8469,0.5938,31.2095,-3.6126,0.5181,31.1994,-3.5523,0.6511,31.21,-3.5989,0.5147,31.0712,-3.7617,0.5386,31.1154,-3.7491,0.5313,31.0764,-3.7504,0.5144,31.1468,-3.7984,0.4943,30.8825,-3.5648,0.5174,30.887,-3.5587,0.4954,30.7961,-3.4811,0.4758,30.7891,-3.4947,0.3323,30.9726,-3.6611,0.3121,30.9753,-3.6528,0.3098,31.0368,-3.701,0.3303,31.0334,-3.7239,0.3602,30.7163,-3.4411,0.3427,30.7071,-3.4325,0.332,30.7698,-3.4729,0.344,30.7691,-3.4765,0.551,31.1897,-3.6786,0.5001,31.1644,-3.6407,0.4569,30.7383,-3.4064,0.4267,30.6687,-3.3777,0.4386,30.7383,-3.42,0.362,31.2346,-3.7768,0.4067,31.2592,-3.7559,0.4693,31.2692,-3.7549,0.5033,31.2682,-3.7617,0.5111,31.2569,-3.7884,0.4995,31.263,-3.7907,0.4996,31.2178,-3.8368,0.4411,30.7747,-3.5002,0.3691,30.7627,-3.4991,0.3726,30.8264,-3.5759,0.3411,30.8447,-3.5362,0.4802,30.9763,-3.7292,0.4804,31.0373,-3.7919,0.5152,31.0053,-3.7109,0.6439,31.2438,-3.4227,0.6481,31.204,-3.3728,0.7384,31.2458,-3.4776,0.5504,31.1744,-3.7153,0.5411,31.1926,-3.6914,0.5704,31.1784,-3.7093,0.2409,30.9605,-3.6407,0.2278,31.0329,-3.672,0.643,31.2254,-3.4985,0.7384,31.2543,-3.5626,0.6227,31.1918,-3.6775,0.6752,31.2056,-3.6714,0.8681,31.2777,-3.6992,0.7742,31.2063,-3.727,0.7552,31.2499,-3.6463,0.8811,31.2558,-3.7277,1.0765,31.311,-3.6996,1.0007,31.2847,-3.7427,0.9935,31.3113,-3.7247,0.8938,31.1694,-3.7114,1.0071,31.2107,-3.6979,0.7185,31.0268,-3.6488,0.5973,31.0362,-3.6988,0.7101,31.0913,-3.7035,0.5999,30.9831,-3.6376,0.2493,30.7547,-3.4827,0.1459,30.8031,-3.5475,0.2475,30.8266,-3.5393,0.1449,30.7384,-3.4801,1.0317,31.0982,-3.5491,1.0172,31.1025,-3.604,1.1009,31.1436,-3.5817,0.7161,30.9078,-3.503,0.5843,30.8482,-3.456,0.1199,30.6625,-3.4115,0.2329,30.6739,-3.3995,0.4808,30.622,-3.3152,0.4225,30.6192,-3.3328,0.49,30.6907,-3.3528,0.2855,30.4937,-3.3293,0.1902,30.4051,-3.2439,0.2091,30.5012,-3.3318,0.2482,30.4005,-3.2309,0.441,30.511,-3.2668,0.4742,30.5326,-3.2222,0.2207,30.1543,-2.9446,0.1674,30.1617,-2.9573,0.2049,30.1759,-2.955,0.1598,30.1763,-2.9705,0.0905,30.1575,-2.9675,0.0,30.1557,-2.97,0.0906,30.1753,-2.9727,0.0,30.1808,-2.9736,0.3038,30.1425,-2.8396,0.2648,30.1225,-2.791,0.2753,30.1204,-2.8518,0.2754,30.1463,-2.7784,0.069,30.1102,-2.7221,0.1431,30.1019,-2.6448,0.0622,30.0937,-2.6459,0.1482,30.1065,-2.7225,0.1411,30.0729,-2.5077,0.1065,30.0704,-2.4044,0.1005,30.0707,-2.5028,0.0725,30.076,-2.3948,0.0929,30.1091,-2.3666,0.1274,30.0762,-2.4096,0.1248,30.1172,-2.3911,0.7549,31.1851,-3.4314,0.6559,31.1299,-3.3443,0.779,31.1241,-3.4004,0.6671,31.0703,-3.3307,0.3418,30.8854,-3.1582,0.2565,30.9478,-3.1562,0.2313,30.8678,-3.127,0.3572,30.965,-3.1991,0.6883,31.0116,-3.3198,0.5596,30.9361,-3.2669,0.9087,31.1216,-3.4572,0.799,31.0704,-3.402,0.8899,31.1729,-3.4731,1.0311,31.1294,-3.5124,1.088,31.1728,-3.5507,1.0179,31.1589,-3.5142,0.3416,30.688,-3.0284,0.4267,30.6544,-3.047,0.3378,30.7242,-3.0833,0.3977,30.6957,-3.1158,0.205,30.418,-2.8798,0.1533,30.4929,-2.9007,0.1578,30.4403,-2.8788,0.2131,30.479,-2.8984,0.1,30.1826,-2.3707,0.1172,30.1539,-2.3757,0.1476,30.2014,-2.4606,0.1214,30.2298,-2.4602,0.1575,30.2544,-2.5052,0.1963,30.233,-2.5601,0.1621,30.2643,-2.5508,0.1865,30.2159,-2.5165,0.3138,30.2225,-2.8621,0.3033,30.2688,-2.7975,0.3102,30.1976,-2.8237,0.495,30.5556,-3.1799,0.4909,30.6041,-3.2199,0.3461,31.1144,-3.7595,0.335,31.1383,-3.7472,0.3599,31.0987,-3.8275,0.3377,31.1539,-3.773,1.0682,31.3291,-3.6626,0.991,31.327,-3.6784,0.984,31.3107,-3.6204,0.0936,30.1554,-2.3558,0.0425,30.1158,-2.3517,0.0452,30.1636,-2.3487,0.0865,30.4334,-2.8836,0.1602,30.4228,-2.8781,0.0787,30.4453,-2.8937,0.0777,30.7282,-3.0221,0.1534,30.7482,-3.0343,0.0785,30.7507,-3.0395,0.1554,30.7211,-3.0192,0.5246,30.7159,-3.3133,0.5056,30.6471,-3.2646,0.2038,30.3999,-2.8761,0.0,30.1341,-2.951,0.0868,30.142,-2.9459,0.2345,30.1317,-2.9276,0.1663,30.1449,-2.9418,0.573,31.1285,-3.7384,0.575,31.0959,-3.7411,0.1463,30.8202,-3.0661,0.2323,30.819,-3.0971,0.1455,30.8629,-3.0824,0.3149,30.9017,-3.5989,0.3291,30.8459,-3.534,0.2483,30.8899,-3.5896,0.0989,31.2599,-3.3373,0.1008,31.2283,-3.3696,0.0895,31.1527,-3.1971,0.0986,31.2676,-3.2767,0.0,31.1488,-3.1896,0.9096,31.0603,-3.62,0.9209,31.0318,-3.5662,0.4558,30.6009,-3.2725,0.4421,30.718,-3.1542,0.4573,30.6751,-3.1835,0.4962,30.6997,-3.1683,0.4189,30.7021,-3.1546,0.2135,30.6304,-3.3155,0.4725,30.6082,-3.2989,0.4556,30.6075,-3.2805,0.4084,30.6119,-3.3015,0.4166,30.6088,-3.3193,0.4732,30.6165,-3.2334,0.4871,30.6125,-3.2251,0.4738,30.6428,-3.2039,0.4834,30.6322,-3.1986,0.232,30.7745,-3.0883,0.3332,30.7416,-3.1129,0.3326,30.7525,-3.1066,0.2336,30.7591,-3.0914,0.1532,30.756,-3.0484,0.079,30.7614,-3.0517,0.0,30.7808,-3.0553,0.0,30.7718,-3.0562,0.2377,30.3663,-2.8732,0.2532,30.3314,-2.8822,0.2843,30.2585,-2.8979,0.2016,30.3904,-2.8715,0.1592,30.4097,-2.8795,0.1575,30.4132,-2.8708,0.087,30.4178,-2.8803,0.0878,30.4272,-2.8661,0.2454,30.223,-2.9251,0.237,30.1871,-2.9402,0.2244,30.1988,-2.9437,0.2759,30.1999,-2.9243,0.2266,30.1368,-2.6301,0.193,30.133,-2.6128,0.2183,30.1121,-2.6388,0.0,30.2925,-2.5742,0.0789,30.2677,-2.5742,0.0822,30.2853,-2.5807,0.2125,30.1162,-2.6044,0.2105,30.1733,-2.5971,0.2191,30.1621,-2.5829,0.1827,30.1063,-2.6231,0.2005,30.0977,-2.6453,0.1384,30.1149,-2.6216,0.3698,30.4451,-2.9718,0.3628,30.4611,-2.9585,0.2914,30.2304,-3.0361,0.3182,30.2936,-3.0876,0.3085,30.2511,-3.0167,0.3448,30.318,-3.0674,0.2365,30.108,-2.7116,0.2398,30.1313,-2.7031,0.2819,30.171,-2.7719,0.2477,30.1956,-2.667,0.2439,30.1536,-2.6908,0.2816,30.2259,-2.7571,0.237,30.695,-3.424,0.478,30.8115,-3.1896,0.5266,30.7967,-3.2069,0.3077,31.2396,-3.3725,0.4158,31.2278,-3.4004,0.3089,31.2382,-3.3873,0.3198,31.1929,-3.569,0.4143,31.1979,-3.5418,0.3189,31.1715,-3.6494,0.438,30.9115,-3.2049,0.4326,30.8876,-3.1941,0.2892,30.2994,-2.84,0.3206,31.2142,-3.5136,0.1867,31.2708,-3.3461,0.1892,31.2329,-3.3818,0.2403,30.2376,-2.6505,0.2645,30.2622,-2.7447,0.2703,30.1924,-2.976,0.4576,30.4628,-3.1066,0.4245,30.4603,-3.0377,0.4107,30.4206,-3.0769,0.4664,30.5091,-3.0694,0.822,31.0158,-3.4089,0.0618,30.1116,-2.6213,0.0616,30.0932,-2.6125,0.1383,30.0954,-2.6177,0.227,30.1819,-2.6087,0.2102,30.1953,-2.5893,0.2109,30.2028,-2.5719,0.2022,30.2281,-2.5755,0.1657,30.2573,-2.5688,0.0,30.3057,-2.5521,0.0831,30.2908,-2.5487,0.0859,30.2179,-2.9781,0.1948,30.1971,-2.9704,0.1452,30.2078,-2.9782,0.2241,30.1971,-2.9582,0.2248,30.2007,-2.9453,0.2522,30.219,-2.9352,0.2454,30.2242,-2.927,0.2534,30.2777,-2.9044,0.2597,30.2689,-2.9099,0.0868,30.4195,-2.8834,0.1597,30.4115,-2.8822,0.2418,30.3434,-2.8901,0.2543,30.3045,-2.8995,0.2357,30.7494,-3.0855,0.3358,30.7286,-3.0994,0.3325,30.7335,-3.1067,0.2326,30.7504,-3.0624,0.3945,30.7008,-3.1247,0.4365,30.6798,-3.1398,0.4209,30.6879,-3.149,0.3858,30.7112,-3.1339,0.4721,30.6576,-3.1696,0.4563,30.6619,-3.1785,0.409,30.6048,-3.297,0.3062,30.6137,-3.3024,0.2134,30.6231,-3.3107,0.3628,31.0234,-3.7784,0.3416,31.1897,-3.7291,0.4151,31.1983,-3.7087,1.0143,31.1442,-3.661,1.1055,31.1958,-3.6242,0.724,30.9711,-3.6013,0.6003,30.9251,-3.5691,0.3779,30.8978,-3.6445,0.4594,30.8536,-3.5783,0.4658,30.9188,-3.6608,0.0752,30.8624,-3.0679,0.0754,30.8233,-3.0593,0.3379,30.8195,-3.1313,0.0888,30.4275,-2.8417,0.2107,30.2389,-2.5855,0.2239,30.215,-2.5972,0.2156,30.2697,-2.637,0.6892,31.1651,-3.7362,0.2544,30.1667,-2.9294,0.2712,30.1444,-2.9045,0.2935,30.2695,-2.9176,0.2447,30.3936,-2.8785,0.2343,30.3779,-2.8802,0.1556,30.5451,-2.934,0.0795,30.6036,-2.9736,0.0783,30.5505,-2.9453,0.1566,30.593,-2.9704,0.4997,30.6098,-3.1002,0.4879,30.6263,-3.1906,0.4785,30.653,-3.161,0.5012,30.5822,-3.135,0.3632,31.1698,-3.8582,0.3564,31.197,-3.825,0.2117,31.1444,-3.6564,0.3164,31.116,-3.734,0.1645,30.1143,-2.4882,0.1527,30.0812,-2.5017,0.0836,30.3247,-2.6349,0.2846,30.3071,-2.781,0.2326,30.3556,-2.7651,0.2252,30.311,-2.7225,0.3567,30.5339,-2.9762,0.3318,30.4924,-2.9413,0.4026,30.5176,-2.9884,0.3993,30.5958,-2.9899,0.4485,30.5736,-3.0146,0.4647,30.5516,-3.0352,0.4721,30.6298,-3.0749,0.2421,30.7051,-3.0236,0.2339,30.7412,-3.0487,0.4155,30.8129,-3.1605,0.3306,30.771,-3.1072,0.4032,30.7539,-3.1415,0.2298,30.7881,-3.0872,0.16,30.9392,-3.1212,0.3089,30.1566,-2.8852,0.0446,30.078,-2.3863,0.2044,30.0844,-2.5624,0.2106,30.1308,-2.5472,0.1792,30.0647,-2.5671,0.1993,30.0876,-2.6175,0.127,30.067,-2.5626,0.0624,30.0728,-2.555,0.0812,30.1239,-2.8918,0.0,30.123,-2.8934,0.0917,30.2144,-3.0143,0.1508,30.199,-3.0133,0.0997,30.2408,-3.0781,0.2042,30.2167,-3.066,0.2751,30.2792,-3.1084,0.2579,30.2194,-3.0532,0.2141,30.2855,-3.1151,0.386,30.4981,-3.3052,0.3329,30.3889,-3.2178,0.7925,31.1355,-3.7039,0.807,31.0674,-3.6634,1.0932,31.2502,-3.6691,0.5367,31.2109,-3.7599,0.5171,31.1654,-3.7996,0.483,31.2104,-3.703,0.5238,31.2274,-3.7237,0.4128,31.1565,-3.6464,0.3322,31.1733,-3.6792,0.412,31.2243,-3.3361,0.5412,31.2419,-3.3803,0.5348,31.2262,-3.4435,0.1352,31.0429,-3.664,0.1458,30.9448,-3.6491,0.5388,31.1829,-3.3236,0.516,30.9507,-3.6453,0.3365,30.9014,-3.6066,0.3446,30.6665,-3.3916,0.5329,31.0109,-3.7032,0.4467,30.6735,-3.1325,0.8241,30.9694,-3.4698,0.6893,30.909,-3.3927,0.2385,30.1893,-3.0042,0.1015,31.2214,-3.3823,0.1901,31.2258,-3.3942,-0.5983,31.0406,-3.2911,-0.5104,31.0831,-3.2641,-0.2318,30.3664,-2.8811,-0.2317,30.3652,-2.8789,-0.2406,30.3347,-2.8907,-0.2407,30.3337,-2.8882,-0.2002,30.1967,-2.9526,-0.1542,30.1922,-2.9698,-0.0902,30.1938,-2.9714,-0.3056,30.4369,-2.9065,-0.3312,30.3986,-2.925,-0.269,30.3649,-2.884,-0.5415,30.8688,-3.2492,-0.1107,30.62,-3.3154,-0.0809,30.7959,-3.0565,-0.2157,30.6234,-3.338,-0.2157,30.6318,-3.3527,-0.4725,30.6082,-3.2989,-0.4992,30.6288,-3.2521,-0.4808,30.622,-3.3152,-0.5056,30.6471,-3.2646,-0.1556,30.7585,-3.0752,-0.0794,30.7655,-3.0627,-0.3697,31.1834,-3.8565,-0.3989,31.2135,-3.8438,-0.4904,31.2257,-3.8383,-0.4523,31.2216,-3.8469,-0.4621,31.1859,-3.8663,-0.5938,31.2095,-3.6126,-0.5181,31.1994,-3.5523,-0.5147,31.0712,-3.7617,-0.5313,31.0764,-3.7504,-0.3323,30.9726,-3.6611,-0.3121,30.9753,-3.6528,-0.4693,31.2692,-3.7549,-0.3732,30.959,-3.7139,-0.7384,31.2458,-3.4776,-0.5504,31.1744,-3.7153,-0.643,31.2254,-3.4985,-0.7384,31.2543,-3.5626,-0.9935,31.3113,-3.7247,-0.8811,31.2558,-3.7277,-0.8938,31.1694,-3.7114,-0.2475,30.8266,-3.5393,-0.1459,30.8031,-3.5475,-0.1449,30.7384,-3.4801,-1.0317,31.0982,-3.5491,-0.7161,30.9078,-3.503,-0.1199,30.6625,-3.4115,-0.2329,30.6739,-3.3995,-0.4225,30.6192,-3.3328,-0.2091,30.5012,-3.3318,-0.1902,30.4051,-3.2439,-0.4834,30.5851,-3.2616,-0.4742,30.5326,-3.2222,-0.2049,30.1759,-2.955,-0.2648,30.1225,-2.791,-0.2754,30.1463,-2.7784,-0.2365,30.108,-2.7116,-0.2005,30.0977,-2.6453,-0.2183,30.1121,-2.6388,-0.2122,30.0982,-2.7197,-0.069,30.1102,-2.7221,-0.0622,30.0937,-2.6459,-0.1431,30.1019,-2.6448,-0.1482,30.1065,-2.7225,-0.1005,30.0707,-2.5028,-0.0929,30.1091,-2.3666,-0.1248,30.1172,-2.3911,-0.7549,31.1851,-3.4314,-0.8899,31.1729,-3.4731,-0.9087,31.1216,-3.4572,-1.0311,31.1294,-3.5124,-1.0179,31.1589,-3.5142,-1.088,31.1728,-3.5507,-0.4267,30.6544,-3.047,-0.2703,30.3395,-2.8299,-0.2194,30.3769,-2.8192,-0.1708,30.3489,-2.7117,-0.1726,30.3869,-2.7562,-0.1214,30.2298,-2.4602,-0.1476,30.2014,-2.4606,-0.1575,30.2544,-2.5052,-0.1865,30.2159,-2.5165,-0.3102,30.1976,-2.8237,0.0,30.9343,-3.6511,0.0,31.0158,-3.6829,-1.0682,31.3291,-3.6626,-0.984,31.3107,-3.6204,-0.991,31.327,-3.6784,-0.0452,30.1636,-2.3487,-0.055,30.2117,-2.374,-0.0694,30.2513,-2.4642,-0.1578,30.4403,-2.8788,-0.0787,30.4453,-2.8937,-0.1554,30.7211,-3.0192,-0.2022,30.1817,-2.5282,-0.1569,30.1589,-2.4722,-0.3149,30.9017,-3.5989,-0.3291,30.8459,-3.534,-0.2483,30.8899,-3.5896,-0.0895,31.1527,-3.1971,-0.9096,31.0603,-3.62,-0.9209,31.0318,-3.5662,-0.4803,30.5937,-3.2671,-0.4421,30.718,-3.1542,-0.4962,30.6997,-3.1683,-0.2135,30.6304,-3.3155,-0.4556,30.6075,-3.2805,-0.4166,30.6088,-3.3193,-0.4084,30.6119,-3.3015,-0.4871,30.6125,-3.2251,-0.4732,30.6165,-3.2334,-0.2336,30.7591,-3.0914,-0.3326,30.7525,-3.1066,-0.3332,30.7416,-3.1129,-0.2377,30.3663,-2.8732,-0.2532,30.3314,-2.8822,-0.2843,30.2585,-2.8979,-0.2016,30.3904,-2.8715,-0.1575,30.4132,-2.8708,-0.2759,30.1999,-2.9243,-0.2244,30.1988,-2.9437,-0.237,30.1871,-2.9402,-0.0789,30.2677,-2.5742,-0.0831,30.2908,-2.5487,-0.2191,30.1621,-2.5829,-0.1827,30.1063,-2.6231,-0.3698,30.4451,-2.9718,-0.3182,30.2936,-3.0876,-0.3448,30.318,-3.0674,-0.2398,30.1313,-2.7031,-0.2439,30.1536,-2.6908,-0.2819,30.171,-2.7719,-0.5266,30.7967,-3.2069,-0.478,30.8115,-3.1896,-0.4326,30.8876,-3.1941,-0.5507,30.8269,-3.3032,-0.538,30.7561,-3.2535,-0.3459,30.3639,-3.143,-0.3809,30.3861,-3.114,-0.3795,30.4008,-2.9984,-0.4169,30.4983,-3.0058,-0.3695,30.3537,-3.0328,-0.3948,30.4027,-3.1882,-0.3008,30.3496,-3.1571,-0.2832,30.2164,-2.9467,-0.3245,30.284,-2.9885,-0.3329,30.3323,-2.9543,0.0,30.0794,-2.384,0.0,30.1214,-2.3509,-0.1665,30.2695,-2.5753,-0.2418,30.3434,-2.8901,0.0,30.7651,-3.0537,0.0,30.7632,-3.045,-0.4753,30.654,-3.2104,-0.5098,30.6749,-3.1984,-0.4745,30.6261,-3.2396,-0.1138,31.1564,-3.5923,0.0,31.1259,-3.6597,-0.1231,31.1362,-3.6565,0.0,31.1446,-3.5697,0.0,31.1807,-3.4664,-0.1061,31.1989,-3.4792,-0.2127,31.1674,-3.596,-0.1966,31.2048,-3.4851,-0.4804,31.0373,-3.7919,-0.4736,31.104,-3.8388,-0.1477,30.8698,-3.5909,-0.8149,31.0176,-3.6096,-0.904,31.1032,-3.6679,-0.1609,30.4104,-2.8438,-0.2088,30.3878,-2.8465,-0.2567,30.3561,-2.8532,-0.2736,30.319,-2.8658};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getcoccyx_Coord_6_103_point_2()
		{
			double[] value = {-0.2996,30.2434,-2.8858,-0.2919,30.1823,-2.9103,0.0,30.8557,-3.5971,-0.0854,31.0194,-3.1437,-0.0709,30.9283,-3.1018,-0.1766,31.0265,-3.1535,-0.0785,30.6706,-2.9853,-0.1548,30.6614,-2.9806,-0.1533,30.4929,-2.9007,-0.0768,30.4971,-2.9132,-0.0894,30.4259,-2.8183,-0.1656,30.4054,-2.8168,-0.1643,30.3033,-2.6309,-0.0754,30.2867,-2.5063,0.0,30.6049,-2.9762,0.0,30.6719,-2.9964,-0.4163,31.1746,-3.2827,-0.8681,31.2777,-3.6992,-0.8519,31.2887,-3.6229,-0.9239,31.0693,-3.457,-0.9207,31.02,-3.5073,-0.4376,30.4307,-3.1496,0.0,30.1724,-2.3449,0.0,30.2248,-2.3723,0.0,30.265,-2.4618,0.0,30.2974,-2.506,0.0,30.4285,-2.8257,0.0,30.4597,-2.8974,-0.2741,30.4572,-2.9023,-0.2131,30.479,-2.8984,0.0,30.5012,-2.9185,-0.2164,30.5315,-2.9324,-0.2905,30.5098,-2.9345,-0.3026,30.56,-2.965,-0.2271,30.582,-2.9671,0.0,30.5524,-2.9504,-0.3263,30.6234,-2.9746,-0.2327,30.6488,-2.9776,-0.4514,30.7445,-3.1606,-0.5035,30.7231,-3.1725,-1.0004,31.2065,-3.5316,0.0,31.0207,-3.1339,0.0,30.923,-3.0915,-0.8676,31.227,-3.5113,-0.9855,31.2555,-3.565,-0.8558,31.2783,-3.5627,-0.3003,31.173,-3.2368,-0.3023,31.2404,-3.2875,-0.0535,30.0758,-2.4964,0.0,30.0729,-2.5531,0.0,30.0742,-2.4958,0.0,30.1097,-2.7224,0.0,30.0985,-2.6432,-0.1579,30.1166,-2.8163,-0.2282,30.113,-2.8033,0.0,30.1234,-2.8189,-0.0767,30.1207,-2.817,-0.0812,30.1239,-2.8918,-0.1652,30.1214,-2.8864,-0.2362,30.1081,-2.8697,-0.1927,30.188,-3.0127,-0.1547,30.2275,-3.0721,-0.1622,30.2892,-3.1187,-0.1038,30.3003,-3.1215,-0.2287,30.3541,-3.1687,-0.1062,30.361,-3.1842,-0.1742,30.3561,-3.1797,0.0,30.411,-3.2469,-0.1085,30.4107,-3.25,0.0,30.3666,-3.1876,-0.112,30.5083,-3.3268,0.0,30.5123,-3.3305,-0.5166,30.6886,-3.2082,-0.3151,30.6277,-3.3505,0.0,30.6461,-3.4182,-0.8285,30.9822,-3.5283,0.0,30.7202,-3.4896,0.0,30.7845,-3.5465,-0.5329,31.0109,-3.7032,-0.5357,30.9556,-3.6388,-0.7742,31.2063,-3.727,-0.4696,31.1726,-3.8682,-0.1843,31.2825,-3.28,-0.3841,30.722,-3.1381,-0.3929,30.7363,-3.1336,-0.3098,30.6183,-3.3361,0.0,30.7976,-3.0527,0.3025,30.6237,-3.3074,0.3151,30.6277,-3.3505,0.3098,30.6183,-3.3361,0.4992,30.6288,-3.2521,0.5166,30.6886,-3.2082,0.5035,30.7231,-3.1725,0.5098,30.6749,-3.1984,0.3929,30.7363,-3.1336,0.4514,30.7445,-3.1606,0.4745,30.6261,-3.2396,0.4753,30.654,-3.2104,0.3841,30.722,-3.1381,0.5507,30.8269,-3.3032,0.5357,30.9556,-3.6388,0.4696,31.1726,-3.8682,0.3732,30.959,-3.7139,0.2127,31.1674,-3.596,0.1231,31.1362,-3.6565,0.4736,31.104,-3.8388,0.1061,31.1989,-3.4792,0.1966,31.2048,-3.4851,0.1843,31.2825,-3.28,0.3023,31.2404,-3.2875,0.8558,31.2783,-3.5627,0.8519,31.2887,-3.6229,0.904,31.1032,-3.6679,0.8149,31.0176,-3.6096,0.8285,30.9822,-3.5283,0.9207,31.02,-3.5073,0.112,30.5083,-3.3268,0.1085,30.4107,-3.25,0.3948,30.4027,-3.1882,0.3008,30.3496,-3.1571,0.2287,30.3541,-3.1687,0.1742,30.3561,-3.1797,0.1062,30.361,-3.1842,0.0,30.3026,-3.1285,0.1038,30.3003,-3.1215,0.1622,30.2892,-3.1187,0.3245,30.284,-2.9885,0.3695,30.3537,-3.0328,0.1547,30.2275,-3.0721,0.1927,30.188,-3.0127,0.2919,30.1823,-2.9103,0.0767,30.1207,-2.817,0.2122,30.0982,-2.7197,0.0535,30.0758,-2.4964,0.2996,30.2434,-2.8858,0.4163,31.1746,-3.2827,0.1803,31.1642,-3.205,0.2813,31.034,-3.1913,0.3003,31.173,-3.2368,0.1766,31.0265,-3.1535,0.8676,31.227,-3.5113,0.9855,31.2555,-3.565,1.0893,31.268,-3.6154,1.0004,31.2065,-3.5316,0.3945,31.0509,-3.2261,0.0,30.8538,-3.059,0.0709,30.9283,-3.1018,0.0,30.822,-3.0531,0.9239,31.0693,-3.457,0.3263,30.6234,-2.9746,0.2327,30.6488,-2.9776,0.3795,30.4008,-2.9984,0.3329,30.3323,-2.9543,0.3026,30.56,-2.965,0.1548,30.6614,-2.9806,0.2271,30.582,-2.9671,0.2164,30.5315,-2.9324,0.2905,30.5098,-2.9345,0.2741,30.4572,-2.9023,0.0768,30.4971,-2.9132,0.2736,30.319,-2.8658,0.2703,30.3395,-2.8299,0.2567,30.3561,-2.8532,0.2088,30.3878,-2.8465,0.1656,30.4054,-2.8168,0.2194,30.3769,-2.8192,0.1609,30.4104,-2.8438,0.0785,30.6706,-2.9853,0.0918,30.4041,-2.7578,0.0894,30.4259,-2.8183,0.1708,30.3489,-2.7117,0.1726,30.3869,-2.7562,0.0941,30.3679,-2.7086,0.1665,30.2695,-2.5753,0.1643,30.3033,-2.6309,0.0754,30.2867,-2.5063,0.1569,30.1589,-2.4722,0.2022,30.1817,-2.5282,0.055,30.2117,-2.374,1.0932,31.2134,-3.5738,0.2832,30.2164,-2.9467,0.0694,30.2513,-2.4642,0.0854,31.0194,-3.1437,0.1477,30.8698,-3.5909,0.538,30.7561,-3.2535,0.1138,31.1564,-3.5923,0.4376,30.4307,-3.1496,0.3809,30.3861,-3.114,0.3459,30.3639,-3.143,0.4169,30.4983,-3.0058,-0.3025,30.6237,-3.3074,-0.1803,31.1642,-3.205};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_104_vector_1()
		{
			double[] value = {-0.9943,0.0551,-0.0913,-0.9939,-0.1016,0.0422,-0.9821,0.0413,-0.184,-0.9789,0.118,-0.1667,-0.9787,-0.1359,0.154,-0.9752,0.1482,-0.1643,-0.9749,-0.1652,0.1496,-0.9659,-0.0925,0.2419,-0.9611,0.2608,0.0912,-0.9578,-0.2677,-0.1043,-0.9496,0.2453,-0.195,-0.9461,-0.2131,0.2439,-0.9446,-0.1127,0.3084,-0.9439,0.0198,0.3296,-0.9434,0.0976,-0.317,-0.9417,0.204,0.2674,-0.9367,-0.3374,-0.0938,-0.9355,0.2332,0.2656,-0.9351,0.3511,-0.0472,-0.9336,-0.2024,-0.2958,-0.9309,0.3475,-0.1123,-0.9284,-0.3529,-0.1162,-0.928,-0.2509,0.2755,-0.9211,-0.1376,0.3641,-0.9181,-0.1038,0.3824,-0.9127,-0.1534,-0.3788,-0.912,-0.288,0.2921,-0.9096,0.3973,-0.1215,-0.9019,-0.1457,-0.4067,-0.9017,0.024,0.4317,-0.8959,-0.3956,-0.2022,-0.8932,-0.2119,0.3965,-0.8896,0.2794,0.3613,-0.8854,-0.4307,0.1748,-0.8841,0.0973,0.4571,-0.8836,0.0509,0.4654,-0.8807,-0.0734,-0.468,-0.878,-0.3438,0.333,-0.8745,-0.4722,0.1108,-0.8729,-0.4876,0.0141,-0.872,0.3594,-0.3323,-0.87,-0.38,0.3141,-0.8695,-0.088,-0.4861,-0.8687,-0.1044,-0.4842,-0.865,0.0066,0.5017,-0.8614,-0.2969,0.4121,-0.8561,-0.2272,0.4641,-0.8548,-0.3023,0.4219,-0.8539,-0.4903,0.1744,-0.8516,0.3559,-0.385,-0.8514,-0.5237,-0.0306,-0.8508,-0.4425,-0.2833,-0.8484,0.2589,-0.4617,-0.8468,-0.5168,0.1263,-0.8458,-0.4056,0.3465,-0.8402,0.0565,0.5393,-0.8368,-0.3903,-0.3839,-0.8345,0.3458,-0.429,-0.8324,-0.1871,0.5217,-0.8307,-0.1595,0.5334,-0.8214,0.418,0.3881,-0.819,-0.4844,0.3076,-0.8176,0.292,0.4962,-0.8173,-0.5355,0.2128,-0.8168,0.5116,-0.2666,-0.8163,0.3264,0.4766,-0.8148,-0.4112,0.4086,-0.8144,-0.1954,-0.5463,-0.8132,-0.5539,-0.1788,-0.8108,0.4455,-0.3796,-0.809,0.5507,0.2054,-0.8083,-0.3173,-0.496,-0.8059,-0.1347,0.5765,-0.8002,0.3513,0.4861,-0.7958,0.0683,0.6016,-0.7952,-0.5832,0.1662,-0.7944,0.606,0.0407,-0.7879,-0.3534,0.5043,-0.7874,-0.1826,0.5888,-0.7836,-0.3752,0.4951,-0.7827,0.1058,0.6133,-0.7758,-0.5928,0.2162,-0.7739,0.5947,0.2179,-0.7713,0.6365,0.0007,-0.77,0.5323,-0.3516,-0.7658,-0.6347,-0.1032,-0.7611,0.5956,-0.2569,-0.7554,0.1462,0.6388,-0.75,-0.6484,-0.1308,-0.7498,0.321,0.5786,-0.7468,0.5004,0.438,-0.7459,-0.066,0.6628,-0.7454,0.652,0.139,-0.7429,0.3534,0.5685,-0.7411,0.5915,-0.3177,-0.7331,-0.1999,0.6501,-0.729,-0.2483,0.6379,-0.7289,-0.3243,-0.6029,-0.7266,0.6856,-0.0457,-0.7261,0.6714,-0.1481,-0.7214,0.0948,0.686,-0.7185,0.2273,-0.6573,-0.7141,0.4036,-0.5719,-0.7103,-0.1071,-0.6957,-0.7096,0.3915,0.5858,-0.7085,-0.6982,-0.103,-0.7049,-0.6919,0.1559,-0.7003,0.1336,-0.7013,-0.7002,0.086,-0.7087,-0.693,0.5499,0.4662,-0.6899,0.6007,0.404,-0.6886,0.2642,-0.6753,-0.6886,0.4389,-0.5773,-0.6861,-0.0239,0.7271,-0.6857,-0.5182,0.5112,-0.6837,-0.6986,0.211,-0.6781,-0.4957,-0.5427,-0.6747,0.2806,-0.6827,-0.6671,-0.4627,0.5839,-0.662,-0.5848,0.4688,-0.6583,0.1492,0.7378,-0.6548,0.5401,0.5287,-0.6547,-0.4597,-0.6001,-0.6538,0.0568,0.7546,-0.6536,-0.6843,-0.3232,-0.6513,-0.6812,0.3343,-0.6512,-0.6314,0.421,-0.648,0.5562,-0.5204,-0.6346,-0.6173,-0.465,-0.626,0.6954,0.3529,-0.6232,-0.6064,-0.4939,-0.6124,0.1655,0.7731,-0.6121,-0.1691,-0.7725,-0.6097,-0.6499,0.4538,-0.6087,0.6639,-0.4345,-0.6068,-0.3647,-0.7063,-0.6046,-0.4259,0.6731,-0.6037,-0.776,0.1825,-0.6006,0.0112,-0.7995,-0.5999,-0.0173,-0.7999,-0.5956,-0.6268,0.5023,-0.5939,0.4142,-0.6898,-0.5932,-0.5283,-0.6074,-0.5916,0.3472,-0.7276,-0.5912,-0.5767,-0.5638,-0.5908,-0.3335,0.7347,-0.5891,0.7852,-0.1907,-0.5818,0.6923,0.4269,-0.5776,-0.2032,0.7906,-0.5767,0.6416,-0.5058,-0.5762,0.5813,0.5745,-0.5706,-0.8057,0.1587,-0.5694,-0.6248,-0.5342,-0.5637,-0.8037,0.1904,-0.5611,0.8099,0.1709,-0.5597,-0.7158,-0.4176,-0.558,0.8296,0.0186,-0.5578,-0.3781,-0.7389,-0.5557,-0.7538,-0.3506,-0.5535,-0.8057,0.211,-0.5528,-0.333,0.7638,-0.5524,0.6924,0.4641,-0.5471,-0.0084,0.837,-0.5461,-0.2652,0.7946,-0.5441,0.7028,0.4582,-0.5385,0.634,0.555,-0.5378,-0.6095,-0.5824,-0.5357,0.8007,0.268,-0.5352,0.5189,0.6665,-0.5321,0.8422,0.087,-0.5317,0.8296,0.1703,-0.5298,-0.7652,-0.3658,-0.5293,-0.2819,0.8002,-0.5256,-0.6292,-0.5726,-0.5242,0.1136,-0.844,-0.5232,-0.8434,-0.1223,-0.5177,-0.8541,0.0503,-0.5031,-0.6321,-0.5893,-0.5027,-0.5368,-0.6776,-0.5023,0.818,0.2803,-0.4997,-0.2546,-0.8279,-0.4988,0.8657,0.0414,-0.4948,-0.1555,-0.855,-0.4878,0.8729,0.0068,-0.4863,0.8736,0.0163,-0.4853,-0.0333,0.8737,-0.4839,0.8626,0.1475,-0.479,0.0636,0.8755,-0.4779,0.3262,-0.8156,-0.4767,-0.2954,-0.828,-0.4763,0.131,0.8695,-0.4737,0.2056,0.8564,-0.4735,-0.875,-0.1007,-0.4728,-0.6682,-0.5744,-0.4724,0.8016,0.3664,-0.4721,0.1894,0.861,-0.4715,-0.6218,-0.6253,-0.4648,-0.3297,0.8217,-0.4647,-0.7016,-0.5402,-0.4623,-0.7106,-0.5305,-0.461,-0.5743,-0.6765,-0.4559,0.7884,-0.4129,-0.4541,-0.2184,0.8638,-0.4515,-0.7901,-0.4146,-0.4502,-0.883,0.1326,-0.4479,-0.5776,-0.6824,-0.4464,-0.6892,-0.5707,-0.445,0.3328,0.8314,-0.4439,0.896,-0.0126,-0.435,0.6695,0.6021,-0.4344,0.8059,-0.4022,-0.4261,0.3448,0.8364,-0.4257,0.1629,0.8901,-0.4251,0.4253,-0.799,-0.4238,-0.0383,0.905,-0.4197,-0.8464,-0.3277,-0.4174,0.3421,0.8418,-0.4173,-0.5587,-0.7167,-0.4152,0.8869,0.2025,-0.4149,0.2591,0.8722,-0.4119,0.7126,0.5679,-0.4088,-0.8631,-0.2966,-0.4075,0.0888,0.9089,-0.4073,0.2858,0.8674,-0.4057,0.8655,0.2939,-0.3982,-0.7015,-0.591,-0.398,0.2829,0.8727,-0.3978,-0.4197,-0.8159,-0.3974,-0.583,-0.7086,-0.397,0.0023,-0.9178,-0.3943,-0.6259,-0.6729,-0.3939,0.2718,0.878,-0.3898,-0.7316,-0.5592,-0.3884,-0.9056,-0.1705,-0.3862,-0.4441,-0.8084,-0.3807,-0.7994,-0.4647,-0.3771,0.7329,0.5663,-0.3741,-0.8639,-0.3372,-0.3735,0.8661,0.3323,-0.3719,0.3182,0.8721,-0.371,0.8816,-0.2919,-0.3694,0.2675,0.8899,-0.3683,-0.4249,0.8269,-0.3681,0.5643,0.7389,-0.3662,-0.1001,-0.9252,-0.3644,-0.6927,-0.6224,-0.3633,-0.441,-0.8207,-0.3617,0.3354,0.8699,-0.3611,-0.9146,-0.1822,-0.3572,0.7991,0.4835,-0.3556,0.1835,0.9164,-0.3513,-0.132,0.9269,-0.351,0.3072,0.8846,-0.3506,0.2633,0.8987,-0.3464,0.001,0.9381,-0.3457,0.9188,0.1904,-0.3448,0.8235,-0.4504,-0.3448,-0.7248,-0.5965,-0.3414,0.2669,0.9012,-0.3411,0.937,0.0751,-0.34,-0.7282,-0.5951,-0.3373,-0.7467,-0.5732,-0.3361,0.1763,0.9252,-0.3355,0.2491,0.9085,-0.3349,0.8354,0.4359,-0.3313,-0.7785,-0.5331,-0.3302,0.8148,0.4766,-0.3288,0.5924,0.7355,-0.3254,-0.8454,-0.4236,-0.3247,0.0415,-0.9449,-0.3234,0.2181,0.9208,-0.3226,-0.6995,-0.6377,-0.3203,0.2457,0.9149,-0.3194,0.9367,-0.1434,-0.3187,-0.7449,-0.5861,-0.3179,0.1998,0.9268,-0.3175,0.5938,-0.7393,-0.3165,0.2622,0.9116,-0.3146,-0.0797,-0.9459,-0.3141,0.9481,-0.0487,-0.3126,0.8562,-0.4113,-0.311,0.9343,0.1745,-0.3096,-0.3449,-0.8861,-0.3093,0.6851,0.6596,-0.3084,-0.2494,-0.918,-0.3078,0.3793,0.8726,-0.3078,-0.5985,-0.7396,-0.3074,-0.7775,-0.5486,-0.3071,0.6499,0.6952,-0.3028,0.3777,0.875,-0.3024,0.953,-0.0179,-0.302,0.8277,0.473,-0.2959,-0.6215,-0.7254,-0.2951,0.4912,0.8196,-0.2927,-0.7108,-0.6395,-0.2921,0.5177,0.8041,-0.2908,0.8799,-0.3757,-0.2893,0.3755,0.8805,-0.2868,-0.7669,-0.574,-0.2864,-0.7179,-0.6345,-0.2855,0.4006,0.8706,-0.2855,-0.1875,0.9399,-0.2854,0.6887,0.6665,-0.2841,-0.6461,-0.7084,-0.2812,0.2737,0.9198,-0.2788,-0.6597,0.6979,-0.2773,-0.9599,-0.0405,-0.273,0.2531,0.9281,-0.2674,0.3431,-0.9004,-0.264,-0.2044,0.9426,-0.2621,0.4621,0.8472,-0.262,0.9651,-0.0042,-0.2618,0.4547,0.8513,-0.2612,0.295,0.9191,-0.2594,0.8732,-0.4126,-0.2547,0.3665,0.8949,-0.2546,-0.7447,-0.617,-0.2516,-0.7129,-0.6546,-0.2514,0.3442,0.9046,-0.2492,0.8782,0.4081,-0.2491,0.5596,0.7905,-0.2489,0.9349,-0.2528,-0.2488,0.5649,0.7868,-0.2487,-0.0288,-0.9682,-0.2453,0.6713,-0.6994,-0.2446,0.7945,0.5558,-0.2433,-0.9577,0.1536,-0.2396,-0.565,-0.7896,-0.2387,-0.7222,-0.6492,-0.2379,0.3425,0.9089,-0.2377,-0.6145,-0.7523,-0.237,0.8876,0.3949,-0.2367,0.2009,0.9506,-0.2364,-0.2134,-0.9479,-0.2361,-0.9367,0.2585,-0.2351,-0.7503,-0.6179,-0.2335,-0.9633,-0.1323,-0.2323,0.9599,-0.1566,-0.2313,0.9699,0.0766,-0.2282,0.6659,0.7103,-0.2263,-0.7901,-0.5698,-0.2255,-0.193,0.9549,-0.2231,0.8841,-0.4105,-0.2215,-0.7956,-0.5638,-0.221,0.0856,0.9715,-0.2183,0.729,0.6487,-0.2176,0.6373,-0.7393,-0.2173,0.7193,0.6598,-0.214,0.6508,0.7284,-0.2115,-0.4926,-0.8441,-0.2065,0.9371,0.2813,-0.2064,-0.2353,-0.9498,-0.2045,0.8756,0.4376,-0.2016,-0.6092,-0.767,-0.2,0.3567,0.9125,-0.198,-0.059,0.9784,-0.1963,-0.219,0.9558,-0.1958,0.9508,0.24,-0.1941,0.2865,0.9382,-0.1931,0.3015,-0.9337,-0.192,0.326,0.9257,-0.1878,-0.9816,0.0356,-0.1875,0.0864,-0.9785,-0.1872,-0.2054,-0.9606,-0.1825,0.1796,0.9667,-0.1823,-0.6349,-0.7508,-0.1745,-0.312,0.9339,-0.1715,-0.6181,-0.7672,-0.1706,0.1256,-0.9773,-0.1704,-0.4269,0.8881,-0.1698,-0.1128,0.979,-0.169,0.1973,0.9657,-0.1688,-0.6705,-0.7224,-0.167,0.9732,-0.1581,-0.1636,0.0726,0.9839,-0.1607,0.9109,0.3801,-0.1571,0.791,-0.5914,-0.1563,-0.9713,-0.1794,-0.1542,-0.6087,-0.7783,-0.153,-0.3914,-0.9074,-0.1523,-0.7487,-0.6451,-0.1498,0.1919,0.9699,-0.1459,-0.9756,0.1642,-0.1448,-0.1101,0.9833,-0.1437,0.3334,-0.9318,-0.1432,0.8511,0.5051,-0.1426,0.9884,-0.0527,-0.1419,0.8389,0.5254,-0.1413,0.9639,-0.2255,-0.1407,0.9339,-0.3286,-0.1403,0.7547,-0.6409,-0.1399,-0.9885,-0.058,-0.1397,0.9873,-0.0756,-0.1388,0.4151,0.8991,-0.1379,-0.9076,0.3966,-0.1365,0.1772,0.9747,-0.1341,0.9447,-0.2991,-0.1338,0.7129,0.6884,-0.1333,0.5933,0.7938,-0.1323,0.9467,-0.2936,-0.1313,0.1377,-0.9817,-0.1285,0.9239,-0.3604,-0.1281,0.5325,0.8367,-0.1275,0.9565,-0.2626,-0.1273,0.2362,0.9633,-0.126,0.4244,0.8967,-0.126,0.5331,-0.8366,-0.1256,-0.3884,-0.9129,-0.125,0.9708,0.2045,-0.1246,-0.6241,-0.7713,-0.1216,0.4419,0.8888,-0.1215,0.9418,-0.3136,-0.1202,0.9923,0.0296,-0.1198,0.3506,0.9288,-0.1182,-0.9791,-0.1657,-0.1169,0.8202,0.56,-0.1149,-0.5797,-0.8067,-0.1147,-0.7817,-0.613,-0.1142,0.6082,0.7855,-0.1115,-0.403,-0.9084,-0.1105,-0.7586,-0.6421,-0.1081,-0.9797,-0.1686,-0.1077,-0.7004,-0.7056,-0.1065,-0.3826,0.9178,-0.1053,0.9547,-0.2784,-0.1039,-0.1195,0.9874,-0.1026,-0.6679,-0.7371,-0.1008,-0.9833,-0.1516,-0.1001,-0.9943,-0.0377,-0.0974,0.8983,-0.4284,-0.0971,0.3789,0.9203,-0.0947,-0.228,0.969,-0.0931,0.9703,-0.2233,-0.0928,0.3123,-0.9454,-0.0917,0.9099,0.4045,-0.0908,0.5231,0.8474,-0.0907,0.1321,-0.9871,-0.0896,-0.042,0.9951,-0.0892,0.9916,-0.0941,-0.0877,0.353,-0.9315,-0.0876,0.9224,0.3761,-0.0863,0.7045,0.7044,-0.0857,0.9694,0.23,-0.0854,-0.1456,0.9857,-0.0851,0.1595,0.9835,-0.0843,-0.4385,-0.8947,-0.0834,-0.7137,-0.6955,-0.0817,-0.7171,-0.6922,-0.0813,0.8884,0.4519,-0.0806,-0.5952,-0.7995,-0.0804,-0.9932,-0.0839,-0.0786,-0.3931,0.9161,-0.0782,-0.9436,-0.3216,-0.0772,-0.5409,-0.8376,-0.0763,0.9457,0.3161,-0.0746,-0.9754,-0.2076,-0.0739,0.9329,-0.3526,-0.0733,-0.9957,-0.0562,-0.0707,0.7788,-0.6233,-0.0701,-0.9581,0.2777,-0.0701,-0.9187,-0.3886,-0.0701,0.993,-0.0952,-0.0699,-0.9121,-0.4039,-0.0686,0.5175,0.8529,-0.0675,-0.8096,-0.583,-0.0667,0.8676,0.4927,-0.0666,0.4938,0.867,-0.0666,-0.6053,-0.7932,-0.0664,-0.9944,-0.0823,-0.0648,-0.7561,-0.6512,-0.0638,-0.9691,-0.2381,-0.0637,0.7884,-0.6119,-0.0634,0.4477,0.8919,-0.0621,-0.7216,-0.6895,-0.0595,-0.771,-0.6341,-0.0562,-0.6976,-0.7143,-0.0559,-0.8817,-0.4685,-0.0547,0.9499,-0.3079,-0.0547,0.4063,0.9121,-0.0514,0.3791,0.9239,-0.0514,-0.9736,-0.2223,-0.0509,0.9965,-0.0669,-0.0509,0.359,0.9319,-0.0508,0.998,-0.0375,-0.0496,-0.9807,-0.1893,-0.0495,0.615,-0.787,-0.0458,-0.6163,-0.7862,-0.0443,0.0744,-0.9962,-0.0442,-0.9857,-0.1626,-0.0442,0.9339,-0.3547,-0.0438,-0.8952,0.4436,-0.0428,-0.0213,-0.9989,-0.0414,-0.5781,-0.8149,-0.0412,-0.3789,-0.9245,-0.0409,-0.7355,-0.6762,-0.0406,0.7448,0.666,-0.0399,-0.8901,-0.454,-0.0386,0.9567,0.2884,-0.0377,-0.7333,-0.6789,-0.0376,-0.9989,0.0286,-0.0367,0.6495,-0.7595,-0.0366,0.9297,-0.3665,-0.0358,-0.999,0.0277,-0.0351,-0.9967,-0.0727,-0.0342,-0.7664,-0.6414,-0.0338,0.9974,-0.0632,-0.0335,0.3278,0.9441,-0.033,-0.0395,-0.9987,-0.0327,0.9862,-0.1624,-0.0305,0.9971,0.0701,-0.0303,-0.8147,-0.5791,-0.0303,0.5599,0.828,-0.0292,-0.7669,-0.6411,-0.0291,-0.9811,0.1911,-0.0289,-0.9572,-0.288,-0.0277,-0.6353,-0.7718,-0.0272,-0.6418,-0.7664,-0.0269,-0.6577,-0.7528,-0.0268,0.2322,0.9723,-0.0262,0.3117,0.9498,-0.0252,0.9925,-0.1198,-0.0248,-0.6152,-0.788,-0.0247,0.959,-0.2825,-0.0238,0.0936,-0.9953,-0.0228,0.9619,-0.2725,-0.0228,0.3685,0.9293,-0.0225,-0.3625,-0.9317,-0.0217,-0.8248,-0.565,-0.0214,-0.4327,-0.9013,-0.021,-0.4715,-0.8816,-0.0204,0.1607,-0.9868,-0.02,-0.645,-0.7639,-0.0196,0.5161,0.8563,-0.0195,0.2811,-0.9595,-0.0193,0.8702,0.4923,-0.0191,0.4507,0.8925,-0.0186,0.2324,0.9724,-0.0171,-0.9905,-0.1362,-0.017,-0.9793,0.2016,-0.0169,-0.1104,-0.9937,-0.0168,0.9014,-0.4326,-0.0167,-0.971,-0.2385,-0.0157,-0.7496,-0.6617,-0.0146,-0.8608,-0.5087,-0.0135,-0.7795,-0.6263,-0.0132,0.6796,0.7335,-0.0117,-0.9135,0.4066,-0.0115,0.5227,0.8524,-0.0114,0.9894,-0.1444,-0.0111,0.0548,0.9984,-0.0102,-0.9848,-0.1732,-0.0101,0.2915,-0.9565,-0.0098,-0.7096,-0.7045,-0.0095,0.9021,0.4313,-0.0079,-0.9473,-0.3202,-0.0077,0.8981,0.4398,-0.0076,-0.7862,-0.6179,-0.0071,-0.9613,-0.2755,-0.0069,0.9574,-0.2886,-0.0067,-0.644,-0.765,-0.006,0.0282,-0.9996,-0.0057,-0.6985,-0.7156,-0.0039,-0.9893,-0.1462,0.0,-0.059,0.9983,0.0,0.0979,0.9952,0.0,0.2056,0.9786,0.0,0.3,0.9539,0.0,0.3388,0.9409,0.0,-0.3474,0.9377,0.0,0.3988,0.917,0.0,0.4,0.9165,0.0,0.4231,0.9061,0.0,0.4373,0.8993,0.0,0.4902,0.8716,0.0,0.4907,0.8713,0.0,0.5803,0.8144,0.0,0.5963,0.8028,0.0,0.6249,0.7807,0.0,0.7413,0.6711,0.0,0.7663,0.6425,0.0,0.7972,0.6037,0.0,0.8526,0.5226,0.0,0.8701,0.4929,0.0,0.8892,0.4574,0.0,-0.8917,0.4525,0.0,0.8954,0.4453,0.0,0.8967,0.4425,0.0,0.9221,0.3871,0.0,-0.9548,0.2972,0.0,0.9688,0.2477,0.0,0.9768,0.2142,0.0,-0.9997,0.0255,0.0,-0.9983,-0.0579,0.0,-0.9944,-0.1055,0.0,-0.9887,-0.1497,0.0,-0.987,-0.1604,0.0,0.9823,-0.1872,0.0,0.9618,-0.2737,0.0,0.9501,-0.3121,0.0,-0.812,-0.5837,0.0,-0.7449,-0.6672,0.0,-0.7194,-0.6946,0.0,-0.6791,-0.7341,0.0,-0.6693,-0.743,0.0,0.6559,-0.7549,0.0,-0.6367,-0.7711,0.0,-0.568,-0.823,0.0,-0.4806,-0.877,0.0,-0.3737,-0.9275,0.0,0.1106,-0.9939,0.0,-0.0673,-0.9977,0.0005,0.5631,0.8264,0.0023,0.6746,0.7382,0.0025,-0.0272,-0.9996,0.0039,-0.9893,-0.1462,0.0042,-0.9964,-0.0847,0.0047,-0.0219,-0.9997,0.0049,-0.7461,-0.6658,0.0052,-0.9653,-0.2611,0.0052,0.3711,0.9286,0.0057,-0.6985,-0.7156,0.0059,0.9956,-0.0931,0.0061,0.7082,0.706,0.0071,0.2942,-0.9557,0.0076,-0.7862,-0.6179,0.0077,0.8981,0.4398,0.0077,0.9492,-0.3145,0.008,0.5482,0.8363,0.008,-0.6475,-0.762,0.0081,0.3954,-0.9185,0.0088,-0.9232,-0.3843,0.0095,0.9021,0.4313,0.0095,0.3907,-0.9205,0.0098,-0.7096,-0.7045,0.0102,-0.9848,-0.1732,0.0103,0.1688,-0.9856,0.0114,0.9894,-0.1444,0.0115,0.5227,0.8524,0.0117,-0.9135,0.4066,0.0128,0.9904,-0.1378,0.0129,0.3661,-0.9305,0.0131,-0.996,0.0881,0.0135,0.1204,-0.9926,0.0138,0.5501,0.835,0.0144,0.9581,0.286,0.0147,-0.1356,0.9907,0.015,0.9957,0.0914,0.0153,0.2567,0.9664,0.0154,0.7048,0.7092,0.0154,0.1214,0.9925,0.0157,-0.7496,-0.6617,0.016,-0.8081,-0.5889,0.0167,-0.827,-0.5619,0.0168,0.9014,-0.4326,0.017,-0.9793,0.2016,0.0173,0.3871,0.9219,0.0175,0.9421,-0.3347,0.0188,0.2331,0.9723,0.0188,-0.9664,-0.2563,0.0189,0.3132,0.9495,0.0193,0.8702,0.4923,0.0195,0.2811,-0.9595,0.0196,0.5161,0.8563,0.021,-0.4715,-0.8816,0.0224,-0.7421,-0.6699,0.0225,0.0834,-0.9963,0.0225,-0.3625,-0.9317,0.0228,0.3685,0.9293,0.0228,0.9619,-0.2725,0.0228,-0.9997,-0.0092,0.0229,-0.925,-0.3792,0.0235,0.3268,0.9448,0.0247,0.959,-0.2825,0.0248,-0.6152,-0.788,0.0253,-0.9921,-0.1232,0.026,-0.1042,-0.9942,0.0266,-0.972,-0.2333,0.0269,-0.6577,-0.7528,0.0272,-0.6418,-0.7664,0.0277,-0.6353,-0.7718,0.0281,-0.9508,-0.3086,0.0282,0.9978,-0.0604,0.0287,0.4613,0.8868,0.0291,-0.9811,0.1911,0.0292,-0.7669,-0.6411,0.0303,0.5599,0.828,0.0322,-0.3919,-0.9194,0.0327,0.9862,-0.1624,0.0339,0.0661,-0.9972,0.0351,-0.9967,-0.0727,0.0358,-0.999,0.0277,0.0366,0.9297,-0.3665,0.0367,0.6495,-0.7595,0.0376,-0.9954,-0.088,0.0376,-0.9989,0.0286,0.0377,0.8661,0.4985,0.0399,-0.8901,-0.454,0.0406,0.7448,0.666,0.0409,-0.7355,-0.6762,0.0428,-0.0213,-0.9989,0.0429,-0.7771,-0.6279,0.0431,-0.7648,-0.6428,0.0436,0.0674,0.9968,0.0438,-0.8952,0.4436,0.045,0.5093,0.8594,0.0451,-0.9942,-0.0978,0.046,-0.6937,-0.7188,0.0468,-0.7306,-0.6812,0.0473,-0.5413,-0.8395,0.048,-0.9158,-0.3989,0.0495,0.615,-0.787,0.0498,-0.9656,-0.2554,0.0499,-0.5955,-0.8018,0.0504,-0.0525,-0.9973,0.0505,-0.9814,-0.185,0.0507,0.9552,0.2917,0.0508,0.998,-0.0375,0.0509,0.359,0.9319,0.0512,-0.9223,-0.383,0.0514,-0.9736,-0.2223,0.0514,0.3791,0.9239,0.0521,-0.9736,-0.2222,0.0541,-0.6095,-0.791,0.0547,0.4063,0.9121,0.0547,0.9499,-0.3079,0.057,0.1305,-0.9898,0.0605,-0.9875,-0.1456,0.0621,-0.7216,-0.6895,0.063,-0.8237,-0.5635,0.0634,0.4477,0.8919,0.0637,0.7884,-0.6119,0.0648,-0.7561,-0.6512,0.0666,-0.6053,-0.7932,0.0701,0.993,-0.0952,0.0701,-0.9581,0.2777,0.0707,0.7788,-0.6233,0.073,0.5293,0.8453,0.0739,0.9329,-0.3526,0.0745,-0.7773,-0.6247,0.0771,-0.2267,0.9709,0.0778,-0.583,-0.8087,0.0782,-0.9436,-0.3216,0.0786,-0.3931,0.9161,0.0792,-0.1212,0.9895,0.0804,-0.9932,-0.0839,0.0805,0.3427,-0.936,0.0813,0.8884,0.4519,0.0817,-0.7171,-0.6922,0.0834,-0.7137,-0.6955,0.0844,-0.8834,-0.4611,0.0851,0.1595,0.9835,0.0854,-0.1456,0.9857,0.0876,0.9224,0.3761,0.0881,0.5402,-0.8369,0.0892,0.9916,-0.0941,0.0896,-0.042,0.9951,0.0898,-0.3959,0.9139,0.0908,0.5231,0.8474,0.0917,0.9099,0.4045,0.0928,0.3123,-0.9454,0.0944,-0.4309,-0.8975,0.0955,0.6988,0.7089,0.0963,0.9718,0.2155,0.0967,0.9441,0.3152,0.0971,0.3789,0.9203,0.0974,0.8983,-0.4284,0.1008,-0.9833,-0.1516,0.1026,-0.6679,-0.7371,0.1053,0.9547,-0.2784,0.1057,0.7238,0.6818,0.1077,-0.7004,-0.7056,0.1077,0.973,-0.2043,0.1079,0.6063,0.7879,0.1087,-0.9797,-0.1682,0.1105,-0.7586,-0.6421,0.1115,-0.403,-0.9084,0.1138,-0.9933,-0.019,0.1147,-0.7817,-0.613,0.1149,-0.5797,-0.8067,0.1169,0.8202,0.56,0.1192,0.2499,0.9609,0.1198,0.3506,0.9288,0.1202,0.9923,0.0296,0.1204,0.4038,0.9069,0.1209,0.1407,-0.9827,0.1215,0.9418,-0.3136,0.1216,0.4419,0.8888,0.1243,0.9541,-0.2726,0.1246,-0.6241,-0.7713,0.125,0.9708,0.2045,0.1256,-0.3884,-0.9129,0.126,0.4244,0.8967,0.1281,0.5325,0.8367,0.1323,0.9467,-0.2936,0.1333,0.5933,0.7938,0.1341,0.9247,-0.3562,0.1341,0.9447,-0.2991,0.1365,0.1772,0.9747,0.1379,-0.9076,0.3966,0.1389,0.9893,-0.0437,0.1397,0.9873,-0.0756,0.1398,-0.6181,-0.7736,0.1407,0.9339,-0.3286,0.1409,-0.9734,-0.1807,0.1413,0.9639,-0.2255,0.1419,0.8389,0.5254,0.1425,-0.4104,-0.9007,0.1437,0.3334,-0.9318,0.1456,0.1807,0.9727,0.1459,-0.9756,0.1642,0.1461,0.9068,0.3955,0.148,-0.9882,-0.04,0.1513,-0.1019,0.9832,0.1523,-0.7487,-0.6451,0.156,0.8506,0.5021,0.1561,-0.3267,0.9321,0.1563,-0.9713,-0.1794,0.1636,0.0726,0.9839,0.1665,-0.599,-0.7833,0.167,0.9732,-0.1581,0.1688,-0.6705,-0.7224,0.1706,0.1256,-0.9773,0.1708,-0.4277,0.8876,0.1715,-0.6181,-0.7672,0.1735,0.1996,0.9644,0.1741,-0.1299,0.9761,0.1848,-0.2116,0.9597,0.1872,-0.2054,-0.9606,0.1879,0.7341,-0.6525,0.189,0.7952,-0.5761,0.192,0.326,0.9257,0.1931,0.3015,-0.9337,0.1941,0.2865,0.9382,0.1954,0.1872,0.9627,0.198,-0.059,0.9784,0.1984,0.9416,0.2721,0.2,0.3567,0.9125,0.2042,-0.9788,0.0184,0.2064,-0.2353,-0.9498,0.2065,-0.6411,-0.7392,0.2072,0.7604,0.6155,0.2092,0.7252,0.6559,0.2096,0.0773,-0.9747,0.214,0.6508,0.7284,0.2146,-0.2006,-0.9559,0.2176,0.6373,-0.7393,0.2184,0.9429,0.2515,0.2196,0.8682,0.4449,0.2215,-0.7956,-0.5638,0.2238,-0.7396,-0.6347,0.2256,-0.1946,0.9546,0.2282,0.6659,0.7103,0.2313,0.9699,0.0766,0.2323,0.9599,-0.1566,0.234,-0.7824,-0.5772,0.2351,-0.7503,-0.6179,0.2366,0.8053,0.5436,0.2367,0.2009,0.9506,0.237,0.8876,0.3949,0.2377,-0.6145,-0.7523,0.2379,0.3425,0.9089,0.2387,-0.7222,-0.6492,0.2396,-0.565,-0.7896,0.2424,0.5536,0.7967,0.2433,-0.9577,0.1536,0.2453,0.6713,-0.6994,0.2465,-0.9612,-0.1235,0.2478,-0.2142,0.9448,0.248,0.8706,-0.4248,0.2488,0.5649,0.7868,0.2492,0.8782,0.4081,0.2514,0.3442,0.9046,0.2526,0.1112,0.9612,0.2553,-0.4912,-0.8328,0.2594,0.8732,-0.4126,0.2615,-0.9351,0.2393,0.2618,0.4547,0.8513,0.262,0.9651,-0.0042,0.2621,0.4621,0.8472,0.2622,-0.7377,-0.6221,0.2643,0.6844,0.6795,0.2662,-0.7294,-0.6302,0.2663,0.248,0.9314,0.2674,0.9263,-0.2655,0.2684,-0.6149,-0.7415,0.2773,-0.9599,-0.0405,0.2788,-0.6597,0.6979,0.284,0.2708,0.9198,0.2841,-0.6461,-0.7084,0.2855,-0.1875,0.9399,0.2855,0.4006,0.8706,0.2864,-0.7179,-0.6345,0.2868,-0.7669,-0.574,0.2893,0.3755,0.8805,0.2894,0.348,0.8917,0.2908,0.8799,-0.3757,0.2921,0.5177,0.8041,0.2927,-0.7907,-0.5377,0.2945,0.2848,0.9122,0.2945,0.9417,0.1626,0.2956,0.2849,0.9118,0.2961,0.9431,-0.1514,0.298,0.2843,0.9112,0.2991,0.3723,0.8786,0.3015,0.3354,-0.8925,0.302,0.8277,0.473,0.3024,0.953,-0.0179,0.3028,0.3777,0.875,0.303,0.5073,0.8067,0.3071,0.6499,0.6952,0.3078,-0.5985,-0.7396,0.3084,-0.2494,-0.918,0.3093,0.6851,0.6596,0.3096,-0.3449,-0.8861,0.3126,0.8562,-0.4113,0.3141,0.9481,-0.0487,0.3146,-0.0797,-0.9459,0.3164,-0.6927,-0.6481,0.3175,0.5938,-0.7393,0.3179,0.1998,0.9268,0.3187,-0.7449,-0.5861,0.3189,-0.0391,-0.947,0.3244,0.166,0.9313,0.3254,-0.8454,-0.4236,0.3277,-0.7564,-0.5661,0.3283,0.0326,-0.944,0.3313,0.3072,0.8921,0.3313,-0.7785,-0.5331,0.3319,-0.9211,-0.2035,0.3342,-0.7346,-0.5904,0.3349,0.8354,0.4359,0.3361,0.1976,0.9209,0.3376,0.0073,0.9413,0.34,-0.7282,-0.5951,0.3411,0.937,0.0751,0.3414,0.2669,0.9012,0.3448,0.8235,-0.4504,0.3457,0.9188,0.1904,0.351,0.3072,0.8846,0.3513,-0.132,0.9269,0.3556,0.1835,0.9164,0.3558,0.5735,0.7379,0.3572,0.7991,0.4835,0.3617,0.3354,0.8699,0.3644,-0.6927,-0.6224,0.3649,0.1767,0.9141,0.3662,-0.1001,-0.9252,0.3681,0.5643,0.7389,0.3683,-0.4249,0.8269,0.371,0.8816,-0.2919,0.3741,-0.8639,-0.3372,0.3766,0.7782,0.5026,0.3771,0.7329,0.5663,0.3773,-0.9105,-0.1694,0.3778,0.3232,0.8676,0.3802,-0.6914,-0.6143,0.3807,-0.7994,-0.4647,0.3814,0.2518,0.8895,0.3862,-0.4441,-0.8084,0.3866,0.8587,0.3365,0.3892,0.7052,0.5927,0.3895,-0.6216,-0.6797,0.3896,-0.4319,-0.8134,0.3898,-0.7316,-0.5592,0.3933,0.8752,0.2817,0.3939,0.2718,0.878,0.3954,0.3398,0.8534,0.3978,-0.4197,-0.8159,0.4059,-0.5728,-0.7121,0.4073,0.2858,0.8674,0.4075,0.0888,0.9089,0.4088,-0.8631,-0.2966,0.411,0.0643,-0.9094,0.4149,0.2591,0.8722,0.4152,0.8869,0.2025,0.4153,0.2766,0.8666,0.4173,-0.5587,-0.7167,0.4174,0.3421,0.8418,0.4197,-0.8464,-0.3277,0.4238,-0.0383,0.905,0.4251,0.4253,-0.799,0.4254,-0.6755,-0.6022,0.4257,0.1629,0.8901,0.447,0.6831,0.5776,0.4502,-0.883,0.1326,0.4515,-0.7901,-0.4146,0.4527,-0.5803,-0.677,0.453,0.7969,0.3997,0.4537,0.8905,0.0338,0.4541,-0.2184,0.8638,0.4559,0.7884,-0.4129,0.4563,0.1295,0.8803,0.4568,0.8887,-0.0387,0.4578,0.3503,-0.8172,0.462,0.0829,0.883,0.4648,-0.3297,0.8217,0.4715,-0.6218,-0.6253,0.4721,0.1894,0.861,0.4724,0.8021,-0.3654,0.4735,-0.875,-0.1007};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_104_vector_2()
		{
			double[] value = {0.4737,0.2056,0.8564,0.4768,-0.2991,-0.8266,0.4792,-0.7062,-0.5213,0.4839,0.8626,0.1475,0.4851,0.3395,0.8059,0.4853,-0.0333,0.8737,0.4863,0.8736,0.0163,0.4905,-0.6654,-0.5627,0.4961,-0.7124,-0.4964,0.4988,0.8657,0.0414,0.4996,0.8661,0.0178,0.4997,-0.2546,-0.8279,0.5023,0.818,0.2803,0.5027,-0.5368,-0.6776,0.5151,0.1152,-0.8494,0.516,-0.517,-0.683,0.5176,0.5029,0.6923,0.5177,-0.8541,0.0503,0.5184,-0.6142,-0.5949,0.5227,-0.0165,0.8524,0.5232,-0.8434,-0.1223,0.5252,-0.1549,-0.8368,0.5256,-0.6292,-0.5726,0.5293,-0.2819,0.8002,0.5298,-0.7652,-0.3658,0.5317,0.8296,0.1703,0.5357,0.8007,0.268,0.5378,-0.6095,-0.5824,0.5385,0.634,0.555,0.5441,0.7028,0.4582,0.5461,-0.2652,0.7946,0.5524,0.6924,0.4641,0.5535,-0.8057,0.211,0.5554,-0.7096,-0.4336,0.5557,-0.7538,-0.3506,0.5571,0.8247,0.0975,0.5578,-0.3781,-0.7389,0.5611,0.8099,0.1709,0.5637,-0.8037,0.1904,0.5646,-0.3368,0.7535,0.571,-0.8017,0.1766,0.5762,0.5813,0.5745,0.5767,0.6416,-0.5058,0.577,-0.3502,0.7379,0.5776,-0.2032,0.7906,0.5818,0.6923,0.4269,0.5891,0.7852,-0.1907,0.5931,0.3448,-0.7276,0.5932,-0.5283,-0.6074,0.5949,-0.656,-0.4645,0.5956,-0.6268,0.5023,0.5999,-0.0173,-0.7999,0.6013,-0.6287,-0.4931,0.6037,-0.776,0.1825,0.6046,-0.4259,0.6731,0.6046,0.4269,-0.6725,0.6049,0.6745,-0.4233,0.6067,-0.5507,-0.5733,0.6097,-0.6499,0.4538,0.6124,0.1655,0.7731,0.6159,-0.1715,-0.7689,0.6209,-0.0101,-0.7838,0.6249,0.522,-0.5806,0.6251,-0.3879,-0.6773,0.626,0.6954,0.3529,0.6406,-0.624,-0.4475,0.6506,0.248,-0.7178,0.6512,-0.6314,0.421,0.6513,-0.6812,0.3343,0.6538,0.0568,0.7546,0.6548,0.5401,0.5287,0.6558,-0.4208,-0.6268,0.6583,0.1492,0.7378,0.6613,-0.5999,0.4502,0.6616,-0.6757,-0.3252,0.6624,0.2643,-0.701,0.6671,-0.4627,0.5839,0.6781,-0.4957,-0.5427,0.6832,0.6139,0.3954,0.6837,-0.6986,0.211,0.6857,-0.5182,0.5112,0.686,0.0207,0.7273,0.6881,0.4107,-0.5981,0.6928,0.3923,0.6051,0.693,0.5499,0.4662,0.6974,0.0614,-0.714,0.7003,0.1336,-0.7013,0.7074,-0.6884,0.1603,0.7085,-0.6982,-0.103,0.7103,-0.1071,-0.6957,0.715,0.6976,0.0458,0.7172,0.3883,-0.5786,0.7185,0.2273,-0.6573,0.7214,0.0948,0.686,0.7223,-0.6798,-0.1269,0.7261,0.6714,-0.1481,0.729,-0.2483,0.6379,0.7324,-0.328,-0.5967,0.7331,-0.1999,0.6501,0.7411,0.5915,-0.3177,0.7454,0.652,0.139,0.7459,0.6155,-0.2545,0.7459,-0.066,0.6628,0.7501,0.3627,0.553,0.7554,0.1462,0.6388,0.7592,0.6314,0.1582,0.7648,0.3179,0.5603,0.7658,-0.6347,-0.1032,0.768,0.4692,0.4359,0.7713,0.6365,0.0007,0.7747,0.5325,-0.341,0.7758,-0.5928,0.2162,0.7792,0.0872,0.6207,0.7803,-0.3404,0.5247,0.7858,-0.5964,0.1639,0.7874,-0.1826,0.5888,0.7944,0.606,0.0407,0.7952,0.356,0.4908,0.7953,-0.299,-0.5274,0.7989,0.5729,0.1832,0.8006,-0.4094,0.4377,0.8059,-0.1347,0.5765,0.8087,-0.5607,-0.178,0.8108,0.4455,-0.3796,0.8144,-0.1954,-0.5463,0.8148,0.0689,0.5757,0.8163,0.3264,0.4766,0.8168,0.5116,-0.2666,0.8173,-0.5355,0.2128,0.8176,0.292,0.4962,0.819,-0.4829,0.3098,0.8208,-0.2197,0.5273,0.8214,0.418,0.3881,0.8265,0.3513,-0.4398,0.8307,-0.1595,0.5334,0.8337,-0.4212,0.3572,0.8364,0.029,0.5474,0.8368,-0.3903,-0.3839,0.8421,0.3975,-0.3645,0.8468,-0.5168,0.1263,0.8484,0.2589,-0.4617,0.8508,-0.4425,-0.2833,0.8523,-0.5204,-0.0525,0.8548,-0.3023,0.4219,0.8561,-0.2272,0.4641,0.8605,-0.1227,-0.4944,0.8606,-0.4889,0.143,0.8614,-0.2969,0.4121,0.8628,0.052,0.5029,0.865,0.0066,0.5017,0.8695,-0.088,-0.4861,0.87,-0.38,0.3141,0.872,0.3594,-0.3323,0.8729,-0.4876,0.0141,0.8745,-0.4722,0.1108,0.8807,-0.0734,-0.468,0.8831,-0.3297,0.3337,0.8841,0.0973,0.4571,0.8854,-0.4307,0.1748,0.8896,-0.167,-0.4252,0.8962,0.276,0.3475,0.8983,-0.2205,0.3799,0.9019,-0.1457,-0.4067,0.9025,-0.3562,-0.2422,0.9047,-0.1333,0.4046,0.9057,0.0394,0.422,0.9096,0.3973,-0.1215,0.9154,-0.2962,0.2727,0.9171,-0.2758,0.2879,0.9211,-0.1376,0.3641,0.9285,-0.3603,-0.0897,0.9309,0.3475,-0.1123,0.9347,0.0894,-0.344,0.9351,0.3511,-0.0472,0.9355,0.2332,0.2656,0.9362,-0.1638,-0.3109,0.9396,-0.1063,0.3254,0.9417,0.204,0.2674,0.9439,0.0198,0.3296,0.9461,-0.2131,0.2439,0.9483,-0.3032,-0.0934,0.9496,0.2453,-0.195,0.9578,-0.2677,-0.1043,0.9611,0.2608,0.0912,0.9659,-0.0925,0.2419,0.9749,-0.1652,0.1496,0.9752,0.1482,-0.1643,0.9789,0.118,-0.1667,0.9808,-0.175,0.0865,0.9836,0.0151,-0.1799,0.9939,-0.1016,0.0422,0.9943,0.0551,-0.0913};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getethmoid_Geo_5_109_coordIndex_2()
		{
			int[] value = {583,584,585,-1,586,587,588,-1,589,586,588,-1,590,591,592,-1,593,594,595,-1,596,597,595,-1,598,599,600,-1,601,602,603,-1,604,605,606,-1,607,606,608,-1,609,496,610,-1,611,612,613,-1,613,614,611,-1,615,616,617,-1,618,619,620,-1,621,622,623,-1,615,624,625,-1,626,627,628,-1,629,630,631,-1,632,628,627,-1,631,633,634,-1,635,636,616,-1,637,638,639,-1,640,641,642,-1,643,644,645,-1,642,641,646,-1,647,645,648,-1,649,650,651,-1,652,653,654,-1,655,656,657,-1,658,659,660,-1,661,662,663,-1,654,664,665,-1,657,666,667,-1,659,668,669,-1,662,670,671,-1,665,672,637,-1,673,669,668,-1,674,675,676,-1,677,623,622,-1,678,679,680,-1,616,615,625,-1,622,681,682,-1,682,683,684,-1,685,686,687,-1,688,635,689,-1,690,691,684,-1,692,693,687,-1,688,694,695,-1,696,697,698,-1,699,700,701,-1,702,703,704,-1,705,706,707,-1,708,709,710,-1,711,712,713,-1,714,715,716,-1,717,718,719,-1,720,721,722,-1,723,724,725,-1,726,727,728,-1,729,730,731,-1,732,714,726,-1,731,722,733,-1,725,734,735,-1,736,728,727,-1,709,730,729,-1,737,738,739,-1,740,741,742,-1,701,700,743,-1,698,697,744,-1,745,743,746,-1,707,747,748,-1,749,750,744,-1,751,752,753,-1,754,755,756,-1,757,758,759,-1,760,761,762,-1,763,764,765,-1,766,767,768,-1,769,770,771,-1,772,773,767,-1,774,752,751,-1,772,775,773,-1,776,777,778,-1,779,751,753,-1,759,779,753,-1,740,780,781,-1,782,783,784,-1,785,782,786,-1,787,782,785,-1,788,789,790,-1,791,792,793,-1,794,795,796,-1,797,798,799,-1,800,801,802,-1,803,804,805,-1,806,807,808,-1,809,810,811,-1,812,813,814,-1,815,816,817,-1,818,819,820,-1,821,822,823,-1,824,825,826,-1,827,828,829,-1,830,831,832,-1,833,834,835,-1,836,837,838,-1,839,840,841,-1,842,843,844,-1,845,846,847,-1,848,840,849,-1,839,850,830,-1,851,852,833,-1,844,853,854,-1,847,855,856,-1,857,858,859,-1,841,860,861,-1,862,863,846,-1,864,857,865,-1,866,867,843,-1,868,869,870,-1,871,872,873,-1,874,875,876,-1,877,878,879,-1,880,881,882,-1,883,884,878,-1,885,886,887,-1,888,889,890,-1,891,892,893,-1,894,895,896,-1,897,898,899,-1,900,901,902,-1,903,904,905,-1,906,907,908,-1,907,909,908,-1,910,911,912,-1,913,914,912,-1,915,916,917,-1,918,919,920,-1,921,922,923,-1,924,925,926,-1,927,928,929,-1,930,931,932,-1,933,934,935,-1,936,937,938,-1,939,940,916,-1,941,942,920,-1,943,944,945,-1,946,947,948,-1,948,949,950,-1,951,904,952,-1,953,954,955,-1,956,957,958,-1,954,932,959,-1,960,961,962,-1,790,789,963,-1,964,965,966,-1,816,967,968,-1,969,970,971,-1,972,973,541,-1,492,491,974,-1,975,976,977,-1,978,979,980,-1,981,982,983,-1,981,984,982,-1,985,986,987,-1,988,989,990,-1,991,992,993,-1,994,995,996,-1,997,998,999,-1,1000,1001,1002,-1,1003,1004,1005,-1,1006,1007,1008,-1,1007,1009,1008,-1,1010,292,293,-1,1011,1012,1013,-1,1014,1015,1016,-1,1017,1018,1019,-1,1020,1017,1019,-1,1021,1022,1023,-1,964,1024,1025,-1,1026,1027,1028,-1,1029,1030,1031,-1,1032,1033,1034,-1,1035,1036,1037,-1,790,1038,1039,-1,1040,1041,1042,-1,977,1043,975,-1,1044,980,1045,-1,1046,1047,1048,-1,1049,1050,1051,-1,1052,1053,1054,-1,1054,1055,991,-1,1056,1057,1058,-1,991,1059,1054,-1,1060,1061,1062,-1,1063,1064,1065,-1,1066,1067,1068,-1,1069,1070,1071,-1,1072,1073,1074,-1,1075,1076,1077,-1,1078,1079,1080,-1,1081,1082,1083,-1,1084,1085,1086,-1,1005,513,1087,-1,1088,1089,1090,-1,1091,1092,1093,-1,1094,1095,1096,-1,1097,1098,1099,-1,1100,1101,1102,-1,1103,1104,1105,-1,783,1106,784,-1,1107,1108,1109,-1,1110,1109,1111,-1,1112,1113,1114,-1,1112,1115,1116,-1,1110,1117,1118,-1,1108,1119,1120,-1,1121,1122,1123,-1,1123,1122,1124,-1,1125,1126,1127,-1,1128,520,1129,-1,1130,1131,1132,-1,1133,1134,1135,-1,1136,1135,1137,-1,1138,1139,1140,-1,1050,1049,990,-1,1141,1142,1143,-1,1144,1145,1146,-1,1078,1147,1148,-1,1149,1150,1151,-1,1152,1153,1154,-1,1155,1156,1132,-1,1157,1149,1158,-1,1159,1160,966,-1,1161,1162,1163,-1,1099,1164,1097,-1,1101,1100,1165,-1,1166,780,742,-1,1167,784,1168,-1,1169,1170,1171,-1,1172,1171,1056,-1,968,967,1173,-1,1165,1100,1035,-1,1174,1175,1176,-1,1177,1178,1179,-1,1148,1147,281,-1,1180,1181,1182,-1,1183,1184,1185,-1,1186,1096,1095,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getethmoid_Geo_5_109_coordIndex_3()
		{
			int[] value = {1187,1188,1189,-1,1187,1190,813,-1,1191,814,813,-1,1192,443,966,-1,1193,1194,1195,-1,1196,1197,1198,-1,1199,1200,1201,-1,1202,1203,1204,-1,1205,1206,1207,-1,1208,1209,1210,-1,1211,1082,1003,-1,1212,1213,1214,-1,1215,1216,1217,-1,283,1218,1184,-1,1219,1220,1221,-1,1222,1223,1177,-1,1224,1225,1206,-1,1194,1226,1227,-1,1195,1228,1199,-1,1069,1071,1229,-1,1230,1231,1232,-1,1233,1234,1235,-1,1236,1066,1204,-1,1228,1237,1238,-1,1239,1240,1241,-1,1242,1243,1244,-1,1245,1246,1247,-1,1235,1234,1248,-1,1249,1250,1245,-1,1251,1252,1247,-1,1251,1253,1252,-1,1254,1255,1146,-1,1256,1257,1258,-1,1259,1258,1257,-1,1260,1261,1262,-1,1263,1264,790,-1,1265,1266,1040,-1,1267,1179,1178,-1,1268,1269,1270,-1,1271,1272,1002,-1,1273,1274,1005,-1,1275,1276,1277,-1,289,1278,1279,-1,1280,1021,1281,-1,1282,1011,1283,-1,1014,1011,1282,-1,1284,1285,1122,-1,1286,1287,1157,-1,1152,1288,1114,-1,1113,1289,1290,-1,1151,1158,1149,-1,1291,1292,1293,-1,1294,1295,1296,-1,1297,1298,1299,-1,1300,1301,1302,-1,1303,1129,543,-1,1304,1305,1306,-1,1307,1308,1309,-1,1310,1311,1294,-1,1312,1127,1313,-1,1310,1314,1315,-1,1316,1317,1318,-1,1319,1320,1321,-1,1322,1321,1323,-1,1324,1325,1326,-1,1327,1328,1329,-1,1330,1331,540,-1,1332,1333,1334,-1,1306,1335,538,-1,1325,971,1336,-1,1337,1338,1339,-1,1340,1341,1342,-1,1343,1344,1345,-1,1346,1347,1348,-1,1349,1350,1351,-1,1352,1353,1354,-1,1355,1356,1357,-1,1358,1359,1360,-1,1361,1362,1363,-1,1364,1365,1366,-1,1367,1352,1368,-1,1343,1369,1368,-1,1370,1371,1372,-1,1373,1341,1371,-1,1374,1375,1376,-1,1377,1378,1379,-1,970,1336,971,-1,534,1380,1362,-1,1381,1360,1359,-1,1382,1201,1383,-1,1202,1384,1231,-1,1317,1385,1309,-1,1386,448,1387,-1,1388,1389,1390,-1,1391,1392,1388,-1,1393,1394,1395,-1,1018,1396,1397,-1,1377,1398,1399,-1,1351,1400,1401,-1,1402,1403,1404,-1,1288,1152,1154,-1,1117,1405,1406,-1,1407,1134,1408,-1,1134,1409,1410,-1,1138,1140,1411,-1,1412,1143,1138,-1,1018,1413,1396,-1,1414,1116,1413,-1,1415,1190,1187,-1,1416,1417,1418,-1,1289,1419,1420,-1,1049,1421,1422,-1,1205,1194,1206,-1,1183,1423,1184,-1,1182,1181,1424,-1,1222,1425,1426,-1,1427,1428,1429,-1,1430,1431,1432,-1,1433,1434,1234,-1,1435,964,1436,-1,1437,1438,1439,-1,1166,1440,1102,-1,1441,1442,792,-1,1032,1029,1164,-1,1098,1443,1444,-1,1445,1443,1446,-1,1254,1447,974,-1,974,1447,1448,-1,1449,1450,1451,-1,1452,1453,1454,-1,1455,1456,1457,-1,1458,1459,1460,-1,1461,1462,1463,-1,1449,1464,1465,-1,1466,1467,1468,-1,1469,1470,1471,-1,1465,1464,1472,-1,1473,1474,1475,-1,1476,1473,1472,-1,1477,1478,1479,-1,1479,1480,1477,-1,1481,1482,1483,-1,1484,1481,1485,-1,1486,1487,1488,-1,1474,1489,1475,-1,1490,1491,1492,-1,1460,1493,1456,-1,1494,1495,1496,-1,1491,1497,1492,-1,1498,1499,1494,-1,1499,1495,1494,-1,1500,1501,1502,-1,1503,1504,1505,-1,1506,1507,1501,-1,1505,1506,1508,-1,1508,1509,1510,-1,1511,1512,1513,-1,1514,1515,1516,-1,1517,1518,1519,-1,1520,1521,1522,-1,1523,1524,1525,-1,1526,1527,1528,-1,1529,1530,1531,-1,1532,1533,1534,-1,1535,1536,1537,-1,1538,1539,1540,-1,1541,1542,1537,-1,1537,1538,1543,-1,1531,1544,1545,-1,1546,1526,1528,-1,1534,1547,1540,-1,1528,1548,1546,-1,1549,1550,1551,-1,1552,1528,1527,-1,1537,1536,1553,-1,1554,1555,1556,-1,926,1557,944,-1,1558,1559,926,-1,1560,534,1545,-1,1540,1561,1538,-1,1545,534,530,-1,530,1562,1545,-1,1547,514,1540,-1,901,1558,904,-1,1563,944,1564,-1,1565,1566,936,-1,1567,1568,1569,-1,1570,1571,1572,-1,1532,1573,1533,-1,1530,1529,1574,-1,1575,1576,1577,-1,1549,1569,1578,-1,1532,1579,1573,-1,1539,1580,1540,-1,1581,1582,1545,-1,1526,1583,1582,-1,1537,1584,1535,-1,1585,1586,1587,-1,1588,1547,1534,-1,1589,1590,1579,-1,1582,1527,1526,-1,1544,1591,1581,-1,1525,1524,1592,-1,1593,1594,1595,-1,1596,1597,1598,-1,1599,1519,1600,-1,1601,1602,1603,-1,495,1604,1512,-1,1601,1605,1602,-1,1506,1501,1509,-1,1507,1606,1607,-1,1504,1608,1609,-1,1610,1611,1609,-1,1612,1515,1456,-1,1492,1497,1612,-1,1613,1614,1615,-1,1615,1491,1613,-1,1494,1496,1454,-1,1616,1457,1498,-1,1459,1492,1493,-1,1617,1491,1490,-1,1485,1618,1619,-1,1481,1620,1621,-1,1622,1623,1477,-1,1624,1625,1473,-1,1465,1472,1475,-1,1462,1471,1626,-1,1449,1627,1628,-1,1629,1630,1464,-1,1450,1449,1631,-1,1460,1456,1632,-1,1453,1633,1454,-1,1450,1452,1634,-1,1464,1635,1617,-1,974,491,1636,-1,1637,1258,1259,-1,1445,1446,1259,-1,1443,1445,792,-1,1164,1638,1032,-1,1035,1639,1165,-1,1441,1440,1640,-1,1641,793,792,-1,1642,1437,1643,-1,1263,1644,1433,-1,1645,1433,792,-1,1044,1263,978,-1,1046,1430,1432,-1,1646,1427,1429,-1,1161,443,1647,-1,1178,1648,1267,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getethmoid_Geo_5_109_coordIndex_4()
		{
			int[] value = {1081,1083,1086,-1,1009,1144,1649,-1,1650,1235,1246,-1,1228,1227,1237,-1,1150,1416,1186,-1,967,1415,1017,-1,967,1017,1651,-1,1053,1412,1652,-1,1138,1653,1139,-1,1654,1655,1656,-1,1655,1657,1658,-1,1659,1406,1653,-1,1399,1660,1661,-1,1402,1010,1403,-1,1662,1353,1352,-1,1115,1399,1398,-1,1663,1281,1016,-1,1664,1665,1666,-1,1282,1667,1668,-1,1669,1651,1022,-1,1392,1386,1670,-1,1049,1051,1671,-1,1672,971,1673,-1,1674,1363,1675,-1,1651,1017,1676,-1,1364,1677,1365,-1,1352,1678,1679,-1,1340,1680,1681,-1,1340,1372,1371,-1,1367,1368,1369,-1,1375,1369,1682,-1,1376,1677,1119,-1,1348,1366,1365,-1,1683,1362,1381,-1,1684,1685,1561,-1,1367,1010,1662,-1,1349,1354,1350,-1,1686,1346,1687,-1,1688,1689,1690,-1,1691,1338,1344,-1,1340,1342,1680,-1,1692,1693,1373,-1,973,972,1694,-1,1338,1337,1695,-1,1357,971,1325,-1,1696,1697,1321,-1,1327,1326,1325,-1,1321,1697,1323,-1,1322,1291,1698,-1,1318,1317,1699,-1,1127,1156,1700,-1,1308,1699,1309,-1,1309,1385,1701,-1,1305,1702,1697,-1,1301,1300,1292,-1,1301,1703,1704,-1,1705,1704,1286,-1,1697,1706,1707,-1,1292,1291,1323,-1,1708,1709,1703,-1,1708,1703,1710,-1,1285,1711,1154,-1,1419,1149,1420,-1,1712,1713,1714,-1,1021,1715,1022,-1,1716,1717,1718,-1,1719,264,266,-1,1720,1400,1721,-1,1024,964,966,-1,1722,1723,1724,-1,1725,1726,1727,-1,1728,1726,1725,-1,1729,1179,1267,-1,1730,978,1433,-1,1642,1731,1732,-1,999,1732,1733,-1,1264,1263,1044,-1,1441,1260,1440,-1,1639,1035,1734,-1,1041,1266,1038,-1,1412,1138,1735,-1,1433,1645,1434,-1,1736,1256,1254,-1,1257,1736,1737,-1,1738,1146,1739,-1,1740,1245,1250,-1,1253,1741,1252,-1,1242,1181,1243,-1,1742,1743,1744,-1,1238,1237,1745,-1,1746,1747,1231,-1,1748,1198,1744,-1,1236,1204,1198,-1,1200,1383,1201,-1,1200,1749,1383,-1,1750,1751,1752,-1,1753,1754,1755,-1,1086,1756,1084,-1,1757,1758,1759,-1,1760,1278,1761,-1,1762,1082,1211,-1,1197,1241,1198,-1,1197,1763,1239,-1,1219,1764,1765,-1,1206,1194,1193,-1,965,1766,1767,-1,1093,1092,1768,-1,1769,1427,1646,-1,1770,1771,1085,-1,448,1386,1174,-1,1772,1031,1773,-1,444,1026,1774,-1,1775,1140,1776,-1,1056,1655,1777,-1,1640,1440,1166,-1,1166,742,1640,-1,1168,780,1778,-1,1440,1100,1102,-1,1099,1779,1164,-1,1780,1781,780,-1,1782,443,1161,-1,964,1783,965,-1,1124,1122,1784,-1,997,1318,1785,-1,1154,1153,1786,-1,1787,1788,1789,-1,1790,1791,1792,-1,1210,1147,1078,-1,1793,1741,1739,-1,1144,1146,1255,-1,1794,1795,1636,-1,1278,1796,1797,-1,1052,1141,1143,-1,1054,1798,1055,-1,1194,1205,1226,-1,1799,1800,1801,-1,1802,1799,1803,-1,1804,1805,1806,-1,1046,1807,1047,-1,1808,1809,1810,-1,1811,1139,1653,-1,1137,1135,1410,-1,1134,1809,1656,-1,1812,1813,1130,-1,997,1814,1812,-1,1815,1646,997,-1,1129,1303,1126,-1,1816,542,1301,-1,543,542,1816,-1,1122,1121,1284,-1,1817,1115,1818,-1,1417,1150,1819,-1,1109,1110,1118,-1,1419,1113,1820,-1,1121,1821,1822,-1,1418,1417,1823,-1,1824,1638,1167,-1,1105,1825,1103,-1,1164,1779,1638,-1,1189,1826,1769,-1,1151,1150,1186,-1,1827,1828,1829,-1,1097,492,1448,-1,1830,1831,1005,-1,1832,1086,1085,-1,1210,1833,1208,-1,1007,1834,1835,-1,1183,1836,1837,-1,1838,1839,1840,-1,1202,1841,1842,-1,1843,1751,1746,-1,1193,1382,1224,-1,1207,1844,1845,-1,1846,995,1847,-1,1847,1140,1846,-1,1653,1138,1143,-1,1848,989,988,-1,1227,985,987,-1,1799,1801,1803,-1,1807,1805,1849,-1,1046,1805,1807,-1,1802,1849,1804,-1,1850,1428,1437,-1,790,1041,1038,-1,1040,1731,1439,-1,1438,1851,1265,-1,1435,1436,1852,-1,443,1782,1159,-1,1853,1028,1854,-1,1772,1773,1855,-1,1856,1857,1858,-1,1859,1217,1216,-1,1860,1209,1208,-1,1770,1861,1862,-1,1179,1729,1863,-1,1395,1713,1712,-1,1663,1389,1669,-1,1391,1668,1395,-1,1015,1663,1016,-1,1864,1865,1866,-1,1395,1712,1867,-1,1435,1868,1783,-1,1868,1869,1783,-1,1380,1583,1360,-1,1081,1870,1004,-1,1773,1854,1871,-1,1310,1777,1654,-1,1226,1872,985,-1,1051,1050,1873,-1,1874,1875,1876,-1,975,1877,1730,-1,1805,1878,1806,-1,1879,1043,977,-1,970,1880,1881,-1,534,1560,1380,-1,1882,1433,1644,-1,1883,927,961,-1,1884,932,954,-1,1885,1883,960,-1,1886,1884,953,-1,1887,1888,952,-1,1887,952,1889,-1,901,1890,1891,-1,901,1892,1890,-1,1893,1894,901,-1,1895,1896,1897,-1,1898,1565,1899,-1,932,931,921,-1,959,923,955,-1,923,1900,955,-1,910,1901,1902,-1,1903,1904,918,-1,935,934,1905,-1,910,912,1906,-1,941,920,919,-1,919,1907,941,-1,1908,917,916,-1,1909,1910,934,-1,1911,1912,1913,-1,1914,907,906,-1,1915,1912,797,-1,879,878,884,-1,1916,1917,1918,-1,1919,1920,902,-1,899,898,1921,-1,893,1922,1923,-1,1578,889,896,-1,1924,1925,1926,-1,1927,1926,1925,-1,1928,1590,1929,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getethmoid_Geo_5_109_coordIndex_5()
		{
			int[] value = {1930,1931,1932,-1,1933,1934,1935,-1,1935,883,1936,-1,1937,1938,1916,-1,1917,1939,878,-1,884,883,880,-1,884,1940,1941,-1,1942,1943,1944,-1,875,1945,876,-1,1946,1947,1948,-1,1949,1950,1951,-1,1952,871,1947,-1,842,1953,1954,-1,1955,1956,1957,-1,1958,863,862,-1,864,1959,863,-1,1960,1961,1962,-1,1963,841,1964,-1,860,859,858,-1,829,856,855,-1,853,847,838,-1,1965,833,852,-1,835,830,850,-1,840,839,832,-1,1966,848,1967,-1,843,845,853,-1,854,838,837,-1,1968,834,833,-1,832,1969,849,-1,1967,1970,1971,-1,1972,1973,1974,-1,821,824,806,-1,1975,1976,809,-1,806,808,1977,-1,803,805,1978,-1,1979,801,800,-1,1980,802,1981,-1,797,796,798,-1,1982,1983,795,-1,1441,1984,1261,-1,1882,1644,963,-1,1168,784,1106,-1,753,756,1985,-1,756,753,752,-1,751,1986,1987,-1,772,1988,1989,-1,752,773,754,-1,767,773,774,-1,771,770,1990,-1,768,767,1991,-1,753,1992,759,-1,1993,1994,1995,-1,747,707,706,-1,750,745,746,-1,746,700,698,-1,1996,1997,1998,-1,1999,744,697,-1,741,2000,1640,-1,2001,699,2002,-1,2003,2004,2005,-1,2006,724,2007,-1,2008,730,709,-1,728,2009,729,-1,726,716,2010,-1,2011,2007,723,-1,731,2008,2012,-1,719,2013,714,-1,2014,2015,2016,-1,2016,2017,2014,-1,2018,2019,2020,-1,2021,708,2022,-1,2023,2024,2025,-1,2026,2027,706,-1,2028,707,2029,-1,2030,745,721,-1,737,2031,1998,-1,692,2032,2033,-1,2034,2035,2036,-1,686,2037,2032,-1,689,684,694,-1,684,689,682,-1,677,682,628,-1,2038,2039,2040,-1,675,2041,679,-1,634,2042,638,-1,634,638,637,-1,663,671,668,-1,664,2043,657,-1,654,665,2044,-1,659,658,2045,-1,646,650,649,-1,2046,2047,655,-1,2048,642,2046,-1,2049,2050,2051,-1,2052,2053,641,-1,695,2049,2054,-1,635,616,2055,-1,636,688,695,-1,636,2056,639,-1,619,618,2057,-1,619,630,629,-1,2058,632,627,-1,626,615,2059,-1,2060,2059,615,-1,677,628,632,-1,2061,618,623,-1,630,2057,2062,-1,2063,2064,2065,-1,2066,613,612,-1,2067,2068,2069,-1,610,2070,2071,-1,344,496,609,-1,605,2072,608,-1,603,602,595,-1,2073,2074,2075,-1,2076,612,599,-1,2077,600,597,-1,2078,2070,610,-1,2079,2080,585,-1,585,2081,2079,-1,2080,2082,2083,-1,583,2084,578,-1,2085,2083,2082,-1,2086,2087,2088,-1,2084,2089,579,-1,2087,2090,2091,-1,336,333,575,-1,2092,576,2093,-1,333,332,2094,-1,2095,568,567,-1,545,547,556,-1,2096,341,560,-1,2097,2098,562,-1,559,558,2099,-1,341,2100,589,-1,555,2101,2102,-1,2087,582,577,-1,2103,551,553,-1,552,2104,545,-1,2105,572,571,-1,543,1129,520,-1,1325,1336,1328,-1,539,525,1334,-1,537,522,2106,-1,530,529,2107,-1,526,525,2108,-1,531,544,2109,-1,521,520,522,-1,2110,2111,529,-1,523,2112,532,-1,1772,512,488,-1,1831,489,488,-1,507,487,508,-1,2113,2114,2115,-1,2115,504,1625,-1,2114,480,479,-1,2116,498,497,-1,2117,501,500,-1,496,498,610,-1,2118,2119,1483,-1,1097,1164,490,-1,489,492,490,-1,486,2120,487,-1,2121,485,484,-1,477,480,482,-1,472,466,465,-1,471,2122,2123,-1,2124,2125,2126,-1,2122,2127,2128,-1,2128,2127,462,-1,464,452,2129,-1,2130,2131,2132,-1,455,457,2133,-1,462,461,2134,-1,460,459,2135,-1,2136,2137,2138,-1,2139,2140,458,-1,2141,2142,2143,-1,461,457,2144,-1,463,2137,2145,-1,2146,2147,2145,-1,449,2148,2149,-1,439,1174,1176,-1,448,449,1387,-1,393,1797,2150,-1,2151,2152,2153,-1,968,2149,2151,-1,96,98,2154,-1,438,97,439,-1,2155,440,447,-1,2156,86,426,-1,437,435,2157,-1,2157,427,429,-1,1026,444,2158,-1,2159,416,2160,-1,432,2161,425,-1,434,2162,2163,-1,431,425,2164,-1,2165,2166,2161,-1,2167,417,2168,-1,2169,2170,411,-1,2171,2172,400,-1,2172,2173,2174,-1,2172,2174,400,-1,2175,2176,2177,-1,2178,2179,2180,-1,2180,395,2178,-1,396,2173,2172,-1,499,497,2072,-1,2181,500,2182,-1,355,354,165,-1,85,165,86,-1,2183,2184,392,-1,2185,2186,2187,-1,386,252,2188,-1,2187,252,387,-1,313,2189,384,-1,2190,2191,2192,-1,2193,2194,381,-1,2191,2195,2196,-1,255,254,2197,-1,2198,2199,2200,-1,2201,2202,2203,-1,380,2204,2205,-1,2206,2207,2208,-1,2209,2210,2211,-1,377,2212,2213,-1,362,2214,2215,-1,374,2216,369,-1,225,2217,2218,-1,2219,2220,2221,-1,2222,138,166,-1,2223,362,364,-1,374,2224,2225,-1,377,2226,2227,-1,2197,2228,2229,-1,2230,2231,2232,-1,2233,2234,2193,-1,165,163,353,-1,347,2065,2235,-1,2236,2063,347,-1,352,310,312,-1,2237,2189,343,-1,313,2234,312,-1,349,2237,2238,-1,345,2239,2240,-1,2069,351,2240,-1,2241,310,352,-1,2242,2243,2244,-1,335,334,322,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getethmoid_Geo_5_109_coordIndex_6()
		{
			int[] value = {330,2245,321,-1,2246,2100,341,-1,2247,2248,328,-1,2246,339,338,-1,308,2249,315,-1,2250,310,2251,-1,2252,2189,2249,-1,2253,2254,259,-1,115,114,1176,-1,2255,2256,2257,-1,16,120,14,-1,2258,2259,2260,-1,212,291,2261,-1,114,116,294,-1,2262,2259,2258,-1,275,277,11,-1,276,11,277,-1,1142,2263,1143,-1,2258,1143,2263,-1,1664,2264,2265,-1,295,262,264,-1,292,2266,262,-1,1,2267,4,-1,259,2268,2269,-1,2270,2269,2268,-1,383,253,252,-1,247,246,129,-1,151,2271,2272,-1,194,245,353,-1,194,353,162,-1,228,126,2273,-1,215,238,219,-1,282,2274,283,-1,169,2275,170,-1,135,206,2276,-1,2277,2278,2279,-1,2280,209,200,-1,211,210,231,-1,2281,2282,231,-1,211,2283,123,-1,2284,258,2285,-1,139,368,2286,-1,2287,2288,2289,-1,135,221,207,-1,2290,2278,2277,-1,2276,204,133,-1,205,130,2291,-1,200,2292,201,-1,2293,2294,368,-1,2295,171,2296,-1,2297,186,185,-1,187,183,182,-1,2298,177,2299,-1,178,2300,179,-1,176,2301,2302,-1,179,2300,2293,-1,167,166,2303,-1,2304,146,2305,-1,2304,2305,169,-1,2306,168,162,-1,2293,368,2307,-1,2302,2308,2309,-1,2310,2311,2303,-1,141,174,173,-1,161,164,2312,-1,2312,164,2302,-1,2308,2313,2314,-1,160,132,131,-1,2315,2316,243,-1,2304,155,157,-1,167,151,2272,-1,147,2304,2296,-1,133,204,2317,-1,368,367,2307,-1,282,2318,246,-1,271,125,124,-1,2319,95,2320,-1,271,232,2273,-1,2313,2299,2314,-1,2321,123,125,-1,2155,92,85,-1,180,119,109,-1,2322,112,111,-1,2323,2324,107,-1,181,180,2325,-1,2325,180,122,-1,2326,2327,2328,-1,2325,100,181,-1,89,2329,2308,-1,91,2330,88,-1,89,2308,90,-1,88,2331,89,-1,68,37,40,-1,2332,2333,2334,-1,2335,81,83,-1,29,31,2336,-1,2337,2338,2339,-1,62,2340,2341,-1,2342,20,19,-1,2343,38,80,-1,2344,2345,2346,-1,44,84,41,-1,2347,2348,2337,-1,276,2257,2349,-1,2335,2350,2344,-1,2351,2257,2256,-1,2352,2353,2354,-1,2350,2335,78,-1,42,2355,2356,-1,36,38,2340,-1,17,73,75,-1,2357,2358,2340,-1,2340,2358,2359,-1,64,70,2355,-1,2360,2361,58,-1,51,2362,50,-1,29,2336,49,-1,2363,50,49,-1,27,2364,34,-1,2349,2257,2351,-1,2365,2366,2334,-1,2367,2368,2332,-1,2356,70,69,-1,2369,2338,2337,-1,82,2370,2352,-1,74,25,75,-1,22,60,23,-1,51,20,2342,-1,2371,17,16,-1,14,72,2372,-1,45,2373,2374,-1,2343,2340,38,-1,5,4,6,-1,2,1,2375,-1,2270,2266,1,-1,259,2254,2268,-1,2270,1,2376,-1,2377,1,0,-1,2378,4,3,-1,7,6,4,-1,45,2374,46,-1,2379,10,9,-1,2380,13,115,-1,14,2371,16,-1,11,276,2381,-1,2342,2382,51,-1,60,59,23,-1,25,74,2359,-1,31,30,2336,-1,68,71,80,-1,2356,2355,70,-1,84,46,67,-1,2383,2365,2334,-1,2349,2351,2384,-1,18,2363,2256,-1,27,29,2364,-1,2360,58,2385,-1,79,78,2386,-1,2355,2387,64,-1,2340,2343,2357,-1,73,76,75,-1,2340,62,36,-1,65,64,2387,-1,42,2388,2355,-1,2389,2332,2390,-1,2335,2386,78,-1,2354,83,2352,-1,2336,2351,2256,-1,2335,2344,81,-1,2349,2381,276,-1,2347,2337,2370,-1,2350,2390,2344,-1,43,44,41,-1,2344,2346,81,-1,2372,72,2371,-1,80,2391,2343,-1,19,21,2342,-1,2340,74,2341,-1,25,15,75,-1,29,28,31,-1,2334,2367,2332,-1,68,40,2392,-1,88,90,2393,-1,2393,2302,164,-1,2330,2331,88,-1,89,113,2329,-1,104,103,2327,-1,105,2394,106,-1,2325,122,121,-1,102,2395,103,-1,2299,2313,2298,-1,2324,105,107,-1,2396,280,2397,-1,2397,2325,121,-1,2155,97,436,-1,85,440,2155,-1,124,123,2283,-1,2273,94,271,-1,95,126,2320,-1,232,271,124,-1,217,2398,2399,-1,2317,2400,133,-1,130,2401,2291,-1,146,148,193,-1,147,146,2304,-1,157,2296,2304,-1,2315,243,2402,-1,160,159,132,-1,2308,2329,2313,-1,161,163,164,-1,2403,141,173,-1,137,2310,2303,-1,2302,2309,176,-1,2307,2404,2293,-1,173,146,154,-1,169,155,2304,-1,146,174,2305,-1,2303,149,167,-1,2405,2309,2314,-1,2293,2404,179,-1,178,2406,2300,-1,383,2407,2408,-1,182,2409,187,-1,185,2410,2297,-1,2296,157,2295,-1,2294,134,368,-1,2411,199,198,-1,2291,2292,200,-1,199,203,197,-1,205,211,123,-1,2277,229,2290,-1,206,135,207,-1,2289,208,2287,-1,2294,2293,2300,-1,217,287,2398,-1,2284,246,258,-1,2412,257,2221,-1,231,210,2281,-1,211,231,2283,-1,123,2321,184,-1,209,2291,200,-1,2278,202,2279,-1,2276,133,135,-1,2413,134,133,-1,2221,257,248,-1,215,2414,238,-1,246,2284,282,-1,228,2273,2282,-1,349,2189,2237,-1,162,2189,348,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getethmoid_Geo_5_109_coordIndex_7()
		{
			int[] value = {151,2415,2271,-1,191,249,192,-1,2217,255,2191,-1,2416,381,2194,-1,2253,2264,263,-1,4,2267,7,-1,2380,1394,1393,-1,1664,265,2264,-1,2417,2418,93,-1,2419,2294,2300,-1,10,275,11,-1,2262,278,2259,-1,2258,2255,2262,-1,130,132,240,-1,116,110,294,-1,2260,1143,2258,-1,120,12,14,-1,2257,2262,2255,-1,1391,115,1392,-1,2376,2269,2270,-1,2420,310,2250,-1,313,315,2249,-1,312,314,313,-1,304,308,315,-1,2246,338,2421,-1,2247,328,2422,-1,341,339,2246,-1,2096,329,340,-1,2096,342,329,-1,330,331,2245,-1,322,2423,335,-1,2243,325,2244,-1,352,592,2241,-1,2239,2069,2240,-1,2424,349,2238,-1,2236,2425,2424,-1,2189,349,348,-1,2240,351,195,-1,312,195,352,-1,347,2235,2067,-1,195,2233,196,-1,2193,381,366,-1,2426,2427,361,-1,2428,2429,359,-1,375,377,2227,-1,372,374,2225,-1,364,2430,2223,-1,2218,250,225,-1,222,2431,227,-1,374,2432,2216,-1,362,2215,363,-1,377,2213,2223,-1,2433,2434,375,-1,2434,376,375,-1,2209,2435,2210,-1,2207,2436,2208,-1,380,379,2204,-1,2202,378,2203,-1,2198,2437,2199,-1,381,2416,2438,-1,2191,2196,2192,-1,313,2249,2189,-1,386,2188,2439,-1,2187,387,2185,-1,392,2426,2183,-1,164,163,165,-1,354,86,165,-1,2182,2440,2181,-1,2072,2441,499,-1,2172,397,396,-1,2177,2442,2175,-1,2174,2443,400,-1,400,399,2171,-1,2169,2444,2170,-1,417,416,2168,-1,2164,2445,431,-1,434,2446,2162,-1,2157,2447,2448,-1,2159,2160,2445,-1,2446,2156,2449,-1,2157,2448,427,-1,435,2447,2157,-1,433,448,440,-1,447,97,2155,-1,97,447,439,-1,968,2151,2450,-1,2451,2151,2153,-1,2150,394,393,-1,1176,114,439,-1,438,98,97,-1,2146,2145,2137,-1,2145,450,463,-1,2144,2139,461,-1,2143,2131,2141,-1,458,461,2139,-1,2137,463,2138,-1,459,2146,2135,-1,461,458,2134,-1,2133,2452,455,-1,2131,2143,2132,-1,452,454,2129,-1,2128,462,2134,-1,2122,465,2127,-1,2123,2453,471,-1,472,2454,466,-1,477,2455,480,-1,484,2456,2121,-1,2120,2457,487,-1,490,492,1097,-1,490,1164,1029,-1,2118,1483,1482,-1,500,2181,2117,-1,497,499,2116,-1,479,502,2114,-1,1625,1624,2115,-1,2115,1622,2113,-1,487,2457,508,-1,488,1029,1772,-1,523,532,521,-1,2110,2458,2111,-1,2459,1562,515,-1,519,544,520,-1,2109,2110,531,-1,526,2108,527,-1,2107,1562,530,-1,525,541,2108,-1,1332,536,538,-1,543,520,544,-1,2460,1358,1546,-1,573,577,581,-1,2105,2090,572,-1,545,550,552,-1,2103,553,2461,-1,2087,2086,582,-1,555,2102,2462,-1,341,589,560,-1,559,2099,2463,-1,2097,562,561,-1,546,545,2104,-1,560,565,2096,-1,556,548,545,-1,566,2095,567,-1,333,2094,575,-1,2093,2464,2092,-1,336,575,574,-1,2087,2091,2088,-1,579,578,2084,-1,2086,2088,2465,-1,2082,2466,2085,-1,583,578,2467,-1,2080,2083,585,-1,594,596,595,-1,2077,598,600,-1,2073,2075,2468,-1,605,608,606,-1,2469,2470,2078,-1,2470,2471,2078,-1,609,2472,344,-1,344,608,496,-1,2069,2239,2067,-1,612,2076,2066,-1,347,2063,2065,-1,630,2062,2473,-1,2474,619,629,-1,618,620,623,-1,2474,621,620,-1,615,617,2060,-1,626,624,615,-1,2058,2061,632,-1,2057,630,619,-1,636,639,638,-1,616,636,638,-1,695,2475,2049,-1,2476,2052,641,-1,2051,2054,2049,-1,642,2047,2046,-1,2046,655,653,-1,646,649,2477,-1,2045,663,659,-1,2056,654,2044,-1,657,667,664,-1,668,659,663,-1,679,676,675,-1,2038,2478,2039,-1,684,691,694,-1,686,2032,692,-1,2036,2479,2034,-1,692,2033,2052,-1,1998,1997,737,-1,2480,2030,721,-1,2028,2029,2481,-1,2026,706,705,-1,2025,2482,2023,-1,2022,2483,2021,-1,2019,2484,2020,-1,719,718,2013,-1,731,730,2008,-1,2007,724,723,-1,726,714,716,-1,708,2008,709,-1,2006,2007,2021,-1,699,2485,2002,-1,742,741,1640,-1,697,2486,1999,-1,1996,1998,1994,-1,746,743,700,-1,746,744,750,-1,706,2487,747,-1,1993,2488,1994,-1,752,774,773,-1,756,752,754,-1,2489,757,2490,-1,768,1991,2491,-1,771,1990,766,-1,767,774,1991,-1,1989,775,772,-1,751,779,1986,-1,2492,781,780,-1,2493,1640,2000,-1,1441,1261,1260,-1,1882,1641,792,-1,795,2494,1982,-1,797,794,796,-1,1981,2495,1980,-1,1979,800,2496,-1,1978,807,803,-1,1977,810,806,-1,1191,2497,814,-1,809,2498,1975,-1,806,810,821,-1,2499,2500,826,-1,1972,2501,1973,-1,1970,827,1971,-1,1969,2502,849,-1,1965,1968,833,-1,837,2503,854,-1,853,844,843,-1,1967,1971,1966,-1,832,849,840,-1,851,835,850,-1,844,1965,852,-1,838,854,853,-1,2504,829,855,-1,861,860,858,-1,2505,1963,1964,-1,1962,2506,1960,-1,843,862,845,-1,1959,846,863,-1,1953,842,1961,-1,862,2507,1958,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getethmoid_Geo_5_109_coordIndex_8()
		{
			int[] value = {2508,2509,2510,-1,1957,2511,1955,-1,1954,866,842,-1,871,1948,1947,-1,1951,2512,1949,-1,1946,1948,2513,-1,1945,2514,876,-1,2515,1942,1944,-1,883,881,880,-1,1939,1936,878,-1,1937,2516,1938,-1,885,1935,1936,-1,1935,885,1933,-1,2517,1930,1932,-1,1928,1929,1927,-1,1925,1928,1927,-1,1924,1926,2518,-1,896,1550,1578,-1,2519,2520,2521,-1,2519,888,2520,-1,1923,2522,893,-1,899,1921,2523,-1,1919,902,903,-1,1917,877,1918,-1,884,1941,879,-1,1912,1911,797,-1,2524,1914,906,-1,2525,1911,1913,-1,2526,913,912,-1,2527,1903,920,-1,1901,910,1906,-1,2528,935,1905,-1,1903,939,1904,-1,1902,1910,910,-1,923,2529,1900,-1,924,949,2530,-1,932,921,959,-1,1899,2531,1898,-1,1895,1897,1898,-1,901,1891,1893,-1,2532,1887,1889,-1,1941,1886,953,-1,1887,1885,1888,-1,958,2533,1900,-1,1884,954,953,-1,960,1888,1885,-1,1884,962,932,-1,961,960,1883,-1,1882,792,1433,-1,972,970,1694,-1,2108,973,1684,-1,1433,2534,1730,-1,1730,2534,975,-1,1874,1876,1043,-1,1800,2535,1848,-1,1205,1845,2536,-1,1845,2537,2536,-1,1138,1411,1735,-1,2538,964,1025,-1,1773,1031,1854,-1,1003,1081,1004,-1,1360,1381,1380,-1,1869,1768,1783,-1,1864,2539,1865,-1,1651,1676,1022,-1,1280,1669,1715,-1,1389,2540,1390,-1,1282,1390,2540,-1,1770,1079,1861,-1,1860,1208,1762,-1,1216,2541,1859,-1,1425,1725,1426,-1,1856,1858,2542,-1,2164,1774,1162,-1,1853,2543,1028,-1,1032,2544,2545,-1,1165,1639,2546,-1,2547,2548,788,-1,1437,1439,1643,-1,1731,1643,1439,-1,1429,1642,998,-1,1879,2549,1874,-1,1432,2550,981,-1,1805,1804,1849,-1,1422,988,990,-1,1800,1848,988,-1,1047,2551,1048,-1,1140,1847,1411,-1,1846,2552,996,-1,1056,2553,2554,-1,1205,1207,1845,-1,2555,2556,2557,-1,1765,2558,2559,-1,1758,1757,2560,-1,1244,2561,2562,-1,1181,2563,2564,-1,1215,1217,1861,-1,1003,1274,1211,-1,1005,1004,1830,-1,1097,1448,1637,-1,2565,2566,2567,-1,813,1093,2568,-1,2568,1188,813,-1,1769,1096,1189,-1,792,1442,1443,-1,1105,1275,1825,-1,1638,1779,1167,-1,1821,1111,1822,-1,1113,1112,1820,-1,1823,1417,1819,-1,1820,1116,1819,-1,1117,1107,1118,-1,1816,2569,543,-1,1126,1125,1129,-1,1812,2570,997,-1,997,2570,1815,-1,1812,1130,2571,-1,1656,1658,1134,-1,2572,1136,1137,-1,1811,1653,2573,-1,2574,1133,2575,-1,1804,1806,2576,-1,1056,1058,2553,-1,1797,1279,1278,-1,2577,297,1659,-1,1424,1252,1182,-1,1255,1649,1144,-1,1145,1793,1146,-1,1784,2578,1789,-1,1789,2578,1787,-1,1786,2579,1154,-1,1785,1814,997,-1,1784,1789,1124,-1,816,1191,967,-1,1168,2492,780,-1,1099,2580,1779,-1,1104,1778,780,-1,1780,780,1166,-1,1056,1657,1655,-1,2581,1140,1775,-1,1868,1435,1852,-1,1161,2582,1782,-1,1774,2164,444,-1,448,1174,446,-1,1215,1078,2583,-1,1770,1862,1771,-1,1094,1769,1646,-1,1092,1783,1768,-1,1219,1765,1063,-1,1763,2584,1239,-1,976,975,2534,-1,1194,1227,1195,-1,1860,1762,1211,-1,1760,1761,2585,-1,1757,1759,2586,-1,1086,1083,1756,-1,2587,1753,1755,-1,1750,1752,2588,-1,1231,1749,1232,-1,1204,2589,1198,-1,1198,1748,1236,-1,1746,1231,1384,-1,1206,1059,1207,-1,2584,1238,2590,-1,1743,1242,1744,-1,1650,1246,1245,-1,1740,2591,1245,-1,1249,1245,1247,-1,2592,1007,1180,-1,1738,2593,1146,-1,1233,1240,1239,-1,1257,1256,1736,-1,1256,1447,1254,-1,1652,1412,1735,-1,1041,1040,1266,-1,1035,1037,1734,-1,1264,1044,1733,-1,1733,1432,999,-1,1733,1732,1731,-1,1642,1643,1731,-1,2594,1000,2595,-1,1725,1425,1728,-1,1727,1857,1725,-1,1722,1724,2596,-1,1831,513,1005,-1,1721,1397,1720,-1,2597,1717,2598,-1,1714,2599,1712,-1,1419,1150,1149,-1,1285,1154,2579,-1,1710,2600,1708,-1,1709,1704,1703,-1,534,1293,535,-1,1705,1301,1704,-1,1301,1292,1703,-1,1302,1301,542,-1,1697,1306,1305,-1,1702,1706,1697,-1,1307,1309,1701,-1,1700,1313,1127,-1,1385,1317,1316,-1,1785,1318,1699,-1,1319,1321,1322,-1,1322,1323,1291,-1,2601,1355,1324,-1,2601,2602,1355,-1,1325,1328,1327,-1,1696,1321,1320,-1,1325,1324,1357,-1,1338,1695,1345,-1,1357,1324,1355,-1,1691,1681,1680,-1,1692,2603,1693,-1,1342,1339,1680,-1,1338,1345,1344,-1,1682,1688,1690,-1,2604,1686,1687,-1,1692,2605,2603,-1,1349,2606,1354,-1,1010,293,1662,-1,1381,2607,1683,-1,1365,1687,1348,-1,1677,1120,1119,-1,1369,2608,1682,-1,1369,1010,1367,-1,1371,1341,1340,-1,1681,1372,1340,-1,1681,1691,1678,-1,1379,1378,1692,-1,1352,2606,1678,-1,1364,1120,1677,-1,1017,1020,1676,-1,971,1357,1673,-1,1143,2260,1653,-1,1246,1235,1248,-1,1386,1392,1175,-1,1388,1670,2609,-1,1022,1715,1669,-1,1282,1668,1390,-1,1664,1666,265,-1,1663,1280,1281,-1,1720,1401,1400,-1,1352,1367,1662,-1,1821,1123,1110,-1,2573,1653,1409,-1,1406,1405,1653,-1,1656,1655,1658,-1,2610,1054,1059,-1,1651,1669,967,-1,1415,1413,1017,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getethmoid_Geo_5_109_coordIndex_9()
		{
			int[] value = {1150,1417,1416,-1,1315,1049,1777,-1,1206,1193,1224,-1,1244,2611,1744,-1,1424,1181,1743,-1,1086,1832,1081,-1,1648,2612,1267,-1,964,1435,1783,-1,1646,1429,997,-1,998,997,1429,-1,2549,1879,2613,-1,1874,1043,1879,-1,2534,1433,976,-1,1264,1041,790,-1,1441,1640,1442,-1,1033,1032,2545,-1,1772,1029,1031,-1,1097,1443,1098,-1,1259,1645,1445,-1,1259,1446,1637,-1,1254,974,1255,-1,2614,1522,1521,-1,1464,1449,1635,-1,1634,1451,1450,-1,1453,2615,1633,-1,1632,1458,1460,-1,1631,1449,1628,-1,1463,1462,1630,-1,1449,1465,1627,-1,1462,1626,1630,-1,1627,1465,1466,-1,1471,1470,1626,-1,1475,1466,1465,-1,1624,1473,1476,-1,1477,2616,1622,-1,1481,1621,1618,-1,1485,1481,1618,-1,1617,1613,1491,-1,1493,1460,1459,-1,1633,1494,1454,-1,1492,1612,1493,-1,1498,1457,1499,-1,1610,2617,1611,-1,1609,2618,1504,-1,1507,1607,1502,-1,1505,1504,1506,-1,1504,1507,1506,-1,1508,1506,1509,-1,1601,2619,1605,-1,495,2620,1604,-1,1516,1601,1603,-1,1599,1517,1519,-1,1596,1598,2621,-1,2622,1593,1595,-1,1525,1592,2623,-1,1579,1539,1537,-1,1582,1581,1527,-1,2624,897,2625,-1,2624,1548,1528,-1,1585,1584,1586,-1,1530,1574,1591,-1,1583,1526,1546,-1,1545,1544,1581,-1,1578,1550,1549,-1,1552,2626,1933,-1,1933,887,1552,-1,1934,1933,1581,-1,1573,1579,1590,-1,1570,2627,1571,-1,1567,1569,1549,-1,1577,1556,1575,-1,1565,936,1899,-1,1564,2628,1563,-1,1558,2629,904,-1,2459,514,1545,-1,1540,516,1561,-1,1583,1560,1545,-1,1545,1562,2459,-1,1558,926,1563,-1,944,1563,926,-1,1556,1577,1554,-1,2626,1527,1581,-1,2626,1552,1527,-1,1933,2626,1581,-1,1581,1591,1574,-1,1541,1537,2630,-1,1540,1580,1534,-1,1545,1582,1583,-1,1543,2630,1537,-1,1537,1539,1538,-1,2631,1586,1584,-1,1545,514,1547,-1,2624,2625,1585,-1,1534,1580,1532,-1,1588,1529,1531,-1,1523,2632,1524,-1,1517,2633,1518,-1,1516,1603,1514,-1,1511,495,1512,-1,2634,1508,1510,-1,1508,2635,1505,-1,1507,1502,1501,-1,1503,1608,1504,-1,2636,2617,1610,-1,2636,2623,2617,-1,1502,1607,1500,-1,1499,1457,2632,-1,1493,1612,1456,-1,1491,1615,1497,-1,1495,2637,1496,-1,1490,1492,1459,-1,1474,2638,1489,-1,2639,2640,2641,-1,2639,2642,2640,-1,1488,2643,1486,-1,1484,1482,1481,-1,1483,1620,1481,-1,1476,1472,1464,-1,1473,1475,1472,-1,2644,1469,1471,-1,1627,1466,1468,-1,1630,1626,1464,-1,2645,1461,1463,-1,2646,1629,1464,-1,1458,2647,1459,-1,1455,1632,1456,-1,1452,1454,1634,-1,1449,1451,1635,-1,1636,1255,974,-1,792,1445,1645,-1,1032,1638,1825,-1,1441,792,791,-1,2493,2648,1443,-1,1102,1780,1166,-1,1042,1264,1733,-1,1438,1265,1439,-1,1433,978,1263,-1,1234,976,1433,-1,978,980,1044,-1,983,1432,981,-1,1850,1642,1429,-1,1428,1850,1429,-1,443,1159,966,-1,1274,1003,1005,-1,1245,2591,1650,-1,1198,2589,1196,-1,1183,2649,1423,-1,985,1227,1226,-1,1049,1315,1421,-1,1289,1113,1419,-1,1414,1415,1187,-1,1415,1414,1413,-1,1115,1112,1818,-1,1059,991,993,-1,2572,1405,1123,-1,1135,1134,1410,-1,1809,1134,1133,-1,1288,1154,1711,-1,292,1010,1402,-1,1401,1370,1351,-1,1018,1397,1718,-1,1663,1015,2540,-1,2650,1393,1395,-1,2540,1389,1663,-1,1388,1392,1670,-1,2651,1669,1389,-1,1309,1699,1317,-1,1846,1140,2581,-1,1231,1203,1202,-1,1049,1671,1777,-1,1382,1193,1201,-1,1359,2607,1381,-1,969,1880,970,-1,1380,1381,1362,-1,1377,1379,2652,-1,1374,1376,1119,-1,1373,1371,1379,-1,1370,1401,1371,-1,1343,2608,1369,-1,1352,1679,1368,-1,2653,1364,1366,-1,1675,2654,2655,-1,2656,2657,1683,-1,1360,1546,1358,-1,1354,2606,1352,-1,1370,1349,1351,-1,1687,1346,1348,-1,1345,2658,1343,-1,1339,1338,1691,-1,1691,1680,1339,-1,1379,1692,1373,-1,1336,970,972,-1,1339,2659,1337,-1,1320,2660,1696,-1,538,537,1306,-1,1330,540,539,-1,2661,1327,1329,-1,1326,2601,1324,-1,1318,999,1316,-1,1431,2662,1432,-1,1313,1304,1312,-1,1310,1294,1314,-1,1316,1701,1385,-1,1316,2662,1701,-1,1314,1294,1308,-1,543,2569,1303,-1,1323,1703,1292,-1,1298,2663,1299,-1,1294,1296,1308,-1,531,530,534,-1,1292,1300,1293,-1,1114,1113,1290,-1,1290,1152,1114,-1,1157,1705,1286,-1,1285,2579,1122,-1,1283,1667,1282,-1,1280,1715,1021,-1,1666,266,265,-1,1672,969,971,-1,289,1761,1278,-1,1005,2664,1273,-1,1002,1863,1271,-1,964,2538,2665,-1,1439,1265,1040,-1,1044,1432,1733,-1,790,1644,1263,-1,1731,1042,1733,-1,2666,1234,1434,-1,2666,1248,1234,-1,1258,1447,1256,-1,2593,1254,1146,-1,1251,1247,1246,-1,1424,1247,1252,-1,1743,1181,1242,-1,1244,1744,1242,-1,2611,1748,1744,-1,1228,1238,1199,-1,1072,2611,1244,-1,1236,1748,2611,-1,1235,1240,1233,-1,1230,1203,1231,-1,1197,1239,1241,-1,1199,1238,2667,-1,1227,1799,1237,-1,1223,2668,1177,-1,283,1184,1423,-1,1229,234,2555,-1,1210,1209,1761,-1,1082,1081,1003,-1,1227,1228,1195,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getethmoid_Geo_5_109_coordIndex_10()
		{
			int[] value = {1066,1202,1204,-1,1879,1799,1802,-1,1199,1201,1195,-1,1195,1201,1193,-1,2669,1192,966,-1,1190,1191,813,-1,1187,813,1188,-1,1418,1187,1189,-1,1186,1416,1096,-1,1075,1183,1185,-1,1177,1179,1425,-1,1425,1222,1177,-1,1174,1386,1175,-1,1032,1030,1029,-1,2670,1852,2671,-1,1852,1036,2671,-1,1132,1131,1155,-1,1658,1408,1134,-1,1655,1654,1777,-1,1171,1657,1056,-1,1171,2672,1169,-1,1168,1778,1167,-1,780,1781,1104,-1,1034,1030,1032,-1,1777,1310,1315,-1,1155,1700,1156,-1,1152,2600,1153,-1,2583,1078,1148,-1,288,1147,1210,-1,1793,1739,1146,-1,1180,1182,2592,-1,1846,996,995,-1,1777,1671,2673,-1,1049,1422,990,-1,1653,1410,1409,-1,1410,2572,1137,-1,1132,2571,1130,-1,1812,1814,1813,-1,1129,1125,1128,-1,973,2108,541,-1,1720,2652,1401,-1,1123,1821,1121,-1,1120,1109,1108,-1,2674,1406,2675,-1,1112,1116,1820,-1,1661,1285,1284,-1,1818,1112,1114,-1,1821,1110,1111,-1,1118,1107,1109,-1,742,780,740,-1,1167,1778,1824,-1,2676,1781,1101,-1,1032,1825,1275,-1,2677,1260,1262,-1,1096,1769,1094,-1,1301,2678,1791,-1,2679,2680,2681,-1,2682,1005,1087,-1,512,1087,513,-1,1761,1209,2585,-1,1084,1770,1085,-1,1006,1771,2683,-1,1180,2684,2685,-1,2649,2686,1216,-1,1243,2687,2688,-1,1759,2689,2586,-1,1384,2690,2691,-1,2588,1224,1382,-1,1062,1061,1752,-1,1061,1225,1752,-1,1383,1747,1750,-1,1059,993,2692,-1,1054,2693,1798,-1,1801,2694,1803,-1,1799,2535,1800,-1,1432,983,1878,-1,1879,2695,2613,-1,1642,1850,1437,-1,1040,1042,1731,-1,1264,1042,1041,-1,1869,2670,2696,-1,964,2665,1734,-1,1277,2697,1275,-1,966,1160,1024,-1,1161,1163,2582,-1,1028,1774,1026,-1,1076,2698,1077,-1,2650,1395,1867,-1,1669,1280,1663,-1,1676,2699,1022,-1,1397,1396,1720,-1,1017,1413,1018,-1,1013,1283,1011,-1,1583,1546,1360,-1,1182,2700,2592,-1,1000,1002,2595,-1,999,1318,997,-1,994,996,2701,-1,2554,2702,2552,-1,1804,2576,2695,-1,492,974,1448,-1,1684,1561,516,-1,1560,1583,1380,-1,2450,2703,817,-1,790,963,1644,-1,960,962,1884,-1,954,959,955,-1,958,2704,956,-1,953,955,2705,-1,904,1889,952,-1,948,2706,946,-1,943,1564,944,-1,936,1566,937,-1,932,962,930,-1,927,1883,928,-1,1559,924,926,-1,921,923,959,-1,1903,918,920,-1,917,2707,915,-1,914,1906,912,-1,905,1919,903,-1,902,1920,900,-1,897,2708,898,-1,894,896,2709,-1,893,2520,891,-1,885,887,1933,-1,890,889,1578,-1,2710,2711,892,-1,878,1936,883,-1,880,882,905,-1,877,1917,878,-1,876,2712,874,-1,871,1952,872,-1,868,870,2713,-1,843,842,866,-1,2714,2715,2716,-1,843,2507,862,-1,865,1959,864,-1,846,845,862,-1,1961,842,1962,-1,1964,841,861,-1,859,865,857,-1,856,838,847,-1,854,1965,844,-1,833,835,851,-1,830,832,839,-1,849,1967,848,-1,847,853,845,-1,844,852,842,-1,841,1963,839,-1,856,836,838,-1,834,2717,835,-1,831,1969,832,-1,1971,827,829,-1,1973,2501,2718,-1,826,2500,824,-1,821,1976,822,-1,818,820,2719,-1,2720,2721,1972,-1,2721,2501,1972,-1,2722,2669,1767,-1,2723,1783,1092,-1,810,1977,811,-1,807,1978,808,-1,804,2724,805,-1,802,1980,800,-1,799,1915,797,-1,794,2494,795,-1,1262,2725,2677,-1,791,1984,1441,-1,787,783,782,-1,782,1444,2726,-1,2727,776,778,-1,775,754,773,-1,751,2728,774,-1,767,1990,772,-1,771,2729,769,-1,766,1990,767,-1,764,2730,765,-1,761,2731,762,-1,759,1992,757,-1,1985,1992,753,-1,749,744,1999,-1,748,2029,707,-1,745,2030,743,-1,744,746,698,-1,743,748,701,-1,739,2031,737,-1,2002,2485,2732,-1,2732,2733,2002,-1,2734,2735,2736,-1,709,729,2009,-1,736,727,2737,-1,725,735,723,-1,722,717,733,-1,732,719,714,-1,731,733,729,-1,728,732,726,-1,724,2738,725,-1,720,2480,721,-1,717,2739,718,-1,714,2013,715,-1,712,2740,713,-1,710,2022,708,-1,707,2028,705,-1,704,2732,702,-1,701,2485,699,-1,698,2741,696,-1,694,2475,695,-1,687,686,692,-1,684,683,690,-1,689,694,688,-1,685,2742,686,-1,682,681,683,-1,677,622,682,-1,616,625,2055,-1,678,676,679,-1,676,673,674,-1,2474,629,672,-1,668,674,673,-1,665,664,672,-1,671,663,662,-1,669,660,659,-1,657,656,666,-1,654,2043,664,-1,663,2045,661,-1,660,649,658,-1,655,2477,656,-1,653,2043,654,-1,651,658,649,-1,647,648,2743,-1,646,2047,642,-1,643,645,647,-1,640,2476,641,-1,639,2056,2044,-1,688,636,635,-1,689,625,682,-1,634,2744,631,-1,629,631,2744,-1,628,624,626,-1,634,637,2744,-1,620,621,623,-1,619,2474,620,-1,2473,2745,630,-1,2746,2747,627,-1,610,2071,609,-1,608,344,607,-1,604,606,591,-1,2748,601,603,-1,612,611,599,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getethmoid_Geo_5_109_coordIndex_11()
		{
			int[] value = {598,2076,599,-1,596,2077,597,-1,590,604,591,-1,589,588,558,-1,586,2081,587,-1,585,2083,583,-1,2467,578,2749,-1,578,2750,2749,-1,582,2751,581,-1,580,2750,578,-1,576,2089,574,-1,573,2752,571,-1,2464,567,570,-1,568,2753,569,-1,565,2095,566,-1,561,550,549,-1,552,550,561,-1,560,589,558,-1,546,2754,557,-1,555,2462,556,-1,551,2104,552,-1,550,545,548,-1,607,2755,2251,-1,542,544,531,-1,2106,522,1128,-1,541,525,539,-1,536,522,537,-1,515,514,2459,-1,2756,2757,2758,-1,2756,2759,2757,-1,532,2760,533,-1,531,2110,529,-1,2761,1562,2107,-1,527,2108,515,-1,524,536,525,-1,519,2109,544,-1,520,1128,522,-1,518,2109,519,-1,1540,514,516,-1,2762,6,8,-1,1831,488,513,-1,1830,489,1831,-1,505,2763,511,-1,510,503,487,-1,509,2763,507,-1,1625,504,506,-1,502,503,510,-1,499,501,2116,-1,493,495,1511,-1,490,1029,488,-1,474,487,503,-1,485,2764,483,-1,481,482,2765,-1,2455,478,480,-1,476,2455,477,-1,474,478,475,-1,469,476,470,-1,471,465,2122,-1,2123,2766,2453,-1,465,467,2127,-1,2767,2128,2134,-1,2134,460,2767,-1,464,2138,463,-1,2143,455,2452,-1,2452,2132,2143,-1,462,2133,457,-1,460,2134,458,-1,456,2144,457,-1,463,450,452,-1,2149,968,449,-1,92,2155,436,-1,294,438,114,-1,440,448,446,-1,2164,428,2159,-1,425,431,432,-1,430,418,2768,-1,2769,2447,435,-1,2164,2159,2445,-1,421,2770,419,-1,418,2160,416,-1,415,432,413,-1,410,2169,411,-1,407,2771,408,-1,404,2772,405,-1,401,2773,402,-1,398,400,2774,-1,2179,2775,442,-1,395,2180,396,-1,2776,1279,1797,-1,2777,2778,2428,-1,2184,391,392,-1,391,388,390,-1,2779,313,385,-1,225,255,2217,-1,382,366,381,-1,2437,2198,2780,-1,2203,378,380,-1,2210,2781,2211,-1,376,2212,377,-1,373,2432,374,-1,369,2216,370,-1,355,165,353,-1,366,382,365,-1,196,2233,244,-1,363,2782,364,-1,2783,2784,2229,-1,2785,392,2232,-1,366,2233,2193,-1,366,244,2233,-1,2234,2233,312,-1,344,2472,343,-1,2425,346,350,-1,2241,592,591,-1,342,330,329,-1,341,2096,340,-1,339,340,337,-1,336,2466,334,-1,331,330,332,-1,326,328,2421,-1,323,325,2422,-1,300,322,2244,-1,319,306,320,-1,304,315,314,-1,343,2786,318,-1,317,344,318,-1,310,2420,311,-1,308,2787,309,-1,306,319,304,-1,303,2788,301,-1,300,316,298,-1,2267,1,2266,-1,263,266,264,-1,1392,115,1175,-1,262,296,293,-1,214,144,143,-1,2255,18,2256,-1,115,1176,1175,-1,286,145,2789,-1,285,158,218,-1,1147,127,2318,-1,280,61,24,-1,275,274,277,-1,258,156,2790,-1,184,2321,272,-1,93,271,94,-1,269,2791,267,-1,265,263,2264,-1,2380,115,1394,-1,2267,1402,7,-1,2269,260,259,-1,259,261,2253,-1,262,2266,2254,-1,246,248,257,-1,257,2412,2295,-1,2792,247,129,-1,2271,2793,2272,-1,2233,195,312,-1,223,191,172,-1,242,2794,243,-1,240,132,159,-1,238,2795,220,-1,233,2796,236,-1,213,212,234,-1,231,124,2283,-1,2291,209,205,-1,228,2290,229,-1,2797,2412,2221,-1,224,2220,222,-1,134,2294,221,-1,220,284,218,-1,2399,215,217,-1,212,214,291,-1,211,205,209,-1,208,2289,206,-1,2400,169,2798,-1,198,2279,2411,-1,130,240,2401,-1,239,2799,2800,-1,204,2276,197,-1,191,148,147,-1,148,191,193,-1,383,192,249,-1,189,118,117,-1,152,2801,188,-1,185,187,2409,-1,182,184,273,-1,103,189,2802,-1,2803,2300,2406,-1,179,2299,177,-1,175,2804,136,-1,257,2295,258,-1,147,2296,171,-1,168,2306,166,-1,2312,2302,2301,-1,2805,2306,2806,-1,2314,2309,2308,-1,158,2807,159,-1,152,154,2407,-1,151,167,149,-1,146,193,2408,-1,2401,2800,2291,-1,139,2286,140,-1,2301,136,138,-1,2222,2805,2312,-1,2301,176,136,-1,94,2273,126,-1,2298,2313,2808,-1,2428,2778,2784,-1,2809,92,436,-1,122,12,120,-1,119,2322,111,-1,12,110,116,-1,279,117,99,-1,2810,112,2323,-1,112,2810,113,-1,2405,2314,2299,-1,2325,101,100,-1,2323,107,2810,-1,105,2811,2394,-1,2329,113,2313,-1,2330,2154,98,-1,95,2417,93,-1,2809,91,92,-1,88,2393,164,-1,2156,2446,86,-1,82,2352,83,-1,74,2340,2359,-1,80,71,70,-1,63,2391,80,-1,2341,74,76,-1,17,2371,72,-1,2812,69,71,-1,68,80,38,-1,30,47,2336,-1,2353,2352,2339,-1,2355,2388,2387,-1,65,2387,41,-1,61,25,24,-1,77,2389,78,-1,60,2385,58,-1,55,57,2813,-1,54,2814,52,-1,50,2363,20,-1,50,2364,29,-1,33,2815,27,-1,48,2816,47,-1,46,84,44,-1,2383,2334,2333,-1,41,2388,42,-1,37,36,39,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getethmoid_Geo_5_109_coordIndex_12()
		{
			int[] value = {2388,41,2387,-1,33,35,2817,-1,35,34,2364,-1,32,48,30,-1,47,2351,2336,-1,25,2359,26,-1,21,23,2342,-1,18,20,2363,-1,17,75,15,-1,14,2372,2371,-1,12,115,13,-1,2818,2819,2374,-1,2376,1,2377,-1,6,2762,5,-1,2268,2266,2270,-1,2268,2254,2266,-1,2383,2820,2365,-1,2820,2383,2818,-1,2269,2377,2821,-1,2269,2376,2377,-1,2822,58,2823,-1,2822,59,58,-1,2824,2825,2826,-1,2824,2827,2825,-1,2357,52,2358,-1,2357,53,52,-1,2828,2370,82,-1,2828,2347,2370,-1,2368,2829,2830,-1,2368,2367,2829,-1,2364,2362,2338,-1,2364,50,2362,-1,2354,2822,2386,-1,2354,2831,2822,-1,2832,2361,2360,-1,2832,2833,2361,-1,2834,63,2835,-1,63,2834,2391,-1,2826,2836,2824,-1,2836,2826,66,-1,2332,2837,2333,-1,2837,2332,2389,-1,2386,83,2354,-1,2335,83,2386,-1,2363,2336,2256,-1,2336,2363,49,-1,2386,2823,79,-1,2386,2822,2823,-1,2838,31,28,-1,2838,32,31,-1,2382,23,2831,-1,2342,23,2382,-1,2339,2370,2337,-1,2339,2352,2370,-1,2319,2839,2840,-1,2319,2841,2839,-1,111,89,2331,-1,111,113,89,-1,181,2842,2843,-1,2842,181,100,-1,2808,113,2810,-1,2808,2313,113,-1,99,280,279,-1,99,101,280,-1,91,2154,2330,-1,2154,91,2809,-1,108,178,177,-1,108,106,178,-1,2326,2844,2845,-1,2844,2326,2328,-1,2320,2841,2319,-1,2841,2320,2846,-1,2310,367,2403,-1,2804,367,2310,-1,203,2317,204,-1,203,2847,2317,-1,2292,2848,201,-1,2292,2799,2848,-1,285,243,2794,-1,2402,243,285,-1,2306,2222,166,-1,2805,2222,2306,-1,174,140,2305,-1,141,140,174,-1,166,137,2303,-1,138,137,166,-1,2404,2299,179,-1,2405,2299,2404,-1,2185,2849,2850,-1,2849,2185,2851,-1,2852,2418,2853,-1,2854,2418,2852,-1,2410,1142,2297,-1,2263,1142,2410,-1,2799,2855,2848,-1,239,2855,2799,-1,2275,2847,2856,-1,2275,2317,2847,-1,2277,2287,229,-1,2277,2288,2287,-1,2857,237,236,-1,237,2857,290,-1,2858,2285,2859,-1,2858,2284,2285,-1,207,2860,2791,-1,207,221,2860,-1,2287,269,2861,-1,2287,208,269,-1,2280,202,2278,-1,2280,200,202,-1,2276,2289,197,-1,206,2289,2276,-1,2295,2797,171,-1,2797,2295,2412,-1,2862,1221,2863,-1,2864,1221,2862,-1,1218,2274,2795,-1,1218,283,2274,-1,2865,2398,2866,-1,2865,2864,2398,-1,2274,2284,2858,-1,2274,282,2284,-1,2867,190,2868,-1,189,190,2867,-1,2794,2855,2807,-1,242,2855,2794,-1,194,348,195,-1,194,162,348,-1,2869,2,2375,-1,2870,2,2869,-1,262,2253,263,-1,2253,262,2254,-1,1664,2380,1393,-1,2265,2380,1664,-1,2297,2261,291,-1,1142,2261,2297,-1,142,183,187,-1,183,142,2871,-1,189,2839,2802,-1,189,2867,2839,-1,2790,2285,258,-1,2315,2285,2790,-1,24,117,279,-1,24,2814,117,-1,2852,2872,2854,-1,2813,2872,2852,-1,2360,273,272,-1,2360,2385,273,-1,185,19,2410,-1,185,21,19,-1,2396,61,280,-1,61,2396,15,-1,327,2873,2874,-1,2873,327,326,-1,2875,317,316,-1,2755,317,2875,-1,2876,2250,2251,-1,2250,2876,2874,-1,338,303,302,-1,303,338,337,-1,2248,2421,328,-1,2248,2246,2421,-1,335,2245,331,-1,335,2423,2245,-1,2243,2079,2247,-1,2080,2079,2243,-1,310,607,2251,-1,2241,607,310,-1,2238,343,2472,-1,2238,2237,343,-1,2877,2070,2878,-1,2070,2877,2071,-1,2067,345,347,-1,345,2067,2239,-1,371,2879,2880,-1,371,2881,2879,-1,2882,2225,2883,-1,2882,372,2225,-1,2884,2792,2776,-1,2884,2885,2792,-1,355,245,2884,-1,355,353,245,-1,2415,2886,385,-1,2886,2415,188,-1,2887,2888,2889,-1,2890,2888,2887,-1,2891,2892,2893,-1,2891,2894,2892,-1,2890,2895,2896,-1,2890,2887,2895,-1,2889,2897,2887,-1,2898,2897,2889,-1,2899,2893,2892,-1,2899,2900,2893,-1,2901,2433,2881,-1,2901,2434,2433,-1,2214,2223,2213,-1,2223,2214,362,-1,2435,2902,2210,-1,2435,373,2902,-1,2901,2204,379,-1,2901,370,2204,-1,2212,2437,2213,-1,2437,2212,2199,-1,2436,2209,2208,-1,2436,2435,2209,-1,2200,2202,2201,-1,2200,2199,2202,-1,2781,2903,2211,-1,2903,2781,2062,-1,2205,2904,2905,-1,2205,2206,2904,-1,2906,2201,2907,-1,2906,2200,2201,-1,2880,360,361,-1,360,2880,2879,-1,364,357,359,-1,357,364,2782,-1,2429,364,359,-1,2430,364,2429,-1,2416,2908,2183,-1,2909,2908,2416,-1,2229,2195,2197,-1,2784,2195,2229,-1,2899,2416,2194,-1,2899,2909,2416,-1,2191,2197,2195,-1,255,2197,2191,-1,2900,2194,2193,-1,2900,2899,2194,-1,2192,2910,2190,-1,2192,2911,2910,-1,2190,2912,251,-1,2190,2910,2912,-1,389,2779,385,-1,388,2779,389,-1,386,2185,387,-1,2185,386,2851,-1,358,2913,2186,-1,2230,2913,358,-1,357,2230,358,-1,357,2231,2230,-1,392,2427,2426,-1,2427,392,2785,-1,2914,2915,2916,-1,2914,2917,2915,-1,393,2776,1797,-1,393,2918,2776,-1,497,608,2072,-1,497,496,608,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getethmoid_Geo_5_109_coordIndex_13()
		{
			int[] value = {2182,2919,2440,-1,2919,2182,2920,-1,500,2441,2182,-1,500,499,2441,-1,2921,2177,2922,-1,2442,2177,2921,-1,2774,2443,2923,-1,400,2443,2774,-1,2924,2925,2926,-1,2924,2927,2925,-1,2173,2928,2174,-1,1192,2928,2173,-1,2172,2929,397,-1,2171,2929,2172,-1,2930,2931,2921,-1,2932,2931,2930,-1,2931,2773,401,-1,2931,2932,2773,-1,407,2171,2771,-1,2929,2171,407,-1,2933,2934,2444,-1,2933,2935,2934,-1,402,2924,403,-1,402,2927,2924,-1,2936,408,2937,-1,409,408,2936,-1,2170,2938,2939,-1,2170,2940,2938,-1,2153,2923,2451,-1,2153,2176,2923,-1,2451,2443,2151,-1,2923,2443,2451,-1,433,2148,449,-1,437,2148,433,-1,2941,2167,2168,-1,2942,2167,2941,-1,2943,420,2944,-1,2945,420,2943,-1,2167,2946,417,-1,2946,2167,2947,-1,2445,413,431,-1,2445,2160,413,-1,2448,2941,427,-1,2448,2948,2941,-1,2948,2447,423,-1,2448,2447,2948,-1,440,434,433,-1,87,434,440,-1,2949,2947,2147,-1,2949,2946,2947,-1,456,2950,2144,-1,456,2951,2950,-1,2952,453,451,-1,2952,2953,453,-1,458,2949,459,-1,458,2140,2949,-1,2146,2136,2135,-1,2146,2137,2136,-1,454,2130,2129,-1,454,2131,2130,-1,462,467,2133,-1,2127,467,462,-1,2129,2954,2124,-1,2954,2129,2130,-1,2955,2136,468,-1,2955,2135,2136,-1,2956,2957,2958,-1,2956,2959,2957,-1,466,2960,2958,-1,2454,2960,466,-1,475,2125,473,-1,475,2126,2125,-1,2456,472,471,-1,2456,484,472,-1,486,2961,2120,-1,2961,486,2962,-1,2456,2963,2121,-1,2456,2964,2963,-1,2965,2966,2967,-1,2965,2968,2966,-1,2115,502,504,-1,2115,2114,502,-1,1624,1622,2115,-1,1623,1622,1624,-1,2969,2616,2970,-1,2969,2971,2616,-1,2119,2972,2973,-1,2118,2972,2119,-1,508,1488,509,-1,508,2643,1488,-1,494,1603,1602,-1,494,493,1603,-1,2112,524,2974,-1,524,2112,523,-1,2111,2107,529,-1,2111,2975,2107,-1,2976,527,2977,-1,527,2976,526,-1,2978,2979,2980,-1,2981,2979,2978,-1,2982,2974,2983,-1,2112,2974,2982,-1,2984,2111,2985,-1,2975,2111,2984,-1,2986,2987,2988,-1,2986,2989,2987,-1,2757,2990,2991,-1,2759,2990,2757,-1,2992,2993,2994,-1,2993,2992,2995,-1,2996,2997,2998,-1,2999,2997,2996,-1,3000,2758,3001,-1,3000,2756,2758,-1,3002,3003,3004,-1,3002,3005,3003,-1,3006,3007,3008,-1,3009,3007,3006,-1,3010,3011,3012,-1,3010,3013,3011,-1,3014,3015,3016,-1,3014,3017,3015,-1,3018,3019,3020,-1,3021,3019,3018,-1,3022,3023,3024,-1,3025,3023,3022,-1,3026,3027,3028,-1,3026,3029,3027,-1,3030,3031,3032,-1,3033,3031,3030,-1,3034,3035,3036,-1,3034,3037,3035,-1,3038,3039,3040,-1,3039,3038,3041,-1,3042,3043,3044,-1,3042,3045,3043,-1,3046,3047,3048,-1,3046,3049,3047,-1,3050,3051,3052,-1,3051,3050,3053,-1,1329,1336,972,-1,1336,1329,1328,-1,1300,535,1293,-1,1300,1302,535,-1,3054,2105,571,-1,3055,2105,3054,-1,582,3056,3057,-1,2086,3056,582,-1,3058,3059,3060,-1,3058,3061,3059,-1,2102,3062,2091,-1,2101,3062,2102,-1,2463,2098,2097,-1,2463,2099,2098,-1,560,2095,565,-1,560,559,2095,-1,3063,554,557,-1,554,3063,3064,-1,3064,555,554,-1,555,3064,3065,-1,3066,571,2752,-1,3066,3054,571,-1,2093,575,2094,-1,575,2093,576,-1,2101,3067,3062,-1,2101,3068,3067,-1,2084,574,2089,-1,2085,574,2084,-1,2083,2084,583,-1,2083,2085,2084,-1,3057,2751,582,-1,3069,2751,3057,-1,3070,2467,2749,-1,3071,2467,3070,-1,3072,3061,3058,-1,3061,3072,3073,-1,3070,3074,3071,-1,3074,3070,3075,-1,3073,3076,3061,-1,3076,3073,3077,-1,3078,2461,553,-1,3078,3079,2461,-1,2099,3080,2098,-1,2099,3081,3080,-1,3082,2754,3083,-1,2754,3082,3084,-1,2075,3085,3086,-1,2074,3085,2075,-1,2066,3087,3088,-1,3087,2066,3089,-1,3090,2468,3091,-1,3090,2073,2468,-1,2078,498,2469,-1,498,2078,610,-1,3092,2078,2471,-1,2078,3092,2070,-1,3092,2878,2070,-1,3092,3093,2878,-1,2235,2068,2067,-1,2068,2235,3094,-1,3088,3095,3096,-1,3088,3087,3095,-1,3097,3098,3099,-1,3097,3095,3098,-1,3100,3099,3098,-1,3099,3100,3101,-1,3102,3101,3100,-1,3101,3102,3103,-1,3102,2469,3103,-1,3102,2470,2469,-1,2937,3104,2936,-1,3104,2937,3105,-1,2058,2062,2057,-1,2058,2903,2062,-1,2905,626,2059,-1,626,2905,2904,-1,2906,633,631,-1,633,2906,2907,-1,633,2042,634,-1,3106,2042,633,-1,695,2051,636,-1,695,2054,2051,-1,3107,2049,2475,-1,3107,2048,2049,-1,2046,2049,2048,-1,2049,2046,2050,-1,653,2050,2046,-1,2050,653,652,-1,2743,661,2045,-1,2743,648,661,-1,671,3108,3109,-1,671,670,3108,-1,678,3110,3111,-1,3110,678,621,-1,679,685,680,-1,679,2742,685,-1,689,2055,625,-1,2055,689,635,-1,2037,2034,2032,-1,2037,2035,2034,-1,2476,692,2052,-1,693,692,2476,-1,2428,358,2850,-1,2428,359,358,-1,3112,2031,3113,-1,1998,2031,3112,-1,3114,3115,3116,-1,3114,3117,3115,-1,749,2013,718,-1,749,3118,2013,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getethmoid_Geo_5_109_coordIndex_14()
		{
			int[] value = {2480,2029,2030,-1,2481,2029,2480,-1,2006,2482,2025,-1,2482,2006,3119,-1,736,2009,728,-1,3120,2009,736,-1,2014,3121,3122,-1,3123,3121,2014,-1,3124,3125,3126,-1,3124,3127,3125,-1,3128,3129,3130,-1,3128,3131,3129,-1,1987,2019,2018,-1,1987,3132,2019,-1,2015,3133,2016,-1,2015,3134,3133,-1,3135,3136,3137,-1,3135,3130,3136,-1,734,2026,705,-1,3138,2026,734,-1,3139,3140,2003,-1,3140,3139,2010,-1,2010,711,3140,-1,2010,716,711,-1,3141,713,3138,-1,3142,713,3141,-1,2007,708,2021,-1,2007,2008,708,-1,2005,3143,2024,-1,2005,2004,3143,-1,736,3144,3127,-1,736,2737,3144,-1,3145,2483,2022,-1,3122,2483,3145,-1,3131,2023,3129,-1,3131,3146,2023,-1,3147,786,3148,-1,3147,3149,786,-1,3150,2734,2736,-1,3150,2733,2734,-1,3151,3152,3153,-1,3151,3154,3152,-1,782,3148,786,-1,782,2726,3148,-1,3155,704,3117,-1,2734,704,3155,-1,3156,696,3154,-1,3156,3157,696,-1,1994,3112,1995,-1,1994,1998,3112,-1,703,747,2487,-1,703,702,747,-1,1993,3158,3159,-1,3158,1993,1995,-1,778,3160,3161,-1,777,3160,778,-1,3162,3163,3164,-1,3163,3162,3165,-1,3166,3167,762,-1,3166,3168,3167,-1,3169,3170,3171,-1,3169,3172,3170,-1,3173,3172,3169,-1,3173,2727,3172,-1,761,2727,3173,-1,761,776,2727,-1,760,776,761,-1,760,3174,776,-1,3175,3174,760,-1,3175,3176,3174,-1,3177,3178,3179,-1,3177,3180,3178,-1,757,3181,758,-1,757,2489,3181,-1,3180,3182,3178,-1,3180,3183,3182,-1,3184,3181,2489,-1,3184,3185,3181,-1,3183,3186,3182,-1,3183,3187,3186,-1,3188,3189,3190,-1,3189,3188,3191,-1,2731,3173,3192,-1,761,3173,2731,-1,3193,3190,3194,-1,3190,3193,3188,-1,3192,3169,3165,-1,3173,3169,3192,-1,3195,3193,3194,-1,3195,3196,3193,-1,2491,3197,3198,-1,2491,3199,3197,-1,2729,2730,764,-1,2729,771,2730,-1,3199,1991,3200,-1,2491,1991,3199,-1,774,3200,1991,-1,774,2728,3200,-1,3172,778,3201,-1,3172,2727,778,-1,3202,3203,1989,-1,3202,3204,3203,-1,3204,3179,3203,-1,3204,3177,3179,-1,740,3205,3206,-1,781,3205,740,-1,1982,3207,1983,-1,1982,3208,3207,-1,3209,1979,2496,-1,3210,1979,3209,-1,3211,2720,3212,-1,2721,2720,3211,-1,3213,819,818,-1,3213,3214,819,-1,1976,810,809,-1,810,1976,821,-1,803,2718,804,-1,803,2499,2718,-1,1975,3215,3216,-1,1975,3217,3215,-1,2503,2499,1968,-1,2718,2499,2503,-1,3216,1970,2502,-1,3216,3215,1970,-1,834,825,2717,-1,826,825,834,-1,2502,1967,849,-1,2502,1970,1967,-1,865,855,1959,-1,855,865,2504,-1,851,2506,1962,-1,850,2506,851,-1,1960,1963,2505,-1,1960,2506,1963,-1,2508,858,2715,-1,2508,861,858,-1,1955,1961,1960,-1,1953,1961,1955,-1,864,1958,3218,-1,864,863,1958,-1,2510,1957,1956,-1,1957,2510,2509,-1,3219,1958,2507,-1,3220,1958,3219,-1,3221,2715,3222,-1,3221,2508,2715,-1,1954,3223,3224,-1,1954,2511,3223,-1,3219,3225,3220,-1,3225,3219,3226,-1,1947,3227,1952,-1,3227,1947,1943,-1,3228,3229,3230,-1,3228,3231,3229,-1,3232,3233,3234,-1,869,3233,3232,-1,3235,3236,3237,-1,3235,3222,3236,-1,3238,3239,3240,-1,3238,3241,3239,-1,3242,3243,3244,-1,3242,3245,3243,-1,3241,3246,3247,-1,3246,3241,3238,-1,3248,3245,3242,-1,3248,3249,3245,-1,3246,3250,3247,-1,3251,3250,3246,-1,3252,3249,3248,-1,3252,3253,3249,-1,3250,3254,3255,-1,3254,3250,3251,-1,3256,3252,3257,-1,3256,3253,3252,-1,3255,3258,3259,-1,3258,3255,3254,-1,3260,3257,3261,-1,3260,3256,3257,-1,3259,3262,3263,-1,3262,3259,3258,-1,3264,3261,3265,-1,3264,3260,3261,-1,3263,3266,3267,-1,3266,3263,3262,-1,1951,3265,3268,-1,1951,3264,3265,-1,3266,2513,3267,-1,3269,2513,3266,-1,2512,3268,3270,-1,2512,1951,3268,-1,3225,1949,2514,-1,3225,3226,1949,-1,1952,3271,872,-1,1952,3227,3271,-1,3272,2514,1945,-1,3272,3225,2514,-1,1944,3273,2515,-1,3273,1944,3274,-1,3275,875,874,-1,3275,3276,875,-1,2515,3240,3239,-1,3240,2515,3273,-1,900,3277,3278,-1,900,3279,3277,-1,1938,1917,1916,-1,1938,1939,1917,-1,886,1936,1939,-1,886,885,1936,-1,882,3280,3281,-1,2517,3280,882,-1,3282,3277,3283,-1,3282,3284,3277,-1,891,3285,3286,-1,891,890,3285,-1,3287,3288,3289,-1,3288,3287,3290,-1,1931,1935,1934,-1,1930,1935,1931,-1,1573,1928,3291,-1,1573,1590,1928,-1,3292,1571,2627,-1,1571,3292,3293,-1,1927,3294,1926,-1,1927,3295,3294,-1,3296,1924,3297,-1,3296,1925,1924,-1,1568,3285,1569,-1,1568,3298,3285,-1,2518,3299,2711,-1,2518,3300,3299,-1,889,2519,3301,-1,889,888,2519,-1,1922,3302,1923,-1,1922,3303,3302,-1,3301,2708,1575,-1,3301,2519,2708,-1,1923,3304,3305,-1,1923,3302,3304,-1,886,1554,887,-1,886,3306,1554,-1,904,880,905,-1,904,951,880,-1,1916,1891,1937,-1,1916,1918,1891,-1,3208,907,3210,-1,3208,909,907,-1,1981,3307,3308,-1,802,3307,1981,-1,3309,797,1911,-1,797,3309,794,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getethmoid_Geo_5_109_coordIndex_15()
		{
			int[] value = {3308,3310,3311,-1,3308,3307,3310,-1,1911,3312,3309,-1,3312,1911,2525,-1,935,1908,933,-1,917,1908,935,-1,919,3313,1907,-1,919,3314,3313,-1,3315,915,2707,-1,915,3315,2524,-1,1901,3316,1902,-1,1901,1913,3316,-1,3317,3318,3319,-1,3317,3320,3318,-1,3321,3320,3317,-1,2528,917,935,-1,917,2528,2707,-1,3322,938,937,-1,3322,3323,938,-1,2705,1900,2533,-1,955,1900,2705,-1,3324,3322,1909,-1,3322,3324,3323,-1,925,2530,3325,-1,924,2530,925,-1,1883,2532,928,-1,1883,1887,2532,-1,1883,1885,1887,-1,929,3326,927,-1,929,1896,3326,-1,929,3327,1896,-1,2704,3328,3329,-1,2704,2529,3328,-1,1908,3330,3331,-1,1908,3332,3330,-1,3333,1899,930,-1,3333,2531,1899,-1,1565,1897,943,-1,1898,1897,1565,-1,3334,2526,3335,-1,2526,3334,942,-1,946,3335,947,-1,3335,946,3334,-1,3336,2532,1889,-1,928,2532,3336,-1,3337,3338,3339,-1,3338,3337,3340,-1,1893,953,2705,-1,1891,953,1893,-1,3317,3339,3341,-1,3339,3317,3337,-1,1886,960,1884,-1,1888,960,1886,-1,791,795,1983,-1,793,795,791,-1,788,1980,2495,-1,2548,1980,788,-1,1984,3209,1261,-1,1984,3207,3209,-1,1766,3211,1767,-1,1766,2724,3211,-1,3342,814,2497,-1,3342,811,814,-1,812,808,1091,-1,812,1977,808,-1,3343,1874,2549,-1,1875,1874,3343,-1,3344,1845,1844,-1,2537,1845,3344,-1,1847,1735,1411,-1,1847,3345,1735,-1,3346,2544,2596,-1,3346,2545,2544,-1,1727,2565,3347,-1,1727,2566,2565,-1,1855,3348,1089,-1,1855,3349,3348,-1,1030,1854,1031,-1,1030,1853,1854,-1,2681,1272,1753,-1,2681,2680,1272,-1,1865,1712,2599,-1,1865,1867,1712,-1,2539,3350,3351,-1,3350,2539,1864,-1,1015,1282,2540,-1,1015,1014,1282,-1,1668,1713,1395,-1,1667,1713,1668,-1,2698,1836,1077,-1,2698,3352,1836,-1,2664,3353,1760,-1,3354,3353,2664,-1,3355,3356,3357,-1,1755,3356,3355,-1,1080,1770,1084,-1,1079,1770,1080,-1,1760,1273,2664,-1,1760,2585,1273,-1,2542,3358,3359,-1,3358,2542,1858,-1,1163,3360,2582,-1,1163,3361,3360,-1,1723,1159,1724,-1,1160,1159,1723,-1,1723,2538,1025,-1,1722,2538,1723,-1,1852,1037,1036,-1,1037,1852,1436,-1,2677,3362,2671,-1,2677,2547,3362,-1,1044,2550,1432,-1,2550,1044,1045,-1,979,1876,3363,-1,979,1877,1876,-1,985,1873,986,-1,1051,1873,985,-1,1412,1052,1143,-1,1052,1412,1053,-1,2693,994,1798,-1,3345,994,2693,-1,1746,1750,1747,-1,1746,1751,1750,-1,2562,2586,2689,-1,2586,2562,2561,-1,2564,2698,1076,-1,2564,2563,2698,-1,1860,1274,1273,-1,1274,1860,1211,-1,3358,3348,3364,-1,3358,3365,3348,-1,3366,1213,2150,-1,3366,1214,1213,-1,2668,3367,3368,-1,2668,1223,3367,-1,3369,2612,1212,-1,3369,3370,2612,-1,1791,3371,1792,-1,1791,2678,3371,-1,1099,1444,2580,-1,1099,1098,1444,-1,1404,7,1402,-1,1404,8,7,-1,1121,1661,1284,-1,1121,1822,1661,-1,1419,1819,1150,-1,1820,1819,1419,-1,1115,1660,1399,-1,1660,1115,1817,-1,1398,2652,1720,-1,2652,1398,1377,-1,1808,1656,1809,-1,1654,1656,1808,-1,2662,1421,1701,-1,1421,2662,1431,-1,1432,1805,1046,-1,1805,1432,1878,-1,1802,2694,1849,-1,2694,1802,1803,-1,2551,1800,988,-1,2551,1801,1800,-1,2673,1872,2536,-1,1671,1872,2673,-1,2692,1207,1059,-1,2692,1844,1207,-1,297,3372,1659,-1,297,274,3372,-1,3373,1636,491,-1,1636,3373,1794,-1,1739,1253,3374,-1,1739,1741,1253,-1,1810,3375,3376,-1,2574,3375,1810,-1,1122,1786,1784,-1,1122,2579,1786,-1,1157,1420,1149,-1,1287,1420,1157,-1,3377,2571,3378,-1,2571,3377,1812,-1,3379,1814,1785,-1,1814,3379,1813,-1,1314,1307,1315,-1,1307,1314,1308,-1,1105,1781,2676,-1,1105,1104,1781,-1,3380,3381,1172,-1,3381,3380,3382,-1,3382,3383,1169,-1,3382,3384,3383,-1,1846,1172,1056,-1,3380,1172,1846,-1,1815,1792,3385,-1,1790,1792,1815,-1,1027,1854,1028,-1,1027,1871,1854,-1,1085,1006,1832,-1,1085,1771,1006,-1,1186,3386,1151,-1,1186,1095,3386,-1,2559,1063,1765,-1,1063,2559,1064,-1,1196,1230,3387,-1,2589,1230,1196,-1,977,1234,3388,-1,1234,977,976,-1,212,2610,1060,-1,2261,2610,212,-1,1764,1071,1765,-1,235,1071,1764,-1,1834,1859,2541,-1,1834,2683,1859,-1,3389,3368,3390,-1,3389,3391,3368,-1,1829,2681,1827,-1,1829,2679,2681,-1,1073,2689,1840,-1,2562,2689,1073,-1,2584,2667,1238,-1,2584,1763,2667,-1,1206,1061,1059,-1,1206,1225,1061,-1,2561,1243,2688,-1,1244,1243,2561,-1,1741,1182,1252,-1,1741,1793,1182,-1,1737,1248,2666,-1,1737,1736,1248,-1,1737,1434,1645,-1,1737,2666,1434,-1,991,2554,992,-1,2702,2554,991,-1,2547,3392,3362,-1,2547,1039,3392,-1,1642,999,998,-1,1732,999,1642,-1,1875,3363,1876,-1,3393,3363,1875,-1,3346,3360,3394,-1,3395,3360,3346,-1,1719,1880,264,-1,1881,1880,1719,-1,1665,1393,3351,-1,1393,1665,1664,-1,2597,3396,2699,-1,2597,2598,3396,-1,1023,1587,1021,-1,1548,1587,1023,-1,3378,1303,3377,-1,1126,1303,3378,-1,537,3397,1306,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getethmoid_Geo_5_109_coordIndex_16()
		{
			int[] value = {537,2106,3397,-1,3398,1785,1699,-1,3398,3379,1785,-1,1298,3379,3398,-1,1298,3399,3379,-1,2678,1705,1157,-1,2678,1301,1705,-1,1701,1315,1307,-1,1421,1315,1701,-1,1695,2602,2601,-1,1337,2602,1695,-1,3400,2661,1331,-1,3401,2661,3400,-1,1306,3402,1335,-1,3402,1306,3403,-1,1345,3404,2658,-1,1345,1695,3404,-1,1686,3400,3405,-1,1689,3400,1686,-1,3403,1693,2603,-1,3403,3406,1693,-1,1373,1342,1341,-1,1373,1693,1342,-1,2608,1688,1682,-1,2608,3407,1688,-1,1561,3350,1864,-1,1561,1685,3350,-1,1683,1721,1400,-1,1721,1683,2607,-1,3408,1350,1354,-1,1350,3408,3409,-1,293,3410,1662,-1,293,1673,3410,-1,1348,3411,1366,-1,1348,2605,3411,-1,1369,1374,1010,-1,1374,1369,1375,-1,1378,1399,3411,-1,1377,1399,1378,-1,2604,1365,1677,-1,1365,2604,1687,-1,2657,1675,1363,-1,2654,1675,2657,-1,3412,3410,1356,-1,3410,3412,3413,-1,1662,3413,1353,-1,1662,3410,3413,-1,1016,1542,1012,-1,1016,2631,1542,-1,1347,2605,1348,-1,2603,2605,1347,-1,2651,1387,1173,-1,2651,2609,1387,-1,2650,3351,1393,-1,2650,2539,3351,-1,1405,1410,1653,-1,2572,1410,1405,-1,1788,1133,1135,-1,1788,2575,1133,-1,1229,2557,1069,-1,2557,1229,2555,-1,1236,1072,1066,-1,1236,2611,1072,-1,1073,1244,2562,-1,1073,1072,1244,-1,2583,1423,2649,-1,1423,2583,1148,-1,1772,1089,1088,-1,1772,1855,1089,-1,1768,1438,3414,-1,1768,1869,1438,-1,1799,1745,1237,-1,1799,1879,1745,-1,1879,3388,1745,-1,1879,977,3388,-1,788,1039,2547,-1,790,1039,788,-1,1032,2697,2544,-1,1032,1275,2697,-1,2615,1616,1633,-1,2615,3415,1616,-1,3415,3416,3417,-1,2615,3416,3415,-1,3418,1458,3419,-1,1458,3418,2647,-1,1452,1631,3420,-1,1450,1631,1452,-1,3416,3421,3422,-1,3423,3421,3416,-1,2645,3424,3425,-1,3424,2645,3419,-1,3422,3426,3427,-1,3421,3426,3422,-1,3428,2645,3425,-1,3428,1461,2645,-1,2644,1462,1461,-1,2644,1471,1462,-1,3427,3429,3430,-1,3426,3429,3427,-1,2640,3431,3430,-1,2640,1619,3431,-1,1464,3432,1476,-1,3432,1464,1626,-1,2118,1486,2972,-1,1486,2118,1487,-1,1488,3433,509,-1,1488,3434,3433,-1,2639,1489,2638,-1,2639,2641,1489,-1,1634,1496,3435,-1,1454,1496,1634,-1,1614,3436,3437,-1,3436,1614,1613,-1,1516,1612,1497,-1,1516,1515,1612,-1,1495,3438,2637,-1,1495,1523,3438,-1,1509,1595,1510,-1,1501,1595,1509,-1,1500,1595,1501,-1,1523,3439,3438,-1,1523,1525,3439,-1,1611,2618,1609,-1,1611,3440,2618,-1,3441,3439,2636,-1,3442,3439,3441,-1,2618,1507,1504,-1,2618,1606,1507,-1,3443,3441,3444,-1,3445,3441,3443,-1,1503,3446,3443,-1,3446,1503,3447,-1,3448,3446,2620,-1,3448,3449,3446,-1,1602,3448,494,-1,1602,1605,3448,-1,2634,3450,3451,-1,2634,1510,3450,-1,1522,3452,3453,-1,1522,1513,3452,-1,3454,1456,3455,-1,1457,1456,3454,-1,3456,1597,1520,-1,1597,3456,1598,-1,1592,3454,3457,-1,1524,3454,1592,-1,1598,2622,2621,-1,1598,1593,2622,-1,1596,3440,1611,-1,1596,2621,3440,-1,1588,1545,1547,-1,1588,1531,1545,-1,1931,1581,1574,-1,1934,1581,1931,-1,3292,1529,1533,-1,1529,3292,2627,-1,1567,3458,1572,-1,3458,1567,3459,-1,1575,897,1576,-1,1575,2708,897,-1,899,2625,897,-1,899,1535,2625,-1,3460,944,1557,-1,944,3460,945,-1,2628,3336,2629,-1,3336,2628,3461,-1,2629,1889,904,-1,1889,2629,3336,-1,3461,928,3336,-1,928,3461,929,-1,3462,929,3461,-1,929,3462,3327,-1,1535,2523,1536,-1,899,2523,1535,-1,1577,887,1554,-1,1577,1552,887,-1,1568,1572,1571,-1,1572,1568,1567,-1,1553,1579,1537,-1,1553,1589,1579,-1,1535,1585,2625,-1,1535,1584,1585,-1,1579,1580,1539,-1,1532,1580,1579,-1,2621,3463,3440,-1,2621,2622,3463,-1,3464,3457,3465,-1,1592,3457,3464,-1,3456,1593,1598,-1,3456,1599,1593,-1,3457,3455,3466,-1,3454,3455,3457,-1,3466,2614,1521,-1,3466,3467,2614,-1,2633,3453,3452,-1,3453,2633,1517,-1,3450,2633,3451,-1,2633,3450,1518,-1,2634,3468,3469,-1,3468,2634,3451,-1,2620,3447,1604,-1,2620,3446,3447,-1,1505,3447,1503,-1,3447,1505,2635,-1,3470,3471,3472,-1,3470,3473,3471,-1,3443,1608,1503,-1,3443,3444,1608,-1,3444,2636,1610,-1,3441,2636,3444,-1,3440,1606,2618,-1,3440,3463,1606,-1,1594,1510,1595,-1,1600,1510,1594,-1,1519,1510,1600,-1,1519,3450,1510,-1,1519,1518,3450,-1,2637,3474,3475,-1,2637,3438,3474,-1,2619,3437,3470,-1,3437,2619,1614,-1,3435,2637,3475,-1,1496,2637,3435,-1,511,1474,506,-1,511,2638,1474,-1,2642,3433,3434,-1,3433,2642,2639,-1,1484,1488,1487,-1,1488,1484,3434,-1,1479,1621,1620,-1,1479,1469,1621,-1,1626,1478,3432,-1,1478,1626,1470,-1,506,1473,1625,-1,506,1474,1473,-1,1621,2644,3476,-1,1621,1469,2644,-1,3430,2641,2640,-1,3429,2641,3430,-1,1468,3429,3426,-1,1468,1467,3429,-1,3476,1461,3428,-1,3476,2644,1461,-1,3477,3425,3478,-1,3477,3428,3425,-1,3421,1468,3426,-1,3479,1468,3421,-1,3425,3480,3478,-1,3480,3425,3424,-1,3423,3479,3421,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=17 */
		private int[] getethmoid_Geo_5_109_coordIndex_17()
		{
			int[] value = {3420,3479,3423,-1,3419,1632,3424,-1,1632,3419,1458,-1,2615,3423,3416,-1,1453,3423,2615,-1,3415,1457,1616,-1,3415,1455,1457,-1,1795,3481,1008,-1,3481,1795,1794,-1,1437,3414,1438,-1,1428,3414,1437,-1,1268,2567,2566,-1,1268,1270,2567,-1,1198,1742,1744,-1,1198,1241,1742,-1,1059,1060,2610,-1,1059,1061,1060,-1,3482,1838,1759,-1,1838,3482,1220,-1,3371,1151,3386,-1,1151,3371,1158,-1,1190,967,1191,-1,1415,967,1190,-1,1396,1116,1115,-1,1396,1413,1116,-1,1171,1658,1657,-1,1658,1171,1170,-1,2674,1117,1406,-1,1107,1117,2674,-1,1388,1668,1391,-1,1390,1668,1388,-1,2651,1388,2609,-1,2651,1389,1388,-1,1170,1408,1658,-1,3483,1408,1170,-1,3370,1267,2612,-1,1267,3370,1729,-1,1021,1586,1281,-1,1587,1586,1021,-1,1672,295,969,-1,295,1672,296,-1,2654,2656,3409,-1,2654,2657,2656,-1,2699,1023,1022,-1,3396,1023,2699,-1,1375,1690,1376,-1,1375,1682,1690,-1,1378,2605,1692,-1,1378,3411,2605,-1,1343,1679,1344,-1,1368,1679,1343,-1,3484,1881,1719,-1,3484,3485,1881,-1,1353,3408,1354,-1,3413,3408,1353,-1,1319,1675,2655,-1,1674,1675,1319,-1,2656,1400,1351,-1,2656,1683,1400,-1,1881,1694,970,-1,1694,1881,3485,-1,3407,1343,2658,-1,1343,3407,2608,-1,3402,2603,1347,-1,3402,3403,2603,-1,1689,3401,3400,-1,1688,3401,1689,-1,2659,1342,3486,-1,1342,2659,1339,-1,1333,3402,3487,-1,1333,1335,3402,-1,3401,1327,2661,-1,3488,1327,3401,-1,2659,2602,1337,-1,2659,2660,2602,-1,1335,1332,538,-1,1332,1335,1333,-1,1331,1329,540,-1,1331,2661,1329,-1,1674,1322,1698,-1,1319,1322,1674,-1,999,2662,1316,-1,2662,999,1432,-1,1706,2578,1784,-1,1706,1702,2578,-1,1304,3489,1305,-1,1304,1299,3489,-1,3397,1127,1312,-1,3397,1125,1127,-1,1298,1296,2663,-1,1296,1298,3398,-1,1297,3399,1298,-1,3490,3399,1297,-1,3490,1313,1700,-1,1297,1313,3490,-1,1125,2106,1128,-1,2106,1125,3397,-1,1816,3491,2569,-1,1790,3491,1816,-1,1013,2630,3492,-1,1013,1541,2630,-1,1281,2631,1016,-1,1281,1586,2631,-1,3366,3353,3357,-1,3366,1796,3353,-1,2682,3355,3354,-1,3493,3355,2682,-1,3362,1851,2696,-1,3392,1851,3362,-1,1258,1448,1447,-1,1448,1258,1637,-1,1254,3494,1736,-1,3494,1254,2593,-1,1248,3494,1246,-1,1736,3494,1248,-1,3495,1250,3496,-1,1740,1250,3495,-1,2700,1144,1009,-1,2700,1145,1144,-1,1181,2687,1243,-1,2564,2687,1181,-1,1650,1240,1235,-1,1650,1241,1240,-1,1749,3497,1232,-1,1749,1200,3497,-1,1840,1759,1838,-1,2689,1759,1840,-1,1839,1067,1074,-1,1839,1065,1067,-1,1062,2555,1060,-1,2555,1062,2556,-1,1747,1749,1231,-1,1749,1747,1383,-1,3365,1858,3347,-1,3358,1858,3365,-1,3390,3367,3498,-1,3368,3367,3390,-1,1185,1758,1075,-1,1185,3499,1758,-1,3499,3500,3501,-1,3500,3499,1185,-1,1229,235,234,-1,1229,1071,235,-1,2649,1837,2686,-1,2649,1183,1837,-1,1796,2150,1797,-1,1796,3366,2150,-1,1215,2649,1216,-1,1215,2583,2649,-1,1233,3388,1234,-1,1233,2590,3388,-1,1066,1841,1202,-1,1068,1841,1066,-1,1200,2667,3497,-1,2667,1200,1199,-1,1826,3414,1428,-1,1826,2568,3414,-1,1218,1185,1184,-1,1185,1218,3500,-1,1180,2563,1181,-1,1180,2685,2563,-1,3482,3501,2863,-1,3501,3482,3499,-1,1008,1649,1795,-1,1649,1008,1009,-1,2671,1035,2677,-1,2671,1036,1035,-1,1301,1790,1816,-1,1791,1790,1301,-1,1775,1407,1408,-1,1775,1776,1407,-1,1169,3381,3382,-1,1169,2672,3381,-1,1172,2672,1171,-1,1172,3381,2672,-1,2676,1275,1105,-1,1275,2676,1276,-1,1311,1295,1294,-1,1311,3376,1295,-1,1155,3490,1700,-1,1131,3490,1155,-1,1812,3491,2570,-1,1812,3377,3491,-1,1287,1289,1420,-1,1287,1709,1289,-1,2574,3502,3375,-1,2575,3502,2574,-1,274,2379,3372,-1,274,10,2379,-1,1135,1789,1788,-1,1136,1789,1135,-1,1720,1115,1398,-1,1720,1396,1115,-1,1374,1108,3503,-1,1374,1119,1108,-1,1660,1285,1661,-1,1660,1711,1285,-1,1403,2674,2675,-1,2674,1403,3503,-1,782,2580,1444,-1,784,2580,782,-1,1440,3504,1100,-1,1260,3504,1440,-1,1094,3386,1095,-1,1094,3385,3386,-1,2151,2669,2450,-1,2151,1192,2669,-1,2151,2928,1192,-1,1753,1271,1754,-1,1753,1272,1271,-1,1223,2542,3367,-1,2542,1223,1856,-1,2150,3389,394,-1,2150,1213,3389,-1,1005,3354,2664,-1,1005,2682,3354,-1,1756,1082,1762,-1,1083,1082,1756,-1,1074,1840,1839,-1,1074,1073,1840,-1,1065,1068,1067,-1,1065,1064,1068,-1,1225,2588,1752,-1,1225,1224,2588,-1,1057,3344,1058,-1,2537,3344,1057,-1,1052,2610,1141,-1,2610,1052,1054,-1,1039,1266,3392,-1,1039,1038,1266,-1,1734,2546,1639,-1,1734,2665,2546,-1,3361,3394,3360,-1,3361,3505,3394,-1,1025,1160,1723,-1,1160,1025,1024,-1,2158,1027,1026,-1,2158,3506,1027,-1,1774,2543,1162,-1,1774,1028,2543,-1,1084,1833,1080,-1,1756,1833,1084,-1,3369,1755,1754,-1,3369,3356,1755,-1,2541,2686,3507,-1,2686,2541,1216,-1,2597,1019,1717,-1,2597,1020,1019,-1,1013,1714,1283,-1,3492,1714,1013,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=18 */
		private int[] getethmoid_Geo_5_109_coordIndex_18()
		{
			int[] value = {1666,1719,266,-1,1719,1666,3484,-1,1009,2592,2700,-1,2592,1009,1007,-1,2680,1002,1272,-1,2595,1002,2680,-1,3505,1033,3394,-1,3505,1034,1033,-1,3365,1089,3348,-1,1089,3365,1090,-1,1269,1726,1728,-1,1269,1268,1726,-1,2596,2697,1722,-1,2697,2596,2544,-1,995,3345,1847,-1,3345,995,994,-1,2692,3344,1844,-1,3344,2692,3508,-1,980,3363,1045,-1,3363,980,979,-1,1806,983,982,-1,1806,1878,983,-1,1088,512,1772,-1,512,1088,1829,-1,965,2669,966,-1,965,1767,2669,-1,1766,805,2724,-1,1766,2723,805,-1,3509,815,817,-1,3510,815,3509,-1,1978,2723,1092,-1,805,2723,1978,-1,2725,1980,2548,-1,2725,800,1980,-1,800,1262,2496,-1,800,2725,1262,-1,796,1882,798,-1,796,1641,1882,-1,956,3341,957,-1,956,3511,3341,-1,957,3339,3512,-1,957,3341,3339,-1,2533,1893,2705,-1,1893,2533,950,-1,3338,3513,3514,-1,3338,3340,3513,-1,2706,3515,946,-1,2706,3514,3515,-1,3515,3334,946,-1,3334,3515,3516,-1,3516,942,3334,-1,942,3516,3517,-1,911,2526,912,-1,911,3518,2526,-1,1566,943,945,-1,1565,943,1566,-1,3519,940,2527,-1,940,3519,3520,-1,916,3332,1908,-1,916,940,3332,-1,938,931,936,-1,931,938,921,-1,3332,3320,3330,-1,3332,3318,3320,-1,3329,956,2704,-1,3329,3331,956,-1,3319,3519,3521,-1,3319,3520,3519,-1,3318,3520,3319,-1,3522,3325,3518,-1,925,3325,3522,-1,3328,3323,3324,-1,3323,3328,922,-1,949,1559,1894,-1,949,924,1559,-1,937,3523,3322,-1,3460,3523,937,-1,1906,1913,1901,-1,1906,2525,1913,-1,3310,2707,2528,-1,2707,3310,3315,-1,918,3314,919,-1,918,908,3314,-1,3309,3313,3524,-1,3312,3313,3309,-1,3315,3307,3525,-1,3310,3307,3315,-1,3309,2494,794,-1,3309,3524,2494,-1,802,3525,3307,-1,801,3525,802,-1,1982,909,3208,-1,1982,3526,909,-1,900,1892,901,-1,900,3278,1892,-1,1536,3527,3289,-1,1536,2523,3527,-1,3306,1555,1554,-1,3306,3528,1555,-1,2519,898,2708,-1,2519,2521,898,-1,3528,894,1555,-1,3528,3282,894,-1,889,2709,896,-1,2709,889,3301,-1,892,1922,893,-1,892,2711,1922,-1,895,3529,1551,-1,3283,3529,895,-1,3286,3298,3297,-1,3285,3298,3286,-1,3293,3297,3298,-1,3293,3296,3297,-1,3291,3293,3292,-1,3293,3291,3296,-1,3530,1590,1589,-1,1590,3530,1929,-1,1553,3289,3288,-1,1553,1536,3289,-1,890,1569,3285,-1,890,1578,1569,-1,2516,3282,3528,-1,3282,2516,3284,-1,3531,3281,3280,-1,3531,3532,3281,-1,1939,3306,886,-1,3306,1939,1938,-1,1920,3279,900,-1,1920,3532,3279,-1,3239,1942,2515,-1,3239,2713,1942,-1,3276,1945,875,-1,3276,3237,1945,-1,3271,874,2712,-1,3533,874,3271,-1,1946,1943,1947,-1,1944,1943,1946,-1,2514,2512,876,-1,2514,1949,2512,-1,3270,873,872,-1,3270,3268,873,-1,1948,3267,2513,-1,1948,3534,3267,-1,1950,3264,1951,-1,1950,3535,3264,-1,3263,3534,3536,-1,3267,3534,3263,-1,3535,3260,3264,-1,3535,3537,3260,-1,3538,3263,3536,-1,3263,3538,3259,-1,3537,3256,3260,-1,3537,3539,3256,-1,3540,3259,3538,-1,3259,3540,3255,-1,3539,3253,3256,-1,3539,3541,3253,-1,3542,3255,3540,-1,3255,3542,3250,-1,3253,3543,3249,-1,3253,3541,3543,-1,3544,3250,3542,-1,3250,3544,3247,-1,3249,3545,3245,-1,3249,3543,3545,-1,868,3247,3544,-1,3247,868,3241,-1,3245,3235,3243,-1,3245,3545,3235,-1,3241,2713,3239,-1,3241,868,2713,-1,3243,3237,3276,-1,3243,3235,3237,-1,3546,869,3232,-1,870,869,3546,-1,3547,3228,3230,-1,3548,3228,3547,-1,3549,1943,1942,-1,3549,3227,1943,-1,3219,3550,3226,-1,3219,867,3550,-1,2511,3551,3223,-1,2511,1957,3551,-1,3222,2714,3236,-1,3222,2715,2714,-1,867,2507,843,-1,3219,2507,867,-1,857,3218,2716,-1,857,864,3218,-1,1955,2505,1956,-1,1955,1960,2505,-1,857,2715,858,-1,2715,857,2716,-1,847,1959,855,-1,847,846,1959,-1,1963,850,839,-1,1963,2506,850,-1,859,2504,865,-1,2504,859,1966,-1,835,831,830,-1,835,2717,831,-1,1968,826,834,-1,2499,826,1968,-1,2502,822,3216,-1,822,2502,1969,-1,820,836,828,-1,820,1974,836,-1,825,821,823,-1,824,821,825,-1,3217,2719,3215,-1,3217,818,2719,-1,2501,804,2718,-1,2721,804,2501,-1,3552,818,3217,-1,3552,3213,818,-1,2669,2703,2450,-1,2722,2703,2669,-1,1766,1783,2723,-1,965,1783,1766,-1,2498,811,3342,-1,2498,809,811,-1,3212,3214,3553,-1,2720,3214,3212,-1,3554,1915,799,-1,3555,1915,3554,-1,2725,2547,2677,-1,2548,2547,2725,-1,2000,2735,2493,-1,2736,2735,2000,-1,787,1106,783,-1,3556,1106,787,-1,2648,1444,1443,-1,2726,1444,2648,-1,3177,3557,3558,-1,3557,3177,3204,-1,3160,3204,3202,-1,3160,3557,3204,-1,3161,769,3559,-1,3161,3560,769,-1,2728,2020,3200,-1,2728,2018,2020,-1,3561,3200,2020,-1,3199,3200,3561,-1,771,3195,2730,-1,771,766,3195,-1,3199,3135,3197,-1,3199,3561,3135,-1,2730,3194,765,-1,2730,3195,3194,-1,3135,3562,3197,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=19 */
		private int[] getethmoid_Geo_5_109_coordIndex_19()
		{
			int[] value = {3562,3135,3137,-1,3190,765,3194,-1,3563,765,3190,-1,3137,3564,3562,-1,3564,3137,3565,-1,3190,3186,3563,-1,3186,3190,3189,-1,3565,3185,3564,-1,3185,3565,2017,-1,3189,3182,3186,-1,3182,3189,3566,-1,2017,3181,3185,-1,3181,2017,2016,-1,3178,3566,3567,-1,3178,3182,3566,-1,2016,758,3181,-1,758,2016,3133,-1,3567,3179,3178,-1,3179,3567,3568,-1,3133,759,758,-1,759,3133,3569,-1,1985,755,3570,-1,1985,756,755,-1,3571,3168,3558,-1,3167,3168,3571,-1,3572,3165,3162,-1,3165,3572,3192,-1,3559,778,3161,-1,778,3559,3201,-1,1999,3118,749,-1,3118,1999,1996,-1,2029,743,2030,-1,2029,748,743,-1,3115,2487,3573,-1,3115,703,2487,-1,2741,3154,696,-1,3154,2741,3152,-1,2031,3149,3113,-1,3149,2031,739,-1,2734,2732,704,-1,2733,2732,2734,-1,3556,3154,3151,-1,3556,3156,3154,-1,2002,3150,3206,-1,2002,2733,3150,-1,3149,785,786,-1,3149,739,785,-1,3574,3146,3131,-1,3574,3575,3146,-1,3122,3119,2483,-1,3121,3119,3122,-1,3120,3127,3124,-1,3120,736,3127,-1,3140,713,3142,-1,3140,711,713,-1,2011,735,3576,-1,723,735,2011,-1,719,733,717,-1,733,719,732,-1,2010,727,726,-1,2010,3139,727,-1,2738,3141,725,-1,2738,3143,3141,-1,735,705,2028,-1,734,705,735,-1,717,721,2739,-1,722,721,717,-1,3561,3130,3135,-1,3561,3128,3130,-1,3125,1987,1986,-1,3125,3132,1987,-1,3131,2484,3574,-1,2484,3131,3128,-1,3577,3126,3134,-1,3577,3124,3126,-1,3136,3121,3123,-1,3136,3578,3121,-1,2005,3575,2003,-1,3575,2005,3146,-1,750,718,2739,-1,750,749,718,-1,3159,712,1993,-1,712,3159,2740,-1,2732,701,702,-1,2732,2485,701,-1,697,3157,2486,-1,697,696,3157,-1,2850,2777,2428,-1,2777,2850,2849,-1,693,640,690,-1,693,2476,640,-1,687,690,683,-1,687,693,690,-1,2037,2742,3579,-1,2742,2037,686,-1,679,3579,2742,-1,679,2041,3579,-1,676,3111,673,-1,3111,676,678,-1,666,673,3111,-1,666,669,673,-1,639,665,637,-1,2044,665,639,-1,649,656,2477,-1,649,660,656,-1,654,3580,652,-1,3580,654,2056,-1,652,2051,2050,-1,2051,652,3580,-1,646,2053,650,-1,641,2053,646,-1,2048,640,642,-1,3107,640,2048,-1,682,624,628,-1,682,625,624,-1,2042,616,638,-1,617,616,2042,-1,2907,3106,633,-1,3106,2907,3581,-1,626,2746,627,-1,626,2904,2746,-1,2936,2894,3582,-1,2894,2936,3104,-1,2074,3102,3085,-1,3102,2074,2470,-1,3100,3085,3102,-1,3100,3583,3085,-1,3098,3583,3100,-1,3098,3584,3583,-1,3087,3098,3095,-1,3087,3584,3098,-1,3089,2076,598,-1,2076,3089,2066,-1,3093,3585,3586,-1,3093,3587,3585,-1,3588,2071,2877,-1,609,2071,3588,-1,593,2468,2075,-1,593,601,2468,-1,3587,3091,614,-1,3587,3090,3091,-1,3089,3584,3087,-1,3584,3089,3589,-1,601,595,602,-1,601,593,595,-1,352,2069,592,-1,351,2069,352,-1,2098,3078,562,-1,2098,3080,3078,-1,586,2100,3590,-1,2100,586,589,-1,3079,3080,3075,-1,3080,3079,3078,-1,2081,3590,2079,-1,3590,2081,586,-1,3591,3075,3070,-1,3075,3591,3079,-1,2749,3591,3070,-1,2749,3069,3591,-1,2086,3060,3056,-1,2086,2465,3060,-1,2751,580,581,-1,2750,580,2751,-1,3592,581,580,-1,3592,573,581,-1,2091,2105,2102,-1,2090,2105,2091,-1,2102,3055,2462,-1,2105,3055,2102,-1,2464,566,567,-1,2093,566,2464,-1,556,3055,548,-1,3055,556,2462,-1,342,565,564,-1,342,2096,565,-1,568,559,2463,-1,2095,559,568,-1,3083,546,3593,-1,3083,2754,546,-1,2091,3594,2088,-1,3062,3594,2091,-1,3061,3595,3059,-1,3061,3076,3595,-1,3054,548,3055,-1,548,3054,549,-1,317,607,344,-1,607,317,2755,-1,1548,2460,1546,-1,1548,3596,2460,-1,2985,3053,3050,-1,3053,2985,3597,-1,3042,3048,3047,-1,3048,3042,2989,-1,3044,3039,3052,-1,3044,3043,3039,-1,3038,2984,3041,-1,3038,2980,2984,-1,3036,3033,3045,-1,3036,3035,3033,-1,3040,3032,3028,-1,3030,3032,3040,-1,3029,2978,3027,-1,3029,3598,2978,-1,3031,3024,3021,-1,3022,3024,3031,-1,3026,3020,3016,-1,3018,3020,3026,-1,3017,3599,3015,-1,3017,2983,3599,-1,3011,3019,3012,-1,3011,3009,3019,-1,3014,3008,3004,-1,3006,3008,3014,-1,3005,2982,3003,-1,3005,2760,2982,-1,3007,2758,2999,-1,3001,2758,3007,-1,2996,2993,3002,-1,2996,2998,2993,-1,3600,2995,2992,-1,2995,3600,533,-1,2997,2991,2986,-1,2757,2991,2997,-1,2988,3051,2994,-1,2988,2987,3051,-1,2990,3049,3046,-1,2990,3034,3049,-1,2759,3034,2990,-1,2759,3037,3034,-1,2756,3037,2759,-1,2756,3025,3037,-1,3000,3025,2756,-1,3000,3023,3025,-1,3013,3023,3000,-1,3013,3010,3023,-1,518,533,3600,-1,518,517,533,-1,2983,2976,3599,-1,2974,2976,2983,-1,2980,2975,2984,-1,2979,2975,2980,-1,524,522,536,-1,523,522,524,-1,532,519,521,-1,532,517,519,-1,2761,2975,2979,-1,2107,2975,2761,-1,9,8,2379,-1,9,2762,8,-1,494,2620,495,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=20 */
		private int[] getethmoid_Geo_5_109_coordIndex_20()
		{
			int[] value = {3448,2620,494,-1,509,511,2763,-1,511,509,3433,-1,2972,2764,485,-1,1486,2764,2972,-1,2121,2969,2973,-1,2121,2963,2969,-1,2971,482,2113,-1,2971,2765,482,-1,1477,2970,2616,-1,2970,1477,1480,-1,2878,3586,2968,-1,2878,3093,3586,-1,2964,2765,2963,-1,2964,481,2765,-1,481,470,477,-1,470,481,2766,-1,473,486,474,-1,2962,486,473,-1,2454,484,483,-1,472,484,2454,-1,476,2126,475,-1,476,469,2126,-1,2958,2961,2956,-1,2960,2961,2958,-1,2958,467,466,-1,2958,2957,467,-1,468,2138,469,-1,2138,468,2136,-1,2954,2132,2959,-1,2954,2130,2132,-1,460,2955,2767,-1,2955,460,2135,-1,3601,451,450,-1,3601,2952,451,-1,2943,456,2142,-1,2943,2951,456,-1,2140,2946,2949,-1,2140,2768,2946,-1,3602,356,394,-1,356,3602,354,-1,419,2446,2449,-1,419,2162,2446,-1,2168,2159,428,-1,2159,2168,416,-1,2161,426,425,-1,426,2161,2166,-1,2942,2947,2167,-1,2947,2942,3603,-1,2950,414,430,-1,2950,415,414,-1,421,2945,2953,-1,421,420,2945,-1,2948,2942,2941,-1,3604,2942,2948,-1,415,2161,432,-1,415,2165,2161,-1,437,2152,2148,-1,2157,2152,437,-1,2152,2922,2177,-1,2152,3605,2922,-1,2177,2153,2152,-1,2176,2153,2177,-1,411,2939,3606,-1,411,2170,2939,-1,3582,409,2936,-1,405,409,3582,-1,2940,2924,2938,-1,2940,403,2924,-1,405,407,409,-1,2772,407,405,-1,2934,403,2940,-1,2934,401,403,-1,2771,399,410,-1,2171,399,2771,-1,3607,2773,2932,-1,3607,404,2773,-1,2931,2442,2921,-1,2931,2935,2442,-1,397,3608,395,-1,2929,3608,397,-1,441,396,2180,-1,396,441,3609,-1,2926,2938,2924,-1,2888,2938,2926,-1,2182,3610,2920,-1,2182,2441,3610,-1,2440,2235,2065,-1,2235,2440,2919,-1,2784,2429,2428,-1,2784,2783,2429,-1,2232,390,2230,-1,392,390,2232,-1,2850,2186,2185,-1,358,2186,2850,-1,3611,388,391,-1,3611,2897,388,-1,2913,385,2886,-1,389,385,2913,-1,252,2912,2188,-1,252,251,2912,-1,250,253,249,-1,2218,253,250,-1,2915,3612,2916,-1,3612,2915,3613,-1,360,2197,254,-1,2228,2197,360,-1,3614,3615,3616,-1,3614,3617,3615,-1,3618,3617,3614,-1,3618,3619,3617,-1,3613,3619,3618,-1,3613,3620,3619,-1,2915,3620,3613,-1,3620,2915,2917,-1,2883,2232,2231,-1,2883,2225,2232,-1,2782,2231,357,-1,2782,2883,2231,-1,2879,2228,360,-1,2879,3621,2228,-1,3581,2201,2203,-1,2907,2201,3581,-1,2206,2746,2904,-1,2206,2208,2746,-1,2780,2062,2781,-1,2062,2780,2473,-1,2212,2202,2199,-1,2212,376,2202,-1,2207,370,2216,-1,2204,370,2207,-1,2215,2210,2902,-1,2210,2215,2781,-1,372,2902,373,-1,2882,2902,372,-1,3622,3623,2908,-1,3623,3622,3624,-1,3625,2893,2900,-1,3625,3626,2893,-1,2895,2897,3611,-1,2897,2895,2887,-1,2896,3624,3627,-1,2896,2895,3624,-1,2893,2925,2891,-1,2925,2893,3626,-1,365,245,244,-1,3628,245,365,-1,384,162,2271,-1,384,2189,162,-1,2187,188,2801,-1,188,2187,2886,-1,2776,355,2884,-1,2776,2918,355,-1,3629,371,2880,-1,369,371,3629,-1,2878,2965,2877,-1,2878,2968,2965,-1,2238,609,3588,-1,609,2238,2472,-1,2247,3590,2248,-1,2079,3590,2247,-1,2242,2080,2243,-1,2242,2082,2080,-1,336,331,333,-1,335,331,336,-1,302,2421,338,-1,302,326,2421,-1,300,325,324,-1,300,2244,325,-1,2245,319,321,-1,2787,319,2245,-1,2788,314,312,-1,2788,305,314,-1,2249,307,2252,-1,307,2249,308,-1,2755,2876,2251,-1,2876,2755,2875,-1,2250,2873,2420,-1,2874,2873,2250,-1,304,2787,308,-1,304,319,2787,-1,326,301,2873,-1,301,326,302,-1,307,299,298,-1,307,309,299,-1,2378,2869,2375,-1,2869,2378,3630,-1,2789,2857,286,-1,2857,2789,3631,-1,158,216,218,-1,160,216,158,-1,281,2318,282,-1,281,1147,2318,-1,22,185,2409,-1,22,21,185,-1,2360,3632,2832,-1,2360,272,3632,-1,2813,2868,55,-1,2813,2852,2868,-1,2577,277,297,-1,2577,278,277,-1,2859,2315,2402,-1,2285,2315,2859,-1,2867,2840,2839,-1,2867,2853,2840,-1,2871,184,183,-1,184,2871,123,-1,2860,2845,2844,-1,2860,2419,2845,-1,2217,2190,2218,-1,2217,2191,2190,-1,2431,2220,2219,-1,2431,222,2220,-1,230,2846,2320,-1,2861,2846,230,-1,2273,231,2282,-1,2273,232,231,-1,2856,170,2275,-1,2856,2316,170,-1,2858,2795,2274,-1,220,2795,2858,-1,2866,2796,2865,-1,236,2796,2866,-1,2863,2414,2862,-1,2863,3501,2414,-1,2796,235,1764,-1,233,235,2796,-1,197,2288,198,-1,2289,2288,197,-1,229,2861,230,-1,229,2287,2861,-1,226,222,227,-1,223,222,226,-1,248,2219,2221,-1,248,247,2219,-1,215,218,216,-1,215,219,218,-1,286,236,2866,-1,236,286,2857,-1,210,2280,2281,-1,209,2280,210,-1,202,2411,2279,-1,201,2411,202,-1,2848,242,3633,-1,2855,242,2848,-1,169,2317,2275,-1,169,2400,2317,-1,2791,2844,267,-1,2791,2860,2844,-1,385,2271,2415,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=21 */
		private int[] getethmoid_Geo_5_109_coordIndex_21()
		{
			int[] value = {384,2271,385,-1,93,2854,3634,-1,93,2418,2854,-1,103,118,189,-1,103,2395,118,-1,2303,153,149,-1,153,2303,2311,-1,2798,2305,140,-1,2798,169,2305,-1,2790,155,170,-1,156,155,2790,-1,2408,154,146,-1,2407,154,2408,-1,290,3631,144,-1,290,2857,3631,-1,2291,2799,2292,-1,2291,2800,2799,-1,199,2847,203,-1,199,3635,2847,-1,2403,139,141,-1,367,139,2403,-1,2301,2222,2312,-1,2301,138,2222,-1,2846,3636,2841,-1,3636,2846,268,-1,2811,2845,2803,-1,2845,2811,2326,-1,92,165,85,-1,165,92,88,-1,2397,120,2396,-1,121,120,2397,-1,101,2397,280,-1,101,2325,2397,-1,2842,2323,2843,-1,2324,2323,2842,-1,100,102,2842,-1,102,100,2395,-1,2326,105,2327,-1,2326,2811,105,-1,2331,98,111,-1,2330,98,2331,-1,95,2840,2417,-1,95,2319,2840,-1,2831,59,2822,-1,2831,23,59,-1,2344,2830,2345,-1,2830,2344,2368,-1,2353,2338,2362,-1,2339,2338,2353,-1,65,2819,3637,-1,67,2819,65,-1,2837,2836,3637,-1,2837,3638,2836,-1,2824,3638,3639,-1,2824,2836,3638,-1,3640,2833,2832,-1,3640,2827,2833,-1,2353,2831,2354,-1,2353,2382,2831,-1,2812,68,2392,-1,2812,71,68,-1,2816,2351,47,-1,2384,2351,2816,-1,26,2358,52,-1,2359,2358,26,-1,2826,57,2835,-1,2826,2825,57,-1,2823,2361,3641,-1,2823,58,2361,-1,2821,0,3642,-1,2821,2377,0,-1,2819,2383,2333,-1,2819,2818,2383,-1,46,2819,67,-1,2819,46,2374,-1,2827,3639,2833,-1,2824,3639,2827,-1,53,2834,56,-1,2357,2834,53,-1,2815,28,27,-1,2815,2838,28,-1,2369,2348,3643,-1,2369,2337,2348,-1,24,52,2814,-1,24,26,52,-1,2338,35,2364,-1,2369,35,2338,-1,56,54,53,-1,54,56,55,-1,2825,2813,57,-1,2813,2825,2872,-1,2357,2391,2834,-1,2391,2357,2343,-1,2835,66,2826,-1,66,2835,63,-1,2389,3638,2837,-1,2389,77,3638,-1,1391,1394,115,-1,1394,1391,1395,-1,2841,2802,2839,-1,2841,3636,2802,-1,96,2809,436,-1,2154,2809,96,-1,2324,2327,105,-1,2327,2324,104,-1,108,2810,107,-1,108,2808,2810,-1,112,2843,2323,-1,112,2322,2843,-1,110,119,98,-1,110,109,119,-1,2406,106,2394,-1,106,2406,178,-1,2328,267,2844,-1,267,2328,3644,-1,2318,129,246,-1,129,2318,127,-1,2806,2312,2805,-1,161,2312,2806,-1,137,2804,2310,-1,136,2804,137,-1,140,2413,2798,-1,2286,2413,140,-1,201,3633,2411,-1,201,2848,3633,-1,123,145,130,-1,145,123,2789,-1,152,149,153,-1,150,149,152,-1,2794,158,285,-1,2794,2807,158,-1,162,2806,2306,-1,162,161,2806,-1,2307,2405,2404,-1,175,2405,2307,-1,2851,3645,2849,-1,3645,2851,3646,-1,2852,2867,2868,-1,2852,2853,2867,-1,125,270,2321,-1,271,270,125,-1,188,151,150,-1,151,188,2415,-1,192,2408,193,-1,192,383,2408,-1,2401,239,2800,-1,240,239,2401,-1,2856,3635,241,-1,2856,2847,3635,-1,213,290,214,-1,213,237,290,-1,220,2859,284,-1,220,2858,2859,-1,171,224,172,-1,224,171,2797,-1,2791,208,207,-1,269,208,2791,-1,1219,2864,2865,-1,1219,1221,2864,-1,2795,3500,1218,-1,238,3500,2795,-1,234,237,213,-1,234,233,237,-1,2399,2864,2862,-1,2398,2864,2399,-1,131,287,217,-1,131,145,287,-1,2320,228,230,-1,2320,126,228,-1,268,2861,269,-1,268,2846,2861,-1,250,223,226,-1,191,223,250,-1,3,3630,2378,-1,3630,3,3647,-1,383,152,2407,-1,383,2801,152,-1,18,2410,19,-1,18,2263,2410,-1,143,187,186,-1,187,143,142,-1,3632,2321,270,-1,3632,272,2321,-1,2286,134,2413,-1,134,2286,368,-1,2814,190,117,-1,2814,54,190,-1,3640,2854,2872,-1,3640,3634,2854,-1,2385,182,273,-1,2385,60,182,-1,2255,2263,18,-1,2255,2258,2263,-1,2402,284,2859,-1,285,284,2402,-1,120,15,2396,-1,15,120,16,-1,2871,144,3631,-1,2871,142,144,-1,288,127,1147,-1,288,128,127,-1,323,2874,2876,-1,2874,323,327,-1,2788,306,305,-1,2788,303,306,-1,300,2875,316,-1,300,324,2875,-1,318,298,316,-1,318,2786,298,-1,2420,301,311,-1,2873,301,2420,-1,337,306,303,-1,306,337,320,-1,309,322,299,-1,309,2423,322,-1,327,2422,328,-1,327,323,2422,-1,340,320,337,-1,340,329,320,-1,325,2247,2422,-1,2243,2247,325,-1,2424,350,349,-1,2424,2425,350,-1,2424,3588,2236,-1,2238,3588,2424,-1,347,2425,2236,-1,346,2425,347,-1,2881,3621,2879,-1,2881,2433,3621,-1,363,2883,2782,-1,363,2882,2883,-1,2885,247,2792,-1,2885,2219,247,-1,2884,3628,2885,-1,245,3628,2884,-1,382,227,365,-1,227,382,225,-1,252,2801,383,-1,2187,2801,252,-1,2889,2926,3648,-1,2888,2926,2889,-1,2894,3649,2892,-1,2894,3104,3649,-1,3627,3622,3105,-1,3627,3624,3622,-1,2898,3648,3650,-1,2898,2889,3648,-1,2909,2892,3649,-1,2909,2899,2892,-1,371,2901,2881,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=22 */
		private int[] getethmoid_Geo_5_109_coordIndex_22()
		{
			int[] value = {371,370,2901,-1,373,2436,2432,-1,2436,373,2435,-1,379,2434,2901,-1,378,2434,379,-1,2213,2780,2214,-1,2780,2213,2437,-1,2209,2903,2747,-1,2209,2211,2903,-1,380,2905,3651,-1,380,2205,2905,-1,2745,2200,2906,-1,2745,2198,2200,-1,2783,2430,2429,-1,2226,2430,2783,-1,2785,3629,2427,-1,2224,3629,2785,-1,3621,2229,2228,-1,3621,2227,2229,-1,2416,2426,2438,-1,2416,2183,2426,-1,2784,2196,2195,-1,2784,2778,2196,-1,3613,2911,3612,-1,2911,3613,3618,-1,256,225,382,-1,256,255,225,-1,2911,3614,2910,-1,2911,3618,3614,-1,2910,3616,2912,-1,2910,3614,3616,-1,2779,3650,313,-1,2898,3650,2779,-1,2897,2779,388,-1,2897,2898,2779,-1,2439,2851,386,-1,2851,2439,3646,-1,2230,389,2913,-1,390,389,2230,-1,3623,391,2184,-1,3623,3611,391,-1,3645,2917,2914,-1,3645,3620,2917,-1,2777,2916,2778,-1,2777,2914,2916,-1,2920,3652,2919,-1,3652,2920,3653,-1,605,3654,3610,-1,3654,605,604,-1,2775,2921,2922,-1,2921,2775,2930,-1,3655,2925,2927,-1,2925,3655,2891,-1,2890,3606,2939,-1,2896,3606,2890,-1,2774,2933,398,-1,2933,2774,2175,-1,2178,2932,2930,-1,3607,2932,2178,-1,2935,401,2934,-1,2935,2931,401,-1,2772,2929,407,-1,3608,2929,2772,-1,398,2444,2169,-1,398,2933,2444,-1,404,402,2773,-1,404,406,402,-1,412,2771,410,-1,2771,412,408,-1,406,2927,402,-1,406,3655,2927,-1,3656,408,412,-1,408,3656,2937,-1,2775,3605,442,-1,2775,2922,3605,-1,2443,2928,2151,-1,2443,2174,2928,-1,442,1647,443,-1,1647,442,429,-1,2944,419,2449,-1,2944,420,419,-1,2160,414,413,-1,418,414,2160,-1,421,424,2770,-1,421,422,424,-1,2951,2944,2165,-1,2943,2944,2951,-1,417,2768,418,-1,2768,417,2946,-1,2952,3604,422,-1,3601,3604,2952,-1,419,2163,2162,-1,419,2770,2163,-1,427,2168,428,-1,2941,2168,427,-1,434,2769,435,-1,2769,434,2163,-1,86,2164,425,-1,2164,86,444,-1,2151,2148,2152,-1,2151,2149,2148,-1,968,1387,449,-1,968,1173,1387,-1,2147,3603,2145,-1,2147,2947,3603,-1,2144,430,2139,-1,2144,2950,430,-1,2953,2141,453,-1,2953,2945,2141,-1,2141,454,453,-1,454,2141,2131,-1,2957,2133,467,-1,2957,2452,2133,-1,464,2124,2126,-1,2124,464,2129,-1,2767,2766,2123,-1,2766,2767,2955,-1,3657,2959,2956,-1,3657,2954,2959,-1,2955,470,2766,-1,470,2955,468,-1,473,3657,2962,-1,473,2125,3657,-1,471,2964,2456,-1,2453,2964,471,-1,2961,3658,2120,-1,2960,3658,2961,-1,2455,475,478,-1,475,2455,476,-1,479,474,503,-1,478,474,479,-1,2764,3658,483,-1,3658,2764,3659,-1,2968,3096,2966,-1,2968,3586,3096,-1,3467,1511,2614,-1,3467,493,1511,-1,510,504,502,-1,504,510,505,-1,2963,2971,2969,-1,2963,2765,2971,-1,485,2973,2972,-1,485,2121,2973,-1,3659,508,2457,-1,508,3659,2643,-1,507,505,510,-1,505,507,2763,-1,489,3373,491,-1,489,1830,3373,-1,3467,1603,493,-1,1603,3467,1514,-1,526,2974,524,-1,526,2976,2974,-1,528,2977,527,-1,528,2981,2977,-1,1562,528,515,-1,1562,2761,528,-1,3598,2981,2978,-1,2977,2981,3598,-1,532,2982,2760,-1,532,2112,2982,-1,2111,3597,2985,-1,2111,2458,3597,-1,2991,2989,2986,-1,2991,3048,2989,-1,3597,2992,3053,-1,2992,3597,3600,-1,2998,2994,2993,-1,2998,2988,2994,-1,2758,2997,2999,-1,2758,2757,2997,-1,533,3005,2995,-1,3005,533,2760,-1,3004,2996,3002,-1,3008,2996,3004,-1,3009,3001,3007,-1,3011,3001,3009,-1,3003,2983,3017,-1,3003,2982,2983,-1,3006,3016,3020,-1,3006,3014,3016,-1,3021,3012,3019,-1,3024,3012,3021,-1,3015,3598,3029,-1,3015,3599,3598,-1,3028,3018,3026,-1,3032,3018,3028,-1,3033,3022,3031,-1,3035,3022,3033,-1,3027,2980,3038,-1,3027,2978,2980,-1,3043,3040,3039,-1,3043,3030,3040,-1,3047,3045,3042,-1,3047,3036,3045,-1,2984,3050,3041,-1,3050,2984,2985,-1,3052,2987,3044,-1,2987,3052,3051,-1,540,972,541,-1,972,540,1329,-1,535,542,531,-1,1302,542,535,-1,3056,3660,3057,-1,3056,3661,3660,-1,3662,3060,2465,-1,3662,3058,3060,-1,556,557,554,-1,557,556,547,-1,2753,561,563,-1,2753,2097,561,-1,563,569,2753,-1,569,563,3066,-1,332,564,2094,-1,332,342,564,-1,570,3066,2752,-1,570,569,3066,-1,570,573,3592,-1,570,2752,573,-1,579,576,2092,-1,2089,576,579,-1,336,2085,2466,-1,336,574,2085,-1,3069,2750,2751,-1,2749,2750,3069,-1,3071,583,2467,-1,584,583,3071,-1,3661,3060,3059,-1,3661,3056,3060,-1,587,3071,3074,-1,587,584,3071,-1,2103,3059,3595,-1,2103,3661,3059,-1,588,3074,3081,-1,588,587,3074,-1,3595,551,2103,-1,551,3595,3593,-1,558,3081,2099,-1,558,588,3081,-1,3593,2104,551,-1,2104,3593,546,-1,3653,604,590,-1,3654,604,3653,-1,603,611,2748,-1,611,603,599,-1,3086,3583,3663,-1,3085,3583,3086,-1,3585,2066,3088,-1,3585,613,2066,-1,597,603,595,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=23 */
		private int[] getethmoid_Geo_5_109_coordIndex_23()
		{
			int[] value = {603,600,599,-1,597,600,603,-1,2073,3092,2471,-1,2073,3090,3092,-1,3092,3587,3093,-1,3092,3090,3587,-1,2967,3097,3664,-1,2967,2966,3097,-1,3664,3099,2117,-1,3664,3097,3099,-1,501,3099,3101,-1,2117,3099,501,-1,2116,3101,3103,-1,501,3101,2116,-1,498,3103,2469,-1,2116,3103,498,-1,3105,3656,3627,-1,3105,2937,3656,-1,627,2903,2058,-1,627,2747,2903,-1,3651,2059,2060,-1,2059,3651,2905,-1,2745,631,630,-1,631,2745,2906,-1,629,637,672,-1,629,2744,637,-1,3106,617,2042,-1,617,3106,2060,-1,2051,2056,636,-1,3580,2056,2051,-1,643,3665,2033,-1,643,647,3665,-1,647,651,3665,-1,647,2743,651,-1,2743,658,651,-1,2743,2045,658,-1,2043,655,657,-1,653,655,2043,-1,660,666,656,-1,660,669,666,-1,664,3110,672,-1,664,667,3110,-1,668,3109,674,-1,668,671,3109,-1,621,672,3110,-1,672,621,2474,-1,675,3109,2038,-1,674,3109,675,-1,680,621,678,-1,621,680,622,-1,622,685,681,-1,622,680,685,-1,2039,3666,2040,-1,2039,3667,3666,-1,681,687,683,-1,681,685,687,-1,3667,2035,3666,-1,3667,2036,2035,-1,691,2475,694,-1,691,3107,2475,-1,2034,644,643,-1,2034,2479,644,-1,3116,3113,3114,-1,3112,3113,3116,-1,700,2741,698,-1,700,699,2741,-1,3117,703,3115,-1,3117,704,703,-1,2013,2488,715,-1,2013,3118,2488,-1,2483,2006,2021,-1,3119,2006,2483,-1,3120,709,2009,-1,710,709,3120,-1,2015,3122,3145,-1,2014,3122,2015,-1,3127,3132,3125,-1,3127,3144,3132,-1,3574,2019,3668,-1,2019,3574,2484,-1,3134,3569,3133,-1,3134,3126,3569,-1,3136,3565,3137,-1,3136,3123,3565,-1,712,716,715,-1,716,712,711,-1,2481,720,3576,-1,2481,2480,720,-1,2740,3138,713,-1,2740,2026,3138,-1,3142,2003,3140,-1,2004,2003,3142,-1,732,729,733,-1,732,728,729,-1,731,720,722,-1,2012,720,731,-1,725,3138,734,-1,3141,3138,725,-1,3139,2737,727,-1,2737,3139,3669,-1,2024,2738,2025,-1,2024,3143,2738,-1,3669,3144,2737,-1,3144,3669,3668,-1,2022,3577,3145,-1,2022,710,3577,-1,3129,2482,3578,-1,3129,2023,2482,-1,3670,3147,3148,-1,3670,3155,3147,-1,787,3156,3556,-1,787,738,3156,-1,3205,3152,2001,-1,3153,3152,3205,-1,3670,2726,2648,-1,3670,3148,2726,-1,3147,3117,3114,-1,3155,3117,3147,-1,3157,738,737,-1,738,3157,3156,-1,3112,3158,1995,-1,3112,3116,3158,-1,747,701,748,-1,747,702,701,-1,2027,3158,3573,-1,2027,3159,3158,-1,777,3557,3160,-1,3671,3557,777,-1,3164,3672,3673,-1,3672,3164,3163,-1,762,3674,3166,-1,2731,3674,762,-1,2490,3675,2489,-1,3675,2490,3676,-1,2490,1992,1985,-1,1992,2490,757,-1,3180,3558,3168,-1,3558,3180,3177,-1,3168,3183,3180,-1,3168,3166,3183,-1,3191,2489,3675,-1,3191,3184,2489,-1,3166,3187,3183,-1,3166,3674,3187,-1,3677,3191,3188,-1,3191,3677,3184,-1,3674,3678,3187,-1,3674,3572,3678,-1,3193,3677,3188,-1,3193,3679,3677,-1,3162,3678,3572,-1,3162,763,3678,-1,3196,3679,3193,-1,3196,3198,3679,-1,3164,763,3162,-1,3164,764,763,-1,768,3198,3196,-1,768,2491,3198,-1,3673,764,3164,-1,3673,2729,764,-1,3559,2729,3673,-1,3559,769,2729,-1,1988,1990,770,-1,1988,772,1990,-1,751,2018,2728,-1,751,1987,2018,-1,3202,3161,3160,-1,3161,3202,3560,-1,3680,1989,3203,-1,1989,3680,775,-1,3569,779,759,-1,779,3569,1986,-1,3568,3203,3179,-1,3203,3568,3680,-1,781,3153,3205,-1,781,2492,3153,-1,3670,2493,2735,-1,3670,2648,2493,-1,3153,1168,3151,-1,3153,2492,1168,-1,3208,3209,3207,-1,3208,3210,3209,-1,3213,3510,3509,-1,3213,3552,3510,-1,2721,2724,804,-1,2721,3211,2724,-1,813,1091,1093,-1,812,1091,813,-1,2720,819,3214,-1,2720,1972,819,-1,803,2500,2499,-1,803,807,2500,-1,819,1974,820,-1,819,1972,1974,-1,3216,1976,1975,-1,1976,3216,822,-1,3215,827,1970,-1,3215,2719,827,-1,2717,823,831,-1,825,823,2717,-1,1973,836,1974,-1,1973,837,836,-1,828,856,829,-1,828,836,856,-1,860,840,848,-1,860,841,840,-1,852,1962,842,-1,851,1962,852,-1,2510,861,2508,-1,2510,1964,861,-1,3220,3218,1958,-1,3681,3218,3220,-1,2508,3682,2509,-1,3682,2508,3221,-1,866,3224,3683,-1,866,1954,3224,-1,3272,3220,3225,-1,3272,3681,3220,-1,3231,3684,3229,-1,3231,3685,3684,-1,3234,3686,3687,-1,3233,3686,3234,-1,3688,3689,3690,-1,3691,3689,3688,-1,3691,3692,3689,-1,3693,3692,3691,-1,3693,3694,3692,-1,3695,3694,3693,-1,3695,3696,3694,-1,3697,3696,3695,-1,3697,3698,3696,-1,3697,3699,3698,-1,3275,3232,3244,-1,3232,3275,3546,-1,3240,3699,3238,-1,3699,3240,3698,-1,3234,3244,3232,-1,3234,3242,3244,-1,3699,3246,3238,-1,3697,3246,3699,-1,3687,3242,3234,-1,3687,3248,3242,-1,3697,3251,3246,-1,3695,3251,3697,-1,3547,3248,3687,-1,3547,3252,3248,-1,3251,3693,3254,-1,3693,3251,3695,-1,3230,3252,3547,-1,3230,3257,3252,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=24 */
		private int[] getethmoid_Geo_5_109_coordIndex_24()
		{
			int[] value = {3254,3691,3258,-1,3691,3254,3693,-1,3261,3230,3229,-1,3261,3257,3230,-1,3258,3688,3262,-1,3688,3258,3691,-1,3265,3229,3684,-1,3265,3261,3229,-1,3262,3690,3266,-1,3690,3262,3688,-1,3268,3684,873,-1,3268,3265,3684,-1,3690,3269,3266,-1,3689,3269,3690,-1,3689,3700,3269,-1,3692,3700,3689,-1,872,2712,3270,-1,3271,2712,872,-1,3692,3274,3700,-1,3694,3274,3692,-1,3274,3696,3273,-1,3696,3274,3694,-1,3546,874,3533,-1,3546,3275,874,-1,3273,3698,3240,-1,3698,3273,3696,-1,3278,3284,3701,-1,3278,3277,3284,-1,905,3281,1919,-1,905,882,3281,-1,2517,881,1930,-1,2517,882,881,-1,3283,3279,3529,-1,3283,3277,3279,-1,892,3286,2710,-1,892,891,3286,-1,3702,3290,3287,-1,3304,3290,3702,-1,3304,3703,3290,-1,3302,3703,3304,-1,3302,3704,3703,-1,3303,3704,3302,-1,3303,3295,3704,-1,3299,3295,3303,-1,3299,3294,3295,-1,3299,3300,3294,-1,3290,3530,3288,-1,3530,3290,3703,-1,3280,1932,3458,-1,3280,2517,1932,-1,3280,3459,3531,-1,3280,3458,3459,-1,1551,3531,3459,-1,3529,3531,1551,-1,1924,2711,2710,-1,1924,2518,2711,-1,890,2520,888,-1,890,891,2520,-1,894,3283,895,-1,3282,3283,894,-1,1575,2709,3301,-1,1556,2709,1575,-1,2522,3305,1921,-1,2522,1923,3305,-1,3304,3527,3305,-1,3527,3304,3702,-1,880,1940,884,-1,880,951,1940,-1,3278,1890,1892,-1,3701,1890,3278,-1,1979,907,1914,-1,3210,907,1979,-1,3705,1981,3308,-1,1981,3705,3555,-1,3705,3311,3316,-1,3705,3308,3311,-1,908,3526,3314,-1,908,909,3526,-1,3312,1907,3313,-1,914,1907,3312,-1,2524,1904,915,-1,1904,2524,906,-1,3316,1905,1902,-1,1905,3316,3311,-1,3319,3337,3317,-1,3340,3319,3513,-1,3340,3337,3319,-1,939,915,1904,-1,939,916,915,-1,3323,921,938,-1,3323,922,921,-1,1557,925,3522,-1,926,925,1557,-1,911,3322,3523,-1,911,1909,3322,-1,3330,3321,3511,-1,3330,3320,3321,-1,961,930,962,-1,961,3333,930,-1,933,3331,3329,-1,933,1908,3331,-1,3326,2531,3333,-1,3326,3706,2531,-1,933,1909,934,-1,933,3324,1909,-1,910,1909,911,-1,1910,1909,910,-1,3517,920,942,-1,920,3517,2527,-1,943,3462,1564,-1,1897,3462,943,-1,3518,3335,2526,-1,3518,3325,3335,-1,3325,947,3335,-1,3325,2530,947,-1,2530,948,947,-1,2530,949,948,-1,3707,948,950,-1,948,3707,2706,-1,3339,3707,3512,-1,3707,3339,3338,-1,1891,1941,953,-1,1891,879,1941,-1,1891,877,879,-1,877,1891,1918,-1,958,2529,2704,-1,1900,2529,958,-1,2495,789,788,-1,3554,789,2495,-1,1983,1984,791,-1,3207,1984,1983,-1,796,793,1641,-1,793,796,795,-1,814,1977,812,-1,1977,814,811,-1,1767,3212,2722,-1,3212,1767,3211,-1,2497,3510,3342,-1,2497,815,3510,-1,968,817,816,-1,817,968,2450,-1,2567,1829,1088,-1,1829,2567,2679,-1,3708,2549,2613,-1,3708,3343,2549,-1,984,2550,3393,-1,984,981,2550,-1,990,1873,1050,-1,1873,990,989,-1,2552,2701,996,-1,2701,2552,2702,-1,3394,2545,3346,-1,2545,3394,1033,-1,1726,2566,1727,-1,2566,1726,1268,-1,1773,3349,1855,-1,3349,1773,1871,-1,2587,1828,1827,-1,2587,3493,1828,-1,1753,1827,2681,-1,1753,2587,1827,-1,1832,1008,3481,-1,1832,1006,1008,-1,2599,1866,1865,-1,3709,1866,2599,-1,3351,3710,1665,-1,3710,3351,3350,-1,1011,1016,1012,-1,1011,1014,1016,-1,1718,1019,1018,-1,1019,1718,1717,-1,1837,3352,3711,-1,1836,3352,1837,-1,1271,1729,3370,-1,1271,1863,1729,-1,3357,3354,3355,-1,3353,3354,3357,-1,3364,3359,3358,-1,3359,3364,3712,-1,3395,2582,3360,-1,3395,1782,2582,-1,1782,1724,1159,-1,1782,3395,1724,-1,3395,2596,1724,-1,2596,3395,3346,-1,2671,2696,2670,-1,2696,2671,3362,-1,3393,3343,984,-1,1875,3343,3393,-1,1054,1652,2693,-1,1054,1053,1652,-1,2701,991,1055,-1,2702,991,2701,-1,2556,1843,2557,-1,1751,1843,2556,-1,1070,2691,2690,-1,1070,1069,2691,-1,2688,2560,1757,-1,2688,2687,2560,-1,3711,2685,2684,-1,3711,3352,2685,-1,1771,1859,2683,-1,1771,1862,1859,-1,3602,3498,445,-1,3390,3498,3602,-1,3357,1214,3366,-1,3356,1214,3357,-1,3391,2668,3368,-1,1648,2668,3391,-1,3498,3712,445,-1,3498,3359,3712,-1,1792,3386,3385,-1,1792,3371,3386,-1,1276,2546,1277,-1,1165,2546,1276,-1,2676,1165,1276,-1,1101,1165,2676,-1,1442,2493,1443,-1,2493,1442,1640,-1,2379,1404,3372,-1,2379,8,1404,-1,2674,1108,1107,-1,2674,3503,1108,-1,1288,1818,1114,-1,1817,1818,1288,-1,1111,2653,1822,-1,1111,1364,2653,-1,1399,1822,2653,-1,1399,1661,1822,-1,515,1684,516,-1,515,2108,1684,-1,1139,1776,1140,-1,1776,1139,1811,-1,1431,1422,1421,-1,1422,1431,1430,-1,2694,1807,1849,-1,2694,1047,1807,-1,1848,1873,989,-1,986,1873,1848,-1,2551,1422,1048,-1,2551,988,1422,-1,1058,3508,2553,-1,1058,3344,3508,-1,1251,3374,1253,-1,3713,3374,1251,-1,1808,3376,1311,-1,1810,3376,1808,-1,1708,1152,1290,-1,1708,2600,1152,-1,1158,2678,1157,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=25 */
		private int[] getethmoid_Geo_5_109_coordIndex_25()
		{
			int[] value = {3371,2678,1158,-1,3378,1132,1156,-1,1132,3378,2571,-1,1130,3379,3399,-1,1813,3379,1130,-1,3376,3714,1295,-1,3376,3375,3714,-1,2543,3505,3361,-1,1853,3505,2543,-1,1781,1102,1101,-1,1781,1780,1102,-1,1170,3383,3483,-1,3383,1170,1169,-1,3384,3380,3715,-1,3382,3380,3384,-1,3715,1846,2581,-1,3380,1846,3715,-1,1815,1094,1646,-1,1094,1815,3385,-1,1869,1852,2670,-1,1868,1852,1869,-1,1648,1177,2668,-1,1648,1178,1177,-1,1182,1145,2700,-1,1793,1145,1182,-1,1183,1077,1836,-1,1077,1183,1075,-1,1427,1826,1428,-1,1769,1826,1427,-1,1093,3414,2568,-1,1093,1768,3414,-1,816,2497,1191,-1,2497,816,815,-1,3387,1197,1196,-1,1197,3387,1763,-1,2559,1068,1064,-1,2559,1841,1068,-1,1230,1204,1203,-1,1204,1230,2589,-1,1870,1830,1004,-1,1870,3373,1830,-1,1080,1210,1078,-1,1833,1210,1080,-1,1060,234,212,-1,1060,2555,234,-1,1220,1063,1838,-1,1219,1063,1220,-1,1423,281,283,-1,281,1423,1148,-1,3507,2684,1835,-1,3507,3711,2684,-1,3367,3359,3498,-1,3367,2542,3359,-1,2565,1088,1090,-1,2565,2567,1088,-1,1069,1843,2691,-1,2557,1843,1069,-1,1750,1382,1383,-1,1750,2588,1382,-1,2561,1757,2586,-1,1757,2561,2688,-1,3387,1232,3497,-1,3387,1230,1232,-1,1238,3388,2590,-1,3388,1238,1745,-1,2591,1241,1650,-1,2591,1742,1241,-1,1743,1247,1424,-1,1247,1743,1249,-1,3496,1249,1743,-1,1250,1249,3496,-1,1246,3713,1251,-1,1246,3494,3713,-1,2536,1057,2673,-1,1057,2536,2537,-1,985,1671,1051,-1,1872,1671,985,-1,1222,1856,1223,-1,1222,1426,1856,-1,1001,1425,1179,-1,1001,1728,1425,-1,296,1673,293,-1,296,1672,1673,-1,1867,2539,2650,-1,1865,2539,1867,-1,2460,1717,1358,-1,2460,2598,1717,-1,1012,1541,1013,-1,1542,1541,1012,-1,1707,1784,1786,-1,1784,1707,1706,-1,1787,1702,1305,-1,1702,1787,2578,-1,1126,1156,1127,-1,1126,3378,1156,-1,1308,3398,1699,-1,1308,1296,3398,-1,1299,3714,3489,-1,1299,2663,3714,-1,1707,1710,1697,-1,3716,1710,1707,-1,1710,1323,1697,-1,1710,1703,1323,-1,3502,1305,3489,-1,1305,3502,1787,-1,1286,1709,1287,-1,1704,1709,1286,-1,1362,1293,534,-1,1361,1293,1362,-1,1333,539,1334,-1,539,1333,1330,-1,1696,3406,1697,-1,3406,1696,3486,-1,3404,2601,1326,-1,1695,2601,3404,-1,3405,1331,1330,-1,3400,1331,3405,-1,1697,3403,1306,-1,3403,1697,3406,-1,2658,3488,3407,-1,2658,3404,3488,-1,3405,1346,1686,-1,3405,3487,1346,-1,1356,1320,3412,-1,1355,1320,1356,-1,1359,1717,1716,-1,1359,1358,1717,-1,1683,1363,1362,-1,1363,1683,2657,-1,2655,3409,3408,-1,3409,2655,2654,-1,1356,1673,1357,-1,3410,1673,1356,-1,2653,3411,1399,-1,1366,3411,2653,-1,1401,1379,1371,-1,1379,1401,2652,-1,3396,1548,1023,-1,3396,3596,1548,-1,3717,1684,973,-1,1684,3717,1685,-1,1685,3710,3350,-1,1685,3717,3710,-1,3409,1351,1350,-1,3409,2656,1351,-1,3412,1319,2655,-1,1320,1319,3412,-1,2651,967,1669,-1,2651,1173,967,-1,1283,1713,1667,-1,1283,1714,1713,-1,1010,3503,1403,-1,3503,1010,1374,-1,1407,1409,1134,-1,2573,1409,1407,-1,1124,2572,1123,-1,1124,1136,2572,-1,1136,1124,1789,-1,1777,1057,1056,-1,1777,2673,1057,-1,1116,1823,1819,-1,1414,1823,1116,-1,1823,1187,1418,-1,1823,1414,1187,-1,1070,1765,1071,-1,1070,2558,1765,-1,1072,1067,1066,-1,1074,1067,1072,-1,1007,2683,1834,-1,1007,1006,2683,-1,1829,1087,512,-1,1829,1828,1087,-1,1438,2696,1851,-1,1438,1869,2696,-1,1778,1103,1824,-1,1104,1103,1778,-1,1459,2646,1490,-1,2647,2646,1459,-1,1455,3417,3480,-1,3415,3417,1455,-1,2647,1629,2646,-1,2647,3418,1629,-1,3417,3422,3718,-1,3416,3422,3417,-1,1463,3419,2645,-1,3419,1463,3418,-1,3427,3718,3422,-1,3427,3719,3718,-1,3477,3431,3720,-1,3719,3431,3477,-1,3719,3430,3431,-1,3427,3430,3719,-1,3720,1619,1618,-1,3431,1619,3720,-1,1476,1623,1624,-1,1623,1476,3432,-1,1478,1469,1479,-1,1478,1470,1469,-1,1482,1487,2118,-1,1487,1482,1484,-1,1619,2642,1485,-1,2642,1619,2640,-1,3433,2638,511,-1,3433,2639,2638,-1,3436,1451,3721,-1,1451,3436,1635,-1,1451,3435,3721,-1,1634,3435,1451,-1,3437,3721,3722,-1,3721,3437,3436,-1,1601,1497,1615,-1,1601,1516,1497,-1,1495,2632,1523,-1,1499,2632,1495,-1,3470,3722,3473,-1,3722,3470,3437,-1,2636,1525,2623,-1,3439,1525,2636,-1,3438,3442,3474,-1,3438,3439,3442,-1,3445,3442,3441,-1,3471,3442,3445,-1,3449,3443,3446,-1,3449,3445,3443,-1,1605,3449,3448,-1,1605,3472,3449,-1,2635,2634,3469,-1,2635,1508,2634,-1,1513,3468,3452,-1,1513,1512,3468,-1,2614,1513,1522,-1,2614,1511,1513,-1,3455,1515,1514,-1,1456,1515,3455,-1,1520,3453,3456,-1,1520,1522,3453,-1,3465,1520,1597,-1,3465,1521,1520,-1,2632,3454,1524,-1,2632,1457,3454,-1,1611,3464,1596,-1,2617,3464,1611,-1,1544,1530,1591,-1,1544,1531,1530,-1,1585,1548,2624,-1,1585,1587,1548,-1,1537,2631,1584,-1,1537,1542,2631,-1,1529,1570,1574,-1,1529,2627,1570,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=26 */
		private int[] getethmoid_Geo_5_109_coordIndex_26()
		{
			int[] value = {3292,1573,3291,-1,1573,3292,1533,-1,1528,897,2624,-1,1576,897,1528,-1,1897,3327,3462,-1,3327,1897,1896,-1,1563,2629,1558,-1,2629,1563,2628,-1,903,901,904,-1,903,902,901,-1,1558,1894,1559,-1,901,1894,1558,-1,1564,3461,2628,-1,3461,1564,3462,-1,930,936,931,-1,1899,936,930,-1,1576,1552,1577,-1,1576,1528,1552,-1,3459,1549,1551,-1,3459,1567,1549,-1,3458,1570,1572,-1,1932,1570,3458,-1,1932,1574,1570,-1,1931,1574,1932,-1,1588,1533,1529,-1,1533,1588,1534,-1,2622,1500,3463,-1,2622,1595,1500,-1,2617,1592,3464,-1,2623,1592,2617,-1,1596,3465,1597,-1,3464,3465,1596,-1,1599,1594,1593,-1,1599,1600,1594,-1,3465,3466,1521,-1,3457,3466,3465,-1,1517,3456,3453,-1,3456,1517,1599,-1,3466,1514,3467,-1,3455,1514,3466,-1,3451,3452,3468,-1,3452,3451,2633,-1,3469,1512,1604,-1,1512,3469,3468,-1,2635,1604,3447,-1,1604,2635,3469,-1,2619,3472,1605,-1,2619,3470,3472,-1,3472,3445,3449,-1,3472,3471,3445,-1,3471,3474,3442,-1,3473,3474,3471,-1,1608,1610,1609,-1,3444,1610,1608,-1,3463,1607,1606,-1,3463,1500,1607,-1,3473,3475,3474,-1,3475,3473,3722,-1,2619,1615,1614,-1,2619,1601,1615,-1,3721,3475,3722,-1,3435,3475,3721,-1,1498,1633,1616,-1,1498,1494,1633,-1,1613,1635,3436,-1,1635,1613,1617,-1,1485,3434,1484,-1,3434,1485,2642,-1,1620,1480,1479,-1,1483,1480,1620,-1,1623,1478,1477,-1,1623,3432,1478,-1,1489,1466,1475,-1,1466,1489,1467,-1,3476,1618,1621,-1,3720,1618,3476,-1,2641,1467,1489,-1,1467,2641,3429,-1,3720,3428,3477,-1,3720,3476,3428,-1,3719,3478,3718,-1,3719,3477,3478,-1,1468,1628,1627,-1,1628,1468,3479,-1,1630,3418,1463,-1,3418,1630,1629,-1,3480,3718,3478,-1,3417,3718,3480,-1,3420,1628,3479,-1,1631,1628,3420,-1,3424,1455,3480,-1,1455,3424,1632,-1,1453,3420,3423,-1,1452,3420,1453,-1,1490,1464,1617,-1,2646,1464,1490,-1,1097,1446,1443,-1,1097,1637,1446,-1,1870,1794,3373,-1,1794,1870,3481,-1,2679,2595,2680,-1,2679,2594,2595,-1,1007,2684,1180,-1,1835,2684,1007,-1,1202,2690,1384,-1,2690,1202,1842,-1,1065,1838,1063,-1,1065,1839,1838,-1,1056,2552,1846,-1,2552,1056,2554,-1,2260,1659,1653,-1,2260,2577,1659,-1,2675,1659,3372,-1,2675,1406,1659,-1,1109,1364,1111,-1,1109,1120,1364,-1,2609,1386,1387,-1,1386,2609,1670,-1,2607,1716,1721,-1,2607,1359,1716,-1,3484,3717,3485,-1,3484,3710,3717,-1,2699,1020,2597,-1,2699,1676,1020,-1,1349,1678,2606,-1,1681,1678,1349,-1,1344,1678,1691,-1,1679,1678,1344,-1,1372,1349,1370,-1,1349,1372,1681,-1,1376,2604,1677,-1,1690,2604,1376,-1,264,969,295,-1,1880,969,264,-1,2655,3413,3412,-1,2655,3408,3413,-1,3485,973,1694,-1,3485,3717,973,-1,1538,1864,1866,-1,1864,1538,1561,-1,1690,1686,2604,-1,1690,1689,1686,-1,3487,1347,1346,-1,3487,3402,1347,-1,1688,3488,3401,-1,3407,3488,1688,-1,3486,1693,3406,-1,1693,3486,1342,-1,1330,3487,3405,-1,1330,1333,3487,-1,3488,1326,1327,-1,3404,1326,3488,-1,3486,2660,2659,-1,3486,1696,2660,-1,1355,2660,1320,-1,2602,2660,1355,-1,1361,1291,1293,-1,1698,1291,1361,-1,1674,1361,1363,-1,1674,1698,1361,-1,1710,1153,2600,-1,3716,1153,1710,-1,3397,1304,1306,-1,3397,1312,1304,-1,2663,1295,3714,-1,1295,2663,1296,-1,1313,1299,1304,-1,1299,1313,1297,-1,3716,1786,1153,-1,1786,3716,1707,-1,3377,2569,3491,-1,1303,2569,3377,-1,2630,3709,3492,-1,3709,2630,1543,-1,2598,3596,3396,-1,2598,2460,3596,-1,1716,1397,1721,-1,1718,1397,1716,-1,3349,3364,3348,-1,3349,3506,3364,-1,1002,1179,1863,-1,1179,1002,1001,-1,1734,1436,964,-1,1734,1037,1436,-1,984,3708,982,-1,3708,984,3343,-1,2538,2546,2665,-1,1277,2546,2538,-1,1259,1737,1645,-1,1257,1737,1259,-1,2593,3713,3494,-1,3713,2593,1738,-1,3374,1738,1739,-1,3374,3713,1738,-1,1740,1742,2591,-1,3495,1742,1740,-1,1742,3496,1743,-1,3496,1742,3495,-1,1062,1751,2556,-1,1062,1752,1751,-1,1842,1070,2690,-1,1842,2558,1070,-1,2691,1746,1384,-1,1843,1746,2691,-1,1269,2594,1270,-1,1269,1000,2594,-1,3356,1212,1214,-1,3356,3369,1212,-1,3391,1213,1212,-1,3389,1213,3391,-1,1076,2687,2564,-1,2560,2687,1076,-1,1220,2863,1221,-1,2863,1220,3482,-1,2560,1075,1758,-1,1076,1075,2560,-1,289,1210,1761,-1,289,288,1210,-1,978,1877,979,-1,1730,1877,978,-1,2584,1233,1239,-1,2584,2590,1233,-1,1763,3497,2667,-1,1763,3387,3497,-1,1418,1096,1416,-1,1418,1189,1096,-1,3352,2563,2685,-1,2563,3352,2698,-1,1759,3499,3482,-1,3499,1759,1758,-1,1215,1079,1078,-1,1215,1861,1079,-1,1408,2581,1775,-1,1408,3715,2581,-1,3715,1408,3483,-1,3483,3384,3715,-1,3384,3483,3383,-1,1638,1103,1825,-1,1638,1824,1103,-1,2677,3504,1260,-1,2677,1100,3504,-1,1035,1100,2677,-1,784,1779,2580,-1,784,1167,1779,-1,1161,2164,1162,-1,1647,2164,1161,-1,3375,3489,3714,-1,3489,3375,3502,-1,1131,3399,3490,-1,1130,3399,1131,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=27 */
		private int[] getethmoid_Geo_5_109_coordIndex_27()
		{
			int[] value = {2570,1790,1815,-1,2570,3491,1790,-1,1709,1290,1289,-1,1708,1290,1709,-1,2575,1787,3502,-1,1788,1787,2575,-1,1311,1654,1808,-1,1311,1310,1654,-1,1255,1795,1649,-1,1255,1636,1795,-1,1760,1796,1278,-1,1796,1760,3353,-1,1055,994,2701,-1,1055,1798,994,-1,987,1799,1227,-1,987,2535,1799,-1,1804,1879,1802,-1,1804,2695,1879,-1,1430,1048,1422,-1,1048,1430,1046,-1,2574,1809,1133,-1,1810,1809,2574,-1,1407,1811,2573,-1,1776,1811,1407,-1,1117,1123,1405,-1,1110,1123,1117,-1,1711,1817,1288,-1,1711,1660,1817,-1,2675,1404,1403,-1,2675,3372,1404,-1,1189,2568,1826,-1,1189,1188,2568,-1,1648,1212,2612,-1,1212,1648,3391,-1,1857,3347,1858,-1,3347,1857,1727,-1,1755,3493,2587,-1,1755,3355,3493,-1,3390,394,3389,-1,3390,3602,394,-1,2541,1835,1834,-1,2541,3507,1835,-1,2558,1841,2559,-1,1842,1841,2558,-1,992,2553,3508,-1,2554,2553,992,-1,1652,3345,2693,-1,1652,1735,3345,-1,1141,2261,1142,-1,2261,1141,2610,-1,2551,2694,1801,-1,2551,1047,2694,-1,2576,982,3708,-1,2576,1806,982,-1,3392,1265,1851,-1,1265,3392,1266,-1,1871,3506,3349,-1,1871,1027,3506,-1,3361,1162,2543,-1,1163,1162,3361,-1,3506,3712,3364,-1,3712,3506,2158,-1,1426,1857,1856,-1,1857,1426,1725,-1,2585,1860,1273,-1,2585,1209,1860,-1,1756,1208,1833,-1,1756,1762,1208,-1,1861,1859,1862,-1,1217,1859,1861,-1,1754,3370,3369,-1,1754,1271,3370,-1,2686,3711,3507,-1,2686,1837,3711,-1,3492,2599,1714,-1,3709,2599,3492,-1,3710,1666,1665,-1,3484,1666,3710,-1,3709,1538,1866,-1,3709,1543,1538,-1,1081,3481,1870,-1,1081,1832,3481,-1,1087,3493,2682,-1,1828,3493,1087,-1,1853,1034,3505,-1,1853,1030,1034,-1,3347,1090,3365,-1,1090,3347,2565,-1,1728,1000,1269,-1,1728,1001,1000,-1,1277,1722,2697,-1,1277,2538,1722,-1,3508,993,992,-1,3508,2692,993,-1,2536,1226,1205,-1,1872,1226,2536,-1,986,2535,987,-1,986,1848,2535,-1,3393,1045,3363,-1,3393,2550,1045,-1,3708,2695,2576,-1,3708,2613,2695,-1,1876,975,1043,-1,1877,975,1876,-1,1270,2679,2567,-1,2679,1270,2594,-1,2722,3553,2703,-1,2722,3212,3553,-1,2703,3509,817,-1,2703,3553,3509,-1,1091,1978,1092,-1,1091,808,1978,-1,789,799,963,-1,789,3554,799,-1,1261,2496,1262,-1,1261,3209,2496,-1,963,798,1882,-1,963,799,798,-1,3511,3317,3341,-1,3511,3321,3317,-1,958,3512,2533,-1,958,957,3512,-1,1941,1888,1886,-1,952,1888,1941,-1,3512,950,2533,-1,950,3512,3707,-1,1941,951,952,-1,1941,1940,951,-1,3338,2706,3707,-1,2706,3338,3514,-1,3514,3723,3515,-1,3514,3513,3723,-1,3723,3516,3515,-1,3516,3723,3724,-1,3724,3517,3516,-1,3517,3724,3521,-1,3521,2527,3517,-1,2527,3521,3519,-1,937,945,3460,-1,1566,945,937,-1,3706,1898,2531,-1,3706,1895,1898,-1,3520,3332,940,-1,3332,3520,3318,-1,3329,3324,933,-1,3329,3328,3324,-1,927,3333,961,-1,927,3326,3333,-1,3331,3511,956,-1,3331,3330,3511,-1,1896,3706,3326,-1,1896,1895,3706,-1,949,1893,950,-1,1893,949,1894,-1,3523,3518,911,-1,3522,3518,3523,-1,2529,922,3328,-1,922,2529,923,-1,3460,3522,3523,-1,1557,3522,3460,-1,941,914,913,-1,941,1907,914,-1,1905,1910,1902,-1,1910,1905,934,-1,3521,3513,3319,-1,3521,3723,3513,-1,3724,3723,3521,-1,3311,2528,1905,-1,2528,3311,3310,-1,906,918,1904,-1,918,906,908,-1,2525,914,3312,-1,1906,914,2525,-1,939,2527,940,-1,1903,2527,939,-1,942,913,2526,-1,942,941,913,-1,3314,3524,3313,-1,3314,3526,3524,-1,2524,3525,1914,-1,3315,3525,2524,-1,3705,1913,1912,-1,1913,3705,3316,-1,1912,3555,3705,-1,3555,1912,1915,-1,801,1914,3525,-1,1979,1914,801,-1,3526,2494,3524,-1,2494,3526,1982,-1,1890,1937,1891,-1,1890,3701,1937,-1,3702,3289,3527,-1,3289,3702,3287,-1,3305,2523,1921,-1,2523,3305,3527,-1,2522,898,2521,-1,898,2522,1921,-1,1555,2709,1556,-1,1555,894,2709,-1,893,2521,2520,-1,2521,893,2522,-1,3299,1922,2711,-1,1922,3299,3303,-1,896,1551,1550,-1,895,1551,896,-1,3297,2710,3286,-1,3297,1924,2710,-1,1926,3300,2518,-1,1926,3294,3300,-1,1571,3298,1568,-1,1571,3293,3298,-1,3291,1925,3296,-1,3291,1928,1925,-1,1929,3295,1927,-1,1929,3704,3295,-1,3703,1929,3530,-1,1929,3703,3704,-1,3288,1589,1553,-1,1589,3288,3530,-1,3532,3529,3279,-1,3531,3529,3532,-1,881,1935,1930,-1,1935,881,883,-1,3528,1938,2516,-1,3528,3306,1938,-1,1919,3532,1920,-1,1919,3281,3532,-1,2516,3701,3284,-1,3701,2516,1937,-1,3549,2713,870,-1,3549,1942,2713,-1,3237,3272,1945,-1,3237,3236,3272,-1,3227,3533,3271,-1,3227,3549,3533,-1,3700,1944,1946,-1,3274,1944,3700,-1,876,3270,2712,-1,876,2512,3270,-1,3269,1946,2513,-1,3700,1946,3269,-1,3226,1950,1949,-1,3226,3550,1950,-1,3534,871,3685,-1,1948,871,3534,-1,3550,3535,1950,-1,3550,3683,3535,-1,3536,3685,3231,-1,3534,3685,3536,-1,3683,3537,3535,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=28 */
		private int[] getethmoid_Geo_5_109_coordIndex_28()
		{
			int[] value = {3683,3224,3537,-1,3538,3231,3228,-1,3536,3231,3538,-1,3224,3539,3537,-1,3224,3223,3539,-1,3538,3548,3540,-1,3538,3228,3548,-1,3223,3541,3539,-1,3223,3551,3541,-1,3686,3540,3548,-1,3540,3686,3542,-1,3541,3682,3543,-1,3541,3551,3682,-1,3233,3542,3686,-1,3542,3233,3544,-1,3543,3221,3545,-1,3543,3682,3221,-1,869,3544,3233,-1,3544,869,868,-1,3545,3222,3235,-1,3545,3221,3222,-1,3244,3276,3275,-1,3244,3243,3276,-1,3533,870,3546,-1,3549,870,3533,-1,3687,3548,3547,-1,3686,3548,3687,-1,3685,873,3684,-1,3685,871,873,-1,3236,3681,3272,-1,3236,2714,3681,-1,867,3683,3550,-1,867,866,3683,-1,1957,3682,3551,-1,1957,2509,3682,-1,2714,3218,3681,-1,2714,2716,3218,-1,1953,2511,1954,-1,1953,1955,2511,-1,1956,1964,2510,-1,1956,2505,1964,-1,2504,1971,829,-1,1966,1971,2504,-1,859,848,1966,-1,859,860,848,-1,854,1968,1965,-1,854,2503,1968,-1,2718,837,1973,-1,2718,2503,837,-1,1969,823,822,-1,823,1969,831,-1,2719,828,827,-1,2719,820,828,-1,824,807,806,-1,807,824,2500,-1,2498,3217,1975,-1,2498,3552,3217,-1,3342,3552,2498,-1,3552,3342,3510,-1,3553,3213,3509,-1,3214,3213,3553,-1,1981,3554,2495,-1,1981,3555,3554,-1,3206,741,740,-1,3150,741,3206,-1,3556,1168,1106,-1,3556,3151,1168,-1,741,2736,2000,-1,2736,741,3150,-1,3671,3176,3571,-1,3174,3176,3671,-1,3570,3680,3568,-1,3680,3570,755,-1,777,3174,3671,-1,776,3174,777,-1,755,775,3680,-1,775,755,754,-1,1988,3202,1989,-1,3560,3202,1988,-1,770,3560,1988,-1,769,3560,770,-1,3170,3201,3672,-1,3170,3172,3201,-1,3171,3672,3163,-1,3171,3170,3672,-1,766,3196,3195,-1,766,768,3196,-1,3165,3171,3163,-1,3169,3171,3165,-1,3198,3562,3679,-1,3198,3197,3562,-1,3563,763,765,-1,3678,763,3563,-1,3562,3677,3679,-1,3677,3562,3564,-1,3186,3678,3563,-1,3187,3678,3186,-1,3564,3184,3677,-1,3184,3564,3185,-1,3191,3566,3189,-1,3566,3191,3675,-1,3175,762,3167,-1,3175,760,762,-1,3675,3567,3566,-1,3567,3675,3676,-1,3176,3167,3571,-1,3176,3175,3167,-1,3676,3568,3567,-1,3568,3676,3570,-1,2490,3570,3676,-1,2490,1985,3570,-1,3671,3558,3557,-1,3571,3558,3671,-1,3674,3192,3572,-1,3192,3674,2731,-1,3673,3201,3559,-1,3201,3673,3672,-1,3118,1994,2488,-1,3118,1996,1994,-1,3573,706,2027,-1,706,3573,2487,-1,3573,3116,3115,-1,3158,3116,3573,-1,1999,1997,1996,-1,1999,2486,1997,-1,699,3152,2741,-1,3152,699,2001,-1,3149,3114,3113,-1,3147,3114,3149,-1,2001,3206,3205,-1,2001,2002,3206,-1,739,787,785,-1,739,738,787,-1,2735,3155,3670,-1,2735,2734,3155,-1,3121,2482,3119,-1,3578,2482,3121,-1,710,3124,3577,-1,710,3120,3124,-1,3575,3668,3669,-1,3668,3575,3574,-1,2006,2738,724,-1,2025,2738,2006,-1,2003,3669,3139,-1,3669,2003,3575,-1,2012,3576,720,-1,2011,3576,2012,-1,2008,2011,2012,-1,2008,2007,2011,-1,2004,3141,3143,-1,3141,2004,3142,-1,2028,3576,735,-1,2028,2481,3576,-1,3123,2017,3565,-1,3123,2014,2017,-1,3126,1986,3569,-1,3126,3125,1986,-1,2020,3128,3561,-1,2020,2484,3128,-1,3668,3132,3144,-1,3132,3668,2019,-1,3134,3145,3577,-1,2015,3145,3134,-1,3130,3578,3136,-1,3130,3129,3578,-1,2024,3146,2005,-1,3146,2024,2023,-1,2026,3159,2027,-1,2740,3159,2026,-1,2739,745,750,-1,721,745,2739,-1,715,1993,712,-1,715,2488,1993,-1,737,2486,3157,-1,2486,737,1997,-1,2849,2914,2777,-1,2914,2849,3645,-1,2034,2033,2032,-1,2034,643,2033,-1,690,3107,691,-1,690,640,3107,-1,3666,2037,3579,-1,3666,2035,2037,-1,2040,3579,2041,-1,2040,3666,3579,-1,2038,2041,675,-1,2038,2040,2041,-1,3108,2038,3109,-1,3108,2478,2038,-1,667,3111,3110,-1,667,666,3111,-1,646,655,2047,-1,646,2477,655,-1,650,3665,651,-1,2053,3665,650,-1,2053,2033,3665,-1,2052,2033,2053,-1,644,648,645,-1,644,661,648,-1,2479,661,644,-1,2479,662,661,-1,2036,662,2479,-1,2036,670,662,-1,3667,670,2036,-1,3667,3108,670,-1,2039,3108,3667,-1,2478,3108,2039,-1,2061,2057,618,-1,2061,2058,2057,-1,677,2061,623,-1,632,2061,677,-1,3581,2060,3106,-1,2060,3581,3651,-1,3582,2891,3655,-1,2891,3582,2894,-1,2075,594,593,-1,3086,594,2075,-1,3663,594,3086,-1,596,594,3663,-1,2077,3663,3589,-1,2077,596,3663,-1,598,3589,3089,-1,598,2077,3589,-1,2919,3094,2235,-1,3094,2919,3652,-1,2063,3664,2064,-1,2063,2967,3664,-1,3586,3088,3096,-1,3586,3585,3088,-1,2748,614,3091,-1,2748,611,614,-1,601,3091,2468,-1,601,2748,3091,-1,2074,2471,2470,-1,2074,2073,2471,-1,590,3652,3653,-1,590,3094,3652,-1,2068,3094,590,-1,3587,613,3585,-1,3587,614,613,-1,3589,3583,3584,-1,3583,3589,3663,-1,592,2068,590,-1,2069,2068,592,-1,562,553,552,-1,562,3078,553,-1,3077,3083,3076,-1,3083,3077,3082,-1,3081,3075,3080,-1,3081,3074,3075,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=29 */
		private int[] getethmoid_Geo_5_109_coordIndex_29()
		{
			int[] value = {3079,3660,2461,-1,3079,3591,3660,-1,2081,584,587,-1,2081,585,584,-1,3660,3069,3057,-1,3591,3069,3660,-1,3662,3072,3058,-1,3662,3725,3072,-1,3594,3725,3662,-1,3594,3726,3725,-1,3062,3726,3594,-1,3062,3067,3726,-1,580,2092,3592,-1,579,2092,580,-1,2464,3592,2092,-1,2464,570,3592,-1,555,3068,2101,-1,555,3065,3068,-1,2093,564,566,-1,2094,564,2093,-1,549,3066,563,-1,3066,549,3054,-1,568,2097,2753,-1,568,2463,2097,-1,2754,3063,557,-1,2754,3084,3063,-1,3063,3065,3064,-1,3084,3065,3063,-1,3084,3068,3065,-1,3082,3068,3084,-1,3082,3067,3068,-1,3077,3067,3082,-1,3077,3726,3067,-1,3073,3726,3077,-1,3073,3725,3726,-1,3072,3725,3073,-1,2088,3662,2465,-1,3594,3662,2088,-1,3595,3083,3593,-1,3076,3083,3595,-1,3660,2103,2461,-1,3661,2103,3660,-1,572,2087,577,-1,2090,2087,572,-1,525,1332,1334,-1,525,536,1332,-1,3044,2989,3042,-1,2989,3044,2987,-1,3041,3052,3039,-1,3052,3041,3050,-1,3049,3036,3047,-1,3049,3034,3036,-1,3045,3030,3043,-1,3045,3033,3030,-1,3027,3040,3028,-1,3040,3027,3038,-1,3035,3025,3022,-1,3037,3025,3035,-1,3032,3021,3018,-1,3031,3021,3032,-1,3016,3029,3026,-1,3016,3015,3029,-1,3024,3010,3012,-1,3023,3010,3024,-1,3020,3009,3006,-1,3019,3009,3020,-1,3004,3017,3014,-1,3004,3003,3017,-1,3013,3001,3011,-1,3013,3000,3001,-1,3007,2996,3008,-1,3007,2999,2996,-1,2995,3002,2993,-1,3002,2995,3005,-1,2998,2986,2988,-1,2997,2986,2998,-1,2994,3053,2992,-1,2994,3051,3053,-1,2991,3046,3048,-1,2990,3046,2991,-1,3600,2458,518,-1,2458,3600,3597,-1,3599,2977,3598,-1,2976,2977,3599,-1,2761,2981,528,-1,2761,2979,2981,-1,518,2110,2109,-1,518,2458,2110,-1,2643,2764,1486,-1,2643,3659,2764,-1,2970,2973,2969,-1,2119,2973,2970,-1,2971,1622,2616,-1,2971,2113,1622,-1,2113,480,2114,-1,2113,482,480,-1,2064,2117,2181,-1,2064,3664,2117,-1,1480,2119,2970,-1,2119,1480,1483,-1,2966,3095,3097,-1,2966,3096,3095,-1,2457,3658,3659,-1,2120,3658,2457,-1,2964,2766,481,-1,2766,2964,2453,-1,2960,483,3658,-1,2454,483,2960,-1,2956,2962,3657,-1,2961,2962,2956,-1,3657,2124,2954,-1,3657,2125,2124,-1,2767,2122,2128,-1,2123,2122,2767,-1,2126,2138,464,-1,2126,469,2138,-1,2959,2452,2957,-1,2959,2132,2452,-1,2146,2949,2147,-1,459,2949,2146,-1,2143,456,455,-1,2143,2142,456,-1,2145,3601,450,-1,2145,3603,3601,-1,2945,2142,2141,-1,2945,2943,2142,-1,2139,2768,2140,-1,2139,430,2768,-1,445,2158,444,-1,445,3712,2158,-1,439,446,1174,-1,447,446,439,-1,354,445,86,-1,445,354,3602,-1,1192,441,443,-1,3609,441,1192,-1,1647,428,2164,-1,429,428,1647,-1,2446,87,86,-1,434,87,2446,-1,426,2449,2156,-1,426,2166,2449,-1,2769,423,2447,-1,2769,424,423,-1,2770,2769,2163,-1,2769,2770,424,-1,3604,3603,2942,-1,3603,3604,3601,-1,2165,2950,2951,-1,2165,415,2950,-1,2953,422,421,-1,2952,422,2953,-1,423,3604,2948,-1,422,3604,423,-1,2944,2166,2165,-1,2944,2449,2166,-1,429,2152,2157,-1,442,2152,429,-1,2152,442,3605,-1,441,2179,442,-1,2179,441,2180,-1,2173,3609,1192,-1,3609,2173,396,-1,3606,412,411,-1,412,3606,3656,-1,3655,405,3582,-1,406,405,3655,-1,2444,2940,2170,-1,2444,2934,2940,-1,2169,399,398,-1,399,2169,410,-1,404,3608,2772,-1,3607,3608,404,-1,2935,2175,2442,-1,2935,2933,2175,-1,395,3607,2178,-1,3608,3607,395,-1,2888,2939,2938,-1,2890,2939,2888,-1,3627,3606,2896,-1,3627,3656,3606,-1,2175,2923,2176,-1,2774,2923,2175,-1,2179,2930,2775,-1,2930,2179,2178,-1,605,2441,2072,-1,3610,2441,605,-1,3610,3653,2920,-1,3653,3610,3654,-1,2065,2181,2440,-1,2065,2064,2181,-1,289,2776,2792,-1,289,1279,2776,-1,2183,3623,2184,-1,2908,3623,2183,-1,3646,3620,3645,-1,3646,3619,3620,-1,3617,3646,2439,-1,3646,3617,3619,-1,2186,2886,2187,-1,2913,2886,2186,-1,3615,2439,2188,-1,2439,3615,3617,-1,3616,2188,2912,-1,2188,3616,3615,-1,313,3625,2234,-1,3650,3625,313,-1,2234,2900,2193,-1,3625,2900,2234,-1,3612,2192,2196,-1,2192,3612,2911,-1,256,2438,254,-1,381,2438,256,-1,2916,2196,2778,-1,2196,2916,3612,-1,254,2426,361,-1,2438,2426,254,-1,2427,2880,361,-1,3629,2880,2427,-1,2232,2224,2785,-1,2232,2225,2224,-1,2227,2783,2229,-1,2783,2227,2226,-1,2198,2473,2780,-1,2473,2198,2745,-1,3651,2203,380,-1,3581,2203,3651,-1,2747,2208,2209,-1,2746,2208,2747,-1,2204,2206,2205,-1,2204,2207,2206,-1,376,378,2202,-1,376,2434,378,-1,2216,2436,2207,-1,2216,2432,2436,-1,2214,2781,2215,-1,2781,2214,2780,-1,2882,2215,2902,-1,363,2215,2882,-1,3649,2908,2909,-1,2908,3649,3622,-1,3650,3626,3625,-1,3650,3648,3626,-1,3624,3611,3623,-1,3611,3624,2895,-1,3105,3649,3104,-1,3105,3622,3649,-1,3626,2926,2925,-1,2926,3626,3648,-1,3628,227,2431,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=30 */
		private int[] getethmoid_Geo_5_109_coordIndex_30()
		{
			int[] value = {365,227,3628,-1,2431,2885,3628,-1,2431,2219,2885,-1,2918,356,355,-1,2918,393,356,-1,377,2430,2226,-1,377,2223,2430,-1,2224,369,3629,-1,374,369,2224,-1,2433,2227,3621,-1,2433,375,2227,-1,2236,2967,2063,-1,2965,2967,2236,-1,2236,2877,2965,-1,2877,2236,3588,-1,606,2241,591,-1,2241,606,607,-1,348,2240,195,-1,348,350,2240,-1,346,2240,350,-1,346,345,2240,-1,322,2242,2244,-1,334,2242,322,-1,2246,3590,2100,-1,3590,2246,2248,-1,334,2082,2242,-1,334,2466,2082,-1,2787,2423,309,-1,2787,2245,2423,-1,311,2788,312,-1,301,2788,311,-1,2786,307,298,-1,2786,2252,307,-1,2252,343,2189,-1,2252,2786,343,-1,2875,323,2876,-1,2875,324,323,-1,160,217,216,-1,217,160,131,-1,2409,60,22,-1,60,2409,182,-1,3634,2832,3632,-1,3640,2832,3634,-1,54,2868,190,-1,54,55,2868,-1,2259,2577,2260,-1,2577,2259,278,-1,122,109,12,-1,109,122,180,-1,2853,2417,2840,-1,2853,2418,2417,-1,186,291,143,-1,186,2297,291,-1,2262,276,278,-1,276,2262,2257,-1,1402,2266,292,-1,2266,1402,2267,-1,2218,251,253,-1,2190,251,2218,-1,243,2856,241,-1,2856,243,2316,-1,2807,239,159,-1,2855,239,2807,-1,258,157,156,-1,258,2295,157,-1,215,2862,2414,-1,2399,2862,215,-1,3501,238,2414,-1,3501,3500,238,-1,2865,1764,1219,-1,2796,1764,2865,-1,99,2395,100,-1,118,2395,99,-1,221,2419,2860,-1,2294,2419,221,-1,198,2277,2279,-1,2288,2277,198,-1,228,2281,2290,-1,2282,2281,228,-1,2220,2797,2221,-1,224,2797,2220,-1,2866,287,286,-1,2866,2398,287,-1,2803,2419,2300,-1,2419,2803,2845,-1,2280,2290,2281,-1,2280,2278,2290,-1,3633,241,3635,-1,242,241,3633,-1,270,3634,3632,-1,270,93,3634,-1,2307,2804,175,-1,2307,367,2804,-1,154,2311,173,-1,154,153,2311,-1,2793,162,168,-1,162,2793,2271,-1,175,2309,2405,-1,176,2309,175,-1,2311,2403,173,-1,2310,2403,2311,-1,2315,170,2316,-1,2790,170,2315,-1,2272,168,167,-1,2793,168,2272,-1,123,3631,2789,-1,123,2871,3631,-1,3635,2411,3633,-1,199,2411,3635,-1,2798,133,2400,-1,2413,133,2798,-1,2792,128,289,-1,2792,129,128,-1,177,2808,108,-1,177,2298,2808,-1,3644,268,267,-1,268,3644,3636,-1,2803,2394,2811,-1,2803,2406,2394,-1,2843,119,181,-1,119,2843,2322,-1,2327,3644,2328,-1,103,3644,2327,-1,102,2324,2842,-1,104,2324,102,-1,103,3636,3644,-1,3636,103,2802,-1,2302,90,2308,-1,2302,2393,90,-1,2390,2368,2344,-1,2368,2390,2332,-1,3637,66,65,-1,3637,2836,66,-1,2366,2367,2334,-1,2366,2829,2367,-1,82,2346,2828,-1,2346,82,81,-1,2390,78,2389,-1,2390,2350,78,-1,2333,3637,2819,-1,2333,2837,3637,-1,79,3641,77,-1,79,2823,3641,-1,77,3639,3638,-1,77,3641,3639,-1,2872,2827,3640,-1,2872,2825,2827,-1,2362,2382,2353,-1,2362,51,2382,-1,3643,35,2369,-1,3643,2817,35,-1,2835,56,2834,-1,2835,57,56,-1,2833,3641,2361,-1,3639,3641,2833,-1,3642,2,2870,-1,2,3642,0,-1,2818,2373,2820,-1,2373,2818,2374,-1,2762,3,5,-1,3,2762,3647,-1,4,2375,1,-1,2375,4,2378,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getethmoid_Geo_5_109_normalIndex_1()
		{
			int[] value = {237,47,260,-1,185,66,224,-1,1097,1141,1287,-1,635,1426,973,-1,2682,1971,767,-1,999,851,695,-1,831,826,132,-1,804,930,50,-1,991,23,37,-1,275,229,161,-1,553,362,457,-1,597,379,290,-1,342,172,44,-1,1009,3287,172,-1,1208,1159,2605,-1,2417,1764,2204,-1,107,553,574,-1,275,379,597,-1,161,458,149,-1,132,53,149,-1,58,80,1155,-1,979,72,94,-1,77,63,986,-1,23,1111,999,-1,1058,1009,342,-1,67,213,258,-1,258,62,67,-1,1208,440,258,-1,172,875,44,-1,416,483,560,-1,1120,2003,695,-1,1625,1421,3124,-1,15,147,5,-1,213,67,422,-1,213,422,483,-1,776,1629,1238,-1,2433,440,1208,-1,2428,787,1123,-1,3271,3220,2715,-1,3257,3271,2955,-1,3665,3624,3669,-1,2948,2711,3191,-1,3683,3276,3528,-1,1108,3584,1945,-1,3568,3518,3538,-1,3538,3518,3409,-1,2682,3363,3055,-1,2898,2001,3461,-1,2441,2240,2875,-1,3239,3635,3683,-1,2875,2240,2682,-1,3191,2970,2898,-1,2608,2946,3505,-1,3714,3664,3728,-1,3577,3669,3624,-1,3560,3536,3550,-1,1914,3552,3061,-1,257,325,358,-1,713,1001,673,-1,269,7,52,-1,3697,3721,3643,-1,1914,3576,3552,-1,3433,3394,3604,-1,2723,2854,2755,-1,3278,2788,2681,-1,2990,3692,3556,-1,3707,2999,3633,-1,1819,2683,3040,-1,1901,3126,3271,-1,1884,2853,3448,-1,736,3235,2990,-1,3270,3016,3394,-1,778,1190,3433,-1,792,713,969,-1,3318,3438,2928,-1,3487,3063,2970,-1,2986,3725,3719,-1,2767,3660,3684,-1,2501,2854,3278,-1,3670,3239,2965,-1,2004,1713,3587,-1,3394,3016,2004,-1,3355,2374,2638,-1,155,93,49,-1,74,36,25,-1,155,144,103,-1,3714,1914,625,-1,1031,2527,2769,-1,801,2443,2469,-1,3605,3637,3709,-1,3639,3539,3531,-1,3553,3617,3524,-1,2387,358,325,-1,1877,1976,2676,-1,3012,2254,2688,-1,3392,2521,3367,-1,3372,3597,3664,-1,3581,3580,3543,-1,3712,3727,3581,-1,3524,3617,3724,-1,1026,898,2999,-1,1063,928,3032,-1,3016,2676,1976,-1,3158,2305,2638,-1,3517,3399,3261,-1,1285,2004,2084,-1,829,419,1182,-1,2878,3167,3100,-1,3229,3485,3517,-1,351,705,163,-1,1136,1008,988,-1,2580,2564,1008,-1,3472,3583,3353,-1,3665,3679,3640,-1,3147,2936,3719,-1,1426,1591,1035,-1,886,1564,1678,-1,3142,3264,991,-1,3675,3713,3723,-1,3553,3541,3732,-1,3634,3595,3576,-1,3554,3459,3536,-1,3709,3619,3643,-1,3729,3709,3721,-1,1393,1136,2326,-1,3055,3191,2633,-1,1319,1593,1136,-1,1591,1940,1564,-1,2620,1647,2158,-1,3295,3671,3195,-1,2615,3216,2844,-1,2473,2673,949,-1,3391,3249,3484,-1,3182,3039,2968,-1,2728,2949,2629,-1,3039,3216,2615,-1,2148,2234,1698,-1,2158,1647,417,-1,3046,2675,2185,-1,3400,3303,3479,-1,2106,1698,2234,-1,2106,1541,1698,-1,983,1813,1200,-1,619,507,644,-1,2558,3521,3321,-1,2674,3321,3548,-1,2307,1813,1541,-1,2294,2629,3005,-1,1105,935,918,-1,1368,485,554,-1,1929,2811,2374,-1,3355,2638,2305,-1,3320,3040,2683,-1,2116,2325,2614,-1,3396,2293,3347,-1,3411,2878,3198,-1,2422,2406,3526,-1,3012,2084,2254,-1,2740,3158,2981,-1,352,371,269,-1,3119,3077,2868,-1,2818,2665,3051,-1,2181,1744,1766,-1,2498,2925,3465,-1,2655,3100,3125,-1,1182,2776,1285,-1,3182,2087,2103,-1,393,487,419,-1,2921,2252,2557,-1,3186,2557,3099,-1,2886,3098,2614,-1,874,2849,1548,-1,3510,3222,3730,-1,2302,950,1996,-1,272,856,413,-1,1024,2222,1456,-1,3085,3219,2902,-1,1545,919,971,-1,2667,1632,1260,-1,2747,2467,2575,-1,2984,2763,3113,-1,787,1156,2599,-1,2721,1228,1589,-1,745,919,1260,-1,699,2820,2551,-1,725,1101,1134,-1,2948,3106,2711,-1,725,1134,1040,-1,2459,1905,2441,-1,1324,2428,1123,-1,701,1534,471,-1,572,787,1225,-1,3191,2459,2633,-1,1102,1956,1324,-1,657,725,382,-1,3251,3434,3673,-1,3434,2862,3168,-1,3168,3673,3434,-1,743,810,363,-1,444,934,1266,-1,363,247,221,-1,3200,3673,3622,-1,126,670,475,-1,2150,2730,1668,-1,122,276,126,-1,2991,3015,3059,-1,2260,1640,1668,-1,2830,3240,2660,-1,1223,1640,1892,-1,1464,623,2029,-1,3015,2495,2693,-1,1457,676,1693,-1,476,1380,676,-1,897,1221,985,-1,3630,3685,3422,-1,3523,2401,2416,-1,3443,3240,3310,-1,3686,3377,3561,-1,2979,2553,2707,-1,3410,2693,2979,-1,3561,3377,3139,-1,1067,750,1457,-1,1069,499,340,-1,2500,3214,2489,-1,2489,1406,1502,-1,849,923,1502,-1,494,806,384,-1,730,499,1293,-1,2871,2385,1681,-1,2500,1769,2315,-1,2698,3178,1681,-1,757,436,1427,-1,1019,577,608,-1,1257,793,1542,-1,3334,3245,3213,-1,2593,2522,2945,-1,2900,3534,3053,-1,2217,2042,2756,-1,2561,3213,3245,-1,3252,2612,3165,-1,3089,3495,3534,-1,2522,2639,3089,-1,2329,2625,2381,-1,2346,2499,2415,-1,2346,2415,1751,-1,1991,780,726,-1,598,1214,879,-1,780,85,726,-1,847,338,146,-1,138,85,516,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getethmoid_Geo_5_109_normalIndex_2()
		{
			int[] value = {1658,2481,2634,-1,3324,3048,3358,-1,3476,3324,3358,-1,2272,2761,2650,-1,3298,2953,2505,-1,2031,1667,2505,-1,862,1407,1235,-1,2771,2378,2225,-1,3127,3572,3618,-1,3486,3618,3405,-1,2778,3630,3236,-1,1952,832,675,-1,675,1680,1952,-1,2647,2424,2745,-1,1162,893,732,-1,595,1403,1164,-1,2647,2445,2784,-1,2882,2595,2089,-1,1175,1252,1436,-1,1736,2089,2595,-1,1436,1812,1919,-1,2532,2290,2424,-1,1615,2247,2125,-1,3477,2621,2734,-1,2270,1824,1831,-1,2734,2621,2332,-1,2264,1831,1779,-1,2313,2526,2405,-1,1672,1504,1816,-1,1949,2121,1888,-1,2080,1665,2151,-1,1686,1619,1533,-1,1816,1316,1633,-1,1888,1361,1350,-1,1665,956,1357,-1,1619,1634,1366,-1,1633,954,1615,-1,186,1357,956,-1,547,1046,548,-1,1730,1164,1403,-1,511,1346,1354,-1,2424,2647,2784,-1,1403,2117,2546,-1,2546,2857,3138,-1,2081,2609,2786,-1,2384,2532,2759,-1,3542,3657,3138,-1,3208,3263,2786,-1,2384,3109,2398,-1,3395,3435,3569,-1,3403,3678,2228,-1,887,467,562,-1,468,1191,1417,-1,2344,2744,3102,-1,1036,1023,532,-1,3111,2180,2155,-1,3546,3464,3445,-1,2550,3497,3277,-1,753,857,327,-1,3031,2775,3145,-1,3241,2801,2847,-1,3385,3111,3031,-1,2847,3277,3432,-1,327,336,616,-1,3068,3145,2775,-1,2744,2801,3241,-1,2663,2420,1612,-1,1553,1499,1834,-1,2228,3678,2567,-1,3569,3435,3036,-1,3286,2567,2860,-1,1417,1336,1791,-1,3022,2935,3036,-1,2753,2749,2848,-1,2582,3281,2975,-1,2894,3130,3351,-1,1861,1777,1995,-1,504,39,427,-1,412,1068,460,-1,1049,931,307,-1,1932,2214,1068,-1,2119,2749,2753,-1,1932,2537,2214,-1,1827,1947,1725,-1,3311,2753,2848,-1,3351,3311,2848,-1,1553,2429,1907,-1,1652,1705,1784,-1,1535,1652,1660,-1,1691,1652,1535,-1,1582,1531,1496,-1,1655,1842,1631,-1,356,642,754,-1,968,1284,1478,-1,2330,3340,3084,-1,330,531,1708,-1,1371,582,2454,-1,3123,2334,2680,-1,2507,1312,2062,-1,1826,643,2040,-1,3268,2686,2748,-1,1878,2718,1804,-1,885,994,452,-1,3357,2826,2973,-1,2112,1866,3070,-1,355,527,959,-1,2212,1413,795,-1,2541,3128,3000,-1,665,976,433,-1,1219,1630,1459,-1,3466,3128,3508,-1,2541,1566,2112,-1,610,214,355,-1,433,843,357,-1,1459,2418,1778,-1,2772,2764,3527,-1,3000,3360,2656,-1,2220,2377,1630,-1,2664,2772,3269,-1,858,901,976,-1,3498,3533,3148,-1,420,808,364,-1,1951,2002,1041,-1,3632,3171,3509,-1,2159,1981,1000,-1,2863,2545,3171,-1,2929,3101,2845,-1,1868,1974,841,-1,871,1152,1726,-1,2013,1509,1772,-1,3312,2838,3354,-1,1115,1706,2345,-1,2611,1935,1767,-1,2803,2452,2066,-1,2452,1961,2066,-1,1183,1222,698,-1,628,479,698,-1,3365,3082,3192,-1,2122,1425,1398,-1,3190,3335,3607,-1,495,106,145,-1,2496,1382,1289,-1,2713,2791,2918,-1,3062,2617,2959,-1,2409,1999,2632,-1,2714,2569,3082,-1,1053,1072,1398,-1,1213,816,1330,-1,873,459,1242,-1,1242,1055,1993,-1,2194,1935,2135,-1,2109,2548,2906,-1,3490,3114,3144,-1,2548,2918,3325,-1,2517,2779,2725,-1,1496,1531,1524,-1,660,108,60,-1,643,110,301,-1,20,109,250,-1,205,385,608,-1,1380,476,159,-1,2903,3265,3426,-1,938,1775,1400,-1,1626,2188,1552,-1,1626,2043,2188,-1,2566,2295,2874,-1,1763,1433,339,-1,3105,2436,3164,-1,1969,1074,944,-1,1749,838,1653,-1,1240,1408,1716,-1,310,82,1132,-1,822,819,89,-1,819,114,89,-1,1899,1393,2326,-1,1139,1376,1264,-1,840,563,1462,-1,203,171,246,-1,265,203,246,-1,1605,209,1554,-1,660,462,1145,-1,268,600,805,-1,2102,2402,2115,-1,2739,2480,2475,-1,1846,1364,1506,-1,1496,1650,1490,-1,932,2591,2328,-1,3426,3045,2903,-1,1568,1400,1291,-1,729,1583,300,-1,127,798,1576,-1,3656,3601,3704,-1,3704,3134,3105,-1,244,1042,1119,-1,3105,3530,3704,-1,3525,3152,3065,-1,3491,2861,2823,-1,1489,2269,2278,-1,2962,2865,3380,-1,1673,2197,2241,-1,3612,3033,3308,-1,2950,2317,2351,-1,451,1015,1146,-1,2032,1671,1539,-1,1132,750,891,-1,1404,1505,1440,-1,2493,899,839,-1,1338,2703,2149,-1,1810,2021,2130,-1,2201,2851,3057,-1,2798,2659,2809,-1,1705,1761,1784,-1,1034,1147,466,-1,1050,466,292,-1,282,585,425,-1,282,119,130,-1,1050,1174,910,-1,1147,1412,523,-1,1077,2037,1585,-1,1585,2037,1926,-1,648,570,634,-1,908,1406,821,-1,1537,925,187,-1,1309,238,1342,-1,2211,1342,1584,-1,2147,933,992,-1,798,127,339,-1,3646,3616,3172,-1,249,447,418,-1,2950,3606,3672,-1,1805,880,1872,-1,1469,3028,1750,-1,530,581,187,-1,2687,1805,2238,-1,429,489,60,-1,696,711,664,-1,2130,2368,1810,-1,2851,2201,2799,-1,2483,2429,1834,-1,1828,1784,1796,-1,295,609,17,-1,365,17,244,-1,301,110,317,-1,2799,2201,1846,-1,904,1299,1953,-1,2141,2741,2131,-1,3672,3606,3675,-1,996,1126,502,-1,3516,3644,3705,-1,1575,2149,2703,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getethmoid_Geo_5_109_normalIndex_3()
		{
			int[] value = {614,1863,2019,-1,614,230,1312,-1,584,2062,1312,-1,1580,471,60,-1,88,1188,1065,-1,376,852,465,-1,865,6,51,-1,1604,22,38,-1,2468,2757,3248,-1,2286,3026,3272,-1,781,1015,310,-1,3420,3450,3440,-1,2716,2915,2434,-1,3723,3689,3644,-1,3699,3694,3666,-1,1447,1245,2141,-1,424,2010,2757,-1,1188,2603,2670,-1,1065,1620,865,-1,2962,3380,3512,-1,1043,242,814,-1,756,2487,223,-1,744,1489,38,-1,1620,2411,1194,-1,651,491,591,-1,1080,1304,1195,-1,30,296,421,-1,223,2487,482,-1,679,549,30,-1,428,536,421,-1,428,602,536,-1,774,118,418,-1,1379,2494,2464,-1,2977,2464,2494,-1,2100,1651,1637,-1,704,2618,1496,-1,551,1206,932,-1,3043,2131,2741,-1,1498,1326,1511,-1,2266,1467,1716,-1,2050,827,1132,-1,2877,2839,2488,-1,3459,3425,3288,-1,124,1605,1529,-1,1271,1139,1597,-1,840,1139,1271,-1,1295,1347,2037,-1,3293,2743,2687,-1,1469,383,425,-1,585,1540,1334,-1,1872,2238,1805,-1,3427,2690,3446,-1,720,652,350,-1,964,1463,525,-1,3520,2074,3330,-1,396,821,793,-1,691,638,2300,-1,286,681,1966,-1,328,369,720,-1,236,634,273,-1,328,834,367,-1,2668,3050,2644,-1,2461,2824,3387,-1,3437,3387,2835,-1,1236,266,1241,-1,568,240,281,-1,807,360,577,-1,1247,1385,1033,-1,2300,2192,1427,-1,266,250,160,-1,1880,1098,1786,-1,2047,2427,2562,-1,514,859,703,-1,2078,2645,2873,-1,506,1530,1392,-1,1435,2289,1601,-1,2699,2281,1269,-1,3283,3140,3301,-1,3009,3146,2922,-1,131,1170,1904,-1,1277,1435,473,-1,514,197,473,-1,243,790,334,-1,2795,2427,790,-1,1239,927,1211,-1,423,2077,1484,-1,109,160,250,-1,2698,2354,3146,-1,3356,3301,3140,-1,68,51,497,-1,1604,1881,242,-1,3050,2641,1966,-1,692,657,409,-1,987,153,1168,-1,1739,1322,987,-1,2577,1867,2027,-1,171,117,181,-1,423,133,189,-1,1392,1176,297,-1,1461,1664,1574,-1,383,1469,1750,-1,1174,957,1251,-1,167,238,415,-1,238,228,573,-1,2147,992,1592,-1,3364,3172,2147,-1,171,277,117,-1,43,130,277,-1,129,230,614,-1,1027,227,716,-1,1540,788,1695,-1,127,333,267,-1,2468,1188,2757,-1,3516,3682,3644,-1,502,1126,970,-1,1447,1482,835,-1,96,226,464,-1,450,500,1495,-1,1909,3024,2487,-1,194,660,941,-1,199,170,288,-1,2483,2357,3057,-1,2046,1896,1842,-1,2739,2102,2368,-1,2021,1822,1988,-1,2189,1822,1964,-1,774,1047,159,-1,159,1047,1595,-1,3096,3161,2463,-1,3406,3381,3284,-1,1636,596,2816,-1,274,188,800,-1,965,1344,940,-1,3096,604,3244,-1,3691,3254,3349,-1,1192,1549,1396,-1,3244,604,3074,-1,3368,3551,3593,-1,2613,3368,3074,-1,1250,1480,1025,-1,1025,728,1250,-1,1256,747,324,-1,1546,1256,1719,-1,1837,1479,2237,-1,3551,3184,3593,-1,513,526,477,-1,800,1742,596,-1,2856,2972,3393,-1,526,76,477,-1,2105,2154,2856,-1,2154,2972,2856,-1,2200,2015,2059,-1,2255,2907,2248,-1,2120,2570,2015,-1,2248,2120,1475,-1,1475,1850,1656,-1,407,446,220,-1,1800,1642,589,-1,1110,1602,1701,-1,1735,2057,1114,-1,3079,2602,3149,-1,3258,3221,3575,-1,1610,1171,794,-1,1272,1362,201,-1,3273,3275,2457,-1,791,943,766,-1,1871,2528,2457,-1,2457,791,853,-1,794,1399,1273,-1,3447,3258,3575,-1,201,785,766,-1,3575,3457,3447,-1,825,989,1189,-1,3333,3575,3221,-1,2457,3275,2510,-1,2738,2318,2628,-1,145,576,816,-1,1153,658,145,-1,1317,2698,1273,-1,766,518,791,-1,1273,2698,2385,-1,2385,2184,1273,-1,785,1069,766,-1,1706,1153,1935,-1,797,816,972,-1,1853,1762,2409,-1,864,410,505,-1,1677,799,1028,-1,1272,2343,1362,-1,1171,1610,1902,-1,2623,3243,3150,-1,825,505,1044,-1,1272,1430,2343,-1,943,234,766,-1,2025,1522,1273,-1,3258,2941,1522,-1,2457,3103,3273,-1,3306,3274,3373,-1,621,785,201,-1,2407,2244,1430,-1,1522,3221,3258,-1,1399,1567,2025,-1,3149,2602,2729,-1,2198,1931,2093,-1,2971,2373,2283,-1,1581,1701,1864,-1,802,1149,1094,-1,985,1160,446,-1,802,1178,1149,-1,2120,2015,1850,-1,2570,2727,2166,-1,2907,3081,3506,-1,3702,3379,3506,-1,1302,1642,596,-1,477,76,1302,-1,1112,1084,556,-1,556,526,1112,-1,2856,3393,3284,-1,2276,2816,2105,-1,188,477,1742,-1,1118,526,513,-1,1719,948,1381,-1,1256,718,739,-1,1573,1757,1250,-1,2279,3331,3368,-1,3244,3074,3593,-1,1344,1396,1746,-1,3096,3628,3439,-1,809,1261,604,-1,3161,3096,3376,-1,800,596,844,-1,3381,3069,3284,-1,3161,3406,2859,-1,604,1862,1118,-1,159,476,116,-1,1927,2464,2977,-1,2189,1964,2977,-1,1822,2189,1842,-1,2368,2539,2739,-1,1846,2362,2799,-1,2046,2357,1624,-1,1638,1631,1842,-1,709,199,714,-1,704,1161,1909,-1,2627,1909,1842,-1,1568,704,938,-1,729,450,1495,-1,848,96,464,-1,696,471,734,-1,2741,2943,3043,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getethmoid_Geo_5_109_normalIndex_4()
		{
			int[] value = {451,1146,1539,-1,114,249,99,-1,175,223,296,-1,1620,2670,2411,-1,880,1027,1575,-1,110,129,203,-1,110,203,217,-1,3601,3364,3242,-1,2147,1045,933,-1,1732,1281,1451,-1,1281,200,231,-1,1493,1251,1045,-1,189,70,176,-1,1461,1899,1664,-1,2353,2289,1435,-1,119,189,133,-1,262,1529,1462,-1,2460,3141,3117,-1,1271,1783,1913,-1,182,217,209,-1,1322,692,911,-1,127,1576,1082,-1,538,250,1458,-1,3104,2922,3042,-1,217,203,245,-1,131,842,1170,-1,1435,480,700,-1,2047,1839,345,-1,2047,334,790,-1,1277,473,197,-1,927,197,640,-1,1211,842,1412,-1,2873,1904,1170,-1,2819,3146,3356,-1,319,395,518,-1,1277,1899,2353,-1,506,1601,1530,-1,1391,2078,2322,-1,544,870,1095,-1,1325,1098,859,-1,2047,2562,1839,-1,3181,3204,2795,-1,385,205,390,-1,1098,1880,1363,-1,1269,250,266,-1,3451,3611,3387,-1,568,1241,266,-1,3387,3611,2835,-1,3437,3427,3122,-1,2644,3050,2414,-1,634,581,1358,-1,681,2414,1966,-1,1966,2641,837,-1,638,687,3611,-1,2074,3520,2690,-1,2074,3471,2781,-1,2630,2781,3293,-1,3611,1921,3209,-1,2690,3427,2835,-1,2880,2704,3471,-1,2880,3471,3390,-1,1347,378,1750,-1,788,1805,1695,-1,2253,1916,2018,-1,1605,210,209,-1,1340,1237,252,-1,1428,988,2564,-1,113,1176,1243,-1,462,660,60,-1,1869,1103,877,-1,669,1301,1201,-1,1104,1301,669,-1,2869,2131,3043,-1,2044,938,1909,-1,709,1292,1107,-1,1653,1107,1558,-1,2618,704,1568,-1,2046,2100,2357,-1,2362,1846,1787,-1,2591,1206,1650,-1,3364,2147,2236,-1,1909,2627,3024,-1,817,1379,774,-1,2494,817,2258,-1,1760,418,1217,-1,394,30,549,-1,602,777,536,-1,1080,1126,1304,-1,617,960,624,-1,1194,2411,2654,-1,1789,299,242,-1,400,465,624,-1,744,38,465,-1,6,497,51,-1,6,782,497,-1,534,2233,1817,-1,1374,2208,2359,-1,1539,1752,2032,-1,3010,3602,3511,-1,3369,3425,3504,-1,1646,1015,781,-1,852,591,465,-1,852,1029,651,-1,3699,3566,3415,-1,2757,1188,88,-1,108,890,889,-1,839,899,315,-1,846,96,848,-1,2163,1925,1671,-1,657,692,904,-1,1663,2115,1702,-1,572,268,461,-1,722,992,508,-1,244,1281,204,-1,1624,2357,2483,-1,2483,1834,1624,-1,1796,2429,2271,-1,2357,2201,3057,-1,2130,2165,2368,-1,3137,2855,2429,-1,449,471,696,-1,660,112,108,-1,1926,2037,1911,-1,1749,2644,2624,-1,1750,3028,2967,-1,196,1543,1483,-1,321,2111,1455,-1,3272,3606,2950,-1,649,777,1217,-1,249,418,118,-1,48,59,116,-1,3425,3496,3285,-1,3656,3646,3172,-1,3704,3202,3134,-1,1188,2468,2603,-1,3339,3412,2897,-1,3417,3339,3327,-1,3116,2035,2369,-1,729,1703,1583,-1,1792,1311,1755,-1,631,933,1045,-1,1584,1342,573,-1,238,1311,1451,-1,772,1793,1537,-1,1749,1891,772,-1,1196,848,1749,-1,821,396,570,-1,661,1257,2074,-1,793,1257,661,-1,2037,1077,1295,-1,86,119,195,-1,227,880,270,-1,466,1050,910,-1,788,585,283,-1,1077,1144,183,-1,716,227,61,-1,2324,2539,1828,-1,2809,2960,2798,-1,2368,2165,2539,-1,2019,583,846,-1,1872,880,1575,-1,997,962,977,-1,1810,1380,1595,-1,168,655,1132,-1,731,1539,1671,-1,3272,2320,2286,-1,819,1917,1920,-1,3516,3227,3189,-1,3423,2782,2909,-1,1604,2288,2310,-1,2410,2233,1789,-1,88,68,424,-1,3248,2783,2466,-1,662,1074,1185,-1,1185,992,662,-1,1045,2147,3172,-1,2280,1433,1763,-1,2670,2566,2874,-1,3339,2897,3327,-1,1703,2035,3001,-1,729,2035,1703,-1,3417,3001,3116,-1,104,226,199,-1,1496,2591,1650,-1,932,1292,288,-1,170,445,551,-1,194,941,724,-1,471,449,429,-1,1797,805,1562,-1,1663,1702,1666,-1,571,426,484,-1,2504,2434,2915,-1,1851,3026,2286,-1,2163,2412,2438,-1,2131,2869,2413,-1,2027,1916,2253,-1,262,153,182,-1,1739,1913,2027,-1,563,262,1462,-1,1699,2709,1516,-1,2027,2253,2840,-1,194,174,112,-1,174,73,112,-1,2354,2941,3301,-1,451,0,82,-1,1702,1562,1365,-1,328,204,1732,-1,2603,2137,2566,-1,1576,798,1738,-1,3092,2437,2284,-1,2903,2124,2044,-1,2035,1557,2369,-1,3493,3045,3426,-1,109,253,347,-1,2698,1317,2354,-1,1577,1909,1161,-1,2449,2496,2779,-1,2394,2918,2548,-1,2355,2449,2517,-1,2079,2394,2109,-1,2054,2287,2135,-1,2054,2135,1748,-1,1706,1943,2060,-1,1706,2023,1943,-1,1887,1259,1706,-1,2061,1416,1332,-1,2011,1853,2524,-1,2918,2791,3190,-1,3325,3607,2906,-1,3607,3280,2906,-1,1183,1274,2056,-1,1801,2889,2122,-1,2959,2617,2833,-1,1183,698,647,-1,1053,1398,1425,-1,1425,861,1053,-1,3174,3192,3082,-1,2143,2092,2617,-1,764,1390,1227,-1,2997,2452,2803,-1,1525,1390,968,-1,3509,3171,2545,-1,2899,3215,3717,-1,2075,1345,2345,-1,3354,2838,2813,-1,1726,1563,2028,-1,1044,1974,1772,-1,775,1229,1179,-1,1669,1179,1229,-1,1948,2244,2190,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getethmoid_Geo_5_109_normalIndex_5()
		{
			int[] value = {1977,2033,1670,-1,2388,2140,2579,-1,2579,2863,3585,-1,2380,3199,2899,-1,3215,3565,3171,-1,2545,2863,2159,-1,2545,2223,2175,-1,2064,1186,1018,-1,2002,2123,1041,-1,611,883,349,-1,1054,975,626,-1,937,420,883,-1,665,1802,1124,-1,1790,2249,2554,-1,1879,2377,2220,-1,2664,2444,2377,-1,1774,1676,715,-1,2439,3000,2425,-1,3360,3527,2764,-1,2973,1778,2418,-1,843,1459,795,-1,193,355,214,-1,959,2112,1566,-1,3128,2541,3070,-1,3642,3466,3627,-1,976,1219,843,-1,357,795,1413,-1,190,527,355,-1,3070,2750,3508,-1,3627,3591,3559,-1,1978,1212,2086,-1,1878,885,1371,-1,3343,2794,3123,-1,1371,2454,2476,-1,330,1708,2431,-1,2896,3340,2330,-1,2205,3084,2365,-1,968,754,1284,-1,913,1262,642,-1,2046,1643,1651,-1,1577,1161,1524,-1,1796,1784,1761,-1,2848,2975,3180,-1,2975,2848,2749,-1,2753,3294,2789,-1,1932,1745,2361,-1,2749,2214,2582,-1,1068,2214,2119,-1,307,931,922,-1,460,1068,1064,-1,2848,2919,3351,-1,1397,1689,1163,-1,1336,1417,1191,-1,2935,3286,2860,-1,2860,3678,3569,-1,2640,3279,2063,-1,2892,3036,3435,-1,1499,1521,1624,-1,2382,3403,1798,-1,1020,208,522,-1,1276,857,1470,-1,2342,2801,2744,-1,3145,3021,3241,-1,3031,2155,2095,-1,1419,1470,753,-1,2847,2342,2309,-1,3445,3183,3111,-1,1930,2904,2490,-1,2490,1873,1930,-1,2006,2261,1294,-1,1882,2344,2578,-1,115,456,811,-1,408,920,1191,-1,735,1417,2034,-1,3166,3286,3497,-1,2663,1465,2063,-1,3208,2482,3095,-1,2114,2026,1840,-1,2609,2005,2482,-1,2759,3138,3109,-1,3138,2759,2546,-1,1730,2546,2089,-1,1476,1648,1617,-1,1046,1507,1346,-1,1919,2363,2247,-1,1919,2247,1615,-1,1533,1366,956,-1,1316,1644,1888,-1,1816,1633,2758,-1,1665,2080,1776,-1,2332,2526,2313,-1,2282,2070,1949,-1,3071,2734,2282,-1,3025,2376,2349,-1,3430,2985,2621,-1,2398,3025,2669,-1,2532,2424,2356,-1,2290,2384,2398,-1,2290,2478,2125,-1,893,1162,1343,-1,893,1252,1175,-1,1965,1736,2595,-1,2882,2647,3131,-1,2944,3131,2647,-1,1730,2089,1736,-1,1503,1162,1164,-1,1252,1343,924,-1,561,961,1154,-1,81,675,832,-1,1360,1928,1915,-1,3236,2393,2666,-1,3005,3630,2778,-1,3572,3441,3405,-1,2225,2378,2505,-1,2598,2989,3413,-1,442,832,1407,-1,1384,1235,1667,-1,3006,2393,3236,-1,2797,2172,2634,-1,2634,3080,2797,-1,2172,1331,1694,-1,1658,907,847,-1,866,1694,1331,-1,803,559,1007,-1,907,552,338,-1,559,680,860,-1,644,1200,1214,-1,748,879,1616,-1,1200,1813,1679,-1,2652,2499,2346,-1,3334,3213,2756,-1,2841,3548,3165,-1,2963,3578,3495,-1,2612,3252,3592,-1,3548,3529,3476,-1,2042,1590,1570,-1,559,516,85,-1,2477,2900,3053,-1,3534,3309,3334,-1,1690,780,1991,-1,793,821,1406,-1,266,160,240,-1,1019,806,1033,-1,436,849,219,-1,2385,2871,2565,-1,384,806,309,-1,1681,1542,2646,-1,1502,1406,849,-1,2691,3332,2871,-1,923,945,1769,-1,1663,1067,1457,-1,655,676,1457,-1,2979,2693,2553,-1,1758,2828,2695,-1,2695,3686,3331,-1,2828,2660,3240,-1,3386,3422,3685,-1,1386,2416,2401,-1,3630,3422,3236,-1,498,233,324,-1,1810,2368,1693,-1,676,1380,1693,-1,2495,2088,2693,-1,719,2029,623,-1,1640,2660,1892,-1,276,670,126,-1,122,271,888,-1,2992,3060,3499,-1,271,83,437,-1,437,83,221,-1,3622,3673,3019,-1,2396,2242,1992,-1,743,363,761,-1,221,247,710,-1,1266,934,1729,-1,2168,2350,2842,-1,401,733,444,-1,2291,1606,1355,-1,247,363,135,-1,3200,2350,2259,-1,1526,1429,2259,-1,382,984,784,-1,1905,904,1953,-1,657,382,409,-1,2886,3285,3442,-1,1803,2067,1038,-1,301,784,1803,-1,2948,3191,3108,-1,2459,2711,1905,-1,2432,1324,1956,-1,2590,787,2599,-1,1040,1134,2113,-1,2113,2721,1589,-1,268,572,207,-1,1207,2667,2864,-1,2551,2472,1156,-1,1101,2053,1488,-1,699,1156,727,-1,1090,2508,2472,-1,2196,1632,2651,-1,3698,3023,3219,-1,1937,2737,3730,-1,2737,2901,2980,-1,2737,2980,3730,-1,3064,2995,2969,-1,448,2879,2051,-1,2051,874,448,-1,2849,2901,2737,-1,3523,3685,3441,-1,1395,2401,2403,-1,2325,2116,3126,-1,2428,3126,787,-1,2534,3132,3099,-1,1388,1722,1220,-1,393,419,380,-1,1220,419,487,-1,3182,1870,2087,-1,1622,2515,2108,-1,3014,2348,2655,-1,2515,2954,2658,-1,3167,2878,2916,-1,818,1255,1335,-1,1814,1847,2601,-1,3465,3384,3456,-1,3129,3054,2866,-1,2470,1741,1598,-1,1766,1254,895,-1,2422,694,1373,-1,3051,2998,3119,-1,3012,2957,1985,-1,2787,2556,2978,-1,587,673,1884,-1,1807,2422,3526,-1,3051,3631,3659,-1,1766,2917,3153,-1,2916,3416,3474,-1,2371,3401,3314,-1,3696,3458,3014,-1,3126,3040,3320,-1,918,1154,1444,-1,894,561,918,-1,2811,3391,3484,-1,1618,1870,2294,-1,3182,3458,3484,-1,485,1618,1661,-1,1105,1339,958,-1,1915,1929,958,-1,3475,3391,2811,-1,1307,2133,1561,-1,507,619,417,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getethmoid_Geo_5_109_normalIndex_6()
		{
			int[] value = {1541,741,1698,-1,3535,3529,3548,-1,2685,3160,3479,-1,3535,3321,3521,-1,2673,2588,2968,-1,3233,3391,3253,-1,2538,1870,2588,-1,169,139,351,-1,2240,2441,1953,-1,1387,150,820,-1,851,2608,767,-1,2720,2571,1860,-1,3605,3729,3626,-1,2441,2875,2633,-1,1596,2571,2720,-1,1035,1564,973,-1,886,973,1564,-1,3616,2947,3172,-1,2720,3172,2947,-1,2460,1303,1982,-1,1319,1136,988,-1,1393,141,1136,-1,47,177,66,-1,351,211,688,-1,311,688,211,-1,2776,1182,419,-1,3399,3517,3550,-1,2755,2796,3107,-1,3355,2305,3320,-1,3355,3320,2683,-1,3392,3577,3599,-1,3639,3724,3617,-1,3713,3703,3723,-1,736,1148,3235,-1,358,1031,180,-1,789,974,13,-1,1078,801,74,-1,2469,2443,3372,-1,2702,3519,3372,-1,2469,3733,3714,-1,3515,3485,3557,-1,269,371,222,-1,2421,677,1030,-1,358,2387,2527,-1,2701,974,789,-1,180,103,257,-1,625,1914,75,-1,74,87,36,-1,1491,2304,371,-1,3473,3270,3203,-1,3676,3660,2767,-1,3684,3725,2986,-1,3210,3318,2817,-1,3438,2804,2928,-1,969,405,952,-1,2928,2804,1491,-1,2853,1884,1337,-1,3478,3433,1282,-1,3478,1282,736,-1,2206,3448,2683,-1,1491,371,542,-1,952,2563,2178,-1,629,1071,1337,-1,52,1190,778,-1,1819,1901,620,-1,620,1901,952,-1,2563,3289,2825,-1,3633,3061,3552,-1,3718,3002,3032,-1,3478,2990,3556,-1,2853,2755,3107,-1,3394,3478,3203,-1,257,103,98,-1,371,352,542,-1,3713,3645,3517,-1,3640,3728,3664,-1,3734,3669,3570,-1,3640,3597,3599,-1,3289,2817,2825,-1,3710,3714,3728,-1,2432,2955,2428,-1,3487,2970,3363,-1,1318,2001,2898,-1,1843,1941,3538,-1,3063,3487,3532,-1,3532,3487,3505,-1,3614,3586,3650,-1,3532,3276,3063,-1,3220,3346,2563,-1,3257,3304,3271,-1,3220,2563,2715,-1,3271,3194,3220,-1,875,172,3287,-1,488,225,613,-1,521,776,1238,-1,161,362,248,-1,375,42,1327,-1,1058,1518,2142,-1,97,132,826,-1,40,44,422,-1,264,151,178,-1,2417,2433,1208,-1,533,541,375,-1,886,820,454,-1,521,329,264,-1,432,820,150,-1,1924,162,31,-1,329,521,147,-1,1159,335,813,-1,342,44,1518,-1,695,2003,1421,-1,21,65,1518,-1,1518,65,34,-1,213,483,335,-1,1086,91,77,-1,53,9,149,-1,161,248,458,-1,263,149,458,-1,275,41,379,-1,454,820,432,-1,671,707,613,-1,702,501,488,-1,813,483,416,-1,314,42,375,-1,1629,1600,1924,-1,1625,23,1421,-1,930,986,50,-1,53,132,97,-1,381,695,851,-1,767,1120,579,-1,1764,2256,1166,-1,40,1518,44,-1,224,66,1097,-1,260,47,184,-1,311,141,47,-1,351,139,211,-1,311,47,293,-1,377,47,237,-1,165,66,185,-1,1141,1097,66,-1,1764,1166,2204,-1,1197,1426,635,-1,1979,1971,2240,-1,767,381,851,-1,973,886,368,-1,97,16,53,-1,986,63,50,-1,23,1625,34,-1,362,553,248,-1,875,560,422,-1,813,335,483,-1,2433,2204,440,-1,1002,671,613,-1,454,432,637,-1,831,263,150,-1,275,161,41,-1,1086,77,978,-1,5,147,14,-1,335,156,213,-1,1518,40,21,-1,2003,3124,1421,-1,1518,1058,342,-1,258,213,156,-1,1159,1715,335,-1,164,488,374,-1,521,14,147,-1,31,1238,1924,-1,248,432,150,-1,521,264,776,-1,454,368,886,-1,533,375,1600,-1,329,374,264,-1,2605,2417,1208,-1,264,178,776,-1,579,1120,381,-1,422,19,40,-1,826,804,97,-1,1518,1625,2142,-1,23,999,1421,-1,161,229,362,-1,613,702,488,-1,875,3287,143,-1,3271,2715,1369,-1,1369,952,1901,-1,3304,3194,3271,-1,3220,3461,3346,-1,1945,3584,3586,-1,3568,3555,3518,-1,3532,3505,2946,-1,1108,3431,3584,-1,2817,3289,3210,-1,1941,3568,3538,-1,2762,3264,3177,-1,3177,3532,2946,-1,2432,2711,3106,-1,2428,1324,2432,-1,3664,3714,3733,-1,3599,3624,3640,-1,3669,3577,3570,-1,3597,3640,3664,-1,3531,3716,3700,-1,98,46,257,-1,1914,79,75,-1,3433,3604,3587,-1,3394,3433,3478,-1,3556,3203,3478,-1,3718,3032,3690,-1,3633,2999,3061,-1,2563,3346,3289,-1,1819,3040,1901,-1,343,52,778,-1,1001,629,1337,-1,952,2178,969,-1,542,1980,1491,-1,778,3433,2681,-1,736,2990,3478,-1,3433,1190,1282,-1,1337,2723,2853,-1,2020,2178,2825,-1,1491,1980,2928,-1,3438,3469,2804,-1,2776,3558,3589,-1,2986,2852,3684,-1,2767,2982,3676,-1,3203,3556,3473,-1,2304,325,371,-1,29,49,93,-1,75,87,74,-1,49,144,155,-1,625,2469,3714,-1,789,2521,2701,-1,1031,358,2527,-1,1030,2769,2421,-1,2304,1491,2804,-1,3531,3595,3716,-1,3515,3517,3485,-1,3176,3229,2978,-1,3372,2443,2702,-1,2469,3372,3733,-1,3714,3710,3719,-1,801,75,74,-1,974,25,13,-1,180,257,358,-1,173,325,257,-1,2978,3229,3261,-1,3639,3662,3724,-1,3517,3515,3713,-1,3392,3599,3519,-1,485,1870,1618,-1,2683,1870,1368,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getethmoid_Geo_5_109_normalIndex_7()
		{
			int[] value = {2755,2509,2796,-1,2004,1285,1713,-1,2957,3167,2515,-1,2274,2655,2348,-1,169,1303,1008,-1,66,177,1141,-1,1979,1867,2577,-1,2460,2580,1303,-1,3596,3652,3665,-1,3299,2304,2804,-1,1426,1035,973,-1,1596,1678,2571,-1,2720,1387,1596,-1,1914,3061,898,-1,2875,3055,2633,-1,1860,3172,2720,-1,2608,2682,767,-1,820,1596,1387,-1,1739,2240,1322,-1,293,688,311,-1,3238,3391,3233,-1,3182,2968,2588,-1,3484,3039,3182,-1,2615,2673,2968,-1,3535,3521,3615,-1,2685,3479,2807,-1,3548,3321,3535,-1,2841,2106,2674,-1,2841,2307,2106,-1,1541,983,741,-1,417,134,507,-1,2133,2185,1561,-1,2811,2650,3475,-1,1339,1915,958,-1,836,485,1661,-1,894,906,836,-1,1870,485,1368,-1,958,1929,2374,-1,3484,2374,2811,-1,918,1444,1360,-1,2374,3696,2638,-1,3014,2655,2981,-1,2435,3361,3198,-1,3217,3620,3347,-1,2181,1766,3153,-1,2818,3051,3659,-1,3526,2932,1807,-1,1985,2084,3012,-1,1877,1922,2688,-1,3051,2832,2998,-1,2422,1373,2406,-1,1766,895,1807,-1,2239,2311,2181,-1,2311,1744,2181,-1,2470,2531,1741,-1,3054,2790,2866,-1,3465,2925,3384,-1,1847,2498,2601,-1,818,746,1255,-1,2655,2274,2339,-1,2515,2658,2108,-1,3182,2588,1870,-1,393,380,545,-1,1220,487,1388,-1,3099,2435,2534,-1,1901,3040,3126,-1,2116,787,3126,-1,2403,1353,1395,-1,3441,3492,3523,-1,2737,1548,2849,-1,2969,2821,3064,-1,2980,3155,3730,-1,3730,3222,1937,-1,3698,3359,3023,-1,1632,2667,2651,-1,727,639,699,-1,1101,2096,2053,-1,2113,2134,2722,-1,1207,2864,639,-1,2096,2590,2626,-1,2113,2722,2721,-1,1134,2134,2113,-1,725,657,1324,-1,1956,2711,2432,-1,2711,1956,1905,-1,301,1803,1986,-1,828,1803,1038,-1,3442,3098,2886,-1,1953,2441,1905,-1,2459,3191,2711,-1,1526,2259,2350,-1,2259,3251,3200,-1,135,401,247,-1,1355,2242,2291,-1,444,247,401,-1,2350,3200,2842,-1,934,1526,1729,-1,247,444,710,-1,761,1468,743,-1,2242,1355,1992,-1,3673,3168,3019,-1,437,221,710,-1,271,126,83,-1,888,717,122,-1,276,909,670,-1,1640,2153,2660,-1,623,289,719,-1,2088,2215,2693,-1,1693,1380,1810,-1,1693,2368,2102,-1,498,324,747,-1,2401,1395,1386,-1,3685,3523,3386,-1,3240,3443,2828,-1,3331,2279,2695,-1,2695,1573,1758,-1,2693,2215,2553,-1,1457,2102,1663,-1,923,1769,1502,-1,2691,3467,3332,-1,2091,2184,499,-1,2489,1542,1406,-1,2646,2691,1681,-1,384,309,730,-1,2565,2184,2385,-1,806,608,309,-1,1247,757,1427,-1,793,1406,1542,-1,3231,3283,3447,-1,726,85,138,-1,1690,680,780,-1,3334,2945,3534,-1,2477,3053,2684,-1,559,803,516,-1,2042,1570,2453,-1,3548,3476,3165,-1,2612,3592,2913,-1,2963,3495,3089,-1,3245,3334,3309,-1,3165,2625,2841,-1,2756,2593,3334,-1,2381,2652,2346,-1,1200,1679,1214,-1,1616,1649,748,-1,644,1214,598,-1,559,860,1007,-1,338,847,907,-1,803,1007,823,-1,1331,771,866,-1,1658,847,1420,-1,2172,1694,2634,-1,2953,2031,2505,-1,1384,862,1235,-1,2598,3413,2834,-1,3572,3405,3618,-1,3608,3230,3006,-1,3230,2677,3006,-1,2778,2592,3005,-1,3005,3405,3630,-1,1915,1339,1360,-1,832,442,81,-1,918,561,1154,-1,1252,924,630,-1,708,893,1175,-1,1162,732,1164,-1,708,595,732,-1,2647,2745,2944,-1,2882,2445,2647,-1,1965,1503,1736,-1,1343,1252,893,-1,2290,2125,2247,-1,2424,2290,2247,-1,2398,3262,3025,-1,3179,3430,2621,-1,2349,2669,3025,-1,2734,2070,2282,-1,2282,1949,1504,-1,2332,2313,2174,-1,1776,1533,1665,-1,2478,1816,2758,-1,1888,1350,1316,-1,956,1665,1533,-1,1346,548,1046,-1,1476,1613,1648,-1,3138,3657,3109,-1,2609,2482,3208,-1,1840,1832,2114,-1,3208,3095,3430,-1,2063,3279,2663,-1,2746,3166,3497,-1,735,2034,1771,-1,408,1191,468,-1,811,590,115,-1,2578,1886,1882,-1,2261,1128,1294,-1,3445,3464,3183,-1,2847,2801,2342,-1,1470,857,753,-1,3031,3111,2155,-1,2344,2342,2744,-1,1276,1470,1882,-1,3403,2364,1798,-1,1834,1499,1624,-1,3435,3328,2892,-1,2640,2063,1689,-1,2860,2567,3678,-1,2860,3036,2935,-1,1191,963,1336,-1,1397,2138,1689,-1,2749,2119,2214,-1,2975,2749,2582,-1,2455,2894,3037,-1,460,1064,580,-1,307,922,412,-1,1068,2119,1064,-1,2361,2537,1932,-1,2753,3311,3294,-1,1835,1907,2429,-1,1551,1624,1521,-1,2046,1651,2100,-1,1577,1638,1842,-1,642,510,913,-1,968,356,754,-1,2365,1759,2205,-1,2896,2330,2017,-1,2431,582,330,-1,2476,2334,1371,-1,584,1936,2062,-1,3123,3383,3343,-1,1371,2334,1878,-1,256,453,452,-1,1978,1014,1212,-1,3591,3357,3559,-1,2750,3388,3508,-1,193,190,355,-1,1413,622,357,-1,843,433,976,-1,3627,3559,3642,-1,3070,3508,3128,-1,610,959,1566,-1,433,193,214,-1,795,357,843,-1,3322,2973,2418,-1,2656,3360,2764,-1,2170,2439,2425,-1,715,1528,1774,-1,976,2220,1219,-1,2444,1630,2377,-1,1802,665,1676,-1,2220,1833,1879,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getethmoid_Geo_5_109_normalIndex_8()
		{
			int[] value = {2600,2890,2408,-1,2554,1830,1790,-1,1124,858,665,-1,420,349,883,-1,626,786,1054,-1,611,349,232,-1,2123,1341,1041,-1,1994,2064,1018,-1,2863,1981,2159,-1,3565,3585,3171,-1,2380,2520,3199,-1,2929,2579,3585,-1,2579,2929,2388,-1,1165,1977,1670,-1,1948,2190,1669,-1,1229,1948,1669,-1,775,1179,916,-1,1772,989,1044,-1,2231,1894,2277,-1,2231,1868,1894,-1,2028,2235,1726,-1,3354,2813,3319,-1,2075,2345,2611,-1,3215,3632,3717,-1,2545,2175,3509,-1,1390,764,968,-1,3290,2997,2803,-1,672,764,1227,-1,653,628,698,-1,1984,1801,1398,-1,1274,1183,647,-1,3483,2959,2833,-1,1801,2714,2889,-1,2056,2092,1183,-1,3607,3674,3280,-1,495,1055,397,-1,2918,3190,3325,-1,2524,2574,2011,-1,2061,1332,2011,-1,1706,2060,1887,-1,1645,2054,1748,-1,2175,2079,2109,-1,2054,2355,2287,-1,3144,2516,3280,-1,2394,2548,2109,-1,2517,2287,2355,-1,2394,2725,2918,-1,2779,2517,2449,-1,1577,1842,1909,-1,205,109,390,-1,309,385,319,-1,1909,2829,2044,-1,2044,2829,2903,-1,3092,2284,3045,-1,3412,2696,2280,-1,2468,2466,1845,-1,2466,1959,1845,-1,2147,1592,2236,-1,1903,660,1145,-1,1702,2115,1562,-1,310,451,82,-1,3301,3356,2354,-1,73,315,112,-1,1699,3049,2709,-1,217,245,209,-1,124,182,210,-1,153,557,1168,-1,1271,1168,557,-1,2163,2317,2412,-1,1851,2286,1646,-1,2915,2619,2504,-1,1482,669,835,-1,571,484,399,-1,727,461,711,-1,1797,1100,805,-1,2739,2479,2506,-1,2799,2362,2465,-1,1481,1614,1582,-1,199,288,714,-1,1292,714,288,-1,464,709,838,-1,3493,3159,3092,-1,1495,1594,1626,-1,2035,3116,3001,-1,267,1763,339,-1,3412,2280,1763,-1,1583,892,300,-1,992,1185,1592,-1,662,946,944,-1,244,1268,1394,-1,2468,3248,2466,-1,3579,3187,3193,-1,3415,2881,2867,-1,3602,3010,3020,-1,1195,2144,2209,-1,1126,2008,1944,-1,2716,2434,2412,-1,310,827,781,-1,1132,82,168,-1,1810,1595,1927,-1,1441,1448,1401,-1,1312,839,612,-1,612,1863,1312,-1,846,2149,2019,-1,1842,1896,1822,-1,2809,2877,2960,-1,2539,2165,1828,-1,1144,292,183,-1,585,282,283,-1,61,227,270,-1,283,130,270,-1,1174,1034,910,-1,661,387,793,-1,570,648,821,-1,772,1721,1749,-1,1749,1721,1196,-1,772,1537,603,-1,1451,231,238,-1,1367,2211,1584,-1,631,1045,388,-1,1723,1309,1674,-1,3116,2369,2765,-1,244,1119,1268,-1,3285,3288,3425,-1,1659,1940,1493,-1,970,536,502,-1,118,99,249,-1,447,649,418,-1,1911,361,1483,-1,1483,361,196,-1,2967,2099,1750,-1,2624,1891,1749,-1,1911,1483,1926,-1,643,584,110,-1,1796,1835,2429,-1,2130,2097,2165,-1,2659,2271,2429,-1,3137,2429,2483,-1,244,200,1281,-1,1091,992,722,-1,174,194,724,-1,696,402,449,-1,461,727,572,-1,657,904,1102,-1,2716,2950,3247,-1,2163,2438,1925,-1,1338,846,848,-1,899,112,315,-1,3699,3415,3491,-1,1029,758,651,-1,3265,2903,2829,-1,1188,2670,1065,-1,1851,1646,781,-1,3369,3504,3260,-1,3010,3511,2974,-1,1539,1146,1752,-1,1487,1374,2359,-1,534,1817,478,-1,242,782,814,-1,38,1258,465,-1,465,400,744,-1,1789,242,1881,-1,2757,3530,3248,-1,758,1194,942,-1,960,1080,624,-1,175,296,30,-1,394,373,30,-1,679,30,421,-1,558,819,996,-1,1760,1512,418,-1,756,491,651,-1,2494,1379,817,-1,1379,1047,774,-1,3242,3364,2236,-1,2591,932,1206,-1,1846,1506,1787,-1,2618,1568,1558,-1,1558,1495,1653,-1,1558,1107,1292,-1,709,714,1292,-1,1204,1240,1143,-1,669,1482,1104,-1,1201,426,669,-1,1869,877,1662,-1,655,750,1132,-1,1243,181,113,-1,78,1237,1579,-1,2018,2312,2253,-1,788,880,1805,-1,1347,1750,2099,-1,3390,2800,2880,-1,2704,2781,3471,-1,2698,3446,3178,-1,2630,2074,2781,-1,2074,2690,3471,-1,3330,2074,1257,-1,3611,2300,638,-1,687,1921,3611,-1,286,1966,837,-1,1358,273,634,-1,2641,3050,2668,-1,2624,2644,2414,-1,2461,3387,3437,-1,3437,2835,3427,-1,1857,2699,1236,-1,1857,2386,2699,-1,266,240,568,-1,3451,3387,2824,-1,266,1236,1269,-1,1098,1363,703,-1,1269,1236,2699,-1,1325,345,1839,-1,3181,3143,3204,-1,2562,1786,1839,-1,1098,703,859,-1,640,544,1095,-1,1514,1391,2322,-1,3181,3151,3143,-1,506,863,1601,-1,1899,2326,2353,-1,3356,3029,2819,-1,1170,2322,2873,-1,842,523,1412,-1,197,202,640,-1,197,1899,1277,-1,790,2427,2047,-1,345,334,2047,-1,345,1325,480,-1,1484,2077,3181,-1,1435,863,480,-1,131,523,842,-1,203,265,245,-1,250,1269,1458,-1,3172,1860,1045,-1,296,223,482,-1,692,1322,1299,-1,987,911,278,-1,209,210,182,-1,1271,1913,1168,-1,2460,3117,2580,-1,262,124,1529,-1,113,297,1176,-1,1435,1277,2353,-1,1144,1585,1050,-1,388,1045,228,-1,1251,957,1045,-1,1451,1281,231,-1,3636,3704,3530,-1,217,182,110,-1,129,277,203,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getethmoid_Geo_5_109_normalIndex_9()
		{
			int[] value = {880,227,1027,-1,367,127,204,-1,2757,88,424,-1,1195,982,624,-1,970,1126,960,-1,1539,731,451,-1,2943,3378,3043,-1,660,194,112,-1,848,464,1749,-1,838,1749,464,-1,3159,3493,3185,-1,3092,3045,3493,-1,2829,1909,3265,-1,2618,2591,1496,-1,2046,1624,1896,-1,2480,2739,2506,-1,1663,2102,2115,-1,1810,1822,2021,-1,2977,2627,2189,-1,2977,1964,1927,-1,774,159,118,-1,1375,1114,2057,-1,604,3096,1862,-1,2859,2463,3161,-1,3381,2732,3069,-1,844,274,800,-1,3376,3096,3439,-1,940,1344,1261,-1,3096,3244,3628,-1,1344,1746,1261,-1,3628,3244,3691,-1,1396,1549,1746,-1,3593,3691,3244,-1,2279,3368,2613,-1,1250,1209,1573,-1,1256,739,948,-1,1719,1256,948,-1,1118,1112,526,-1,1742,800,188,-1,3069,2856,3284,-1,477,1302,1742,-1,2105,2816,2154,-1,3702,3382,3379,-1,3506,3090,2907,-1,2570,2166,2059,-1,2248,2907,2120,-1,2907,2570,2120,-1,1475,2120,1850,-1,802,1131,1178,-1,985,1314,1160,-1,589,802,1094,-1,1581,1110,1701,-1,2971,2283,2822,-1,2597,2198,2093,-1,3149,2729,3169,-1,1430,943,2457,-1,1522,2025,3221,-1,3453,3312,3259,-1,3453,3457,3575,-1,3306,3103,3274,-1,1171,1902,1567,-1,2941,3258,3447,-1,1273,1399,2025,-1,1044,989,825,-1,3333,2876,2388,-1,2388,2845,3333,-1,2140,2388,2025,-1,2343,1430,2244,-1,1677,1773,799,-1,864,505,825,-1,3150,2628,2623,-1,1853,2409,2524,-1,972,1085,797,-1,1153,1378,1935,-1,2091,1069,1273,-1,766,340,518,-1,2941,1317,1273,-1,1273,2184,2091,-1,1153,145,797,-1,816,797,145,-1,2628,3150,2738,-1,2876,3221,2025,-1,2876,3333,3221,-1,2388,2876,2025,-1,2025,1567,1902,-1,1871,2457,1181,-1,766,234,201,-1,1273,1522,2941,-1,853,1181,2457,-1,2457,943,791,-1,2938,3274,3103,-1,1273,1069,785,-1,3453,3259,3306,-1,201,234,1272,-1,621,1610,794,-1,3079,2360,2602,-1,1110,769,1602,-1,589,1094,1800,-1,407,985,446,-1,1066,1475,1656,-1,1475,1438,2248,-1,2570,2059,2015,-1,2255,3081,2907,-1,3726,3382,3702,-1,3726,3169,3382,-1,2059,2166,2200,-1,2154,2816,2360,-1,1742,1302,596,-1,526,556,76,-1,2972,3598,3393,-1,513,477,188,-1,3551,3205,3184,-1,2671,1950,2604,-1,2671,2129,1950,-1,2237,2298,1837,-1,1546,747,1256,-1,324,718,1256,-1,2613,3074,604,-1,3368,3593,3074,-1,1059,1192,1396,-1,3628,3691,3349,-1,1261,1746,604,-1,666,965,940,-1,404,809,604,-1,274,218,188,-1,1636,844,596,-1,3406,3284,2859,-1,3096,2463,1862,-1,116,118,159,-1,1842,2189,2627,-1,2739,2539,2960,-1,2046,1842,1655,-1,1551,1712,1822,-1,3057,3137,2483,-1,2328,2618,1558,-1,170,551,288,-1,1909,938,704,-1,2487,3265,1909,-1,938,1400,1568,-1,1552,1495,1626,-1,104,709,464,-1,226,104,464,-1,471,429,60,-1,827,310,1132,-1,30,373,175,-1,465,1258,376,-1,3516,3337,3682,-1,2566,2670,2603,-1,127,367,333,-1,1540,585,788,-1,43,129,614,-1,129,43,277,-1,119,282,195,-1,3530,3105,3164,-1,1367,957,1585,-1,1342,238,573,-1,1311,238,1309,-1,383,1750,378,-1,1393,1899,1461,-1,297,243,1392,-1,171,181,252,-1,262,563,557,-1,3094,2577,2027,-1,557,153,262,-1,987,1322,911,-1,152,182,153,-1,1966,2414,3050,-1,662,992,1091,-1,242,22,1604,-1,127,1082,204,-1,68,88,51,-1,3140,3029,3356,-1,20,253,109,-1,2354,3356,3146,-1,423,1484,287,-1,1239,1211,1412,-1,2795,790,1484,-1,243,297,790,-1,514,202,197,-1,1435,700,473,-1,191,131,1904,-1,3042,2933,2648,-1,2689,2850,2819,-1,3301,3447,3283,-1,1601,863,1435,-1,243,506,1392,-1,2322,2078,2873,-1,703,386,514,-1,1786,1098,1325,-1,1325,1839,1786,-1,1484,3181,2795,-1,160,109,205,-1,1786,2513,1880,-1,2824,2952,3451,-1,1427,436,2300,-1,807,577,1019,-1,215,568,281,-1,1241,1857,1236,-1,2644,1653,2668,-1,500,1089,1495,-1,273,691,236,-1,328,720,834,-1,2668,837,2641,-1,2668,1089,837,-1,834,720,681,-1,793,387,396,-1,2835,3471,2690,-1,1463,308,525,-1,720,350,681,-1,1681,2385,2698,-1,2690,3520,3446,-1,425,585,1334,-1,1334,1469,425,-1,2687,2630,3293,-1,1347,2099,2037,-1,1597,1783,1271,-1,124,210,1605,-1,3117,2564,2580,-1,538,20,250,-1,3459,3504,3425,-1,1132,2423,2050,-1,1716,2413,2266,-1,660,1903,1900,-1,288,551,932,-1,1568,1495,1558,-1,1496,1161,704,-1,1292,2328,1558,-1,2224,2487,3024,-1,2224,482,2487,-1,2464,1047,1379,-1,1512,774,418,-1,428,421,296,-1,970,421,536,-1,960,1126,1080,-1,1195,624,1080,-1,982,400,624,-1,1620,1194,865,-1,1673,982,1195,-1,744,400,982,-1,223,491,756,-1,1043,22,242,-1,852,651,591,-1,865,1194,872,-1,2670,3339,2411,-1,1245,2127,2141,-1,3723,3644,3682,-1,3512,3580,3579,-1,3272,3026,3504,-1,1015,451,310,-1,2670,1620,1065,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getethmoid_Geo_5_109_normalIndex_10()
		{
			int[] value = {1489,1604,38,-1,3493,3339,3417,-1,865,51,1065,-1,1065,51,88,-1,1278,1580,60,-1,230,584,1312,-1,614,1312,1863,-1,716,614,2019,-1,1575,1027,2149,-1,3612,3516,3705,-1,2141,2131,1482,-1,1482,1447,2141,-1,904,692,1299,-1,2739,2402,2102,-1,463,724,1125,-1,724,1364,1125,-1,187,925,530,-1,231,415,238,-1,1281,1732,204,-1,17,200,244,-1,17,123,295,-1,1796,2271,1828,-1,2429,2855,2659,-1,2475,2402,2739,-1,204,328,367,-1,530,1358,581,-1,1469,2800,3028,-1,3247,2950,3672,-1,3554,3606,3272,-1,649,1217,418,-1,996,502,558,-1,662,944,1074,-1,204,1082,1016,-1,127,267,339,-1,1045,573,228,-1,573,1367,1584,-1,187,603,1537,-1,772,1891,1793,-1,821,648,908,-1,385,309,608,-1,113,287,297,-1,1585,1144,1077,-1,523,466,1147,-1,1283,1251,1296,-1,282,130,283,-1,176,1347,1295,-1,195,282,425,-1,1144,1050,292,-1,910,1034,466,-1,1834,2429,1553,-1,1828,2271,2324,-1,2895,2855,2851,-1,2739,2960,2877,-1,1527,2100,1637,-1,2149,846,1338,-1,2074,2930,2111,-1,1099,1076,1010,-1,1550,1132,891,-1,1067,891,750,-1,3504,3026,3260,-1,2032,2163,1671,-1,822,1925,1957,-1,996,1954,1955,-1,3337,3076,2915,-1,1304,1997,2024,-1,3511,2937,2974,-1,1881,2316,2375,-1,478,424,68,-1,3065,3152,1817,-1,3152,2010,1817,-1,497,299,534,-1,3530,3164,3078,-1,3704,3175,3202,-1,2897,2956,3327,-1,3339,2696,3412,-1,1495,1552,1557,-1,3493,3232,3185,-1,709,104,199,-1,932,2328,1292,-1,2618,2328,2591,-1,73,463,414,-1,660,1900,1787,-1,2488,2502,2877,-1,60,489,462,-1,696,664,402,-1,805,461,268,-1,3033,2805,3308,-1,3094,2027,2840,-1,182,124,262,-1,245,69,209,-1,181,117,113,-1,203,277,171,-1,1264,1597,1139,-1,2941,3447,3301,-1,502,239,558,-1,1240,1716,1143,-1,1653,2644,1749,-1,1969,944,1912,-1,1394,1938,946,-1,3116,2765,3232,-1,1380,159,1595,-1,319,518,340,-1,1317,2941,2354,-1,1986,2540,2040,-1,1496,1524,1161,-1,2517,2725,2394,-1,2548,3325,2906,-1,3144,3695,3490,-1,2109,2906,2395,-1,1935,1748,2135,-1,1242,1588,873,-1,1213,972,816,-1,2409,1762,1999,-1,2918,2725,2713,-1,2496,2449,1382,-1,658,495,145,-1,3190,3607,3325,-1,1801,2122,1398,-1,3192,3582,3365,-1,479,647,698,-1,1767,2075,2611,-1,2345,1345,1115,-1,3312,2724,2838,-1,2013,1772,2182,-1,1726,1894,871,-1,2929,2845,2388,-1,841,1974,1044,-1,824,1137,1152,-1,3171,3585,2863,-1,2159,1000,1767,-1,3632,3215,3171,-1,1041,855,1951,-1,420,937,808,-1,3498,3148,3003,-1,976,665,858,-1,2808,2662,2543,-1,976,1833,2220,-1,3269,2444,2664,-1,1630,1219,2220,-1,1676,665,715,-1,2425,3000,2656,-1,3527,3269,2772,-1,1778,795,1459,-1,357,193,433,-1,355,959,610,-1,2112,3070,2541,-1,3508,3627,3466,-1,1459,843,1219,-1,433,214,665,-1,3000,2439,2541,-1,1778,2212,795,-1,527,1088,959,-1,1866,2750,3070,-1,3559,3357,2973,-1,1212,1014,575,-1,452,453,885,-1,1878,2794,2718,-1,3268,2748,3397,-1,2257,1169,1978,-1,1169,1014,1978,-1,2544,1278,889,-1,102,112,899,-1,2334,2476,2680,-1,582,2431,2454,-1,531,2451,1708,-1,3084,2205,2330,-1,1478,1525,968,-1,356,510,642,-1,1637,1599,1527,-1,1655,1643,2046,-1,1691,1705,1652,-1,1652,1988,1685,-1,1918,1827,1725,-1,2537,2582,2214,-1,2753,2009,2119,-1,1068,922,1932,-1,307,391,1049,-1,412,922,1068,-1,39,137,427,-1,1777,1711,1995,-1,3351,2919,2894,-1,3180,2919,2848,-1,3022,3036,2892,-1,1791,2034,1417,-1,3286,3166,2567,-1,3036,2860,3569,-1,2567,1791,2228,-1,1612,1465,2663,-1,1798,2364,1021,-1,1021,1087,1798,-1,760,1710,1696,-1,2744,3241,3021,-1,3068,2775,2773,-1,327,616,753,-1,3277,3546,3432,-1,3385,3445,3111,-1,2847,3432,3241,-1,3145,3385,3031,-1,857,472,327,-1,2550,2746,3497,-1,3546,3600,3464,-1,3111,3183,2180,-1,1023,578,532,-1,3102,2578,2344,-1,1417,735,468,-1,562,1021,887,-1,2228,2364,3403,-1,3569,3522,3395,-1,3109,3262,2398,-1,2786,2609,3208,-1,3138,2857,3542,-1,2759,3109,2384,-1,2081,1897,2609,-1,2546,2117,2857,-1,1730,1403,2546,-1,2424,2784,2356,-1,511,548,1346,-1,548,186,547,-1,708,1175,954,-1,956,547,186,-1,1633,1316,954,-1,1366,1533,1619,-1,1357,2151,1665,-1,1888,2121,1361,-1,1816,1644,1316,-1,1533,1776,1686,-1,2151,2313,2080,-1,1949,2174,2121,-1,1504,1644,1816,-1,2405,2080,2313,-1,2264,1779,2049,-1,2332,2070,2734,-1,2270,1831,2264,-1,3477,3179,2621,-1,2125,2478,2758,-1,2384,2290,2532,-1,2759,2784,2546,-1,1919,1409,1436,-1,1175,1436,1409,-1,2089,2445,2882,-1,1919,1615,1409,-1,732,595,1164,-1,893,708,732,-1,630,1051,1252,-1,2924,2573,2595,-1,3236,2666,2778,-1,3405,3005,3486,-1,3127,3618,2761,-1,2404,2771,2225,-1,832,1952,1407,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getethmoid_Geo_5_109_normalIndex_11()
		{
			int[] value = {862,442,1407,-1,2031,1384,1667,-1,2272,3127,2761,-1,3476,3358,3252,-1,3324,3080,3048,-1,2634,1694,1658,-1,1420,847,1133,-1,847,565,1133,-1,516,564,138,-1,146,565,847,-1,879,552,598,-1,726,1607,1991,-1,1649,2346,1751,-1,2499,2530,2415,-1,2625,2652,2381,-1,3089,2945,2522,-1,3534,2945,3089,-1,3165,3476,3252,-1,3245,2514,2561,-1,2042,2453,2756,-1,2900,3309,3534,-1,2945,3334,2593,-1,3486,3041,3253,-1,1257,1542,1681,-1,219,849,908,-1,608,806,1019,-1,757,849,436,-1,499,1069,2091,-1,1621,1933,1121,-1,1621,1848,1933,-1,1769,1497,2315,-1,1681,2691,2871,-1,1970,2184,2565,-1,730,309,499,-1,494,757,806,-1,2489,2646,1542,-1,1406,908,849,-1,3214,2646,2489,-1,766,1069,340,-1,403,1097,1287,-1,655,1457,750,-1,168,676,655,-1,3377,3075,3139,-1,3410,3310,2693,-1,2707,3075,2979,-1,3331,3686,3561,-1,3443,3310,3410,-1,3523,2416,3386,-1,897,985,407,-1,1693,2102,1457,-1,3015,2693,3310,-1,2029,2210,1464,-1,1223,1892,1297,-1,2153,2830,2660,-1,2260,2153,1640,-1,3015,2830,3059,-1,2730,2260,1668,-1,122,126,271,-1,888,1232,717,-1,126,475,83,-1,1083,437,710,-1,710,1266,1083,-1,3622,2842,3200,-1,1355,743,1468,-1,1468,1992,1355,-1,221,761,363,-1,1266,710,444,-1,810,135,363,-1,3200,3251,3673,-1,784,301,382,-1,2955,2432,3106,-1,2633,2459,2441,-1,1324,657,1102,-1,727,1228,1207,-1,1156,699,2551,-1,745,1260,1117,-1,1675,2134,1134,-1,727,1207,639,-1,2575,2636,2747,-1,1260,2864,2667,-1,971,2551,1854,-1,3085,3698,3219,-1,1024,1859,2222,-1,272,586,856,-1,2302,1052,950,-1,3510,3730,3421,-1,2879,2887,1534,-1,874,2051,2849,-1,3030,3288,3285,-1,2512,2993,3217,-1,3132,3186,3099,-1,3186,2921,2557,-1,2836,3182,2103,-1,3012,3167,2957,-1,3125,2981,2655,-1,746,818,206,-1,2601,2498,3465,-1,1741,833,1598,-1,1744,1254,1766,-1,2665,2832,3051,-1,3119,2998,3077,-1,2325,3126,3320,-1,2981,3125,2740,-1,2638,3696,3158,-1,2406,3468,3526,-1,3621,3480,3474,-1,3350,3099,3314,-1,2981,3696,3014,-1,2981,3158,3696,-1,3458,3696,3484,-1,3005,2592,2294,-1,906,935,554,-1,3475,2650,2761,-1,2307,1541,2106,-1,3548,2841,2674,-1,3321,2674,2558,-1,644,771,619,-1,983,1541,1813,-1,3400,3479,3615,-1,3046,2185,2807,-1,2158,417,1561,-1,2148,2844,2234,-1,2615,2968,3039,-1,2294,2616,2629,-1,2949,3005,2629,-1,3391,3238,3249,-1,2673,1841,949,-1,2844,2148,2615,-1,3195,3329,3295,-1,2158,2728,2620,-1,177,47,141,-1,1008,2564,988,-1,1322,2240,1299,-1,1136,1593,2326,-1,3709,3643,3721,-1,1387,831,150,-1,2240,1953,1299,-1,3634,3576,3653,-1,3732,3707,3553,-1,3606,3560,3645,-1,3264,1111,991,-1,1035,1591,1564,-1,3485,3692,3708,-1,3719,3710,3147,-1,3665,3640,3624,-1,3353,3292,3472,-1,2580,1008,1303,-1,1979,2240,1867,-1,177,1461,1141,-1,688,705,351,-1,351,163,169,-1,1136,141,139,-1,3517,3261,3229,-1,3229,3176,3473,-1,3291,3399,3550,-1,2796,3398,3107,-1,3696,2374,3484,-1,1976,2004,3016,-1,928,2966,3032,-1,898,3061,2999,-1,3724,3681,3524,-1,3581,3564,3712,-1,3637,3605,3580,-1,3372,3664,3733,-1,75,801,625,-1,3392,2701,2521,-1,3052,3176,2978,-1,2676,2556,1877,-1,325,2304,2387,-1,3524,3541,3553,-1,3700,3639,3531,-1,3605,3709,3729,-1,2469,625,801,-1,2769,1030,1031,-1,46,736,55,-1,93,13,29,-1,1914,898,79,-1,1026,92,128,-1,103,180,155,-1,2004,3604,3394,-1,3604,2004,3587,-1,2776,1713,1285,-1,3670,3635,3239,-1,3278,2584,2501,-1,2767,3684,2852,-1,2986,3719,2936,-1,3584,3670,3623,-1,3463,2804,3469,-1,2928,2817,3318,-1,792,645,713,-1,3229,3473,3485,-1,3394,3203,3270,-1,3448,2206,1884,-1,620,952,405,-1,1037,2206,1328,-1,2825,2178,2563,-1,3707,3112,2999,-1,3278,2681,3558,-1,2755,2853,2723,-1,3433,3587,3589,-1,79,128,75,-1,269,222,7,-1,405,713,673,-1,587,1037,620,-1,405,969,713,-1,3624,3599,3577,-1,3210,3289,3296,-1,3217,2993,3480,-1,3093,2955,3106,-1,3505,2682,2608,-1,2970,1318,2898,-1,2682,3055,2875,-1,3142,3239,3683,-1,3481,2001,1843,-1,2001,3481,3461,-1,2020,2825,2817,-1,3532,3528,3276,-1,1843,3538,3481,-1,3568,3563,3555,-1,3346,3461,3289,-1,3304,3108,3191,-1,3669,3596,3665,-1,3093,3257,2955,-1,3271,1369,1901,-1,2590,2096,787,-1,1629,1924,1238,-1,1625,1518,34,-1,422,560,483,-1,67,19,422,-1,2142,1625,3124,-1,695,381,1120,-1,105,416,560,-1,875,422,44,-1,553,107,248,-1,162,1924,1327,-1,335,1715,156,-1,258,156,1208,-1,1111,23,991,-1,15,164,147,-1,986,978,77,-1,979,94,1079,-1,1155,912,58,-1,149,263,132,-1,149,41,161,-1,597,599,275,-1,574,650,107,-1,2204,2433,2417,-1,1002,613,225,-1,1208,1715,1159,-1,172,342,1009,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getethmoid_Geo_5_109_normalIndex_12()
		{
			int[] value = {1715,1208,156,-1,597,290,496,-1,290,379,41,-1,457,574,553,-1,107,432,248,-1,23,34,37,-1,804,50,97,-1,831,132,263,-1,695,1421,999,-1,767,579,381,-1,2682,2240,1971,-1,1280,322,1166,-1,293,47,377,-1,1097,403,224,-1,211,141,311,-1,211,139,141,-1,1002,1852,671,-1,1852,1002,1280,-1,688,377,641,-1,688,293,377,-1,27,77,2,-1,27,63,77,-1,1,84,11,-1,1,95,84,-1,21,58,65,-1,21,80,58,-1,198,1600,1629,-1,198,533,1600,-1,501,539,254,-1,501,702,539,-1,41,9,42,-1,41,149,9,-1,31,27,14,-1,31,8,27,-1,1061,91,1086,-1,1061,100,91,-1,24,67,33,-1,67,24,19,-1,11,35,1,-1,35,11,62,-1,488,166,225,-1,166,488,164,-1,14,1238,31,-1,521,1238,14,-1,263,248,150,-1,248,263,458,-1,14,2,5,-1,14,27,2,-1,555,362,229,-1,555,457,362,-1,16,50,8,-1,97,50,16,-1,1327,1600,375,-1,1327,1924,1600,-1,3734,3667,3661,-1,3734,3715,3667,-1,2898,3220,3194,-1,2898,3461,3220,-1,3063,1500,1442,-1,1500,3063,3276,-1,3296,3461,3481,-1,3296,3289,3461,-1,3683,3264,3142,-1,3683,3528,3264,-1,3257,3108,3304,-1,3108,3257,3093,-1,3409,3438,3318,-1,3409,3518,3438,-1,3614,3462,3428,-1,3462,3614,3650,-1,3570,3715,3734,-1,3715,3570,3544,-1,629,352,343,-1,645,352,629,-1,144,98,103,-1,144,148,98,-1,87,56,36,-1,87,92,56,-1,3732,3032,2966,-1,3690,3032,3732,-1,2206,587,1884,-1,1037,587,2206,-1,1190,7,1282,-1,52,7,1190,-1,1884,1001,1337,-1,673,1001,1884,-1,1980,2817,2928,-1,2020,2817,1980,-1,1388,1724,2068,-1,1724,1388,1158,-1,3067,3652,3677,-1,3300,3652,3067,-1,2982,3616,3676,-1,2947,3616,2982,-1,92,966,56,-1,1026,966,92,-1,1148,148,1056,-1,1148,98,148,-1,789,2421,2521,-1,789,677,2421,-1,3638,3727,3712,-1,3727,3638,3619,-1,3454,3557,3537,-1,3454,3515,3557,-1,2527,3307,3292,-1,2527,2387,3307,-1,2421,3353,3345,-1,2421,2769,3353,-1,1078,25,974,-1,1078,74,25,-1,180,1030,155,-1,1031,1030,180,-1,3473,3052,3270,-1,3052,3473,3176,-1,3655,3666,3668,-1,3663,3666,3655,-1,3689,3703,3681,-1,3689,3723,3703,-1,3654,3716,3731,-1,3654,3663,3716,-1,3703,3515,3454,-1,3703,3713,3515,-1,3706,2965,3017,-1,3670,2965,3706,-1,2966,966,3112,-1,928,966,2966,-1,3355,1368,2374,-1,3355,2683,1368,-1,509,260,184,-1,389,260,509,-1,1136,169,1008,-1,169,1136,139,-1,2460,1979,2577,-1,1982,1979,2460,-1,3676,3626,3729,-1,3616,3626,3676,-1,3697,3725,3684,-1,3725,3697,3688,-1,3670,3667,3623,-1,3670,3706,3667,-1,3708,3557,3485,-1,3718,3557,3708,-1,991,3239,3142,-1,991,912,3239,-1,3067,845,3300,-1,1079,845,3067,-1,1086,2936,3147,-1,1086,978,2936,-1,2767,826,2982,-1,2767,804,826,-1,2762,1111,3264,-1,1111,2762,999,-1,3303,3256,3246,-1,3256,3303,3400,-1,2893,2949,2728,-1,3041,2949,2893,-1,3088,3233,3253,-1,3233,3088,3246,-1,3521,3195,3671,-1,3195,3521,2558,-1,3160,3615,3479,-1,3160,3535,3615,-1,507,741,983,-1,507,134,741,-1,2133,2797,2685,-1,2172,2797,2133,-1,3391,3486,3253,-1,3475,3486,3391,-1,1661,2294,2592,-1,1661,1618,2294,-1,1688,2393,1603,-1,2393,1688,2666,-1,1360,1105,918,-1,1105,1360,1339,-1,2868,3305,3574,-1,2868,2503,3305,-1,2529,3659,3460,-1,2529,2818,3659,-1,2448,3291,3030,-1,2448,2672,3291,-1,2325,2305,2448,-1,2325,3320,2305,-1,2509,1639,2103,-1,1639,2509,2501,-1,2533,2321,2400,-1,2549,2321,2533,-1,1279,1571,1523,-1,1279,1434,1571,-1,2549,2607,2694,-1,2549,2533,2607,-1,2400,2884,2533,-1,2831,2884,2400,-1,2183,1523,1571,-1,2183,2216,1523,-1,2589,2239,2503,-1,2589,2311,2239,-1,694,1807,895,-1,1807,694,2422,-1,2531,2146,1741,-1,2531,2665,2146,-1,2589,3384,2925,-1,2589,3077,3384,-1,1254,746,895,-1,746,1254,1255,-1,2790,2470,2866,-1,2790,2531,2470,-1,1335,1847,1814,-1,1335,1255,1847,-1,833,1829,1598,-1,1829,833,924,-1,3456,3133,3408,-1,3456,3129,3133,-1,1333,1814,1714,-1,1333,1335,1814,-1,3574,3411,3198,-1,3411,3574,3305,-1,3526,3396,3347,-1,3396,3526,3468,-1,3620,3526,3347,-1,2932,3526,3620,-1,2274,2622,2534,-1,2285,2622,2274,-1,3474,2954,2916,-1,3480,2954,3474,-1,2183,2274,2348,-1,2183,2285,2274,-1,2515,2916,2954,-1,3167,2916,2515,-1,2216,2348,3014,-1,2216,2183,2348,-1,2108,1474,1622,-1,2108,1825,1474,-1,1622,915,829,-1,1622,1474,915,-1,2252,2836,2103,-1,2921,2836,2252,-1,393,1388,487,-1,1388,393,1158,-1,2293,1923,1722,-1,2371,1923,2293,-1,3396,2371,2293,-1,3396,3401,2371,-1,3099,3361,2435,-1,3361,3099,3350,-1,1844,1473,2160,-1,1844,1265,1473,-1,2886,3030,3285,-1,2886,2708,3030,-1,3685,3405,3441,-1,3685,3630,3405,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getethmoid_Geo_5_109_normalIndex_13()
		{
			int[] value = {2403,1756,1353,-1,1756,2403,2770,-1,2401,3492,2403,-1,2401,3523,3492,-1,2347,2969,2920,-1,2821,2969,2347,-1,3421,3155,3266,-1,3730,3155,3421,-1,1700,1411,1934,-1,1700,1231,1411,-1,2901,2705,2980,-1,1580,2705,2901,-1,2737,1140,1548,-1,1937,1140,2737,-1,967,2101,2347,-1,1006,2101,967,-1,2101,1052,2302,-1,2101,1006,1052,-1,1024,1937,1859,-1,1140,1937,1024,-1,3188,2964,3359,-1,3188,2751,2964,-1,950,1700,1996,-1,950,1231,1700,-1,1809,2222,2265,-1,1456,2222,1809,-1,3023,2199,2542,-1,3023,2606,2199,-1,1038,3266,828,-1,1038,2911,3266,-1,828,3155,1803,-1,3266,3155,828,-1,725,984,382,-1,1040,984,725,-1,2735,2196,2651,-1,2536,2196,2735,-1,1517,2467,1946,-1,2082,2467,1517,-1,2196,1431,1632,-1,1431,2196,1717,-1,639,2777,699,-1,639,2864,2643,-1,2722,2735,2721,-1,2722,2766,2735,-1,2766,2134,2763,-1,2722,2134,2766,-1,1324,1101,725,-1,1123,1101,1324,-1,1093,1717,1429,-1,1093,1431,1717,-1,810,633,135,-1,810,1210,633,-1,2940,2862,3434,-1,2940,2511,2862,-1,444,1093,934,-1,444,733,1093,-1,1526,2168,1729,-1,1526,2350,2168,-1,3168,2396,3019,-1,3168,2242,2396,-1,221,475,761,-1,83,475,221,-1,3019,2314,2992,-1,2314,3019,2396,-1,1565,2168,2150,-1,1565,1729,2168,-1,1821,1151,1275,-1,1821,1728,1151,-1,670,1578,1275,-1,909,1578,670,-1,3059,3060,2991,-1,3059,3499,3060,-1,289,276,122,-1,289,623,276,-1,2495,2085,2088,-1,2085,2495,2474,-1,289,902,719,-1,289,738,902,-1,759,179,305,-1,759,678,179,-1,2695,3443,3686,-1,2695,2828,3443,-1,2279,1573,2695,-1,1757,1573,2279,-1,770,1209,768,-1,770,1305,1209,-1,233,876,366,-1,498,876,233,-1,2553,2237,2707,-1,2553,2298,2237,-1,1221,1094,1149,-1,1221,897,1094,-1,945,494,323,-1,494,945,923,-1,3332,2565,2871,-1,3332,2754,2565,-1,18,730,434,-1,730,18,384,-1,1300,1958,2162,-1,1116,1958,1300,-1,947,323,535,-1,945,323,947,-1,2883,3332,3250,-1,2754,3332,2883,-1,2905,3482,3157,-1,2905,3323,3482,-1,1933,2048,2653,-1,1848,2048,1933,-1,3211,2262,3370,-1,2262,3211,2301,-1,878,1875,2069,-1,900,1875,878,-1,1466,1121,812,-1,1466,1621,1121,-1,1130,752,627,-1,1130,1288,752,-1,303,601,540,-1,392,601,303,-1,1460,685,684,-1,1460,1445,685,-1,326,312,101,-1,326,486,312,-1,550,337,157,-1,674,337,550,-1,1510,1555,917,-1,1747,1555,1510,-1,512,1267,1226,-1,512,636,1267,-1,2267,1405,1270,-1,2352,1405,2267,-1,2164,2303,2760,-1,2164,2036,2303,-1,2173,3047,2207,-1,3047,2173,3008,-1,3317,3018,3419,-1,3317,2996,3018,-1,2187,2958,2926,-1,2187,2232,2958,-1,3488,3701,3573,-1,3701,3488,3501,-1,281,160,205,-1,160,281,240,-1,3520,3178,3446,-1,3520,3330,3178,-1,2446,1690,1991,-1,2392,1690,2446,-1,516,1234,955,-1,803,1234,516,-1,1536,2016,1253,-1,1536,1898,2016,-1,1570,1298,860,-1,1590,1298,1570,-1,2913,3578,2963,-1,2913,3592,3578,-1,3165,2652,2625,-1,3165,2612,2652,-1,2052,2217,2561,-1,2217,2052,1989,-1,1989,2042,2217,-1,2042,1989,1684,-1,2484,1991,1607,-1,2484,2446,1991,-1,1616,1214,1679,-1,1214,1616,879,-1,1590,1520,1298,-1,1590,1560,1520,-1,907,598,552,-1,866,598,907,-1,1694,907,1658,-1,1694,866,907,-1,955,564,516,-1,1127,564,955,-1,2193,1420,1133,-1,2327,1420,2193,-1,1587,1898,1536,-1,1898,1587,1808,-1,2193,3056,2327,-1,3056,2193,3004,-1,1808,2132,1898,-1,2132,1808,2007,-1,3234,2684,3053,-1,3234,2843,2684,-1,3592,3389,3578,-1,3592,3455,3389,-1,2071,2514,2389,-1,2514,2071,2083,-1,3413,2891,3121,-1,2989,2891,3413,-1,81,689,32,-1,689,81,706,-1,2250,2834,2306,-1,2250,2598,2834,-1,3006,3422,3608,-1,3422,3006,3236,-1,2203,3006,2677,-1,3006,2203,2393,-1,2203,1603,2393,-1,2203,1572,1603,-1,1444,1928,1360,-1,1928,1444,1983,-1,32,712,45,-1,32,689,712,-1,751,1453,1437,-1,751,712,1453,-1,2243,1437,1453,-1,1437,2243,2337,-1,2976,2337,2243,-1,2337,2976,3375,-1,2976,3608,3375,-1,2976,3230,3608,-1,2265,1718,1809,-1,1718,2265,2161,-1,1965,924,1343,-1,1965,1829,924,-1,3408,2882,3131,-1,2882,3408,3133,-1,1333,1812,1436,-1,1812,1333,1714,-1,1812,2363,1919,-1,2338,2363,1812,-1,2398,2349,2290,-1,2398,2669,2349,-1,3429,3025,3262,-1,3429,3071,3025,-1,2282,3025,3071,-1,3025,2282,2376,-1,1504,2376,2282,-1,2376,1504,1672,-1,2049,1686,1776,-1,2049,1779,1686,-1,1366,1627,1348,-1,1366,1634,1627,-1,511,537,241,-1,537,511,595,-1,1346,2081,1354,-1,1346,1897,2081,-1,2759,2356,2784,-1,2356,2759,2532,-1,2005,2114,2482,-1,2005,2026,2114,-1,3179,3208,3430,-1,3263,3208,3179,-1,3217,2293,2068,-1,3217,3347,2293,-1,438,1465,398,-1,2063,1465,438,-1,192,285,259,-1,192,294,285,-1,3022,3183,3464,-1,3022,2586,3183,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getethmoid_Geo_5_109_normalIndex_14()
		{
			int[] value = {2746,2034,3166,-1,1771,2034,2746,-1,1276,590,811,-1,590,1276,1184,-1,3068,3021,3145,-1,3226,3021,3068,-1,1930,1092,1890,-1,1172,1092,1930,-1,3418,3316,3540,-1,3418,3225,3316,-1,546,306,435,-1,546,430,306,-1,2789,2261,2006,-1,2789,3035,2261,-1,2904,3344,2490,-1,2904,3625,3344,-1,921,693,1096,-1,921,435,693,-1,336,408,468,-1,331,408,336,-1,2076,936,1020,-1,936,2076,2095,-1,2095,1036,936,-1,2095,2155,1036,-1,158,532,331,-1,291,532,158,-1,1470,2344,1882,-1,1470,2342,2344,-1,522,125,456,-1,522,208,125,-1,3068,2923,3225,-1,3068,2773,2923,-1,2837,1886,2578,-1,1890,1886,2837,-1,430,115,306,-1,430,251,115,-1,524,1660,1682,-1,524,686,1660,-1,1654,760,1696,-1,1654,1087,760,-1,1737,2585,1765,-1,1737,2637,2585,-1,1652,1682,1660,-1,1652,1685,1682,-1,606,562,294,-1,760,562,606,-1,2596,3395,2637,-1,2596,3313,3395,-1,1689,438,1163,-1,1689,2063,438,-1,467,1336,963,-1,467,887,1336,-1,1397,926,981,-1,926,1397,1163,-1,1725,2296,1697,-1,1947,2296,1725,-1,566,998,142,-1,998,566,1138,-1,2370,2251,1995,-1,2370,2988,2251,-1,1731,1768,1740,-1,1731,1820,1768,-1,1780,1820,1731,-1,1780,1918,1820,-1,1777,1918,1780,-1,1777,1827,1918,-1,1861,1827,1777,-1,1861,1806,1827,-1,1811,1806,1861,-1,1811,1781,1806,-1,3414,3207,3436,-1,3414,3201,3207,-1,2894,2442,3130,-1,2894,2455,2442,-1,3201,2486,3207,-1,3201,2471,2486,-1,1975,2442,2455,-1,1975,1939,2442,-1,2471,1865,2486,-1,2471,1895,1865,-1,1290,1906,1323,-1,1906,1290,1910,-1,1711,1780,1449,-1,1777,1780,1711,-1,796,1323,721,-1,1323,796,1290,-1,1449,1731,1138,-1,1780,1731,1449,-1,431,796,721,-1,431,528,796,-1,580,1032,594,-1,580,1106,1032,-1,391,137,39,-1,391,307,137,-1,1106,1064,1377,-1,580,1064,1106,-1,2119,1377,1064,-1,2119,2009,1377,-1,1820,1725,1471,-1,1820,1918,1725,-1,2340,3097,2361,-1,2340,3073,3097,-1,3073,3436,3097,-1,3073,3414,3436,-1,1553,1770,1635,-1,1907,1770,1553,-1,913,1657,1262,-1,913,1987,1657,-1,1823,2896,2017,-1,2331,2896,1823,-1,2492,2257,2559,-1,1169,2257,2492,-1,3470,2686,3268,-1,3470,2934,2686,-1,2794,2334,3123,-1,2334,2794,1878,-1,330,575,531,-1,330,256,575,-1,3343,3613,3352,-1,3343,3647,3613,-1,622,256,190,-1,575,256,622,-1,3352,3591,3388,-1,3352,3613,3591,-1,527,994,1088,-1,452,994,527,-1,3388,3627,3508,-1,3388,3591,3627,-1,3269,2418,2444,-1,2418,3269,3322,-1,610,1528,715,-1,1566,1528,610,-1,1774,2439,2170,-1,1774,1528,2439,-1,2600,2764,2662,-1,2600,2656,2764,-1,1790,1676,1774,-1,1802,1676,1790,-1,2664,1879,2104,-1,2664,2377,1879,-1,2408,2554,2249,-1,2554,2408,2890,-1,1073,1879,1833,-1,1372,1879,1073,-1,3503,2662,3547,-1,3503,2600,2662,-1,1124,2039,1313,-1,1124,1830,2039,-1,1073,1450,1372,-1,1450,1073,1150,-1,883,1135,937,-1,1135,883,1186,-1,1855,773,1858,-1,1855,723,773,-1,3502,3514,3545,-1,3533,3514,3502,-1,3549,3163,3011,-1,3549,3547,3163,-1,2649,2774,2336,-1,2649,3135,2774,-1,3649,3567,3648,-1,3649,3603,3567,-1,3135,2712,3110,-1,2712,3135,2649,-1,3449,3603,3649,-1,3449,3424,3603,-1,2712,2939,3110,-1,2635,2939,2712,-1,2914,3424,3449,-1,2914,2885,3424,-1,2939,2245,2447,-1,2245,2939,2635,-1,2094,2914,2000,-1,2094,2885,2914,-1,2447,1439,1477,-1,1439,2447,2245,-1,1215,2000,953,-1,1215,2094,2000,-1,1477,740,593,-1,740,1477,1439,-1,690,953,344,-1,690,1215,953,-1,593,481,136,-1,481,593,740,-1,626,344,470,-1,626,690,344,-1,481,232,136,-1,493,232,481,-1,786,470,765,-1,786,626,470,-1,1450,1054,1341,-1,1450,1150,1054,-1,937,929,808,-1,937,1135,929,-1,2171,1341,2123,-1,2171,1450,1341,-1,1018,1687,1994,-1,1687,1018,990,-1,3120,2002,1951,-1,3120,3038,2002,-1,1994,2336,2774,-1,2336,1994,1687,-1,1115,1315,1485,-1,1115,632,1315,-1,3199,3215,2899,-1,3199,3565,3215,-1,3101,3585,3565,-1,3101,2929,3585,-1,1000,683,255,-1,1165,683,1000,-1,1942,1315,1352,-1,1942,1990,1315,-1,871,71,348,-1,871,841,71,-1,2458,2942,3058,-1,2942,2458,2419,-1,2033,2579,2140,-1,1977,2579,2033,-1,2343,1948,1960,-1,2343,2244,1948,-1,1889,799,1773,-1,799,1889,830,-1,1669,1547,1179,-1,1669,1782,1547,-1,881,775,346,-1,881,1229,775,-1,410,71,505,-1,410,54,71,-1,916,1623,1137,-1,916,1513,1623,-1,1974,2231,2136,-1,1974,1868,2231,-1,1563,1998,2028,-1,1563,1795,1998,-1,2136,2724,2623,-1,2136,2231,2724,-1,2028,2218,2568,-1,2028,1998,2218,-1,3101,2738,2845,-1,3101,2827,2738,-1,1935,2159,1767,-1,1935,2194,2159,-1,2899,2060,2380,-1,2899,3717,2060,-1,1987,2452,2331,-1,1987,1961,2452,-1,2365,3302,2642,-1,3084,3302,2365,-1,441,968,764,-1,968,441,356,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getethmoid_Geo_5_109_normalIndex_15()
		{
			int[] value = {2642,3348,2706,-1,2642,3302,3348,-1,764,455,441,-1,455,764,672,-1,2959,3174,3062,-1,3192,3174,2959,-1,1425,815,861,-1,1425,1351,815,-1,3507,3365,3582,-1,3365,3507,3290,-1,1274,1972,2056,-1,1274,1227,1972,-1,2768,2679,2518,-1,2768,2814,2679,-1,2846,2814,2768,-1,3483,3192,2959,-1,3192,3483,3582,-1,2058,2632,1999,-1,2058,2717,2632,-1,2395,3280,2516,-1,2906,3280,2395,-1,2802,2058,2143,-1,2058,2802,2717,-1,106,397,154,-1,495,397,106,-1,2449,1645,1382,-1,2449,2054,1645,-1,2449,2355,2054,-1,1289,2440,2496,-1,1289,1416,2440,-1,1289,1359,1416,-1,3695,3374,3489,-1,3695,3674,3374,-1,3174,3212,3402,-1,3174,2951,3212,-1,2785,2524,2713,-1,2785,2574,2524,-1,1853,1332,1213,-1,2011,1332,1853,-1,742,653,341,-1,653,742,1072,-1,873,341,459,-1,341,873,742,-1,1202,1645,1748,-1,1382,1645,1202,-1,2661,2319,2692,-1,2319,2661,2497,-1,1887,2109,2395,-1,2060,2109,1887,-1,2768,2692,3034,-1,2692,2768,2661,-1,2079,2517,2394,-1,2287,2517,2079,-1,1655,642,1262,-1,1631,642,1655,-1,1582,2205,1759,-1,1614,2205,1582,-1,1643,1823,1651,-1,1643,1657,1823,-1,890,2492,889,-1,890,2451,2492,-1,2908,2062,1936,-1,2908,2680,2062,-1,2507,2454,2493,-1,2507,2476,2454,-1,2430,3092,3159,-1,2437,3092,2430,-1,2073,2466,2783,-1,1959,2466,2073,-1,1185,2236,1592,-1,1185,2041,2236,-1,1788,2479,1662,-1,1788,2506,2479,-1,1201,1441,1157,-1,1201,1448,1441,-1,1666,1198,1505,-1,1666,1310,1198,-1,2402,1562,2115,-1,2402,1797,1562,-1,1010,1467,1374,-1,1010,1076,1467,-1,2709,2253,2312,-1,2709,2840,2253,-1,3049,1492,3091,-1,1492,3049,1699,-1,563,1271,557,-1,563,840,1271,-1,1913,1916,2027,-1,1783,1916,1913,-1,2805,3227,3308,-1,2805,2780,3227,-1,2423,3362,3369,-1,2450,3362,2423,-1,2366,3326,3297,-1,2359,3326,2366,-1,2351,2163,2032,-1,2317,2163,2351,-1,3369,2050,2423,-1,3369,3260,2050,-1,399,515,302,-1,515,399,484,-1,664,868,402,-1,664,1017,868,-1,1103,429,877,-1,489,429,1103,-1,1103,1903,1145,-1,1869,1903,1103,-1,724,1506,1364,-1,1506,724,941,-1,1527,1048,1125,-1,1527,1481,1048,-1,1568,1594,1495,-1,1594,1568,1291,-1,1775,2284,2022,-1,1775,2124,2284,-1,2566,1738,2295,-1,1576,1738,2566,-1,3364,3656,3172,-1,3656,3364,3601,-1,3175,1969,3202,-1,2041,1969,3175,-1,1789,534,299,-1,1789,2233,534,-1,2209,2974,2937,-1,2974,2209,2144,-1,1944,2805,3033,-1,1944,2008,2805,-1,1851,827,2050,-1,827,1851,781,-1,515,1198,503,-1,515,1193,1198,-1,3494,3450,3442,-1,3494,3440,3450,-1,2127,1180,2145,-1,2127,1245,1180,-1,3224,3378,3420,-1,3224,3156,3378,-1,2111,2815,1455,-1,2111,2930,2815,-1,2130,1988,2097,-1,2130,2021,1988,-1,1574,1141,1461,-1,1574,1287,1141,-1,1077,176,1295,-1,1077,183,176,-1,788,270,880,-1,283,270,788,-1,119,70,189,-1,70,119,86,-1,133,287,113,-1,287,133,423,-1,1792,1451,1311,-1,1732,1451,1792,-1,1089,333,837,-1,333,1089,500,-1,1495,2035,729,-1,2035,1495,1557,-1,3417,2956,3001,-1,2956,3417,3327,-1,892,3412,1763,-1,892,2897,3412,-1,1016,2137,1845,-1,1082,2137,1016,-1,3078,3248,3530,-1,3078,2783,3248,-1,1940,1306,1493,-1,1940,1591,1306,-1,12,116,476,-1,116,12,48,-1,1217,602,1173,-1,1217,777,602,-1,1755,320,354,-1,1723,320,1755,-1,2037,2967,1911,-1,2037,2099,2967,-1,2687,1695,1805,-1,2743,1695,2687,-1,332,603,443,-1,603,332,772,-1,2587,1891,2624,-1,1891,2587,1793,-1,834,286,367,-1,286,834,681,-1,2809,2855,2895,-1,2809,2659,2855,-1,605,284,365,-1,284,605,353,-1,353,529,295,-1,353,439,529,-1,662,365,244,-1,605,365,662,-1,1196,1455,1452,-1,321,1455,1196,-1,600,1562,805,-1,600,1365,1562,-1,1671,822,731,-1,1671,1925,822,-1,1575,2678,1872,-1,1575,2703,2678,-1,2867,3491,3415,-1,3491,2867,2861,-1,376,1043,121,-1,1258,1043,376,-1,3426,2487,2552,-1,2487,3426,3265,-1,3605,3636,3525,-1,3626,3636,3605,-1,3566,3380,3415,-1,3543,3380,3566,-1,1917,2504,2619,-1,1917,1957,2504,-1,3154,2145,2126,-1,3154,3162,2145,-1,977,1010,997,-1,977,1099,1010,-1,2197,2937,2909,-1,2209,2937,2197,-1,758,872,1194,-1,758,1029,872,-1,2757,3152,3530,-1,2757,2010,3152,-1,2144,1304,2024,-1,1195,1304,2144,-1,777,502,536,-1,777,649,502,-1,2258,482,2224,-1,2258,817,482,-1,2258,3024,2627,-1,2258,2224,3024,-1,3105,1394,2436,-1,1938,1394,3105,-1,1481,1109,1048,-1,1481,1490,1109,-1,709,1653,838,-1,1107,1653,709,-1,2437,2022,2284,-1,2072,2022,2437,-1,1788,868,1799,-1,896,868,1788,-1,1428,253,988,-1,347,253,1428,-1,3141,2577,3091,-1,2577,3141,2460,-1,78,1692,69,-1,78,1579,1692,-1,1554,3373,1605,-1,3457,3373,1554,-1,443,396,332,-1,570,396,443,-1,436,212,2300,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getethmoid_Geo_5_109_normalIndex_16()
		{
			int[] value = {436,219,212,-1,1501,2624,2414,-1,1501,2587,2624,-1,1463,2587,1501,-1,1463,2491,2587,-1,2930,2630,2687,-1,2930,2074,2630,-1,837,367,286,-1,333,367,837,-1,1363,2386,1857,-1,1880,2386,1363,-1,618,215,360,-1,406,215,618,-1,2300,2379,2192,-1,2379,2300,3044,-1,703,882,386,-1,703,1363,882,-1,1391,618,1129,-1,870,618,1391,-1,3044,3204,3143,-1,3044,3407,3204,-1,2795,2562,2427,-1,2795,3204,2562,-1,202,544,640,-1,202,280,544,-1,518,1492,1699,-1,518,395,1492,-1,2819,1243,1176,-1,1243,2819,3029,-1,2523,1530,1601,-1,1530,2523,2731,-1,2326,2268,2353,-1,2326,1458,2268,-1,2873,2107,1904,-1,2873,3151,2107,-1,197,1239,1899,-1,1239,197,927,-1,2077,189,2107,-1,423,189,2077,-1,1514,1170,842,-1,1170,1514,2322,-1,2850,3042,2922,-1,2933,3042,2850,-1,2246,2268,2281,-1,2268,2246,2292,-1,2353,2292,2289,-1,2353,2268,2292,-1,1462,2528,1376,-1,1462,2938,2528,-1,2645,3151,2873,-1,3143,3151,2645,-1,152,409,317,-1,152,278,409,-1,3094,3091,2577,-1,3094,3049,3091,-1,957,573,1045,-1,1367,573,957,-1,1543,1309,1342,-1,1543,1674,1309,-1,3512,3193,2962,-1,3193,3512,3579,-1,744,1673,1489,-1,744,982,1673,-1,2197,1195,2209,-1,2197,1673,1195,-1,3247,3682,3337,-1,3682,3247,3672,-1,1663,1505,1404,-1,1663,1666,1505,-1,315,170,474,-1,315,73,170,-1,3339,2654,2411,-1,3339,3493,2654,-1,3493,2552,2654,-1,3493,3426,2552,-1,1582,1490,1481,-1,1496,1490,1582,-1,2739,2502,2479,-1,2739,2877,2502,-1,2732,2276,3069,-1,2732,2167,2276,-1,2167,2610,2038,-1,2732,2610,2167,-1,592,274,411,-1,274,592,218,-1,3406,3376,3571,-1,3161,3376,3406,-1,2610,3173,2462,-1,3342,3173,2610,-1,666,607,543,-1,607,666,411,-1,2462,2872,2229,-1,3173,2872,2462,-1,519,666,543,-1,519,965,666,-1,1059,1344,965,-1,1059,1396,1344,-1,2229,2697,1963,-1,2872,2697,2229,-1,1950,1402,1963,-1,1950,1381,1402,-1,604,1962,2613,-1,1962,604,1746,-1,498,1837,876,-1,1837,498,1479,-1,2237,2710,2707,-1,2237,2219,2710,-1,2671,3184,3205,-1,2671,2604,3184,-1,2859,3393,3027,-1,3284,3393,2859,-1,1084,1876,1785,-1,1876,1084,1112,-1,589,1302,76,-1,589,1642,1302,-1,2972,3610,3598,-1,2972,3079,3610,-1,1850,2093,1656,-1,2015,2093,1850,-1,2200,2093,2015,-1,3079,3687,3610,-1,3079,3149,3687,-1,3379,3090,3506,-1,3379,3086,3090,-1,3072,3687,3726,-1,2987,3687,3072,-1,3090,2570,2907,-1,3090,2727,2570,-1,2367,3072,3197,-1,2263,3072,2367,-1,2255,1586,2367,-1,1586,2255,1569,-1,1224,1586,1314,-1,1224,1515,1586,-1,1149,1224,1221,-1,1149,1178,1224,-1,1066,1508,755,-1,1066,1656,1508,-1,1114,316,905,-1,1114,220,316,-1,2358,596,2226,-1,2816,596,2358,-1,1556,2373,1735,-1,2373,1556,2283,-1,2729,2358,2391,-1,2602,2358,2729,-1,2283,2597,2822,-1,2283,2198,2597,-1,2971,3086,3379,-1,2971,2822,3086,-1,621,1273,785,-1,621,794,1273,-1,2033,2025,1902,-1,2140,2025,2033,-1,1889,1610,1362,-1,1610,1889,1773,-1,864,1203,1028,-1,1203,864,1013,-1,2623,3312,3243,-1,2623,2724,3312,-1,3354,3259,3312,-1,3354,3273,3259,-1,1263,816,576,-1,816,1263,1330,-1,1085,1202,1378,-1,1202,1085,939,-1,1378,1748,1935,-1,1748,1378,1202,-1,939,1382,1202,-1,1382,939,1289,-1,1011,1289,939,-1,1289,1011,1359,-1,3273,3319,3275,-1,3354,3319,3273,-1,3150,2845,2738,-1,3150,3333,2845,-1,410,1028,799,-1,1028,410,864,-1,2510,1430,2457,-1,2510,2407,1430,-1,3273,3306,3259,-1,3273,3103,3306,-1,1430,234,943,-1,1272,234,1430,-1,2822,2719,3086,-1,2822,2597,2719,-1,2870,2391,2399,-1,2729,2391,2870,-1,1556,2198,2283,-1,1556,1581,2198,-1,2391,2226,2202,-1,2358,2226,2391,-1,2202,1375,2057,-1,2202,1709,1375,-1,769,905,316,-1,905,769,1110,-1,1508,769,755,-1,769,1508,1602,-1,1066,313,850,-1,313,1066,755,-1,1314,1569,1160,-1,1314,1586,1569,-1,2248,1569,2255,-1,1569,2248,1438,-1,1628,2230,1519,-1,1628,2323,2230,-1,2367,3081,2255,-1,2367,3197,3081,-1,3197,3726,3702,-1,3072,3726,3197,-1,3086,2727,3090,-1,3086,2719,2727,-1,1931,1656,2093,-1,1864,1656,1931,-1,1701,1656,1864,-1,1701,1508,1656,-1,1701,1602,1508,-1,3598,2983,3136,-1,3598,3610,2983,-1,1131,1785,1628,-1,1785,1131,1084,-1,3027,3598,3136,-1,3393,3598,3027,-1,3139,3551,3561,-1,3139,3205,3551,-1,2129,2710,2219,-1,2710,2129,2671,-1,1546,2237,1479,-1,2237,1546,2219,-1,1025,739,718,-1,1025,1192,739,-1,1746,1480,1962,-1,1480,1746,1549,-1,3561,3368,3331,-1,3561,3551,3368,-1,739,1059,469,-1,739,1192,1059,-1,1963,2604,1950,-1,2697,2604,1963,-1,3349,2697,2872,-1,3349,3254,2697,-1,469,965,519,-1,469,1059,965,-1,1081,543,1244,-1,1081,519,543,-1,3173,3349,2872,-1,3500,3349,3173,-1,543,1414,1244,-1,1414,543,607,-1,3342,3500,3173,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=17 */
		private int[] getethmoid_Geo_5_109_normalIndex_17()
		{
			int[] value = {3571,3500,3342,-1,411,844,607,-1,844,411,274,-1,2732,3342,2610,-1,3381,3342,2732,-1,2167,2816,2276,-1,2167,1636,2816,-1,59,28,89,-1,28,59,48,-1,199,474,170,-1,226,474,199,-1,1498,1401,1448,-1,1498,1511,1401,-1,465,617,624,-1,465,591,617,-1,3530,3525,3636,-1,3530,3152,3525,-1,3720,3423,3511,-1,3423,3720,3694,-1,2815,1872,2678,-1,1872,2815,2238,-1,230,110,584,-1,129,110,230,-1,117,130,119,-1,117,277,130,-1,17,231,200,-1,231,17,609,-1,1283,1174,1251,-1,1034,1174,1283,-1,987,1913,1739,-1,1168,1913,987,-1,152,987,278,-1,152,153,987,-1,609,415,231,-1,1167,415,609,-1,3156,3043,3378,-1,3043,3156,2869,-1,1605,3274,1529,-1,3373,3274,1605,-1,538,1319,20,-1,1319,538,1593,-1,2933,2689,2731,-1,2933,2850,2689,-1,69,1554,209,-1,1692,1554,69,-1,927,1095,1211,-1,927,640,1095,-1,2077,3151,3181,-1,2077,2107,3151,-1,514,700,859,-1,473,700,514,-1,1424,347,1428,-1,1424,370,347,-1,2289,2523,1601,-1,2292,2523,2289,-1,2461,3042,2648,-1,3104,3042,2461,-1,2689,1176,1392,-1,2689,2819,1176,-1,347,390,109,-1,390,347,370,-1,280,514,386,-1,514,280,202,-1,2379,3143,2645,-1,2379,3044,3143,-1,870,406,618,-1,544,406,870,-1,2513,2562,3218,-1,2562,2513,1786,-1,1385,2379,1720,-1,1385,2192,2379,-1,406,568,215,-1,520,568,406,-1,2513,2386,1880,-1,2513,2952,2386,-1,2192,1247,1427,-1,1247,2192,1385,-1,360,281,577,-1,360,215,281,-1,3104,3437,3122,-1,2461,3437,3104,-1,1653,1089,2668,-1,1089,1653,1495,-1,1921,361,1911,-1,1921,687,361,-1,691,656,638,-1,691,525,656,-1,212,634,236,-1,212,648,634,-1,1463,350,308,-1,350,1463,1501,-1,964,2491,1463,-1,2335,2491,964,-1,2335,273,1358,-1,964,273,2335,-1,648,219,908,-1,219,648,212,-1,661,318,387,-1,321,318,661,-1,1264,1181,1370,-1,1264,1871,1181,-1,1529,2938,1462,-1,1529,3274,2938,-1,3494,3362,3297,-1,3494,3496,3362,-1,1550,2366,2450,-1,1472,2366,1550,-1,1048,445,414,-1,1109,445,1048,-1,2464,1595,1047,-1,1595,2464,1927,-1,774,1070,817,-1,1070,774,1512,-1,482,1070,296,-1,817,1070,482,-1,914,549,1062,-1,394,549,914,-1,239,249,114,-1,239,447,249,-1,1126,1997,1304,-1,1944,1997,1126,-1,175,491,223,-1,175,591,491,-1,782,26,814,-1,782,6,26,-1,2909,3511,3423,-1,2937,3511,2909,-1,2782,2269,2241,-1,2782,2823,2269,-1,3065,3579,3525,-1,3579,3065,3187,-1,299,782,242,-1,782,299,497,-1,1193,484,1157,-1,515,484,1193,-1,2126,1180,1246,-1,2145,1180,2126,-1,3705,3602,3612,-1,3705,3722,3602,-1,3722,3680,3693,-1,3680,3722,3705,-1,3512,3543,3580,-1,3512,3380,3543,-1,3337,3189,3076,-1,3337,3516,3189,-1,3496,3442,3285,-1,3496,3494,3442,-1,2716,3337,2915,-1,2716,3247,3337,-1,756,2552,2487,-1,756,942,2552,-1,1489,2288,1604,-1,2278,2288,1489,-1,6,872,26,-1,872,6,865,-1,583,474,226,-1,583,612,474,-1,3689,3705,3644,-1,3705,3689,3680,-1,996,2008,1126,-1,996,1955,2008,-1,3720,3693,3668,-1,3693,3720,3722,-1,89,99,59,-1,99,89,114,-1,1125,1846,1527,-1,1125,1364,1846,-1,2074,321,661,-1,2111,321,2074,-1,722,167,415,-1,722,508,167,-1,295,284,353,-1,295,123,284,-1,365,123,17,-1,365,284,123,-1,2895,2877,2809,-1,2877,2895,2839,-1,369,652,720,-1,369,354,652,-1,530,2335,1358,-1,925,2335,530,-1,772,318,1721,-1,772,332,318,-1,2743,1540,1695,-1,2743,2704,1540,-1,1723,279,320,-1,1674,279,1723,-1,1591,1197,1306,-1,1591,1426,1197,-1,1342,1483,1543,-1,2211,1483,1342,-1,113,119,133,-1,113,117,119,-1,1239,1147,1205,-1,1239,1412,1147,-1,70,1347,176,-1,70,378,1347,-1,1664,1283,1296,-1,1283,1664,1205,-1,1652,2097,1988,-1,1784,2097,1652,-1,2357,2191,2201,-1,2100,2191,2357,-1,1338,2678,2703,-1,1338,1452,2678,-1,1803,1278,1986,-1,1803,1580,1278,-1,1803,2705,1580,-1,1374,2266,2208,-1,1374,1467,2266,-1,1245,399,1180,-1,399,1245,571,-1,3442,3154,3098,-1,3442,3450,3154,-1,1132,2450,2423,-1,1132,1550,2450,-1,1752,1015,1646,-1,1146,1015,1752,-1,2241,2909,2782,-1,2241,2197,2909,-1,2823,2278,2269,-1,2823,2861,2278,-1,2010,478,1817,-1,2010,424,478,-1,1042,2073,1119,-1,1959,2073,1042,-1,3656,3636,3646,-1,3636,3656,3704,-1,1490,1206,1109,-1,1490,1650,1206,-1,1787,2465,2362,-1,1787,1900,2465,-1,1017,1799,868,-1,1017,1815,1799,-1,1145,489,1103,-1,489,1145,462,-1,207,600,268,-1,207,567,600,-1,461,1100,711,-1,461,805,1100,-1,2032,2320,2351,-1,1752,2320,2032,-1,3224,2359,2208,-1,3224,3326,2359,-1,2619,3076,2726,-1,3076,2619,2915,-1,78,246,1237,-1,78,265,246,-1,1264,2018,1597,-1,1370,2018,1264,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=18 */
		private int[] getethmoid_Geo_5_109_normalIndex_18()
		{
			int[] value = {3117,1428,2564,-1,1428,3117,1424,-1,114,558,239,-1,558,114,819,-1,1076,1716,1467,-1,1143,1716,1076,-1,1815,2480,1799,-1,1815,2475,2480,-1,1193,1505,1198,-1,1505,1193,1440,-1,1326,1301,1104,-1,1326,1498,1301,-1,1662,2502,1869,-1,2502,1662,2479,-1,1074,2041,1185,-1,2041,1074,1969,-1,3078,2073,2783,-1,2073,3078,2275,-1,1400,2022,1291,-1,2022,1400,1775,-1,2369,1552,2188,-1,2369,1557,1552,-1,1404,1067,1663,-1,1067,1404,977,-1,108,1278,60,-1,108,889,1278,-1,890,1708,2451,-1,890,102,1708,-1,2733,1826,2040,-1,3341,1826,2733,-1,2431,102,899,-1,1708,102,2431,-1,1599,2205,1614,-1,1599,2330,2205,-1,2330,1637,2017,-1,2330,1599,1637,-1,754,1577,1284,-1,754,1638,1577,-1,3490,3034,3114,-1,3490,3255,3034,-1,3114,2692,2581,-1,3114,3034,2692,-1,2516,1887,2395,-1,1887,2516,1993,-1,2319,2308,1908,-1,2319,2497,2308,-1,1588,1446,873,-1,1588,1908,1446,-1,1446,742,873,-1,742,1446,1349,-1,1349,1072,742,-1,1072,1349,1559,-1,1222,653,698,-1,1222,659,653,-1,1762,1213,1330,-1,1853,1213,1762,-1,2341,2569,1984,-1,2569,2341,2519,-1,3082,2951,3174,-1,3082,2569,2951,-1,2632,2791,2409,-1,2791,2632,3190,-1,2951,2814,3212,-1,2951,2679,2814,-1,3489,3490,3695,-1,3489,3402,3490,-1,2518,2341,2195,-1,2518,2519,2341,-1,2679,2519,2518,-1,667,154,659,-1,106,154,667,-1,3374,2717,2802,-1,2717,3374,3335,-1,1055,658,1259,-1,1055,495,658,-1,1999,1320,2058,-1,1263,1320,1999,-1,647,1227,1274,-1,647,672,1227,-1,3348,3582,3483,-1,3582,3348,3507,-1,2122,1351,1425,-1,2122,2066,1351,-1,441,815,749,-1,455,815,441,-1,3507,3302,3404,-1,3348,3302,3507,-1,441,510,356,-1,441,749,510,-1,3084,3404,3302,-1,3340,3404,3084,-1,913,1961,1987,-1,913,1329,1961,-1,1115,2023,1706,-1,1115,1485,2023,-1,3275,2931,3058,-1,3275,3319,2931,-1,2827,2318,2738,-1,2827,2397,2318,-1,2231,2838,2724,-1,2231,2277,2838,-1,2397,2013,2318,-1,2397,1942,2013,-1,1974,2182,1772,-1,2182,1974,2136,-1,1152,1563,1726,-1,1152,1137,1563,-1,1509,779,1189,-1,1352,779,1509,-1,348,54,346,-1,71,54,348,-1,830,346,54,-1,830,881,346,-1,1960,830,1889,-1,830,1960,881,-1,2631,2244,2407,-1,2244,2631,2190,-1,2510,3058,2942,-1,2510,3275,3058,-1,841,505,71,-1,841,1044,505,-1,2520,1942,2397,-1,1942,2520,1990,-1,517,255,683,-1,517,90,255,-1,3565,2827,3101,-1,2827,3565,3199,-1,1345,632,1115,-1,1345,90,632,-1,2774,2064,1994,-1,2774,3003,2064,-1,3038,2123,2002,-1,3038,3011,2123,-1,929,1951,855,-1,1836,1951,929,-1,611,1186,883,-1,1018,1186,611,-1,1341,786,1041,-1,1341,1054,786,-1,765,364,808,-1,765,470,364,-1,349,136,232,-1,349,111,136,-1,975,690,626,-1,975,1075,690,-1,593,111,668,-1,136,111,593,-1,1075,1215,690,-1,1075,1454,1215,-1,1707,593,668,-1,593,1707,1477,-1,1454,2094,1215,-1,1454,2156,2094,-1,2700,1477,1707,-1,1477,2700,2447,-1,2156,2885,2094,-1,2156,2806,2885,-1,3267,2447,2700,-1,2447,3267,2939,-1,2885,3371,3424,-1,2885,2806,3371,-1,3452,2939,3267,-1,2939,3452,3110,-1,3424,3594,3603,-1,3424,3371,3594,-1,3498,3110,3452,-1,3110,3498,3135,-1,3603,3549,3567,-1,3603,3594,3549,-1,3135,3003,2774,-1,3135,3498,3003,-1,3567,3011,3038,-1,3567,3549,3011,-1,3013,3533,3502,-1,3148,3533,3013,-1,2810,1855,1858,-1,2792,1855,2810,-1,2012,1186,2064,-1,2012,1135,1186,-1,1073,993,1150,-1,1073,901,993,-1,1830,2793,2039,-1,1830,2554,2793,-1,3547,2808,3163,-1,3547,2662,2808,-1,901,1833,976,-1,1073,1833,901,-1,2772,2104,2543,-1,2772,2664,2104,-1,1790,2170,2249,-1,1790,1774,2170,-1,2772,2662,2764,-1,2662,2772,2543,-1,1459,2444,2418,-1,1459,1630,2444,-1,2439,1566,2541,-1,2439,1528,1566,-1,3527,3322,3269,-1,3322,3527,3642,-1,959,1866,2112,-1,959,1088,1866,-1,190,452,527,-1,256,452,190,-1,3388,2718,3352,-1,2718,3388,2750,-1,2748,2212,2826,-1,2748,2086,2212,-1,994,1878,1804,-1,885,1878,994,-1,3647,3397,3613,-1,3647,3268,3397,-1,1014,531,575,-1,1169,531,1014,-1,3588,3268,3647,-1,3588,3470,3268,-1,1278,2540,1986,-1,2544,2540,1278,-1,890,112,102,-1,108,112,890,-1,3383,2680,2908,-1,3383,3123,2680,-1,2559,2934,2594,-1,2257,2934,2559,-1,1609,1525,1478,-1,1856,1525,1609,-1,1599,1481,1527,-1,1614,1481,1599,-1,1521,1710,1551,-1,1696,1710,1521,-1,1691,1761,1705,-1,1743,1761,1691,-1,1712,1988,1822,-1,1685,1988,1712,-1,3414,2858,3196,-1,2858,3414,3073,-1,2296,3073,2340,-1,2296,2858,3073,-1,1697,1049,1122,-1,1697,1733,1049,-1,2009,1294,1377,-1,2009,2006,1294,-1,995,1377,1294,-1,1106,1377,995,-1,307,431,137,-1,307,412,431,-1,1106,921,1032,-1,1106,995,921,-1,137,721,427,-1,137,431,721,-1,921,1199,1032,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=19 */
		private int[] getethmoid_Geo_5_109_normalIndex_19()
		{
			int[] value = {1199,921,1096,-1,1323,427,721,-1,1230,427,1323,-1,1096,1532,1199,-1,1532,1096,1389,-1,1323,1865,1230,-1,1865,1323,1906,-1,1389,1939,1532,-1,1939,1389,1873,-1,1906,2486,1865,-1,2486,1906,2547,-1,1873,2442,1939,-1,2442,1873,2490,-1,3207,2547,3336,-1,3207,2486,2547,-1,2490,3130,2442,-1,3130,2490,3344,-1,3336,3436,3207,-1,3436,3336,3711,-1,3344,3351,3130,-1,3351,3344,3513,-1,3180,3281,3562,-1,3180,2975,3281,-1,2299,2988,3196,-1,2251,2988,2299,-1,1248,1138,566,-1,1138,1248,1449,-1,1122,1725,1697,-1,1725,1122,1471,-1,2892,2586,3022,-1,2586,2892,2640,-1,2034,2567,3166,-1,2034,1791,2567,-1,285,963,869,-1,285,467,963,-1,3522,2637,3395,-1,2637,3522,2585,-1,1465,686,398,-1,686,1465,1612,-1,760,1021,562,-1,1087,1021,760,-1,1743,2637,1737,-1,1743,2596,2637,-1,1798,1654,1635,-1,1798,1087,1654,-1,686,1535,1660,-1,686,1612,1535,-1,1060,251,430,-1,1060,980,251,-1,1890,1184,1886,-1,1092,1184,1890,-1,3226,3225,3418,-1,3226,3068,3225,-1,936,532,291,-1,936,1036,532,-1,1419,616,1443,-1,753,616,1419,-1,3445,3432,3546,-1,3432,3445,3385,-1,2095,2775,3031,-1,2095,2076,2775,-1,472,158,327,-1,472,125,158,-1,616,468,735,-1,336,468,616,-1,3546,3497,3600,-1,3277,3497,3546,-1,995,435,921,-1,995,546,435,-1,3316,2789,3294,-1,3316,3035,2789,-1,430,1128,1060,-1,1128,430,546,-1,3444,3540,3625,-1,3444,3418,3540,-1,693,1092,1172,-1,693,588,1092,-1,522,980,1020,-1,980,522,251,-1,2935,3464,3600,-1,2935,3022,3464,-1,981,1023,1397,-1,1023,981,578,-1,1021,2228,887,-1,1021,2364,2228,-1,3435,3313,3328,-1,3435,3395,3313,-1,2068,2512,3217,-1,2512,2068,1724,-1,3263,3477,3542,-1,3263,3179,3477,-1,2786,3542,2857,-1,2786,3263,3542,-1,2005,1897,1727,-1,1897,2005,2609,-1,1346,1727,1897,-1,1346,1507,1727,-1,548,241,186,-1,241,548,511,-1,1361,186,241,-1,1361,1357,186,-1,2125,1633,1615,-1,2758,1633,2125,-1,2313,2121,2174,-1,2313,2151,2121,-1,1816,2372,1672,-1,2372,1816,2478,-1,1672,2349,2376,-1,2349,1672,2372,-1,2332,2985,2526,-1,2621,2985,2332,-1,3071,3477,2734,-1,3429,3477,3071,-1,2546,2445,2089,-1,2546,2784,2445,-1,2363,2424,2247,-1,2745,2424,2363,-1,1714,2338,1812,-1,2338,1714,2572,-1,2882,2924,2595,-1,2882,3133,2924,-1,1809,1434,1422,-1,1434,1809,1718,-1,2989,2976,2891,-1,2976,2989,3230,-1,2243,2891,2976,-1,2243,2213,2891,-1,1453,2213,2243,-1,1453,1415,2213,-1,689,1453,712,-1,689,1415,1453,-1,706,442,862,-1,442,706,81,-1,1572,682,654,-1,1572,1611,682,-1,1683,2666,1688,-1,2778,2666,1683,-1,3298,2834,3413,-1,3298,2771,2834,-1,1611,2306,1680,-1,1611,2250,2306,-1,706,1415,689,-1,1415,706,1410,-1,2771,2505,2378,-1,2771,3298,2505,-1,2811,1915,2650,-1,1929,1915,2811,-1,3578,3234,3495,-1,3578,3389,3234,-1,3324,3529,3237,-1,3529,3324,3476,-1,2843,3389,3004,-1,3389,2843,3234,-1,3080,3237,2797,-1,3237,3080,3324,-1,2118,3004,2193,-1,3004,2118,2843,-1,1133,2118,2193,-1,1133,1127,2118,-1,803,1253,1234,-1,803,823,1253,-1,564,146,138,-1,565,146,564,-1,697,138,146,-1,697,726,138,-1,860,1690,1570,-1,680,1690,860,-1,1570,2392,2453,-1,1690,2392,1570,-1,1649,2381,2346,-1,1616,2381,1649,-1,2756,2392,2593,-1,2392,2756,2453,-1,2307,2625,2329,-1,2307,2841,2625,-1,2499,2612,2913,-1,2652,2612,2499,-1,2389,3245,2910,-1,2389,2514,3245,-1,860,1286,1007,-1,1298,1286,860,-1,1898,2485,2016,-1,1898,2132,2485,-1,2446,2593,2392,-1,2593,2446,2522,-1,2949,3486,3005,-1,3486,2949,3041,-1,3457,3231,3447,-1,3457,1538,3231,-1,3250,3501,3488,-1,3501,3250,3206,-1,3317,2926,2958,-1,2926,3317,3323,-1,3419,3047,3573,-1,3419,3018,3047,-1,2173,2883,3008,-1,2173,2162,2883,-1,2760,2352,2996,-1,2760,2303,2352,-1,2207,1270,1226,-1,2267,1270,2207,-1,636,1300,1267,-1,636,615,1300,-1,1405,917,674,-1,1510,917,1405,-1,512,157,101,-1,550,157,512,-1,486,261,312,-1,486,535,261,-1,685,337,684,-1,685,392,337,-1,326,540,627,-1,303,540,326,-1,1288,947,752,-1,1288,1497,947,-1,601,1121,900,-1,812,1121,601,-1,878,2262,1130,-1,878,2069,2262,-1,2927,2301,3211,-1,2301,2927,2315,-1,1875,2653,2905,-1,1933,2653,1875,-1,3157,3701,3370,-1,3157,3482,3701,-1,2048,2232,2187,-1,2048,2164,2232,-1,1848,2164,2048,-1,1848,2036,2164,-1,1621,2036,1848,-1,1621,1747,2036,-1,1466,1747,1621,-1,1466,1555,1747,-1,1445,1555,1466,-1,1445,1460,1555,-1,3214,2315,2927,-1,3214,2500,2315,-1,535,18,261,-1,323,18,535,-1,2162,2754,2883,-1,1958,2754,2162,-1,494,849,757,-1,923,849,494,-1,1769,2489,1502,-1,1769,2500,2489,-1,1970,2754,1958,-1,2565,2754,1970,-1,635,1287,1197,-1,635,403,1287,-1,1221,1314,985,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=20 */
		private int[] getethmoid_Geo_5_109_normalIndex_20()
		{
			int[] value = {1224,1314,1221,-1,2707,3139,3075,-1,3139,2707,2710,-1,876,2210,2029,-1,1837,2210,876,-1,719,770,366,-1,719,902,770,-1,1305,1892,1758,-1,1305,1297,1892,-1,1250,768,1209,-1,768,1250,728,-1,1603,654,678,-1,1603,1572,654,-1,738,1297,902,-1,738,1223,1297,-1,1223,1668,1640,-1,1668,1223,1232,-1,2991,2495,3015,-1,2474,2495,2991,-1,909,623,1464,-1,276,623,909,-1,2260,3499,3059,-1,2260,2730,3499,-1,1275,2085,1821,-1,1578,2085,1275,-1,1275,475,670,-1,1275,1151,475,-1,2150,2842,2730,-1,2842,2150,2168,-1,2314,1992,1728,-1,2314,2396,1992,-1,1266,1565,1083,-1,1565,1266,1729,-1,2888,3434,3251,-1,2888,2940,3434,-1,1517,810,1606,-1,1517,1210,810,-1,733,1431,1093,-1,733,1117,1431,-1,2273,2614,3098,-1,2614,2273,2116,-1,2747,2096,2626,-1,2747,2053,2096,-1,2651,1207,1228,-1,1207,2651,2667,-1,2472,2599,1156,-1,2599,2472,2508,-1,2536,1717,2196,-1,1717,2536,2179,-1,633,919,745,-1,633,971,919,-1,2575,2082,2511,-1,2575,2467,2082,-1,2766,2536,2735,-1,3087,2536,2766,-1,971,2472,2551,-1,971,1090,2472,-1,1040,2067,984,-1,2113,2067,1040,-1,2067,2920,2969,-1,2067,3115,2920,-1,2969,1038,2067,-1,2912,1038,2969,-1,3219,2542,2742,-1,3219,3023,2542,-1,1422,1456,1809,-1,856,1456,1422,-1,2606,1700,2199,-1,2606,1996,1700,-1,856,1024,1456,-1,586,1024,856,-1,2964,1996,2606,-1,2964,2302,1996,-1,1859,3222,3085,-1,1937,3222,1859,-1,569,1052,1006,-1,569,272,1052,-1,2101,2821,2347,-1,2101,2751,2821,-1,1548,783,874,-1,1140,783,1548,-1,701,2849,2051,-1,2849,701,2961,-1,1934,2199,1700,-1,2321,2199,1934,-1,2403,3641,2770,-1,2403,3492,3641,-1,1353,1444,1154,-1,1444,1353,1756,-1,3480,3620,3217,-1,3480,3621,3620,-1,3314,2557,2371,-1,3099,2557,3314,-1,2068,1722,1388,-1,2293,1722,2068,-1,2994,2921,3186,-1,2994,2884,2921,-1,1923,2103,1639,-1,2252,2103,1923,-1,419,915,380,-1,419,829,915,-1,2084,1182,1285,-1,1985,1182,2084,-1,1473,2045,2160,-1,2045,1473,1432,-1,3411,2916,2878,-1,3416,2916,3411,-1,1233,737,1004,-1,1233,762,737,-1,1356,762,1233,-1,1356,867,762,-1,1432,867,1356,-1,1432,1012,867,-1,1473,1012,1432,-1,1012,1473,1265,-1,3460,3314,3401,-1,3460,3659,3314,-1,3468,3401,3396,-1,3468,3460,3401,-1,3305,3416,3411,-1,3305,3170,3416,-1,2572,1814,2601,-1,1714,1814,2572,-1,3129,2924,3133,-1,3129,2866,2924,-1,206,924,833,-1,924,206,630,-1,1254,1847,1255,-1,1254,1744,1847,-1,3054,3077,2998,-1,3384,3077,3054,-1,1373,1741,2146,-1,1741,1373,833,-1,2818,2146,2665,-1,2529,2146,2818,-1,2152,3007,2622,-1,3007,2152,2535,-1,2426,1523,2216,-1,2426,1734,1523,-1,2607,2884,2994,-1,2884,2607,2533,-1,2694,2535,2583,-1,2694,2607,2535,-1,1523,1411,1279,-1,1411,1523,1734,-1,2740,2305,3158,-1,1893,2305,2740,-1,2087,2683,2796,-1,2087,1870,2683,-1,1220,2501,2584,-1,2501,1220,1639,-1,3030,2325,2448,-1,3030,2708,2325,-1,3629,2868,3574,-1,3119,2868,3629,-1,1603,759,1688,-1,1603,678,759,-1,1661,2778,1683,-1,2778,1661,2592,-1,2685,3237,3160,-1,2797,3237,2685,-1,1307,2172,2133,-1,1307,1331,2172,-1,644,983,1200,-1,507,983,644,-1,3671,3615,3521,-1,3671,3400,3615,-1,2158,2185,2675,-1,2158,1561,2185,-1,741,2148,1698,-1,1841,2148,741,-1,3329,3039,3484,-1,3329,3216,3039,-1,2588,2473,2538,-1,2473,2588,2673,-1,3041,3088,3253,-1,3088,3041,2893,-1,3233,3256,3238,-1,3246,3256,3233,-1,2615,1841,2673,-1,2615,2148,1841,-1,3400,3295,3256,-1,3295,3400,3671,-1,2473,1647,2620,-1,2473,949,1647,-1,165,509,184,-1,509,165,298,-1,3653,3638,3634,-1,3638,3653,3651,-1,3707,3539,3553,-1,3633,3539,3707,-1,3675,3645,3713,-1,3675,3606,3645,-1,930,2767,2852,-1,930,804,2767,-1,1086,3066,1061,-1,1086,3147,3066,-1,1079,3017,979,-1,1079,3067,3017,-1,1659,1564,1940,-1,1659,1678,1564,-1,3537,3718,3690,-1,3557,3718,3537,-1,3706,3661,3667,-1,3706,3677,3661,-1,3688,3719,3725,-1,3719,3688,3714,-1,3307,3428,3462,-1,3307,3299,3428,-1,2957,1622,1985,-1,2957,2515,1622,-1,1922,2556,2787,-1,1922,1877,2556,-1,3367,3544,3570,-1,3345,3544,3367,-1,3599,3372,3519,-1,3599,3597,3372,-1,1056,3235,1148,-1,1056,3002,3235,-1,3454,3681,3703,-1,3524,3681,3454,-1,3731,3564,3654,-1,3712,3564,3731,-1,3668,3662,3655,-1,3668,3693,3662,-1,3564,3543,3566,-1,3581,3543,3564,-1,155,677,93,-1,1030,677,155,-1,2521,3345,3367,-1,2521,2421,3345,-1,2254,1877,2688,-1,1976,1877,2254,-1,3261,2787,2978,-1,3261,3399,2787,-1,3639,3553,3539,-1,3639,3617,3553,-1,3634,3712,3731,-1,3712,3634,3638,-1,2443,1078,2702,-1,801,1078,2443,-1,25,29,13,-1,36,29,25,-1,56,928,64,-1,966,928,56,-1,736,98,1148,-1,736,46,98,-1,3292,3462,3472,-1,3292,3307,3462,-1,2103,2796,2509,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=21 */
		private int[] getethmoid_Geo_5_109_normalIndex_21()
		{
			int[] value = {2087,2796,2103,-1,3665,3300,3083,-1,3665,3652,3300,-1,3584,3635,3670,-1,3584,3431,3635,-1,1337,2788,2723,-1,2788,1337,1071,-1,55,1282,7,-1,55,736,1282,-1,3708,2990,3235,-1,3692,2990,3708,-1,3589,2681,3433,-1,3558,2681,3589,-1,3619,3651,3643,-1,3619,3638,3651,-1,75,92,87,-1,75,128,92,-1,49,148,144,-1,49,57,148,-1,343,269,52,-1,352,269,343,-1,405,587,620,-1,405,673,587,-1,3544,3658,3715,-1,3658,3544,3583,-1,3563,3428,3463,-1,3428,3563,3614,-1,2955,3126,2428,-1,3126,2955,3271,-1,3177,2608,2762,-1,2946,2608,3177,-1,3528,3177,3264,-1,3528,3532,3177,-1,1500,1843,1442,-1,1941,1843,1500,-1,3276,1108,1500,-1,1108,3276,3431,-1,3614,3568,3586,-1,3614,3563,3568,-1,3194,3191,2898,-1,3304,3191,3194,-1,3669,3661,3596,-1,3669,3734,3661,-1,8,63,27,-1,8,50,63,-1,264,254,151,-1,254,264,501,-1,162,42,9,-1,1327,42,162,-1,258,322,216,-1,440,322,258,-1,166,35,216,-1,166,10,35,-1,1,10,4,-1,1,35,10,-1,1039,100,1061,-1,1039,95,100,-1,162,8,31,-1,162,16,8,-1,105,875,143,-1,105,560,875,-1,650,432,107,-1,637,432,650,-1,37,65,58,-1,34,65,37,-1,11,94,33,-1,11,84,94,-1,2,91,3,-1,2,77,91,-1,641,237,372,-1,641,377,237,-1,322,1002,225,-1,322,1280,1002,-1,2204,322,440,-1,322,2204,1166,-1,95,4,100,-1,1,4,95,-1,80,24,72,-1,21,24,80,-1,599,229,275,-1,599,555,229,-1,314,541,490,-1,314,375,541,-1,991,58,912,-1,991,37,58,-1,42,290,41,-1,314,290,42,-1,72,1155,80,-1,1155,72,979,-1,84,1079,94,-1,1079,84,845,-1,21,19,24,-1,19,21,40,-1,33,62,11,-1,62,33,67,-1,164,10,166,-1,164,15,10,-1,1739,1867,2240,-1,1867,1739,2027,-1,3715,3623,3667,-1,3715,3658,3623,-1,2948,3093,3106,-1,3108,3093,2948,-1,1941,3586,3568,-1,3586,1941,1945,-1,3409,3481,3538,-1,3409,3296,3481,-1,2001,1442,1843,-1,2001,1318,1442,-1,3055,2970,3191,-1,3055,3363,2970,-1,3469,3518,3555,-1,3518,3469,3438,-1,3650,3472,3462,-1,3472,3650,3609,-1,3645,3550,3517,-1,3550,3645,3560,-1,1328,620,1037,-1,1819,620,1328,-1,1001,645,629,-1,713,645,1001,-1,7,173,55,-1,222,173,7,-1,36,64,29,-1,36,56,64,-1,3714,3576,1914,-1,3576,3714,3653,-1,3278,2723,2788,-1,2854,2723,3278,-1,2966,3707,3732,-1,2966,3112,3707,-1,2683,1328,2206,-1,2683,1819,1328,-1,542,2020,1980,-1,792,2020,542,-1,1158,1308,1724,-1,1308,1158,903,-1,3067,3706,3017,-1,3067,3677,3706,-1,3728,3679,3710,-1,3640,3679,3728,-1,2501,2755,2854,-1,2755,2501,2509,-1,1713,3589,3587,-1,1713,2776,3589,-1,79,1026,128,-1,898,1026,79,-1,1056,57,1063,-1,1056,148,57,-1,3637,3619,3709,-1,3637,3727,3619,-1,3524,3537,3541,-1,3524,3454,3537,-1,3270,2676,3016,-1,2676,3270,3052,-1,3292,2769,2527,-1,3353,2769,3292,-1,3699,3663,3654,-1,3699,3666,3663,-1,3681,3680,3689,-1,3724,3680,3681,-1,3580,3727,3637,-1,3580,3581,3727,-1,3700,3663,3655,-1,3716,3663,3700,-1,3552,3595,3531,-1,3552,3576,3595,-1,3570,3392,3367,-1,3570,3577,3392,-1,3583,3345,3353,-1,3583,3544,3345,-1,2084,1976,2254,-1,2004,1976,2084,-1,185,298,165,-1,298,185,304,-1,2776,3278,3558,-1,2776,2584,3278,-1,831,2982,826,-1,831,2947,2982,-1,3721,3684,3660,-1,3684,3721,3697,-1,3066,3710,3679,-1,3066,3147,3710,-1,222,325,173,-1,325,222,371,-1,912,2965,3239,-1,912,1155,2965,-1,1039,3300,845,-1,1039,3083,3300,-1,978,2986,2936,-1,978,986,2986,-1,1387,2947,831,-1,1387,2720,2947,-1,3690,3541,3537,-1,3732,3541,3690,-1,2608,999,2762,-1,999,2608,851,-1,3688,3643,3651,-1,3688,3697,3643,-1,3554,3560,3606,-1,3554,3536,3560,-1,3046,3246,3088,-1,3246,3046,3303,-1,3329,2844,3216,-1,3329,3195,2844,-1,2158,2893,2728,-1,2158,2675,2893,-1,2629,2620,2728,-1,2629,2616,2620,-1,3238,3295,3249,-1,3256,3295,3238,-1,2558,2844,3195,-1,2844,2558,2234,-1,949,417,1647,-1,949,134,417,-1,3303,2807,3479,-1,3303,3046,2807,-1,2674,2234,2558,-1,2674,2106,2234,-1,2185,2685,2807,-1,2133,2685,2185,-1,836,554,485,-1,836,906,554,-1,836,1683,894,-1,1661,1683,836,-1,918,906,894,-1,935,906,918,-1,2503,3170,3305,-1,2503,2239,3170,-1,2406,3460,3468,-1,2406,2529,3460,-1,2672,3399,3291,-1,2672,2787,3399,-1,2448,1893,2672,-1,2305,1893,2448,-1,3125,2688,2740,-1,2688,3125,3012,-1,419,2584,2776,-1,1220,2584,419,-1,2400,1934,2157,-1,2321,1934,2400,-1,1434,1753,1571,-1,1434,1718,1753,-1,2583,2152,2161,-1,2583,2535,2152,-1,2831,2157,2736,-1,2831,2400,2157,-1,2285,1571,1753,-1,2285,2183,1571,-1,2868,2589,2503,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=22 */
		private int[] getethmoid_Geo_5_109_normalIndex_22()
		{
			int[] value = {2868,3077,2589,-1,2665,2790,2832,-1,2790,2665,2531,-1,2925,2311,2589,-1,2498,2311,2925,-1,895,206,694,-1,206,895,746,-1,2470,1829,2573,-1,2470,1598,1829,-1,3465,3408,3590,-1,3465,3456,3408,-1,1051,1335,1333,-1,1051,818,1335,-1,3621,2932,3620,-1,2917,2932,3621,-1,3350,3629,3361,-1,3631,3629,3350,-1,3170,3474,3416,-1,3170,3153,3474,-1,2274,2435,2339,-1,2274,2534,2435,-1,3480,2658,2954,-1,3480,2993,2658,-1,1432,1825,2045,-1,1825,1432,1356,-1,3100,3012,3125,-1,3100,3167,3012,-1,1825,1233,1474,-1,1825,1356,1233,-1,1474,1004,915,-1,1474,1233,1004,-1,2836,2736,3182,-1,2831,2736,2836,-1,2884,2836,2921,-1,2884,2831,2836,-1,545,1158,393,-1,1158,545,903,-1,2371,2252,1923,-1,2557,2252,2371,-1,3007,3186,3132,-1,3007,2994,3186,-1,1308,1265,1844,-1,1308,1012,1265,-1,2512,2160,2993,-1,2512,1844,2160,-1,2770,2139,1756,-1,2139,2770,2560,-1,3572,3118,3641,-1,3118,3572,3127,-1,2887,2347,2920,-1,2347,2887,967,-1,1187,1411,1231,-1,1411,1187,1279,-1,2549,2742,2542,-1,2694,2742,2549,-1,3421,3188,3510,-1,3188,3421,3064,-1,448,1006,967,-1,569,1006,448,-1,2751,2302,2964,-1,2751,2101,2302,-1,586,1140,1024,-1,783,1140,586,-1,3510,3359,3698,-1,3510,3188,3359,-1,272,950,1052,-1,272,413,950,-1,2902,1859,3085,-1,1859,2902,2222,-1,413,1231,950,-1,413,1187,1231,-1,2657,2222,2902,-1,2222,2657,2265,-1,2887,3115,1534,-1,2887,2920,3115,-1,3155,2705,1803,-1,3155,2980,2705,-1,1534,734,471,-1,734,1534,1589,-1,1946,2747,2626,-1,1946,2467,2747,-1,2864,919,1608,-1,1260,919,2864,-1,2575,3113,2636,-1,2575,2984,3113,-1,1210,1946,1090,-1,1517,1946,1210,-1,1632,1117,1260,-1,1117,1632,1431,-1,2940,3087,2984,-1,2888,3087,2940,-1,2747,1488,2053,-1,2747,2636,1488,-1,2721,2651,1228,-1,2735,2651,2721,-1,1101,1675,1134,-1,1675,1101,1488,-1,787,727,1156,-1,727,787,572,-1,1803,984,2067,-1,1803,784,984,-1,301,409,382,-1,301,317,409,-1,1429,2179,2259,-1,1429,1717,2179,-1,135,745,401,-1,135,633,745,-1,2511,2291,2862,-1,2511,2082,2291,-1,2291,3168,2862,-1,3168,2291,2242,-1,1151,761,475,-1,1151,1468,761,-1,3622,2992,3499,-1,2992,3622,3019,-1,1083,1232,888,-1,1232,1083,1565,-1,2333,1728,1821,-1,2333,2314,1728,-1,1565,1668,1232,-1,1668,1565,2150,-1,2991,2333,2474,-1,2991,3060,2333,-1,122,738,289,-1,717,738,122,-1,2085,1874,2088,-1,1578,1874,2085,-1,2153,3059,2830,-1,3059,2153,2260,-1,3240,3015,3310,-1,2830,3015,3240,-1,2210,1874,1464,-1,1874,2210,2221,-1,678,45,179,-1,678,654,45,-1,1709,407,1375,-1,1709,897,407,-1,3410,3686,3443,-1,3686,3410,3377,-1,902,1305,770,-1,902,1297,1305,-1,2029,366,876,-1,2029,719,366,-1,2221,2553,2215,-1,2553,2221,2298,-1,2979,3377,3410,-1,3377,2979,3075,-1,676,12,476,-1,676,168,12,-1,1709,1094,897,-1,1094,1709,1800,-1,384,323,494,-1,384,18,323,-1,1293,434,730,-1,1293,1116,434,-1,2184,1293,499,-1,2184,1970,1293,-1,615,1116,1300,-1,434,1116,615,-1,1769,947,1497,-1,1769,945,947,-1,3332,3206,3250,-1,3332,3467,3206,-1,2653,3323,2905,-1,2653,2926,3323,-1,3206,3211,3501,-1,3211,3206,2927,-1,2069,3370,2262,-1,2069,3157,3370,-1,1121,1875,900,-1,1121,1933,1875,-1,2315,1288,2301,-1,1288,2315,1497,-1,627,878,1130,-1,540,878,627,-1,392,812,601,-1,685,812,392,-1,752,535,486,-1,752,947,535,-1,303,101,157,-1,303,326,101,-1,674,684,337,-1,917,684,674,-1,312,615,636,-1,312,261,615,-1,1226,550,512,-1,1270,550,1226,-1,2352,1510,1405,-1,2303,1510,2352,-1,1267,2162,2173,-1,1267,1300,2162,-1,3018,2207,3047,-1,3018,2267,2207,-1,2958,2996,3317,-1,2958,2760,2996,-1,2883,3488,3008,-1,3488,2883,3250,-1,3573,3482,3419,-1,3482,3573,3701,-1,577,205,608,-1,205,577,281,-1,3178,1257,1681,-1,3330,1257,3178,-1,1234,1967,955,-1,1234,1883,1967,-1,1321,1253,823,-1,1321,1536,1253,-1,2756,2561,2217,-1,2561,2756,3213,-1,2530,3089,2639,-1,2530,2963,3089,-1,2639,2415,2530,-1,2415,2639,2484,-1,1813,2329,1679,-1,1813,2307,2329,-1,1751,2484,1607,-1,1751,2415,2484,-1,1751,726,697,-1,1751,1607,726,-1,338,879,748,-1,552,879,338,-1,644,866,771,-1,644,598,866,-1,1127,565,564,-1,1133,565,1127,-1,2327,1658,1420,-1,2481,1658,2327,-1,1883,1253,2016,-1,1883,1234,1253,-1,3048,2327,3056,-1,3048,2481,2327,-1,2477,2016,2485,-1,2477,1883,2016,-1,3358,3056,3455,-1,3358,3048,3056,-1,2485,2900,2477,-1,2900,2485,2910,-1,3252,3455,3592,-1,3252,3358,3455,-1,2910,3309,2900,-1,3309,2910,3245,-1,2560,3127,2272,-1,3118,3127,2560,-1,2225,1952,2404,-1,1952,2225,1407,-1,3121,2213,2227,-1,2891,2213,3121,-1,682,81,32,-1,682,675,81,-1,1667,2225,2505,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=23 */
		private int[] getethmoid_Geo_5_109_normalIndex_23()
		{
			int[] value = {2225,1235,1407,-1,1667,1235,2225,-1,2598,2203,2677,-1,2598,2250,2203,-1,2203,1611,1572,-1,2203,2250,1611,-1,305,751,763,-1,305,179,751,-1,763,1437,1386,-1,763,751,1437,-1,2416,1437,2337,-1,1386,1437,2416,-1,3386,2337,3375,-1,2416,2337,3386,-1,3422,3375,3608,-1,3386,3375,3422,-1,2161,2657,2583,-1,2161,2265,2657,-1,2595,1829,1965,-1,2595,2573,1829,-1,3590,3131,2944,-1,3131,3590,3408,-1,1051,1436,1252,-1,1436,1051,1333,-1,1175,1615,954,-1,1175,1409,1615,-1,2338,2745,2363,-1,2745,2338,2944,-1,2349,2478,2290,-1,2372,2478,2349,-1,2270,2812,3095,-1,2270,2264,2812,-1,2264,2405,2812,-1,2264,2049,2405,-1,2049,2080,2405,-1,2049,1776,2080,-1,1644,1949,1888,-1,1504,1949,1644,-1,2151,1361,2121,-1,2151,1357,1361,-1,1316,537,954,-1,1316,1350,537,-1,956,1348,547,-1,956,1366,1348,-1,595,954,537,-1,954,595,708,-1,1046,1348,1476,-1,547,1348,1046,-1,1354,595,511,-1,595,1354,1403,-1,1403,2081,2117,-1,1403,1354,2081,-1,1648,1794,1617,-1,1648,1754,1794,-1,2117,2786,2857,-1,2117,2081,2786,-1,1754,2026,1794,-1,1754,1840,2026,-1,3657,3262,3109,-1,3657,3429,3262,-1,2114,1824,2270,-1,2114,1832,1824,-1,259,398,192,-1,438,398,259,-1,3678,3522,3569,-1,3678,3403,3522,-1,294,467,285,-1,294,562,467,-1,3183,2138,2180,-1,3183,2586,2138,-1,1886,1276,1882,-1,1184,1276,1886,-1,3226,2744,3021,-1,3102,2744,3226,-1,2904,1890,2837,-1,1930,1890,2904,-1,3225,3035,3316,-1,3225,2923,3035,-1,1060,2261,2176,-1,2261,1060,1128,-1,3625,3513,3344,-1,3625,3540,3513,-1,693,1389,1096,-1,693,1172,1389,-1,1023,2155,2180,-1,2155,1023,1036,-1,1771,2550,1443,-1,1771,2746,2550,-1,578,331,532,-1,578,408,331,-1,291,1020,936,-1,208,1020,291,-1,3385,3241,3432,-1,3385,3145,3241,-1,2847,2550,3277,-1,2309,2550,2847,-1,327,331,336,-1,158,331,327,-1,2076,2773,2775,-1,2773,2076,2177,-1,456,472,811,-1,456,125,472,-1,2177,2923,2773,-1,2923,2177,2176,-1,2578,3444,2837,-1,2578,3102,3444,-1,306,590,588,-1,306,115,590,-1,1704,524,1682,-1,1704,606,524,-1,1691,2596,1743,-1,1691,2420,2596,-1,1770,2585,2382,-1,1765,2585,1770,-1,1704,1685,1712,-1,1704,1682,1685,-1,524,294,192,-1,606,294,524,-1,3313,2420,2663,-1,2420,3313,2596,-1,438,926,1163,-1,438,259,926,-1,1336,2228,1791,-1,1336,887,2228,-1,920,926,869,-1,920,981,926,-1,1947,2858,2296,-1,2186,2858,1947,-1,142,1177,492,-1,1177,142,998,-1,1995,1818,2370,-1,1711,1818,1995,-1,3037,2576,2455,-1,2576,3037,3223,-1,3037,2919,3180,-1,2919,3037,2894,-1,3201,3196,2988,-1,3196,3201,3414,-1,2988,2471,3201,-1,2988,2370,2471,-1,1910,2455,2576,-1,1910,1975,2455,-1,2370,1895,2471,-1,2370,1818,1895,-1,1383,1910,1290,-1,1910,1383,1975,-1,1818,1249,1895,-1,1818,1248,1249,-1,796,1383,1290,-1,796,884,1383,-1,566,1249,1248,-1,566,504,1249,-1,528,884,796,-1,528,594,884,-1,142,504,566,-1,142,39,504,-1,460,594,528,-1,460,580,594,-1,492,39,142,-1,492,391,39,-1,1122,391,492,-1,1122,1049,391,-1,1745,922,931,-1,1745,1932,922,-1,2753,2006,2009,-1,2753,2789,2006,-1,2340,1697,2296,-1,1697,2340,1733,-1,3282,2361,3097,-1,2361,3282,2537,-1,3513,3311,3351,-1,3311,3513,3294,-1,3711,3097,3436,-1,3097,3711,3282,-1,1907,1765,1770,-1,1907,1835,1765,-1,1704,1551,1710,-1,1704,1712,1551,-1,1765,1796,1737,-1,1765,1835,1796,-1,1987,1823,1657,-1,1987,2331,1823,-1,3470,3341,2733,-1,3470,3588,3341,-1,1169,2451,531,-1,1169,2492,2451,-1,1312,2493,839,-1,2507,2493,1312,-1,2257,2686,2934,-1,2257,1978,2686,-1,330,453,256,-1,330,582,453,-1,2686,2086,2748,-1,2686,1978,2086,-1,3352,2794,3343,-1,2794,3352,2718,-1,3613,3357,3591,-1,3613,3397,3357,-1,1088,1804,1866,-1,994,1804,1088,-1,1212,2212,2086,-1,1212,1413,2212,-1,2826,1778,2973,-1,2826,2212,1778,-1,3360,3128,3466,-1,3360,3000,3128,-1,214,715,665,-1,610,715,214,-1,2408,2656,2600,-1,2408,2425,2656,-1,1372,2104,1879,-1,2110,2104,1372,-1,2600,3315,2890,-1,3315,2600,3503,-1,858,1313,1022,-1,858,1124,1313,-1,2171,1372,1450,-1,2171,2110,1372,-1,723,120,773,-1,723,140,120,-1,3545,3338,3366,-1,3514,3338,3545,-1,1113,1003,1005,-1,1423,1003,1113,-1,1423,1057,1003,-1,1849,1057,1423,-1,1849,1216,1057,-1,2030,1216,1849,-1,2030,1544,1216,-1,2065,1544,2030,-1,2065,1968,1544,-1,2065,2055,1968,-1,3120,3502,3648,-1,3502,3120,3013,-1,2336,2055,2649,-1,2055,2336,1968,-1,3545,3648,3502,-1,3545,3649,3648,-1,2055,2712,2649,-1,2065,2712,2055,-1,3366,3649,3545,-1,3366,3449,3649,-1,2065,2635,2712,-1,2030,2635,2065,-1,2810,3449,3366,-1,2810,2914,3449,-1,2635,1849,2245,-1,1849,2635,2030,-1,1858,2914,2810,-1,1858,2000,2914,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=24 */
		private int[] getethmoid_Geo_5_109_normalIndex_24()
		{
			int[] value = {2245,1423,1439,-1,1423,2245,1849,-1,953,1858,773,-1,953,2000,1858,-1,1439,1113,740,-1,1113,1439,1423,-1,344,773,120,-1,344,953,773,-1,740,1005,481,-1,1005,740,1113,-1,470,120,364,-1,470,344,120,-1,1005,493,481,-1,1003,493,1005,-1,1003,663,493,-1,1057,663,1003,-1,808,855,765,-1,929,855,808,-1,1057,990,663,-1,1216,990,1057,-1,990,1544,1687,-1,1544,990,1216,-1,3013,1951,1836,-1,3013,3120,1951,-1,1687,1968,2336,-1,1968,1687,1544,-1,1485,1990,2014,-1,1485,1315,1990,-1,1767,255,2075,-1,1767,1000,255,-1,1165,1981,1977,-1,1165,1000,1981,-1,1352,632,779,-1,1352,1315,632,-1,1152,348,824,-1,1152,871,348,-1,2390,2419,2458,-1,2218,2419,2390,-1,2218,2297,2419,-1,1998,2297,2218,-1,1998,2098,2297,-1,1795,2098,1998,-1,1795,1782,2098,-1,1623,1782,1795,-1,1623,1547,1782,-1,1623,1513,1547,-1,2419,2631,2942,-1,2631,2419,2297,-1,683,1670,1203,-1,683,1165,1670,-1,683,1013,517,-1,683,1203,1013,-1,1189,517,1013,-1,779,517,1189,-1,775,1137,824,-1,775,916,1137,-1,841,1894,1868,-1,841,871,1894,-1,2013,1352,1509,-1,1942,1352,2013,-1,2623,2182,2136,-1,2628,2182,2623,-1,2235,2568,2813,-1,2235,2028,2568,-1,2218,2931,2568,-1,2931,2218,2390,-1,2159,2223,2545,-1,2159,2194,2223,-1,1485,1943,2023,-1,2014,1943,1485,-1,2896,2452,2997,-1,2331,2452,2896,-1,1973,2365,2642,-1,2365,1973,1856,-1,1973,2706,1972,-1,1973,2642,2706,-1,2066,1329,1351,-1,2066,1961,1329,-1,455,861,815,-1,479,861,455,-1,3290,2889,3365,-1,2889,3290,2803,-1,1972,2833,2056,-1,2833,1972,2706,-1,2518,2661,2768,-1,2497,2518,2308,-1,2497,2661,2518,-1,2714,3365,2889,-1,2714,3082,3365,-1,2717,3190,2632,-1,2717,3335,3190,-1,576,106,667,-1,145,106,576,-1,1222,2058,1320,-1,1222,2143,2058,-1,3212,2846,3255,-1,3212,2814,2846,-1,2779,2713,2725,-1,2779,2785,2713,-1,3062,3402,3489,-1,3062,3174,3402,-1,2440,2574,2785,-1,2440,2383,2574,-1,3062,2143,2617,-1,3062,2802,2143,-1,1183,2143,1222,-1,2092,2143,1183,-1,1559,1398,1072,-1,1398,1559,1984,-1,1213,1011,972,-1,1332,1011,1213,-1,659,341,653,-1,659,154,341,-1,154,459,341,-1,154,397,459,-1,397,1242,459,-1,397,1055,1242,-1,2169,1242,1993,-1,1242,2169,1588,-1,2692,2169,2581,-1,2169,2692,2319,-1,2060,2175,2109,-1,2060,3509,2175,-1,2060,3632,3509,-1,3632,2060,3717,-1,3144,3674,3695,-1,3280,3674,3144,-1,1759,1531,1582,-1,1609,1531,1759,-1,1262,1643,1655,-1,1657,1643,1262,-1,754,1631,1638,-1,1631,754,642,-1,2062,2476,2507,-1,2476,2062,2680,-1,889,2559,2544,-1,2559,889,2492,-1,1936,3341,2908,-1,1936,1826,3341,-1,301,2040,643,-1,2040,301,1986,-1,1401,977,1404,-1,977,1401,1099,-1,2456,3159,3185,-1,2456,2430,3159,-1,2043,1594,2072,-1,2043,1626,1594,-1,339,1738,798,-1,1738,339,1433,-1,946,1912,944,-1,1912,946,1938,-1,1799,2506,1788,-1,2506,1799,2480,-1,1301,1448,1201,-1,1448,1301,1498,-1,1702,1310,1666,-1,1310,1702,1365,-1,1487,962,997,-1,1487,1472,962,-1,1374,997,1010,-1,1374,1487,997,-1,731,89,28,-1,731,822,89,-1,2312,1516,2709,-1,1218,1516,2312,-1,3091,1418,3141,-1,1418,3091,1492,-1,1139,1462,1376,-1,1139,840,1462,-1,252,246,171,-1,246,252,1237,-1,3189,2780,2752,-1,3227,2780,3189,-1,2266,2869,3156,-1,2266,2413,2869,-1,3297,2450,2366,-1,3362,2450,3297,-1,503,302,515,-1,302,503,235,-1,896,402,868,-1,896,449,402,-1,449,877,429,-1,449,896,877,-1,896,1662,877,-1,1662,896,1788,-1,1125,414,463,-1,414,1125,1048,-1,2072,2430,2043,-1,2437,2430,2072,-1,3704,3242,3175,-1,3704,3601,3242,-1,1912,3105,3134,-1,1938,3105,1912,-1,3187,2410,3193,-1,2233,2410,3187,-1,2865,2375,2316,-1,2865,2962,2375,-1,2024,3020,3010,-1,2024,1997,3020,-1,2752,1955,1954,-1,2752,2780,1955,-1,1925,2504,1957,-1,1925,2438,2504,-1,2273,1246,1225,-1,2126,1246,2273,-1,3297,3440,3494,-1,3326,3440,3297,-1,3162,2127,2145,-1,2943,2127,3162,-1,1246,235,1225,-1,1246,302,235,-1,1455,2678,1452,-1,1455,2815,2678,-1,2839,2465,2488,-1,2799,2465,2839,-1,2895,2799,2839,-1,2851,2799,2895,-1,1896,1551,1822,-1,1551,1896,1624,-1,1197,1574,1306,-1,1197,1287,1574,-1,1283,1147,1034,-1,1283,1205,1147,-1,383,195,425,-1,86,195,383,-1,292,191,183,-1,292,131,191,-1,189,183,191,-1,189,176,183,-1,499,319,340,-1,499,309,319,-1,933,508,992,-1,508,933,631,-1,500,267,333,-1,267,500,450,-1,2956,1703,3001,-1,2956,1583,1703,-1,2280,1738,1433,-1,2295,1738,2280,-1,892,267,300,-1,892,1763,267,-1,1119,2275,1268,-1,1119,2073,2275,-1,428,1173,602,-1,1142,1173,428,-1,1792,354,369,-1,1755,354,1792,-1,2880,1469,1334,-1,2880,2800,1469,-1,2238,2930,2687,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=25 */
		private int[] getethmoid_Geo_5_109_normalIndex_25()
		{
			int[] value = {2815,2930,2238,-1,443,187,581,-1,187,443,603,-1,1537,2587,2491,-1,1793,2587,1537,-1,354,646,652,-1,354,320,646,-1,1100,1815,1017,-1,1797,1815,1100,-1,2855,3057,2851,-1,2855,3137,3057,-1,609,529,1167,-1,529,609,295,-1,439,605,951,-1,353,605,439,-1,951,662,1091,-1,605,662,951,-1,1196,1338,848,-1,1338,1196,1452,-1,73,724,463,-1,174,724,73,-1,2943,2141,2127,-1,2943,2741,2141,-1,502,447,239,-1,649,447,502,-1,3516,3308,3227,-1,3308,3516,3612,-1,96,583,226,-1,846,583,96,-1,839,474,612,-1,839,315,474,-1,643,1936,584,-1,1936,643,1826,-1,121,852,376,-1,852,121,1029,-1,2867,2278,2861,-1,2867,2288,2278,-1,1043,38,22,-1,38,1043,1258,-1,0,168,82,-1,0,12,168,-1,2351,3272,2950,-1,2320,3272,2351,-1,3525,3580,3605,-1,3525,3579,3580,-1,3694,3491,3423,-1,3699,3491,3694,-1,3682,3675,3723,-1,3675,3682,3672,-1,2726,1954,1920,-1,2726,2752,1954,-1,1180,302,1246,-1,1180,399,302,-1,1441,1404,1440,-1,1441,1401,1404,-1,2962,2410,2375,-1,3193,2410,2962,-1,534,68,497,-1,534,478,68,-1,2144,3010,2974,-1,3010,2144,2024,-1,121,814,26,-1,121,1043,814,-1,1194,2552,942,-1,2552,1194,2654,-1,373,591,175,-1,373,617,591,-1,960,421,970,-1,421,960,679,-1,1062,679,960,-1,549,679,1062,-1,296,1142,428,-1,296,1070,1142,-1,1845,1042,1016,-1,1042,1845,1959,-1,2566,1082,1576,-1,2137,1082,2566,-1,1447,571,1245,-1,1447,835,571,-1,1408,1482,2131,-1,1408,1104,1482,-1,1593,1458,2326,-1,1593,538,1458,-1,2840,3049,3094,-1,2709,3049,2840,-1,3231,1237,3283,-1,3231,1579,1237,-1,1376,1871,1264,-1,2528,1871,1376,-1,3209,1911,2967,-1,1911,3209,1921,-1,196,687,638,-1,687,196,361,-1,570,581,634,-1,570,443,581,-1,681,1501,2414,-1,681,350,1501,-1,525,646,656,-1,525,308,646,-1,3209,3390,3611,-1,1838,3390,3209,-1,3390,2835,3611,-1,3390,3471,2835,-1,279,638,656,-1,638,279,196,-1,3293,2704,2743,-1,2781,2704,3293,-1,3146,3446,2698,-1,3009,3446,3146,-1,1385,1019,1033,-1,1019,1385,807,-1,3451,3407,3611,-1,3407,3451,3218,-1,882,1857,1241,-1,1363,1857,882,-1,1129,360,807,-1,618,360,1129,-1,3611,3044,2300,-1,3044,3611,3407,-1,386,520,280,-1,386,882,520,-1,1129,2078,1391,-1,1129,1720,2078,-1,2281,2824,2246,-1,2699,2824,2281,-1,3140,1237,1340,-1,3140,3283,1237,-1,2819,2922,3146,-1,2922,2819,2850,-1,2648,2731,2523,-1,2731,2648,2933,-1,2281,1458,1269,-1,2268,1458,2281,-1,191,2107,189,-1,1904,2107,191,-1,297,1484,790,-1,1484,297,287,-1,1692,3457,1554,-1,1692,1538,3457,-1,359,319,385,-1,319,359,395,-1,395,1418,1492,-1,395,359,1418,-1,2731,1392,1530,-1,2731,2689,1392,-1,2246,2461,2648,-1,2824,2461,2246,-1,152,110,182,-1,152,317,110,-1,1597,1916,1783,-1,1597,2018,1916,-1,1899,1205,1664,-1,1205,1899,1239,-1,167,228,238,-1,388,228,167,-1,1926,1367,1585,-1,1926,2211,1367,-1,2211,1926,1483,-1,204,1042,244,-1,204,1016,1042,-1,130,61,270,-1,43,61,130,-1,61,614,716,-1,61,43,614,-1,2865,3415,3380,-1,2865,2881,3415,-1,1673,2269,1489,-1,2241,2269,1673,-1,819,1957,1917,-1,819,822,1957,-1,977,891,1067,-1,977,962,891,-1,170,414,445,-1,170,73,414,-1,2271,2798,2324,-1,2659,2798,2271,-1,188,404,513,-1,218,404,188,-1,1636,2038,1414,-1,2167,2038,1636,-1,218,809,404,-1,218,592,809,-1,2038,2462,1885,-1,2610,2462,2038,-1,940,411,666,-1,411,940,592,-1,2229,1885,2462,-1,2229,1641,1885,-1,1081,1402,854,-1,1641,1402,1081,-1,1641,1963,1402,-1,2229,1963,1641,-1,854,1381,948,-1,1402,1381,854,-1,2613,1757,2279,-1,1757,2613,1962,-1,1480,1192,1025,-1,1480,1549,1192,-1,747,1479,498,-1,1479,747,1546,-1,1381,2129,1719,-1,2129,1381,1950,-1,2710,3205,3139,-1,2710,2671,3205,-1,1876,2463,2555,-1,2463,1876,1862,-1,2463,3027,2555,-1,2859,3027,2463,-1,1785,2555,2525,-1,2555,1785,1876,-1,802,76,556,-1,802,589,76,-1,2972,2360,3079,-1,2154,2360,2972,-1,1628,2525,2323,-1,2525,1628,1785,-1,3726,3149,3169,-1,3687,3149,3726,-1,3610,2987,2983,-1,3610,3687,2987,-1,2263,2987,3072,-1,2230,2987,2263,-1,1515,2367,1586,-1,1515,2263,2367,-1,1178,1515,1224,-1,1178,1519,1515,-1,1438,1066,850,-1,1438,1475,1066,-1,220,313,316,-1,220,446,313,-1,1375,220,1114,-1,1375,407,220,-1,2226,1642,1800,-1,596,1642,2226,-1,1735,905,1556,-1,1735,1114,905,-1,2399,1735,2373,-1,2399,2057,1735,-1,2360,2358,2602,-1,2360,2816,2358,-1,3379,2870,2971,-1,3382,2870,3379,-1,1399,1171,1567,-1,1399,794,1171,-1,3306,3457,3453,-1,3306,3373,3457,-1,2457,2938,3103,-1,2457,2528,2938,-1,1610,1677,1902,-1,1610,1773,1677,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=26 */
		private int[] getethmoid_Geo_5_109_normalIndex_26()
		{
			int[] value = {1889,2343,1960,-1,2343,1889,1362,-1,3575,3312,3453,-1,3243,3312,3575,-1,1332,1359,1011,-1,1359,1332,1416,-1,797,1378,1153,-1,1378,797,1085,-1,2611,1706,1935,-1,2611,2345,1706,-1,1153,1259,658,-1,1706,1259,1153,-1,972,939,1085,-1,939,972,1011,-1,2713,2409,2791,-1,2524,2409,2713,-1,3243,3333,3150,-1,3243,3575,3333,-1,1013,825,1189,-1,1013,864,825,-1,1203,1677,1028,-1,1670,1677,1203,-1,1670,1902,1677,-1,2033,1902,1670,-1,621,1362,1610,-1,1362,621,201,-1,2597,2200,2719,-1,2597,2093,2200,-1,3382,2729,2870,-1,3169,2729,3382,-1,2971,2399,2373,-1,2870,2399,2971,-1,1581,1931,2198,-1,1581,1864,1931,-1,2399,2202,2057,-1,2391,2202,2399,-1,1110,1556,905,-1,1556,1110,1581,-1,2202,1800,1709,-1,2226,1800,2202,-1,755,316,313,-1,316,755,769,-1,850,446,1160,-1,446,850,313,-1,1438,1160,1569,-1,1160,1438,850,-1,1131,1519,1178,-1,1131,1628,1519,-1,1519,2263,1515,-1,1519,2230,2263,-1,2230,2983,2987,-1,2323,2983,2230,-1,3081,3702,3506,-1,3197,3702,3081,-1,2719,2166,2727,-1,2719,2200,2166,-1,2323,3136,2983,-1,3136,2323,2525,-1,1131,556,1084,-1,1131,802,556,-1,2555,3136,2525,-1,3027,3136,2555,-1,2105,3069,2276,-1,2105,2856,3069,-1,1112,1862,1876,-1,1862,1112,1118,-1,1719,2219,1546,-1,2219,1719,2129,-1,718,728,1025,-1,324,728,718,-1,1757,1480,1250,-1,1757,1962,1480,-1,3184,3691,3593,-1,3691,3184,3254,-1,469,948,739,-1,854,948,469,-1,2604,3254,3184,-1,3254,2604,2697,-1,854,519,1081,-1,854,469,519,-1,1641,1244,1885,-1,1641,1081,1244,-1,3349,3439,3628,-1,3439,3349,3500,-1,1261,592,940,-1,592,1261,809,-1,1414,1885,1244,-1,2038,1885,1414,-1,3571,3439,3500,-1,3376,3439,3571,-1,607,1636,1414,-1,1636,607,844,-1,3381,3571,3342,-1,3406,3571,3381,-1,513,604,1118,-1,404,604,513,-1,1810,1964,1822,-1,1810,1927,1964,-1,0,48,12,-1,48,0,28,-1,1099,1143,1076,-1,1099,1204,1143,-1,819,1954,996,-1,1920,1954,819,-1,1604,2316,1881,-1,2316,1604,2310,-1,2823,3423,3491,-1,2823,2782,3423,-1,244,946,662,-1,946,244,1394,-1,1860,1493,1045,-1,1860,1659,1493,-1,1296,1493,1306,-1,1296,1251,1493,-1,466,131,292,-1,466,523,131,-1,278,692,409,-1,692,278,911,-1,3029,1340,1243,-1,3029,3140,1340,-1,1424,359,370,-1,1424,1418,359,-1,69,265,78,-1,69,245,265,-1,506,480,863,-1,345,480,506,-1,859,480,1325,-1,700,480,859,-1,334,506,243,-1,506,334,345,-1,1211,1514,842,-1,1095,1514,1211,-1,988,20,1319,-1,253,20,988,-1,2648,2292,2246,-1,2648,2523,2292,-1,370,385,390,-1,370,359,385,-1,791,1699,1516,-1,1699,791,518,-1,1095,1391,1514,-1,1095,870,1391,-1,1720,2645,2078,-1,1720,2379,2645,-1,544,520,406,-1,280,520,544,-1,3218,3204,3407,-1,3204,3218,2562,-1,807,1720,1129,-1,807,1385,1720,-1,520,1241,568,-1,882,1241,520,-1,3218,2952,2513,-1,3218,3451,2952,-1,2699,2952,2824,-1,2386,2952,2699,-1,3009,3427,3446,-1,3122,3427,3009,-1,3104,3009,2922,-1,3104,3122,3009,-1,3390,3028,2800,-1,1838,3028,3390,-1,212,691,2300,-1,212,236,691,-1,308,652,646,-1,652,308,350,-1,273,525,691,-1,525,273,964,-1,1838,2967,3028,-1,2967,1838,3209,-1,332,387,318,-1,396,387,332,-1,1181,1218,1370,-1,1218,1181,853,-1,1579,1538,1692,-1,1579,3231,1538,-1,1340,181,1243,-1,252,181,1340,-1,1310,503,1198,-1,1310,567,503,-1,1716,2131,2413,-1,2131,1716,1408,-1,1787,941,660,-1,1787,1506,941,-1,2043,2456,2188,-1,2456,2043,2430,-1,1903,2465,1900,-1,2488,2465,1903,-1,2977,2258,2627,-1,2494,2258,2977,-1,1512,1142,1070,-1,1142,1512,1760,-1,1173,1760,1217,-1,1173,1142,1760,-1,394,617,373,-1,914,617,394,-1,617,1062,960,-1,1062,617,914,-1,3065,2233,3187,-1,3065,1817,2233,-1,2310,2865,2316,-1,2310,2881,2865,-1,2375,1789,1881,-1,2410,1789,2375,-1,1326,1204,1511,-1,1326,1240,1204,-1,3326,3420,3440,-1,3326,3224,3420,-1,3162,3450,3420,-1,3154,3450,3162,-1,3033,1997,1944,-1,3020,1997,3033,-1,3694,3668,3666,-1,3668,3694,3720,-1,3020,3612,3602,-1,3033,3612,3020,-1,3459,3272,3504,-1,3459,3554,3272,-1,938,2124,1775,-1,2044,2124,938,-1,758,756,651,-1,758,942,756,-1,1029,26,872,-1,1029,121,26,-1,716,2149,1027,-1,716,2019,2149,-1,2780,2008,1955,-1,2008,2780,2805,-1,3511,3722,3720,-1,3722,3511,3602,-1,2716,2317,2950,-1,2716,2412,2317,-1,415,1091,722,-1,415,951,1091,-1,951,415,1167,-1,1167,439,951,-1,439,1167,529,-1,2539,2798,2960,-1,2539,2324,2798,-1,1527,2191,2100,-1,1527,2201,2191,-1,1846,2201,1527,-1,1784,2165,2097,-1,1784,1828,2165,-1,696,727,711,-1,734,727,696,-1,320,656,646,-1,656,320,279,-1,925,2491,2335,-1,1537,2491,925,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=27 */
		private int[] getethmoid_Geo_5_109_normalIndex_27()
		{
			int[] value = {1721,321,1196,-1,1721,318,321,-1,2704,1334,1540,-1,2880,1334,2704,-1,1674,196,279,-1,1543,196,1674,-1,369,1732,1792,-1,369,328,1732,-1,118,59,99,-1,118,116,59,-1,3369,3496,3425,-1,3496,3369,3362,-1,3134,1969,1912,-1,3134,3202,1969,-1,2874,3339,2670,-1,2874,2696,3339,-1,3116,3493,3417,-1,3116,3232,3493,-1,450,300,267,-1,300,450,729,-1,1723,1311,1309,-1,1755,1311,1723,-1,167,631,388,-1,508,631,167,-1,1174,1585,957,-1,1050,1585,1174,-1,378,86,383,-1,378,70,86,-1,1296,1574,1664,-1,1296,1306,1574,-1,2019,612,583,-1,2019,1863,612,-1,2943,3420,3378,-1,3420,2943,3162,-1,426,1157,484,-1,1157,426,1201,-1,2359,1472,1487,-1,2359,2366,1472,-1,2126,3098,3154,-1,2126,2273,3098,-1,2619,1920,1917,-1,2619,2726,1920,-1,2881,2288,2867,-1,2310,2288,2881,-1,2436,1268,2275,-1,1394,1268,2436,-1,3242,2041,3175,-1,3242,2236,2041,-1,3646,3626,3616,-1,3626,3646,3636,-1,892,2956,2897,-1,892,1583,2956,-1,2765,2188,2456,-1,2765,2369,2188,-1,1109,551,445,-1,551,1109,1206,-1,1365,567,1310,-1,1365,600,567,-1,1017,711,1100,-1,664,711,1017,-1,567,235,503,-1,235,567,207,-1,835,426,571,-1,426,835,669,-1,3260,1851,2050,-1,3260,3026,1851,-1,1752,2286,2320,-1,1752,1646,2286,-1,2412,2504,2438,-1,2434,2504,2412,-1,2208,3156,3224,-1,2208,2266,3156,-1,3076,2752,2726,-1,3076,3189,2752,-1,1370,2312,2018,-1,1218,2312,1370,-1,1418,3117,3141,-1,1424,3117,1418,-1,1218,791,1516,-1,1218,853,791,-1,451,28,0,-1,451,731,28,-1,891,1472,1550,-1,962,1472,891,-1,1797,2475,1815,-1,1797,2402,2475,-1,1157,1440,1193,-1,1440,1157,1441,-1,1104,1240,1326,-1,1104,1408,1240,-1,2488,1869,2502,-1,2488,1903,1869,-1,2275,3164,2436,-1,2275,3078,3164,-1,1845,2603,2468,-1,2137,2603,1845,-1,2295,2696,2874,-1,2295,2280,2696,-1,2072,1291,2022,-1,2072,1594,1291,-1,2456,3232,2765,-1,2456,3185,3232,-1,2284,2903,3045,-1,2124,2903,2284,-1,1511,1099,1401,-1,1099,1511,1204,-1,2544,2594,2540,-1,2544,2559,2594,-1,2540,2733,2040,-1,2540,2594,2733,-1,2493,2431,899,-1,2493,2454,2431,-1,1531,1478,1524,-1,1531,1609,1478,-1,1651,2017,1637,-1,1651,1823,2017,-1,1524,1284,1577,-1,1524,1478,1284,-1,3255,2768,3034,-1,3255,2846,2768,-1,3144,2581,2516,-1,3144,3114,2581,-1,2175,2287,2079,-1,2135,2287,2175,-1,2581,1993,2516,-1,1993,2581,2169,-1,2175,2194,2135,-1,2175,2223,2194,-1,2319,1588,2169,-1,1588,2319,1908,-1,1908,2128,1446,-1,1908,2308,2128,-1,2128,1349,1446,-1,1349,2128,2090,-1,2090,1559,1349,-1,1559,2090,2195,-1,2195,1984,1559,-1,1984,2195,2341,-1,1999,1330,1263,-1,1762,1330,1999,-1,2383,2011,2574,-1,2383,2061,2011,-1,2519,2951,2569,-1,2951,2519,2679,-1,3489,2802,3062,-1,3489,3374,2802,-1,2496,2785,2779,-1,2496,2440,2785,-1,3402,3255,3490,-1,3402,3212,3255,-1,1416,2383,2440,-1,1416,2061,2383,-1,1055,1887,1993,-1,1887,1055,1259,-1,1320,659,1222,-1,667,659,1320,-1,3674,3335,3374,-1,3335,3674,3607,-1,1263,667,1320,-1,576,667,1263,-1,1053,479,628,-1,1053,861,479,-1,2833,2092,2056,-1,2092,2833,2617,-1,2195,2308,2518,-1,2195,2128,2308,-1,2090,2128,2195,-1,2706,3483,2833,-1,3483,2706,3348,-1,2803,2122,2889,-1,2122,2803,2066,-1,672,479,455,-1,647,479,672,-1,2714,1984,2569,-1,1801,1984,2714,-1,1072,628,653,-1,1072,1053,628,-1,1351,749,815,-1,1351,1329,749,-1,3290,3404,2997,-1,3507,3404,3290,-1,1973,1227,1390,-1,1227,1973,1972,-1,1390,1856,1973,-1,1856,1390,1525,-1,3340,2997,3404,-1,2896,2997,3340,-1,1329,510,749,-1,510,1329,913,-1,1943,2380,2060,-1,1943,2014,2380,-1,2390,3058,2931,-1,3058,2390,2458,-1,2568,3319,2813,-1,3319,2568,2931,-1,2235,2838,2277,-1,2838,2235,2813,-1,2318,2182,2628,-1,2318,2013,2182,-1,1726,2277,1894,-1,2277,1726,2235,-1,1623,1563,1137,-1,1563,1623,1795,-1,1772,1189,989,-1,1509,1189,1772,-1,346,824,348,-1,346,775,824,-1,1179,1513,916,-1,1179,1547,1513,-1,799,54,410,-1,799,830,54,-1,1960,1229,881,-1,1960,1948,1229,-1,2190,1782,1669,-1,2190,2098,1782,-1,2297,2190,2631,-1,2190,2297,2098,-1,2942,2407,2510,-1,2407,2942,2631,-1,90,779,632,-1,517,779,90,-1,1981,2579,1977,-1,2579,1981,2863,-1,2397,3199,2520,-1,2397,2827,3199,-1,2075,90,1345,-1,2075,255,90,-1,2520,2014,1990,-1,2014,2520,2380,-1,2012,3003,3148,-1,2012,2064,3003,-1,3011,2171,2123,-1,3011,3163,2171,-1,1135,1836,929,-1,1135,2012,1836,-1,663,1018,611,-1,990,1018,663,-1,1041,765,855,-1,1041,786,765,-1,493,611,232,-1,663,611,493,-1,1150,975,1054,-1,1150,993,975,-1,111,420,140,-1,349,420,111,-1,993,1075,975,-1,993,1022,1075,-1,668,140,723,-1,111,140,668,-1,1022,1454,1075,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=28 */
		private int[] getethmoid_Geo_5_109_normalIndex_28()
		{
			int[] value = {1022,1313,1454,-1,1707,723,1855,-1,668,723,1707,-1,1313,2156,1454,-1,1313,2039,2156,-1,1707,2792,2700,-1,1707,1855,2792,-1,2039,2806,2156,-1,2039,2793,2806,-1,3338,2700,2792,-1,2700,3338,3267,-1,2806,3315,3371,-1,2806,2793,3315,-1,3514,3267,3338,-1,3267,3514,3452,-1,3371,3503,3594,-1,3371,3315,3503,-1,3533,3452,3514,-1,3452,3533,3498,-1,3594,3547,3549,-1,3594,3503,3547,-1,3648,3038,3120,-1,3648,3567,3038,-1,1836,3148,3013,-1,2012,3148,1836,-1,3366,2792,2810,-1,3338,2792,3366,-1,140,364,120,-1,140,420,364,-1,3163,2110,2171,-1,3163,2808,2110,-1,901,1022,993,-1,901,858,1022,-1,2554,3315,2793,-1,2554,2890,3315,-1,2808,2104,2110,-1,2808,2543,2104,-1,1802,1830,1124,-1,1802,1790,1830,-1,2249,2425,2408,-1,2249,2170,2425,-1,3322,3559,2973,-1,3642,3559,3322,-1,3527,3466,3642,-1,3527,3360,3466,-1,357,190,193,-1,357,622,190,-1,575,1413,1212,-1,575,622,1413,-1,2750,1804,2718,-1,1804,2750,1866,-1,3397,2826,3357,-1,3397,2748,2826,-1,885,582,1371,-1,582,885,453,-1,3383,3647,3343,-1,3383,3588,3647,-1,2908,3588,3383,-1,3588,2908,3341,-1,2594,3470,2733,-1,2934,3470,2594,-1,2365,1609,1759,-1,2365,1856,1609,-1,1635,1499,1553,-1,1654,1499,1635,-1,1743,1796,1761,-1,1743,1737,1796,-1,1499,1696,1521,-1,1696,1499,1654,-1,2186,1781,2299,-1,1806,1781,2186,-1,3562,3282,3711,-1,3282,3562,3281,-1,1947,1806,2186,-1,1827,1806,1947,-1,3281,2537,3282,-1,2537,3281,2582,-1,1745,2340,2361,-1,1733,2340,1745,-1,931,1733,1745,-1,1049,1733,931,-1,1768,1471,1177,-1,1768,1820,1471,-1,1740,1177,998,-1,1740,1768,1177,-1,412,528,431,-1,412,460,528,-1,1138,1740,998,-1,1731,1740,1138,-1,594,1199,884,-1,594,1032,1199,-1,1230,504,427,-1,1249,504,1230,-1,1199,1383,884,-1,1383,1199,1532,-1,1865,1249,1230,-1,1895,1249,1865,-1,1532,1975,1383,-1,1975,1532,1939,-1,1910,2547,1906,-1,2547,1910,2576,-1,1811,1995,2251,-1,1811,1861,1995,-1,2576,3336,2547,-1,3336,2576,3223,-1,1781,2251,2299,-1,1781,1811,2251,-1,3223,3711,3336,-1,3711,3223,3562,-1,3037,3562,3223,-1,3037,3180,3562,-1,2186,3196,2858,-1,2299,3196,2186,-1,1818,1449,1248,-1,1449,1818,1711,-1,492,1471,1122,-1,1471,492,1177,-1,2586,1689,2138,-1,2586,2640,1689,-1,869,1191,920,-1,1191,869,963,-1,869,259,285,-1,926,259,869,-1,2892,3279,2640,-1,2892,3328,3279,-1,3403,2585,3522,-1,2585,3403,2382,-1,686,192,398,-1,524,192,686,-1,2382,1635,1770,-1,2382,1798,1635,-1,1612,1691,1535,-1,1612,2420,1691,-1,1710,606,1704,-1,1710,760,606,-1,1092,590,1184,-1,588,590,1092,-1,3102,3418,3444,-1,3102,3226,3418,-1,980,2176,2177,-1,2176,980,1060,-1,1276,472,857,-1,811,472,1276,-1,1020,2177,2076,-1,2177,1020,980,-1,2309,1443,2550,-1,1419,1443,2309,-1,2342,1419,2309,-1,2342,1470,1419,-1,208,158,125,-1,158,208,291,-1,735,1443,616,-1,735,1771,1443,-1,1172,1873,1389,-1,1172,1930,1873,-1,3540,3294,3513,-1,3540,3316,3294,-1,1294,546,995,-1,1294,1128,546,-1,2176,3035,2923,-1,3035,2176,2261,-1,3625,2837,3444,-1,2904,2837,3625,-1,435,588,693,-1,435,306,588,-1,456,251,522,-1,251,456,115,-1,408,981,920,-1,578,981,408,-1,3600,3286,2935,-1,3497,3286,3600,-1,2180,1397,1023,-1,2180,2138,1397,-1,2663,3328,3313,-1,3328,2663,3279,-1,1724,1844,2512,-1,1844,1724,1308,-1,2114,3095,2482,-1,2114,2270,3095,-1,3542,3429,3657,-1,3542,3477,3429,-1,1794,2005,1727,-1,1794,2026,2005,-1,1617,1727,1507,-1,1617,1794,1727,-1,1476,1507,1046,-1,1476,1617,1507,-1,1627,1476,1348,-1,1627,1613,1476,-1,1350,241,537,-1,1350,1361,241,-1,2332,1949,2070,-1,2332,2174,1949,-1,2526,2812,2405,-1,2985,2812,2526,-1,2985,3095,2812,-1,3430,3095,2985,-1,1824,1779,1831,-1,1824,1686,1779,-1,1832,1686,1824,-1,1832,1619,1686,-1,1840,1619,1832,-1,1840,1634,1619,-1,1754,1634,1840,-1,1754,1627,1634,-1,1648,1627,1754,-1,1613,1627,1648,-1,1503,1343,1162,-1,1503,1965,1343,-1,1730,1503,1164,-1,1736,1503,1730,-1,2572,2944,2338,-1,2944,2572,3590,-1,1422,1279,1187,-1,1279,1422,1434,-1,3413,2953,3298,-1,3121,2953,3413,-1,2227,2953,3121,-1,2031,2953,2227,-1,1384,2227,1410,-1,1384,2031,2227,-1,862,1410,706,-1,862,1384,1410,-1,1756,1983,1444,-1,1983,1756,2139,-1,561,763,961,-1,561,305,763,-1,654,32,45,-1,654,682,32,-1,2404,1680,2306,-1,2404,1952,1680,-1,2771,2306,2834,-1,2771,2404,2306,-1,2989,2677,3230,-1,2989,2598,2677,-1,2272,2139,2560,-1,2272,1983,2139,-1,1928,1983,2272,-1,1611,675,682,-1,1611,1680,675,-1,1410,2213,1415,-1,2213,1410,2227,-1,2650,1928,2272,-1,1915,1928,2650,-1,3495,3053,3534,-1,3495,3234,3053,-1,2007,2389,2132,-1,2389,2007,2071,-1,3455,3004,3389,-1,3455,3056,3004,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=29 */
		private int[] getethmoid_Geo_5_109_normalIndex_29()
		{
			int[] value = {2843,1967,2684,-1,2843,2118,1967,-1,3080,2481,3048,-1,3080,2634,2481,-1,1967,1127,955,-1,2118,1127,1967,-1,1321,1587,1536,-1,1321,1486,1587,-1,1286,1486,1321,-1,1286,1494,1486,-1,1298,1494,1286,-1,1298,1520,1494,-1,146,748,697,-1,338,748,146,-1,1649,697,748,-1,1649,1751,697,-1,2042,1560,1590,-1,2042,1684,1560,-1,1616,2329,2381,-1,1679,2329,1616,-1,2522,2484,2639,-1,2484,2522,2446,-1,2499,2963,2530,-1,2499,2913,2963,-1,2514,2052,2561,-1,2514,2083,2052,-1,2052,1684,1989,-1,2083,1684,2052,-1,2083,1560,1684,-1,2071,1560,2083,-1,2071,1520,1560,-1,2007,1520,2071,-1,2007,1494,1520,-1,1808,1494,2007,-1,1808,1486,1494,-1,1587,1486,1808,-1,1007,1321,823,-1,1286,1321,1007,-1,2485,2389,2910,-1,2132,2389,2485,-1,1967,2477,2684,-1,1883,2477,1967,-1,780,559,85,-1,680,559,780,-1,806,1247,1033,-1,806,757,1247,-1,3419,3323,3317,-1,3323,3419,3482,-1,3008,3573,3047,-1,3573,3008,3488,-1,2232,2760,2958,-1,2232,2164,2760,-1,2996,2267,3018,-1,2996,2352,2267,-1,1267,2207,1226,-1,2207,1267,2173,-1,2303,1747,1510,-1,2036,1747,2303,-1,1270,674,550,-1,1405,674,1270,-1,101,636,512,-1,101,312,636,-1,917,1460,684,-1,1555,1460,917,-1,157,392,303,-1,337,392,157,-1,627,486,326,-1,627,752,486,-1,1445,812,685,-1,1445,1466,812,-1,601,878,540,-1,601,900,878,-1,2301,1130,2262,-1,1130,2301,1288,-1,2069,2905,3157,-1,1875,2905,2069,-1,3370,3501,3211,-1,3370,3701,3501,-1,2653,2187,2926,-1,2048,2187,2653,-1,2927,3467,3214,-1,3467,2927,3206,-1,261,434,615,-1,18,434,261,-1,1970,1116,1293,-1,1970,1958,1116,-1,3214,2691,2646,-1,3214,3467,2691,-1,2298,2210,1837,-1,2298,2221,2210,-1,768,366,770,-1,233,366,768,-1,1305,1573,1209,-1,1305,1758,1573,-1,1758,2660,2828,-1,1758,1892,2660,-1,961,1386,1395,-1,961,763,1386,-1,728,233,768,-1,233,728,324,-1,179,712,751,-1,179,45,712,-1,2215,1874,2221,-1,2088,1874,2215,-1,738,1232,1223,-1,1232,738,717,-1,1578,1464,1874,-1,909,1464,1578,-1,1821,2474,2333,-1,2085,2474,1821,-1,2333,2992,2314,-1,2333,3060,2992,-1,1083,271,437,-1,888,271,1083,-1,3499,2842,3622,-1,3499,2730,2842,-1,1728,1468,1151,-1,1728,1992,1468,-1,1526,1093,1429,-1,934,1093,1526,-1,1355,810,743,-1,1355,1606,810,-1,2259,2888,3251,-1,2259,2179,2888,-1,2082,1606,2291,-1,2082,1517,1606,-1,401,1117,733,-1,401,745,1117,-1,1225,207,572,-1,1225,235,207,-1,1905,1102,904,-1,1956,1102,1905,-1,2116,1225,787,-1,1225,2116,2273,-1,1580,701,471,-1,2961,701,1580,-1,734,1228,727,-1,1589,1228,734,-1,2096,1123,787,-1,1101,1123,2096,-1,2599,2626,2590,-1,2599,2508,2626,-1,1675,2763,2134,-1,1675,3113,2763,-1,2636,1675,1488,-1,1675,2636,3113,-1,3087,2179,2536,-1,2179,3087,2888,-1,1090,633,1210,-1,1090,971,633,-1,2511,2984,2575,-1,2940,2984,2511,-1,2763,3087,2766,-1,2984,3087,2763,-1,1946,2508,1090,-1,1946,2626,2508,-1,1589,2067,2113,-1,1534,2067,1589,-1,2067,1534,3115,-1,701,2879,1534,-1,2879,701,2051,-1,2901,2961,1580,-1,2961,2901,2849,-1,2742,2902,3219,-1,2902,2742,2657,-1,1187,856,1422,-1,413,856,1187,-1,3359,2606,3023,-1,3359,2964,2606,-1,3698,3222,3510,-1,3222,3698,3085,-1,272,783,586,-1,569,783,272,-1,2751,3064,2821,-1,2751,3188,3064,-1,874,569,448,-1,783,569,874,-1,2321,2542,2199,-1,2549,2542,2321,-1,2583,2742,2694,-1,2583,2657,2742,-1,3064,3266,3228,-1,3421,3266,3064,-1,2879,967,2887,-1,967,2879,448,-1,3572,3492,3441,-1,3641,3492,3572,-1,3641,2560,2770,-1,2560,3641,3118,-1,1154,1395,1353,-1,1154,961,1395,-1,3459,3030,3291,-1,3459,3288,3030,-1,2534,3007,3132,-1,2622,3007,2534,-1,903,1012,1308,-1,903,867,1012,-1,762,903,545,-1,903,762,867,-1,1722,1639,1220,-1,1923,1639,1722,-1,737,545,380,-1,545,737,762,-1,1004,380,915,-1,380,1004,737,-1,3182,2426,3458,-1,2736,2426,3182,-1,3458,2216,3014,-1,2426,2216,3458,-1,2045,2108,2658,-1,2108,2045,1825,-1,3100,2339,2878,-1,2655,2339,3100,-1,2160,2658,2993,-1,2658,2160,2045,-1,2878,2435,3198,-1,2339,2435,2878,-1,3361,3574,3198,-1,3629,3574,3361,-1,3314,3631,3350,-1,3314,3659,3631,-1,3153,3621,3474,-1,3621,3153,2917,-1,818,630,206,-1,630,818,1051,-1,3590,2601,3465,-1,2572,2601,3590,-1,2573,2866,2470,-1,2924,2866,2573,-1,3384,3129,3456,-1,3384,3054,3129,-1,1744,2498,1847,-1,1744,2311,2498,-1,2998,2790,3054,-1,2998,2832,2790,-1,694,833,1373,-1,833,694,206,-1,2529,1373,2146,-1,2406,1373,2529,-1,1753,2622,2285,-1,2622,1753,2152,-1,2736,1734,2426,-1,2736,2157,1734,-1,2535,2994,3007,-1,2994,2535,2607,-1,2161,1753,1718,-1,2161,2152,1753,-1,1734,1934,1411,-1,1934,1734,2157,-1,1893,2688,1922,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=30 */
		private int[] getethmoid_Geo_5_109_normalIndex_30()
		{
			int[] value = {2740,2688,1893,-1,1922,2672,1893,-1,1922,2787,2672,-1,2708,2614,2325,-1,2708,2886,2614,-1,1766,2932,2917,-1,1766,1807,2932,-1,3631,3119,3629,-1,3051,3119,3631,-1,2239,3153,3170,-1,2239,2181,3153,-1,894,305,561,-1,759,305,894,-1,894,1688,759,-1,1688,894,1683,-1,3618,3475,2761,-1,3475,3618,3486,-1,1368,958,2374,-1,1368,554,958,-1,935,958,554,-1,935,1105,958,-1,417,1307,1561,-1,619,1307,417,-1,3535,3237,3529,-1,3237,3535,3160,-1,619,1331,1307,-1,619,771,1331,-1,1841,134,949,-1,1841,741,134,-1,3249,3329,3484,-1,3295,3329,3249,-1,2616,2473,2620,-1,2616,2538,2473,-1,2538,2294,1870,-1,2538,2616,2294,-1,2893,3046,3088,-1,2893,2675,3046,-1,3633,3531,3539,-1,3531,3633,3552,-1,2852,986,930,-1,986,2852,2986,-1,3083,1061,3066,-1,1039,1061,3083,-1,1155,3017,2965,-1,1155,979,3017,-1,2571,1659,1860,-1,1659,2571,1678,-1,3505,3363,2682,-1,3363,3505,3487,-1,3677,3596,3661,-1,3677,3652,3596,-1,3660,3729,3721,-1,3660,3676,3729,-1,1596,886,1678,-1,886,1596,820,-1,1461,141,1393,-1,141,1461,177,-1,1985,829,1182,-1,1622,829,1985,-1,3032,1056,1063,-1,1056,3032,3002,-1,3112,1026,2999,-1,966,1026,3112,-1,3485,3556,3692,-1,3485,3473,3556,-1,3639,3655,3662,-1,3700,3655,3639,-1,3693,3724,3662,-1,3693,3680,3724,-1,3654,3566,3699,-1,3564,3566,3654,-1,3683,3431,3276,-1,3635,3431,3683,-1,2387,3299,3307,-1,2304,3299,2387,-1,93,789,13,-1,677,789,93,-1,3392,2702,2701,-1,3519,2702,3392,-1,2556,3052,2978,-1,2676,3052,2556,-1,3731,3595,3634,-1,3731,3716,3595,-1,3463,3299,2804,-1,3299,3463,3428,-1,1078,2701,2702,-1,1078,974,2701,-1,64,1063,57,-1,928,1063,64,-1,3679,3083,3066,-1,3679,3665,3083,-1,542,645,792,-1,542,352,645,-1,2681,1071,778,-1,2681,2788,1071,-1,3398,2683,3448,-1,2683,3398,2796,-1,792,2178,2020,-1,969,2178,792,-1,1071,343,778,-1,629,343,1071,-1,3718,3235,3002,-1,3708,3235,3718,-1,3107,3448,2853,-1,3398,3448,3107,-1,3714,3651,3653,-1,3714,3688,3651,-1,57,29,64,-1,49,29,57,-1,55,257,46,-1,173,257,55,-1,3291,3536,3459,-1,3291,3550,3536,-1,3318,3296,3409,-1,3318,3210,3296,-1,3609,3583,3472,-1,3583,3609,3658,-1,3463,3555,3563,-1,3463,3469,3555,-1,1442,2970,3063,-1,2970,1442,1318,-1,3586,3609,3650,-1,3584,3609,3586,-1,1108,1941,1500,-1,1945,1941,1108,-1,3584,3658,3609,-1,3658,3584,3623,-1,952,2715,2563,-1,952,1369,2715,-1,374,501,264,-1,501,374,488,-1,216,62,258,-1,216,35,62,-1,707,702,613,-1,707,539,702,-1,1629,178,198,-1,178,1629,776,-1,374,147,164,-1,374,329,147,-1,225,216,322,-1,225,166,216,-1,5,3,15,-1,5,2,3,-1,15,4,10,-1,15,3,4,-1,845,95,1039,-1,845,84,95,-1,9,16,162,-1,9,53,16,-1,490,290,314,-1,490,496,290,-1,33,72,24,-1,33,94,72,-1,100,3,91,-1,4,3,100,-1,372,260,389,-1,260,372,237,-1,1280,2256,1852,-1,2256,1280,1166,-1,403,185,224,-1,185,403,304,-1,66,184,47,-1,184,66,165,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getethmoid_Coord_6_109_point_1()
		{
			double[] value = {-0.0199,57.6964,2.1337,-0.0244,57.6204,2.2092,-0.0198,57.7173,2.1568,-0.0189,57.7195,2.2759,-0.0246,57.6613,2.2896,-0.0202,57.7021,2.3467,-0.0208,57.6913,2.3564,-0.0397,57.5934,2.3554,-0.059,57.6641,2.3514,0.0,57.7563,2.3445,-0.0463,57.6589,2.3669,0.0,57.6727,2.3945,-0.0417,57.1141,1.4837,0.0,57.1409,1.4694,0.0,57.0871,1.488,-0.0317,57.1683,1.5582,-0.0143,57.1484,1.5229,-0.0259,56.9458,1.5212,-0.0625,57.4332,2.3731,-0.0541,57.4218,2.3205,-0.0629,57.3224,2.3651,-0.045,57.421,2.2713,-0.0637,57.4089,2.1941,-0.0413,57.2424,2.2589,-0.057,57.2158,1.6361,-0.0335,56.9195,1.6323,-0.0375,57.0456,1.7139,-0.0232,57.2669,2.5274,-0.0223,57.2766,2.5296,-0.0197,57.3008,2.4981,-0.0225,57.3378,2.5407,-0.0158,57.3285,2.5413,-0.0,57.4078,2.5717,-0.0003,57.2966,2.5631,-0.0244,57.2164,2.5158,-0.0246,57.2043,2.513,-0.0192,56.6488,1.9173,-0.017,56.6501,1.9285,-0.0177,56.6568,1.9221,0.0,56.6588,2.0164,0.0,56.6629,2.0332,-0.0159,56.6761,2.0752,0.0,56.6693,2.1631,0.0,56.6697,2.1725,0.0,56.6673,2.188,0.0,56.6664,2.2065,-0.0111,56.6681,2.1041,-0.0372,57.421,2.5139,0.0,57.4206,2.5691,-0.0384,57.317,2.4766,-0.0275,57.2743,2.4509,-0.0308,57.2172,2.4146,-0.0377,57.0552,1.7278,-0.0284,57.0888,1.7923,-0.0689,57.299,1.7256,-0.0676,57.3053,1.7992,-0.029,57.1032,1.8624,-0.0329,57.1096,1.9119,-0.036,57.1969,2.1954,-0.0393,57.2161,2.2303,-0.0754,57.3973,2.1595,-0.0553,57.2048,1.6218,0.0,56.6395,1.9497,-0.0228,56.7174,2.0407,-0.0166,56.6931,2.0558,-0.0242,56.6929,2.1031,-0.0302,56.7293,2.102,-0.0166,56.6795,2.1002,-0.0107,56.6601,1.9849,0.0,56.6674,2.1308,-0.0134,56.6819,2.0411,-0.0104,56.6632,1.9959,0.0,57.0175,1.4869,0.0,56.9141,1.5256,-0.0202,56.7281,1.6399,-0.026,56.85,1.5433,0.0,56.8081,1.6082,-0.0314,56.7518,2.2892,-0.027,56.7673,2.3529,-0.0272,56.7756,2.3448,-0.0205,56.6685,1.9897,-0.0259,56.8406,2.4022,-0.0188,56.9486,2.4161,-0.0295,56.8526,2.4063,-0.0125,56.6709,2.0909,-0.2684,56.7447,1.5258,-0.2864,56.7459,1.5527,-0.2898,56.7474,1.5521,-0.2563,56.7633,1.5576,-0.2041,56.8469,1.5579,-0.2021,56.8577,1.5861,-0.2445,56.7771,1.5282,-0.2664,56.7485,1.5211,-0.1064,57.2058,2.0101,-0.0958,57.1363,2.0349,-0.0852,57.0842,1.9872,-0.2176,56.8424,1.5207,-0.2706,56.8666,1.4574,-0.1678,56.8881,1.5468,-0.1153,57.0826,1.6552,-0.106,56.981,1.6792,-0.1087,57.0675,1.6348,-0.1091,57.0239,1.7131,-0.1005,57.0376,1.7551,-0.1108,57.0359,1.7089,-0.1247,57.0028,1.6721,-0.1179,56.9464,1.6584,-0.1421,56.9817,1.624,-0.128,56.9313,1.6362,-0.0903,57.0061,1.5485,-0.1001,57.0035,1.5099,-0.1692,56.8974,1.5679,-0.1548,56.9501,1.5848,-0.1756,56.8974,1.5783,-0.1909,57.0153,1.4369,-0.0427,57.1342,1.4631,-0.0949,57.0266,1.4885,-0.1287,57.2312,1.6607,-0.1107,57.1086,1.6895,-0.1406,56.9274,1.5888,-0.0501,57.1365,1.5234,-0.0564,57.1164,1.5242,-0.0466,57.108,1.5168,-0.1127,57.1793,2.1938,-0.1133,57.1783,2.134,-0.1131,57.1859,2.1307,-0.0853,57.0818,1.9906,-0.0981,56.7481,1.7635,-0.1095,56.7417,1.7294,-0.1154,56.7998,1.7059,-0.1318,57.2366,2.1023,-0.1291,57.0817,2.0985,-0.1458,57.2503,2.0495,-0.1224,56.9286,1.7304,-0.1301,56.9205,1.7157,-0.1289,56.9192,1.7444,-0.1728,56.9151,1.6165,-0.1677,56.9896,1.5899,-0.1842,56.9795,1.5822,-0.135,56.9291,1.6826,-0.1297,57.0203,1.6627,-0.1292,57.0177,1.6532,-0.1162,57.1837,2.2725,-0.1033,57.202,2.3511,-0.107,57.1332,2.29,-0.1131,57.0959,2.1527,-0.1311,57.0823,1.6279,-0.1578,57.0018,1.6726,-0.1571,56.9984,1.6657,-0.1657,57.0407,1.5651,-0.18,56.9651,1.6016,-0.1914,56.9586,1.5978,-0.1675,56.9743,1.6114,-0.1512,57.0517,1.581,-0.1351,57.0662,1.6006,-0.1364,57.107,1.6565,-0.1421,57.0117,1.7088,-0.1474,57.0053,1.6877,-0.1463,57.0692,1.9801,-0.1395,57.2601,1.992,-0.1418,57.075,2.0462,-0.1968,56.8824,1.5903,-0.2173,56.8575,1.5925,-0.2135,56.8503,1.5851,-0.2056,56.8598,1.5837,-0.2582,56.7611,1.5623,-0.1933,57.0261,1.5622,-0.1954,57.0272,1.5634,-0.2059,57.0107,1.5577,-0.1333,57.1085,1.6584,-0.1382,57.1449,1.6905,-0.1574,56.8832,1.7102,-0.16,56.8839,1.7063,-0.134,57.0656,1.6001,-0.1304,57.0816,1.6258,-0.1587,56.9047,1.6357,-0.1734,56.8962,1.617,-0.1293,56.9259,1.6379,-0.1191,56.9408,1.6596,-0.1353,56.9152,1.6549,-0.0891,57.0166,1.5718,-0.1169,56.9472,1.6321,-0.103,57.3971,2.1594,-0.1134,57.2723,2.2022,-0.115,57.2659,2.164,-0.074,57.4222,2.2766,-0.104,57.3106,2.3124,-0.1154,57.2851,2.2352,-0.183,56.9002,1.6192,-0.1041,57.1402,1.7497,-0.106,57.2948,1.7251,-0.176,56.8857,1.695,-0.1699,56.8963,1.6863,-0.158,56.9979,1.6603,-0.2265,56.8332,1.605,-0.2577,56.8327,1.6108,-0.2726,56.8209,1.6202,-0.1132,56.9656,1.7875,-0.1118,56.9979,1.8675,-0.0987,57.0317,1.8558,-0.1136,57.1265,2.0361,-0.1085,57.1002,1.973,-0.1112,57.0797,1.9854,-0.109,56.9723,1.7785,-0.1203,56.9433,1.7507,-0.1199,57.1661,2.1376,-0.124,56.9224,1.7654,-0.1237,56.922,1.7633,-0.1098,56.9356,1.7982,-0.1238,57.1459,2.0871,-0.1223,57.1463,2.0872,-0.1166,57.1649,2.1387,-0.1031,57.1269,2.4292,-0.0885,57.0792,2.3904,-0.1057,57.1543,2.3695,-0.0833,56.8931,2.1075,-0.1205,56.9879,2.0725,-0.1087,57.0035,2.1239,-0.1226,56.9573,2.0099,-0.098,56.8793,2.0402,-0.1008,56.8738,1.9724,-0.1248,56.9176,1.7439,-0.1782,56.8606,1.6883,-0.1773,56.874,1.694,-0.1514,56.8647,1.6983,-0.2311,56.8939,1.7032,-0.2286,56.8879,1.7235,-0.2555,56.8568,1.7287,-0.0922,57.0651,1.9968,-0.1011,56.9899,1.9351,-0.091,57.0059,1.932,-0.1112,57.1526,2.0844,-0.1107,57.161,2.08,-0.0941,56.9431,2.3546,-0.0956,57.0048,2.4134,-0.1074,56.8767,2.3731,-0.0802,56.9769,2.3026,-0.0798,57.0094,2.3308,-0.0916,56.8114,2.0626,-0.1272,57.2609,1.9932,-0.1322,57.2493,2.0492,-0.1204,57.2382,1.8021,-0.123,57.2498,1.8584,-0.1278,57.2365,1.8012,-0.3007,56.8102,1.6584,-0.2308,56.8133,1.6247,-0.102,56.8117,1.7592,-0.1194,56.8251,1.688,-0.1193,56.8391,1.7163,-0.1844,56.9058,1.7135,-0.2087,56.9079,1.7164,-0.1937,56.9183,1.6841,-0.191,56.9204,1.6801,-0.1889,56.9118,1.6837,-0.2551,56.9058,1.6591,-0.2427,56.9088,1.6728,-0.2547,56.8921,1.6557,-0.137,56.8582,1.739,-0.1402,56.8685,1.7659,-0.0221,57.5777,2.1294,0.0,57.6048,2.1146,0.0,57.5037,2.0613,-0.0465,57.4123,2.1854,-0.0252,57.3931,2.0811,-0.1551,57.4275,2.1562,-0.1524,57.3487,2.0176,-0.1531,57.3896,2.0902,-0.0974,56.9615,1.7609,-0.0895,56.9768,1.788,-0.0994,56.9494,1.7985,-0.1139,57.2376,2.0574,-0.1094,57.1654,2.0781,-0.1275,57.3667,2.0677,-0.1103,57.3879,2.1222,-0.0721,57.6176,2.3632,-0.0466,57.5983,2.3925,-0.0321,57.5168,2.4486,-0.0569,57.5422,2.4167,-0.071,57.5275,2.4349,-0.1242,57.1983,1.6328,-0.1166,57.1631,1.6011,-0.0883,56.7121,1.8974,-0.0881,56.7754,1.8636,-0.0896,56.7304,1.9674,-0.1385,56.9332,1.9474,-0.1473,57.0479,1.9156,-0.0902,57.0416,2.2379,-0.0903,57.0206,2.1838,-0.1064,56.7146,1.7404,-0.1314,56.7182,1.6571,-0.0951,57.0826,2.3075,-0.104,57.2193,2.3981,-0.0617,57.4238,2.2632,-0.177,57.4468,2.1961,-0.1875,57.0078,1.4416,-0.1533,57.4289,2.164,-0.1561,57.4318,2.1706,-0.0937,57.5628,2.3985,-0.2686,56.8608,1.5935,-0.2694,56.8609,1.5936,-0.2708,56.8577,1.5925,-0.2781,56.8565,1.6017,-0.2778,56.8571,1.6008,-0.2769,56.8596,1.6016,-0.2734,56.8644,1.6023,-0.2749,56.8626,1.6027,-0.2752,56.8626,1.6019,-0.2693,56.8638,1.5969,-0.2712,56.8653,1.6005,-0.2699,56.8639,1.597,-0.2708,56.8396,1.5871,-0.2833,56.8551,1.6076,-0.2872,56.8567,1.614,-0.2877,56.886,1.6243,-0.2786,56.8618,1.6068,-0.2742,56.8641,1.6034,-0.2696,56.8577,1.5922,-0.268,56.8562,1.5893,-0.2644,56.8618,1.5897,-0.274,56.8644,1.602,-0.2769,56.8674,1.6012,-0.2742,56.8676,1.6013,-0.2701,56.8648,1.5941,-0.2737,56.8548,1.5938,-0.2729,56.8552,1.5931,-0.2766,56.8634,1.5918,-0.2769,56.856,1.599,-0.2756,56.8555,1.597,-0.2817,56.8641,1.5946,-0.2734,56.8861,1.6034,-0.2698,56.886,1.6029,-0.267,56.8853,1.6012,-0.2556,56.9107,1.6035,-0.2497,56.9082,1.6008,-0.2667,56.8833,1.5956,-0.2658,56.8844,1.5985,-0.2473,56.9061,1.5964,-0.2801,56.8668,1.6004,-0.2826,56.866,1.599,-0.2789,56.8848,1.6009,-0.2767,56.8856,1.6027,-0.2662,56.9135,1.5995,-0.2615,56.9124,1.6033,-0.2541,56.8632,1.5878,-0.2619,56.8592,1.5852,-0.2429,56.8401,1.581,-0.2359,56.85,1.5814,-0.228,56.8396,1.5695,-0.2357,56.8584,1.5961,-0.2388,56.8617,1.5901,-0.2359,56.8535,1.584,-0.2608,56.8316,1.585,-0.2655,56.8336,1.5854,-0.2457,56.797,1.6015,-0.2551,56.7405,1.5406,-0.2044,56.7712,1.5708,-0.2141,56.7289,1.5548,-0.2621,56.9504,1.67,-0.2478,56.9578,1.6658,-0.2609,56.9552,1.6762,-0.2623,56.9291,1.668,-0.2637,56.925,1.6621,-0.2627,56.9483,1.6727,-0.2632,56.9475,1.6697,-0.2614,56.9501,1.6734,-0.2761,56.8292,1.684,-0.2762,56.8608,1.6543,-0.142,56.9259,1.6564,-0.1353,56.9175,1.6854,-0.2675,56.9359,1.6668,-0.2761,56.9405,1.6737,-0.2673,56.9351,1.6683,-0.2657,56.9419,1.6649,-0.2704,56.9434,1.6676,-0.2663,56.9395,1.6647,-0.2642,56.9393,1.6751,-0.2728,56.9451,1.6793,-0.2641,56.9424,1.6762,-0.2758,56.9461,1.6794,-0.2766,56.9444,1.6774,-0.2841,56.9572,1.6797,-0.266,56.8887,1.647,-0.2565,56.8683,1.6639,-0.1555,56.8962,1.6629,-0.2357,56.8836,1.6003,-0.237,56.8991,1.6067,-0.1907,56.9383,1.6748,-0.1916,56.9309,1.6555,-0.2938,56.9038,1.6306,-0.2518,56.915,1.6178,-0.2683,56.9269,1.635,-0.2938,56.9106,1.6396,-0.2772,56.9271,1.6485,-0.2027,56.7235,1.5591,-0.2116,56.6418,1.4901,-0.3941,56.838,1.6536,-0.3961,56.8392,1.6559,-0.3963,56.8392,1.6557,-0.3997,56.8379,1.6534,-0.3995,56.8392,1.6544,-0.399,56.8373,1.6575,-0.3968,56.8381,1.6478,-0.3956,56.8414,1.6464,-0.3967,56.842,1.6453,-0.3952,56.839,1.6492,-0.3956,56.8429,1.6496,-0.3952,56.8418,1.648,-0.3978,56.8414,1.6525,-0.3978,56.8456,1.6503,-0.3966,56.8444,1.6504,-0.4009,56.8421,1.6532,-0.3993,56.8459,1.6475,-0.3989,56.8462,1.6492,-0.3117,56.7773,1.5784,-0.312,56.7772,1.5782,-0.3117,56.7766,1.5778,-0.3129,56.7786,1.5796,-0.3132,56.7784,1.5794,-0.3124,56.7779,1.5786,-0.315,56.7744,1.5795,-0.3151,56.7748,1.5793,-0.3171,56.7754,1.5808,-0.3181,56.7766,1.5819,-0.3183,56.7768,1.5824,-0.3181,56.7765,1.5821,-0.3094,56.7759,1.5769,-0.3107,56.7746,1.5772,-0.3173,56.7811,1.5832,-0.3157,56.7827,1.5826,-0.3458,56.8041,1.6061,-0.3129,56.7774,1.5772,-0.3111,56.777,1.5779,-0.3113,56.7766,1.5779,-0.3517,56.809,1.546,-0.3167,56.7724,1.5757,-0.3237,56.7786,1.5819,-0.2673,56.7966,1.4949,-0.3493,56.7982,1.6047,-0.2389,56.9687,1.4386,-0.2484,56.9742,1.4357,-0.2898,56.7643,1.4879,-0.394,56.8381,1.6538,-0.384,56.8315,1.6438,-0.402,56.8184,1.6757,-0.2928,56.7353,1.5624,-0.2799,56.6798,1.4917,-0.3248,56.8818,1.4702,-0.2784,56.8751,1.4517,-0.3335,56.8852,1.4782,-0.4126,56.8537,1.6043,-0.3197,56.7783,1.5806,-0.3198,56.7769,1.5802,-0.3156,56.7841,1.5628,-0.3186,56.7755,1.579,-0.3149,56.7817,1.5618,-0.3076,56.7825,1.5613,-0.3131,56.7761,1.5758,-0.307,56.7836,1.5616,-0.3069,56.7864,1.5627,-0.3078,56.7874,1.5632,-0.3046,56.7925,1.5475,-0.3068,56.7852,1.5622,-0.3018,56.7899,1.5461,-0.3146,56.7866,1.5637,-0.3159,56.7902,1.5484,-0.2998,56.8056,1.5318,-0.3004,56.8046,1.5297,-0.2991,56.7917,1.5349,-0.3123,56.7994,1.5407,-0.3182,56.7984,1.5393,-0.3119,56.8015,1.5398,-0.2999,56.8079,1.5338,-0.3002,56.8088,1.532,-0.3224,56.8026,1.5328,-0.3292,56.8072,1.5364,-0.3226,56.8005,1.537,-0.3185,56.8,1.5396,-0.3169,56.8029,1.5446,-0.329,56.8028,1.5409,-0.3388,56.8151,1.5532,-0.3339,56.809,1.5561,-0.3082,56.8064,1.5417,-0.3243,56.807,1.5565,-0.3024,56.8177,1.5333,-0.3,56.8133,1.5341,-0.2869,56.8563,1.5388,-0.3227,56.8127,1.5328,-0.3346,56.8435,1.5409,-0.21,56.7907,1.6185,-0.1512,56.797,1.6634,-0.2026,56.8336,1.6799,-0.1552,56.8146,1.7312,-0.1905,56.8525,1.7696,-0.3007,56.9459,1.6878,-0.3092,56.9428,1.6987,-0.2838,56.9636,1.7237,-0.2582,56.8703,1.562,-0.2551,56.8621,1.5387,-0.2705,56.8867,1.5402,-0.2594,56.8568,1.5215,-0.2544,56.8529,1.5146,-0.2591,56.8777,1.5103,-0.3542,56.8253,1.5751,-0.343,56.8261,1.5496,-0.3685,56.8573,1.6097,-0.3635,56.8747,1.6049,-0.3612,56.9178,1.6337,-0.3409,56.8779,1.5742,-0.3173,56.8943,1.5689,-0.3256,56.9169,1.5837,-0.3556,56.8402,1.5731,-0.3508,56.9281,1.6156,-0.2335,56.6675,1.5769,-0.1827,56.5981,1.5994,-0.1618,57.1922,1.9931,-0.1572,57.1957,2.0283,-0.2096,57.3817,1.9893,-0.211,57.1818,2.1458,-0.2201,57.1788,2.1357,-0.2112,57.1826,2.1452,-0.2085,57.1972,2.1646,-0.1993,57.184,2.1467,-0.1851,57.2003,2.1485,-0.1879,57.1836,2.1409,-0.1797,57.1812,2.1297,-0.1624,57.2026,2.1184,-0.1769,57.1777,2.1158,-0.1807,57.1737,2.1019,-0.1902,57.1706,2.0921,-0.2225,57.1718,2.1032,-0.2397,57.176,2.0734,-0.2457,57.1734,2.1364,-0.1994,57.1829,2.1473,-0.2457,57.1603,2.2329,-0.26,57.1719,2.1031,-0.2618,57.1716,2.1612,-0.1743,57.2016,2.1336,-0.1899,57.2235,2.1727,-0.1813,57.2334,2.1727,-0.1702,57.2499,2.1778,-0.1617,57.2691,2.1817,-0.1436,57.2049,2.0976,-0.2655,57.1732,2.2881,-0.2461,57.1928,2.2867,-0.2266,57.1857,2.1489,-0.2721,57.105,1.5963,-0.2715,57.1065,1.5807,-0.2652,57.1208,1.5996,-0.2596,57.107,1.6033,-0.2586,57.0951,1.6005,-0.2729,57.0939,1.5951,-0.2668,57.0755,1.5467,-0.28,57.0883,1.579,-0.2735,57.0684,1.5477,-0.2499,57.128,1.6029,-0.243,57.129,1.6075,-0.256,57.1248,1.6082,-0.2598,57.1245,1.5959,-0.2973,56.9851,1.5974,-0.29,56.9841,1.5999,-0.2675,56.9363,1.5986,-0.2796,57.068,1.5797,-0.2864,57.0644,1.5695,-0.2643,57.0687,1.5882,-0.2491,56.9354,1.6068,-0.263,56.9343,1.601,-0.2493,56.9779,1.6221,-0.254,56.9955,1.6205,-0.2806,57.0019,1.6137,-0.2446,57.0495,1.6126,-0.218,57.0496,1.6205,-0.2138,57.0981,1.6184,-0.1997,57.0962,1.6139,-0.202,57.0667,1.6027,-0.2289,56.9314,1.5993,-0.2341,56.935,1.6049,-0.2206,56.9679,1.6152,-0.1859,57.0761,1.588,-0.228,56.9687,1.5592,-0.2059,56.9727,1.594,-0.1972,57.0271,1.5792,-0.1921,57.0502,1.5723,-0.2027,57.0539,1.5408,-0.25,56.9584,1.5535,-0.2636,56.9618,1.5501,-0.2555,56.934,1.5757,-0.2661,56.9371,1.5878,-0.2785,56.9679,1.5585,-0.2911,56.9765,1.5768,-0.2686,56.9379,1.5959,-0.2676,56.8289,1.5779,-0.2705,56.8328,1.5798,-0.2663,56.833,1.5824,-0.236,56.9859,1.5291,-0.2347,56.9853,1.5217,-0.2297,56.9928,1.5252,-0.227,56.9843,1.5191,-0.2187,56.9919,1.5255,-0.2045,56.984,1.5301,-0.2052,56.9942,1.5406,-0.2081,56.9925,1.5321,-0.2302,56.9857,1.5384,-0.2236,56.9934,1.5308,-0.216,56.994,1.5371,-0.2733,56.8296,1.5773,-0.2739,56.8315,1.5703,-0.2713,56.8428,1.5794,-0.27,56.8481,1.5849,-0.2658,56.8541,1.5757,-0.2496,56.8738,1.579,-0.26,56.8884,1.5618,-0.2064,56.985,1.5489,-0.1992,56.9849,1.5465,-0.1966,56.9669,1.5494,-0.2065,56.9665,1.5545,-0.2914,56.9651,1.6727,-0.2912,56.9868,1.6864,-0.2871,56.9694,1.68,-0.2392,56.9677,1.6553,-0.2329,56.972,1.6601,-0.2248,56.9827,1.6539,-0.1934,57.0244,1.6575,-0.2292,57.0126,1.635,-0.2369,56.9752,1.6455,-0.278,56.9651,1.6607,-0.3003,56.9696,1.6702,-0.279,56.9617,1.671,-0.2706,56.9573,1.6642,-0.2631,56.9645,1.6473,-0.2319,56.9787,1.6673,-0.2581,56.9595,1.6708,-0.2694,56.9652,1.6779,-0.2552,56.9655,1.6495,-0.2777,56.9681,1.6815,-0.2754,56.9749,1.6874,-0.3104,56.9996,1.6914,-0.3035,57.0027,1.7013,-0.246,57.0008,1.7027,-0.2838,56.9914,1.6938,-0.2822,57.0059,1.7061,-0.3507,57.0781,1.6832,-0.3219,57.1016,1.6762,-0.3354,57.0873,1.6958,-0.2812,57.1844,1.643,-0.261,57.182,1.6416,-0.26,57.1857,1.6458,-0.3008,57.1019,1.687,-0.274,57.1899,1.6515,-0.2571,57.1877,1.6487,-0.2546,57.1367,1.6917,-0.2838,57.136,1.6802,-0.2722,57.1841,1.6631,-0.2931,57.0496,1.7498,-0.2882,57.0588,1.7266,-0.2729,57.0314,1.7411,-0.2778,57.079,1.7093,-0.2343,57.0934,1.6996,-0.2353,57.073,1.7108,-0.2424,57.1816,1.6699,-0.2084,57.1761,1.672,-0.2195,57.134,1.6992,-0.2529,57.1874,1.6497,-0.2488,57.185,1.6486,-0.2194,57.1843,1.6613,-0.2253,57.0401,1.7162,-0.2549,57.0151,1.7243,-0.1963,57.0909,1.7031,-0.2035,57.0648,1.7117,-0.1857,57.1689,1.6674,-0.1901,57.137,1.7004,-0.2457,57.181,1.6455,-0.2059,57.1773,1.6566,-0.2077,57.0167,1.6954,-0.1722,57.1243,1.6803,-0.1784,57.1593,1.6579,-0.1863,57.1485,1.6463,-0.1824,57.0955,1.6467,-0.2504,56.9729,1.6399,-0.184,57.0544,1.65,-0.2218,57.0751,1.6149,-0.2222,57.0414,1.6257,-0.2893,57.0146,1.625,-0.3046,56.9853,1.6382,-0.3297,57.0278,1.634,-0.3341,57.0044,1.6505,-0.2736,57.0467,1.6141,-0.2984,57.0907,1.6046,-0.3099,57.0634,1.6235,-0.3207,57.0068,1.6989,-0.3252,56.9973,1.6731,-0.3514,57.0578,1.6612,-0.3476,57.0353,1.6765,-0.3148,57.1164,1.6283,-0.3359,57.0879,1.6478,-0.3425,57.007,1.6879,-0.3212,57.0152,1.7092,-0.3222,56.8697,1.8767,-0.3198,56.8774,1.8779,-0.3211,56.8777,1.8811,-0.3231,56.8682,1.8833,-0.3213,56.8763,1.884,-0.3205,56.8761,1.8869,-0.3182,56.8766,1.8857,-0.3162,56.8771,1.8821,-0.3182,56.8687,1.8807,-0.2961,56.9148,1.939,-0.3031,56.8946,1.9359,-0.3313,56.9174,1.9927,-0.296,56.9832,1.8496,-0.3095,56.9773,1.8536,-0.2855,56.9851,1.8214,-0.271,56.9346,1.7755,-0.2746,56.9216,1.7868,-0.2598,56.9362,1.8013,-0.3062,56.9325,1.7816,-0.2932,56.9178,1.7798,-0.2883,56.9324,1.7687,-0.3532,56.9325,1.8904,-0.3424,56.9129,1.8604,-0.33,56.9323,1.8236,-0.3549,56.9642,1.9764,-0.3716,56.9439,1.9801,-0.3624,56.9505,1.9498,-0.3045,56.9484,1.9494,-0.2988,56.9516,1.9299,-0.2749,56.9395,1.8937,-0.3028,56.9401,1.7772,-0.2988,56.9471,1.7764,-0.3196,56.9506,1.8096,-0.3383,56.9514,1.8622,-0.3463,56.9549,1.915,-0.3553,56.9522,1.9334,-0.3249,56.9415,1.8138,-0.3462,56.9427,1.8743,-0.2813,56.9297,1.909,-0.3115,56.9461,1.9668,-0.2823,56.9829,1.8098,-0.318,56.8713,1.8692,-0.3225,56.8617,1.8709,-0.3209,56.8614,1.87,-0.3341,56.8611,1.9027,-0.324,56.8591,1.8981,-0.3429,56.8574,1.9098,-0.3274,56.8825,1.9063,-0.3248,56.8822,1.8871,-0.3732,56.9251,1.9809,-0.3271,56.8821,1.8978,-0.3206,56.8838,1.9052,-0.3251,56.8832,1.9094,-0.3382,56.8935,1.8641,-0.3634,56.8984,1.9335,-0.2648,57.0216,1.7702,-0.2725,57.0438,1.7536,-0.298,57.0646,1.781,-0.2942,57.0677,1.7368,-0.3315,57.0805,1.7616,-0.3285,57.0718,1.7636,-0.3032,57.0865,1.8469,-0.288,57.0466,1.8342,-0.2862,57.042,1.8128,-0.2226,57.2591,1.7368,-0.2145,57.2604,1.7392,-0.2621,57.2848,1.7594,-0.1592,57.202,1.7972,-0.1511,57.1843,1.7688,-0.1538,57.1685,1.8224,-0.1739,57.0986,1.7537,-0.2009,57.0518,1.7277,-0.1941,57.0705,1.7571,-0.1816,57.1451,1.716,-0.1809,57.1106,1.7237,-0.1629,57.1307,1.7521,-0.224,57.0754,1.7197,-0.2278,57.0512,1.7293,-0.2329,57.0269,1.7369,-0.2954,57.0901,1.7161,-0.2216,57.2374,1.7132,-0.2594,57.2168,1.6845,-0.2007,57.1974,1.6888,-0.2773,57.0324,1.7896,-0.3545,56.8627,1.9008,-0.3338,56.8616,1.8953,-0.3125,56.8608,1.8542,-0.3214,56.8625,1.8585,-0.3143,56.8624,1.8354,-0.3176,56.8617,1.8574,-0.3145,56.8607,1.8602,-0.3218,56.8625,1.8598,-0.3559,56.7998,2.0453,-0.3517,56.7985,2.0449,-0.3506,56.7838,2.165,-0.3432,56.8005,2.0244,-0.3122,56.7936,2.0253,-0.3433,56.799,2.031,-0.3436,56.798,2.0376,-0.3435,56.7991,2.0311,-0.3436,56.7976,2.0375,-0.3456,56.7979,2.0408,-0.3454,56.7973,2.041,-0.348,56.7979,2.0422,-0.3548,56.8018,2.0321,-0.3546,56.8022,2.0322,-0.3549,56.8011,2.0385,-0.4236,56.9209,1.8425,-0.4239,56.9204,1.841,-0.4236,56.9206,1.8426,-0.4253,56.9209,1.8456,-0.4242,56.921,1.8442,-0.4251,56.9207,1.8459,-0.4268,56.9203,1.8458,-0.4263,56.9206,1.8459,-0.427,56.92,1.8464,-0.4258,56.9215,1.8513,-0.3985,56.9632,2.084,-0.4273,56.9209,1.8518,-0.4286,56.9187,1.8432,-0.4339,56.9197,1.8402,-0.4299,56.9163,1.8346,-0.4272,56.9217,1.8398,-0.4264,56.9211,1.8392,-0.4263,56.9227,1.8391,-0.4251,56.9235,1.845,-0.426,56.9251,1.8438,-0.4249,56.925,1.844,-0.4241,56.9232,1.8445,-0.4237,56.9246,1.8436,-0.4227,56.924,1.8426,-0.426,56.9287,1.8374,-0.4251,56.9278,1.8366,-0.4073,56.9828,1.8163,-0.4058,56.9867,1.8238,-0.4238,56.9304,1.8415,-0.4068,56.9868,1.823,-0.4041,56.9848,1.8224,-0.4215,56.9288,1.8401,-0.4048,56.9859,1.8236,-0.4239,56.9272,1.8362,-0.4225,56.9269,1.8365,-0.4054,56.9819,1.817,-0.4027,57.0055,1.8168,-0.4045,57.0055,1.815,-0.3992,57.0216,1.8085,-0.3919,57.0205,1.8054,-0.3925,57.021,1.8019,-0.3991,57.0036,1.8108,-0.3945,57.0216,1.8001,-0.3968,57.0223,1.7984,-0.4024,57.0034,1.8065,-0.4059,57.0053,1.8125,-0.4076,56.9864,1.8215,-0.4007,57.0052,1.8171,-0.3993,57.0047,1.816,-0.3986,57.0041,1.8137,-0.4005,57.0034,1.8082,-0.4045,56.9825,1.8186,-0.4043,57.0037,1.8062,-0.4064,56.982,1.8162,-0.3913,57.0449,1.8016,-0.3917,57.0441,1.8057,-0.4013,57.0228,1.8022,-0.4008,57.0223,1.8054,-0.3915,57.0406,1.8098,-0.3886,57.0343,1.7979,-0.3896,57.0395,1.7973,-0.3906,57.0434,1.7987,-0.4007,57.0229,1.7995,-0.3713,57.0357,1.8105,-0.3715,57.0393,1.8066,-0.3693,57.1685,1.8606,-0.3722,57.1474,1.8542,-0.3668,57.1545,1.8364,-0.3132,57.123,1.8687,-0.3319,57.123,1.8474,-0.3141,57.1023,1.8605,-0.3701,57.1263,1.8098,-0.3696,57.1029,1.8021,-0.3572,57.0968,1.8072,-0.2686,57.1564,1.923,-0.2673,57.1607,1.928,-0.2684,57.16,1.9285,-0.2553,57.1666,1.9351,-0.2552,57.1671,1.9346,-0.2472,57.1665,1.9313,-0.263,57.1649,1.9325,-0.2634,57.1645,1.9331,-0.2669,57.1629,1.9271,-0.2667,57.1601,1.9216,-0.2938,57.1676,1.9216,-0.2215,57.2233,1.8274,-0.2248,57.1968,1.8496,-0.1697,57.2278,1.8334,-0.1722,57.2558,1.8177,-0.2015,57.2926,1.8149,-0.2194,57.2844,1.8006,-0.2564,57.1587,1.8933,-0.2383,57.1621,1.8961,-0.227,57.1674,1.8717,-0.3032,57.2322,1.8613,-0.2688,57.2562,1.8191,-0.2866,57.2654,1.8434,-0.2433,57.1554,1.9209,-0.2368,57.1539,1.9188,-0.2397,57.1585,1.9243,-0.2424,57.1627,1.9294,-0.2479,57.1714,1.9398,-0.2472,57.1653,1.9335,-0.3087,56.8825,1.9951,-0.3438,56.8147,2.0229,-0.3048,56.8806,1.9944,-0.3412,56.8125,2.0231,-0.2619,56.9693,1.9928,-0.2441,57.0116,2.0109,-0.2529,56.9665,1.9781,-0.2464,56.9627,1.964,-0.2649,56.9316,1.9763,-0.2933,56.9401,1.963,-0.3007,56.9594,1.9509,-0.3092,56.9624,1.966,-0.2799,56.9326,1.9549,-0.2737,56.9309,1.9581,-0.2652,56.9581,1.9356,-0.3423,57.1556,2.0112,-0.351,57.1214,2.0047,-0.3636,57.1203,1.9672,-0.194,57.099,1.9284,-0.183,57.1001,1.9673,-0.1775,57.1366,1.9762,-0.2667,57.2177,1.9743,-0.2582,57.2162,1.9706,-0.2563,57.218,1.9754,-0.2877,57.204,1.9969,-0.2986,57.1955,2.0072,-0.3226,57.1832,1.9804,-0.3365,57.0053,1.9889,-0.2964,56.9713,1.994,-0.3071,56.9685,1.9869,-0.2775,57.2032,2.0202,-0.2652,57.15,2.0548,-0.3076,57.154,2.0425,-0.2937,56.9561,1.9369,-0.3019,56.9682,1.9081,-0.2525,56.959,1.9426,-0.2364,56.9785,1.9103,-0.2379,57.2098,2.006,-0.2198,57.1946,2.0051,-0.2359,57.1991,2.0155,-0.2266,57.0294,1.8679,-0.2059,57.0518,1.8974,-0.2339,57.0889,1.8728,-0.2278,57.1053,1.894,-0.2741,57.1072,1.8762,-0.2546,57.1701,1.9398,-0.2675,57.1972,1.958,-0.3025,57.1536,1.9224,-0.322,57.1626,1.9419,-0.3422,57.1502,1.9279,-0.3593,57.0442,1.9173,-0.3456,57.0648,1.8945,-0.3527,57.1037,1.9045,-0.3519,57.147,1.9746,-0.2795,57.2016,1.9638,-0.2791,57.2074,1.9727,-0.3016,57.1939,1.9711,-0.3476,56.7973,2.0445,-0.4283,56.8299,1.8854,-0.4313,56.894,1.8496,-0.4427,56.8697,1.7627,-0.4313,56.9971,1.8602,-0.447,56.8967,1.7533,-0.154,57.4221,2.1613,-0.1507,57.3616,2.1428,-0.155,57.3439,2.1805,-0.1307,57.254,2.1046,-0.1841,57.3772,2.0677,-0.1103,56.8429,1.9443,-0.2572,56.8394,2.4361,-0.261,56.8499,2.3529,-0.2435,56.8734,2.426,-0.2863,56.8153,2.399,-0.2707,56.8476,2.4492,-0.2742,56.8514,2.4523,-0.2741,56.8725,2.4749,-0.2618,56.8929,2.496,-0.2657,56.895,2.497,-0.2666,56.868,2.4709,-0.2401,57.0227,2.5452,-0.2442,57.0114,2.5433,-0.2385,57.0106,2.5408,-0.2524,56.9892,2.5355,-0.2554,56.9978,2.5394,-0.2601,57.0025,2.5377,-0.1381,57.1955,2.6467,-0.156,57.146,2.6393,-0.1501,57.1416,2.6339,-0.141,57.2157,2.6494,-0.1559,57.2218,2.6412,-0.1571,57.2141,2.6434,-0.3031,57.0582,2.5025,-0.329,56.9382,2.4896,-0.3251,56.9325,2.4899};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getethmoid_Coord_6_109_point_2()
		{
			double[] value = {-0.2584,56.5691,1.4274,-0.2581,56.5681,1.423,-0.2454,56.5641,1.4347,-0.1563,56.6437,1.6738,-0.1571,56.6512,1.6729,-0.1803,56.5949,1.6011,-0.1524,56.6417,1.912,-0.1501,56.6289,1.9737,-0.1547,56.6467,1.9114,-0.1514,56.6333,1.9707,-0.2263,57.5069,2.2582,-0.3277,57.3694,1.8464,-0.3109,57.4087,1.9315,-0.2944,57.4209,1.9298,-0.3356,57.364,1.8515,-0.3431,57.3573,1.8557,-0.3245,57.4002,1.9392,-0.3924,57.1364,1.9663,-0.3188,57.2762,2.0866,-0.3366,57.2818,2.0287,-0.3438,57.2856,2.0081,-0.338,57.3795,1.9683,-0.3586,57.2931,1.9669,-0.3423,57.369,1.9843,-0.4253,56.8103,1.8061,-0.4229,56.8081,1.8085,-0.3207,56.6997,1.5806,-0.3203,56.6971,1.5822,-0.3295,56.72,1.6082,-0.2216,56.7963,1.6202,-0.329,56.7257,1.6206,-0.3218,56.7176,1.6085,-0.3473,56.7833,1.6944,-0.3595,56.739,1.6606,-0.3543,56.7361,1.6528,-0.402,56.8329,1.9316,-0.4093,56.8329,1.9468,-0.4132,56.8337,1.9214,-0.3609,56.7936,2.1952,-0.3702,56.7899,2.1582,-0.331,56.8308,2.3458,-0.3252,56.8301,2.3439,-0.3224,56.838,2.3694,-0.2541,56.8461,2.444,-0.3014,56.8992,2.4786,-0.2782,56.862,2.4647,-0.2798,56.9439,2.5091,-0.2607,56.9635,2.5199,-0.2589,56.9721,2.5186,-0.2291,57.0975,2.4968,-0.2527,57.0196,2.5424,-0.244,57.0242,2.5458,-0.1154,57.3237,2.4927,-0.1325,57.3064,2.5484,-0.1273,57.2476,2.5433,-0.1341,57.2071,2.648,-0.2067,57.1862,2.56,-0.1719,57.1253,2.6269,-0.1694,57.1352,2.6361,-0.1395,57.1302,2.5417,-0.1156,57.0887,2.4674,-0.1295,57.0556,2.5076,-0.1273,57.0441,2.502,-0.0961,56.7703,2.3408,-0.1106,56.7728,2.3608,-0.1088,56.7568,2.3456,-0.1628,56.7625,2.3594,-0.1255,56.7526,2.3521,-0.1273,56.7685,2.3673,-0.1339,56.8694,2.4322,-0.1339,56.8506,2.4236,-0.1164,56.8642,2.407,-0.1561,56.6888,2.2786,-0.1295,56.6795,2.2716,-0.1312,56.6955,2.2884,-0.1012,56.6506,2.1048,-0.1101,56.6314,2.1258,-0.1092,56.6308,2.1013,-0.1032,56.6669,1.8295,-0.1281,56.6529,1.8566,-0.1307,56.6568,1.8264,-0.1559,56.6627,1.7501,-0.1444,56.6465,1.7366,-0.1431,56.6518,1.7655,-0.135,56.6561,1.827,-0.138,56.6516,1.8577,-0.1399,56.6568,1.8274,-0.186,56.5934,1.5896,-0.2568,56.6193,1.5092,-0.3058,56.6457,1.5244,-0.3043,56.6376,1.5127,-0.4243,56.922,1.8507,-0.4227,56.9224,1.8501,-0.3932,56.9649,2.0808,-0.3061,57.1063,2.4854,-0.3099,57.1022,2.4886,-0.3363,56.9848,2.4586,-0.1949,56.8537,1.7714,-0.2838,56.8592,1.8293,-0.2828,56.8633,1.7833,-0.3752,56.8324,1.9121,-0.3723,56.852,1.8663,-0.3627,56.8485,1.9019,-0.3494,56.8515,1.8198,-0.353,56.8621,1.8612,-0.3592,56.8507,1.8309,-0.3254,56.863,1.8613,-0.2738,57.5236,2.3325,-0.2737,57.5257,2.323,-0.3015,57.5036,2.3222,-0.2953,57.4937,2.3266,-0.2993,57.4688,2.3225,-0.3277,57.2393,2.4045,-0.3252,57.2388,2.4172,-0.3121,57.2748,2.3863,-0.3035,57.2772,2.3226,-0.3436,57.1613,2.3794,-0.256,57.5138,2.3563,-0.2928,57.5053,2.3318,-0.2762,57.5116,2.2986,-0.3023,57.5066,2.3123,-0.294,57.4113,2.3417,-0.2743,57.3359,2.3867,-0.2333,57.4049,2.3524,-0.2713,57.3364,2.3867,-0.2105,57.2308,2.2864,-0.2505,57.2514,2.4163,-0.2453,57.2597,2.4157,-0.1915,57.209,2.1858,-0.2278,57.2117,2.2855,-0.2506,57.2403,2.4538,-0.2518,57.2528,2.4419,-0.2529,57.2537,2.4296,-0.2018,57.2915,2.4114,-0.1954,57.2923,2.4327,-0.1991,57.3235,2.3785,-0.2104,57.3341,2.3735,-0.1997,57.3353,2.3726,-0.1383,57.3511,2.5532,-0.1585,57.3534,2.522,-0.1576,57.3084,2.5782,-0.1138,57.3348,2.4657,-0.1066,57.3463,2.4395,-0.1099,57.401,2.4382,-0.1565,56.6691,1.995,-0.164,56.6746,2.0186,-0.1529,56.6986,2.012,-0.0853,56.697,1.8233,-0.0836,56.6903,1.8996,-0.311,57.1551,2.4836,-0.337,57.1603,2.4701,-0.3105,57.1504,2.4862,-0.2922,57.2924,2.4081,-0.2806,57.3136,2.3944,-0.2839,57.3142,2.3958,-0.254,57.2578,2.4346,-0.2515,57.2571,2.4243,-0.3071,57.1562,2.4817,-0.3094,57.1533,2.4849,-0.3952,56.7617,1.7007,-0.4234,56.806,1.7943,-0.3607,56.7636,1.636,-0.3385,56.7286,1.6165,-0.3683,56.7409,1.6454,-0.2799,56.8364,1.7053,-0.3837,56.8414,1.8661,-0.3505,56.8551,1.9134,-0.3247,56.8602,1.8153,-0.3324,56.8637,1.8665,-0.205,57.2568,2.5362,-0.2042,57.2545,2.5328,-0.2071,57.246,2.5424,-0.2036,57.2554,2.5526,-0.4174,56.9918,1.7784,-0.306,56.9952,1.4515,-0.192,57.0698,1.4305,-0.1872,57.0666,1.4244,-0.2636,56.5868,1.4244,-0.2414,56.5727,1.4275,-0.2557,56.569,1.4202,-0.1532,56.634,2.0315,-0.1551,56.6455,2.1066,-0.1806,56.6748,2.0475,-0.0998,56.6449,2.043,-0.0908,56.6892,2.0328,-0.1004,56.7006,2.0932,-0.3157,57.1024,2.4896,-0.3545,56.9511,2.2607,-0.3497,56.9478,2.2568,-0.3416,56.9323,2.3606,-0.4019,56.9683,2.0802,-0.4301,56.9248,1.8615,-0.4035,56.8447,1.6634,-0.1336,57.0581,2.4885,-0.1319,57.066,2.4733,-0.1191,56.969,2.4131,-0.1486,56.7685,2.3354,-0.1555,56.778,2.3333,-0.1842,56.7438,2.2711,-0.1446,56.8928,2.3925,-0.1318,56.8853,2.4056,-0.1143,56.9549,2.4274,-0.1674,56.8095,2.3986,-0.1767,56.8123,2.395,-0.1723,56.7663,2.354,-0.1959,57.0695,2.5501,-0.1423,57.1194,2.5391,-0.143,57.1238,2.5437,-0.1363,56.6444,1.7363,-0.1397,56.6266,1.6814,-0.1085,56.6593,1.7479,-0.147,56.6281,1.6802,-0.2197,56.5942,1.4631,-0.2079,56.6261,1.4936,-0.2037,56.6041,1.4952,-0.1098,56.6421,1.9082,-0.1147,56.6246,1.9622,-0.1201,56.6333,1.9262,-0.0897,56.7319,2.0218,-0.0959,56.7873,2.3198,-0.1054,56.7208,2.2668,-0.1026,56.7621,2.2658,-0.2682,56.5879,1.4253,-0.2767,56.6239,1.4495,-0.1358,57.056,2.5069,-0.1319,57.0545,2.5086,-0.206,57.0559,2.5402,-0.1793,57.035,2.4659,-0.171,56.9765,2.4238,-0.1148,56.9297,2.4268,-0.1405,56.8079,2.3728,-0.1722,56.857,2.4362,-0.1389,56.8531,2.4032,-0.174,56.8399,2.3185,-0.2448,56.8668,2.3159,-0.2164,56.8339,2.2474,-0.1703,56.7575,2.345,-0.2009,56.9906,2.4118,-0.1569,56.9015,2.3846,-0.1648,56.785,2.3253,-0.1796,56.7985,2.2999,-0.1942,56.7481,2.2586,-0.1787,56.6671,2.172,-0.1598,56.6574,2.1726,-0.1639,56.6699,2.2418,-0.2405,56.7359,2.1507,-0.2171,56.7717,2.1087,-0.2199,56.7003,2.1028,-0.211,56.8718,2.174,-0.2225,56.7011,2.1455,-0.2262,56.7096,2.1721,-0.2002,56.7304,2.0753,-0.2089,56.6905,2.0768,-0.1979,56.7089,2.0622,-0.1178,56.8194,2.0992,-0.1441,56.7171,1.964,-0.1606,56.8774,2.0649,-0.166,56.8776,2.0613,-0.1628,56.8919,1.9742,-0.1989,56.8297,1.9931,-0.3476,56.8235,1.9443,-0.3508,56.8022,2.025,-0.3546,56.803,2.0253,-0.2918,56.831,2.3173,-0.3093,56.8538,2.3825,-0.3725,56.8019,2.2011,-0.3689,56.7966,2.198,-0.2397,56.5714,1.4289,-0.2752,56.5803,1.4358,-0.2628,56.5714,1.4272,-0.2642,56.5756,1.4332,-0.2267,56.5661,1.4634,-0.2308,56.5669,1.4635,-0.1462,56.621,1.6703,-0.1494,56.6241,1.6704,-0.3755,56.8246,1.8173,-0.3802,56.8322,1.8411,-0.4021,56.8068,1.8197,-0.1636,56.6344,1.6013,-0.168,56.7041,1.5981,-0.3686,57.2996,1.9262,-0.3333,57.3908,1.9526,-0.326,57.3125,1.7719,-0.3011,57.3827,1.846,-0.2972,57.3679,2.3603,-0.2973,57.3671,2.3615,-0.3015,57.1946,2.4602,-0.3069,57.1926,2.4679,-0.3041,57.3083,2.3728,-0.3082,57.2324,2.4464,-0.3026,57.2697,2.4256,-0.2248,57.2408,2.1529,-0.2499,57.2568,2.2897,-0.2433,57.2116,2.1278,-0.2445,57.2196,2.4771,-0.2485,57.2336,2.4692,-0.2334,57.2318,2.4563,-0.2405,57.2568,2.4315,-0.2376,57.242,2.4444,-0.2406,57.2575,2.4345,-0.2701,57.1933,2.3039,-0.3001,57.152,2.478,-0.2798,57.171,2.3183,-0.2679,57.2203,2.4378,-0.244,57.27,2.4225,-0.2599,57.2726,2.4382,-0.215,57.324,2.2773,-0.2086,57.1986,2.4587,-0.2289,57.2193,2.4678,-0.224,57.202,2.4517,-0.2426,57.2064,2.4967,-0.2481,57.2262,2.4842,-0.2404,57.2665,2.4098,-0.2428,57.2646,2.4204,-0.2402,57.2133,2.478,-0.2168,57.1789,2.4696,-0.2726,56.9847,2.4671,-0.2645,57.0526,2.4667,-0.3,57.0543,2.5014,-0.2148,57.3211,2.1803,-0.1958,57.3178,2.1765,-0.2067,57.2876,2.181,-0.2096,57.2824,2.1788,-0.227,57.2499,2.2595,-0.1623,57.3348,2.1867,-0.1534,57.3302,2.178,-0.1879,57.3541,2.257,-0.1831,57.3515,2.2644,-0.1543,57.3207,2.1784,-0.1542,57.2983,2.1821,-0.1892,57.3341,2.2876,-0.1841,57.3408,2.2812,-0.1788,57.2353,2.1745,-0.1974,57.3282,2.2891,-0.1731,57.2466,2.1761,-0.2061,57.3237,2.287,-0.1453,57.3099,2.15,-0.2039,57.3551,2.253,-0.2091,57.3639,2.2529,-0.2141,57.3559,2.2505,-0.2456,57.3892,2.231,-0.2472,57.3853,2.2356,-0.2214,57.3467,2.2562,-0.2105,57.4286,2.2478,-0.2211,57.4175,2.2351,-0.2048,57.3719,2.2594,-0.2216,57.3676,2.3048,-0.2263,57.3575,2.3007,-0.2533,57.3892,2.3021,-0.2768,57.4541,2.1996,-0.2807,57.4468,2.1616,-0.2974,57.4226,2.137,-0.2564,57.4824,2.2252,-0.2372,57.4664,2.1906,-0.2649,57.4665,2.184,-0.1785,57.334,2.184,-0.1878,57.3743,2.1894,-0.1606,57.35,2.1924,-0.3443,57.3543,2.0372,-0.3344,57.3646,2.0649,-0.3073,57.3076,2.0632,-0.2497,57.2724,2.1316,-0.277,57.2686,2.1068,-0.2572,57.3199,2.1332,-0.2995,57.4718,2.3107,-0.2983,57.4717,2.3078,-0.2919,57.4461,2.2947,-0.2418,57.4947,2.2417,-0.2433,57.4924,2.2432,-0.2369,57.4975,2.2605,-0.2829,57.438,2.1904,-0.2862,57.4297,2.2034,-0.2838,57.4407,2.1999,-0.2513,57.3765,2.2459,-0.2504,57.5109,2.2802,-0.2517,57.5084,2.2798,-0.2765,57.5099,2.2967,-0.2936,57.415,2.2517,-0.2876,57.4225,2.2496,-0.2884,57.4221,2.2179,-0.315,57.1705,2.0404,-0.2909,57.288,2.084,-0.1346,57.0448,2.5008,-0.1214,56.9451,2.4444,-0.162,56.8559,2.4384,-0.2487,57.0511,2.4492,-0.3082,56.9986,1.462,-0.3669,56.9966,1.5761,-0.3352,57.1515,1.5515,-0.3812,57.1724,1.761,-0.3303,57.2898,1.7358,-0.2253,57.1091,1.5045,-0.2271,57.0526,1.4655,-0.1672,57.3113,1.8794,-0.1495,57.3013,1.727,-0.2147,57.2972,1.7346,-0.3067,57.2715,2.1532,-0.3253,57.3611,2.1032,-0.2984,57.3993,2.2509,-0.2981,57.4176,2.2889,-0.3179,57.3967,2.1118,-0.2898,57.422,2.1812,-0.0672,57.4877,2.3373,-0.211,57.5639,2.3216,-0.1068,57.6233,2.3407,-0.2003,57.4164,2.3708,-0.1997,57.5193,2.3847,-0.184,57.3277,2.4969,-0.185,57.2646,2.5234,-0.1835,57.3668,2.4191,-0.1923,57.3421,2.3746,-0.1491,57.2983,2.5902,-0.1361,57.3484,2.552,-0.3494,57.1611,2.15,-0.3667,57.0222,2.3428,-0.3993,57.0299,2.1282,-0.3412,56.988,2.4589,-0.358,57.0064,2.4274,-0.347,56.9354,2.3599,-0.3323,57.2021,2.4462,-0.3107,57.1917,2.4695,-0.237,57.0349,2.4606,-0.2506,57.016,2.4825,-0.0801,56.6831,1.9728,-0.1838,56.6696,2.105,-0.2601,56.5717,1.4207,-0.2791,56.583,1.4318,-0.3382,56.9745,2.4719,-0.3403,56.9196,2.373,-0.3366,56.9665,2.4827,-0.2753,56.9607,2.4926,-0.2711,56.9651,2.4866,-0.3023,56.9101,2.4854,-0.321,56.7623,2.1589,-0.252,56.8307,2.1683,-0.4244,56.8504,1.9342,-0.4194,56.8366,1.9229,-0.3511,56.883,2.3702,-0.3843,56.8646,2.2047,-0.3321,56.833,2.342,-0.3439,56.842,1.9189,-0.3398,56.8232,1.9472,-0.3124,56.8294,1.9315,-0.2844,56.8529,1.8779,-0.2919,56.8573,1.8361,-0.2584,56.8033,1.9642,-0.2179,56.8471,1.9249,-0.1346,56.885,1.9658,-0.1882,56.8525,1.7774,-0.3547,56.964,1.6617,-0.361,56.9686,1.6671,-0.372,56.9192,1.6553,-0.3644,56.973,1.6738,-0.3637,56.9771,1.6829,-0.3908,56.9278,1.671,-0.3402,56.9767,1.6939,-0.3505,56.9283,1.6784,-0.3655,56.9298,1.6821,-0.3372,56.9733,1.6881,-0.3403,56.9257,1.6701,-0.3425,56.9269,1.6733,-0.3242,56.9845,1.668,-0.3305,56.9766,1.6665,-0.3323,56.9778,1.6685,-0.3481,56.9622,1.6615,-0.3543,56.9624,1.6584,-0.3575,56.9678,1.6525,-0.3546,56.9755,1.6471,-0.3569,56.9791,1.6536,-0.3151,56.9716,1.6558,-0.3251,56.9687,1.6599,-0.3262,56.9709,1.6604,-0.3551,56.9604,1.6579,-0.3657,56.943,1.657,-0.3644,56.9434,1.6482,-0.3571,56.9636,1.6493,-0.3594,56.9486,1.6611,-0.3044,56.9298,1.6474,-0.3191,56.9582,1.6589,-0.3021,56.9627,1.6503,-0.2821,56.9337,1.6301,-0.2945,56.9657,1.6316,-0.273,56.9375,1.6042,-0.2727,56.9425,1.6169,-0.2892,56.9414,1.5945,-0.305,56.9608,1.6206,-0.2805,56.9021,1.5621,-0.2804,56.9212,1.5778,-0.3024,56.9229,1.5761,-0.3534,56.971,1.6423,-0.3418,56.9229,1.664,-0.3417,56.9185,1.6649,-0.3394,56.9241,1.6706,-0.3419,56.9267,1.6744,-0.3916,56.9276,1.6801,-0.3933,56.9268,1.6838,-0.3937,56.9225,1.6738,-0.3384,56.923,1.6718,-0.3812,56.9295,1.6829,-0.3817,56.9301,1.6849,-0.3416,57.0474,1.8162,-0.3324,57.0349,1.8272,-0.3385,57.0378,1.825,-0.3658,56.9664,1.8156,-0.3775,56.9985,1.8345,-0.3574,56.9876,1.8432,-0.3454,57.015,1.8424,-0.3582,57.0201,1.8336,-0.3241,57.0124,1.8393,-0.3254,57.0346,1.8271,-0.3191,57.0367,1.8247,-0.2755,56.9695,1.7078,-0.2744,56.9857,1.7575,-0.2713,56.9999,1.7378,-0.3229,56.9424,1.6804,-0.3413,56.9275,1.6765,-0.3389,56.9238,1.6767,-0.3019,57.0533,1.791,-0.315,57.0456,1.8157,-0.3181,57.0496,1.8112,-0.3183,57.035,1.7267,-0.3259,57.0039,1.7073,-0.2881,57.0181,1.727,-0.3938,56.9273,1.6896,-0.3846,56.951,1.6985,-0.4004,56.9473,1.7086,-0.3144,57.2092,1.9416,-0.3127,57.2047,1.9373,-0.321,57.2101,1.9077,-0.2245,57.2459,1.9585,-0.2331,57.2347,1.9591,-0.2337,57.2391,1.9633,-0.2358,57.2868,1.9305,-0.2323,57.2795,1.9352,-0.2346,57.2819,1.9369,-0.2924,57.2765,1.8704,-0.2794,57.3045,1.8596,-0.2885,57.3147,1.8812,-0.2467,57.4304,1.9623,-0.2558,57.329,1.9071,-0.222,57.3844,1.95,-0.2926,57.4155,1.9306,-0.3085,57.4031,1.9325,-0.2498,57.4296,1.9589,-0.2522,57.2224,1.9693,-0.2464,57.2347,1.9819,-0.3266,57.3273,2.0425,-0.2322,57.3096,1.966,-0.3394,57.364,1.9845,-0.207,57.185,1.8983,-0.2062,57.1739,1.884,-0.2258,57.1675,1.9049,-0.3094,57.1881,1.9184,-0.2719,57.314,1.881,-0.2894,57.1619,1.9088,-0.2752,57.1587,1.8979,-0.2831,57.1721,1.8784,-0.1901,57.14,2.0166,-0.2148,57.17,1.9477,-0.1933,57.1318,1.9395,-0.2799,57.2088,2.0144,-0.2296,57.4268,1.9847,-0.2109,57.1825,2.0412,-0.2128,57.1851,1.9859,-0.2281,57.2023,1.9976,-0.2548,57.2124,2.0106,-0.2567,57.2023,2.021,-0.2035,57.1907,1.9146,-0.1684,57.2243,1.9023,-0.1701,57.2115,1.8754,-0.2202,57.2109,1.9587,-0.1718,57.2433,1.9493,-0.2052,57.2052,1.9405,-0.2345,57.3023,1.9248,-0.2439,57.2073,1.9562,-0.2823,57.196,1.8571,-0.3108,57.2007,1.8797,-0.3017,57.1798,1.8967,-0.1766,57.1986,1.8493,-0.2544,57.3236,1.9033,-0.2352,57.287,1.9346,-0.2773,57.2042,1.954,-0.2787,57.2054,1.9574,-0.3444,57.1702,2.0119,-0.3055,57.2836,1.8817,-0.3106,57.2615,1.8881,-0.3303,57.3853,1.9535,-0.335,57.3743,1.9688,-0.2272,57.2502,1.9588,-0.2553,57.3216,1.8979,-0.2351,57.3253,1.9057,-0.2518,57.2169,1.9641,-0.3819,56.9679,1.7061,-0.3379,57.0648,1.7882,-0.3311,57.0526,1.8087,-0.3375,57.0509,1.8114,-0.3787,57.0357,1.7499,-0.3517,57.0419,1.7344,-0.3445,57.0635,1.7607,-0.3202,57.0631,1.7866,-0.3239,57.0522,1.8086,-0.3429,56.917,1.6796,-0.3233,56.9328,1.6922,-0.3164,56.9365,1.6833,-0.2967,56.9725,1.7811,-0.3383,56.9264,1.7055,-0.3635,57.0306,1.8203,-0.3419,57.0425,1.8211,-0.3911,56.9808,1.8123,-0.4013,56.9996,1.7961,-0.4066,56.9743,1.7648,-0.3971,57.02,1.7726,-0.3412,56.9273,1.6753,-0.3492,56.9117,1.659,-0.3505,56.9056,1.6647,-0.3418,56.915,1.6679,-0.3804,56.9299,1.6808,-0.3481,56.9193,1.6569,-0.3116,56.9774,1.6468,-0.32,56.9815,1.644,-0.2932,56.9645,1.6405,-0.3102,56.9747,1.6511,-0.3366,56.8504,1.6186,-0.3334,56.9257,1.6545,-0.3565,56.9197,1.6527,-0.3625,56.9156,1.6477,-0.3374,56.9653,1.6622,-0.3576,56.9699,1.6552,-0.3602,56.9711,1.6636,-0.341,56.9671,1.6675,-0.3393,56.9682,1.6642,-0.3606,56.9702,1.6658,-0.3383,56.9757,1.6926,-0.3896,56.9299,1.6773,-0.3847,56.9238,1.663,-0.3587,56.9175,1.6531,-0.147,56.7819,1.8495,-0.1937,56.8532,1.7788,-0.3294,56.8521,1.7816,-0.4113,56.8287,1.8867,-0.3273,56.8509,1.9127,-0.3433,56.7975,2.0376,-0.3272,56.9278,2.4842,-0.3285,56.8433,2.3707,-0.3377,56.7775,2.1606,-0.2497,56.7916,2.0485,-0.3061,57.0977,2.4949,-0.3545,56.785,1.6234,-0.227,56.6032,1.4503,-0.148,56.6737,1.9685,-0.2236,56.7832,2.2215,-0.3928,57.1204,1.9112,-0.1368,57.2917,2.5949,-0.1588,57.4263,2.4257,-0.241,57.2071,2.4974,-0.2128,57.1887,2.5025,-0.2102,57.2047,2.4906,-0.2001,57.2006,2.5361,-0.1934,57.2151,2.5106,-0.1235,57.5523,2.4043,-0.3022,57.342,2.3533,-0.3005,57.3729,2.35,-0.2091,57.4603,2.1943,-0.3611,57.3321,1.9056,-0.1468,57.3079,1.9451,-0.178,57.3746,2.0003,-0.17,57.3946,2.0524,-0.2952,57.3254,1.777,-0.2728,57.2915,1.7351,-0.3915,57.1043,1.8563,-0.3085,57.0575,1.502,-0.2216,57.0639,2.5449,-0.1563,57.4253,2.1675,-0.1762,57.4404,2.1926,-0.2338,57.32,2.1572,-0.2464,57.371,2.158,-0.3512,57.2893,1.9874,-0.3015,57.5056,2.3089,-0.2733,57.4696,2.2147,-0.2585,57.4805,2.2295,-0.2391,57.398,2.2285,-0.2782,57.4542,2.2054,-0.2168,57.4423,2.2816,-0.3151,57.392,2.1101,-0.1981,57.3788,2.0307,-0.2113,57.4219,2.02,-0.2158,57.3767,2.3049,-0.2549,57.4088,2.3136,-0.2049,57.3844,2.29,-0.2098,57.3821,2.2988,-0.2343,57.4421,2.2971,-0.2315,57.4086,2.2248,-0.2526,57.3727,2.2649,-0.2269,57.3424,2.2693,-0.1682,57.3669,2.0979,-0.1968,57.3584,2.257,-0.2172,57.3388,2.2555,-0.2199,57.3293,2.2652,-0.2281,57.2771,2.1556,-0.2338,57.2077,2.4581,-0.2506,57.2622,2.4299,-0.2317,57.039,2.447,-0.266,57.3286,2.3787,-0.291,57.2707,2.4182,-0.2994,57.2342,2.4379,-0.3012,57.1544,2.4771,-0.2684,57.3312,2.3763,-0.2703,57.3303,2.3772,-0.2942,57.2675,2.4258,-0.3046,57.2325,2.4457,-0.2841,57.2927,2.3998,-0.2996,57.3414,2.3653,-0.2298,57.3426,1.7916,-0.2615,57.3343,1.7845,-0.2729,57.392,1.8541,-0.3657,57.2968,1.9463,-0.3375,57.3694,2.0659,-0.3476,57.3591,2.0379,-0.3346,57.3613,2.0757,-0.1673,57.4265,2.1275,-0.3111,57.361,2.1679,-0.3277,57.3824,2.0909,-0.4049,56.8013,1.8068,-0.4209,56.8035,1.7959,-0.3928,56.7583,1.7012,-0.2799,56.5813,1.4334,-0.2777,56.5801,1.4335,-0.2947,56.6058,1.4635,-0.2614,56.5701,1.4231,-0.2398,56.5669,1.4321,-0.2824,56.8128,2.3955,-0.3247,56.8404,2.3732,-0.3226,56.9256,2.4864,-0.3056,56.8997,2.4794,-0.4203,56.8286,1.8898,-0.1397,57.292,2.5964,-0.1929,56.873,2.1199,-0.1948,56.8744,2.1185,-0.1661,56.7403,2.064,-0.1705,56.7132,2.033,-0.2259,56.7205,2.1915,-0.1888,56.7001,2.054,-0.2052,56.7201,2.2294,-0.1993,56.681,2.158,-0.1918,56.7061,2.2407,-0.2151,56.9178,2.3786,-0.121,56.9634,2.4682,-0.1313,56.9503,2.4613,-0.1825,56.7346,2.2698,-0.143,56.8809,2.4229,-0.1258,56.9702,2.4678,-0.1171,56.9762,2.4725,-0.1311,57.043,2.503,-0.2271,56.5695,1.4742,-0.2209,56.5677,1.4748,-0.2003,56.5726,1.5255,-0.1388,56.6502,1.7653,-0.1141,56.6443,2.1852,-0.1025,56.6631,2.1686,-0.1066,56.6736,2.2254,-0.1684,56.5947,1.5974,-0.1348,56.6585,1.6646,-0.1404,56.6445,1.7366,-0.1411,56.8289,2.3579,-0.1011,56.8316,2.3464,-0.1066,56.8173,2.374,-0.4234,56.9203,1.8405,-0.424,56.918,1.8306,-0.4042,56.9449,2.0851,-0.3329,56.9849,2.4554,-0.1324,56.652,1.8571,-0.1344,56.6355,1.9025,-0.2443,56.6775,1.5764,-0.313,56.6952,1.5848,-0.3305,56.7226,1.6065,-0.1668,57.2936,2.5582,-0.1767,57.3343,2.5197,-0.2202,57.14,2.5319,-0.3431,56.8662,1.8499,-0.314,56.8561,1.7931,-0.3591,56.8564,1.9028,-0.3631,56.8615,1.8846,-0.3889,56.7558,1.6882,-0.4292,56.9003,1.871,-0.2717,57.3331,2.385,-0.2444,57.2102,2.4656,-0.2739,57.3317,2.3855,-0.2624,57.2768,2.4436,-0.2606,57.279,2.4442,-0.2687,57.3333,2.3876,-0.3026,57.1522,2.4844,-0.3028,57.1509,2.4806,-0.303,57.1485,2.4811,-0.1771,56.6818,2.043,-0.1468,56.7164,1.8485,-0.1458,56.7042,1.8848,-0.178,56.6222,1.5652,-0.1901,56.6996,1.5675,-0.1326,57.2135,2.6475,-0.2343,56.9502,2.4711,-0.2533,56.9885,2.5338,-0.2518,56.9727,2.5213,-0.2514,56.935,2.4952,-0.2559,56.9651,2.5169,-0.2582,56.9143,2.5068,-0.2623,56.9172,2.5104,-0.2612,56.9016,2.502,-0.2651,56.928,2.5137,-0.2462,57.2287,2.4842,-0.205,57.2497,2.4535,-0.2496,57.2416,2.4754,-0.1764,57.3474,2.5065,-0.2734,57.2174,2.4508,-0.2496,57.2293,2.4602,-0.249,57.2112,2.4665,-0.303,57.151,2.486,-0.2983,57.1532,2.4783,-0.3054,57.309,2.3585,-0.3122,57.2759,2.3723,-0.3419,57.1635,2.4591,-0.337,57.2016,2.4359,-0.2946,57.4688,2.3276,-0.2977,57.4107,2.3348,-0.3599,57.0104,2.4145,-0.3342,56.8613,1.8085,-0.35,56.8359,1.7892,-0.3326,56.9362,2.3543,-0.2085,56.5763,1.5279,-0.2045,56.5796,1.5414,-0.2455,56.6111,1.5091,-0.1419,56.723,1.6607,-0.1552,56.6896,1.6356,-0.1547,56.6627,1.8455,-0.1347,56.6503,1.7644,-0.1273,56.6184,1.9653,-0.1244,56.6154,1.9935,-0.1106,56.6254,2.0598,-0.1115,56.6231,2.0331,-0.1075,56.701,2.2734,-0.1141,56.7014,2.2836,-0.1143,56.6849,2.2672,-0.136,56.7984,2.391,-0.1409,56.8171,2.4061,-0.1181,56.9651,2.4684,-0.1536,57.1254,2.6273,-0.1615,57.1189,2.6198,-0.185,57.2585,2.58,-0.1551,57.2341,2.6359,-0.2514,56.9965,2.5386,-0.2583,56.9256,2.5109,-0.3419,56.9179,2.4297,-0.3827,56.7984,2.1635,-0.4152,56.8363,1.9482,-0.3312,56.7236,1.617,-0.326,56.7179,1.6081,-0.3106,56.6859,1.5745,-0.2957,56.6085,1.4606,-0.2961,56.6064,1.4621,-0.3001,56.6143,1.4728,-0.1243,56.6315,1.9269,-0.1431,56.6251,1.6799,-0.1232,56.6401,1.901,-0.1274,56.6386,1.9011,-0.2421,56.5645,1.4343,-0.2303,57.4319,1.9845,-0.2442,57.3957,1.8729,-0.2476,57.4355,1.9618,-0.2265,57.3427,1.7943,-0.4221,56.8645,1.9842,-0.4194,56.8791,2.0386,-0.1576,56.6692,1.7491,-0.3172,56.6956,1.5835,-0.2145,57.0598,2.5437,-0.2483,57.013,2.544,-0.2549,56.8547,2.453,-0.258,56.8542,2.4553,-0.26,56.8481,2.4493,-0.2629,56.8414,2.4415,-0.2651,56.903,2.5024,-0.2421,56.881,2.4403,-0.1556,57.4209,2.1539,-0.1673,57.4201,2.1257,-0.3434,56.7961,2.0441,-0.2669,57.2161,1.9708,-0.3014,57.1781,1.9525,-0.2657,57.215,1.9685,-0.2877,57.1699,1.9443,-0.2634,57.2146,1.9673,-0.2747,57.1982,1.9598,-0.2598,57.1989,1.9589,-0.2545,57.1518,1.9158,-0.2689,57.1501,1.9134,-0.2475,57.1526,1.917,-0.269,57.1416,1.894,-0.2296,57.1379,1.9052,-0.2579,57.2219,1.9872,-0.2561,57.2213,1.9849,-0.2491,57.2174,2.0007,-0.2556,57.2185,2.0028,-0.2721,57.2104,2.0079,-0.3502,57.1207,1.923,-0.2727,56.939,1.9901,-0.2835,56.9449,1.9923,-0.2762,56.9559,1.9291,-0.2887,56.9366,1.9571,-0.2909,56.9475,1.9893,-0.2668,56.9346,1.9843,-0.268,56.9301,1.9645,-0.3334,56.9866,1.9504,-0.2889,57.0175,2.0256,-0.2834,56.972,2.0004,-0.336,56.8135,2.0351,-0.338,56.8159,2.0364,-0.3015,56.8838,2.0091,-0.3456,56.8167,2.0238,-0.348,56.7984,2.0418,-0.2644,57.1548,1.9199,-0.2663,57.1572,1.9231,-0.2688,57.1532,1.9182,-0.2426,57.1613,1.9298,-0.2417,57.1577,1.9247,-0.2632,57.2828,1.8075,-0.2243,57.3133,1.8226,-0.2393,57.3102,1.8161,-0.1965,57.3138,1.8638,-0.1983,57.3298,1.9006,-0.2142,57.3348,1.8728,-0.223,57.3384,1.8816,-0.2124,57.3306,1.9034,-0.2359,57.3391,1.8836,-0.2552,57.1681,1.9341,-0.2531,57.1864,1.9442,-0.2354,57.1843,1.9425,-0.2894,57.1741,1.9328,-0.2744,57.1823,1.9402,-0.2631,57.1659,1.9321,-0.2668,57.1617,1.9273,-0.2609,57.1529,1.9173,-0.2647,57.1562,1.9184,-0.2665,57.1582,1.9225,-0.2613,57.1687,1.9398,-0.268,57.1674,1.9398,-0.3533,57.1659,1.8324,-0.34,57.1599,1.8387,-0.3301,57.1811,1.8445,-0.3678,57.0806,1.8017,-0.3159,57.1733,1.8596,-0.322,57.1512,1.8534,-0.3056,57.1424,1.8751,-0.3486,57.0676,1.8106,-0.3424,57.0564,1.8203,-0.3299,57.0669,1.8299,-0.3281,57.1373,1.8524,-0.3873,57.0247,1.809,-0.3729,57.0333,1.8138,-0.3864,57.0264,1.8117,-0.3856,57.0305,1.8128,-0.3798,57.0342,1.8155,-0.3871,57.0397,1.7968,-0.399,57.0228,1.7982,-0.3888,57.0265,1.812,-0.3882,57.025,1.8092,-0.393,57.0203,1.8089,-0.397,57.021,1.8102,-0.3907,57.0354,1.8123,-0.404,56.9835,1.8206,-0.4063,57.0048,1.8095,-0.4079,56.9854,1.8194,-0.4211,56.9278,1.8387,-0.425,56.9306,1.8411,-0.4262,56.9296,1.8387,-0.4078,56.984,1.8174,-0.4253,56.9209,1.8388,-0.4238,56.9223,1.8391,-0.425,56.9223,1.8389,-0.4272,56.9229,1.8437,-0.4262,56.9233,1.8446,-0.4261,56.9203,1.8464,-0.424,56.9208,1.8443,-0.3526,56.8023,2.0288,-0.3552,56.8008,2.0385,-0.3533,56.8001,2.0414,-0.3453,56.8006,2.0281,-0.3453,56.8003,2.0279,-0.347,56.8013,2.0248,-0.3396,57.0861,1.7994,-0.2718,57.0158,1.8013,-0.2662,57.0141,1.7945,-0.2198,57.1055,1.715,-0.2879,57.1181,1.7043,-0.1877,57.0792,1.7241,-0.2125,57.0327,1.7411,-0.3111,57.072,1.8146,-0.2886,56.9038,1.8018,-0.3122,56.8868,1.8593,-0.3099,56.8875,1.8609,-0.3157,56.8852,1.8646,-0.3162,56.8787,1.872,-0.3157,56.8783,1.8715,-0.3203,56.8835,1.8745};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=3 */
		private double[] getethmoid_Coord_6_109_point_3()
		{
			double[] value = {-0.3174,56.8583,1.894,-0.3265,56.8613,1.8836,-0.3253,56.8609,1.8847,-0.2669,56.9482,1.774,-0.2563,56.9495,1.7956,-0.2597,56.9648,1.8013,-0.2759,56.984,1.8393,-0.3221,56.9616,1.9471,-0.3393,56.9627,1.9413,-0.3236,56.9653,1.8477,-0.2857,56.9393,1.7664,-0.3294,56.9633,1.9669,-0.3476,56.964,1.9601,-0.3159,56.9165,1.8037,-0.2695,57.0115,1.8187,-0.2728,57.012,1.8177,-0.2729,57.0246,1.8219,-0.2667,57.0259,1.8235,-0.2607,57.0141,1.7908,-0.2658,57.0058,1.7994,-0.2551,57.0155,1.7919,-0.2851,56.9849,1.8453,-0.2837,56.9856,1.8256,-0.2691,56.9823,1.8141,-0.262,56.9751,1.8199,-0.2678,56.9808,1.831,-0.2735,56.9158,1.8715,-0.2849,56.8977,1.8706,-0.328,56.9406,1.9933,-0.3541,56.9339,2.0169,-0.369,56.9358,2.0082,-0.3173,56.8703,1.8689,-0.2971,57.1645,1.6325,-0.302,57.1752,1.6414,-0.2771,57.1749,1.6348,-0.2655,57.1665,1.6307,-0.2568,57.1734,1.6343,-0.2762,57.1499,1.6264,-0.2105,57.1621,1.6405,-0.2484,57.1706,1.634,-0.2274,57.1582,1.6332,-0.2101,57.1402,1.635,-0.2816,56.9729,1.6856,-0.2557,57.0558,1.7235,-0.2838,57.0113,1.715,-0.239,57.1893,1.6619,-0.3154,57.0678,1.7293,-0.3099,57.0836,1.7041,-0.3314,57.067,1.7119,-0.326,57.0541,1.7346,-0.3122,57.0578,1.7486,-0.3026,57.0272,1.7216,-0.3146,57.1304,1.6529,-0.3074,57.136,1.669,-0.3102,57.0233,1.716,-0.3014,56.9865,1.686,-0.2873,57.0196,1.7204,-0.2582,56.9566,1.666,-0.2633,56.9559,1.6635,-0.2831,56.9646,1.6761,-0.284,56.9667,1.6794,-0.2469,56.9655,1.6517,-0.2666,56.9546,1.6705,-0.2086,56.8571,1.5545,-0.2193,56.851,1.5356,-0.2382,56.8291,1.5564,-0.194,56.9667,1.5395,-0.2473,56.8305,1.5761,-0.2618,56.8282,1.5786,-0.261,56.8309,1.5815,-0.2415,56.9024,1.5763,-0.2457,56.8877,1.5793,-0.265,56.8407,1.5589,-0.2416,56.9557,1.5506,-0.2481,56.9586,1.5398,-0.2429,56.9664,1.5354,-0.1985,56.9845,1.5394,-0.215,56.9838,1.5222,-0.2676,56.9105,1.564,-0.2603,56.9081,1.5871,-0.2559,56.9062,1.5853,-0.2604,56.9357,1.5805,-0.2528,56.905,1.5862,-0.2492,56.931,1.5762,-0.2306,56.9551,1.5699,-0.2372,56.9285,1.5849,-0.2076,57.0643,1.5423,-0.1903,57.0843,1.5837,-0.2033,57.0984,1.5805,-0.2156,56.9627,1.6026,-0.2036,57.1043,1.6119,-0.2107,57.1171,1.6101,-0.216,56.9839,1.6174,-0.2281,56.9725,1.623,-0.2393,56.9351,1.6082,-0.2766,56.9818,1.607,-0.2648,56.9133,1.6018,-0.2881,57.0491,1.5929,-0.2944,57.044,1.5794,-0.3022,57.0018,1.5975,-0.2659,56.9122,1.5953,-0.2318,57.1274,1.609,-0.2234,57.125,1.6176,-0.2503,57.063,1.5254,-0.2733,57.0957,1.575,-0.2163,57.1095,1.6198,-0.1909,57.2101,2.1859,-0.2146,57.1696,2.0923,-0.1531,57.199,2.0644,-0.2201,57.1794,2.1357,-0.2244,57.1753,2.1196,-0.2225,57.171,2.1035,-0.188,57.1821,2.1413,-0.3346,56.8188,1.5791,-0.3506,56.8185,1.5757,-0.361,56.8404,1.6154,-0.2727,56.8837,1.5201,-0.2342,56.8703,1.5148,-0.2682,56.9101,1.5763,-0.2688,56.8945,1.5831,-0.313,56.8217,1.5337,-0.2892,56.8283,1.5376,-0.2999,56.8061,1.5337,-0.3013,56.8057,1.5354,-0.3196,56.7932,1.5331,-0.3201,56.7955,1.5319,-0.3213,56.7962,1.5365,-0.2988,56.7933,1.5368,-0.2994,56.7948,1.5384,-0.3149,56.7885,1.5476,-0.3117,56.7871,1.5465,-0.3126,56.7806,1.561,-0.3077,56.7868,1.5458,-0.3024,56.7885,1.5457,-0.3025,56.7913,1.5467,-0.3078,56.7933,1.5484,-0.3116,56.7932,1.5489,-0.3123,56.7883,1.5641,-0.3147,56.792,1.5489,-0.3132,56.7776,1.5763,-0.3136,56.7782,1.5768,-0.3165,56.7749,1.5775,-0.3141,56.7754,1.5761,-0.3094,56.7812,1.561,-0.3129,56.7768,1.5759,-0.3183,56.7792,1.5801,-0.3096,56.7883,1.5638,-0.3161,56.7792,1.5787,-0.3886,56.8272,1.6422,-0.409,56.8425,1.6622,-0.2048,56.6348,1.504,-0.4086,56.8425,1.6672,-0.388,56.8268,1.6461,-0.3976,56.8341,1.656,-0.2065,56.8333,1.5363,-0.2822,56.7632,1.488,-0.3121,56.7733,1.5775,-0.3484,56.798,1.6074,-0.3186,56.6912,1.5706,-0.3129,56.7792,1.5797,-0.3121,56.7779,1.5788,-0.3114,56.7759,1.5777,-0.3153,56.7733,1.5793,-0.317,56.7749,1.5809,-0.322,56.7555,1.5971,-0.3119,56.7761,1.5777,-0.3117,56.7756,1.5778,-0.3147,56.7788,1.5805,-0.3145,56.7792,1.5808,-0.4011,56.8413,1.652,-0.3989,56.8447,1.646,-0.3985,56.84,1.6542,-0.3981,56.8389,1.6571,-0.3982,56.8391,1.6576,-0.3981,56.839,1.6575,-0.3976,56.8344,1.6557,-0.3976,56.8342,1.656,-0.3955,56.8331,1.6539,-0.3929,56.8364,1.6521,-0.3926,56.8365,1.6522,-0.394,56.838,1.6537,-0.2409,56.8505,1.5205,-0.2631,56.8232,1.5413,-0.2877,56.9078,1.6523,-0.2915,56.9122,1.6481,-0.2133,56.9523,1.6665,-0.2208,56.9437,1.6492,-0.1904,56.9216,1.6351,-0.1939,56.9351,1.6929,-0.2405,56.8666,1.5922,-0.208,56.9179,1.6931,-0.2331,56.9166,1.6924,-0.2293,56.9253,1.7028,-0.2817,56.884,1.6372,-0.2817,56.8908,1.6459,-0.2484,56.9296,1.6964,-0.2456,56.941,1.7127,-0.2502,56.9169,1.6767,-0.2672,56.9539,1.676,-0.2709,56.9504,1.6792,-0.2741,56.957,1.68,-0.2798,56.9584,1.6815,-0.2743,56.9479,1.6802,-0.2826,56.9582,1.6813,-0.2775,56.9432,1.6747,-0.2835,56.9559,1.6775,-0.2807,56.954,1.6742,-0.2757,56.944,1.6714,-0.2757,56.9515,1.6702,-0.2742,56.951,1.6692,-0.2685,56.9482,1.6682,-0.27,56.9505,1.6695,-0.2694,56.9476,1.6782,-0.2652,56.9496,1.6748,-0.2642,56.9497,1.6732,-0.265,56.9483,1.6706,-0.274,56.9413,1.6703,-0.2338,56.9078,1.6913,-0.2055,56.9114,1.6949,-0.1335,56.8402,1.6804,-0.1446,56.8556,1.691,-0.1389,56.8529,1.6958,-0.186,56.9757,1.5771,-0.2633,56.9471,1.6751,-0.2638,56.9372,1.6616,-0.2638,56.9412,1.6617,-0.2605,56.9423,1.6761,-0.2605,56.9386,1.6759,-0.2609,56.9333,1.674,-0.2594,56.9376,1.6802,-0.2539,56.9434,1.6491,-0.2634,56.9458,1.664,-0.2647,56.9413,1.658,-0.2897,56.8604,1.6332,-0.284,56.8821,1.629,-0.255,56.8208,1.5687,-0.2138,56.8648,1.5713,-0.2416,56.8636,1.5903,-0.2403,56.8646,1.5884,-0.2474,56.8377,1.5819,-0.2461,56.8399,1.5852,-0.2693,56.8382,1.5835,-0.2693,56.8824,1.5935,-0.2728,56.882,1.5928,-0.2728,56.8636,1.5917,-0.2717,56.8654,1.6,-0.2796,56.8838,1.5986,-0.2761,56.8822,1.5938,-0.2783,56.8828,1.5957,-0.2699,56.8662,1.6,-0.2762,56.852,1.5962,-0.2716,56.85,1.589,-0.2671,56.864,1.5948,0.0,57.5019,2.0636,-0.0351,57.5047,2.161,-0.0879,57.4507,2.4213,-0.0709,57.3984,2.4374,-0.0329,57.5135,2.4496,-0.0976,57.4512,2.4229,-0.0812,57.4849,2.4425,-0.1192,57.4552,2.4343,-0.1071,57.24,2.4387,-0.0659,57.5129,2.4416,-0.0897,57.4338,2.3754,0.0,57.3828,2.0051,0.0,57.3094,1.9392,-0.0368,57.5158,2.2409,-0.0385,57.5699,2.3208,-0.0207,57.5912,2.1439,0.0,57.6305,2.1303,-0.0184,57.6111,2.1496,-0.2119,56.8859,1.6072,-0.2007,56.9526,1.5916,-0.0966,57.1348,2.0388,-0.0839,56.7966,1.9382,-0.1357,57.1437,1.6887,-0.1234,56.9342,1.7602,-0.1049,56.9905,1.9344,-0.1038,57.0497,2.0,-0.1074,57.0261,1.9227,-0.107,57.1061,2.048,-0.1026,57.1072,2.0489,-0.0958,57.1186,2.0452,-0.1117,57.1744,2.136,-0.097,56.8396,1.8366,-0.1256,56.8911,1.8209,-0.1315,56.9299,1.6903,-0.1076,56.9633,1.8797,-0.1114,56.9641,1.8789,-0.1124,56.9352,1.7981,-0.0994,57.0501,2.0007,-0.1243,57.153,2.0812,-0.1119,57.1302,2.0315,-0.134,56.916,1.6851,-0.1262,56.9183,1.715,-0.1535,56.8789,1.7155,-0.1513,57.0034,1.6771,-0.1027,57.3238,2.3588,-0.1407,56.9188,1.6211,-0.1488,56.9071,1.6311,-0.1249,56.9162,1.6813,-0.1804,56.9083,1.6065,-0.1832,56.8868,1.6063,-0.1639,57.0402,1.5646,-0.1289,57.0896,1.6362,-0.1307,57.0892,1.6342,-0.2047,57.0101,1.5564,-0.1459,56.9116,1.6599,-0.1817,56.886,1.6056,-0.1722,56.895,1.6164,-0.1512,56.9984,1.6047,-0.1505,57.0511,1.5804,-0.1842,56.8948,1.5943,-0.1679,56.8993,1.5873,-0.1711,56.8952,1.6094,-0.1334,57.0102,1.7814,-0.1313,57.1856,1.7214,-0.1314,57.0526,1.7232,-0.0901,56.7543,1.7905,-0.0801,57.0362,1.926,-0.0807,57.0311,1.9273,-0.1156,57.2533,2.1092,-0.1503,56.9263,1.5953,-0.135,56.9921,1.6145,-0.121,57.0183,1.6614,-0.0931,57.042,1.6017,-0.1048,56.9535,1.7058,-0.1125,57.0268,1.7134,-0.101,56.9587,1.7333,-0.1728,56.8915,1.5835,-0.203,56.8374,1.5383,-0.2038,56.8424,1.5498,-0.0254,56.7018,2.2978,-0.0221,56.6892,2.2403,-0.0204,56.6762,2.2506,-0.0285,56.8299,2.3944,-0.0292,57.3665,2.5067,-0.0271,57.082,2.4828,-0.0297,57.1041,2.4701,-0.0288,57.0425,2.4651,-0.0145,56.644,1.8551,0.0,56.6953,1.7203,-0.04,57.2921,2.3216,-0.0207,56.6713,1.9235,-0.0212,56.7438,2.3527,0.0,56.7672,2.4592,0.0,56.9037,2.496,0.0,57.0323,2.4976,0.0,57.1607,2.549,0.0,57.5935,2.4746,-0.0238,56.7583,2.356,-0.0368,57.4312,2.5099,-0.026,56.975,2.4312,-0.0317,56.9986,2.4323,-0.0311,56.8666,2.397,-0.0155,56.6841,2.053,0.0,56.6693,2.1505,-0.0199,56.8764,1.8581,-0.0275,56.8463,1.7936,-0.0278,56.8423,1.7895,-0.0944,57.3675,2.0693,-0.0413,57.1754,2.1419,-0.0301,57.147,2.443,-0.0515,57.3379,2.454,-0.0298,57.2353,2.4889,0.0,56.6852,2.3413,0.0,56.6924,2.3571,-0.017,56.6874,2.2908,-0.0188,56.7019,2.3127,-0.0272,57.0973,2.4878,-0.0187,56.9676,2.4221,-0.0165,57.0422,1.4963,-0.0145,57.0581,1.4878,0.0,56.6773,2.2828,-0.0132,56.6654,2.1802,-0.0208,57.7092,2.1903,-0.0198,57.6247,2.1524,-0.0199,57.6553,2.1385,-0.0192,57.7147,2.2504,-0.0595,57.6629,2.3651,0.0,57.3138,1.7437,0.0,57.5978,2.4722,-0.0332,57.1532,2.3789,-0.0176,56.672,2.2376,0.0,57.5043,2.5258,-0.0796,57.3879,2.1216,-0.0292,56.8211,2.3732,-0.0143,56.6878,2.0632,-0.0152,56.6777,2.0667,-0.0305,56.7141,2.2938,-0.0254,56.729,2.3232,-0.0177,56.7041,1.9881,0.0,56.6429,2.0864,-0.2032,56.8583,1.5866,-0.1125,56.9485,1.6791,-0.1073,57.0242,1.7121,-0.0802,57.1488,1.552,-0.0845,57.1214,1.5495,-0.0799,56.9207,2.2157,-0.0784,56.9046,2.1652,-0.1289,57.0353,1.696,-0.1288,57.2157,2.0605,-0.1419,57.0288,1.8587,-0.1369,57.0079,1.6273,-0.1448,56.9106,1.6596,-0.1575,56.9038,1.6353,-0.1136,56.9427,1.6797,-0.1546,56.9883,1.6361,-0.1527,56.9938,1.6497,-0.0945,57.4087,2.1918,-0.0836,57.4226,2.3238,-0.1016,57.0587,1.9113,-0.1471,56.8636,1.7051,-0.1269,56.9346,1.712,-0.089,56.8213,2.1302,-0.1927,56.8976,1.6157,-0.2839,56.8996,1.6511,-0.1005,57.1438,1.9732,-0.1094,57.1806,1.9645,-0.1179,56.9296,1.713,-0.2794,56.8534,1.6013,-0.2818,56.865,1.5968,-0.2798,56.8633,1.5924,-0.2701,56.865,1.5968,-0.2373,56.8618,1.5876,-0.234,56.8543,1.5817,-0.2749,56.9156,1.6524,-0.2641,56.9301,1.6606,-0.2579,56.965,1.6965,-0.2604,56.949,1.6774,-0.2609,56.9471,1.675,-0.1821,56.8507,1.6808,-0.2718,56.9424,1.6687,-0.2657,56.9381,1.6741,-0.2743,56.9433,1.6785,-0.2719,56.9463,1.6686,-0.2732,56.9453,1.6696,-0.2667,56.9524,1.6756,-0.2675,56.9017,1.6495,-0.1971,56.9456,1.6937,-0.2555,56.824,1.5463,-0.2669,56.8293,1.5461,-0.3955,56.8335,1.6537,-0.3992,56.8373,1.6581,-0.4002,56.84,1.6502,-0.312,56.7782,1.5788,-0.3135,56.7719,1.5779,-0.3205,56.7781,1.5842,-0.3189,56.7796,1.5837,-0.3127,56.7748,1.5781,-0.4417,56.8938,1.752,-0.3989,56.8351,1.6573,-0.3044,56.7874,1.5456,-0.3012,56.8066,1.5356,-0.3014,56.8095,1.5301,-0.3236,56.8029,1.5442,-0.2995,56.8118,1.5362,-0.3153,56.8657,1.5492,-0.2243,57.1749,2.1199,-0.1932,57.1862,2.0226,-0.345,57.3573,2.0193,-0.2576,57.0544,1.5226,-0.2452,57.125,1.6137,-0.2957,57.0041,1.6075,-0.2261,56.9891,1.6238,-0.2092,57.0812,1.551,-0.2499,56.9047,1.5898,-0.2438,56.9695,1.5408,-0.2369,56.9665,1.5471,-0.2783,56.9127,1.5422,-0.2683,56.9419,1.5414,-0.2577,56.9386,1.5579,-0.2555,56.8641,1.586,-0.2659,56.9559,1.6729,-0.2143,56.9948,1.6656,-0.3419,57.0362,1.7119,-0.3377,57.1012,1.6673,-0.2726,57.0978,1.693,-0.2455,57.1727,1.6371,-0.2598,57.1775,1.6374,-0.3622,56.9519,2.0033,-0.3518,56.95,2.009,-0.2711,56.9834,1.8201,-0.28,56.9853,1.8271,-0.2631,57.0055,1.8004,-0.3222,56.8687,1.8844,-0.3179,56.8784,1.8745,-0.3152,56.8848,1.8942,-0.2964,56.9064,1.7914,-0.2864,57.0977,1.8662,-0.3305,57.1025,1.834,-0.2023,57.0457,1.7647,-0.3335,56.8621,1.8872,-0.3085,56.8575,1.8881,-0.3434,56.7994,2.0313,-0.3536,56.7998,2.0418,-0.3528,56.802,2.0284,-0.4284,56.9191,1.8449,-0.4277,56.9197,1.8445,-0.4224,56.9232,1.8412,-0.4229,56.9233,1.8429,-0.4242,56.9212,1.8392,-0.4259,56.9303,1.84,-0.4215,56.9271,1.8374,-0.4058,57.0042,1.8073,-0.3897,57.0303,1.813,-0.3947,57.0205,1.8104,-0.3876,57.0342,1.7975,-0.385,57.0412,1.8094,-0.3831,57.0373,1.8132,-0.3851,57.0359,1.812,-0.376,57.0327,1.8157,-0.343,57.083,1.819,-0.3048,57.1652,1.8822,-0.358,57.0766,1.8037,-0.3434,57.1867,1.8408,-0.2603,57.1549,1.9153,-0.2472,57.1674,1.9308,-0.2096,57.3285,1.8582,-0.2467,57.2235,1.8261,-0.2176,57.251,1.8093,-0.2447,57.2531,1.8103,-0.2436,57.2802,1.801,-0.2758,57.2947,1.8362,-0.3107,56.8842,1.9974,-0.2989,56.8818,2.0067,-0.2176,56.9905,1.9486,-0.2787,56.968,1.8973,-0.2954,56.9474,1.9829,-0.3659,57.0961,1.9616,-0.1986,57.0751,1.9198,-0.264,57.217,1.9987,-0.2606,57.215,1.9683,-0.3176,57.1127,1.8866,-0.2796,56.8129,2.3924,-0.247,56.9936,2.5353,-0.2052,57.0727,2.5531,-0.1669,57.122,2.6248,-0.4064,56.8054,1.8178,-0.2237,57.3891,1.9096,-0.3415,57.2994,1.7802,-0.1182,56.6219,1.9636,-0.3002,56.6166,1.4707,-0.3368,56.7255,1.6177,-0.3849,56.7576,1.7036,-0.3809,56.7536,1.6938,-0.4117,56.8257,1.8745,-0.3918,56.8087,2.0452,-0.3555,56.8008,2.0386,-0.2539,56.8629,2.4617,-0.2773,56.8661,2.4687,-0.2587,56.9728,2.5232,-0.1574,57.2067,2.6445,-0.1673,57.1401,2.6387,-0.163,57.151,2.6422,-0.1037,56.9873,2.4404,-0.113,56.9762,2.4703,-0.1129,56.9641,2.4653,-0.1249,56.8214,2.3991,-0.1198,56.8027,2.3842,-0.1127,56.6387,2.163,-0.1242,56.6517,2.2242,-0.1267,56.6619,2.2452,-0.1162,56.6256,2.1022,-0.116,56.6286,2.1217,-0.2938,56.6109,1.4745,-0.2915,56.6053,1.4653,-0.2615,56.5938,1.4647,-0.3433,56.9501,2.2574,-0.2833,57.1876,2.4602,-0.2889,57.1842,2.4718,-0.2565,57.2483,2.4292,-0.1996,57.352,2.3641,-0.1793,57.3579,2.4836,-0.2532,57.2543,2.4657,-0.2569,57.2668,2.4552,-0.2597,56.8991,2.4991,-0.0959,57.5394,2.42,-0.2692,57.3314,2.3865,-0.2766,57.3342,2.3872,-0.2989,56.8584,1.8115,-0.1742,57.2961,2.5638,-0.3751,56.7445,1.6555,-0.0993,56.6526,1.9049,-0.1594,56.8436,2.354,-0.1441,56.6224,1.6692,-0.1172,56.6552,2.2214,-0.2046,56.5734,1.5267,-0.1346,57.0445,2.5012,-0.1549,56.7646,2.344,-0.165,56.871,2.3531,-0.2251,56.7422,2.2023,-0.1665,56.6466,2.0232,-0.152,56.7579,2.0722,-0.2566,56.5721,1.4334,-0.2479,56.5665,1.437,-0.3892,56.7567,1.703,-0.3516,57.3387,2.0144,-0.3481,57.3621,2.0196,-0.248,57.3964,1.8717,-0.2889,57.2916,2.4076,-0.1949,57.3544,2.2519,-0.2026,57.3522,2.2494,-0.2283,57.3473,2.2867,-0.253,57.4386,2.3097,-0.2529,57.3761,2.2874,-0.2712,57.4702,2.2088,-0.3247,57.3777,2.0896,-0.2085,57.4329,2.2652,-0.3446,57.0697,1.5858,-0.126,57.257,2.4971,-0.1687,56.6912,2.2749,-0.2253,56.587,1.4524,-0.2559,56.8897,2.4896,-0.2932,56.9872,1.6977,-0.3589,56.9794,1.6906,-0.308,56.864,1.6111,-0.3999,56.9891,1.7467,-0.3844,57.0145,1.8142,-0.3524,56.9088,1.6843,-0.3102,56.957,1.7444,-0.3659,57.0528,1.7719,-0.3518,57.0565,1.7938,-0.3981,56.9604,1.7182,-0.3128,57.2425,1.8902,-0.3058,57.2543,1.8834,-0.3087,57.1816,1.9416,-0.2086,57.2419,1.9597,-0.2248,57.1935,1.9825,-0.2314,57.1842,1.9562,-0.2708,57.425,1.9395,-0.3216,57.3944,1.9404,-0.3818,56.9303,1.6862,-0.2918,57.0395,1.8001,-0.3047,57.0168,1.8282,-0.3229,56.9828,1.833,-0.4058,56.9522,1.7297,-0.3965,56.9185,1.6791,-0.3564,56.9512,1.6337,-0.339,56.9598,1.624,-0.3314,56.9807,1.6364,-0.3439,56.978,1.6378,-0.3215,56.9633,1.6186,-0.2966,56.9032,1.5647,-0.3175,56.9757,1.658,-0.3274,56.986,1.6722,-0.3426,56.965,1.6693,-0.3392,56.9695,1.6796,-0.3101,56.8585,1.8774,-0.0979,56.6432,1.9732,-0.2012,57.3314,1.8427,-0.3842,57.0985,1.7765,-0.2905,57.4164,2.2153,-0.298,57.4415,2.3035,-0.2643,57.4121,2.1584,-0.2448,57.4222,2.1825,-0.2943,57.4173,2.1348,-0.2874,57.4021,2.1342,-0.2023,57.3786,2.2686,-0.2108,57.35,2.2522,-0.2099,57.348,2.2497,-0.1818,57.3469,2.273,-0.2634,56.966,2.465,-0.2369,57.2448,2.4459,-0.1708,56.5926,1.5983,-0.4199,56.8253,1.8775,-0.2131,56.8732,2.1734,-0.1399,56.882,2.3864,-0.2625,56.6286,1.4481,-0.4346,56.8957,1.7463,-0.4069,56.8218,2.0234,-0.4021,56.817,2.0217,-0.2064,57.2514,2.5423,-0.2128,57.0765,2.5544,-0.2392,57.5496,2.3383,-0.209,57.5639,2.3307,-0.3683,56.8493,1.8527,-0.3929,56.8136,2.0198,-0.3042,57.1525,2.482,-0.2511,56.5877,1.4649,-0.2345,56.5695,1.4642,-0.2315,56.5727,1.4757,-0.1814,56.59,1.5891,-0.1319,56.6277,1.9282,-0.1212,56.6174,2.0316,-0.1192,56.62,2.0591,-0.1132,56.6215,1.9919,-0.1184,56.6365,2.1645,-0.1202,56.6418,2.1869,-0.1174,56.6661,2.2419,-0.15,56.8462,2.4306,-0.1497,56.8654,2.4407,-0.1519,57.13,2.6296,-0.1325,57.2244,2.6437,-0.2567,56.9635,2.5187,-0.2564,56.897,2.495,-0.405,56.8173,2.0496,-0.4,56.8021,1.8066,-0.1127,56.6271,2.1017,-0.355,57.3159,1.9907,-0.168,56.6516,2.0216,-0.1427,57.2085,2.6499,-0.1459,57.1983,2.6494,-0.4279,56.9169,1.8333,-0.3683,57.0722,1.9445,-0.3151,57.147,1.9031,-0.2485,57.0531,1.8596,-0.2964,56.944,1.9712,-0.2769,57.2257,1.8371,-0.2553,57.1723,1.8712,-0.198,57.3033,1.8392,-0.2125,57.3199,1.8381,-0.3566,57.118,1.8184,-0.3626,57.1687,1.8393,-0.3837,57.0472,1.802,-0.3852,57.0448,1.8053,-0.3858,57.0456,1.8011,-0.4225,56.9297,1.8411,-0.4228,56.9226,1.84,-0.4271,56.9233,1.84,-0.4258,56.9195,1.8395,-0.4249,56.9198,1.8396,-0.426,56.9175,1.832,-0.4232,56.9207,1.8424,-0.4238,56.9202,1.8409,-0.355,56.8019,2.032,-0.3114,56.8596,1.8659,-0.2134,57.2354,1.712,-0.2465,57.0207,1.7605,-0.1594,57.1627,1.7381,-0.1529,57.1525,1.7901,-0.204,57.2734,1.7751,-0.3205,56.8686,1.8836,-0.3233,56.8606,1.8834,-0.3209,56.8604,1.8805,-0.3174,56.859,1.8855,-0.3177,56.859,1.886,-0.2787,56.9817,1.8053,-0.2718,56.948,1.8805,-0.3656,56.9208,1.9323,-0.2671,56.9208,1.8194,-0.3231,56.8693,1.8802,-0.2685,57.0807,1.6015,-0.2585,57.1914,1.6584,-0.2549,56.9766,1.6793,-0.2673,56.9572,1.6747,-0.2758,56.9552,1.6696,-0.2742,56.9547,1.6687,-0.2185,56.9853,1.5459,-0.2321,57.0099,1.5185,-0.217,57.0145,1.5401,-0.2122,57.035,1.5327,-0.2099,57.0708,1.6085,-0.2722,57.0491,1.6005,-0.2588,57.1136,1.5784,-0.2698,56.8532,1.5892,-0.2107,56.9522,2.2259,-0.2268,56.9664,2.2687,-0.2106,56.9689,2.2613,-0.2165,56.9516,2.2274,-0.2199,57.1616,2.2246,-0.2029,57.1692,2.0885,0.0,57.7563,2.3396,-0.347,56.9049,1.5984,-0.2904,56.8794,1.5526,-0.3082,56.8133,1.5549,-0.3052,56.8043,1.5377,-0.3015,56.7962,1.5398,-0.3133,56.778,1.5777,-0.3184,56.7762,1.5822,-0.3169,56.7752,1.581,-0.3996,56.8421,1.6534,-0.3961,56.8403,1.6509,-0.3955,56.8382,1.648,-0.3986,56.8354,1.6568,-0.3924,56.8343,1.6516,-0.1698,56.7733,1.5933,-0.2477,56.9695,1.7096,-0.2525,56.9575,1.7152,-0.2915,56.8943,1.6248,-0.2658,56.9525,1.674,-0.2665,56.9511,1.6714,-0.2622,56.9482,1.6695,-0.2599,56.9431,1.6788,-0.2569,56.9494,1.6995,-0.2644,56.9355,1.6593,-0.2658,56.8629,1.5923,-0.2717,56.8651,1.6003,-0.2768,56.8595,1.6024,-0.1023,57.1104,2.2161,-0.1435,57.0079,1.7316,-0.1101,56.9414,1.7653,-0.1389,56.7961,1.6392,-0.2064,56.9429,1.5869,-0.1305,57.2497,1.8585,-0.0837,56.8038,1.9982,-0.0864,56.9042,2.327,-0.1485,56.8642,1.7025,-0.1308,57.0308,1.6887,-0.1193,57.197,2.0112,-0.1249,57.2071,2.0374,-0.1722,56.9088,1.6313,-0.0955,57.0432,1.7724,-0.1105,56.9437,1.689,-0.1545,56.919,1.6329,-0.1928,56.9692,1.5724,-0.1967,56.9628,1.5711,-0.1349,57.252,1.9257,-0.1396,56.9237,1.619,-0.2448,56.7785,1.5258,-0.1563,56.9533,1.5919,-0.1093,56.9495,1.6884,0.0,56.65,2.0996,-0.0763,57.2998,1.8483,-0.0577,57.2392,1.6602,-0.0001,57.3456,2.567,0.0,57.4935,2.5317,-0.0003,57.2843,2.5621,-0.0132,56.6661,2.1898,-0.0171,56.6766,2.1831,0.0,56.6784,2.2949,0.0,57.6669,2.1088,-0.031,57.0328,2.3015,-0.0278,57.0058,2.2678,-0.0297,56.9576,2.0996,-0.0352,57.116,1.9857,-0.0284,56.9399,2.0327,-0.038,57.136,2.0351,0.0,57.0178,2.4949,0.0,56.7079,2.3959,0.0,56.7206,2.4223,-0.0333,57.07,2.3271,-0.0907,57.3488,2.0163,-0.0383,57.1596,2.0868,-0.0213,56.9011,1.9247,-0.0256,56.9193,1.9746,-0.0342,56.737,2.172,-0.03,56.7075,2.2365,-0.0001,57.3554,2.5678,-0.0926,57.0775,1.8563,-0.0904,57.1006,1.9068,-0.0838,57.0087,1.873,-0.1095,56.9803,1.6812,-0.124,56.9459,1.6359,-0.1022,56.9533,1.7352,-0.1062,56.948,1.7069,-0.0847,57.0031,1.8742,-0.1215,57.0776,1.755,-0.1186,57.1744,1.9504,-0.2314,56.9703,1.6977,-0.24,56.9672,1.6828,-0.2093,56.9574,1.6843,-0.1054,57.2997,1.8484,-0.0982,57.1555,1.8904,-0.1193,57.2926,1.9393,-0.1254,57.2533,1.9278,-0.127,57.1843,1.7194,-0.095,57.0595,2.2719,-0.1023,56.8618,1.9086,-0.1367,56.9137,1.8906,-0.114,56.9331,1.7444,-0.0964,56.9786,1.8777,-0.0867,56.8298,2.1878,-0.1028,56.7557,2.2089,-0.0873,56.8409,2.2409,-0.0814,56.8652,2.2958,-0.0768,56.944,2.2704,-0.1001,57.1463,1.8395,-0.1048,57.305,1.7989,0.0,57.7462,2.1639,0.0,57.7464,2.1225,-0.1122,57.1804,2.2342,-0.0803,57.292,1.9374,-0.2771,56.8549,1.5992,-0.2756,56.8544,1.597,-0.2719,56.8545,1.5925,-0.2732,56.8535,1.5934,-0.2264,56.8844,1.5823,-0.2208,56.8975,1.5787,-0.2623,56.9316,1.6682,-0.2632,56.9305,1.6643,-0.2665,56.9358,1.671,-0.2643,56.9446,1.6662,-0.2631,56.9448,1.6651,-0.1791,56.7924,1.5966,-0.1484,56.8131,1.6396,-0.2008,56.9119,1.6197,-0.3111,56.8943,1.6375,-0.3399,56.8771,1.6413,-0.3096,56.8915,1.6356,-0.3409,56.8789,1.6425,-0.339,56.8742,1.6443,-0.3093,56.8896,1.6426,-0.3081,56.8878,1.6398,-0.3397,56.8753,1.646,-0.3122,56.8961,1.6403,-0.3416,56.88,1.6443,-0.298,56.8985,1.6344,-0.297,56.8944,1.6319,-0.2927,56.8927,1.6412,-0.2927,56.8897,1.6374,-0.2751,56.9416,1.6764,-0.267,56.9453,1.6673,-0.2701,56.9541,1.6687,-0.2807,56.9579,1.6738,-0.2835,56.9598,1.6773,-0.2742,56.9604,1.6787,-0.2799,56.9621,1.6809,-0.2954,56.9005,1.6441,-0.2937,56.8968,1.6438,-0.2081,56.9297,1.7034,-0.2216,56.9372,1.7119,-0.1975,56.9288,1.6962,-0.2285,56.9315,1.6334,-0.2336,56.967,1.7161,-0.2208,56.9556,1.7173,-0.2374,56.9596,1.72,-0.2195,56.958,1.716,-0.1947,56.7588,1.5707,-0.2663,56.8156,1.5627,-0.2731,56.8153,1.5601,-0.3935,56.8337,1.6521,-0.3934,56.8333,1.6522,-0.3987,56.8352,1.6571,-0.3852,56.8506,1.6456,-0.3388,56.8742,1.6425,-0.3391,56.8753,1.6413,-0.3847,56.8496,1.6467,-0.406,56.8436,1.6653,-0.3969,56.8401,1.653,-0.3928,56.8345,1.6516,-0.3957,56.836,1.6487,-0.3946,56.8368,1.6486,-0.3988,56.8367,1.6517,-0.3986,56.8388,1.6487,-0.3973,56.8359,1.6499,-0.3847,56.8527,1.6506,-0.3852,56.8544,1.6505,-0.3858,56.8524,1.6454,-0.3862,56.8542,1.6463,-0.3979,56.8433,1.6451,-0.3166,56.7792,1.5821,-0.3168,56.7788,1.5818,-0.3138,56.7753,1.5771,-0.3129,56.7752,1.5781,-0.316,56.7749,1.5783,-0.3141,56.7785,1.5784,-0.3156,56.7789,1.5795,-0.3182,56.7782,1.5828,-0.3145,56.7788,1.5775,-0.3126,56.7766,1.5768,-0.3128,56.776,1.5768,-0.319,56.7767,1.5809,-0.3179,56.7754,1.5798,-0.3134,56.7907,1.5312,-0.3059,56.7979,1.541,-0.3064,56.8009,1.5274,-0.3006,56.7907,1.5335,-0.3021,56.8033,1.5283,-0.305,56.7899,1.5319,-0.3036,56.8094,1.5289,-0.3085,56.8084,1.5282,-0.317,56.8057,1.5294,-0.2985,56.8164,1.5494,-0.3011,56.8097,1.5382,-0.2055,56.8778,1.5705,-0.1973,56.8874,1.5502,-0.2011,56.8718,1.5526,-0.2016,56.8917,1.5678,-0.2891,56.8325,1.563,-0.2845,56.8718,1.5965,-0.3098,56.8288,1.5756,-0.2697,56.8874,1.553,-0.2738,56.8591,1.5476,-0.1798,57.1796,2.13,-0.2147,57.1686,2.0926,-0.1772,57.1762,2.1163,-0.1811,57.1724,2.1025,-0.1969,57.1297,2.0789,-0.2028,57.168,2.089,-0.2256,57.1266,2.0715,-0.1904,57.1694,2.0927,-0.1941,57.1584,2.1966,-0.1747,57.1521,2.1626,-0.2525,57.128,2.0833,-0.2696,57.1343,2.1172,-0.2521,56.993,2.2784,-0.2858,57.029,2.2452,-0.274,57.036,2.3095,-0.2604,56.9877,2.2374,-0.221,56.9502,2.2233,-0.239,56.9624,2.2572,-0.2811,57.1232,2.2592,-0.2603,57.1057,2.3172,-0.2869,57.097,2.2915,-0.257,57.1309,2.2834,-0.2183,57.0506,2.3089,-0.2359,56.9987,2.2939,-0.251,57.0442,2.3319,-0.2139,57.0029,2.2807};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=4 */
		private double[] getethmoid_Coord_6_109_point_4()
		{
			double[] value = {-0.205,56.9516,2.2195,-0.194,56.9681,2.2403,-0.2219,57.1104,2.2938,-0.1874,57.1286,2.224,-0.1818,57.1059,2.2423,-0.2218,57.1334,2.266,-0.1555,57.0402,2.2043,-0.1903,57.0021,2.2482,-0.1818,57.049,2.258,-0.1733,56.9959,2.2104,-0.2002,56.9479,2.1999,-0.1823,56.9637,2.2135,-0.1787,56.958,2.1862,-0.2012,56.95,2.21,-0.1539,57.0965,2.1888,-0.1533,57.1108,2.1375,-0.1438,57.0856,2.143,-0.1624,57.1205,2.178,-0.1568,57.0192,2.117,-0.1672,56.9882,2.1745,-0.1462,57.0299,2.1573,-0.1746,56.9806,2.1447,-0.1982,56.9483,2.1509,-0.2024,56.9459,2.1917,-0.1844,56.9524,2.1637,-0.2071,56.9445,2.1874,-0.1549,57.0745,2.1019,-0.1895,57.0929,2.0744,-0.1844,57.0656,2.0721,-0.1632,57.1009,2.101,-0.2218,57.0068,2.0851,-0.1936,56.975,2.1268,-0.1844,57.0106,2.0898,-0.2194,56.9729,2.1266,-0.2185,56.9448,2.1943,-0.2164,56.9468,2.1517,-0.2328,56.9487,2.1676,-0.213,56.9441,2.1883,-0.2251,57.0892,2.066,-0.2637,57.064,2.0845,-0.2242,57.0614,2.0633,-0.2603,57.0913,2.0834,-0.258,56.9818,2.1869,-0.2587,57.0098,2.1102,-0.2826,57.0196,2.1667,-0.2435,56.9754,2.1473,-0.2231,56.9484,2.2146,-0.243,56.9533,2.1957,-0.2451,56.9581,2.2295,-0.2221,56.9464,2.2039,-0.2839,57.0995,2.13,-0.2986,57.0869,2.2212,-0.2917,57.0736,2.1396,-0.2903,57.1123,2.1986,-0.2363,57.0977,1.6116,-0.2354,57.1142,1.6158,-0.2219,57.0571,1.5224,-0.2191,57.0469,1.5184,-0.2272,57.0851,1.5425,-0.237,57.0754,1.5295,-0.2205,57.0747,1.5341,-0.2366,57.0887,1.5439,-0.2219,57.1194,1.6,-0.2477,57.1183,1.5811,-0.2455,57.1209,1.5857,-0.2418,57.121,1.5871,-0.2374,57.0696,1.6003,-0.2338,57.1144,1.5796,-0.2374,57.1187,1.585,-0.2279,57.0304,1.5123,-0.249,57.0106,1.5127,-0.2597,56.9724,1.5356,-0.2343,57.1029,1.5608,-0.238,57.1028,1.5595,-0.278,56.9791,1.5457,-0.2685,57.0169,1.5233,-0.245,57.0904,1.5456,-0.2422,57.105,1.5619,-0.2777,57.0488,1.5397,-0.2621,57.0372,1.5168,-0.2851,57.0285,1.5477,-0.2936,56.9896,1.5686,-0.2458,57.1091,1.5673,-0.2533,57.101,1.5599,-0.2478,57.1139,1.5743,-0.2436,56.9564,1.5267,-0.2392,56.9656,1.5234,-0.2004,56.9435,1.5301,-0.1949,56.9421,1.5426,-0.1994,56.9659,1.5278,-0.2265,56.9504,1.5583,-0.2221,56.9661,1.5538,-0.2335,56.929,1.5681,-0.2137,56.9224,1.5713,-0.2646,56.8248,1.576,-0.1995,56.918,1.5279,-0.1914,56.9151,1.5457,-0.2079,56.8866,1.5301,-0.2182,56.9242,1.5145,-0.2284,56.8917,1.5137,-0.2488,56.9324,1.5136,-0.2601,56.9029,1.511,-0.2667,56.9375,1.5236,-0.278,56.9105,1.5215,-0.3406,56.877,1.6471,-0.3414,56.8788,1.6471,-0.2818,56.9681,1.6817,-0.3433,57.0603,1.6993,-0.2445,57.1765,1.6413,-0.2026,57.1693,1.649,-0.1852,57.0455,1.6905,-0.1774,57.077,1.6842,-0.3149,56.8782,1.8725,-0.3164,56.87,1.8702,-0.3162,56.8695,1.8736,-0.3151,56.8776,1.8785,-0.3148,56.8781,1.8751,-0.3167,56.8691,1.8773,-0.312,56.8997,1.8121,-0.2753,56.9845,1.8251,-0.285,56.9842,1.8156,-0.2719,56.9921,1.8231,-0.2768,56.9935,1.825,-0.2656,57.0101,1.8171,-0.2824,56.9921,1.8141,-0.2717,57.0085,1.8052,-0.2741,57.0103,1.81,-0.2795,56.9903,1.8081,-0.2612,57.0059,1.8038,-0.2658,56.9888,1.8124,-0.2607,57.007,1.8086,-0.2664,56.9877,1.8065,-0.2686,57.0069,1.8012,-0.2762,57.0219,1.8167,-0.2745,57.0116,1.8145,-0.2498,57.0206,1.8057,-0.2622,57.0084,1.8134,-0.2526,57.0233,1.8142,-0.2617,56.9341,1.8459,-0.2842,56.9455,1.7676,-0.2684,56.9412,1.7731,-0.2569,56.943,1.8367,-0.2563,56.9435,1.7965,-0.2561,56.9499,1.8315,-0.2757,56.9885,1.8033,-0.2808,56.9941,1.8237,-0.2697,56.9814,1.8084,-0.3193,56.8607,1.8742,-0.3131,56.8598,1.8683,-0.3198,56.861,1.8712,-0.3239,56.8595,1.8934,-0.3309,56.8625,1.877,-0.3267,56.8615,1.881,-0.3331,56.8621,1.8867,-0.3258,56.8617,1.8773,-0.3198,56.8604,1.8777,-0.324,56.8618,1.8732,-0.3204,56.8697,1.8723,-0.3095,56.8872,1.8689,-0.2795,56.9051,1.8241,-0.2637,57.201,1.6792,-0.2022,57.1808,1.685,-0.1511,57.2505,1.7672,-0.1491,57.2394,1.7363,-0.1426,57.2312,1.7418,-0.1564,57.256,1.7567,-0.2674,57.2836,1.7721,-0.2834,57.2754,1.7415,-0.2929,57.2741,1.7505,-0.2001,57.2541,1.7334,-0.1995,57.2417,1.7198,-0.1976,57.2479,1.7268,-0.2053,57.237,1.7144,-0.2062,57.2585,1.7379,-0.2278,57.2424,1.7178,-0.2283,57.255,1.7314,-0.2303,57.2489,1.7244,-0.3189,57.2038,1.7492,-0.3306,57.1926,1.8048,-0.3414,57.1728,1.7654,-0.31,57.2246,1.7813,-0.2806,57.0552,1.847,-0.2935,57.2023,1.8341,-0.2792,57.2332,1.8054,-0.2615,57.0909,1.868,-0.2651,57.0591,1.8509,-0.2251,57.1911,1.8513,-0.2186,57.2211,1.821,-0.218,57.1195,1.8591,-0.2415,57.1611,1.8652,-0.1976,57.1516,1.8542,-0.256,57.1268,1.8708,-0.1759,57.2682,1.771,-0.1908,57.1052,1.8329,-0.168,57.1361,1.8294,-0.1635,57.1195,1.7969,-0.1868,57.0899,1.8002,-0.2193,57.04,1.8025,-0.1979,57.0603,1.8012,-0.2228,57.0317,1.7789,-0.2315,57.0245,1.7633,-0.1734,57.2046,1.6965,-0.2747,57.1522,1.699,-0.3273,57.1451,1.7276,-0.3074,57.1772,1.718,-0.3327,56.8616,1.894,-0.3295,56.8606,1.897,-0.3476,56.801,2.0271,-0.3476,56.8013,2.0274,-0.3504,56.8016,2.0274,-0.3504,56.8019,2.0277,-0.4247,56.9195,1.8395,-0.4257,56.919,1.8393,-0.4276,56.919,1.8407,-0.4271,56.9191,1.8402,-0.4273,56.9241,1.8414,-0.4269,56.9247,1.8428,-0.4278,56.9223,1.8418,-0.3864,57.0439,1.7981,-0.3736,57.0432,1.8031,-0.377,57.0463,1.8008,-0.377,57.0479,1.8154,-0.3773,57.0515,1.8113,-0.3681,57.0395,1.8216,-0.365,57.04,1.8197,-0.369,57.053,1.8068,-0.3656,57.0499,1.809,-0.345,57.1493,1.8385,-0.3316,57.1047,1.9196,-0.3202,57.0661,1.9022,-0.338,57.0631,1.9122,-0.3173,57.1044,1.9106,-0.382,57.1304,1.8449,-0.371,57.1359,1.8781,-0.3824,57.1099,1.8678,-0.38,57.0717,1.8153,-0.3757,57.054,1.8081,-0.3753,57.0786,1.8058,-0.3434,57.197,1.8792,-0.3533,57.1888,1.8497,-0.3406,57.1981,1.8666,-0.3584,57.1873,1.8692,-0.3851,57.0905,1.8521,-0.3834,57.0893,1.8191,-0.3864,57.1102,1.8292,-0.3824,57.0732,1.8377,-0.3409,57.1933,1.8949,-0.3549,57.1818,1.8934,-0.3762,57.0702,1.8743,-0.3764,57.0571,1.8561,-0.344,57.1739,1.9161,-0.3344,57.1885,1.91,-0.3633,57.0552,1.8903,-0.3656,57.0448,1.8685,-0.3274,57.1843,1.9206,-0.3336,57.1676,1.9324,-0.3491,57.0382,1.8695,-0.3431,57.047,1.8926,-0.3189,57.1807,1.923,-0.3181,57.1611,1.9356,-0.3354,57.0405,1.8608,-0.3263,57.0499,1.8824,-0.3115,57.1788,1.9169,-0.3062,57.1582,1.926,-0.3281,57.0511,1.8459,-0.3173,57.0629,1.864,-0.3084,57.1797,1.9041,-0.3012,57.1596,1.9064,-0.3202,57.0821,1.8447,-0.3107,57.1833,1.8883,-0.3389,57.1011,1.8329,-0.3494,57.1393,1.8347,-0.3727,57.0545,1.8064,-0.3342,57.1968,1.8608,-0.3259,57.1933,1.8634,-0.3793,57.1229,1.8132,-0.3779,57.1001,1.8055,-0.2477,57.156,1.9145,-0.2481,57.1532,1.9178,-0.2436,57.1579,1.9174,-0.2428,57.1649,1.9254,-0.2427,57.163,1.9264,-0.2541,57.1567,1.9129,-0.2478,57.1579,1.9136,-0.2539,57.1548,1.9138,-0.1625,57.2417,1.8617,-0.1634,57.271,1.8478,-0.2467,57.3374,1.8514,-0.2598,57.3317,1.8676,-0.2645,57.3255,1.8533,-0.2451,57.3395,1.8564,-0.2024,57.304,1.9255,-0.2049,57.2736,1.9384,-0.1719,57.2744,1.9336,-0.2293,57.3406,1.8582,-0.2323,57.3419,1.8612,-0.1722,57.3045,1.922,-0.165,57.2857,1.8796,-0.1646,57.2552,1.8914,-0.2301,57.3363,1.8483,-0.2284,57.3386,1.8535,-0.2499,57.1962,1.8489,-0.2384,57.3336,1.8423,-0.2337,57.3345,1.8442,-0.2429,57.3338,1.8431,-0.2537,57.3114,1.8197,-0.2648,57.1581,1.9174,-0.3462,56.821,2.032,-0.3442,56.8206,2.0352,-0.3354,56.8117,2.0323,-0.3116,56.8875,2.0057,-0.3096,56.8875,2.0086,-0.2981,56.8803,2.0034,-0.2995,56.8795,1.9986,-0.302,56.8798,1.9959,-0.3121,56.886,2.0007,-0.3063,56.8864,2.01,-0.3103,57.0073,1.8648,-0.3075,56.9914,1.8757,-0.2979,56.9992,1.8648,-0.3124,56.997,1.874,-0.3135,57.0027,1.8701,-0.2771,57.1005,2.0472,-0.3198,57.1104,2.0364,-0.3308,57.0425,2.0171,-0.1918,57.0478,1.9493,-0.2646,57.2195,1.9792,-0.2555,57.2199,1.9807,-0.3591,57.0688,1.9921,-0.3627,57.0405,1.97,-0.3374,57.0031,1.9036,-0.3548,57.0186,1.9372,-0.3233,56.983,1.9098,-0.2729,57.2129,1.9871,-0.2221,57.0056,1.8854,-0.2003,57.0209,1.9193,-0.2522,57.2038,1.9668,-0.3038,57.0096,1.8596,-0.2894,57.0362,1.853,-0.3126,57.039,1.8632,-0.2957,57.0091,1.8558,-0.3313,57.0331,1.877,-0.428,56.9192,1.8447,-0.2571,56.8618,2.4634,-0.1625,57.1292,2.6325,-0.1398,57.2264,2.6454,-0.3849,56.7523,1.6929,-0.2975,56.612,1.473,-0.3103,56.6472,1.5229,-0.315,56.687,1.5736,-0.2118,57.4271,2.0202,-0.1986,57.3806,1.9465,-0.1136,56.6225,2.0598,-0.1726,56.591,1.5863,-0.1749,56.5888,1.5872,-0.1966,56.5756,1.5388,-0.1979,56.5745,1.5246,-0.1943,56.5776,1.5376,-0.3117,56.6408,1.5095,-0.3121,56.6434,1.5078,-0.3741,56.7415,1.6569,-0.3674,56.738,1.6473,-0.4005,56.8123,2.0475,-0.2685,56.8557,2.4584,-0.314,56.6491,1.5209,-0.3086,56.639,1.5111,-0.1997,56.6092,1.5049,-0.2795,56.6351,1.4583,-0.2622,56.6405,1.4559,-0.2186,56.5693,1.4735,-0.2243,56.568,1.462,-0.3062,57.1502,2.4846,-0.1078,57.6216,2.3608,-0.1449,56.7318,1.7339,-0.1903,56.7311,2.0507,-0.2551,57.2519,2.4656,-0.2516,57.2392,2.4753,-0.2736,57.2176,2.4469,-0.256,57.2498,2.4239,-0.2448,57.2298,2.4586,-0.1987,57.267,2.5554,-0.2035,57.2585,2.5493,-0.1997,57.2677,2.5516,-0.2001,57.2683,2.5373,-0.1972,57.2767,2.5474,-0.304,57.144,2.4834,-0.3068,57.1475,2.4858,-0.1293,56.8177,2.3655,-0.2197,56.9064,2.368,-0.213,56.6308,1.4806,-0.2641,56.6634,1.4728,-0.2205,56.6093,1.4596,-0.3787,56.7932,2.1611,-0.2676,56.8599,2.4625,-0.3635,56.7373,1.6586,-0.3882,56.7535,1.6916,-0.3452,57.3649,2.0018,-0.2081,57.234,2.2834,-0.2354,57.2287,2.4514,-0.2458,57.2418,2.4518,-0.1891,57.3502,2.2918,-0.1861,57.3553,2.2829,-0.2102,57.3315,2.2959,-0.2178,57.3294,2.2839,-0.1906,57.3596,2.2639,-0.1944,57.3438,2.2984,-0.2214,57.3325,2.2692,-0.2022,57.383,2.2794,-0.2614,57.4598,2.1809,-0.2773,57.4408,2.1589,-0.2073,57.4537,2.191,-0.288,57.4272,2.2799,-0.2147,57.3983,2.1861,-0.2346,57.4598,2.1875,-0.3587,56.9352,2.2468,-0.3472,56.9777,1.6933,-0.3551,56.9891,1.6856,-0.3428,56.988,1.6879,-0.3361,56.9747,1.6759,-0.3328,56.9811,1.683,-0.3632,56.9769,1.6714,-0.3579,56.9894,1.6704,-0.3503,56.9963,1.674,-0.3612,56.9842,1.679,-0.3332,56.9853,1.6871,-0.3271,56.9916,1.6746,-0.3513,56.9891,1.6544,-0.3427,56.9961,1.6575,-0.3224,56.9905,1.6679,-0.3463,56.9833,1.6438,-0.3352,56.9878,1.6437,-0.3227,56.9854,1.6488,-0.341,56.9543,1.6631,-0.3282,56.9385,1.6028,-0.308,56.9437,1.5938,-0.3876,56.9154,1.6662,-0.3609,56.9074,1.6563,-0.3633,56.8993,1.6642,-0.3977,56.9196,1.6925,-0.4069,56.9409,1.7178,-0.3831,57.0359,1.7911,-0.3989,56.9417,1.7374,-0.3995,56.9312,1.7243,-0.3801,56.9492,1.7803,-0.4,56.9616,1.7753,-0.3804,56.9316,1.7403,-0.3434,56.9471,1.7675,-0.3304,56.9639,1.8034,-0.3282,56.9372,1.7147,-0.3529,56.9301,1.7312,-0.3153,57.0407,1.8204,-0.2927,57.0264,1.8134,-0.2717,57.0219,1.7687,-0.2881,57.0415,1.7576,-0.3642,56.9517,1.6914,-0.3415,56.9489,1.6846,-0.3178,57.0593,1.7557,-0.3613,56.9704,1.6985,-0.2242,57.1802,1.9321,-0.2212,57.1739,1.9171,-0.2234,57.1449,2.0453,-0.2467,57.2093,1.9815,-0.2456,57.2142,1.9937,-0.3629,57.0447,1.8056,-0.3802,57.0039,1.725,-0.3561,57.0091,1.7159,-0.3353,56.9665,1.691,-0.3112,56.956,1.6834,-0.2731,57.0042,1.7884,-0.2919,56.99,1.8121,-0.3657,56.903,1.6896,-0.3809,56.9219,1.7261,-0.3585,56.9208,1.7189,-0.3804,56.9034,1.6932,-0.3925,56.9106,1.694,-0.3907,56.9086,1.6733,-0.3138,56.98,1.655,-0.3242,56.9939,1.6667,-0.3293,56.9944,1.6755,-0.3616,56.9798,1.6664,-0.3354,56.9871,1.6884,-0.1568,56.6679,1.8453,-0.1046,56.7148,2.2171,-0.1974,57.2696,2.5341,-0.1802,57.4255,2.0952,-0.18,57.4197,2.094,-0.2181,57.3409,2.258,-0.2023,57.3373,2.2992,-0.1867,57.3585,2.273,-0.2563,57.2602,2.4497,-0.2471,57.2549,2.4397,-0.2891,57.1844,2.4685,-0.2721,57.4302,1.9388,-0.2007,56.5766,1.5403,-0.2052,56.7879,2.0825,-0.2173,56.7108,2.2022,-0.2152,56.6987,2.1793,-0.1278,56.8668,2.3938,-0.2789,56.6691,1.4816,-0.1033,56.7078,2.1593,-0.101,56.7424,2.0827,-0.1035,56.7497,2.1505,-0.2587,57.2645,2.4549,-0.24,57.5503,2.3285,-0.3615,56.8281,1.9279,-0.3572,56.7341,1.6496,-0.3182,56.6886,1.5722,-0.1166,56.6187,1.9918,-0.1606,57.134,2.6352,-0.4278,56.9184,1.8405,-0.4283,56.9188,1.8431,-0.3403,57.02,1.8916,-0.3172,57.074,1.8758,-0.2882,57.0062,1.8544,-0.2676,57.0266,1.8492,-0.2534,57.013,1.8533,-0.2505,56.9975,1.8646,-0.2598,56.9806,1.8808,-0.2084,57.0265,1.9826,-0.292,56.9878,1.8706,-0.3,56.9878,1.8744,-0.2854,56.9909,1.8651,-0.1972,57.0944,2.0065,-0.2317,57.0945,2.0348,-0.3369,56.8106,2.0271,-0.3469,56.8191,2.0265,-0.3391,56.8113,2.0244,-0.2628,57.3179,1.8356,-0.2604,57.1568,1.9143,-0.2437,57.1598,1.9164,-0.2493,57.3367,1.8785,-0.2423,57.162,1.9202,-0.2421,57.1601,1.9212,-0.3622,57.1462,1.8261,-0.3,57.1361,1.9048,-0.3417,57.046,1.8313,-0.3054,57.1344,1.9292,-0.3464,57.0391,1.8409,-0.3205,57.1381,1.941,-0.3554,57.0376,1.8466,-0.3404,57.1462,1.9374,-0.3662,57.0419,1.8462,-0.3549,57.1547,1.9178,-0.3745,57.0503,1.839,-0.3663,57.1633,1.8895,-0.3786,57.0609,1.8273,-0.3723,57.1428,1.8289,-0.3595,57.0718,1.9085,-0.3496,57.1119,1.9163,-0.3577,57.1555,1.8312,-0.3636,57.046,1.8125,-0.3718,57.041,1.8214,-0.4281,56.9192,1.843,-0.427,56.9186,1.8398,-0.3511,56.7988,2.0425,-0.3509,56.7992,2.042,-0.326,56.8627,1.866,-0.2908,57.2261,1.696,-0.3006,57.2528,1.7227,-0.1713,57.1889,1.6937,-0.2143,57.1392,1.7076,-0.2511,57.0179,1.7975,-0.2262,57.0485,1.8262,-0.1811,57.1829,1.845,-0.2437,57.0561,1.8442,-0.2591,57.0254,1.8208,-0.3017,57.1687,1.8546,-0.3409,57.1574,1.8238,-0.3523,57.1372,1.7819,-0.2758,57.0187,1.8093,-0.3453,57.1006,1.799,-0.2899,57.2579,1.7198,-0.1743,57.2639,1.7843,-0.3112,56.886,1.8809,-0.2688,56.9872,1.8022,-0.2721,56.9809,1.8043,-0.337,56.9622,1.9846,-0.2828,56.9935,1.8198,-0.2677,56.9903,1.8184,-0.244,57.14,1.6273,-0.2941,57.0258,1.7228,-0.2826,56.9621,1.681,-0.3843,56.8509,1.6498,-0.2316,56.9523,1.5199,-0.2133,56.9469,1.521,-0.1988,56.9431,1.554,-0.1966,56.9169,1.5616,-0.2105,56.9464,1.5607,-0.234,56.8719,1.5827,-0.2112,56.9651,1.5187,-0.2642,56.9104,1.591,-0.2439,57.0312,1.5068,-0.2078,57.0447,1.6137,-0.2662,57.0924,1.5578,-0.2188,57.1042,1.5762,-0.2527,57.0828,1.5398,-0.3422,57.36,2.0018,-0.2734,57.1441,2.1667,-0.1755,57.1362,2.1005,-0.1674,57.1443,2.1303,-0.2649,57.1539,2.2118,-0.3189,56.778,1.5813,-0.2594,56.6732,1.4822,-0.3177,56.7789,1.5808,-0.3181,56.778,1.5823,-0.386,56.8291,1.645,-0.3862,56.8553,1.6478,-0.3945,56.8381,1.6495,-0.3953,56.8393,1.6512,-0.3959,56.8394,1.6557,-0.276,56.8213,1.563,-0.298,56.9015,1.6383,-0.2328,56.9484,1.7184,-0.2192,56.9516,1.7168,-0.2106,56.9447,1.7117,-0.2056,56.9466,1.7079,-0.2069,56.9443,1.7091,-0.2072,56.9506,1.7084,-0.2153,56.9474,1.7146,-0.211,56.9549,1.7105,-0.2158,56.9578,1.7134,-0.2612,56.9347,1.6726,-0.3119,56.8948,1.6445,-0.297,56.9023,1.642,-0.3125,56.8962,1.643,-0.2937,56.8889,1.6337,-0.3078,56.8875,1.637,-0.3418,56.8799,1.646,-0.2137,56.8297,1.6516,-0.2636,56.9325,1.6628,0.0,57.7558,2.2055,-0.1047,57.1199,2.2531,-0.1261,57.3488,2.0169,-0.1145,57.1524,1.885,-0.1198,57.3143,1.9693,-0.1112,57.1273,1.8308,-0.0889,56.9825,1.7863,-0.0283,56.701,2.1794,-0.033,56.7443,2.2306,-0.0289,56.9703,2.1561,-0.0883,57.3144,1.9696,-0.0318,56.9833,2.2132,0.0,57.7173,2.0964,-0.0001,57.1794,2.553,-0.0965,56.9667,1.7586,-0.223,56.9669,1.7084,-0.2093,56.9586,1.7,0.0,57.7656,2.247,-0.3083,56.8889,1.6354,-0.3107,56.8923,1.6444,-0.2954,56.8907,1.6316,-0.2841,56.9612,1.6795,-0.2687,56.823,1.5742,-0.2719,56.8232,1.5735,-0.2735,56.8257,1.5747,-0.3843,56.8497,1.6483,-0.3858,56.8554,1.6494,-0.3143,56.7973,1.5283,-0.3063,56.8218,1.5338,-0.2998,56.8789,1.5532,-0.2375,57.0474,1.5112,-0.2345,57.0573,1.518,-0.2211,57.0913,1.5549,-0.228,56.9649,1.5172,-0.2124,56.8681,1.5319,-0.2935,57.1823,1.6527,-0.2475,57.1599,1.6298,-0.2526,57.1709,1.6331,-0.2722,56.9875,1.801,-0.2753,56.981,1.8032,-0.3143,56.8591,1.878,-0.2818,57.2367,1.6987,-0.1556,57.221,1.7146,-0.1502,57.2085,1.7148,-0.2063,57.2699,1.789,-0.3017,57.1306,1.8658,-0.335,57.1189,1.8373,-0.2298,57.0868,1.8603,-0.1826,57.2143,1.8158,-0.2064,57.0749,1.8361,-0.3373,57.1136,1.7419,-0.3807,57.0478,1.8004,-0.3751,57.044,1.8191,-0.3633,57.0424,1.8164,-0.3112,57.0808,1.8827,-0.3105,57.1111,1.8919,-0.3638,57.1233,1.901,-0.3741,57.0881,1.8916,-0.3195,57.1932,1.9026,-0.3193,57.1948,1.8927,-0.3186,57.1936,1.8982,-0.3216,57.1937,1.9046,-0.3215,57.1965,1.8875,-0.3243,57.1948,1.9037,-0.3245,57.1982,1.884,-0.327,57.1964,1.9001,-0.3274,57.1994,1.8831,-0.3291,57.198,1.8949,-0.3294,57.1998,1.8851,-0.33,57.1993,1.8894,-0.3177,57.1885,1.8735,-0.2547,57.1524,1.9167,-0.2459,57.3353,1.8465,-0.2415,57.3413,1.8602,-0.2368,57.3421,1.862,-0.3414,56.8188,2.0365,-0.2613,57.2211,1.9842,-0.2817,57.0697,1.8634,-0.259,56.8884,2.4912,-0.2506,57.4347,1.9584,-0.1946,57.4265,2.0634,-0.1147,56.6202,2.0324,-0.3142,56.6512,1.5187,-0.1948,56.7472,2.0673,-0.2525,57.2472,2.4601,-0.1945,57.2812,2.5489,-0.2767,57.3126,2.3865,-0.1942,57.4213,2.0628,-0.3371,56.9958,1.6753,-0.3311,56.9955,1.6634,-0.3153,56.9831,1.652,-0.375,56.9088,1.6589,-0.3781,56.9003,1.6674,-0.2832,57.0016,1.8558,-0.2822,56.9961,1.8597,-0.2321,57.1053,1.5654,-0.232,57.1094,1.5722};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_110_vector_1()
		{
			double[] value = {-1.0,-0.0065,0.0016,-0.9999,-0.0124,-0.0008,-0.9997,-0.0213,0.0072,-0.9997,-0.0186,0.0163,-0.9997,-0.0229,-0.011,-0.9996,0.0018,0.0277,-0.9996,0.0152,0.0232,-0.9996,-0.0103,-0.026,-0.9996,-0.0283,-0.0018,-0.9995,0.0066,0.0294,-0.9995,-0.0216,0.0211,-0.9994,-0.022,-0.0279,-0.9993,0.0324,-0.0166,-0.9993,0.0369,0.0101,-0.9991,-0.042,0.0067,-0.9989,0.0008,0.0471,-0.9988,-0.0092,0.0488,-0.9987,0.0202,-0.0462,-0.9986,-0.0145,0.0501,-0.9986,0.0261,-0.0465,-0.9985,-0.0048,-0.0537,-0.9985,-0.0215,0.0509,-0.9984,0.0455,-0.0322,-0.9984,-0.0478,-0.0297,-0.9984,-0.0403,-0.0395,-0.998,-0.0626,-0.0003,-0.998,-0.0602,0.0175,-0.998,-0.0421,-0.0472,-0.9979,-0.0632,0.0154,-0.9977,0.0176,-0.0653,-0.9977,-0.0102,-0.0669,-0.9977,-0.0255,0.063,-0.9977,-0.0472,0.0496,-0.9976,-0.0395,-0.0565,-0.9974,-0.0411,0.0591,-0.9974,-0.0705,-0.0145,-0.9971,-0.0427,-0.0637,-0.9969,-0.0664,0.0433,-0.9967,0.0682,0.0442,-0.9966,0.0761,-0.0305,-0.9965,-0.0825,-0.0155,-0.9964,0.0357,0.0772,-0.9962,-0.0089,0.0864,-0.9961,-0.0272,0.0841,-0.9961,-0.0779,0.0423,-0.996,0.0542,0.0708,-0.996,-0.0229,0.0869,-0.9958,0.0581,-0.0704,-0.9954,0.0926,0.0259,-0.9953,0.0953,-0.0143,-0.9953,-0.0706,0.0658,-0.9952,0.0811,0.055,-0.9948,0.0647,0.0782,-0.9948,-0.0492,0.0891,-0.9948,0.0,-0.1021,-0.9944,-0.0017,0.1053,-0.9942,-0.1077,-0.002,-0.9941,-0.0807,0.0726,-0.994,-0.0641,0.0888,-0.9939,0.099,0.0494,-0.9938,-0.0084,-0.1105,-0.9934,-0.0554,0.1003,-0.9933,-0.0937,-0.0673,-0.9933,-0.1155,0.0,-0.9933,-0.1143,-0.0167,-0.9932,-0.0173,0.1153,-0.9929,0.1157,-0.0291,-0.9927,-0.1066,-0.0573,-0.9926,-0.0764,-0.0943,-0.9925,0.0253,0.1195,-0.9924,0.0822,0.0915,-0.9923,0.1114,0.0534,-0.9922,-0.1223,-0.023,-0.9922,-0.033,0.1206,-0.9921,-0.0605,-0.1097,-0.9921,-0.1135,-0.0535,-0.992,-0.0642,0.1088,-0.9918,-0.1086,0.0667,-0.9918,0.0118,0.127,-0.9914,-0.1091,-0.0725,-0.9914,-0.0908,0.0947,-0.9913,-0.0802,0.1047,-0.9912,0.0868,0.1004,-0.9911,0.0854,-0.1024,-0.9907,-0.1355,-0.0113,-0.9901,0.0057,-0.1405,-0.99,0.139,-0.0231,-0.99,0.0198,-0.1397,-0.9899,-0.0542,-0.1308,-0.9896,-0.1433,-0.0131,-0.9894,0.0327,0.1413,-0.9893,-0.1311,0.0642,-0.9893,-0.1283,-0.0697,-0.9893,0.1437,-0.0272,-0.9892,-0.1396,-0.0448,-0.989,-0.1448,0.0286,-0.989,0.131,0.0685,-0.9887,-0.1184,-0.0925,-0.9886,-0.0351,0.1467,-0.9875,0.0844,-0.1329,-0.9875,-0.1551,0.028,-0.9874,-0.1447,0.0635,-0.9869,0.1588,0.0279,-0.9868,0.1383,0.0838,-0.9865,-0.0606,0.1518,-0.9861,-0.1455,0.08,-0.9859,0.1659,-0.0236,-0.9855,0.0413,0.1645,-0.9851,0.1594,0.0647,-0.9848,-0.1443,0.0963,-0.9845,0.1756,-0.0025,-0.9842,0.1758,-0.0191,-0.9842,0.1681,0.056,-0.9835,0.103,0.1484,-0.9834,-0.1547,-0.0944,-0.9834,-0.1764,-0.0424,-0.9833,0.1551,0.0947,-0.9832,0.1455,0.11,-0.9831,0.1825,-0.0123,-0.9826,0.1798,-0.0471,-0.9825,0.1798,-0.0488,-0.9823,0.1371,0.1274,-0.9822,0.091,-0.1642,-0.9819,0.1818,0.0522,-0.9818,0.181,0.0573,-0.9815,-0.1306,-0.1397,-0.9813,-0.0769,0.1763,-0.9813,0.1823,0.0617,-0.981,-0.138,-0.1365,-0.981,0.0884,0.1729,-0.9808,0.1949,-0.0013,-0.9806,-0.0508,-0.1891,-0.9804,-0.1707,-0.0988,-0.9803,0.197,-0.0149,-0.9797,-0.0251,-0.1988,-0.9797,0.0155,-0.1998,-0.9797,-0.1847,-0.0778,-0.9794,0.1998,-0.0281,-0.9793,0.1928,0.061,-0.9791,0.0841,-0.1853,-0.9777,0.2094,-0.0178,-0.9777,0.1626,-0.1332,-0.9776,-0.1782,0.1117,-0.9774,-0.1997,0.0688,-0.9773,0.182,0.1081,-0.9759,-0.216,0.0316,-0.9759,0.2182,0.0079,-0.975,-0.1333,0.1779,-0.9748,-0.0179,0.2223,-0.9746,-0.1337,0.1799,-0.9742,-0.1908,0.1208,-0.9731,-0.0884,0.2129,-0.973,0.1591,-0.1672,-0.973,0.1615,-0.1651,-0.9728,0.231,-0.0155,-0.9726,0.2319,-0.0143,-0.9725,-0.2282,-0.0456,-0.9725,0.232,-0.0189,-0.9725,0.1731,-0.1558,-0.9724,-0.1916,0.1336,-0.9721,-0.0768,-0.2215,-0.9719,-0.0725,0.2238,-0.9715,-0.1082,0.2108,-0.9712,-0.0849,-0.2225,-0.9701,-0.2101,0.1216,-0.9694,0.2443,-0.0231,-0.9692,-0.2455,0.0168,-0.969,0.1557,0.1917,-0.9687,-0.0022,0.2482,-0.9686,0.0016,-0.2487,-0.9686,-0.0253,0.2475,-0.9684,0.096,0.2302,-0.9683,0.2075,0.1392,-0.9681,0.1336,0.2118,-0.9681,-0.2262,0.1082,-0.968,0.0083,0.2506,-0.968,0.137,0.2105,-0.9679,0.197,-0.156,-0.9678,-0.0207,0.2507,-0.9678,0.2375,0.0831,-0.9676,0.2305,0.1028,-0.967,-0.0382,0.2517,-0.9667,0.2426,-0.0813,-0.9664,0.1076,0.2333,-0.9663,0.2575,-0.0008,-0.9663,0.2575,0.005,-0.9662,-0.0647,-0.2494,-0.966,0.2547,0.0443,-0.9659,-0.2531,0.0539,-0.9657,0.2142,-0.1467,-0.9657,0.2343,-0.112,-0.9656,0.0683,-0.251,-0.9656,0.26,0.0096,-0.9654,0.253,-0.0633,-0.9649,-0.2333,0.1205,-0.9647,0.2536,-0.0709,-0.963,0.0363,0.2671,-0.9628,0.1184,-0.2431,-0.9621,-0.0396,0.2697,-0.9619,-0.1463,0.2311,-0.9617,0.2492,-0.1137,-0.961,-0.2684,-0.066,-0.961,-0.2731,-0.044,-0.9608,0.2703,0.0623,-0.96,0.0832,0.2673,-0.9599,0.088,0.2661,-0.9598,-0.2359,-0.1521,-0.9584,0.1259,-0.2563,-0.9578,-0.1308,0.2558,-0.9578,0.0766,0.2771,-0.9574,0.1286,0.2586,-0.9571,0.2309,-0.1751,-0.9569,0.1644,-0.2393,-0.9569,-0.2905,-0.0039,-0.9566,0.2648,-0.1216,-0.9562,-0.2145,-0.1993,-0.9561,-0.2928,-0.0092,-0.9558,0.2822,-0.0831,-0.9557,0.2584,0.1411,-0.9555,0.2054,-0.2118,-0.9545,-0.1817,0.2363,-0.9543,0.1102,-0.2777,-0.9539,0.1563,0.2562,-0.9539,-0.2722,0.1266,-0.953,0.2556,0.1629,-0.9529,-0.3029,-0.0152,-0.9528,0.3031,0.0185,-0.9525,-0.138,0.2713,-0.9524,0.3004,0.052,-0.9521,0.0255,0.3048,-0.952,-0.2479,0.1795,-0.9517,0.3025,0.0533,-0.9514,-0.2003,0.2337,-0.9513,0.2053,-0.2299,-0.9513,-0.0476,0.3046,-0.9505,0.1661,-0.2624,-0.9502,-0.2794,-0.138,-0.9501,0.0739,-0.3029,-0.9501,0.2443,0.1941,-0.9497,-0.1451,-0.2774,-0.9494,0.0092,-0.3138,-0.9492,0.0909,-0.3011,-0.9492,-0.0128,0.3143,-0.9486,0.3131,0.0458,-0.9484,0.1151,0.2956,-0.9483,-0.0084,0.3174,-0.9481,0.0317,0.3163,-0.9479,0.0955,-0.3039,-0.9478,-0.163,0.2739,-0.9477,0.1347,-0.2893,-0.9473,-0.0745,-0.3115,-0.9471,-0.0656,0.3142,-0.947,-0.0416,0.3184,-0.9465,-0.0914,0.3094,-0.9465,-0.2299,0.2263,-0.9465,-0.2518,-0.2018,-0.9463,0.3024,-0.1146,-0.9457,0.3077,0.1047,-0.9452,-0.3222,-0.0525,-0.945,0.3271,-0.0049,-0.9443,0.325,-0.0523,-0.9435,-0.3193,0.0886,-0.9435,0.3296,-0.0349,-0.9433,-0.2126,0.2548,-0.943,-0.2229,0.2471,-0.9423,0.0123,0.3346,-0.9419,-0.0306,-0.3345,-0.9418,0.2949,-0.1611,-0.9414,0.0651,-0.3309,-0.9411,0.1191,0.3164,-0.941,0.1856,0.2831,-0.9405,-0.0765,-0.331,-0.9405,-0.3182,0.1191,-0.9396,0.3217,-0.1172,-0.9394,0.2759,-0.2035,-0.9391,-0.003,0.3436,-0.9387,-0.1357,0.317,-0.9386,0.3236,0.1199,-0.9385,0.1555,-0.3081,-0.9385,0.0223,0.3446,-0.9384,-0.342,-0.05,-0.9384,0.0849,-0.335,-0.9377,0.3464,0.0254,-0.9374,0.298,0.1801,-0.9373,0.3089,0.1611,-0.9372,0.3199,-0.139,-0.9368,-0.322,0.1371,-0.9367,0.3501,-0.0088,-0.9366,-0.2261,0.2676,-0.9366,0.3486,0.0354,-0.9365,-0.0512,0.347,-0.9364,0.2784,0.2136,-0.9362,0.0004,0.3515,-0.936,-0.0772,-0.3433,-0.9359,0.2752,-0.22,-0.9358,0.2872,-0.2046,-0.935,0.1539,-0.3196,-0.9349,0.3338,0.1208,-0.9347,0.3468,-0.0784,-0.9344,0.3092,0.177,-0.9344,0.3014,0.1899,-0.9335,-0.3531,0.0627,-0.9334,0.1318,-0.3339,-0.9331,0.1192,-0.3393,-0.9328,0.3582,-0.0391,-0.9327,0.3598,0.0248,-0.9326,0.3248,-0.1575,-0.9322,0.2533,0.2585,-0.932,-0.345,-0.1111,-0.9319,0.3476,0.1035,-0.9317,-0.2415,0.2712,-0.9311,0.113,-0.3468,-0.9309,-0.3487,0.1087,-0.9307,0.1066,-0.3498,-0.9306,-0.1029,0.3512,-0.9304,0.3246,0.1703,-0.9301,-0.3672,-0.0117,-0.9283,0.3141,-0.1989,-0.9282,0.2833,-0.2411,-0.9277,-0.2096,0.309,-0.9272,0.034,0.373,-0.9272,0.361,-0.0998,-0.9271,-0.3748,-0.0104,-0.927,-0.2175,-0.3054,-0.9265,-0.3443,-0.1518,-0.9265,-0.3287,0.1835,-0.9263,-0.2465,-0.2849,-0.9256,-0.0961,-0.3661,-0.9251,-0.1007,0.366,-0.9243,-0.2369,0.2993,-0.9243,0.3259,-0.1988,-0.9236,0.3483,-0.1599,-0.9234,0.2984,-0.2415,-0.9233,0.2715,-0.2718,-0.9231,0.2745,0.2692,-0.9229,-0.3842,-0.0247,-0.9228,0.0984,-0.3724,-0.9225,0.3822,-0.0545,-0.9215,0.3883,-0.0111,-0.9213,-0.1424,0.3618,-0.9209,-0.2997,0.2493,-0.9202,0.3404,0.1932,-0.92,-0.3908,0.0298,-0.9196,0.1875,0.3452,-0.9195,0.3686,0.1364,-0.9192,0.1994,0.3395,-0.9191,-0.3865,0.0773,-0.9183,-0.1349,0.3721,-0.9176,-0.3118,0.2465,-0.9176,0.0906,0.3871,-0.9173,-0.3735,-0.1381,-0.9171,0.2208,-0.3318,-0.9171,0.2255,0.3288,-0.9168,0.3457,0.1998,-0.9167,0.0334,0.3981,-0.9157,0.1356,-0.3782,-0.9157,0.2717,-0.2962,-0.9145,0.3371,0.2235,-0.9144,-0.399,0.0682,-0.9138,-0.1429,0.3802,-0.913,0.0882,-0.3984,-0.9128,-0.3642,0.1851,-0.9116,-0.1313,0.3894,-0.9114,0.3713,-0.1772,-0.9111,-0.088,0.4026,-0.9104,0.1789,0.373,-0.9102,0.1988,0.3634,-0.91,-0.0812,-0.4065,-0.91,0.2687,0.3157,-0.9096,0.0195,0.415,-0.9095,-0.1411,0.3909,-0.9092,-0.2673,0.3193,-0.9081,0.1278,-0.3987,-0.908,-0.1518,0.3905,-0.9079,-0.2954,0.2975,-0.9075,-0.1579,0.3892,-0.9072,0.3449,0.2408,-0.9072,-0.1512,-0.3926,-0.9072,0.1572,0.3903,-0.9069,-0.0829,0.4132,-0.9067,-0.0304,-0.4206,-0.9066,-0.042,-0.42,-0.9062,-0.2876,-0.3099,-0.9058,0.2846,0.314,-0.9052,0.4117,-0.1052,-0.9052,-0.1782,0.3859,-0.9048,-0.3257,0.2742,-0.9041,0.1681,-0.3928,-0.904,0.3667,0.2199,-0.9037,0.3761,-0.2044,-0.9037,-0.2257,0.3639,-0.9035,0.2921,0.3135,-0.9032,0.271,-0.3327,-0.9025,-0.4221,0.085,-0.9022,-0.2801,0.3279,-0.9022,-0.1415,0.4074,-0.9021,0.2158,-0.3736,-0.9021,-0.0579,0.4276,-0.9018,0.212,0.3765,-0.9004,0.1017,-0.423,-0.9003,-0.2303,0.3694,-0.9,-0.2827,-0.3318,-0.8998,-0.1409,-0.4129,-0.8996,0.4359,-0.0272,-0.8994,0.3246,0.2927,-0.8971,0.0784,0.4348,-0.897,-0.3312,-0.2926,-0.8964,0.2284,0.3799,-0.8959,0.4058,-0.1807,-0.8951,0.259,-0.3629,-0.8949,0.3969,-0.204,-0.8946,0.3706,-0.2495,-0.8942,0.4452,0.0469,-0.8942,0.4287,-0.1288,-0.8935,-0.4455,0.057,-0.8934,0.3704,-0.2543,-0.8933,-0.446,0.0552,-0.893,-0.0186,0.4498,-0.8927,0.3021,-0.3345,-0.8925,-0.2715,-0.3602,-0.8918,0.0589,0.4487,-0.8917,-0.372,-0.2578,-0.8907,-0.4399,0.115,-0.8886,0.4492,-0.0932,-0.8876,-0.2751,0.3695,-0.8874,0.4225,0.1845,-0.8874,-0.4583,-0.0504,-0.8871,-0.0566,-0.458,-0.8868,0.1076,-0.4494,-0.8867,-0.4345,-0.1581,-0.8856,0.4027,0.2315,-0.8855,0.4346,-0.1642,-0.8855,0.1745,0.4306,-0.8855,0.3943,0.2459,-0.8851,0.1238,0.4486,-0.8849,0.4192,-0.2029,-0.8841,0.2452,-0.3979,-0.8835,-0.224,-0.4113,-0.8833,0.3952,0.2521,-0.8832,0.4687,0.0151,-0.8827,-0.4698,0.0098,-0.8827,0.4465,-0.1464,-0.8827,-0.4119,0.2263,-0.8826,0.3592,-0.3033,-0.8826,-0.2428,-0.4026,-0.8824,-0.4308,0.1889,-0.8823,0.4403,-0.1665,-0.8821,0.1903,-0.4309,-0.8806,-0.3958,0.2607,-0.8801,-0.3683,-0.2996,-0.8798,0.4742,0.0331,-0.8798,-0.4686,0.0801,-0.8797,0.0166,-0.4752,-0.8796,0.1628,-0.4471,-0.8796,0.2458,0.4074,-0.8785,0.4605,-0.127,-0.8782,-0.4773,-0.0318,-0.8778,0.0632,0.4748,-0.8776,-0.2757,0.3921,-0.8775,-0.0412,0.4778,-0.8773,0.475,-0.0691,-0.8771,-0.173,-0.448,-0.8768,-0.4768,0.0621,-0.8767,-0.481,-0.0081,-0.876,0.003,0.4822,-0.8758,-0.2124,0.4334,-0.8756,0.2759,0.3965,-0.8752,0.3774,-0.3027,-0.8749,0.2011,-0.4406,-0.8748,-0.2429,-0.4191,-0.8747,-0.0424,0.4828,-0.8747,-0.2453,-0.418,-0.8731,-0.3333,-0.3557,-0.8728,0.239,0.4255,-0.8725,0.4336,0.2251,-0.8724,0.4211,0.2482,-0.8723,-0.4751,0.116,-0.8722,-0.4025,0.2779,-0.8717,-0.2824,0.4006,-0.8715,0.479,-0.1052,-0.8713,0.3358,0.3577,-0.8713,-0.4779,-0.1118,-0.8709,-0.4539,-0.1882,-0.8708,-0.4705,0.1426,-0.8708,-0.489,0.0511,-0.8699,-0.492,-0.0341,-0.8696,-0.4349,-0.2339,-0.869,-0.4626,0.1756,-0.8685,-0.4358,0.2361,-0.8679,-0.4966,0.0093,-0.8678,-0.0772,0.4908,-0.8671,-0.1184,0.4838,-0.8669,0.0228,0.4979,-0.8669,-0.4828,0.1239,-0.8669,0.2145,-0.45,-0.8668,-0.0577,0.4953,-0.8668,-0.0412,0.497,-0.8667,0.29,-0.4058,-0.8661,-0.358,0.3489,-0.866,0.4815,0.1348,-0.866,0.3887,-0.3146,-0.8648,-0.4123,0.2865,-0.8647,-0.3607,-0.3495,-0.8635,-0.4532,0.2212,-0.8631,-0.2794,-0.4207,-0.8624,0.4973,-0.0945,-0.8622,0.4784,-0.1664,-0.8619,0.4522,-0.2294,-0.8617,0.3238,0.3906,-0.8607,0.509,0.0075,-0.8607,0.4128,0.2979,-0.8605,0.2369,0.4511,-0.8603,-0.037,0.5084,-0.8599,-0.0085,0.5104,-0.8598,-0.2019,0.4691,-0.8593,-0.4929,0.1366,-0.8593,-0.0734,0.5062,-0.859,0.4886,-0.1532,-0.8586,-0.2508,0.447,-0.8582,-0.2185,-0.4645,-0.8573,-0.5128,0.046,-0.8571,-0.2656,0.4415,-0.8567,-0.432,0.2818,-0.8549,0.5074,-0.108,-0.8548,-0.5171,-0.0437,-0.8545,-0.4492,-0.2609,-0.853,0.2244,0.4712,-0.8514,0.0238,-0.5239,-0.8514,0.48,-0.2116,-0.8507,0.4652,-0.2449,-0.8505,0.4165,0.3211,-0.8503,0.4831,0.2088,-0.85,0.5068,0.1436,-0.8499,-0.2424,0.4678,-0.8497,-0.1771,0.4967,-0.8494,-0.4661,-0.2476,-0.8493,-0.3909,-0.3549,-0.8491,0.3251,-0.4164,-0.8487,0.1033,-0.5187,-0.8486,-0.4773,0.2279,-0.8486,0.0537,-0.5263,-0.8482,-0.1302,0.5134,-0.8473,-0.2599,0.4631,-0.8471,-0.1811,-0.4996,-0.8464,-0.3426,-0.4078,-0.8463,-0.48,-0.231,-0.8459,0.5084,0.1609,-0.8459,-0.4404,0.3007,-0.8459,0.037,0.5321,-0.8444,-0.5122,0.1569,-0.8444,0.3626,0.3944,-0.8438,-0.4414,0.3051,-0.8436,0.492,-0.2152,-0.8429,-0.4089,0.3498,-0.8428,0.314,-0.4371,-0.8417,-0.0357,0.5387,-0.8415,0.524,0.1314,-0.8415,0.4394,-0.3144,-0.8413,-0.54,0.024,-0.8396,-0.4722,0.2684,-0.8395,-0.5132,0.1782,-0.839,0.5412,-0.0557,-0.839,0.2968,-0.456,-0.8387,0.4854,-0.2469,-0.8386,0.2845,0.4646,-0.8382,0.354,0.4149,-0.838,-0.4656,-0.2846,-0.8379,-0.4763,0.2667,-0.8372,-0.5464,0.024,-0.8367,-0.453,0.3077,-0.8365,0.4019,-0.3726,-0.836,0.1401,-0.5306,-0.8359,0.1578,-0.5257,-0.8355,0.2464,0.4912,-0.835,0.1436,0.5312,-0.8349,0.4615,0.2999,-0.8343,-0.1247,-0.5371,-0.834,0.3385,-0.4358,-0.8336,0.5493,0.0582,-0.8333,0.2792,-0.4771,-0.8323,0.5539,-0.023,-0.8322,0.4674,-0.2983,-0.8306,0.1263,-0.5424,-0.8305,-0.5269,0.1804,-0.83,-0.5124,0.2206,-0.8298,0.4529,0.3262,-0.8294,-0.4077,-0.382,-0.8291,0.0742,0.5541,-0.829,0.1863,-0.5273,-0.8279,0.218,0.5168,-0.8274,-0.4279,-0.3638,-0.8271,-0.2182,0.518,-0.8271,0.5566,-0.0779,-0.8266,-0.2344,-0.5117,-0.8262,0.5107,-0.2377,-0.8262,0.4763,0.3009,-0.826,-0.5577,0.0826,-0.8257,-0.054,0.5615,-0.8249,0.524,-0.212,-0.8237,-0.0427,0.5654,-0.8234,-0.5214,0.2238,-0.8229,0.2445,-0.5129,-0.8207,0.0164,-0.5711,-0.8205,0.5402,0.1867,-0.8205,0.1118,-0.5607,-0.82,0.3525,0.4509,-0.8198,-0.5171,-0.2461,-0.8194,-0.0734,-0.5685,-0.819,0.5734,-0.0205,-0.8174,0.1896,-0.544,-0.817,0.0288,-0.576,-0.8159,-0.2178,0.5356,-0.8151,-0.5752,0.0687,-0.8147,-0.5752,0.0734,-0.8146,-0.5772,0.0564,-0.8125,-0.2161,0.5414,-0.8121,-0.3415,-0.4731,-0.812,-0.3735,0.4485,-0.812,-0.1418,-0.5662,-0.8114,0.4144,0.4123,-0.8112,0.2063,0.5472,-0.811,-0.1991,-0.5502,-0.8099,0.4245,0.4048,-0.8087,-0.0064,0.5882,-0.8085,-0.4568,0.371,-0.8084,-0.5315,0.253,-0.8079,0.1399,0.5725,-0.8074,-0.3435,-0.4798,-0.807,0.5576,-0.1943,-0.807,0.2567,0.5318,-0.8068,0.3878,-0.4456,-0.8063,0.4514,0.3822,-0.8058,0.3517,0.4765,-0.8057,-0.2637,0.5303,-0.8054,0.5081,-0.3051,-0.8053,0.5457,0.2319,-0.8051,-0.2533,0.5363,-0.8048,0.293,0.5163,-0.8042,-0.5072,-0.3099,-0.8042,-0.1774,-0.5673,-0.8017,-0.3328,-0.4965,-0.8014,-0.1751,-0.5719,-0.8007,-0.5979,0.0373,-0.8003,-0.5373,0.2661,-0.7993,0.5725,-0.1827,-0.7991,0.2838,0.53,-0.7991,-0.4894,-0.3492,-0.7988,0.281,-0.532,-0.7985,0.5213,-0.3012,-0.7984,0.0265,-0.6016,-0.7982,0.284,0.5312,-0.7962,-0.2208,0.5633,-0.7962,-0.4693,-0.382,-0.7962,0.5919,-0.1255,-0.7952,-0.103,-0.5975,-0.7952,-0.0274,0.6057,-0.795,-0.5119,-0.3254,-0.7942,-0.0821,-0.6021,-0.793,-0.3231,0.5165,-0.7928,0.4196,-0.442,-0.7921,-0.5772,0.1986,-0.7909,0.5197,-0.323,-0.7905,0.2904,0.5392,-0.7902,-0.5439,0.2824,-0.79,-0.2618,-0.5544,-0.7896,0.6135,0.0156,-0.7891,0.3994,-0.4666,-0.789,0.282,-0.5458,-0.7885,0.26,-0.5573,-0.7883,-0.5893,-0.1769,-0.7879,-0.0452,0.6141,-0.7871,-0.5703,0.2351,-0.787,0.2067,-0.5814,-0.7866,0.1539,0.598,-0.7861,0.5369,0.3063,-0.7859,-0.1394,-0.6025,-0.7854,-0.4604,0.4137,-0.7851,-0.5546,0.2759,-0.7847,0.0592,-0.6171,-0.7841,-0.6206,0.0088,-0.784,-0.4878,-0.384,-0.7834,-0.5301,-0.3243,-0.7826,-0.1564,-0.6026,-0.7812,0.3652,-0.5063,-0.7811,0.6168,-0.097,-0.7809,0.5348,-0.3227,-0.7805,-0.5775,0.2393,-0.7805,-0.5817,-0.2289,-0.7804,-0.0672,-0.6216,-0.7798,0.0025,0.6261,-0.7798,0.5471,0.3044,-0.7796,-0.5363,-0.3236,-0.7795,0.4216,-0.4632,-0.7784,0.3036,-0.5495,-0.7777,-0.6281,0.0247,-0.7756,-0.18,-0.6051,-0.7749,-0.1031,-0.6236,-0.7749,-0.0093,-0.632,-0.7746,0.3974,-0.492,-0.7741,-0.5843,-0.2438,-0.7737,0.3298,0.541,-0.7714,-0.361,-0.5241,-0.7696,-0.5909,0.2418,-0.7691,-0.2514,0.5876,-0.7691,-0.5682,0.2927,-0.7688,0.3216,-0.5527,-0.7668,-0.0714,0.6378,-0.7666,-0.5955,0.2403,-0.7663,0.6271,-0.1399,-0.7659,-0.4515,0.4577,-0.7654,-0.4688,-0.441,-0.7646,-0.3088,-0.5657,-0.7636,0.0812,0.6406,-0.7636,0.1675,0.6236,-0.7632,-0.5495,0.34,-0.7632,0.4397,-0.4736,-0.7623,-0.6332,0.1337,-0.7622,0.3411,-0.5502,-0.761,-0.514,-0.3958,-0.7596,0.325,0.5634,-0.7594,-0.4901,-0.4278,-0.7583,0.3126,-0.572,-0.7578,0.6361,-0.1453,-0.7573,0.3707,-0.5377,-0.7541,-0.6546,0.0535,-0.7501,-0.5566,-0.3573,-0.7493,0.1647,-0.6414,-0.749,-0.0929,-0.656,-0.7475,0.1828,-0.6386,-0.7472,0.1498,0.6475,-0.7472,0.6351,0.196,-0.7472,-0.6585,-0.0898,-0.7462,0.5807,0.3255,-0.7461,-0.506,-0.4328,-0.7451,-0.1999,-0.6363,-0.7448,-0.1806,-0.6424,-0.7445,-0.4958,0.447,-0.7444,-0.1235,-0.6562,-0.7435,0.5507,-0.3794,-0.7433,-0.4539,-0.4914,-0.7413,-0.5305,-0.4111,-0.7413,-0.2028,-0.6398,-0.7411,0.4807,0.4687,-0.7408,0.6715,0.0176,-0.74,-0.5404,0.4004,-0.74,-0.5378,0.404,-0.7394,-0.1411,-0.6583,-0.7383,-0.5794,0.3453,-0.7381,0.1349,-0.6611,-0.7362,0.5606,0.3792,-0.7352,-0.2666,0.6232,-0.7351,0.2354,0.6357,-0.735,-0.5341,-0.4178,-0.7349,-0.5871,-0.3395,-0.7339,-0.6114,-0.2959,-0.7334,-0.3096,-0.6052,-0.733,-0.4311,0.5262,-0.7327,0.4114,-0.5422,-0.7325,-0.2813,0.6199,-0.7322,0.2287,-0.6415,-0.7314,-0.5294,-0.43,-0.7312,0.6821,-0.0097,-0.7312,-0.3352,-0.5941,-0.7311,0.3335,0.5952,-0.7308,0.1654,-0.6623,-0.7307,-0.2602,0.6312,-0.7301,-0.304,0.612,-0.7294,-0.1738,-0.6617,-0.7291,0.4405,-0.5238,-0.7291,-0.5674,-0.3829,-0.729,0.5767,-0.3688,-0.7287,0.5684,0.3819,-0.7284,0.4935,0.4752,-0.7279,0.4536,-0.5142,-0.7275,0.0143,-0.686,-0.7275,-0.636,0.2576,-0.7274,-0.306,0.6143,-0.727,-0.0839,-0.6815,-0.7269,-0.3734,0.5763,-0.7266,0.6587,0.1953,-0.7262,-0.0875,-0.6819,-0.7257,-0.6068,0.3243,-0.7256,0.3846,-0.5706,-0.7253,-0.6867,-0.0482,-0.7253,-0.6883,-0.0112,-0.7247,0.1993,0.6596,-0.7244,-0.1939,0.6616,-0.7242,-0.4301,-0.5391,-0.724,0.4232,0.5448,-0.7236,-0.553,0.413,-0.7234,0.5087,0.4667,-0.7232,-0.2392,0.6479,-0.7232,-0.2673,0.6368,-0.7228,0.6728,-0.1577,-0.7221,0.4055,-0.5604,-0.7218,0.4124,0.5557,-0.7218,0.38,-0.5785,-0.721,-0.6674,0.1861,-0.7207,0.2643,0.6409,-0.7191,0.0581,-0.6925,-0.7187,-0.4937,-0.4896,-0.7185,-0.6064,0.3406,-0.7185,0.689,-0.0954,-0.7184,-0.4006,0.5686,-0.7181,-0.6902,0.0894,-0.7177,-0.689,0.101,-0.7172,0.5641,-0.409,-0.7159,0.3963,-0.5748,-0.7153,-0.1588,0.6805,-0.7149,0.6991,-0.0061,-0.7142,0.6927,0.1011,-0.7124,-0.6668,-0.2188,-0.7122,0.5144,-0.4777,-0.712,-0.7021,0.0049,-0.7112,0.3718,-0.5966,-0.711,0.6057,0.3571,-0.7106,-0.6303,-0.3127,-0.7102,-0.4982,-0.4973,-0.7098,-0.1853,-0.6796,-0.7092,-0.7,-0.0839,-0.7083,0.2514,0.6596,-0.7078,0.6607,-0.2499,-0.7072,-0.6888,-0.1597,-0.7062,-0.5084,0.4928,-0.7061,-0.622,0.3385,-0.7057,0.6631,-0.2498,-0.7042,-0.7051,-0.0833,-0.7034,-0.5236,0.4807,-0.7031,0.0333,-0.7103,-0.7027,-0.0526,-0.7095,-0.7024,-0.2952,-0.6476,-0.7023,-0.7102,0.0485,-0.7018,-0.4405,-0.5598,-0.7014,-0.2615,0.6631,-0.7008,-0.4607,-0.5446,-0.7003,0.0223,-0.7135,-0.7,-0.1072,-0.706,-0.6998,0.2839,0.6556,-0.6991,-0.1963,0.6875,-0.6985,-0.6844,0.209,-0.6981,0.6392,-0.3226,-0.6976,0.4055,0.5907,-0.6976,0.3327,-0.6346,-0.6976,0.4498,0.5577,-0.6973,0.1853,-0.6924,-0.6969,-0.7124,0.0825,-0.6954,-0.4566,0.555,-0.6951,0.5017,0.5148,-0.6944,0.1938,0.693,-0.694,0.4673,-0.5478,-0.6937,0.4512,-0.5615,-0.6925,-0.6275,0.356,-0.6914,-0.2783,0.6667,-0.6906,-0.146,0.7083,-0.6882,-0.7048,0.172,-0.6878,-0.298,0.6619,-0.6877,0.2287,-0.689,-0.6874,-0.6347,-0.3531,-0.6872,0.6261,0.3686,-0.6871,-0.1095,0.7183,-0.6869,-0.7108,-0.1512,-0.6857,0.6407,0.3456,-0.6849,-0.3663,0.6299,-0.6848,0.689,-0.2374,-0.6846,0.6748,-0.2755,-0.6846,-0.4128,0.6008,-0.6836,0.4804,0.5495,-0.6835,-0.4276,-0.5916,-0.6832,-0.722,-0.1089,-0.6828,0.7242,-0.096,-0.6803,-0.2946,-0.6711,-0.68,0.0236,0.7329,-0.6799,-0.4388,0.5875,-0.6789,0.0903,0.7286,-0.6785,-0.7336,-0.038,-0.678,-0.7154,0.1688,-0.6778,-0.2871,0.6769,-0.6773,-0.731,0.0832,-0.677,0.0465,-0.7345,-0.6763,0.368,-0.6381,-0.676,0.2531,0.6921,-0.6752,-0.5469,-0.495,-0.6749,-0.6294,0.3852,-0.6747,0.0922,0.7323,-0.6741,0.463,-0.5755,-0.6733,-0.1103,-0.7311,-0.6729,0.4102,0.6155,-0.6716,0.5569,-0.4887,-0.6714,-0.0557,-0.739,-0.6692,-0.7017,0.2446,-0.6691,-0.7122,0.2123,-0.669,-0.6004,0.4381,-0.6689,-0.1824,0.7206,-0.6679,0.7319,-0.1351,-0.6671,0.3426,-0.6615,-0.6668,-0.3106,-0.6774,-0.6643,-0.7473,0.0159,-0.6641,0.5176,0.5395,-0.664,-0.7239,-0.1874,-0.6636,-0.7217,0.1969,-0.6628,0.3285,-0.6729,-0.6622,0.4095,0.6275,-0.6601,0.6814,-0.316,-0.6598,-0.7401,-0.1299,-0.6595,0.3038,-0.6876,-0.6592,-0.704,0.2642,-0.6589,0.323,-0.6793,-0.6589,0.5341,0.5297,-0.6585,0.7123,-0.243,-0.658,-0.2572,0.7077,-0.6577,0.1969,0.7271,-0.6573,0.3299,-0.6776,-0.6567,-0.5862,0.4744,-0.6567,0.2356,0.7164,-0.6561,-0.6151,0.4372,-0.6559,0.3689,-0.6586,-0.6556,-0.7125,0.2503,-0.6555,0.7335,0.1799,-0.6552,0.6229,-0.4275,-0.6549,-0.5765,0.4886,-0.6545,0.7547,-0.0452,-0.6538,0.7002,-0.2869,-0.6537,0.3212,0.6852,-0.6519,0.1486,-0.7436,-0.6517,0.7102,0.2664,-0.6509,0.5097,0.5626,-0.6508,0.758,0.0438,-0.6501,0.0507,-0.7582,-0.6487,-0.7569,0.0797,-0.6485,-0.1584,0.7445,-0.6478,-0.6801,0.3433,-0.6476,0.1715,0.7425,-0.6475,-0.6792,0.3455,-0.6475,0.5949,0.4763,-0.6475,-0.6039,-0.4648,-0.6466,0.4023,-0.6481,-0.6465,0.2458,0.7223,-0.6465,0.0766,0.7591,-0.6465,-0.6738,0.3578,-0.6464,-0.656,0.3896,-0.6461,0.6055,-0.4646,-0.6457,-0.7365,0.2017,-0.6452,-0.4698,0.6024,-0.6446,-0.3452,0.6822,-0.6439,0.2029,0.7377,-0.6434,-0.4899,-0.5883,-0.6432,0.0961,0.7596,-0.6432,-0.6621,-0.3846,-0.6421,-0.7509,0.1545,-0.6412,-0.737,0.2138,-0.6402,0.5398,0.5466,-0.64,0.7654,-0.0681,-0.6392,-0.2302,0.7338,-0.639,0.7357,-0.2247,-0.6385,0.5382,-0.5502,-0.6373,-0.1459,0.7567,-0.6372,-0.7472,-0.1892,-0.637,-0.0919,0.7653,-0.637,0.7184,-0.2796,-0.6365,-0.0748,-0.7676,-0.6355,-0.7634,0.1158,-0.6351,0.6074,0.4772,-0.6349,-0.6619,0.3984,-0.6347,0.7501,-0.1855,-0.6346,0.5263,0.5659,-0.6344,0.3661,-0.6808,-0.6341,-0.7717,0.0487,-0.634,0.3616,0.6836,-0.6338,-0.2384,-0.7358,-0.6328,-0.3032,0.7124,-0.6326,-0.7726,-0.0528,-0.6324,-0.572,0.5224,-0.6319,-0.7643,0.1283,-0.6318,0.3834,0.6737,-0.6314,-0.5611,0.5353,-0.6311,0.4172,0.6539,-0.629,0.53,0.5687,-0.6273,-0.6157,0.4769,-0.6269,-0.6998,0.3423,-0.6269,-0.7782,-0.0373,-0.6262,-0.1257,0.7695,-0.6258,0.7747,0.0905,-0.6256,-0.6134,0.4821,-0.6242,0.3168,-0.7142,-0.6238,-0.7804,-0.0434,-0.6222,0.758,-0.1955,-0.622,-0.7104,0.3294,-0.6219,0.4866,-0.6136,-0.6218,0.7824,-0.0355,-0.6206,0.7728,-0.133,-0.6204,-0.6791,0.3924,-0.6196,-0.5756,0.5336,-0.6195,0.5348,0.5747,-0.6188,0.4466,0.6463,-0.6185,-0.2669,-0.7391,-0.6185,0.7837,-0.0582,-0.6178,-0.78,0.1,-0.6173,-0.7092,0.3406,-0.6171,-0.6216,0.4825,-0.6168,-0.7528,0.2298};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_110_vector_2()
		{
			double[] value = {-0.6161,-0.5577,-0.5563,-0.615,0.312,0.7242,-0.6147,-0.7875,0.0444,-0.6145,-0.7878,-0.042,-0.6139,0.1191,-0.7803,-0.6133,-0.7796,-0.1266,-0.612,0.1498,0.7766,-0.6119,-0.6801,0.4037,-0.6117,0.7085,-0.3519,-0.611,-0.7676,0.1935,-0.6108,-0.7096,0.3512,-0.61,-0.7708,0.1838,-0.6095,-0.4698,-0.6386,-0.6095,0.739,-0.287,-0.6088,0.4055,0.6818,-0.6083,-0.7657,0.2088,-0.6083,-0.293,0.7377,-0.6078,-0.7649,-0.2134,-0.6074,-0.3118,0.7306,-0.6067,0.5734,-0.5505,-0.6067,-0.2994,0.7364,-0.6064,0.2965,-0.7378,-0.6047,0.6653,0.4379,-0.6045,0.6643,0.4396,-0.6043,-0.453,-0.6554,-0.6042,-0.1264,-0.7868,-0.6041,-0.7942,-0.0662,-0.604,-0.3821,0.6994,-0.6033,0.6214,-0.4998,-0.6026,-0.3124,0.7344,-0.6019,-0.7141,0.3575,-0.6017,-0.6847,0.4112,-0.6017,0.7376,-0.3063,-0.6006,0.5783,-0.5522,-0.5997,0.6853,0.4132,-0.599,0.3857,0.7018,-0.5983,0.5381,0.5937,-0.5975,0.1491,0.7879,-0.5974,0.2418,-0.7646,-0.5972,-0.686,0.4156,-0.5966,-0.8025,0.0055,-0.5961,-0.1997,0.7777,-0.5957,-0.4697,0.6515,-0.5939,0.5482,-0.5888,-0.5938,0.661,0.4588,-0.5931,0.3201,0.7388,-0.5928,-0.2232,0.7738,-0.5926,-0.804,0.0491,-0.5926,-0.8026,-0.069,-0.5925,0.3527,0.7243,-0.591,-0.0986,0.8006,-0.5909,0.0374,-0.8059,-0.5905,0.1267,0.7971,-0.5903,0.747,0.3058,-0.5902,0.135,0.7959,-0.5898,-0.3885,0.708,-0.5898,-0.524,0.6145,-0.5895,-0.8076,0.0186,-0.5893,-0.7907,0.1658,-0.5892,0.2282,-0.7751,-0.589,0.3894,0.7082,-0.5877,-0.7294,0.3502,-0.5871,-0.7568,0.2875,-0.5868,-0.7536,0.2961,-0.5866,0.7676,0.2582,-0.5865,-0.32,0.7441,-0.5863,-0.1453,-0.797,-0.5854,-0.3657,0.7236,-0.5852,0.5287,0.6149,-0.5849,0.5728,0.5743,-0.5848,0.2849,-0.7595,-0.584,-0.3515,0.7317,-0.5839,0.7604,0.2843,-0.5824,0.1815,0.7924,-0.5809,0.3326,0.7429,-0.5805,0.6779,0.4512,-0.5804,-0.7309,0.3591,-0.5793,0.2928,0.7607,-0.5792,-0.608,0.5431,-0.5783,-0.8019,-0.1499,-0.5779,-0.8008,0.1572,-0.5777,-0.8149,-0.0467,-0.5776,0.0295,0.8158,-0.5769,-0.5026,-0.6438,-0.5768,0.7874,0.2175,-0.5761,-0.7333,0.3612,-0.5761,-0.7492,0.3269,-0.5756,-0.5689,-0.5873,-0.5756,-0.1611,-0.8017,-0.575,0.4823,0.6609,-0.5747,0.619,0.5353,-0.574,0.8175,-0.0471,-0.5733,-0.0072,-0.8193,-0.5728,-0.733,-0.367,-0.5718,0.6012,0.5582,-0.5715,-0.2915,-0.7671,-0.5708,0.6156,-0.5433,-0.5704,-0.0964,-0.8157,-0.5703,-0.084,0.8171,-0.5699,-0.6959,0.437,-0.5693,-0.8115,-0.1316,-0.5687,-0.8096,0.1455,-0.568,-0.1682,-0.8056,-0.5664,-0.7972,0.2091,-0.5652,-0.7498,-0.3441,-0.5649,0.5615,-0.6046,-0.5648,0.8102,-0.1566,-0.5631,-0.5639,0.6041,-0.5629,-0.6317,0.533,-0.5628,-0.8208,0.0972,-0.5621,-0.7995,-0.212,-0.562,-0.732,0.3852,-0.5617,0.4686,0.6818,-0.5613,-0.7902,-0.2461,-0.5611,-0.5694,0.6008,-0.5599,-0.3736,0.7395,-0.5587,0.1379,0.8178,-0.5586,-0.8075,0.1895,-0.5585,0.1029,0.8231,-0.5577,-0.3211,0.7654,-0.5572,-0.1591,-0.815,-0.5569,0.5859,-0.5887,-0.5554,0.1597,0.8161,-0.555,-0.8315,0.0229,-0.555,0.8264,-0.0953,-0.5548,-0.8245,-0.1116,-0.5547,-0.8294,0.0657,-0.5547,0.1693,0.8146,-0.5547,0.5538,0.621,-0.5545,0.1323,-0.8216,-0.554,-0.484,-0.6774,-0.5539,0.7997,-0.2315,-0.5531,-0.642,0.5309,-0.5523,0.4193,0.7205,-0.5508,-0.8237,0.1344,-0.5504,0.0781,0.8312,-0.5497,0.7961,-0.253,-0.5496,-0.6921,0.468,-0.5495,-0.7986,0.2456,-0.5493,0.7248,-0.4159,-0.5489,-0.7563,-0.356,-0.5486,0.173,-0.818,-0.5482,0.3238,-0.7711,-0.5471,-0.7506,0.3705,-0.5463,0.0741,0.8343,-0.5462,-0.8125,0.2038,-0.546,-0.8281,0.1269,-0.5448,0.8259,-0.145,-0.544,-0.4784,0.6893,-0.5439,0.8197,-0.1796,-0.5422,0.2423,0.8046,-0.5418,0.6572,0.524,-0.5411,-0.5488,0.6372,-0.5398,-0.6756,0.5021,-0.5397,0.8325,0.1252,-0.5393,-0.7743,0.331,-0.5384,-0.7844,0.3079,-0.538,-0.7619,0.3606,-0.537,-0.8191,0.2019,-0.5368,-0.8432,0.0283,-0.5366,0.794,-0.2856,-0.5364,-0.8316,0.144,-0.5363,0.8125,0.2286,-0.5323,0.8324,0.1544,-0.532,0.5583,0.6365,-0.5305,0.2391,-0.8133,-0.5304,-0.8477,-0.0122,-0.5296,0.5996,-0.6,-0.5289,0.6951,-0.4869,-0.528,0.4958,0.6895,-0.5278,0.029,-0.8489,-0.5275,0.3708,-0.7643,-0.5265,0.1776,-0.8314,-0.5265,0.4263,-0.7356,-0.5259,0.2334,0.8179,-0.5259,0.6479,-0.5511,-0.525,0.7436,-0.414,-0.5246,-0.4868,0.6985,-0.5243,0.7941,-0.3074,-0.5238,-0.8432,0.1213,-0.5226,0.4741,-0.7086,-0.5223,-0.1741,0.8348,-0.5222,-0.7022,-0.484,-0.5206,0.3967,-0.756,-0.5197,-0.6621,-0.5399,-0.5193,0.4508,0.726,-0.5191,0.0914,0.8498,-0.5177,0.8135,-0.2649,-0.5177,-0.6904,0.5053,-0.5171,0.8457,-0.1319,-0.5171,-0.722,0.4598,-0.516,0.7657,-0.3839,-0.5149,-0.0508,-0.8557,-0.5138,-0.7518,0.4133,-0.5133,-0.4894,0.705,-0.5118,-0.7997,0.314,-0.5096,0.3494,0.7863,-0.5081,0.4594,0.7285,-0.5075,-0.72,0.4733,-0.5064,0.6662,-0.5475,-0.5062,0.4064,-0.7607,-0.5059,-0.7801,0.3682,-0.5058,-0.6136,0.6063,-0.5053,0.6807,-0.5303,-0.5052,-0.7211,0.4741,-0.5042,0.8438,-0.1841,-0.504,-0.822,0.2653,-0.502,-0.7396,0.4483,-0.5013,-0.8365,-0.2213,-0.5008,0.5244,-0.6886,-0.5002,0.7944,0.3445,-0.4998,0.2612,-0.8258,-0.4984,0.3786,0.7799,-0.4983,-0.7913,-0.3543,-0.4965,0.4353,-0.751,-0.4956,0.8685,0.0078,-0.4951,-0.8662,0.0669,-0.4935,0.403,-0.7708,-0.4928,0.8215,0.2869,-0.4927,0.4246,0.7596,-0.4914,-0.7595,0.4263,-0.4913,0.8479,-0.199,-0.4893,0.4295,-0.759,-0.4879,0.6805,-0.5467,-0.4859,0.8216,-0.298,-0.4859,0.5824,-0.6516,-0.4855,0.0585,0.8723,-0.4846,-0.0702,-0.8719,-0.4832,-0.8073,0.3387,-0.482,-0.8441,-0.2348,-0.4818,-0.339,-0.8081,-0.4783,0.767,0.4277,-0.4779,0.076,-0.8751,-0.4775,0.1765,-0.8607,-0.4774,-0.4571,0.7504,-0.4758,-0.7481,0.4626,-0.4751,-0.6291,-0.6152,-0.4744,0.8709,0.1284,-0.4738,-0.2035,0.8568,-0.4731,0.6113,-0.6344,-0.4721,-0.828,0.3023,-0.4713,-0.8492,0.2382,-0.4706,-0.4109,0.7808,-0.4695,0.7986,-0.3766,-0.4692,-0.7864,-0.4019,-0.4691,0.4421,-0.7645,-0.4689,0.5659,-0.6782,-0.4677,0.6506,-0.5983,-0.4672,-0.688,-0.5553,-0.4671,-0.5225,-0.7133,-0.4666,0.2911,-0.8352,-0.4664,0.3325,0.8197,-0.4657,0.5813,-0.6672,-0.465,-0.5565,0.6885,-0.4649,-0.0229,-0.8851,-0.4633,-0.03,-0.8857,-0.4629,-0.8467,0.2623,-0.4611,0.8861,-0.0479,-0.4611,0.7994,-0.3851,-0.4604,-0.4734,0.751,-0.4601,-0.7965,0.3923,-0.4599,0.6825,-0.5681,-0.4595,-0.8854,-0.0698,-0.4582,-0.1276,-0.8797,-0.4581,0.8047,0.3775,-0.4575,-0.4201,-0.7837,-0.4555,-0.7592,-0.465,-0.4547,-0.173,0.8737,-0.4526,-0.1678,0.8758,-0.4524,0.0763,-0.8885,-0.452,0.4987,0.7396,-0.4517,0.7203,-0.5264,-0.4508,-0.5983,-0.6624,-0.4506,0.8511,0.2693,-0.4496,0.0932,-0.8884,-0.4493,0.0499,0.892,-0.449,-0.8557,-0.2572,-0.4489,0.8531,-0.2661,-0.4476,-0.7922,0.4147,-0.4471,0.8238,-0.3485,-0.446,-0.8939,0.0459,-0.4459,0.6027,0.6617,-0.4454,0.587,-0.6761,-0.4448,0.784,0.433,-0.4446,-0.806,-0.3907,-0.441,-0.2862,-0.8506,-0.441,-0.7703,0.4606,-0.4408,0.4704,-0.7645,-0.4404,-0.7171,-0.5402,-0.44,-0.7941,0.4193,-0.4399,0.1204,-0.8899,-0.4391,-0.7037,0.5586,-0.4383,-0.7739,0.4572,-0.4373,0.7705,0.4637,-0.4371,0.8852,0.1593,-0.4364,0.6017,0.6689,-0.4357,0.828,0.353,-0.4344,0.7519,-0.496,-0.4332,-0.8241,0.365,-0.4329,0.8189,-0.3768,-0.4329,-0.2172,0.8749,-0.4328,-0.854,0.2887,-0.4327,-0.8606,0.2686,-0.4319,0.7553,-0.4929,-0.4319,-0.8907,0.1418,-0.4317,0.6891,-0.582,-0.4311,0.7056,0.5624,-0.4308,0.266,0.8624,-0.4301,-0.8608,-0.2722,-0.4293,0.6623,0.614,-0.4292,-0.7261,0.5372,-0.4289,0.6329,0.6446,-0.4284,-0.897,0.1085,-0.4281,0.8955,0.1215,-0.4265,0.8673,-0.2569,-0.426,0.5555,0.7141,-0.426,0.1017,-0.899,-0.4258,0.8443,0.3254,-0.4256,-0.5669,0.7053,-0.4247,0.8271,-0.3681,-0.4239,0.2833,-0.8603,-0.4235,-0.73,0.5364,-0.4234,0.7459,-0.5141,-0.4234,0.0314,-0.9054,-0.4227,-0.6311,-0.6504,-0.4216,0.1171,0.8992,-0.4216,-0.8583,0.2927,-0.4205,-0.3683,0.8292,-0.4185,0.2091,0.8838,-0.4181,0.521,0.7441,-0.4172,-0.5731,-0.7054,-0.4165,0.4842,0.7694,-0.4165,-0.8797,-0.2297,-0.4149,-0.0341,-0.9092,-0.4148,0.6008,0.6834,-0.4143,-0.1962,-0.8887,-0.4132,0.8675,-0.2771,-0.413,-0.185,0.8917,-0.4124,0.0267,0.9106,-0.4117,0.7212,-0.5572,-0.4107,0.874,-0.2597,-0.4097,0.035,0.9116,-0.4094,0.6046,0.6833,-0.4091,0.9084,-0.0863,-0.4089,0.5179,-0.7514,-0.4085,-0.7762,0.4802,-0.407,0.0608,0.9114,-0.4059,0.6272,0.6648,-0.4057,-0.6259,0.6661,-0.4053,0.6094,0.6814,-0.4051,-0.0198,-0.9141,-0.4049,0.6107,0.6805,-0.4045,0.7852,0.469,-0.4036,0.8438,0.3536,-0.4008,0.3304,0.8545,-0.4002,0.889,0.2224,-0.4002,0.1546,-0.9033,-0.4002,-0.3157,-0.8604,-0.3996,0.9015,0.1665,-0.3995,-0.8597,0.3183,-0.3992,0.6747,-0.6208,-0.3989,-0.1017,-0.9113,-0.3988,-0.5529,-0.7316,-0.3982,-0.6261,0.6704,-0.398,-0.913,-0.0897,-0.3976,-0.7415,0.5404,-0.3973,-0.8228,0.4064,-0.3969,0.193,0.8973,-0.3963,0.4709,0.7882,-0.3956,-0.1989,0.8966,-0.3956,0.8624,0.316,-0.3944,-0.2092,-0.8948,-0.3934,-0.1539,0.9064,-0.393,-0.692,0.6056,-0.3899,-0.8751,0.2865,-0.3891,-0.4186,0.8206,-0.3881,0.7761,0.497,-0.3879,0.9217,-0.0082,-0.3864,-0.7294,0.5645,-0.3854,-0.8921,-0.2357,-0.3837,-0.9038,0.1894,-0.3835,-0.7902,0.4779,-0.3833,-0.7474,0.5427,-0.383,0.3343,-0.8612,-0.3828,-0.3289,0.8633,-0.3823,0.6457,-0.661,-0.3808,0.2356,0.8941,-0.3804,-0.575,0.7243,-0.3794,-0.8258,0.4173,-0.3792,0.5457,-0.7473,-0.3783,-0.1191,-0.918,-0.378,-0.0788,-0.9225,-0.3775,0.7788,-0.5009,-0.3773,0.8126,-0.4442,-0.377,-0.1053,0.9202,-0.3768,0.5759,0.7255,-0.3761,0.3053,-0.8749,-0.376,0.8735,0.3093,-0.376,0.7862,0.4905,-0.3757,0.6837,-0.6256,-0.3754,-0.7068,0.5996,-0.3751,-0.7888,0.4869,-0.3729,-0.8224,0.4297,-0.3728,0.3425,0.8624,-0.3724,-0.7368,0.5643,-0.3722,0.697,0.6129,-0.3717,0.867,-0.3319,-0.3712,-0.9046,-0.2097,-0.3707,-0.8931,-0.255,-0.3697,0.6576,-0.6565,-0.3691,-0.029,0.9289,-0.369,0.8584,0.3562,-0.3686,0.7775,-0.5096,-0.3683,0.4764,0.7984,-0.3674,-0.5351,-0.7607,-0.3673,-0.0274,0.9297,-0.3673,-0.9122,0.1814,-0.366,0.6768,-0.6387,-0.3658,0.9169,0.1597,-0.3657,-0.9172,-0.1582,-0.3655,0.662,0.6544,-0.3652,-0.5262,-0.768,-0.364,0.5484,-0.7529,-0.361,-0.8479,-0.3884,-0.3603,0.921,0.148,-0.36,0.6753,0.6437,-0.3587,0.2663,0.8947,-0.3582,0.6747,-0.6454,-0.3578,0.9259,0.1212,-0.3571,-0.8317,-0.425,-0.3566,-0.885,0.2995,-0.3566,-0.9335,0.0388,-0.3563,0.0844,-0.9306,-0.3558,-0.3791,0.8542,-0.3554,0.5538,-0.753,-0.3548,0.9047,-0.2357,-0.3535,0.3918,-0.8494,-0.3531,0.0971,0.9305,-0.3531,0.573,-0.7396,-0.3525,-0.6392,-0.6836,-0.3512,-0.8004,0.4857,-0.3502,-0.8194,0.4539,-0.3495,-0.712,0.609,-0.349,-0.8436,-0.408,-0.349,0.8791,-0.3247,-0.3476,0.9024,-0.2548,-0.3472,0.2705,0.8979,-0.3471,0.3162,-0.8829,-0.347,-0.8239,0.4482,-0.3461,-0.9361,0.0624,-0.3449,0.0293,0.9382,-0.3429,0.5979,0.7245,-0.341,0.1733,0.924,-0.3406,-0.041,0.9393,-0.3404,0.918,0.2034,-0.3403,0.373,0.8632,-0.3393,-0.0966,-0.9357,-0.3389,-0.4691,0.8156,-0.3375,0.2103,-0.9175,-0.3367,0.4494,0.8275,-0.3361,0.9213,-0.1956,-0.3356,0.5199,-0.7855,-0.3346,0.8295,0.4472,-0.3344,0.4823,0.8096,-0.3333,-0.2501,0.909,-0.3329,0.0456,0.9419,-0.3329,0.8942,-0.2995,-0.3328,-0.8991,0.2845,-0.3316,0.9241,0.1899,-0.3307,0.6001,0.7284,-0.3306,-0.9281,-0.1715,-0.3301,-0.3838,0.8624,-0.3296,-0.8831,0.334,-0.3291,-0.1286,-0.9355,-0.3285,0.5279,-0.7832,-0.3284,-0.1338,-0.935,-0.3274,-0.4353,0.8387,-0.3271,-0.3392,-0.882,-0.3268,-0.8375,-0.4379,-0.3263,-0.6531,0.6834,-0.3258,0.0632,-0.9433,-0.3256,-0.9363,-0.1318,-0.324,-0.1825,-0.9283,-0.3227,0.321,0.8904,-0.3222,0.9133,0.2492,-0.3215,-0.1519,0.9346,-0.32,-0.7937,0.5174,-0.3197,-0.9122,0.2563,-0.3195,-0.8262,0.464,-0.3195,-0.6695,0.6706,-0.3192,-0.9477,0.0095,-0.3183,-0.9261,0.2025,-0.3182,0.9241,0.2115,-0.3177,0.4844,0.8151,-0.3171,-0.8104,0.4926,-0.3169,-0.269,0.9095,-0.3149,-0.9404,0.1286,-0.3142,-0.8461,-0.4306,-0.3124,-0.825,0.4708,-0.3111,-0.8872,-0.3408,-0.3104,-0.6262,0.7152,-0.3103,0.3226,0.8943,-0.3102,0.1549,-0.938,-0.3094,0.8405,0.4448,-0.3092,-0.659,-0.6856,-0.308,-0.7667,0.5633,-0.3079,-0.9387,0.155,-0.3049,-0.2172,0.9273,-0.3035,-0.6221,-0.7217,-0.3035,0.9507,0.0633,-0.3035,0.8478,0.435,-0.3032,-0.8115,0.4995,-0.302,0.5279,-0.7938,-0.3012,-0.8702,0.3899,-0.3007,-0.2009,-0.9323,-0.2997,0.861,-0.4109,-0.2995,0.8977,0.3232,-0.2994,0.9267,0.2274,-0.2993,-0.9278,-0.2227,-0.2992,0.8351,-0.4616,-0.2986,-0.8269,0.4766,-0.2981,-0.9013,-0.3144,-0.2976,0.9346,-0.1947,-0.2965,0.8686,-0.3971,-0.2959,-0.9421,-0.1579,-0.2957,-0.4384,-0.8487,-0.2947,-0.8377,-0.4597,-0.2946,-0.938,-0.1828,-0.2945,0.069,-0.9532,-0.2943,0.8206,0.4899,-0.2941,0.7877,-0.5413,-0.2932,-0.9438,-0.1526,-0.2931,0.5969,-0.7469,-0.2929,-0.9549,0.0496,-0.2929,-0.8725,0.3912,-0.2923,-0.933,-0.2099,-0.292,-0.7259,0.6228,-0.2917,0.6106,0.7362,-0.2893,0.9471,0.1389,-0.288,-0.9573,-0.0248,-0.2879,0.526,0.8003,-0.2871,0.1465,-0.9466,-0.287,0.9017,-0.3233,-0.2863,0.6353,0.7172,-0.2855,-0.9557,0.072,-0.2846,-0.5575,0.7799,-0.2845,-0.7466,0.6013,-0.2843,-0.9234,0.2578,-0.284,-0.9233,-0.2584,-0.283,0.0035,-0.9591,-0.2827,-0.8829,0.3749,-0.2819,-0.9135,-0.2933,-0.2815,-0.5645,0.7759,-0.2814,-0.827,-0.4867,-0.2809,0.8887,0.3624,-0.2803,0.953,-0.1153,-0.28,-0.8805,0.3824,-0.2782,-0.4731,0.8359,-0.2782,-0.691,0.6672,-0.2782,0.8082,0.5191,-0.2769,-0.8504,0.4475,-0.276,0.0072,0.9611,-0.276,-0.8105,0.5167,-0.2741,-0.6894,0.6705,-0.2733,0.6027,0.7497,-0.2723,-0.6229,-0.7334,-0.27,-0.2806,-0.9211,-0.2699,0.5695,-0.7764,-0.2686,-0.6751,0.6871,-0.2685,0.8731,-0.4069,-0.2683,-0.7238,-0.6357,-0.2675,0.6007,-0.7534,-0.2672,-0.2773,-0.9229,-0.267,0.5797,-0.7698,-0.267,0.6346,-0.7253,-0.2664,-0.0749,0.961,-0.2662,0.1732,0.9482,-0.2653,-0.9443,-0.1946,-0.2652,-0.272,0.925,-0.2647,0.954,0.1409,-0.2646,-0.826,0.4977,-0.2635,-0.9519,-0.1561,-0.2635,-0.9537,-0.1447,-0.2634,-0.0522,0.9633,-0.2633,0.4279,0.8646,-0.2631,0.1302,0.9559,-0.2619,0.9021,-0.3429,-0.2614,-0.7802,0.5682,-0.2612,-0.2168,0.9406,-0.26,-0.8883,0.3787,-0.2599,-0.9558,0.1371,-0.2595,0.3046,0.9165,-0.2593,0.5797,0.7725,-0.2569,0.7661,-0.5892,-0.2566,-0.6365,0.7273,-0.2562,-0.9597,0.1152,-0.2561,0.098,0.9617,-0.2551,0.8214,-0.5102,-0.2538,-0.2397,0.9371,-0.2535,-0.9519,-0.1723,-0.2534,-0.3257,0.9109,-0.2528,0.8059,-0.5353,-0.252,-0.7173,-0.6496,-0.2517,-0.1815,-0.9506,-0.2516,-0.6349,0.7305,-0.2514,0.7978,0.548,-0.2508,0.935,0.251,-0.2505,0.0073,-0.9681,-0.2501,-0.6231,0.7411,-0.2492,-0.8711,-0.4232,-0.249,-0.2387,-0.9386,-0.2489,-0.3004,-0.9208,-0.2487,-0.8405,0.4813,-0.2482,-0.6775,0.6924,-0.2481,-0.9535,-0.1709,-0.2479,0.7189,-0.6494,-0.2472,0.2613,-0.9331,-0.2461,-0.2988,0.922,-0.2459,-0.9053,0.3464,-0.2453,-0.7276,0.6407,-0.2436,-0.5205,0.8184,-0.2433,0.9163,-0.3182,-0.2427,0.2481,-0.9378,-0.2392,-0.8478,0.4733,-0.239,-0.7519,-0.6144,-0.2389,-0.7441,-0.6239,-0.2382,-0.6279,0.7409,-0.2375,-0.6901,0.6836,-0.2371,0.9256,-0.2951,-0.2368,-0.1732,0.956,-0.2353,0.3211,0.9174,-0.235,-0.9479,-0.215,-0.2344,-0.9459,0.2241,-0.2338,0.6402,-0.7318,-0.2337,-0.7012,0.6736,-0.2334,-0.9676,-0.0964,-0.2331,-0.0512,-0.9711,-0.233,-0.9483,-0.2156,-0.232,-0.9487,-0.2147,-0.2307,-0.5779,0.7828,-0.2304,0.8238,-0.518,-0.2296,-0.9566,0.1796,-0.2283,-0.6309,0.7415,-0.2277,-0.9441,-0.2384,-0.2272,-0.4513,-0.8629,-0.2256,-0.7083,0.6689,-0.2255,-0.9386,0.2611,-0.2248,-0.4457,0.8665,-0.2246,-0.5538,0.8018,-0.2242,0.0113,-0.9745,-0.2241,-0.9452,0.2375,-0.2239,-0.9466,-0.2322,-0.2231,-0.9726,-0.0651,-0.2212,-0.2831,0.9332,-0.2203,-0.9702,-0.1012,-0.219,-0.9438,-0.2474,-0.2188,-0.5758,-0.7878,-0.2187,-0.9707,0.0992,-0.2183,0.7164,0.6626,-0.2182,0.5035,0.836,-0.2176,-0.9726,-0.0821,-0.2165,-0.6519,-0.7268,-0.2158,-0.9142,0.3429,-0.2158,-0.5241,0.8238,-0.2155,0.857,-0.4682,-0.2149,-0.7544,-0.6203,-0.2146,-0.7624,0.6104,-0.2131,-0.7759,0.5938,-0.2129,0.1717,-0.9619,-0.2118,-0.969,-0.1272,-0.2109,0.6033,-0.7691,-0.2105,-0.947,-0.2425,-0.2099,-0.1035,-0.9722,-0.2098,-0.7774,0.593,-0.2074,0.6077,0.7666,-0.2073,-0.8045,0.5566,-0.2066,0.7644,-0.6107,-0.2064,0.3667,-0.9072,-0.2049,0.543,0.8143,-0.2046,0.3604,-0.9101,-0.2046,-0.2796,-0.9381,-0.2046,0.9749,-0.088,-0.2033,-0.9754,-0.0849,-0.2025,-0.1927,-0.9601,-0.2023,-0.8862,0.4167,-0.2022,-0.9763,-0.0771,-0.2014,-0.8335,0.5145,-0.2011,-0.898,0.3914,-0.2008,-0.041,-0.9788,-0.1987,0.9356,0.292,-0.1982,-0.1259,-0.972,-0.1964,-0.9772,-0.0804,-0.1958,0.9653,0.1727,-0.1949,-0.8999,0.3901,-0.1946,0.4857,0.8522,-0.1943,0.4018,0.8949,-0.1937,-0.9762,-0.0979,-0.1936,0.2024,0.96,-0.1925,-0.0042,-0.9813,-0.1922,0.9146,0.3558,-0.1911,0.3436,0.9195,-0.1905,-0.8023,-0.5658,-0.1897,-0.7533,0.6297,-0.1894,-0.2887,0.9385,-0.1884,-0.9784,-0.0855,-0.1879,-0.9799,-0.0666,-0.1879,-0.759,0.6234,-0.1878,0.1979,-0.9621,-0.1866,-0.9427,0.2765,-0.1863,-0.2144,0.9588,-0.1862,-0.9779,-0.0954,-0.1862,-0.9823,0.0209,-0.1856,-0.9803,-0.0681,-0.1835,0.922,0.341,-0.1834,0.01,-0.983,-0.1833,-0.8179,-0.5454,-0.1826,-0.9832,0.0059,-0.1814,-0.9784,-0.0987,-0.1805,0.1859,-0.9658,-0.18,-0.8269,0.5328,-0.1792,0.4061,-0.8961,-0.179,0.5474,0.8175,-0.1773,-0.794,0.5815,-0.1773,0.5904,0.7874,-0.177,-0.9802,0.089,-0.1761,-0.3582,0.9169,-0.1761,-0.2045,0.9629,-0.1757,-0.2269,0.9579,-0.1749,0.7492,0.6389,-0.1712,-0.8764,-0.4502,-0.1701,0.5069,0.8451,-0.17,-0.7847,0.5961,-0.168,0.4534,0.8753,-0.1675,0.3558,0.9194,-0.1657,0.9401,0.298,-0.1655,-0.6421,0.7486,-0.1644,0.8516,0.4977,-0.1631,-0.983,-0.0849,-0.1626,-0.1631,0.9731,-0.1624,0.6642,-0.7297,-0.1624,-0.7396,0.6532,-0.1615,-0.3934,0.9051,-0.1614,-0.9354,0.3147,-0.1605,-0.9838,-0.0795,-0.1592,0.2856,-0.945,-0.1583,0.1847,0.97,-0.1573,0.2332,-0.9596,-0.1572,0.9867,-0.0415,-0.1562,-0.5652,0.81,-0.1562,0.0688,0.9853,-0.1559,0.4363,0.8862,-0.1554,-0.2774,-0.9481,-0.1507,-0.9781,0.1435,-0.1504,0.2377,-0.9596,-0.15,-0.5122,0.8457,-0.1486,0.5551,0.8184,-0.1483,0.9779,-0.1474,-0.1483,0.3417,-0.9281,-0.1478,0.8402,-0.5218,-0.1475,-0.9288,-0.3399,-0.147,0.6322,-0.7607,-0.1469,-0.9876,-0.056,-0.1467,-0.6095,-0.779,-0.1467,-0.3603,-0.9212,-0.146,-0.9828,0.1136,-0.1449,-0.9868,-0.0721,-0.1449,0.06,-0.9876,-0.1441,-0.9435,0.2984,-0.1434,-0.6943,0.7053,-0.1433,-0.7713,-0.6201,-0.1426,-0.9867,-0.0775,-0.142,-0.6228,-0.7694,-0.1415,0.8694,0.4734,-0.1412,-0.2096,-0.9675,-0.1407,0.4936,-0.8582,-0.1404,-0.7698,0.6226,-0.1398,-0.969,-0.2039,-0.1394,-0.8207,0.5541,-0.1377,0.4046,0.904,-0.1376,-0.8431,0.5198,-0.1364,-0.8347,0.5335,-0.1361,-0.7315,0.6681,-0.135,-0.9823,0.1296,-0.135,0.7469,-0.6511,-0.1341,-0.9906,0.0262,-0.134,0.9379,0.3201,-0.1338,0.2844,0.9493,-0.1326,-0.9698,0.2049,-0.1325,-0.9346,0.33,-0.1315,-0.254,0.9582,-0.1308,0.6812,-0.7203,-0.1306,0.918,-0.3745,-0.1303,0.5244,0.8414,-0.1298,0.4056,0.9048,-0.1298,-0.2509,0.9593,-0.1295,-0.8324,0.5388,-0.1292,-0.9899,-0.0592,-0.129,-0.9141,0.3844,-0.1285,-0.8544,-0.5035,-0.128,-0.9494,0.287,-0.1278,-0.1238,0.9841,-0.126,0.8709,0.4751,-0.1252,0.7866,-0.6046,-0.124,-0.8656,0.4851,-0.1236,-0.4785,-0.8693,-0.1236,0.4956,0.8597,-0.1233,-0.7308,0.6714,-0.1232,-0.4107,-0.9034,-0.1225,-0.7806,0.613,-0.1213,0.1439,-0.9821,-0.1212,-0.9872,0.1041,-0.1195,-0.7345,0.668,-0.1185,0.4587,-0.8806,-0.1177,0.1785,-0.9769,-0.1175,-0.0449,-0.9921,-0.1166,-0.9643,0.2378,-0.1165,0.2488,-0.9615,-0.1163,-0.4187,0.9006,-0.1162,-0.7753,-0.6208,-0.1162,-0.0278,0.9928,-0.1159,-0.6519,0.7494,-0.1154,0.1296,0.9848,-0.1154,-0.9652,-0.2346,-0.1151,-0.9652,0.2347,-0.1141,-0.7028,0.7022,-0.1135,0.5106,-0.8523,-0.1134,-0.9551,0.2739,-0.1129,-0.6836,0.721,-0.1125,-0.9838,0.1398,-0.1118,0.6313,0.7675,-0.1109,0.7131,-0.6922,-0.1093,-0.7613,0.6392,-0.1091,-0.6718,0.7327,-0.1086,0.2741,0.9555,-0.1085,-0.7828,-0.6128,-0.1077,-0.9914,-0.074,-0.1061,-0.5239,0.8451,-0.1061,-0.564,0.819,-0.1043,0.5093,0.8542,-0.1041,0.3746,0.9213,-0.1033,-0.5924,0.799,-0.1022,-0.9664,-0.2356,-0.1016,-0.9629,-0.25,-0.1015,-0.7422,0.6625,-0.1013,-0.7518,-0.6516,-0.101,-0.6775,0.7286,-0.1001,-0.991,-0.0884,-0.0992,0.1749,-0.9796,-0.0992,0.9486,-0.3006,-0.0989,-0.9161,-0.3885,-0.0984,-0.5983,-0.7952,-0.0977,-0.9378,0.3333,-0.0977,-0.9851,0.1418,-0.0968,-0.7637,-0.6383,-0.0966,-0.5813,0.8079,-0.0957,0.3746,-0.9222,-0.0936,-0.5371,-0.8383,-0.0932,-0.9056,0.4138,-0.0925,0.5251,-0.846,-0.0922,-0.5354,-0.8396,-0.0916,0.0713,0.9932,-0.0914,-0.7335,0.6735,-0.0911,0.0967,0.9911,-0.0905,-0.9915,-0.0937,-0.0904,-0.8234,-0.5601,-0.0901,-0.5215,-0.8485,-0.0901,-0.3408,-0.9358,-0.0895,0.9286,-0.3602,-0.0886,0.6012,0.7942,-0.0883,-0.9314,0.3531,-0.0882,-0.4646,0.8811,-0.0882,-0.1607,0.9831,-0.0868,0.2515,0.964,-0.0849,0.5168,-0.8519,-0.0847,-0.3366,0.9378,-0.0844,0.5991,-0.7962,-0.0843,0.5332,0.8418,-0.0838,0.5312,-0.8431,-0.0833,-0.3952,-0.9148,-0.0832,-0.0384,0.9958,-0.0827,-0.4662,0.8808,-0.0814,-0.4386,0.895,-0.0812,-0.9819,-0.171,-0.0811,-0.5419,0.8365,-0.0809,-0.1939,0.9777,-0.0806,-0.9534,-0.2907,-0.0801,-0.8362,-0.5426,-0.0796,-0.6704,0.7377,-0.0794,-0.3878,-0.9183,-0.0792,-0.4699,-0.8792,-0.0792,-0.2553,-0.9636,-0.0789,0.2953,0.9522,-0.0785,0.9055,-0.417,-0.0781,0.8662,-0.4936,-0.0776,0.3895,0.9178,-0.0771,-0.6273,-0.7749,-0.0761,-0.8775,-0.4734,-0.0758,0.0359,0.9965,-0.0757,-0.7293,0.68,-0.0752,0.8097,-0.582,-0.0745,-0.9588,0.2742,-0.0745,-0.2098,0.9749,-0.0737,0.4307,-0.8995,-0.0728,-0.9452,0.3182,-0.0722,0.5211,-0.8504,-0.0721,-0.1168,-0.9905,-0.0719,-0.2619,-0.9624,-0.0694,-0.9955,-0.0646,-0.0684,-0.0549,0.9961,-0.0672,-0.9849,0.1597,-0.067,-0.0469,-0.9966,-0.0635,-0.7201,0.691,-0.0634,0.0148,0.9979,-0.0634,0.7816,-0.6206,-0.0631,-0.5615,-0.8251,-0.0628,0.8523,-0.5193,-0.0627,0.7651,-0.6409,-0.0619,-0.9833,-0.1711,-0.0615,-0.6215,0.781,-0.0614,0.5593,-0.8267,-0.0614,-0.9981,-0.0005,-0.0606,-0.9949,0.0801,-0.0602,0.7569,-0.6507,-0.0595,-0.7183,0.6932,-0.0585,-0.3412,0.9382,-0.0583,-0.9525,-0.2989,-0.058,0.1599,0.9854,-0.0579,-0.9983,0.0094,-0.0578,0.6966,-0.7152,-0.0563,0.991,-0.1212,-0.0561,0.0438,-0.9975,-0.0554,-0.8195,-0.5703,-0.055,0.2683,0.9618,-0.0535,0.7487,-0.6607,-0.0528,0.3799,0.9235,-0.0519,-0.6945,0.7176,-0.0514,-0.9652,0.2564,-0.051,-0.7207,-0.6914,-0.0499,-0.0836,0.9952,-0.0495,0.5467,-0.8359,-0.0491,0.5941,0.8029,-0.0487,-0.9398,0.3382,-0.0485,0.833,0.5511,-0.0482,-0.66,0.7497,-0.048,-0.9865,0.1565,-0.048,-0.9736,0.2232,-0.0472,0.7775,0.6271,-0.0466,-0.4828,0.8745,-0.046,-0.8191,-0.5718,-0.0459,-0.6458,-0.7621,-0.0454,-0.7171,0.6955,-0.0451,-0.4995,0.8652,-0.0447,-0.4711,-0.8809,-0.0446,0.2933,-0.955,-0.0428,-0.9966,0.0698,-0.0423,-0.9923,0.1164,-0.0412,-0.2139,-0.976,-0.0406,-0.9661,-0.2548,-0.0402,-0.0042,0.9992,-0.0397,-0.763,0.6451,-0.0391,-0.5269,-0.849,-0.0388,0.385,0.9221,-0.0384,0.0867,-0.9955,-0.0382,-0.8003,0.5983,-0.0378,-0.9636,-0.2646,-0.0375,0.9149,0.4019,-0.037,-0.3484,0.9366,-0.0367,-0.3767,0.9256,-0.0361,-0.9971,-0.0668,-0.0358,0.2209,0.9746,-0.0349,0.7816,0.6228,-0.0332,0.3287,-0.9438,-0.0331,-0.3134,-0.949,-0.0317,-0.3081,-0.9508,-0.0307,0.6211,0.7831,-0.0298,0.288,-0.9572,-0.0292,0.3111,-0.9499,-0.0285,0.1134,-0.9931,-0.0277,0.2391,0.9706,-0.0267,0.9631,-0.2678,-0.0266,-0.9653,0.2597,-0.0257,-0.6057,-0.7953,-0.0251,0.9209,-0.389,-0.0245,0.6741,-0.7382,-0.024,0.899,0.4373,-0.0224,-0.7861,-0.6177,-0.0221,-0.9311,0.3642,-0.0218,-0.0086,0.9997,-0.0214,-0.9974,-0.0692,-0.0212,-0.8898,0.4559,-0.0204,0.6181,0.7859,-0.0203,0.2261,-0.9739,-0.0185,0.9576,0.2875,-0.0185,-0.4182,0.9082,-0.0181,-0.6356,0.7718,-0.0174,-0.9743,0.2246,-0.0169,0.4352,0.9002,-0.0169,-0.9785,0.2057,-0.0166,-0.8252,0.5646,-0.0163,-0.1862,-0.9824};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=3 */
		private double[] getNormal_6_110_vector_3()
		{
			double[] value = {-0.0146,0.8591,-0.5115,-0.0144,-0.4017,0.9156,-0.0135,-0.1894,0.9818,-0.0128,-0.3028,-0.953,-0.0123,0.0697,-0.9975,-0.0116,-0.3092,0.9509,-0.0101,0.9064,0.4222,-0.01,-0.7961,0.6051,-0.0096,-0.9904,0.1382,-0.0086,0.9714,0.2373,-0.0063,-0.4363,0.8998,-0.0062,-0.9072,-0.4207,-0.0046,-0.2799,0.96,-0.0042,0.954,0.2999,-0.0041,-0.0946,0.9955,-0.0038,-0.6366,-0.7712,-0.0018,-0.6216,0.7833,0.0002,-0.9948,0.1015,0.001,0.8631,-0.5049,0.0015,-0.9772,0.2122,0.0017,-0.9403,0.3403,0.0039,-0.9942,-0.1076,0.0044,-0.7344,0.6787,0.0052,-0.8335,0.5524,0.0057,-0.969,0.2471,0.006,0.7135,-0.7006,0.0084,-0.3393,0.9406,0.0085,0.8586,-0.5126,0.0087,-0.6222,0.7828,0.0101,-0.2424,0.9701,0.0107,-0.9427,-0.3336,0.0119,-0.3122,0.9499,0.0124,-0.9995,-0.0305,0.014,0.4975,-0.8674,0.0151,0.2735,-0.9618,0.0162,-0.3598,0.9329,0.0166,0.9991,-0.0391,0.018,0.1546,0.9878,0.019,-0.6855,-0.7279,0.0198,0.952,-0.3056,0.02,-0.9664,0.2562,0.0206,0.4673,0.8839,0.0214,-0.9964,-0.0823,0.0237,-0.714,0.6997,0.0244,-0.942,0.3347,0.0245,0.3124,-0.9496,0.0246,-0.9078,-0.4186,0.0251,0.5376,0.8428,0.0254,0.9695,-0.2439,0.0254,-0.9745,-0.2229,0.0272,-0.9195,0.3922,0.028,-0.6882,0.7249,0.0289,-0.8532,0.5208,0.029,-0.6901,0.7231,0.0301,-0.6984,0.7151,0.0305,-0.9807,-0.1933,0.0309,-0.0195,-0.9993,0.0332,-0.51,0.8596,0.0333,0.1998,-0.9793,0.0338,-0.6043,-0.796,0.0341,-0.8822,0.4697,0.0345,-0.9972,-0.0662,0.035,-0.9736,0.2257,0.0354,0.306,0.9514,0.0355,-0.2564,0.9659,0.036,-0.9606,-0.2755,0.0361,0.492,0.8698,0.0364,-0.7824,0.6217,0.0396,-0.9391,0.3412,0.04,0.1881,-0.9813,0.0408,-0.7827,-0.621,0.0414,-0.8102,0.5847,0.0428,-0.7134,0.6994,0.0447,-0.6361,0.7703,0.0461,0.9559,0.2899,0.0478,-0.6917,0.7206,0.0483,-0.4298,0.9016,0.0488,0.9951,-0.0857,0.0492,0.2005,-0.9785,0.0493,-0.6951,0.7172,0.0496,-0.6047,-0.7949,0.0499,0.3231,0.945,0.0507,0.9987,0.0079,0.0511,-0.8246,0.5633,0.0517,-0.6545,-0.7543,0.0528,-0.2222,0.9736,0.0528,0.2198,0.9741,0.0541,-0.4223,0.9048,0.0554,-0.3147,0.9476,0.0557,0.8269,0.5595,0.0561,0.6413,0.7653,0.0562,0.9661,0.2521,0.0572,0.4053,-0.9124,0.0575,-0.8156,-0.5758,0.0581,0.9695,-0.238,0.0591,0.0704,0.9958,0.0599,-0.6539,0.7542,0.06,-0.9982,0.0013,0.0603,-0.9943,0.0881,0.0617,0.2954,0.9534,0.0629,-0.9274,-0.3688,0.0637,0.6523,0.7553,0.0642,-0.6613,0.7473,0.0655,-0.4345,0.8983,0.0658,-0.5723,0.8174,0.066,-0.994,0.0876,0.0664,0.0142,-0.9977,0.0673,0.874,-0.4812,0.0677,0.6851,-0.7253,0.0681,-0.884,0.4625,0.0703,-0.6291,0.7742,0.0703,0.5985,0.798,0.0719,-0.3309,-0.9409,0.0724,-0.7263,0.6836,0.0725,-0.5172,0.8528,0.0737,-0.6964,0.7139,0.0757,0.6379,-0.7664,0.0785,0.3256,0.9423,0.0797,0.0049,0.9968,0.0802,0.737,0.6711,0.0804,-0.3481,-0.934,0.0807,-0.3088,-0.9477,0.0808,0.6416,0.7628,0.082,0.034,0.996,0.0827,-0.8189,0.5679,0.083,0.7389,-0.6687,0.0833,0.6118,-0.7866,0.0834,0.531,-0.8432,0.0843,0.4901,0.8676,0.0853,-0.7213,0.6874,0.0855,-0.9873,0.1339,0.0859,-0.4231,-0.902,0.0867,-0.7058,0.7031,0.0887,0.0445,0.9951,0.0916,-0.6744,0.7326,0.0923,-0.514,0.8528,0.0923,0.6364,0.7658,0.0949,-0.3563,0.9295,0.095,0.7764,0.6231,0.0952,0.7146,-0.693,0.0975,0.5208,-0.8481,0.0985,0.3839,-0.9181,0.1005,-0.9175,-0.3848,0.1013,0.3866,-0.9167,0.1014,-0.9369,0.3346,0.1014,0.5747,-0.812,0.1024,-0.5139,0.8517,0.1036,0.7358,0.6692,0.1037,-0.3759,-0.9208,0.1053,-0.6522,0.7507,0.1066,-0.6104,-0.7849,0.107,-0.2875,-0.9518,0.108,-0.3593,-0.927,0.1083,0.917,-0.3839,0.1089,-0.9738,0.1997,0.1109,0.4378,0.8922,0.111,0.9935,-0.0263,0.1115,0.4096,0.9054,0.112,-0.0886,0.9898,0.1122,-0.9916,0.0639,0.1126,-0.1817,-0.9769,0.1135,-0.3474,-0.9308,0.1141,-0.2806,0.953,0.1153,-0.9662,-0.2305,0.1157,0.9892,-0.0902,0.1165,-0.9766,0.1809,0.118,-0.6853,-0.7187,0.1192,-0.1752,-0.9773,0.1193,-0.8842,-0.4517,0.1196,-0.3256,0.9379,0.1202,0.0418,-0.9919,0.1205,-0.2382,0.9637,0.1205,0.2956,0.9477,0.1208,-0.1051,0.9871,0.1217,-0.4113,-0.9033,0.1229,-0.7144,0.6889,0.1236,0.165,0.9785,0.1252,-0.3642,0.9229,0.1254,-0.8861,0.4461,0.1266,-0.928,-0.3505,0.1269,0.6549,0.745,0.127,0.4253,-0.8961,0.1274,0.7408,0.6595,0.1283,0.6767,-0.725,0.1296,0.9197,0.3707,0.1302,0.0756,0.9886,0.1309,-0.614,0.7784,0.1315,0.9759,-0.1742,0.1315,-0.6137,0.7785,0.1318,-0.923,-0.3616,0.1352,-0.9337,-0.3316,0.1358,-0.9195,-0.3689,0.1364,0.7891,-0.5989,0.1366,0.3574,0.9239,0.1375,-0.6742,0.7257,0.1376,0.7111,0.6895,0.1377,-0.917,0.3744,0.1377,-0.7843,0.6049,0.1381,-0.9655,-0.2208,0.1388,-0.1591,0.9775,0.1388,-0.7651,-0.6287,0.1406,-0.9361,-0.3223,0.1407,-0.4045,0.9036,0.1417,-0.3837,-0.9125,0.1418,-0.9626,-0.231,0.1421,-0.9541,-0.2637,0.1437,-0.0804,0.9864,0.144,0.1473,0.9786,0.1445,-0.9887,0.0405,0.1454,-0.8532,0.501,0.1458,-0.4233,0.8942,0.1459,0.4664,0.8725,0.1462,0.3711,0.917,0.1465,-0.1301,0.9806,0.1472,0.3671,0.9184,0.149,-0.4426,0.8843,0.1496,0.8781,-0.4545,0.1509,-0.9833,0.1017,0.1515,-0.8251,0.5444,0.152,-0.6911,0.7066,0.1523,0.1395,0.9784,0.1525,-0.4231,0.8931,0.1525,-0.5272,-0.836,0.1532,-0.8917,-0.426,0.1534,-0.9881,0.0121,0.1548,-0.9498,-0.2718,0.1554,-0.3696,0.9161,0.1554,0.029,0.9874,0.1571,0.8308,-0.534,0.158,-0.9297,0.3326,0.1582,0.8379,-0.5224,0.1591,0.5467,0.8221,0.1608,0.9772,-0.1384,0.1609,-0.3676,0.916,0.1612,-0.0044,-0.9869,0.1617,-0.0341,0.9863,0.1622,0.5862,0.7938,0.1622,-0.5658,0.8084,0.1627,0.4814,0.8613,0.1634,0.6828,-0.7121,0.1638,0.2487,-0.9546,0.1642,-0.7259,0.6679,0.1644,0.9162,0.3655,0.1655,-0.2726,0.9478,0.1673,-0.7499,-0.6401,0.1678,-0.7363,-0.6555,0.1714,0.081,-0.9819,0.1724,0.5796,-0.7965,0.1741,0.4027,-0.8986,0.1757,0.0624,-0.9825,0.177,-0.3972,-0.9005,0.1776,-0.8691,0.4616,0.1778,-0.5567,0.8115,0.1786,0.7995,-0.5735,0.1788,-0.3669,-0.9129,0.1789,0.7958,-0.5785,0.1793,-0.9795,0.0915,0.1801,0.3064,0.9347,0.1821,-0.9832,0.0124,0.1833,-0.8838,-0.4304,0.1861,0.6461,-0.7402,0.1874,0.3715,0.9093,0.1874,-0.488,-0.8525,0.1877,0.8554,-0.4827,0.1883,-0.9799,0.0657,0.1884,-0.3565,-0.9151,0.1889,-0.9818,0.0212,0.1906,0.5711,0.7984,0.1909,0.2936,-0.9367,0.1931,-0.7038,0.6837,0.1944,-0.7982,0.5701,0.1951,-0.9741,0.1142,0.1955,0.5739,-0.7953,0.1965,0.626,-0.7547,0.1966,0.3426,-0.9187,0.1984,-0.4639,0.8634,0.2,-0.6369,-0.7446,0.2013,0.3703,0.9068,0.2018,-0.6115,0.7651,0.2021,0.363,-0.9096,0.2021,-0.4143,0.8874,0.2021,0.1076,-0.9734,0.2035,-0.7895,-0.579,0.205,-0.9354,0.288,0.2053,-0.7378,0.643,0.2053,0.4007,-0.8929,0.2058,-0.9462,0.2497,0.2067,-0.5324,0.8209,0.2068,-0.5774,0.7898,0.2081,0.7683,-0.6053,0.2088,0.7347,-0.6455,0.2089,0.9565,0.2035,0.209,0.3028,-0.9298,0.21,-0.8393,0.5016,0.2109,-0.9759,-0.0566,0.2134,-0.315,0.9248,0.2137,0.0089,0.9769,0.2147,-0.9678,0.1314,0.215,-0.4396,0.8721,0.2151,-0.7307,0.6479,0.2155,0.2668,-0.9394,0.2157,-0.8194,-0.5311,0.216,0.4893,0.8449,0.2166,0.8698,0.4434,0.2178,-0.9741,0.0613,0.2183,0.9323,-0.2885,0.22,-0.3774,-0.8995,0.2202,-0.0331,-0.9749,0.2204,0.344,0.9127,0.2217,-0.9676,0.1208,0.2222,-0.5824,0.782,0.2226,0.5585,-0.7991,0.223,0.869,-0.4416,0.2235,-0.3024,-0.9266,0.2236,0.7505,0.6219,0.2237,-0.9044,-0.3633,0.2238,-0.5534,0.8023,0.2245,-0.9471,-0.2292,0.2249,0.9396,0.2578,0.225,-0.1746,0.9586,0.225,-0.9655,0.131,0.2251,-0.179,0.9578,0.2262,0.1962,-0.9541,0.2262,0.9296,-0.2909,0.2264,-0.9319,0.2834,0.2271,0.5605,-0.7964,0.2317,0.7534,-0.6154,0.236,0.5902,0.772,0.237,-0.913,0.332,0.2373,0.1937,-0.9519,0.2389,-0.9709,-0.0171,0.2402,-0.3253,0.9146,0.2413,-0.5425,-0.8047,0.2418,0.2112,0.947,0.2425,-0.3522,-0.904,0.244,0.7415,0.625,0.2444,-0.9583,0.148,0.2445,-0.0674,0.9673,0.2472,0.4225,-0.872,0.2473,0.257,-0.9342,0.2475,0.1968,0.9487,0.2477,0.7263,0.6412,0.2495,-0.9668,0.0549,0.2499,-0.4682,-0.8476,0.2525,-0.9664,-0.0486,0.2529,-0.7372,0.6266,0.2535,-0.0258,-0.967,0.2539,0.681,0.6868,0.255,0.6546,-0.7117,0.255,0.6345,-0.7297,0.2552,-0.8933,-0.3699,0.2553,-0.9665,-0.0258,0.2554,0.7262,0.6383,0.2566,0.6952,-0.6715,0.2582,0.9377,-0.2324,0.2587,-0.7421,0.6183,0.2595,0.5822,-0.7705,0.2603,-0.6586,-0.7061,0.2608,-0.3998,0.8787,0.2608,-0.9632,0.0649,0.2608,-0.7819,0.5663,0.2609,0.1782,0.9488,0.2609,-0.9575,0.1227,0.2613,0.522,-0.8119,0.2623,0.0922,-0.9606,0.2628,-0.6809,-0.6836,0.2634,-0.9538,0.1443,0.2651,0.8531,-0.4494,0.2659,-0.8523,0.4504,0.2687,-0.5047,0.8204,0.2688,-0.859,-0.4358,0.2702,-0.7753,0.5709,0.2705,0.6473,-0.7127,0.2732,-0.6557,0.7038,0.2734,0.7248,0.6324,0.2735,-0.3618,0.8912,0.2748,-0.2674,-0.9236,0.2748,-0.1155,0.9545,0.2749,-0.936,-0.22,0.2751,0.6166,-0.7376,0.2759,-0.2468,0.9289,0.276,0.1431,-0.9504,0.2765,-0.9149,-0.2941,0.2791,-0.9585,0.0587,0.2801,0.8115,-0.5128,0.2808,0.9066,0.315,0.2829,-0.8107,0.5126,0.2834,-0.9566,0.0674,0.2836,0.7265,-0.626,0.2843,-0.733,0.618,0.2845,-0.8404,0.4612,0.2846,-0.4095,0.8668,0.2849,0.1082,-0.9524,0.2863,-0.2497,-0.925,0.287,-0.7197,0.6322,0.287,-0.7138,0.6388,0.2873,0.91,0.2989,0.2888,0.8427,0.4544,0.2891,0.6275,-0.723,0.2894,-0.4883,0.8233,0.2911,-0.1987,0.9358,0.2922,0.4243,0.8571,0.294,-0.7679,0.5692,0.2941,0.7165,0.6325,0.2944,-0.5523,-0.7799,0.2956,-0.6324,-0.7161,0.296,-0.844,0.4473,0.2962,-0.9551,-0.0057,0.2969,-0.2721,-0.9153,0.297,-0.7333,-0.6116,0.2974,-0.3535,0.8869,0.3005,-0.6671,0.6817,0.3036,-0.9064,-0.2938,0.3039,-0.9117,-0.2764,0.3042,-0.1639,0.9384,0.3043,-0.4065,-0.8615,0.3048,0.1541,0.9399,0.3063,-0.9505,-0.0529,0.3066,0.3282,0.8935,0.3076,-0.925,0.2229,0.3085,-0.8697,0.3853,0.3105,-0.8847,0.3479,0.313,-0.9496,0.0167,0.3138,-0.9229,0.2232,0.3143,0.5777,-0.7533,0.316,-0.2654,-0.9109,0.3169,0.9475,0.0432,0.3185,0.6634,0.6771,0.3199,-0.9365,-0.1434,0.3209,-0.8866,-0.3331,0.3212,-0.6885,0.6502,0.3223,-0.9304,0.1746,0.3241,-0.6122,-0.7212,0.3246,-0.8543,-0.4059,0.3247,-0.9051,-0.2745,0.3249,0.028,-0.9453,0.3249,-0.3326,0.8853,0.3265,-0.7066,0.6278,0.3269,-0.8967,-0.2985,0.327,-0.254,-0.9102,0.3277,-0.9335,0.1454,0.3278,-0.3029,-0.8949,0.3278,0.5379,-0.7767,0.3281,-0.7803,0.5325,0.3297,0.0776,0.9409,0.3306,0.8787,0.3443,0.3307,0.2756,-0.9026,0.331,-0.4746,-0.8156,0.3312,0.6524,-0.6817,0.3317,-0.8333,0.4423,0.3325,-0.9303,0.1549,0.3332,-0.9176,0.2168,0.3337,0.1893,0.9235,0.3353,-0.3996,-0.8532,0.3357,-0.9287,0.1577,0.3359,0.2622,-0.9047,0.336,-0.6322,0.6982,0.3363,-0.5626,0.7553,0.3365,-0.8768,0.3435,0.3365,-0.3318,-0.8813,0.337,0.894,-0.2953,0.3379,0.1072,-0.9351,0.3386,-0.9309,-0.1372,0.3387,-0.0098,0.9408,0.3392,-0.9406,-0.018,0.3394,-0.8936,0.2938,0.3399,-0.8537,0.3946,0.3417,0.794,0.5027,0.342,-0.7378,0.582,0.3428,-0.8941,0.2883,0.3429,0.0942,0.9346,0.3437,-0.6548,-0.6732,0.3439,-0.2614,0.9019,0.344,-0.722,0.6003,0.3442,-0.0864,0.9349,0.3443,-0.7779,0.5257,0.3444,-0.9321,0.1118,0.3461,-0.5387,0.7681,0.3465,0.645,-0.6811,0.3472,-0.8249,0.4461,0.3477,-0.7682,0.5375,0.3504,0.7052,0.6163,0.3509,-0.3927,0.8501,0.3509,-0.4818,-0.803,0.351,-0.1329,-0.9269,0.3523,-0.5976,0.7203,0.3524,-0.6343,-0.6881,0.3531,-0.898,0.2627,0.3532,-0.8623,0.363,0.3539,0.3472,-0.8684,0.3541,0.511,-0.7832,0.3552,0.5826,0.7311,0.3562,-0.8967,0.2627,0.3566,-0.9214,0.1544,0.3569,-0.9341,0.0055,0.3572,-0.1258,0.9255,0.3574,-0.8989,0.2534,0.3576,0.2823,0.8902,0.3584,0.4192,-0.8342,0.3585,0.0459,-0.9324,0.36,-0.8289,-0.4282,0.3606,-0.9279,-0.0947,0.3607,-0.8484,0.3874,0.3608,0.8,-0.4794,0.3614,-0.8885,-0.2827,0.3623,-0.8823,0.3006,0.3627,-0.7762,0.5157,0.3635,-0.9188,0.1538,0.3644,-0.0134,0.9312,0.3655,-0.9258,0.0963,0.3658,-0.9138,0.1767,0.3659,0.897,-0.2479,0.3663,-0.8505,-0.3775,0.3663,-0.0986,0.9253,0.3669,-0.7519,0.5478,0.3673,0.5334,-0.762,0.3675,-0.3752,0.851,0.3676,-0.6566,0.6586,0.3681,0.5697,0.7348,0.3682,0.7152,0.594,0.369,0.5387,0.7574,0.3691,-0.7808,0.504,0.3695,0.2962,-0.8808,0.3711,0.4023,-0.837,0.3726,-0.8723,-0.3167,0.373,0.8638,0.3388,0.3733,-0.3756,-0.8483,0.3743,-0.9177,0.1333,0.3755,-0.0631,0.9247,0.3779,-0.6855,0.6223,0.3782,-0.4655,-0.8002,0.3793,-0.0188,0.9251,0.3795,0.7716,-0.5105,0.3807,-0.5668,0.7306,0.382,-0.0039,-0.9242,0.382,-0.8633,-0.3299,0.383,-0.8999,0.2086,0.3834,0.441,0.8115,0.3842,-0.7642,0.5181,0.3851,-0.8571,0.3423,0.3853,-0.9036,0.1874,0.3853,-0.4208,-0.8212,0.3859,-0.5629,0.7309,0.3864,-0.9109,0.1451,0.3867,-0.9032,0.1863,0.3888,-0.891,0.2345,0.3892,0.6189,0.6822,0.3896,-0.4063,-0.8265,0.3898,-0.8183,0.4223,0.3902,-0.5572,0.733,0.3903,-0.9176,-0.0752,0.3909,-0.2079,0.8966,0.3913,-0.766,0.5101,0.3916,-0.4442,0.8058,0.3928,0.1705,-0.9037,0.3942,0.4089,0.823,0.3944,0.7103,-0.583,0.3947,-0.7066,0.5873,0.3952,0.0189,-0.9184,0.3961,-0.887,0.2372,0.3965,0.6875,-0.6083,0.3975,-0.8854,0.2408,0.3984,0.5632,0.724,0.3994,-0.7739,0.4915,0.4002,0.8055,-0.437,0.4009,0.7672,0.5007,0.4014,-0.2261,0.8876,0.4027,0.8963,-0.1855,0.4035,-0.5909,0.6986,0.4039,0.8476,0.344,0.4041,-0.5458,-0.734,0.4053,-0.2549,0.8779,0.406,-0.0244,-0.9135,0.4064,0.3699,0.8355,0.4069,-0.8864,-0.2207,0.4074,0.8932,-0.1901,0.4076,-0.0517,-0.9117,0.4092,0.8983,-0.1602,0.4093,-0.8538,-0.3218,0.4097,0.2056,-0.8888,0.4111,0.8198,-0.3986,0.4171,-0.2458,0.875,0.4187,0.6719,0.611,0.419,-0.8173,-0.3956,0.4194,-0.8615,-0.2863,0.42,-0.9064,-0.046,0.4219,0.7888,0.447,0.4219,0.4001,0.8136,0.4221,-0.6486,0.6334,0.4231,0.7008,-0.5743,0.4235,-0.2534,0.8697,0.4241,-0.8878,0.1788,0.4244,-0.6811,-0.5967,0.4252,0.1766,-0.8877,0.4257,-0.8687,0.2533,0.4258,0.6775,0.5997,0.4274,-0.8757,0.2247,0.428,-0.848,-0.3125,0.4293,-0.5615,-0.7074,0.4296,-0.2189,0.8761,0.4297,-0.5305,-0.7307,0.4298,0.1027,-0.8971,0.43,-0.446,0.785,0.4303,-0.6212,0.6549,0.4315,-0.5286,0.731,0.4321,-0.8925,-0.1293,0.4329,0.1092,0.8948,0.4333,-0.8284,0.3548,0.4346,-0.5203,0.7351,0.435,-0.0307,0.8999,0.4352,-0.7128,-0.55,0.4355,-0.4667,0.7697,0.4365,0.2675,-0.859,0.4368,-0.0755,-0.8964,0.4371,0.3881,-0.8114,0.4371,-0.8915,-0.1193,0.4373,-0.7188,0.5404,0.4379,0.3647,-0.8217,0.4382,-0.8311,0.3424,0.4385,-0.8755,-0.2031,0.4387,-0.5494,0.7111,0.4395,-0.6743,-0.5935,0.4397,-0.045,-0.897,0.4398,0.5176,0.7339,0.44,0.1816,0.8794,0.4404,0.0821,-0.894,0.4412,-0.0236,0.8971,0.4412,-0.8974,0.006,0.4421,0.6939,0.5684,0.4425,-0.6859,0.5777,0.4431,0.4462,0.7775,0.4439,-0.852,-0.2776,0.444,-0.2937,-0.8465,0.4441,-0.4304,-0.7858,0.4446,0.4986,0.7441,0.4452,-0.7389,-0.5058,0.4457,-0.3445,0.8263,0.4472,-0.888,0.1074,0.4477,0.532,0.7187,0.4481,-0.1618,-0.8792,0.4484,0.7842,0.4289,0.4498,-0.0265,0.8927,0.4508,-0.4799,-0.7526,0.4526,-0.2815,0.8461,0.4529,-0.0893,0.8871,0.4529,0.4357,-0.7778,0.454,0.6629,-0.5954,0.4542,0.864,-0.2173,0.4543,0.1856,-0.8713,0.4543,-0.8809,-0.1328,0.4553,0.6881,-0.565,0.4591,-0.4687,0.7546,0.4592,0.2763,-0.8443,0.4598,0.796,-0.3937,0.4601,-0.5684,0.6821,0.4603,0.0145,-0.8877,0.4617,-0.5305,-0.7109,0.4627,-0.7709,-0.4377,0.4628,0.4956,-0.735,0.4631,-0.8757,0.1369,0.4638,0.8717,-0.1581,0.4643,0.2899,0.8369,0.465,-0.7908,-0.398,0.4656,-0.3025,0.8317,0.466,-0.5544,0.6896,0.4663,-0.1164,0.877,0.4663,-0.2216,-0.8564,0.4675,-0.3061,0.8293,0.4679,-0.0242,0.8834,0.4681,0.1711,-0.8669,0.4682,-0.6574,0.5904,0.4685,-0.483,0.7398,0.4687,0.6313,-0.6179,0.4688,-0.8116,0.3486,0.4688,-0.1213,-0.8749,0.4689,0.1172,0.8755,0.4698,0.634,-0.6143,0.4703,-0.4965,-0.7296,0.4724,0.1317,0.8715,0.4732,0.6772,0.5634,0.4733,-0.88,0.0394,0.4737,-0.8132,0.3381,0.474,-0.7737,-0.4204,0.4754,-0.1755,0.8621,0.4758,-0.4748,0.7404,0.4768,-0.1149,0.8715,0.4769,0.1081,0.8723,0.4775,0.4211,0.7712,0.4775,0.1691,-0.8622,0.4777,0.4134,-0.7752,0.4781,-0.8689,0.1281,0.4792,0.85,-0.2186,0.4802,-0.121,0.8687,0.4836,-0.2962,0.8237,0.4856,-0.8195,0.3043,0.4865,0.6529,-0.5806,0.4869,-0.5558,0.6738,0.4892,-0.5994,0.6336,0.4901,0.8538,-0.1758,0.4915,-0.5851,-0.6451,0.4924,-0.0118,-0.8703,0.4924,-0.6052,0.6255,0.4927,-0.5424,0.6805,0.4945,-0.1809,0.8501,0.495,0.3817,0.7806,0.4967,0.2778,0.8223,0.4976,-0.4651,-0.7322,0.4989,-0.4647,0.7316,0.4991,0.2386,-0.8331,0.4995,0.7818,-0.3732,0.4998,-0.5141,0.6971,0.4999,-0.3112,-0.8083,0.5006,-0.7836,-0.368,0.5012,-0.8611,-0.086,0.5026,0.7866,0.3587,0.5031,-0.6307,0.5909,0.5038,-0.8366,-0.2153,0.505,0.0724,-0.8601,0.505,-0.4631,-0.7283,0.5068,-0.7264,-0.4643,0.5068,-0.4542,0.7327,0.5072,-0.2422,0.8271,0.5075,-0.2586,0.8219,0.508,-0.8029,0.3119,0.5083,0.3904,0.7676,0.5084,-0.7826,0.3592,0.5088,-0.8585,-0.0636,0.5089,-0.6056,-0.6118,0.5094,-0.4135,0.7547,0.5115,-0.4453,0.7349,0.5118,-0.1841,-0.8391,0.5124,0.4228,-0.7475,0.5127,-0.3261,-0.7943,0.513,-0.8338,0.2038,0.5142,-0.6901,-0.5093,0.5188,-0.4558,0.7233,0.5189,0.5469,0.657,0.5191,-0.8547,-0.0042,0.5207,0.8535,0.0192,0.521,-0.6758,0.5213,0.5239,0.4172,-0.7426,0.5239,0.1079,-0.8449,0.524,-0.819,0.2338,0.5257,0.3505,0.7751,0.5265,-0.8454,0.0904,0.5296,0.4987,-0.6861,0.5297,-0.704,-0.4731,0.5303,0.0012,0.8478,0.5306,0.1048,0.8411,0.533,0.668,0.5192,0.5337,-0.4253,-0.7309,0.5338,0.7042,0.4681,0.5345,-0.8447,0.0285,0.5352,0.7564,0.376,0.5366,-0.2099,0.8173,0.537,-0.316,-0.7821,0.5375,-0.5149,-0.6679,0.5376,-0.4604,0.7064,0.5401,0.7239,-0.4293,0.5405,0.8277,-0.1511,0.5407,0.8088,0.2312,0.5412,0.3259,-0.7752,0.5424,-0.5161,0.6629,0.5449,-0.3006,0.7828,0.545,-0.7599,-0.3541,0.5451,-0.4643,0.6981,0.546,-0.367,0.7531,0.5462,-0.8365,0.0437,0.5468,0.3492,0.761,0.5472,-0.8221,0.1572,0.5475,0.8265,0.1309,0.5481,-0.6139,-0.5681,0.5496,-0.8184,0.168,0.5496,-0.4435,0.708,0.5498,-0.7444,0.379,0.5506,-0.4981,0.6699,0.5514,-0.8332,0.0407,0.5519,-0.2251,0.803,0.552,-0.4278,-0.7157,0.5521,-0.7928,0.2581,0.5527,-0.8308,0.0649,0.5528,0.3147,0.7716,0.5534,-0.6248,0.5508,0.5537,-0.6867,0.4709,0.5543,0.8159,-0.1644,0.555,-0.8309,-0.0401,0.5552,0.114,0.8238,0.5553,0.6443,-0.5259,0.5556,-0.8231,0.1175,0.5579,0.6594,0.5039,0.5584,0.0828,0.8254,0.5587,-0.7552,-0.3427,0.5592,0.1768,-0.8099,0.56,0.6104,-0.5602,0.5612,-0.4125,-0.7175,0.5624,0.6965,0.4457,0.5626,-0.5399,0.626,0.5647,0.0777,0.8216,0.5656,-0.7625,0.3143,0.5662,-0.8143,0.1279,0.5664,0.3561,0.7432,0.5671,-0.8156,0.1145,0.5673,0.2848,-0.7727,0.5676,0.1915,0.8008,0.5683,-0.8193,-0.0762,0.5711,-0.8164,0.0863,0.5715,0.8096,-0.1337,0.5716,0.2184,0.791,0.572,-0.8083,0.1396,0.5723,-0.7652,0.2947,0.5725,0.2978,-0.7639,0.5725,0.8021,-0.1699,0.5729,-0.7534,-0.3228,0.5731,-0.1333,0.8086,0.5738,0.5734,0.5848,0.574,0.2515,0.7793,0.5741,-0.7712,-0.2752,0.5741,-0.8161,-0.066,0.5743,-0.3929,0.7182,0.5745,0.4124,-0.707,0.5751,-0.1657,0.8011,0.5789,0.6068,0.5446,0.579,-0.8149,0.0274,0.5791,-0.5863,0.5665,0.5808,-0.3616,-0.7293,0.5811,-0.8138,-0.0029,0.582,0.1852,0.7918,0.5821,0.7948,0.1717,0.5822,0.8077,-0.0931,0.5842,-0.806,0.0951,0.5844,0.8038,0.1112,0.5847,-0.0845,0.8068,0.5848,0.0157,0.811,0.5849,0.0063,-0.8111,0.5856,-0.4646,-0.6642,0.5859,-0.7705,0.2509,0.5864,-0.0489,0.8085,0.5869,-0.4276,-0.6875,0.5899,0.2353,0.7724,0.59,-0.727,0.3513,0.5912,0.7074,-0.3874,0.5923,-0.145,-0.7926,0.593,-0.6805,-0.4305,0.5939,-0.1714,0.786,0.5944,-0.3492,-0.7244,0.5946,0.7293,-0.3385,0.5954,0.4597,0.659,0.5954,-0.7792,0.196,0.5979,0.7997,-0.0554,0.6008,-0.3225,0.7314,0.6011,0.2726,-0.7512,0.6038,-0.7903,0.1038,0.6048,-0.7941,0.06,0.6051,-0.7952,-0.0389,0.6054,-0.341,-0.7192,0.606,-0.7886,-0.1044,0.6069,-0.7947,-0.0109,0.6069,0.1435,0.7817,0.6082,-0.2297,0.7598,0.6089,-0.1509,0.7787,0.6093,0.7925,0.0272,0.6102,-0.4227,0.6701,0.6106,0.79,0.055,0.6107,-0.6162,-0.4973,0.6111,-0.1817,0.7704,0.6112,-0.3686,0.7004,0.6118,0.1296,0.7803,0.6121,-0.3772,0.695,0.613,0.7877,-0.0603,0.6137,-0.6122,-0.4986,0.6139,-0.4502,0.6484,0.6144,0.7631,0.2003,0.6158,-0.6445,0.4533,0.6162,0.4957,-0.612,0.6164,-0.3458,0.7074,0.6173,-0.5302,-0.5813,0.6173,0.5886,-0.522,0.6178,-0.7,0.3582,0.6184,0.3342,-0.7113,0.6184,-0.1758,0.7659,0.6189,0.2874,0.731,0.6192,-0.3835,0.6853,0.6198,0.6049,0.4999,0.6199,-0.3629,0.6957,0.6207,-0.4643,0.6318,0.6209,0.7338,-0.2757,0.621,0.2606,-0.7392,0.6228,-0.1407,0.7697,0.6235,-0.3632,-0.6924,0.6237,0.4783,0.6183,0.6245,-0.1748,-0.7612,0.6247,-0.4506,0.6377,0.6254,0.6838,0.3759,0.6257,-0.2848,0.7263,0.626,0.485,-0.6106,0.6265,-0.7303,0.2723,0.6267,-0.5096,0.5895,0.6282,-0.4502,0.6346,0.6284,-0.6252,0.4629,0.6286,-0.2648,0.7313,0.6297,-0.4651,0.6222,0.6299,-0.2647,0.7302,0.6302,-0.7107,-0.3126,0.6319,-0.7329,0.2522,0.6321,-0.0798,-0.7708,0.6323,0.6218,-0.4622,0.6328,-0.6522,0.4172,0.634,-0.0193,-0.7731,0.6356,-0.772,-0.0025,0.6365,-0.6122,0.4691,0.637,-0.537,0.5531,0.6384,-0.1709,0.7505,0.6385,-0.1709,0.7504,0.6385,-0.0024,-0.7696,0.6397,0.5883,-0.4946,0.6401,-0.7469,-0.18,0.6407,0.5852,-0.4971,0.6412,-0.0319,-0.7667,0.6417,-0.7578,0.1182,0.6418,0.7253,-0.2489,0.642,-0.0258,0.7663,0.6421,-0.4526,0.6187,0.6423,0.1795,-0.7452,0.643,-0.1054,0.7586,0.6439,0.1723,0.7454,0.644,0.5176,-0.5634,0.6446,0.7493,-0.1522,0.6463,-0.757,-0.0964,0.6471,-0.7573,-0.0877,0.6481,0.5328,-0.5441,0.6492,0.3193,0.6904,0.6494,-0.5995,0.4678,0.6495,-0.194,-0.7352,0.6497,0.3005,-0.6983,0.6501,0.0938,0.754,0.6502,0.7449,-0.1496,0.651,-0.7548,0.0803,0.6515,-0.651,0.3896,0.6518,0.1037,0.7513,0.6519,-0.5302,-0.5421,0.6522,0.5072,-0.5634,0.6532,0.7572,0.0026,0.6535,-0.7542,-0.0642,0.6543,0.295,-0.6963,0.6553,0.443,-0.6119,0.6554,0.1851,-0.7322,0.6557,0.051,0.7533,0.6582,-0.6848,0.3128,0.659,-0.3338,-0.674,0.6592,-0.457,0.5971,0.6598,-0.7483,-0.0681,0.6598,0.7006,0.2716,0.6612,-0.5572,0.5023,0.6618,-0.3849,0.6433,0.6619,0.5795,-0.4755,0.662,-0.6399,-0.3903,0.6621,-0.3065,0.6839,0.6624,-0.2208,-0.7159,0.6627,0.7486,0.0212,0.663,0.4868,-0.5688,0.6639,-0.653,0.3643,0.6647,-0.1193,0.7375,0.665,-0.3106,0.6792,0.6654,-0.4599,-0.588,0.6662,0.4651,0.583,0.6669,-0.6913,0.2782,0.6677,-0.7325,0.1329,0.6688,-0.2108,0.7129,0.6692,-0.5506,0.499,0.6695,0.0622,0.7402,0.6697,-0.7315,0.1283,0.6699,-0.6111,0.4216,0.6718,-0.7335,0.1031,0.6732,0.1563,0.7228,0.6732,-0.6731,0.3062,0.6737,0.7013,0.233,0.6743,-0.4925,0.5502,0.6744,-0.736,-0.0582,0.6745,0.6916,-0.2583,0.6747,-0.4036,0.6179,0.6751,-0.2059,0.7084,0.6752,-0.4248,-0.603,0.6753,-0.7113,0.1948,0.677,0.7136,-0.1802,0.6771,0.479,-0.5587,0.6782,-0.4074,-0.6116,0.679,-0.7286,0.0899,0.6791,0.6245,-0.3857,0.6792,-0.7328,-0.0422,0.6794,-0.7184,-0.1495,0.6796,-0.4858,0.5496,0.6805,0.2431,0.6913,0.6811,0.6265,0.3791,0.6823,-0.0652,-0.7282,0.6827,-0.6849,0.2547,0.6833,0.6294,0.37,0.6848,0.6227,0.3784,0.6859,-0.0654,0.7247,0.6869,0.2593,0.6789,0.6872,-0.7262,0.0223};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=4 */
		private double[] getNormal_6_110_vector_4()
		{
			double[] value = {0.6878,-0.36,-0.6303,0.6895,-0.1854,0.7002,0.6896,-0.5884,0.4222,0.6896,-0.4612,0.5583,0.6899,0.1303,0.7121,0.6904,-0.6924,0.2097,0.6907,-0.0427,-0.7219,0.6918,-0.5762,-0.4352,0.6924,-0.0981,0.7148,0.6924,0.1226,-0.711,0.6927,-0.686,0.2226,0.6935,0.0732,0.7168,0.6935,-0.623,-0.3617,0.6937,-0.599,0.4,0.6942,0.348,-0.63,0.6947,0.2831,0.6613,0.6948,0.1244,-0.7083,0.6949,-0.7191,-0.0063,0.6959,0.5111,0.5045,0.6961,0.6995,0.1617,0.6966,-0.6931,0.1855,0.6971,-0.6958,0.1729,0.6974,0.6405,0.3215,0.6975,-0.2365,0.6764,0.6977,-0.692,0.1854,0.6986,-0.0223,-0.7151,0.6989,-0.7151,0.0117,0.699,0.1922,0.6888,0.6998,0.1258,0.7032,0.6999,0.4375,-0.5646,0.7004,0.2043,-0.6838,0.7005,-0.1011,0.7065,0.7005,-0.6483,0.2984,0.7007,-0.6977,0.1492,0.7018,0.0538,0.7104,0.7027,0.087,0.7061,0.7028,0.6836,0.1971,0.7032,0.437,-0.5608,0.7034,-0.0569,0.7085,0.7043,-0.3564,0.6139,0.7044,-0.4099,0.5795,0.7051,-0.4398,0.5562,0.7059,0.2438,-0.665,0.7068,-0.21,-0.6755,0.7074,0.6223,-0.3352,0.7087,-0.6005,0.3702,0.7097,0.2344,0.6643,0.7099,0.1595,0.686,0.7101,0.5557,0.4325,0.7107,0.6368,-0.299,0.7109,-0.0962,0.6967,0.7115,-0.0036,0.7027,0.7116,0.6253,-0.3204,0.7118,-0.4458,0.5428,0.7125,0.1805,0.6781,0.7127,-0.5771,-0.3988,0.7135,0.3728,0.5933,0.7136,-0.5135,-0.4766,0.7143,-0.6695,0.2039,0.7149,0.6961,-0.0667,0.7149,0.3151,0.6242,0.7152,-0.6756,-0.1792,0.7154,0.4943,-0.4938,0.7157,-0.6825,0.148,0.7162,0.6651,0.2116,0.7162,-0.1816,0.6738,0.7165,-0.5976,0.3598,0.7168,-0.6967,-0.0288,0.7169,-0.464,0.5203,0.717,-0.6396,-0.2773,0.7172,-0.3722,-0.5891,0.7178,-0.4217,-0.5541,0.718,0.5815,-0.3824,0.7193,-0.0795,0.6902,0.7204,-0.3457,-0.6013,0.7205,-0.3457,0.6012,0.7208,-0.6913,-0.0505,0.7209,0.6929,-0.0074,0.7214,-0.4268,0.5454,0.723,-0.5295,0.4437,0.724,0.4161,0.5502,0.7242,0.3939,-0.566,0.7253,0.647,0.2351,0.7264,-0.5228,0.4461,0.7269,-0.5963,-0.3406,0.7271,-0.3497,-0.5908,0.7273,-0.6409,-0.2454,0.7278,-0.4647,-0.5044,0.7279,-0.2439,0.6408,0.728,-0.2574,-0.6355,0.7282,-0.4661,-0.5025,0.7286,0.6255,-0.2792,0.7287,-0.5137,0.4528,0.7291,-0.423,-0.538,0.7294,0.6212,-0.2864,0.7307,-0.6113,0.304,0.7313,0.3221,0.6012,0.7316,-0.0764,0.6775,0.732,0.3867,-0.5609,0.7323,-0.6435,-0.223,0.7327,-0.0507,-0.6787,0.7332,0.6639,-0.1469,0.7349,-0.6772,0.0351,0.7352,-0.1327,0.6648,0.7352,0.1587,-0.659,0.7366,-0.2618,0.6236,0.737,-0.2975,-0.6069,0.7371,-0.2668,-0.6209,0.7375,-0.4154,-0.5325,0.7376,0.6274,-0.2496,0.738,-0.5619,-0.3736,0.7383,0.2051,0.6426,0.739,-0.6669,0.0958,0.7391,0.6734,0.0163,0.7397,-0.0428,0.6716,0.7398,-0.3216,0.591,0.7402,-0.2782,0.6122,0.7418,0.5947,-0.31,0.7418,0.3806,-0.5521,0.7435,0.4642,0.4815,0.7438,-0.371,0.556,0.7439,-0.1108,0.6591,0.7449,0.1198,-0.6563,0.745,-0.4742,-0.4693,0.7466,-0.4036,-0.5288,0.7468,-0.4498,-0.4899,0.7471,0.1704,-0.6425,0.7472,0.2481,-0.6165,0.7473,-0.3844,-0.542,0.7488,0.1556,0.6442,0.7494,0.536,-0.3887,0.7495,0.6617,-0.02,0.7499,-0.4273,-0.505,0.75,0.0949,0.6546,0.7504,-0.2287,0.6201,0.7517,-0.6579,-0.0467,0.7518,0.5817,0.3104,0.754,-0.4547,-0.4741,0.7542,0.5439,0.3679,0.7543,-0.3294,0.5679,0.7545,0.4546,-0.4733,0.7548,0.589,-0.2888,0.7552,-0.3578,0.5492,0.7559,0.5735,-0.3159,0.7565,-0.3409,0.5581,0.7579,-0.498,0.4215,0.758,0.1356,-0.638,0.7584,-0.6324,0.158,0.7586,-0.4492,0.472,0.7591,-0.3769,0.5308,0.7591,0.5933,0.2679,0.7596,0.5847,-0.2847,0.7606,-0.183,0.6229,0.7609,0.2035,-0.6161,0.7619,0.3181,-0.5642,0.7632,-0.1874,0.6184,0.7638,-0.549,-0.3394,0.7638,0.3578,-0.5372,0.7642,0.6049,-0.2237,0.7642,-0.4746,0.4367,0.7642,-0.2095,0.6099,0.7648,-0.0842,0.6387,0.7648,0.242,-0.597,0.7651,-0.4237,0.4849,0.7658,-0.3389,0.5465,0.7667,0.1835,-0.6152,0.767,0.2065,-0.6074,0.7673,0.295,-0.5695,0.7675,0.5539,0.3227,0.7676,-0.4434,0.4629,0.768,0.3855,-0.5114,0.7682,-0.6176,0.1685,0.7691,0.2938,0.5676,0.7697,-0.6258,0.1261,0.7699,0.6371,-0.0359,0.7703,0.2904,0.5678,0.7705,0.6057,-0.1985,0.7708,0.0917,0.6304,0.7723,0.6317,0.0676,0.7742,-0.6077,-0.1769,0.7747,0.6079,-0.174,0.776,0.63,0.0302,0.7765,0.2407,0.5823,0.7771,0.3312,0.5352,0.7772,-0.3437,0.5271,0.7774,-0.3781,0.5027,0.7779,-0.6026,0.1782,0.778,-0.1815,0.6014,0.7781,0.5798,0.2417,0.7781,-0.6277,0.0214,0.7796,-0.4241,-0.4608,0.7796,-0.5917,-0.205,0.7797,0.6258,-0.0201,0.7806,-0.2994,0.5486,0.7814,-0.5423,0.3087,0.7822,-0.2118,-0.586,0.7824,-0.47,0.4085,0.7831,0.5048,-0.3632,0.7836,0.1696,-0.5977,0.7837,0.4255,0.4525,0.7845,-0.5999,-0.1572,0.7847,-0.5626,-0.2601,0.7849,0.0095,0.6196,0.7858,-0.3195,-0.5296,0.7866,0.5914,0.1773,0.7869,-0.2961,0.5415,0.787,-0.6092,0.0971,0.7871,-0.5437,-0.2913,0.7876,-0.2616,0.5579,0.7876,-0.4579,0.4122,0.7879,-0.5237,-0.3239,0.7887,-0.572,-0.2251,0.7897,0.5178,0.3291,0.7903,-0.5588,-0.2514,0.7909,-0.5662,-0.2319,0.791,-0.3372,0.5106,0.7913,-0.5811,0.1901,0.7926,-0.6085,-0.0391,0.7927,0.1954,0.5775,0.7933,-0.5442,0.273,0.7939,-0.5571,0.2435,0.7948,0.423,-0.4353,0.795,-0.2203,-0.5652,0.795,0.1208,-0.5944,0.7966,-0.5274,-0.2954,0.7978,-0.2066,0.5664,0.799,-0.4868,0.3529,0.799,-0.6001,0.0387,0.7996,0.5354,0.272,0.8002,0.5933,-0.0875,0.8006,-0.5784,-0.1564,0.8008,0.5762,0.1635,0.8024,-0.2999,0.516,0.8024,-0.1988,0.5627,0.8041,-0.2546,0.5372,0.8062,-0.4216,0.415,0.8065,0.1158,-0.5798,0.8065,-0.0697,0.5871,0.8066,-0.2012,0.5558,0.8067,-0.4635,0.3666,0.807,0.5298,0.2609,0.8078,-0.5415,0.2328,0.808,0.3615,0.4652,0.809,0.3653,0.4605,0.8092,0.2733,-0.5201,0.8094,-0.5026,0.3038,0.8096,-0.1718,0.5613,0.8098,-0.573,-0.1257,0.8101,-0.4951,0.314,0.8108,-0.2125,0.5454,0.8114,-0.4836,0.3282,0.8118,-0.3942,-0.4308,0.8121,0.3214,-0.487,0.8122,-0.245,0.5294,0.814,-0.3185,0.4858,0.8145,0.2889,0.503,0.8154,-0.2222,0.5346,0.8156,-0.554,-0.1667,0.8157,0.5743,-0.0696,0.816,-0.1494,0.5584,0.8163,-0.5754,-0.0501,0.8178,0.563,-0.1192,0.8184,0.2254,-0.5287,0.8185,-0.2017,0.538,0.8185,-0.2877,0.4972,0.819,-0.5736,-0.0146,0.8192,0.3642,0.443,0.8194,-0.2115,-0.5328,0.8196,-0.0184,0.5727,0.8203,-0.169,0.5464,0.8205,0.1089,-0.5611,0.8209,-0.5656,0.0792,0.821,-0.5639,-0.0897,0.8213,-0.2373,0.5188,0.8232,0.2112,0.5269,0.8238,-0.4792,0.3029,0.824,-0.4338,0.3644,0.8241,-0.5273,0.2068,0.8248,-0.286,-0.4878,0.8249,0.0802,0.5595,0.8258,-0.3756,0.4207,0.826,0.3982,0.3989,0.8266,0.2075,0.5232,0.8273,0.5343,-0.1736,0.8283,-0.3722,0.4187,0.8285,0.1304,-0.5446,0.8286,0.5201,-0.207,0.83,-0.5371,-0.1506,0.8302,0.005,-0.5574,0.8306,-0.3895,-0.398,0.8309,-0.0662,0.5525,0.8318,0.1824,-0.5243,0.832,-0.553,-0.0442,0.832,0.2266,0.5064,0.8323,0.4041,0.3794,0.8328,-0.3312,0.4436,0.8328,-0.2097,-0.5123,0.8329,-0.5212,-0.1859,0.8333,-0.5388,-0.1235,0.8334,-0.5524,-0.0181,0.8336,-0.5065,0.2206,0.8361,0.2437,-0.4915,0.8363,-0.4888,-0.2484,0.8363,0.3167,0.4475,0.8368,-0.545,-0.0515,0.837,0.4017,-0.3717,0.8372,-0.0299,0.5461,0.8385,-0.5446,0.0186,0.8386,-0.5423,0.0512,0.8389,-0.4191,0.3474,0.8401,0.1422,0.5234,0.8402,0.5047,0.1982,0.8411,0.0211,0.5405,0.8414,-0.3265,0.4306,0.8418,-0.5353,0.0693,0.8421,0.1953,-0.5028,0.8428,0.0064,0.5382,0.8428,0.5299,0.0942,0.843,-0.4829,-0.237,0.8438,-0.3459,0.4104,0.844,0.2391,-0.4801,0.8443,-0.239,-0.4796,0.8455,0.0675,0.5297,0.846,0.5163,-0.1334,0.8461,0.3826,0.371,0.8468,-0.5309,0.0316,0.848,-0.4928,-0.195,0.8482,-0.4241,0.3174,0.8493,0.0198,0.5275,0.8508,-0.4739,0.2269,0.8514,0.498,0.1648,0.8515,0.22,-0.476,0.8526,-0.3363,0.4,0.8526,0.5225,-0.003,0.8527,-0.1702,-0.4939,0.8543,-0.0633,-0.516,0.8546,-0.2592,-0.45,0.8548,-0.5165,-0.0503,0.856,-0.045,-0.515,0.8564,-0.3612,0.3689,0.8572,-0.4912,0.1547,0.8576,-0.4565,0.237,0.8589,-0.4988,-0.1165,0.8591,-0.3108,-0.4067,0.8596,0.3796,-0.3421,0.861,-0.4895,0.1381,0.8613,-0.4442,-0.2467,0.863,-0.4855,0.14,0.8631,-0.4354,-0.256,0.8645,-0.2933,0.4081,0.867,-0.0662,-0.4939,0.8677,0.4969,0.0133,0.8687,-0.3301,-0.3693,0.8697,-0.4927,0.0304,0.8703,-0.1705,0.4621,0.8703,0.0176,0.4922,0.8706,0.1783,-0.4585,0.8706,-0.022,0.4914,0.8708,0.4439,0.2112,0.8711,0.3369,0.3575,0.8711,-0.3684,-0.3247,0.8713,-0.0721,-0.4854,0.8725,-0.4443,-0.2034,0.8725,-0.4885,-0.0134,0.8738,0.2877,0.3921,0.874,0.3061,0.3775,0.8743,0.0716,-0.4802,0.8743,-0.4118,0.2569,0.8743,-0.0109,-0.4853,0.8745,-0.4563,-0.1644,0.8756,-0.2512,-0.4127,0.8764,0.4658,-0.1223,0.8771,-0.314,0.3635,0.8776,0.2381,0.4161,0.8777,0.0989,-0.469,0.8777,-0.0908,0.4705,0.881,0.2583,0.3963,0.8813,-0.2489,0.4016,0.8822,-0.0652,-0.4664,0.8822,-0.4662,0.0656,0.8831,-0.1562,0.4423,0.8832,-0.429,-0.1895,0.8845,-0.3256,0.3342,0.8846,-0.3696,-0.2845,0.887,0.4614,0.0195,0.8879,-0.1707,0.4272,0.889,0.2862,0.3575,0.8895,-0.1911,-0.4151,0.8898,-0.3484,-0.2947,0.8913,-0.0476,0.451,0.8915,0.0091,0.4529,0.8922,0.3779,0.2473,0.8923,-0.2831,0.3516,0.8928,-0.1927,0.407,0.8931,-0.2993,-0.3357,0.8943,-0.3363,0.2953,0.8948,-0.4241,0.1396,0.8954,-0.0658,0.4404,0.8954,-0.1965,-0.3995,0.8958,0.2675,-0.355,0.8962,0.2554,0.3627,0.8963,-0.4232,0.1324,0.897,0.4365,0.0705,0.8973,-0.2988,-0.3249,0.8975,-0.3233,0.2999,0.8986,-0.4264,0.1031,0.8987,-0.3196,0.3004,0.8996,0.4255,0.0983,0.8997,0.0303,0.4355,0.901,-0.1227,-0.4162,0.9011,-0.0761,0.4269,0.9015,0.2224,-0.3712,0.902,-0.4141,0.1218,0.9022,-0.428,-0.0529,0.9022,-0.3392,0.2663,0.9023,-0.1141,0.4156,0.9026,0.2232,-0.368,0.9035,-0.1823,0.3878,0.9037,-0.286,0.3185,0.9041,0.4029,0.1424,0.9047,-0.0618,-0.4216,0.9051,0.4241,0.0316,0.9058,0.357,-0.2283,0.906,-0.34,0.252,0.9064,0.3908,-0.1602,0.9073,-0.0095,-0.4204,0.9074,-0.4182,0.0427,0.9077,-0.3104,-0.2824,0.9094,-0.4046,-0.0966,0.9096,-0.1222,-0.397,0.9098,-0.4102,-0.0629,0.9099,-0.3603,0.2056,0.9103,-0.31,0.2742,0.9104,-0.3644,0.1959,0.9104,0.3569,-0.2092,0.9109,-0.0479,0.4099,0.9118,-0.3395,0.2309,0.912,-0.1822,-0.3674,0.9123,-0.3415,-0.2259,0.9125,0.2721,0.3055,0.9125,-0.0329,-0.4078,0.9125,-0.3459,0.2184,0.9127,0.1716,-0.3708,0.9136,0.3397,0.2234,0.9151,-0.3876,-0.1112,0.9152,0.0386,0.4012,0.9157,-0.1596,-0.3688,0.9159,0.3207,-0.2415,0.916,-0.3594,0.1785,0.916,0.2754,-0.2918,0.9162,0.0982,-0.3885,0.9162,-0.1879,0.3539,0.9163,-0.2667,-0.2986,0.9168,-0.1026,0.386,0.9173,0.3934,-0.061,0.9174,0.185,0.3524,0.9174,0.2242,0.3287,0.9181,0.3172,0.2376,0.9187,0.3103,-0.2445,0.9188,-0.0297,-0.3937,0.9189,-0.3669,0.1446,0.9199,-0.3731,-0.1207,0.9202,-0.3886,-0.0469,0.9206,-0.3509,-0.1715,0.9209,0.1578,0.3563,0.921,0.2175,-0.3232,0.9211,-0.2869,-0.2633,0.9211,-0.3884,0.0264,0.9212,-0.3871,0.0378,0.9216,-0.3022,-0.2437,0.9218,-0.1659,0.3503,0.922,0.0446,0.3845,0.9227,-0.3749,-0.0899,0.9235,0.2354,-0.3028,0.924,0.2308,-0.3048,0.9241,0.3277,-0.1967,0.9241,0.3779,0.0562,0.9243,-0.3151,-0.2154,0.9244,0.3122,-0.2192,0.9248,0.1941,0.3272,0.9249,0.2168,-0.3123,0.9257,-0.3779,-0.019,0.926,0.3576,-0.1212,0.9265,0.1359,-0.3508,0.9267,0.2653,0.2661,0.9276,0.2922,-0.2326,0.9277,-0.2727,0.2552,0.9277,-0.3246,0.1845,0.9277,-0.2133,0.3064,0.9279,0.2908,-0.2334,0.9281,0.168,0.3322,0.9283,-0.2191,0.3005,0.9289,-0.0565,0.366,0.9299,-0.288,0.229,0.9301,0.0147,-0.3671,0.931,-0.3493,0.1057,0.9316,0.0428,-0.3611,0.9317,-0.363,0.0107,0.9331,-0.3562,0.049,0.9333,0.2921,-0.209,0.9334,-0.2321,0.2736,0.9339,-0.3555,0.0367,0.9346,-0.3541,-0.0323,0.9353,-0.0948,-0.341,0.9354,-0.1668,-0.3118,0.9356,-0.0933,0.3406,0.9364,-0.1679,-0.3081,0.937,-0.2626,0.2305,0.9376,-0.2783,-0.2084,0.9383,0.1493,-0.3119,0.9392,0.3403,-0.0446,0.9394,-0.3001,0.1656,0.9398,-0.218,0.263,0.9405,0.3152,0.1271,0.9407,-0.1869,-0.2831,0.9408,0.3089,-0.1399,0.9429,-0.3245,0.0751,0.9429,0.2822,-0.1768,0.9431,-0.0081,-0.3325,0.9447,-0.1045,0.3108,0.945,-0.3109,0.1017,0.9454,0.0951,-0.3118,0.9461,-0.3194,0.0531,0.9463,0.1874,0.2633,0.9466,0.3062,-0.1012,0.9472,0.0075,0.3206,0.9481,-0.1827,-0.2604,0.9482,-0.3143,0.0467,0.9487,0.1573,0.2741,0.9489,-0.1387,0.2834,0.949,-0.1837,0.2563,0.95,0.1632,-0.266,0.9506,-0.0116,0.3103,0.9506,-0.3098,-0.0192,0.9508,-0.309,0.0218,0.9516,-0.2703,0.1463,0.952,-0.0153,-0.3058,0.9522,0.3054,-0.011,0.9522,-0.2234,-0.2081,0.9526,0.222,-0.2082,0.953,-0.0528,0.2983,0.9532,0.2431,-0.1796,0.9539,-0.0183,0.2996,0.9541,-0.0797,0.2888,0.9544,-0.2939,0.053,0.9551,-0.1179,-0.2718,0.9551,-0.1098,0.2752,0.9554,-0.2843,-0.0805,0.9555,-0.1541,-0.2514,0.9563,0.1111,0.2704,0.9564,-0.0258,-0.2909,0.9573,-0.1607,0.2405,0.9573,0.0946,-0.273,0.9579,0.2153,-0.1902,0.9581,-0.0505,-0.2819,0.9581,-0.019,-0.2857,0.9583,-0.1657,-0.2326,0.9584,0.2466,-0.1441,0.9584,-0.2016,-0.2022,0.9584,-0.0788,0.2744,0.9585,-0.0302,-0.2834,0.9586,-0.1395,0.2484,0.9594,0.2567,-0.1173,0.9606,-0.0343,-0.2759,0.9611,-0.0512,0.2715,0.9619,0.2329,0.1429,0.9622,-0.0393,0.2695,0.9624,0.0871,0.2572,0.9627,-0.0706,-0.2611,0.9631,0.0772,0.2577,0.9636,-0.2235,0.1469,0.9637,-0.1757,0.2011,0.9637,-0.2527,0.0859,0.9641,0.0501,0.2609,0.9647,0.219,-0.1461,0.9654,0.2359,0.111,0.9655,0.1082,-0.2369,0.9666,-0.0892,0.2401,0.9671,-0.2539,0.0185,0.9672,-0.0945,0.2357,0.9679,-0.0718,0.241,0.9687,-0.101,0.2268,0.9691,0.2407,0.0544,0.9693,-0.2403,-0.0511,0.9696,0.008,-0.2445,0.9697,-0.2087,-0.1274,0.9701,-0.1062,-0.2182,0.9708,-0.1741,0.1652,0.9708,-0.2274,0.0766,0.971,-0.1036,0.2157,0.9717,-0.0234,-0.235,0.9719,-0.2087,0.1092,0.9719,0.0507,-0.2298,0.9729,-0.2305,0.0177,0.9731,0.2296,-0.0165,0.9732,0.1265,-0.1919,0.9736,0.2147,-0.077,0.9737,-0.076,0.215,0.9738,0.0547,0.2207,0.9738,0.0754,0.2143,0.9744,-0.0307,0.2229,0.9747,0.0666,0.2134,0.9756,-0.1991,0.0927,0.9756,0.2193,-0.0099,0.9766,-0.2124,0.0325,0.9768,0.0582,0.206,0.9771,-0.199,-0.0758,0.9776,-0.2091,-0.0224,0.9778,-0.0442,-0.2049,0.9779,-0.0868,-0.19,0.9782,0.1773,0.1082,0.9784,-0.0539,0.1995,0.9786,-0.2004,0.0471,0.9786,-0.2048,0.0182,0.9788,-0.0593,-0.1963,0.9788,0.1639,0.1229,0.9788,-0.0027,0.2046,0.9789,0.1413,-0.1475,0.9799,-0.1836,-0.0785,0.9805,0.1816,-0.0756,0.9805,0.0368,-0.1932,0.9807,0.0361,-0.1924,0.981,0.0336,-0.1912,0.9816,0.0576,-0.1821,0.9817,0.1187,0.1486,0.9819,-0.1085,-0.1553,0.9822,0.0058,0.1875,0.9823,-0.1837,0.0354,0.9825,0.1651,0.0865,0.9827,0.1678,0.0789,0.9827,-0.0894,-0.1622,0.9828,0.0486,0.1781,0.9842,0.1772,0.0039,0.9847,0.0967,-0.1449,0.9851,0.1689,-0.0328,0.9852,0.059,-0.1612,0.9852,-0.0759,0.1537,0.9855,0.1046,0.1335,0.9856,0.1658,-0.0331,0.9857,0.0889,-0.1431,0.9858,-0.008,0.1679,0.986,0.1588,0.0502,0.9861,-0.1467,0.0779,0.9864,0.1581,-0.0442,0.9865,-0.056,0.154,0.9866,0.04,-0.1582,0.9872,-0.032,0.1561,0.9873,-0.1541,0.038,0.9873,-0.0986,0.1244,0.9874,0.1079,-0.1155,0.9876,-0.0737,-0.1389,0.9876,0.157,0.0005,0.9877,0.1552,-0.0206,0.9877,0.133,-0.0821,0.988,-0.1061,0.1125,0.9882,-0.1533,0.0064,0.9882,-0.019,0.1517,0.9883,0.1517,-0.0139,0.9883,-0.0317,-0.1489,0.9883,-0.1057,0.1096,0.9884,-0.1471,-0.039,0.9886,0.1451,-0.0407,0.9891,-0.1462,-0.0159,0.9894,-0.1454,0.0024,0.9909,0.1332,-0.0184,0.9912,0.1323,0.0012,0.9916,-0.1264,-0.0278,0.9917,0.0987,-0.0827,0.9918,-0.1276,0.007,0.9919,0.1248,0.024,0.9919,0.0433,-0.1195,0.9922,0.108,0.0628,0.9923,-0.1081,-0.0597,0.9926,-0.0749,0.0951,0.9934,-0.107,-0.0412,0.9936,0.1132,-0.0046,0.9938,-0.0991,0.0511,0.9939,0.1093,0.0172,0.9939,0.1104,-0.0073,0.9941,0.1003,0.0422,0.9941,-0.0268,0.1053,0.9945,0.0917,0.0515,0.9945,-0.0984,0.0361,0.9946,0.0969,0.0362,0.9947,-0.0957,-0.038,0.9951,0.0432,-0.0885,0.9953,0.0954,-0.0184,0.9953,0.0711,0.0651,0.9954,0.09,0.0323,0.9955,-0.0221,0.0919,0.9956,0.0213,0.0908,0.9957,0.0817,0.0447,0.9957,-0.06,-0.07,0.9958,-0.0901,0.019,0.9958,-0.0898,-0.0157,0.9959,-0.001,0.0906,0.9961,-0.0805,-0.0374,0.9961,0.0779,-0.0413,0.9962,0.0864,0.0138,0.9962,-0.068,0.0541,0.9964,0.0696,-0.0475,0.9965,-0.0721,-0.0413,0.9966,0.0352,-0.0745,0.9967,0.0768,-0.0276,0.9967,-0.0404,0.0706,0.9967,-0.0002,0.0806,0.9968,0.0636,-0.0481,0.997,0.0614,-0.0462,0.9972,-0.0223,-0.0708,0.9975,0.0679,-0.017,0.9977,0.0679,-0.007,0.9977,-0.0332,0.0591,0.9978,0.0256,0.0614,0.9978,0.0419,-0.0512,0.998,0.0399,-0.0487,0.9982,-0.037,-0.0466,0.9983,0.0228,-0.0535,0.9984,-0.015,0.0544,0.9987,-0.0074,-0.0508,0.9987,-0.0126,-0.0492,0.9989,-0.04,0.0228,0.999,-0.0171,-0.0419,0.9992,0.014,0.0375,0.9992,0.0356,0.0151,0.9993,-0.0346,0.0138,0.9994,-0.0298,0.0188,0.9994,-0.0077,0.034,0.9994,0.0162,0.0293,0.9995,0.0224,0.0238,0.9995,0.0066,0.032,0.9995,-0.0291,0.0121,0.9996,0.0212,0.0178,0.9996,0.0255,0.0088,0.9997,-0.0058,0.022,0.9999,0.0081,0.007};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getethmoid2_Geo_5_115_coordIndex_2()
		{
			int[] value = {577,578,579,-1,561,560,580,-1,581,582,583,-1,584,585,586,-1,587,588,589,-1,590,591,592,-1,593,594,595,-1,596,597,598,-1,599,600,601,-1,602,603,323,-1,604,605,606,-1,607,608,609,-1,589,610,611,-1,612,613,614,-1,615,616,617,-1,618,619,620,-1,621,617,622,-1,623,624,595,-1,625,626,627,-1,628,629,595,-1,630,631,632,-1,633,625,634,-1,635,630,632,-1,636,637,635,-1,638,639,640,-1,641,642,643,-1,644,645,646,-1,647,648,422,-1,649,650,651,-1,649,534,648,-1,337,652,653,-1,413,654,655,-1,656,657,658,-1,659,660,661,-1,662,663,664,-1,665,666,667,-1,665,668,669,-1,662,670,671,-1,672,673,674,-1,673,658,661,-1,675,676,677,-1,678,679,677,-1,680,681,682,-1,683,684,685,-1,686,687,688,-1,689,690,684,-1,691,692,693,-1,694,692,691,-1,695,696,697,-1,698,699,700,-1,701,702,676,-1,703,704,705,-1,706,707,699,-1,708,709,710,-1,709,711,710,-1,712,713,714,-1,715,716,717,-1,663,718,664,-1,718,719,720,-1,721,722,720,-1,723,724,725,-1,726,727,728,-1,685,729,721,-1,730,724,723,-1,731,732,733,-1,734,735,736,-1,737,738,739,-1,740,741,742,-1,743,744,745,-1,746,742,747,-1,748,749,750,-1,751,752,753,-1,754,755,756,-1,757,749,758,-1,759,760,761,-1,762,763,764,-1,765,766,767,-1,768,769,770,-1,735,771,772,-1,773,774,775,-1,770,776,777,-1,778,779,780,-1,781,778,782,-1,783,784,785,-1,786,787,788,-1,789,790,791,-1,792,793,794,-1,795,796,797,-1,798,799,800,-1,798,801,799,-1,802,803,804,-1,803,782,778,-1,805,806,780,-1,807,808,809,-1,810,811,812,-1,813,814,815,-1,816,817,818,-1,819,820,821,-1,822,823,824,-1,825,826,827,-1,828,829,830,-1,831,832,833,-1,834,835,836,-1,837,838,839,-1,840,841,842,-1,842,843,840,-1,844,845,846,-1,841,847,842,-1,848,849,850,-1,851,852,853,-1,854,855,856,-1,857,858,859,-1,860,861,862,-1,850,863,864,-1,865,866,851,-1,867,868,869,-1,870,856,862,-1,871,860,858,-1,872,873,874,-1,875,876,877,-1,878,879,880,-1,881,882,883,-1,884,885,861,-1,886,887,888,-1,882,889,890,-1,891,886,892,-1,893,894,895,-1,889,896,897,-1,898,899,900,-1,901,902,903,-1,904,905,906,-1,899,898,907,-1,908,909,910,-1,911,912,913,-1,914,915,916,-1,917,918,919,-1,920,921,922,-1,923,916,924,-1,925,924,926,-1,927,928,929,-1,930,931,932,-1,930,932,933,-1,934,933,935,-1,936,937,938,-1,939,940,941,-1,942,939,943,-1,944,945,946,-1,947,948,949,-1,950,918,951,-1,911,919,952,-1,821,953,954,-1,955,956,957,-1,958,953,959,-1,960,961,962,-1,963,964,965,-1,966,960,967,-1,968,969,970,-1,971,972,964,-1,973,974,967,-1,975,976,977,-1,978,979,980,-1,981,982,983,-1,981,984,985,-1,986,987,988,-1,989,990,991,-1,992,993,994,-1,995,996,997,-1,993,998,999,-1,997,980,1000,-1,1001,1002,999,-1,1003,1004,812,-1,1005,1006,1007,-1,1008,1009,1010,-1,1011,1012,1013,-1,1014,1015,1016,-1,1017,1018,1019,-1,1012,1020,1021,-1,1022,1023,1024,-1,1025,1026,1027,-1,1028,1029,1030,-1,1031,1032,1033,-1,1034,1035,1036,-1,1037,1038,1039,-1,1040,1041,1042,-1,1041,1043,1042,-1,1044,1045,1046,-1,1047,1005,1048,-1,1049,1050,1051,-1,1052,1053,1054,-1,1055,1056,1057,-1,1058,1059,1060,-1,1059,1058,1061,-1,1062,1063,1064,-1,1065,1066,1067,-1,1068,1069,1070,-1,1071,1072,1073,-1,1074,1075,1076,-1,1077,1078,449,-1,1079,1080,1081,-1,1082,1083,1084,-1,1085,1086,1087,-1,1088,1089,1090,-1,1091,1092,1093,-1,1094,1095,1096,-1,1097,1098,1099,-1,1100,1016,1101,-1,1102,1103,1104,-1,1105,1106,1107,-1,1108,1109,1110,-1,1032,1111,1112,-1,1113,1114,1115,-1,1116,1112,1111,-1,1111,1117,1116,-1,1029,1118,1119,-1,1120,1121,1122,-1,1123,1124,1125,-1,1126,1127,1128,-1,1129,1130,1131,-1,1132,1133,1134,-1,1135,1136,1137,-1,1066,1138,1139,-1,1140,1141,1142,-1,1143,1144,1145,-1,1145,1146,1143,-1,1147,1148,526,-1,1149,1150,1151,-1,1152,1153,1154,-1,1154,1155,1152,-1,1156,1157,1158,-1,1159,1160,1004,-1,1161,1162,1163,-1,1164,1165,1166,-1,1167,1168,1169,-1,1170,1171,1172,-1,1173,1174,1175,-1,1173,1176,1177,-1,1178,1179,1180,-1,1181,1182,1183,-1,1184,1169,1185,-1,1186,1187,1188,-1,1189,580,1190,-1,1191,1192,1193,-1,1194,1195,1196,-1,1196,1197,1198,-1,1194,1199,1200,-1,1201,1202,1203,-1,1204,1205,1206,-1,1206,1112,1207,-1,1208,1209,1210,-1,1211,1212,1099,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getethmoid2_Geo_5_115_coordIndex_3()
		{
			int[] value = {1213,1107,1212,-1,1108,1103,1109,-1,1214,1215,1216,-1,1217,1218,1219,-1,1220,1221,1222,-1,1223,1224,1225,-1,1226,1227,1228,-1,1229,1230,1231,-1,1232,1233,1234,-1,1235,1236,1233,-1,1237,1238,1239,-1,1195,1240,1196,-1,1234,1185,1241,-1,1242,833,1243,-1,1244,1245,809,-1,1246,1164,1247,-1,1244,1248,1249,-1,1250,1244,1251,-1,1252,1253,1216,-1,1254,1112,1255,-1,1256,1257,1082,-1,1078,1258,1259,-1,1042,1043,549,-1,1260,477,462,-1,1261,1062,1064,-1,1262,1263,1264,-1,1265,1266,1152,-1,1267,1268,1269,-1,1122,1270,1271,-1,1272,1273,1274,-1,1018,1275,1276,-1,1277,1278,1270,-1,1279,1065,1280,-1,1281,1282,1218,-1,1283,1284,1285,-1,1286,1287,1141,-1,1288,1289,1290,-1,1291,1292,1124,-1,1293,1294,1295,-1,1296,1297,1298,-1,1299,1298,1297,-1,1300,1301,1302,-1,1303,1304,1305,-1,1306,1299,1307,-1,1308,1309,1307,-1,1224,1310,1311,-1,1312,1313,1314,-1,1315,1316,1229,-1,1317,1318,1319,-1,1320,1317,1321,-1,1322,1323,1003,-1,1031,1033,1324,-1,1091,1325,1326,-1,1327,1328,1329,-1,1330,813,815,-1,1331,1332,1333,-1,1090,1333,1332,-1,1333,1089,1334,-1,1335,1336,1337,-1,1072,1037,1039,-1,1076,1338,1037,-1,1339,1340,1341,-1,1143,1342,1144,-1,1343,1344,1345,-1,1346,1347,1348,-1,1349,1350,1351,-1,1352,1353,1354,-1,1238,1171,1170,-1,1355,1356,1357,-1,1358,1359,1360,-1,1361,1362,1007,-1,1363,1364,1365,-1,1366,1367,1365,-1,1368,1369,1370,-1,1370,1371,1358,-1,1358,1368,1370,-1,1363,1372,1373,-1,1374,1375,1376,-1,1375,1377,1378,-1,1234,1233,1372,-1,1377,1240,1379,-1,1380,1365,1381,-1,1365,1364,1382,-1,1383,1384,1385,-1,577,1386,1387,-1,1388,1389,1390,-1,1391,1382,1392,-1,1393,1394,579,-1,1395,1396,1397,-1,1398,1399,1400,-1,1401,1402,1403,-1,1404,1397,1405,-1,1406,1407,1408,-1,1409,1410,1411,-1,1402,1412,1403,-1,1413,1414,1415,-1,1416,1417,1418,-1,1048,1419,1420,-1,1421,1422,1423,-1,1406,1424,1425,-1,1417,1425,1426,-1,1427,1428,1429,-1,1427,1430,1431,-1,1432,1433,1434,-1,1435,1436,1423,-1,1437,1054,1053,-1,1438,1439,1440,-1,1393,1441,1442,-1,1443,1024,1444,-1,1445,1446,1447,-1,1448,1449,1450,-1,1451,1452,294,-1,1054,1055,1052,-1,1058,1453,1061,-1,1454,1455,1456,-1,1344,1457,1458,-1,1418,1434,1459,-1,1460,1461,1462,-1,1463,1205,1204,-1,1205,1464,1220,-1,1253,1465,1466,-1,1467,1113,1115,-1,1437,1468,1242,-1,1469,1175,1174,-1,1304,1278,1470,-1,1471,1472,1473,-1,1227,1226,1474,-1,1447,1475,1476,-1,1265,1084,1035,-1,1262,1196,1477,-1,1477,1196,1478,-1,1479,1013,1480,-1,1013,1012,1021,-1,1276,1003,1018,-1,1093,1092,1481,-1,815,1160,762,-1,1482,1483,1484,-1,1043,550,549,-1,1485,1159,528,-1,1486,1487,1488,-1,1486,1489,1147,-1,1228,1490,1320,-1,1491,1492,1493,-1,1494,1495,1496,-1,1497,1498,1499,-1,1500,1501,1502,-1,1503,1504,1505,-1,1500,1506,1501,-1,1507,1508,1509,-1,1510,543,1511,-1,1512,1513,1514,-1,1514,1515,1512,-1,1516,1517,1518,-1,1519,1520,1521,-1,1522,1519,1523,-1,1524,1525,1526,-1,1527,1528,1529,-1,1530,1531,1525,-1,1532,1533,1534,-1,1535,1536,1537,-1,1538,1539,1540,-1,1541,1535,1542,-1,1543,1544,1541,-1,1545,1546,1547,-1,1548,1549,1550,-1,1551,1552,1545,-1,1553,1554,1555,-1,1556,1557,1558,-1,1559,1560,1561,-1,1562,1563,1564,-1,1565,1566,1562,-1,1562,1567,1565,-1,1568,1569,1570,-1,1571,582,1570,-1,1572,1573,1574,-1,1563,1575,1576,-1,583,1565,1047,-1,1577,1567,1562,-1,936,1578,1579,-1,1580,1581,1582,-1,1582,1583,1580,-1,1562,1580,925,-1,1584,1585,1586,-1,1575,1587,1576,-1,1588,1589,1590,-1,1579,1578,1591,-1,1592,1593,1594,-1,1595,983,1596,-1,1597,984,1598,-1,984,1599,1598,-1,1600,1601,1602,-1,1602,1601,1603,-1,1604,1603,986,-1,1604,947,1605,-1,1577,1606,559,-1,1607,1608,1609,-1,1577,1006,1047,-1,559,558,1577,-1,1603,1610,1611,-1,1612,1613,1614,-1,1615,1594,1593,-1,1562,1566,1581,-1,1566,1582,1581,-1,1562,1581,1580,-1,1575,1563,1562,-1,1616,1617,1618,-1,1609,1619,1620,-1,1047,1567,1577,-1,1621,1622,1617,-1,1621,1617,1623,-1,1624,1573,1625,-1,1619,1606,1577,-1,1574,1568,1570,-1,1577,1626,1619,-1,1627,1620,1628,-1,1626,1587,1629,-1,1571,1566,1565,-1,1630,1631,1559,-1,1561,1560,1632,-1,1633,1634,1635,-1,1636,1552,1551,-1,1637,1550,1638,-1,1639,1543,1640,-1,1544,1538,1540,-1,1537,1641,1542,-1,1642,1559,1643,-1,1644,1533,1532,-1,1528,1532,1534,-1,1531,1645,1646,-1,1527,1647,1648,-1,1529,1528,1534,-1,1525,1646,1649,-1,1650,1651,1652,-1,1523,1521,529,-1,1651,531,1653,-1,1521,1518,530,-1,1517,1512,1654,-1,1496,1655,1656,-1,1655,1509,1510,-1,1655,1496,1507,-1,1657,1658,1659,-1,1660,1508,1506,-1,1507,1496,1501,-1,1505,1661,1662,-1,1526,1663,1499,-1,1664,1533,1497,-1,1529,1665,1666,-1,1666,1667,1529,-1,1668,1669,1670,-1,1495,1671,1501,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getethmoid2_Geo_5_115_coordIndex_4()
		{
			int[] value = {1148,1672,1490,-1,1490,1672,1320,-1,1487,1159,1488,-1,1673,1159,1485,-1,1246,550,1483,-1,1674,1160,815,-1,1251,1675,1330,-1,1085,1087,1094,-1,1083,1035,1084,-1,1676,1322,1003,-1,1331,1677,1678,-1,1256,1679,1680,-1,1071,1073,1681,-1,1225,1309,1223,-1,1134,1682,1683,-1,1271,1270,1030,-1,1684,1685,1444,-1,1686,1352,1354,-1,1687,1175,1469,-1,1688,1468,1689,-1,1176,1689,1468,-1,1188,1690,1691,-1,1033,1692,1693,-1,1032,1112,1033,-1,1201,1463,1202,-1,1694,1695,1696,-1,1464,1697,1180,-1,1238,1698,1699,-1,1700,1701,1702,-1,1703,1345,1188,-1,1059,1704,1456,-1,1705,1706,272,-1,1456,1060,1059,-1,1451,294,1707,-1,1708,462,1452,-1,1060,1056,1709,-1,1710,1711,1377,-1,1255,1112,1116,-1,1128,1712,1301,-1,1252,1443,1444,-1,1294,1293,1121,-1,1713,1048,1420,-1,1010,1009,1714,-1,1715,1048,1007,-1,1421,1716,1717,-1,1718,1411,1423,-1,1429,1428,1719,-1,1430,1429,1720,-1,1426,1425,1721,-1,1426,1722,1418,-1,1436,1435,1723,-1,1449,1724,1438,-1,1419,1725,1726,-1,1393,1727,1383,-1,1434,1433,1414,-1,1728,1415,1720,-1,1404,1729,1721,-1,1730,1405,1397,-1,1731,1428,1427,-1,1719,1428,1731,-1,1399,1010,578,-1,1732,1397,1396,-1,1392,1733,1391,-1,574,1734,1735,-1,576,1388,1390,-1,1736,577,1387,-1,1385,1386,579,-1,1240,1711,1737,-1,1331,1738,1677,-1,1739,1740,1741,-1,1742,1743,1744,-1,1710,1374,1738,-1,1738,1737,1710,-1,1378,1742,1745,-1,1746,1741,1373,-1,1191,1190,580,-1,1747,1370,1369,-1,1748,1749,1750,-1,1378,1751,1742,-1,1369,1368,1380,-1,1353,1752,1753,-1,1754,1755,1756,-1,1756,1698,1754,-1,1371,1757,1758,-1,1185,1239,1170,-1,1061,1759,1760,-1,1061,1453,1761,-1,1762,1055,1057,-1,1346,1348,1763,-1,275,1764,1765,-1,1441,1714,1442,-1,1219,1282,1766,-1,1767,1768,1769,-1,1770,1771,1772,-1,1773,1036,1035,-1,1325,1085,1088,-1,1332,1331,1774,-1,1093,1481,811,-1,1332,1775,1090,-1,1322,1676,1776,-1,1676,1777,1776,-1,1318,1317,1672,-1,1778,1229,1228,-1,1312,1779,1780,-1,1777,1676,1472,-1,1781,1471,1312,-1,1307,1299,1782,-1,1783,1784,1272,-1,1782,1785,1786,-1,1785,1297,1296,-1,1787,1784,1472,-1,1301,1712,1788,-1,1783,1272,1274,-1,1789,1305,1790,-1,1304,1212,1278,-1,1791,1792,1681,-1,1683,1682,1793,-1,1794,1795,1796,-1,1282,1067,1139,-1,1139,1067,1066,-1,1119,1271,1030,-1,1797,1712,1798,-1,1270,1122,1293,-1,1799,1800,1801,-1,1799,1081,1800,-1,831,833,1688,-1,1154,1153,1802,-1,1157,1154,1687,-1,1803,1804,1158,-1,1682,1134,1805,-1,1223,1309,1806,-1,1807,1808,1809,-1,1810,1476,1791,-1,1811,1452,477,-1,1329,1812,1813,-1,1814,1082,1257,-1,1815,1816,1817,-1,1695,1694,1818,-1,1252,1819,1465,-1,1216,1820,1821,-1,1820,1822,1823,-1,808,1824,1248,-1,1249,1825,1244,-1,1483,1826,1827,-1,1685,1744,1252,-1,1817,1828,1815,-1,1238,1355,1698,-1,1808,1829,1830,-1,1139,1808,1831,-1,1229,1316,1230,-1,1832,1223,1806,-1,1117,1833,1116,-1,1834,1443,1252,-1,1103,1107,1109,-1,1444,1023,1102,-1,1101,1104,1108,-1,1463,1201,1205,-1,1203,1835,1201,-1,1200,1199,1817,-1,1836,1195,1194,-1,560,1837,1193,-1,1838,565,1400,-1,1457,1839,1458,-1,1461,1185,1169,-1,1422,1421,1181,-1,1840,1464,1841,-1,1178,1461,1460,-1,1842,1843,1844,-1,1177,1187,1845,-1,1756,1755,1846,-1,1847,1181,1179,-1,1848,1244,1849,-1,1166,1248,1824,-1,1850,1825,1851,-1,1162,1852,1483,-1,1853,813,1854,-1,1804,1264,1855,-1,1856,1857,1370,-1,1858,1859,1860,-1,1861,1342,1143,-1,1342,1861,1862,-1,1281,1067,1282,-1,1141,1140,1286,-1,1863,1261,1864,-1,1865,1866,1806,-1,1867,1868,1869,-1,1870,1871,1308,-1,1283,1872,1284,-1,1873,1874,1300,-1,1121,1120,1291,-1,1292,1875,1876,-1,1875,1877,1876,-1,1878,1302,1294,-1,1879,1880,1467,-1,1881,1882,1113,-1,1883,1692,1114,-1,1024,1023,1444,-1,1108,1110,1101,-1,1884,1885,1774,-1,1275,1012,1011,-1,1774,1331,1886,-1,1092,1326,1090,-1,1092,1775,1481,-1,1887,1257,1256,-1,1327,1773,1035,-1,1162,1888,1889,-1,1890,1891,1799,-1,1892,1893,1894,-1,1895,1258,1078,-1,1280,1067,1281,-1,1896,1052,1762,-1,1897,1437,1898,-1,1691,1690,1437,-1,1454,1704,1760,-1,1759,1761,1899,-1,1900,268,1417,-1,1474,1137,1864,-1,1832,1901,1223,-1,1335,1902,1903,-1,1904,1478,1196,-1,1905,1906,1833,-1,1907,1908,1909,-1,1910,1911,1912,-1,1885,1913,1914,-1,1011,1276,1275,-1,1608,1607,1915,-1,1005,1047,1006,-1,1916,1917,1918,-1,811,810,1919,-1,1920,1000,1001,-1,975,977,980,-1,1921,997,996,-1,1922,1923,1924,-1,1612,1600,1925,-1,1926,1927,1596,-1,1614,1928,1929,-1,976,1930,978,-1,964,963,1931,-1,1932,1933,1934,-1,960,966,961,-1,1935,1604,1605,-1,1935,914,1604,-1,1936,948,947,-1,1569,944,1937,-1,938,1938,1939,-1,1940,1941,943,-1,1942,1943,1944,-1,1945,1946,1591,-1,1946,1947,1588,-1,1580,1583,924,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getethmoid2_Geo_5_115_coordIndex_5()
		{
			int[] value = {913,923,919,-1,1935,1948,914,-1,918,950,952,-1,1949,1950,1951,-1,900,1952,1953,-1,890,1954,883,-1,888,887,1955,-1,885,884,1956,-1,881,889,882,-1,877,878,1957,-1,876,875,1958,-1,1959,871,857,-1,858,860,862,-1,868,870,1960,-1,1961,865,853,-1,851,866,863,-1,871,1956,860,-1,861,889,1960,-1,866,865,879,-1,872,857,1962,-1,868,1963,870,-1,853,1964,867,-1,1965,849,848,-1,1966,847,1967,-1,844,837,845,-1,1968,834,838,-1,1969,843,1970,-1,1969,840,843,-1,1916,1243,1971,-1,831,1153,1972,-1,1973,1974,1975,-1,1976,1977,1978,-1,1979,1980,1981,-1,1982,1983,1984,-1,1985,1986,1987,-1,1988,821,954,-1,819,818,820,-1,1854,1989,1853,-1,815,814,1674,-1,1990,1991,1992,-1,808,1993,1991,-1,1994,1244,1848,-1,780,1995,778,-1,780,804,1995,-1,1996,1997,1998,-1,793,1999,796,-1,792,2000,804,-1,794,793,795,-1,2001,2002,2003,-1,791,794,2004,-1,2005,2006,2007,-1,2008,2009,2010,-1,778,781,784,-1,806,2011,1999,-1,780,2012,804,-1,765,771,2013,-1,775,741,2014,-1,2015,738,2016,-1,771,767,2017,-1,769,768,766,-1,1849,764,1848,-1,733,732,2018,-1,751,2019,2020,-1,755,754,2021,-1,2022,2023,2024,-1,746,2025,2026,-1,2027,2028,750,-1,750,2021,2027,-1,2021,754,2027,-1,2029,2024,2030,-1,2026,751,2031,-1,2025,2032,2033,-1,2034,740,742,-1,737,739,2035,-1,2036,2037,2038,-1,2039,2040,2041,-1,2042,2043,2044,-1,2045,757,2046,-1,775,774,747,-1,736,735,2016,-1,2013,734,2037,-1,2047,2048,2049,-1,2050,2051,2052,-1,2017,767,2053,-1,678,721,679,-1,2054,2055,723,-1,720,722,2056,-1,725,2057,2058,-1,2059,2060,718,-1,718,2061,664,-1,680,665,681,-1,714,713,2062,-1,2061,659,664,-1,2063,2064,713,-1,708,2065,2066,-1,707,2067,699,-1,2068,698,2069,-1,704,2070,2071,-1,703,2072,702,-1,699,2073,700,-1,2069,2074,695,-1,705,2075,2076,-1,702,694,2077,-1,695,2074,2078,-1,2079,2080,2081,-1,697,686,693,-1,693,686,688,-1,684,2082,729,-1,701,676,675,-1,682,677,679,-1,718,2083,719,-1,710,2084,2085,-1,2086,2085,673,-1,663,669,668,-1,2086,708,710,-1,659,2061,2087,-1,670,662,664,-1,660,2088,674,-1,2089,681,665,-1,2090,2091,2092,-1,2093,2094,640,-1,2095,639,2096,-1,2097,2098,2099,-1,651,532,534,-1,2100,649,647,-1,2101,647,417,-1,2102,2103,2104,-1,2105,641,643,-1,643,2106,2105,-1,638,2107,639,-1,335,2101,2108,-1,2109,2110,602,-1,2109,2111,2110,-1,2112,634,630,-1,2113,2114,626,-1,2115,2116,593,-1,2114,2117,627,-1,2118,2119,586,-1,2120,620,615,-1,586,2121,2118,-1,2122,612,2123,-1,2124,2125,2126,-1,614,613,608,-1,588,2127,2128,-1,2129,604,2130,-1,606,602,609,-1,2131,2132,2133,-1,2134,590,592,-1,2135,587,2136,-1,588,2137,610,-1,2138,2133,589,-1,564,561,2139,-1,1734,573,2140,-1,559,1606,557,-1,2141,2142,2143,-1,2144,570,2145,-1,554,2146,564,-1,2147,2148,557,-1,2149,567,566,-1,553,552,573,-1,553,560,562,-1,563,2150,2151,-1,1608,1606,1609,-1,548,1342,1862,-1,2152,2153,537,-1,538,547,522,-1,2154,546,547,-1,537,539,543,-1,538,2155,2156,-1,2157,415,420,-1,533,536,534,-1,1638,1550,2158,-1,527,526,2159,-1,525,527,548,-1,517,511,521,-1,541,2160,515,-1,516,515,2161,-1,2160,2162,2163,-1,2164,2165,513,-1,2166,2161,2167,-1,508,507,512,-1,2168,2169,509,-1,495,506,504,-1,2170,2171,492,-1,501,500,499,-1,484,498,2172,-1,496,495,2173,-1,498,486,2174,-1,2175,2176,2177,-1,2171,2177,483,-1,2178,469,468,-1,2179,1800,1081,-1,135,137,134,-1,290,465,466,-1,1260,462,461,-1,2180,2181,449,-1,455,2182,451,-1,2183,2184,2185,-1,2186,459,2187,-1,2188,2180,449,-1,2189,2190,2191,-1,2192,2193,2194,-1,2184,2182,455,-1,2195,2196,2197,-1,2198,2199,2200,-1,2201,429,2202,-1,2203,2204,426,-1,2201,2205,2206,-1,2207,428,424,-1,2208,473,475,-1,2209,2210,2211,-1,412,416,2212,-1,407,2213,2214,-1,2215,2216,2213,-1,2217,2218,2219,-1,2218,402,344,-1,259,258,375,-1,2220,2221,351,-1,2222,395,2223,-1,2224,2225,2226,-1,2227,386,2228,-1,366,2229,380,-1,378,379,364,-1,220,181,2230,-1,2231,2220,350,-1,225,376,375,-1,2232,374,2233,-1,2234,359,388,-1,2235,2236,2237,-1,2238,407,2239,-1,352,348,350,-1,348,2240,350,-1,342,348,343,-1,649,2241,345,-1,2242,2243,2244,-1,2101,335,334,-1,325,327,616,-1,322,324,607,-1,2245,317,316,-1,318,324,322,-1,631,622,2246,-1,617,616,327,-1,327,325,2247,-1,2245,2248,299,-1,321,332,305,-1,331,2249,306,-1,331,329,2249,-1,2247,2250,303,-1,2241,2251,345,-1,2241,649,2252,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getethmoid2_Geo_5_115_coordIndex_6()
		{
			int[] value = {2253,2254,310,-1,345,2251,308,-1,2255,302,2256,-1,302,301,2256,-1,2250,2257,313,-1,2258,304,2259,-1,2249,2260,2261,-1,4,3,266,-1,2262,1764,2263,-1,1811,295,294,-1,1900,267,268,-1,2264,2265,2266,-1,51,53,293,-1,1811,476,295,-1,2267,2268,2269,-1,2270,2271,2272,-1,2273,2274,1808,-1,2275,127,2276,-1,2277,2278,282,-1,2279,2280,221,-1,235,2281,236,-1,144,143,2282,-1,2283,2284,2285,-1,2286,2287,2288,-1,274,2263,1764,-1,2262,2263,267,-1,1,2263,2289,-1,1,267,2263,-1,2,2289,2290,-1,1,4,267,-1,228,242,222,-1,199,229,228,-1,2291,2292,2293,-1,161,2294,253,-1,342,349,348,-1,224,2295,2296,-1,2297,2298,2299,-1,167,166,2300,-1,243,2301,2302,-1,2303,2304,2305,-1,1795,2306,2307,-1,141,142,234,-1,207,237,205,-1,226,225,375,-1,2308,373,2295,-1,2301,243,2271,-1,151,2309,245,-1,2306,2286,2266,-1,207,232,237,-1,216,213,217,-1,153,184,155,-1,2310,239,2311,-1,2312,287,206,-1,2313,2314,2300,-1,2315,209,157,-1,256,2296,2316,-1,2317,254,256,-1,255,254,264,-1,2318,2319,2320,-1,269,2321,2322,-1,198,2288,2323,-1,193,2324,235,-1,2325,2320,118,-1,2326,190,2327,-1,191,2328,192,-1,2329,2330,2331,-1,221,199,228,-1,2296,2332,158,-1,163,186,2333,-1,2294,2334,252,-1,102,133,170,-1,2335,371,186,-1,2336,2337,169,-1,2338,2333,2339,-1,104,179,188,-1,167,2340,2272,-1,183,2341,269,-1,2342,2316,160,-1,2343,2268,206,-1,2264,2344,2345,-1,174,152,219,-1,371,2329,2336,-1,241,200,208,-1,166,2343,206,-1,2291,2346,2274,-1,146,144,2347,-1,148,141,140,-1,292,2348,116,-1,2349,2350,132,-1,289,131,2348,-1,2351,2319,2276,-1,289,295,290,-1,114,2352,2353,-1,131,130,2348,-1,115,2354,113,-1,113,2354,124,-1,2355,118,120,-1,2356,108,2351,-1,132,136,2357,-1,277,2347,144,-1,134,2358,2359,-1,103,100,102,-1,2360,408,138,-1,92,49,50,-1,2361,90,89,-1,77,2362,81,-1,65,12,39,-1,68,37,39,-1,2363,69,27,-1,44,46,2364,-1,2365,2366,2367,-1,2368,11,43,-1,56,54,52,-1,2369,2362,79,-1,64,72,47,-1,2370,92,64,-1,2275,38,2371,-1,74,2372,2373,-1,35,2374,60,-1,2375,2376,2377,-1,2378,2379,2380,-1,57,2381,55,-1,2382,2383,2384,-1,93,50,14,-1,19,2385,2386,-1,2387,73,92,-1,2368,2388,70,-1,64,92,72,-1,2389,2390,2391,-1,2381,2392,2391,-1,2393,97,2383,-1,56,80,2384,-1,2394,65,38,-1,34,2395,94,-1,53,52,33,-1,96,37,2363,-1,30,26,28,-1,2396,295,2348,-1,15,18,17,-1,24,3,297,-1,10,2397,8,-1,7,3,23,-1,10,9,2398,-1,2399,2400,8,-1,281,21,20,-1,2348,28,2396,-1,96,2363,29,-1,33,2401,53,-1,32,34,94,-1,2394,38,2275,-1,57,40,42,-1,2383,2382,2393,-1,2391,2392,2389,-1,11,2368,70,-1,2368,99,2388,-1,73,72,92,-1,93,14,16,-1,2384,2402,2382,-1,55,54,57,-1,2380,2403,2378,-1,2375,2377,2404,-1,60,36,35,-1,96,2371,38,-1,70,2388,71,-1,2370,49,92,-1,52,51,56,-1,56,2384,2383,-1,43,45,2368,-1,2385,2365,2367,-1,44,2364,2405,-1,27,30,2363,-1,68,39,95,-1,2406,74,2373,-1,2362,2407,81,-1,2361,2408,90,-1,408,2409,2410,-1,170,2411,102,-1,134,102,2358,-1,277,279,2347,-1,132,2412,105,-1,122,2413,106,-1,2414,2415,124,-1,114,113,125,-1,108,2356,109,-1,123,188,189,-1,2413,114,2353,-1,125,2352,114,-1,2351,2416,2319,-1,2348,295,289,-1,2353,2349,132,-1,116,129,292,-1,135,134,2359,-1,2236,2417,358,-1,2418,122,121,-1,146,247,144,-1,2329,178,2336,-1,169,2339,372,-1,371,2335,2329,-1,174,219,220,-1,205,2313,2312,-1,2419,2317,160,-1,270,183,269,-1,164,2280,165,-1,2272,168,167,-1,2420,252,171,-1,186,175,2335,-1,253,2294,252,-1,163,2333,2334,-1,165,2421,184,-1,158,2316,2296,-1,160,173,172,-1,2331,178,2329,-1,192,123,191,-1,2350,107,117,-1,235,194,193,-1,2323,2422,198,-1,2322,2423,269,-1,2319,2416,2320,-1,2317,256,2342,-1,2316,2342,256,-1,347,349,2424,-1,2425,2311,2315,-1,240,202,204,-1,157,2426,2315,-1,207,206,140,-1,213,215,217,-1,207,233,232,-1,2266,2307,2306,-1,151,245,149,-1,2271,2270,2301,-1,2295,224,2308,-1,227,229,2427,-1,139,141,234,-1,2428,1795,2305,-1,2303,2305,2429,-1,2302,2430,243,-1,166,287,2300,-1,2298,2431,2299,-1,2296,256,224,-1,347,2432,2240,-1,242,2292,222,-1,376,256,255,-1,263,262,2433,-1,2221,258,2434,-1,222,221,228,-1,2290,2435,2,-1,2,2435,265,-1,2400,1702,266,-1,272,295,273,-1,1764,275,274,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getethmoid2_Geo_5_115_coordIndex_7()
		{
			int[] value = {2288,198,2286,-1,2285,2436,2283,-1,144,2282,277,-1,235,2324,2281,-1,282,2278,21,-1,284,2277,2437,-1,2275,2371,127,-1,2438,246,1807,-1,2272,2439,2270,-1,2267,2269,2440,-1,2346,1766,1831,-1,2344,2264,2266,-1,2344,2266,2286,-1,1900,2441,267,-1,288,132,131,-1,267,2441,2442,-1,2277,1221,2278,-1,2261,306,2249,-1,2258,305,304,-1,313,303,2250,-1,249,345,308,-1,342,2253,310,-1,312,2443,344,-1,2241,2252,2261,-1,315,2247,303,-1,321,305,2258,-1,317,2245,299,-1,2247,315,327,-1,617,327,2444,-1,631,2246,330,-1,318,2445,324,-1,316,319,2245,-1,322,607,323,-1,325,616,326,-1,345,650,649,-1,655,2243,339,-1,2242,250,251,-1,349,2446,2447,-1,2432,347,2424,-1,252,2420,2448,-1,2208,410,409,-1,356,2449,2450,-1,353,2434,2451,-1,359,2228,388,-1,374,2452,2233,-1,2240,348,347,-1,350,2240,2231,-1,2448,133,410,-1,363,378,364,-1,366,380,367,-1,361,2227,2228,-1,389,2453,390,-1,2225,2454,2226,-1,2455,397,2456,-1,2222,2457,395,-1,351,350,2220,-1,255,264,263,-1,2218,344,2219,-1,262,404,2458,-1,2217,2219,2216,-1,2215,2217,2216,-1,407,2215,2213,-1,358,2417,2459,-1,474,1219,2460,-1,412,2212,413,-1,2209,419,2210,-1,424,423,2207,-1,2206,2461,2201,-1,2201,2202,2462,-1,2463,2198,2200,-1,2196,442,2197,-1,455,2464,2184,-1,2194,2183,2192,-1,2191,445,2189,-1,443,2465,444,-1,2466,450,408,-1,456,2181,2467,-1,2468,2183,2185,-1,455,451,450,-1,2186,454,463,-1,136,135,2357,-1,460,2186,463,-1,290,466,288,-1,2360,138,461,-1,2469,408,1259,-1,288,466,132,-1,461,464,1260,-1,2178,463,462,-1,2171,483,482,-1,2175,2177,2171,-1,498,2174,499,-1,2173,490,496,-1,497,484,2172,-1,499,502,501,-1,2171,482,492,-1,495,496,506,-1,2166,2167,2470,-1,508,512,510,-1,2165,521,513,-1,2471,2160,2163,-1,2166,516,2161,-1,541,540,2160,-1,521,520,517,-1,548,550,525,-1,2158,2472,1638,-1,2157,2473,415,-1,2155,540,2156,-1,543,2474,537,-1,2154,547,2153,-1,522,2155,538,-1,2152,537,2474,-1,1144,527,1145,-1,1342,548,1144,-1,2399,8,2397,-1,1608,557,1606,-1,562,563,2151,-1,573,1837,560,-1,561,563,562,-1,566,2140,2149,-1,557,565,2147,-1,568,558,2475,-1,564,569,554,-1,2144,2145,2151,-1,2476,2141,2143,-1,564,1361,1007,-1,1734,574,573,-1,1837,573,572,-1,561,580,2139,-1,309,2477,2100,-1,588,610,589,-1,2135,2136,591,-1,2134,592,2478,-1,2133,2138,2131,-1,606,605,602,-1,2129,2479,604,-1,588,587,2127,-1,614,608,2480,-1,2124,2126,612,-1,2122,2124,612,-1,586,585,2121,-1,2120,615,621,-1,2114,627,626,-1,593,2119,2115,-1,2113,626,633,-1,2112,630,635,-1,2111,637,2110,-1,605,2109,602,-1,2101,417,2108,-1,638,640,2481,-1,2107,2096,639,-1,641,2099,642,-1,2102,2482,2103,-1,647,418,417,-1,649,648,647,-1,651,2483,532,-1,2097,2099,2104,-1,2095,2093,639,-1,2093,640,639,-1,2484,2090,2092,-1,2485,2486,2487,-1,673,2488,656,-1,660,674,661,-1,664,659,670,-1,659,2087,660,-1,2083,668,665,-1,663,2485,669,-1,2086,673,672,-1,2485,663,662,-1,2085,2086,710,-1,681,677,682,-1,675,709,708,-1,684,729,685,-1,693,688,2489,-1,690,691,2082,-1,2082,684,690,-1,693,692,697,-1,2081,2490,2079,-1,695,2078,696,-1,702,2072,694,-1,705,2071,2075,-1,2069,698,2074,-1,699,2067,2073,-1,702,2066,703,-1,2071,705,704,-1,2068,706,698,-1,707,2491,2067,-1,2065,703,2066,-1,2065,672,2088,-1,713,712,2063,-1,2492,714,2062,-1,680,2083,665,-1,718,2060,2061,-1,720,2059,718,-1,2054,725,2058,-1,2056,2059,720,-1,723,725,2054,-1,678,685,721,-1,2053,2493,2017,-1,2052,760,2050,-1,2494,2047,2049,-1,2037,2495,2013,-1,736,2016,737,-1,747,742,775,-1,757,758,2046,-1,2042,2044,2496,-1,2039,2041,2497,-1,2498,2036,2038,-1,2035,2028,737,-1,742,746,2034,-1,2025,747,2032,-1,2026,2019,751,-1,2029,756,2024,-1,2027,2499,2028,-1,2031,746,2026,-1,2024,756,2022,-1,755,2021,757,-1,2020,2500,751,-1,2501,2502,2503,-1,2018,2504,733,-1,769,766,765,-1,771,2017,772,-1,772,2015,2016,-1,2014,773,775,-1,771,735,2013,-1,780,779,805,-1,778,784,779,-1,2008,2010,2505,-1,2005,2007,2506,-1,791,2004,2507,-1,2003,2508,2001,-1,794,795,2004,-1,804,2012,792,-1,793,796,795,-1,1996,2509,1997,-1,2510,1673,1991,-1,1093,1919,2511,-1,2512,1004,1674,-1,818,817,820,-1,954,2513,1988,-1,1987,822,1985,-1,1984,826,1982,-1,1981,830,1979,-1,2514,1976,1978,-1,1974,836,1975,-1,1266,1265,2515,-1,1267,1801,2516,-1,842,829,827,-1,842,847,829,-1,1968,2517,834,-1,844,2518,837,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getethmoid2_Geo_5_115_coordIndex_8()
		{
			int[] value = {873,1965,848,-1,1964,2519,867,-1,1963,854,870,-1,1962,2520,872,-1,879,878,866,-1,1960,862,861,-1,1956,884,860,-1,863,850,851,-1,853,867,1961,-1,869,868,1960,-1,862,856,858,-1,857,872,1959,-1,1958,1955,876,-1,2521,877,1957,-1,879,2522,883,-1,883,880,879,-1,885,1956,886,-1,888,1955,1958,-1,883,882,890,-1,885,891,861,-1,2523,2524,2525,-1,1953,2526,900,-1,1951,910,1949,-1,952,919,918,-1,1948,915,914,-1,913,916,923,-1,941,940,2527,-1,936,1943,1942,-1,1583,2528,924,-1,933,932,2529,-1,932,2530,2529,-1,1946,1588,1591,-1,1945,1591,1578,-1,943,941,1940,-1,1939,2531,938,-1,1937,2532,1569,-1,947,986,1936,-1,914,2533,1604,-1,1605,949,1935,-1,2534,2535,2536,-1,2535,955,2536,-1,960,2537,967,-1,966,2538,961,-1,1934,2539,1932,-1,1931,971,964,-1,977,976,978,-1,1614,1929,1610,-1,980,2540,1000,-1,980,979,2540,-1,970,969,2541,-1,1927,2542,1596,-1,1933,2543,972,-1,963,2544,2545,-1,1925,2546,1612,-1,1922,1924,2547,-1,2548,2549,1924,-1,1921,975,997,-1,975,980,997,-1,1920,1001,998,-1,811,1919,1093,-1,1799,1269,1035,-1,469,1242,1243,-1,1441,1010,1714,-1,1838,1400,1399,-1,2550,2551,1097,-1,1910,2552,1911,-1,2553,2554,1025,-1,1102,1105,1103,-1,1880,2555,2556,-1,1833,1117,1905,-1,1196,1240,1904,-1,1335,1903,1336,-1,1143,1146,1046,-1,2557,1474,1864,-1,1713,583,1047,-1,1899,2558,1759,-1,1897,1691,1437,-1,1458,1188,1345,-1,1052,1763,1053,-1,1456,1057,1056,-1,2559,1706,1705,-1,2560,2561,2562,-1,1768,1280,1281,-1,1034,1890,1035,-1,1895,1078,2563,-1,1043,1826,550,-1,1827,1484,1483,-1,1328,2564,1329,-1,2565,1091,1093,-1,1090,1775,1092,-1,1884,1774,1886,-1,1094,1096,1334,-1,1479,2550,1013,-1,1015,1910,1331,-1,1107,2566,1212,-1,1211,2567,1213,-1,1883,1693,1692,-1,1113,1883,1114,-1,2556,2568,1113,-1,1215,2569,1216,-1,1113,1467,2556,-1,1876,1877,2570,-1,2571,2572,2573,-1,2574,2575,1798,-1,2576,2577,2578,-1,2579,2580,1786,-1,2560,2562,1805,-1,2581,1063,1829,-1,2582,1279,1045,-1,1140,1064,1286,-1,1861,1143,2583,-1,2584,2585,2586,-1,1152,1266,2587,-1,1855,1158,1804,-1,1247,1485,528,-1,1675,1850,1812,-1,1163,1249,1161,-1,808,807,1993,-1,1847,1179,1178,-1,1755,1845,1846,-1,1184,1170,1172,-1,1177,1176,1187,-1,1842,1187,1843,-1,1181,1847,1422,-1,1169,1462,1461,-1,1241,1185,1461,-1,1740,2588,1193,-1,1193,1192,560,-1,1200,1817,1816,-1,1202,1695,1209,-1,1203,1202,2589,-1,1112,2590,1033,-1,1101,1678,1104,-1,1102,1104,1444,-1,1107,1213,1109,-1,1692,2288,2591,-1,1229,1231,1226,-1,1809,1808,1830,-1,1753,1174,1353,-1,1238,1237,1355,-1,1828,2592,1815,-1,1752,1353,1757,-1,1799,1891,1079,-1,1893,1077,1894,-1,528,1246,1247,-1,1813,1812,1850,-1,1849,1244,1250,-1,1248,809,808,-1,1823,2593,1820,-1,1216,1253,1820,-1,2594,1242,469,-1,1814,2564,1082,-1,550,1826,1483,-1,476,1811,477,-1,1791,1681,1073,-1,1791,1073,1810,-1,1805,2595,1682,-1,1158,1469,1803,-1,1154,1802,1687,-1,1153,1688,1802,-1,1688,1153,831,-1,1270,1293,1277,-1,1298,1274,2596,-1,1099,1212,1013,-1,1712,1128,1798,-1,1277,1470,1278,-1,2597,2598,2599,-1,1068,1867,2600,-1,1683,1793,2438,-1,2601,2602,2603,-1,1792,2604,1681,-1,1271,1875,1120,-1,1278,1027,1270,-1,1790,1470,1277,-1,1796,2576,2578,-1,1788,2605,1301,-1,1472,1676,1787,-1,1797,1798,1296,-1,1299,1297,1785,-1,1782,1308,1307,-1,1307,1309,2606,-1,1224,1781,1225,-1,1224,1311,2607,-1,1228,1320,1778,-1,1318,1672,1489,-1,1318,1489,1486,-1,1853,2608,813,-1,1481,2609,811,-1,1334,1478,1904,-1,1904,1333,1334,-1,1326,1325,1088,-1,1476,1810,1447,-1,2610,1038,2611,-1,1772,1902,1770,-1,1769,1143,1767,-1,1889,2612,1162,-1,1219,1218,1282,-1,2613,1346,1763,-1,1455,1762,1057,-1,1761,1759,1061,-1,1185,1170,1184,-1,1758,2614,1371,-1,1756,1699,1698,-1,1754,1686,1755,-1,1362,1369,1380,-1,1007,569,564,-1,1751,2615,1742,-1,2616,1748,1750,-1,1368,1357,1365,-1,580,1192,1191,-1,1373,2617,1746,-1,1741,2618,1373,-1,1375,1378,1376,-1,1745,1742,1744,-1,1741,1746,1739,-1,1685,1745,1744,-1,1737,1904,1240,-1,1382,1391,1450,-1,1365,1382,1381,-1,579,1394,1385,-1,1736,1387,1389,-1,576,1390,2619,-1,575,2620,2621,-1,1735,1373,574,-1,578,1441,579,-1,1396,2622,1732,-1,1731,1401,1719,-1,1719,1403,2623,-1,1397,1732,1730,-1,1721,2624,1404,-1,1728,1413,1415,-1,1414,1459,1434,-1,1439,1715,2625,-1,2626,1436,1723,-1,1722,1434,1418,-1,1425,1424,1721,-1,1429,1457,1720,-1,2623,1429,1719,-1,1718,1423,1436,-1,1717,1182,1421,-1,1441,578,1010,-1,1048,1005,1007,-1,1420,2627,1713,-1,1293,1122,1121,-1,1128,1301,1300,-1,1377,1375,1710,-1,1058,1060,1707,-1,1707,294,296,-1,272,271,1705,-1,1703,1188,1691,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getethmoid2_Geo_5_115_coordIndex_9()
		{
			int[] value = {1843,1186,2628,-1,1702,1417,268,-1,1699,1171,1238,-1,1209,1695,2629,-1,1463,1695,1202,-1,1461,1697,1835,-1,1880,2556,1467,-1,1846,1845,1187,-1,1468,1690,1176,-1,1689,1802,1688,-1,1354,1755,1686,-1,1104,1684,1444,-1,1027,1278,1025,-1,1683,1869,1134,-1,2596,2630,1298,-1,1473,1313,1312,-1,1143,1046,1767,-1,1799,1079,1081,-1,1680,1087,1256,-1,1477,1334,1096,-1,1912,1331,1910,-1,1774,1885,1914,-1,1676,1003,1276,-1,2609,1914,1003,-1,1088,1085,1094,-1,1332,1481,1775,-1,1330,1250,1251,-1,1159,2631,2632,-1,1674,1004,1160,-1,1852,1165,1483,-1,1323,1488,1004,-1,1490,1228,2633,-1,1671,2634,1501,-1,1670,2635,1668,-1,1497,2636,1664,-1,1498,1526,1499,-1,1496,2637,2638,-1,1505,1504,1661,-1,1496,2639,1503,-1,1660,2640,1508,-1,1657,2641,1658,-1,1509,2642,1510,-1,1655,1510,1656,-1,1517,2643,1512,-1,1521,530,529,-1,1651,1653,1652,-1,1523,529,2644,-1,1650,1652,545,-1,2645,2646,2647,-1,2645,1522,2646,-1,1526,1525,1649,-1,1497,1524,1498,-1,1534,1665,1529,-1,1527,1648,1528,-1,1525,1531,1646,-1,1497,1530,1524,-1,1528,1648,1532,-1,1642,1630,1559,-1,1542,1535,1537,-1,1544,1540,1541,-1,1640,1541,1542,-1,1542,2648,1640,-1,1639,1640,2649,-1,1638,2650,1637,-1,1636,1551,2651,-1,1634,2652,1635,-1,1492,1491,2653,-1,1560,1644,1632,-1,1630,2654,1631,-1,1626,1576,1587,-1,1628,2655,1627,-1,1626,1629,1619,-1,1617,2656,2657,-1,1609,1622,1621,-1,1617,2658,1618,-1,1617,1616,1623,-1,1577,1564,1626,-1,1571,1565,583,-1,1620,1627,1609,-1,583,582,1571,-1,2659,937,1579,-1,1566,1571,1582,-1,2660,2656,1617,-1,1615,1593,2661,-1,1614,1601,1612,-1,1614,1610,1603,-1,1603,1601,1614,-1,1603,1611,986,-1,1577,1007,1006,-1,1621,1607,1609,-1,1609,1606,1619,-1,1604,986,947,-1,1604,2662,1603,-1,1602,1603,2662,-1,1600,1612,1601,-1,1596,2542,1595,-1,1579,1591,2663,-1,1590,2664,1588,-1,2655,1628,2665,-1,1594,2666,1592,-1,1579,937,936,-1,1586,1585,2655,-1,1609,1627,1622,-1,1562,1564,1577,-1,1567,1047,1565,-1,2657,1624,1617,-1,1573,1624,1574,-1,1620,1619,1629,-1,1585,1584,2667,-1,1617,1622,1585,-1,1559,1631,1560,-1,1556,2668,1557,-1,1554,2669,1555,-1,2670,1633,2671,-1,1633,1635,2671,-1,1545,1547,1551,-1,1550,1637,1548,-1,1545,2672,1546,-1,1543,1541,1640,-1,1541,1540,1535,-1,1539,2673,1540,-1,1535,2674,1536,-1,1497,2651,1530,-1,1524,1530,1525,-1,1669,1527,1529,-1,1534,1533,1665,-1,1526,1498,1524,-1,1522,1523,2646,-1,1521,1523,1519,-1,1520,1516,1518,-1,1518,1521,1520,-1,1516,1658,1517,-1,1511,1656,1510,-1,1509,1655,1507,-1,2639,2641,1657,-1,1508,1507,1506,-1,1506,1507,1501,-1,1496,1503,2637,-1,1502,1501,2634,-1,1497,1499,2636,-1,1495,1501,1496,-1,2633,2159,1490,-1,1147,1487,1486,-1,1488,1323,1486,-1,1004,1488,1159,-1,1483,1165,1246,-1,1813,2675,1329,-1,762,1330,815,-1,1004,2512,2676,-1,1089,1094,1334,-1,1003,811,2609,-1,1004,1003,1323,-1,1914,2609,1774,-1,1331,1678,1101,-1,1477,1263,1262,-1,2677,1081,1894,-1,1447,1446,1475,-1,2606,1309,1225,-1,1299,1785,1782,-1,1120,1122,1271,-1,1252,1444,1685,-1,1803,1469,1174,-1,1437,1690,1468,-1,1324,1693,1883,-1,2590,1205,1033,-1,1466,1465,1819,-1,1818,1253,1466,-1,1205,1697,1464,-1,1841,1464,1180,-1,1180,1179,1841,-1,1172,1844,1843,-1,1701,1417,1702,-1,1459,1416,1418,-1,1186,1843,1187,-1,1455,1057,1456,-1,1058,2678,1453,-1,1054,1056,1055,-1,2679,1451,1707,-1,1811,294,1452,-1,1448,1450,1391,-1,2680,1445,1447,-1,1777,1472,1471,-1,1205,291,1692,-1,2681,1393,1442,-1,1053,1898,1437,-1,1423,1422,1435,-1,1722,1432,1434,-1,1403,2682,2623,-1,1432,1405,1431,-1,1431,1730,1427,-1,1429,1430,1427,-1,1426,1418,1417,-1,1406,1425,1717,-1,1421,1423,1716,-1,1048,1715,1419,-1,1607,2683,1915,-1,1416,1900,1417,-1,1414,1433,1415,-1,1718,1409,1411,-1,1408,2684,1406,-1,1405,1729,1404,-1,1719,1401,1403,-1,1730,1431,1405,-1,1383,1394,1393,-1,1397,1404,1395,-1,579,1441,1393,-1,1382,1364,1392,-1,1388,1736,1389,-1,577,579,1386,-1,1385,1394,1383,-1,2685,1380,1381,-1,1381,1382,1450,-1,1377,1711,1240,-1,1737,1711,1710,-1,1372,1363,1234,-1,1374,1710,1375,-1,1373,1364,1363,-1,1372,2617,1373,-1,2139,1370,1747,-1,1358,1357,1368,-1,1371,2614,1358,-1,1367,1363,1365,-1,1365,1380,1368,-1,1360,1357,1358,-1,1360,1355,1357,-1,1239,1238,1170,-1,1353,1174,1354,-1,1349,1351,2686,-1,1052,1055,1762,-1,1703,1347,2687,-1,1764,2262,2688,-1,1344,1458,1345,-1,1799,1035,1890,-1,1339,1341,2689,-1,1072,1076,1037,-1,1039,1073,1072,-1,1447,1810,2680,-1,1003,1914,1019,-1,1333,1090,1089,-1,1904,1331,1333,-1,1327,1329,2675,-1,1091,1326,1092,-1,1033,1693,1324,-1,1320,1672,1317,-1,1319,1321,1317,-1,1272,1784,1787,-1,1229,1778,1315,-1,1806,1137,1832,-1,1781,1312,1780,-1,1779,1312,1314,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getethmoid2_Geo_5_115_coordIndex_10()
		{
			int[] value = {1312,1471,1473,-1,1307,2606,1306,-1,2690,1305,1273,-1,1119,1467,1271,-1,1302,1123,1300,-1,1298,1797,1296,-1,1298,2630,1797,-1,2605,1295,1301,-1,1295,2691,1293,-1,1291,1124,1878,-1,2692,1288,1290,-1,1287,2582,1141,-1,1283,1285,2693,-1,1281,1218,2694,-1,2695,1279,1280,-1,1298,1783,1274,-1,1273,2696,1274,-1,1679,1265,1152,-1,1263,1855,1264,-1,1140,1261,1064,-1,1830,1829,2600,-1,477,1452,462,-1,1078,1259,449,-1,1080,1892,1894,-1,1207,1112,1254,-1,1252,1465,1253,-1,1248,1244,809,-1,1675,1812,1330,-1,1164,2697,1247,-1,1244,1825,1251,-1,1894,1081,1080,-1,1269,1265,1035,-1,1241,1232,1234,-1,1195,1379,1240,-1,1237,1239,2698,-1,1235,1233,1232,-1,2699,1856,2700,-1,1829,1808,1139,-1,1316,1310,1230,-1,1226,1228,1229,-1,2633,2701,2702,-1,1219,474,1217,-1,1692,2591,1114,-1,2568,1881,1113,-1,1027,1030,1270,-1,1108,1104,1103,-1,1110,1100,1101,-1,1202,1232,2589,-1,1202,1235,1232,-1,2703,2629,2704,-1,1206,2590,1112,-1,1205,2590,1206,-1,1203,2589,1835,-1,1200,1836,1194,-1,1196,1198,1194,-1,1196,1262,1197,-1,1191,1193,2588,-1,1370,2139,1189,-1,1189,2139,580,-1,1186,1188,1458,-1,1181,1421,1182,-1,1846,1187,1842,-1,1173,1175,2705,-1,1178,1460,1847,-1,1171,1844,1172,-1,1168,1462,1169,-1,2705,1175,1687,-1,1166,1824,1164,-1,1161,1852,1162,-1,1165,1164,1246,-1,1158,1855,1156,-1,1803,1174,1753,-1,2706,2707,2708,-1,1147,526,528,-1,2695,1767,1046,-1,2709,1068,2600,-1,2710,2711,1309,-1,2712,2713,1782,-1,2714,2693,1285,-1,2715,2716,2717,-1,2718,2719,1794,-1,1029,1119,1030,-1,1909,1214,1216,-1,1833,1907,1116,-1,1114,2591,1115,-1,1692,1033,1205,-1,1103,1105,1107,-1,2553,1025,1278,-1,1211,1213,1212,-1,1912,1886,1331,-1,1021,1480,1013,-1,1478,1334,1477,-1,1088,1090,1326,-1,1089,1088,1094,-1,2511,2720,2721,-1,2722,2675,1813,-1,1482,2723,1483,-1,2724,1042,549,-1,1074,1076,2725,-1,1070,1867,1068,-1,1065,1067,1280,-1,1062,2709,1063,-1,1772,2680,1810,-1,1349,2686,1706,-1,1056,1060,1456,-1,1706,2678,296,-1,1454,1456,1704,-1,1050,2726,1051,-1,2559,1349,1706,-1,1084,1265,1679,-1,1048,1713,1047,-1,1146,1044,1046,-1,1037,2611,1038,-1,1819,1252,1744,-1,1030,2727,1028,-1,1106,2566,1107,-1,1012,2728,1020,-1,1017,1275,1018,-1,1019,1018,1003,-1,1915,1400,565,-1,1398,1010,1399,-1,811,1003,812,-1,998,1001,999,-1,997,1000,1920,-1,993,999,994,-1,997,1920,995,-1,2729,2730,2731,-1,992,994,990,-1,950,2732,995,-1,989,992,990,-1,986,1611,987,-1,984,1597,985,-1,983,1595,981,-1,980,977,978,-1,2733,2549,1929,-1,2729,2734,976,-1,975,2729,976,-1,967,2735,973,-1,971,2736,972,-1,968,970,2737,-1,966,967,974,-1,1933,1932,2738,-1,969,2735,2739,-1,2740,958,959,-1,2536,955,957,-1,953,958,954,-1,911,913,919,-1,951,2732,950,-1,1605,947,949,-1,946,1937,944,-1,943,2741,942,-1,2742,938,2531,-1,2742,1943,938,-1,939,941,943,-1,938,1943,936,-1,934,2743,933,-1,933,2743,930,-1,931,1584,932,-1,927,2744,928,-1,925,1580,924,-1,916,926,924,-1,951,920,922,-1,919,923,917,-1,914,916,913,-1,910,1951,908,-1,2745,899,907,-1,906,2746,904,-1,903,2747,901,-1,898,900,2526,-1,897,890,889,-1,891,885,886,-1,886,1956,887,-1,883,2522,881,-1,1957,878,880,-1,875,877,2521,-1,1959,872,874,-1,858,857,871,-1,1960,870,862,-1,1961,867,869,-1,851,853,865,-1,864,848,850,-1,860,884,861,-1,859,1962,857,-1,870,854,856,-1,852,1964,853,-1,849,2748,850,-1,841,1967,847,-1,837,839,1978,-1,834,836,2749,-1,830,1981,828,-1,826,1984,827,-1,2750,1987,2751,-1,1987,1986,2751,-1,824,1985,822,-1,1988,819,821,-1,818,2752,816,-1,1004,2676,812,-1,813,2608,814,-1,763,762,2632,-1,1244,1994,1245,-1,803,778,1995,-1,2012,780,806,-1,803,1995,804,-1,795,797,2753,-1,1999,793,2012,-1,790,792,794,-1,790,794,791,-1,786,2754,787,-1,782,2042,781,-1,1999,2012,806,-1,793,792,2012,-1,2755,770,777,-1,773,2756,774,-1,772,2016,735,-1,770,731,768,-1,765,767,771,-1,762,764,1849,-1,2018,732,2757,-1,732,2758,2757,-1,760,2052,761,-1,2759,2760,2761,-1,2762,752,2500,-1,752,751,2500,-1,757,2021,749,-1,753,2031,751,-1,749,2021,750,-1,746,747,2025,-1,2496,2044,2763,-1,2763,2764,2496,-1,745,2765,743,-1,741,775,742,-1,737,2016,738,-1,734,2013,735,-1,733,768,731,-1,687,730,723,-1,729,722,721,-1,726,2766,727,-1,724,2767,725,-1,721,720,719,-1,717,2768,715,-1,714,2769,712,-1,2063,707,706,-1,2063,2770,707,-1,706,699,698,-1,705,2072,703,-1,701,2066,702,-1,700,2074,698,-1,697,2075,695,-1,694,2076,692,-1,691,693,2082,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getethmoid2_Geo_5_115_coordIndex_11()
		{
			int[] value = {689,684,683,-1,686,2771,687,-1,683,685,678,-1,709,677,681,-1,709,675,677,-1,673,661,674,-1,2485,662,671,-1,666,665,669,-1,665,667,2089,-1,660,2087,2088,-1,659,661,670,-1,672,674,2088,-1,658,673,656,-1,2092,2772,2473,-1,2473,2157,2092,-1,413,2212,654,-1,653,338,337,-1,2483,2773,532,-1,649,651,534,-1,647,422,418,-1,638,2482,2102,-1,646,2774,644,-1,532,2773,2775,-1,635,2776,636,-1,632,2776,635,-1,633,626,625,-1,630,2777,631,-1,595,594,628,-1,627,2120,625,-1,595,629,623,-1,621,615,617,-1,618,2123,619,-1,615,2778,616,-1,612,2126,613,-1,611,2138,589,-1,609,323,607,-1,2136,589,2133,-1,2130,604,606,-1,609,602,323,-1,601,2779,599,-1,596,598,2780,-1,2119,593,595,-1,590,2135,591,-1,589,2136,587,-1,586,624,584,-1,2115,2119,2118,-1,2781,583,2782,-1,2781,581,583,-1,560,1192,580,-1,1734,2140,2621,-1,565,1838,566,-1,570,551,2145,-1,569,558,568,-1,2147,565,567,-1,564,2146,563,-1,573,560,553,-1,556,2146,554,-1,553,2145,551,-1,548,1862,549,-1,548,527,1144,-1,546,523,522,-1,545,519,523,-1,544,1511,543,-1,542,2156,540,-1,538,2156,539,-1,533,2157,420,-1,415,2473,535,-1,530,2783,531,-1,550,1246,525,-1,525,1246,528,-1,522,524,2784,-1,519,521,2165,-1,518,2785,511,-1,514,541,515,-1,513,521,511,-1,510,2168,509,-1,2786,2787,2788,-1,506,505,507,-1,496,505,506,-1,494,504,2789,-1,502,489,503,-1,500,2172,498,-1,490,484,497,-1,480,2173,495,-1,482,481,493,-1,485,484,490,-1,489,502,487,-1,484,486,498,-1,483,478,481,-1,481,478,480,-1,468,2790,2178,-1,465,290,476,-1,1708,2178,462,-1,473,2791,474,-1,471,467,472,-1,1918,467,469,-1,2412,132,2357,-1,464,136,466,-1,464,461,137,-1,2466,408,2410,-1,459,2186,460,-1,456,2467,457,-1,2792,1259,1258,-1,2793,453,2190,-1,457,459,458,-1,453,2409,454,-1,451,2188,449,-1,2191,443,445,-1,2196,440,442,-1,2199,437,439,-1,436,2200,434,-1,429,433,2202,-1,429,431,425,-1,428,2207,426,-1,425,432,423,-1,422,536,420,-1,417,419,2209,-1,416,412,414,-1,411,413,2794,-1,133,408,409,-1,133,2420,170,-1,407,2214,406,-1,405,2795,403,-1,404,262,405,-1,249,307,344,-1,2796,257,261,-1,351,2797,352,-1,2796,400,257,-1,2798,2434,258,-1,2226,2457,2222,-1,2222,2799,2226,-1,396,2456,397,-1,2800,2801,2224,-1,2801,2225,2224,-1,392,2802,393,-1,390,2803,391,-1,388,2228,386,-1,385,2227,361,-1,383,2804,384,-1,380,2805,381,-1,379,2229,366,-1,377,2806,378,-1,226,2452,2308,-1,260,259,376,-1,370,384,368,-1,365,2807,366,-1,364,2808,362,-1,359,361,2228,-1,2235,2809,2798,-1,2238,2810,2811,-1,352,343,348,-1,2448,2420,133,-1,655,654,346,-1,346,2812,340,-1,349,2447,336,-1,251,250,249,-1,341,2244,346,-1,340,248,250,-1,336,2447,337,-1,335,2446,310,-1,331,333,2813,-1,328,330,2246,-1,314,2444,327,-1,324,326,607,-1,316,323,603,-1,321,2245,319,-1,318,322,316,-1,315,303,302,-1,307,301,313,-1,344,2443,342,-1,307,312,344,-1,311,310,2254,-1,304,306,2261,-1,303,313,301,-1,299,2814,300,-1,2,1,2289,-1,476,290,295,-1,293,285,85,-1,28,2348,292,-1,286,1692,291,-1,2287,2286,2306,-1,288,131,289,-1,285,293,286,-1,281,2277,282,-1,2277,281,2437,-1,1692,2323,2288,-1,2323,1692,286,-1,276,2815,274,-1,2262,267,2442,-1,269,2423,264,-1,2400,266,9,-1,2263,274,2289,-1,2797,351,399,-1,261,257,259,-1,2291,222,2292,-1,253,2816,162,-1,2448,2432,2424,-1,252,2448,2424,-1,230,146,2817,-1,243,2430,244,-1,2438,2818,246,-1,2421,2819,184,-1,241,209,215,-1,240,212,211,-1,204,205,237,-1,234,232,233,-1,230,232,234,-1,140,139,233,-1,226,2308,224,-1,2820,221,223,-1,150,2269,151,-1,190,182,201,-1,218,2821,216,-1,214,241,215,-1,212,2822,210,-1,140,233,207,-1,2315,2426,2425,-1,204,203,205,-1,2311,2425,2310,-1,181,200,182,-1,158,2332,199,-1,196,198,2422,-1,193,195,2823,-1,2419,270,264,-1,2337,2336,178,-1,191,180,182,-1,186,187,175,-1,185,173,160,-1,184,185,159,-1,252,2334,2333,-1,180,2824,181,-1,178,104,2337,-1,175,177,2335,-1,172,174,2825,-1,170,2420,171,-1,2337,170,169,-1,104,188,122,-1,168,2343,166,-1,165,159,158,-1,158,160,2316,-1,2317,2342,160,-1,205,2312,206,-1,155,157,208,-1,152,154,219,-1,2824,2230,181,-1,222,2273,246,-1,141,143,142,-1,146,2347,147,-1,144,247,142,-1,188,123,122,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getethmoid2_Geo_5_115_coordIndex_12()
		{
			int[] value = {148,140,236,-1,137,461,138,-1,134,138,133,-1,132,2350,130,-1,130,2350,117,-1,2353,2352,2349,-1,124,2826,125,-1,109,117,107,-1,129,116,109,-1,114,2418,115,-1,2354,2414,124,-1,111,118,2355,-1,106,2413,100,-1,102,105,2358,-1,170,2337,2411,-1,2411,103,102,-1,99,2368,45,-1,77,81,76,-1,40,57,56,-1,2369,2827,87,-1,95,39,12,-1,94,2401,33,-1,30,27,26,-1,92,93,2387,-1,89,91,2828,-1,90,2408,82,-1,87,2829,88,-1,85,2437,83,-1,81,90,82,-1,51,85,80,-1,79,2362,77,-1,74,76,82,-1,2408,2361,2372,-1,48,47,73,-1,64,63,2370,-1,12,11,70,-1,37,69,2363,-1,67,13,12,-1,47,46,63,-1,75,74,2406,-1,60,2374,61,-1,2361,89,2365,-1,48,2364,46,-1,87,2827,2830,-1,2362,86,2407,-1,40,2831,41,-1,56,2383,97,-1,65,39,38,-1,34,36,2395,-1,33,59,31,-1,83,2437,281,-1,29,2363,30,-1,295,2396,273,-1,24,2832,25,-1,2386,17,19,-1,15,2833,16,-1,9,8,2400,-1,2398,9,2834,-1,23,3,24,-1,5,297,3,-1,61,2835,2836,-1,61,2374,2835,-1,2376,2837,2838,-1,2376,2839,2837,-1,66,2394,2379,-1,2394,66,65,-1,80,2402,2384,-1,2402,80,2840,-1,2829,2830,2841,-1,2829,87,2830,-1,2842,2385,2367,-1,2385,2842,2386,-1,2843,79,78,-1,2843,31,79,-1,2844,2845,2846,-1,2844,2847,2845,-1,2848,2849,2850,-1,2848,2851,2849,-1,2851,2852,2853,-1,2851,2848,2852,-1,18,2370,2853,-1,2370,18,49,-1,2827,79,58,-1,79,2827,2369,-1,91,81,2854,-1,81,91,90,-1,35,2843,2855,-1,35,34,2843,-1,43,13,2856,-1,43,11,13,-1,19,2365,2385,-1,2361,2365,19,-1,2857,2347,279,-1,2857,147,2347,-1,132,101,2353,-1,101,132,105,-1,124,112,111,-1,124,2415,112,-1,120,108,2858,-1,119,108,120,-1,2859,2352,125,-1,2859,2349,2352,-1,2354,2326,2414,-1,2328,2326,2354,-1,2284,110,2860,-1,2861,110,2284,-1,2291,2273,222,-1,2274,2273,2291,-1,169,2338,2339,-1,2338,169,171,-1,2330,2335,177,-1,2335,2330,2329,-1,2862,2425,2426,-1,2862,2863,2425,-1,2314,205,203,-1,2314,2313,205,-1,2864,2265,2264,-1,2864,2865,2265,-1,183,2419,160,-1,2419,183,270,-1,165,2279,2421,-1,2279,165,2280,-1,2272,2298,2439,-1,2272,2340,2298,-1,2338,252,2333,-1,2338,171,252,-1,189,2824,180,-1,2824,189,2331,-1,2866,2867,2868,-1,2869,2867,2866,-1,2416,118,2320,-1,2416,119,118,-1,2870,277,2871,-1,2870,278,277,-1,253,2218,2816,-1,2218,253,402,-1,2860,2285,2284,-1,2860,2872,2285,-1,156,184,2819,-1,156,155,184,-1,2431,2873,2874,-1,2873,2431,2875,-1,2310,240,239,-1,240,2310,202,-1,238,232,231,-1,232,238,237,-1,2303,2440,2876,-1,2865,2440,2303,-1,2271,245,2309,-1,2271,243,245,-1,374,242,227,-1,374,2292,242,-1,216,2285,213,-1,2285,216,2436,-1,2877,2603,2878,-1,2877,2601,2603,-1,2879,2302,1793,-1,2302,2879,2430,-1,2429,1795,2307,-1,2429,2305,1795,-1,2877,149,2880,-1,149,2877,150,-1,2269,2343,151,-1,2269,2268,2343,-1,2817,145,2881,-1,2817,146,145,-1,2882,2283,2436,-1,2882,2883,2283,-1,2422,53,2401,-1,2422,2323,53,-1,195,2344,197,-1,2345,2344,195,-1,236,2884,2282,-1,236,2281,2884,-1,200,219,154,-1,181,219,200,-1,2318,2380,2319,-1,2318,2403,2380,-1,2870,2845,2885,-1,2870,2871,2845,-1,193,60,2324,-1,193,36,60,-1,2323,293,53,-1,2323,286,293,-1,2270,2886,2887,-1,2886,2270,2439,-1,96,292,128,-1,29,292,96,-1,2264,2888,2864,-1,2264,2345,2888,-1,2274,1831,1808,-1,2274,2346,1831,-1,2889,2258,2259,-1,2248,2258,2889,-1,2814,311,2254,-1,311,2814,2889,-1,2259,2477,309,-1,304,2477,2259,-1,2256,307,308,-1,301,307,2256,-1,2443,2890,342,-1,2443,2257,2890,-1,329,2255,2249,-1,329,328,2255,-1,321,2248,2245,-1,321,2258,2248,-1,2247,324,2445,-1,2247,325,324,-1,320,332,321,-1,332,320,333,-1,2891,320,319,-1,320,2891,636,-1,310,349,342,-1,349,310,2446,-1,2892,2893,2894,-1,2892,2895,2893,-1,2244,655,346,-1,655,2244,2243,-1,2234,377,2896,-1,2234,388,377,-1,410,2460,2897,-1,410,2898,2460,-1,2322,405,2423,-1,2899,405,2322,-1,252,402,253,-1,252,249,402,-1,2432,2231,2240,-1,2231,2432,2233,-1,2900,2901,2902,-1,2903,2901,2900,-1,2904,2905,2906,-1,2904,2907,2905,-1,2908,2907,2909,-1,2910,2907,2908,-1,2901,2911,2912,-1,2901,2903,2911,-1,2913,2914,2915,-1,2904,2914,2913,-1,2802,380,2229,-1,2803,380,2802,-1,387,2225,2806,-1,2225,387,2454,-1,2455,385,2804,-1,2456,385,2455,-1,2454,2457,2226,-1,2454,2916,2457,-1,2917,391,2486,-1,2917,389,391,-1,2918,2224,2919,-1,2918,2800,2224,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getethmoid2_Geo_5_115_coordIndex_13()
		{
			int[] value = {395,2488,2223,-1,395,397,2488,-1,369,2237,357,-1,2237,369,360,-1,2808,2239,354,-1,2239,2808,2807,-1,2235,2234,2809,-1,2235,359,2234,-1,355,399,398,-1,355,406,399,-1,400,2236,401,-1,400,2417,2236,-1,2920,2921,2922,-1,2923,2921,2920,-1,375,2221,2220,-1,375,258,2221,-1,2924,2920,2925,-1,2924,2923,2920,-1,2926,2925,2927,-1,2926,2924,2925,-1,2928,2219,344,-1,2219,2928,2929,-1,2458,2930,262,-1,2931,2930,2458,-1,2218,2932,2899,-1,2932,2218,2217,-1,2216,2909,2213,-1,2216,2908,2909,-1,2795,2933,403,-1,2933,2795,2449,-1,2215,2238,2811,-1,2238,2215,407,-1,357,2236,358,-1,357,2237,2236,-1,2934,2210,411,-1,2211,2210,2934,-1,2935,2204,2936,-1,2937,2204,2935,-1,2938,2939,2940,-1,2939,2938,2941,-1,423,2942,2207,-1,2179,2942,423,-1,439,424,428,-1,424,439,438,-1,2943,2944,2935,-1,2943,2945,2944,-1,2202,2946,2197,-1,2946,2202,433,-1,2947,2948,2949,-1,2947,2950,2948,-1,437,2198,2951,-1,2198,437,2199,-1,2940,2949,2938,-1,2940,2947,2949,-1,2951,2952,2953,-1,2952,2951,2198,-1,2954,2196,2955,-1,2954,440,2196,-1,470,2956,471,-1,2956,470,2206,-1,2936,471,2956,-1,2936,2957,471,-1,471,460,2790,-1,460,471,458,-1,446,2464,455,-1,446,448,2464,-1,2192,2958,2193,-1,2958,2192,2959,-1,2960,445,2961,-1,2960,2189,445,-1,2184,2962,2185,-1,2184,2464,2962,-1,2963,2964,2959,-1,2965,2964,2963,-1,2466,446,450,-1,447,446,2466,-1,2180,2958,2181,-1,2193,2958,2180,-1,2793,2409,453,-1,2793,2410,2409,-1,2187,454,2186,-1,452,454,2187,-1,449,408,450,-1,1259,408,449,-1,2790,467,471,-1,2790,468,467,-1,1708,469,2178,-1,1708,2594,469,-1,2965,479,478,-1,2965,2963,479,-1,2185,486,485,-1,2185,2962,486,-1,488,2961,2176,-1,488,2960,2961,-1,2175,488,2176,-1,489,488,2175,-1,2172,2966,2967,-1,2172,500,2966,-1,2788,2170,2786,-1,2968,2170,2788,-1,2169,504,509,-1,2789,504,2169,-1,2969,2970,2971,-1,2969,2972,2970,-1,2166,2789,2169,-1,2470,2789,2166,-1,2973,2974,2971,-1,2974,2973,2164,-1,2786,2161,2471,-1,2786,2167,2161,-1,2165,2973,524,-1,2973,2165,2164,-1,2471,515,2160,-1,2161,515,2471,-1,2162,540,2155,-1,540,2162,2160,-1,2975,2893,2895,-1,2975,2976,2893,-1,2977,1512,1515,-1,1654,1512,2977,-1,514,2978,2979,-1,514,2980,2978,-1,2981,518,2982,-1,2981,2983,518,-1,520,1653,517,-1,1653,520,1652,-1,537,547,538,-1,2153,547,537,-1,2984,527,2159,-1,2984,1145,527,-1,1552,2985,2472,-1,1636,2985,1552,-1,2986,567,2149,-1,2986,2987,567,-1,2988,2148,2147,-1,2988,2989,2148,-1,2148,558,557,-1,2148,2475,558,-1,2989,2990,2991,-1,2990,2989,2988,-1,2144,2150,2992,-1,2144,2151,2150,-1,2993,2994,2995,-1,2996,2994,2993,-1,2996,2142,2994,-1,2997,2142,2996,-1,2997,2143,2142,-1,2998,2143,2997,-1,2998,2999,2143,-1,3000,2999,2998,-1,3000,3001,2999,-1,3000,3002,3001,-1,3003,3004,3005,-1,3003,3006,3004,-1,3007,3008,3009,-1,3008,3007,2141,-1,3010,2992,3011,-1,2144,2992,3010,-1,3012,3013,3014,-1,3012,3015,3013,-1,2476,3016,3017,-1,3016,2476,3018,-1,571,3019,3020,-1,571,570,3019,-1,3021,3022,3023,-1,3022,3021,3024,-1,3025,3026,3027,-1,3025,3028,3026,-1,3029,3030,3031,-1,3029,3032,3030,-1,3033,3034,3035,-1,3034,3033,3036,-1,3037,3038,3039,-1,3038,3037,3040,-1,2991,3041,3042,-1,2991,2990,3041,-1,3043,3044,3045,-1,3044,3043,3046,-1,3047,3048,3049,-1,3047,3050,3048,-1,3051,3052,3053,-1,3051,3054,3052,-1,3055,3056,3057,-1,3055,3058,3056,-1,3059,3060,3061,-1,3062,3060,3059,-1,3063,3064,3065,-1,3066,3064,3063,-1,2100,2252,649,-1,2477,2252,2100,-1,610,3067,3068,-1,2137,3067,610,-1,3069,3070,628,-1,3069,3071,3070,-1,2131,611,3072,-1,2138,611,2131,-1,2129,2127,2479,-1,2128,2127,2129,-1,606,2126,2130,-1,2126,606,613,-1,608,326,2480,-1,608,607,326,-1,3068,611,610,-1,600,611,3068,-1,614,2123,612,-1,2123,614,619,-1,3068,601,600,-1,601,3068,584,-1,584,623,601,-1,623,584,624,-1,2115,3073,2117,-1,2115,2118,3073,-1,2117,2116,2115,-1,2116,2117,2114,-1,3069,594,3074,-1,3069,628,594,-1,3075,2113,3076,-1,3075,3077,2113,-1,3078,2111,3079,-1,3078,2112,2111,-1,596,592,597,-1,596,2478,592,-1,3079,2109,3080,-1,3079,2111,2109,-1,591,597,592,-1,3081,597,591,-1,3080,605,604,-1,3080,2109,605,-1,2136,3081,591,-1,2133,3081,2136,-1,417,2211,2108,-1,2211,417,2209,-1,638,2103,2482,-1,638,2481,2103,-1,3082,3083,3084,-1,2095,3083,3082,-1,2097,3085,2098,-1,2097,3086,3085,-1,2775,2090,2484,-1,2775,3087,2090,-1,3088,646,3087,-1,3088,3086,646,-1,3085,3088,2976,-1,3085,3086,3088,-1,3089,643,642,-1,3089,3090,643,-1,643,3083,2106,-1,3090,3083,643,-1,3091,3084,3092,-1,3091,3082,3084,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getethmoid2_Geo_5_115_coordIndex_14()
		{
			int[] value = {3093,3091,3094,-1,3093,3082,3091,-1,3095,3094,2091,-1,3095,3093,3094,-1,2091,645,3095,-1,2090,645,2091,-1,3096,2953,2952,-1,3097,2953,3096,-1,2487,669,2485,-1,2487,3098,669,-1,3099,2222,2084,-1,2799,2222,3099,-1,681,711,709,-1,711,681,2089,-1,668,718,663,-1,668,2083,718,-1,2489,2082,693,-1,2082,2489,729,-1,2771,697,696,-1,697,2771,686,-1,689,2077,690,-1,3100,2077,689,-1,3100,702,2077,-1,676,702,3100,-1,2071,695,2075,-1,2071,2069,695,-1,2066,675,708,-1,675,2066,701,-1,2064,2070,3101,-1,2064,2068,2070,-1,3101,713,2064,-1,2062,713,3101,-1,3102,714,2057,-1,3102,2769,714,-1,2057,2767,3102,-1,725,2767,2057,-1,2056,2054,2059,-1,2056,2055,2054,-1,3103,726,3104,-1,3103,2766,726,-1,2758,3105,3106,-1,3105,2758,3107,-1,2493,2051,2017,-1,2493,2052,2051,-1,2049,3108,3109,-1,2049,2048,3108,-1,776,2037,2036,-1,776,2495,2037,-1,2500,3110,2762,-1,3110,2500,3111,-1,3112,2759,2761,-1,3113,2759,3112,-1,2762,2046,758,-1,2046,2762,3110,-1,3114,2044,3115,-1,2044,3114,2763,-1,3116,3117,3118,-1,3116,3119,3117,-1,744,3120,3121,-1,743,3120,744,-1,782,2043,2042,-1,782,3122,2043,-1,3123,3124,3125,-1,3123,3126,3124,-1,2498,2041,2036,-1,2497,2041,2498,-1,737,2499,736,-1,2499,737,2028,-1,2033,2040,2039,-1,2033,2032,2040,-1,2761,3127,3128,-1,3127,2761,2760,-1,754,2029,2027,-1,754,756,2029,-1,2027,3129,2499,-1,2029,3129,2027,-1,746,753,2034,-1,753,746,2031,-1,2039,3128,3127,-1,2039,2497,3128,-1,2019,3130,2020,-1,2019,3131,3130,-1,3119,3132,2023,-1,3121,3132,3119,-1,3133,2046,3115,-1,3133,2045,2046,-1,3134,3135,3136,-1,3134,3137,3135,-1,3138,3139,3140,-1,3138,3141,3139,-1,3142,3143,3144,-1,3142,2504,3143,-1,3145,3146,761,-1,3146,3145,3147,-1,2510,3139,2631,-1,2510,3140,3139,-1,3108,3138,3106,-1,3138,3108,3141,-1,2504,3148,733,-1,3142,3148,2504,-1,3149,3107,2755,-1,3149,3105,3107,-1,2050,773,2014,-1,2050,2494,773,-1,2015,741,738,-1,2015,2014,741,-1,2495,765,2013,-1,769,765,2495,-1,1996,3150,800,-1,3151,3150,1996,-1,3152,3153,3154,-1,3155,3153,3152,-1,3156,3157,3158,-1,3157,3156,3159,-1,2011,805,3160,-1,2011,806,805,-1,779,783,805,-1,784,783,779,-1,3158,3161,3156,-1,3162,3161,3158,-1,3163,3156,3161,-1,3163,3164,3156,-1,785,3165,3166,-1,785,3167,3165,-1,3168,3164,3163,-1,3168,3169,3164,-1,3165,3170,3171,-1,3167,3170,3165,-1,3172,3125,3173,-1,3123,3125,3172,-1,2005,2754,3174,-1,2754,2005,787,-1,3173,3175,3176,-1,3125,3175,3173,-1,3174,2006,2005,-1,3174,3177,2006,-1,3175,3178,3176,-1,3175,3179,3178,-1,3177,2002,2006,-1,3177,2507,2002,-1,3180,3179,2765,-1,3179,3180,3178,-1,2001,3150,3181,-1,2001,2508,3150,-1,2004,2753,2003,-1,2004,795,2753,-1,745,804,2000,-1,745,802,804,-1,797,3182,3183,-1,796,3182,797,-1,3184,3162,3158,-1,3185,3162,3184,-1,1673,2631,1159,-1,2631,1673,2510,-1,807,3143,1993,-1,3143,807,3144,-1,2502,763,2632,-1,763,2502,2501,-1,2721,1989,1854,-1,1989,2721,2720,-1,954,3186,2513,-1,3186,954,3187,-1,1973,1983,1982,-1,1973,1975,1983,-1,1978,3188,2514,-1,3188,1978,839,-1,2587,1153,1152,-1,1153,2587,1972,-1,843,827,1984,-1,843,842,827,-1,845,1979,846,-1,845,1977,1979,-1,834,3189,835,-1,2517,3189,834,-1,849,3190,2748,-1,849,1969,3190,-1,1968,1963,2519,-1,1963,1968,2518,-1,2520,1967,841,-1,2520,1962,1967,-1,872,1965,873,-1,872,2520,1965,-1,866,877,863,-1,866,878,877,-1,881,1960,889,-1,1960,881,869,-1,2521,893,895,-1,2521,1957,893,-1,891,3191,861,-1,3191,891,3192,-1,2525,3193,3194,-1,2525,2524,3193,-1,3195,3196,3197,-1,3195,3198,3196,-1,3199,3192,3200,-1,3199,3191,3192,-1,3201,3202,3203,-1,3201,3204,3202,-1,3205,3206,3207,-1,3206,3205,3208,-1,3209,2747,903,-1,2747,3209,3210,-1,3211,3212,3213,-1,3211,3214,3212,-1,3215,3216,3217,-1,3218,3216,3215,-1,902,3219,903,-1,902,3220,3219,-1,3221,3215,3217,-1,3215,3221,3222,-1,3220,3223,3219,-1,3220,3224,3223,-1,3225,3222,3221,-1,3222,3225,3226,-1,3224,3206,3223,-1,3224,3227,3206,-1,3228,3225,3229,-1,3226,3225,3228,-1,3227,3207,3206,-1,3227,3230,3207,-1,3231,3229,3232,-1,3228,3229,3231,-1,3207,3233,3234,-1,3207,3230,3233,-1,3235,3232,3236,-1,3231,3232,3235,-1,3234,3237,3238,-1,3234,3233,3237,-1,3239,3236,3240,-1,3235,3236,3239,-1,3238,3241,1952,-1,3238,3237,3241,-1,3242,3239,3240,-1,3239,3242,3243,-1,3244,3243,3242,-1,3243,3244,3245,-1,1950,1953,3246,-1,1953,1950,3247,-1,3248,3245,3244,-1,3245,3248,3249,-1,3201,3250,3251,-1,3201,3203,3250,-1,909,3213,910,-1,909,3211,3213,-1,3203,3252,3250,-1,3203,3253,3252,-1,3254,948,1936,-1,3254,3255,948,-1,3256,917,2528,-1,920,917,3256,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getethmoid2_Geo_5_115_coordIndex_15()
		{
			int[] value = {3257,3258,3259,-1,3257,3255,3258,-1,3260,921,3261,-1,3262,921,3260,-1,1578,1942,1945,-1,1578,936,1942,-1,3263,2660,3264,-1,3263,2656,2660,-1,1584,3265,2667,-1,931,3265,1584,-1,1947,2530,2665,-1,2529,2530,1947,-1,3266,1947,1946,-1,3266,2529,1947,-1,1946,3267,3266,-1,3267,1946,1945,-1,3268,1938,2659,-1,1938,3268,3269,-1,3269,1939,1938,-1,1939,3269,3260,-1,1944,3270,1941,-1,3270,1944,3271,-1,2531,1592,2742,-1,1592,2531,1593,-1,3272,2741,946,-1,3272,942,2741,-1,3273,3274,3272,-1,3275,3274,3273,-1,912,914,913,-1,912,2533,914,-1,3276,3277,3278,-1,3277,3276,3279,-1,955,2751,956,-1,2751,955,3280,-1,824,3281,3282,-1,3187,3281,824,-1,3283,3281,3284,-1,3283,3282,3281,-1,3285,2534,3286,-1,3285,2535,2534,-1,3287,3288,3289,-1,3288,3287,2538,-1,2736,957,1934,-1,2536,957,2736,-1,968,3284,973,-1,3283,3284,968,-1,3290,3291,3292,-1,3291,3293,3294,-1,3291,3290,3293,-1,1934,972,2736,-1,1934,1933,972,-1,3295,1927,3296,-1,1927,3295,3297,-1,1610,2549,1611,-1,1610,1929,2549,-1,3298,3299,3300,-1,1930,3299,3298,-1,3301,3302,3303,-1,3302,3301,1928,-1,3304,3291,3305,-1,3306,3291,3304,-1,3291,3306,3307,-1,3308,3309,3310,-1,3308,3311,3309,-1,3312,3313,3314,-1,3312,3307,3313,-1,979,1926,1596,-1,978,1926,979,-1,3313,1933,2738,-1,3313,2543,1933,-1,2543,3304,965,-1,3306,3304,2543,-1,1925,2542,2546,-1,2542,1925,1595,-1,962,2537,960,-1,962,3303,2537,-1,2544,3315,3316,-1,3317,3315,2544,-1,3316,3318,1922,-1,3315,3318,3316,-1,3318,1923,1922,-1,3318,3319,1923,-1,3294,3320,3319,-1,3294,3293,3320,-1,3276,986,988,-1,3276,3278,986,-1,987,2730,1921,-1,2548,2730,987,-1,3321,3322,3323,-1,3321,3324,3322,-1,3324,3308,3322,-1,3324,3325,3308,-1,812,819,1988,-1,812,2676,819,-1,1853,1987,2750,-1,1853,1989,1987,-1,822,1989,2720,-1,822,1987,1989,-1,2515,1976,1266,-1,1976,2515,1980,-1,1971,1982,1916,-1,1982,1971,1973,-1,1980,1268,1981,-1,1980,2515,1268,-1,1801,1269,1799,-1,1801,1267,1269,-1,1862,2586,549,-1,2706,2586,1862,-1,1910,1014,2552,-1,1910,1015,1014,-1,3326,1885,1884,-1,1913,1885,3326,-1,1906,1907,1833,-1,1908,1907,1906,-1,1482,3327,3328,-1,1484,3327,1482,-1,2585,3329,3330,-1,2584,3329,2585,-1,2707,1290,2708,-1,2707,3331,1290,-1,2708,1289,1858,-1,2708,1290,1289,-1,2557,1142,3332,-1,2557,1864,1142,-1,1256,1084,1679,-1,1256,3333,1084,-1,1049,1350,1050,-1,1350,1049,3334,-1,3335,3336,3337,-1,3338,3336,3335,-1,1454,1759,2558,-1,1454,1760,1759,-1,1897,1703,1691,-1,1347,1703,1897,-1,3339,1132,3340,-1,1132,3339,1133,-1,2680,1771,1445,-1,2680,1772,1771,-1,3341,3342,3343,-1,3342,3341,3344,-1,3345,3346,3347,-1,3348,3346,3345,-1,1892,3349,3350,-1,1892,1080,3349,-1,1340,1080,1079,-1,1340,3349,1080,-1,3327,3351,3350,-1,3327,3352,3351,-1,2722,1327,2675,-1,2722,1773,1327,-1,1325,2565,3353,-1,1325,1091,2565,-1,1016,1098,1097,-1,1098,1016,1100,-1,3354,2569,1215,-1,2569,3354,1028,-1,1291,1875,1292,-1,1291,1120,1875,-1,2574,2571,2575,-1,2574,2572,2571,-1,1129,2579,1130,-1,1129,2580,2579,-1,1279,1287,1065,-1,1287,1279,2582,-1,3355,3356,2469,-1,3356,3355,3357,-1,2597,3342,3358,-1,3342,2597,3359,-1,1792,3360,3361,-1,3360,1792,1475,-1,3348,3355,2469,-1,3348,3345,3355,-1,3362,2699,3363,-1,3362,3364,2699,-1,2722,2612,1889,-1,2612,2722,1813,-1,1813,1851,2612,-1,1851,1813,1850,-1,2632,1160,1159,-1,762,1160,2632,-1,1700,22,3365,-1,1700,2399,22,-1,1181,1841,1179,-1,1181,1183,1841,-1,1845,1354,1177,-1,1845,1755,1354,-1,1915,557,1608,-1,1915,565,557,-1,1818,2629,1695,-1,2629,1818,1466,-1,1104,1677,1684,-1,1678,1677,1104,-1,1014,1097,2551,-1,1014,1016,1097,-1,3366,1215,1214,-1,3366,3354,1215,-1,3367,2607,1311,-1,2607,3367,3368,-1,3369,2704,1743,-1,2704,3369,2703,-1,1698,1360,1754,-1,1698,1355,1360,-1,1857,1752,1757,-1,1752,1857,3364,-1,1817,3370,1828,-1,1199,3370,1817,-1,3371,1200,3372,-1,1200,3371,1836,-1,3373,3369,2615,-1,3373,3374,3369,-1,3352,3375,3351,-1,3375,3352,3376,-1,1675,1825,1850,-1,1675,1251,1825,-1,3377,1822,3378,-1,1823,1822,3377,-1,3379,3380,3381,-1,3380,3379,3382,-1,1116,3381,1255,-1,3381,1116,3379,-1,1264,1197,1262,-1,3363,1197,1264,-1,1329,1814,1854,-1,1329,2564,1814,-1,1227,2557,2701,-1,1474,2557,1227,-1,3383,3384,3385,-1,3386,3384,3383,-1,2711,1806,1309,-1,2711,1865,1806,-1,2595,1793,1682,-1,2879,1793,2595,-1,1680,1156,1095,-1,1680,1155,1156,-1,1789,2691,3387,-1,1790,2691,1789,-1,2574,2715,2572,-1,2574,1127,2715,-1,1797,1788,1712,-1,2630,1788,1797,-1,1145,1044,1146,-1,1145,2984,1044,-1,1139,2581,1829,-1,2581,1139,1138,-1,1795,2570,2306,-1,1795,1794,2570,-1,2573,2602,1131,-1,2602,2573,2603,-1,1807,1683,2438,-1,1809,1683,1807,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getethmoid2_Geo_5_115_coordIndex_16()
		{
			int[] value = {1866,3388,1135,-1,1866,3340,3388,-1,3345,3389,3355,-1,3345,1074,3389,-1,2586,1151,2584,-1,2586,1149,1151,-1,1125,2578,1873,-1,2578,1125,2718,-1,1121,1878,1294,-1,1121,1291,1878,-1,2575,1130,2579,-1,2575,2571,1130,-1,1284,1129,1131,-1,1129,1284,1872,-1,3387,1295,2605,-1,3387,2691,1295,-1,1784,1473,1472,-1,1784,1783,1473,-1,1871,1309,1308,-1,1309,1871,2710,-1,1226,1901,1474,-1,1226,1231,1901,-1,1779,3390,3391,-1,3390,1779,1314,-1,3392,1777,1471,-1,1777,3392,1321,-1,3392,1320,1321,-1,1778,1320,3392,-1,1148,1489,1672,-1,1147,1489,1148,-1,1443,1025,1024,-1,1025,1443,1026,-1,2725,1681,2604,-1,2725,1071,1681,-1,1073,1903,1810,-1,1073,1039,1903,-1,2681,2441,1900,-1,2681,1442,2441,-1,2726,2559,1705,-1,2559,2726,1050,-1,1347,2781,2782,-1,1347,1346,2781,-1,1618,2558,1899,-1,2558,1618,2658,-1,1234,1367,2698,-1,1363,1367,1234,-1,1372,1236,2617,-1,1233,1236,1372,-1,1828,2588,1740,-1,1828,3370,2588,-1,3393,1378,1377,-1,3393,1751,1378,-1,3373,2616,3394,-1,3373,1748,2616,-1,1740,2618,1741,-1,1740,1193,2618,-1,3394,1746,2617,-1,3394,2616,1746,-1,1359,2614,1758,-1,2614,1359,1358,-1,1738,1904,1737,-1,1331,1904,1738,-1,1381,1440,2685,-1,1440,1381,1450,-1,2621,1735,1734,-1,2620,1735,2621,-1,1384,2622,1396,-1,1384,1733,2622,-1,1387,3395,1389,-1,3395,1387,3396,-1,3397,2620,3398,-1,3397,1735,2620,-1,1731,2622,3399,-1,1732,2622,1731,-1,3395,1408,3400,-1,1408,3395,2684,-1,1402,3397,3401,-1,1402,3402,3397,-1,1732,1427,1730,-1,1732,1731,1427,-1,1391,1727,1448,-1,1727,1391,1383,-1,1347,2627,2687,-1,1347,2782,2627,-1,1439,1419,1715,-1,1725,1419,1439,-1,3403,1449,3404,-1,1724,1449,3403,-1,2681,1727,1393,-1,1727,2681,3405,-1,2626,1718,1436,-1,3406,1718,2626,-1,1722,1721,1729,-1,1721,1722,1426,-1,1412,2682,1403,-1,1412,3407,2682,-1,1407,1717,1716,-1,1407,1406,1717,-1,1896,1763,1052,-1,1763,1896,2613,-1,1726,1724,3403,-1,1726,1725,1724,-1,2442,1442,1714,-1,2441,1442,2442,-1,1573,1762,1455,-1,1762,1573,1572,-1,1694,1822,1818,-1,1822,1694,3378,-1,1707,1709,2679,-1,1707,1060,1709,-1,2678,1707,296,-1,1707,2678,1058,-1,2686,1761,1453,-1,2686,1351,1761,-1,1183,1417,1701,-1,1182,1417,1183,-1,1463,1696,1695,-1,1696,1463,1204,-1,1835,1241,1461,-1,2589,1241,1835,-1,1232,1241,2589,-1,2569,1252,1216,-1,2569,1834,1252,-1,1176,1188,1187,-1,1176,1690,1188,-1,1242,1688,833,-1,1688,1242,1468,-1,1753,3364,3362,-1,1752,3364,1753,-1,1131,3384,1284,-1,2602,3384,1131,-1,2570,1467,1115,-1,2570,1877,1467,-1,1306,1298,1299,-1,1306,1783,1298,-1,1142,2582,1045,-1,1142,1141,2582,-1,1861,2706,1862,-1,1861,2707,2706,-1,1887,1087,1086,-1,1887,1256,1087,-1,1161,1248,1166,-1,1248,1161,1249,-1,1529,1670,1669,-1,1529,1667,1670,-1,2638,1526,1649,-1,1526,2638,1663,-1,3408,1664,3409,-1,1664,3408,1666,-1,2637,1663,2638,-1,2637,3410,1663,-1,3411,3408,3412,-1,3408,3411,3413,-1,3414,1505,1662,-1,3410,1505,3414,-1,3412,3415,3411,-1,3412,3416,3415,-1,3417,3418,3419,-1,3418,3417,3416,-1,1504,2639,1657,-1,1503,2639,1504,-1,3420,1660,3421,-1,3420,2640,1660,-1,2645,3422,1522,-1,3422,2645,3420,-1,1659,1516,3423,-1,1659,1658,1516,-1,1510,2474,543,-1,1510,2642,2474,-1,1658,2643,1517,-1,1658,2641,2643,-1,1651,529,531,-1,2644,529,1651,-1,3424,2646,3425,-1,2647,2646,3424,-1,2642,2152,2474,-1,2642,3426,2152,-1,1494,1646,3427,-1,1649,1646,1494,-1,3428,1671,3429,-1,1671,3428,1668,-1,3429,3430,3431,-1,3432,3430,3429,-1,1531,1547,1645,-1,1531,1551,1547,-1,1644,1648,1632,-1,1648,1644,1532,-1,3431,3433,3434,-1,3430,3433,3431,-1,1561,1643,1559,-1,1643,1561,3435,-1,2673,3436,2674,-1,2673,3437,3436,-1,1643,3438,1642,-1,3438,1643,3439,-1,1537,3440,1641,-1,1537,3438,3440,-1,3440,3441,3442,-1,3440,3443,3441,-1,3441,2672,3444,-1,3441,3445,2672,-1,2649,2648,3446,-1,2649,1640,2648,-1,3447,2650,3448,-1,3447,1637,2650,-1,2650,1493,1492,-1,2650,1638,1493,-1,2651,3449,1636,-1,3449,2651,1497,-1,3450,2653,3451,-1,3450,1492,2653,-1,3449,3452,3453,-1,3452,3449,3454,-1,1557,3451,1554,-1,1557,2671,3451,-1,3452,2654,3455,-1,2654,3452,1631,-1,3437,1553,3436,-1,3437,1558,1553,-1,582,1574,1570,-1,582,1572,1574,-1,1625,1617,1624,-1,1625,2658,1617,-1,2530,2655,2665,-1,2530,1586,2655,-1,1569,1571,1570,-1,1571,1569,2666,-1,3456,3457,3458,-1,3459,3457,3456,-1,3458,1602,2662,-1,3457,1602,3458,-1,3457,1600,1602,-1,1599,1600,3457,-1,1596,2540,979,-1,2540,1596,983,-1,1582,2666,1594,-1,1582,1571,2666,-1,1579,3460,2659,-1,1579,2663,3460,-1,1590,3461,2664,-1,3461,1590,927,-1,1575,927,1590,-1,927,1575,2744,-1,3436,1555,3462,-1,3436,1553,1555,-1,3455,1555,2669,-1,1555,3455,2654,-1,2668,2671,1557,-1,2668,2670,2671,-1,3453,3455,1491,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=17 */
		private int[] getethmoid2_Geo_5_115_coordIndex_17()
		{
			int[] value = {3455,3453,3452,-1,3451,1635,3450,-1,2671,1635,3451,-1,1636,3453,2985,-1,3453,1636,3449,-1,3448,3463,3447,-1,2652,3463,3448,-1,1637,3446,1548,-1,3447,3446,1637,-1,1548,2648,3464,-1,3446,2648,1548,-1,3445,1546,2672,-1,3445,3433,1546,-1,3442,1641,3440,-1,3464,1641,3442,-1,3439,3440,3438,-1,3440,3439,3443,-1,1540,2674,1535,-1,1540,2673,2674,-1,3435,3439,1643,-1,3439,3435,3465,-1,2674,3462,1536,-1,2674,3436,3462,-1,1538,1639,1556,-1,1538,1543,1639,-1,1538,1544,1543,-1,3466,3434,3467,-1,3431,3434,3466,-1,1645,1546,3468,-1,1645,1547,1546,-1,3432,3468,3430,-1,3427,3468,3432,-1,1527,1668,3428,-1,1668,1527,1669,-1,1495,3427,3432,-1,1494,3427,1495,-1,3469,2647,3426,-1,3469,2645,2647,-1,3424,1650,2154,-1,3424,3425,1650,-1,1654,1518,1517,-1,1518,1654,530,-1,3470,1496,1656,-1,2639,1496,3470,-1,3417,1522,3422,-1,3417,1519,1522,-1,3420,3415,3422,-1,3415,3420,3421,-1,1504,1659,1661,-1,1504,1657,1659,-1,1662,3471,3472,-1,1662,1661,3471,-1,3421,3411,3415,-1,3411,3421,3473,-1,3474,1662,3472,-1,3414,1662,3474,-1,3473,3413,3411,-1,3413,3473,3475,-1,1502,2635,3476,-1,2635,1502,2634,-1,1499,3410,3414,-1,1663,3410,1499,-1,3413,1666,3408,-1,1666,3413,1667,-1,1888,1483,2723,-1,1888,1162,1483,-1,2565,2511,2721,-1,2511,2565,1093,-1,3477,1013,1303,-1,3477,1011,1013,-1,1303,1212,1304,-1,1303,1013,1212,-1,1477,1095,1263,-1,1477,1096,1095,-1,2585,549,2586,-1,2585,2724,549,-1,1683,1830,1869,-1,1809,1830,1683,-1,1782,2580,2712,-1,1782,1786,2580,-1,1786,1296,1798,-1,1786,1785,1296,-1,2718,1796,2578,-1,1794,1796,2718,-1,1209,1235,1202,-1,1209,1208,1235,-1,1201,1697,1205,-1,1697,1201,1835,-1,1728,1457,1344,-1,1720,1457,1728,-1,2687,1420,1343,-1,2687,2627,1420,-1,3478,3479,3480,-1,3478,3335,3479,-1,1898,1763,1348,-1,1898,1053,1763,-1,2628,2623,2682,-1,1839,2623,2628,-1,1432,1729,1405,-1,1729,1432,1722,-1,1415,1430,1720,-1,1431,1430,1415,-1,1411,1716,1423,-1,1716,1411,1407,-1,1714,2262,2442,-1,2262,1714,1009,-1,3481,1449,1448,-1,3481,3404,1449,-1,2627,583,1713,-1,2627,2782,583,-1,3338,1607,1051,-1,3338,2683,1607,-1,1410,1407,1411,-1,1410,1408,1407,-1,3401,3398,1409,-1,3401,3397,3398,-1,3396,2684,3395,-1,2684,3396,3482,-1,1401,3399,3483,-1,1731,3399,1401,-1,3398,2619,3484,-1,3398,2620,2619,-1,1386,3396,1387,-1,3396,1386,3485,-1,1733,3399,2622,-1,1733,1392,3399,-1,1733,1383,1391,-1,1383,1733,1384,-1,1380,2625,1362,-1,2625,1380,2685,-1,2625,1440,1439,-1,2625,2685,1440,-1,1237,1356,1355,-1,1356,1237,1366,-1,3371,1749,3393,-1,3371,3372,1749,-1,1379,3393,1377,-1,1379,3371,3393,-1,2618,574,1373,-1,2618,572,574,-1,1191,3370,3486,-1,3370,1191,2588,-1,1572,1896,1762,-1,1896,1572,582,-1,1345,2687,1343,-1,2687,1345,1703,-1,3346,3487,3330,-1,3346,3488,3487,-1,1810,1902,1772,-1,1903,1902,1810,-1,1083,1327,1035,-1,1083,1328,1327,-1,3489,1911,2552,-1,3490,1911,3489,-1,2722,1036,1773,-1,1036,2722,1889,-1,1319,1486,1323,-1,1486,1319,1318,-1,3368,1778,3392,-1,1315,1778,3368,-1,1315,3367,1316,-1,1315,3368,3367,-1,1781,2607,1471,-1,1781,1224,2607,-1,1308,2713,1870,-1,2713,1308,1782,-1,1124,1876,2719,-1,1124,1292,1876,-1,2577,1126,1874,-1,2577,2716,1126,-1,1123,1873,1300,-1,1873,1123,1125,-1,1337,1038,2610,-1,1337,1336,1038,-1,2599,3359,2597,-1,2599,3491,3359,-1,2598,3360,2599,-1,3360,2598,3492,-1,1871,2562,2710,-1,2562,1871,2714,-1,3385,2602,2601,-1,3384,2602,3385,-1,1805,2714,1285,-1,2714,1805,2562,-1,1139,1766,1282,-1,1139,1831,1766,-1,1676,1011,3477,-1,1276,1011,1676,-1,1788,2596,3493,-1,2596,1788,2630,-1,2573,2715,2717,-1,2572,2715,2573,-1,3387,2696,1789,-1,3387,3493,2696,-1,3362,1803,1753,-1,3362,1804,1803,-1,1864,1140,1142,-1,1864,1261,1140,-1,1041,1895,2563,-1,1041,1040,1895,-1,1255,1694,1254,-1,3381,1694,1255,-1,3378,1694,3381,-1,3380,3378,3381,-1,3377,3378,3380,-1,1161,1165,1852,-1,1161,1166,1165,-1,3494,1854,813,-1,1812,1854,3494,-1,1854,1812,1329,-1,1164,808,2697,-1,1164,1824,808,-1,449,1894,1077,-1,1894,449,2677,-1,3394,3374,3373,-1,3495,3374,3394,-1,3372,1816,3496,-1,1816,3372,1200,-1,2700,1198,1197,-1,2700,3497,1198,-1,1754,1359,1686,-1,1359,1754,1360,-1,1236,1208,3495,-1,1208,1236,1235,-1,1819,1743,2704,-1,1819,1744,1743,-1,2701,1228,1227,-1,2701,2633,1228,-1,1217,2694,1218,-1,3344,2694,1217,-1,1905,2568,1906,-1,1905,1881,2568,-1,2567,1099,1098,-1,1211,1099,2567,-1,1016,1331,1101,-1,1015,1331,1016,-1,2629,1210,1209,-1,1210,2629,2703,-1,1206,1696,1204,-1,1696,1206,1207,-1,1173,1354,1174,-1,1354,1173,1177,-1,1172,1169,1184,-1,1172,1167,1169,-1,1700,1840,1701,-1,1700,3365,1840,-1,1155,1157,1156,-1,1155,1154,1157,-1,2599,1475,1446,-1,3360,1475,2599,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=18 */
		private int[] getethmoid2_Geo_5_115_coordIndex_18()
		{
			int[] value = {3498,1076,1075,-1,1338,1076,3498,-1,3331,2692,1290,-1,3331,3343,2692,-1,473,3357,3492,-1,473,3356,3357,-1,1135,1070,1136,-1,1135,3388,1070,-1,1127,2716,2715,-1,2716,1127,1126,-1,1214,2555,3366,-1,2555,1214,1909,-1,3499,1324,1882,-1,3499,1031,1324,-1,2287,2591,2288,-1,1115,2591,2287,-1,1022,1025,2554,-1,1025,1022,1024,-1,2728,1913,3326,-1,2728,1017,1913,-1,1085,3353,1086,-1,1325,3353,1085,-1,3488,1040,3487,-1,3488,1895,1040,-1,1077,3351,3375,-1,3351,1077,1893,-1,3348,3488,3346,-1,2792,3488,3348,-1,1076,1071,2725,-1,1072,1071,1076,-1,1768,2694,1769,-1,1768,1281,2694,-1,1064,2581,1286,-1,2581,1064,1063,-1,3359,3343,3342,-1,3343,3359,2692,-1,3344,1769,2694,-1,1769,3344,3341,-1,1133,2561,2560,-1,1133,3339,2561,-1,2686,2678,1706,-1,2678,2686,1453,-1,1061,1704,1059,-1,1061,1760,1704,-1,3338,2726,3336,-1,1051,2726,3338,-1,1349,1050,1350,-1,1349,2559,1050,-1,3332,1045,1044,-1,3332,1142,1045,-1,3331,1861,2583,-1,1861,3331,2707,-1,1827,3376,3352,-1,1827,1826,3376,-1,2584,3498,3329,-1,1151,3498,2584,-1,1336,1039,1038,-1,1336,1903,1039,-1,2689,1889,1888,-1,2689,1036,1889,-1,1880,3366,2555,-1,1880,1879,3366,-1,1027,2727,1030,-1,2727,1027,1026,-1,2566,2554,2553,-1,2566,1106,2554,-1,1884,3500,3326,-1,1884,1886,3500,-1,1021,3490,1480,-1,3490,1021,1020,-1,1860,2610,1149,-1,1337,2610,1860,-1,826,2516,1917,-1,826,825,2516,-1,1982,1917,1916,-1,1982,826,1917,-1,1976,2587,1266,-1,1976,2514,2587,-1,2513,1919,810,-1,2513,3186,1919,-1,2750,2608,1853,-1,2750,3501,2608,-1,1988,810,812,-1,1988,2513,810,-1,3322,3310,2731,-1,3322,3308,3310,-1,998,995,1920,-1,995,998,993,-1,3321,3292,3324,-1,3290,3292,3321,-1,996,987,1921,-1,987,996,988,-1,3320,3290,3321,-1,3293,3290,3320,-1,1604,912,989,-1,1604,2533,912,-1,1923,3320,3502,-1,3319,3320,1923,-1,3503,3319,3318,-1,3503,3294,3319,-1,3315,3503,3318,-1,3504,3503,3315,-1,3317,3504,3315,-1,3305,3504,3317,-1,965,3305,3317,-1,3304,3305,965,-1,2546,1927,3297,-1,1927,2546,2542,-1,981,3505,982,-1,981,985,3505,-1,3313,3306,2543,-1,3307,3306,3313,-1,3300,3309,2541,-1,3300,3299,3309,-1,3506,1002,1001,-1,3506,3507,1002,-1,3299,3310,3309,-1,3299,2734,3310,-1,991,999,3456,-1,990,999,991,-1,990,994,999,-1,3505,1597,3507,-1,3505,985,1597,-1,987,2549,2548,-1,1611,2549,987,-1,3303,3295,2537,-1,3295,3303,3302,-1,1930,2734,3299,-1,976,2734,1930,-1,3302,3297,3295,-1,3297,3302,1613,-1,2538,2545,961,-1,2538,3287,2545,-1,2735,968,973,-1,969,968,2735,-1,3294,3305,3291,-1,3503,3305,3294,-1,3305,3503,3504,-1,2737,3283,968,-1,3508,3283,2737,-1,971,2536,2736,-1,2534,2536,971,-1,2538,959,3288,-1,959,2538,966,-1,965,972,2543,-1,972,965,964,-1,961,2544,962,-1,961,2545,2544,-1,3509,3286,3289,-1,3509,3285,3286,-1,3510,957,956,-1,957,3510,3511,-1,2740,3281,958,-1,3284,3281,2740,-1,3187,958,3281,-1,954,958,3187,-1,956,1986,3510,-1,1986,956,2751,-1,817,3285,3509,-1,816,3285,817,-1,922,3276,988,-1,922,3279,3276,-1,1615,2528,1583,-1,1615,3256,2528,-1,3274,942,3272,-1,3274,3512,942,-1,2532,2742,1592,-1,2532,3271,2742,-1,3512,939,942,-1,3512,3513,939,-1,3271,1943,2742,-1,3271,1944,1943,-1,3514,934,940,-1,3514,3515,934,-1,3515,2743,934,-1,3515,3516,2743,-1,3516,930,2743,-1,3516,3517,930,-1,1588,2665,1589,-1,1947,2665,1588,-1,932,1586,2530,-1,932,1584,1586,-1,926,2744,925,-1,2744,926,928,-1,3264,3518,3263,-1,3519,3518,3264,-1,1945,1940,3267,-1,1945,1942,1940,-1,3520,3260,3269,-1,3520,3262,3260,-1,3259,1948,3257,-1,1948,3259,929,-1,923,2528,917,-1,923,924,2528,-1,918,920,951,-1,918,917,920,-1,3520,1936,3277,-1,3520,3254,1936,-1,3216,3250,3252,-1,3521,3250,3216,-1,910,901,1949,-1,910,3213,901,-1,3521,3251,3250,-1,3248,3251,3521,-1,908,3522,909,-1,908,3523,3522,-1,3247,2526,1953,-1,3247,3204,2526,-1,906,3523,908,-1,906,3200,3523,-1,3241,2746,3246,-1,3241,904,2746,-1,2745,3240,3524,-1,3240,2745,3242,-1,3237,904,3241,-1,3237,3525,904,-1,3240,3526,3524,-1,3236,3526,3240,-1,3233,3525,3237,-1,3233,3527,3525,-1,3236,3528,3526,-1,3232,3528,3236,-1,3230,3527,3233,-1,3230,3529,3527,-1,3232,3530,3528,-1,3229,3530,3232,-1,3227,3529,3230,-1,3227,3531,3529,-1,3229,3532,3530,-1,3225,3532,3229,-1,3533,3227,3224,-1,3533,3531,3227,-1,3532,3221,3534,-1,3221,3532,3225,-1,3535,3224,3220,-1,3535,3533,3224,-1,3221,3536,3534,-1,3217,3536,3221,-1,3212,3220,902,-1,3212,3535,3220,-1,3252,3217,3216,-1,3252,3536,3217,-1,3213,902,901,-1,3213,3212,902,-1,3210,3537,2747,-1,3537,3210,3202,-1,3208,3223,3206,-1,3223,3208,3538,-1,1952,3539,3238,-1,1952,900,3539,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=19 */
		private int[] getethmoid2_Geo_5_115_coordIndex_19()
		{
			int[] value = {3540,3194,3522,-1,3540,2525,3194,-1,3541,3191,3199,-1,3541,896,3191,-1,3542,3198,3195,-1,3542,894,3198,-1,3543,2525,3540,-1,3543,2523,2525,-1,896,861,3191,-1,896,889,861,-1,3198,893,3544,-1,894,893,3198,-1,892,888,3543,-1,892,886,888,-1,1957,3544,893,-1,1957,880,3544,-1,848,874,873,-1,874,848,864,-1,863,876,864,-1,863,877,876,-1,855,858,856,-1,855,859,858,-1,1962,1966,1967,-1,1962,859,1966,-1,1968,1964,2517,-1,2519,1964,1968,-1,1965,1969,849,-1,1965,840,1969,-1,1966,1979,830,-1,1966,846,1979,-1,839,834,2749,-1,838,834,839,-1,843,1983,1970,-1,843,1984,1983,-1,827,828,825,-1,828,827,829,-1,3186,824,823,-1,3186,3187,824,-1,764,3545,1848,-1,3545,764,3546,-1,3146,1848,3545,-1,1848,3146,1994,-1,3547,3185,3183,-1,3547,3162,3185,-1,3183,801,797,-1,3183,3185,801,-1,1996,3548,3151,-1,1996,1998,3548,-1,3180,792,790,-1,3180,2000,792,-1,790,3178,3180,-1,3178,790,789,-1,2006,2001,2007,-1,2006,2002,2001,-1,3176,789,3549,-1,3176,3178,789,-1,3550,3177,3174,-1,3550,3551,3177,-1,3552,3155,3152,-1,3155,3552,3553,-1,2754,3550,3174,-1,3171,3550,2754,-1,3553,2009,3155,-1,2009,3553,2010,-1,786,3171,2754,-1,3165,3171,786,-1,788,3163,3554,-1,788,3168,3163,-1,3555,3167,785,-1,3555,3556,3167,-1,3554,3161,3557,-1,3554,3163,3161,-1,3555,784,781,-1,3555,785,784,-1,3557,3162,3547,-1,3557,3161,3162,-1,3558,3552,3559,-1,3548,3552,3558,-1,3548,3553,3552,-1,1998,3553,3548,-1,1998,2010,3553,-1,1997,2010,1998,-1,1997,2505,2010,-1,3560,2505,1997,-1,3560,3561,2505,-1,3560,3562,3561,-1,3159,3164,2008,-1,3159,3156,3164,-1,3563,3154,3564,-1,3152,3154,3563,-1,799,1996,800,-1,1996,799,2509,-1,3149,777,3565,-1,2755,777,3149,-1,2014,2051,2050,-1,2015,2051,2014,-1,3105,3566,3109,-1,3566,3105,3149,-1,2053,3142,3567,-1,2053,3148,3142,-1,2048,3141,3108,-1,3141,2048,2503,-1,3140,1991,1990,-1,3140,2510,1991,-1,3145,3568,3147,-1,3145,3567,3568,-1,2503,3546,2501,-1,2503,3569,3546,-1,1990,3138,3140,-1,1990,2757,3138,-1,3137,3570,3135,-1,3137,3113,3570,-1,3110,3115,2046,-1,3115,3110,3114,-1,3119,2022,3117,-1,3119,2023,2022,-1,3131,2759,3130,-1,3131,2760,2759,-1,3132,2761,3571,-1,3112,2761,3132,-1,2034,748,2035,-1,748,2034,753,-1,2497,3572,3128,-1,2497,2498,3572,-1,3573,2760,3131,-1,3127,2760,3573,-1,3124,3175,3125,-1,3124,3574,3175,-1,803,3122,782,-1,803,3118,3122,-1,3575,2765,3179,-1,3575,743,2765,-1,3116,3121,3119,-1,744,3121,3116,-1,3115,2043,3133,-1,2043,3115,2044,-1,3136,3574,3124,-1,3136,3135,3574,-1,3113,3130,2759,-1,3137,3130,3113,-1,3565,2032,3576,-1,2032,3565,2040,-1,777,2036,2041,-1,777,776,2036,-1,766,733,3148,-1,768,733,766,-1,3577,2868,2459,-1,2866,2868,3577,-1,730,726,724,-1,730,3104,726,-1,729,2056,722,-1,729,2489,2056,-1,719,679,721,-1,679,719,682,-1,680,719,2083,-1,682,719,680,-1,2058,714,2492,-1,2058,2057,714,-1,3578,2062,3101,-1,2087,2062,3578,-1,3579,707,2770,-1,3579,2491,707,-1,3101,704,3578,-1,3101,2070,704,-1,2076,697,692,-1,2076,2075,697,-1,3580,696,2078,-1,696,3580,2771,-1,2079,3103,3104,-1,2079,2490,3103,-1,2081,3103,2490,-1,2073,3103,2081,-1,2073,2766,3103,-1,2067,2766,2073,-1,2067,727,2766,-1,2491,727,2067,-1,2491,3581,727,-1,3579,3581,2491,-1,3579,717,3581,-1,717,3579,2768,-1,658,670,661,-1,658,671,670,-1,2084,2223,2085,-1,2222,2223,2084,-1,669,2918,666,-1,3098,2918,669,-1,657,671,658,-1,657,2917,671,-1,3097,3582,2953,-1,3583,3582,3097,-1,2772,2091,3094,-1,2092,2091,2772,-1,2095,2106,3083,-1,2095,2096,2106,-1,3584,411,2794,-1,2934,411,3584,-1,3585,654,2212,-1,3585,3586,654,-1,3587,2975,3588,-1,3587,3589,2975,-1,2893,3088,2773,-1,2893,2976,3088,-1,2775,3088,3087,-1,2773,3088,2775,-1,533,2775,2484,-1,532,2775,533,-1,2774,3086,2097,-1,2774,646,3086,-1,3084,3090,3587,-1,3083,3090,3084,-1,3095,644,2094,-1,644,3095,645,-1,652,335,2108,-1,335,652,337,-1,2135,2127,587,-1,2135,3590,2127,-1,3591,3592,598,-1,3593,3592,3591,-1,3594,3080,3595,-1,3594,3079,3080,-1,2134,3596,590,-1,2134,3075,3596,-1,2112,637,2111,-1,2112,635,637,-1,3077,2134,3597,-1,2134,3077,3075,-1,3598,3070,3071,-1,3598,3599,3070,-1,625,630,634,-1,625,2777,630,-1,621,625,2120,-1,625,621,2777,-1,3600,2779,3601,-1,3600,3602,2779,-1,615,619,2778,-1,620,619,615,-1,585,3603,2121,-1,585,3067,3603,-1,599,3604,3072,-1,3605,3604,599,-1,3072,3606,2131,-1,3604,3606,3072,-1,2129,2126,2125,-1,2129,2130,2126,-1,3606,2132,2131,-1,3606,3607,2132,-1,600,3072,611,-1,600,599,3072,-1,3070,629,628,-1,629,3070,3608,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=20 */
		private int[] getethmoid2_Geo_5_115_coordIndex_20()
		{
			int[] value = {3591,597,3081,-1,597,3591,598,-1,584,3067,585,-1,3067,584,3068,-1,1361,1369,1362,-1,1361,1747,1369,-1,578,1736,1399,-1,577,1736,578,-1,2621,566,575,-1,2621,2140,566,-1,3062,3056,3060,-1,3006,3056,3062,-1,3057,3053,3055,-1,3065,3053,3057,-1,3048,2993,3061,-1,3048,2996,2993,-1,3046,3049,3058,-1,3046,3047,3049,-1,3044,3042,3045,-1,3052,3042,3044,-1,2998,3050,3040,-1,3050,2998,2997,-1,3039,3043,3036,-1,3043,3039,3038,-1,3041,3035,3034,-1,3041,3031,3035,-1,3002,3037,3027,-1,3037,3002,3000,-1,3028,3033,3024,-1,3033,3028,3025,-1,3030,3023,3022,-1,3030,3020,3023,-1,3018,3001,3026,-1,3018,2999,3001,-1,3013,3016,3021,-1,3013,3017,3016,-1,3014,3010,3012,-1,3019,3010,3014,-1,3012,3011,3005,-1,3010,3011,3012,-1,2994,2141,3007,-1,2141,2994,2142,-1,3006,3009,3004,-1,3006,3062,3009,-1,555,3051,3064,-1,3051,555,3609,-1,2986,571,3032,-1,571,2986,551,-1,3610,2991,3054,-1,2991,3610,2989,-1,2147,2987,2988,-1,567,2987,2147,-1,568,555,554,-1,568,3609,555,-1,2149,551,2986,-1,552,551,2149,-1,1552,2158,1545,-1,1552,2472,2158,-1,1650,546,2154,-1,1650,545,546,-1,1653,2783,2982,-1,2783,1653,531,-1,1515,2981,2977,-1,1515,2978,2981,-1,1514,1511,544,-1,1511,1514,1513,-1,2156,544,539,-1,2156,542,544,-1,3611,2892,3586,-1,3611,2895,2892,-1,2165,523,519,-1,523,2165,524,-1,516,2980,514,-1,2980,516,3612,-1,2973,2784,524,-1,3613,2784,2973,-1,3613,2971,2970,-1,2971,3613,2973,-1,2788,2970,2972,-1,2788,2787,2970,-1,3614,505,2967,-1,505,3614,507,-1,493,2789,2470,-1,493,494,2789,-1,2972,2968,2788,-1,503,2968,2972,-1,2967,497,2172,-1,497,2967,505,-1,493,480,494,-1,493,481,480,-1,2174,502,499,-1,2174,487,502,-1,3615,478,483,-1,3615,2965,478,-1,487,2960,488,-1,487,3616,2960,-1,2468,485,491,-1,2468,2185,485,-1,2792,2469,1259,-1,2792,3348,2469,-1,1260,465,477,-1,465,1260,464,-1,2469,409,408,-1,3356,409,2469,-1,2181,2677,449,-1,2677,2181,456,-1,2360,2409,408,-1,2409,2360,454,-1,2793,2466,2410,-1,2793,447,2466,-1,2465,2187,459,-1,2465,443,2187,-1,2187,2191,452,-1,443,2191,2187,-1,2965,3617,2964,-1,3615,3617,2965,-1,2962,448,3618,-1,2962,2464,448,-1,444,2961,445,-1,2961,444,3619,-1,3617,2465,3620,-1,2465,3617,444,-1,447,3621,448,-1,447,2793,3621,-1,471,456,458,-1,471,2203,456,-1,2957,2203,471,-1,426,2942,2203,-1,2207,2942,426,-1,2179,432,1800,-1,423,432,2179,-1,2195,2955,2196,-1,3622,2955,2195,-1,2198,3623,2952,-1,3623,2198,2463,-1,2949,441,440,-1,2949,2948,441,-1,3624,2950,2947,-1,3624,436,2950,-1,2202,442,2462,-1,2197,442,2202,-1,439,2200,2199,-1,2200,439,434,-1,2205,2945,2943,-1,2205,3625,2945,-1,434,428,427,-1,428,434,439,-1,2954,2941,2938,-1,2941,2954,3626,-1,2955,2906,2905,-1,2955,3622,2906,-1,2956,2935,2936,-1,2935,2956,2943,-1,421,415,414,-1,421,420,415,-1,648,536,422,-1,648,534,536,-1,2460,475,474,-1,2460,2898,475,-1,3627,3577,3628,-1,3627,3629,3577,-1,354,407,355,-1,2239,407,354,-1,2811,2450,2449,-1,2811,2810,2450,-1,2932,2449,2795,-1,2449,2932,2811,-1,403,2458,404,-1,2867,2458,403,-1,2931,3630,2930,-1,3631,3630,2931,-1,2930,2926,2927,-1,3630,2926,2930,-1,2911,344,343,-1,344,2911,2928,-1,2912,343,352,-1,343,2912,2911,-1,2796,2922,400,-1,2920,2922,2796,-1,398,2221,2434,-1,2221,398,351,-1,400,3628,2417,-1,2922,3628,400,-1,355,2434,353,-1,2434,355,398,-1,362,354,353,-1,354,362,2808,-1,2807,2238,2239,-1,2807,365,2238,-1,2237,359,2235,-1,360,359,2237,-1,656,397,2455,-1,2488,397,656,-1,3098,2800,2918,-1,3098,394,2800,-1,2917,2453,389,-1,657,2453,2917,-1,2916,395,2457,-1,2916,396,395,-1,391,2802,392,-1,391,2803,2802,-1,2456,2227,385,-1,396,2227,2456,-1,2801,2806,2225,-1,2801,378,2806,-1,2805,2803,390,-1,2805,380,2803,-1,368,2804,385,-1,384,2804,368,-1,388,2806,377,-1,388,387,2806,-1,2901,3632,3633,-1,2901,2912,3632,-1,2908,3634,2910,-1,3634,2908,2929,-1,2907,3626,2905,-1,2907,2910,3626,-1,3633,2902,2901,-1,3633,3096,2902,-1,2941,2910,3634,-1,2910,2941,3626,-1,2899,2816,2218,-1,2322,2816,2899,-1,2208,2898,410,-1,2208,475,2898,-1,369,361,360,-1,369,368,361,-1,365,381,3635,-1,365,367,381,-1,2896,363,362,-1,2896,377,363,-1,3586,346,654,-1,346,3586,2892,-1,2894,346,2892,-1,2812,346,2894,-1,334,647,2101,-1,2100,647,334,-1,336,251,349,-1,336,2242,251,-1,336,2243,2242,-1,336,339,2243,-1,2813,329,331,-1,329,2813,330,-1,2891,316,603,-1,319,316,2891,-1,3636,318,298,-1,2445,318,3636,-1,2890,2253,342,-1,2253,2890,300,-1,2256,2251,2260,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=21 */
		private int[] getethmoid2_Geo_5_115_coordIndex_21()
		{
			int[] value = {2256,308,2251,-1,2814,2248,2889,-1,299,2248,2814,-1,151,168,2309,-1,2343,168,151,-1,36,2823,2395,-1,193,2823,36,-1,2846,2871,2884,-1,2871,2846,2845,-1,3637,2403,2318,-1,3637,2404,2403,-1,1222,283,291,-1,284,283,1222,-1,130,116,2348,-1,117,116,130,-1,279,3638,2857,-1,279,278,3638,-1,2286,197,2344,-1,2286,198,197,-1,273,276,271,-1,276,273,2815,-1,7,3639,6,-1,3639,7,3640,-1,2433,260,263,-1,260,2433,261,-1,3641,2297,2299,-1,3642,2297,3641,-1,2300,2340,167,-1,2340,2300,2875,-1,164,221,2280,-1,164,199,221,-1,2880,245,244,-1,245,2880,149,-1,2430,3383,244,-1,2430,2879,3383,-1,3643,2878,2603,-1,2878,3643,2304,-1,119,2351,108,-1,2351,119,2416,-1,280,214,2872,-1,214,280,201,-1,211,2311,239,-1,2311,211,218,-1,2436,2821,2882,-1,2436,216,2821,-1,2872,213,2285,-1,2872,214,213,-1,201,241,214,-1,200,241,201,-1,2269,2876,2440,-1,2269,150,2876,-1,280,2327,190,-1,3644,2327,280,-1,2822,238,231,-1,2822,212,238,-1,2299,2874,2863,-1,2874,2299,2431,-1,2871,2282,2884,-1,2871,277,2282,-1,2330,2824,2331,-1,2330,2230,2824,-1,176,183,172,-1,176,2341,183,-1,2825,176,172,-1,176,2825,177,-1,2421,3645,3642,-1,3645,2421,2279,-1,163,2321,187,-1,2321,163,162,-1,2873,203,202,-1,2873,2314,203,-1,156,2426,157,-1,156,2862,2426,-1,2230,177,2825,-1,177,2230,2330,-1,3646,145,147,-1,2883,145,3646,-1,2860,112,3644,-1,110,112,2860,-1,2328,115,192,-1,2328,2354,115,-1,2412,2358,105,-1,2359,2358,2412,-1,127,2351,2276,-1,127,2356,2351,-1,2413,2418,114,-1,2413,122,2418,-1,2858,107,2859,-1,108,107,2858,-1,100,2353,101,-1,100,2413,2353,-1,3647,147,2857,-1,3647,3646,147,-1,2856,63,43,-1,2856,3648,63,-1,3649,2853,2370,-1,3649,2851,2853,-1,97,2831,40,-1,97,2393,2831,-1,2835,75,2406,-1,2835,2855,75,-1,74,2408,2372,-1,74,82,2408,-1,2853,19,18,-1,2853,2852,19,-1,2836,2406,2373,-1,2836,2835,2406,-1,2850,2373,2848,-1,2850,2836,2373,-1,2847,2885,2845,-1,2847,2839,2885,-1,31,58,79,-1,31,59,58,-1,2391,2841,2830,-1,2391,2390,2841,-1,42,2389,2392,-1,2389,42,41,-1,2377,2838,3650,-1,2377,2376,2838,-1,2836,2844,61,-1,2844,2836,2850,-1,7,25,3640,-1,23,25,7,-1,2833,17,3651,-1,15,17,2833,-1,2398,2397,10,-1,3652,2397,2398,-1,6,9,3,-1,2834,9,6,-1,4,0,5,-1,4,1,0,-1,2386,3651,17,-1,2386,2842,3651,-1,24,265,2832,-1,24,297,265,-1,2374,2855,2835,-1,2374,35,2855,-1,2839,2849,2837,-1,2839,2847,2849,-1,2379,67,66,-1,2379,2378,67,-1,86,3653,2407,-1,86,88,3653,-1,2366,89,2828,-1,2366,2365,89,-1,33,55,59,-1,55,33,52,-1,58,2381,2827,-1,58,55,2381,-1,2855,78,75,-1,2855,2843,78,-1,61,2846,62,-1,61,2844,2846,-1,3648,3650,2838,-1,2856,3650,3648,-1,2851,2837,2849,-1,3649,2837,2851,-1,2370,3648,3649,-1,2370,63,3648,-1,2852,2361,19,-1,2372,2361,2852,-1,77,75,78,-1,75,77,76,-1,2854,2407,3653,-1,81,2407,2854,-1,34,31,2843,-1,31,34,32,-1,46,43,63,-1,46,44,43,-1,86,2369,87,-1,86,2362,2369,-1,103,2337,104,-1,103,2411,2337,-1,3654,118,2861,-1,2325,118,3654,-1,2826,120,2858,-1,120,2826,2355,-1,2861,111,110,-1,111,2861,118,-1,2350,2859,107,-1,2349,2859,2350,-1,2414,2327,2415,-1,2414,2326,2327,-1,2283,2861,2284,-1,3654,2861,2283,-1,2418,192,115,-1,2418,121,192,-1,2346,2293,1766,-1,2346,2291,2293,-1,208,153,155,-1,153,208,154,-1,2310,2863,2874,-1,2863,2310,2425,-1,2864,140,2267,-1,2864,2888,140,-1,2334,161,163,-1,161,2334,2294,-1,2297,2439,2298,-1,2439,2297,2886,-1,372,2333,186,-1,2333,372,2339,-1,152,173,185,-1,173,152,174,-1,179,2331,189,-1,2331,179,178,-1,123,180,191,-1,180,123,189,-1,2868,403,2933,-1,2867,403,2868,-1,278,3655,3638,-1,3655,278,2870,-1,197,2823,195,-1,2823,197,196,-1,2875,2314,2873,-1,2314,2875,2300,-1,2862,2819,3641,-1,2862,156,2819,-1,2821,211,210,-1,2821,218,211,-1,2429,2865,2303,-1,2265,2865,2429,-1,2820,3656,2887,-1,2820,223,3656,-1,2427,373,227,-1,373,2427,2295,-1,231,2817,2822,-1,2817,231,230,-1,2881,2822,2817,-1,2881,210,2822,-1,240,238,212,-1,240,204,238,-1,217,209,2315,-1,209,217,215,-1,2427,199,2332,-1,229,199,2427,-1,2601,2880,3385,-1,2880,2601,2877,-1,2818,1793,2302,-1,2818,2438,1793,-1,150,2878,2876,-1,150,2877,2878,-1,223,2818,3656,-1,223,246,2818,-1,2318,3657,3637,-1,3657,2318,2320,-1,2875,2298,2340,-1,2298,2875,2431,-1,251,2424,349,-1,251,252,2424,-1,4,1702,268,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=22 */
		private int[] getethmoid2_Geo_5_115_coordIndex_22()
		{
			int[] value = {266,1702,4,-1,2437,285,284,-1,85,285,2437,-1,194,2345,195,-1,2888,2345,194,-1,3647,2320,2325,-1,3647,3657,2320,-1,2820,2279,221,-1,2279,2820,3645,-1,2319,2275,2276,-1,2319,2380,2275,-1,2885,3655,2870,-1,3655,2885,2375,-1,2324,62,2281,-1,2324,60,62,-1,2401,196,2422,-1,2401,94,196,-1,2371,128,127,-1,96,128,2371,-1,2890,298,300,-1,3636,298,2890,-1,2252,304,2261,-1,304,2252,2477,-1,311,2259,309,-1,2889,2259,311,-1,312,2257,2443,-1,312,313,2257,-1,328,302,2255,-1,328,314,302,-1,632,330,2813,-1,632,631,330,-1,314,2246,2444,-1,314,328,2246,-1,636,333,320,-1,333,636,2776,-1,2100,310,309,-1,310,2100,334,-1,345,340,650,-1,345,248,340,-1,2773,2894,2893,-1,2483,2894,2773,-1,339,653,655,-1,338,653,339,-1,364,2807,2808,-1,2807,364,366,-1,3658,384,370,-1,3658,382,384,-1,2293,2897,2460,-1,2293,2232,2897,-1,2432,410,2897,-1,2432,2448,410,-1,226,2233,2452,-1,2233,226,2231,-1,2939,2903,2900,-1,3659,2903,2939,-1,3660,3583,3097,-1,3660,2914,3583,-1,2909,2904,2913,-1,2907,2904,2909,-1,2903,2928,2911,-1,2903,3659,2928,-1,2915,3660,3661,-1,2914,3660,2915,-1,383,381,2805,-1,381,383,382,-1,2453,2804,383,-1,2455,2804,2453,-1,2802,379,393,-1,2802,2229,379,-1,2454,386,2916,-1,2454,387,386,-1,394,2801,2800,-1,394,393,2801,-1,392,2486,391,-1,2486,392,2487,-1,2226,2919,2224,-1,2919,2226,2799,-1,2451,362,353,-1,2896,362,2451,-1,2450,370,356,-1,3658,370,2450,-1,370,357,356,-1,357,370,369,-1,2915,399,406,-1,399,2915,3661,-1,401,2235,2798,-1,2235,401,2236,-1,399,3632,2797,-1,399,3661,3632,-1,2798,257,401,-1,257,2798,258,-1,2797,2912,352,-1,2797,3632,2912,-1,2925,2796,261,-1,2925,2920,2796,-1,2927,261,2433,-1,2927,2925,261,-1,2899,2795,405,-1,2795,2899,2932,-1,2869,3631,2931,-1,3662,3631,2869,-1,3663,2869,2866,-1,3663,3662,2869,-1,2913,406,2214,-1,406,2913,2915,-1,2460,1766,2293,-1,2460,1219,1766,-1,411,414,412,-1,2210,414,411,-1,421,418,422,-1,418,421,419,-1,2937,426,2204,-1,427,426,2937,-1,430,2201,2461,-1,2201,430,429,-1,2900,2940,2939,-1,2900,3664,2940,-1,3665,432,431,-1,432,3665,1800,-1,438,425,424,-1,425,438,433,-1,2944,2937,2935,-1,2937,2944,435,-1,436,2944,2950,-1,436,435,2944,-1,433,437,2946,-1,437,433,438,-1,2948,3625,441,-1,2948,2945,3625,-1,2946,2951,3666,-1,2951,2946,437,-1,2940,3624,2947,-1,2940,3664,3624,-1,3666,2953,3582,-1,2953,3666,2951,-1,2938,440,2954,-1,2938,2949,440,-1,2461,470,472,-1,2461,2206,470,-1,430,472,467,-1,472,430,2461,-1,2790,463,2178,-1,463,2790,460,-1,2959,3667,2958,-1,3667,2959,2964,-1,2189,3616,3621,-1,3616,2189,2960,-1,3668,2959,2192,-1,2963,2959,3668,-1,2182,2188,451,-1,2182,2194,2188,-1,3667,457,2467,-1,3667,3620,457,-1,459,3620,2465,-1,3620,459,457,-1,454,461,463,-1,461,454,2360,-1,2203,2179,1081,-1,2203,2942,2179,-1,2963,3669,479,-1,2963,3668,3669,-1,2962,2174,486,-1,2962,3618,2174,-1,2176,3619,2177,-1,2176,2961,3619,-1,3669,490,2173,-1,3669,491,490,-1,3669,480,479,-1,480,3669,2173,-1,503,2175,2968,-1,503,489,2175,-1,500,2969,2966,-1,500,501,2969,-1,492,2786,2170,-1,492,2167,2786,-1,508,504,506,-1,504,508,509,-1,2966,2971,2974,-1,2966,2969,2971,-1,2164,3614,2974,-1,3614,2164,513,-1,2787,2471,2163,-1,2787,2786,2471,-1,512,2785,510,-1,512,511,2785,-1,2169,3670,3612,-1,2168,3670,2169,-1,2983,2785,518,-1,2983,3670,2785,-1,2784,2155,522,-1,2155,2784,2162,-1,3092,3611,3671,-1,3092,3588,3611,-1,2783,1654,2977,-1,530,1654,2783,-1,535,2212,416,-1,535,3585,2212,-1,541,2979,542,-1,541,514,2979,-1,1514,2978,1515,-1,1514,2979,2978,-1,2982,2977,2981,-1,2977,2982,2783,-1,520,545,1652,-1,520,519,545,-1,2146,2150,563,-1,2146,556,2150,-1,2989,2475,2148,-1,2989,3610,2475,-1,2988,3029,2990,-1,3029,2988,2987,-1,556,2992,2150,-1,3066,2992,556,-1,2995,3007,3059,-1,3007,2995,2994,-1,3063,3005,3011,-1,3063,3003,3005,-1,3009,3015,3004,-1,3015,3009,3008,-1,3008,3013,3015,-1,3013,3008,3017,-1,2476,2999,3018,-1,2476,2143,2999,-1,3020,3014,3023,-1,3020,3019,3014,-1,3016,3024,3021,-1,3024,3016,3028,-1,3026,3002,3027,-1,3026,3001,3002,-1,3031,3022,3035,-1,3031,3030,3022,-1,3025,3036,3033,-1,3036,3025,3039,-1,3000,3040,3037,-1,3040,3000,2998,-1,3042,3034,3045,-1,3042,3041,3034,-1,3038,3046,3043,-1,3046,3038,3047,-1,3050,2996,3048,-1,3050,2997,2996,-1,3055,3052,3044,-1,3053,3052,3055,-1,3058,3060,3056,-1,3058,3049,3060,-1,3061,2995,3059,-1,3061,2993,2995,-1,3003,3065,3057,-1,3063,3065,3003,-1,576,1838,1388,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=23 */
		private int[] getethmoid2_Geo_5_115_coordIndex_23()
		{
			int[] value = {576,566,1838,-1,595,586,2119,-1,586,595,624,-1,3074,593,3597,-1,593,3074,594,-1,596,3071,3069,-1,596,2780,3071,-1,3601,601,623,-1,601,3601,2779,-1,3605,3606,3604,-1,3605,3607,3606,-1,3602,3607,3605,-1,3602,3593,3607,-1,3600,3593,3602,-1,3600,3592,3593,-1,3672,3592,3600,-1,3672,3673,3592,-1,3599,3673,3672,-1,3673,3599,3598,-1,613,609,608,-1,613,606,609,-1,3674,588,2128,-1,2137,588,3674,-1,3603,2137,3674,-1,3067,2137,3603,-1,2480,619,614,-1,619,2480,2778,-1,3602,599,2779,-1,3602,3605,599,-1,3073,2123,618,-1,3073,2122,2123,-1,618,2117,3073,-1,2117,618,627,-1,3672,3601,3608,-1,3672,3600,3601,-1,3599,3608,3070,-1,3599,3672,3608,-1,2116,3597,593,-1,3597,2116,3077,-1,633,3076,2113,-1,3076,633,3078,-1,2780,3598,3071,-1,3673,3598,2780,-1,3079,3076,3078,-1,3594,3076,3079,-1,598,3673,2780,-1,3592,3673,598,-1,590,3590,2135,-1,590,3596,3590,-1,3595,604,2479,-1,3595,3080,604,-1,2132,3593,3591,-1,3607,3593,2132,-1,3093,2095,3082,-1,2093,2095,3093,-1,3089,3085,3589,-1,3089,2098,3085,-1,2934,2108,2211,-1,3584,2108,2934,-1,2108,3584,652,-1,3087,645,2090,-1,3087,646,645,-1,2097,2103,2774,-1,2097,2104,2103,-1,642,2098,3089,-1,2098,642,2099,-1,652,2794,653,-1,3584,2794,652,-1,3092,3587,3588,-1,3092,3084,3587,-1,3091,3671,3675,-1,3091,3092,3671,-1,3675,3094,3091,-1,2772,3094,3675,-1,640,644,2481,-1,644,640,2094,-1,2902,2952,3623,-1,3096,2952,2902,-1,667,2799,3099,-1,2919,2799,667,-1,711,2084,710,-1,2084,711,3099,-1,689,678,677,-1,689,683,678,-1,730,2771,3580,-1,2771,730,687,-1,690,694,691,-1,2077,694,690,-1,2073,2080,700,-1,2073,2081,2080,-1,2063,2068,2064,-1,2063,706,2068,-1,715,3579,2770,-1,715,2768,3579,-1,2769,715,712,-1,2769,716,715,-1,3102,716,2769,-1,3102,3676,716,-1,2767,3676,3102,-1,2767,728,3676,-1,726,2767,724,-1,726,728,2767,-1,723,688,687,-1,688,723,2055,-1,2449,358,2933,-1,2449,356,358,-1,732,3107,2758,-1,3107,732,731,-1,3109,3106,3105,-1,3109,3108,3106,-1,741,739,738,-1,739,741,740,-1,3134,2500,2020,-1,3111,2500,3134,-1,755,2022,756,-1,2022,755,3677,-1,3678,2763,3114,-1,2763,3678,3126,-1,3118,3679,3122,-1,3118,3117,3679,-1,3135,3575,3574,-1,3135,3570,3575,-1,744,802,745,-1,744,3116,802,-1,2764,3126,3123,-1,2764,2763,3126,-1,734,2499,3129,-1,734,736,2499,-1,3128,3571,2761,-1,3572,3571,3128,-1,753,749,748,-1,753,752,749,-1,2029,2038,3129,-1,2030,2038,2029,-1,2039,3573,2033,-1,3573,2039,3127,-1,758,752,2762,-1,758,749,752,-1,3121,3112,3132,-1,3120,3112,3121,-1,3679,2045,3133,-1,3679,3677,2045,-1,3134,3678,3111,-1,3678,3134,3136,-1,3141,2502,3139,-1,3141,2503,2502,-1,3143,2018,1992,-1,3143,2504,2018,-1,3545,761,3146,-1,3545,759,761,-1,760,3569,2047,-1,3569,760,759,-1,3106,2757,2758,-1,2757,3106,3138,-1,3145,2052,2493,-1,761,2052,3145,-1,3107,770,2755,-1,3107,731,770,-1,773,2049,2756,-1,773,2494,2049,-1,774,3566,3576,-1,2756,3566,774,-1,770,2495,776,-1,770,769,2495,-1,3151,3181,3150,-1,3680,3181,3151,-1,3155,3169,3153,-1,2009,3169,3155,-1,3158,3681,3184,-1,3681,3158,3157,-1,3160,783,3682,-1,3160,805,783,-1,3683,3682,3684,-1,3160,3682,3683,-1,3159,3562,3157,-1,3159,3561,3562,-1,3684,3166,3685,-1,3682,3166,3684,-1,2008,3561,3159,-1,2008,2505,3561,-1,3685,3165,786,-1,3166,3165,3685,-1,3167,3172,3170,-1,3556,3172,3167,-1,3686,788,787,-1,788,3686,3168,-1,3170,3173,3687,-1,3172,3173,3170,-1,2506,787,2005,-1,787,2506,3686,-1,3173,3549,3687,-1,3173,3176,3549,-1,3559,3152,3563,-1,3152,3559,3552,-1,3551,2507,3177,-1,3551,791,2507,-1,3680,3559,3563,-1,3680,3558,3559,-1,3151,3558,3680,-1,3151,3548,3558,-1,798,2003,2753,-1,2003,798,2508,-1,801,2753,797,-1,2753,801,798,-1,796,2011,3182,-1,1999,2011,796,-1,3560,2509,3681,-1,2509,3560,1997,-1,3182,3160,3683,-1,2011,3160,3182,-1,3562,3681,3157,-1,3681,3562,3560,-1,2501,764,763,-1,3546,764,2501,-1,809,3144,807,-1,809,3568,3144,-1,1993,1992,1991,-1,1992,1993,3143,-1,3688,816,2752,-1,3688,3689,816,-1,2751,3501,2750,-1,3501,2751,3280,-1,3188,2749,3690,-1,3188,839,2749,-1,3691,836,835,-1,3691,1975,836,-1,1977,837,1978,-1,845,837,1977,-1,3190,835,3189,-1,3190,3691,835,-1,846,859,855,-1,859,846,1966,-1,2748,3189,852,-1,2748,3190,3189,-1,2518,854,1963,-1,854,2518,844,-1,850,852,851,-1,850,2748,852,-1,1959,1955,887,-1,874,1955,1959,-1,2522,869,881,-1,869,2522,1961,-1,875,895,2524,-1,875,2521,895,-1,3196,890,897,-1,3196,1954,890,-1,892,3192,891,-1,3192,892,3692,-1,2524,3693,3193,-1,2524,895,3693,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=24 */
		private int[] getethmoid2_Geo_5_115_coordIndex_24()
		{
			int[] value = {3197,897,3694,-1,3197,3196,897,-1,3523,3192,3692,-1,3200,3192,3523,-1,3204,898,2526,-1,3201,898,3204,-1,3234,3205,3207,-1,3234,3695,3205,-1,3696,903,3219,-1,903,3696,3209,-1,3194,3214,3211,-1,3194,3193,3214,-1,3697,3210,3209,-1,3253,3210,3697,-1,3193,3698,3214,-1,3193,3693,3698,-1,3699,3209,3696,-1,3697,3209,3699,-1,3693,3700,3698,-1,3693,3542,3700,-1,3701,3696,3538,-1,3699,3696,3701,-1,3542,3702,3700,-1,3542,3195,3702,-1,3703,3538,3208,-1,3701,3538,3703,-1,3702,3197,3704,-1,3702,3195,3197,-1,3208,3705,3703,-1,3208,3205,3705,-1,3704,3694,3706,-1,3704,3197,3694,-1,3695,3705,3205,-1,3705,3695,3707,-1,3706,3541,3708,-1,3706,3694,3541,-1,3539,3707,3695,-1,3707,3539,3709,-1,3708,3199,905,-1,3708,3541,3199,-1,900,3709,3539,-1,3709,900,899,-1,905,3200,906,-1,905,3199,3200,-1,907,3242,2745,-1,3242,907,3244,-1,3246,1951,1950,-1,3246,2746,1951,-1,3251,3244,907,-1,3244,3251,3248,-1,3537,3204,3247,-1,3537,3202,3204,-1,3522,3211,909,-1,3522,3194,3211,-1,3253,3202,3210,-1,3253,3203,3202,-1,3279,921,3262,-1,922,921,3279,-1,3255,949,948,-1,3255,3257,949,-1,920,3261,921,-1,920,3256,3261,-1,915,926,916,-1,915,928,926,-1,3268,3255,3254,-1,3255,3268,3258,-1,2667,3264,2660,-1,3265,3264,2667,-1,931,3710,3265,-1,3711,3710,931,-1,3517,931,930,-1,3517,3711,931,-1,935,2529,3266,-1,935,933,2529,-1,2527,3266,3267,-1,2527,935,3266,-1,2659,938,937,-1,938,2659,1938,-1,939,3514,940,-1,3513,3514,939,-1,3270,943,1941,-1,2741,943,3270,-1,2531,2661,1593,-1,2531,1939,2661,-1,1937,2741,3270,-1,946,2741,1937,-1,945,3272,946,-1,3273,3272,945,-1,3263,3275,3273,-1,3518,3275,3263,-1,988,951,922,-1,988,2732,951,-1,955,3689,3280,-1,955,2535,3689,-1,3712,824,3282,-1,824,3712,1985,-1,821,3713,953,-1,820,3713,821,-1,3508,3282,3283,-1,3508,3712,3282,-1,3288,953,3713,-1,959,953,3288,-1,2738,970,2541,-1,970,2738,1932,-1,3289,1931,3287,-1,3289,3286,1931,-1,1934,3511,2539,-1,957,3511,1934,-1,3284,974,973,-1,3284,2740,974,-1,3307,3292,3291,-1,3312,3292,3307,-1,3292,3312,3714,-1,1932,2737,970,-1,2539,2737,1932,-1,1926,3296,1927,-1,1926,3298,3296,-1,2729,1921,2730,-1,1921,2729,975,-1,3296,3300,2739,-1,3298,3300,3296,-1,2733,1928,3301,-1,1928,2733,1929,-1,1597,3456,3507,-1,1597,3459,3456,-1,1597,1598,3459,-1,999,3507,3456,-1,999,1002,3507,-1,3325,3311,3308,-1,3325,3314,3311,-1,3314,2738,3311,-1,3314,3313,2738,-1,983,3506,2540,-1,983,982,3506,-1,984,1595,1925,-1,1595,984,981,-1,962,3316,3715,-1,2544,3316,962,-1,3715,1922,2547,-1,3316,1922,3715,-1,991,3458,989,-1,3458,991,3456,-1,912,992,989,-1,912,911,992,-1,2548,3323,2730,-1,3502,3323,2548,-1,993,911,995,-1,911,993,992,-1,3323,2731,2730,-1,3323,3322,2731,-1,3292,3325,3324,-1,3292,3714,3325,-1,818,1674,2752,-1,1674,818,2512,-1,822,2511,823,-1,2511,822,2720,-1,3501,814,2608,-1,3501,3688,814,-1,828,1268,1267,-1,828,1981,1268,-1,831,1974,832,-1,831,3690,1974,-1,2514,1972,2587,-1,2514,3188,1972,-1,2159,1148,1490,-1,1148,2159,526,-1,1275,2728,1012,-1,2728,1275,1017,-1,2550,3489,2551,-1,2550,1479,3489,-1,1029,3354,1118,-1,3354,1029,1028,-1,1031,1111,1032,-1,1031,3499,1111,-1,2723,3328,1339,-1,2723,1482,3328,-1,1151,1338,3498,-1,1151,1150,1338,-1,3330,2724,2585,-1,3330,3487,2724,-1,1041,1826,1043,-1,1041,3376,1826,-1,1770,1858,1289,-1,1770,1859,1858,-1,1621,3334,1049,-1,1621,1623,3334,-1,1765,3335,3337,-1,3335,1765,3479,-1,1350,3716,1351,-1,3716,1350,3334,-1,3340,1868,3388,-1,3340,1132,1868,-1,1445,1288,3491,-1,1445,1771,1288,-1,1069,2709,1062,-1,2709,1069,1068,-1,1066,1287,1138,-1,1066,1065,1287,-1,3347,1074,3345,-1,1075,1074,3347,-1,3350,1893,1892,-1,3350,3351,1893,-1,1079,1341,1340,-1,1341,1079,1891,-1,1036,1341,1034,-1,1341,1036,2689,-1,1328,1082,2564,-1,1083,1082,1328,-1,3717,1854,1814,-1,3717,2721,1854,-1,2552,2551,3489,-1,2552,1014,2551,-1,2567,1109,1213,-1,2567,1110,1109,-1,1905,1882,1881,-1,1882,1905,3499,-1,1878,1123,1302,-1,1878,1124,1123,-1,1283,2712,1872,-1,2713,2712,1283,-1,2561,2710,2562,-1,2561,2711,2710,-1,1767,1280,1768,-1,2695,1280,1767,-1,3330,3347,3346,-1,3330,3329,3347,-1,2598,3358,2791,-1,2598,2597,3358,-1,3389,1792,3361,-1,3389,2604,1792,-1,1446,3491,2599,-1,1446,1445,3491,-1,3364,1856,2699,-1,3364,1857,1856,-1,1673,1247,2697,-1,1673,1485,1247,-1,2400,1700,1702,-1,2400,2399,1700,-1,1460,1168,1847,-1,1168,1460,1462,-1,1842,1171,1699,-1,1842,1844,1171,-1,1180,1461,1178,-1,1180,1697,1461,-1,1839,1186,1458,-1,2628,1186,1839,-1,1466,2704,2629,-1,2704,1466,1819,-1,1684,1738,1374,-1,1677,1738,1684,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=25 */
		private int[] getethmoid2_Geo_5_115_coordIndex_25()
		{
			int[] value = {1013,1097,1099,-1,1013,2550,1097,-1,1212,2553,1278,-1,1212,2566,2553,-1,1026,1834,2727,-1,1834,1026,1443,-1,1119,1879,1467,-1,1119,1118,1879,-1,3365,1221,1220,-1,3365,2278,1221,-1,2633,2984,2159,-1,2702,2984,2633,-1,1311,1316,3367,-1,1311,1310,1316,-1,3374,2703,3369,-1,2703,3374,1210,-1,2698,1185,1234,-1,2698,1239,1185,-1,1352,1757,1353,-1,1757,1352,1758,-1,1199,3486,3370,-1,1194,3486,1199,-1,1195,3371,1379,-1,1836,3371,1195,-1,1376,1745,1685,-1,1378,1745,1376,-1,1825,1163,1851,-1,1825,1249,1163,-1,3718,3379,1821,-1,3382,3379,3718,-1,3377,3382,1823,-1,3377,3380,3382,-1,1821,1116,1216,-1,1116,1821,3379,-1,2699,1197,3363,-1,1197,2699,2700,-1,1063,2600,1829,-1,1063,2709,2600,-1,3386,1284,3384,-1,1285,1284,3386,-1,2711,3339,1865,-1,2561,3339,2711,-1,1158,1687,1469,-1,1158,1157,1687,-1,1293,1790,1277,-1,1293,2691,1790,-1,1787,1273,1272,-1,1787,2690,1273,-1,1017,1914,1913,-1,1914,1017,1019,-1,1279,1046,1045,-1,1046,1279,2695,-1,1115,2306,2570,-1,2306,1115,2287,-1,2576,3643,2717,-1,3643,2576,2428,-1,1069,1136,1070,-1,1069,1863,1136,-1,3361,3492,3357,-1,3361,3360,3492,-1,1858,2706,2708,-1,1858,1860,2706,-1,1872,2580,1129,-1,2580,1872,2712,-1,1789,1273,1305,-1,1789,2696,1273,-1,1877,1271,1467,-1,1877,1875,1271,-1,1305,1470,1790,-1,1305,1304,1470,-1,3391,1306,2606,-1,3390,1306,3391,-1,1306,1314,1313,-1,1314,1306,3390,-1,1223,1310,1224,-1,1223,1230,1310,-1,1777,1319,1776,-1,1777,1321,1319,-1,1322,1319,1323,-1,1322,1776,1319,-1,1909,2556,2555,-1,2556,1909,1908,-1,3353,2721,3717,-1,3353,2565,2721,-1,3326,1020,2728,-1,1020,3326,3500,-1,3350,3328,3327,-1,3328,3350,3349,-1,1009,2688,2262,-1,2688,1009,1008,-1,271,3337,3336,-1,276,3337,271,-1,581,1346,2613,-1,581,2781,1346,-1,3334,1616,3716,-1,1623,1616,3334,-1,1190,3486,3497,-1,3486,1190,1191,-1,2698,1366,1237,-1,1367,1366,2698,-1,2616,1739,1746,-1,1750,1739,2616,-1,2615,1748,3373,-1,1751,1748,2615,-1,1371,1857,1757,-1,1371,1370,1857,-1,1685,1374,1376,-1,1374,1685,1684,-1,1384,1395,1385,-1,1395,1384,1396,-1,1389,3400,1390,-1,3400,1389,3395,-1,3397,1373,1735,-1,3402,1373,3397,-1,3485,1404,2624,-1,3485,1395,1404,-1,3400,1410,3484,-1,1410,3400,1408,-1,1401,3402,1402,-1,1401,3483,3402,-1,2684,1424,1406,-1,2684,3482,1424,-1,3406,1409,1718,-1,3406,3401,1409,-1,1051,1621,1049,-1,1607,1621,1051,-1,1400,3480,1398,-1,1400,3478,3480,-1,1343,1419,1344,-1,1420,1419,1343,-1,1413,3404,1414,-1,3403,3404,1413,-1,3405,1900,1416,-1,3405,2681,1900,-1,3407,3406,2626,-1,3407,1412,3406,-1,1182,1425,1417,-1,1717,1425,1182,-1,1843,2682,3407,-1,2682,1843,2628,-1,1432,1415,1433,-1,1415,1432,1431,-1,1438,1725,1439,-1,1725,1438,1724,-1,3405,1448,1727,-1,3481,1448,3405,-1,3481,1416,1459,-1,3481,3405,1416,-1,2658,1454,2558,-1,2658,1625,1454,-1,1412,3401,3406,-1,3401,1412,1402,-1,1708,1709,2594,-1,1708,2679,1709,-1,1452,2679,1708,-1,1451,2679,1452,-1,3336,1705,271,-1,3336,2726,1705,-1,1435,1847,1168,-1,1435,1422,1847,-1,1220,1840,3365,-1,1220,1464,1840,-1,1220,291,1205,-1,1220,1222,291,-1,1907,1216,1116,-1,1909,1216,1907,-1,1131,2571,2573,-1,1131,1130,2571,-1,1874,1128,1300,-1,1126,1128,1874,-1,1866,1137,1806,-1,1137,1866,1135,-1,1335,1860,1859,-1,1335,1337,1860,-1,2702,1044,2984,-1,3332,1044,2702,-1,1487,528,1159,-1,1487,1147,528,-1,1496,1649,1494,-1,1649,1496,2638,-1,3476,1670,3475,-1,1670,3476,2635,-1,1664,3474,3409,-1,2636,3474,1664,-1,1500,3476,3719,-1,3476,1500,1502,-1,3412,3409,3720,-1,3409,3412,3408,-1,3410,1503,1505,-1,2637,1503,3410,-1,1500,1660,1506,-1,3719,1660,1500,-1,3720,3416,3412,-1,3720,3418,3416,-1,3471,3419,3418,-1,3471,3423,3419,-1,2640,2645,3469,-1,3420,2645,2640,-1,1520,3423,1516,-1,3423,1520,3419,-1,1508,3469,1509,-1,2640,3469,1508,-1,2643,1513,1512,-1,2643,3470,1513,-1,3425,1523,2644,-1,2646,1523,3425,-1,3426,1509,3469,-1,1509,3426,2642,-1,3466,3429,3431,-1,3429,3466,3428,-1,1530,1551,1531,-1,1530,2651,1551,-1,3721,1648,1647,-1,3721,1632,1648,-1,1556,1539,1538,-1,1556,3722,1539,-1,3435,1632,3721,-1,3435,1561,1632,-1,1539,3437,2673,-1,1539,3722,3437,-1,1642,1537,1536,-1,1537,1642,3438,-1,3467,3723,3465,-1,3723,3467,3434,-1,3443,3445,3441,-1,3443,3723,3445,-1,3442,3444,1549,-1,3442,3441,3444,-1,3444,1545,2158,-1,3444,2672,1545,-1,3724,2649,3463,-1,3724,1639,2649,-1,3448,1492,3450,-1,3448,2650,1492,-1,1497,3454,3449,-1,3454,1497,1533,-1,2669,3451,2653,-1,1554,3451,2669,-1,3454,1631,3452,-1,1631,3454,1560,-1,1558,1554,1553,-1,1558,1557,1554,-1,3722,1558,3437,-1,3722,1556,1558,-1,1628,1629,1587,-1,1620,1629,1628,-1,1562,2744,1575,-1,2744,1562,925,-1,1587,2665,1628,-1,1589,2665,1587,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=26 */
		private int[] getethmoid2_Geo_5_115_coordIndex_26()
		{
			int[] value = {3461,2663,2664,-1,3460,2663,3461,-1,1569,1592,2666,-1,1569,2532,1592,-1,1568,944,1569,-1,1568,2657,944,-1,1612,3297,1613,-1,2546,3297,1612,-1,989,2662,1604,-1,3458,2662,989,-1,558,1007,1577,-1,569,1007,558,-1,3459,1599,3457,-1,1598,1599,3459,-1,945,2657,2656,-1,2657,945,944,-1,1583,1594,1615,-1,1583,1582,1594,-1,2664,1591,1588,-1,2663,1591,2664,-1,1590,1587,1575,-1,1590,1589,1587,-1,1585,2660,1617,-1,1585,2667,2660,-1,1574,2657,1568,-1,1574,1624,2657,-1,1627,1585,1622,-1,1585,1627,2655,-1,1576,1564,1563,-1,1576,1626,1564,-1,2654,3462,1555,-1,3462,2654,1630,-1,3454,1644,1560,-1,3454,1533,1644,-1,2653,3455,2669,-1,2653,1491,3455,-1,1493,3453,1491,-1,1493,2985,3453,-1,3450,2652,3448,-1,1635,2652,3450,-1,2652,3724,3463,-1,1634,3724,2652,-1,3447,2649,3446,-1,3463,2649,3447,-1,3464,1549,1548,-1,3464,3442,1549,-1,3464,1542,1641,-1,2648,1542,3464,-1,3723,3433,3445,-1,3723,3434,3433,-1,3465,3443,3439,-1,3443,3465,3723,-1,3465,3721,3467,-1,3465,3435,3721,-1,1630,1536,3462,-1,1536,1630,1642,-1,1639,2668,1556,-1,1639,2670,2668,-1,1639,1633,2670,-1,3724,1633,1639,-1,3724,1634,1633,-1,3467,1647,3466,-1,3467,3721,1647,-1,3430,1546,3433,-1,3468,1546,3430,-1,3427,1645,3468,-1,1646,1645,3427,-1,1647,3428,3466,-1,3428,1647,1527,-1,1671,3432,3429,-1,1495,3432,1671,-1,3426,3424,2152,-1,3426,2647,3424,-1,1650,2644,1651,-1,3425,2644,1650,-1,2643,2639,3470,-1,2641,2639,2643,-1,1513,1656,1511,-1,3470,1656,1513,-1,1519,3419,1520,-1,3419,1519,3417,-1,3422,3416,3417,-1,3416,3422,3415,-1,1661,3423,3471,-1,1661,1659,3423,-1,3472,3418,3720,-1,3472,3471,3418,-1,1660,3473,3421,-1,3473,1660,3719,-1,3409,3472,3720,-1,3474,3472,3409,-1,3719,3475,3473,-1,3475,3719,3476,-1,2636,3414,3474,-1,1499,3414,2636,-1,3475,1667,3413,-1,1667,3475,1670,-1,1533,1666,1665,-1,1533,1664,1666,-1,2634,1668,2635,-1,1671,1668,2634,-1,3332,2701,2557,-1,2702,2701,3332,-1,1680,1094,1087,-1,1094,1680,1095,-1,1149,2611,1150,-1,1149,2610,2611,-1,1863,1137,1136,-1,1863,1864,1137,-1,2575,1786,1798,-1,1786,2575,2579,-1,2717,2577,2576,-1,2717,2716,2577,-1,1802,2705,1687,-1,1802,1689,2705,-1,2705,1176,1173,-1,1176,2705,1689,-1,1056,1437,1242,-1,1054,1437,1056,-1,1818,1820,1253,-1,1822,1820,1818,-1,275,3337,276,-1,275,1765,3337,-1,1242,1709,1056,-1,1242,2594,1709,-1,1728,3403,1413,-1,1728,1726,3403,-1,3335,2683,3338,-1,3335,3478,2683,-1,1915,3478,1400,-1,2683,3478,1915,-1,582,2613,1896,-1,582,581,2613,-1,2623,1457,1429,-1,1839,1457,2623,-1,3407,1723,1843,-1,1723,3407,2626,-1,1008,3479,2688,-1,1008,3480,3479,-1,3404,1459,1414,-1,1459,3404,3481,-1,1438,1450,1449,-1,1450,1438,1440,-1,1344,1726,1728,-1,1344,1419,1726,-1,1398,1008,1010,-1,3480,1008,1398,-1,1721,3482,2624,-1,1424,3482,1721,-1,1409,3484,1410,-1,1409,3398,3484,-1,3396,2624,3482,-1,3396,3485,2624,-1,3402,1364,1373,-1,3483,1364,3402,-1,1390,3484,2619,-1,3484,1390,3400,-1,1385,3485,1386,-1,3485,1385,1395,-1,3483,1392,1364,-1,3399,1392,3483,-1,576,2620,575,-1,2619,2620,576,-1,1362,1715,1007,-1,1715,1362,2625,-1,2592,1740,1739,-1,1740,2592,1828,-1,2617,3495,3394,-1,1236,3495,2617,-1,1357,1366,1365,-1,1357,1356,1366,-1,1751,1749,1748,-1,3393,1749,1751,-1,3372,1750,1749,-1,1750,3372,3496,-1,1739,3496,2592,-1,3496,1739,1750,-1,572,1193,1837,-1,2618,1193,572,-1,3497,1189,1190,-1,1189,3497,2700,-1,1616,1899,3716,-1,1616,1618,1899,-1,1625,1455,1454,-1,1625,1573,1455,-1,3344,3358,3342,-1,3344,1217,3358,-1,3343,2583,3341,-1,2583,3343,3331,-1,1086,3717,1887,-1,3717,1086,3353,-1,1481,1774,2609,-1,1332,1774,1481,-1,2569,2727,1834,-1,1028,2727,2569,-1,3368,1471,2607,-1,3368,3392,1471,-1,1780,3391,2606,-1,3391,1780,1779,-1,1781,2606,1225,-1,1780,2606,1781,-1,1783,1313,1473,-1,1783,1306,1313,-1,3477,1305,2690,-1,1303,1305,3477,-1,2605,3493,3387,-1,2605,1788,3493,-1,2693,2713,1283,-1,1870,2713,2693,-1,1794,1876,2570,-1,2719,1876,1794,-1,1295,1302,1301,-1,1294,1302,1295,-1,1075,3329,3498,-1,3329,1075,3347,-1,3389,3357,3355,-1,3357,3389,3361,-1,1285,2595,1805,-1,1285,3386,2595,-1,2879,3386,3383,-1,2595,3386,2879,-1,2428,1796,1795,-1,2428,2576,1796,-1,1132,1869,1868,-1,1132,1134,1869,-1,2791,1217,474,-1,2791,3358,1217,-1,1869,2600,1867,-1,1869,1830,2600,-1,3477,1787,1676,-1,3477,2690,1787,-1,1127,1798,1128,-1,1798,1127,2574,-1,2717,2603,2573,-1,2717,3643,2603,-1,1274,3493,2596,-1,2696,3493,1274,-1,832,1243,833,-1,1971,1243,832,-1,1680,1152,1155,-1,1680,1679,1152,-1,1156,1263,1095,-1,1263,1156,1855,-1,2560,1134,1133,-1,1805,1134,2560,-1,1231,1223,1901,-1,1223,1231,1230,-1,1791,1475,1792,-1,1791,1476,1475,-1,1082,3333,1256,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=27 */
		private int[] getethmoid2_Geo_5_115_coordIndex_27()
		{
			int[] value = {1082,1084,3333,-1,2700,1370,1189,-1,1370,2700,1856,-1,1696,1254,1694,-1,1696,1207,1254,-1,3718,1823,3382,-1,3718,2593,1823,-1,2593,1821,1820,-1,2593,3718,1821,-1,1849,1330,762,-1,1250,1330,1849,-1,1162,1851,1163,-1,2612,1851,1162,-1,2615,1743,1742,-1,2615,3369,1743,-1,3496,1815,2592,-1,1815,3496,1816,-1,3497,1194,1198,-1,3497,3486,1194,-1,1686,1758,1352,-1,1686,1359,1758,-1,3495,1210,3374,-1,1210,3495,1208,-1,22,2278,3365,-1,22,21,2278,-1,1022,1106,1105,-1,1106,1022,2554,-1,1100,2567,1098,-1,1100,1110,2567,-1,1167,1843,1723,-1,1167,1172,1843,-1,1723,1168,1167,-1,1723,1435,1168,-1,1846,1699,1756,-1,1699,1846,1842,-1,1841,1701,1840,-1,1183,1701,1841,-1,2697,1991,1673,-1,1991,2697,808,-1,3494,1330,1812,-1,1330,3494,813,-1,3362,1264,1804,-1,3362,3363,1264,-1,1801,467,1918,-1,1800,467,1801,-1,1800,3665,467,-1,1771,1289,1288,-1,1771,1770,1289,-1,1074,2604,3389,-1,2725,2604,1074,-1,3492,2791,473,-1,3492,2598,2791,-1,3341,1143,1769,-1,3341,2583,1143,-1,1069,1261,1863,-1,1069,1062,1261,-1,1865,3340,1866,-1,1865,3339,3340,-1,2714,1870,2693,-1,2714,1871,1870,-1,1873,2577,1874,-1,1873,2578,2577,-1,1125,2719,2718,-1,2719,1125,1124,-1,2556,1906,2568,-1,1906,2556,1908,-1,1324,1113,1882,-1,1324,1883,1113,-1,3490,3500,1911,-1,3500,3490,1020,-1,1887,1814,1257,-1,3717,1814,1887,-1,1339,3349,1340,-1,3328,3349,1339,-1,2563,3376,1041,-1,2563,3375,3376,-1,1891,1034,1341,-1,1890,1034,1891,-1,1895,2792,1258,-1,1895,3488,2792,-1,3375,1078,1077,-1,3375,2563,1078,-1,1138,1286,2581,-1,1286,1138,1287,-1,2692,3491,1288,-1,2692,3359,3491,-1,1868,1070,3388,-1,1867,1070,1868,-1,1897,1348,1347,-1,1897,1898,1348,-1,1351,1899,1761,-1,1899,1351,3716,-1,2688,1765,1764,-1,3479,1765,2688,-1,1832,1474,1901,-1,1137,1474,1832,-1,1902,1859,1770,-1,1859,1902,1335,-1,1484,3352,3327,-1,1484,1827,3352,-1,3487,1042,2724,-1,1040,1042,3487,-1,1150,1037,1338,-1,2611,1037,1150,-1,1888,1339,2689,-1,2723,1339,1888,-1,3499,1117,1111,-1,1905,1117,3499,-1,3354,1879,1118,-1,3366,1879,3354,-1,1022,1102,1023,-1,1105,1102,1022,-1,1886,1911,3500,-1,1886,1912,1911,-1,1480,3489,1479,-1,1480,3490,3489,-1,2706,1149,2586,-1,1860,1149,2706,-1,1916,469,1243,-1,1918,469,1916,-1,1973,832,1974,-1,1973,1971,832,-1,825,1267,2516,-1,828,1267,825,-1,3188,831,1972,-1,3690,831,3188,-1,2512,819,2676,-1,818,819,2512,-1,814,2752,1674,-1,2752,814,3688,-1,1919,823,2511,-1,823,1919,3186,-1,2734,2731,3310,-1,2731,2734,2729,-1,911,950,995,-1,911,952,950,-1,995,988,996,-1,2732,988,995,-1,3502,3321,3323,-1,3320,3321,3502,-1,1924,3502,2548,-1,1923,3502,1924,-1,1924,2733,2547,-1,1924,2549,2733,-1,2547,3301,3715,-1,2547,2733,3301,-1,3715,3303,962,-1,3715,3301,3303,-1,1599,1925,1600,-1,1925,1599,984,-1,963,3317,2544,-1,965,3317,963,-1,2739,967,2537,-1,967,2739,2735,-1,2739,2541,969,-1,2739,3300,2541,-1,982,3507,3506,-1,982,3505,3507,-1,3311,2541,3309,-1,3311,2738,2541,-1,2540,1001,1000,-1,2540,3506,1001,-1,3714,3314,3325,-1,3714,3312,3314,-1,3296,2537,3295,-1,3296,2739,2537,-1,1928,1613,3302,-1,1613,1928,1614,-1,978,3298,1926,-1,978,1930,3298,-1,3287,963,2545,-1,1931,963,3287,-1,2740,966,974,-1,2740,959,966,-1,2539,3508,2737,-1,3511,3508,2539,-1,3286,971,1931,-1,3286,2534,971,-1,3289,3713,3509,-1,3713,3289,3288,-1,3712,3511,3510,-1,3511,3712,3508,-1,817,3713,820,-1,817,3509,3713,-1,3510,1985,3712,-1,1985,3510,1986,-1,2535,816,3689,-1,2535,3285,816,-1,3278,1936,986,-1,3278,3277,1936,-1,3273,2656,3263,-1,3273,945,2656,-1,2661,3256,1615,-1,2661,3261,3256,-1,1937,3271,2532,-1,1937,3270,3271,-1,1939,3261,2661,-1,1939,3260,3261,-1,1941,1942,1944,-1,1941,1940,1942,-1,940,935,2527,-1,940,934,935,-1,3258,2659,3460,-1,2659,3258,3268,-1,3460,3259,3258,-1,3460,3461,3259,-1,927,3259,3461,-1,927,929,3259,-1,3265,3519,3264,-1,3710,3519,3265,-1,3519,3275,3518,-1,3519,3274,3275,-1,3710,3274,3519,-1,3710,3512,3274,-1,3711,3512,3710,-1,3711,3513,3512,-1,3517,3513,3711,-1,3517,3514,3513,-1,3516,3514,3517,-1,3516,3515,3514,-1,3267,941,2527,-1,3267,1940,941,-1,3254,3269,3268,-1,3254,3520,3269,-1,915,929,928,-1,915,1948,929,-1,3257,1935,949,-1,3257,1948,1935,-1,3262,3277,3279,-1,3262,3520,3277,-1,3218,3521,3216,-1,3725,3521,3218,-1,1949,2747,3537,-1,1949,901,2747,-1,3725,3248,3521,-1,3249,3248,3725,-1,1949,3247,1950,-1,3247,1949,3537,-1,3201,907,898,-1,907,3201,3251,-1,2746,908,1951,-1,2746,906,908,-1,1952,3246,1953,-1,1952,3241,3246,-1,3524,899,2745,-1,3524,3709,899,-1,3525,905,904,-1,3525,3708,905,-1,3709,3526,3707,-1,3526,3709,3524,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=28 */
		private int[] getethmoid2_Geo_5_115_coordIndex_28()
		{
			int[] value = {3527,3708,3525,-1,3527,3706,3708,-1,3526,3705,3707,-1,3528,3705,3526,-1,3529,3706,3527,-1,3529,3704,3706,-1,3528,3703,3705,-1,3530,3703,3528,-1,3531,3704,3529,-1,3531,3702,3704,-1,3530,3701,3703,-1,3532,3701,3530,-1,3700,3531,3533,-1,3700,3702,3531,-1,3532,3699,3701,-1,3534,3699,3532,-1,3698,3533,3535,-1,3698,3700,3533,-1,3534,3697,3699,-1,3536,3697,3534,-1,3214,3535,3212,-1,3214,3698,3535,-1,3253,3536,3252,-1,3253,3697,3536,-1,3243,3235,3239,-1,3243,3231,3235,-1,3245,3231,3243,-1,3245,3228,3231,-1,3249,3228,3245,-1,3249,3226,3228,-1,3725,3226,3249,-1,3725,3222,3226,-1,3218,3222,3725,-1,3218,3215,3222,-1,3538,3219,3223,-1,3219,3538,3696,-1,3238,3695,3234,-1,3238,3539,3695,-1,3692,3522,3523,-1,3692,3540,3522,-1,3694,896,3541,-1,3694,897,896,-1,3542,895,894,-1,3693,895,3542,-1,3543,3692,892,-1,3692,3543,3540,-1,3196,3544,1954,-1,3198,3544,3196,-1,3543,1958,2523,-1,3543,888,1958,-1,880,1954,3544,-1,880,883,1954,-1,2524,1958,875,-1,2523,1958,2524,-1,887,871,1959,-1,887,1956,871,-1,1961,879,865,-1,1961,2522,879,-1,874,876,1955,-1,864,876,874,-1,2519,868,867,-1,2519,1963,868,-1,844,855,854,-1,855,844,846,-1,2517,852,3189,-1,1964,852,2517,-1,2520,840,1965,-1,2520,841,840,-1,838,2518,1968,-1,2518,838,837,-1,1969,3691,3190,-1,1969,1970,3691,-1,830,847,1966,-1,847,830,829,-1,1970,1975,3691,-1,1970,1983,1975,-1,1917,1801,1918,-1,1801,1917,2516,-1,1265,1268,2515,-1,1268,1265,1269,-1,3690,836,1974,-1,3690,2749,836,-1,1976,1979,1977,-1,1976,1980,1979,-1,3501,3689,3688,-1,3501,3280,3689,-1,809,3147,3568,-1,809,1245,3147,-1,2632,3139,2502,-1,2632,2631,3139,-1,3147,1994,3146,-1,3147,1245,1994,-1,3183,3683,3547,-1,3182,3683,3183,-1,3185,799,801,-1,3185,3184,799,-1,2508,800,3150,-1,2508,798,800,-1,2765,2000,3180,-1,2765,745,2000,-1,2507,2003,2002,-1,2507,2004,2003,-1,2007,3181,3564,-1,2007,2001,3181,-1,3549,791,3551,-1,3549,789,791,-1,2506,3564,3154,-1,2506,2007,3564,-1,3687,3551,3550,-1,3687,3549,3551,-1,3686,3154,3153,-1,3686,2506,3154,-1,3170,3550,3171,-1,3170,3687,3550,-1,3686,3169,3168,-1,3686,3153,3169,-1,3556,3123,3172,-1,2764,3123,3556,-1,3554,786,788,-1,3685,786,3554,-1,3555,2764,3556,-1,2496,2764,3555,-1,3685,3557,3684,-1,3685,3554,3557,-1,781,2496,3555,-1,2042,2496,781,-1,3547,3684,3557,-1,3683,3684,3547,-1,3166,783,785,-1,3682,783,3166,-1,3169,2008,3164,-1,2008,3169,2009,-1,3680,3564,3181,-1,3563,3564,3680,-1,3184,2509,799,-1,2509,3184,3681,-1,3149,3576,3566,-1,3149,3565,3576,-1,772,2051,2015,-1,2017,2051,772,-1,2756,3109,3566,-1,2756,2049,3109,-1,3567,2493,2053,-1,3145,2493,3567,-1,2047,2503,2048,-1,2503,2047,3569,-1,3567,3144,3568,-1,3567,3142,3144,-1,3546,759,3545,-1,3546,3569,759,-1,1992,2757,1990,-1,1992,2018,2757,-1,3113,3120,3570,-1,3113,3112,3120,-1,3111,3114,3110,-1,3114,3111,3678,-1,3117,3677,3679,-1,3117,2022,3677,-1,2023,3571,2024,-1,3132,3571,2023,-1,2033,2026,2025,-1,2026,2033,3573,-1,2035,750,2028,-1,750,2035,748,-1,2030,2498,2038,-1,3572,2498,2030,-1,2024,3572,2030,-1,2024,3571,3572,-1,3573,2019,2026,-1,3573,3131,2019,-1,2035,740,2034,-1,2035,739,740,-1,3129,2037,734,-1,2038,2037,3129,-1,3574,3179,3175,-1,3574,3575,3179,-1,802,3118,803,-1,802,3116,3118,-1,743,3570,3120,-1,3575,3570,743,-1,3122,3133,2043,-1,3122,3679,3133,-1,3678,3124,3126,-1,3678,3136,3124,-1,757,3677,755,-1,3677,757,2045,-1,3137,2020,3130,-1,3134,2020,3137,-1,747,3576,2032,-1,747,774,3576,-1,2041,3565,777,-1,2040,3565,2041,-1,2050,2047,2494,-1,2050,760,2047,-1,3148,767,766,-1,3148,2053,767,-1,2459,2933,358,-1,2868,2933,2459,-1,2489,2055,2056,-1,2489,688,2055,-1,728,3581,3676,-1,728,727,3581,-1,2054,2060,2059,-1,2054,2058,2060,-1,3676,717,716,-1,3676,3581,717,-1,2058,2061,2060,-1,2058,2492,2061,-1,2087,2492,2062,-1,2061,2492,2087,-1,2770,712,715,-1,712,2770,2063,-1,2065,2087,3578,-1,2088,2087,2065,-1,3578,703,2065,-1,3578,704,703,-1,2070,2069,2071,-1,2070,2068,2069,-1,2076,2072,705,-1,2072,2076,694,-1,2074,2080,2078,-1,2074,700,2080,-1,2078,2079,3580,-1,2078,2080,2079,-1,3580,3104,730,-1,3580,2079,3104,-1,676,689,677,-1,689,676,3100,-1,2089,3099,711,-1,667,3099,2089,-1,708,672,2065,-1,708,2086,672,-1,2085,2488,673,-1,2223,2488,2085,-1,666,2919,667,-1,2918,2919,666,-1,2917,2485,671,-1,2917,2486,2485,-1,3622,3583,2906,-1,3622,3582,3583,-1,2092,533,2484,-1,533,2092,2157,-1,3675,2473,2772,-1,2473,3675,535,-1,3675,3585,535,-1,3675,3671,3585,-1,3671,3586,3585,-1,3671,3611,3586,-1,3589,2976,2975,-1,3589,3085,2976,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=29 */
		private int[] getethmoid2_Geo_5_115_coordIndex_29()
		{
			int[] value = {2483,2812,2894,-1,2812,2483,651,-1,2774,2481,644,-1,2774,2103,2481,-1,2102,2107,638,-1,2105,2102,641,-1,2102,2105,2107,-1,3090,3589,3587,-1,3090,3089,3589,-1,3093,2094,2093,-1,2094,3093,3095,-1,2099,2102,2104,-1,641,2102,2099,-1,2096,2105,2106,-1,2107,2105,2096,-1,337,2446,335,-1,2446,337,2447,-1,3590,2479,2127,-1,3590,3595,2479,-1,603,2110,2891,-1,602,2110,603,-1,3595,3596,3594,-1,3590,3596,3595,-1,2891,637,636,-1,2110,637,2891,-1,3594,3075,3076,-1,3596,3075,3594,-1,3069,2478,596,-1,3069,3074,2478,-1,634,3078,633,-1,3078,634,2112,-1,2114,3077,2116,-1,3077,2114,2113,-1,2777,622,631,-1,2777,621,622,-1,620,627,618,-1,627,620,2120,-1,2118,2122,3073,-1,2118,2121,2122,-1,3603,2122,2121,-1,3603,2124,2122,-1,2480,616,2778,-1,2480,326,616,-1,2124,3674,2125,-1,3603,3674,2124,-1,2128,2125,3674,-1,2128,2129,2125,-1,2133,3591,3081,-1,2133,2132,3591,-1,3608,623,629,-1,623,3608,3601,-1,2134,3074,3597,-1,2134,2478,3074,-1,2139,1361,564,-1,1361,2139,1747,-1,1399,1388,1838,-1,1736,1388,1399,-1,3006,3057,3056,-1,3003,3057,3006,-1,3065,3051,3053,-1,3064,3051,3065,-1,3049,3061,3060,-1,3049,3048,3061,-1,3044,3058,3055,-1,3044,3046,3058,-1,3054,3042,3052,-1,3054,2991,3042,-1,3040,3047,3038,-1,3047,3040,3050,-1,3036,3045,3034,-1,3045,3036,3043,-1,2990,3031,3041,-1,2990,3029,3031,-1,3027,3039,3025,-1,3039,3027,3037,-1,3035,3024,3033,-1,3035,3022,3024,-1,3032,3020,3030,-1,3032,571,3020,-1,3018,3028,3016,-1,3028,3018,3026,-1,3013,3023,3014,-1,3023,3013,3021,-1,3019,2144,3010,-1,570,2144,3019,-1,3008,2476,3017,-1,3008,2141,2476,-1,3005,3015,3012,-1,3005,3004,3015,-1,3011,3066,3063,-1,2992,3066,3011,-1,3062,3007,3009,-1,3062,3059,3007,-1,3066,555,3064,-1,3066,556,555,-1,2987,3032,3029,-1,3032,2987,2986,-1,3609,3054,3051,-1,3054,3609,3610,-1,573,2149,2140,-1,2149,573,552,-1,562,2145,553,-1,562,2151,2145,-1,3609,2475,3610,-1,2475,3609,568,-1,2399,20,22,-1,2399,2397,20,-1,1549,2158,1550,-1,2158,1549,3444,-1,2152,2154,2153,-1,3424,2154,2152,-1,2982,517,1653,-1,2982,518,517,-1,2978,2983,2981,-1,2978,2980,2983,-1,544,2979,1514,-1,544,542,2979,-1,1638,2985,1493,-1,1638,2472,2985,-1,3588,2895,3611,-1,3588,2975,2895,-1,2980,3670,2983,-1,2980,3612,3670,-1,2166,3612,516,-1,2169,3612,2166,-1,2784,2163,2162,-1,2163,2784,3613,-1,3670,510,2785,-1,510,3670,2168,-1,2970,2163,3613,-1,2970,2787,2163,-1,513,507,3614,-1,507,513,512,-1,2967,2974,3614,-1,2967,2966,2974,-1,492,2470,2167,-1,493,2470,492,-1,501,2972,2969,-1,501,503,2972,-1,2171,2968,2175,-1,2968,2171,2170,-1,2177,3615,483,-1,2177,3619,3615,-1,2174,3616,487,-1,2174,3618,3616,-1,3668,491,3669,-1,3668,2468,491,-1,2208,3356,473,-1,409,3356,2208,-1,2188,2193,2180,-1,2188,2194,2193,-1,2958,2467,2181,-1,2467,2958,3667,-1,452,2190,453,-1,452,2191,2190,-1,3617,3619,444,-1,3619,3617,3615,-1,2468,2192,2183,-1,3668,2192,2468,-1,3621,3618,448,-1,3618,3621,3616,-1,2964,3620,3667,-1,3620,2964,3617,-1,2184,2194,2182,-1,2194,2184,2183,-1,2190,3621,2793,-1,2190,2189,3621,-1,2677,2203,1081,-1,456,2203,2677,-1,3665,430,467,-1,3665,431,430,-1,2957,2204,2203,-1,2957,2936,2204,-1,3666,3622,2195,-1,3582,3622,3666,-1,3664,2463,3624,-1,3664,3623,2463,-1,2946,2195,2197,-1,3666,2195,2946,-1,3624,2200,436,-1,3624,2463,2200,-1,441,2462,442,-1,441,3625,2462,-1,2950,2945,2948,-1,2950,2944,2945,-1,435,427,2937,-1,427,435,434,-1,3625,2201,2462,-1,2205,2201,3625,-1,2955,3626,2954,-1,3626,2955,2905,-1,2900,3623,3664,-1,2902,3623,2900,-1,2943,2206,2205,-1,2943,2956,2206,-1,419,414,2210,-1,419,421,414,-1,3628,2459,2417,-1,3628,3577,2459,-1,3629,2866,3577,-1,3629,3663,2866,-1,2213,2913,2214,-1,2213,2909,2913,-1,2217,2811,2932,-1,2811,2217,2215,-1,2867,2931,2458,-1,2869,2931,2867,-1,2219,2908,2216,-1,2219,2929,2908,-1,2927,262,2930,-1,2927,2433,262,-1,263,376,255,-1,376,263,260,-1,2922,3627,3628,-1,2921,3627,2922,-1,2798,2451,2434,-1,2451,2798,2809,-1,3630,2924,2926,-1,3631,2924,3630,-1,3631,2923,2924,-1,3662,2923,3631,-1,3662,2921,2923,-1,3663,2921,3662,-1,3663,3627,2921,-1,3629,3627,3663,-1,2238,3635,2810,-1,2238,365,3635,-1,2810,3658,2450,-1,2810,3635,3658,-1,2809,2896,2451,-1,2809,2234,2896,-1,2487,394,3098,-1,2487,392,394,-1,657,2455,2453,-1,656,2455,657,-1,2916,2227,396,-1,2916,386,2227,-1,378,393,379,-1,393,378,2801,-1,390,383,2805,-1,2453,383,390,-1,3633,3661,3660,-1,3633,3632,3661,-1,3659,2929,2928,-1,3659,3634,2929,-1,2914,2906,3583,-1,2914,2904,2906,-1,3660,3096,3633,-1,3660,3097,3096,-1,2939,3634,3659,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=30 */
		private int[] getethmoid2_Geo_5_115_coordIndex_30()
		{
			int[] value = {3634,2939,2941,-1,2423,262,264,-1,262,2423,405,-1,226,2220,2231,-1,375,2220,226,-1,2233,2897,2232,-1,2897,2233,2432,-1,2292,2232,2293,-1,2292,374,2232,-1,3635,382,3658,-1,3635,381,382,-1,653,413,655,-1,653,2794,413,-1,651,340,2812,-1,650,340,651,-1,2242,341,250,-1,2242,2244,341,-1,2776,2813,333,-1,2776,632,2813,-1,2444,622,617,-1,622,2444,2246,-1,317,298,318,-1,317,299,298,-1,332,306,305,-1,332,331,306,-1,2250,2445,3636,-1,2247,2445,2250,-1,300,2254,2253,-1,2254,300,2814,-1,2260,2241,2261,-1,2260,2251,2241,-1,2250,2890,2257,-1,2250,3636,2890,-1,2249,2256,2260,-1,2249,2255,2256,-1,3639,2834,6,-1,3726,2834,3639,-1,2865,2267,2440,-1,2864,2267,2865,-1,2309,2272,2271,-1,2272,2309,168,-1,2273,1807,246,-1,2273,1808,1807,-1,196,2395,2823,-1,196,94,2395,-1,2884,62,2846,-1,2884,2281,62,-1,3637,2375,2404,-1,3637,3655,2375,-1,2277,1222,1221,-1,2277,284,1222,-1,3645,2887,2886,-1,2887,3645,2820,-1,2857,3657,3647,-1,2857,3638,3657,-1,235,2888,194,-1,140,2888,235,-1,3644,2872,2860,-1,3644,280,2872,-1,3726,2398,2834,-1,3652,2398,3726,-1,224,376,225,-1,376,224,256,-1,373,2452,374,-1,373,2308,2452,-1,2883,2881,145,-1,2881,2883,2882,-1,234,247,230,-1,234,142,247,-1,2421,3641,2819,-1,2421,3642,3641,-1,2302,3656,2818,-1,3656,2302,2301,-1,2304,2876,2878,-1,2876,2304,2303,-1,244,3385,2880,-1,244,3383,3385,-1,2428,2304,3643,-1,2304,2428,2305,-1,218,2315,2311,-1,2315,218,217,-1,2882,210,2881,-1,2882,2821,210,-1,2295,2332,2296,-1,2427,2332,2295,-1,2887,2301,2270,-1,2887,3656,2301,-1,2265,2307,2266,-1,2265,2429,2307,-1,2863,3641,2299,-1,2863,2862,3641,-1,2300,2312,2313,-1,2312,2300,287,-1,2419,254,2317,-1,2419,264,254,-1,162,2322,2321,-1,2816,2322,162,-1,2282,148,236,-1,148,2282,143,-1,3657,3655,3637,-1,3657,3638,3655,-1,2328,190,2326,-1,191,190,2328,-1,2341,175,187,-1,176,175,2341,-1,185,153,152,-1,185,184,153,-1,3642,2886,2297,-1,2886,3642,3645,-1,187,269,2341,-1,269,187,2321,-1,2268,140,206,-1,2267,140,2268,-1,2874,202,2310,-1,2874,2873,202,-1,220,2825,174,-1,2825,220,2230,-1,372,2336,169,-1,372,371,2336,-1,3654,2883,3646,-1,2283,2883,3654,-1,3644,2415,2327,-1,112,2415,3644,-1,292,126,128,-1,126,292,129,-1,126,2356,127,-1,126,109,2356,-1,125,2858,2859,-1,2858,125,2826,-1,111,2826,124,-1,2355,2826,111,-1,2359,2357,135,-1,2357,2359,2412,-1,2325,3646,3647,-1,2325,3654,3646,-1,272,296,295,-1,1706,296,272,-1,2848,2372,2852,-1,2848,2373,2372,-1,3649,2838,2837,-1,3648,2838,3649,-1,2856,67,3650,-1,13,67,2856,-1,2375,2839,2376,-1,2885,2839,2375,-1,2403,2377,2378,-1,2404,2377,2403,-1,2391,2827,2381,-1,2827,2391,2830,-1,2379,2275,2380,-1,2379,2394,2275,-1,42,2381,57,-1,2392,2381,42,-1,2840,85,84,-1,2840,80,85,-1,45,2405,98,-1,45,44,2405,-1,3650,2378,2377,-1,2378,3650,67,-1,2850,2847,2844,-1,2847,2850,2849,-1,18,14,49,-1,15,14,18,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getethmoid2_Geo_5_115_normalIndex_1()
		{
			int[] value = {3517,3596,3390,-1,3687,3587,3427,-1,3544,3687,3472,-1,2655,3666,3497,-1,3319,2217,3677,-1,1531,2564,1959,-1,2463,3407,3277,-1,3096,2271,2509,-1,3508,3366,3347,-1,3156,2619,2954,-1,2881,3356,2954,-1,3705,3609,3667,-1,3684,3665,2746,-1,2318,3707,2113,-1,3300,3038,3365,-1,3564,3539,3058,-1,3410,3400,2908,-1,3282,1531,1296,-1,3514,3581,2864,-1,3597,3625,3581,-1,3597,3573,3614,-1,3625,3722,3620,-1,2741,3648,2631,-1,3515,3571,3400,-1,3696,3668,2217,-1,3708,2217,3668,-1,2318,616,1749,-1,3015,3035,2217,-1,3400,2022,2572,-1,3577,3716,3138,-1,2544,3709,3563,-1,3514,3317,3573,-1,3025,3358,3138,-1,3360,3267,2849,-1,2117,3344,3179,-1,3198,3433,3506,-1,2524,1296,1316,-1,3667,3609,2930,-1,1599,2217,3035,-1,2318,2729,3707,-1,3573,3243,3300,-1,3583,450,3058,-1,515,541,466,-1,1014,1162,515,-1,466,541,434,-1,1162,391,515,-1,677,456,194,-1,81,145,112,-1,212,247,326,-1,227,246,194,-1,146,303,2620,-1,533,447,923,-1,212,152,1889,-1,560,469,969,-1,788,194,560,-1,358,684,552,-1,613,466,782,-1,626,1023,1297,-1,1303,782,1297,-1,1,19,67,-1,125,104,97,-1,159,128,0,-1,67,4,104,-1,32,16,200,-1,3718,3678,3554,-1,3681,3638,3632,-1,476,250,282,-1,631,974,876,-1,476,188,754,-1,678,734,95,-1,447,391,1162,-1,3113,1837,1898,-1,2939,2547,3680,-1,2389,2665,3102,-1,2768,1564,1162,-1,1757,3377,2236,-1,1060,282,2939,-1,754,2985,250,-1,2447,282,250,-1,1850,876,1036,-1,915,1564,1715,-1,2236,936,809,-1,923,423,533,-1,746,7,34,-1,986,71,46,-1,260,188,476,-1,3419,1417,2236,-1,3694,3646,3659,-1,3658,1819,3098,-1,3468,3632,3551,-1,1208,2920,2725,-1,1069,1334,2681,-1,967,2697,3042,-1,3504,3377,3455,-1,249,211,218,-1,1816,1481,1057,-1,764,506,570,-1,269,1013,1256,-1,1264,1,368,-1,12,24,19,-1,3659,2903,2642,-1,3717,3711,2920,-1,3378,3468,3551,-1,3468,3419,3554,-1,477,506,764,-1,105,68,94,-1,22,218,211,-1,269,144,128,-1,2125,1851,3245,-1,2360,1851,1046,-1,631,943,974,-1,2013,2450,1755,-1,1234,576,653,-1,1917,2142,653,-1,3315,2558,964,-1,3517,3056,3427,-1,3056,3517,3390,-1,3666,3555,3687,-1,2636,3587,2345,-1,459,964,173,-1,1146,1824,1762,-1,2372,1295,1286,-1,69,78,135,-1,936,1417,437,-1,2739,2675,2271,-1,1149,2019,2092,-1,985,1149,2092,-1,2841,678,1819,-1,1103,864,1289,-1,1827,1149,985,-1,2954,1114,2881,-1,2849,3514,2245,-1,2411,1497,1999,-1,3427,3056,3456,-1,51,331,442,-1,1073,2197,1571,-1,836,1092,1555,-1,1136,1851,1185,-1,478,332,499,-1,703,1136,1016,-1,2197,3111,2036,-1,195,115,208,-1,582,1049,917,-1,195,414,182,-1,1078,1649,1439,-1,2196,2036,3111,-1,3601,3327,3120,-1,2139,1549,1597,-1,171,1104,332,-1,2784,1829,2395,-1,2784,2395,2641,-1,2118,3245,2911,-1,253,273,546,-1,1441,1851,2125,-1,2118,2911,2843,-1,1090,38,1338,-1,761,1086,725,-1,537,377,1302,-1,387,109,518,-1,590,827,1843,-1,164,866,586,-1,72,672,905,-1,1952,810,196,-1,1850,3060,3143,-1,764,1187,972,-1,653,589,1760,-1,1268,644,866,-1,586,729,672,-1,905,1067,1164,-1,1344,2356,1346,-1,1952,2845,1843,-1,2029,1446,1500,-1,2132,1977,1246,-1,857,671,599,-1,2434,2483,2918,-1,1398,1463,1086,-1,1084,785,1234,-1,1637,1851,546,-1,2336,3242,2500,-1,1202,1302,641,-1,2952,613,1303,-1,613,1625,1420,-1,1948,2349,2591,-1,1323,1357,2324,-1,632,190,89,-1,210,243,289,-1,824,2190,997,-1,869,3292,2847,-1,96,574,740,-1,740,822,997,-1,96,997,1808,-1,3160,2719,2689,-1,2727,2598,2959,-1,706,372,36,-1,625,751,1193,-1,1248,1211,2646,-1,3005,2567,3029,-1,2239,1636,2637,-1,2567,1248,1166,-1,2130,1004,1607,-1,1607,1600,2679,-1,2410,3086,2999,-1,1023,1800,1297,-1,1842,1800,1267,-1,1921,2936,3431,-1,2548,1670,2706,-1,650,467,861,-1,1793,2824,1842,-1,1023,552,1267,-1,1489,2302,2198,-1,1368,545,488,-1,3484,3333,3595,-1,2156,1440,1494,-1,3276,2994,3333,-1,906,545,1559,-1,2012,2198,2455,-1,3027,3276,3520,-1,3380,2984,2261,-1,1753,2382,1352,-1,2012,2455,2661,-1,3027,3520,3654,-1,3297,3588,3483,-1,2858,3483,3621,-1,3114,3461,2816,-1,1864,1563,2084,-1,3114,1702,3009,-1,1593,1511,2231,-1,1037,1505,1643,-1,2034,2359,3052,-1,1964,2359,2034,-1,2941,3409,3270,-1,496,307,99,-1,2339,2324,1357,-1,307,210,66,-1,344,321,43,-1,495,1068,916,-1,403,43,1047,-1,1436,1505,1153,-1,1153,1037,747,-1,2263,2059,1627,-1,2812,2826,2273,-1,863,396,265,-1,3236,1510,1641,-1,2340,2203,1283,-1,1091,2203,2056,-1,3425,2932,3352,-1,1159,863,380,-1,2250,2831,2812,-1,3511,2875,3261,-1,2717,2932,2736,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getethmoid2_Geo_5_115_normalIndex_2()
		{
			int[] value = {3477,3569,3439,-1,2203,2340,2935,-1,558,277,296,-1,2051,1750,2970,-1,222,775,405,-1,1051,853,1279,-1,3219,2923,3191,-1,1725,1214,1590,-1,1650,1257,2167,-1,223,199,182,-1,137,500,1107,-1,901,1117,557,-1,405,1143,1000,-1,1390,1085,1360,-1,2568,1960,2519,-1,2987,2141,2866,-1,3175,2519,3071,-1,2872,3057,3191,-1,2830,2922,3382,-1,2779,2705,3191,-1,2039,2955,2448,-1,2293,2830,2016,-1,1055,2039,2448,-1,926,652,1055,-1,1230,1677,777,-1,2297,2940,3331,-1,324,753,1137,-1,126,290,289,-1,711,1147,965,-1,711,99,290,-1,1829,1820,2418,-1,2591,3164,2802,-1,3078,2763,2443,-1,2561,2990,2565,-1,1987,1645,1996,-1,1144,609,795,-1,1144,1281,852,-1,1987,2224,1767,-1,2573,2505,2820,-1,2505,2443,2565,-1,1622,1269,1447,-1,1336,1353,1447,-1,1343,1345,1204,-1,996,688,479,-1,1192,306,573,-1,1389,1369,688,-1,1552,1713,1041,-1,2181,1713,1552,-1,1431,1218,1403,-1,2078,2200,1961,-1,980,1936,1269,-1,2433,2383,1890,-1,2814,2346,2200,-1,2143,1492,1833,-1,1492,1380,1833,-1,2687,3187,2384,-1,2251,2120,2077,-1,1645,1174,1996,-1,1174,976,597,-1,618,84,597,-1,520,1242,1108,-1,1618,1880,1699,-1,479,301,618,-1,640,1242,520,-1,1646,2252,1054,-1,262,811,127,-1,240,580,994,-1,1978,1717,3004,-1,2604,1438,1722,-1,3123,3004,3281,-1,1418,1387,885,-1,2888,2177,2308,-1,444,727,584,-1,1005,1387,1377,-1,1962,1400,1339,-1,2119,2220,2237,-1,821,386,295,-1,513,1119,2040,-1,811,701,875,-1,2398,2566,2334,-1,2040,1589,2328,-1,379,819,884,-1,611,379,219,-1,708,854,1293,-1,1841,2526,1860,-1,3149,2672,3299,-1,1603,1503,2695,-1,1789,1177,1361,-1,1974,1435,2004,-1,1974,1394,1435,-1,942,415,978,-1,415,219,379,-1,559,759,884,-1,1970,2020,1940,-1,2204,2562,2165,-1,1656,2089,1663,-1,2806,3218,3093,-1,2975,3387,2772,-1,1537,1979,1388,-1,1198,1169,1401,-1,1277,2541,3194,-1,1676,1796,3125,-1,954,404,369,-1,2854,1852,1423,-1,921,1683,1782,-1,1782,1009,921,-1,3289,3287,3476,-1,1683,2666,1782,-1,169,370,101,-1,238,346,691,-1,3211,3545,3549,-1,2949,3375,3109,-1,2879,2756,3301,-1,101,267,88,-1,1190,620,238,-1,1654,2808,3131,-1,3401,3549,3301,-1,2264,2879,3375,-1,1956,756,409,-1,971,205,385,-1,758,1288,1545,-1,3024,2017,1967,-1,2497,1477,2756,-1,1330,1270,1063,-1,2017,3050,1969,-1,1912,1330,1848,-1,1332,851,1141,-1,3050,2870,2611,-1,2844,3386,3308,-1,606,77,231,-1,3105,2760,2676,-1,3386,2844,3121,-1,2391,1556,1720,-1,1553,1534,1243,-1,1572,1779,900,-1,165,480,562,-1,530,1199,1329,-1,138,900,784,-1,1611,784,1079,-1,2086,1795,2585,-1,2063,1550,1785,-1,2063,1785,2499,-1,2770,2499,2979,-1,2677,2740,1965,-1,2161,2592,2574,-1,1693,2161,2000,-1,371,413,913,-1,1456,2385,1658,-1,1569,480,783,-1,1553,562,221,-1,2772,2973,2257,-1,1249,723,432,-1,2381,2973,3074,-1,3047,3117,3083,-1,2347,1916,1744,-1,3082,3047,2570,-1,919,1139,790,-1,1566,999,1916,-1,1711,2474,2570,-1,776,118,384,-1,553,957,831,-1,1740,1163,1223,-1,1740,2402,1680,-1,2014,1830,1674,-1,1957,1640,2067,-1,1587,1426,1313,-1,1560,1689,1432,-1,1426,1158,1273,-1,1432,831,1064,-1,941,1356,1273,-1,1822,1915,2165,-1,1406,2403,1018,-1,3388,3475,3619,-1,311,673,239,-1,1324,2134,1668,-1,1585,904,1665,-1,673,1272,591,-1,1933,2901,2100,-1,1133,1546,1089,-1,1738,1235,1227,-1,1465,2095,1577,-1,2587,3070,1831,-1,2429,2405,2633,-1,2368,2169,2024,-1,2169,1617,2024,-1,3730,3273,3424,-1,797,1406,393,-1,2211,1027,2037,-1,3494,3485,3049,-1,3507,3557,3602,-1,2597,3178,3575,-1,3178,2597,2520,-1,1304,1422,1582,-1,2071,1444,721,-1,1300,1253,1126,-1,2896,3063,2254,-1,3341,3248,3271,-1,3026,3278,3005,-1,3298,3279,3268,-1,3003,2794,3562,-1,3162,3280,3585,-1,3373,3010,2415,-1,2070,1134,2249,-1,3522,3500,3628,-1,601,699,310,-1,1990,1668,2974,-1,3374,2468,3467,-1,2247,1449,281,-1,3368,2855,2103,-1,2095,2516,2708,-1,30,153,102,-1,3048,2708,2516,-1,2516,2622,3048,-1,1235,938,482,-1,3275,3663,3637,-1,1874,1466,1285,-1,1383,1402,2079,-1,808,934,309,-1,550,508,229,-1,1815,1826,2906,-1,1444,1415,464,-1,2066,2109,2995,-1,2586,3073,3556,-1,3556,3653,2586,-1,1828,2320,2359,-1,2332,2283,2285,-1,2890,2425,1871,-1,1871,3122,2890,-1,3148,1709,1561,-1,1920,1866,1915,-1,856,871,922,-1,1613,1176,1342,-1,3553,3453,2632,-1,2338,3346,3548,-1,3462,2833,3495,-1,3462,3580,3423,-1,2832,2691,2534,-1,2595,2507,2536,-1,2404,2632,1667,-1,3618,3608,3592,-1,3079,2935,3361,-1,3339,2925,3116,-1,2926,1799,1938,-1,1938,2511,2001,-1,2926,3124,2168,-1,3180,2482,2115,-1,3337,2653,3099,-1,3099,2708,3290,-1,2030,2396,1980,-1,401,390,310,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getethmoid2_Geo_5_115_normalIndex_3()
		{
			int[] value = {812,281,390,-1,3368,2468,2855,-1,2421,2577,3526,-1,245,235,408,-1,2210,1759,2042,-1,3241,3199,2774,-1,3486,3636,3613,-1,3381,3101,3293,-1,2221,3351,1817,-1,2171,3531,3351,-1,670,1971,1605,-1,1799,1050,1938,-1,1817,1667,1761,-1,3617,3125,3090,-1,1305,1900,1940,-1,1359,1613,1604,-1,1305,1395,1075,-1,1215,1305,612,-1,3516,3615,3526,-1,3019,2708,2652,-1,3688,3265,3003,-1,3278,3466,3168,-1,2024,1617,2059,-1,2645,2824,3086,-1,1823,1304,1582,-1,2828,3644,2374,-1,3606,2822,2890,-1,2838,2837,3623,-1,3637,2512,947,-1,3100,2937,2839,-1,904,838,473,-1,2625,1040,2512,-1,2709,2071,1870,-1,468,261,235,-1,728,220,131,-1,1708,1972,2109,-1,1525,2357,2242,-1,3224,1883,1466,-1,3662,3262,2993,-1,2963,3323,3256,-1,3115,3256,3323,-1,1798,3459,3426,-1,1053,1311,2508,-1,3094,3115,2668,-1,2414,2605,2668,-1,3199,2977,3141,-1,3702,3355,3330,-1,2002,2538,3381,-1,2358,1294,1455,-1,2982,2358,2913,-1,713,1110,1822,-1,1465,1577,474,-1,2070,2521,2781,-1,1942,2225,1885,-1,1385,1656,1663,-1,2212,2154,2484,-1,2415,2484,2154,-1,2484,3010,3011,-1,2599,2460,2531,-1,3063,2429,2633,-1,3271,2533,2429,-1,2055,2856,2635,-1,2586,2967,3073,-1,2481,2628,3513,-1,2145,2486,3633,-1,1480,1427,1728,-1,2008,1877,2924,-1,1971,3346,2338,-1,896,1638,263,-1,350,1008,865,-1,564,319,1018,-1,1684,133,903,-1,312,592,903,-1,1038,214,1660,-1,1660,1066,350,-1,350,1038,1660,-1,1684,3000,1807,-1,2885,1758,3428,-1,1758,1276,3066,-1,1817,3351,3000,-1,1276,1050,1074,-1,293,903,304,-1,903,133,353,-1,1059,1325,1859,-1,3477,2515,3158,-1,3154,3533,3394,-1,940,353,276,-1,2442,2530,3439,-1,2348,1814,2553,-1,3342,3512,3349,-1,528,602,555,-1,3002,2553,2394,-1,3107,2658,2880,-1,1687,2314,2312,-1,602,596,555,-1,2215,2152,3230,-1,1378,1867,2441,-1,393,931,719,-1,2337,3207,2898,-1,3107,3528,3524,-1,1867,3524,3188,-1,1632,1280,2916,-1,1632,3398,3384,-1,3244,2877,2408,-1,3612,2493,2898,-1,3527,3049,3485,-1,712,834,643,-1,2442,3490,3215,-1,2614,2100,3600,-1,579,355,697,-1,1521,1106,1298,-1,2821,3043,2411,-1,3049,3507,3494,-1,2597,1934,2520,-1,2260,2191,3471,-1,2628,3438,3589,-1,2441,2408,1488,-1,2718,2116,2559,-1,3481,2653,3337,-1,2653,2451,2210,-1,3615,2475,2282,-1,198,30,102,-1,3527,3624,3617,-1,2686,3495,2833,-1,1311,1040,2065,-1,3452,3501,3547,-1,3636,3486,3605,-1,697,794,991,-1,3606,3562,3070,-1,2828,1938,3249,-1,3249,1938,2871,-1,532,239,561,-1,239,673,591,-1,473,1822,904,-1,2249,1134,1098,-1,1663,1866,2119,-1,1219,989,1247,-1,1617,1627,2059,-1,1718,1920,1964,-1,762,1786,1558,-1,762,1278,1828,-1,3613,3567,2982,-1,1673,2616,2350,-1,2615,1858,3128,-1,3104,2909,3379,-1,297,637,356,-1,2471,2399,2803,-1,297,100,637,-1,492,42,124,-1,373,403,1454,-1,2487,1982,2170,-1,2170,2537,2487,-1,2966,2720,3031,-1,2305,2762,2514,-1,1776,2305,2087,-1,1984,3255,3542,-1,341,879,617,-1,2424,3655,3255,-1,1579,928,1633,-1,837,213,629,-1,1690,1584,1171,-1,1630,837,1528,-1,1914,1732,1630,-1,2589,2583,2978,-1,2580,2422,2742,-1,3313,2596,2589,-1,918,1443,760,-1,1662,1540,1142,-1,565,1088,607,-1,1698,2187,2352,-1,501,527,1698,-1,1698,2192,501,-1,463,416,272,-1,154,277,272,-1,360,449,425,-1,2187,1869,2582,-1,296,501,797,-1,2456,2192,1698,-1,2677,3216,2931,-1,1371,872,406,-1,406,899,1371,-1,1698,1371,1611,-1,1506,2289,1411,-1,1869,2160,2582,-1,2943,1986,2082,-1,2931,3216,3306,-1,1096,1097,587,-1,1899,1223,1341,-1,2309,2402,2367,-1,2402,2710,2367,-1,2765,2945,2624,-1,2624,2945,2571,-1,1770,2571,2014,-1,1770,1456,1155,-1,2456,2657,1641,-1,3212,3397,2947,-1,2456,2403,797,-1,1641,1510,2456,-1,2571,3065,2457,-1,2912,3169,3579,-1,998,587,1097,-1,1698,527,872,-1,527,406,872,-1,1698,872,1371,-1,1869,2187,1698,-1,2549,1260,1844,-1,2947,2919,3502,-1,797,2192,2456,-1,2928,2789,1260,-1,2928,1260,2876,-1,619,449,781,-1,2919,2657,2456,-1,425,463,272,-1,2456,2944,2919,-1,3498,3502,2464,-1,2944,2160,3007,-1,154,527,501,-1,328,984,565,-1,607,1088,656,-1,2045,2153,2629,-1,1925,2596,3313,-1,3284,2742,3304,-1,2102,1914,2278,-1,1732,1690,1171,-1,629,1493,1528,-1,18,565,15,-1,1363,928,1579,-1,879,1579,1633,-1,3655,3174,3202,-1,341,132,765,-1,617,879,1633,-1,3255,3202,3223,-1,1487,2246,1766,-1,2087,2514,2941,-1,2246,3270,2851,-1,2514,3031,3409,-1,2720,2487,3001,-1,3128,665,1125,-1,665,124,373,-1,665,3128,492,-1,2351,2555,2700,-1,382,42,100,-1,492,3128,637,-1,2803,2787,3072,-1,3542,3509,3379,-1,2122,928,3104,-1,617,1452,1573,-1,1573,1011,617,-1,858,460,347,-1,1858,1258,637,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getethmoid2_Geo_5_115_normalIndex_4()
		{
			int[] value = {2320,2684,3567,-1,3567,2684,2982,-1,1786,1920,1558,-1,1754,1920,1718,-1,1359,1627,989,-1,2062,1866,1663,-1,612,737,1385,-1,3162,3585,3522,-1,2794,3070,3562,-1,1231,713,1822,-1,2212,3246,3311,-1,3688,3449,3258,-1,2896,2254,2313,-1,2774,2605,3241,-1,229,85,59,-1,947,2512,1227,-1,3406,3371,3600,-1,2162,2008,2924,-1,3012,3495,2686,-1,3499,3624,3657,-1,3580,3657,3624,-1,3592,3429,3566,-1,1577,635,352,-1,2095,2708,1577,-1,3180,3481,2482,-1,3324,3487,3558,-1,2451,2755,2534,-1,1971,2244,3343,-1,2183,2090,2279,-1,3496,3513,3592,-1,3178,3170,3471,-1,833,1775,1824,-1,3471,3575,3178,-1,2821,2411,2751,-1,3321,3086,3043,-1,3575,3557,3576,-1,1061,648,1276,-1,2652,2708,3048,-1,2079,3715,3459,-1,3516,2614,3600,-1,3262,3662,3663,-1,451,393,719,-1,3619,3475,3712,-1,526,393,1018,-1,2337,2532,2840,-1,1462,2312,2898,-1,2916,1280,930,-1,3398,2916,3480,-1,3188,3524,3210,-1,3188,3030,2441,-1,2493,3612,3550,-1,1106,815,712,-1,931,887,1070,-1,2442,1476,1059,-1,2408,2877,2152,-1,2344,3230,3480,-1,3002,2861,3210,-1,1924,2394,2553,-1,1154,1280,1632,-1,930,1280,1154,-1,3512,3619,3569,-1,1945,2553,1814,-1,276,770,940,-1,3261,2380,1570,-1,2736,3154,3394,-1,3451,3477,3158,-1,1859,2515,3439,-1,1050,648,1001,-1,2212,2603,3246,-1,3465,3112,3529,-1,3021,3350,3395,-1,1061,2885,2603,-1,2603,1001,1061,-1,3066,3021,2907,-1,3051,3529,1807,-1,3339,3361,2935,-1,407,1660,214,-1,3437,2248,2744,-1,3066,3396,3021,-1,214,1038,293,-1,1877,1464,1813,-1,2376,3163,3320,-1,3320,2244,2376,-1,1066,1032,982,-1,1667,1605,2338,-1,2520,2607,2894,-1,2520,1934,2155,-1,2131,3507,3602,-1,2145,3633,3664,-1,1295,1220,621,-1,3490,3712,3215,-1,408,261,300,-1,2891,1707,1309,-1,2258,1472,1318,-1,1836,1831,3070,-1,2521,3162,3373,-1,2154,2212,2128,-1,2249,1098,2562,-1,2154,1459,2415,-1,713,1231,1515,-1,1231,3254,1515,-1,1294,2358,2684,-1,2465,3381,3613,-1,3702,3177,3053,-1,3254,1231,3501,-1,3310,3452,3702,-1,2668,3115,2525,-1,3132,3229,3100,-1,2525,2731,2031,-1,2731,3323,2963,-1,2946,3229,3501,-1,3459,3715,2714,-1,3132,3100,2839,-1,2835,2508,2846,-1,1311,390,1040,-1,1586,1612,2313,-1,59,85,57,-1,151,150,215,-1,261,721,464,-1,464,721,1444,-1,482,947,1227,-1,3704,3715,2201,-1,2512,3637,3662,-1,3674,2146,2444,-1,3674,3268,2146,-1,1676,3125,3499,-1,1871,2425,3067,-1,1709,1871,3012,-1,2123,1003,1561,-1,85,229,130,-1,3241,2605,2730,-1,55,117,49,-1,1608,991,1586,-1,2430,3043,2824,-1,1885,1544,932,-1,2612,3003,3265,-1,3182,2788,3538,-1,3487,3324,3413,-1,3516,1958,2475,-1,3526,3713,3359,-1,3713,3137,3458,-1,2020,1922,1395,-1,1075,877,1305,-1,989,1321,1254,-1,3371,3395,3516,-1,3538,3157,3182,-1,1971,896,2244,-1,117,813,502,-1,464,117,176,-1,3381,2538,3101,-1,3171,3241,2730,-1,2622,2757,3048,-1,2692,2614,3516,-1,2468,281,2855,-1,3600,2901,3374,-1,2974,3467,3368,-1,3481,3180,2653,-1,2115,2342,3180,-1,2168,3124,3538,-1,1887,1799,2926,-1,2340,2743,3116,-1,3127,3425,3349,-1,3438,3450,3589,-1,2116,1667,2632,-1,3207,2337,2595,-1,2419,2451,2431,-1,2832,2116,2718,-1,3656,3546,3630,-1,3423,3608,3532,-1,3320,3163,3541,-1,3257,2595,2691,-1,2194,1305,1926,-1,1342,1395,1922,-1,878,877,843,-1,871,769,989,-1,2108,1656,2209,-1,1003,2374,2889,-1,1609,774,1660,-1,2715,2659,2640,-1,2836,2967,2586,-1,2967,2836,2670,-1,468,721,261,-1,2109,2066,1708,-1,1791,1823,2905,-1,1781,1783,2730,-1,817,667,399,-1,1706,1737,2414,-1,728,786,220,-1,1314,1382,1798,-1,3663,3275,3224,-1,1883,1701,634,-1,1701,556,634,-1,3166,3426,3262,-1,636,551,198,-1,509,544,30,-1,129,635,153,-1,2100,2901,3600,-1,3368,2103,2974,-1,2407,2296,2128,-1,838,673,311,-1,2128,2212,2096,-1,1134,2781,2415,-1,1134,1459,1098,-1,3314,3265,3688,-1,1942,1836,3070,-1,871,1225,1239,-1,3263,3240,3674,-1,3340,3076,3040,-1,3129,3466,3278,-1,1870,721,468,-1,2178,3494,2131,-1,3482,3527,3469,-1,3566,3429,3527,-1,2260,3170,2894,-1,2607,2155,2462,-1,1425,2345,1867,-1,3605,2906,2905,-1,3171,3489,3241,-1,2599,2021,2322,-1,2038,2871,1938,-1,1721,1756,2757,-1,2754,1736,2288,-1,2137,1661,2054,-1,2296,1918,2783,-1,311,473,838,-1,3397,3212,3411,-1,1406,797,2403,-1,1691,1189,1747,-1,2562,2204,2214,-1,1429,1064,941,-1,776,384,831,-1,1335,1432,1689,-1,2848,2133,2469,-1,2912,2765,2528,-1,1127,1772,1341,-1,3579,3626,3235,-1,118,402,553,-1,1916,2347,2329,-1,547,654,364,-1,3047,3082,3117,-1,1953,1770,1155,-1,1953,1572,1770,-1,2606,2385,1456,-1,416,371,883,-1,1965,2218,1724,-1,2853,1806,2000,-1,2884,1765,1825,-1,3660,3683,3306,-1,3683,2902,2943,-1,1371,899,784,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getethmoid2_Geo_5_115_normalIndex_5()
		{
			int[] value = {1243,138,562,-1,1953,2749,1572,-1,480,1569,221,-1,1778,2874,2721,-1,3308,3367,2915,-1,1969,1976,1967,-1,1063,1270,458,-1,1477,2497,2093,-1,3024,3050,2017,-1,385,758,1287,-1,205,971,963,-1,1307,2264,2949,-1,3375,2879,3301,-1,2808,3401,3505,-1,2179,1190,691,-1,238,620,267,-1,2264,2093,2879,-1,2756,3050,3505,-1,620,1190,1288,-1,1956,2949,2303,-1,2808,2680,3401,-1,691,987,1654,-1,893,370,169,-1,3155,2666,2495,-1,3289,2854,3287,-1,1906,954,1852,-1,335,1009,505,-1,335,921,1009,-1,1691,3090,1909,-1,1676,2425,1226,-1,392,829,143,-1,1340,3150,2290,-1,3440,1213,1284,-1,973,256,773,-1,662,394,1393,-1,2445,2772,2257,-1,2975,3093,3387,-1,2209,2147,2108,-1,1663,2089,2062,-1,2073,2083,2097,-1,2020,2035,2083,-1,1835,1305,2194,-1,884,426,379,-1,884,978,426,-1,2005,1897,1804,-1,1503,1140,1177,-1,1603,1730,978,-1,2695,1503,1789,-1,3370,3446,2811,-1,3299,2695,2852,-1,3303,3591,3692,-1,1742,2025,1950,-1,379,611,854,-1,759,448,1140,-1,884,979,978,-1,821,701,714,-1,2334,1717,1954,-1,1197,580,455,-1,701,295,157,-1,1119,513,386,-1,1926,2237,2194,-1,1054,2252,2126,-1,2888,3274,2917,-1,727,444,828,-1,663,948,939,-1,3123,3404,3412,-1,314,457,885,-1,885,828,314,-1,828,444,314,-1,348,939,683,-1,3412,2888,3006,-1,3404,3307,3403,-1,2294,1978,3004,-1,240,994,1183,-1,1543,542,614,-1,3193,3151,2702,-1,453,103,846,-1,630,1005,1115,-1,2334,2566,3281,-1,127,811,455,-1,714,262,542,-1,2752,3172,3247,-1,1445,53,336,-1,157,295,337,-1,1336,618,1353,-1,944,461,520,-1,597,84,186,-1,1108,1834,1652,-1,870,1606,1174,-1,1174,2321,1996,-1,1343,1144,1345,-1,2384,3187,3217,-1,2321,2561,1996,-1,3213,3540,3187,-1,2143,2792,2124,-1,2346,2121,2200,-1,2392,2078,1596,-1,2383,2363,1616,-1,2433,2110,1936,-1,2200,2046,1961,-1,1596,1672,1431,-1,1890,1598,1771,-1,1936,2181,2072,-1,1431,1672,1331,-1,1470,1688,1951,-1,1403,1192,1041,-1,1041,1192,573,-1,688,669,301,-1,980,1269,1622,-1,1204,1447,1353,-1,1174,920,976,-1,1833,1937,2280,-1,2331,2280,2505,-1,1645,852,1281,-1,2331,2143,1833,-1,2561,2321,3135,-1,2224,1987,1996,-1,2990,3022,2820,-1,988,1345,1144,-1,522,789,362,-1,1478,610,777,-1,2341,1677,2377,-1,1412,2076,1812,-1,965,496,99,-1,354,711,126,-1,975,126,632,-1,1513,966,1315,-1,2440,2297,3331,-1,3331,2862,2440,-1,1230,2060,1677,-1,1104,975,1460,-1,378,411,223,-1,378,685,411,-1,1241,2016,2039,-1,2602,3152,2922,-1,3590,3165,3219,-1,3152,3594,3382,-1,3008,3647,2970,-1,3142,2866,2568,-1,2970,2075,3008,-1,1993,1390,2099,-1,1320,1207,1244,-1,1360,1085,1117,-1,775,233,664,-1,791,137,844,-1,1107,223,557,-1,1170,1216,491,-1,1768,1051,1279,-1,651,222,431,-1,775,1237,1143,-1,525,491,405,-1,2056,2203,2467,-1,2380,2875,2986,-1,1641,2657,3236,-1,1839,1903,2138,-1,1437,2250,1946,-1,863,1062,2056,-1,2988,2416,3236,-1,3250,3352,2932,-1,2273,2826,2875,-1,2273,2340,1283,-1,1091,521,1255,-1,3397,2657,2947,-1,2263,2967,2670,-1,593,661,344,-1,321,747,1037,-1,1019,1153,747,-1,344,43,403,-1,321,441,294,-1,330,1357,210,-1,307,66,99,-1,3304,2742,2539,-1,3052,2359,3253,-1,2034,3052,2263,-1,1702,3114,2231,-1,1068,894,1563,-1,2084,1563,1471,-1,894,682,772,-1,2164,1882,2816,-1,2074,1471,1007,-1,3483,3588,3461,-1,3020,2498,2858,-1,2455,3297,2661,-1,111,61,906,-1,1753,2261,2984,-1,3484,3380,2948,-1,3027,2455,2800,-1,3380,3595,2910,-1,572,873,305,-1,61,305,488,-1,3357,3431,2936,-1,2107,2146,3268,-1,626,1297,782,-1,1289,1842,1267,-1,2645,3086,2410,-1,3110,2492,3005,-1,1166,909,3029,-1,2523,2810,2981,-1,2600,1600,2052,-1,3133,3110,3005,-1,1245,945,886,-1,2088,952,1679,-1,2810,2129,1166,-1,842,514,659,-1,2886,3161,3464,-1,291,96,512,-1,2188,839,869,-1,291,710,517,-1,1989,2847,2190,-1,1123,650,861,-1,736,968,1210,-1,2349,2324,2793,-1,641,549,608,-1,1167,807,549,-1,1468,1624,892,-1,1624,1637,546,-1,653,576,589,-1,615,639,1086,-1,2007,2434,2453,-1,286,816,1156,-1,2494,2029,1536,-1,672,891,1067,-1,644,729,586,-1,3455,3377,3383,-1,995,615,761,-1,1481,1760,589,-1,1083,972,1845,-1,575,590,1500,-1,257,255,108,-1,424,641,383,-1,725,38,761,-1,38,583,761,-1,253,38,273,-1,711,1100,1441,-1,3185,2807,2829,-1,975,1104,171,-1,1649,2196,1960,-1,414,1078,901,-1,258,115,195,-1,208,1078,414,-1,2955,3071,3239,-1,2519,1960,2196,-1,2196,1649,1517,-1,258,429,331,-1,917,1549,1092,-1,2139,2234,1555,-1,2139,3327,2234,-1,1517,897,1571,-1,1100,1105,1441,-1,1100,711,778,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getethmoid2_Geo_5_115_normalIndex_6()
		{
			int[] value = {483,489,332,-1,1441,1105,1185,-1,2798,2197,1251,-1,2197,1073,1251,-1,897,538,1016,-1,681,836,638,-1,2234,1121,1006,-1,3587,3687,3555,-1,2747,1220,2682,-1,2430,1497,2411,-1,1425,2636,2345,-1,87,110,25,-1,3514,2864,2245,-1,2430,1793,1497,-1,91,167,134,-1,204,203,23,-1,86,172,117,-1,2735,469,595,-1,2140,2111,2675,-1,27,41,249,-1,12,588,24,-1,97,104,58,-1,160,279,419,-1,3,122,148,-1,2372,2682,1220,-1,2747,2682,2636,-1,3596,2682,3534,-1,3596,2636,2682,-1,3390,3534,3565,-1,3596,3587,2636,-1,506,477,211,-1,260,570,506,-1,181,340,443,-1,631,338,943,-1,253,1338,38,-1,1816,1076,735,-1,715,767,2678,-1,734,678,2713,-1,105,216,26,-1,20,166,147,-1,150,119,90,-1,67,125,368,-1,3098,2903,3658,-1,1057,1481,589,-1,1891,1187,1076,-1,216,105,203,-1,200,191,94,-1,119,3,25,-1,3098,1256,2903,-1,967,1069,2697,-1,3678,2985,3681,-1,3700,3717,3641,-1,3652,2841,1819,-1,3599,3642,2713,-1,3570,3551,3632,-1,1755,735,357,-1,142,2013,1755,-1,2450,2013,964,-1,771,494,60,-1,459,912,1232,-1,46,148,768,-1,746,800,12,-1,106,60,146,-1,266,936,268,-1,809,302,423,-1,3013,3085,2929,-1,249,260,506,-1,735,465,476,-1,876,1850,1523,-1,338,264,1046,-1,466,613,1837,-1,2722,3060,1850,-1,3322,2769,3113,-1,2393,1523,2696,-1,1162,1564,915,-1,734,623,23,-1,1060,953,459,-1,120,357,282,-1,178,167,1819,-1,87,9,37,-1,3680,3718,3504,-1,3060,3013,3322,-1,3378,3419,3468,-1,678,178,1819,-1,181,193,172,-1,128,97,65,-1,4,67,19,-1,1114,1065,227,-1,2409,793,552,-1,864,684,1065,-1,48,494,595,-1,864,1497,1289,-1,247,1714,792,-1,684,358,1065,-1,326,209,212,-1,212,209,152,-1,1797,146,2620,-1,201,456,48,-1,552,1023,787,-1,69,65,97,-1,782,481,649,-1,1014,515,466,-1,2609,2952,1303,-1,2524,3282,1296,-1,3231,3433,3198,-1,2544,1621,3025,-1,3696,2217,2113,-1,616,2318,2113,-1,3033,1749,2619,-1,3539,3410,3312,-1,2883,3189,3014,-1,3536,3319,3564,-1,3573,3597,3581,-1,2387,1621,3563,-1,3571,2022,3400,-1,3474,2524,3571,-1,2735,3707,2618,-1,3577,3561,3714,-1,3665,3661,2741,-1,2685,3639,3650,-1,3675,3679,2777,-1,3614,3682,3625,-1,3136,3228,3631,-1,1316,1296,1531,-1,3277,2965,2501,-1,1135,2572,2524,-1,3536,3041,3015,-1,3571,2524,2022,-1,3081,3206,3434,-1,3682,3326,3434,-1,3226,3243,3228,-1,3573,3317,3631,-1,3693,3696,3707,-1,3684,2796,2930,-1,2864,3581,3667,-1,2729,2318,3033,-1,3356,3156,2954,-1,1773,1497,1065,-1,2564,3407,2463,-1,3366,3687,3456,-1,3497,3328,2655,-1,3472,3687,3508,-1,3497,3666,3543,-1,2461,2617,2655,-1,2739,2271,3096,-1,1065,2954,1773,-1,2729,3033,2881,-1,3667,2950,2864,-1,3609,3684,2930,-1,3693,3707,2735,-1,3614,3300,3365,-1,3228,3136,3226,-1,3434,3326,3081,-1,3319,3536,3015,-1,3536,450,3041,-1,2572,2022,2524,-1,1316,1531,1959,-1,3631,3068,3136,-1,3625,3597,3614,-1,2777,2560,3675,-1,2685,3650,2764,-1,2741,2746,3665,-1,2729,2618,3707,-1,3015,3041,3035,-1,3474,3282,2524,-1,3581,3514,3573,-1,3573,3631,3228,-1,3564,3058,3536,-1,2965,2883,3014,-1,3539,3312,3627,-1,2619,3356,3033,-1,616,2113,1599,-1,3724,3577,3714,-1,1621,2058,3025,-1,3231,3408,3433,-1,2952,1635,1131,-1,1837,2362,466,-1,782,466,481,-1,69,135,65,-1,552,628,434,-1,447,280,391,-1,175,168,152,-1,247,212,1889,-1,456,201,194,-1,923,915,1715,-1,280,247,792,-1,1889,1714,247,-1,48,93,494,-1,1065,1497,864,-1,792,2409,552,-1,227,788,1114,-1,626,782,649,-1,255,748,518,-1,440,447,533,-1,128,144,97,-1,3013,2768,3322,-1,3113,2696,3143,-1,3060,2722,3013,-1,3680,3504,3455,-1,3658,3599,3652,-1,140,142,282,-1,173,1060,459,-1,188,41,754,-1,23,95,734,-1,696,1046,1898,-1,1850,2389,2722,-1,943,338,1046,-1,876,1523,264,-1,754,493,2985,-1,476,357,735,-1,282,2547,2939,-1,2929,2768,3013,-1,423,923,809,-1,793,677,246,-1,12,7,746,-1,768,763,46,-1,1232,1148,459,-1,494,93,60,-1,142,1755,120,-1,357,120,1755,-1,1090,1338,375,-1,3686,3641,3570,-1,3711,3694,3659,-1,3632,3582,3570,-1,3098,1819,19,-1,1069,2681,2697,-1,3098,1264,1256,-1,25,90,119,-1,200,94,32,-1,203,204,216,-1,1076,1816,1891,-1,764,570,693,-1,1,67,368,-1,183,150,147,-1,20,147,5,-1,26,13,105,-1,678,2841,2713,-1,767,2805,2678,-1,735,1755,1816,-1,1090,1433,583,-1,477,340,211,-1,1760,1755,2450,-1,2558,3315,2904,-1,639,576,862,-1,211,249,506,-1,3565,3028,3390,-1,3390,3028,3056,-1,2617,2279,3555,-1,1824,1497,1762,-1,1220,1295,2372,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getethmoid2_Geo_5_115_normalIndex_7()
		{
			int[] value = {148,46,3,-1,419,366,160,-1,97,58,69,-1,12,800,588,-1,2675,2111,2271,-1,2019,2140,2834,-1,2735,2618,469,-1,14,22,55,-1,23,6,204,-1,91,134,83,-1,193,300,176,-1,9,87,25,-1,9,25,3,-1,1425,2163,2636,-1,1103,552,684,-1,2636,2163,2426,-1,2140,1759,2111,-1,1006,1555,2234,-1,681,1092,836,-1,1016,1571,897,-1,1851,1441,1185,-1,253,483,332,-1,703,695,546,-1,1100,778,1006,-1,2036,1517,1571,-1,917,1092,681,-1,115,258,331,-1,1517,2036,2196,-1,2519,2196,2767,-1,2955,3239,3120,-1,208,1191,1078,-1,195,582,258,-1,414,901,182,-1,1649,1960,1439,-1,1441,1147,711,-1,2802,2807,2641,-1,3185,3245,2360,-1,1338,977,1811,-1,1433,1090,375,-1,1046,696,422,-1,1123,1420,1625,-1,387,1434,339,-1,537,862,325,-1,590,1536,1500,-1,972,1810,1845,-1,583,38,1090,-1,761,583,995,-1,422,613,1420,-1,866,644,586,-1,672,1067,905,-1,1843,2494,1536,-1,2132,2893,1977,-1,816,1224,1156,-1,3523,2918,2991,-1,2007,1861,2434,-1,1086,761,615,-1,2450,964,2558,-1,1624,546,892,-1,3315,3242,3335,-1,1468,892,807,-1,1167,1468,807,-1,641,1167,549,-1,518,748,1229,-1,467,408,717,-1,2349,2793,2591,-1,736,89,968,-1,2190,824,1989,-1,517,802,291,-1,291,512,225,-1,3316,2886,3464,-1,514,36,659,-1,1166,2771,2810,-1,1679,2523,2088,-1,886,1193,1245,-1,625,962,751,-1,1116,2567,2952,-1,2130,2492,1010,-1,2613,2523,2981,-1,1166,3029,2567,-1,2600,2637,2999,-1,1023,626,787,-1,2679,2600,2999,-1,1289,1267,1103,-1,2609,1303,2410,-1,2504,2952,3168,-1,1103,1267,552,-1,2410,1800,2645,-1,3357,2999,3086,-1,61,488,545,-1,572,305,61,-1,3380,2910,2984,-1,2800,3276,3027,-1,3520,3484,2948,-1,2984,2382,1753,-1,61,545,906,-1,2455,3027,3297,-1,2074,1007,1588,-1,3483,3461,3621,-1,1882,2231,2816,-1,745,894,772,-1,2074,2084,1471,-1,1068,495,894,-1,2231,1511,1702,-1,2263,1627,2034,-1,2539,2859,3304,-1,330,1351,1357,-1,441,495,294,-1,403,163,344,-1,1019,747,661,-1,1037,441,321,-1,593,344,163,-1,3073,3052,3556,-1,2967,2263,3073,-1,2461,2655,3328,-1,3397,3236,2657,-1,1283,1091,1255,-1,2875,2743,2340,-1,2203,1091,1283,-1,2932,2986,3250,-1,3236,3425,2988,-1,1159,1510,1748,-1,2056,380,863,-1,1437,1946,1255,-1,2643,1839,2138,-1,2056,564,1018,-1,2380,3261,2875,-1,2743,2875,3511,-1,2203,2935,2467,-1,478,692,354,-1,775,1143,405,-1,651,431,853,-1,1768,1279,1846,-1,491,525,1170,-1,1107,500,223,-1,791,156,137,-1,775,222,233,-1,1360,1117,1409,-1,1320,1244,1390,-1,1993,1320,1390,-1,2970,1750,2075,-1,3142,2568,3175,-1,3152,3382,2922,-1,3219,3647,3590,-1,2602,2922,2293,-1,1241,2039,1055,-1,685,652,411,-1,500,378,223,-1,975,632,1460,-1,1230,777,438,-1,2060,2377,1677,-1,2297,1812,2940,-1,1513,1355,966,-1,126,190,632,-1,711,290,126,-1,965,1077,496,-1,1412,1812,1315,-1,2341,1478,1677,-1,1478,777,1677,-1,121,522,362,-1,1129,1152,803,-1,2505,2701,3078,-1,2990,2820,2565,-1,1996,2561,2224,-1,2561,3135,2990,-1,920,1281,1144,-1,1645,1129,852,-1,2331,2505,2573,-1,1129,1645,1987,-1,2280,2331,1833,-1,1345,1447,1204,-1,1622,1492,2143,-1,688,301,479,-1,1041,573,226,-1,1369,1552,669,-1,669,688,1369,-1,1041,1713,1403,-1,1951,1849,1470,-1,1431,1331,1218,-1,1936,2110,2181,-1,1890,1616,1598,-1,1596,2078,1672,-1,2200,2121,2046,-1,1936,2124,2433,-1,1616,1890,2383,-1,2392,2814,2078,-1,2346,2094,2121,-1,2792,2433,2124,-1,2792,2573,3022,-1,3187,2687,3213,-1,2370,2384,3217,-1,1343,920,1144,-1,1174,1606,2321,-1,597,870,1174,-1,944,1108,1652,-1,186,870,597,-1,520,1108,944,-1,1336,479,618,-1,337,206,157,-1,336,1400,1445,-1,2860,2752,3247,-1,542,1138,714,-1,127,455,240,-1,3281,3004,2334,-1,1005,1377,1115,-1,453,846,1262,-1,3193,2702,2694,-1,1565,1543,614,-1,1183,457,240,-1,3004,3123,2294,-1,3404,3281,3307,-1,3412,3274,2888,-1,348,584,939,-1,314,179,457,-1,3006,3123,3412,-1,939,584,663,-1,727,828,1005,-1,2917,2417,2888,-1,2041,2028,2969,-1,2126,1308,1054,-1,1119,386,821,-1,701,157,875,-1,875,1197,455,-1,1954,2398,2334,-1,701,811,714,-1,884,819,559,-1,379,854,819,-1,1742,1950,1857,-1,3303,3692,3234,-1,3299,2852,3309,-1,2811,2610,3370,-1,2695,1789,2852,-1,978,979,1603,-1,1503,1177,1789,-1,2005,1780,1897,-1,2050,1754,2083,-1,2249,2214,2159,-1,2114,1915,2062,-1,3093,3218,3387,-1,2257,2276,2445,-1,1393,1537,662,-1,773,1169,973,-1,1284,3194,3440,-1,1217,1340,2290,-1,829,369,143,-1,2822,3606,3629,-1,2838,2444,1184,-1,1782,2541,1401,-1,1782,2666,2541,-1,1906,1044,954,-1,3289,2761,2854,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getethmoid2_Geo_5_115_normalIndex_8()
		{
			int[] value = {756,893,169,-1,987,1886,1654,-1,2680,3211,3401,-1,2303,1496,1956,-1,1288,758,620,-1,3505,3301,2756,-1,2093,2497,2879,-1,267,101,238,-1,691,1654,2179,-1,3131,2808,3505,-1,3301,3549,3375,-1,2949,1956,1307,-1,963,458,205,-1,1082,385,1287,-1,1288,2229,1967,-1,1967,1545,1288,-1,1477,2093,1330,-1,1063,458,963,-1,1967,2017,1969,-1,1477,1912,2756,-1,1188,1080,924,-1,2915,2795,3308,-1,2721,1720,1778,-1,221,562,480,-1,2749,1779,1572,-1,1243,900,138,-1,2574,2592,2897,-1,2677,1765,2884,-1,899,647,784,-1,2499,1785,2869,-1,1785,1787,2869,-1,3683,2943,3306,-1,3660,3306,3216,-1,2000,2574,2853,-1,1724,1514,1965,-1,883,1002,416,-1,1456,2014,2606,-1,1572,1499,1770,-1,1155,1658,1953,-1,1653,1746,907,-1,1746,1249,907,-1,3047,2529,2570,-1,3082,3232,3117,-1,364,149,547,-1,2329,1566,1916,-1,384,118,553,-1,3579,3235,3065,-1,831,1026,1064,-1,831,957,1026,-1,790,1139,686,-1,1772,1994,1341,-1,654,1160,999,-1,2347,2660,2656,-1,2528,2423,2912,-1,2848,2469,3264,-1,1727,2671,2469,-1,1335,776,1432,-1,776,831,1432,-1,1429,941,1158,-1,2562,2214,2249,-1,3674,3623,3070,-1,3431,3617,3090,-1,3490,3619,3712,-1,3127,3349,3512,-1,487,937,601,-1,2137,1522,1661,-1,832,1384,1133,-1,3374,2247,2468,-1,551,1236,604,-1,2757,2622,1721,-1,1938,1050,2038,-1,2599,2322,2460,-1,2586,3653,3424,-1,3645,3605,2905,-1,451,296,797,-1,2462,2343,2607,-1,3482,3566,3527,-1,3589,3592,3513,-1,3494,3664,3485,-1,3471,3602,3557,-1,902,1775,833,-1,428,925,707,-1,1707,1870,468,-1,2587,3263,3070,-1,3129,3278,2921,-1,1617,1321,1627,-1,1254,1247,989,-1,2225,2378,1885,-1,2243,2070,2249,-1,2415,1459,1134,-1,2407,2128,2096,-1,3522,3628,3011,-1,532,487,239,-1,2134,2137,2212,-1,281,1012,390,-1,401,750,812,-1,129,352,635,-1,30,129,153,-1,604,578,30,-1,2577,2662,3526,-1,30,198,604,-1,634,556,202,-1,890,847,241,-1,1410,1428,2201,-1,349,841,743,-1,1467,1508,2031,-1,428,707,130,-1,1381,1422,813,-1,2542,2709,3273,-1,2066,1582,1708,-1,2836,2586,2180,-1,2286,2227,2325,-1,2890,2822,1238,-1,2889,1561,1003,-1,1604,1718,1964,-1,737,878,1544,-1,922,1075,856,-1,2020,1970,2035,-1,3257,2691,2832,-1,3163,3532,3541,-1,2404,2338,3548,-1,3423,3580,3608,-1,3656,3608,3546,-1,2595,3257,3207,-1,2632,2559,2116,-1,1761,1667,2116,-1,3112,3184,3116,-1,3116,2925,2340,-1,2168,3538,2788,-1,2482,3487,2396,-1,2115,2482,1482,-1,2708,2759,1577,-1,2974,3311,3467,-1,3374,3467,3600,-1,281,812,2855,-1,635,148,207,-1,3381,3293,3486,-1,49,117,502,-1,1813,2833,1877,-1,1971,670,896,-1,3157,2366,3182,-1,1464,1877,1032,-1,3674,3240,3298,-1,3076,3026,3040,-1,1964,1359,1604,-1,932,1544,878,-1,1926,1305,1215,-1,1395,1940,2020,-1,3458,3603,3713,-1,3526,3615,3713,-1,3418,3617,3431,-1,2612,2378,3003,-1,1627,1321,989,-1,1793,2430,2824,-1,1586,2313,2254,-1,1586,2254,1608,-1,130,47,85,-1,1561,2686,2123,-1,1871,3067,3012,-1,2425,3499,3067,-1,3499,2425,1676,-1,2512,3662,2625,-1,3256,2839,3354,-1,310,390,239,-1,3715,2079,2201,-1,2625,2065,1040,-1,298,284,316,-1,1300,817,1025,-1,59,57,14,-1,64,39,35,-1,1612,2490,2313,-1,947,1701,3275,-1,1040,1089,2512,-1,2846,2065,2625,-1,215,349,743,-1,2714,2933,3459,-1,3501,1231,2946,-1,3704,2201,2963,-1,3115,3323,2731,-1,2525,2414,2668,-1,2668,2605,2766,-1,3199,3310,2774,-1,3199,3141,3305,-1,3613,2982,2465,-1,1294,2684,1278,-1,1294,1278,762,-1,2108,2098,1656,-1,1098,2998,2562,-1,3011,2871,2038,-1,2038,2484,3011,-1,2781,2521,3373,-1,991,1608,697,-1,2219,2405,2232,-1,1318,2021,2258,-1,1309,2586,2891,-1,1239,888,871,-1,408,235,261,-1,2023,2145,3664,-1,2191,2131,3602,-1,2155,2607,2520,-1,1667,2338,2404,-1,982,427,1066,-1,3320,3343,2244,-1,2376,2162,3163,-1,319,214,293,-1,1018,380,2056,-1,3396,3092,3021,-1,3176,3437,2744,-1,1038,263,903,-1,2935,2925,3339,-1,1807,3106,3051,-1,3529,3519,1807,-1,1758,3066,3428,-1,2907,3021,3395,-1,3529,3051,3465,-1,3371,2907,3395,-1,1001,2038,1050,-1,353,940,1298,-1,903,353,304,-1,3439,2530,1859,-1,3451,3158,3533,-1,2736,3394,2953,-1,2717,2379,2496,-1,1570,1807,3261,-1,3569,3490,3439,-1,1814,1182,1945,-1,1154,528,930,-1,930,555,2238,-1,2553,1945,1924,-1,3210,3345,3002,-1,2344,2215,3230,-1,2152,1488,2408,-1,834,526,738,-1,1872,2493,3550,-1,3030,2408,2441,-1,3524,3528,3210,-1,2916,3438,3480,-1,2238,2916,930,-1,1462,2898,2493,-1,2840,2507,2337,-1,3490,3569,3619,-1,393,1406,1018,-1,719,624,451,-1,3662,3637,3663,-1,2079,3459,1798,-1,1276,1758,1061,-1,2597,3575,2751,-1,2751,2411,1999,-1,1824,1146,833,-1,3496,3592,3566,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getethmoid2_Geo_5_115_normalIndex_9()
		{
			int[] value = {3546,3618,3302,-1,2279,1867,2345,-1,3343,3346,1971,-1,2396,3487,2298,-1,3481,3487,2482,-1,2116,2755,2342,-1,551,604,198,-1,3541,3532,3608,-1,3624,3429,3580,-1,3657,3067,3499,-1,2924,3163,2162,-1,3467,3406,3600,-1,1089,1040,1133,-1,59,399,229,-1,3354,2477,3256,-1,3547,3355,3702,-1,2586,3424,2891,-1,3674,3298,3268,-1,3258,3585,3688,-1,3249,3011,3628,-1,2054,2212,2137,-1,2128,2296,2783,-1,1231,1822,473,-1,2998,2783,1822,-1,3373,3162,3522,-1,2154,1098,1459,-1,1385,1215,612,-1,1920,2026,2189,-1,2062,1915,1866,-1,769,1176,989,-1,1110,1558,1915,-1,3567,3613,3610,-1,1258,566,637,-1,347,259,858,-1,3104,2899,2122,-1,2909,3542,3379,-1,3128,2914,3329,-1,2803,2399,2787,-1,3128,2003,2471,-1,382,475,42,-1,2351,2202,2555,-1,124,180,373,-1,665,373,1125,-1,2720,2265,2487,-1,2514,3409,2941,-1,2246,2851,1766,-1,2087,2941,2193,-1,1487,1766,1436,-1,1095,1601,1043,-1,1095,1776,1601,-1,3542,3255,3223,-1,3104,1984,2909,-1,1633,1452,617,-1,341,765,879,-1,3255,3655,3202,-1,3104,2424,1984,-1,879,765,1579,-1,18,328,565,-1,1528,837,629,-1,1732,1171,1630,-1,2278,1630,1528,-1,1528,2310,2278,-1,2102,2278,2698,-1,3304,3503,3284,-1,1925,3313,2081,-1,2153,2960,2629,-1,2616,1673,1985,-1,1088,1363,656,-1,328,855,984,-1,2944,2582,2160,-1,2464,2711,3498,-1,2944,3007,2919,-1,1260,452,454,-1,2947,2789,2928,-1,1260,1181,1844,-1,1260,2549,2876,-1,2456,2352,2944,-1,154,501,296,-1,3502,3498,2947,-1,296,277,154,-1,2550,2740,2931,-1,527,154,406,-1,1221,452,1260,-1,998,1097,1413,-1,3579,2945,2912,-1,3579,3065,2571,-1,2571,2945,3579,-1,2571,2457,2014,-1,2456,1018,2403,-1,2928,3212,2947,-1,2947,2657,2919,-1,1770,2014,1456,-1,1770,2299,2571,-1,2624,2571,2299,-1,2765,2912,2945,-1,1341,1994,1899,-1,2931,3306,2895,-1,2082,2716,2943,-1,2711,2464,1868,-1,587,486,1096,-1,2931,2740,2677,-1,1411,2289,2711,-1,2947,3498,2789,-1,1698,2352,2456,-1,2192,797,501,-1,454,619,1260,-1,449,619,425,-1,3502,2919,3007,-1,2289,1506,1327,-1,1260,2789,2289,-1,565,984,1088,-1,1662,1818,1540,-1,1443,1348,760,-1,1879,2045,2157,-1,2045,2629,2157,-1,2589,2978,3313,-1,2742,3284,2580,-1,2589,2554,2583,-1,1914,1630,2278,-1,1630,1171,837,-1,1584,1020,1171,-1,837,657,213,-1,3104,2081,2424,-1,1984,2424,3255,-1,460,341,617,-1,1633,928,1452,-1,3542,2909,1984,-1,1776,2087,1601,-1,2514,2087,2305,-1,2762,2966,3031,-1,3031,2514,2762,-1,2966,2555,2720,-1,1454,1125,373,-1,124,665,492,-1,2003,2202,2351,-1,42,492,100,-1,100,492,637,-1,3128,2471,2914,-1,356,637,566,-1,3104,3379,2899,-1,1858,637,3128,-1,3610,3253,3567,-1,1828,1786,762,-1,1558,1110,762,-1,1915,1558,1920,-1,989,1176,1359,-1,932,1370,1885,-1,2119,1385,1663,-1,1915,2114,2106,-1,3010,3522,3011,-1,1822,2562,2998,-1,1915,1822,1110,-1,2783,2998,2128,-1,2212,3311,2974,-1,3249,3644,2828,-1,2997,3268,3040,-1,697,355,794,-1,2766,2605,2774,-1,3115,2731,2525,-1,3275,3637,947,-1,3516,3600,3371,-1,2123,2686,2833,-1,3527,3429,3624,-1,474,352,129,-1,2759,2653,1577,-1,2282,2475,1958,-1,3413,3615,2282,-1,2653,2755,2451,-1,2431,2451,2534,-1,2534,2691,2431,-1,3548,3630,3546,-1,2090,1867,2279,-1,1488,1378,2441,-1,3618,3546,3608,-1,2191,3602,3471,-1,2597,1809,1934,-1,3049,3557,3507,-1,3463,2821,2751,-1,2430,2411,3043,-1,1521,1298,940,-1,868,579,697,-1,3254,3501,3452,-1,2653,1827,635,-1,2291,2442,3215,-1,3485,3469,3527,-1,2898,3207,3612,-1,3030,3244,2408,-1,555,1666,2238,-1,3244,2394,3384,-1,3384,1924,1632,-1,2916,3398,1632,-1,3188,2441,1867,-1,3107,3524,2840,-1,2337,2898,2532,-1,393,526,931,-1,3212,3336,3411,-1,1378,1425,1867,-1,2152,2877,3230,-1,1462,1687,2312,-1,2880,3233,3107,-1,2394,2861,3002,-1,930,528,555,-1,1924,3384,2394,-1,1059,2530,2442,-1,2553,3002,2348,-1,3439,3490,2442,-1,353,133,276,-1,3154,3451,3533,-1,3477,3439,2515,-1,1859,2530,1059,-1,622,293,304,-1,304,353,1298,-1,1276,648,1050,-1,1001,648,1061,-1,3000,1684,1817,-1,2885,1061,1758,-1,1807,133,1684,-1,3000,3106,1807,-1,2467,1660,407,-1,350,263,1038,-1,1066,427,350,-1,592,1684,903,-1,903,293,1038,-1,865,263,350,-1,865,896,263,-1,1605,1971,2338,-1,1877,2833,2924,-1,1480,1728,1832,-1,3494,3507,2131,-1,3496,2486,2388,-1,1220,2747,2301,-1,2628,3589,3513,-1,3674,3070,3263,-1,2055,2635,1856,-1,3063,3271,2429,-1,2633,2254,3063,-1,697,1608,868,-1,1822,2783,1665,-1,2484,2415,3010,-1,2038,2212,2484,-1,1942,1885,1370,-1,2070,2781,1134,-1,1577,352,474,-1,2982,2684,2358,-1,1455,2913,2358,-1,3100,3229,2946,-1,3381,2465,2002,-1,2730,2906,3171,-1,3310,3702,3053,-1,3177,3702,3330,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getethmoid2_Geo_5_115_normalIndex_10()
		{
			int[] value = {3702,3452,3547,-1,2668,2766,3094,-1,2775,2508,2937,-1,482,198,947,-1,3426,1874,1798,-1,3256,3704,2963,-1,3256,2477,3704,-1,2933,2993,3459,-1,2993,3728,3662,-1,3224,1466,3166,-1,1366,1525,2242,-1,1972,2542,2109,-1,728,131,698,-1,468,235,359,-1,2942,2709,1870,-1,3256,3132,2839,-1,2937,2630,2839,-1,3449,3606,2890,-1,3644,2889,2374,-1,2066,1823,1582,-1,502,813,1025,-1,2824,3043,3086,-1,3278,3168,3005,-1,3279,3340,3040,-1,3290,2708,3019,-1,3516,2475,3615,-1,1395,1305,1940,-1,737,1544,1385,-1,1613,1644,1604,-1,1305,877,612,-1,3040,3268,3279,-1,3623,3606,3070,-1,1761,2221,1817,-1,1799,1074,1050,-1,670,1605,730,-1,2171,3351,2221,-1,2262,1609,3416,-1,813,117,464,-1,2538,2977,3101,-1,3486,3613,3381,-1,3610,3672,3685,-1,408,467,245,-1,635,207,153,-1,578,509,30,-1,1089,1227,2512,-1,3368,3467,2468,-1,2103,1990,2974,-1,2482,2221,1482,-1,2482,2171,2221,-1,1931,2298,1894,-1,3099,2759,2708,-1,2653,2759,3099,-1,2115,1482,2342,-1,2168,1887,2926,-1,1938,2001,2926,-1,1938,2828,2511,-1,3339,3116,3184,-1,1660,2467,3079,-1,3079,2467,2935,-1,3618,3592,3589,-1,2595,2337,2507,-1,3541,3608,3656,-1,3462,3495,3671,-1,2832,2718,3257,-1,3346,3630,3548,-1,3453,2559,2632,-1,3671,3495,3012,-1,1342,1922,1613,-1,856,769,871,-1,1176,1613,1359,-1,1561,2889,3148,-1,2123,2833,1813,-1,2758,2776,2733,-1,1828,2359,1964,-1,2942,2891,3424,-1,1319,1300,1025,-1,1788,1731,2605,-1,1498,1580,2525,-1,716,698,131,-1,840,830,313,-1,523,524,151,-1,1235,482,1227,-1,2288,2421,3526,-1,2757,2754,3048,-1,153,207,102,-1,635,1577,2653,-1,2468,2247,281,-1,832,1133,1040,-1,401,812,390,-1,2054,2096,2212,-1,591,561,239,-1,2871,3011,3249,-1,3373,2415,2781,-1,3010,3373,3522,-1,2159,2136,2256,-1,1266,1370,932,-1,1219,1250,989,-1,2061,2024,2059,-1,3341,3271,3147,-1,1126,817,1300,-1,2071,721,1870,-1,1304,1319,1422,-1,1318,868,1608,-1,1480,1832,1775,-1,3557,3575,3471,-1,1775,1809,1999,-1,2260,3471,3170,-1,1027,694,2037,-1,902,1480,1775,-1,3562,3606,3449,-1,393,451,797,-1,3653,3730,3424,-1,2429,2232,2405,-1,1958,3516,3395,-1,1227,1840,1738,-1,1449,1012,281,-1,673,1451,1272,-1,1585,838,904,-1,1665,904,1822,-1,3411,3349,3425,-1,3342,3619,3512,-1,2562,1822,2165,-1,1158,941,1273,-1,1432,1064,1429,-1,1426,1273,1313,-1,1432,1429,1560,-1,445,1196,571,-1,1587,1313,1640,-1,1569,1634,1560,-1,1957,1587,1640,-1,2014,2457,1830,-1,2402,2309,1680,-1,1223,1899,1740,-1,831,384,553,-1,3334,2671,3235,-1,445,56,118,-1,776,445,118,-1,2570,1675,1711,-1,1566,805,999,-1,919,790,251,-1,3082,2570,2474,-1,654,547,569,-1,1139,1675,1610,-1,2522,2381,3074,-1,907,1249,432,-1,2973,2381,2257,-1,1553,1243,562,-1,783,1634,1569,-1,1155,1456,1658,-1,913,883,371,-1,2000,1479,1693,-1,1568,1965,1514,-1,1568,1765,1965,-1,2161,2574,2000,-1,1965,1765,2677,-1,2770,2470,2499,-1,2499,2470,2063,-1,1550,1506,1785,-1,2086,1726,1795,-1,1611,1371,784,-1,900,1079,784,-1,783,530,1329,-1,562,138,165,-1,1572,900,1243,-1,1720,2721,2391,-1,3492,3386,3121,-1,2676,2934,3105,-1,231,718,606,-1,2844,3308,2795,-1,2611,1969,3050,-1,1912,1477,1330,-1,1330,2093,1270,-1,1967,2229,3024,-1,1287,758,1545,-1,971,385,1082,-1,1307,1956,409,-1,3375,2949,2264,-1,3505,3401,3301,-1,2179,1654,3131,-1,238,691,1190,-1,88,169,101,-1,2879,2497,2756,-1,3109,2303,2949,-1,3401,3211,3549,-1,346,987,691,-1,370,139,101,-1,1683,2495,2666,-1,2854,1423,2290,-1,954,369,605,-1,3194,1284,1277,-1,1169,773,1401,-1,1719,1393,825,-1,1393,394,825,-1,1388,662,1537,-1,2445,2975,2772,-1,3093,2466,2806,-1,1915,2106,2165,-1,1656,2098,2089,-1,2220,2119,2189,-1,1305,1835,1900,-1,415,379,426,-1,979,884,759,-1,415,426,978,-1,1789,1361,1973,-1,1140,1503,979,-1,2672,1603,2695,-1,2672,2695,3299,-1,1841,2449,2526,-1,219,453,611,-1,1140,979,759,-1,1503,1603,979,-1,2563,2040,2328,-1,2398,2780,2566,-1,875,455,811,-1,2040,1646,513,-1,821,295,701,-1,2119,2237,1926,-1,2126,2252,3044,-1,2252,3332,3044,-1,1400,336,1339,-1,3205,3518,2704,-1,1855,2177,2417,-1,2177,2888,2417,-1,1005,828,1387,-1,2308,3006,2888,-1,1387,828,885,-1,3123,3281,3404,-1,1262,846,1838,-1,1838,1881,1262,-1,1722,2436,2604,-1,1717,2334,3004,-1,240,455,580,-1,262,714,811,-1,1054,513,1646,-1,306,640,520,-1,301,84,618,-1,1618,1893,1880,-1,1242,1729,1108,-1,618,597,976,-1,2077,2127,2251,-1,2384,2213,2687,-1,3213,2346,2814,-1,3213,2354,2346,-1,2814,2200,2078,-1,1890,2110,2433,-1,980,2124,1936,-1,1961,1672,2078,-1,1403,1598,1431,-1,2181,1771,1713,-1,1552,1041,669,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getethmoid2_Geo_5_115_normalIndex_11()
		{
			int[] value = {1389,688,996,-1,1192,755,306,-1,996,479,1336,-1,1492,1447,1345,-1,1492,1622,1447,-1,2505,2565,2820,-1,1129,1987,1767,-1,609,1144,852,-1,1144,795,988,-1,2990,3135,3022,-1,2561,2565,2224,-1,2573,2820,3022,-1,2443,2505,3078,-1,362,1408,1351,-1,1351,330,362,-1,2591,2793,3164,-1,2418,2395,1829,-1,1077,1347,496,-1,711,965,99,-1,126,289,190,-1,1230,1355,1513,-1,1137,908,324,-1,496,1347,733,-1,1055,1574,926,-1,2448,1574,1055,-1,2293,2922,2830,-1,2039,2850,2955,-1,3191,2923,2779,-1,3382,3142,2830,-1,3191,2705,2872,-1,3175,2568,2519,-1,2987,2099,2141,-1,2568,2068,1960,-1,1390,1244,1085,-1,1000,525,405,-1,557,182,901,-1,431,405,491,-1,844,137,1107,-1,557,223,182,-1,2167,2149,1650,-1,1725,1590,1875,-1,3647,3219,3191,-1,1051,651,853,-1,405,431,222,-1,2970,3057,2051,-1,3590,3647,3008,-1,497,296,462,-1,497,558,296,-1,2340,2925,2935,-1,2380,2986,2496,-1,3425,3127,2932,-1,2250,2812,1946,-1,380,1510,1159,-1,2988,3425,3352,-1,2056,1062,1091,-1,2875,2340,2273,-1,265,1062,863,-1,2273,1946,2812,-1,2263,2670,2059,-1,2263,3052,3073,-1,1153,1505,1037,-1,1436,1593,1505,-1,1047,1454,403,-1,916,294,495,-1,321,294,43,-1,307,330,210,-1,1357,1351,2339,-1,3409,3493,3270,-1,1627,1359,2034,-1,2034,1359,1964,-1,1037,1643,1173,-1,1593,2231,1882,-1,3009,3447,3114,-1,1864,1068,1563,-1,2816,2231,3114,-1,3621,3020,2858,-1,237,675,742,-1,3297,3654,3588,-1,3027,3654,3297,-1,2012,2661,2185,-1,2382,1494,1352,-1,2261,2948,3380,-1,3276,3484,3520,-1,2198,2800,2455,-1,545,1368,1559,-1,3333,3484,3276,-1,1494,2382,2156,-1,3484,3595,3380,-1,488,1489,1368,-1,1368,1489,2198,-1,2936,2750,3357,-1,1842,1289,1793,-1,3321,3357,3086,-1,650,288,467,-1,1670,1921,2706,-1,1747,1921,3431,-1,628,552,787,-1,1800,1023,1267,-1,1800,2410,1297,-1,1116,2952,1131,-1,1600,2600,2679,-1,2130,1010,1004,-1,3521,3168,3466,-1,1102,1636,945,-1,1004,1600,1607,-1,1636,1635,2637,-1,3029,3133,3005,-1,886,625,1193,-1,514,706,36,-1,3161,2727,2959,-1,2689,3464,3160,-1,96,1808,512,-1,96,740,997,-1,2847,1989,869,-1,997,822,824,-1,289,66,210,-1,632,89,736,-1,2324,2349,1323,-1,1948,2591,2311,-1,613,2952,1625,-1,613,696,1837,-1,641,608,1202,-1,2500,2009,2336,-1,3242,3315,2500,-1,1851,1136,546,-1,1647,1234,2142,-1,1086,1386,725,-1,1647,1084,1234,-1,823,862,576,-1,1156,1861,2007,-1,2007,1179,1156,-1,2483,2991,2918,-1,274,351,286,-1,351,816,286,-1,857,935,671,-1,1977,1178,1246,-1,1500,1536,2029,-1,2845,2494,1843,-1,2356,3032,1346,-1,1067,1581,1164,-1,729,891,672,-1,1268,1145,644,-1,1057,1810,1891,-1,1917,653,1760,-1,196,1346,1952,-1,72,98,672,-1,586,107,164,-1,590,1843,1536,-1,257,322,823,-1,424,334,1354,-1,725,273,38,-1,422,696,613,-1,2802,3164,2843,-1,2843,2064,2118,-1,1338,1811,2784,-1,2360,3245,1851,-1,2911,2829,2843,-1,2118,2125,3245,-1,2784,1811,1829,-1,1104,977,332,-1,2139,1597,2420,-1,3601,3120,3239,-1,3111,2767,2196,-1,1078,1439,901,-1,195,182,199,-1,917,258,582,-1,208,414,195,-1,2036,1571,2197,-1,1136,1073,1016,-1,546,695,253,-1,1136,703,546,-1,499,332,489,-1,836,1555,1006,-1,1571,1016,1073,-1,331,470,442,-1,3390,3596,3534,-1,1793,1289,1497,-1,2245,2092,2849,-1,2954,1065,1114,-1,985,635,1827,-1,122,3,119,-1,1103,684,864,-1,2092,2245,985,-1,2739,2140,2675,-1,2140,2739,2834,-1,635,768,148,-1,768,635,985,-1,1286,1764,2372,-1,2747,2636,2426,-1,459,1148,964,-1,2617,3555,3666,-1,2682,2372,3534,-1,1386,1086,1463,-1,2142,1234,653,-1,181,211,340,-1,943,1222,974,-1,422,1433,375,-1,1046,422,375,-1,269,128,343,-1,105,13,68,-1,14,29,22,-1,493,2581,2985,-1,3378,3551,2681,-1,3711,2725,2920,-1,3659,3658,2903,-1,368,1256,1264,-1,269,1256,368,-1,19,1,1264,-1,1057,1891,1816,-1,174,249,218,-1,16,134,200,-1,936,2236,1417,-1,3042,1310,967,-1,1334,3378,2681,-1,2725,1034,1208,-1,19,1264,3098,-1,3570,3582,3686,-1,3659,3646,3658,-1,3641,3686,3700,-1,3377,3419,2236,-1,476,465,260,-1,986,46,763,-1,746,34,881,-1,140,173,964,-1,2769,3322,2768,-1,809,1757,2236,-1,1850,1036,2389,-1,2447,2547,282,-1,2985,2447,250,-1,1046,264,1523,-1,1757,3183,3377,-1,2768,1162,2769,-1,2389,3102,2722,-1,2939,3680,3393,-1,1837,696,1898,-1,2769,1837,3113,-1,1162,915,447,-1,95,178,678,-1,754,250,476,-1,476,282,357,-1,142,120,282,-1,3658,3652,1819,-1,3681,3632,3468,-1,3718,3554,3504,-1,3183,3383,3377,-1,211,86,22,-1,67,104,125,-1,128,65,0,-1,97,144,125,-1,915,923,447,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getethmoid2_Geo_5_115_normalIndex_12()
		{
			int[] value = {4,19,24,-1,1297,2410,1303,-1,782,1303,613,-1,552,793,358,-1,358,793,246,-1,792,1714,2409,-1,152,1743,1889,-1,194,246,677,-1,788,227,194,-1,247,440,326,-1,209,175,152,-1,145,146,1797,-1,391,280,515,-1,466,434,481,-1,1837,2769,2362,-1,2362,1014,466,-1,450,3536,3058,-1,2544,3025,3138,-1,3300,3614,3573,-1,2387,3690,3344,-1,1599,2113,2217,-1,2930,2950,3667,-1,3356,2619,3156,-1,2524,1316,1135,-1,3198,3506,3525,-1,3433,3408,3358,-1,3344,3192,3179,-1,2849,2834,3360,-1,3025,3433,3358,-1,3514,2849,3317,-1,3563,1621,2544,-1,3577,3138,3358,-1,3408,3231,3561,-1,2908,3400,2572,-1,3571,3515,3474,-1,2217,3319,3015,-1,2318,1749,3033,-1,3708,3677,2217,-1,3400,3410,3515,-1,3716,3577,3724,-1,2741,3661,3648,-1,3231,3198,2883,-1,2908,3312,3410,-1,3344,3690,3415,-1,1621,2117,2058,-1,3300,3069,3038,-1,3573,3228,3243,-1,3696,2113,3707,-1,3684,2746,2796,-1,3667,3620,3705,-1,3360,2834,2739,-1,2881,3033,3356,-1,1497,1773,1762,-1,3366,3034,3347,-1,2501,2463,3277,-1,2564,1474,1959,-1,3666,2655,2617,-1,3543,3666,3560,-1,3508,3687,3366,-1,3427,3456,3687,-1,3648,3727,3726,-1,3648,3661,3727,-1,3639,3720,3698,-1,3639,3649,3720,-1,3668,3693,3679,-1,3693,3668,3696,-1,3317,3068,3631,-1,3068,3317,3181,-1,3192,3415,3225,-1,3192,3344,3415,-1,3338,2965,3014,-1,2965,3338,2501,-1,3723,3563,3709,-1,3723,3705,3563,-1,3635,2690,2667,-1,3635,3640,2690,-1,3721,3729,3725,-1,3721,3697,3729,-1,3697,3559,3510,-1,3697,3721,3559,-1,3407,3474,3510,-1,3474,3407,3282,-1,3690,3563,3722,-1,3563,3690,2387,-1,3506,3025,3535,-1,3025,3506,3433,-1,3665,3723,3703,-1,3665,3684,3723,-1,3564,3677,3691,-1,3564,3319,3677,-1,3277,2883,2965,-1,3231,2883,3277,-1,73,65,135,-1,73,0,65,-1,552,541,792,-1,541,552,434,-1,152,112,145,-1,152,168,112,-1,2620,456,2228,-1,303,456,2620,-1,2284,1714,1889,-1,2284,2409,1714,-1,209,266,175,-1,302,266,209,-1,279,81,270,-1,116,81,279,-1,181,86,211,-1,172,86,181,-1,3113,2393,2696,-1,2393,3113,1898,-1,3085,2722,3102,-1,2722,3085,3013,-1,3578,3686,3582,-1,3578,3673,3686,-1,3642,3658,3646,-1,3642,3599,3658,-1,79,110,87,-1,79,92,110,-1,1060,140,282,-1,140,1060,173,-1,754,27,493,-1,27,754,41,-1,23,767,6,-1,23,623,767,-1,2393,1046,1523,-1,2393,1898,1046,-1,1715,3183,1757,-1,3183,1715,2929,-1,2428,2569,2011,-1,2818,2569,2428,-1,93,146,60,-1,93,303,146,-1,435,69,645,-1,435,78,69,-1,943,1624,1222,-1,1624,943,1637,-1,270,419,279,-1,270,430,419,-1,3638,2985,2581,-1,3638,3681,2985,-1,2805,3676,3669,-1,3676,2805,2773,-1,3700,3711,3717,-1,3711,3700,3694,-1,2642,1256,1013,-1,1256,2642,2903,-1,20,83,2,-1,92,83,20,-1,203,94,191,-1,203,105,94,-1,972,477,764,-1,972,340,477,-1,967,419,1069,-1,419,967,366,-1,70,35,75,-1,70,64,35,-1,52,26,57,-1,26,52,13,-1,5,150,90,-1,5,147,150,-1,70,32,76,-1,32,70,16,-1,134,178,200,-1,134,167,178,-1,343,159,361,-1,343,128,159,-1,388,160,366,-1,388,187,160,-1,763,2864,2950,-1,763,768,2864,-1,34,9,71,-1,37,9,34,-1,24,668,58,-1,24,588,668,-1,3419,3504,3554,-1,3377,3504,3419,-1,771,2777,494,-1,771,2560,2777,-1,435,2690,2887,-1,435,645,2690,-1,746,2741,800,-1,746,2746,2741,-1,768,2245,2864,-1,768,985,2245,-1,204,33,192,-1,33,204,6,-1,2729,1114,969,-1,2881,1114,2729,-1,87,44,79,-1,87,37,44,-1,172,176,117,-1,172,193,176,-1,485,681,638,-1,429,681,485,-1,470,499,489,-1,499,470,485,-1,638,692,478,-1,836,692,638,-1,1251,1136,1185,-1,1073,1136,1251,-1,695,398,253,-1,695,538,398,-1,3327,2798,2234,-1,3327,3601,2798,-1,917,429,258,-1,917,681,429,-1,1517,1078,1191,-1,1517,1649,1078,-1,1049,1549,917,-1,1549,1049,1597,-1,490,1049,582,-1,1049,490,926,-1,332,1338,253,-1,1338,332,977,-1,2971,2151,2057,-1,2971,3062,2151,-1,2829,2802,2843,-1,2802,2829,2807,-1,575,1268,433,-1,575,1500,1268,-1,1420,717,1292,-1,1420,1030,717,-1,1232,2500,1148,-1,2085,2500,1232,-1,1046,1637,943,-1,1046,1851,1637,-1,1433,995,583,-1,995,1433,1845,-1,2316,2216,2454,-1,1995,2216,2316,-1,1201,1039,1151,-1,1201,1122,1039,-1,848,1122,739,-1,1186,1122,848,-1,2216,1306,1526,-1,2216,1995,1306,-1,732,1592,1120,-1,1201,1592,732,-1,935,1067,891,-1,1178,1067,935,-1,1446,816,1145,-1,816,1446,1224,-1,3523,2845,3032,-1,2991,2845,3523,-1,1224,1861,1156,-1,1224,1876,1861,-1,1895,1246,1152,-1,1895,2132,1246,-1,323,286,141,-1,323,274,286,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getethmoid2_Geo_5_115_normalIndex_13()
		{
			int[] value = {2434,2701,2453,-1,2434,2918,2701,-1,810,108,109,-1,108,810,827,-1,107,383,377,-1,383,107,98,-1,257,575,322,-1,257,590,575,-1,1302,1463,1398,-1,1302,1202,1463,-1,1084,255,785,-1,1084,748,255,-1,1930,2323,1704,-1,2390,2323,1930,-1,589,639,615,-1,589,576,639,-1,2502,1930,2269,-1,2502,2390,1930,-1,2745,2269,2825,-1,2745,2502,2269,-1,993,892,546,-1,892,993,895,-1,3335,3362,3315,-1,3190,3362,3335,-1,1624,1802,2085,-1,1802,1624,1468,-1,807,739,549,-1,807,848,739,-1,2009,1671,2336,-1,1671,2009,1434,-1,1167,424,1354,-1,424,1167,641,-1,109,255,518,-1,109,108,255,-1,1602,968,1948,-1,1210,968,1602,-1,1375,839,804,-1,2778,839,1375,-1,1524,1792,2027,-1,1792,1524,1407,-1,824,1058,1989,-1,2107,1058,824,-1,2959,2190,2847,-1,2190,2959,2598,-1,898,1631,1375,-1,898,981,1631,-1,512,1865,659,-1,1865,512,1808,-1,1739,766,1113,-1,1739,1421,766,-1,2727,2886,2330,-1,2886,2727,3161,-1,2027,1113,1524,-1,2027,1739,1113,-1,2330,2327,1941,-1,2327,2330,2886,-1,1175,514,992,-1,1175,706,514,-1,2548,741,1670,-1,741,2548,517,-1,804,1670,741,-1,804,642,1670,-1,1670,2679,2750,-1,2679,1670,1607,-1,1248,2771,1166,-1,1248,2646,2771,-1,2088,1072,952,-1,1072,2088,1530,-1,1664,1193,1228,-1,1664,1245,1193,-1,2810,3103,2981,-1,2810,2771,3103,-1,2018,1194,1530,-1,1557,1194,2018,-1,1116,1248,2567,-1,1211,1248,1116,-1,3110,1072,2492,-1,952,1072,3110,-1,1102,1635,1636,-1,1102,1131,1635,-1,2052,2637,2600,-1,2239,2637,2052,-1,3005,2952,2567,-1,3168,2952,3005,-1,2750,1921,1670,-1,2750,2936,1921,-1,3321,3431,3357,-1,3321,3418,3431,-1,1557,2302,1489,-1,1557,2018,2302,-1,2981,3595,3333,-1,2981,3103,3595,-1,1440,1228,873,-1,1440,1664,1228,-1,572,1440,873,-1,1494,1440,572,-1,2948,2584,3259,-1,2948,2261,2584,-1,742,111,237,-1,720,111,742,-1,2498,2661,2858,-1,2185,2661,2498,-1,2010,1391,1907,-1,2010,1416,1391,-1,2074,2185,2498,-1,1588,2185,2074,-1,1651,2452,1907,-1,2452,1651,2164,-1,237,1471,745,-1,237,1007,1471,-1,1882,1651,1643,-1,1651,1882,2164,-1,745,1563,894,-1,1471,1563,745,-1,682,495,441,-1,495,682,894,-1,3087,2151,3062,-1,3087,2173,2151,-1,2962,2487,2537,-1,3001,2487,2962,-1,1864,2432,1975,-1,1864,2446,2432,-1,2957,3009,3364,-1,2957,2823,3009,-1,1511,2851,1702,-1,2851,1511,1766,-1,344,747,321,-1,661,747,344,-1,3719,3052,3253,-1,3719,3556,3052,-1,2596,2015,2859,-1,1925,2015,2596,-1,3417,3352,3250,-1,3417,3710,3352,-1,3285,2416,2988,-1,3285,2590,2416,-1,2416,1510,3236,-1,2416,1748,1510,-1,2590,3108,2401,-1,3108,2590,3285,-1,1437,521,814,-1,1437,1255,521,-1,1509,1694,1554,-1,1576,1694,1509,-1,1576,1903,1694,-1,1696,1903,1576,-1,1696,2138,1903,-1,1983,2138,1696,-1,1983,2274,2138,-1,2186,2274,1983,-1,2186,2292,2274,-1,2186,2277,2292,-1,31,594,374,-1,31,254,594,-1,1093,1896,850,-1,1896,1093,1839,-1,1450,814,534,-1,1437,814,1450,-1,1486,2882,2638,-1,1486,1692,2882,-1,2643,3145,2857,-1,3145,2643,2927,-1,2831,2458,2983,-1,2831,2250,2458,-1,3203,3414,3118,-1,3414,3203,3443,-1,3399,3055,3046,-1,3399,3353,3055,-1,3470,3251,3422,-1,3470,3196,3251,-1,3568,3209,3634,-1,3209,3568,3173,-1,2809,2300,3045,-1,2300,2809,2199,-1,2401,3091,2437,-1,2401,3108,3091,-1,2435,1491,2476,-1,1491,2435,1442,-1,1358,970,731,-1,1358,1414,970,-1,835,1529,702,-1,835,1541,1529,-1,666,318,155,-1,666,704,318,-1,818,420,780,-1,418,420,818,-1,232,484,244,-1,529,484,232,-1,354,778,711,-1,692,778,354,-1,1143,1290,1349,-1,1237,1290,1143,-1,2472,2406,2779,-1,2472,2195,2406,-1,1170,1000,1527,-1,525,1000,1170,-1,791,233,156,-1,664,233,791,-1,1107,1244,844,-1,1244,1107,1085,-1,1117,1439,1409,-1,1117,901,1439,-1,1349,1000,1143,-1,1257,1000,1349,-1,1360,2099,1390,-1,2099,1360,2141,-1,1349,2167,1257,-1,2167,1349,2051,-1,2051,2872,2167,-1,2872,2051,3057,-1,3590,3037,3594,-1,3590,3008,3037,-1,3594,3165,3590,-1,3165,3594,3152,-1,2472,2923,2491,-1,2472,2779,2923,-1,1614,2602,1532,-1,1614,2608,2602,-1,1399,685,676,-1,1399,1241,685,-1,1725,1279,1214,-1,1725,1846,1279,-1,676,378,275,-1,676,685,378,-1,853,1214,1279,-1,820,1214,853,-1,275,500,137,-1,275,378,500,-1,431,820,853,-1,491,820,431,-1,632,1210,1460,-1,1210,632,736,-1,1230,966,1355,-1,1230,438,966,-1,2315,3023,3039,-1,2341,3023,2315,-1,1412,2144,2076,-1,1412,1483,2144,-1,733,522,121,-1,733,1071,522,-1,1539,1137,1071,-1,1539,1483,1137,-1,2144,1539,2173,-1,2144,1483,1539,-1,3089,3331,2940,-1,3089,3651,3331,-1,3331,3023,2862,-1,3651,3023,3331,-1,2268,3039,3018,-1,2268,2315,3039,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getethmoid2_Geo_5_115_normalIndex_14()
		{
			int[] value = {1516,2268,1485,-1,1516,2315,2268,-1,845,1485,789,-1,845,1516,1485,-1,789,753,845,-1,522,753,789,-1,2307,1941,2327,-1,2033,1941,2307,-1,803,852,1129,-1,803,598,852,-1,1397,2007,1937,-1,1179,2007,1397,-1,1345,1380,1492,-1,1380,1345,988,-1,1281,1174,1645,-1,1281,920,1174,-1,226,669,1041,-1,669,226,301,-1,755,1403,1218,-1,1403,755,1192,-1,1389,2072,1369,-1,1365,2072,1389,-1,1365,1936,2072,-1,1269,1936,1365,-1,1616,1431,1598,-1,1616,1596,1431,-1,2124,1622,2143,-1,1622,2124,980,-1,3540,2363,3488,-1,3540,2392,2363,-1,3488,3187,3540,-1,3217,3187,3488,-1,2006,2384,1834,-1,2006,2213,2384,-1,1834,1729,2006,-1,1108,1729,1834,-1,186,944,870,-1,186,461,944,-1,1878,1618,1458,-1,1878,1893,1618,-1,3332,3473,3537,-1,3473,3332,3283,-1,206,53,157,-1,206,336,53,-1,3247,3454,3457,-1,3247,3172,3454,-1,1589,542,1543,-1,1589,1138,542,-1,2417,1862,1855,-1,1862,2417,2557,-1,2748,3205,2704,-1,3479,3205,2748,-1,1855,1115,1377,-1,1115,1855,1862,-1,1873,846,914,-1,846,1873,1838,-1,687,503,412,-1,687,798,503,-1,1438,2669,1538,-1,2604,2669,1438,-1,219,103,453,-1,219,189,103,-1,2361,3054,2654,-1,2361,2579,3054,-1,1565,2702,1543,-1,2694,2702,1565,-1,240,179,127,-1,179,240,457,-1,3403,3151,3193,-1,3403,3307,3151,-1,2704,3445,2790,-1,3445,2704,3518,-1,444,348,314,-1,444,584,348,-1,314,278,179,-1,348,278,314,-1,3123,2308,2294,-1,2308,3123,3006,-1,3193,2790,3445,-1,3193,2694,2790,-1,3274,3269,2917,-1,3274,3604,3269,-1,798,1533,948,-1,1538,1533,798,-1,292,1115,914,-1,292,630,1115,-1,3144,3436,3153,-1,3144,3611,3436,-1,3204,2032,2053,-1,3204,3130,2032,-1,1132,2044,1991,-1,1132,1308,2044,-1,1150,1963,1339,-1,1963,1150,1968,-1,2050,2032,2026,-1,2050,2053,2032,-1,3454,3204,3537,-1,3204,3454,3130,-1,1308,417,1054,-1,1132,417,1308,-1,2804,3283,2563,-1,2804,3473,3283,-1,1445,2398,1954,-1,1445,2860,2398,-1,1197,1717,580,-1,1197,1954,1717,-1,1138,821,714,-1,1119,821,1138,-1,2005,2601,2004,-1,2253,2601,2005,-1,2593,2480,3167,-1,2281,2480,2593,-1,749,1424,536,-1,1424,749,1475,-1,448,559,170,-1,448,759,559,-1,819,708,559,-1,854,708,819,-1,536,540,749,-1,320,540,536,-1,1275,749,540,-1,1275,1364,749,-1,1293,1853,1168,-1,1293,1790,1853,-1,1863,1364,1275,-1,1863,1928,1364,-1,1853,2371,2459,-1,1790,2371,1853,-1,2226,2654,2546,-1,2361,2654,2226,-1,3303,2449,3017,-1,2449,3303,2526,-1,2546,2813,2707,-1,2654,2813,2546,-1,3017,3591,3303,-1,3017,3296,3591,-1,2813,2634,2707,-1,2813,2737,2634,-1,3296,3446,3591,-1,3296,3309,3446,-1,2353,2737,2436,-1,2737,2353,2634,-1,3370,2601,3237,-1,3370,2610,2601,-1,2852,1973,2811,-1,2852,1789,1973,-1,1722,978,1730,-1,1722,942,978,-1,1361,446,627,-1,1177,446,1361,-1,867,320,536,-1,658,320,867,-1,1754,2026,1920,-1,2026,1754,2050,-1,1970,2044,2035,-1,2044,1970,1991,-1,2028,2220,2189,-1,2220,2028,2041,-1,2256,2147,2209,-1,2147,2256,2136,-1,2257,2148,2276,-1,2148,2257,1911,-1,392,256,973,-1,392,143,256,-1,2290,1261,1217,-1,1261,2290,1423,-1,1238,2425,2890,-1,2425,1238,1226,-1,1009,1401,773,-1,1009,1782,1401,-1,3287,3440,3476,-1,3287,3150,3440,-1,954,381,404,-1,1044,381,954,-1,370,113,139,-1,370,335,113,-1,1906,2680,1886,-1,2680,1906,2761,-1,1496,2495,1683,-1,1496,2303,2495,-1,1956,893,756,-1,1956,1496,893,-1,620,385,267,-1,620,758,385,-1,3024,3505,3050,-1,3505,3024,3131,-1,1082,1332,1141,-1,1082,1287,1332,-1,1912,2819,2756,-1,2819,1912,2664,-1,924,185,567,-1,924,1080,185,-1,951,1908,1695,-1,951,1180,1908,-1,2734,2664,2578,-1,2734,2819,2664,-1,2540,1716,1685,-1,2540,2594,1716,-1,1904,933,1888,-1,933,1904,955,-1,197,718,231,-1,718,197,581,-1,709,161,690,-1,709,177,161,-1,1686,1392,1094,-1,1774,1392,1686,-1,77,184,231,-1,77,80,184,-1,1028,1686,1094,-1,1686,1028,1678,-1,80,367,184,-1,80,285,367,-1,1111,1678,1028,-1,1678,1111,1712,-1,285,933,367,-1,285,826,933,-1,1892,1111,1501,-1,1712,1111,1892,-1,826,1888,933,-1,826,1752,1888,-1,2317,1501,2306,-1,1892,1501,2317,-1,1888,2786,2964,-1,1888,1752,2786,-1,2627,2306,2989,-1,2317,2306,2627,-1,2964,3391,3607,-1,2964,2786,3391,-1,2724,2989,3252,-1,2627,2989,2724,-1,3607,3260,3367,-1,3607,3391,3260,-1,3238,2724,3252,-1,2724,3238,2728,-1,3064,2728,3238,-1,2728,3064,2683,-1,2874,2915,2956,-1,2915,2874,2799,-1,2738,2683,3064,-1,2683,2738,2510,-1,2540,1751,2688,-1,2540,1685,1751,-1,1556,690,1720,-1,1556,709,690,-1,1685,960,1751,-1,1685,722,960,-1,3095,2385,2606,-1,3095,3643,2385,-1,910,165,647,-1,530,165,910,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getethmoid2_Geo_5_115_normalIndex_15()
		{
			int[] value = {3478,3220,3061,-1,3478,3643,3220,-1,1777,1199,1326,-1,1734,1199,1777,-1,3216,2884,3660,-1,3216,2677,2884,-1,679,1221,799,-1,679,452,1221,-1,1506,1109,1327,-1,1550,1109,1506,-1,2902,1787,1868,-1,2869,1787,2902,-1,3389,2902,3683,-1,3389,2869,2902,-1,3683,3385,3389,-1,3385,3683,3660,-1,2938,2218,2550,-1,2218,2938,2373,-1,2373,1724,2218,-1,1724,2373,1777,-1,1825,1448,1806,-1,1448,1825,1504,-1,1514,1096,1568,-1,1096,1514,1097,-1,1157,1479,913,-1,1157,1693,1479,-1,796,1502,1157,-1,1333,1502,796,-1,1534,1572,1243,-1,1534,1499,1572,-1,1710,2230,1697,-1,2230,1710,1700,-1,1249,825,723,-1,825,1249,1373,-1,1388,1801,1112,-1,1911,1801,1388,-1,1042,1801,1805,-1,1042,1112,1801,-1,2386,1653,2364,-1,2386,1746,1653,-1,2865,3272,2900,-1,3272,2865,3232,-1,805,432,364,-1,907,432,805,-1,919,1805,1711,-1,1042,1805,919,-1,1052,1200,950,-1,1200,1212,1404,-1,1200,1052,1212,-1,364,999,805,-1,364,654,999,-1,2439,1772,1703,-1,1772,2439,2485,-1,3065,2671,2457,-1,3065,3235,2671,-1,1031,363,949,-1,402,363,1031,-1,3574,3080,3084,-1,3080,3574,3626,-1,1379,1200,1520,-1,1203,1200,1379,-1,1200,1203,1048,-1,234,248,50,-1,234,333,248,-1,911,779,519,-1,911,1048,779,-1,957,1127,1341,-1,553,1127,957,-1,779,654,569,-1,779,1160,654,-1,1160,1379,1744,-1,1203,1379,1160,-1,2528,1994,2423,-1,1994,2528,1899,-1,3083,2529,3047,-1,3083,3084,2529,-1,2660,2369,2976,-1,2166,2369,2660,-1,2976,2266,2848,-1,2369,2266,2976,-1,2266,2133,2848,-1,2266,1803,2133,-1,1404,1396,1803,-1,1404,1212,1396,-1,1710,2014,1674,-1,1710,1697,2014,-1,1830,1196,1335,-1,1727,1196,1830,-1,1035,563,1128,-1,1035,689,563,-1,689,234,563,-1,689,471,234,-1,2165,2975,2445,-1,2165,2106,2975,-1,2108,1393,1719,-1,2108,2147,1393,-1,1537,2147,2136,-1,1537,1393,2147,-1,3629,1340,2822,-1,1340,3629,1213,-1,1909,973,1691,-1,973,1909,392,-1,1213,2837,1284,-1,1213,3629,2837,-1,2444,3623,3674,-1,2444,2838,3623,-1,2670,2325,2059,-1,2758,2325,2670,-1,2137,1324,1522,-1,2137,2134,1324,-1,1682,2296,2407,-1,1918,2296,1682,-1,1756,2754,2757,-1,1736,2754,1756,-1,1219,1932,1939,-1,1247,1932,1219,-1,2227,2543,2535,-1,2286,2543,2227,-1,2776,2242,2733,-1,2776,2255,2242,-1,2733,2357,2715,-1,2733,2242,2357,-1,3645,2995,3701,-1,3645,2905,2995,-1,3688,3562,3449,-1,3688,1209,3562,-1,2211,1427,1027,-1,1427,2211,2506,-1,2319,655,554,-1,2241,655,2319,-1,2260,2607,2343,-1,2260,2894,2607,-1,3482,3496,3566,-1,2486,3496,3482,-1,958,550,983,-1,550,958,508,-1,868,1472,579,-1,868,1318,1472,-1,1282,439,1367,-1,439,1282,376,-1,3441,3227,3214,-1,3491,3227,3441,-1,3340,2827,2867,-1,3340,3279,2827,-1,2856,3279,3298,-1,2856,2827,3279,-1,1932,2712,2867,-1,1932,1913,2712,-1,1266,1942,1370,-1,1266,1836,1942,-1,2521,2243,2623,-1,2521,2070,2243,-1,1668,699,601,-1,699,1668,1990,-1,1619,2662,2577,-1,2662,1619,1738,-1,3224,1701,1883,-1,3224,3275,1701,-1,1410,890,1428,-1,1410,847,890,-1,808,1467,934,-1,808,1508,1467,-1,2709,1972,2071,-1,1972,2709,2542,-1,2478,1457,2504,-1,1457,2478,1615,-1,298,439,242,-1,439,298,410,-1,1612,577,1594,-1,577,1612,794,-1,3491,2478,2504,-1,3491,3441,2478,-1,1029,2262,2259,-1,1029,889,2262,-1,1266,888,1239,-1,888,1266,932,-1,932,843,888,-1,843,932,878,-1,2189,1866,1920,-1,2119,1866,2189,-1,2183,2509,2400,-1,2183,2461,2509,-1,2595,2431,2691,-1,2595,2536,2431,-1,3532,2924,3423,-1,3532,3163,2924,-1,3411,3236,3397,-1,3411,3425,3236,-1,3413,2298,3487,-1,2298,3413,2282,-1,3467,3246,3406,-1,3311,3246,3467,-1,1324,601,937,-1,1324,1668,601,-1,1405,2577,2421,-1,1405,1619,2577,-1,2576,3305,3141,-1,3305,2576,2626,-1,3369,1894,3350,-1,1894,3369,1931,-1,2244,865,2376,-1,2244,896,865,-1,774,1464,1032,-1,1464,774,889,-1,3538,3295,3157,-1,3124,3295,3538,-1,1101,2168,1205,-1,2168,1101,1887,-1,3097,3369,3092,-1,3097,3402,3369,-1,1913,2639,2712,-1,2639,1913,1935,-1,737,877,878,-1,737,612,877,-1,3201,3137,2588,-1,3458,3137,3201,-1,3119,3286,2797,-1,3286,3119,3376,-1,3048,2797,2652,-1,2797,3048,3119,-1,2374,2511,2828,-1,2259,2511,2374,-1,1885,2612,2209,-1,1885,2378,2612,-1,3636,3645,3672,-1,3605,3645,3636,-1,40,11,62,-1,8,11,40,-1,1731,2730,2605,-1,1731,1781,2730,-1,47,57,85,-1,52,57,47,-1,3258,3148,3500,-1,3258,3122,3148,-1,2835,3728,3695,-1,2846,3728,2835,-1,1410,840,847,-1,1410,1402,840,-1,3704,2714,3715,-1,2477,2714,3704,-1,3556,3730,3653,-1,3556,3719,3730,-1,464,1381,813,-1,1381,464,1415,-1,150,202,119,-1,150,151,202,-1,241,39,309,-1,39,241,35,-1,55,59,14,-1,49,59,55,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getethmoid2_Geo_5_115_normalIndex_16()
		{
			int[] value = {1783,1015,1815,-1,1783,983,1015,-1,3441,2556,2478,-1,3441,3341,2556,-1,2325,2285,2286,-1,2325,2332,2285,-1,1285,743,1314,-1,743,1285,523,-1,3663,3166,3262,-1,3663,3224,3166,-1,1428,934,1467,-1,1428,890,934,-1,220,808,309,-1,808,220,786,-1,3695,2993,2933,-1,3695,3728,2993,-1,3229,3547,3501,-1,3229,3132,3547,-1,1737,2605,2414,-1,2605,1737,1788,-1,3486,3489,3605,-1,3486,3293,3489,-1,3177,2801,2663,-1,2801,3177,3330,-1,2699,3254,3452,-1,3254,2699,2913,-1,2699,2982,2913,-1,2465,2982,2699,-1,2320,1278,2684,-1,1828,1278,2320,-1,2614,1133,2100,-1,1133,2614,1546,-1,3147,2313,2490,-1,3147,2896,2313,-1,2254,2322,1608,-1,2254,2633,2322,-1,2291,2163,1425,-1,2291,3215,2163,-1,694,902,833,-1,902,694,1027,-1,2486,497,462,-1,2486,2145,497,-1,1844,2343,2462,-1,2343,1844,1181,-1,1817,592,730,-1,1684,592,1817,-1,3000,3531,3106,-1,3351,3531,3000,-1,3157,3184,3112,-1,3157,3295,3184,-1,2208,3066,1276,-1,2208,3396,3066,-1,3097,3176,3088,-1,3097,3437,3176,-1,3112,3519,3529,-1,3112,3116,3519,-1,3088,3051,3106,-1,3088,3176,3051,-1,1008,427,982,-1,427,1008,350,-1,2603,2038,1001,-1,2212,2038,2603,-1,304,643,622,-1,643,304,1298,-1,2496,1570,2380,-1,2379,1570,2496,-1,1325,1182,1814,-1,1325,770,1182,-1,3158,3325,3533,-1,3325,3158,3208,-1,1376,2379,2049,-1,1376,1570,2379,-1,1154,1182,507,-1,1945,1182,1154,-1,3325,2880,3126,-1,2880,3325,3233,-1,602,1376,1118,-1,602,705,1376,-1,1945,1632,1924,-1,1945,1154,1632,-1,940,1476,1521,-1,1476,940,1059,-1,2486,624,2388,-1,2486,462,624,-1,834,931,526,-1,887,931,834,-1,1021,1106,1240,-1,815,1106,1021,-1,2291,1476,2442,-1,1476,2291,1484,-1,1872,1462,2493,-1,874,1462,1872,-1,3030,3210,2861,-1,3210,3030,3188,-1,596,1666,555,-1,596,1639,1666,-1,2658,2840,2532,-1,2658,3107,2840,-1,2178,3664,3494,-1,3664,2178,2023,-1,1070,815,1021,-1,1070,887,815,-1,2426,3215,3712,-1,2163,3215,2426,-1,449,2131,2191,-1,2131,449,360,-1,3324,3137,3413,-1,3137,3324,2588,-1,2751,3576,3463,-1,2751,3575,3576,-1,1809,2751,1999,-1,2751,1809,2597,-1,1832,2155,1934,-1,1832,1728,2155,-1,2536,1867,2090,-1,2507,1867,2536,-1,3481,3558,3487,-1,3558,3481,3337,-1,2342,1761,2116,-1,1482,1761,2342,-1,2221,1761,1482,-1,2662,3516,3526,-1,2662,2692,3516,-1,3580,3592,3608,-1,3580,3429,3592,-1,3617,3499,3125,-1,3499,3617,3624,-1,1813,889,1029,-1,1464,889,1813,-1,309,11,220,-1,39,11,309,-1,202,198,102,-1,202,556,198,-1,3094,3256,3115,-1,3094,3132,3256,-1,2995,2542,3273,-1,2995,2109,2542,-1,2836,2758,2670,-1,2836,2776,2758,-1,3314,3585,3280,-1,3314,3688,3585,-1,856,1395,1342,-1,1395,856,1075,-1,617,347,460,-1,617,1011,347,-1,3329,3542,3223,-1,3542,3329,3509,-1,1705,2122,2333,-1,2122,1705,1573,-1,2914,3509,3329,-1,2914,3139,3509,-1,1274,1705,1854,-1,1705,1274,1130,-1,3318,2803,3072,-1,3139,2803,3318,-1,1854,1495,1274,-1,1854,2091,1495,-1,2326,2651,2873,-1,2651,2326,2091,-1,2399,2003,2351,-1,2471,2003,2399,-1,1033,382,859,-1,1033,475,382,-1,1095,1769,1776,-1,1769,1095,1033,-1,2700,2966,3266,-1,2700,2555,2966,-1,373,163,403,-1,373,180,163,-1,2555,2265,2720,-1,2555,2202,2265,-1,2246,2941,3270,-1,2193,2941,2246,-1,1017,1601,1507,-1,1043,1601,1017,-1,180,593,163,-1,180,510,593,-1,2615,3202,2621,-1,3223,3202,2615,-1,700,1258,1165,-1,1258,700,858,-1,1165,1947,1206,-1,1847,1947,1165,-1,3655,2978,3174,-1,3655,3313,2978,-1,1363,765,656,-1,765,1363,1579,-1,1206,2112,1419,-1,1947,2112,1206,-1,607,15,565,-1,15,607,45,-1,1020,660,657,-1,1020,1022,660,-1,15,539,18,-1,539,15,674,-1,629,1374,1493,-1,629,539,1374,-1,1374,2223,2158,-1,1374,1469,2223,-1,2223,2554,2503,-1,2223,2222,2554,-1,2698,2310,2892,-1,2698,2278,2310,-1,3432,3503,3420,-1,3432,3284,3503,-1,3503,2350,2616,-1,3503,3304,2350,-1,2081,1490,1925,-1,1490,2081,3104,-1,2815,1985,2176,-1,2815,2616,1985,-1,1490,1328,1518,-1,1328,1490,1362,-1,1540,2176,1443,-1,1540,2157,2176,-1,1328,855,1322,-1,855,1328,984,-1,1022,918,660,-1,1022,1142,918,-1,277,425,272,-1,277,360,425,-1,781,1260,619,-1,781,1181,1260,-1,1787,2711,1868,-1,1787,1411,2711,-1,416,154,272,-1,154,416,486,-1,2335,2791,2518,-1,2375,2791,2335,-1,2518,2624,2299,-1,2791,2624,2518,-1,2791,2765,2624,-1,2710,2765,2791,-1,1341,1026,957,-1,1026,1341,1223,-1,406,486,587,-1,406,154,486,-1,2931,2723,2550,-1,2931,2895,2723,-1,2082,2545,2716,-1,2545,2082,2086,-1,1869,2086,2082,-1,2086,1869,1726,-1,660,760,345,-1,660,918,760,-1,1322,760,1348,-1,760,1322,855,-1,1818,2157,1540,-1,1818,1879,2157,-1,1518,1322,1673,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=17 */
		private int[] getethmoid2_Geo_5_115_normalIndex_17()
		{
			int[] value = {1322,1518,1328,-1,2176,2629,2815,-1,2157,2629,2176,-1,1925,1518,2015,-1,1518,1925,1490,-1,3420,2980,3432,-1,2960,2980,3420,-1,3284,2892,2580,-1,3432,2892,3284,-1,2580,2310,2172,-1,2892,2310,2580,-1,2222,2583,2554,-1,2222,2112,2583,-1,2158,1493,1374,-1,2172,1493,2158,-1,674,1374,539,-1,1374,674,1469,-1,1171,657,837,-1,1171,1020,657,-1,45,674,15,-1,674,45,752,-1,657,345,213,-1,657,660,345,-1,1690,2102,1662,-1,1690,1914,2102,-1,1690,1732,1914,-1,600,1419,757,-1,1206,1419,600,-1,3174,2583,2648,-1,3174,2978,2583,-1,1847,2648,1947,-1,2621,2648,1847,-1,341,858,700,-1,858,341,460,-1,1858,2621,1847,-1,2615,2621,1858,-1,531,1043,510,-1,531,1095,1043,-1,1017,1487,1019,-1,1017,1507,1487,-1,3001,3031,2720,-1,3031,3001,3409,-1,1794,3128,1125,-1,2003,3128,1794,-1,2326,1776,1769,-1,2326,2305,1776,-1,1033,1495,1769,-1,1495,1033,859,-1,2399,2700,2787,-1,2399,2351,2700,-1,3072,3222,3195,-1,3072,2787,3222,-1,859,1274,1495,-1,1274,859,568,-1,3134,3072,3195,-1,3318,3072,3134,-1,568,1130,1274,-1,1130,568,395,-1,356,259,158,-1,259,356,566,-1,3379,3139,3318,-1,3509,3139,3379,-1,1130,1573,1705,-1,1573,1130,1011,-1,1225,989,1250,-1,1225,871,989,-1,2243,2159,2256,-1,2159,2243,2249,-1,1161,239,1053,-1,1161,311,239,-1,1053,390,1311,-1,1053,239,390,-1,3249,3500,3644,-1,3249,3628,3500,-1,2227,2059,2325,-1,2227,2061,2059,-1,59,502,399,-1,49,502,59,-1,2525,1508,1498,-1,2525,2031,1508,-1,2031,2963,2201,-1,2031,2731,2963,-1,523,215,743,-1,151,215,523,-1,2396,2171,2482,-1,2396,2030,2171,-1,3180,2755,2653,-1,2755,3180,2342,-1,2344,3438,2628,-1,3480,3438,2344,-1,2388,719,2481,-1,2388,624,719,-1,3372,2304,3363,-1,3372,2319,2304,-1,3469,3664,3633,-1,3469,3485,3664,-1,3302,2238,1666,-1,3450,2238,3302,-1,3244,2861,2394,-1,2861,3244,3030,-1,3230,3398,3480,-1,3384,3398,3230,-1,2312,2532,2898,-1,2532,2312,2658,-1,3712,2747,2426,-1,2747,3712,3475,-1,1461,1106,1521,-1,1461,1240,1106,-1,624,296,451,-1,624,462,296,-1,2241,3212,2037,-1,2241,3336,3212,-1,2314,2658,2312,-1,2314,2880,2658,-1,1118,2049,1687,-1,1118,1376,2049,-1,3208,3233,3325,-1,3233,3208,3460,-1,528,507,329,-1,1154,507,528,-1,2049,2953,2644,-1,2049,2379,2953,-1,2515,3208,3158,-1,3208,2515,2842,-1,770,507,1182,-1,770,276,507,-1,770,1059,940,-1,1059,770,1325,-1,293,738,319,-1,738,293,622,-1,738,643,834,-1,738,622,643,-1,670,1638,896,-1,1638,670,312,-1,1101,2248,2208,-1,1101,1205,2248,-1,1074,2208,1276,-1,1074,1101,2208,-1,3519,3261,1807,-1,3519,3511,3261,-1,3339,3295,3405,-1,3295,3339,3184,-1,360,2178,2131,-1,2178,360,277,-1,3513,2388,2481,-1,2388,3513,3496,-1,3227,2413,2535,-1,3227,3159,2413,-1,1608,2021,1318,-1,2322,2021,1608,-1,2794,1942,3070,-1,2794,2225,1942,-1,1233,1661,1522,-1,1265,1661,1233,-1,1266,1831,1836,-1,1831,1266,1239,-1,1455,762,1110,-1,762,1455,1294,-1,2626,2465,2699,-1,2002,2465,2626,-1,2002,2576,2538,-1,2002,2626,2576,-1,3310,3305,3452,-1,3310,3199,3305,-1,2414,1580,1706,-1,1580,2414,2525,-1,1466,634,524,-1,1466,1883,634,-1,841,1383,1382,-1,841,830,1383,-1,1874,1314,1798,-1,1314,1874,1285,-1,2531,2405,2219,-1,2531,2460,2405,-1,316,410,298,-1,316,511,410,-1,284,577,316,-1,577,284,585,-1,1737,707,1788,-1,707,1737,716,-1,62,39,64,-1,11,39,62,-1,130,716,131,-1,716,130,707,-1,464,300,261,-1,464,176,300,-1,1231,311,1161,-1,473,311,1231,-1,2714,3354,3598,-1,3354,2714,2477,-1,241,840,313,-1,847,840,241,-1,3695,2630,2835,-1,3695,3598,2630,-1,1029,2123,1813,-1,1029,1003,2123,-1,2905,2066,2995,-1,2905,1823,2066,-1,2169,3129,2921,-1,2169,2368,3129,-1,2652,3324,3019,-1,2797,3324,2652,-1,2588,3324,2797,-1,3286,2588,2797,-1,3201,2588,3286,-1,856,1176,769,-1,856,1342,1176,-1,1551,2209,1656,-1,1544,2209,1551,-1,2209,1544,1885,-1,1613,2020,1644,-1,1613,1922,2020,-1,3005,3040,3026,-1,3040,3005,2997,-1,3088,3402,3097,-1,3444,3402,3088,-1,1205,2788,1372,-1,2788,1205,2168,-1,3416,2001,2511,-1,3416,3421,2001,-1,2376,1008,2162,-1,1008,2376,865,-1,3531,2030,3444,-1,2030,3531,2171,-1,1958,3350,1894,-1,1958,3395,3350,-1,3672,3613,3636,-1,3672,3610,3613,-1,245,359,235,-1,376,359,245,-1,1721,578,1756,-1,1721,509,578,-1,750,310,699,-1,401,310,750,-1,1668,2212,2974,-1,2134,2212,1668,-1,2298,1980,2396,-1,1980,2298,1931,-1,3099,3558,3337,-1,3558,3099,3290,-1,3462,2924,2833,-1,2924,3462,3423,-1,3548,2632,2404,-1,3548,3553,2632,-1,2183,2419,2090,-1,2183,2400,2419,-1,3122,1709,3148,-1,3122,1871,1709,-1,316,794,355,-1,577,794,316,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=18 */
		private int[] getethmoid2_Geo_5_115_normalIndex_18()
		{
			int[] value = {2575,3271,3248,-1,2533,3271,2575,-1,2255,1366,2242,-1,2255,1367,1366,-1,650,1615,585,-1,650,1457,1615,-1,1815,1126,1826,-1,1815,1015,1126,-1,1402,830,840,-1,830,1402,1383,-1,2421,1236,1405,-1,1236,2421,2288,-1,1657,474,544,-1,1657,1465,474,-1,122,207,148,-1,102,207,122,-1,1933,1133,1384,-1,1133,1933,2100,-1,1451,1918,1682,-1,1451,1585,1918,-1,3162,2623,3280,-1,2521,2623,3162,-1,3159,2368,2413,-1,3159,3129,2368,-1,3026,2712,2639,-1,2712,3026,3076,-1,3491,3159,3227,-1,3521,3159,3491,-1,3271,2896,3147,-1,3063,2896,3271,-1,1707,359,1309,-1,1707,468,359,-1,1582,1381,1708,-1,1381,1582,1422,-1,410,1367,439,-1,1367,410,1366,-1,376,1309,359,-1,1309,376,1282,-1,508,925,428,-1,508,958,925,-1,1832,1809,1775,-1,1809,1832,1934,-1,2520,3170,3178,-1,2520,2894,3170,-1,2241,694,655,-1,2037,694,2241,-1,1480,1027,1427,-1,1480,902,1027,-1,3701,3273,3730,-1,3701,2995,3273,-1,2255,2836,2180,-1,2836,2255,2776,-1,1254,1935,1913,-1,1254,1321,1935,-1,2286,2575,2543,-1,2285,2575,2286,-1,2460,2633,2405,-1,2460,2322,2633,-1,1856,1239,1225,-1,1856,1831,1239,-1,551,1405,1236,-1,551,636,1405,-1,1089,1840,1227,-1,1840,1089,1546,-1,1012,1384,832,-1,1012,1449,1384,-1,2407,1626,1682,-1,2407,2096,1626,-1,591,1265,561,-1,1265,591,1272,-1,2640,2219,2332,-1,2531,2219,2640,-1,1169,1184,1189,-1,1169,1198,1184,-1,973,1189,1691,-1,973,1169,1189,-1,1340,1238,2822,-1,1340,1217,1238,-1,2276,2214,2204,-1,2276,2148,2214,-1,1719,2098,2108,-1,1719,1905,2098,-1,2445,2204,2165,-1,2445,2276,2204,-1,563,50,571,-1,563,234,50,-1,1158,1560,1429,-1,1560,1158,1426,-1,1035,950,689,-1,1052,950,1035,-1,1689,1830,1335,-1,1830,1689,1674,-1,1396,1052,1035,-1,1212,1052,1396,-1,1770,1534,1957,-1,1770,1499,1534,-1,2133,1396,1542,-1,1803,1396,2133,-1,1595,1803,2266,-1,1595,1404,1803,-1,2369,1595,2266,-1,1629,1595,2369,-1,2166,1629,2369,-1,1520,1629,2166,-1,1744,1520,2166,-1,1379,1520,1744,-1,2423,1772,2485,-1,1772,2423,1994,-1,1740,1350,1163,-1,1740,1680,1350,-1,779,1203,1160,-1,1048,1203,779,-1,949,248,686,-1,949,363,248,-1,956,1356,941,-1,956,1291,1356,-1,363,50,248,-1,363,56,50,-1,2067,1273,2335,-1,1640,1273,2067,-1,1640,1313,1273,-1,1350,2309,1291,-1,1350,1680,2309,-1,1830,2671,1727,-1,2457,2671,1830,-1,3084,2439,2529,-1,2439,3084,3080,-1,402,56,363,-1,118,56,402,-1,3080,2485,2439,-1,2485,3080,3169,-1,3232,2656,3117,-1,3232,2865,2656,-1,1675,919,1711,-1,1139,919,1675,-1,1404,1520,1200,-1,1595,1520,1404,-1,1520,1595,1629,-1,251,1042,919,-1,389,1042,251,-1,1566,907,805,-1,1653,907,1566,-1,3232,3074,3272,-1,3074,3232,3082,-1,1744,999,1160,-1,999,1744,1916,-1,3117,2660,3083,-1,3117,2656,2660,-1,2961,2364,2900,-1,2961,2386,2364,-1,327,432,723,-1,432,327,224,-1,2522,1801,2381,-1,1805,1801,2522,-1,1911,2381,1801,-1,2257,2381,1911,-1,723,394,327,-1,394,723,825,-1,3218,2386,2961,-1,2806,2386,3218,-1,1329,1710,1674,-1,1329,1700,1710,-1,998,647,899,-1,998,910,647,-1,1502,1693,1157,-1,1502,1735,1693,-1,1002,1568,1096,-1,1002,1504,1568,-1,1735,2161,1693,-1,1735,1927,2161,-1,1504,1765,1568,-1,1504,1825,1765,-1,2104,2770,2592,-1,2104,2206,2770,-1,2206,2470,2770,-1,2206,2182,2470,-1,2182,2063,2470,-1,2182,1949,2063,-1,2943,1868,1986,-1,2902,1868,2943,-1,1785,1411,1787,-1,1785,1506,1411,-1,1079,1726,1611,-1,1726,1079,1795,-1,799,1271,679,-1,1312,1271,799,-1,3660,2853,3385,-1,3660,2884,2853,-1,2397,1777,2373,-1,2397,1734,1777,-1,3061,2749,3478,-1,2749,3061,2585,-1,138,647,165,-1,138,784,647,-1,480,530,783,-1,480,165,530,-1,2397,2606,2230,-1,2397,3095,2606,-1,1392,1751,960,-1,2043,1751,1392,-1,1720,606,1778,-1,1720,690,606,-1,2043,2688,1751,-1,2738,2688,2043,-1,2391,1548,1556,-1,2391,2270,1548,-1,2799,2795,2915,-1,2799,2594,2795,-1,2676,2270,2391,-1,2676,2578,2270,-1,3260,2934,2956,-1,3260,3105,2934,-1,3492,3252,3593,-1,3252,3492,3238,-1,3391,3105,3260,-1,3391,3036,3105,-1,3252,3146,3593,-1,2989,3146,3252,-1,2786,3036,3391,-1,2786,2513,3036,-1,2989,2272,3146,-1,2306,2272,2989,-1,1752,2513,2786,-1,1752,1655,2513,-1,2306,1299,2272,-1,1501,1299,2306,-1,826,1655,1752,-1,826,860,1655,-1,1501,806,1299,-1,1111,806,1501,-1,315,826,285,-1,315,860,826,-1,806,1028,633,-1,1028,806,1111,-1,123,285,80,-1,123,315,285,-1,1028,603,633,-1,1094,603,1028,-1,161,80,77,-1,161,123,80,-1,960,1094,1392,-1,960,603,1094,-1,690,77,606,-1,690,161,77,-1,581,1884,718,-1,1884,581,1716,-1,955,367,933,-1,367,955,397,-1,3367,3586,3607,-1,3367,3308,3586,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=19 */
		private int[] getethmoid2_Geo_5_115_normalIndex_19()
		{
			int[] value = {1620,567,1548,-1,1620,924,567,-1,2703,2819,2734,-1,2703,2870,2819,-1,421,1180,951,-1,421,851,1180,-1,1623,924,1620,-1,1623,1188,924,-1,2870,2756,2819,-1,2870,3050,2756,-1,1180,1332,1547,-1,851,1332,1180,-1,1848,1063,1623,-1,1848,1330,1063,-1,1287,1547,1332,-1,1287,1545,1547,-1,169,409,756,-1,409,169,88,-1,267,205,88,-1,267,385,205,-1,3545,3375,3549,-1,3545,3109,3375,-1,2303,3155,2495,-1,2303,3109,3155,-1,1906,987,1044,-1,1886,987,1906,-1,893,335,370,-1,893,921,335,-1,3155,3440,3194,-1,3155,3476,3440,-1,1423,954,605,-1,1852,954,1423,-1,1009,256,505,-1,1009,773,256,-1,1401,1277,1198,-1,1277,1401,2541,-1,2148,1388,1979,-1,2148,1911,1388,-1,2237,2105,2194,-1,2105,2237,2080,-1,1963,2194,2105,-1,2194,1963,1835,-1,299,658,627,-1,299,320,658,-1,627,1394,1361,-1,627,658,1394,-1,2005,1901,2253,-1,2005,1804,1901,-1,2353,1603,2672,-1,2353,1730,1603,-1,2672,2634,2353,-1,2634,2672,3149,-1,3591,3370,3692,-1,3591,3446,3370,-1,2707,3149,3140,-1,2707,2634,3149,-1,2951,3296,3017,-1,2951,3200,3296,-1,1997,2281,2593,-1,2281,1997,1944,-1,2449,2951,3017,-1,2459,2951,2449,-1,1944,2025,2281,-1,2025,1944,1950,-1,1841,2459,2449,-1,1853,2459,1841,-1,1860,1275,1263,-1,1860,1863,1275,-1,1301,1790,1293,-1,1301,1821,1790,-1,1263,540,535,-1,1263,1275,540,-1,1301,854,611,-1,1301,1293,854,-1,535,320,299,-1,535,540,320,-1,1955,1997,1981,-1,1901,1997,1955,-1,1901,1944,1997,-1,1804,1944,1901,-1,1804,1950,1944,-1,1897,1950,1804,-1,1897,1857,1950,-1,1919,1857,1897,-1,1919,1910,1857,-1,1919,1943,1910,-1,1475,1364,1742,-1,1475,749,1364,-1,2726,3167,3584,-1,2593,3167,2726,-1,1435,2005,2004,-1,2005,1435,1780,-1,2804,2328,2753,-1,2563,2328,2804,-1,1954,53,1445,-1,1197,53,1954,-1,3473,2868,3457,-1,2868,3473,2804,-1,337,1132,1099,-1,337,417,1132,-1,3172,3130,3454,-1,3130,3172,2969,-1,2053,2083,2073,-1,2053,2050,2083,-1,1150,1998,1968,-1,1150,1099,1998,-1,2969,2080,2041,-1,2969,2649,2080,-1,2073,3204,2053,-1,2073,3044,3204,-1,3611,3291,3436,-1,3611,3479,3291,-1,1862,914,1115,-1,914,1862,1873,-1,798,663,503,-1,798,948,663,-1,3604,3205,3269,-1,3604,3518,3205,-1,1533,2704,1648,-1,2748,2704,1533,-1,2294,1418,1183,-1,1418,2294,2308,-1,2694,1628,2790,-1,2694,1565,1628,-1,3572,3518,3604,-1,3445,3518,3572,-1,3054,2813,2654,-1,3054,3294,2813,-1,415,189,219,-1,415,412,189,-1,3186,2436,2737,-1,3186,2604,2436,-1,687,1538,798,-1,1438,1538,687,-1,914,103,292,-1,103,914,846,-1,3153,3294,3054,-1,3153,3436,3294,-1,3479,3269,3205,-1,3611,3269,3479,-1,2753,3307,2817,-1,3307,2753,3151,-1,2328,1543,2702,-1,2328,1589,1543,-1,386,1054,417,-1,513,1054,386,-1,1902,2011,1229,-1,2428,2011,1902,-1,640,1618,1242,-1,640,1458,1618,-1,301,186,84,-1,301,226,186,-1,976,1353,618,-1,1353,976,1204,-1,1343,976,920,-1,1204,976,1343,-1,1652,2384,2370,-1,1652,1834,2384,-1,3197,3217,3488,-1,3135,3217,3197,-1,2101,2346,2354,-1,2101,2094,2346,-1,3488,2383,3197,-1,3488,2363,2383,-1,1771,1403,1713,-1,1771,1598,1403,-1,927,1218,1331,-1,1218,927,755,-1,1470,1878,1458,-1,1470,1849,1878,-1,1951,1878,1849,-1,2046,1878,1951,-1,2046,1893,1878,-1,2121,1893,2046,-1,2121,1880,1893,-1,2094,1880,2121,-1,2094,1966,1880,-1,2101,1966,2094,-1,2101,2077,1966,-1,2077,2101,2127,-1,2443,2224,2565,-1,2443,1767,2224,-1,1937,2453,2280,-1,2007,2453,1937,-1,852,323,609,-1,598,323,852,-1,2763,1767,2443,-1,2763,1895,1767,-1,2033,1473,1941,-1,1583,1473,2033,-1,1408,789,1485,-1,362,789,1408,-1,2341,2862,3023,-1,2341,2377,2862,-1,1763,1948,2311,-1,1602,1948,1763,-1,2958,3164,2793,-1,2958,3430,3164,-1,3699,3087,3689,-1,3699,3059,3087,-1,2151,1539,1347,-1,2151,2173,1539,-1,733,1539,1071,-1,1347,1539,733,-1,307,733,121,-1,496,733,307,-1,908,1483,1412,-1,908,1137,1483,-1,3039,3651,3699,-1,3023,3651,3039,-1,845,324,610,-1,324,845,753,-1,1820,1104,1460,-1,1104,1820,1829,-1,651,233,222,-1,651,498,233,-1,1337,1733,1590,-1,1669,1733,1337,-1,726,275,342,-1,726,676,275,-1,1768,882,1051,-1,1768,1614,882,-1,1241,652,685,-1,1241,1055,652,-1,2608,1768,2782,-1,1768,2608,1614,-1,2150,2406,2195,-1,2150,2240,2406,-1,2830,2039,2016,-1,2830,2850,2039,-1,3175,2830,3142,-1,2830,3175,2850,-1,2205,2149,2427,-1,2205,2174,2149,-1,2568,2141,2068,-1,2866,2141,2568,-1,1750,1259,2075,-1,1750,1290,1259,-1,1650,1745,1527,-1,2047,1745,1650,-1,1527,1681,1170,-1,1745,1681,1527,-1,791,1244,1207,-1,791,844,1244,-1,1681,1216,1170,-1,1681,1659,1216,-1,1257,1527,1000,-1,1257,1650,1527,-1,2406,2705,2779,-1,2705,2406,2438,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=20 */
		private int[] getethmoid2_Geo_5_115_normalIndex_20()
		{
			int[] value = {1337,1214,820,-1,1214,1337,1590,-1,2051,1290,1750,-1,1290,2051,1349,-1,564,214,319,-1,564,407,214,-1,3569,3451,3512,-1,3477,3451,3569,-1,2496,2932,2717,-1,2496,2986,2932,-1,418,318,420,-1,254,318,418,-1,155,702,666,-1,244,702,155,-1,970,1509,780,-1,970,1576,1509,-1,1442,731,704,-1,1442,1358,731,-1,1491,2437,2476,-1,1529,2437,1491,-1,1983,1414,2199,-1,1414,1983,1696,-1,3045,2435,3173,-1,2435,3045,2300,-1,3091,3634,3209,-1,3091,3422,3634,-1,2277,2809,3046,-1,2809,2277,2186,-1,3353,3568,3443,-1,3568,3353,3399,-1,3251,3118,3414,-1,3251,2983,3118,-1,2927,2292,3055,-1,2927,2274,2292,-1,2882,3145,3203,-1,2882,2857,3145,-1,2638,1450,1486,-1,2458,1450,2638,-1,1486,534,374,-1,1450,534,1486,-1,1694,1839,1093,-1,1839,1694,1903,-1,254,850,594,-1,254,418,850,-1,396,835,484,-1,835,396,959,-1,3417,2831,3196,-1,2831,3417,2812,-1,1741,2401,1541,-1,2401,1741,2590,-1,2988,3710,3285,-1,3352,3710,2988,-1,1159,396,863,-1,1159,959,396,-1,3250,2812,3417,-1,2826,2812,3250,-1,2596,2539,2589,-1,2596,2859,2539,-1,1487,1153,1019,-1,1487,1436,1153,-1,2851,3493,3364,-1,3493,2851,3270,-1,2537,2957,2962,-1,2537,2432,2957,-1,2170,1454,1047,-1,1454,2170,1982,-1,294,1047,43,-1,294,916,1047,-1,3552,2971,3430,-1,3552,3062,2971,-1,1882,1505,1593,-1,1505,1882,1643,-1,2084,2446,1864,-1,2446,2084,2527,-1,1651,1173,1643,-1,1252,1173,1651,-1,1252,1907,1391,-1,1907,1252,1651,-1,742,1391,1416,-1,742,675,1391,-1,3077,3654,3259,-1,3654,3077,3588,-1,1559,2185,1588,-1,1559,2012,2185,-1,1416,720,742,-1,1352,720,1416,-1,3259,3520,2948,-1,3520,3259,3654,-1,1559,2198,2012,-1,1559,1368,2198,-1,2910,2382,2984,-1,2910,2156,2382,-1,849,1489,488,-1,849,1557,1489,-1,2156,1664,1440,-1,2156,2207,1664,-1,2613,3333,2994,-1,2613,2981,3333,-1,3521,2504,3168,-1,3521,3491,2504,-1,2645,1842,2824,-1,1842,2645,1800,-1,2504,1625,2952,-1,1457,1625,2504,-1,2492,2997,3005,-1,2997,2492,2130,-1,2609,1635,2952,-1,1635,2609,2637,-1,1102,1116,1131,-1,1102,1211,1116,-1,962,2052,1600,-1,962,625,2052,-1,2052,886,2239,-1,625,886,2052,-1,1557,646,1194,-1,849,646,1557,-1,3103,2646,2517,-1,3103,2771,2646,-1,751,1228,1193,-1,1228,751,801,-1,646,962,961,-1,962,646,751,-1,1211,1784,2646,-1,1211,1102,1784,-1,1670,2130,1607,-1,1670,2188,2130,-1,642,2188,1670,-1,869,1058,2188,-1,1989,1058,869,-1,2107,822,2146,-1,824,822,2107,-1,842,992,514,-1,1081,992,842,-1,2886,2551,2327,-1,2551,2886,3316,-1,1113,372,706,-1,1113,766,372,-1,2785,1421,1739,-1,2785,2689,1421,-1,512,36,225,-1,659,36,512,-1,2959,3464,3161,-1,3464,2959,3160,-1,710,981,898,-1,710,548,981,-1,3160,2847,3292,-1,2847,3160,2959,-1,1175,1407,1524,-1,1407,1175,1172,-1,992,1151,1039,-1,992,1081,1151,-1,741,1375,804,-1,1375,741,898,-1,243,1357,1323,-1,243,210,1357,-1,290,66,289,-1,290,99,66,-1,717,861,467,-1,717,1030,861,-1,2275,1902,1591,-1,2275,2473,1902,-1,377,641,1302,-1,383,641,377,-1,1354,339,1434,-1,1354,334,339,-1,1802,1434,2009,-1,1434,1802,1354,-1,2336,3335,3242,-1,2569,3335,2336,-1,3190,2996,3362,-1,2972,2996,3190,-1,3362,2745,2825,-1,2996,2745,3362,-1,1306,546,273,-1,546,1306,993,-1,1526,273,725,-1,273,1526,1306,-1,1647,1704,1084,-1,1930,1704,1647,-1,1398,639,862,-1,639,1398,1086,-1,1084,1591,748,-1,1704,1591,1084,-1,1302,862,537,-1,862,1302,1398,-1,164,377,537,-1,377,164,107,-1,98,424,383,-1,98,72,424,-1,108,590,257,-1,827,590,108,-1,3078,2918,3523,-1,2701,2918,3078,-1,598,274,323,-1,598,599,274,-1,1895,2893,2132,-1,2763,2893,1895,-1,1876,2434,1861,-1,1876,2483,2434,-1,1246,935,857,-1,1246,1178,935,-1,2991,2494,2845,-1,2483,2494,2991,-1,351,1145,816,-1,351,644,1145,-1,1581,1178,1977,-1,1581,1067,1178,-1,1952,3032,2845,-1,1346,3032,1952,-1,1500,1145,1268,-1,1500,1446,1145,-1,2216,1562,2175,-1,2216,1526,1562,-1,848,1317,1186,-1,1317,848,895,-1,1122,1172,1039,-1,1122,1186,1172,-1,2175,2454,2216,-1,2175,2307,2454,-1,1407,1186,1317,-1,1186,1407,1172,-1,2085,1222,1624,-1,1232,1222,2085,-1,1123,1030,1420,-1,1123,861,1030,-1,810,1843,827,-1,810,1952,1843,-1,72,1164,271,-1,72,905,1164,-1,433,866,164,-1,433,1268,866,-1,3430,2843,3164,-1,2843,3430,2971,-1,2057,2843,2971,-1,2064,2843,2057,-1,171,126,975,-1,354,126,171,-1,2784,2360,1338,-1,2784,3185,2360,-1,2784,2807,3185,-1,2784,2641,2807,-1,2420,3327,2139,-1,3327,2420,3120,-1,490,195,199,-1,582,195,490,-1,543,208,51,-1,1191,208,543,-1,398,483,253,-1,483,398,442,-1,1251,1105,1121,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=21 */
		private int[] getethmoid2_Geo_5_115_normalIndex_21()
		{
			int[] value = {1251,1185,1105,-1,470,429,485,-1,331,429,470,-1,200,95,191,-1,178,95,200,-1,2746,881,2796,-1,746,881,2746,-1,2667,645,668,-1,645,2667,2690,-1,724,2560,771,-1,724,2764,2560,-1,2042,1149,1827,-1,2019,1149,2042,-1,358,227,1065,-1,246,227,358,-1,135,54,73,-1,135,78,54,-1,3,71,9,-1,3,46,71,-1,1762,1286,1146,-1,1286,1762,1764,-1,3472,3221,3544,-1,3221,3472,3348,-1,2904,1917,2558,-1,1917,2904,2142,-1,2674,715,2678,-1,744,715,2674,-1,2713,623,734,-1,623,2713,2773,-1,188,249,41,-1,188,260,249,-1,76,94,68,-1,94,76,32,-1,13,40,68,-1,13,52,40,-1,162,75,35,-1,75,162,166,-1,303,48,456,-1,48,303,93,-1,437,1334,430,-1,1334,437,1417,-1,2920,3641,3717,-1,3641,2920,3042,-1,366,1310,388,-1,366,967,1310,-1,430,1069,419,-1,430,1334,1069,-1,1417,3378,1334,-1,3419,3378,1417,-1,134,2,83,-1,134,16,2,-1,437,268,936,-1,308,268,437,-1,1034,2642,1013,-1,1034,2725,2642,-1,2678,3669,3673,-1,3669,2678,2805,-1,645,58,668,-1,645,69,58,-1,3085,3183,2929,-1,3085,3383,3183,-1,2665,1060,2939,-1,2665,953,1060,-1,3393,2665,2939,-1,2665,3393,3102,-1,493,10,744,-1,10,493,27,-1,876,912,1036,-1,912,876,974,-1,3676,3646,3694,-1,3676,3642,3646,-1,3638,3582,3632,-1,3638,3578,3582,-1,3383,3102,3393,-1,3102,3383,3085,-1,17,159,0,-1,187,159,17,-1,270,112,308,-1,81,112,270,-1,302,326,423,-1,302,209,326,-1,628,481,434,-1,649,481,628,-1,469,48,595,-1,469,201,48,-1,280,440,247,-1,280,447,440,-1,2228,677,2284,-1,456,677,2228,-1,515,792,541,-1,515,280,792,-1,63,0,73,-1,63,17,0,-1,3691,3515,3564,-1,3691,3622,3515,-1,3670,3510,3474,-1,3670,3697,3510,-1,3243,3069,3300,-1,3243,3226,3069,-1,3727,3716,3724,-1,3727,3703,3716,-1,3577,3408,3561,-1,3577,3358,3408,-1,3510,3277,3407,-1,3510,3559,3277,-1,3726,3724,3714,-1,3726,3727,3724,-1,3725,3714,3721,-1,3725,3726,3714,-1,3640,2887,2690,-1,3640,3649,2887,-1,3705,3722,3563,-1,3705,3620,3722,-1,3434,3225,3415,-1,3434,3206,3225,-1,3365,3081,3326,-1,3081,3365,3038,-1,3650,3698,3706,-1,3650,3639,3698,-1,3726,3635,3648,-1,3635,3726,3725,-1,3472,3347,3348,-1,3508,3347,3472,-1,1474,2463,1992,-1,2564,2463,1474,-1,3543,3328,3497,-1,3435,3328,3543,-1,3544,3666,3687,-1,3560,3666,3544,-1,3587,3517,3427,-1,3587,3596,3517,-1,2501,1992,2463,-1,2501,3338,1992,-1,3366,3056,3034,-1,3366,3456,3056,-1,3661,3703,3727,-1,3661,3665,3703,-1,3649,3729,3720,-1,3649,3640,3729,-1,3679,3708,3668,-1,3679,3675,3708,-1,2117,3530,2058,-1,2117,3179,3530,-1,3189,3198,3525,-1,3189,2883,3198,-1,3667,3625,3620,-1,3625,3667,3581,-1,3722,3682,3690,-1,3722,3625,3682,-1,3703,3709,3716,-1,3703,3723,3709,-1,3648,2667,2631,-1,3648,3635,2667,-1,3622,3706,3698,-1,3691,3706,3622,-1,3697,3720,3729,-1,3670,3720,3697,-1,3474,3622,3670,-1,3474,3515,3622,-1,3559,3231,3277,-1,3561,3231,3559,-1,2544,3716,3709,-1,3716,2544,3138,-1,3535,2058,3530,-1,3025,2058,3535,-1,3684,3705,3723,-1,3705,3684,3609,-1,3410,3564,3515,-1,3410,3539,3564,-1,2117,2387,3344,-1,2117,1621,2387,-1,1014,2769,1162,-1,1014,2362,2769,-1,74,146,116,-1,106,146,74,-1,1743,2620,2228,-1,2620,1743,1797,-1,116,145,81,-1,145,116,146,-1,793,2284,677,-1,2409,2284,793,-1,175,268,168,-1,175,266,268,-1,160,116,279,-1,74,116,160,-1,440,423,326,-1,440,533,423,-1,193,443,300,-1,193,181,443,-1,3468,3678,3681,-1,3678,3468,3554,-1,3700,3673,3669,-1,3673,3700,3686,-1,79,19,91,-1,79,44,19,-1,264,631,876,-1,631,264,338,-1,715,6,767,-1,6,715,33,-1,3143,1523,1850,-1,1523,3143,2696,-1,3718,2547,2447,-1,2547,3718,3680,-1,1564,2929,1715,-1,2929,1564,2768,-1,923,1757,809,-1,1757,923,1715,-1,2011,2336,1671,-1,2569,2336,2011,-1,78,680,54,-1,680,78,435,-1,71,881,34,-1,881,71,986,-1,2773,3642,3676,-1,3642,2773,2713,-1,3578,2581,2674,-1,3578,3638,2581,-1,1310,2920,1208,-1,1310,3042,2920,-1,5,92,20,-1,110,92,5,-1,174,283,192,-1,174,218,283,-1,693,1187,764,-1,1187,693,1076,-1,1013,343,1034,-1,343,1013,269,-1,361,1034,343,-1,361,1208,1034,-1,3711,2642,2725,-1,3711,3659,2642,-1,2697,3551,3570,-1,3551,2697,2681,-1,693,260,465,-1,570,260,693,-1,64,76,62,-1,76,64,70,-1,29,57,26,-1,29,14,57,-1,16,75,2,-1,16,70,75,-1,218,29,283,-1,218,22,29,-1,771,28,724,-1,28,771,60,-1,2773,767,623,-1,767,2773,2805,-1,2360,375,1338,-1,2360,1046,375,-1,3587,2279,2345,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=22 */
		private int[] getethmoid2_Geo_5_115_normalIndex_22()
		{
			int[] value = {3555,2279,3587,-1,2834,2092,2019,-1,2849,2092,2834,-1,7,37,34,-1,44,37,7,-1,63,60,106,-1,63,28,60,-1,174,27,249,-1,27,174,10,-1,494,2735,595,-1,494,2777,2735,-1,2887,680,435,-1,680,2887,2685,-1,800,2631,588,-1,800,2741,2631,-1,2950,986,763,-1,2950,2930,986,-1,2618,969,469,-1,2729,969,2618,-1,398,51,442,-1,543,51,398,-1,778,836,1006,-1,836,778,692,-1,499,638,478,-1,485,638,499,-1,703,538,695,-1,703,1016,538,-1,3601,2197,2798,-1,3601,3111,2197,-1,2448,3120,2420,-1,2448,2955,3120,-1,3111,3239,2767,-1,3111,3601,3239,-1,926,1597,1049,-1,1597,926,1574,-1,354,332,478,-1,332,354,171,-1,1441,2118,1147,-1,1441,2125,2118,-1,1347,2057,2151,-1,1077,2057,1347,-1,2641,2418,2802,-1,2395,2418,2641,-1,586,98,107,-1,98,586,672,-1,252,1346,196,-1,252,1344,1346,-1,443,1292,717,-1,443,1083,1292,-1,1433,1420,1292,-1,1433,422,1420,-1,1057,1845,1810,-1,1845,1057,995,-1,1792,1995,2316,-1,1567,1995,1792,-1,1988,1583,2033,-1,1988,1592,1583,-1,739,1201,732,-1,1122,1201,739,-1,1995,993,1306,-1,1995,1567,993,-1,1120,1988,1453,-1,1592,1988,1120,-1,2356,1164,1581,-1,1164,2356,1344,-1,2893,3032,2356,-1,3523,3032,2893,-1,935,729,671,-1,935,891,729,-1,1224,2029,1876,-1,1224,1446,2029,-1,599,351,274,-1,599,671,351,-1,857,1152,1246,-1,1152,857,803,-1,1156,141,286,-1,141,1156,1179,-1,325,164,537,-1,433,164,325,-1,339,196,387,-1,252,196,339,-1,196,109,387,-1,109,196,810,-1,1120,1463,1202,-1,1463,1120,1453,-1,785,257,823,-1,257,785,255,-1,1463,1562,1386,-1,1463,1453,1562,-1,823,1234,785,-1,1234,823,576,-1,1386,1526,725,-1,1386,1562,1526,-1,2269,1647,2142,-1,2269,1930,1647,-1,2825,2142,2904,-1,2825,2269,2142,-1,2085,2009,2500,-1,2009,2085,1802,-1,2818,2972,3190,-1,2878,2972,2818,-1,2732,2818,2428,-1,2732,2878,2818,-1,732,1202,608,-1,1202,732,1120,-1,717,300,443,-1,717,408,300,-1,1948,1323,2349,-1,968,1323,1948,-1,243,190,289,-1,190,243,89,-1,2778,869,839,-1,3292,869,2778,-1,574,291,802,-1,291,574,96,-1,2316,2027,1792,-1,2316,2489,2027,-1,1024,822,740,-1,822,1024,2146,-1,2598,997,2190,-1,997,2598,1808,-1,1631,2778,1375,-1,2778,1631,2719,-1,2689,1631,1421,-1,2689,2719,1631,-1,1808,2727,1865,-1,2727,1808,2598,-1,766,548,372,-1,766,981,548,-1,1865,2330,1519,-1,2330,1865,2727,-1,2027,2785,1739,-1,2027,2489,2785,-1,1519,1941,1473,-1,1941,1519,2330,-1,1524,706,1175,-1,1524,1113,706,-1,802,2548,2706,-1,802,517,2548,-1,574,2706,1921,-1,2706,574,802,-1,2750,2999,3357,-1,2999,2750,2679,-1,1530,990,1072,-1,990,1530,1194,-1,1245,2207,1784,-1,2207,1245,1664,-1,2295,1530,2088,-1,2018,1530,2295,-1,946,3133,3029,-1,1087,1679,3133,-1,990,1004,1010,-1,990,961,1004,-1,1600,961,962,-1,961,1600,1004,-1,2637,2410,2999,-1,2410,2637,2609,-1,2188,2107,3268,-1,2188,1058,2107,-1,2018,2647,2302,-1,2018,2295,2647,-1,3103,2910,3595,-1,3103,2517,2910,-1,873,801,305,-1,873,1228,801,-1,2647,3276,2800,-1,2647,2994,3276,-1,2647,2198,2302,-1,2198,2647,2800,-1,1352,572,720,-1,1352,1494,572,-1,2261,2010,2584,-1,2261,1753,2010,-1,906,237,111,-1,906,1007,237,-1,3483,2661,3297,-1,2661,3483,2858,-1,2584,1907,2452,-1,2584,2010,1907,-1,2164,3077,2452,-1,3077,2164,2816,-1,675,745,772,-1,675,237,745,-1,3461,3447,3621,-1,3461,3114,3447,-1,2498,2992,2527,-1,3020,2992,2498,-1,2823,3447,3009,-1,2823,2992,3447,-1,1173,441,1037,-1,441,1173,682,-1,3018,3552,2968,-1,3018,3689,3552,-1,3493,3001,2962,-1,3409,3001,3493,-1,2339,2793,2324,-1,2339,2958,2793,-1,1068,1975,916,-1,1068,1864,1975,-1,2170,2432,2537,-1,2170,1975,2432,-1,3364,2962,2957,-1,2962,3364,3493,-1,1511,1436,1766,-1,1511,1593,1436,-1,1062,521,1091,-1,1062,265,521,-1,2590,1748,2416,-1,2590,1741,1748,-1,3285,3470,3108,-1,3470,3285,3710,-1,265,814,521,-1,529,814,265,-1,1554,1093,818,-1,1093,1554,1694,-1,232,374,534,-1,232,31,374,-1,850,1692,594,-1,1692,850,1896,-1,1896,2882,1692,-1,2882,1896,2857,-1,2643,2274,2927,-1,2643,2138,2274,-1,2983,2638,3118,-1,2983,2458,2638,-1,3145,3443,3203,-1,3443,3145,3353,-1,3055,2277,3046,-1,3055,2292,2277,-1,3422,3414,3634,-1,3422,3251,3414,-1,3399,3173,3568,-1,3173,3399,3045,-1,2186,2199,2809,-1,2199,2186,1983,-1,2437,3209,2476,-1,2437,3091,3209,-1,2300,1442,2435,-1,1442,2300,1358,-1,1414,1576,970,-1,1414,1696,1576,-1,666,1529,1491,-1,702,1529,666,-1,704,420,318,-1,704,731,420,-1,780,1554,818,-1,780,1509,1554,-1,31,244,155,-1,232,244,31,-1,2736,3127,3154,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=23 */
		private int[] getethmoid2_Geo_5_115_normalIndex_23()
		{
			int[] value = {2736,2932,3127,-1,3191,2970,3647,-1,2970,3191,3057,-1,2491,3219,2782,-1,3219,2491,2923,-1,1725,2195,2472,-1,1725,1875,2195,-1,2427,2167,2872,-1,2167,2427,2149,-1,2047,1681,1745,-1,2047,1659,1681,-1,2174,1659,2047,-1,2174,1669,1659,-1,2205,1669,2174,-1,2205,1733,1669,-1,2235,1733,2205,-1,2235,1923,1733,-1,2240,1923,2235,-1,1923,2240,2150,-1,1085,557,1117,-1,1085,1107,557,-1,1124,775,664,-1,1237,775,1124,-1,1259,1237,1124,-1,1290,1237,1259,-1,1409,2141,1360,-1,2141,1409,2068,-1,2174,1650,2149,-1,2174,2047,1650,-1,3037,2099,2987,-1,3037,1993,2099,-1,2987,3594,3037,-1,3594,2987,3382,-1,2235,2427,2438,-1,2235,2205,2427,-1,2240,2438,2406,-1,2240,2235,2438,-1,3165,2782,3219,-1,2782,3165,2608,-1,2293,1532,2602,-1,1532,2293,1399,-1,1875,2150,2195,-1,1923,2150,1875,-1,676,1532,1399,-1,726,1532,676,-1,1590,1923,1875,-1,1733,1923,1590,-1,1051,498,651,-1,1051,882,498,-1,342,137,156,-1,342,275,137,-1,1216,1669,1337,-1,1659,1669,1216,-1,1516,2341,2315,-1,1478,2341,1516,-1,3089,2144,3059,-1,3089,2076,2144,-1,1602,1460,1210,-1,1763,1460,1602,-1,1460,1763,1820,-1,1071,753,522,-1,1071,1137,753,-1,1412,966,908,-1,1412,1315,966,-1,2940,2076,3089,-1,2076,2940,1812,-1,1820,2311,2418,-1,1763,2311,1820,-1,3018,3699,3689,-1,3018,3039,3699,-1,2268,2968,2287,-1,2268,3018,2968,-1,2287,1485,2268,-1,1408,1485,2287,-1,777,324,438,-1,324,777,610,-1,2454,2327,2551,-1,2307,2327,2454,-1,795,1179,1397,-1,141,1179,795,-1,1380,1937,1833,-1,1937,1380,1397,-1,1389,1336,1447,-1,1389,996,1336,-1,640,755,927,-1,755,640,306,-1,1369,2181,1552,-1,2072,2181,1369,-1,2046,1688,1961,-1,2046,1951,1688,-1,3213,2392,3540,-1,3213,2814,2392,-1,2251,2101,2354,-1,2251,2127,2101,-1,2213,2251,2687,-1,2213,2120,2251,-1,2006,2120,2213,-1,2006,1929,2120,-1,1729,1929,2006,-1,1729,1699,1929,-1,1618,1729,1242,-1,1618,1699,1729,-1,520,573,306,-1,573,520,461,-1,1434,518,1671,-1,1434,387,518,-1,2252,3283,3332,-1,3283,2252,1646,-1,3457,3537,3473,-1,3457,3454,3537,-1,1717,994,580,-1,994,1717,1978,-1,3144,2417,2917,-1,2557,2417,3144,-1,727,663,584,-1,663,727,504,-1,2673,1838,1873,-1,1838,2673,2579,-1,412,317,189,-1,412,503,317,-1,3436,3186,3294,-1,3436,3291,3186,-1,1438,942,1722,-1,1438,687,942,-1,1881,2579,2361,-1,1881,1838,2579,-1,262,179,278,-1,262,127,179,-1,2790,1648,2704,-1,1628,1648,2790,-1,2308,1387,1418,-1,2308,2177,1387,-1,348,614,278,-1,683,614,348,-1,3193,3572,3403,-1,3572,3193,3445,-1,1377,2177,1855,-1,1377,1387,2177,-1,1538,2748,1533,-1,2669,2748,1538,-1,317,630,292,-1,317,504,630,-1,3144,2673,2557,-1,2673,3144,3153,-1,3130,2028,2032,-1,3130,2969,2028,-1,2044,2126,2097,-1,2044,1308,2126,-1,2105,1339,1963,-1,2105,1962,1339,-1,1400,2649,2752,-1,2649,1400,1962,-1,3537,3044,3332,-1,3044,3537,3204,-1,1150,336,206,-1,1339,336,1150,-1,3283,2040,2563,-1,3283,1646,2040,-1,2398,3247,2780,-1,2398,2860,3247,-1,2566,2868,2817,-1,2780,2868,2566,-1,2040,1138,1589,-1,2040,1119,1138,-1,2253,3237,2601,-1,2552,3237,2253,-1,2281,1928,2480,-1,2025,1928,2281,-1,536,1535,867,-1,1535,536,1424,-1,170,708,516,-1,170,559,708,-1,21,516,400,-1,170,516,21,-1,1475,1943,1424,-1,1475,1910,1943,-1,400,1168,1195,-1,516,1168,400,-1,1742,1910,1475,-1,1742,1857,1910,-1,1195,1853,1841,-1,1168,1853,1195,-1,1790,2226,2371,-1,1821,2226,1790,-1,2488,1860,2526,-1,1860,2488,1863,-1,2371,2546,2863,-1,2226,2546,2371,-1,3234,2526,3303,-1,2526,3234,2488,-1,2546,3140,2863,-1,2546,2707,3140,-1,1981,2593,2726,-1,2593,1981,1997,-1,3200,3309,3296,-1,3200,3299,3309,-1,2552,1981,2726,-1,2552,1955,1981,-1,2253,1955,2552,-1,2253,1901,1955,-1,1974,2811,1973,-1,2811,1974,2610,-1,1394,1973,1361,-1,1973,1394,1974,-1,1177,448,446,-1,1140,448,1177,-1,1919,1780,1535,-1,1780,1919,1897,-1,446,170,21,-1,448,170,446,-1,1943,1535,1424,-1,1535,1943,1919,-1,2041,2237,2220,-1,2080,2237,2041,-1,1940,1991,1970,-1,1940,1998,1991,-1,2035,2097,2083,-1,2097,2035,2044,-1,2069,2806,2466,-1,2069,1723,2806,-1,825,1905,1719,-1,1905,825,1373,-1,1261,605,1056,-1,1261,1423,605,-1,82,369,404,-1,82,143,369,-1,3150,2854,2290,-1,3287,2854,3150,-1,113,404,381,-1,113,82,404,-1,3476,3109,3545,-1,3109,3476,3155,-1,139,381,346,-1,139,113,381,-1,2761,3211,2680,-1,3211,2761,3289,-1,101,346,238,-1,101,139,346,-1,1307,458,1270,-1,409,458,1307,-1,2229,3131,3024,-1,3131,2229,2179,-1,971,1141,1080,-1,971,1082,1141,-1,1908,1969,2611,-1,1908,1976,1969,-1,1848,2664,1912,-1,2664,1848,2355,-1,1080,228,185,-1,1080,1141,228,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=24 */
		private int[] getethmoid2_Geo_5_115_normalIndex_24()
		{
			int[] value = {1695,2611,2412,-1,1695,1908,2611,-1,2270,2664,2355,-1,2578,2664,2270,-1,2594,2844,2795,-1,2540,2844,2594,-1,2964,1904,1888,-1,2964,3016,1904,-1,217,231,184,-1,231,217,197,-1,567,177,709,-1,567,185,177,-1,236,581,197,-1,722,581,236,-1,185,136,177,-1,185,228,136,-1,287,197,217,-1,236,197,287,-1,228,365,136,-1,228,421,365,-1,472,217,397,-1,287,217,472,-1,421,929,365,-1,421,951,929,-1,1045,397,955,-1,472,397,1045,-1,929,1695,1578,-1,929,951,1695,-1,955,2048,1045,-1,955,1904,2048,-1,1578,2412,2267,-1,1578,1695,2412,-1,3016,2048,1904,-1,2048,3016,3075,-1,2267,2703,2650,-1,2267,2412,2703,-1,3586,3075,3016,-1,3075,3586,3616,-1,2650,2734,2760,-1,2650,2703,2734,-1,3308,3616,3586,-1,3616,3308,3386,-1,2760,2578,2676,-1,2760,2734,2578,-1,3121,3238,3492,-1,3238,3121,3064,-1,2956,2721,2874,-1,2956,2934,2721,-1,2688,3064,3121,-1,3064,2688,2738,-1,1884,2594,2799,-1,1884,1716,2594,-1,1548,709,1556,-1,1548,567,709,-1,722,1716,581,-1,722,1685,1716,-1,1700,1199,1734,-1,1329,1199,1700,-1,3643,1658,2385,-1,3643,3478,1658,-1,530,1326,1199,-1,530,910,1326,-1,1779,1079,900,-1,1779,1795,1079,-1,2938,3643,3095,-1,3643,2938,3220,-1,1327,799,1221,-1,1109,799,1327,-1,1550,1430,1109,-1,1642,1430,1550,-1,1949,1550,2063,-1,1949,1642,1550,-1,2979,2869,3389,-1,2979,2499,2869,-1,2897,3389,3385,-1,2897,2979,3389,-1,2550,1965,2740,-1,1965,2550,2218,-1,2161,2104,2592,-1,1927,2104,2161,-1,1448,2000,1806,-1,1479,2000,1448,-1,1514,1413,1097,-1,1514,1724,1413,-1,883,1479,1448,-1,913,1479,883,-1,413,1157,913,-1,796,1157,413,-1,679,1333,796,-1,1271,1333,679,-1,1674,783,1329,-1,1674,1634,783,-1,1249,1723,1373,-1,1249,1746,1723,-1,436,1388,1112,-1,1388,436,662,-1,2772,3288,2973,-1,3387,3288,2772,-1,389,1112,1042,-1,389,436,1112,-1,3272,2973,3288,-1,3074,2973,3272,-1,569,790,686,-1,790,569,547,-1,2900,2329,2865,-1,2900,2364,2329,-1,364,224,149,-1,432,224,364,-1,1805,2474,1711,-1,1805,2522,2474,-1,1048,950,1200,-1,911,950,1048,-1,950,911,880,-1,547,251,790,-1,149,251,547,-1,1127,1703,1772,-1,1127,1031,1703,-1,445,1335,1196,-1,1335,445,776,-1,1703,949,1610,-1,1031,949,1703,-1,3334,3626,3574,-1,3626,3334,3235,-1,2309,2335,1291,-1,2309,2375,2335,-1,2309,2367,2375,-1,1273,1291,2335,-1,1273,1356,1291,-1,471,333,234,-1,471,519,333,-1,519,569,333,-1,519,779,569,-1,1223,956,1026,-1,1223,1163,956,-1,2402,1899,2528,-1,1899,2402,1740,-1,3083,2976,3392,-1,2660,2976,3083,-1,3392,2848,3264,-1,2976,2848,3392,-1,2067,2518,1957,-1,2518,2067,2335,-1,1534,1587,1957,-1,1534,1553,1587,-1,1727,1128,1196,-1,1542,1128,1727,-1,1426,1553,1560,-1,1553,1426,1587,-1,1128,571,1196,-1,1128,563,571,-1,950,471,689,-1,950,880,471,-1,3093,2062,2466,-1,2062,3093,2114,-1,1537,2159,1979,-1,2159,1537,2136,-1,1905,2089,2098,-1,1905,2069,2089,-1,1277,2837,2838,-1,1277,1284,2837,-1,1676,829,1796,-1,1676,1056,829,-1,1217,1226,1238,-1,1217,1261,1226,-1,3253,2320,3567,-1,2320,3253,2359,-1,838,1451,673,-1,1451,838,1585,-1,487,1233,937,-1,487,532,1233,-1,1235,1619,938,-1,1619,1235,1738,-1,1465,2516,2095,-1,1465,1657,2516,-1,1250,1939,2055,-1,1250,1219,1939,-1,2285,2533,2575,-1,2285,2283,2533,-1,2535,2061,2227,-1,2535,2413,2061,-1,2169,1321,1617,-1,2169,1935,1321,-1,2258,2715,2357,-1,2258,2659,2715,-1,2928,2506,2211,-1,2928,2876,2506,-1,621,2319,554,-1,2319,621,2304,-1,1427,2365,1728,-1,2365,1427,2506,-1,983,667,1015,-1,983,550,667,-1,579,1525,511,-1,579,1472,1525,-1,1253,1319,1304,-1,1319,1253,1300,-1,1444,1972,1415,-1,1444,2071,1972,-1,3214,3341,3441,-1,3248,3341,3214,-1,2867,3076,3340,-1,2867,2712,3076,-1,3298,2635,2856,-1,2635,3298,3240,-1,1831,2635,2587,-1,2635,1831,1856,-1,2225,3003,2378,-1,2794,3003,2225,-1,2693,2209,2612,-1,2693,2256,2209,-1,1522,937,1233,-1,1522,1324,937,-1,750,2855,812,-1,750,2103,2855,-1,1721,544,509,-1,544,1721,1657,-1,3166,1874,3426,-1,3166,1466,1874,-1,728,1498,786,-1,1580,1498,728,-1,925,1788,707,-1,925,1731,1788,-1,2891,1870,1707,-1,2942,1870,2891,-1,2535,3214,3227,-1,2535,2543,3214,-1,284,242,288,-1,284,298,242,-1,2556,1612,1594,-1,2556,2490,1612,-1,355,511,316,-1,355,579,511,-1,889,1609,2262,-1,889,774,1609,-1,1754,1604,1644,-1,1754,1718,1604,-1,2617,2183,2279,-1,2617,2461,2183,-1,2718,3453,3257,-1,3453,2718,2559,-1,3656,3346,3343,-1,3656,3630,3346,-1,2534,2116,2832,-1,2534,2755,2116,-1,3450,3618,3589,-1,3302,3618,3450,-1,2282,1894,2298,-1,1894,2282,1958,-1,3406,2603,2885,-1,3246,2603,3406,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=25 */
		private int[] getethmoid2_Geo_5_115_normalIndex_25()
		{
			int[] value = {239,601,310,-1,239,487,601,-1,390,832,1040,-1,390,1012,832,-1,1546,2692,1840,-1,2692,1546,2614,-1,482,636,198,-1,482,938,636,-1,2400,1759,2210,-1,2400,2111,1759,-1,3610,3719,3253,-1,3685,3719,3610,-1,3141,2538,2576,-1,3141,2977,2538,-1,3402,1931,3369,-1,1931,3402,1980,-1,730,1667,1817,-1,730,1605,1667,-1,2008,1032,1877,-1,1032,2008,982,-1,3124,3405,3295,-1,2926,3405,3124,-1,1799,1101,1074,-1,1887,1101,1799,-1,3428,2907,3371,-1,3066,2907,3428,-1,877,922,843,-1,877,1075,922,-1,3448,3119,3359,-1,3376,3119,3448,-1,3201,3376,3458,-1,3201,3286,3376,-1,3359,3048,3526,-1,3048,3359,3119,-1,2262,2511,2259,-1,2511,2262,3416,-1,1422,1025,813,-1,1422,1319,1025,-1,8,220,11,-1,131,220,8,-1,1731,958,1781,-1,925,958,1731,-1,1561,3012,2686,-1,1561,1709,3012,-1,3662,2846,2625,-1,3662,3728,2846,-1,2946,2937,3100,-1,2946,2775,2937,-1,1585,2783,1918,-1,2783,1585,1665,-1,2709,3424,3273,-1,3424,2709,2942,-1,102,119,202,-1,119,102,122,-1,349,162,313,-1,162,349,183,-1,1253,1826,1126,-1,1253,1791,1826,-1,1594,585,1615,-1,1594,577,585,-1,2715,2758,2733,-1,2715,2640,2758,-1,786,1508,808,-1,1508,786,1498,-1,2835,2937,2508,-1,2835,2630,2937,-1,556,947,198,-1,556,1701,947,-1,2508,2065,2846,-1,2508,1311,2065,-1,2663,3094,2766,-1,2801,3094,2663,-1,3094,3330,3355,-1,3330,3094,2801,-1,3241,2977,3199,-1,3241,3101,2977,-1,3254,1455,1515,-1,3254,2913,1455,-1,713,1455,1110,-1,713,1515,1455,-1,2288,604,1236,-1,604,2288,1736,-1,2623,2256,2693,-1,2623,2243,2256,-1,1682,1272,1451,-1,1272,1682,1626,-1,2867,1939,1932,-1,1939,2867,2827,-1,3475,2301,2747,-1,2301,3475,3388,-1,1146,554,655,-1,1286,554,1146,-1,558,2145,2023,-1,558,497,2145,-1,2506,2549,2365,-1,2876,2549,2506,-1,3361,3405,3421,-1,3405,3361,3339,-1,730,312,670,-1,592,312,730,-1,3176,3465,3051,-1,2744,3465,3176,-1,3092,3437,3097,-1,3396,3437,3092,-1,1066,774,1032,-1,1066,1660,774,-1,3371,2885,3428,-1,2885,3371,3406,-1,1325,2348,1859,-1,2348,1325,1814,-1,3533,3126,3394,-1,3126,3533,3325,-1,1376,1807,1570,-1,705,1807,1376,-1,2842,3002,3345,-1,2842,2348,3002,-1,3126,2314,2644,-1,2314,3126,2880,-1,528,705,602,-1,528,329,705,-1,3233,3528,3107,-1,3233,3460,3528,-1,874,1687,1462,-1,874,1118,1687,-1,2037,2928,2211,-1,3212,2928,2037,-1,3349,3363,3342,-1,3349,3372,3363,-1,2481,931,2628,-1,719,931,2481,-1,2215,1240,2152,-1,1021,1240,2215,-1,1484,1425,1378,-1,1484,2291,1425,-1,1639,874,1872,-1,1639,596,874,-1,2507,3524,1867,-1,2840,3524,2507,-1,3546,1666,1639,-1,1666,3546,3302,-1,3244,3230,2877,-1,3230,3244,3384,-1,712,887,834,-1,887,712,815,-1,1484,1521,1476,-1,1461,1521,1484,-1,1461,1378,1488,-1,1461,1484,1378,-1,1181,2260,2343,-1,1181,781,2260,-1,596,1118,874,-1,1118,596,602,-1,3321,3576,3418,-1,3321,3463,3576,-1,3043,3463,3321,-1,2821,3463,3043,-1,655,833,1146,-1,655,694,833,-1,3612,3257,3453,-1,3612,3207,3257,-1,2210,2419,2400,-1,2210,2451,2419,-1,2210,1827,2653,-1,2210,2042,1827,-1,2754,3526,3048,-1,2288,3526,2754,-1,309,890,241,-1,309,934,890,-1,1382,2079,1798,-1,1383,2079,1382,-1,1783,2906,2730,-1,2906,1783,1815,-1,2599,2640,2659,-1,2599,2531,2640,-1,3685,3730,3719,-1,3701,3730,3685,-1,1786,1964,1920,-1,1786,1828,1964,-1,3128,3223,2615,-1,3223,3128,3329,-1,158,347,395,-1,347,158,259,-1,2122,3134,2333,-1,2899,3134,2122,-1,297,158,230,-1,158,297,356,-1,1854,2333,2479,-1,2333,1854,1705,-1,3139,2471,2803,-1,2914,2471,3139,-1,297,382,100,-1,230,382,297,-1,2479,2091,1854,-1,2479,2651,2091,-1,3222,2873,2651,-1,3222,3266,2873,-1,475,1095,531,-1,1033,1095,475,-1,2762,3266,2966,-1,3266,2762,2873,-1,42,531,124,-1,475,531,42,-1,2265,1982,2487,-1,2265,1794,1982,-1,1507,2087,2193,-1,1601,2087,1507,-1,510,124,531,-1,124,510,180,-1,600,1165,1206,-1,1165,600,700,-1,2424,3313,3655,-1,2424,2081,3313,-1,114,765,132,-1,114,656,765,-1,1662,1584,1690,-1,1662,1575,1584,-1,45,656,114,-1,45,607,656,-1,1584,1022,1020,-1,1584,1575,1022,-1,18,629,213,-1,629,18,539,-1,757,1512,752,-1,1512,757,1419,-1,1469,2222,2223,-1,1469,1512,2222,-1,2158,2503,2422,-1,2158,2223,2503,-1,2503,2589,2539,-1,2503,2554,2589,-1,2233,2698,2980,-1,2233,2102,2698,-1,3420,2616,2815,-1,3420,3503,2616,-1,3104,1362,1490,-1,1362,3104,928,-1,1348,2176,1985,-1,1443,2176,1348,-1,1362,984,1328,-1,984,1362,1088,-1,1142,1443,918,-1,1142,1540,1443,-1,1575,1142,1022,-1,1575,1662,1142,-1,2464,3007,2160,-1,3502,3007,2464,-1,1698,1726,1869,-1,1726,1698,1611,-1,2160,1868,2464,-1,1986,1868,2160,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=26 */
		private int[] getethmoid2_Geo_5_115_normalIndex_26()
		{
			int[] value = {2545,2895,2716,-1,2723,2895,2545,-1,416,1096,486,-1,416,1002,1096,-1,463,371,416,-1,463,454,371,-1,2912,2485,3169,-1,2423,2485,2912,-1,1957,2299,1770,-1,2518,2299,1957,-1,1510,1018,2456,-1,380,1018,1510,-1,2375,2710,2791,-1,2367,2710,2375,-1,413,454,452,-1,454,413,371,-1,899,587,998,-1,899,406,587,-1,2716,3306,2943,-1,2895,3306,2716,-1,2082,2160,1869,-1,2082,1986,2160,-1,2289,1221,1260,-1,2289,1327,1221,-1,425,454,463,-1,425,619,454,-1,3498,2289,2789,-1,2289,3498,2711,-1,2582,2352,2187,-1,2582,2944,2352,-1,855,345,760,-1,345,855,328,-1,1362,1363,1088,-1,1362,928,1363,-1,1985,1322,1348,-1,1985,1673,1322,-1,2350,1518,1673,-1,2350,2015,1518,-1,2815,2960,3420,-1,2629,2960,2815,-1,2960,2233,2980,-1,2153,2233,2960,-1,3432,2698,2892,-1,2980,2698,3432,-1,2172,2422,2580,-1,2172,2158,2422,-1,2172,1528,1493,-1,2310,1528,2172,-1,1512,2112,2222,-1,1512,1419,2112,-1,752,1469,674,-1,1469,752,1512,-1,752,114,757,-1,752,45,114,-1,328,213,345,-1,213,328,18,-1,2102,1818,1662,-1,2102,1879,1818,-1,2102,2045,1879,-1,2233,2045,2102,-1,2233,2153,2045,-1,757,132,600,-1,757,114,132,-1,1947,2583,2112,-1,2648,2583,1947,-1,2621,3174,2648,-1,3202,3174,2621,-1,132,700,600,-1,700,132,341,-1,1258,1847,1165,-1,1858,1847,1258,-1,510,1017,593,-1,510,1043,1017,-1,1487,2193,2246,-1,1507,2193,1487,-1,2265,2003,1794,-1,2202,2003,2265,-1,1982,1125,1454,-1,1794,1125,1982,-1,2305,2873,2762,-1,2873,2305,2326,-1,1769,2091,2326,-1,2091,1769,1495,-1,2787,3266,3222,-1,2787,2700,3266,-1,3195,2651,2479,-1,3195,3222,2651,-1,382,568,859,-1,568,382,230,-1,2333,3195,2479,-1,3134,3195,2333,-1,230,395,568,-1,395,230,158,-1,2899,3318,3134,-1,3379,3318,2899,-1,395,1011,1130,-1,1011,395,347,-1,928,1573,1452,-1,928,2122,1573,-1,566,858,259,-1,1258,858,566,-1,3701,3672,3645,-1,3685,3672,3701,-1,3258,3522,3585,-1,3522,3258,3500,-1,2332,2232,2283,-1,2332,2219,2232,-1,1791,2906,1826,-1,1791,2905,2906,-1,1428,2031,2201,-1,2031,1428,1467,-1,313,841,349,-1,313,830,841,-1,3067,3671,3012,-1,3067,3657,3671,-1,3671,3580,3462,-1,3580,3671,3657,-1,3557,3527,3617,-1,3049,3527,3557,-1,3413,3713,3615,-1,3137,3713,3413,-1,1295,554,1286,-1,1295,621,554,-1,3617,3576,3557,-1,3617,3418,3576,-1,2344,1021,2215,-1,2344,1070,1021,-1,2319,3336,2241,-1,2319,3372,3336,-1,3411,3372,3349,-1,3336,3372,3411,-1,277,2023,2178,-1,277,558,2023,-1,2238,3438,2916,-1,3450,3438,2238,-1,1639,3550,3546,-1,3550,1639,1872,-1,3388,2304,2301,-1,3388,3363,2304,-1,1240,1488,2152,-1,1488,1240,1461,-1,712,1298,1106,-1,1298,712,643,-1,2628,1070,2344,-1,2628,931,1070,-1,3342,3388,3619,-1,3363,3388,3342,-1,3210,3460,3345,-1,3528,3460,3210,-1,1687,2644,2314,-1,1687,2049,2644,-1,3208,3345,3460,-1,3208,2842,3345,-1,705,133,1807,-1,329,133,705,-1,3394,2644,2953,-1,2644,3394,3126,-1,1859,2842,2515,-1,2842,1859,2348,-1,329,276,133,-1,507,276,329,-1,2736,2379,2717,-1,2953,2379,2736,-1,319,526,1018,-1,526,319,738,-1,2366,3112,3465,-1,3112,2366,3157,-1,3106,3444,3088,-1,3531,3444,3106,-1,263,312,903,-1,263,1638,312,-1,3396,2248,3437,-1,2208,2248,3396,-1,1205,2744,2248,-1,2744,1205,1372,-1,3465,1372,2366,-1,1372,3465,2744,-1,3511,3116,2743,-1,3519,3116,3511,-1,3421,3079,3361,-1,3079,3421,3416,-1,2549,2462,2365,-1,2549,1844,2462,-1,781,2191,2260,-1,781,449,2191,-1,376,242,439,-1,376,245,242,-1,1367,2180,1282,-1,2180,1367,2255,-1,3280,2693,3314,-1,2693,3280,2623,-1,1098,2128,2998,-1,2154,2128,1098,-1,2662,1840,2692,-1,1738,1840,2662,-1,2626,3452,3305,-1,2626,2699,3452,-1,3053,2663,2766,-1,2663,3053,3177,-1,3310,2766,2774,-1,3053,2766,3310,-1,3132,3355,3547,-1,3132,3094,3355,-1,1161,2508,2775,-1,1053,2508,1161,-1,2933,3598,3695,-1,2933,2714,3598,-1,698,1580,728,-1,1706,1580,698,-1,151,634,202,-1,524,634,151,-1,2993,3426,3459,-1,3262,3426,2993,-1,3248,2543,2575,-1,2543,3248,3214,-1,2556,1615,2478,-1,1615,2556,1594,-1,131,47,130,-1,131,8,47,-1,52,8,40,-1,47,8,52,-1,183,215,150,-1,183,349,215,-1,550,399,667,-1,550,229,399,-1,288,245,467,-1,288,242,245,-1,399,1025,817,-1,399,502,1025,-1,1161,2946,1231,-1,1161,2775,2946,-1,1402,2201,2079,-1,2201,1402,1410,-1,313,35,241,-1,313,162,35,-1,2839,3598,3354,-1,2630,3598,2839,-1,1796,3090,3125,-1,1909,3090,1796,-1,3258,2890,3122,-1,3258,3449,2890,-1,3148,3644,3500,-1,3644,3148,2889,-1,428,229,508,-1,130,229,428,-1,3293,3241,3489,-1,3241,3293,3101,-1,1586,794,1612,-1,1586,991,794,-1,3003,1209,3688,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=27 */
		private int[] getethmoid2_Geo_5_115_normalIndex_27()
		{
			int[] value = {3003,3562,1209,-1,3416,1660,3079,-1,1660,3416,1609,-1,3558,3019,3324,-1,3558,3290,3019,-1,3448,3458,3376,-1,3448,3603,3458,-1,3603,3359,3713,-1,3603,3448,3359,-1,1926,1385,2119,-1,1215,1385,1926,-1,871,843,922,-1,888,843,871,-1,3092,3350,3021,-1,3092,3369,3350,-1,1372,3182,2366,-1,3182,1372,2788,-1,3421,2926,2001,-1,3421,3405,2926,-1,2162,982,2008,-1,2162,1008,982,-1,3444,1980,3402,-1,1980,3444,2030,-1,2509,2111,2400,-1,2509,2271,2111,-1,1933,1449,2247,-1,1449,1933,1384,-1,1990,750,699,-1,1990,2103,750,-1,3553,3546,3550,-1,3553,3548,3546,-1,3550,3453,3553,-1,3550,3612,3453,-1,3541,3343,3320,-1,3343,3541,3656,-1,2431,2090,2419,-1,2536,2090,2431,-1,1644,2083,1754,-1,2083,1644,2020,-1,1551,1385,1544,-1,1385,1551,1656,-1,1029,2374,1003,-1,1029,2259,2374,-1,2444,1921,1747,-1,2146,1921,2444,-1,2146,1024,1921,-1,1472,2357,1525,-1,1472,2258,2357,-1,3341,2490,2556,-1,3147,2490,3341,-1,585,288,650,-1,585,284,288,-1,1282,2586,1309,-1,1282,2180,2586,-1,1253,1823,1791,-1,1253,1304,1823,-1,1781,983,1783,-1,1781,958,983,-1,716,1706,698,-1,716,1737,1706,-1,1314,841,1382,-1,1314,743,841,-1,1285,524,523,-1,524,1285,1466,-1,604,1756,578,-1,1756,604,1736,-1,474,30,544,-1,474,129,30,-1,1265,1626,1661,-1,1626,1265,1272,-1,3314,2612,3265,-1,2693,2612,3314,-1,2055,2827,2856,-1,1939,2827,2055,-1,2921,1935,2169,-1,2921,2639,1935,-1,3240,2587,2635,-1,3263,2587,3240,-1,3129,3521,3466,-1,3129,3159,3521,-1,2639,3278,3026,-1,2639,2921,3278,-1,1415,1708,1381,-1,1708,1415,1972,-1,1366,511,1525,-1,1366,410,511,-1,667,1126,1015,-1,817,1126,667,-1,3482,3633,2486,-1,3482,3469,3633,-1,1728,2462,2155,-1,2462,1728,2365,-1,2301,621,1220,-1,2304,621,2301,-1,3171,3605,3489,-1,2906,3605,3171,-1,2021,2659,2258,-1,2659,2021,2599,-1,1247,1913,1932,-1,1247,1254,1913,-1,2413,2024,2061,-1,2368,2024,2413,-1,2283,2429,2533,-1,2232,2429,2283,-1,1225,2055,1856,-1,1250,2055,1225,-1,1657,2622,2516,-1,1721,2622,1657,-1,1619,636,938,-1,1405,636,1619,-1,1933,3374,2901,-1,2247,3374,1933,-1,2096,1661,1626,-1,2096,2054,1661,-1,561,1233,532,-1,561,1265,1233,-1,2758,2332,2325,-1,2640,2332,2758,-1,1691,3431,3090,-1,1747,3431,1691,-1,392,1796,829,-1,392,1909,1796,-1,1198,2838,1184,-1,1277,2838,1198,-1,1261,1676,1226,-1,1056,1676,1261,-1,2114,2975,2106,-1,3093,2975,2114,-1,2089,2466,2062,-1,2466,2089,2069,-1,2214,1979,2159,-1,1979,2214,2148,-1,56,571,50,-1,571,56,445,-1,1553,1569,1560,-1,1553,221,1569,-1,1560,1674,1689,-1,1634,1674,1560,-1,1542,1035,1128,-1,1396,1035,1542,-1,2469,1542,1727,-1,2133,1542,2469,-1,2469,3334,3264,-1,2469,2671,3334,-1,3264,3574,3392,-1,3264,3334,3574,-1,3392,3084,3083,-1,3392,3574,3084,-1,2710,2528,2765,-1,2528,2710,2402,-1,2347,2166,2660,-1,1744,2166,2347,-1,1610,2570,2529,-1,2570,1610,1675,-1,1610,686,1139,-1,1610,949,686,-1,1163,1291,956,-1,1163,1350,1291,-1,333,686,248,-1,333,569,686,-1,1026,941,1064,-1,1026,956,941,-1,880,519,471,-1,880,911,519,-1,1703,2529,2439,-1,1703,1610,2529,-1,3626,3169,3080,-1,3169,3626,3579,-1,553,1031,1127,-1,553,402,1031,-1,2865,2347,2656,-1,2329,2347,2865,-1,2522,3082,2474,-1,2522,3074,3082,-1,149,389,251,-1,224,389,149,-1,2364,1566,2329,-1,2364,1653,1566,-1,2900,3288,2961,-1,3288,2900,3272,-1,436,224,327,-1,224,436,389,-1,3218,3288,3387,-1,3218,2961,3288,-1,327,662,436,-1,662,327,394,-1,1746,2806,1723,-1,1746,2386,2806,-1,1697,2606,2014,-1,1697,2230,2606,-1,796,452,679,-1,796,413,452,-1,1413,910,998,-1,1413,1326,910,-1,883,1504,1002,-1,883,1448,1504,-1,1724,1326,1413,-1,1724,1777,1326,-1,1806,2884,1825,-1,1806,2853,2884,-1,2592,2979,2897,-1,2592,2770,2979,-1,3220,2550,2723,-1,2550,3220,2938,-1,2723,3061,3220,-1,2723,2545,3061,-1,2086,3061,2545,-1,2086,2585,3061,-1,1109,1312,799,-1,1430,1312,1109,-1,1312,1333,1271,-1,1312,1502,1333,-1,1430,1502,1312,-1,1430,1735,1502,-1,1642,1735,1430,-1,1642,1927,1735,-1,1949,1927,1642,-1,1949,2104,1927,-1,2182,2104,1949,-1,2182,2206,2104,-1,3385,2574,2897,-1,3385,2853,2574,-1,3095,2373,2938,-1,3095,2397,2373,-1,1779,2585,1795,-1,1779,2749,2585,-1,3478,1953,1658,-1,3478,2749,1953,-1,1734,2230,1700,-1,1734,2397,2230,-1,1774,2043,1392,-1,2184,2043,1774,-1,1778,718,1884,-1,1778,606,718,-1,2184,2738,2043,-1,2510,2738,2184,-1,1778,2799,2874,-1,2799,1778,1884,-1,2540,3121,2844,-1,3121,2540,2688,-1,2934,2391,2721,-1,2934,2676,2391,-1,3367,2956,2915,-1,3367,3260,2956,-1,3593,3386,3492,-1,3593,3616,3386,-1,3036,2760,3105,-1,3036,2650,2760,-1,3616,3146,3075,-1,3146,3616,3593,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=28 */
		private int[] getethmoid2_Geo_5_115_normalIndex_28()
		{
			int[] value = {2513,2650,3036,-1,2513,2267,2650,-1,3146,2048,3075,-1,2272,2048,3146,-1,1655,2267,2513,-1,1655,1578,2267,-1,2272,1045,2048,-1,1299,1045,2272,-1,860,1578,1655,-1,860,929,1578,-1,1299,472,1045,-1,806,472,1299,-1,365,860,315,-1,365,929,860,-1,806,287,472,-1,633,287,806,-1,136,315,123,-1,136,365,315,-1,633,236,287,-1,603,236,633,-1,177,123,161,-1,177,136,123,-1,722,603,960,-1,722,236,603,-1,2728,2627,2724,-1,2728,2317,2627,-1,2683,2317,2728,-1,2683,1892,2317,-1,2510,1892,2683,-1,2510,1712,1892,-1,2184,1712,2510,-1,2184,1678,1712,-1,1774,1678,2184,-1,1774,1686,1678,-1,397,184,367,-1,184,397,217,-1,3607,3016,2964,-1,3607,3586,3016,-1,2355,1548,2270,-1,2355,1620,1548,-1,2412,2870,2703,-1,2412,2611,2870,-1,421,1141,851,-1,228,1141,421,-1,1623,2355,1848,-1,2355,1623,1620,-1,1908,1547,1976,-1,1180,1547,1908,-1,1623,963,1188,-1,1623,1063,963,-1,1545,1976,1547,-1,1545,1967,1976,-1,1080,963,971,-1,1188,963,1080,-1,1270,2264,1307,-1,1270,2093,2264,-1,2179,1288,1190,-1,2179,2229,1288,-1,409,205,458,-1,88,205,409,-1,1886,2808,1654,-1,1886,2680,2808,-1,3289,3545,3211,-1,3545,3289,3476,-1,1044,346,381,-1,987,346,1044,-1,1496,921,893,-1,1496,1683,921,-1,1852,2761,1906,-1,2761,1852,2854,-1,335,82,113,-1,335,505,82,-1,3194,2666,3155,-1,2666,3194,2541,-1,505,143,82,-1,505,256,143,-1,1189,2444,1747,-1,2444,1189,1184,-1,3606,2837,3629,-1,2837,3606,3623,-1,1056,369,829,-1,1056,605,369,-1,1340,3440,3150,-1,1340,1213,3440,-1,1905,1723,2069,-1,1905,1373,1723,-1,1940,1968,1998,-1,1940,1900,1968,-1,2189,2032,2028,-1,2189,2026,2032,-1,1968,1835,1963,-1,1968,1900,1835,-1,627,21,299,-1,446,21,627,-1,658,1435,1394,-1,658,867,1435,-1,2610,2004,2601,-1,2610,1974,2004,-1,2436,1730,2353,-1,2436,1722,1730,-1,3309,2811,3446,-1,3309,2852,2811,-1,3692,3237,3584,-1,3692,3370,3237,-1,3140,3299,3200,-1,3140,3149,3299,-1,3234,3584,3167,-1,3234,3692,3584,-1,2863,3200,2951,-1,2863,3140,3200,-1,2488,3167,2480,-1,2488,3234,3167,-1,2371,2951,2459,-1,2371,2863,2951,-1,2488,1928,1863,-1,2488,2480,1928,-1,1821,2361,2226,-1,1881,2361,1821,-1,1263,1841,1860,-1,1195,1841,1263,-1,1301,1881,1821,-1,1262,1881,1301,-1,1195,535,400,-1,1195,1263,535,-1,611,1262,1301,-1,453,1262,611,-1,299,400,535,-1,21,400,299,-1,1168,708,1293,-1,516,708,1168,-1,1928,1742,1364,-1,1742,1928,2025,-1,2552,3584,3237,-1,2726,3584,2552,-1,867,1780,1435,-1,1780,867,1535,-1,2804,2817,2868,-1,2804,2753,2817,-1,875,53,1197,-1,157,53,875,-1,2780,3457,2868,-1,2780,3247,3457,-1,1099,206,337,-1,1150,206,1099,-1,2752,2969,3172,-1,2969,2752,2649,-1,1099,1991,1998,-1,1099,1132,1991,-1,2080,1962,2105,-1,2080,2649,1962,-1,2097,3044,2073,-1,2097,2126,3044,-1,3479,2669,3291,-1,3479,2748,2669,-1,2557,1873,1862,-1,1873,2557,2673,-1,503,504,317,-1,503,663,504,-1,948,1648,939,-1,1533,1648,948,-1,3403,3412,3404,-1,3412,3403,3572,-1,1183,885,457,-1,885,1183,1418,-1,683,1565,614,-1,1628,1565,683,-1,939,1628,683,-1,939,1648,1628,-1,3572,3274,3412,-1,3572,3604,3274,-1,1183,1978,2294,-1,1183,994,1978,-1,278,542,262,-1,614,542,278,-1,3294,2737,2813,-1,3294,3186,2737,-1,942,412,415,-1,942,687,412,-1,2604,3291,2669,-1,3186,3291,2604,-1,189,292,103,-1,189,317,292,-1,2673,3054,2579,-1,2673,3153,3054,-1,1005,504,727,-1,504,1005,630,-1,3611,2917,3269,-1,3144,2917,3611,-1,3281,2817,3307,-1,3281,2566,2817,-1,2702,2753,2328,-1,3151,2753,2702,-1,1445,2752,2860,-1,1445,1400,2752,-1,417,295,386,-1,417,337,295,-1,1229,1671,518,-1,2011,1671,1229,-1,226,461,186,-1,226,573,461,-1,1699,1966,1929,-1,1699,1880,1966,-1,944,1606,870,-1,944,1652,1606,-1,1929,2077,2120,-1,1929,1966,2077,-1,1652,2321,1606,-1,1652,2370,2321,-1,3135,2370,3217,-1,2321,2370,3135,-1,2354,2687,2251,-1,2687,2354,3213,-1,2792,3135,3197,-1,3022,3135,2792,-1,3197,2433,2792,-1,3197,2383,2433,-1,2363,1596,1616,-1,2363,2392,1596,-1,1771,2110,1890,-1,2110,1771,2181,-1,1672,1688,1331,-1,1672,1961,1688,-1,1331,1470,927,-1,1331,1688,1470,-1,927,1458,640,-1,927,1470,1458,-1,1269,1389,1447,-1,1389,1269,1365,-1,988,1397,1380,-1,795,1397,988,-1,2143,2573,2792,-1,2143,2331,2573,-1,2280,2701,2505,-1,2453,2701,2280,-1,609,141,795,-1,323,141,609,-1,1895,1129,1767,-1,1895,1152,1129,-1,1081,1583,1151,-1,1081,1473,1583,-1,362,307,121,-1,307,362,330,-1,2287,1351,1408,-1,1351,2287,2339,-1,2287,2958,2339,-1,2287,2968,2958,-1,2968,3430,2958,-1,2968,3552,3430,-1,3059,2173,3087,-1,3059,2144,2173,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=29 */
		private int[] getethmoid2_Geo_5_115_normalIndex_29()
		{
			int[] value = {1077,2064,2057,-1,2064,1077,965,-1,908,438,324,-1,908,966,438,-1,1513,2060,1230,-1,2440,1513,2297,-1,1513,2440,2060,-1,3651,3059,3699,-1,3651,3089,3059,-1,1516,610,1478,-1,610,1516,845,-1,1812,1513,1315,-1,2297,1513,1812,-1,2377,2440,2862,-1,2060,2440,2377,-1,1829,977,1104,-1,977,1829,1811,-1,498,156,233,-1,498,342,156,-1,199,411,490,-1,223,411,199,-1,342,882,726,-1,498,882,342,-1,490,652,926,-1,411,652,490,-1,726,1614,1532,-1,882,1614,726,-1,2472,1846,1725,-1,2472,2491,1846,-1,2016,1399,2293,-1,1399,2016,1241,-1,3152,2608,3165,-1,2608,3152,2602,-1,2850,3071,2955,-1,2850,3175,3071,-1,2866,3382,2987,-1,3382,2866,3142,-1,3008,1993,3037,-1,3008,2075,1993,-1,1259,1993,2075,-1,1259,1320,1993,-1,1409,1960,2068,-1,1409,1439,1960,-1,1320,1124,1207,-1,1259,1124,1320,-1,664,1207,1124,-1,664,791,1207,-1,491,1337,820,-1,491,1216,1337,-1,2438,2872,2705,-1,2872,2438,2427,-1,1768,2491,2782,-1,1768,1846,2491,-1,2467,564,2056,-1,564,2467,407,-1,3512,3154,3127,-1,3451,3154,3512,-1,254,155,318,-1,31,155,254,-1,244,835,702,-1,484,835,244,-1,731,780,420,-1,731,970,780,-1,1491,704,666,-1,1491,1442,704,-1,1541,2437,1529,-1,1541,2401,2437,-1,2199,1358,2300,-1,1358,2199,1414,-1,3173,2476,3209,-1,2476,3173,2435,-1,3108,3422,3091,-1,3108,3470,3422,-1,3046,3045,3399,-1,3045,3046,2809,-1,3634,3443,3568,-1,3634,3414,3443,-1,3196,2983,3251,-1,3196,2831,2983,-1,2927,3353,3145,-1,3353,2927,3055,-1,2882,3118,2638,-1,3118,2882,3203,-1,2458,1437,1450,-1,2250,1437,2458,-1,1896,2643,2857,-1,1896,1839,2643,-1,374,1692,1486,-1,374,594,1692,-1,534,529,232,-1,814,529,534,-1,418,1093,850,-1,418,818,1093,-1,529,396,484,-1,529,265,396,-1,3710,3196,3470,-1,3196,3710,3417,-1,959,1541,835,-1,1541,959,1741,-1,2875,3250,2986,-1,3250,2875,2826,-1,1283,1946,2273,-1,1283,1255,1946,-1,959,1748,1741,-1,1748,959,1159,-1,2461,3096,2509,-1,2461,3328,3096,-1,2422,2539,2742,-1,2539,2422,2503,-1,593,1019,661,-1,1017,1019,593,-1,3364,1702,2851,-1,3364,3009,1702,-1,2432,2823,2957,-1,2432,2446,2823,-1,1047,1975,2170,-1,1047,916,1975,-1,3304,2015,2350,-1,3304,2859,2015,-1,3689,3062,3552,-1,3689,3087,3062,-1,2446,2992,2823,-1,2446,2527,2992,-1,2074,2527,2084,-1,2498,2527,2074,-1,1173,772,682,-1,772,1173,1252,-1,2992,3621,3447,-1,3621,2992,3020,-1,1391,772,1252,-1,1391,675,772,-1,2816,3588,3077,-1,3588,2816,3461,-1,3259,2452,3077,-1,3259,2584,2452,-1,906,1588,1007,-1,1559,1588,906,-1,1753,1416,2010,-1,1753,1352,1416,-1,61,720,572,-1,720,61,111,-1,305,849,488,-1,305,801,849,-1,2910,2207,2156,-1,2910,2517,2207,-1,2295,2994,2647,-1,2295,2613,2994,-1,1123,1457,650,-1,1625,1457,1123,-1,3133,952,3110,-1,3133,1679,952,-1,1072,1010,2492,-1,1010,1072,990,-1,2239,945,1636,-1,2239,886,945,-1,646,801,751,-1,801,646,849,-1,2613,2088,2523,-1,2295,2088,2613,-1,1784,2517,2646,-1,2517,1784,2207,-1,1194,961,990,-1,961,1194,646,-1,2810,1679,2135,-1,1679,2810,2523,-1,945,1784,1102,-1,945,1245,1784,-1,2997,2188,3268,-1,2130,2188,2997,-1,1024,574,1921,-1,1024,740,574,-1,642,839,2188,-1,642,804,839,-1,1519,1081,842,-1,1473,1081,1519,-1,2489,3316,2785,-1,2489,2551,3316,-1,1865,842,659,-1,1519,842,1865,-1,2785,3464,2689,-1,2785,3316,3464,-1,372,225,36,-1,372,548,225,-1,1421,981,766,-1,1421,1631,981,-1,2719,3292,2778,-1,3292,2719,3160,-1,548,291,225,-1,710,291,548,-1,992,1172,1175,-1,1172,992,1039,-1,2316,2551,2489,-1,2454,2551,2316,-1,898,517,710,-1,898,741,517,-1,89,1323,968,-1,89,243,1323,-1,1591,1229,748,-1,1591,1902,1229,-1,2473,2428,1902,-1,2473,2732,2428,-1,549,732,608,-1,549,739,732,-1,1468,1354,1802,-1,1354,1468,1167,-1,2569,3190,3335,-1,2818,3190,2569,-1,892,848,807,-1,892,895,848,-1,2825,3315,3362,-1,2825,2904,3315,-1,2558,1760,2450,-1,1760,2558,1917,-1,1704,2275,1591,-1,2323,2275,1704,-1,823,325,862,-1,325,823,322,-1,2996,2502,2745,-1,2972,2502,2996,-1,2972,2390,2502,-1,2878,2390,2972,-1,2878,2323,2390,-1,2732,2323,2878,-1,2732,2275,2323,-1,2473,2275,2732,-1,424,271,334,-1,424,72,271,-1,334,252,339,-1,334,271,252,-1,322,433,325,-1,322,575,433,-1,803,599,598,-1,803,857,599,-1,2763,3523,2893,-1,3078,3523,2763,-1,1876,2494,2483,-1,1876,2029,2494,-1,644,671,729,-1,671,644,351,-1,1977,2356,1581,-1,2893,2356,1977,-1,2175,1453,1988,-1,2175,1562,1453,-1,1567,895,993,-1,1567,1317,895,-1,1592,1151,1583,-1,1592,1201,1151,-1,1988,2307,2175,-1,1988,2033,2307,-1,1792,1317,1567,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=30 */
		private int[] getethmoid2_Geo_5_115_normalIndex_30()
		{
			int[] value = {1317,1792,1407,-1,1148,3315,964,-1,3315,1148,2500,-1,1057,615,995,-1,589,615,1057,-1,1845,1292,1083,-1,1292,1845,1433,-1,340,1083,443,-1,340,972,1083,-1,271,1344,252,-1,271,1164,1344,-1,2418,2591,2802,-1,2418,2311,2591,-1,965,2118,2064,-1,1147,2118,965,-1,3185,2911,3245,-1,3185,2829,2911,-1,1574,2420,1597,-1,1574,2448,2420,-1,2767,3071,2519,-1,3071,2767,3239,-1,115,51,208,-1,115,331,51,-1,1549,1555,1092,-1,1549,2139,1555,-1,897,1191,543,-1,1517,1191,897,-1,442,489,483,-1,489,442,470,-1,1121,1100,1006,-1,1121,1105,1100,-1,897,398,538,-1,897,543,398,-1,2234,1251,1121,-1,2234,2798,1251,-1,3221,3560,3544,-1,3442,3560,3221,-1,92,91,83,-1,79,91,92,-1,191,23,203,-1,23,191,95,-1,86,55,22,-1,86,117,55,-1,986,2796,881,-1,986,2930,2796,-1,668,2631,2667,-1,668,588,2631,-1,724,2685,2764,-1,724,680,2685,-1,2140,2042,1759,-1,2140,2019,2042,-1,10,192,33,-1,192,10,174,-1,73,28,63,-1,73,54,28,-1,12,44,7,-1,19,44,12,-1,308,430,270,-1,308,437,430,-1,3442,3543,3560,-1,3435,3543,3442,-1,1816,1760,1481,-1,1760,1816,1755,-1,1187,1810,972,-1,1187,1891,1810,-1,187,361,159,-1,361,187,388,-1,368,144,269,-1,368,125,144,-1,493,2674,2581,-1,493,744,2674,-1,26,283,29,-1,283,26,216,-1,166,2,75,-1,2,166,20,-1,68,62,76,-1,68,40,62,-1,183,166,162,-1,166,183,147,-1,3042,3570,3641,-1,3570,3042,2697,-1,388,1208,361,-1,388,1310,1208,-1,1076,465,735,-1,693,465,1076,-1,192,216,204,-1,192,283,216,-1,110,90,25,-1,110,5,90,-1,3673,2674,2678,-1,3673,3578,2674,-1,2713,3652,3599,-1,3652,2713,2841,-1,140,2013,142,-1,140,964,2013,-1,974,1232,912,-1,1222,1232,974,-1,58,4,24,-1,4,58,104,-1,28,680,724,-1,28,54,680,-1,302,936,266,-1,809,936,302,-1,953,2389,1036,-1,2665,2389,953,-1,2447,3678,3718,-1,2447,2985,3678,-1,744,33,715,-1,33,744,10,-1,1036,459,953,-1,459,1036,912,-1,167,19,1819,-1,91,19,167,-1,3669,3694,3700,-1,3669,3676,3694,-1,3455,3393,3680,-1,3393,3455,3383,-1,3143,3322,3113,-1,3143,3060,3322,-1,74,187,17,-1,160,187,74,-1,308,168,268,-1,112,168,308,-1,1114,560,969,-1,560,1114,788,-1,560,201,469,-1,560,194,201,-1,1889,2228,2284,-1,2228,1889,1743,-1,145,1743,152,-1,1797,1743,145,-1,649,787,626,-1,787,649,628,-1,106,17,63,-1,106,74,17,-1,1824,1999,1497,-1,1775,1999,1824,-1,3721,3561,3559,-1,3721,3714,3561,-1,3670,3698,3720,-1,3622,3698,3670,-1,3691,3708,3706,-1,3677,3708,3691,-1,2685,3649,3639,-1,2887,3649,2685,-1,2560,3650,3675,-1,2764,3650,2560,-1,3434,3690,3682,-1,3690,3434,3415,-1,3679,2735,2777,-1,3679,3693,2735,-1,3365,3682,3614,-1,3326,3682,3365,-1,3181,2849,3267,-1,3181,3317,2849,-1,3058,3627,3583,-1,3058,3539,3627,-1,3706,3675,3650,-1,3675,3706,3708,-1,3725,3640,3635,-1,3640,3725,3729,-1,3407,1531,3282,-1,2564,1531,3407,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getethmoid2_Coord_6_115_point_1()
		{
			double[] value = {0.0207,57.5912,2.1443,0.0351,57.5047,2.1618,0.0221,57.5777,2.1299,0.0244,57.6204,2.2098,0.0368,57.5158,2.2418,0.0184,57.6111,2.15,0.0208,57.7092,2.1907,0.0198,57.7173,2.1571,0.0208,57.6913,2.3569,0.0246,57.6613,2.2902,0.0202,57.7021,2.3472,0.0177,56.6568,1.9226,0.0145,56.644,1.8555,0.0207,56.6713,1.924,0.0111,56.6681,2.1045,0.0132,56.6654,2.1806,0.0,56.6664,2.2065,0.0132,56.6661,2.1903,0.0171,56.6766,2.1837,0.0221,56.6892,2.2412,0.0,57.7563,2.3445,0.0463,57.6589,2.3681,0.0595,57.6629,2.3666,0.0199,57.6964,2.134,0.0199,57.6553,2.1388,0.0,57.7173,2.0964,0.0145,57.0581,1.4878,0.0,57.0175,1.4869,0.0,57.0871,1.488,0.0143,57.1484,1.523,0.0165,57.0422,1.4964,0.0332,57.1532,2.3802,0.04,57.2921,2.3229,0.062,57.3224,2.3672,0.0413,57.2424,2.2602,0.0393,57.2161,2.2316,0.0754,57.3973,2.1614,0.026,56.85,1.5436,0.0335,56.9195,1.6327,0.0202,56.7281,1.6402,0.0245,57.2766,2.5305,-0.0001,57.3456,2.567,0.0245,57.2669,2.5284,0.0125,56.6685,1.9901,0.0104,56.6632,1.9962,0.0107,56.6601,1.9851,0.0134,56.6819,2.0415,0.0155,56.6841,2.0534,0.0,56.6693,2.1505,0.0166,56.6795,2.1008,0.0125,56.6709,2.0913,0.064,57.3984,2.4397,0.0381,57.3379,2.4557,0.0625,57.4332,2.3751,0.0377,57.317,2.4781,0.0314,57.2743,2.452,0.0283,57.3665,2.5078,0.027,57.3008,2.499,0.0301,57.147,2.4442,0.0308,57.2172,2.4157,0.0796,57.3879,2.1235,0.0413,57.1754,2.1431,0.0944,57.3675,2.0715,0.0166,56.6931,2.0563,0.0143,56.6878,2.0637,0.0278,56.8423,1.79,0.0275,56.8463,1.7941,0.0199,56.8764,1.8585,0.0,56.8081,1.6082,0.0,56.9141,1.5256,0.0118,56.6488,1.9176,0.0,56.6395,1.9497,0.0152,56.6777,2.0672,0.0,56.6693,2.1631,0.027,56.7673,2.354,0.0292,56.8211,2.3744,0.0285,56.8299,2.3956,0.0295,56.8526,2.4076,0.0311,56.8666,2.3984,0.0317,56.9986,2.4336,0.0368,57.4312,2.5112,0.0259,56.8406,2.4033,0.0238,56.7583,2.357,0.0,57.5978,2.4722,0.0,57.5935,2.4746,0.0329,57.5135,2.4507,0.0187,56.9676,2.4229,0.0271,57.082,2.4839,0.0,57.0323,2.4976,0.0188,56.7019,2.3135,0.0212,56.7438,2.3536,0.0,56.7672,2.4592,0.0159,56.6761,2.0757,0.0,56.6673,2.188,0.045,57.421,2.2726,0.0,56.6953,1.7203,0.0317,57.1683,1.5584,0.0181,57.3285,2.542,0.0,56.6429,2.0864,0.0,56.6629,2.0332,0.2041,56.8469,1.5597,0.2038,56.8424,1.5515,0.2563,56.7633,1.5599,0.2021,56.8577,1.5881,0.1817,56.886,1.6076,0.203,56.8374,1.5399,0.1728,56.8915,1.5852,0.1169,56.9472,1.6335,0.106,56.981,1.6806,0.0931,57.042,1.6026,0.101,56.9587,1.7349,0.1125,57.0268,1.715,0.1048,56.9535,1.7073,0.1421,56.9817,1.6256,0.1563,56.9533,1.5934,0.128,56.9313,1.6377,0.0466,57.108,1.5171,0.0891,57.0166,1.5726,0.1005,57.0376,1.7567,0.1073,57.0242,1.7137,0.1091,57.0239,1.7147,0.1407,56.9188,1.6227,0.1679,56.8993,1.589,0.1488,56.9071,1.6329,0.1247,57.0028,1.6737,0.135,56.9921,1.6159,0.0845,57.1214,1.5501,0.1166,57.1631,1.6021,0.0802,57.1488,1.5526,0.0564,57.1164,1.5246,0.0903,57.0061,1.5492,0.1001,57.0035,1.5105,0.1678,56.8881,1.5482,0.2582,56.7611,1.5646,0.2664,56.7485,1.523,0.2673,56.7966,1.4965,0.2706,56.8666,1.4585,0.2822,56.7632,1.4897,0.2684,56.7447,1.5278,0.1117,57.1744,2.1393,0.1127,57.1793,2.1973,0.1133,57.1783,2.1372,0.1107,57.161,2.083,0.1094,57.1654,2.081,0.0958,57.1363,2.0374,0.0807,57.0311,1.9292,0.0853,57.0818,1.9927,0.0801,57.0362,1.9278,0.1131,57.1859,2.1338,0.0784,56.9046,2.1678,0.0799,56.9207,2.2184,0.1087,57.0035,2.1272,0.1297,57.0203,1.6643,0.1308,57.0308,1.6904,0.1269,56.9346,1.7139,0.1289,57.0353,1.6978,0.1314,57.0526,1.7251,0.1203,56.9433,1.7527,0.1513,57.0034,1.679,0.1289,57.0896,1.6376,0.1311,57.0823,1.6292,0.2007,56.9526,1.5936,0.1914,56.9586,1.5997,0.1954,57.0272,1.565,0.1474,57.0053,1.6897,0.1364,57.107,1.658,0.1458,57.2503,2.053,0.1395,57.2601,1.9951,0.1418,57.075,2.05,0.1842,56.8948,1.5962,0.2056,56.8598,1.5857,0.1968,56.8824,1.5923,0.134,57.0656,1.6014,0.1304,57.0816,1.6272,0.1292,57.0177,1.6547,0.1639,57.0402,1.566,0.1505,57.0511,1.5817,0.1512,56.9984,1.6062,0.1734,56.8962,1.6189,0.1722,56.895,1.6183,0.1448,56.9106,1.6614,0.1353,56.9175,1.6873,0.134,56.916,1.687,0.1351,57.0662,1.6019,0.1333,57.1085,1.6599,0.1307,57.0892,1.6355,0.1933,57.0261,1.5637,0.1657,57.0407,1.5664,0.1711,56.8952,1.6112,0.1575,56.9038,1.6372,0.1249,56.9162,1.683,0.1353,56.9152,1.6566,0.1293,56.9259,1.6395,0.103,57.3971,2.162,0.1134,57.2723,2.2055,0.1154,57.2851,2.2387,0.074,57.4222,2.2787,0.104,57.3106,2.3157,0.1027,57.3238,2.3622,0.1535,56.8789,1.7178,0.1301,56.9205,1.7177,0.1262,56.9183,1.717,0.1085,57.1002,1.9756,0.1119,57.1302,2.0343,0.1136,57.1265,2.039,0.1243,57.153,2.0846,0.1318,57.2366,2.1058,0.1199,57.1661,2.1411,0.1224,56.9286,1.7324,0.1234,56.9342,1.7622,0.1011,56.9899,1.9375,0.1049,56.9905,1.9368,0.1038,57.0497,2.0027,0.1237,56.922,1.7654,0.1248,56.9176,1.746,0.124,56.9224,1.7675,0.1098,56.9356,1.8002,0.1124,56.9352,1.8002,0.1114,56.9641,1.8813,0.1315,56.9299,1.6922,0.135,56.9291,1.6845,0.1402,56.8685,1.7683,0.102,56.8117,1.761,0.097,56.8396,1.8387,0.1773,56.874,1.6966,0.2286,56.8879,1.727,0.2555,56.8568,1.7326,0.1389,56.8529,1.6979,0.137,56.8582,1.7413,0.1471,56.8636,1.7073,0.0958,57.1186,2.0477,0.1026,57.1072,2.0516,0.1223,57.1463,2.0905,0.1166,57.1649,2.142,0.1112,57.1526,2.0874,0.115,57.2659,2.1672,0.1156,57.2533,2.1123,0.1238,57.1459,2.0905,0.107,57.1061,2.0509,0.1074,57.0261,1.9251,0.1112,57.0797,1.9882,0.1289,56.9192,1.7465,0.1193,56.8391,1.7182,0.098,56.8793,2.043,0.089,56.8213,2.133,0.0833,56.8931,2.1101,0.0881,56.7754,1.8656,0.0966,57.1348,2.0413,0.2416,56.8636,1.5927,0.2405,56.8666,1.5946,0.2388,56.8617,1.5925,0.2357,56.8584,1.5985,0.2173,56.8575,1.5947,0.2119,56.8859,1.6094,0.1699,56.8963,1.6887,0.1844,56.9058,1.7162,0.176,56.8857,1.6975,0.2331,56.9166,1.6956,0.2427,56.9088,1.6759,0.2338,56.9078,1.6945,0.2055,56.9114,1.6978,0.208,56.9179,1.696,0.191,56.9204,1.6827,0.1889,56.9118,1.6863,0.1555,56.8962,1.6649,0.0,57.6305,2.1303,0.0385,57.5699,2.3218,0.0465,57.4123,2.1866,0.0617,57.4238,2.265,0.1675,56.9743,1.6132,0.1546,56.9883,1.6379,0.1672,57.3113,1.8822,0.1495,57.3013,1.7286,0.0,57.3138,1.7437,0.0,57.3828,2.0051,0.1524,57.3487,2.0208,0.1468,57.3079,1.948,0.1064,57.2058,2.0126,0.1094,57.1806,1.967,0.1005,57.1438,1.9755,0.1179,56.9296,1.7148,0.0,57.6727,2.3945,0.0466,57.5983,2.3938,0.0812,57.4849,2.4452,0.071,57.5275,2.4371,0.0659,57.5129,2.4436,0.0976,57.4512,2.4261,0.1322,57.2493,2.0525,0.1875,57.0078,1.4422,0.0949,57.0266,1.489,0.1909,57.0153,1.4374,0.1192,57.4552,2.4381,0.0501,57.1365,1.5237,0.0879,57.4507,2.4241,0.2271,57.0526,1.4663,0.0427,57.1342,1.4633,0.2253,57.1091,1.5056,0.0198,57.6247,2.1528,0.2778,56.8571,1.6036,0.2769,56.856,1.6018,0.2781,56.8565,1.6045,0.2712,56.8653,1.6032,0.2717,56.8651,1.6031,0.274,56.8644,1.6048,0.2719,56.8545,1.5952,0.2729,56.8552,1.5958,0.2708,56.8577,1.5952,0.2699,56.8662,1.6027,0.2671,56.864,1.5975,0.2716,56.85,1.5917,0.2708,56.8396,1.5897,0.2762,56.852,1.5989,0.2742,56.8641,1.6062,0.2734,56.8644,1.6051,0.2717,56.8654,1.6027,0.2742,56.8676,1.604,0.2796,56.8838,1.6013,0.2818,56.865,1.5996,0.2826,56.866,1.6018,0.2783,56.8828,1.5984,0.2761,56.8822,1.5965,0.2798,56.8633,1.5951,0.2789,56.8848,1.6037,0.2662,56.9135,1.6021,0.2767,56.8856,1.6055,0.2734,56.8861,1.6062,0.2615,56.9124,1.6059,0.2698,56.886,1.6057,0.2701,56.865,1.5995,0.2701,56.8648,1.5967,0.2667,56.8833,1.5982,0.2728,56.8636,1.5943,0.2766,56.8634,1.5945,0.2728,56.882,1.5955,0.2693,56.8382,1.586,0.2663,56.833,1.585,0.2461,56.8399,1.5876,0.261,56.8309,1.584,0.2474,56.8377,1.5842,0.2429,56.8401,1.5834,0.2403,56.8646,1.5907,0.2373,56.8618,1.59,0.2872,56.8567,1.6171,0.284,56.8821,1.6321,0.2877,56.886,1.6274,0.2541,56.8632,1.5902,0.2138,56.8648,1.5733,0.2726,56.8209,1.6232,0.2897,56.8604,1.6365,0.2577,56.8327,1.6136,0.2762,56.8608,1.6577,0.266,56.8887,1.6502,0.2817,56.884,1.6404,0.2637,56.925,1.6653,0.2641,56.9301,1.6639,0.2749,56.9156,1.6556,0.2609,56.9552,1.6795,0.2604,56.949,1.6808,0.2579,56.965,1.6999,0.2605,56.9386,1.6793,0.2605,56.9423,1.6794,0.2641,56.9424,1.6796,0.2632,56.9305,1.6676,0.2673,56.9351,1.6717,0.2675,56.9359,1.6701,0.2638,56.9412,1.6649,0.2663,56.9395,1.668,0.2657,56.9419,1.6682,0.2633,56.9471,1.6784,0.2609,56.9471,1.6783,0.2614,56.9501,1.6767,0.1842,56.9795,1.5838,0.186,56.9757,1.5787,0.1446,56.8556,1.6931,0.1335,56.8402,1.6823,0.2311,56.8939,1.7065,0.2087,56.9079,1.7196,0.2665,56.9358,1.6743,0.2761,56.9405,1.6772,0.274,56.9413,1.6737,0.2704,56.9434,1.671,0.2643,56.9446,1.6694,0.2632,56.9475,1.673,0.265,56.9483,1.6739,0.2627,56.9483,1.676,0.2652,56.9496,1.6782,0.2728,56.9451,1.6828,0.2743,56.9433,1.682,0.2657,56.9381,1.6775,0.27,56.9505,1.6729,0.2685,56.9482,1.6716,0.2742,56.951,1.6726,0.2757,56.9515,1.6736,0.2757,56.944,1.6748,0.2807,56.954,1.6777,0.2741,56.957,1.6835,0.2709,56.9504,1.6826,0.2672,56.9539,1.6793,0.2675,56.9017,1.6527,0.2839,56.8996,1.6545,0.2456,56.941,1.7163,0.2484,56.9296,1.6998,0.2357,56.8836,1.6027,0.2133,56.9523,1.6692,0.1916,56.9309,1.6579,0.1904,56.9216,1.6373,0.2877,56.9078,1.6557,0.2772,56.9271,1.6517,0.2864,56.7459,1.5551,0.2551,56.7405,1.5427,0.2044,56.7712,1.5728,0.2663,56.8156,1.5651,0.2555,56.824,1.5484,0.2382,56.8291,1.5584,0.2631,56.8232,1.5434,0.2544,56.8529,1.5163,0.2409,56.8505,1.5222,0.2733,56.8296,1.5798,0.2739,56.8315,1.5728,0.276,56.8213,1.5654,0.2594,56.8568,1.5233,0.2669,56.8293,1.5482,0.265,56.8407,1.5612,0.3961,56.8392,1.6604,0.3963,56.8392,1.6602,0.3981,56.8389,1.6617,0.3926,56.8365,1.6567,0.3929,56.8364,1.6566,0.3941,56.838,1.658,0.399,56.8373,1.6621,0.3992,56.8373,1.6626,0.3981,56.839,1.6621,0.3982,56.8391,1.6622,0.3985,56.84,1.6587,0.3945,56.8381,1.6539,0.3946,56.8368,1.6529,0.3955,56.8382,1.6524,0.3978,56.8414,1.657,0.3969,56.8401,1.6575,0.3953,56.8393,1.6556,0.3989,56.8447,1.6503,0.4002,56.84,1.6547,0.4011,56.8413,1.6564,0.3181,56.7765,1.5851,0.3181,56.7766,1.5849,0.3171,56.7754,1.5837,0.3114,56.7759,1.5806,0.3117,56.7756,1.5806,0.3119,56.7761,1.5806,0.322,56.7555,1.6003,0.3094,56.7759,1.5798,0.3111,56.777,1.5807,0.317,56.7749,1.5838,0.3153,56.7733,1.5822,0.3167,56.7724,1.5786,0.3113,56.7766,1.5808,0.3458,56.8041,1.6096,0.3189,56.7796,1.5866,0.3484,56.798,1.6109,0.3205,56.7781,1.5872,0.3493,56.7982,1.6081,0.2898,56.7643,1.4896,0.3335,56.8852,1.4797,0.3517,56.809,1.5486,0.2784,56.8751,1.4528,0.2484,56.9742,1.4363,0.2389,56.9687,1.4394,0.4086,56.8425,1.672,0.409,56.8425,1.6669,0.447,56.8967,1.7597,0.3976,56.8341,1.6605,0.388,56.8268,1.6504,0.3989,56.8351,1.6619,0.2116,56.6418,1.4915,0.1901,56.6996,1.5694,0.2027,56.7235,1.561,0.1872,57.0666,1.4248,0.306,56.9952,1.4524,0.3183,56.7792,1.583,0.3161,56.7792,1.5816,0.3096,56.7883,1.5664,0.3123,56.7883,1.5668,0.3146,56.7866,1.5664,0.3197,56.7783,1.5836,0.3068,56.7852,1.5648,0.3132,56.7776,1.5792,0.3129,56.7768,1.5787,0.3141,56.7754,1.579,0.3165,56.7749,1.5804,0.3126,56.7806,1.5637,0.3069,56.7864,1.5653,0.3136,56.7782,1.5797,0.3147,56.792,1.5514,0.3116,56.7932,1.5514,0.3078,56.7933,1.5508,0.3046,56.7925,1.55,0.3025,56.7913,1.5491,0.3018,56.7899,1.5485,0.307,56.7836,1.5643,0.3076,56.7825,1.5639,0.3044,56.7874,1.548,0.3077,56.7868,1.5483,0.3094,56.7812,1.5636,0.3117,56.7871,1.549,0.3015,56.7962,1.5421,0.2988,56.7933,1.5391,0.2994,56.7948,1.5407,0.2998,56.8056,1.534,0.2999,56.8061,1.5359,0.3013,56.8057,1.5376,0.2999,56.8079,1.5361,0.3,56.8133,1.5364,0.3002,56.8088,1.5342,0.3014,56.8095,1.5322,0.3243,56.807,1.5591,0.3236,56.8029,1.5467,0.3169,56.8029,1.547,0.2869,56.8563,1.541,0.2892,56.8283,1.5398,0.2998,56.8789,1.5555,0.2904,56.8794,1.5549,0.3024,56.8177,1.5355,0.3346,56.8435,1.5433,0.3153,56.8657,1.5516,0.313,56.8217,1.536,0.2026,56.8336,1.6827,0.1905,56.8525,1.773,0.1512,56.797,1.6654,0.1949,56.8537,1.7748,0.273,56.9375,1.6069,0.2727,56.9425,1.6198,0.2682,56.9101,1.5787,0.26,56.8884,1.564,0.2705,56.8867,1.5422,0.2582,56.8703,1.5642,0.2342,56.8703,1.5164,0.2551,56.8621,1.5406,0.3635,56.8747,1.6083,0.3556,56.8402,1.5761,0.3685,56.8573,1.6132,0.3388,56.8151,1.5559,0.3339,56.809,1.5588,0.3506,56.8185,1.5787,0.3625,56.9156,1.6517,0.361,56.8404,1.6191,0.2966,56.9032,1.5671,0.3173,56.8943,1.5715,0.3409,56.8779,1.5771,0.21,56.7907,1.6209,0.2443,56.6775,1.5788,0.2216,56.7963,1.6228,0.188,57.1821,2.1467,0.1879,57.1836,2.1462,0.1993,57.184,2.1524,0.2225,57.1718,2.1092,0.2225,57.171,2.1095,0.2243,57.1749,2.1261,0.1572,57.1957,2.0321,0.2109,57.1825,2.0464,0.1932,57.1862,2.0273,0.2085,57.1972,2.1707,0.2266,57.1857,2.1554,0.2112,57.1826,2.1513,0.2201,57.1794,2.1418,0.2457,57.1734,2.1433,0.1531,57.199,2.0684,0.1624,57.2026,2.1229,0.1769,57.1777,2.1207,0.2146,57.1696,2.098,0.2397,57.176,2.0796,0.2199,57.1616,2.2315,0.1941,57.1584,2.2026,0.1909,57.2101,2.1916,0.1851,57.2003,2.1538,0.1899,57.2235,2.1782,0.1731,57.2466,2.1811,0.1702,57.2499,2.1827,0.1543,57.3207,2.1826,0.1453,57.3099,2.1539,0.1534,57.3302,2.1821,0.2461,57.1928,2.2948,0.3422,57.36,2.0083,0.3394,57.364,1.9907,0.3266,57.3273,2.0495,0.2163,57.1095,1.6218,0.2138,57.0981,1.6204,0.1997,57.0962,1.6158,0.28,57.0883,1.5811,0.2729,57.0939,1.5973,0.2721,57.105,1.5985,0.2576,57.0544,1.524,0.2668,57.0755,1.5484,0.2503,57.063,1.5269,0.2027,57.0539,1.5422,0.2076,57.0643,1.5437,0.1903,57.0843,1.5853,0.237,57.0754,1.5309,0.2527,57.0828,1.5413,0.245,57.0904,1.5472,0.243,57.129,1.6095,0.2452,57.125,1.6158,0.2234,57.125,1.6196,0.2686,56.9379,1.5985,0.2659,56.9122,1.5979,0.3022,57.0018,1.6002,0.2973,56.9851,1.6001,0.29,56.9841,1.6026,0.2648,56.9133,1.6044,0.263,56.9343,1.6036,0.2675,56.9363,1.6012,0.2596,57.107,1.6055,0.256,57.1248,1.6103,0.254,56.9955,1.623,0.2766,56.9818,1.6097,0.2493,56.9779,1.6247,0.2341,56.935,1.6073,0.2556,56.9107,1.6061,0.2497,56.9082,1.6033,0.216,56.9839,1.6196,0.2281,56.9725,1.6254,0.2206,56.9679,1.6175,0.2289,56.9314,1.6015,0.2473,56.9061,1.5988,0.2107,57.1171,1.612,0.2036,57.1043,1.6137,0.2306,56.9551,1.5718,0.228,56.9687,1.561,0.2059,56.9727,1.5959,0.2092,57.0812,1.5525,0.2033,57.0984,1.5821,0.2492,56.931,1.5784,0.2499,56.9047,1.5922,0.2528,56.905,1.5885,0.2438,56.9695,1.5425,0.25,56.9584,1.5555,0.2555,56.934,1.578,0.2603,56.9081,1.5895,0.2604,56.9357,1.5828,0.2297,56.9928,1.5266,0.227,56.9843,1.5206,0.2347,56.9853,1.5232,0.2052,56.9942,1.5421,0.1992,56.9849,1.548,0.1985,56.9845,1.5409,0.2429,56.9664,1.5371,0.2481,56.9586,1.5415,0.2416,56.9557,1.5525,0.2713,56.8428,1.5819,0.2658,56.8541,1.5782,0.2619,56.8592,1.5877,0.2555,56.8641,1.5884,0.2496,56.8738,1.5813,0.2618,56.8282,1.581,0.2473,56.8305,1.5784,0.2086,56.8571,1.5563,0.228,56.8396,1.5716,0.2659,56.9559,1.6762,0.2666,56.9546,1.6738,0.2582,56.9566,1.6692,0.2369,56.9752,1.6482,0.2248,56.9827,1.6566,0.2392,56.9677,1.6582,0.2552,56.9655,1.6524,0.2631,56.9645,1.6503,0.2504,56.9729,1.6427,0.2914,56.9651,1.6763,0.2831,56.9646,1.6796,0.284,56.9667,1.683,0.278,56.9651,1.664,0.279,56.9617,1.6744,0.2469,56.9655,1.6546,0.2633,56.9559,1.6667,0.2319,56.9787,1.6702,0.2581,56.9595,1.674,0.2329,56.972,1.6629,0.2822,57.0059,1.7099,0.2873,57.0196,1.7243,0.3035,57.0027,1.7053,0.3212,57.0152,1.7134,0.3207,57.0068,1.7029,0.3014,56.9865,1.6898,0.2912,56.9868,1.6901,0.3104,56.9996,1.6953,0.3102,57.0233,1.7202,0.326,57.0541,1.7391,0.3419,57.0362,1.7162,0.3219,57.1016,1.6797,0.3146,57.1304,1.656,0.3377,57.1012,1.6708,0.3026,57.0272,1.7257,0.3122,57.0578,1.7531,0.3154,57.0678,1.7335,0.3099,57.0836,1.7079,0.3354,57.0873,1.6998,0.2882,57.0588,1.7305,0.2546,57.1367,1.6947,0.2838,57.136,1.6833,0.3008,57.1019,1.6905,0.2084,57.1761,1.6742,0.2194,57.1843,1.6635,0.239,57.1893,1.6643,0.2838,57.0113,1.7189,0.2729,57.0314,1.7451,0.2253,57.0401,1.7193,0.2035,57.0648,1.7145,0.2353,57.073,1.7139,0.1857,57.1689,1.6694,0.2059,57.1773,1.6587,0.246,57.0008,1.706,0.2838,56.9914,1.6975,0.2754,56.9749,1.691,0.2816,56.9729,1.6892,0.1863,57.1485,1.6482,0.1824,57.0955,1.6486,0.2218,57.0751,1.617,0.2105,57.1621,1.6425,0.2274,57.1582,1.6353,0.2484,57.1706,1.6362,0.3046,56.9853,1.6414,0.3252,56.9973,1.6769,0.3341,57.0044,1.6541,0.3425,57.007,1.692,0.3476,57.0353,1.6804,0.3148,57.1164,1.6311,0.2971,57.1645,1.6351,0.2984,57.0907,1.6071,0.2771,57.1749,1.6373,0.2568,57.1734,1.6366,0.2655,57.1665,1.633,0.3433,57.0603,1.7034,0.302,57.1752,1.6441,0.3157,56.8783,1.878,0.3173,56.8703,1.8754,0.318,56.8713,1.8757,0.3424,56.9129,1.8671,0.3634,56.8984,1.9416,0.3656,56.9208,1.9404,0.3716,56.9439,1.989,0.369,56.9358,2.0174,0.3622,56.9519,2.0122,0.3518,56.95,2.0179,0.3541,56.9339,2.0259,0.328,56.9406,2.0015,0.2631,57.0055,1.8049,0.2658,57.0058,1.804,0.2607,57.0141,1.7952,0.3115,56.9461,1.9742,0.2961,56.9148,1.9458,0.3476,56.964,1.9681,0.3393,56.9627,1.9489,0.3553,56.9522,1.9412,0.2988,56.9516,1.9366,0.3221,56.9616,1.9545,0.3294,56.9633,1.9746,0.3383,56.9514,1.8688,0.3236,56.9653,1.8538,0.3196,56.9506,1.8152,0.3095,56.9773,1.8596,0.296,56.9832,1.8553,0.3253,56.8609,1.8916,0.3222,56.8687,1.8912,0.3265,56.8613,1.8905,0.3273,56.8509,1.9199,0.3174,56.8583,1.9008,0.324,56.8591,1.9051,0.3203,56.8835,1.8811,0.3179,56.8784,1.881,0.3198,56.8774,1.8846,0.3162,56.8787,1.8785,0.3157,56.8852,1.871,0.3122,56.8868,1.8656,0.3248,56.8822,1.894,0.3271,56.8821,1.9048,0.3206,56.8838,1.9122,0.3031,56.8946,1.9429,0.3313,56.9174,2.0009,0.2964,56.9064,1.7966,0.2886,56.9038,1.807,0.2862,57.042,1.8177,0.3111,57.072,1.8198,0.298,57.0646,1.7857,0.288,57.0466,1.8394,0.2758,57.0187,1.814,0.3305,57.1025,1.8396,0.3032,57.0865,1.8523,0.2864,57.0977,1.8716,0.2415,57.1611,1.8695,0.1811,57.1829,1.8481,0.2251,57.1911,1.8552,0.2023,57.0457,1.7679,0.2125,57.0327,1.7443,0.1941,57.0705,1.7601,0.2329,57.0269,1.7403,0.2278,57.0512,1.7326,0.2009,57.0518,1.7306,0.224,57.0754,1.7228,0.2954,57.0901,1.7199,0.2879,57.1181,1.7078,0.2143,57.1392,1.7103,0.2637,57.201,1.6819,0.2022,57.1808,1.6873,0.2747,57.1522,1.7022,0.2662,57.0141,1.7989,0.2718,57.0158,1.8059,0.2648,57.0216,1.7744,0.3396,57.0861,1.8047,0.3285,57.0718,1.7684,0.3254,56.863,1.8678,0.3143,56.8624,1.8414,0.3324,56.8637,1.8733,0.3476,56.7973,2.054,0.3377,56.7775,2.1714,0.3434,56.7961,2.0536,0.3476,56.8235,1.9524,0.347,56.8013,2.034,0.3398,56.8232,1.9552,0.3453,56.8006,2.0374,0.3434,56.7994,2.0405,0.3435,56.7991,2.0404,0.3436,56.7976,2.0468,0.3436,56.798,2.0469,0.3456,56.7979,2.0502,0.3552,56.8008,2.0481,0.3536,56.7998,2.0514,0.3533,56.8001,2.051,0.4257,56.919,1.8469,0.427,56.9186,1.8474,0.4258,56.9195,1.8471,0.4247,56.9195,1.8471,0.4249,56.9198,1.8472,0.4239,56.9204,1.8486,0.4273,56.9209,1.8596,0.4284,56.9191,1.8527,0.4301,56.9248,1.8695,0.4262,56.9233,1.8523,0.4272,56.9229,1.8514,0.4277,56.9197,1.8522,0.4241,56.9232,1.8522,0.4251,56.9235,1.8527,0.4263,56.9206,1.8536,0.4263,56.9227,1.8467,0.425,56.9223,1.8464,0.4253,56.9209,1.8464,0.4264,56.9211,1.8468,0.4227,56.924,1.8502,0.4229,56.9233,1.8505,0.4224,56.9232,1.8488,0.4242,56.9212,1.8468,0.4078,56.984,1.8242,0.426,56.9287,1.845,0.4079,56.9854,1.8263,0.4076,56.9864,1.8283,0.4259,56.9303,1.8476,0.4068,56.9868,1.8299,0.4215,56.9288,1.8476,0.4211,56.9278,1.8462,0.404,56.9835,1.8274,0.4054,56.9819,1.8238,0.4045,56.9825,1.8254,0.4215,56.9271,1.8449,0.4005,57.0034,1.8147,0.3925,57.021,1.8081,0.3991,57.0036,1.8174,0.4059,57.0053,1.8191,0.4063,57.0048,1.8161,0.4027,57.0055,1.8234,0.4045,57.0055,1.8217,0.4058,56.9867,1.8307,0.4048,56.9859,1.8304,0.3993,57.0047,1.8226,0.4041,56.9848,1.8292,0.4024,57.0034,1.8131,0.4064,56.982,1.823,0.4073,56.9828,1.8231,0.4058,57.0042,1.8138,0.3917,57.0441,1.8119,0.4013,57.0228,1.8085,0.4008,57.0223,1.8118,0.3992,57.0216,1.8149,0.397,57.021,1.8167,0.3897,57.0303,1.8194,0.393,57.0203,1.8152,0.3882,57.025,1.8155,0.3888,57.0265,1.8183,0.3945,57.0216,1.8064,0.3886,57.0343,1.804,0.3896,57.0395,1.8034,0.399,57.0228,1.8045,0.3906,57.0434,1.8048,0.3919,57.0205,1.8117,0.3873,57.0247,1.8153,0.3876,57.0342,1.8036,0.3871,57.0397,1.8028,0.3851,57.0359,1.8183,0.3831,57.0373,1.8194,0.385,57.0412,1.8156,0.3713,57.0357,1.8166,0.3729,57.0333,1.82,0.322,57.1512,1.859,0.3056,57.1424,1.8807,0.3132,57.123,1.8744,0.3793,57.1229,1.819,0.3864,57.1102,1.8355,0.382,57.1304,1.8512,0.3299,57.0669,1.8356,0.3424,57.0564,1.826,0.3486,57.0676,1.8163,0.3159,57.1733,1.865,0.358,57.0766,1.8094,0.3678,57.0806,1.8074,0.3696,57.1029,1.8078,0.268,57.1674,1.9454,0.2613,57.1687,1.9452,0.2634,57.1645,1.9386,0.2553,57.1666,1.9404,0.2552,57.1671,1.9398,0.263,57.1649,1.9379,0.2665,57.1582,1.9279,0.2663,57.1572,1.9285,0.2673,57.1607,1.9334,0.2647,57.1562,1.9237,0.2603,57.1549,1.9205,0.2609,57.1529,1.9225,0.2668,57.1617,1.9327,0.2669,57.1629,1.9325,0.2744,57.1823,1.9458,0.2631,57.1659,1.9375,0.2354,57.1843,1.9474,0.2552,57.1681,1.9393,0.2472,57.1674,1.9359,0.223,57.3384,1.8852,0.2359,57.3391,1.8874,0.2124,57.3306,1.907,0.1983,57.3298,1.904,0.2096,57.3285,1.8614,0.1965,57.3138,1.867,0.1766,57.1986,1.8523,0.2062,57.1739,1.8879,0.227,57.1674,1.8758,0.2243,57.3133,1.8258,0.2125,57.3199,1.8413,0.2015,57.2926,1.8179,0.2393,57.3102,1.8194,0.2194,57.2844,1.8037,0.2866,57.2654,1.8478,0.2758,57.2947,1.8403,0.2632,57.2828,1.8112,0.2397,57.1585,1.9292,0.2417,57.1577,1.9296,0.2426,57.1613,1.9348,0.2686,57.1564,1.9284,0.2644,57.1548,1.9252,0.2684,57.16,1.9339,0.336,56.8135,2.0442,0.348,56.7984,2.0513,0.3438,56.8147,2.032,0.3456,56.8167,2.0329,0.3107,56.8842,2.0053,0.338,56.8159,2.0455,0.2989,56.8818,2.0145,0.2529,56.9665,1.9843,0.2464,56.9627,1.9699,0.2176,56.9905,1.9537,0.2652,56.9581,1.9417,0.2762,56.9559,1.9353,0.2787,56.968,1.9032,0.2668,56.9346,1.9909,0.2619,56.9693,1.9994,0.2909,56.9475,1.9965,0.2964,56.9713,2.0013,0.3071,56.9685,1.9944,0.2799,56.9326,1.9615,0.2937,56.9561,1.9436,0.2835,56.9449,1.9994,0.2727,56.939,1.997,0.3422,57.1502,1.9346,0.3636,57.1203,1.975,0.3519,57.147,1.9822,0.3423,57.1556,2.019,0.2986,57.1955,2.0139,0.3226,57.1832,1.9874,0.2556,57.2185,2.0085,0.264,57.217,2.0046,0.2721,57.2104,2.014,0.2491,57.2174,2.0062,0.2579,57.2219,1.9928,0.2368,57.1539,1.9236,0.269,57.1416,1.8992,0.2689,57.1501,1.9188,0.2598,57.1989,1.9644,0.2634,57.2146,1.9728,0.2606,57.215,1.9738,0.2675,57.1972,1.9636,0.2747,57.1982,1.9656,0.2657,57.215,1.9741,0.2877,57.1699,1.9503,0.3025,57.1536,1.9284,0.322,57.1626,1.9485,0.2795,57.2016,1.9697,0.2669,57.2161,1.9764};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getethmoid2_Coord_6_115_point_2()
		{
			double[] value = {0.3016,57.1939,1.9775,0.2791,57.2074,1.9786,0.2667,57.2177,1.9799,0.321,56.7623,2.1693,0.3122,56.7936,2.0338,0.315,57.1705,2.0479,0.2799,57.2088,2.0208,0.26,57.1719,2.11,0.1673,57.4201,2.1296,0.1556,57.4209,2.1577,0.1507,57.3616,2.1466,0.2435,56.8734,2.4364,0.2541,56.8461,2.455,0.2421,56.881,2.4507,0.2612,56.9016,2.5137,0.2651,56.903,2.5143,0.2623,56.9172,2.5222,0.2629,56.8414,2.4529,0.2796,56.8129,2.404,0.2824,56.8128,2.4071,0.258,56.8542,2.4666,0.2549,56.8547,2.4641,0.2483,57.013,2.5552,0.2527,57.0196,2.5537,0.244,57.0242,2.5568,0.2401,57.0227,2.556,0.2145,57.0598,2.5533,0.206,57.0559,2.5494,0.1669,57.122,2.6326,0.1615,57.1189,2.6273,0.1959,57.0695,2.5589,0.1397,57.292,2.6022,0.1491,57.2983,2.5963,0.1383,57.3511,2.5585,0.4229,56.8081,1.8158,0.4283,56.8299,1.8941,0.4064,56.8054,1.825,0.2777,56.5801,1.4344,0.2628,56.5714,1.4281,0.2614,56.5701,1.4239,0.3172,56.6956,1.5865,0.326,56.7179,1.6115,0.313,56.6952,1.5878,0.3218,56.7176,1.6118,0.1576,56.6692,1.7518,0.1559,56.6627,1.7529,0.1563,56.6437,1.676,0.3444,57.1702,2.0197,0.2909,57.288,2.0909,0.2476,57.4355,1.966,0.2442,57.3957,1.8765,0.2303,57.4319,1.9886,0.3586,57.2931,1.9736,0.3512,57.2893,1.9944,0.3928,57.1204,1.9187,0.3657,57.2968,1.9529,0.3915,57.1043,1.863,0.3686,57.2996,1.9325,0.3303,57.2898,1.7393,0.3415,57.2994,1.7843,0.3812,57.1724,1.7658,0.326,57.3125,1.7757,0.1274,56.6386,1.9041,0.1281,56.6529,1.8594,0.1324,56.652,1.86,0.1404,56.6445,1.739,0.1363,56.6444,1.7386,0.1397,56.6266,1.6835,0.1201,56.6333,1.9291,0.1243,56.6315,1.93,0.1182,56.6219,1.9667,0.2791,56.583,1.4328,0.2799,56.5813,1.4344,0.2601,56.5717,1.4215,0.3002,56.6166,1.4721,0.3001,56.6143,1.4743,0.2961,56.6064,1.4635,0.3385,56.7286,1.6201,0.3305,56.7226,1.6099,0.3952,56.7617,1.7061,0.3889,56.7558,1.6933,0.402,56.8184,1.6806,0.4152,56.8363,1.9576,0.4194,56.8366,1.932,0.4244,56.8504,1.9435,0.3725,56.8019,2.2134,0.3827,56.7984,2.1755,0.3843,56.8646,2.2173,0.3321,56.833,2.3549,0.3285,56.8433,2.3838,0.3247,56.8404,2.3861,0.3609,56.7936,2.2071,0.3252,56.8301,2.3566,0.3506,56.7838,2.1762,0.3511,56.883,2.3839,0.3403,56.9196,2.3863,0.3419,56.9179,2.4437,0.2582,56.9143,2.5184,0.2583,56.9256,2.5225,0.2514,56.935,2.5063,0.2651,56.928,2.5256,0.2798,56.9439,2.5215,0.2601,57.0025,2.5493,0.2524,56.9892,2.5469,0.2506,57.016,2.4932,0.2554,56.9978,2.5509,0.2514,56.9965,2.5499,0.2533,56.9885,2.5452,0.2589,56.9721,2.5302,0.2587,56.9728,2.5347,0.2607,56.9635,2.5315,0.1551,57.2341,2.6428,0.1576,57.3084,2.5846,0.1273,57.2476,2.5485,0.1147,57.3237,2.4971,0.126,57.257,2.5021,0.185,57.2585,2.5877,0.1559,57.2218,2.6482,0.1536,57.1254,2.6344,0.143,57.1238,2.55,0.1358,57.056,2.5128,0.1346,57.0448,2.5067,0.1336,57.0581,2.4942,0.121,56.9634,2.4735,0.1171,56.9762,2.4776,0.1181,56.9651,2.4736,0.1409,56.8171,2.4121,0.136,56.7984,2.3968,0.1674,56.8095,2.4057,0.1143,56.6849,2.2715,0.1141,56.7014,2.2881,0.1075,56.701,2.2776,0.1115,56.6231,2.0363,0.1106,56.6254,2.0631,0.0998,56.6449,2.0459,0.1244,56.6154,1.9969,0.1273,56.6184,1.9686,0.1501,56.6289,1.9777,0.1347,56.6503,1.7668,0.1085,56.6593,1.7498,0.138,56.6516,1.8608,0.1399,56.6568,1.8303,0.1547,56.6627,1.8487,0.1803,56.5949,1.6031,0.1552,56.6896,1.6376,0.1419,56.723,1.6627,0.1571,56.6512,1.6751,0.1937,56.8532,1.7822,0.1882,56.8525,1.7808,0.2615,56.5938,1.466,0.2915,56.6053,1.4667,0.2938,56.6109,1.476,0.3932,56.9649,2.0915,0.3985,56.9632,2.0948,0.3497,56.9478,2.2688,0.3433,56.9501,2.2692,0.3326,56.9362,2.367,0.3416,56.9323,2.3737,0.3363,56.9848,2.4725,0.2844,56.8529,1.8839,0.3124,56.8294,1.9387,0.3494,56.8515,1.8262,0.3755,56.8246,1.8241,0.3592,56.8507,1.8376,0.314,56.8561,1.7987,0.3294,56.8521,1.7872,0.3342,56.8613,1.8145,0.2977,57.4107,2.3436,0.2993,57.4688,2.3307,0.294,57.4113,2.3504,0.2973,57.3671,2.3708,0.2996,57.3414,2.375,0.3005,57.3729,2.3593,0.3419,57.1635,2.4722,0.337,57.1603,2.4832,0.358,57.0064,2.4415,0.3436,57.1613,2.3916,0.337,57.2016,2.4483,0.2928,57.5053,2.3398,0.2738,57.5236,2.3398,0.256,57.5138,2.3634,0.2737,57.5257,2.3302,0.2504,57.5109,2.2866,0.24,57.5503,2.3348,0.2972,57.3679,2.3696,0.2743,57.3359,2.3958,0.2984,57.3993,2.259,0.3035,57.2772,2.3324,0.3067,57.2715,2.1613,0.2983,57.1532,2.4901,0.2833,57.1876,2.4711,0.2679,57.2203,2.4478,0.2278,57.2117,2.2929,0.2105,57.2308,2.2933,0.2734,57.2174,2.4611,0.249,57.2112,2.4762,0.3031,57.0582,2.5152,0.303,57.151,2.4981,0.2889,57.1842,2.4831,0.2565,57.2483,2.4386,0.2506,57.2403,2.4633,0.1923,57.3421,2.381,0.1991,57.3235,2.3853,0.1997,57.3353,2.3793,0.1793,57.3579,2.4902,0.1588,57.4263,2.4309,0.1764,57.3474,2.5131,0.1767,57.3343,2.5264,0.2569,57.2668,2.4648,0.2018,57.2915,2.4186,0.2532,57.2543,2.4753,0.2559,56.9651,2.5283,0.2343,56.9502,2.4813,0.2518,56.9727,2.5326,0.1673,57.1401,2.6465,0.1694,57.1352,2.644,0.2067,57.1862,2.5688,0.178,56.6222,1.5669,0.1636,56.6344,1.6032,0.168,56.7041,1.5999,0.1235,57.5523,2.4079,0.0937,57.5628,2.4012,0.0959,57.5394,2.4229,0.1806,56.6748,2.0528,0.2089,56.6905,2.0831,0.1838,56.6696,2.1108,0.1565,56.6691,1.9992,0.148,56.6737,1.9724,0.1441,56.7171,1.9678,0.1529,56.6986,2.0163,0.1771,56.6818,2.0482,0.164,56.6746,2.0232,0.2687,57.3333,2.3965,0.2692,57.3314,2.3954,0.2717,57.3331,2.394,0.2606,57.279,2.4537,0.2624,57.2768,2.4532,0.2806,57.3136,2.4039,0.2839,57.3142,2.4054,0.2766,57.3342,2.3963,0.3,57.0543,2.514,0.2713,57.3364,2.3957,0.4313,56.9971,1.8679,0.4339,56.9197,1.8479,0.3545,56.8627,1.9084,0.3335,56.8621,1.8943,0.2799,56.8364,1.7093,0.2828,56.8633,1.7883,0.3431,56.8662,1.8566,0.353,56.8621,1.8682,0.3505,56.8551,1.9211,0.3591,56.8564,1.9105,0.2202,57.14,2.5412,0.2001,57.2006,2.5444,0.1668,57.2936,2.5649,0.1742,57.2961,2.5708,0.4194,56.8791,2.0494,0.4069,56.8218,2.0339,0.3207,56.6997,1.5836,0.2928,56.7353,1.565,0.3248,56.8818,1.4716,0.1344,56.6355,1.9057,0.3061,57.0977,2.5075,0.3382,56.9745,2.4861,0.3061,57.1063,2.4979,0.4292,56.9003,1.8792,0.4227,56.9224,1.8578,0.424,56.918,1.8381,0.4234,56.9203,1.8481,0.4313,56.894,1.8575,0.1319,57.066,2.4789,0.1423,57.1194,2.5453,0.1648,56.785,2.3318,0.1594,56.8436,2.3605,0.1555,56.778,2.3396,0.2572,56.8394,2.4472,0.261,56.8499,2.3633,0.1191,56.969,2.4181,0.1793,57.035,2.4736,0.1444,56.6465,1.739,0.1431,56.6251,1.682,0.1441,56.6224,1.6713,0.1348,56.6585,1.6665,0.1172,56.6552,2.2257,0.1066,56.6736,2.2293,0.1025,56.6631,2.1721,0.135,56.6561,1.8298,0.1388,56.6502,1.7678,0.2209,56.5677,1.476,0.2271,56.5695,1.4755,0.2046,56.5734,1.5283,0.1346,57.0445,2.5071,0.1311,57.043,2.5087,0.1143,56.9549,2.4323,0.1214,56.9451,2.4497,0.143,56.8809,2.429,0.1703,56.7575,2.3519,0.1825,56.7346,2.2767,0.1842,56.7438,2.278,0.1918,56.7061,2.2478,0.162,56.8559,2.4455,0.1722,56.857,2.4437,0.1313,56.9503,2.467,0.2151,56.9178,2.3873,0.2009,56.9906,2.4201,0.1569,56.9015,2.3911,0.2052,56.7201,2.2368,0.1787,56.6671,2.1781,0.1598,56.6574,2.1781,0.1551,56.6455,2.1115,0.1888,56.7001,2.0595,0.1979,56.7089,2.0681,0.2405,56.7359,2.1586,0.2251,56.7422,2.2101,0.2259,56.7205,2.1993,0.1661,56.7403,2.0689,0.1705,56.7132,2.0379,0.1606,56.8774,2.0696,0.166,56.8776,2.0661,0.1948,56.8744,2.1245,0.1178,56.8194,2.1029,0.1929,56.873,2.1259,0.252,56.8307,2.1766,0.2497,56.7916,2.0556,0.1368,57.2917,2.6006,0.3689,56.7966,2.2102,0.331,56.8308,2.3586,0.4203,56.8286,1.8984,0.4132,56.8337,1.9304,0.402,56.8329,1.9406,0.3439,56.842,1.9266,0.3023,56.9101,2.4985,0.3056,56.8997,2.4927,0.3226,56.9256,2.5004,0.3272,56.9278,2.4983,0.2479,56.5665,1.438,0.2584,56.5691,1.4282,0.2566,56.5721,1.4343,0.2947,56.6058,1.4649,0.3892,56.7567,1.7083,0.3928,56.7583,1.7065,0.4209,56.8035,1.803,0.1827,56.5981,1.6014,0.3277,57.3824,2.0981,0.3179,57.3967,2.1189,0.3253,57.3611,2.1106,0.3481,57.3621,2.0265,0.3476,57.3591,2.0449,0.3516,57.3387,2.0214,0.2298,57.3426,1.7945,0.248,57.3964,1.8753,0.2729,57.392,1.8579,0.3107,57.1917,2.4814,0.311,57.1551,2.4959,0.3323,57.2021,2.4586,0.2889,57.2916,2.4176,0.2841,57.2927,2.4096,0.291,57.2707,2.4286,0.2994,57.2342,2.4489,0.3046,57.2325,2.4569,0.2942,57.2675,2.4363,0.2618,57.1716,2.1688,0.2433,57.2116,2.1344,0.2684,57.3312,2.3852,0.2199,57.3293,2.2718,0.227,57.2499,2.2666,0.2767,57.3126,2.3958,0.2703,57.3303,2.3861,0.2499,57.2568,2.2977,0.2701,57.1933,2.3129,0.3001,57.152,2.4899,0.3012,57.1544,2.489,0.266,57.3286,2.3875,0.215,57.324,2.2839,0.2317,57.039,2.4565,0.224,57.202,2.4604,0.2086,57.1986,2.4669,0.2338,57.2077,2.4671,0.2289,57.2193,2.4766,0.2444,57.2102,2.4751,0.2248,57.2408,2.1591,0.2096,57.2824,2.1847,0.2067,57.2876,2.1868,0.1785,57.334,2.1889,0.2026,57.3522,2.2553,0.1949,57.3544,2.2575,0.1879,57.3541,2.2625,0.1831,57.3515,2.2698,0.1617,57.2691,2.1864,0.1818,57.3469,2.2784,0.1841,57.3408,2.2868,0.1958,57.3178,2.1818,0.2172,57.3388,2.2619,0.1606,57.35,2.1968,0.1623,57.3348,2.1912,0.1968,57.3584,2.2627,0.2039,57.3551,2.2589,0.2091,57.3639,2.2589,0.1682,57.3669,2.1019,0.1307,57.254,2.108,0.1841,57.3772,2.0718,0.2269,57.3424,2.2761,0.2283,57.3473,2.2936,0.2526,57.3727,2.2721,0.2048,57.3719,2.2652,0.2315,57.4086,2.231,0.2168,57.4423,2.2877,0.2343,57.4421,2.3037,0.2098,57.3821,2.3051,0.2216,57.3676,2.3115,0.2158,57.3767,2.3114,0.253,57.4386,2.3169,0.2529,57.3761,2.2948,0.2807,57.4468,2.1681,0.2649,57.4665,2.1903,0.2768,57.4541,2.2063,0.2091,57.4603,2.1994,0.2263,57.5069,2.2639,0.2418,57.4947,2.2477,0.3151,57.392,2.1172,0.3247,57.3777,2.0967,0.2762,57.5116,2.3058,0.3023,57.5066,2.3203,0.3015,57.5056,2.3168,0.2085,57.4329,2.271,0.2369,57.4975,2.2666,0.2433,57.4924,2.2493,0.2456,57.3892,2.2376,0.2472,57.3853,2.2424,0.2862,57.4297,2.2105,0.2838,57.4407,2.2068,0.2782,57.4542,2.2122,0.2733,57.4696,2.2214,0.2712,57.4702,2.2153,0.2564,57.4824,2.2315,0.2995,57.4718,2.3188,0.2983,57.4717,2.3159,0.3924,57.1364,1.9745,0.2464,57.371,2.1642,0.2572,57.3199,2.1397,0.2338,57.32,2.1633,0.155,57.3439,2.1847,0.1563,57.4253,2.1713,0.2216,57.0639,2.5548,0.2291,57.0975,2.5065,0.2243,56.568,1.4632,0.2253,56.587,1.4535,0.2397,56.5714,1.4297,0.2147,57.3983,2.1916,0.2448,57.4222,2.1885,0.2148,57.3211,2.1862,0.3085,57.0575,1.5033,0.3082,56.9986,1.463,0.2952,57.3254,1.7805,0.3245,57.4002,1.9445,0.3333,57.3908,1.9582,0.3611,57.3321,1.9113,0.2898,57.422,2.1883,0.3111,57.361,2.1757,0.2372,57.4664,2.1963,0.2953,57.4937,2.3346,0.2333,57.4049,2.3596,0.2946,57.4688,2.3358,0.1835,57.3668,2.4254,0.1997,57.5193,2.3905,0.2128,57.1887,2.5111,0.2102,57.2047,2.499,0.1395,57.1302,2.5478,0.3993,57.0299,2.1394,0.3412,56.988,2.473,0.171,56.9765,2.431,0.2171,56.7717,2.1155,0.2164,56.8339,2.2553,0.2236,56.7832,2.2294,0.1514,56.6333,1.9747,0.227,56.6032,1.4514,0.2414,56.5727,1.4284,0.3366,56.9665,2.497,0.329,56.9382,2.5038,0.2559,56.8897,2.501,0.2539,56.8629,2.4728,0.3093,56.8538,2.395,0.3809,56.7536,1.6989,0.3473,56.7833,1.6991,0.3595,56.739,1.665,0.2838,56.8592,1.8348,0.1989,56.8297,1.9984,0.2179,56.8471,1.9301,0.2584,56.8033,1.9707,0.1628,56.8919,1.9783,0.1103,56.8429,1.947,0.3259,57.0039,1.7116,0.2881,57.0181,1.731,0.2932,56.9872,1.7015,0.3481,56.9193,1.6609,0.3587,56.9175,1.6571,0.3481,56.9622,1.6654,0.3505,56.9283,1.6827,0.3425,56.9269,1.6774,0.3372,56.9733,1.6922,0.3602,56.9711,1.6676,0.3547,56.964,1.6657,0.3606,56.9702,1.6699,0.3393,56.9682,1.6681,0.3305,56.9766,1.6704,0.3323,56.9778,1.6723,0.3576,56.9699,1.6591,0.3543,56.9624,1.6623,0.3575,56.9678,1.6564,0.3571,56.9636,1.6531,0.3657,56.943,1.661,0.3565,56.9197,1.6567,0.3044,56.9298,1.6509,0.3334,56.9257,1.6583,0.3366,56.8504,1.6221,0.308,56.864,1.6142,0.3102,56.9747,1.6546,0.3021,56.9627,1.6537,0.2932,56.9645,1.6437,0.32,56.9815,1.6475,0.3116,56.9774,1.6502,0.2945,56.9657,1.6348,0.3314,56.9807,1.6398,0.305,56.9608,1.6237,0.3419,56.9267,1.6785,0.3394,56.9241,1.6747,0.3403,56.9257,1.6742,0.3937,56.9225,1.6784,0.3916,56.9276,1.6848,0.3896,56.9299,1.6819,0.3412,56.9273,1.6795,0.3384,56.923,1.6759,0.3817,56.9301,1.6896,0.3655,56.9298,1.6866,0.3812,56.9295,1.6875,0.3775,56.9985,1.8412,0.4013,56.9996,1.8025,0.3911,56.9808,1.8188,0.3385,57.0378,1.8308,0.3419,57.0425,1.8269,0.3582,57.0201,1.8399,0.3454,57.015,1.8486,0.3574,56.9876,1.8497,0.3254,57.0346,1.8328,0.3324,57.0349,1.833,0.3233,56.9328,1.6964,0.3524,56.9088,1.6888,0.3429,56.917,1.6838,0.2967,56.9725,1.786,0.3102,56.957,1.7491,0.2838,56.9636,1.7278,0.3389,56.9238,1.6809,0.3164,56.9365,1.6874,0.3659,57.0528,1.7773,0.3445,57.0635,1.7657,0.3787,57.0357,1.7552,0.3375,57.0509,1.817,0.3379,57.0648,1.7935,0.3518,57.0565,1.7994,0.3981,56.9604,1.7234,0.3846,56.951,1.7033,0.4004,56.9473,1.7137,0.2773,57.2042,1.9597,0.2518,57.2169,1.9694,0.2522,57.2224,1.9746,0.3144,57.2092,1.9478,0.3127,57.2047,1.9435,0.2787,57.2054,1.9632,0.3058,57.2543,1.8886,0.3032,57.2322,1.8663,0.3128,57.2425,1.8957,0.321,57.2101,1.9136,0.335,57.3743,1.9748,0.3303,57.3853,1.9591,0.3106,57.2615,1.8933,0.2439,57.2073,1.9613,0.2331,57.2347,1.9639,0.2464,57.2347,1.9871,0.1701,57.2115,1.8785,0.207,57.185,1.9023,0.2894,57.1741,1.9386,0.3087,57.1816,1.9478,0.3094,57.1881,1.9244,0.2938,57.1676,1.9274,0.2351,57.3253,1.9098,0.2544,57.3236,1.9076,0.2345,57.3023,1.9291,0.2245,57.2459,1.9631,0.1718,57.2433,1.9528,0.2086,57.2419,1.964,0.2202,57.2109,1.9634,0.1684,57.2243,1.9055,0.2823,57.196,1.8619,0.2831,57.1721,1.8835,0.3017,57.1798,1.9023,0.2548,57.2124,2.0164,0.2775,57.2032,2.0266,0.2561,57.2213,1.9905,0.2555,57.2199,1.9862,0.2456,57.2142,1.9991,0.2281,57.2023,2.0027,0.2128,57.1851,1.9907,0.2248,57.1935,1.9875,0.2148,57.17,1.9523,0.2479,57.1714,1.9449,0.2424,57.1627,1.9344,0.1618,57.1922,1.9968,0.2296,57.4268,1.9888,0.2096,57.3817,1.9933,0.222,57.3844,1.9539,0.1933,57.1318,1.9437,0.2296,57.1379,1.9098,0.2198,57.1946,2.0102,0.1901,57.14,2.0212,0.1775,57.1366,1.9803,0.2894,57.1619,1.9144,0.2708,57.425,1.9439,0.2885,57.3147,1.8858,0.2926,57.4155,1.9353,0.2322,57.3096,1.9706,0.2346,57.2819,1.9414,0.2467,57.4304,1.9665,0.2558,57.329,1.9114,0.2498,57.4296,1.9631,0.3055,57.2836,1.8867,0.3216,57.3944,1.9457,0.2337,57.2391,1.9682,0.2352,57.287,1.939,0.2323,57.2795,1.9396,0.2272,57.2502,1.9634,0.3999,56.9891,1.7523,0.3819,56.9679,1.711,0.3938,56.9273,1.6944,0.3181,57.0496,1.8165,0.315,57.0456,1.8211,0.3019,57.0533,1.7958,0.3229,56.9424,1.6844,0.2744,56.9857,1.7617,0.2755,56.9695,1.7116,0.3191,57.0367,1.8302,0.3241,57.0124,1.8452,0.3658,56.9664,1.8219,0.4066,56.9743,1.7708,0.4058,56.9522,1.7352,0.3818,56.9303,1.6908,0.3418,56.915,1.672,0.3417,56.9185,1.6689,0.3965,56.9185,1.6839,0.3933,56.9268,1.6885,0.3418,56.9229,1.668,0.3024,56.9229,1.5787,0.2804,56.9212,1.5802,0.2805,56.9021,1.5644,0.2697,56.8874,1.5552,0.2821,56.9337,1.6331,0.3551,56.9604,1.6619,0.3594,56.9486,1.6651,0.3262,56.9709,1.6641,0.3151,56.9716,1.6594,0.3175,56.9757,1.6616,0.3569,56.9791,1.6574,0.3242,56.9845,1.6718,0.3274,56.986,1.676,0.3392,56.9695,1.6837,0.3402,56.9767,1.6982,0.3804,56.9299,1.6854,0.3472,56.9777,1.6976,0.3589,56.9794,1.695,0.3847,56.9238,1.6674,0.3908,56.9278,1.6755,0.3637,56.9771,1.6872,0.372,56.9192,1.6594,0.1346,56.885,1.9692,0.2919,56.8573,1.8418,0.3432,56.8005,2.0336,0.3627,56.8485,1.9097,0.2448,56.8668,2.3253,0.2711,56.9651,2.4984,0.2753,56.9607,2.5046,0.4042,56.9449,2.0962,0.3587,56.9352,2.259,0.2682,56.5879,1.4262,0.0908,56.6892,2.0354,0.0801,56.6831,1.975,0.237,57.0349,2.4705,0.2168,57.1789,2.4782,0.3082,57.2324,2.4578,0.347,56.9354,2.3731,0.4019,56.9683,2.0911,0.3667,57.0222,2.3561,0.3494,57.1611,2.1597,0.3188,57.2762,2.0942,0.1082,57.401,2.4419,0.1361,57.3484,2.5573,0.185,57.2646,2.5308,0.1954,57.2923,2.4398,0.184,57.3277,2.5038,0.2003,57.4164,2.3771,0.2922,57.2924,2.4182,0.3041,57.3083,2.3828,0.1068,57.6233,2.3434,0.211,57.5639,2.327,0.0672,57.4877,2.3392,0.3346,57.3613,2.083,0.3431,57.3573,1.8605,0.2012,57.3314,1.8457,0.2147,57.2972,1.7371,0.3352,57.1515,1.5533,0.3669,56.9966,1.5789,0.3842,57.0985,1.7819,0.2487,57.0511,2.4594,0.2645,57.0526,2.4777,0.1767,56.8123,2.4025,0.3073,57.3076,2.0702,0.154,57.4221,2.1651,0.277,57.2686,2.1137,0.2765,57.5099,2.3039,0.2517,57.5084,2.2863,0.2549,57.4088,2.3211,0.2513,57.3765,2.2529,0.2829,57.438,2.1973,0.2105,57.4286,2.2535,0.2585,57.4805,2.2359,0.298,57.4415,2.3118,0.2643,57.4121,2.1647,0.2874,57.4021,2.1409,0.2943,57.4173,2.1416,0.1878,57.3743,2.1943,0.2974,57.4226,2.1438,0.2211,57.4175,2.241,0.2391,57.398,2.235,0.2214,57.3467,2.2626,0.2141,57.3559,2.2566,0.2099,57.348,2.2558,0.1813,57.2334,2.1779,0.2061,57.3237,2.2933,0.1542,57.2983,2.1864,0.2726,56.9847,2.4787,0.2634,56.966,2.4762,0.2428,57.2646,2.4292,0.2453,57.2597,2.4246,0.2404,57.2665,2.4184,0.2445,57.2196,2.4866,0.2481,57.2262,2.4939,0.2426,57.2064,2.5063,0.2402,57.2133,2.4874,0.244,57.27,2.4313,0.2798,57.171,2.3279,0.2369,57.2448,2.4547,0.2376,57.242,2.4533,0.2405,57.2568,2.4403,0.2334,57.2318,2.4652,0.3094,57.1533,2.4972,0.3105,57.1504,2.4986,0.3026,57.2697,2.4363,0.3252,57.2388,2.4288,0.3121,57.2748,2.397,0.3071,57.1562,2.4939,0.3069,57.1926,2.4797,0.3277,57.3694,1.8508,0.3356,57.364,1.8561,0.3011,57.3827,1.85,0.338,57.3795,1.9742,0.355,57.3159,1.9975,0.1531,57.3896,2.0937,0.17,57.3946,2.056,0.1314,56.7182,1.6589,0.1494,56.6241,1.6726,0.1462,56.621,1.6724,0.1708,56.5926,1.6002,0.2308,56.5669,1.4646,0.2267,56.5661,1.4646,0.2421,56.5645,1.4352,0.4199,56.8253,1.8859,0.3014,56.8992,2.4917,0.3224,56.838,2.3822,0.2131,56.8732,2.1805,0.211,56.8718,2.181,0.152,56.7579,2.0768,0.2262,56.7096,2.1797,0.2225,56.7011,2.1528,0.2199,56.7003,2.1097,0.1639,56.6699,2.2478,0.1942,56.7481,2.2658,0.1796,56.7985,2.3069,0.1687,56.6912,2.2813,0.1561,56.6888,2.2846,0.174,56.8399,2.3253,0.1405,56.8079,2.3786,0.1399,56.882,2.3923,0.1446,56.8928,2.3985,0.2636,56.5868,1.4253,0.2625,56.6286,1.4493,0.0897,56.7319,2.0244,0.1037,56.9873,2.4448,0.0956,57.0048,2.4174,0.1148,56.9297,2.4317,0.1723,56.7663,2.3611,0.1628,56.7625,2.3662,0.4427,56.8697,1.7693,0.4035,56.8447,1.6681,0.4346,56.8957,1.7524,0.3545,56.9511,2.2729,0.3157,57.1024,2.5025,0.3099,57.1022,2.5013,0.1012,56.6506,2.1081,0.1532,56.634,2.0359,0.0883,56.7121,1.8995,0.0853,56.697,1.8251,0.0836,56.6903,1.9016,0.2557,56.569,1.421,0.192,57.0698,1.4309,0.3752,56.8324,1.9203,0.3837,56.8414,1.8738,0.4021,56.817,2.0321,0.254,57.2578,2.4439,0.2518,57.2528,2.4512,0.2529,57.2537,2.4389,0.1934,57.2151,2.5185,0.241,57.2071,2.507,0.2071,57.246,2.5508,0.2036,57.2554,2.5609,0.2042,57.2545,2.541,0.205,57.2568,2.5445,0.3247,56.8602,1.8213,0.3631,56.8615,1.8921,0.329,56.7257,1.6242,0.3543,56.7361,1.6571,0.2515,57.2571,2.4334,0.1032,56.6669,1.8317,0.0993,56.6526,1.9073,0.1064,56.7146,1.7422,0.1665,56.6466,2.0279,0.1571,57.2141,2.6505,0.2128,57.0765,2.5639,0.1996,57.352,2.3706,0.2496,57.2293,2.4697,0.1915,57.209,2.1915,0.1436,57.2049,2.1014,0.2905,57.4164,2.2227,0.209,57.5639,2.3362,0.2392,57.5496,2.3446,0.3054,57.309,2.3684,0.2981,57.4176,2.2972,0.3022,57.342,2.3628,0.3277,57.2393,2.4161,0.3122,57.2759,2.3828,0.3015,57.5036,2.3302,0.3341,56.8611,1.91,0.3429,56.8574,1.9174,0.3723,56.852,1.8737,0.3683,56.8493,1.8599,0.35,56.8359,1.7952,0.3546,56.803,2.0348,0.3929,56.8136,2.03,0.3329,56.9849,2.4691,0.3028,57.1509,2.4926,0.3042,57.1525,2.4941,0.2315,56.5727,1.477,0.2345,56.5695,1.4654,0.2511,56.5877,1.4662,0.186,56.5934,1.5916,0.2335,56.6675,1.5792,0.1319,56.6277,1.9314,0.1524,56.6417,1.9156,0.1192,56.62,2.0626,0.1212,56.6174,2.0351,0.1147,56.6246,1.9652,0.1132,56.6215,1.995,0.0979,56.6432,1.9758,0.1202,56.6418,2.1911,0.1184,56.6365,2.1685,0.1174,56.6661,2.2463,0.1497,56.8654,2.4473,0.15,56.8462,2.4371,0.1319,57.0545,2.5144,0.1273,57.0441,2.5076,0.1295,57.0556,2.5133,0.1258,56.9702,2.4733,0.1519,57.13,2.6367,0.1501,57.1416,2.6409,0.1326,57.2135,2.6535,0.1325,57.2244,2.6497,0.1325,57.3064,2.5537,0.2782,56.862,2.4769,0.2742,56.8514,2.4642,0.2773,56.8661,2.4808,0.405,56.8173,2.0605,0.4,56.8021,1.8136,0.4021,56.8068,1.8269,0.4253,56.8103,1.8134,0.4234,56.806,1.8014,0.3751,56.7445,1.6599,0.3683,56.7409,1.6497,0.3607,56.7636,1.64,0.3203,56.6971,1.5852,0.3423,57.369,1.9905,0.3366,57.2818,2.036,0.3438,57.2856,2.0152,0.2944,57.4209,1.9344,0.177,57.4468,2.2005,0.168,56.6516,2.0263,0.2454,56.5641,1.4356,0.2581,56.5681,1.4238,0.3251,56.9325,2.5039,0.141,57.2157,2.6558,0.1427,57.2085,2.6564,0.1574,57.2067,2.6517,0.1459,57.1983,2.6561,0.163,57.151,2.6498,0.2657,56.895,2.5088,0.2666,56.868,2.4827,0.2741,56.8725,2.487,0.2707,56.8476,2.4609,0.2863,56.8153,2.4108,0.1981,57.3788,2.0348,0.4299,56.9163,1.8422,0.4279,56.9169,1.8408,0.4417,56.8938,1.7583,0.3517,56.7985,2.0545,0.3014,57.1781,1.9588,0.3151,57.147,1.9091,0.2266,57.0294,1.8724,0.2485,57.0531,1.8644,0.2339,57.0889,1.8773,0.2379,57.2098,2.0114,0.3076,57.154,2.05,0.2652,57.15,2.0615,0.183,57.1001,1.9716,0.194,57.099,1.9326,0.351,57.1214,2.0128,0.2737,56.9309,1.9647,0.3092,56.9624,1.9733,0.3007,56.9594,1.9579,0.2933,56.9401,1.97,0.2472,57.1653,1.9386,0.2433,57.1554,1.9258,0.2688,57.2562,1.8231,0.2383,57.1621,1.9007,0.2564,57.1587,1.8982,0.1722,57.2558,1.8203,0.2176,57.251,1.8126,0.1697,57.2278,1.8362,0.2248,57.1968,1.8535,0.2215,57.2233,1.8309,0.1625,57.2417,1.8645,0.1646,57.2552,1.8943,0.1719,57.2744,1.9369,0.2472,57.1665,1.9364,0.3701,57.1263,1.8155,0.3566,57.118,1.8241,0.3572,57.0968,1.8128,0.3141,57.1023,1.8662,0.3319,57.123,1.8531,0.3864,57.0264,1.818,0.4007,57.0229,1.8059,0.3968,57.0223,1.8046,0.3907,57.0354,1.8187,0.3913,57.0449,1.8078,0.4043,57.0037,1.8127,0.3986,57.0041,1.8203,0.4007,57.0052,1.8238,0.4225,56.9269,1.844,0.4225,56.9297,1.8487,0.425,56.9306,1.8487,0.4251,56.9278,1.8441,0.4228,56.9226,1.8476,0.4238,56.9223,1.8467,0.4249,56.925,1.8517,0.4271,56.9233,1.8477,0.4272,56.9217,1.8474,0.4286,56.9187,1.8509,0.4258,56.9215,1.8591,0.4283,56.9188,1.8508,0.428,56.9192,1.8524,0.4281,56.9192,1.8507,0.424,56.9208,1.8519,0.4242,56.921,1.8518,0.4253,56.9209,1.8533,0.4236,56.9209,1.8502,0.4236,56.9206,1.8502,0.4238,56.9202,1.8485,0.4278,56.9184,1.8481,0.4276,56.919,1.8484,0.4271,56.9191,1.8478,0.3549,56.8011,2.0481,0.3546,56.8022,2.0417,0.3548,56.8018,2.0416,0.3454,56.7973,2.0505,0.355,56.8019,2.0415,0.3145,56.8607,1.8665,0.3125,56.8608,1.8605,0.3176,56.8617,1.8638,0.3214,56.8625,1.865,0.3338,56.8616,1.9025,0.2773,57.0324,1.7942,0.2007,57.1974,1.691,0.2216,57.2374,1.7157,0.2134,57.2354,1.7144,0.2942,57.0677,1.7409};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=3 */
		private double[] getethmoid2_Coord_6_115_point_3()
		{
			double[] value = {0.2465,57.0207,1.7644,0.1594,57.1627,1.7403,0.1629,57.1307,1.7545,0.1809,57.1106,1.7261,0.1877,57.0792,1.7268,0.1538,57.1685,1.825,0.1529,57.1525,1.7925,0.1511,57.1843,1.771,0.2621,57.2848,1.7626,0.204,57.2734,1.7778,0.2145,57.2604,1.7417,0.3315,57.0805,1.7664,0.2725,57.0438,1.7577,0.3382,56.8935,1.8708,0.3251,56.8832,1.9165,0.3274,56.8825,1.9135,0.3732,56.9251,1.9899,0.3211,56.8777,1.8878,0.3209,56.8614,1.8766,0.2718,56.948,1.8861,0.2678,56.9808,1.836,0.3463,56.9549,1.9225,0.2823,56.9829,1.8148,0.2787,56.9817,1.8102,0.2988,56.9471,1.7813,0.2813,56.9297,1.9151,0.2749,56.9395,1.8996,0.3462,56.9427,1.8812,0.3624,56.9505,1.958,0.3249,56.9415,1.8195,0.3028,56.9401,1.7822,0.3045,56.9484,1.9565,0.2735,56.9158,1.8772,0.2617,56.9341,1.851,0.337,56.9622,1.9928,0.3549,56.9642,1.9848,0.2932,56.9178,1.7848,0.3159,56.9165,1.8092,0.3062,56.9325,1.7868,0.2598,56.9362,1.806,0.2671,56.9208,1.8243,0.2746,56.9216,1.7915,0.2762,57.0219,1.8216,0.2745,57.0116,1.8194,0.2728,57.012,1.8225,0.2855,56.9851,1.8265,0.2837,56.9856,1.8307,0.3205,56.8686,1.8903,0.3182,56.8687,1.8874,0.3162,56.8771,1.8888,0.3205,56.8761,1.8937,0.3213,56.8763,1.8907,0.3231,56.8682,1.8901,0.3222,56.8697,1.8834,0.3099,57.0634,1.6264,0.3359,57.0879,1.6511,0.3514,57.0578,1.6649,0.2685,57.0807,1.6038,0.2736,57.0467,1.6167,0.3297,57.0278,1.6373,0.2893,57.0146,1.6279,0.2292,57.0126,1.6375,0.184,57.0544,1.6521,0.1784,57.1593,1.6598,0.1722,57.1243,1.6824,0.2077,57.0167,1.6982,0.2549,57.0151,1.728,0.2488,57.185,1.6509,0.1901,57.137,1.7028,0.2195,57.134,1.7018,0.1963,57.0909,1.7057,0.2343,57.0934,1.7025,0.2557,57.0558,1.727,0.2529,57.1874,1.6521,0.2424,57.1816,1.6724,0.2726,57.0978,1.6963,0.2778,57.079,1.7129,0.2931,57.0496,1.7541,0.2722,57.1841,1.6658,0.274,57.1899,1.654,0.2585,57.1914,1.6609,0.2571,57.1877,1.6511,0.3314,57.067,1.716,0.3003,56.9696,1.6738,0.2777,56.9681,1.685,0.2694,56.9652,1.6813,0.2549,56.9766,1.6826,0.1934,57.0244,1.6598,0.2143,56.9948,1.6682,0.2871,56.9694,1.6836,0.2683,56.9419,1.5434,0.2667,56.9375,1.5253,0.278,56.9105,1.5233,0.228,56.9649,1.5186,0.2392,56.9656,1.525,0.2112,56.9651,1.5201,0.215,56.9838,1.5236,0.2221,56.9661,1.5556,0.2065,56.9665,1.5562,0.2064,56.985,1.5505,0.27,56.8481,1.5875,0.2705,56.8328,1.5823,0.216,56.994,1.5386,0.2302,56.9857,1.5401,0.2185,56.9853,1.5475,0.2081,56.9925,1.5336,0.2045,56.984,1.5315,0.2187,56.9919,1.527,0.2676,56.8289,1.5804,0.2911,56.9765,1.5792,0.2661,56.9371,1.5903,0.2785,56.9679,1.5607,0.2636,56.9618,1.5521,0.2321,57.0099,1.5199,0.217,57.0145,1.5416,0.1921,57.0502,1.5738,0.2122,57.035,1.5341,0.1972,57.0271,1.5809,0.202,57.0667,1.6046,0.1859,57.0761,1.5896,0.2156,56.9627,1.6048,0.2099,57.0708,1.6104,0.218,57.0496,1.6227,0.2261,56.9891,1.6262,0.2446,57.0495,1.6149,0.2722,57.0491,1.6029,0.2806,57.0019,1.6164,0.2864,57.0644,1.5716,0.2796,57.068,1.5819,0.2881,57.0491,1.5953,0.2957,57.0041,1.6102,0.2598,57.1245,1.598,0.2588,57.1136,1.5803,0.2715,57.1065,1.5827,0.2375,57.0474,1.5124,0.2735,57.0684,1.5495,0.2733,57.0957,1.577,0.2586,57.0951,1.6027,0.2652,57.1208,1.6017,0.2655,57.1732,2.2969,0.1743,57.2016,2.1385,0.2268,56.9664,2.2769,0.2165,56.9516,2.2349,0.2107,56.9522,2.2332,0.2457,57.1603,2.2407,0.1994,57.1829,2.153,0.2244,57.1753,2.1258,0.1807,57.1737,2.1069,0.1902,57.1706,2.0972,0.1797,57.1812,2.1347,0.2201,57.1788,2.1418,0.211,57.1818,2.1518,0.3508,56.9281,1.619,0.347,56.9049,1.6016,0.3256,56.9169,1.5865,0.343,56.8261,1.5522,0.3542,56.8253,1.5782,0.2727,56.8837,1.5219,0.3092,56.9428,1.7028,0.1552,56.8146,1.7338,0.329,56.8028,1.5434,0.3185,56.8,1.542,0.3292,56.8072,1.5387,0.3224,56.8026,1.5352,0.3036,56.8094,1.531,0.3063,56.8218,1.5361,0.3119,56.8015,1.5422,0.3182,56.7984,1.5417,0.3012,56.8066,1.5378,0.3052,56.8043,1.54,0.3159,56.7902,1.5509,0.3156,56.7841,1.5655,0.3024,56.7885,1.5481,0.3078,56.7874,1.5659,0.3131,56.7761,1.5786,0.3149,56.7817,1.5644,0.3186,56.7755,1.5819,0.3198,56.7769,1.5832,0.4126,56.8537,1.6081,0.3959,56.8394,1.6602,0.3129,56.7792,1.5826,0.3157,56.7827,1.5856,0.3117,56.7773,1.5812,0.3124,56.7779,1.5815,0.312,56.7772,1.5811,0.3129,56.7774,1.5801,0.3237,56.7786,1.5849,0.3184,56.7762,1.5851,0.312,56.7782,1.5817,0.3151,56.7748,1.5823,0.315,56.7744,1.5824,0.3169,56.7752,1.584,0.3132,56.7784,1.5823,0.3129,56.7786,1.5825,0.3121,56.7779,1.5817,0.3989,56.8462,1.6536,0.3993,56.8459,1.6519,0.4009,56.8421,1.6576,0.3956,56.8429,1.654,0.3961,56.8403,1.6554,0.3952,56.839,1.6536,0.3986,56.8354,1.6613,0.3995,56.8392,1.6589,0.384,56.8315,1.648,0.3924,56.8343,1.656,0.3976,56.8344,1.6603,0.3976,56.8342,1.6605,0.394,56.838,1.6582,0.2141,56.7289,1.5567,0.2735,56.8257,1.5772,0.2731,56.8153,1.5625,0.2719,56.8232,1.576,0.2193,56.851,1.5373,0.2938,56.9106,1.6429,0.2915,56.9122,1.6515,0.2683,56.9269,1.638,0.2938,56.9038,1.6338,0.2518,56.915,1.6205,0.237,56.8991,1.6092,0.2915,56.8943,1.6279,0.2565,56.8683,1.6671,0.2547,56.8921,1.6588,0.2799,56.9621,1.6844,0.2742,56.9604,1.6822,0.2841,56.9572,1.6833,0.2766,56.9444,1.6809,0.2826,56.9582,1.6849,0.2694,56.9476,1.6816,0.2642,56.9393,1.6785,0.2718,56.9424,1.6721,0.142,56.9259,1.6582,0.2761,56.8292,1.6877,0.1484,56.8131,1.6415,0.2137,56.8297,1.6543,0.2612,56.9347,1.676,0.2594,56.9376,1.6836,0.2569,56.9494,1.7031,0.2599,56.9431,1.6821,0.2647,56.9413,1.6612,0.2644,56.9355,1.6625,0.3007,56.8102,1.6621,0.2644,56.8618,1.5923,0.2359,56.8535,1.5863,0.2359,56.85,1.5836,0.234,56.8543,1.584,0.2817,56.8641,1.5974,0.2658,56.8844,1.6011,0.2769,56.8674,1.604,0.2756,56.8555,1.5997,0.2694,56.8609,1.5963,0.2752,56.8626,1.6047,0.2658,56.8629,1.5949,0.268,56.8562,1.5919,0.2833,56.8551,1.6105,0.2794,56.8534,1.6041,0.2699,56.8639,1.5997,0.2693,56.8638,1.5996,0.2749,56.8626,1.6055,0.2737,56.8548,1.5965,0.2732,56.8535,1.5961,0.2686,56.8608,1.5961,0.2696,56.8577,1.5948,0.1551,57.4275,2.1599,0.0252,57.3931,2.0817,0.107,57.1332,2.2937,0.0951,57.0826,2.3109,0.1057,57.1543,2.3735,0.1023,57.1104,2.2194,0.1131,57.0959,2.1562,0.0903,57.0206,2.1868,0.1385,56.9332,1.9508,0.1226,56.9573,2.0132,0.1463,57.0692,1.9837,0.0901,56.7543,1.7923,0.0981,56.7481,1.7653,0.057,57.2158,1.6366,0.1242,57.1983,1.634,0.0569,57.5422,2.4184,0.0721,57.6176,2.3651,0.1435,57.0079,1.7338,0.1421,57.0117,1.7108,0.1275,57.3667,2.0706,0.1139,57.2376,2.0603,0.0895,56.9768,1.7896,0.0974,56.9615,1.7625,0.1101,56.9414,1.7672,0.104,57.2193,2.402,0.1071,57.24,2.4428,0.0961,57.3463,2.4431,0.0,57.5019,2.0636,0.0,57.5037,2.0613,0.1154,56.7998,1.7077,0.1194,56.8251,1.6898,0.1389,56.7961,1.641,0.2064,56.9429,1.5888,0.1514,56.8647,1.7005,0.16,56.8839,1.7087,0.1278,57.2365,1.8031,0.1305,57.2497,1.8607,0.1204,57.2382,1.8039,0.1272,57.2609,1.996,0.1008,56.8738,1.975,0.0837,56.8038,2.0005,0.0802,56.9769,2.3057,0.0864,56.9042,2.3304,0.0941,56.9431,2.3584,0.1031,57.1269,2.4333,0.0885,57.0792,2.3939,0.1782,56.8606,1.6909,0.1205,56.9879,2.0759,0.1016,57.0587,1.9135,0.1118,56.9979,1.8698,0.1288,57.2157,2.0638,0.1249,57.2071,2.0405,0.1193,57.197,2.014,0.1132,56.9656,1.7895,0.1578,57.0018,1.6746,0.158,56.9979,1.6623,0.106,57.2948,1.7263,0.1287,57.2312,1.6619,0.1041,57.1402,1.7512,0.18,56.9651,1.6034,0.183,56.9002,1.6212,0.0897,57.4338,2.3782,0.1103,57.3879,2.1248,0.0955,57.0432,1.774,0.1136,56.9427,1.6813,0.1105,56.9437,1.6906,0.1191,56.9408,1.6612,0.1728,56.9151,1.6184,0.1545,56.919,1.6347,0.1587,56.9047,1.6376,0.1574,56.8832,1.7126,0.2047,57.0101,1.558,0.2059,57.0107,1.5593,0.1677,56.9896,1.5915,0.1804,56.9083,1.6084,0.1832,56.8868,1.6082,0.1967,56.9628,1.5729,0.1928,56.9692,1.5741,0.1349,57.252,1.9284,0.1512,57.0517,1.5823,0.1571,56.9984,1.6677,0.1291,57.0817,2.1022,0.1033,57.202,2.3548,0.1162,57.1837,2.2764,0.1095,56.7417,1.7312,0.0852,57.0842,1.9892,0.0417,57.1141,1.4839,0.1503,56.9263,1.5968,0.1406,56.9274,1.5902,0.1153,57.0826,1.6565,0.1548,56.9501,1.5863,0.1692,56.8974,1.5694,0.1179,56.9464,1.6599,0.1108,57.0359,1.7104,0.1087,57.0675,1.636,0.2176,56.8424,1.5223,0.2445,56.7771,1.5301,0.2448,56.7785,1.5276,0.2898,56.7474,1.5546,0.0254,56.7018,2.2988,0.026,56.975,2.4323,0.0259,56.9458,1.5214,0.0,56.6674,2.1308,0.017,56.6874,2.2915,0.0,56.7079,2.3959,0.0,56.6924,2.3571,0.0104,56.6501,1.9289,0.0288,57.0425,2.4664,0.0242,56.6929,2.1038,0.0553,57.2048,1.6223,0.0305,56.7141,2.295,0.0314,56.7518,2.2904,0.036,57.1969,2.1965,0.0763,57.2998,1.8495,0.0329,57.1096,1.9126,0.029,57.1032,1.863,0.0284,57.0888,1.7928,0.0377,57.0552,1.7284,0.0577,57.2392,1.6608,0.0299,57.2353,2.4901,0.0,57.4206,2.5691,0.0234,57.3378,2.5416,0.0372,57.421,2.5152,0.0125,56.6762,2.2512,0.0107,56.672,2.2382,0.0,56.6697,2.1725,0.0,56.6588,2.0164,-0.0003,57.2966,2.5631,-0.0003,57.2843,2.5621,0.0246,57.2043,2.5141,0.0244,57.2164,2.5168,-0.0,57.4078,2.5717,0.0375,57.0456,1.7144,0.0637,57.4089,2.1958,0.0,57.1409,1.4694,0.0,57.7563,2.3396,0.0189,57.7195,2.2763,0.059,57.6641,2.3529,0.0397,57.5934,2.3565,0.0541,57.4218,2.3221,0.0,57.4935,2.5317,0.0689,57.299,1.7264,0.0676,57.3053,1.8001,0.0,56.65,2.0996,0.0272,56.7756,2.3459,0.0188,56.9486,2.4169,0.0254,56.729,2.3243,0.3135,56.7719,1.5807,0.3121,56.7733,1.5804,0.2032,56.8583,1.5886,0.2065,56.8333,1.5379,0.1756,56.8974,1.58,0.1125,56.9485,1.6807,0.1093,56.9495,1.6899,0.1107,57.1086,1.6909,0.2525,56.9575,1.7188,0.1396,56.9237,1.6206,0.1527,56.9938,1.6515,0.2135,56.8503,1.5872,0.1382,57.1449,1.6921,0.0836,57.4226,2.3263,0.1722,56.9088,1.6333,0.2265,56.8332,1.6074,0.0987,57.0317,1.8578,0.109,56.9723,1.7804,0.1485,56.8642,1.7047,0.1074,56.8767,2.3776,0.0798,57.0094,2.3338,0.0916,56.8114,2.0653,0.123,57.2498,1.8605,0.2308,56.8133,1.6274,0.1937,56.9183,1.6868,0.2551,56.9058,1.6622,0.0,57.6048,2.1146,0.0994,56.9494,1.8003,0.0321,57.5168,2.4496,0.0896,56.7304,1.9698,0.1473,57.0479,1.9189,0.0902,57.0416,2.241,0.1561,57.4318,2.1744,0.1533,57.4289,2.1677,0.2786,56.8618,1.6097,0.267,56.8853,1.6038,0.2801,56.8668,1.6032,0.2655,56.8336,1.5879,0.2608,56.8316,1.5875,0.2457,56.797,1.6042,0.2478,56.9578,1.6689,0.2621,56.9504,1.6733,0.2623,56.9291,1.6713,0.1821,56.8507,1.6834,0.2665,56.9511,1.6747,0.2758,56.9461,1.683,0.2658,56.9525,1.6773,0.2667,56.9524,1.679,0.2798,56.9584,1.6851,0.1907,56.9383,1.6773,0.2477,56.9695,1.7131,0.1698,56.7733,1.5951,0.3987,56.8352,1.6617,0.3997,56.8379,1.6579,0.3952,56.8418,1.6524,0.3117,56.7766,1.5807,0.3183,56.7768,1.5854,0.3107,56.7746,1.5801,0.3173,56.7811,1.5861,0.3133,56.778,1.5806,0.2799,56.6798,1.4934,0.3123,56.7994,1.5431,0.3226,56.8005,1.5394,0.3007,56.9459,1.6917,0.2591,56.8777,1.5119,0.3612,56.9178,1.6375,0.2029,57.1692,2.0939,0.2106,56.9689,2.2689,0.2698,56.8532,1.5918,0.2345,57.0573,1.5193,0.2944,57.044,1.5817,0.2491,56.9354,1.6093,0.236,56.9859,1.5307,0.2236,56.9934,1.5323,0.2457,56.8877,1.5816,0.2783,56.9127,1.5443,0.2706,56.9573,1.6674,0.2742,56.9547,1.672,0.2758,56.9552,1.673,0.2673,56.9572,1.6781,0.3507,57.0781,1.6871,0.26,57.1857,1.6481,0.2457,57.181,1.6477,0.2222,57.0414,1.6279,0.3231,56.8693,1.887,0.3182,56.8766,1.8924,0.312,56.8997,1.8178,0.2729,57.0246,1.8267,0.271,56.9346,1.78,0.2883,56.9324,1.7735,0.3532,56.9325,1.8977,0.2759,56.984,1.8445,0.3177,56.859,1.8928,0.3174,56.859,1.8922,0.3209,56.8604,1.8872,0.3225,56.8617,1.8776,0.2226,57.2591,1.7394,0.1592,57.202,1.7996,0.1739,57.0986,1.7563,0.1816,57.1451,1.7183,0.2594,57.2168,1.6872,0.3114,56.8596,1.8723,0.3559,56.7998,2.055,0.3433,56.799,2.0403,0.348,56.7979,2.0517,0.4251,56.9207,1.8536,0.4232,56.9207,1.85,0.426,56.9175,1.8394,0.426,56.9251,1.8514,0.4237,56.9246,1.8512,0.4238,56.9304,1.8491,0.4239,56.9272,1.8437,0.3915,57.0406,1.8161,0.3947,57.0205,1.8168,0.3858,57.0456,1.8072,0.3852,57.0448,1.8115,0.3837,57.0472,1.8081,0.3281,57.1373,1.858,0.198,57.3033,1.8422,0.2667,57.1601,1.9269,0.1722,57.3045,1.9251,0.2024,57.304,1.9292,0.2553,57.1723,1.8758,0.2769,57.2257,1.8415,0.2546,57.1701,1.9451,0.3048,56.8806,2.0021,0.3412,56.8125,2.0322,0.3087,56.8825,2.0029,0.2441,57.0116,2.0171,0.2649,56.9316,1.9828,0.2964,56.944,1.9784,0.2877,57.204,2.0032,0.3365,57.0053,1.997,0.2567,57.2023,2.027,0.3019,56.9682,1.9146,0.2364,56.9785,1.9155,0.2525,56.959,1.9485,0.2359,57.1991,2.021,0.2059,57.0518,1.9017,0.2741,57.1072,1.8814,0.2278,57.1053,1.8986,0.2564,56.897,2.5065,0.2597,56.8991,2.5107,0.2618,56.8929,2.5077,0.2385,57.0106,2.5515,0.2442,57.0114,2.5543,0.156,57.146,2.6466,0.1381,57.1955,2.653,0.1547,56.6467,1.9151,0.3109,57.4087,1.9364,0.2265,57.3427,1.7971,0.1092,56.6308,2.1047,0.1127,56.6271,2.1053,0.1101,56.6314,2.1294,0.3295,56.72,1.6116,0.4093,56.8329,1.9561,0.3702,56.7899,2.1699,0.247,56.9936,2.5465,0.2567,56.9635,2.5301,0.1341,57.2071,2.6541,0.1719,57.1253,2.6348,0.1156,57.0887,2.4723,0.1088,56.7568,2.3501,0.1106,56.7728,2.3654,0.0961,56.7703,2.3447,0.1273,56.7685,2.3727,0.1255,56.7526,2.3573,0.1164,56.8642,2.4119,0.1339,56.8506,2.4295,0.1339,56.8694,2.438,0.1312,56.6955,2.2935,0.1295,56.6795,2.2766,0.1307,56.6568,1.8291,0.1431,56.6518,1.7681,0.1814,56.59,1.5911,0.3043,56.6376,1.5147,0.3058,56.6457,1.5266,0.2568,56.6193,1.511,0.4243,56.922,1.8585,0.2505,57.2514,2.4254,0.2104,57.3341,2.3805,0.1585,57.3534,2.528,0.1079,57.3348,2.4698,0.2506,57.2622,2.4391,0.2064,57.2514,2.5507,0.4174,56.9918,1.7847,0.1004,56.7006,2.0963,0.1486,56.7685,2.3415,0.2037,56.6041,1.4966,0.2079,56.6261,1.4949,0.2197,56.5942,1.4642,0.1098,56.6421,1.9108,0.1026,56.7621,2.2697,0.1054,56.7208,2.2708,0.0959,56.7873,2.3236,0.2767,56.6239,1.4506,0.1389,56.8531,2.4091,0.1993,56.681,2.1647,0.2002,56.7304,2.0814,0.3508,56.8022,2.0344,0.2918,56.831,2.3284,0.2642,56.5756,1.4341,0.2752,56.5803,1.4368,0.3802,56.8322,1.8483,0.3452,57.3649,2.0084,0.3015,57.1946,2.4718,0.2485,57.2336,2.4787,0.2406,57.2575,2.4434,0.2599,57.2726,2.4476,0.2081,57.234,2.2902,0.1892,57.3341,2.2934,0.1974,57.3282,2.2952,0.1788,57.2353,2.1796,0.2108,57.35,2.2583,0.2884,57.4221,2.2252,0.2023,57.3786,2.2745,0.2497,57.2724,2.1381,0.2919,57.4461,2.3027,0.3344,57.3646,2.072,0.2936,57.415,2.2595,0.205,57.2497,2.4613,0.1549,56.7646,2.3503,0.3101,56.8585,1.8839,0.3085,56.8575,1.8947,0.147,56.7819,1.8527,0.361,56.9686,1.6712,0.3644,56.973,1.678,0.3383,56.9757,1.6968,0.341,56.9671,1.6715,0.3426,56.965,1.6733,0.3374,56.9653,1.6661,0.3546,56.9755,1.6508,0.3251,56.9687,1.6636,0.3644,56.9434,1.6521,0.3191,56.9582,1.6626,0.2892,56.9414,1.5972,0.3439,56.978,1.6413,0.3215,56.9633,1.6218,0.339,56.9598,1.6274,0.3229,56.9828,1.8389,0.3047,57.0168,1.8337,0.2713,56.9999,1.7418,0.3413,56.9275,1.6807,0.2918,57.0395,1.805,0.3183,57.035,1.7311,0.3802,57.0039,1.7301,0.2358,57.2868,1.9349,0.2794,57.3045,1.8639,0.2924,57.2765,1.8752,0.3085,57.4031,1.9375,0.2258,57.1675,1.9093,0.2719,57.314,1.8854,0.2752,57.1587,1.9032,0.2314,57.1842,1.9611,0.2035,57.1907,1.9187,0.2052,57.2052,1.9448,0.2049,57.2736,1.9424,0.3108,57.2007,1.8851,0.2553,57.3216,1.9021,0.3311,57.0526,1.8141,0.3517,57.0419,1.7392,0.3239,57.0522,1.814,0.3202,57.0631,1.7916,0.3383,56.9264,1.71,0.3635,57.0306,1.8264,0.3844,57.0145,1.8205,0.4113,56.8287,1.8951,0.3433,56.7975,2.0469,0.3545,56.785,1.6272,0.2728,57.2915,1.7381,0.3446,57.0697,1.5883,0.2398,56.5669,1.433,0.1762,57.4404,2.1971,0.2876,57.4225,2.2572,0.2113,57.4219,2.0241,0.2049,57.3844,2.296,0.2281,57.2771,2.1618,0.2615,57.3343,1.7877,0.3375,57.3694,2.073,0.1673,57.4265,2.1314,0.4049,56.8013,1.8139,0.165,56.871,2.3598,0.1318,56.8853,2.4112,0.2003,56.5726,1.5271,0.1141,56.6443,2.1892,0.1684,56.5947,1.5993,0.147,56.6281,1.6823,0.1411,56.8289,2.3637,0.2989,56.8584,1.817,0.2739,57.3317,2.3946,0.303,57.1485,2.4932,0.3026,57.1522,2.4965,0.1458,56.7042,1.8882,0.1468,56.7164,1.8516,0.2496,57.2416,2.485,0.2462,57.2287,2.4938,0.3599,57.0104,2.4286,0.2455,56.6111,1.5108,0.2045,56.5796,1.5432,0.2085,56.5763,1.5295,0.1232,56.6401,1.904,0.116,56.6286,2.1254,0.1162,56.6256,2.1059,0.1267,56.6619,2.25,0.1242,56.6517,2.2287,0.1127,56.6387,2.1669,0.1198,56.8027,2.3892,0.1249,56.8214,2.4044,0.1066,56.8173,2.3785,0.1129,56.9641,2.4703,0.113,56.9762,2.4753,0.3555,56.8008,2.0483,0.3918,56.8087,2.0558,0.4117,56.8257,1.8827,0.3849,56.7576,1.7088,0.3106,56.6859,1.5773,0.2957,56.6085,1.4619,0.2237,57.3891,1.9132,0.2052,57.0727,2.5622,0.26,56.8481,2.4606,0.3502,57.1207,1.93,0.3176,57.1127,1.8926,0.3527,57.1037,1.9113,0.2688,57.1532,1.9236,0.1986,57.0751,1.9241,0.3659,57.0961,1.9694,0.2834,56.972,2.0075,0.2887,56.9366,1.964,0.2954,56.9474,1.9902,0.3334,56.9866,1.958,0.2889,57.0175,2.033,0.3015,56.8838,2.017,0.2436,57.2802,1.8044,0.2499,57.1962,1.8531,0.2142,57.3348,1.8762,0.2531,57.1864,1.9494,0.3048,57.1652,1.8877,0.343,57.083,1.8247,0.3723,57.1428,1.8348,0.4262,56.9296,1.8462,0.4268,56.9203,1.8535,0.3528,56.802,2.0379,0.3526,56.8023,2.0382,0.3453,56.8003,2.0371,0.2198,57.1055,1.7179,0.1976,57.1516,1.8578,0.3099,56.8875,1.8671,0.3152,56.8848,1.9009,0.3198,56.861,1.8778,0.3164,56.87,1.8767,0.2597,56.9648,1.8058,0.2563,56.9495,1.8001,0.2669,56.9482,1.7784,0.2851,56.9849,1.8508,0.2695,57.0115,1.8235,0.2667,57.0259,1.8282,0.2551,57.0155,1.7962,0.2598,57.1775,1.6398,0.2762,57.1499,1.6288,0.2455,57.1727,1.6393,0.2101,57.1402,1.637,0.2026,57.1693,1.651,0.3074,57.136,1.6721,0.2601,56.9029,1.5126,0.2415,56.9024,1.5785,0.2369,56.9665,1.5489,0.2676,56.9105,1.5663,0.2559,56.9062,1.5877,0.2372,56.9285,1.5871,0.2393,56.9351,1.6106,0.2318,57.1274,1.611,0.2366,57.0887,1.5454,0.345,57.3573,2.0261,0.3443,57.3543,2.0442,0.2688,56.8945,1.5856,0.3227,56.8127,1.5351,0.2995,56.8118,1.5384,0.3213,56.7962,1.5389,0.3201,56.7955,1.5342,0.3196,56.7932,1.5354,0.3059,56.7979,1.5433,0.3886,56.8272,1.6464,0.2048,56.6348,1.5054,0.3186,56.6912,1.5734,0.3127,56.7748,1.581,0.255,56.8208,1.571,0.2208,56.9437,1.6518,0.2293,56.9253,1.7061,0.2817,56.8908,1.6492,0.2502,56.9169,1.68,0.2826,56.9621,1.6846,0.2835,56.9559,1.681,0.2775,56.9432,1.6782,0.2732,56.9453,1.673,0.2719,56.9463,1.672,0.2642,56.9497,1.6765,0.267,56.9453,1.6706,0.2751,56.9416,1.6799,0.2638,56.9372,1.6648,0.2636,56.9325,1.666,0.2609,56.9333,1.6773,0.2634,56.9458,1.6672,0.2539,56.9434,1.6521,0.234,56.8719,1.585,0.2693,56.8824,1.5961,0.2771,56.8549,1.602,0.0,57.3094,1.9392,0.1927,56.8976,1.6178,0.0922,57.0651,1.9991,0.0839,56.7966,1.9403,0.1357,57.1437,1.6904,0.1256,56.8911,1.8233,0.1076,56.9633,1.882,0.0994,57.0501,2.0033,0.0945,57.4087,2.1943,0.1459,56.9116,1.6618,0.1369,57.0079,1.6288,0.121,57.0183,1.6629,0.0297,57.1041,2.4713,0.0,56.7206,2.4223,0.0,57.1607,2.549,0.0272,57.0973,2.489,-0.0001,57.3554,2.5678,0.0,57.6669,2.1088,0.0,56.6773,2.2828,0.0192,57.7147,2.2508,0.0278,57.0058,2.2688,0.0318,56.9833,2.2143,0.0284,56.9399,2.0335,0.0256,56.9193,1.9752,0.0352,57.116,1.9865,0.0,57.5043,2.5258,-0.0001,57.1794,2.553,0.0,56.6852,2.3413,0.0333,57.07,2.3283,0.0383,57.1596,2.0879,0.0883,57.3144,1.9714,0.0907,57.3488,2.0183,0.038,57.136,2.0361,0.033,56.7443,2.2319,0.0297,56.9576,2.1005,0.0289,56.9703,2.157,0.0342,56.737,2.1732,0.03,56.7075,2.2376,0.0283,56.701,2.1803,0.0,56.9037,2.496,0.031,57.0328,2.3026,0.0177,56.7041,1.9886,0.0904,57.1006,1.9087,0.1095,56.9803,1.6826,0.124,56.9459,1.6374,0.1022,56.9533,1.7368,0.0965,56.9667,1.7602,0.1215,57.0776,1.7569,0.1112,57.1273,1.8328,0.1047,57.1199,2.2567,0.095,57.0595,2.2753,0.223,56.9669,1.7116,0.2093,56.9574,1.6871,0.2314,56.9703,1.7009,0.2093,56.9586,1.703,0.1193,57.2926,1.9416,0.1198,57.3143,1.9717,0.114,56.9331,1.7462,0.1186,57.1744,1.953,0.1145,57.1524,1.8873,0.1254,57.2533,1.9303,0.0768,56.944,2.2732,0.0873,56.8409,2.2441,0.0814,56.8652,2.2989,0.101,56.7424,2.0858,0.0867,56.8298,2.1908,0.091,57.0059,1.9341,0.0964,56.9786,1.8798,0.0847,57.0031,1.8759,0.1261,57.3488,2.0196,0.0803,57.292,1.939,0.1419,57.0288,1.8616,0.1367,56.9137,1.8937,0.1122,57.1804,2.2378,0.2756,56.8544,1.5998,0.2768,56.8595,1.6053,0.2642,56.9104,1.5935,0.2055,56.8778,1.5724,0.2208,56.8975,1.5808,0.2264,56.8844,1.5844,0.2016,56.8917,1.5696,0.2623,56.9316,1.6715,0.1791,56.7924,1.5985,0.1947,56.7588,1.5726,0.2008,56.9119,1.622,0.3388,56.8742,1.6463,0.3081,56.8878,1.6433,0.339,56.8742,1.6481,0.3078,56.8875,1.6405,0.3125,56.8962,1.6465,0.3416,56.88,1.6481,0.3418,56.8799,1.6499,0.3122,56.8961,1.6438,0.298,56.8985,1.6377,0.298,56.9015,1.6416,0.3111,56.8943,1.6409,0.2937,56.8889,1.637,0.2927,56.8897,1.6407,0.297,56.9023,1.6454,0.3119,56.8948,1.6481,0.2954,56.9005,1.6475,0.2743,56.9479,1.6837,0.2701,56.9541,1.672,0.2835,56.9598,1.6808,0.2841,56.9612,1.6831,0.2216,56.9372,1.7151,0.2192,56.9516,1.72,0.2328,56.9484,1.7218,0.2153,56.9474,1.7178,0.2106,56.9447,1.7148,0.2081,56.9297,1.7063,0.2069,56.9443,1.7121,0.1975,56.9288,1.699,0.2954,56.8907,1.6349,0.297,56.8944,1.6351,0.1939,56.9351,1.6956,0.1971,56.9456,1.6964,0.2285,56.9315,1.636,0.24,56.9672,1.6859,0.2687,56.823,1.5767,0.3935,56.8337,1.6565,0.3934,56.8333,1.6566,0.3928,56.8345,1.6561,0.3858,56.8524,1.6497,0.3391,56.8753,1.6451,0.3852,56.8506,1.6498,0.3399,56.8771,1.6451,0.394,56.8381,1.6582,0.3955,56.8335,1.6582,0.3957,56.836,1.6531,0.3973,56.8359,1.6543,0.3996,56.8421,1.6579,0.3967,56.842,1.6496,0.3986,56.8388,1.6531,0.3979,56.8433,1.6494,0.3968,56.8381,1.6522,0.3966,56.8444,1.6548,0.3843,56.8509,1.6541,0.3847,56.8527,1.6549,0.3862,56.8542,1.6505,0.3862,56.8553,1.6521,0.3955,56.8331,1.6584,0.386,56.8291,1.6492,0.3145,56.7792,1.5837,0.3147,56.7788,1.5834,0.316,56.7749,1.5812,0.3179,56.7754,1.5827,0.3126,56.7766,1.5797,0.3156,56.7789,1.5824,0.3168,56.7788,1.5847,0.3177,56.7789,1.5837,0.3006,56.7907,1.5358,0.2991,56.7917,1.5372,0.3149,56.7885,1.5501,0.305,56.7899,1.5342,0.3143,56.7973,1.5306,0.3064,56.8009,1.5295,0.3134,56.7907,1.5335,0.3085,56.8084,1.5303,0.3021,56.8033,1.5305,0.1966,56.9169,1.5634,0.2137,56.9224,1.5732,0.2845,56.8718,1.5993,0.3098,56.8288,1.5784,0.3346,56.8188,1.5821,0.3082,56.8133,1.5574,0.2891,56.8325,1.5655,0.2738,56.8591,1.5498,0.2985,56.8164,1.5518,0.1449,56.7318,1.7363,0.3112,56.956,1.6873,0.1798,57.1796,2.1351,0.1772,57.1762,2.1212,0.1811,57.1724,2.1074,0.1904,57.1694,2.0978,0.1755,57.1362,2.1054,0.1969,57.1297,2.0842,0.2649,57.1539,2.22,0.2221,56.9464,2.2114,0.221,56.9502,2.2309,0.2231,56.9484,2.2222,0.2185,56.9448,2.2016,0.213,56.9441,2.1954,0.2071,56.9445,2.1943,0.205,56.9516,2.2265};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=4 */
		private double[] getethmoid2_Coord_6_115_point_4()
		{
			double[] value = {0.2024,56.9459,2.1985,0.2012,56.95,2.2168,0.2002,56.9479,2.2066,0.2986,57.0869,2.2308,0.274,57.036,2.3194,0.2869,57.097,2.3014,0.2858,57.029,2.2548,0.239,56.9624,2.2657,0.2359,56.9987,2.3025,0.2521,56.993,2.2875,0.257,57.1309,2.2921,0.2811,57.1232,2.2684,0.2603,57.1057,2.3265,0.2183,57.0506,2.3168,0.2219,57.1104,2.3015,0.251,57.0442,2.3412,0.1903,57.0021,2.2548,0.2139,57.0029,2.2884,0.194,56.9681,2.2471,0.2218,57.1334,2.2734,0.1874,57.1286,2.2301,0.1818,57.049,2.2643,0.1539,57.0965,2.1936,0.1818,57.1059,2.2483,0.1555,57.0402,2.2095,0.1672,56.9882,2.18,0.1823,56.9637,2.2197,0.1787,56.958,2.1921,0.1733,56.9959,2.2162,0.1674,57.1443,2.1351,0.1624,57.1205,2.1831,0.1533,57.1108,2.142,0.1747,57.1521,2.1678,0.1462,57.0299,2.1619,0.1549,57.0745,2.1064,0.1438,57.0856,2.1473,0.1568,57.0192,2.1217,0.1844,56.9524,2.1697,0.1936,56.975,2.1328,0.1746,56.9806,2.1502,0.1982,56.9483,2.1572,0.1632,57.1009,2.1056,0.1895,57.0929,2.0796,0.1844,57.0106,2.0951,0.2242,57.0614,2.0694,0.1844,57.0656,2.0772,0.2218,57.0068,2.0914,0.2194,56.9729,2.1333,0.2328,56.9487,2.1751,0.2435,56.9754,2.1548,0.2164,56.9468,2.1586,0.2525,57.128,2.09,0.2251,57.0892,2.0721,0.2603,57.0913,2.0905,0.2256,57.1266,2.0774,0.2637,57.064,2.0918,0.2826,57.0196,2.1754,0.2917,57.0736,2.1481,0.2587,57.0098,2.1178,0.2451,56.9581,2.2379,0.258,56.9818,2.1953,0.243,56.9533,2.2038,0.2604,56.9877,2.2463,0.2903,57.1123,2.2075,0.2696,57.1343,2.1247,0.2839,57.0995,2.1381,0.2734,57.1441,2.1747,0.2363,57.0977,1.6137,0.2354,57.1142,1.6179,0.2205,57.0747,1.5354,0.2211,57.0913,1.5564,0.2272,57.0851,1.544,0.2499,57.128,1.6049,0.2078,57.0447,1.6158,0.2219,57.0571,1.5237,0.2439,57.0312,1.5081,0.249,57.0106,1.5141,0.2279,57.0304,1.5135,0.2597,56.9724,1.5374,0.278,56.9791,1.5477,0.2936,56.9896,1.5709,0.2662,57.0924,1.5595,0.2133,56.9469,1.5225,0.1994,56.9659,1.5292,0.2004,56.9435,1.5315,0.2105,56.9464,1.5625,0.2265,56.9504,1.5601,0.2577,56.9386,1.5599,0.2335,56.929,1.5701,0.1966,56.9669,1.5509,0.194,56.9667,1.541,0.2182,56.9242,1.5159,0.1995,56.918,1.5294,0.2316,56.9523,1.5214,0.2488,56.9324,1.5151,0.2436,56.9564,1.5284,0.3397,56.8753,1.6499,0.3406,56.877,1.651,0.2807,56.9579,1.6773,0.2818,56.9681,1.6852,0.2941,57.0258,1.7269,0.1774,57.077,1.6864,0.244,57.14,1.6295,0.261,57.182,1.644,0.2812,57.1844,1.6455,0.3148,56.8781,1.8816,0.3162,56.8695,1.8801,0.3149,56.8782,1.879,0.3167,56.8691,1.8839,0.3151,56.8776,1.885,0.28,56.9853,1.8322,0.2753,56.9845,1.8302,0.2721,56.9809,1.8091,0.2697,56.9814,1.8132,0.2768,56.9935,1.83,0.2808,56.9941,1.8288,0.2686,57.0069,1.8058,0.2795,56.9903,1.8131,0.2717,57.0085,1.8099,0.2757,56.9885,1.8081,0.2688,56.9872,1.8069,0.2722,56.9875,1.8057,0.2741,57.0103,1.8148,0.2591,57.0254,1.8254,0.2622,57.0084,1.818,0.2526,57.0233,1.8186,0.2656,57.0101,1.8219,0.2563,56.9435,1.801,0.2684,56.9412,1.7776,0.33,56.9323,1.8296,0.262,56.9751,1.8247,0.2561,56.9499,1.8364,0.2753,56.981,1.8081,0.2828,56.9935,1.8249,0.2711,56.9834,1.8251,0.2658,56.9888,1.8171,0.2677,56.9903,1.8232,0.2691,56.9823,1.8189,0.3193,56.8607,1.8808,0.3143,56.8591,1.8846,0.3131,56.8598,1.8748,0.3198,56.8604,1.8844,0.324,56.8618,1.8799,0.3218,56.8625,1.8663,0.326,56.8627,1.8726,0.3267,56.8615,1.8879,0.3327,56.8616,1.9012,0.3331,56.8621,1.8937,0.3204,56.8697,1.8789,0.3095,56.8872,1.8752,0.1713,57.1889,1.6957,0.1734,57.2046,1.6985,0.1564,57.256,1.7587,0.1743,57.2639,1.7867,0.1511,57.2505,1.7692,0.1759,57.2682,1.7733,0.2929,57.2741,1.7539,0.2899,57.2579,1.7229,0.3006,57.2528,1.726,0.2834,57.2754,1.7448,0.3453,57.1006,1.8044,0.31,57.2246,1.7855,0.3189,57.2038,1.7532,0.2792,57.2332,1.8095,0.2674,57.2836,1.7755,0.256,57.1268,1.8755,0.3017,57.1306,1.8712,0.2615,57.0909,1.873,0.2186,57.2211,1.8244,0.2063,57.2699,1.7918,0.2298,57.0868,1.8647,0.218,57.1195,1.8631,0.2437,57.0561,1.8487,0.2262,57.0485,1.8303,0.168,57.1361,1.8323,0.2498,57.0206,1.81,0.2193,57.04,1.8063,0.1635,57.1195,1.7996,0.2228,57.0317,1.7825,0.2511,57.0179,1.8018,0.2315,57.0245,1.767,0.1502,57.2085,1.7166,0.3373,57.1136,1.7463,0.3273,57.1451,1.7316,0.2908,57.2261,1.699,0.3074,57.1772,1.7216,0.3511,56.7988,2.0521,0.3509,56.7992,2.0516,0.4261,56.9203,1.8541,0.4269,56.9247,1.8504,0.4273,56.9241,1.849,0.3715,57.0393,1.8126,0.3736,57.0432,1.809,0.3773,57.0515,1.8174,0.3757,57.054,1.8141,0.3718,57.041,1.8276,0.376,57.0327,1.8219,0.3681,57.0395,1.8278,0.3798,57.0342,1.8217,0.3636,57.046,1.8185,0.3656,57.0499,1.8149,0.34,57.1599,1.8443,0.3577,57.1555,1.8369,0.3533,57.1659,1.838,0.345,57.1493,1.8441,0.3316,57.1047,1.9263,0.3595,57.0718,1.9156,0.338,57.0631,1.919,0.3496,57.1119,1.9232,0.3722,57.1474,1.8604,0.3668,57.1545,1.8423,0.3753,57.0786,1.8117,0.3834,57.0893,1.8252,0.3779,57.1001,1.8113,0.38,57.0717,1.8214,0.33,57.1993,1.8952,0.3406,57.1981,1.8723,0.3434,57.197,1.8851,0.3294,57.1998,1.8909,0.3824,57.1099,1.8746,0.3851,57.0905,1.8587,0.3409,57.1933,1.9011,0.3291,57.198,1.9008,0.3741,57.0881,1.8987,0.3762,57.0702,1.8813,0.3344,57.1885,1.9162,0.327,57.1964,1.9061,0.3633,57.0552,1.8973,0.3243,57.1948,1.9097,0.3274,57.1843,1.9268,0.3431,57.047,1.8993,0.3216,57.1937,1.9106,0.3189,57.1807,1.9292,0.3263,57.0499,1.8887,0.3202,57.0661,1.9087,0.3195,57.1932,1.9085,0.3115,57.1788,1.9229,0.3173,57.0629,1.8699,0.3112,57.0808,1.8887,0.3186,57.1936,1.9041,0.3084,57.1797,1.9099,0.3202,57.0821,1.8503,0.3107,57.1833,1.8939,0.3193,57.1948,1.8985,0.3177,57.1885,1.8791,0.3215,57.1965,1.8932,0.3389,57.1011,1.8386,0.3494,57.1393,1.8404,0.3259,57.1933,1.8689,0.3245,57.1982,1.8897,0.3434,57.1867,1.8463,0.3301,57.1811,1.8499,0.3533,57.1888,1.8555,0.3626,57.1687,1.8451,0.2436,57.1579,1.9223,0.2421,57.1601,1.9261,0.2648,57.1581,1.9227,0.2427,57.163,1.9313,0.2423,57.162,1.9251,0.2428,57.1649,1.9304,0.2541,57.1567,1.9179,0.2604,57.1568,1.9195,0.2539,57.1548,1.9189,0.2645,57.3255,1.8573,0.2598,57.3317,1.8716,0.2493,57.3367,1.8825,0.165,57.2857,1.8824,0.1634,57.271,1.8505,0.2437,57.1598,1.9213,0.2478,57.1579,1.9185,0.2447,57.2531,1.8139,0.2467,57.2235,1.83,0.2537,57.3114,1.8232,0.2628,57.3179,1.8394,0.2429,57.3338,1.8466,0.2459,57.3353,1.8501,0.2545,57.1518,1.921,0.2481,57.1532,1.9228,0.2475,57.1526,1.922,0.2547,57.1524,1.9218,0.3504,56.8019,2.037,0.3414,56.8188,2.0457,0.3442,56.8206,2.0445,0.3096,56.8875,2.0166,0.3063,56.8864,2.018,0.3391,56.8113,2.0334,0.302,56.8798,2.0036,0.268,56.9301,1.971,0.2981,56.8803,2.0112,0.2995,56.8795,2.0063,0.3038,57.0096,1.8655,0.2979,56.9992,1.8707,0.3103,57.0073,1.8708,0.2957,57.0091,1.8615,0.2882,57.0062,1.8599,0.2317,57.0945,2.0407,0.2771,57.1005,2.0543,0.2234,57.1449,2.0509,0.3198,57.1104,2.0443,0.3591,57.0688,2.0004,0.3308,57.0425,2.0253,0.1918,57.0478,1.9538,0.1972,57.0944,2.0113,0.2084,57.0265,1.9877,0.292,56.9878,1.8764,0.2854,56.9909,1.8708,0.3,56.9878,1.8804,0.3075,56.9914,1.8818,0.3593,57.0442,1.9247,0.3627,57.0405,1.9782,0.3683,57.0722,1.9523,0.3548,57.0186,1.9449,0.3124,56.997,1.8802,0.3233,56.983,1.9167,0.3374,57.0031,1.9105,0.2505,56.9975,1.8696,0.2221,57.0056,1.89,0.2598,56.9806,1.8861,0.2534,57.013,1.8582,0.2676,57.0266,1.8543,0.2894,57.0362,1.8585,0.3126,57.039,1.8691,0.3456,57.0648,1.9013,0.3172,57.074,1.8819,0.3313,57.0331,1.8834,0.3403,57.02,1.8984,0.2685,56.8557,2.4701,0.3635,56.7373,1.663,0.3849,56.7523,1.698,0.3086,56.639,1.5132,0.3103,56.6472,1.5251,0.2007,56.5766,1.542,0.1568,56.6679,1.8486,0.4221,56.8645,1.9942,0.2506,57.4347,1.9626,0.1946,57.4265,2.0675,0.1986,57.3806,1.95,0.178,57.3746,2.0038,0.2118,57.4271,2.0243,0.1136,56.6225,2.0631,0.1147,56.6202,2.0357,0.1749,56.5888,1.589,0.1943,56.5776,1.5392,0.1966,56.5756,1.5404,0.1726,56.591,1.5881,0.3121,56.6434,1.5099,0.314,56.6491,1.5231,0.3117,56.6408,1.5115,0.3142,56.6512,1.5209,0.3882,56.7535,1.6968,0.3741,56.7415,1.6614,0.3674,56.738,1.6516,0.3572,56.7341,1.6538,0.3787,56.7932,2.173,0.1625,57.1292,2.6401,0.2789,56.6691,1.4831,0.2594,56.6732,1.4837,0.2641,56.6634,1.4742,0.1997,56.6092,1.5063,0.1979,56.5745,1.5262,0.2205,56.6093,1.4607,0.2622,56.6405,1.4571,0.3068,57.1475,2.4981,0.304,57.144,2.4956,0.3062,57.1502,2.4968,0.1078,57.6216,2.3636,0.1606,57.134,2.6427,0.1903,56.7311,2.0563,0.1948,56.7472,2.0731,0.2516,57.2392,2.485,0.256,57.2498,2.4332,0.2448,57.2298,2.468,0.2458,57.2418,2.461,0.2525,57.2472,2.4697,0.2551,57.2519,2.4752,0.3368,56.7255,1.6213,0.3312,56.7236,1.6206,0.2001,57.2683,2.5453,0.1974,57.2696,2.542,0.1987,57.267,2.5635,0.1972,57.2767,2.5553,0.1945,57.2812,2.5567,0.1997,57.2677,2.5597,0.1035,56.7497,2.154,0.1046,56.7148,2.2209,0.1028,56.7557,2.2125,0.1033,56.7078,2.1628,0.1278,56.8668,2.3992,0.1166,56.6187,1.995,0.2795,56.6351,1.4596,0.2173,56.7108,2.2098,0.2152,56.6987,2.1866,0.2052,56.7879,2.0887,0.2354,57.2287,2.4603,0.2563,57.2602,2.4592,0.1861,57.3553,2.2884,0.1867,57.3585,2.2785,0.2102,57.3315,2.3024,0.2023,57.3373,2.3055,0.2181,57.3409,2.2644,0.1891,57.3502,2.2976,0.2263,57.3575,2.3076,0.2178,57.3294,2.2905,0.2773,57.4408,2.1654,0.2614,57.4598,2.1871,0.2073,57.4537,2.1961,0.2533,57.3892,2.3096,0.288,57.4272,2.2878,0.3428,56.988,1.6921,0.3354,56.9871,1.6925,0.3361,56.9747,1.68,0.3503,56.9963,1.678,0.3371,56.9958,1.6792,0.3551,56.9891,1.6899,0.3328,56.9811,1.687,0.3427,56.9961,1.6613,0.3311,56.9955,1.6671,0.3227,56.9854,1.6523,0.3242,56.9939,1.6704,0.3153,56.9831,1.6555,0.3463,56.9833,1.6474,0.3513,56.9891,1.6582,0.3352,56.9878,1.6472,0.3138,56.98,1.6585,0.3282,56.9385,1.6058,0.308,56.9437,1.5966,0.3564,56.9512,1.6373,0.3492,56.9117,1.6631,0.3876,56.9154,1.6706,0.375,56.9088,1.6632,0.3633,56.8993,1.6685,0.3781,56.9003,1.6718,0.3609,56.9074,1.6604,0.3657,56.903,1.6942,0.3804,56.9034,1.698,0.4069,56.9409,1.7231,0.3831,57.0359,1.797,0.3629,57.0447,1.8115,0.4,56.9616,1.7814,0.3989,56.9417,1.743,0.3801,56.9492,1.7863,0.3529,56.9301,1.7363,0.3434,56.9471,1.7729,0.3804,56.9316,1.7458,0.3282,56.9372,1.7192,0.3585,56.9208,1.7238,0.2919,56.99,1.8172,0.2731,57.0042,1.7929,0.2717,57.0219,1.7729,0.3415,56.9489,1.6889,0.2881,57.0415,1.7619,0.3178,57.0593,1.7603,0.3613,56.9704,1.7031,0.3353,56.9665,1.6952,0.3642,56.9517,1.696,0.3561,57.0091,1.7206,0.2582,57.2162,1.9761,0.2467,57.2093,1.9869,0.2522,57.2038,1.9721,0.2563,57.218,1.9809,0.2212,57.1739,1.9215,0.2242,57.1802,1.9367,0.3971,57.02,1.7785,0.2927,57.0264,1.8184,0.3304,56.9639,1.809,0.3995,56.9312,1.7298,0.3907,56.9086,1.6779,0.3925,56.9106,1.6989,0.3505,56.9056,1.6689,0.3534,56.971,1.646,0.341,56.9543,1.6671,0.3224,56.9905,1.6717,0.3271,56.9916,1.6784,0.3579,56.9894,1.6745,0.3332,56.9853,1.6912,0.3612,56.9842,1.6832,0.3632,56.9769,1.6756,0.2197,56.9064,2.3769,0.1942,57.4213,2.0669,0.1802,57.4255,2.0992,0.18,57.4197,2.098,0.2346,57.4598,2.1931,0.2022,57.383,2.2853,0.2214,57.3325,2.2758,0.1944,57.3438,2.3044,0.1906,57.3596,2.2695,0.2736,57.2176,2.4572,0.315,56.687,1.5765,0.3182,56.6886,1.5751,0.259,56.8884,2.5027,0.2571,56.8618,2.4747,0.2186,56.5693,1.4747,0.213,56.6308,1.4819,0.1293,56.8177,2.3709,0.3615,56.8281,1.9361,0.2587,57.2645,2.4645,0.2471,57.2549,2.4488,0.2891,57.1844,2.4798,0.2975,56.612,1.4745,0.1398,57.2264,2.6517,0.2676,56.8599,2.4742,0.3504,56.8016,2.0367,0.2817,57.0697,1.8688,0.2832,57.0016,1.8612,0.2822,56.9961,1.8652,0.2613,57.2211,1.9898,0.2729,57.2129,1.993,0.2646,57.2195,1.9849,0.3116,56.8875,2.0138,0.3369,56.8106,2.0362,0.3469,56.8191,2.0357,0.3121,56.886,2.0087,0.2384,57.3336,1.8458,0.2337,57.3345,1.8476,0.2301,57.3363,1.8517,0.2284,57.3386,1.857,0.2293,57.3406,1.8617,0.2323,57.3419,1.8648,0.2467,57.3374,1.8551,0.2451,57.3395,1.8601,0.2477,57.156,1.9195,0.3342,57.1968,1.8664,0.3727,57.0545,1.8124,0.369,57.053,1.8127,0.3012,57.1596,1.9122,0.3281,57.0511,1.8518,0.3062,57.1582,1.9321,0.3354,57.0405,1.867,0.3181,57.1611,1.942,0.3491,57.0382,1.8761,0.3336,57.1676,1.939,0.3656,57.0448,1.8753,0.344,57.1739,1.9226,0.3764,57.0571,1.8629,0.3549,57.1818,1.8998,0.3824,57.0732,1.8442,0.3584,57.1873,1.8753,0.3622,57.1462,1.8318,0.3638,57.1233,1.9079,0.3105,57.1111,1.8979,0.3807,57.0478,1.8064,0.3633,57.0424,1.8224,0.3751,57.044,1.8254,0.3864,57.0439,1.8042,0.3856,57.0305,1.8191,0.3295,56.8606,1.9041,0.3239,56.8595,1.9004,0.3414,57.1728,1.77,0.2053,57.237,1.7167,0.1979,57.0603,1.8046,0.1908,57.1052,1.8363,0.1868,57.0899,1.8034,0.2001,57.2541,1.7358,0.2062,57.2585,1.7404,0.2935,57.2023,1.8388,0.2806,57.0552,1.8522,0.2651,57.0591,1.8558,0.3306,57.1926,1.8096,0.1995,57.2417,1.7221,0.1976,57.2479,1.7291,0.2278,57.2424,1.7204,0.2283,57.255,1.734,0.2303,57.2489,1.7271,0.1491,57.2394,1.7382,0.1426,57.2312,1.7437,0.2795,56.9051,1.8294,0.3112,56.886,1.8875,0.3258,56.8617,1.8841,0.3309,56.8625,1.8838,0.3233,56.8606,1.8902,0.2664,56.9877,1.8111,0.2842,56.9455,1.7723,0.2857,56.9393,1.771,0.2569,56.943,1.8416,0.2607,57.007,1.8131,0.2612,57.0059,1.8084,0.2849,56.8977,1.8765,0.2336,56.967,1.7195,0.1852,57.0455,1.6929,0.2445,57.1765,1.6435,0.2935,57.1823,1.6555,0.2526,57.1709,1.6353,0.3852,56.8544,1.6548,0.3414,56.8788,1.651,0.2646,56.8248,1.5785,0.2124,56.8681,1.5335,0.2011,56.8718,1.5543,0.1949,56.9421,1.5441,0.1914,56.9151,1.5473,0.1988,56.9431,1.5557,0.2777,57.0488,1.5414,0.2533,57.101,1.5616,0.2422,57.105,1.5636,0.2458,57.1091,1.569,0.2685,57.0169,1.5249,0.2851,57.0285,1.5496,0.2621,57.0372,1.5182,0.2191,57.0469,1.5196,0.2343,57.1029,1.5624,0.2321,57.1053,1.5671,0.2338,57.1144,1.5813,0.2219,57.1194,1.6018,0.2374,57.1187,1.5868,0.2374,57.0696,1.6024,0.2455,57.1209,1.5876,0.2418,57.121,1.589,0.2477,57.1183,1.5829,0.2478,57.1139,1.5761,0.2188,57.1042,1.5778,0.2147,57.1686,2.0984,0.2028,57.168,2.0944,0.1973,56.8874,1.5519,0.3082,56.8064,1.5441,0.317,56.8057,1.5317,0.3004,56.8046,1.5319,0.3189,56.778,1.5842,0.3138,56.7753,1.58,0.3181,56.778,1.5852,0.3128,56.776,1.5796,0.319,56.7767,1.5838,0.3182,56.7782,1.5858,0.3129,56.7752,1.5809,0.3858,56.8554,1.6537,0.3843,56.8497,1.6525,0.3956,56.8414,1.6507,0.3988,56.8367,1.6561,0.3409,56.8789,1.6463,0.2208,56.9556,1.7206,0.2374,56.9596,1.7234,0.2195,56.958,1.7192,0.2056,56.9466,1.7109,0.2072,56.9506,1.7114,0.2927,56.8927,1.6445,0.3093,56.8896,1.6461,0.3096,56.8915,1.639,0.2631,56.9448,1.6683,0.2769,56.8596,1.6044,0.1048,57.305,1.8004,0.0982,57.1555,1.8923,0.0,57.7462,2.1639,0.0,57.7464,2.1225,0.127,57.1843,1.721,0.1313,57.1856,1.7231,0.1011,56.8316,2.3506,0.1062,56.948,1.7084,0.1334,57.0102,1.7837,0.0838,57.0087,1.8748,0.0926,57.0775,1.8581,0.0228,56.7174,2.0414,0.0302,56.7293,2.103,0.0213,56.9011,1.9252,0.0,56.6784,2.2949,0.0,57.7656,2.247,0.0,57.0178,2.4949,0.0889,56.9825,1.7878,0.1054,57.2997,1.8501,0.1023,56.8618,1.911,0.1001,57.1463,1.8413,0.2622,56.9482,1.6728,0.3083,56.8889,1.6389,0.3107,56.8923,1.6479,0.2937,56.8968,1.6472,0.211,56.9549,1.7135,0.2158,56.9578,1.7165,0.3847,56.8496,1.6509,0.406,56.8436,1.6701,0.3978,56.8456,1.6547,0.3166,56.7792,1.5851,0.3141,56.7785,1.5813,0.3145,56.7788,1.5804,0.3011,56.8097,1.5405,0.2079,56.8866,1.5317,0.232,57.1094,1.5739,0.238,57.1028,1.5611,0.2643,57.0687,1.5904,0.2284,56.8917,1.5152,0.2475,57.1599,1.632,0.285,56.9842,1.8207,0.2719,56.9921,1.8281,0.2824,56.9921,1.8191,0.1556,57.221,1.7164,0.2818,57.2367,1.7016,0.335,57.1189,1.8429,0.3523,57.1372,1.7869,0.3409,57.1574,1.8291,0.3017,57.1687,1.8598,0.1826,57.2143,1.8187,0.2064,57.0749,1.8399,0.3476,56.801,2.0364,0.3476,56.8013,2.0367,0.427,56.92,1.8541,0.4278,56.9223,1.8495,0.377,57.0463,1.8068,0.377,57.0479,1.8216,0.365,57.04,1.8258,0.3173,57.1044,1.917,0.371,57.1359,1.8847,0.3693,57.1685,1.8668,0.3786,57.0609,1.8336,0.3663,57.1633,1.896,0.3745,57.0503,1.8455,0.3549,57.1547,1.9246,0.3662,57.0419,1.8527,0.3404,57.1462,1.9442,0.3554,57.0376,1.8529,0.3205,57.1381,1.9477,0.3464,57.0391,1.8471,0.3054,57.1344,1.9355,0.3417,57.046,1.8372,0.3,57.1361,1.9106,0.2415,57.3413,1.8638,0.2368,57.3421,1.8656,0.3462,56.821,2.0413,0.3354,56.8117,2.0414,0.3135,57.0027,1.8762,0.2003,57.0209,1.9237,0.2721,57.4302,1.9431,0.4005,56.8123,2.0582,0.2035,57.2585,2.5576,0.3616,56.9798,1.6705,0.3293,56.9944,1.6794,0.3977,56.9196,1.6975,0.3416,57.0474,1.8219,0.3809,56.9219,1.7314,0.3153,57.0407,1.8259,0.3274,57.1994,1.8889,0.0,57.7558,2.2055};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_116_vector_1()
		{
			double[] value = {-1.0,0.0086,0.0036,-0.9997,-0.0049,0.0219,-0.9996,0.0214,0.0172,-0.9996,-0.0138,0.0242,-0.9995,0.0224,0.0237,-0.9995,0.017,0.0281,-0.9994,0.0095,0.0337,-0.9994,-0.0297,0.0187,-0.9992,0.014,0.0373,-0.999,-0.0172,-0.042,-0.999,0.0072,-0.0449,-0.9989,-0.0399,0.0227,-0.9987,-0.0129,-0.049,-0.9986,-0.0144,0.0506,-0.9985,0.0539,-0.0079,-0.9983,-0.0523,0.0241,-0.9983,0.0229,-0.0535,-0.9982,-0.0369,-0.0466,-0.9981,0.0091,-0.0609,-0.998,0.0399,-0.0487,-0.9978,0.0261,0.0606,-0.9978,-0.0331,0.0572,-0.9978,0.042,-0.0511,-0.9977,0.037,-0.0573,-0.9977,0.0679,-0.007,-0.9975,0.068,-0.0169,-0.9974,0.064,0.034,-0.9972,-0.0225,-0.0708,-0.9968,0.0636,-0.048,-0.9967,0.0768,-0.0275,-0.9966,-0.0416,0.0712,-0.9965,-0.0727,-0.0418,-0.9964,0.0699,-0.0477,-0.9964,0.0289,0.0795,-0.9963,-0.0797,-0.0311,-0.9962,-0.0681,0.0536,-0.9962,0.0859,0.0129,-0.9961,0.0777,-0.042,-0.996,-0.0814,-0.037,-0.9958,-0.0899,-0.0157,-0.9958,-0.0901,0.0189,-0.9957,-0.0601,-0.0699,-0.9957,0.0823,0.0434,-0.9956,0.0915,-0.0202,-0.9954,0.0899,0.032,-0.9954,0.0718,0.0631,-0.9952,-0.0978,-0.0009,-0.9951,0.0231,0.0965,-0.9947,0.0969,0.0357,-0.9944,-0.0961,-0.0437,-0.9944,0.0012,0.1061,-0.9944,0.0981,0.0404,-0.9942,-0.0269,0.1044,-0.994,0.1084,-0.0128,-0.9939,0.1093,0.0171,-0.9936,0.1132,-0.0046,-0.9934,-0.1064,-0.0419,-0.9929,0.012,0.1187,-0.9926,0.1123,0.0458,-0.9925,-0.121,0.0149,-0.9919,0.0431,-0.1192,-0.9918,-0.0813,0.0983,-0.9918,-0.1275,0.007,-0.9917,0.0988,-0.0826,-0.9916,-0.1264,-0.0278,-0.9915,0.1282,0.0244,-0.9911,0.0642,-0.1164,-0.9909,0.1336,-0.0185,-0.9904,-0.1333,-0.0367,-0.9898,0.1411,-0.022,-0.9894,-0.1454,0.0024,-0.9889,-0.1376,-0.0556,-0.9888,-0.1044,0.1067,-0.9886,0.1451,-0.0406,-0.9883,-0.0319,-0.1491,-0.9883,-0.1057,0.1104,-0.9882,-0.1533,0.0063,-0.9877,-0.0981,0.122,-0.9876,0.1553,-0.021,-0.9876,0.1569,0.0004,-0.9876,0.1076,-0.1144,-0.9876,-0.0738,-0.1387,-0.9874,-0.1541,0.0367,-0.9873,0.1583,-0.0127,-0.9867,0.1561,-0.0452,-0.9867,-0.0573,0.1524,-0.9866,0.04,-0.1583,-0.9864,0.1583,-0.0443,-0.9863,-0.1464,0.0762,-0.9862,0.154,0.0608,-0.9858,0.1049,0.1309,-0.9856,0.153,-0.0718,-0.9856,0.1659,-0.0332,-0.9852,0.0589,-0.1608,-0.9851,0.0616,-0.1603,-0.9847,0.0969,-0.1451,-0.9843,-0.1345,0.1145,-0.9835,0.106,0.1467,-0.9834,0.0485,0.1746,-0.9829,-0.0895,-0.161,-0.9826,0.1651,0.0846,-0.9825,-0.1828,0.0351,-0.9823,-0.0928,0.163,-0.982,-0.1091,-0.1541,-0.9817,-0.0223,0.1894,-0.9816,0.1577,-0.1075,-0.9816,0.0576,-0.1821,-0.9813,0.167,0.0957,-0.981,0.0359,-0.1909,-0.9808,0.0365,-0.1917,-0.9804,0.182,-0.0755,-0.9792,0.0307,-0.2004,-0.9788,-0.0595,-0.1962,-0.9786,-0.2051,0.0173,-0.9783,0.1773,0.1076,-0.978,0.18,0.1051,-0.9779,-0.0871,-0.1899,-0.9778,-0.1907,-0.0867,-0.9776,-0.2092,-0.0237,-0.9774,0.0581,0.2033,-0.9767,-0.2124,0.0321,-0.9759,-0.0314,-0.2159,-0.9756,-0.0442,0.215,-0.9756,0.2194,-0.0098,-0.9756,-0.2083,0.0699,-0.9754,-0.0749,0.2074,-0.9752,-0.2157,-0.0486,-0.9752,-0.0305,0.2191,-0.9752,-0.0886,0.2028,-0.975,0.0748,0.2092,-0.9749,-0.2126,0.0662,-0.9749,-0.2,0.0982,-0.9748,0.0546,0.2162,-0.974,-0.0567,0.2194,-0.9738,0.1076,-0.2005,-0.9736,0.215,-0.0772,-0.9731,0.2297,-0.0163,-0.9722,0.0666,-0.2245,-0.9719,-0.2058,-0.114,-0.9718,-0.2092,0.1086,-0.9715,-0.1031,0.2135,-0.9714,-0.0241,-0.2363,-0.9712,-0.1739,0.1631,-0.971,-0.2272,0.0743,-0.9703,0.1046,0.2183,-0.9701,-0.1066,-0.2181,-0.9696,0.0078,-0.2446,-0.9694,-0.1002,0.2242,-0.9692,0.0332,0.2441,-0.9689,0.2413,0.054,-0.9687,-0.0711,0.238,-0.9681,-0.0937,0.2323,-0.9675,-0.0739,-0.242,-0.9661,0.0203,0.2572,-0.9654,0.2367,0.109,-0.9654,0.0504,0.2558,-0.9651,-0.2602,0.0286,-0.9644,0.0764,0.2533,-0.9643,-0.1752,0.1985,-0.9638,-0.2237,0.1448,-0.9635,-0.2608,-0.0599,-0.9635,0.0877,0.2529,-0.9632,-0.0388,0.2658,-0.9627,-0.1222,0.2413,-0.9623,0.231,-0.1436,-0.9622,0.2331,0.1408,-0.9622,-0.0504,0.2676,-0.9613,0.1155,-0.2503,-0.9606,-0.0346,-0.2759,-0.9603,-0.0757,0.2686,-0.9594,0.2562,-0.1176,-0.9587,0.2592,-0.1173,-0.9584,-0.0305,-0.2838,-0.9584,-0.2023,-0.2015,-0.9582,0.2473,-0.1439,-0.9582,-0.0193,-0.2855,-0.9581,-0.0507,-0.282,-0.9575,0.1119,0.2658,-0.957,0.095,-0.2739,-0.9566,-0.1088,0.2704,-0.9565,-0.1667,0.2396,-0.9564,-0.026,-0.2909,-0.9557,-0.1596,-0.2473,-0.9555,-0.0786,0.2843,-0.9555,-0.1196,-0.2697,-0.9551,-0.2852,-0.0798,-0.9551,-0.0176,0.2957,-0.9545,-0.2934,0.0527,-0.9544,-0.1387,-0.2645,-0.9543,-0.0517,0.2944,-0.9529,-0.2884,0.0941,-0.9522,0.2231,-0.2088,-0.952,0.3058,-0.0113,-0.9519,-0.0154,-0.3059,-0.9512,-0.0115,0.3085,-0.9509,-0.2759,0.1405,-0.9508,-0.1794,-0.2526,-0.9506,-0.3099,-0.0191,-0.9504,-0.1812,0.253,-0.95,-0.138,0.2802,-0.9496,0.1639,-0.2671,-0.9493,0.1573,0.2723,-0.9489,0.0081,0.3155,-0.9488,0.2313,-0.215,-0.9486,0.2678,-0.1689,-0.9484,-0.3139,0.0459,-0.9463,-0.3191,0.0524,-0.9449,0.0191,0.3268,-0.9448,0.0996,-0.3122,-0.9431,-0.0082,-0.3325,-0.943,0.2594,0.2084,-0.9428,0.283,-0.1764,-0.9425,-0.2507,-0.2211,-0.9417,-0.1695,-0.2907,-0.9415,-0.3176,0.1125,-0.9415,-0.2154,0.2593,-0.9414,0.3166,-0.1164,-0.9411,-0.1889,-0.2806,-0.9404,0.3097,-0.1401,-0.9401,0.299,0.1635,-0.9395,-0.3051,0.1555,-0.9395,0.3221,-0.1162,-0.9388,-0.3424,0.0373,-0.9385,0.345,0.0118,-0.9383,-0.2614,0.2264,-0.9378,0.3402,-0.0696,-0.9373,-0.2764,-0.2122,-0.9362,-0.0934,0.3388,-0.9358,-0.0978,-0.3386,-0.9355,-0.3494,0.0534,-0.9348,-0.2308,0.2699,-0.9347,-0.3541,-0.0324,-0.934,-0.3553,0.0361,-0.9337,-0.3403,0.1112,-0.9335,0.1377,0.3311,-0.9335,-0.0388,-0.3566,-0.9334,-0.3555,0.0477,-0.9331,0.293,-0.2083,-0.9327,-0.2945,-0.208,-0.9317,-0.2852,0.2248,-0.9317,-0.3632,0.0098,-0.9314,-0.2155,0.2932,-0.9308,0.0148,-0.3653,-0.9308,-0.0558,0.3613,-0.93,-0.2111,0.3011,-0.9289,0.0267,-0.3694,-0.928,-0.3243,0.1836,-0.9278,-0.3727,-0.0176,-0.9277,0.2914,-0.2335,-0.9274,0.2929,-0.2327,-0.9273,0.3207,-0.1929,-0.9269,0.1365,-0.3496,-0.9264,-0.3765,-0.0034,-0.9259,0.2693,0.2649,-0.9256,0.3586,-0.1214,-0.9252,0.2176,-0.3109,-0.9246,-0.1646,0.3435,-0.9244,0.2315,-0.303,-0.9237,0.2097,0.3206,-0.9235,-0.2822,0.2597,-0.9235,0.2358,-0.3026,-0.9235,-0.1632,-0.3473,-0.9233,0.1577,0.3503,-0.9226,0.0314,0.3845,-0.9224,-0.3463,0.171,-0.9215,-0.3873,0.0276,-0.9213,-0.3033,-0.2433,-0.9212,-0.289,-0.2605,-0.9204,-0.3515,-0.1714,-0.9204,-0.1018,0.3776,-0.9201,-0.3888,-0.0469,-0.9199,-0.3653,0.1424,-0.9194,-0.0998,0.3805,-0.9193,0.3108,-0.2413,-0.9191,0.2243,0.324,-0.9188,0.1856,0.3483,-0.9188,-0.1847,0.3488,-0.9188,0.317,0.2352,-0.9181,0.0394,0.3945,-0.918,-0.3944,-0.0413,-0.9179,-0.3778,-0.1212,-0.9179,-0.3676,0.1495,-0.9177,-0.3569,0.1745,-0.9171,0.3939,-0.0607,-0.917,0.0986,-0.3864,-0.9166,0.2758,-0.2896,-0.9163,0.2258,-0.3309,-0.9162,-0.2691,-0.2969,-0.9158,0.1564,-0.3698,-0.9155,-0.3456,0.206,-0.9154,-0.3981,0.0589,-0.9146,0.4009,0.0523,-0.9146,-0.3887,-0.1113,-0.9145,-0.2448,-0.322,-0.9144,0.3396,0.2205,-0.9141,-0.0466,0.4028,-0.914,0.2947,-0.2787,-0.9137,0.273,0.3012,-0.9134,-0.0327,-0.4057,-0.9131,-0.3383,0.2277,-0.9129,-0.0475,-0.4054,-0.9129,-0.1107,-0.393,-0.912,-0.3427,-0.2253,-0.9114,-0.3575,0.2041,-0.9104,-0.1833,-0.371,-0.9099,0.3579,-0.2096,-0.9095,-0.4111,-0.0621,-0.9092,0.3401,-0.24,-0.9092,-0.4052,-0.0963,-0.9088,-0.336,0.2473,-0.9078,-0.1787,0.3794,-0.9077,-0.4175,0.0418,-0.9074,-0.0666,0.415,-0.9066,-0.1113,0.407,-0.9066,-0.3357,0.2559,-0.9065,0.3912,-0.1586,-0.9058,-0.0619,-0.4191,-0.9058,-0.2845,0.3139,-0.9049,0.4021,0.1395,-0.9039,-0.1672,-0.3938,-0.9038,-0.3377,0.2629,-0.9037,-0.076,0.4215,-0.9031,0.2242,-0.3663,-0.9024,0.0311,0.4298,-0.902,-0.4284,-0.0528,-0.902,0.2234,-0.3695,-0.9008,-0.1235,-0.4163,-0.9001,-0.3218,0.2938,-0.9,-0.3053,0.3113,-0.8994,0.4264,0.0963,-0.8989,0.2696,0.3455,-0.8981,0.2559,0.3577,-0.8977,0.4115,0.1573,-0.8973,0.4361,0.0688,-0.8972,-0.4219,0.1303,-0.8972,-0.0539,0.4384,-0.8971,-0.3228,-0.3018,-0.8963,-0.3346,0.2908,-0.8958,-0.198,-0.3979,-0.8957,-0.4229,0.1376,-0.8953,0.2686,-0.3554,-0.894,-0.204,0.3989,-0.8937,-0.0465,0.4462,-0.8926,-0.2911,0.3444,-0.8918,-0.2504,0.3767,-0.8914,-0.4486,0.0643,-0.8904,-0.3494,-0.2918,-0.8897,-0.4197,-0.1799,-0.8895,-0.1705,0.4239,-0.8882,-0.1533,0.4332,-0.8874,0.1198,0.4452,-0.8867,0.462,0.0169,-0.8856,0.2785,0.3717,-0.8853,-0.1928,-0.4232,-0.885,-0.3038,0.3527,-0.8836,-0.0652,-0.4636,-0.8833,0.259,0.3907,-0.8833,-0.3208,-0.3419,-0.8809,-0.4733,-0.0071,-0.8807,-0.4472,-0.156,-0.8802,0.2398,0.4096,-0.8793,-0.4092,0.2438,-0.8784,-0.0836,0.4705,-0.8773,0.0985,-0.4698,-0.8766,0.3058,0.3716,-0.8763,0.4664,-0.1208,-0.8753,-0.4835,0.0048,-0.875,0.0701,-0.4791,-0.8749,-0.3368,0.3479,-0.8749,-0.3903,-0.2868,-0.8741,-0.0229,0.4852,-0.8739,-0.1679,0.4561,-0.8732,0.3369,0.352,-0.8732,-0.0104,-0.4873,-0.8727,-0.2552,-0.4162,-0.8726,0.0185,0.488,-0.8725,-0.4446,-0.2027,-0.8718,-0.0737,-0.4843,-0.8715,0.4439,0.2085,-0.8708,0.4911,0.0237,-0.8697,0.0806,0.487,-0.8686,-0.3335,-0.3666,-0.8677,-0.2921,0.4022,-0.8674,-0.0678,-0.4929,-0.8661,-0.4999,0.0005,-0.8657,-0.3775,-0.3286,-0.865,0.0436,0.4999,-0.8638,-0.4846,0.1378,-0.8619,-0.4882,0.1372,-0.8615,-0.4387,-0.2555,-0.8613,-0.3567,0.3619,-0.861,-0.4446,-0.247,-0.8595,-0.4549,0.2329,-0.8591,0.1921,-0.4744,-0.8585,-0.4901,0.1509,-0.8585,-0.4998,-0.115,-0.857,-0.3342,0.3923,-0.8567,-0.0475,-0.5135,-0.8547,-0.4635,0.2338,-0.8543,-0.5173,-0.0503,-0.8538,-0.2627,-0.4495,-0.8537,-0.4182,0.3103,-0.8536,-0.066,-0.5167,-0.853,0.2268,-0.47,-0.8529,-0.2964,-0.4297,-0.8525,-0.171,-0.494,-0.8523,0.5231,-0.004,-0.8523,0.4972,0.1625,-0.8501,0.0112,-0.5265,-0.8497,0.0734,0.5222,-0.8482,-0.4929,-0.1939,-0.848,0.3827,0.3667,-0.8477,0.0077,0.5305,-0.8472,-0.3432,0.4055,-0.8469,-0.2462,-0.4713,-0.8468,0.384,0.3682,-0.8457,0.0233,0.5331,-0.8456,-0.3245,0.4238,-0.8449,0.518,-0.1331,-0.8448,-0.5341,-0.0312,-0.8436,0.5289,0.0927,-0.8431,0.1939,-0.5016,-0.8426,0.2432,-0.4805,-0.8424,-0.4841,-0.2366,-0.8423,-0.5347,0.0673,-0.8421,-0.0271,0.5386,-0.841,0.5077,0.1868,-0.8398,0.2302,0.4917,-0.8391,-0.5416,0.051,-0.839,0.3171,0.4422,-0.8386,-0.5444,0.0184,-0.838,-0.4274,0.3393,-0.8377,-0.0614,0.5427,-0.8369,0.4038,-0.3695,-0.8367,-0.5453,-0.0515,-0.8347,-0.5042,0.2217,-0.8343,-0.4922,-0.2484,-0.8333,-0.5526,-0.0178,-0.8329,-0.5395,-0.123,-0.8329,-0.5217,-0.1849,-0.8323,-0.2114,-0.5124,-0.8319,0.1448,0.5358,-0.8313,-0.3395,0.4401,-0.831,0.1836,-0.5251,-0.831,-0.5031,0.2374,-0.8307,-0.3725,0.4136,-0.8304,0.209,0.5164,-0.8302,-0.3905,-0.3979,-0.8287,0.3983,0.3932,-0.8278,0.2138,0.5187,-0.8276,-0.5394,-0.1553,-0.8275,0.2037,-0.5232,-0.8266,-0.4775,0.2979,-0.8264,0.4206,-0.3745,-0.8263,-0.2349,0.5119,-0.8263,0.5238,-0.2069,-0.8262,-0.4323,0.3612,-0.8261,-0.5254,0.2037,-0.8257,-0.1664,0.539,-0.8244,-0.2882,-0.4872,-0.8237,-0.3895,0.4122,-0.8227,-0.1999,0.5322,-0.8223,0.5399,-0.1797,-0.8216,-0.1462,0.551,-0.8215,-0.5631,-0.0897,-0.8213,0.1048,-0.5608,-0.8211,-0.5653,0.0785,-0.8207,0.1519,-0.5508,-0.8204,-0.5661,-0.0802,-0.8202,-0.287,0.4949,-0.8197,-0.2213,0.5284,-0.8194,0.2892,0.495,-0.8191,-0.2157,-0.5316,-0.8189,-0.5738,-0.0145,-0.8181,0.3506,0.4558,-0.8181,-0.3178,0.4793,-0.8174,-0.2875,-0.4992,-0.8173,0.5638,-0.1193,-0.8163,-0.2442,0.5235,-0.8156,0.2409,-0.526,-0.8156,-0.3015,0.4938,-0.8154,-0.5547,-0.1656,-0.8153,-0.4893,0.3096,-0.8152,-0.2117,0.5391,-0.8152,-0.4806,0.3232,-0.814,-0.1711,0.5551,-0.8127,0.3658,0.4536,-0.8121,-0.2943,0.5039,-0.8112,-0.393,-0.433,-0.8111,-0.2005,0.5495,-0.811,-0.0687,0.581,-0.8108,-0.5021,0.301,-0.8106,0.2732,-0.518,-0.8089,-0.4197,0.4117,-0.8086,-0.4621,0.3641,-0.8081,0.5301,0.2569,-0.8079,0.1158,-0.5779,-0.8077,0.5694,0.1533,-0.8075,-0.2536,0.5326,-0.8069,-0.198,0.5565,-0.8067,0.3283,-0.4915,-0.8066,0.5868,-0.0707,-0.8055,-0.581,-0.1167,-0.8038,-0.2047,0.5585,-0.8028,-0.4841,0.348,-0.8019,-0.0444,0.5958,-0.8,0.5936,-0.0871,-0.7996,0.1972,0.5672,-0.7995,-0.5995,0.0384,-0.7981,0.0109,0.6024,-0.797,-0.3033,0.5223,-0.797,-0.5279,-0.2935,-0.7968,-0.1918,-0.573,-0.7966,0.1243,0.5916,-0.7953,-0.5432,0.2693,-0.7952,-0.5563,0.2412,-0.7946,0.1196,-0.5953,-0.7942,0.369,0.4828,-0.7931,-0.6078,-0.0399,-0.7927,0.5168,0.3235,-0.7923,-0.2589,0.5525,-0.7922,-0.5651,-0.2303,-0.7919,-0.588,-0.1648,-0.7917,-0.2933,0.5359,-0.7898,-0.1768,0.5874,-0.7897,-0.5596,-0.2513,-0.7889,0.1779,-0.5882,-0.7889,0.4215,-0.4472,-0.7886,0.59,0.1734,-0.7882,-0.6079,0.096,-0.7876,0.4254,0.4457,-0.7874,-0.3317,0.5197,-0.7873,-0.3725,0.4912,-0.7871,-0.5254,-0.3232,-0.7859,-0.5761,-0.2247,-0.7855,-0.5466,-0.2901,-0.7852,-0.4685,0.405,-0.7843,0.1701,-0.5967,-0.7842,-0.5974,0.1678,-0.7833,0.5067,-0.3602,-0.7832,-0.5655,-0.2583,-0.783,-0.5416,0.3059,-0.7826,0.3311,0.5272,-0.7819,-0.1874,-0.5946,-0.7819,0.2874,0.5532,-0.7816,-0.6098,-0.1312,-0.7816,0.24,0.5758,-0.7798,0.6256,-0.0212,-0.779,0.5803,0.2375,-0.779,-0.6019,0.1758,-0.7784,-0.6274,0.0211,-0.7778,-0.331,0.5342,-0.7773,-0.5954,-0.2033,-0.7767,-0.428,-0.4621,-0.7764,0.569,-0.2708,-0.7763,0.6297,0.0291,-0.7755,-0.1673,0.6088,-0.7752,0.1694,-0.6086,-0.7748,0.5843,0.2414,-0.7739,0.6091,-0.1734,-0.7732,0.0921,0.6274,-0.7732,-0.4682,0.4278,-0.773,-0.5612,0.2958,-0.7729,-0.0509,0.6325,-0.7719,0.6322,0.067,-0.7713,-0.4406,0.4593,-0.7712,-0.0836,0.6311,-0.7708,-0.4219,0.4773,-0.7706,-0.625,0.1244,-0.7699,0.6372,-0.036,-0.7696,0.6071,-0.1979,-0.7694,-0.325,0.5499,-0.7693,0.554,0.3182,-0.7691,-0.6312,-0.1003,-0.7687,-0.1868,0.6117,-0.7673,0.3884,-0.5103,-0.7671,0.2967,-0.5688,-0.7659,0.2437,-0.5949,-0.765,-0.2231,0.6041,-0.7644,-0.5496,-0.3371,-0.7639,0.2054,-0.6117,-0.7636,-0.4471,0.4659,-0.7631,-0.2238,0.6063,-0.7629,0.6046,-0.2292,-0.7628,-0.487,0.4255,-0.7627,0.32,-0.562,-0.7624,0.4379,0.4764,-0.7611,0.5927,0.2634,-0.7609,-0.6298,0.1565,-0.7597,-0.5251,-0.3835,-0.7597,0.2052,-0.617,-0.7597,-0.4717,0.4476,-0.7591,-0.463,0.4576,-0.759,-0.3293,0.5616,-0.7579,0.3608,-0.5435,-0.7577,-0.357,0.5463,-0.7572,0.5873,-0.286,-0.7566,0.5444,0.3623,-0.7564,0.0961,0.647,-0.7551,0.1566,0.6367,-0.7538,0.5818,0.3054,-0.7536,-0.2727,0.5981,-0.7529,0.5767,-0.3171,-0.7512,-0.6584,-0.0464,-0.7509,-0.255,0.6092,-0.7509,-0.498,-0.4338,-0.7493,-0.3692,0.5498,-0.749,-0.4007,0.5277,-0.749,-0.429,-0.5049,-0.7482,0.6631,-0.0202,-0.7478,-0.1093,0.6549,-0.7473,0.5369,-0.3916,-0.7469,-0.4207,-0.5149,-0.7458,0.175,-0.6427,-0.7457,0.2062,0.6336,-0.7453,-0.4528,-0.4893,-0.7441,-0.4055,-0.5309,-0.7437,-0.6128,-0.2671,-0.7428,0.6194,-0.254,-0.7424,-0.1292,0.6574,-0.7414,-0.3894,-0.5466,-0.7404,0.5944,-0.3138,-0.7403,0.1189,-0.6617,-0.7395,-0.6664,0.0955,-0.7394,0.4715,-0.4806,-0.7392,0.6733,0.0162,-0.7385,-0.2999,-0.6039,-0.7381,-0.0738,0.6706,-0.7374,-0.4177,-0.5308,-0.7373,0.395,-0.5481,-0.7372,-0.6753,0.0235,-0.7367,-0.2696,-0.6202,-0.7364,0.2388,-0.633,-0.7361,-0.5662,-0.3709,-0.7356,-0.1818,0.6525,-0.7351,0.3487,0.5815,-0.7348,-0.4186,0.5337,-0.7345,0.3217,0.5975,-0.7335,-0.2429,0.6348,-0.7322,-0.0518,-0.6791,-0.7318,-0.6107,0.3026,-0.7317,-0.6438,-0.2241,-0.7308,-0.2922,0.6169,-0.7306,0.1581,-0.6642,-0.7306,0.6828,-0.0058,-0.7305,-0.5201,0.4425,-0.7305,-0.4647,-0.5004,-0.7305,0.667,-0.1468,-0.7298,-0.0876,0.678,-0.7295,-0.4255,-0.5355,-0.7287,0.3852,-0.5662,-0.7278,-0.4341,0.531,-0.7278,0.417,0.5445,-0.7277,-0.2503,-0.6386,-0.7277,0.6457,0.2313,-0.7273,0.6273,-0.2784,-0.7271,-0.5283,0.4385,-0.7271,-0.4712,-0.4994,-0.7262,-0.0767,0.6831,-0.7261,-0.3527,-0.5902,-0.7261,-0.6429,-0.2437,-0.726,-0.3455,0.5946,-0.7236,-0.601,-0.3394,-0.7233,-0.4623,0.513,-0.7225,-0.2004,-0.6617,-0.7209,-0.3496,-0.5984,-0.7205,0.1605,0.6747,-0.7202,-0.6919,-0.0506,-0.72,-0.5957,0.3561,-0.7194,-0.4273,-0.5476,-0.7191,0.1151,0.6853,-0.7191,0.1817,0.6708,-0.7187,-0.0027,0.6953,-0.7184,-0.5969,0.3572,-0.718,0.5841,-0.3786,-0.718,0.3167,0.6198,-0.7172,0.3744,0.5877,-0.7169,-0.6816,0.1466,-0.7165,-0.6718,-0.1878,-0.7163,-0.6679,0.202,-0.7163,-0.6972,-0.0288,-0.7162,0.2615,0.6471,-0.715,0.226,0.6615,-0.7146,-0.1093,0.691,-0.7134,-0.57,-0.4077,-0.7125,0.5562,0.4278,-0.7119,0.4977,-0.4954,-0.7116,0.088,0.6971,-0.7116,0.0197,-0.7024,-0.7114,0.056,0.7005,-0.7108,-0.0543,0.7013,-0.7107,-0.4028,-0.5768,-0.7099,-0.4394,0.5504,-0.7099,0.6275,-0.3198,-0.7096,0.6385,-0.2981,-0.7095,-0.3561,0.6081,-0.7093,-0.4096,0.5736,-0.7087,-0.2107,-0.6733,-0.7081,-0.6667,0.2327,-0.7063,-0.1808,0.6844,-0.7061,0.1946,0.6808,-0.7045,0.6827,0.1937,-0.7044,-0.095,0.7035,-0.7042,-0.423,0.5703,-0.7035,0.5094,0.4956,-0.7035,0.6262,-0.3362,-0.7032,-0.237,0.6703,-0.7031,-0.6955,0.148,-0.7023,0.439,-0.5604,-0.7018,0.0762,0.7083,-0.7016,0.6912,0.173,-0.7015,-0.6795,0.2148,-0.7013,0.244,-0.6698,-0.7008,-0.6894,0.1831,-0.7004,0.6398,0.3165,-0.6999,-0.65,0.2961,-0.6996,-0.6904,0.1838,-0.6991,0.2057,-0.6848,-0.6981,-0.5971,0.3952,-0.6968,0.4474,-0.5606,-0.6967,0.6994,0.1594,-0.6962,-0.7176,0.0184,-0.6958,-0.459,0.5524,-0.6953,-0.0653,0.7157,-0.6949,-0.7191,-0.007,-0.6948,0.3497,-0.6285,-0.6947,0.1325,0.707,-0.6941,-0.6838,0.2251,-0.6939,-0.6616,0.2844,-0.6935,0.2606,0.6717,-0.6929,-0.1992,0.693,-0.6912,0.6193,0.3723,-0.6908,-0.5798,-0.4321,-0.6907,-0.0443,-0.7217,-0.6901,-0.723,0.0324,-0.6895,0.1176,-0.7147,-0.6893,0.4307,-0.5825,-0.6879,-0.5326,-0.493,-0.6869,0.1214,-0.7166,-0.6847,-0.6838,0.2521,-0.684,-0.2053,0.6999,-0.6829,0.0576,0.7283,-0.6827,0.6271,0.375,-0.6823,-0.3049,0.6644,-0.6818,-0.5891,0.4337,-0.6817,0.7273,-0.0795,-0.6815,-0.7264,0.0895,-0.6803,-0.4038,0.6117,-0.6793,-0.0666,-0.7308,-0.6792,-0.7327,-0.0424,-0.679,-0.3006,0.6698,-0.6789,0.4796,-0.5559,-0.6786,0.627,-0.3826,-0.6783,-0.7194,-0.1493,-0.677,-0.5005,0.5396,-0.6769,-0.4126,-0.6096,-0.6768,0.1564,0.7193,-0.6766,0.7144,-0.1785,-0.676,-0.3843,-0.6288,-0.6751,0.7017,0.2279,-0.6744,-0.6097,0.4164,-0.6742,-0.4291,-0.6011,-0.673,-0.7372,-0.0595,-0.6727,-0.7117,0.2025,-0.6727,0.6935,-0.2579,-0.672,-0.7336,0.1012,-0.6715,0.4668,0.5755,-0.6714,-0.7306,0.1241,-0.6711,-0.682,0.2906,-0.671,-0.6533,0.3507,-0.6703,-0.5519,0.4961,-0.6686,-0.6906,0.2757,-0.6682,0.2425,0.7033,-0.6678,0.1368,0.7317,-0.6657,0.319,0.6746,-0.6654,0.1507,-0.7311,-0.6653,-0.5993,0.4452,-0.6648,-0.3844,0.6405,-0.6647,-0.4568,0.5912,-0.6628,0.6995,0.2671,-0.6622,0.7491,0.0204,-0.6615,0.1084,0.7421,-0.661,-0.6422,-0.3881,-0.6605,-0.269,0.701,-0.6604,0.4863,-0.5722,-0.6604,0.5825,-0.4739,-0.6598,-0.6459,0.3841,-0.6594,-0.3373,-0.6719,-0.6592,0.0515,0.7502,-0.659,-0.5033,0.559,-0.6581,0.4907,-0.571,-0.6577,-0.4728,-0.5864,-0.657,-0.6092,0.444,-0.6563,-0.7408,0.143,-0.6559,0.2972,-0.6939,-0.6549,0.4451,-0.6107,-0.6544,-0.5973,0.4636,-0.6537,0.7567,0.0082,-0.6535,-0.1034,0.7498,-0.6532,-0.7545,-0.0639,-0.6531,-0.7531,0.0787,-0.6527,0.5107,-0.5596,-0.6526,-0.1622,0.7401,-0.6521,0.1737,0.738,-0.651,-0.024,0.7587,-0.6489,0.4874,0.5843,-0.6487,-0.5368,-0.5395,-0.6477,-0.4522,0.6132,-0.647,-0.6066,0.462,-0.6469,-0.7576,-0.0876,-0.6466,-0.1984,-0.7365,-0.6465,0.7479,-0.1509,-0.6463,-0.443,0.6214,-0.6453,-0.7591,-0.0864,-0.645,-0.7581,-0.0962,-0.6444,0.3011,-0.7029,-0.6443,0.5167,-0.5638,-0.6422,-0.7465,-0.1741,-0.642,0.7516,-0.1515,-0.6407,0.7266,-0.2481,-0.6407,-0.5372,0.5486,-0.6396,0.6772,0.3639,-0.6393,-0.2623,0.7228,-0.6393,0.5882,-0.4953,-0.6388,-0.2671,0.7215,-0.6384,-0.5072,0.5789,-0.638,0.5914,-0.4932,-0.6378,-0.034,-0.7694,-0.6378,-0.7565,0.1446,-0.6377,-0.7703,-0.0048,-0.6374,-0.3774,0.6718,-0.637,-0.7678,0.069,-0.6367,-0.339,0.6926,-0.6366,0.742,-0.2102,-0.636,0.1785,-0.7507,-0.6326,-0.3594,0.686,-0.6326,-0.2845,0.7204,-0.6324,-0.063,-0.772,-0.632,-0.7349,0.2459,-0.6318,-0.1403,0.7623,-0.6306,-0.3713,0.6815,-0.6303,-0.3629,0.6863,-0.6299,-0.7122,-0.3098,-0.6299,-0.729,0.2681,-0.6298,0.0074,-0.7767,-0.6293,-0.4506,0.6332,-0.6284,-0.0826,-0.7735,-0.6277,-0.417,0.6574,-0.6271,-0.4641,0.6256,-0.6253,-0.3659,-0.6893,-0.624,0.6284,-0.4645,-0.6238,-0.1798,-0.7606,-0.6237,0.606,0.4938,-0.6237,-0.4814,0.6159,-0.6235,0.4877,-0.6111,-0.6212,-0.4499,0.6417,-0.621,-0.7163,0.3182,-0.6208,0.1314,0.7729,-0.6206,-0.1667,0.7662,-0.62,-0.6441,0.4481,-0.6198,0.7354,-0.274,-0.6195,0.2669,-0.7382,-0.617,0.3363,-0.7115,-0.6169,0.7621,0.1969,-0.6168,-0.532,-0.5802,-0.615,0.3219,0.7198,-0.6147,0.7855,-0.0719,-0.6147,-0.2279,0.7551,-0.6145,-0.6138,-0.4956,-0.6142,-0.1935,0.765,-0.6137,0.1459,0.776,-0.6127,-0.7066,0.3539,-0.6122,0.5874,-0.5292,-0.6107,0.79,0.0543,-0.6094,0.4971,-0.6177,-0.6094,0.7924,0.0272,-0.6074,-0.7938,-0.0311,-0.6054,-0.7891,-0.104,-0.6049,-0.7896,0.1032,-0.6045,-0.7965,0.0126,-0.6045,0.4604,0.6501,-0.6012,-0.7956,0.0743,-0.5992,-0.1705,0.7822,-0.599,0.2388,0.7643,-0.5975,0.8,-0.0552,-0.5971,-0.7778,0.1964,-0.5969,-0.0265,0.8019,-0.595,0.2727,-0.756,-0.5947,-0.7258,0.3458,-0.5946,0.2539,0.7629,-0.5944,-0.5794,0.5576,-0.5944,0.0173,0.804,-0.5942,-0.0486,0.8028,-0.5935,0.1866,0.7829,-0.5935,0.8002,0.0867,-0.5933,-0.0833,0.8006,-0.5931,0.3346,0.7323,-0.5922,-0.352,-0.7248,-0.592,0.6077,0.5293,-0.5914,0.732,-0.3383,-0.5908,-0.6298,-0.5043,-0.5899,-0.155,-0.7924,-0.5895,0.7095,-0.3862,-0.5879,-0.7702,0.2474,-0.5868,-0.8033,0.1018,-0.5862,-0.4028,0.7029,-0.5853,-0.6758,-0.4481,-0.5846,0.1961,0.7873,-0.5846,-0.4686,-0.6624,-0.5843,-0.1653,0.7945,-0.5828,0.7946,0.1702,-0.5823,0.5735,0.5762,-0.5823,-0.3249,-0.7452,-0.5816,-0.1301,0.803,-0.5815,-0.4336,-0.6884,-0.5811,-0.8139,-0.003,-0.581,0.8085,-0.0932,-0.5796,0.2195,0.7848,-0.5792,-0.8147,0.0266,-0.5775,0.0049,-0.8164,-0.5755,0.8105,-0.1089,-0.575,0.1143,0.8101,-0.5745,-0.753,0.3209,-0.5738,-0.8164,-0.0657,-0.5733,-0.8077,0.1378,-0.5729,-0.8152,0.0855,-0.5728,0.0793,0.8158,-0.572,-0.7542,-0.3225,-0.5715,-0.7709,-0.2812,-0.5709,0.8103,-0.132,-0.5703,0.6945,0.4386,-0.569,0.4141,-0.7104,-0.5687,-0.8129,0.1254,-0.5683,0.2985,-0.7668,-0.5683,-0.6182,0.543,-0.5682,0.0846,0.8185,-0.5681,-0.8195,-0.076,-0.5677,-0.4575,0.6844,-0.5673,-0.6807,0.4635,-0.5656,-0.4952,0.6595,-0.5656,-0.3694,-0.7374,-0.5652,-0.7818,0.2633,-0.5641,0.6588,0.4977,-0.5641,-0.5405,0.6243,-0.5634,0.117,0.8179,-0.5631,-0.0253,0.826,-0.5612,-0.2249,0.7966,-0.561,-0.4527,0.6931,-0.5606,-0.4424,0.7,-0.5602,0.2865,-0.7772,-0.5582,0.3513,0.7516,-0.5577,0.6134,-0.5592,-0.5573,-0.1965,0.8067,-0.5566,-0.8225,0.1165,-0.556,-0.4254,-0.7141,-0.5551,0.1764,-0.8128,-0.5544,-0.8313,-0.0396,-0.5542,-0.7594,-0.3408,-0.5541,-0.83,0.0645,-0.5539,-0.2065,0.8066,-0.5537,-0.7436,0.3748,-0.5532,-0.367,0.7478,-0.5529,-0.3015,0.7768,-0.5513,-0.8178,0.165,-0.5506,-0.8338,0.0393,-0.5504,-0.4321,-0.7144,-0.5473,-0.617,-0.5655,-0.5467,-0.8217,0.161,-0.5465,0.8271,0.1317,-0.5461,-0.5154,0.6604,-0.5439,0.8079,0.2267,-0.5428,-0.7628,-0.3514,-0.5418,0.6485,-0.5347,-0.5418,-0.8017,0.2525,-0.5415,-0.3024,-0.7844,-0.5411,0.3282,-0.7742,-0.5403,0.828,-0.1501,-0.5385,0.8134,-0.22,-0.5385,0.7566,0.371,-0.538,0.6688,0.5131,-0.5373,0.727,-0.4275,-0.5372,0.7059,0.4616,-0.5357,0.3637,0.7621,-0.5351,-0.8443,0.0283,-0.5333,-0.4307,0.7281,-0.532,-0.4368,0.7254,-0.5318,-0.8463,0.0305,-0.5315,-0.4297,-0.73,-0.5278,0.5021,-0.6851,-0.5269,-0.676,0.5152,-0.5264,-0.4568,0.7171,-0.5262,0.1091,-0.8433,-0.5257,-0.8188,0.2308,-0.5255,0.5487,0.6502,-0.5247,-0.7089,-0.4713,-0.5236,0.4187,-0.742,-0.5229,0.1463,-0.8397,-0.5215,-0.8532,-0.0021,-0.5205,0.8537,0.0171,-0.5203,0.7747,0.3594};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_116_vector_2()
		{
			double[] value = {-0.5199,-0.5267,-0.6725,-0.5186,-0.0154,0.8549,-0.5181,0.3934,0.7594,-0.5159,-0.1716,0.8393,-0.5143,-0.2496,0.8205,-0.5135,-0.8529,0.0945,-0.5131,-0.4059,0.7563,-0.5129,-0.1861,-0.838,-0.5125,0.3814,0.7693,-0.5109,0.1078,0.8528,-0.5103,-0.2427,0.825,-0.5098,-0.3213,-0.798,-0.5091,-0.5492,0.6627,-0.5079,-0.5211,0.686,-0.5078,-0.6302,0.5873,-0.5075,-0.8593,-0.0636,-0.5074,-0.8568,-0.0914,-0.5068,-0.5152,0.6912,-0.5059,0.8467,-0.1651,-0.5057,-0.4661,0.726,-0.5049,-0.6126,-0.6081,-0.5045,0.4244,-0.752,-0.5031,-0.7311,-0.4608,-0.5011,-0.3177,-0.8049,-0.5008,0.2929,0.8145,-0.5001,-0.8389,-0.2148,-0.4997,-0.862,-0.0854,-0.4972,0.7838,-0.372,-0.4968,-0.7876,-0.3645,-0.4967,0.1355,0.8573,-0.4961,0.2404,-0.8343,-0.4957,0.0701,-0.8657,-0.4956,0.4157,0.7626,-0.4956,-0.6003,0.6277,-0.4954,-0.5967,0.6313,-0.4948,-0.1188,0.8608,-0.4941,-0.8144,0.3044,-0.4902,-0.2875,0.8228,-0.4897,-0.8569,0.1611,-0.4882,-0.8193,0.3007,-0.4881,-0.6524,0.5798,-0.4875,-0.6638,-0.5673,-0.4874,-0.4733,-0.7337,-0.4867,-0.4653,0.7393,-0.4857,-0.4547,-0.7465,-0.4857,-0.0152,-0.874,-0.4843,-0.1749,0.8572,-0.4836,0.6558,-0.5797,-0.4817,0.6778,0.5554,-0.4808,-0.12,0.8686,-0.4805,-0.0835,0.873,-0.4798,-0.4651,0.744,-0.4782,0.2927,0.8281,-0.4769,-0.5628,0.6751,-0.4768,-0.301,0.8259,-0.4766,0.5239,0.7059,-0.4765,-0.8733,0.1018,-0.4764,0.1702,-0.8626,-0.4754,-0.4508,0.7555,-0.4753,-0.587,-0.6553,-0.475,-0.8133,0.3361,-0.4749,-0.0236,0.8797,-0.4745,0.8538,-0.2141,-0.4736,-0.5549,0.684,-0.4727,-0.8093,0.3487,-0.472,-0.775,-0.4203,-0.4714,0.4384,0.7652,-0.4712,-0.1166,0.8743,-0.4698,0.8683,-0.1591,-0.4698,-0.8715,0.1408,-0.4694,0.4147,-0.7796,-0.4687,-0.5006,-0.7278,-0.4667,-0.4705,0.7489,-0.4661,-0.7988,0.3803,-0.4656,0.1837,0.8657,-0.465,-0.875,0.1346,-0.4641,0.6378,-0.6146,-0.4639,-0.2248,-0.8569,-0.4634,-0.1171,-0.8784,-0.4618,0.1758,-0.8694,-0.4618,-0.7952,-0.3929,-0.4608,-0.7739,-0.4345,-0.4601,-0.533,-0.7101,-0.4599,0.6448,-0.6106,-0.458,0.4988,-0.7358,-0.458,0.2777,-0.8445,-0.4572,0.0138,-0.8893,-0.4557,-0.2855,0.8431,-0.4551,-0.4621,0.7611,-0.4551,-0.6142,0.6447,-0.4549,0.5336,0.713,-0.4539,0.6645,-0.5936,-0.453,0.1356,0.8812,-0.4529,0.7997,-0.3941,-0.4526,-0.882,-0.1312,-0.4521,-0.5357,0.7131,-0.4498,0.5201,0.7261,-0.4495,0.6948,0.5614,-0.4493,-0.8269,0.3381,-0.4485,-0.8875,0.1056,-0.4478,-0.6868,0.5725,-0.4456,0.4011,0.8004,-0.4451,-0.0271,0.8951,-0.4438,-0.4339,-0.7841,-0.4423,0.7216,-0.5326,-0.4422,-0.7195,0.5354,-0.4418,0.184,-0.878,-0.4417,0.2882,-0.8496,-0.441,-0.0289,0.897,-0.441,-0.854,-0.2761,-0.4403,-0.8978,0.006,-0.44,-0.7446,-0.5019,-0.4397,-0.4879,-0.754,-0.4397,0.1103,0.8914,-0.4387,-0.5197,0.7331,-0.4386,-0.8386,-0.323,-0.4384,-0.2194,0.8716,-0.4384,0.0814,-0.8951,-0.4379,0.4389,-0.7846,-0.4376,0.7941,0.4219,-0.437,-0.0471,-0.8982,-0.4367,-0.5579,0.7057,-0.4366,-0.8283,0.3511,-0.4348,0.3909,-0.8112,-0.4348,-0.1407,-0.8895,-0.4345,-0.0773,-0.8974,-0.4332,-0.8791,-0.1989,-0.4326,-0.3,-0.8502,-0.4324,-0.2439,0.8681,-0.4323,0.679,0.5933,-0.4322,-0.7172,-0.5466,-0.4322,-0.2544,0.8651,-0.4306,-0.8751,0.2211,-0.4304,-0.2192,0.8756,-0.4289,-0.8837,0.1876,-0.4287,-0.8941,-0.1295,-0.4272,-0.6501,0.6284,-0.427,-0.566,-0.7052,-0.4269,0.7897,0.4406,-0.4269,0.3682,-0.8259,-0.426,0.6734,0.6041,-0.4255,-0.5388,-0.7271,-0.425,-0.8505,-0.3097,-0.424,0.1761,-0.8884,-0.4222,0.8838,-0.2017,-0.4221,0.6993,-0.5769,-0.4221,0.8984,-0.1215,-0.4214,-0.6855,-0.5937,-0.4209,-0.8613,-0.2846,-0.4206,-0.2459,0.8733,-0.42,-0.9063,-0.0461,-0.4165,-0.8198,-0.3931,-0.4158,0.3722,0.8298,-0.4144,-0.4546,0.7884,-0.414,0.5691,0.7105,-0.4133,-0.4901,0.7675,-0.4133,0.0987,-0.9052,-0.412,-0.5902,0.6942,-0.4114,-0.6561,0.6327,-0.4101,0.766,0.495,-0.4089,0.847,0.3398,-0.4044,-0.7616,0.5064,-0.4036,-0.7704,0.4936,-0.4035,-0.8885,-0.2188,-0.4028,-0.6779,0.615,-0.4026,0.4132,0.8168,-0.4004,-0.2083,0.8923,-0.4004,-0.7069,0.5831,-0.4,-0.0555,-0.9148,-0.3994,-0.8836,0.2444,-0.399,-0.8851,0.2394,-0.3983,-0.5537,-0.7313,-0.3981,-0.5588,0.7275,-0.3972,-0.1386,0.9072,-0.3939,0.6207,0.6779,-0.3933,-0.5648,0.7255,-0.3928,-0.8498,0.3515,-0.3925,0.4443,0.8053,-0.3908,-0.0171,0.9203,-0.3902,-0.0124,-0.9206,-0.3902,0.1955,-0.8997,-0.3897,-0.0575,0.9191,-0.3896,-0.0921,0.9164,-0.3895,-0.918,-0.0747,-0.389,-0.9028,0.1833,-0.389,-0.7649,0.5134,-0.3887,-0.5682,0.7254,-0.3884,0.7138,-0.5828,-0.3883,-0.9102,0.144,-0.3876,-0.9032,0.1843,-0.3874,-0.4205,-0.8204,-0.3868,0.0267,-0.9218,-0.3867,-0.7126,-0.5854,-0.3866,0.8932,-0.2296,-0.3849,-0.8998,0.2055,-0.382,-0.4133,-0.8266,-0.3819,-0.3732,0.8455,-0.3817,0.9073,-0.1764,-0.3817,-0.9067,0.1794,-0.3814,0.5412,0.7494,-0.3806,0.5719,0.7267,-0.3796,-0.865,-0.3281,-0.378,-0.0052,-0.9258,-0.3774,0.7163,0.5869,-0.3768,0.7751,-0.5072,-0.3763,0.5827,0.7203,-0.3758,0.8642,0.3346,-0.3757,-0.471,-0.7981,-0.3756,-0.7837,0.4948,-0.3753,-0.9,0.2216,-0.3746,0.6912,-0.618,-0.3733,-0.0125,0.9276,-0.3732,0.285,0.8829,-0.3729,-0.9095,0.1839,-0.3723,-0.5925,0.7144,-0.3723,-0.4307,-0.8222,-0.3709,-0.7527,0.544,-0.3706,-0.9112,0.1797,-0.3694,-0.3821,-0.8471,-0.3686,-0.7777,0.5092,-0.3684,0.8308,-0.4171,-0.3668,-0.9137,0.1751,-0.3664,-0.9256,0.0954,-0.3663,-0.8756,-0.3148,-0.3663,0.4131,-0.8338,-0.3657,-0.8487,0.382,-0.3656,-0.9184,0.1514,-0.3652,-0.734,0.5726,-0.3649,0.8982,-0.245,-0.3637,-0.8518,-0.3771,-0.3632,-0.882,0.3002,-0.3618,-0.8942,0.2638,-0.3616,-0.9273,-0.0967,-0.3613,-0.6281,0.6892,-0.3612,0.5375,-0.762,-0.3604,-0.8456,0.3938,-0.3603,-0.3268,0.8737,-0.3598,0.2896,-0.8869,-0.3586,-0.921,0.152,-0.3581,-0.8625,0.3576,-0.358,0.4034,-0.8421,-0.358,0.7027,0.6149,-0.358,-0.393,0.847,-0.3563,-0.9086,0.2179,-0.3558,0.0445,-0.9335,-0.3548,0.8059,0.4739,-0.3537,0.0964,0.9304,-0.3535,-0.7699,0.5313,-0.3532,-0.2625,0.898,-0.3525,0.1878,0.9168,-0.3522,-0.826,0.44,-0.352,-0.7247,0.5924,-0.3515,-0.0865,0.9322,-0.3511,-0.8913,-0.287,-0.3497,-0.7795,0.5197,-0.3495,-0.833,-0.4289,-0.3491,-0.7779,0.5226,-0.349,-0.4163,-0.8396,-0.3486,-0.0077,0.9372,-0.3479,-0.1355,-0.9277,-0.3462,-0.5616,0.7515,-0.3461,-0.9317,0.1106,-0.3459,0.5151,-0.7842,-0.3453,-0.6409,-0.6856,-0.3452,-0.8948,0.2831,-0.3449,-0.6846,0.6422,-0.3439,-0.8934,0.2891,-0.3429,-0.331,-0.8791,-0.3422,0.8073,-0.4807,-0.3417,0.649,-0.6797,-0.3412,0.0825,0.9364,-0.3407,-0.876,0.3413,-0.3403,-0.6902,0.6386,-0.3383,-0.8273,0.4485,-0.3377,-0.9314,-0.136,-0.337,-0.6614,-0.67,-0.3351,-0.171,0.9265,-0.3344,-0.9007,0.2774,-0.3342,-0.9421,-0.0272,-0.3339,-0.5413,0.7717,-0.3338,0.6644,0.6687,-0.3337,0.8791,0.3403,-0.3337,-0.9301,0.1537,-0.3332,0.3429,-0.8783,-0.3331,-0.9226,0.1946,-0.3324,-0.3492,0.8761,-0.3324,0.8958,-0.295,-0.3315,-0.2676,-0.9047,-0.3278,-0.2815,-0.9018,-0.3277,-0.3063,-0.8938,-0.3274,0.2762,-0.9036,-0.3273,-0.9329,0.1505,-0.3268,0.6553,-0.681,-0.3266,0.2628,-0.9079,-0.3253,-0.9449,0.037,-0.3252,0.8283,-0.4564,-0.3247,-0.8535,-0.4075,-0.3241,-0.6151,-0.7188,-0.3226,0.105,-0.9407,-0.322,-0.4827,-0.8145,-0.3208,-0.9054,-0.2782,-0.3199,0.5414,-0.7775,-0.3197,0.0267,-0.9471,-0.3193,-0.9369,-0.1424,-0.3192,-0.9008,-0.2945,-0.3175,-0.8886,-0.331,-0.3172,0.9474,0.0434,-0.3168,0.3435,0.8841,-0.316,-0.8691,0.3805,-0.3141,-0.921,0.2304,-0.3137,-0.8853,0.3432,-0.3132,-0.6639,0.679,-0.3109,-0.9243,0.2215,-0.309,-0.7181,0.6235,-0.3073,-0.3583,0.8816,-0.3062,-0.5734,-0.7599,-0.3049,-0.9509,-0.053,-0.3016,-0.1986,0.9325,-0.3011,-0.9177,-0.2591,-0.3002,-0.9088,-0.2897,-0.3002,-0.4116,-0.8605,-0.2998,-0.7701,0.5631,-0.2994,-0.4896,0.8189,-0.298,0.7191,0.6278,-0.297,-0.5024,0.812,-0.2963,-0.8082,0.509,-0.2957,0.843,0.4493,-0.2955,-0.9553,-0.0049,-0.2951,-0.4109,0.8626,-0.2938,-0.2475,0.9233,-0.2935,-0.1195,0.9485,-0.2915,-0.6372,-0.7134,-0.2905,-0.2796,-0.9151,-0.2901,-0.8403,0.4579,-0.2897,-0.9544,0.0721,-0.289,-0.6942,0.6592,-0.2889,0.5901,-0.7539,-0.2885,-0.7345,0.6143,-0.2872,0.7199,0.6319,-0.2867,-0.913,-0.2901,-0.2862,-0.9476,0.1421,-0.286,-0.7392,-0.6097,-0.2853,-0.9269,0.2439,-0.2844,0.5499,-0.7853,-0.2837,-0.8595,0.4251,-0.2836,0.5569,-0.7807,-0.2834,-0.9568,0.0648,-0.2825,-0.2534,-0.9252,-0.2814,-0.6572,0.6993,-0.2809,0.1069,-0.9538,-0.2806,-0.9581,0.0576,-0.2803,0.1305,0.951,-0.2769,0.9189,0.2809,-0.2767,0.8146,-0.5097,-0.2758,-0.7764,0.5667,-0.2741,-0.9366,-0.2182,-0.274,-0.9194,0.2823,-0.2735,0.451,0.8496,-0.2719,0.7257,0.6321,-0.2714,-0.8529,0.446,-0.2712,0.1429,-0.9519,-0.2712,0.1824,0.9451,-0.2711,-0.4016,0.8748,-0.2674,-0.7826,0.5622,-0.2654,-0.8609,-0.4341,-0.265,0.6512,-0.7111,-0.2646,-0.962,0.0671,-0.2643,-0.9538,0.143,-0.2634,-0.8997,-0.3482,-0.2628,-0.2625,-0.9285,-0.2626,-0.9573,0.1206,-0.2623,0.7332,-0.6274,-0.2623,0.7418,0.6172,-0.262,-0.3282,0.9076,-0.2619,0.8562,-0.4453,-0.2604,0.6864,0.679,-0.2602,0.6191,-0.741,-0.2596,-0.9652,-0.0329,-0.2588,0.6874,-0.6786,-0.2587,0.7282,0.6347,-0.2561,0.5254,-0.8114,-0.255,-0.9666,-0.0256,-0.2543,-0.5512,0.7947,-0.2518,-0.5799,0.7748,-0.2512,-0.3111,0.9166,-0.251,-0.6829,-0.686,-0.2503,0.6585,-0.7097,-0.2501,-0.9667,0.0543,-0.2495,-0.6883,-0.6812,-0.2493,0.6385,-0.7281,-0.2484,-0.0279,-0.9683,-0.248,0.214,0.9448,-0.2459,-0.9582,0.146,-0.2448,-0.9695,-0.013,-0.2427,0.1934,0.9506,-0.2424,-0.9646,0.1036,-0.2415,-0.1731,0.9548,-0.2411,0.4256,-0.8722,-0.241,0.2586,-0.9354,-0.2405,0.5937,0.7679,-0.2397,0.0979,-0.9659,-0.239,0.2373,0.9416,-0.2366,-0.5755,0.7828,-0.2362,-0.549,-0.8018,-0.2359,0.347,0.9077,-0.2355,-0.4597,0.8563,-0.2352,0.9382,-0.2539,-0.2352,-0.1791,0.9553,-0.2351,-0.0801,0.9687,-0.232,0.1942,-0.9531,-0.2302,-0.6092,0.7589,-0.2299,-0.461,-0.8571,-0.2295,-0.3683,-0.9009,-0.2293,0.9395,0.2545,-0.2286,0.8697,0.4374,-0.2271,-0.9651,0.1303,-0.2267,0.7522,0.6187,-0.2257,-0.9724,0.0588,-0.2242,-0.9673,0.1189,-0.2241,0.931,-0.288,-0.2225,0.5635,-0.7956,-0.2224,0.4949,0.84,-0.2214,-0.9473,-0.2314,-0.2213,-0.3778,-0.8991,-0.2209,-0.7315,0.645,-0.2197,0.7555,-0.6172,-0.2188,-0.5416,0.8117,-0.2187,0.8711,-0.4397,-0.2182,-0.7015,0.6785,-0.217,-0.6693,0.7106,-0.2167,-0.9675,0.1301,-0.2166,-0.3078,-0.9264,-0.216,-0.8444,0.4902,-0.2155,0.9342,-0.2842,-0.2151,-0.8401,0.498,-0.2148,0.0251,0.9763,-0.2144,-0.4523,0.8657,-0.2137,-0.9073,-0.362,-0.2137,0.3823,0.899,-0.2133,-0.0442,-0.976,-0.213,0.9567,0.1983,-0.2111,-0.9759,-0.0558,-0.2092,0.573,0.7924,-0.2077,-0.9356,0.2855,-0.2072,-0.9471,0.245,-0.2049,0.8117,-0.5469,-0.2049,0.5637,-0.8001,-0.2032,0.7386,-0.6427,-0.2031,0.3881,0.899,-0.2024,-0.4458,0.8719,-0.2022,-0.8246,-0.5283,-0.2016,-0.7498,0.6301,-0.1994,-0.6503,-0.7331,-0.1994,0.4039,-0.8928,-0.1979,0.366,-0.9093,-0.1967,-0.9805,0.0023,-0.1965,-0.7674,0.6103,-0.1945,0.6301,-0.7518,-0.1927,-0.8012,0.5665,-0.1923,-0.9311,0.3099,-0.1911,0.5779,-0.7934,-0.1906,0.3015,-0.9342,-0.1903,0.202,-0.9607,-0.1902,0.3448,-0.9192,-0.1902,0.4859,0.8531,-0.189,0.5838,0.7896,-0.1878,-0.3604,0.9137,-0.1876,-0.7246,0.6632,-0.186,-0.5585,0.8084,-0.1843,0.8588,-0.478,-0.1843,-0.9797,0.0789,-0.1843,0.6499,-0.7374,-0.1842,-0.9827,0.0169,-0.1837,-0.362,-0.9139,-0.1824,-0.979,0.0914,-0.1823,-0.8695,0.4591,-0.1798,0.1049,-0.9781,-0.1776,0.1661,0.97,-0.1753,0.0472,0.9834,-0.1743,-0.031,0.9842,-0.1733,0.8019,-0.5718,-0.1732,-0.3837,-0.907,-0.173,0.4694,0.8659,-0.1723,-0.4018,-0.8994,-0.1712,0.2926,-0.9408,-0.1711,-0.2731,0.9466,-0.171,-0.493,-0.8531,-0.1682,-0.5688,0.8051,-0.168,0.7382,-0.6533,-0.168,-0.8819,-0.4404,-0.1655,-0.3714,0.9136,-0.1654,0.1495,0.9748,-0.1654,0.5834,-0.7952,-0.1627,0.8124,-0.5599,-0.1609,0.9101,0.382,-0.1608,-0.9303,0.3296,-0.1607,0.3797,0.911,-0.1607,0.2483,-0.9553,-0.1607,-0.8524,0.4976,-0.1606,-0.855,-0.4931,-0.1604,0.6761,-0.7191,-0.1599,-0.742,-0.651,-0.1593,-0.8258,0.5411,-0.159,0.3714,0.9147,-0.1587,0.5423,0.825,-0.1586,-0.4369,0.8854,-0.1581,-0.7549,-0.6365,-0.1578,-0.694,0.7024,-0.1572,-0.7838,0.6008,-0.1563,0.9781,-0.1372,-0.1556,0.9184,0.3638,-0.1548,-0.423,0.8928,-0.1544,0.8415,-0.5178,-0.1539,-0.9503,-0.2706,-0.1532,0.7504,0.643,-0.1528,-0.9882,0.0122,-0.1526,-0.1297,0.9797,-0.1514,-0.0105,-0.9884,-0.1509,-0.4064,0.9011,-0.1499,-0.5441,-0.8255,-0.1498,0.7144,0.6836,-0.1496,0.0773,-0.9857,-0.149,-0.622,0.7687,-0.1481,-0.067,0.9867,-0.1473,-0.1589,0.9762,-0.1463,-0.9886,0.035,-0.146,0.8807,-0.4506,-0.1457,-0.9874,0.0621,-0.145,0.3948,-0.9073,-0.1437,-0.103,0.9842,-0.1413,-0.918,0.3706,-0.1411,-0.9626,-0.2314,-0.1409,0.3618,0.9216,-0.1398,-0.3648,0.9205,-0.1395,-0.7045,0.6959,-0.1379,-0.6155,0.776,-0.1379,0.4134,-0.9001,-0.1375,-0.9551,-0.2626,-0.1367,0.1696,0.976,-0.1365,-0.3882,-0.9114,-0.1363,-0.9663,-0.2186,-0.1362,-0.2786,0.9507,-0.1359,-0.3254,0.9358,-0.1357,0.6595,0.7393,-0.135,-0.938,-0.3192,-0.1344,0.0379,-0.9902,-0.1344,-0.355,0.9251,-0.1342,0.0766,-0.988,-0.1331,-0.2379,0.9621,-0.1328,0.0606,0.9893,-0.1307,-0.9352,-0.3291,-0.13,-0.9218,-0.3651,-0.1293,-0.8339,-0.5366,-0.1284,-0.7228,0.679,-0.1266,0.9768,-0.1726,-0.1253,-0.0734,0.9894,-0.1252,0.0674,0.9898,-0.1248,-0.9297,-0.3467,-0.1245,-0.9252,-0.3586,-0.1245,-0.8806,-0.4572,-0.1243,-0.6916,0.7115,-0.1229,-0.6571,0.7438,-0.1227,0.6809,-0.722,-0.1222,0.9338,-0.3362,-0.1219,-0.8883,0.4427,-0.1217,0.4429,0.8883,-0.1208,0.6797,0.7235,-0.1208,0.414,0.9022,-0.1204,0.6234,0.7726,-0.1192,-0.8216,0.5575,-0.1186,0.7827,-0.611,-0.1161,-0.3655,-0.9235,-0.1155,-0.9912,0.0651,-0.1153,-0.1775,-0.9773,-0.1137,0.2869,0.9512,-0.1128,-0.7676,-0.6309,-0.1125,0.9896,-0.0901,-0.1116,0.7387,0.6647,-0.1106,0.9935,-0.0263,-0.1106,-0.9743,0.1965,-0.1103,-0.9368,0.3321,-0.109,-0.4726,0.8745,-0.1074,-0.9666,-0.2327,-0.1068,-0.3524,-0.9297,-0.1062,-0.6935,-0.7126,-0.1049,-0.8215,0.5604,-0.1039,0.3771,-0.9203,-0.1038,-0.5143,0.8513,-0.1035,-0.6157,-0.7812,-0.1027,0.7793,0.6182,-0.1023,-0.7329,0.6726,-0.1021,-0.1844,-0.9775,-0.1006,-0.3638,-0.926,-0.1003,-0.3938,0.9137,-0.0996,0.579,-0.8092,-0.0981,0.4948,0.8635,-0.0979,-0.2917,-0.9515,-0.0969,0.0464,0.9942,-0.0957,-0.3979,-0.9124,-0.0949,-0.9181,-0.3849,-0.094,-0.677,0.7299,-0.093,-0.7058,0.7023,-0.0913,0.7179,-0.6901,-0.0887,0.7394,0.6674,-0.0877,-0.9873,0.1325,-0.0872,0.3146,0.9452,-0.0866,0.3308,0.9397,-0.0859,-0.7341,0.6735,-0.0858,-0.4229,-0.9021,-0.0858,0.6137,0.7849,-0.0844,0.3886,-0.9175,-0.0844,0.5422,-0.836,-0.0838,0.5385,-0.8384,-0.0837,-0.9779,0.1916,-0.0836,0.0069,0.9965,-0.0811,0.616,-0.7836,-0.0806,-0.2761,-0.9577,-0.0802,-0.7001,0.7096,-0.0787,-0.5188,0.8513,-0.0787,-0.6352,0.7684,-0.0773,-0.6302,0.7726,-0.077,-0.2975,0.9516,-0.0758,0.7424,-0.6657,-0.0752,-0.5731,0.816,-0.074,-0.4366,0.8966,-0.0714,0.6417,-0.7636,-0.0713,-0.7148,0.6956,-0.0711,-0.6639,0.7445,-0.0704,0.0738,0.9948,-0.0692,0.6461,0.7601,-0.0686,-0.3538,-0.9328,-0.0678,0.6571,0.7508,-0.0678,0.5359,0.8415,-0.067,-0.994,0.0866,-0.0651,-0.8379,0.5419,-0.0641,-0.6527,0.7549,-0.0635,-0.6913,0.7198,-0.062,-0.4246,0.9032,-0.062,0.5567,0.8284,-0.0618,0.8763,-0.4779,-0.0616,-0.6907,0.7205,-0.061,0.9665,0.2494,-0.0609,-0.9943,0.0874,-0.0605,-0.3172,0.9464,-0.0604,-0.9982,0.0015,-0.0602,0.8298,0.5548,-0.06,0.2667,0.9619,-0.0592,0.6881,-0.7232,-0.0591,-0.4306,0.9006,-0.0583,0.0313,-0.9978,-0.0583,-0.9942,-0.0899,-0.0578,-0.2238,0.9729,-0.0574,0.3284,0.9428,-0.0563,0.4986,0.865,-0.055,-0.3572,-0.9324,-0.0549,0.9702,-0.2359,-0.0548,-0.9287,-0.3668,-0.0546,0.4697,0.8811,-0.0545,-0.6963,0.7156,-0.0544,-0.8266,0.5602,-0.0541,0.9587,0.2793,-0.0516,-0.7139,0.6983,-0.0512,-0.819,-0.5715,-0.051,-0.9174,-0.3947,-0.0509,0.9987,0.0079,-0.0494,-0.94,0.3377,-0.0479,0.9953,-0.0842,-0.0472,0.1635,0.9854,-0.0456,-0.3599,0.9319,-0.0447,-0.8123,0.5815,-0.0436,-0.7851,0.6178,-0.0431,-0.9399,0.3389,-0.043,-0.6097,-0.7914,-0.0421,-0.5129,0.8574,-0.0401,-0.8819,0.4698,-0.039,0.4074,-0.9124,-0.0377,-0.974,0.2234,-0.0369,-0.3336,0.942,-0.0325,-0.9618,-0.2718,-0.0322,-0.7479,0.663,-0.0322,-0.9973,-0.0655,-0.0321,-0.855,0.5177,-0.0313,-0.7367,0.6755,-0.0303,0.2368,0.9711,-0.0294,-0.9675,0.2512,-0.0281,-0.2638,0.9642,-0.0276,-0.9812,-0.1908,-0.0258,0.1802,-0.9833,-0.0239,-0.9749,-0.2214,-0.0233,-0.8982,0.439,-0.0229,-0.6179,-0.786,-0.0224,-0.9674,0.2524,-0.0223,0.187,-0.9821,-0.0183,-0.6234,0.7817,-0.0182,0.97,-0.2423,-0.0163,0.9528,-0.3031,-0.0159,0.9991,-0.0395,-0.0153,-0.8346,0.5506,-0.0151,0.7099,-0.7041,-0.0151,-0.3398,0.9404,-0.0147,-0.0933,0.9955,-0.0135,-0.4272,0.904,-0.0132,-0.2433,0.9699,-0.0131,0.1982,-0.9801,-0.0128,0.3135,-0.9495,-0.0128,-0.6907,-0.723,-0.0127,-0.9692,0.246,-0.0126,-0.9264,0.3763,-0.0117,-0.9995,-0.0303,-0.0107,-0.9766,0.2148,-0.0103,-0.8199,0.5724,-0.0093,-0.0222,-0.9997,-0.0069,-0.9441,-0.3296,-0.0068,-0.761,-0.6487,-0.005,-0.3875,0.9219,-0.0048,-0.9407,0.3392,-0.0047,-0.2784,0.9604,-0.0029,0.2731,-0.962,-0.0022,-0.9943,-0.1064,-0.0021,-0.9949,0.1011,-0.0021,-0.1987,0.98,-0.0019,0.2253,0.9743,-0.0009,0.9023,0.4311,-0.0007,-0.0085,1.0,-0.0004,0.9548,0.2972,0.0007,-0.6198,0.7848,0.0021,0.4986,-0.8668,0.0041,-0.4195,0.9078,0.0044,0.8645,-0.5027,0.0053,-0.3096,0.9508,0.0053,0.972,0.2351,0.0062,-0.9904,0.1378,0.0066,-0.6206,-0.7841,0.0067,-0.7983,0.6022,0.0068,0.6231,0.7821,0.0091,-0.8265,0.5628,0.0106,-0.0793,0.9968,0.0112,-0.9788,0.2047,0.0121,-0.7625,0.6469,0.0125,0.4413,0.8973,0.0138,-0.9087,-0.4172,0.0154,-0.0022,0.9999,0.0154,-0.9747,0.2231,0.0158,-0.9175,0.3975,0.0166,0.9012,0.4332,0.0184,-0.8914,0.4529,0.0185,0.3891,0.921,0.0189,-0.9333,0.3585,0.0199,0.7845,0.6198,0.0203,-0.3031,-0.9528,0.0205,0.2166,-0.976,0.021,-0.6169,0.7868,0.0212,0.8609,-0.5083,0.0225,0.9666,0.2553,0.0226,-0.9974,-0.0683,0.0229,0.0677,-0.9974,0.0232,0.0196,0.9995,0.025,-0.9646,0.2624,0.0258,-0.3588,0.9331,0.0259,0.5967,0.802,0.0259,-0.611,-0.7912,0.0294,0.1652,0.9858,0.0295,0.9626,-0.2694,0.0299,0.677,-0.7353,0.0324,0.9226,-0.3845,0.0325,0.6151,0.7878,0.0331,-0.5497,0.8347,0.0331,0.9164,0.3988,0.0337,-0.3779,0.9252,0.0339,-0.8035,0.5944,0.0351,-0.6994,0.7139,0.0355,-0.6448,-0.7635,0.036,-0.1901,-0.9811,0.0365,0.3281,-0.9439,0.0372,-0.9971,-0.0665,0.0373,0.8374,-0.5453,0.0377,-0.7442,0.6669,0.0387,0.8357,0.5478,0.0388,-0.5006,0.8648,0.0391,-0.6104,-0.7911,0.0393,-0.4842,0.8741,0.0396,-0.9925,0.116,0.0398,0.2474,0.9681,0.0413,-0.9967,0.0694,0.0423,0.7822,0.6216,0.0425,-0.8262,-0.5618,0.0435,-0.964,-0.2625,0.0437,-0.5189,-0.8537,0.044,-0.9868,0.156,0.0441,0.2728,0.9611,0.0454,0.2877,-0.9567,0.0455,-0.9662,-0.2536,0.0456,0.3851,0.9217,0.0464,0.2927,-0.9551,0.0468,0.0853,-0.9953,0.0472,0.1113,-0.9927,0.0474,-0.9664,0.2526,0.0483,-0.9735,0.2234,0.0487,-0.4344,0.8994,0.0489,0.3012,0.9523,0.0525,-0.2216,-0.9737,0.0532,-0.3131,-0.9482,0.0532,-0.7213,0.6906,0.0533,-0.053,0.9972,0.0539,-0.6233,0.7801,0.054,-0.3188,-0.9463,0.0542,0.4047,0.9128,0.0553,0.3336,-0.9411,0.0558,-0.7258,-0.6857,0.0561,0.7786,-0.6251,0.0568,0.7399,-0.6703,0.0571,0.9911,-0.1199,0.0585,-0.5063,-0.8604,0.0594,0.2589,0.9641,0.0598,-0.4644,0.8836,0.0611,-0.9981,-0.0002,0.0611,0.3019,-0.9514,0.0627,-0.7094,0.702,0.0628,-0.823,-0.5645,0.0633,-0.5621,-0.8246,0.0633,0.6996,-0.7117,0.0634,0.5483,-0.8339,0.0635,-0.9854,0.1577,0.0642,-0.9526,-0.2975,0.0651,0.9182,-0.3906,0.0654,0.5952,0.8009,0.0655,-0.9832,-0.1701,0.0659,0.0783,0.9948,0.0669,-0.9974,0.0268,0.0673,0.854,-0.5158,0.0676,-0.6719,0.7376,0.069,-0.947,0.3138,0.0697,0.7666,-0.6383,0.0701,0.5617,-0.8243,0.0701,0.0384,0.9968,0.0705,-0.9955,-0.0637,0.0706,-0.9602,0.2701,0.0707,-0.2091,0.9753,0.0718,0.0417,-0.9965,0.0728,0.7489,-0.6587,0.0732,-0.6813,0.7284,0.0745,-0.2613,-0.9624,0.075,-0.1151,-0.9905,0.0755,0.0805,-0.9939,0.0757,-0.1571,0.9847,0.0759,0.8692,-0.4886,0.0783,-0.5445,0.8351,0.0786,0.5393,0.8385,0.0793,-0.0421,0.996,0.0804,-0.7591,0.646,0.0807,-0.1923,0.978,0.0822,-0.4672,0.8803,0.0827,-0.4102,-0.9082,0.0831,-0.0509,-0.9952,0.0831,-0.9542,-0.2873,0.0837,-0.9821,-0.1689,0.0839,-0.9331,0.3497,0.0848,-0.7358,0.6719,0.0851,0.1001,0.9913,0.086,-0.9061,0.4143,0.0861,-0.5487,-0.8316,0.0873,-0.033,-0.9956,0.0876,-0.838,-0.5386,0.0877,-0.6317,-0.7703,0.088,0.8892,-0.449,0.0898,-0.5368,-0.8389,0.0898,-0.8831,-0.4605,0.0902,0.8085,-0.5816,0.0903,-0.4787,-0.8733,0.0913,0.4301,-0.8982,0.0918,-0.9385,0.3327,0.0929,-0.9915,-0.0916,0.0933,0.5071,-0.8568,0.0937,-0.2602,-0.961,0.0938,-0.2557,0.9622,0.0966,-0.741,0.6645,0.0968,0.1715,-0.9804,0.0969,0.5052,0.8576,0.0977,-0.7173,0.6899,0.0979,-0.8267,-0.5541,0.0984,-0.5948,0.7978,0.0986,0.5183,-0.8495,0.0986,-0.3461,0.933,0.0995,-0.4438,0.8906,0.0998,-0.526,0.8446,0.102,-0.991,-0.0869,0.1025,-0.3462,-0.9325,0.1034,0.4133,0.9047,0.1035,0.5254,-0.8445,0.1037,-0.7766,0.6214,0.1037,-0.4277,-0.8979,0.1037,0.5417,-0.8342,0.1039,-0.9172,-0.3845,0.1048,-0.6746,0.7308,0.1053,0.5311,0.8408,0.1057,0.6355,0.7648,0.1062,0.601,-0.7922,0.1067,-0.6862,0.7196,0.1081,-0.027,0.9938,0.1088,-0.7665,-0.6329,0.1089,-0.9914,-0.073,0.109,-0.654,0.7486,0.1091,-0.7533,-0.6486,0.1094,0.948,-0.2987,0.11,0.3744,-0.9207,0.1108,-0.966,0.2335,0.1114,-0.4697,-0.8758,0.1123,0.1319,0.9849,0.1124,0.7162,-0.6887,0.113,-0.9561,0.2704,0.1134,-0.7369,0.6664,0.1135,-0.5417,-0.8329,0.114,0.3003,0.947,0.1145,-0.9652,0.235,0.1153,-0.5927,-0.7971,0.116,-0.959,-0.2587,0.1165,0.8644,0.4891,0.1166,-0.8217,-0.5579,0.1173,-0.7747,0.6213,0.1176,-0.7333,0.6697,0.1189,-0.9656,-0.2313,0.119,-0.8689,0.4805,0.1191,-0.986,0.1164,0.1198,-0.783,0.6104,0.1201,0.3814,0.9166,0.1204,-0.123,0.9851,0.1235,-0.7395,-0.6617,0.1236,-0.8342,0.5374,0.1237,-0.7769,-0.6174,0.1241,-0.2507,0.9601,0.1249,0.5122,-0.8497,0.1252,0.5621,0.8175,0.1254,-0.9507,0.2835,0.1263,-0.1608,0.9789,0.1263,0.7707,-0.6245,0.1266,-0.9161,0.3804,0.1275,0.2499,-0.9598,0.1287,0.4605,-0.8783,0.1289,0.0762,0.9887,0.1293,-0.9365,0.326,0.1299,-0.9887,-0.0746,0.1299,0.1436,-0.9811,0.1299,-0.9709,0.2014,0.1304,-0.7341,0.6664,0.1312,-0.8365,0.532,0.1313,0.2729,0.953,0.1315,-0.7992,-0.5865,0.1316,0.939,0.3178,0.1324,0.9799,-0.1494,0.1337,-0.9825,0.1296,0.1339,-0.8228,0.5523,0.1343,-0.8452,0.5174,0.1344,-0.4141,-0.9003,0.1362,-0.9452,0.2967,0.1368,0.9205,-0.366,0.1369,-0.6966,0.7043,0.138,0.3957,0.908,0.1389,-0.5606,0.8164,0.1411,0.4604,0.8764,0.1413,-0.9835,0.1133,0.1415,0.1639,-0.9763,0.1415,-0.9691,-0.2023,0.1436,-0.8507,-0.5056,0.144,-0.9866,-0.0766,0.144,-0.9856,0.0887,0.1449,0.8774,0.4573,0.1452,-0.514,0.8454,0.1454,0.4888,-0.8602,0.146,-0.9867,-0.0712,0.1463,0.8015,-0.5798,0.1478,-0.9875,-0.0553,0.1482,0.4489,0.8812,0.1484,-0.9786,0.1427,0.1486,0.1889,0.9707,0.1492,0.3472,0.9259,0.1516,0.8426,-0.5167,0.1516,0.6725,-0.7244,0.1541,-0.3958,0.9053,0.1554,-0.6269,-0.7634,0.156,-0.9293,-0.3349,0.156,0.5972,0.7868,0.156,-0.742,0.652,0.1574,0.3434,-0.9259,0.158,0.9866,-0.0402,0.1584,-0.937,0.3114,0.159,-0.6458,0.7467,0.1596,-0.2131,-0.9639,0.1602,0.8548,0.4937,0.1604,0.2383,-0.9579,0.1607,-0.9184,0.3617,0.1607,-0.2917,0.9429,0.1618,-0.9837,-0.0784,0.1621,-0.9766,0.1416,0.1622,-0.2812,-0.9458,0.1628,-0.6134,-0.7728,0.1631,0.9413,0.2957,0.1636,0.5112,0.8437,0.164,-0.787,0.5948,0.1645,-0.9828,-0.0838,0.1659,0.6659,-0.7274};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=3 */
		private double[] getNormal_6_116_vector_3()
		{
			double[] value = {0.1662,-0.2035,0.9649,0.1664,0.5596,0.8119,0.1664,0.6325,-0.7564,0.1672,0.2331,-0.958,0.1684,0.2157,0.9618,0.1687,-0.3588,0.918,0.1704,-0.2268,0.9589,0.171,0.0074,-0.9852,0.1716,0.4111,0.8953,0.172,-0.7968,0.5792,0.1733,0.7515,0.6366,0.1759,-0.9804,0.0886,0.1761,-0.8853,-0.4304,0.1773,0.9244,0.3376,0.178,-0.7625,0.622,0.1797,-0.2146,0.96,0.1807,0.7257,0.6638,0.182,0.7929,-0.5815,0.182,-0.9785,-0.097,0.1822,0.5457,0.8179,0.1835,-0.9826,0.03,0.1841,-0.9828,0.01,0.1845,-0.8184,-0.5442,0.1853,0.9706,0.1534,0.1863,-0.7577,0.6254,0.1864,-0.9823,0.0209,0.1867,-0.9801,-0.0673,0.1868,0.3496,0.9181,0.1878,-0.9777,-0.0942,0.1879,0.2978,-0.936,0.1882,0.6149,0.7658,0.1886,-0.7823,0.5936,0.1899,-0.9782,-0.0843,0.1902,0.1857,-0.964,0.1909,-0.9016,0.3881,0.1912,-0.9793,-0.0669,0.1914,-0.0232,-0.9812,0.192,0.9144,0.3564,0.1933,-0.2917,0.9368,0.1938,0.5168,0.8339,0.1946,0.9378,0.2874,0.1953,-0.976,-0.0967,0.1959,0.5077,0.839,0.197,-0.8999,0.3891,0.198,-0.977,-0.079,0.1981,-0.8048,-0.5595,0.1984,-0.8356,0.5122,0.2005,-0.8879,0.414,0.2007,0.1963,-0.9598,0.2028,0.402,-0.8929,0.2035,-0.9761,-0.0761,0.2045,-0.1272,-0.9706,0.2045,-0.8081,0.5524,0.2047,-0.9752,-0.0839,0.2052,-0.6317,0.7476,0.2059,-0.9202,0.3328,0.208,0.9742,-0.0879,0.209,-0.0429,-0.977,0.2095,-0.1584,0.9649,0.2109,-0.5282,0.8225,0.2114,-0.7772,0.5927,0.2115,-0.7667,0.6062,0.2132,-0.9422,-0.2584,0.2132,-0.9689,-0.1259,0.2137,-0.1784,-0.9605,0.2154,-0.5259,0.8228,0.2155,-0.9462,-0.2414,0.2162,-0.7104,0.6698,0.2167,0.3839,-0.8976,0.2168,-0.9713,0.0982,0.2171,-0.948,0.2328,0.2174,-0.9409,0.2595,0.2176,-0.1008,-0.9708,0.219,-0.9724,-0.0811,0.2193,0.1708,-0.9606,0.2194,0.0464,-0.9745,0.2204,-0.2547,-0.9416,0.2206,-0.5561,0.8013,0.2206,-0.756,-0.6163,0.2206,-0.6365,0.739,0.222,-0.9699,-0.0999,0.2221,-0.6336,0.7411,0.2222,0.3635,-0.9047,0.2241,-0.9724,-0.0644,0.2244,0.851,-0.4749,0.2248,-0.581,0.7822,0.2259,0.6026,-0.7654,0.2263,-0.8022,0.5526,0.2266,-0.9444,0.2383,0.2283,-0.9465,-0.2281,0.2284,0.854,-0.4675,0.2285,-0.9571,0.1779,0.2286,0.1014,0.9682,0.2295,0.3328,0.9146,0.23,-0.704,0.6719,0.2306,0.5876,0.7756,0.2325,-0.6429,0.7298,0.2326,-0.9675,-0.099,0.2329,-0.9467,-0.2227,0.2331,0.0094,-0.9724,0.2332,0.1825,0.9552,0.2338,-0.6929,0.682,0.2338,-0.5798,-0.7805,0.2346,-0.0466,0.971,0.2347,-0.8499,0.4717,0.235,-0.9673,-0.0951,0.2366,-0.9483,-0.2117,0.237,-0.9024,0.36,0.2374,-0.9479,-0.2126,0.2381,-0.9712,0.0047,0.2384,-0.4557,-0.8576,0.24,0.308,0.9206,0.24,0.9261,-0.2911,0.2401,-0.7438,-0.6238,0.2401,-0.9473,-0.212,0.2402,0.4359,0.8674,0.2402,0.1352,0.9613,0.2405,-0.3269,0.914,0.2408,-0.6571,-0.7143,0.2412,-0.7553,-0.6094,0.2413,-0.299,0.9232,0.2418,-0.7303,0.6389,0.2426,-0.0539,-0.9686,0.2428,-0.0704,0.9675,0.243,0.6415,-0.7277,0.2434,-0.9051,0.3486,0.2444,-0.842,0.4809,0.2446,-0.6806,0.6907,0.2446,-0.683,0.6883,0.2465,-0.6337,0.7333,0.2467,-0.8947,0.3725,0.2473,0.8028,0.5425,0.2474,-0.2406,0.9386,0.2488,-0.2169,0.944,0.2492,-0.4785,0.842,0.25,-0.6275,0.7374,0.2518,-0.953,-0.1685,0.2527,-0.5772,0.7765,0.2535,0.9147,-0.3148,0.254,-0.0022,0.9672,0.2548,0.6058,0.7537,0.2553,0.2612,-0.9309,0.2555,0.2473,-0.9346,0.2558,0.7195,-0.6457,0.2561,-0.3036,-0.9177,0.2563,0.9533,0.16,0.257,-0.8294,0.4961,0.2574,-0.9513,-0.1698,0.2584,-0.8714,-0.4169,0.2595,-0.956,0.1366,0.2598,-0.7826,0.5657,0.2598,-0.1841,-0.9479,0.2603,0.8053,-0.5327,0.2603,-0.7201,-0.6432,0.2605,-0.6934,0.6718,0.2612,0.8215,-0.5069,0.2634,0.9366,0.2311,0.2652,-0.9519,-0.1534,0.2661,0.9025,-0.3387,0.2666,-0.9532,-0.1426,0.2671,-0.2418,-0.9328,0.2677,-0.6922,0.6702,0.268,0.5375,0.7996,0.269,0.765,-0.5852,0.2692,-0.2836,0.9204,0.2696,-0.9436,-0.1923,0.27,0.8126,0.5165,0.2712,-0.7235,-0.6348,0.2724,0.6204,0.7354,0.2735,-0.8141,0.5124,0.2739,0.5821,-0.7656,0.2739,0.6456,0.7129,0.2743,0.8734,-0.4025,0.2746,-0.2801,-0.9199,0.2752,-0.8522,0.445,0.2757,0.6028,-0.7488,0.2766,-0.8824,0.3806,0.2772,-0.9523,-0.1276,0.2777,0.8917,0.3575,0.2785,-0.2764,-0.9198,0.2799,-0.8846,0.373,0.2801,-0.7124,-0.6434,0.2811,-0.9247,0.257,0.2832,0.6285,-0.7244,0.2839,-0.9562,0.0715,0.2842,-0.6148,-0.7357,0.2844,0.9519,-0.1141,0.2848,0.5692,-0.7713,0.286,-0.8741,0.3926,0.2867,-0.9132,-0.2896,0.287,-0.9251,-0.2489,0.2888,0.825,0.4858,0.2893,0.941,-0.1758,0.29,-0.7653,0.5747,0.29,-0.8274,-0.481,0.2905,-0.7285,0.6204,0.2907,0.1702,-0.9416,0.2917,-0.9344,-0.2046,0.2919,-0.8373,-0.4623,0.2926,0.8508,0.4364,0.2927,-0.9549,0.0501,0.2933,-0.6809,0.6711,0.2939,0.0012,-0.9558,0.2949,0.8997,-0.3217,0.2962,-0.9414,-0.1614,0.2968,-0.8289,0.4741,0.2973,-0.8724,0.3881,0.298,0.9276,0.2252,0.2983,0.3286,0.8961,0.2983,-0.9374,-0.1799,0.2984,0.4916,0.8181,0.2991,0.8975,0.324,0.2991,-0.2719,0.9147,0.3,-0.2173,0.9289,0.3002,-0.9411,-0.1557,0.3003,0.7856,-0.541,0.3005,0.869,-0.3931,0.3013,-0.9299,-0.2109,0.3024,0.9511,0.0628,0.3031,-0.814,0.4955,0.3035,-0.901,-0.31,0.3038,0.3231,0.8963,0.3042,0.8362,-0.4563,0.3045,0.8616,-0.4062,0.3055,0.8435,0.4418,0.3055,-0.9398,0.1531,0.3059,0.5967,-0.7419,0.3064,-0.7703,0.5593,0.3066,-0.6273,0.7159,0.3073,0.0659,-0.9493,0.3084,-0.1504,0.9393,0.31,-0.2446,0.9187,0.3123,-0.8274,0.4668,0.313,-0.6257,-0.7145,0.3137,-0.4471,0.8377,0.3155,-0.8126,0.4901,0.3156,-0.93,0.1884,0.3174,-0.8868,-0.3359,0.3178,0.9157,0.2462,0.3182,-0.8292,0.4596,0.3185,-0.7959,0.5148,0.3188,0.9238,0.2119,0.3194,-0.9115,0.2592,0.3196,-0.9475,0.0095,0.3196,0.6056,0.7288,0.3199,-0.604,0.7299,0.32,-0.6642,0.6756,0.3202,-0.4021,0.8578,0.3222,0.5049,0.8008,0.3228,-0.9389,0.1195,0.3234,-0.8444,-0.4271,0.3235,-0.4368,0.8394,0.3241,0.048,0.9448,0.3241,-0.3848,0.8642,0.3271,-0.1823,-0.9272,0.3279,-0.8845,0.3319,0.3282,-0.9356,-0.1299,0.3286,-0.4368,-0.8374,0.3286,-0.9053,0.2693,0.329,0.1831,0.9264,0.329,0.8328,0.4453,0.3294,0.9298,0.1644,0.3302,0.383,0.8627,0.3332,-0.4719,0.8163,0.3335,0.466,0.8195,0.3364,0.0617,-0.9397,0.3365,0.2752,0.9006,0.3383,0.9193,0.2012,0.3387,-0.0402,0.94,0.339,0.5281,-0.7786,0.3391,0.0331,0.9402,0.3397,0.2696,0.9011,0.3402,-0.3437,-0.8753,0.3412,0.1555,-0.927,0.3413,0.8921,-0.2961,0.3415,-0.1306,-0.9308,0.3419,-0.8387,-0.4239,0.342,0.9194,-0.1943,0.3435,-0.1374,-0.9291,0.3445,0.5188,-0.7824,0.3445,0.3966,-0.8509,0.3458,-0.9362,0.063,0.3461,0.6434,0.6828,0.3468,-0.8262,0.444,0.3473,-0.7126,0.6096,0.3497,-0.8218,0.4498,0.3503,-0.8034,0.4815,0.3514,0.0991,0.931,0.3521,-0.1005,0.9306,0.353,-0.8873,0.297,0.353,-0.3427,-0.8706,0.3541,0.201,-0.9134,0.3543,0.9003,-0.2527,0.3547,0.6509,0.6712,0.356,-0.8436,-0.402,0.3562,-0.9336,0.0381,0.3566,-0.7146,0.6018,0.3575,-0.9057,-0.2278,0.3578,0.6406,0.6794,0.3581,-0.7348,0.5761,0.3582,0.7042,0.613,0.3592,0.9252,0.122,0.3604,-0.8326,-0.4205,0.3611,0.4894,0.7938,0.3614,0.9205,0.1488,0.3622,-0.8144,0.4534,0.3625,-0.6417,-0.6759,0.3635,0.5554,-0.7479,0.3636,-0.9175,-0.1612,0.3638,-0.9134,0.1828,0.3641,0.5728,-0.7344,0.3642,0.859,-0.3599,0.3646,-0.2052,-0.9083,0.3647,0.2968,-0.8826,0.3652,-0.0894,-0.9266,0.3656,-0.0265,0.9304,0.3667,0.8606,0.3534,0.3668,-0.8477,-0.3831,0.3669,-0.5261,-0.7672,0.367,0.9163,0.1603,0.367,-0.9126,0.18,0.3682,0.3476,0.8623,0.3688,-0.8957,-0.2486,0.3688,0.084,-0.9257,0.3701,0.5711,0.7327,0.3712,-0.7401,0.5608,0.3712,-0.825,0.4261,0.3718,0.5503,-0.7476,0.3727,0.8759,0.3065,0.3728,0.6844,0.6266,0.3736,-0.1038,-0.9218,0.3743,0.6095,-0.6988,0.3747,-0.7914,0.483,0.3749,-0.5388,-0.7544,0.3756,0.6786,-0.6312,0.3758,-0.7538,0.539,0.3761,-0.8282,0.4154,0.3771,0.7723,-0.5113,0.3776,0.64,0.6692,0.3792,0.2386,0.894,0.3797,0.861,-0.3385,0.3805,-0.0136,0.9247,0.3809,0.198,0.9032,0.3814,0.7798,0.4964,0.3823,0.7764,-0.501,0.3825,0.8121,-0.4407,0.3831,-0.8312,0.403,0.3833,0.7849,0.4868,0.3843,-0.63,0.6748,0.3844,0.8478,0.3653,0.3849,-0.4212,0.8213,0.3863,0.3051,-0.8704,0.3865,0.6825,-0.6203,0.3879,0.9216,-0.0081,0.3885,-0.621,0.6808,0.3892,-0.153,0.9084,0.39,-0.6955,0.6035,0.3907,-0.876,0.2827,0.3912,-0.8954,-0.2127,0.3916,-0.9059,0.1611,0.3916,0.4767,0.787,0.3918,0.5447,-0.7415,0.392,-0.2,0.898,0.3921,-0.0936,-0.9151,0.3938,0.6186,0.6799,0.3939,0.8628,0.317,0.3941,0.9038,0.1665,0.3954,-0.8622,0.3167,0.3961,-0.7454,0.5363,0.3965,0.6157,0.6809,0.3968,0.3351,0.8546,0.397,0.3327,-0.8554,0.3975,0.7533,-0.524,0.3983,0.789,0.4679,0.3986,0.0522,0.9157,0.3994,-0.8161,0.4177,0.3995,0.6113,0.6832,0.3995,-0.3541,0.8456,0.3997,-0.9124,-0.0879,0.3997,0.6411,-0.6551,0.4001,0.6703,-0.625,0.4019,-0.1172,-0.9082,0.403,0.8776,0.2596,0.4031,-0.0469,-0.9139,0.4037,0.0633,0.9127,0.4048,-0.7786,0.4795,0.4065,0.5292,0.7448,0.4079,-0.3701,0.8346,0.4109,0.8739,-0.2596,0.4119,-0.1846,0.8923,0.4125,0.1543,-0.8978,0.4132,0.0562,0.9089,0.4146,-0.3232,-0.8507,0.4155,0.2122,0.8845,0.4165,0.1398,0.8983,0.4167,0.7217,-0.5526,0.417,0.6701,0.6141,0.4172,0.5619,0.7143,0.4174,0.8667,-0.273,0.4175,0.519,-0.7458,0.4176,0.7114,0.5653,0.4178,-0.2181,0.882,0.4196,-0.879,-0.2264,0.4198,0.8482,0.3231,0.421,0.6115,0.67,0.4215,-0.8593,0.2898,0.4224,-0.7323,0.5342,0.4235,-0.7119,0.5602,0.4245,0.8788,-0.218,0.425,-0.582,0.6933,0.4253,-0.6326,-0.6473,0.4254,0.7464,-0.5118,0.4273,0.8962,0.1195,0.4279,-0.7299,0.5331,0.4279,-0.8927,0.1415,0.4281,-0.7827,0.4517,0.4282,0.7759,0.4634,0.4283,-0.8722,-0.2364,0.4285,0.6957,-0.5765,0.4286,0.8319,0.3526,0.4286,0.2699,0.8622,0.4295,-0.1647,0.8879,0.4296,0.8666,-0.2537,0.4304,-0.5738,-0.6968,0.4311,-0.8621,0.2663,0.4313,-0.8964,0.102,0.4313,0.8253,-0.3644,0.4318,-0.8257,0.3631,0.4326,-0.8604,-0.2695,0.4337,-0.8543,0.2867,0.4342,0.8188,-0.3755,0.4356,0.7892,0.4329,0.4367,0.6906,-0.5765,0.4377,0.0994,-0.8936,0.4379,-0.1822,-0.8804,0.4382,0.505,0.7437,0.4388,0.8844,0.1591,0.4395,-0.1736,0.8813,0.4397,-0.7724,0.4584,0.4422,0.2802,-0.852,0.4425,-0.7599,0.4761,0.4427,0.8747,-0.1973,0.4433,0.1032,-0.8904,0.4435,0.8923,-0.0841,0.4444,-0.796,0.411,0.4445,-0.8083,-0.3862,0.4455,0.7442,-0.4977,0.447,0.588,-0.6741,0.4476,0.4506,0.7724,0.4483,0.0554,-0.8922,0.4491,-0.2852,-0.8468,0.4492,0.3393,0.8265,0.4497,0.0509,0.8917,0.4499,-0.0499,-0.8917,0.4503,0.8238,-0.3444,0.4503,-0.784,-0.4273,0.4507,0.8476,0.28,0.4525,-0.4762,0.754,0.4532,-0.715,-0.5323,0.4544,0.1175,-0.883,0.4549,-0.8397,0.2967,0.4549,0.4639,-0.7602,0.455,0.8059,0.3789,0.4564,-0.8873,0.0669,0.4606,-0.5667,-0.6831,0.4608,0.5338,-0.709,0.4609,-0.8848,-0.0687,0.4624,0.8854,-0.0473,0.4629,0.3715,-0.8049,0.463,-0.413,0.7842,0.4639,-0.8786,0.1137,0.4644,0.6826,-0.5643,0.4646,-0.5586,0.6871,0.4679,-0.4212,-0.777,0.4687,0.0909,-0.8786,0.4695,0.5435,0.6959,0.4709,0.0611,0.88,0.4711,0.7964,-0.3793,0.4727,0.5685,-0.6734,0.4728,-0.7868,-0.3967,0.4728,-0.6882,-0.5503,0.4729,0.8204,-0.3213,0.4731,0.5954,0.6494,0.4741,-0.0318,-0.8799,0.4744,-0.5709,0.67,0.4751,-0.1295,-0.8704,0.4751,0.8711,0.1242,0.4758,0.2911,-0.83,0.4759,-0.5235,-0.7067,0.4767,0.7702,0.4238,0.4768,0.4475,-0.7566,0.4772,-0.4591,0.7493,0.4778,-0.8093,0.3417,0.4778,0.0777,-0.875,0.4794,0.0079,-0.8775,0.4802,0.3982,0.7815,0.4804,0.6467,-0.5925,0.4848,0.437,0.7576,0.4859,0.0747,-0.8708,0.4877,-0.8481,-0.207,0.488,-0.7624,0.4249,0.4882,-0.8638,0.1248,0.4891,0.1758,-0.8544,0.4893,0.8209,-0.2943,0.4897,0.5846,-0.6469,0.4912,0.6084,-0.6234,0.4925,0.821,0.2887,0.4933,0.6036,-0.6263,0.4943,-0.4981,0.7125,0.4943,0.4655,0.7341,0.495,-0.8663,0.0671,0.4951,0.3596,0.7909,0.4954,-0.7096,0.5011,0.4956,0.8685,0.0082,0.4976,-0.8183,0.2877,0.4981,-0.8294,0.253,0.4991,0.4601,0.7343,0.4992,0.7967,0.3407,0.4995,-0.6178,0.6073,0.5007,0.3994,-0.768,0.5011,0.7232,-0.4752,0.5018,-0.8238,0.2637,0.5032,-0.0703,-0.8613,0.5034,-0.7867,0.3574,0.5036,-0.8353,-0.2205,0.5038,-0.8041,0.3156,0.5038,-0.3445,-0.7921,0.5042,0.6835,-0.5278,0.5043,-0.7897,-0.3494,0.5045,0.4259,-0.7511,0.5052,-0.5965,-0.6237,0.5056,-0.7233,0.4703,0.506,0.2645,-0.821,0.5062,-0.7828,0.3621,0.5069,0.2455,0.8263,0.5072,-0.7229,0.4692,0.5073,0.8424,-0.1819,0.5079,0.5252,-0.6828,0.5095,0.403,-0.7603,0.5103,0.8374,-0.196,0.5111,0.0734,0.8564,0.5112,0.5309,0.6759,0.5119,-0.8535,0.0971,0.5136,-0.7541,0.4094,0.5139,-0.2349,0.825,0.5142,0.6781,-0.5251,0.5145,0.6643,-0.5422,0.5152,-0.7238,0.459,0.5173,0.3761,-0.7688,0.5173,-0.1721,0.8383,0.5195,0.8446,-0.1298,0.5199,0.8132,-0.2616,0.521,-0.4888,0.6997,0.5211,-0.0996,0.8476,0.5249,0.7873,-0.3235,0.5249,-0.0529,-0.8495,0.5266,0.4765,-0.704,0.5266,-0.6617,-0.5338,0.5278,-0.7014,-0.4789,0.5281,0.092,0.8442,0.5289,-0.7836,0.3258,0.529,0.5626,0.6353,0.529,-0.8376,0.1359,0.5298,0.8342,0.1531,0.5309,-0.8474,-0.012,0.5313,0.8249,0.1929,0.5335,0.7605,-0.3701,0.5336,-0.786,0.3123,0.5336,0.4104,-0.7395,0.5354,-0.8204,0.2008,0.5355,0.3935,-0.7473,0.5357,-0.6749,0.5075,0.5361,-0.8437,0.0283,0.5368,0.6449,-0.544,0.537,-0.5515,0.6383,0.538,-0.7637,0.3569,0.5381,0.4261,-0.7272,0.5394,-0.3233,0.7775,0.5397,0.2486,0.8043,0.5398,0.1758,-0.8232,0.5401,0.793,-0.2818,0.5403,-0.4807,0.6906,0.5409,0.3671,-0.7568,0.5417,0.8103,-0.2237,0.5418,0.6587,0.5221,0.5444,0.2379,-0.8044,0.5446,-0.6441,0.5371,0.5447,-0.8142,0.201,0.5455,0.5929,-0.5924,0.5458,0.8275,-0.1315,0.5463,0.1419,0.8255,0.5464,0.8342,0.0747,0.5466,-0.6948,0.4674,0.5475,-0.7998,0.2461,0.5477,0.0829,0.8326,0.5477,0.8244,-0.1428,0.5483,0.6225,0.5584,0.5484,0.674,-0.495,0.55,-0.7512,-0.3651,0.5503,-0.7551,0.3562,0.5511,-0.8227,0.1393,0.5512,0.1623,0.8184,0.5519,0.4233,0.7185,0.5531,0.5019,0.665,0.5535,0.5725,0.6049,0.5535,-0.8303,0.0651,0.5541,-0.3752,0.7431,0.5544,0.7232,-0.4119,0.5547,0.1717,0.8141,0.5553,-0.8313,0.0226,0.5559,0.3326,0.7618,0.5562,0.8257,-0.0939,0.5564,-0.8237,-0.1096,0.558,-0.8085,0.1873,0.5582,0.0342,0.829,0.5584,0.1057,0.8228,0.5586,-0.5727,0.5999,0.5588,0.1697,-0.8117,0.5599,-0.7336,0.3852,0.5604,-0.1589,-0.8128,0.5606,-0.6347,0.5319,0.5606,0.4737,0.6792,0.561,0.342,0.7539,0.5614,-0.8219,0.0968,0.5619,-0.7518,0.3449,0.5623,-0.3118,0.7659,0.5629,0.3217,-0.7613,0.5635,-0.7899,-0.2419,0.5639,0.7052,-0.4298,0.5643,-0.7988,-0.2085,0.5645,-0.309,0.7654,0.5646,-0.7538,0.3361,0.5646,0.2969,0.7701,0.5666,-0.7496,-0.3423,0.5667,0.8092,-0.155,0.5667,-0.7973,0.2076,0.5671,0.7905,-0.2313,0.5679,-0.8103,0.1444,0.5687,-0.4833,-0.6656,0.5699,-0.8114,-0.1299,0.5699,-0.698,0.4336,0.5702,0.5615,-0.5996,0.5709,-0.6132,0.5459,0.5714,0.5822,-0.5784,0.5717,0.1283,-0.8104,0.5731,-0.1702,-0.8016,0.5741,0.6233,0.531,0.5755,-0.7331,-0.3623,0.576,0.7883,0.2164,0.5763,-0.5762,-0.5796,0.5774,0.6826,0.448,0.5776,-0.815,-0.0455,0.5778,0.8151,-0.0421,0.5781,0.3275,0.7474,0.5788,0.6134,-0.5373,0.5792,-0.0972,-0.8094,0.5797,0.7562,0.3035,0.58,0.5735,0.5786,0.5803,-0.2994,-0.7574,0.5803,-0.7324,0.3562,0.5804,0.7637,0.2828,0.5804,-0.4891,-0.6511,0.5805,-0.4749,0.6614,0.5806,-0.7617,0.2876,0.5809,0.1866,0.7923,0.5826,-0.3524,0.7324,0.5829,0.3735,0.7216,0.5837,-0.7319,0.3517,0.5837,-0.7955,0.1626,0.5839,0.3946,0.7095,0.5839,-0.3686,0.7233,0.584,-0.3917,0.711,0.5848,0.7689,0.2583,0.5856,-0.0094,-0.8106,0.5862,-0.5261,0.6161,0.5876,0.3913,0.7083,0.5882,0.1396,0.7966,0.5882,0.6642,0.4613,0.5884,-0.7492,0.3041,0.5889,-0.8081,0.0067,0.5891,-0.1654,-0.791,0.5891,-0.689,0.4222,0.5895,0.7396,-0.3248,0.59,-0.8072,0.0187,0.5904,-0.8057,0.0471,0.5906,-0.7942,-0.1426,0.5909,-0.3846,0.7092,0.591,-0.2235,0.7751,0.5911,-0.3056,0.7464,0.5914,0.1315,0.7956,0.5924,-0.6894,0.4168,0.5926,0.6915,0.4131,0.5928,-0.2959,0.7491,0.5936,-0.8019,-0.0679,0.5943,0.5435,0.5928,0.5954,0.5189,0.6133,0.5963,0.1515,0.7883,0.5966,-0.7167,0.361,0.5974,-0.1478,-0.7882,0.5979,0.2825,-0.7501,0.598,0.2273,-0.7686,0.6006,0.0362,-0.7987,0.6009,0.6686,0.438,0.6022,0.6701,0.4341,0.6032,-0.301,0.7386,0.6042,-0.6955,0.3889,0.6044,0.2455,-0.7579,0.6055,0.7358,-0.3031,0.6057,0.5446,0.5802,0.6075,-0.766,0.2102,0.6083,-0.7725,0.1825,0.6088,-0.5703,-0.5514,0.6093,-0.7646,-0.2099,0.6094,-0.791,-0.0538,0.6103,0.5406,-0.579,0.6105,-0.7112,0.3485,0.6109,0.6181,-0.4947,0.6115,0.5732,-0.5454,0.6118,-0.1012,0.7845,0.6125,0.1534,0.7754,0.6126,-0.1282,-0.78,0.6128,-0.2159,0.7602,0.6131,0.3152,0.7244,0.6136,0.7367,-0.2843,0.6141,-0.7793,-0.125,0.6143,-0.5572,0.5588,0.6145,-0.6239,0.4828,0.6145,-0.4418,-0.6536,0.615,-0.7874,-0.0416,0.6152,-0.754,0.2303,0.6158,-0.7815,0.0999,0.616,-0.62,0.486,0.6163,-0.4695,-0.6322,0.6166,-0.7108,0.3385,0.6166,0.4534,0.6436,0.6169,-0.5777,0.5345,0.6177,0.5667,-0.5453,0.6189,0.7834,-0.0572,0.6192,-0.6811,0.3908,0.6203,0.3882,0.6816,0.622,0.7719,-0.131,0.6223,-0.7093,0.3311,0.6226,0.7616,-0.1799,0.6226,0.7337,-0.2721,0.6228,0.5203,0.5843,0.6229,0.1179,-0.7734,0.623,-0.7067,0.3353,0.6232,0.7814,-0.0333,0.6232,-0.1255,0.7719,0.6235,-0.5566,-0.549,0.6239,-0.7803,-0.0427,0.6241,0.4877,-0.6104,0.6243,0.2876,-0.7263,0.6248,0.7757,0.0891,0.6253,0.1014,0.7738,0.6259,-0.0894,0.7747,0.6259,0.5389,0.5637,0.6265,0.2099,0.7506,0.6269,-0.6182,0.4741,0.628,0.614,0.4782,0.6287,0.4234,0.6523,0.6288,-0.2699,-0.7293,0.6295,-0.775,0.0556,0.6299,0.7275,0.272,0.6303,-0.7752,-0.043,0.6306,-0.7654,0.1282,0.6309,-0.7655,0.1265,0.6312,0.3312,-0.7014,0.632,-0.309,0.7107,0.6328,-0.2316,0.7389,0.6328,-0.7163,0.294,0.6332,-0.5743,0.5189,0.6334,-0.2455,-0.7338,0.6334,-0.7723,0.0482,0.6335,-0.772,-0.052,0.6339,-0.4768,0.609,0.6342,-0.6637,0.3966,0.6349,-0.588,0.5012,0.6355,0.3661,0.6797,0.637,-0.5465,0.5437,0.6371,0.7487,-0.183,0.6378,-0.6823,0.3572,0.6381,-0.1459,0.756,0.6389,-0.6803,0.3592,0.6389,0.7178,-0.2767,0.6392,0.5452,0.5424,0.6416,0.7344,-0.2214,0.6418,0.3656,-0.6741,0.6418,0.5179,0.5656,0.6419,-0.3459,0.6843,0.6427,0.2491,0.7245,0.6435,-0.6593,0.3888,0.6435,0.5367,-0.5458,0.6443,0.6,0.4743,0.6446,-0.7382,0.1989,0.6447,0.0808,0.7601,0.645,-0.6815,0.3457,0.645,0.7617,-0.0615,0.6468,-0.739,0.1886,0.6481,-0.1574,0.7451,0.6491,-0.5925,-0.4771,0.6497,-0.6209,0.4386,0.65,0.6312,-0.4233,0.6502,0.605,-0.4596,0.6502,0.7585,0.0435,0.6505,-0.7561,0.0718,0.6515,0.2414,0.7193,0.6525,0.4019,-0.6424,0.6527,-0.0876,-0.7526,0.6538,0.7347,0.181,0.6551,-0.5792,0.4851,0.6558,0.2238,0.721,0.6571,-0.4933,-0.57,0.6573,0.6983,-0.2834,0.6576,-0.7228,-0.2127,0.6579,-0.7055,0.2637,0.6587,-0.2626,0.7051,0.6602,0.7486,-0.0603,0.6605,-0.7398,-0.1282,0.6609,0.4155,0.625,0.6612,0.7382,-0.1335,0.6613,0.3302,-0.6735,0.6617,-0.7225,0.2003,0.6618,0.6816,-0.3122,0.662,0.3033,-0.6854,0.6625,0.3678,-0.6526,0.6635,0.1468,-0.7336,0.664,-0.7476,0.0159,0.6642,0.2122,0.7168,0.6648,0.3228,-0.6737,0.6651,0.5486,0.5066,0.6654,-0.6376,-0.3883,0.6656,0.2361,0.708,0.6656,0.2617,0.6989,0.666,0.4172,0.6183,0.6677,-0.4458,0.5962,0.668,-0.6028,0.4363,0.6682,-0.7139,0.2094,0.6686,-0.7033,0.2416,0.6692,-0.3132,0.6739,0.6697,0.053,-0.7407,0.6698,-0.7165,-0.1949,0.67,-0.6334,0.3871,0.6716,0.3422,-0.6571,0.6731,0.0966,0.7332,0.6734,-0.3118,-0.6703,0.6738,-0.4183,0.6091,0.6742,-0.7384,-0.0161,0.6744,0.0927,0.7325,0.6745,0.2439,0.6968,0.6747,0.4914,0.5507,0.6756,-0.2828,0.6809,0.6758,0.3544,0.6463,0.6761,0.0259,0.7364,0.6762,-0.1079,-0.7288,0.6762,-0.1204,0.7268,0.6778,-0.7316,0.074,0.6778,0.3233,-0.6604,0.678,-0.0567,-0.7328,0.6795,0.517,0.5206,0.6797,0.5647,-0.468,0.6805,-0.0983,0.7261,0.6806,-0.3493,0.644,0.6809,0.4606,-0.5694,0.6812,-0.7274,0.0828,0.6817,0.64,0.3545,0.682,0.3783,-0.626,0.6836,-0.722,-0.1067,0.6839,0.7234,-0.0949,0.6842,-0.5414,-0.4887,0.6855,0.6297,0.3655,0.6862,-0.1975,0.7001,0.6873,-0.7111,-0.1484,0.6873,-0.706,0.1708,0.6882,-0.2989,0.6611,0.6883,0.4863,-0.5382,0.6884,-0.1445,0.7108,0.6886,0.6861,-0.2348,0.689,-0.4275,-0.5852,0.6892,0.4612,0.5589,0.6895,-0.2742,-0.6703,0.6908,-0.6284,0.3578,0.6922,0.0444,-0.7203,0.6924,-0.7017,0.1676,0.6933,0.4106,0.5923,0.6935,0.2758,0.6656,0.695,0.2289,-0.6816,0.6951,-0.7144,0.0808,0.6953,-0.6318,-0.3427,0.6992,-0.494,0.5167,0.6993,-0.6882,0.193,0.7001,-0.5402,0.467,0.7004,0.4496,-0.5543,0.7013,-0.2626,0.6628,0.7015,0.6374,-0.3189,0.7016,0.6668,-0.2511,0.7044,0.023,-0.7094,0.7047,-0.624,0.3377,0.7059,0.3265,-0.6285,0.7063,0.1984,-0.6795,0.7073,0.6106,0.3563,0.7076,0.2709,0.6526,0.7087,-0.2957,-0.6405,0.7092,-0.6104,0.3527,0.7103,-0.0535,-0.7019,0.7108,-0.6861,-0.1551,0.7109,-0.6983,-0.084,0.7118,-0.4579,-0.5326,0.712,-0.7022,0.0049,0.714,-0.5022,-0.4878,0.7141,0.693,0.0995,0.7141,-0.1433,-0.6852,0.7143,-0.6289,-0.3072,0.7148,-0.4875,-0.5013,0.715,0.6991,-0.0058,0.7152,-0.1581,0.6808,0.716,0.5161,0.4702,0.7161,-0.6667,-0.2064,0.7162,-0.1867,-0.6725,0.7169,0.2072,0.6656,0.7169,-0.566,0.4069,0.717,-0.6892,0.1046,0.7172,0.4807,0.5045,0.7176,-0.3946,0.5739,0.7177,0.4368,0.5423,0.7184,0.6641,-0.2071,0.7197,0.5013,0.4803,0.7203,0.5105,-0.4696,0.7217,-0.2387,0.6498,0.7222,-0.2686,0.6374,0.7239,-0.6859,0.0744,0.7239,0.6415,-0.2539,0.7243,0.5591,-0.4034,0.7246,0.3654,-0.5843,0.7248,-0.1937,0.6612,0.7254,0.6703,-0.1563,0.7254,-0.6882,-0.0108,0.7255,-0.2739,0.6314,0.7255,0.6601,0.1949,0.7256,-0.3747,0.5772,0.7261,-0.4377,-0.5303,0.7261,-0.5966,0.3419,0.7261,-0.6085,0.3201,0.7263,0.0562,-0.6851,0.7265,0.3159,-0.6102,0.7267,-0.6654,0.171,0.7269,-0.4371,0.5297,0.7273,-0.3049,0.6149,0.7278,0.6854,-0.0231,0.7278,0.3957,0.5601,0.7283,-0.6823,-0.0635,0.7286,0.3769,-0.5719,0.7289,-0.4297,-0.533,0.729,0.3922,-0.561,0.7304,-0.1741,-0.6604,0.7305,0.5501,0.4047,0.7309,-0.2608,0.6307,0.7311,0.5764,-0.365,0.7312,0.3358,0.5938,0.7312,-0.6807,-0.0448,0.7325,-0.5665,-0.3774,0.7327,0.5656,0.3784,0.7331,0.4402,-0.5185,0.7335,-0.5474,0.4031,0.7336,0.4518,-0.5077,0.7337,-0.6695,0.1163,0.734,-0.4543,-0.5049,0.7343,-0.2683,0.6236,0.7355,0.2375,0.6345,0.7358,-0.5289,-0.4229,0.7362,-0.1052,-0.6685,0.7365,0.2279,-0.6368,0.7367,-0.3351,-0.5874,0.7373,0.1634,-0.6555,0.7376,0.1413,0.6603,0.7377,-0.6096,-0.2902,0.7379,0.485,0.4693,0.7383,-0.0831,-0.6693,0.7383,0.674,-0.0236,0.7391,-0.6185,0.2668,0.7396,-0.3104,-0.5972,0.7399,-0.54,0.4012,0.7402,0.0274,-0.6719,0.7413,-0.5305,-0.4112,0.7416,0.6683,0.0583,0.7421,-0.4987,0.4479,0.7431,0.4087,-0.5299,0.7432,0.134,-0.6555,0.7446,0.638,0.1964,0.7449,-0.5307,-0.4043,0.745,0.5831,0.3241,0.7456,-0.1423,-0.6511,0.7458,0.5505,-0.375,0.747,0.365,-0.5556,0.7489,-0.5054,-0.4286,0.75,-0.6564,-0.0816,0.7507,-0.1238,-0.6489,0.7513,-0.201,-0.6286,0.7517,-0.5853,0.304,0.752,-0.5567,-0.3528};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=4 */
		private double[] getNormal_6_116_vector_4()
		{
			double[] value = {0.7532,-0.6098,-0.2467,0.7532,0.1817,-0.6322,0.7537,-0.2566,0.6051,0.7539,-0.6549,0.0524,0.7541,-0.1817,-0.6311,0.7551,-0.0935,-0.6489,0.7578,-0.551,-0.3495,0.758,-0.213,-0.6165,0.7583,0.1739,-0.6283,0.7588,0.3252,0.5643,0.759,-0.5542,0.3417,0.7599,-0.4593,0.46,0.7619,-0.6326,0.1391,0.7628,0.1696,0.624,0.7636,-0.6016,0.2344,0.7638,-0.6373,0.1029,0.7639,0.3678,-0.5302,0.764,0.3102,-0.5658,0.764,0.0825,0.6399,0.764,0.6299,-0.1397,0.7661,0.341,-0.5448,0.7672,-0.4861,-0.4185,0.7674,0.6261,-0.1385,0.7675,-0.071,0.6371,0.7686,0.4381,-0.4661,0.7696,-0.2645,0.5811,0.7697,-0.3093,-0.5585,0.7724,-0.4869,-0.4079,0.7733,0.3188,-0.5481,0.774,-0.5869,-0.2378,0.7744,0.3223,0.5445,0.7746,-0.4954,-0.3932,0.7775,-0.6283,0.0264,0.7776,-0.1793,-0.6027,0.7778,-0.2067,-0.5935,0.7781,-0.6132,0.136,0.7785,0.55,0.3025,0.7792,-0.0109,-0.6267,0.7798,-0.0529,0.6238,0.7806,0.0033,0.6251,0.7808,-0.1037,-0.6161,0.7809,-0.6058,0.1523,0.7817,-0.5604,0.2738,0.7819,0.4219,-0.4589,0.782,-0.5756,0.239,0.7823,0.542,0.3071,0.7825,0.6153,-0.0958,0.7828,0.3851,-0.4889,0.7828,0.2979,0.5464,0.783,-0.5949,0.1819,0.7832,0.6214,0.0195,0.7833,-0.5335,-0.319,0.7837,-0.4623,0.4149,0.7841,-0.6206,0.0089,0.7845,0.3014,-0.542,0.7852,0.5314,-0.318,0.7853,-0.0663,-0.6155,0.7858,-0.4878,-0.3802,0.7859,-0.6094,0.1046,0.7861,-0.1571,-0.5978,0.7862,0.1562,0.598,0.7871,0.3629,-0.4988,0.7885,0.0582,-0.6122,0.7899,-0.5891,-0.17,0.7901,-0.545,0.2806,0.7908,-0.325,0.5187,0.791,-0.5255,-0.3132,0.7911,-0.6077,0.0702,0.7912,0.2884,0.5393,0.7913,-0.0464,0.6097,0.7915,-0.5789,0.1962,0.7926,0.5854,-0.1707,0.793,0.3988,-0.4605,0.794,-0.0281,0.6073,0.794,0.2049,-0.5723,0.7943,0.2577,-0.5502,0.795,-0.2622,-0.547,0.7953,-0.0501,0.6041,0.7955,0.387,-0.4663,0.7956,0.517,-0.3159,0.7957,0.2786,-0.5377,0.7962,-0.0633,0.6018,0.7963,0.2857,-0.5332,0.7974,0.5909,-0.1222,0.798,0.4166,-0.4356,0.7981,0.2862,0.5302,0.7986,-0.0836,-0.596,0.7988,-0.1037,-0.5926,0.7996,-0.5087,-0.3193,0.7996,-0.1405,-0.5839,0.8002,-0.5391,0.2628,0.8012,-0.2555,0.5411,0.8019,-0.4658,-0.3742,0.8031,-0.5946,0.0396,0.8035,-0.3931,0.4471,0.8037,0.356,0.4768,0.8037,0.5483,0.2311,0.804,-0.4861,-0.3424,0.8044,-0.5393,0.2492,0.8045,0.4613,0.3742,0.8061,-0.2395,0.5411,0.8063,0.026,-0.5909,0.8065,0.2589,0.5316,0.8071,-0.2654,0.5274,0.8075,-0.5828,0.0913,0.8079,0.1429,0.5717,0.808,-0.5026,-0.3074,0.8082,-0.342,-0.4794,0.809,-0.2178,0.546,0.809,0.4315,0.3991,0.8096,-0.5867,-0.0164,0.8101,-0.2185,-0.5441,0.8101,0.5037,-0.3,0.8104,0.2081,0.5477,0.8108,-0.0058,0.5853,0.811,-0.4624,0.3586,0.8115,0.5219,-0.2626,0.8124,0.5526,-0.1861,0.8134,-0.3413,-0.471,0.8142,0.3603,0.4553,0.8153,0.4223,0.3962,0.8162,-0.2171,0.5355,0.8166,-0.5725,0.0734,0.8171,-0.3413,-0.4646,0.8183,0.5435,0.1868,0.8189,-0.527,0.2273,0.819,-0.1423,-0.5559,0.8198,0.5724,-0.0174,0.8207,0.1107,-0.5605,0.8211,-0.5264,0.2204,0.8212,-0.5165,-0.2425,0.8214,0.0359,-0.5692,0.8229,-0.2217,0.5231,0.8234,-0.2234,-0.5216,0.8245,-0.0753,-0.5608,0.8252,0.4776,0.3017,0.8262,0.1505,0.5428,0.8266,0.1844,-0.5317,0.8267,-0.2977,0.4775,0.8275,0.5562,-0.0768,0.828,0.5091,-0.235,0.828,0.0159,-0.5605,0.829,0.5101,-0.2293,0.8293,0.0755,0.5537,0.8297,-0.4276,-0.3588,0.83,0.2403,-0.5033,0.8312,-0.2358,-0.5034,0.8319,0.1405,-0.5368,0.8321,-0.5253,0.1777,0.8327,0.5533,-0.0227,0.8331,0.1813,-0.5226,0.8333,0.5498,0.058,0.8335,0.3437,0.4326,0.8341,0.1845,-0.5199,0.8345,0.3334,-0.4388,0.8347,0.4638,0.297,0.8348,0.2791,-0.4746,0.8358,0.4633,-0.2944,0.8367,-0.5461,0.0407,0.8376,-0.478,0.2643,0.8377,-0.4532,0.3047,0.838,-0.4185,-0.3502,0.8383,-0.4603,0.2922,0.8389,0.4417,0.318,0.839,0.5413,-0.0546,0.8391,0.2865,0.4625,0.8393,-0.1779,0.5137,0.8394,-0.4655,-0.2808,0.8396,0.1576,-0.5199,0.8398,-0.1256,-0.5282,0.8408,0.4836,-0.2434,0.841,-0.5405,0.0247,0.8411,0.2808,-0.4623,0.8412,0.3665,0.3976,0.8415,0.5242,0.1307,0.842,0.4918,-0.2216,0.8422,-0.4741,-0.2566,0.8432,-0.5143,0.1567,0.8437,0.4377,-0.3108,0.8441,-0.2476,0.4757,0.8444,0.2889,0.4512,0.8446,0.2977,0.445,0.8447,0.4237,0.3271,0.8449,-0.2621,0.4664,0.8452,0.3704,-0.3852,0.8453,0.3128,-0.4332,0.8454,0.5096,0.16,0.8456,0.0381,0.5325,0.8459,0.2637,0.4635,0.8461,-0.4811,0.2297,0.8473,-0.4798,-0.2279,0.8476,-0.4673,0.2515,0.8483,-0.1231,0.515,0.8494,0.5081,0.1425,0.8509,0.4693,0.236,0.8512,-0.1815,-0.4925,0.8514,-0.464,-0.2445,0.8518,0.3237,-0.4119,0.8521,-0.4327,0.2945,0.8527,-0.3904,-0.3471,0.8529,0.4783,-0.2094,0.854,0.461,-0.2414,0.854,0.2268,0.4681,0.855,0.0519,-0.516,0.8556,-0.5159,-0.0433,0.8558,-0.4341,0.2814,0.8565,-0.0429,0.5143,0.8566,0.5053,-0.1045,0.8569,-0.5133,0.047,0.8572,-0.0364,0.5137,0.8572,-0.2019,0.4737,0.8579,0.0196,-0.5134,0.8585,-0.2507,0.4473,0.8586,-0.4337,0.2734,0.8591,-0.4936,0.1355,0.8595,0.0924,-0.5027,0.8596,0.5,-0.1056,0.8597,0.2389,0.4516,0.8598,0.4156,0.2967,0.8602,-0.0733,0.5047,0.8603,0.4869,-0.151,0.8605,0.5093,0.0075,0.861,-0.2188,-0.459,0.8615,-0.0073,0.5078,0.8617,-0.2994,0.4096,0.8626,-0.0758,0.5002,0.8629,0.0674,0.5009,0.8634,-0.4544,0.2193,0.8637,-0.3483,0.3643,0.8641,-0.12,0.4888,0.8642,0.4755,-0.1643,0.8642,-0.4523,0.2202,0.8649,0.4926,-0.0967,0.865,-0.3194,-0.3869,0.8655,-0.279,-0.4161,0.8655,-0.0575,0.4976,0.8658,0.4824,0.1332,0.866,0.0232,0.4995,0.8669,-0.4831,0.123,0.8677,0.4492,-0.2127,0.8678,-0.4968,0.0095,0.8678,-0.3596,-0.3428,0.8685,-0.4639,0.1748,0.8691,-0.0889,0.4866,0.8694,0.3346,0.3637,0.8695,-0.4928,-0.0324,0.8701,0.3845,-0.3086,0.8703,0.3874,-0.304,0.8709,-0.4876,0.0613,0.8714,0.0056,0.4905,0.8714,0.211,-0.4429,0.8715,-0.4328,-0.2307,0.8716,-0.4777,-0.1102,0.8717,-0.4765,0.1147,0.8725,-0.4521,-0.1854,0.873,-0.4025,0.2756,0.8732,-0.215,0.4373,0.8737,0.2793,0.3982,0.8744,0.4343,0.2165,0.8746,0.4172,0.2468,0.8752,-0.0417,0.482,0.8763,0.256,-0.408,0.8765,0.2998,-0.3768,0.8766,-0.4772,0.0613,0.8768,-0.0407,0.4792,0.8769,-0.4806,-0.0079,0.8771,-0.2435,-0.414,0.8775,0.2353,0.418,0.8778,-0.2458,-0.4112,0.8781,-0.4775,-0.0305,0.8787,-0.3577,0.3162,0.8791,-0.4736,-0.0544,0.8794,0.4596,-0.1242,0.8803,-0.4685,0.075,0.8808,-0.3179,-0.3508,0.8813,-0.2813,0.3797,0.8814,-0.2305,-0.4123,0.8815,-0.4696,0.0498,0.8815,-0.1699,-0.4405,0.8816,-0.3686,-0.2947,0.8819,-0.4323,0.188,0.8826,0.2075,-0.4219,0.8827,-0.4699,0.0099,0.8831,0.3965,0.2508,0.8832,0.4392,-0.1643,0.8835,0.1263,0.4512,0.8836,0.4678,0.0186,0.8838,0.1616,-0.4391,0.8838,0.4455,-0.1428,0.8838,0.015,-0.4675,0.8841,0.2857,0.3697,0.8849,0.4046,0.2306,0.8855,-0.3883,0.2553,0.8858,0.1885,-0.4241,0.8862,0.4178,-0.2001,0.8864,0.3557,-0.2963,0.8865,0.4334,-0.1623,0.8867,-0.2114,-0.4111,0.8872,-0.4344,-0.1554,0.8882,0.4588,-0.0234,0.8887,-0.0897,0.4497,0.8887,0.393,0.236,0.8893,0.4479,-0.0925,0.8902,-0.0574,-0.4519,0.8906,0.2442,0.3838,0.8909,0.1065,-0.4415,0.8915,0.4076,-0.1978,0.8919,0.4117,-0.1874,0.8921,0.0608,0.4477,0.8925,0.4417,0.091,0.8928,-0.3725,-0.2532,0.8929,0.45,-0.0142,0.893,-0.4466,0.0553,0.8934,0.2559,0.3693,0.8934,-0.4456,0.0567,0.8941,-0.2709,-0.3566,0.8944,0.4288,-0.1269,0.896,0.1741,0.4086,0.8962,0.3696,-0.2456,0.8962,-0.4337,0.0934,0.8963,0.4064,0.1777,0.8972,0.2581,-0.3584,0.8973,0.0794,0.4342,0.8984,-0.2332,0.3721,0.8985,0.3643,-0.2448,0.899,-0.33,-0.2878,0.8991,-0.0923,0.4278,0.8995,-0.0438,0.4346,0.9,0.435,-0.0268,0.9002,0.3251,0.2897,0.9011,-0.2825,0.3291,0.9012,-0.3848,0.1996,0.9013,0.214,0.3766,0.9013,-0.2824,-0.3283,0.9017,-0.0577,0.4285,0.902,-0.4231,0.0856,0.9022,-0.141,0.4076,0.9022,0.3706,0.2207,0.9023,-0.3981,0.1656,0.9023,0.2145,-0.3739,0.9027,-0.1406,-0.4067,0.9028,0.1146,-0.4144,0.9031,-0.2265,0.3648,0.9037,0.2897,0.3153,0.9039,-0.1608,0.3964,0.9042,-0.3272,0.2744,0.9043,0.1545,0.398,0.9044,0.1378,-0.4038,0.9044,0.3746,-0.2041,0.9047,-0.1786,0.3867,0.9048,0.0274,0.425,0.9058,-0.3667,0.2121,0.906,0.4105,-0.1034,0.9061,0.268,-0.3274,0.9064,0.3412,0.2489,0.9068,-0.1536,0.3926,0.9072,-0.0418,-0.4187,0.9078,-0.2879,-0.3051,0.9078,-0.2468,0.3391,0.9079,0.1829,0.3772,0.9081,0.2723,0.3182,0.9084,0.1646,-0.3843,0.909,-0.0309,-0.4156,0.9092,-0.1408,0.3919,0.9098,0.1985,0.3644,0.91,-0.0736,0.4081,0.9102,-0.157,-0.3833,0.9114,-0.0877,0.4021,0.9119,0.3412,0.2282,0.9125,0.0413,0.407,0.9126,0.2692,0.3078,0.9133,-0.0811,-0.3991,0.9136,-0.1425,0.3808,0.9138,-0.2791,0.2949,0.9146,-0.1416,0.3788,0.9151,0.3306,0.2309,0.9152,0.3495,0.2005,0.9154,-0.2635,0.3043,0.9155,-0.3953,0.0753,0.9155,0.3245,-0.2379,0.9157,0.3723,-0.1511,0.9157,0.23,-0.3295,0.916,0.4001,-0.0307,0.9169,0.2268,0.3283,0.917,0.1992,0.3456,0.9172,-0.3127,0.2469,0.9178,0.0926,0.3862,0.9178,0.2698,-0.2914,0.9179,-0.1347,0.3733,0.9186,-0.3875,0.0776,0.9186,0.2191,-0.3288,0.9193,0.3695,0.1357,0.9195,0.3418,0.194,0.9196,0.1886,0.3447,0.9203,0.0958,-0.3793,0.9206,-0.0925,0.3794,0.9207,-0.3682,-0.1294,0.9209,-0.3003,0.2487,0.9215,0.2752,0.2739,0.9227,0.3818,-0.0535,0.9229,-0.3843,-0.0245,0.9231,0.1248,-0.3639,0.9238,0.0416,0.3806,0.9243,0.3475,-0.1578,0.9254,0.0974,-0.3664,0.9254,0.2968,-0.2356,0.9258,0.268,-0.2666,0.9263,-0.3767,-0.0038,0.9264,-0.2559,0.2764,0.9268,-0.3449,-0.1486,0.9271,-0.3699,0.0607,0.9276,-0.2099,0.3089,0.9278,-0.0963,-0.3604,0.928,0.369,0.0519,0.928,-0.2454,-0.2803,0.9282,-0.1046,0.3572,0.9285,0.3586,-0.0958,0.9288,-0.2163,-0.3008,0.9294,0.3131,-0.1956,0.9297,-0.3211,0.1805,0.9302,-0.367,-0.0102,0.9304,0.2818,-0.2346,0.9306,-0.3492,0.1097,0.9311,0.3271,0.1614,0.9317,-0.2448,0.2683,0.9319,0.3475,0.104,0.9321,0.2669,0.245,0.9323,0.1118,-0.344,0.9326,-0.3219,0.1633,0.9326,0.348,0.0957,0.9327,0.3598,0.0257,0.9327,-0.3551,0.0628,0.9327,0.1059,-0.3447,0.9327,-0.2513,0.2585,0.933,-0.052,0.3562,0.933,0.3578,-0.0393,0.9332,0.324,-0.1551,0.9339,-0.3333,-0.1295,0.9344,0.3353,0.1202,0.9346,-0.0207,-0.3551,0.9346,0.3058,-0.1816,0.9346,0.1323,-0.3301,0.9349,0.3463,-0.0783,0.9354,0.1176,-0.3336,0.9359,0.0294,0.3511,0.936,0.2801,0.2132,0.936,0.2749,0.2197,0.9364,0.3491,0.0347,0.9365,0.3113,0.1618,0.9367,0.3025,0.1764,0.9367,0.35,-0.0088,0.9369,0.0857,-0.3389,0.9369,0.1526,-0.3144,0.937,0.01,0.3492,0.9371,0.2741,-0.2163,0.9372,0.1352,0.3214,0.9374,-0.0769,-0.3396,0.9378,0.319,-0.137,0.9379,0.2838,-0.1996,0.938,-0.0155,0.3463,0.9385,-0.3417,-0.0496,0.9388,-0.1118,0.3259,0.9397,0.1899,0.2846,0.9401,0.1547,-0.3039,0.9407,-0.3183,0.1173,0.9408,0.318,-0.1173,0.9411,0.065,-0.3318,0.9423,0.2945,-0.1592,0.9426,0.3164,0.1065,0.9429,0.0144,0.3328,0.9434,-0.3195,0.0892,0.9436,0.3293,-0.0345,0.9443,0.325,-0.0516,0.9451,0.3268,-0.005,0.9453,-0.322,-0.0523,0.9463,-0.091,0.3101,0.9467,0.302,-0.1124,0.9468,-0.0048,-0.3217,0.9473,-0.2507,-0.1993,0.9478,-0.0659,0.312,0.9483,0.3142,0.0457,0.9485,0.3114,0.0585,0.9486,0.0335,0.3147,0.9487,-0.0907,-0.3028,0.9488,0.1037,-0.2985,0.949,-0.0066,0.3151,0.9491,0.134,-0.2852,0.9499,0.2406,0.1994,0.9505,0.0905,-0.2971,0.9509,-0.1444,-0.2739,0.9512,-0.0613,-0.3024,0.9514,0.1663,-0.2594,0.9518,-0.2001,0.2325,0.9521,0.2049,-0.227,0.9522,0.0929,0.291,0.9523,-0.1378,0.2722,0.9524,-0.027,0.3036,0.9524,0.2568,0.1641,0.9526,-0.1504,0.2643,0.9528,-0.2567,0.1624,0.9529,0.3028,0.0182,0.9533,-0.273,0.1289,0.9535,-0.2312,-0.1931,0.9545,-0.1829,0.2356,0.9548,0.1651,0.2472,0.9548,0.2735,-0.116,0.9553,-0.1462,0.2569,0.9555,0.1641,0.2451,0.9555,0.0886,-0.2813,0.9559,0.2585,0.1396,0.9561,-0.2928,-0.0092,0.9565,0.2035,-0.2092,0.9572,0.0876,0.2759,0.9572,0.0401,0.2866,0.9573,-0.2606,0.1253,0.9573,-0.2853,-0.0456,0.9574,0.1012,0.2706,0.9575,0.2297,-0.1743,0.9578,-0.131,0.2558,0.9581,0.1627,-0.2356,0.9587,0.1015,-0.2658,0.9593,0.1258,-0.2529,0.9596,-0.139,0.2445,0.9601,-0.2361,-0.15,0.9604,0.1182,-0.2524,0.9608,-0.1928,0.1991,0.9609,0.1104,0.254,0.9609,0.27,0.0608,0.9611,-0.273,-0.0417,0.9611,0.1115,-0.2527,0.9612,-0.0402,0.2728,0.9613,0.0456,0.2716,0.9626,0.2685,-0.0368,0.963,-0.1901,-0.191,0.9639,0.016,-0.2659,0.965,-0.0093,0.262,0.9652,-0.2191,0.1427,0.9655,0.2601,0.01,0.9656,0.2564,0.0438,0.9658,-0.2477,0.0769,0.9658,-0.0791,-0.2469,0.9658,0.2506,-0.0664,0.9662,-0.2522,0.054,0.9663,0.2575,0.0052,0.9663,0.2575,-0.0009,0.9663,0.2326,-0.1101,0.9664,0.2118,-0.1459,0.9672,0.0066,0.2538,0.9674,0.145,0.2075,0.9675,0.2446,-0.0646,0.9675,0.0618,-0.2452,0.9675,0.2308,0.103,0.9677,0.2378,0.0834,0.9679,0.1011,0.2302,0.9682,0.1342,0.2113,0.9683,0.1958,-0.1551,0.9685,-0.0025,0.249,0.9685,0.2361,-0.079,0.9686,0.1575,0.1923,0.9692,-0.2457,0.0168,0.9695,0.2441,-0.023,0.9697,-0.2111,0.1232,0.9707,-0.2002,0.1331,0.9709,-0.1072,0.2143,0.9709,-0.2285,0.0716,0.9715,-0.0844,-0.2217,0.9719,0.084,0.2199,0.972,-0.1925,0.1349,0.9725,0.2321,-0.0171,0.9727,-0.0772,-0.219,0.9727,0.2315,-0.014,0.9728,-0.2273,-0.0446,0.9729,0.1731,-0.1535,0.9729,-0.1354,0.1872,0.973,0.2305,-0.0141,0.9735,0.1604,-0.1632,0.9736,0.1582,-0.1646,0.9745,-0.1347,0.1797,0.9749,-0.0177,0.222,0.9755,-0.2174,0.0349,0.9757,0.2183,0.0186,0.9772,-0.1208,0.1746,0.9773,0.1816,0.1088,0.9774,-0.2001,0.0689,0.9774,-0.1787,0.1131,0.9776,0.0116,0.2099,0.9777,0.2091,-0.0172,0.9779,0.1617,-0.1323,0.9786,-0.0943,0.183,0.9792,0.0736,0.1894,0.9792,0.1932,0.062,0.9795,0.1994,-0.0273,0.9796,0.1556,0.1272,0.9798,-0.1848,-0.0762,0.9798,0.1997,0.0009,0.98,0.0154,-0.1983,0.9802,0.1093,-0.1651,0.9805,-0.091,0.1744,0.981,0.1302,0.1442,0.9811,-0.1379,-0.1354,0.9813,0.1828,0.0612,0.9813,-0.0352,-0.1891,0.9817,0.1818,0.0573,0.9818,0.1826,0.0525,0.9819,-0.1301,-0.1374,0.9822,-0.1593,-0.0992,0.9825,0.1742,0.0655,0.9826,0.1798,-0.0474,0.983,0.1759,-0.0526,0.9832,-0.1035,-0.1501,0.9833,0.1559,0.0944,0.9833,-0.1771,-0.0422,0.9834,-0.0426,-0.1766,0.9834,0.1782,-0.033,0.9837,-0.0678,0.1666,0.9839,0.1523,-0.093,0.9843,0.1756,-0.0182,0.9844,0.1759,-0.0016,0.9846,0.173,-0.0246,0.9847,-0.1448,0.0971,0.9847,-0.0778,0.1559,0.9847,0.1091,-0.1356,0.9849,-0.1526,-0.0823,0.9851,0.1595,0.0637,0.9853,0.115,0.1266,0.9853,-0.0903,0.145,0.986,0.1653,-0.0218,0.9861,-0.1458,0.0802,0.9864,-0.0621,0.152,0.9865,0.1612,0.027,0.9866,0.0996,0.129,0.9867,0.0407,0.1577,0.9868,0.1468,0.0679,0.9873,-0.0105,0.1587,0.9873,-0.1447,0.0656,0.9875,-0.1552,0.028,0.9878,0.0842,-0.131,0.9883,-0.0594,-0.1406,0.9885,-0.0417,0.1452,0.9887,-0.1446,-0.0387,0.989,-0.145,0.0286,0.9893,0.1432,-0.027,0.9893,-0.1282,-0.0691,0.9895,0.0338,0.1407,0.9895,0.1258,0.0711,0.9895,-0.144,-0.0113,0.9902,0.0194,-0.1382,0.9904,0.0047,-0.1383,0.9904,-0.1204,0.0675,0.9907,-0.1355,-0.0113,0.9909,-0.1322,-0.0272,0.991,-0.0932,0.0959,0.9914,-0.1091,-0.072,0.9914,0.0884,0.0962,0.992,0.0764,-0.1008,0.992,-0.0651,0.1082,0.9921,0.1254,0.0029,0.9921,-0.0522,0.1139,0.9921,-0.1134,-0.0529,0.9922,-0.0612,-0.1086,0.9923,0.1117,0.0534,0.9925,-0.1088,0.0562,0.9927,0.1055,0.0583,0.9927,-0.0763,-0.0932,0.9927,0.0235,0.1179,0.9928,-0.1196,0.0071,0.9929,0.1155,-0.029,0.9931,-0.1143,-0.0265,0.9932,-0.0173,0.1155,0.9933,-0.1143,-0.0166,0.9934,-0.0935,-0.067,0.9935,-0.055,0.0995,0.9939,0.0992,0.0493,0.9941,-0.0807,0.0725,0.9941,-0.0086,-0.1078,0.9941,-0.079,0.0738,0.9942,-0.1077,-0.002,0.9944,-0.1025,0.0237,0.9945,-0.0015,0.1052,0.9945,-0.0459,0.0937,0.9945,0.0576,0.087,0.9948,-0.0291,0.0978,0.9948,-0.0092,0.1013,0.9949,-0.0002,-0.1013,0.9953,-0.0707,0.0659,0.9954,0.0928,0.0258,0.9954,0.0947,-0.0137,0.9958,0.058,-0.0702,0.9959,0.0091,0.09,0.9959,0.0546,0.0716,0.9962,-0.0091,0.0868,0.9965,-0.0837,0.0031,0.9966,0.0763,-0.0302,0.9969,-0.0664,0.0432,0.9971,-0.0428,-0.0633,0.9973,-0.0667,0.0306,0.9974,-0.0411,0.0592,0.9974,-0.0704,-0.0144,0.9976,-0.0395,-0.0563,0.9976,-0.0471,0.0501,0.9978,0.0175,-0.0647,0.9979,-0.0632,0.0153,0.998,-0.011,-0.0629,0.998,-0.042,-0.0471,0.9981,0.0443,0.0422,0.9983,-0.0306,0.0486,0.9984,-0.0403,-0.0394,0.9984,-0.0479,-0.0296,0.9985,-0.0215,0.051,0.9986,-0.0349,0.0399,0.9986,-0.0145,0.0503,0.9986,-0.052,0.0036,0.9986,-0.0049,-0.0518,0.9989,0.0208,-0.0426,0.9989,0.0008,0.0472,0.9991,0.0431,-0.006,0.9991,-0.0421,0.0068,0.9991,0.0397,-0.012,0.9993,-0.0219,-0.0295,0.9993,0.0324,-0.0165,0.9994,-0.022,-0.0278,0.9995,-0.0216,0.0211,0.9996,0.0022,0.0285,0.9996,-0.0283,-0.0018,0.9996,0.0018,0.0277,0.9997,-0.0228,-0.011,0.9997,-0.0186,0.0164,0.9997,-0.0212,0.0073,0.9999,-0.0046,0.0143,0.9999,-0.0125,-0.0008,1.0,-0.0041,0.0043};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getfrontal_Geo_5_121_coordIndex_2()
		{
			int[] value = {229,611,612,-1,613,326,611,-1,612,614,615,-1,616,617,618,-1,185,619,620,-1,225,621,496,-1,622,623,624,-1,625,626,203,-1,482,481,502,-1,627,628,500,-1,476,629,474,-1,630,631,632,-1,633,634,635,-1,636,637,238,-1,638,639,640,-1,641,642,643,-1,644,137,645,-1,646,640,647,-1,648,649,650,-1,651,652,653,-1,654,655,656,-1,472,657,658,-1,659,660,661,-1,468,661,662,-1,663,664,144,-1,144,665,663,-1,666,150,152,-1,667,586,588,-1,668,669,670,-1,668,671,581,-1,672,673,674,-1,675,141,676,-1,677,678,675,-1,678,679,680,-1,677,681,682,-1,180,182,683,-1,684,685,686,-1,687,688,579,-1,689,688,687,-1,578,690,679,-1,578,650,649,-1,527,691,692,-1,693,525,694,-1,695,696,697,-1,698,522,524,-1,698,524,699,-1,18,700,701,-1,702,703,704,-1,705,706,707,-1,708,709,710,-1,704,711,25,-1,23,712,18,-1,713,463,462,-1,714,62,58,-1,715,562,561,-1,716,717,511,-1,462,718,508,-1,719,707,692,-1,720,721,722,-1,723,724,725,-1,590,694,525,-1,592,726,694,-1,459,727,728,-1,354,729,730,-1,328,731,614,-1,732,439,733,-1,734,735,736,-1,737,401,738,-1,739,740,741,-1,742,703,743,-1,744,745,746,-1,747,748,749,-1,634,639,750,-1,751,752,753,-1,754,755,756,-1,757,758,759,-1,760,761,762,-1,763,764,765,-1,766,767,768,-1,752,751,769,-1,770,771,772,-1,773,774,775,-1,776,777,778,-1,779,780,763,-1,781,782,783,-1,766,784,785,-1,756,786,754,-1,787,788,783,-1,789,790,791,-1,792,793,794,-1,795,796,797,-1,798,799,786,-1,798,753,752,-1,798,797,796,-1,800,801,802,-1,803,804,805,-1,806,807,808,-1,790,809,810,-1,811,812,813,-1,814,815,816,-1,817,818,819,-1,820,821,822,-1,823,824,825,-1,826,818,827,-1,828,829,830,-1,804,808,831,-1,832,833,834,-1,835,836,837,-1,838,839,840,-1,841,842,843,-1,844,845,846,-1,847,848,849,-1,850,851,852,-1,853,854,855,-1,856,857,858,-1,859,860,861,-1,862,863,864,-1,865,866,867,-1,868,869,870,-1,871,872,873,-1,874,875,876,-1,842,877,878,-1,879,880,881,-1,880,879,882,-1,883,884,885,-1,886,844,846,-1,887,844,886,-1,887,888,889,-1,890,891,892,-1,893,894,895,-1,896,897,898,-1,899,900,901,-1,902,899,901,-1,903,896,898,-1,904,905,906,-1,907,908,909,-1,910,911,912,-1,910,912,913,-1,914,915,916,-1,916,917,918,-1,919,920,921,-1,922,921,923,-1,924,925,926,-1,927,925,928,-1,925,924,929,-1,930,931,932,-1,933,871,934,-1,933,935,871,-1,936,937,938,-1,939,940,941,-1,939,942,943,-1,944,945,946,-1,947,948,949,-1,950,951,952,-1,953,867,954,-1,955,954,956,-1,957,958,959,-1,960,961,962,-1,963,964,965,-1,966,967,968,-1,969,970,971,-1,972,973,974,-1,975,976,977,-1,978,979,980,-1,981,982,983,-1,984,985,986,-1,987,986,985,-1,988,989,990,-1,991,992,993,-1,994,995,996,-1,997,992,998,-1,999,1000,1001,-1,1002,1003,1004,-1,1005,1006,1007,-1,1007,1008,1004,-1,966,1009,1010,-1,967,966,1011,-1,1012,1013,1014,-1,1015,1016,1017,-1,1014,1018,1012,-1,1019,1020,1021,-1,1022,1023,1024,-1,1025,1026,1027,-1,1028,1025,1027,-1,1029,1030,1024,-1,1031,1032,1033,-1,1034,1035,1036,-1,1037,1038,1039,-1,1040,1041,1042,-1,1043,1044,1045,-1,1043,1046,1047,-1,1048,1049,1050,-1,1049,1048,1051,-1,1052,1053,1054,-1,1047,1055,1056,-1,1047,1056,1057,-1,1058,1051,1048,-1,1048,1059,1060,-1,1061,1062,964,-1,1063,961,1064,-1,1063,1065,1066,-1,1067,1068,1069,-1,1068,1070,1069,-1,1071,958,1072,-1,958,1073,1074,-1,1074,1075,958,-1,1076,1077,1052,-1,1078,937,1079,-1,1080,1081,1082,-1,1083,1084,1085,-1,1031,1086,1032,-1,1087,1088,1089,-1,1090,1091,1092,-1,1093,1094,1095,-1,1096,1093,1095,-1,1097,1002,999,-1,1089,1098,1099,-1,1100,1101,1102,-1,1103,1104,1105,-1,1106,1107,1108,-1,1109,1110,1111,-1,850,1112,1113,-1,1114,1115,1116,-1,1117,1105,1118,-1,1119,1120,1121,-1,1122,1123,1124,-1,1125,1126,1127,-1,863,1128,1129,-1,1130,1131,1132,-1,768,1133,1134,-1,1135,1136,1137,-1,1138,1087,1139,-1,815,1140,1087,-1,1141,1142,1143,-1,1144,1145,1137,-1,1146,1099,1147,-1,1148,1149,1150,-1,1151,1152,1153,-1,1154,1155,1156,-1,1157,1150,1149,-1,1158,1156,1159,-1,1149,1160,1161,-1,1152,1155,1162,-1,1156,1155,1163,-1,1089,1099,1146,-1,1164,1165,1166,-1,1167,1168,1169,-1,1170,1171,1172,-1,1173,1169,1174,-1,1175,1176,1177,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getfrontal_Geo_5_121_coordIndex_3()
		{
			int[] value = {1178,1179,1180,-1,1181,1182,822,-1,1183,1184,1185,-1,1186,1187,1188,-1,1189,1190,1191,-1,1192,71,1193,-1,1194,1195,1196,-1,1197,1198,1199,-1,1199,1200,1192,-1,60,71,1200,-1,1201,1193,1202,-1,1203,1204,1205,-1,1140,1185,1206,-1,67,567,1207,-1,816,1144,1136,-1,1208,1206,1185,-1,1209,1210,1190,-1,1211,1198,1212,-1,1183,1213,1184,-1,1214,1215,1216,-1,1217,1218,1219,-1,1220,1221,1222,-1,771,1223,1220,-1,1224,1225,1226,-1,1227,959,1228,-1,1229,1230,1231,-1,1230,1229,1232,-1,1233,1234,1231,-1,1235,1210,1209,-1,827,825,826,-1,1181,822,821,-1,1236,1237,1238,-1,1239,1240,1241,-1,1242,783,782,-1,1243,1244,1245,-1,1246,1247,1244,-1,1090,1092,1243,-1,1248,1225,1224,-1,1249,1250,1251,-1,1252,1253,1254,-1,1255,1256,1257,-1,891,1258,1259,-1,1130,1260,1261,-1,1262,1106,1129,-1,1263,1264,1265,-1,1266,1267,635,-1,1108,1268,1269,-1,1270,1271,1272,-1,1273,1274,1275,-1,1276,1277,1278,-1,1279,1280,650,-1,1281,1282,1283,-1,1284,1285,1286,-1,1117,1287,1288,-1,1289,1290,805,-1,805,834,1244,-1,1291,1101,1292,-1,1292,1293,1291,-1,1294,1127,1295,-1,772,1296,1297,-1,1298,1299,1300,-1,1300,770,1301,-1,1302,1303,1304,-1,773,1305,1306,-1,1307,1143,1308,-1,1309,810,1310,-1,1311,1312,1313,-1,1314,1309,1315,-1,1311,1313,1316,-1,1317,1318,1319,-1,1320,1319,1321,-1,1322,1323,1324,-1,1325,1219,1218,-1,764,763,780,-1,1326,1327,1328,-1,1329,1238,1330,-1,1327,1218,1217,-1,650,1331,1332,-1,1333,1176,1334,-1,1234,1335,1336,-1,1177,1337,1338,-1,1175,1177,1170,-1,1180,1179,1339,-1,1340,1341,1342,-1,1343,1344,1345,-1,1346,1347,1348,-1,37,1349,1350,-1,1351,1352,755,-1,1340,1353,1354,-1,1355,1356,1357,-1,1358,1359,1088,-1,1360,1361,1098,-1,1208,1184,1362,-1,1363,1211,1364,-1,1188,1187,1184,-1,1365,1203,1366,-1,1136,1135,1099,-1,1367,1368,1369,-1,1233,1370,1234,-1,1371,1372,1335,-1,1168,1167,1373,-1,1374,1375,1010,-1,1376,1240,1239,-1,964,963,1061,-1,1377,1378,1067,-1,1379,963,1380,-1,1381,1382,1383,-1,1384,1385,1386,-1,1387,1388,1389,-1,1390,1389,1391,-1,1392,1393,1394,-1,51,48,747,-1,1395,1396,747,-1,1280,1397,650,-1,1393,1392,1398,-1,1399,1400,1401,-1,1341,1402,1403,-1,1404,1405,1406,-1,1407,1408,1409,-1,1410,1381,1411,-1,1409,1412,1413,-1,1367,1414,1415,-1,960,965,1416,-1,1091,1417,1092,-1,982,981,1418,-1,1419,1086,1031,-1,1420,1421,1422,-1,1336,1335,1421,-1,1371,1335,1234,-1,1367,1233,1423,-1,1424,1423,1425,-1,1333,1344,1426,-1,1098,1361,1427,-1,1358,1088,1087,-1,1204,1428,1429,-1,1430,1431,71,-1,1432,1433,557,-1,1434,1435,72,-1,1436,1098,1359,-1,1437,1438,1350,-1,1439,1440,1441,-1,1349,1440,1350,-1,35,1342,36,-1,1442,1443,1444,-1,1342,1423,1445,-1,1446,1445,1423,-1,36,1349,37,-1,1169,1168,1447,-1,1337,1448,1449,-1,1450,1426,1343,-1,1451,1452,1453,-1,820,1329,1216,-1,650,1214,1331,-1,1217,1281,1331,-1,1454,1242,1133,-1,1455,1456,1316,-1,1324,1323,1218,-1,1457,1458,1320,-1,1318,1317,1459,-1,1311,1456,1460,-1,1309,1461,1462,-1,1311,1314,1315,-1,1312,1142,1141,-1,1463,1464,1309,-1,1306,1305,1222,-1,1465,1466,1308,-1,1467,1299,1468,-1,1469,1470,1465,-1,770,772,1297,-1,1127,1126,1298,-1,1101,1100,1294,-1,1292,1295,1297,-1,834,833,1471,-1,1472,1473,1290,-1,1474,1475,1476,-1,1477,1478,1282,-1,1332,1281,1283,-1,1272,1271,1280,-1,1476,1479,1480,-1,1272,1481,634,-1,1482,1483,1277,-1,1264,1484,1485,-1,1486,1479,1119,-1,1111,1110,1487,-1,1488,1489,1490,-1,1487,1491,1111,-1,863,1108,1492,-1,1123,1493,1494,-1,1495,1257,1496,-1,1257,1495,1255,-1,1497,1132,1498,-1,1499,841,1500,-1,1501,1250,1502,-1,1502,1503,1504,-1,1504,1503,1505,-1,824,823,780,-1,1506,1084,1086,-1,834,1246,1244,-1,956,1290,1243,-1,1507,768,1134,-1,783,1242,1508,-1,833,1509,1471,-1,1443,1510,1511,-1,1433,1512,1513,-1,1403,1402,1514,-1,1201,1202,1515,-1,61,1200,1516,-1,1211,1363,1199,-1,1208,1517,1518,-1,1423,1230,1446,-1,1240,1376,1420,-1,1173,1519,1520,-1,1521,1522,1523,-1,1142,1524,1525,-1,1308,1466,1526,-1,1315,1464,1524,-1,1527,863,835,-1,1423,1424,1368,-1,1211,1528,557,-1,819,1213,1183,-1,1139,1140,1529,-1,1431,1202,1193,-1,1530,1531,1365,-1,1435,70,72,-1,1363,1364,1532,-1,178,544,1533,-1,1193,1201,1192,-1,1534,1535,1536,-1,1533,544,1537,-1,1538,1186,1539,-1,1518,1189,1530,-1,1362,1186,1540,-1,1515,1202,1531,-1,1210,1235,1541,-1,1172,1175,1170,-1,1520,1167,1169,-1,1542,1174,1336,-1,1171,1170,1338,-1,1174,1447,1179,-1,1158,1159,1089,-1,1543,1157,1544,-1,1545,1546,1547,-1,1548,1549,1163,-1,1155,1154,1550,-1,1548,1135,1549,-1,1326,1551,1552,-1,815,1087,1144,-1,1429,1138,1139,-1,1427,761,1553,-1,1145,1144,1159,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getfrontal_Geo_5_121_coordIndex_4()
		{
			int[] value = {817,1136,1166,-1,1554,1555,1495,-1,1556,1557,1558,-1,1103,1252,1559,-1,1474,1560,1561,-1,1562,1475,1563,-1,1484,1564,1565,-1,1566,1567,1568,-1,1556,1494,1557,-1,1491,1265,1121,-1,1569,1570,1571,-1,1261,1572,848,-1,1573,1109,1120,-1,1567,1125,1285,-1,1479,1476,1475,-1,918,917,1574,-1,1241,831,1575,-1,999,1004,1576,-1,1359,1089,1088,-1,1577,884,1578,-1,1084,1083,1579,-1,936,1580,937,-1,869,946,1581,-1,1582,1583,1584,-1,1585,1586,1587,-1,1588,1589,1585,-1,1069,1377,1067,-1,961,1590,1591,-1,1592,1055,1047,-1,1052,1593,1053,-1,1050,1049,1412,-1,1594,1044,1595,-1,1407,1596,1597,-1,1408,1598,1599,-1,1600,1601,1602,-1,1598,1603,1604,-1,1032,1605,1033,-1,1606,1603,1600,-1,1607,1608,1609,-1,1596,1610,1611,-1,1612,1035,1613,-1,1039,1038,1614,-1,1615,1616,1610,-1,1617,1026,1618,-1,1522,1619,1620,-1,1621,1622,1023,-1,1033,1036,1618,-1,1623,1624,1017,-1,1012,1018,1623,-1,1625,1619,1626,-1,1627,1628,1629,-1,1630,1627,1629,-1,1631,1632,1008,-1,1007,1004,1005,-1,1633,1634,1005,-1,1394,1004,1632,-1,1000,995,1001,-1,1635,994,996,-1,1636,1637,991,-1,1638,1639,1640,-1,988,990,985,-1,981,983,980,-1,1641,983,1642,-1,1643,979,1644,-1,1645,1646,969,-1,1647,971,1648,-1,1619,1649,1626,-1,1416,965,964,-1,1063,1068,1650,-1,1650,1651,1652,-1,1586,959,958,-1,1653,1246,1654,-1,954,955,1655,-1,1656,1657,951,-1,1658,954,1655,-1,947,949,1659,-1,1660,1661,944,-1,945,944,1661,-1,943,942,1583,-1,940,939,1662,-1,872,935,1663,-1,926,927,1251,-1,1664,1665,1666,-1,1666,922,1667,-1,1668,924,1669,-1,1670,1664,1671,-1,922,1666,1665,-1,917,916,1672,-1,917,1672,1673,-1,915,914,1674,-1,1675,1676,919,-1,1677,911,908,-1,908,910,855,-1,854,1678,909,-1,1679,1680,1681,-1,1682,1683,1684,-1,1685,905,904,-1,1686,1687,1688,-1,1689,1690,1691,-1,1692,1693,1694,-1,891,890,1258,-1,887,889,894,-1,1695,1084,1506,-1,880,882,1696,-1,1697,1698,1577,-1,1699,875,1700,-1,1701,1702,930,-1,1703,934,871,-1,1704,1080,1078,-1,1705,1706,942,-1,864,1706,1705,-1,869,868,1269,-1,869,1707,944,-1,867,866,1708,-1,954,1708,1290,-1,1653,1245,1247,-1,1290,1708,1709,-1,1254,1710,1110,-1,1078,863,862,-1,1711,1712,1713,-1,857,856,1714,-1,1715,1716,1686,-1,1715,1113,1717,-1,1717,1718,1719,-1,847,1720,896,-1,849,891,1694,-1,845,844,887,-1,885,840,882,-1,1701,1721,873,-1,836,835,1078,-1,1509,832,831,-1,1509,1240,1471,-1,1575,808,807,-1,973,972,1251,-1,823,1165,1164,-1,178,1188,821,-1,1290,1473,1722,-1,803,1723,804,-1,1724,1725,1726,-1,1727,794,793,-1,789,797,1728,-1,787,793,796,-1,1729,794,1508,-1,1239,1575,1728,-1,767,785,1730,-1,792,759,754,-1,781,1314,782,-1,766,1731,784,-1,773,775,1732,-1,1222,778,1526,-1,1304,1733,1467,-1,1734,1299,1467,-1,1732,1457,1321,-1,1735,1733,1306,-1,1307,1736,1143,-1,1519,752,1520,-1,1737,768,767,-1,757,802,762,-1,756,755,769,-1,544,178,545,-1,1397,1738,650,-1,745,744,372,-1,1739,1740,1741,-1,1742,740,1739,-1,741,1743,1744,-1,1745,1746,407,-1,1747,1748,736,-1,1749,332,336,-1,1750,331,333,-1,190,188,187,-1,1751,324,1752,-1,1753,1754,441,-1,1755,1756,1757,-1,728,1758,1759,-1,1760,1761,593,-1,694,590,1760,-1,725,722,721,-1,1762,561,1763,-1,541,560,1764,-1,1764,1765,541,-1,1765,714,1766,-1,576,53,1364,-1,569,1767,540,-1,1768,462,1769,-1,1770,463,1771,-1,1772,1773,1774,-1,1775,711,704,-1,1776,1777,127,-1,14,13,1778,-1,1779,1780,700,-1,1781,1782,702,-1,720,1783,1784,-1,1785,1786,749,-1,1778,701,1787,-1,709,698,1788,-1,1789,523,1790,-1,696,1791,697,-1,1792,749,748,-1,1793,1216,689,-1,577,650,578,-1,578,1794,690,-1,1795,130,608,-1,1796,1797,686,-1,679,678,677,-1,138,141,675,-1,1798,1799,585,-1,1796,674,1800,-1,1801,668,1802,-1,1803,671,1804,-1,580,669,668,-1,666,149,150,-1,1805,588,1806,-1,663,1807,1808,-1,1809,665,485,-1,468,662,1810,-1,1811,661,660,-1,174,472,658,-1,497,1812,489,-1,654,1813,1814,-1,654,1815,494,-1,490,1814,1816,-1,1817,1818,655,-1,1819,1820,1794,-1,648,646,649,-1,648,638,640,-1,227,228,1821,-1,640,639,634,-1,630,632,1822,-1,1823,1824,1825,-1,226,225,1826,-1,1827,1828,1829,-1,629,476,631,-1,240,1830,637,-1,1831,1832,1833,-1,627,1834,1835,-1,1836,624,501,-1,196,246,1837,-1,1838,1839,1840,-1,1841,1842,1843,-1,1844,1845,1846,-1,1846,1847,1501,-1,1848,684,1849,-1,458,727,459,-1,326,1850,611,-1,175,233,612,-1,1797,1851,1852,-1,160,1795,610,-1,188,1853,189,-1,1854,1779,1855,-1,1856,1433,1513,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getfrontal_Geo_5_121_coordIndex_5()
		{
			int[] value = {742,1857,1858,-1,536,535,1859,-1,569,568,1860,-1,720,1784,1861,-1,697,1862,1863,-1,466,134,589,-1,399,1864,1865,-1,400,1866,1867,-1,598,1868,1869,-1,559,576,1364,-1,1870,1871,1872,-1,563,1873,1763,-1,1874,1764,562,-1,1874,714,1764,-1,534,1875,541,-1,569,572,1876,-1,1364,53,1532,-1,552,554,54,-1,1877,548,547,-1,554,555,58,-1,570,542,541,-1,1860,542,1878,-1,573,537,177,-1,1876,572,1870,-1,1879,603,602,-1,1789,530,526,-1,529,528,595,-1,1880,1881,1862,-1,1790,467,1789,-1,503,505,181,-1,1882,1883,718,-1,1884,1885,1886,-1,1887,514,1886,-1,1888,1889,1890,-1,1884,1891,521,-1,1892,519,1890,-1,513,1891,1884,-1,1893,1894,1886,-1,1889,1895,1892,-1,718,1883,1896,-1,1897,1898,510,-1,584,1899,1900,-1,511,1873,563,-1,511,717,1873,-1,1901,1885,1897,-1,1851,1797,608,-1,1838,1902,1903,-1,1904,222,1905,-1,485,1906,1907,-1,480,1908,1835,-1,1909,1910,1911,-1,1812,657,1912,-1,1905,637,1913,-1,1914,1906,641,-1,498,1915,630,-1,196,1916,194,-1,1917,1918,1919,-1,174,469,472,-1,1920,1921,1909,-1,497,1922,657,-1,1923,164,1924,-1,1925,1756,1755,-1,1926,1927,1928,-1,1928,1929,620,-1,731,615,614,-1,511,521,461,-1,419,457,459,-1,458,1930,1931,-1,1932,244,1933,-1,1934,193,454,-1,435,1935,433,-1,1936,1937,1938,-1,449,448,1936,-1,443,1939,338,-1,1940,339,338,-1,1940,1941,339,-1,1942,1943,1944,-1,1945,436,438,-1,431,1946,1947,-1,1948,429,428,-1,432,435,430,-1,437,1949,1943,-1,1942,1950,1951,-1,1952,1953,1954,-1,1947,1955,432,-1,1956,1944,1943,-1,1957,421,420,-1,1958,1959,1960,-1,1959,1961,1960,-1,1746,405,407,-1,403,407,404,-1,401,737,402,-1,1759,419,1962,-1,1963,1964,1965,-1,1966,1758,1967,-1,401,1759,1966,-1,398,1968,1965,-1,1969,1867,1866,-1,1970,388,1971,-1,1972,1973,1974,-1,1975,1972,1976,-1,371,373,379,-1,1977,375,374,-1,464,371,1978,-1,1979,369,464,-1,1980,1981,1982,-1,368,365,367,-1,1980,364,1983,-1,1984,1985,1925,-1,362,1986,359,-1,1987,358,357,-1,353,729,354,-1,352,1988,353,-1,1989,354,345,-1,1990,1991,347,-1,349,354,1989,-1,1992,744,746,-1,1993,337,1994,-1,337,732,1994,-1,333,591,1750,-1,234,1995,1996,-1,232,234,1996,-1,1997,1998,1999,-1,310,312,242,-1,2000,309,2001,-1,2001,1934,2000,-1,245,247,2002,-1,247,306,2002,-1,2003,249,2004,-1,2005,2006,460,-1,2007,2008,2009,-1,298,297,2010,-1,299,298,2011,-1,2012,293,2013,-1,2014,282,292,-1,286,2015,2016,-1,2015,2017,2016,-1,2018,276,2019,-1,277,274,276,-1,274,2020,272,-1,2021,2022,268,-1,2023,266,2024,-1,2025,2026,1843,-1,2027,1841,2026,-1,265,208,266,-1,2028,2029,2030,-1,2031,2032,2033,-1,2034,200,202,-1,2034,202,2035,-1,2036,2034,2037,-1,198,2038,2006,-1,199,198,2039,-1,256,2039,2040,-1,2041,2042,2007,-1,250,2043,2044,-1,246,196,247,-1,236,2045,1998,-1,323,1821,2046,-1,222,223,240,-1,2047,859,861,-1,217,216,2048,-1,273,2049,275,-1,2050,2051,2052,-1,2053,207,204,-1,201,200,2036,-1,477,2054,201,-1,2042,2055,2056,-1,2057,2058,197,-1,192,191,1837,-1,1853,2059,1850,-1,171,2059,186,-1,2060,2061,2062,-1,2063,601,600,-1,1848,600,599,-1,605,602,179,-1,505,1872,2064,-1,2065,2066,509,-1,2067,2068,2069,-1,2070,670,2071,-1,2072,2073,173,-1,2074,171,176,-1,2075,2076,155,-1,2077,167,2078,-1,158,132,2079,-1,2079,2080,166,-1,2071,168,167,-1,161,610,1924,-1,2081,162,2082,-1,2079,128,2083,-1,129,157,2084,-1,1924,609,2085,-1,1852,683,182,-1,149,140,142,-1,145,144,2086,-1,2087,2088,676,-1,135,152,151,-1,587,1808,1807,-1,132,466,126,-1,131,130,1795,-1,1851,129,2089,-1,2076,2075,2090,-1,2091,2092,2090,-1,128,127,1777,-1,132,2093,2079,-1,125,123,2094,-1,2095,2096,122,-1,2097,77,95,-1,73,120,119,-1,2098,117,68,-1,125,117,116,-1,2099,124,123,-1,113,2094,114,-1,109,108,110,-1,2100,2101,96,-1,2102,65,2103,-1,2102,2104,2105,-1,74,101,64,-1,2102,2105,2106,-1,103,2107,105,-1,104,103,95,-1,91,2108,2109,-1,95,103,105,-1,86,2110,104,-1,2098,2111,89,-1,2109,2112,91,-1,87,2111,2113,-1,81,88,2114,-1,100,80,79,-1,51,2115,52,-1,73,72,70,-1,67,1207,2098,-1,56,58,66,-1,74,63,62,-1,64,58,62,-1,566,1207,567,-1,556,57,56,-1,1532,55,1516,-1,76,48,50,-1,1192,1200,71,-1,3,2116,2117,-1,2118,1436,2119,-1,38,2120,2121,-1,1355,29,2122,-1,2123,2124,2120,-1,35,34,40,-1,1,2125,2,-1,4,1355,2126,-1,47,2122,29,-1,2127,2128,2122,-1,2121,2129,6,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getfrontal_Geo_5_121_coordIndex_6()
		{
			int[] value = {2130,2116,5,-1,2131,26,28,-1,27,44,43,-1,2132,9,23,-1,2133,21,20,-1,2132,2134,24,-1,22,2132,17,-1,12,22,16,-1,701,1778,18,-1,704,25,21,-1,2135,1,0,-1,2136,0,2,-1,37,1438,2123,-1,14,2137,15,-1,702,704,2133,-1,16,13,12,-1,16,22,17,-1,24,9,2132,-1,1778,13,16,-1,2133,704,21,-1,23,17,2132,-1,43,28,27,-1,2130,5,45,-1,6,2138,2121,-1,46,28,2139,-1,2122,47,2127,-1,29,31,47,-1,1355,30,29,-1,2120,33,2123,-1,2122,2126,1355,-1,43,2139,28,-1,2117,2140,2141,-1,50,94,76,-1,94,50,2097,-1,1516,1363,1532,-1,566,2113,2111,-1,64,2103,58,-1,62,75,74,-1,66,79,56,-1,67,2098,68,-1,70,69,73,-1,2106,2105,2101,-1,104,2110,99,-1,81,83,88,-1,87,89,2111,-1,2112,2142,91,-1,2098,89,90,-1,104,2108,86,-1,105,93,95,-1,78,2143,85,-1,2108,2144,2109,-1,95,2145,104,-1,105,2107,106,-1,64,63,74,-1,2104,2102,2103,-1,102,98,2146,-1,96,106,2100,-1,2099,2147,124,-1,122,121,120,-1,125,108,117,-1,2098,90,117,-1,73,69,120,-1,77,2148,95,-1,2096,2095,112,-1,2096,121,122,-1,114,2149,115,-1,2094,111,125,-1,128,1777,2083,-1,2091,2090,2081,-1,2090,507,2076,-1,2150,2151,506,-1,2089,1852,1851,-1,131,1795,160,-1,2093,128,2079,-1,126,2093,132,-1,2152,2153,644,-1,2087,676,140,-1,144,664,2086,-1,149,142,150,-1,182,1849,1852,-1,1924,610,609,-1,129,2084,2089,-1,2083,2080,2079,-1,132,607,133,-1,2082,2091,2081,-1,164,161,1924,-1,167,2070,2071,-1,163,2082,162,-1,2077,165,2070,-1,2070,167,2077,-1,2080,2078,166,-1,2079,166,158,-1,167,166,2078,-1,155,2154,2075,-1,2154,2155,2075,-1,171,2156,176,-1,173,172,2072,-1,2070,1802,670,-1,178,177,545,-1,2064,181,505,-1,179,2157,605,-1,599,684,1848,-1,600,2064,2063,-1,1845,1928,1846,-1,186,172,171,-1,187,189,326,-1,188,2059,1853,-1,1902,2158,2159,-1,1904,2160,194,-1,2161,2160,2162,-1,2038,2058,253,-1,1931,2163,2164,-1,204,2165,258,-1,1842,212,210,-1,2049,217,2048,-1,2166,2167,271,-1,2168,2048,2015,-1,220,219,2169,-1,295,220,296,-1,2170,861,1501,-1,637,2045,238,-1,621,225,228,-1,613,231,326,-1,323,234,1821,-1,453,2171,1830,-1,246,245,2067,-1,196,307,247,-1,249,2172,248,-1,2041,2173,2174,-1,199,2039,256,-1,198,2006,2005,-1,2036,200,2034,-1,202,2175,2035,-1,2031,203,2032,-1,2030,2176,2028,-1,2177,265,264,-1,2025,1843,2178,-1,2026,1841,1843,-1,266,208,2024,-1,2179,215,279,-1,2021,2180,2181,-1,2018,277,276,-1,283,288,290,-1,2015,2182,2017,-1,2183,2184,2185,-1,293,292,2013,-1,301,2186,2187,-1,298,300,2011,-1,2188,296,301,-1,460,2189,2005,-1,2003,2172,249,-1,1934,456,2000,-1,309,242,2001,-1,312,243,242,-1,2190,318,317,-1,322,324,1751,-1,1996,320,232,-1,232,325,233,-1,1938,1750,591,-1,337,339,732,-1,441,1754,733,-1,1973,1972,2191,-1,2192,2193,2194,-1,184,183,2195,-1,345,2196,343,-1,348,2197,355,-1,353,1988,729,-1,357,2198,1987,-1,1987,2199,358,-1,1985,356,2200,-1,1985,2200,1925,-1,362,359,363,-1,1982,2201,1980,-1,1979,370,369,-1,371,2202,1978,-1,618,380,744,-1,377,1977,374,-1,371,379,377,-1,617,378,618,-1,2203,2204,1975,-1,1975,2204,2205,-1,1867,389,386,-1,2206,2207,1975,-1,2208,1971,388,-1,398,738,1968,-1,1966,1759,1758,-1,1759,394,419,-1,2209,2210,406,-1,2211,2212,2213,-1,2214,1955,1954,-1,429,1955,1947,-1,438,1943,2215,-1,437,1943,438,-1,2216,435,434,-1,2217,1947,1946,-1,431,1947,432,-1,1949,1956,1943,-1,1942,1944,2218,-1,440,1753,441,-1,1939,1940,338,-1,443,338,444,-1,447,330,2219,-1,1936,1938,449,-1,326,2220,450,-1,435,1950,1935,-1,1752,2221,1751,-1,311,313,452,-1,419,459,1962,-1,245,2002,2067,-1,461,1770,511,-1,1928,620,1926,-1,1929,2222,620,-1,1925,1755,1984,-1,1978,1979,464,-1,1923,165,164,-1,2223,2224,2225,-1,462,461,718,-1,468,1810,469,-1,657,1812,497,-1,475,1913,637,-1,226,1921,1920,-1,479,2051,212,-1,2226,2227,2228,-1,1905,222,637,-1,2229,1810,2230,-1,2231,491,1816,-1,1835,481,480,-1,1809,485,1907,-1,2232,2233,2234,-1,608,130,1851,-1,1897,504,1901,-1,1898,1884,521,-1,511,563,2065,-1,510,521,511,-1,1899,2235,1900,-1,510,504,1897,-1,1892,1890,1889,-1,1893,1886,2236,-1,1884,514,513,-1,1893,518,1894,-1,515,1888,1890,-1,1887,1886,1894,-1,1886,514,1884,-1,718,461,1882,-1,503,181,180,-1,562,715,1874,-1,1862,1791,1880,-1,595,695,529,-1,1789,526,523,-1,691,2237,2238,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getfrontal_Geo_5_121_coordIndex_7()
		{
			int[] value = {1863,2238,697,-1,545,2239,546,-1,1870,2240,1876,-1,1767,1860,1878,-1,1875,570,541,-1,58,57,554,-1,574,1877,547,-1,54,2241,552,-1,552,553,1859,-1,1765,534,541,-1,1763,564,563,-1,1872,2066,1870,-1,559,1364,557,-1,2242,598,1869,-1,2243,720,2244,-1,222,1916,191,-1,581,671,582,-1,667,1805,148,-1,582,2235,2245,-1,2246,399,1865,-1,466,589,530,-1,133,187,1761,-1,1861,721,720,-1,1860,1767,569,-1,2241,576,575,-1,2241,53,576,-1,1859,553,536,-1,1860,568,543,-1,179,178,1793,-1,610,161,160,-1,1797,1852,1849,-1,242,241,2001,-1,229,613,611,-1,614,612,233,-1,1849,182,1848,-1,1501,1844,1846,-1,1847,619,1501,-1,2055,2247,2163,-1,1903,474,629,-1,501,624,623,-1,1836,2248,624,-1,627,1835,628,-1,637,222,240,-1,476,473,1920,-1,1827,2249,1828,-1,226,1920,473,-1,1823,1910,1824,-1,1822,488,630,-1,2233,2250,2251,-1,634,647,640,-1,1824,1814,1813,-1,648,1738,638,-1,646,1794,649,-1,1819,2252,1820,-1,1817,1906,1818,-1,654,1814,1815,-1,174,2253,175,-1,1853,1850,189,-1,1811,662,661,-1,662,2254,1810,-1,1809,662,665,-1,663,1811,1807,-1,2255,1806,588,-1,144,143,2256,-1,1805,667,588,-1,666,2257,149,-1,668,581,580,-1,1803,1804,674,-1,1802,1923,1801,-1,1804,1800,674,-1,673,672,2258,-1,583,1899,584,-1,1798,2259,1799,-1,677,2260,679,-1,686,672,1796,-1,577,579,688,-1,578,649,1794,-1,2157,1793,689,-1,1792,748,2261,-1,1791,1862,697,-1,523,522,1790,-1,2262,1778,1787,-1,1792,1785,749,-1,720,1781,1783,-1,1781,720,1782,-1,14,1778,2262,-1,1776,127,2263,-1,11,23,9,-1,704,703,1775,-1,1772,2264,1773,-1,1770,1771,716,-1,1769,2265,1768,-1,540,572,569,-1,1765,1764,714,-1,1901,504,718,-1,2244,722,2266,-1,725,724,722,-1,726,723,694,-1,467,1790,2267,-1,2268,2269,1976,-1,187,133,607,-1,1753,2270,1754,-1,334,2271,335,-1,1754,425,422,-1,2272,734,1993,-1,1745,407,403,-1,2273,1395,747,-1,2274,350,2275,-1,2274,2276,350,-1,756,769,751,-1,1737,1454,768,-1,1376,752,1519,-1,2277,774,2278,-1,1458,2277,1325,-1,1321,776,1732,-1,1734,1467,1735,-1,1733,1735,1467,-1,1222,776,778,-1,1732,1305,773,-1,2279,1726,801,-1,754,786,792,-1,767,1730,1737,-1,1508,1737,1730,-1,1728,752,1239,-1,1730,2280,1508,-1,794,1727,1508,-1,795,787,796,-1,799,792,786,-1,797,798,1728,-1,793,787,1727,-1,1724,785,784,-1,1290,1722,805,-1,1723,808,804,-1,820,1793,821,-1,780,823,1164,-1,1102,2281,1473,-1,1575,831,808,-1,1241,1509,831,-1,835,863,1078,-1,2282,1260,2283,-1,839,2284,840,-1,2285,1572,845,-1,2285,2286,892,-1,849,1694,1693,-1,2287,903,899,-1,1717,1719,2288,-1,1712,2289,1713,-1,856,915,2290,-1,1713,1675,1665,-1,1492,1108,868,-1,1103,1253,1252,-1,2291,1254,865,-1,1653,2292,1245,-1,956,954,1290,-1,954,867,1708,-1,1707,869,1269,-1,2293,1492,2294,-1,1705,942,939,-1,1704,1078,1079,-1,1080,836,1078,-1,2295,2296,876,-1,882,2297,1696,-1,935,872,871,-1,885,879,883,-1,1085,2298,1083,-1,1695,1085,1084,-1,1694,1259,1692,-1,1719,2299,2300,-1,1718,2301,2302,-1,897,2303,898,-1,906,2288,2304,-1,1678,2305,909,-1,909,908,854,-1,908,855,854,-1,1677,908,907,-1,2306,1682,1684,-1,1675,919,1665,-1,1673,1574,917,-1,2307,1676,2308,-1,921,2309,923,-1,1671,2310,1670,-1,925,927,926,-1,1669,1670,1668,-1,1666,1671,1664,-1,2311,926,1251,-1,1577,2312,2313,-1,2297,2314,2315,-1,1663,1702,872,-1,1079,1580,2316,-1,2317,943,1583,-1,1707,2318,1660,-1,1660,944,1707,-1,2319,1488,2320,-1,1657,1656,2321,-1,950,1656,951,-1,1653,1654,2322,-1,1246,2323,1654,-1,1246,1240,1585,-1,2324,1072,2325,-1,1067,1378,1651,-1,1063,962,961,-1,1610,1596,2326,-1,1646,977,976,-1,2327,2328,1645,-1,1641,2329,983,-1,987,1644,979,-1,985,984,988,-1,1637,2330,998,-1,996,995,993,-1,998,2330,2331,-1,2332,2333,2334,-1,1003,1005,1004,-1,1005,1003,1633,-1,1631,1008,2335,-1,1224,1631,2335,-1,2336,1628,2337,-1,1623,1017,1012,-1,1624,1015,1017,-1,2338,1027,1026,-1,2338,2339,2340,-1,1025,1419,1031,-1,1022,1026,2341,-1,2342,1039,2343,-1,2344,1039,1614,-1,1612,2345,1035,-1,2346,2342,2343,-1,1042,2347,1616,-1,2348,2349,1608,-1,1606,1604,1603,-1,1605,1036,1033,-1,1600,1602,1606,-1,1413,1380,1409,-1,2350,1379,1380,-1,2351,2352,1046,-1,1057,1593,2353,-1,1054,2354,1052,-1,2355,2356,1049,-1,1062,1416,964,-1,1066,1070,1068,-1,2357,1378,2358,-1,1075,1587,1586,-1,1589,1246,1585,-1,1583,1582,2359,-1,1584,2293,1582,-1,1581,870,869,-1,1580,1079,937,-1,1086,1084,1579,-1,2296,2360,876,-1,1577,1578,2312,-1,927,973,1251,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getfrontal_Geo_5_121_coordIndex_8()
		{
			int[] value = {1093,1503,1094,-1,1359,1098,1089,-1,1645,969,2361,-1,1099,1427,1136,-1,1575,1239,1241,-1,1167,1520,769,-1,1102,1101,1291,-1,2362,1102,1287,-1,1497,1487,1107,-1,1497,1491,1487,-1,2363,1261,1112,-1,1122,2364,1555,-1,2365,1302,1126,-1,1484,1565,1485,-1,1475,2366,1563,-1,1474,1561,2367,-1,1559,1104,1103,-1,2368,1554,1495,-1,1136,1427,1166,-1,1553,1166,1427,-1,2369,1429,1139,-1,1144,816,815,-1,815,2370,1140,-1,1326,2371,1551,-1,1155,1550,1162,-1,1163,1151,1548,-1,1543,1162,1550,-1,2372,2373,1089,-1,1157,1545,1544,-1,1158,1089,2373,-1,1426,1176,1333,-1,1338,1229,1171,-1,1174,1179,1336,-1,2374,1334,1172,-1,1169,1173,1520,-1,2375,1210,1541,-1,1531,2376,1515,-1,1186,1188,1539,-1,1362,1187,1186,-1,1530,2377,1518,-1,2378,1533,1537,-1,1535,1197,1536,-1,1201,1536,1192,-1,1534,1536,1201,-1,1435,1430,70,-1,1184,1208,1185,-1,1530,1191,1531,-1,1193,71,1431,-1,1139,1529,2369,-1,1183,814,819,-1,557,1364,1211,-1,1021,1620,2379,-1,1521,2380,1522,-1,1173,2381,1519,-1,1448,1337,2382,-1,1423,1233,1230,-1,1518,2383,1208,-1,1199,1198,1211,-1,1515,1534,1201,-1,2383,1518,2377,-1,178,821,1793,-1,1508,1727,783,-1,779,1507,1134,-1,1705,939,938,-1,1247,1245,1244,-1,1243,1092,956,-1,824,780,779,-1,2384,2385,2386,-1,1504,2387,1502,-1,2387,1501,1502,-1,2287,899,902,-1,2388,1131,2389,-1,1703,873,837,-1,1495,1496,2368,-1,1494,2390,1123,-1,2391,1267,2392,-1,1492,864,863,-1,1491,1498,1265,-1,1488,1490,2393,-1,1254,1110,2394,-1,1486,1119,2395,-1,1264,1263,1484,-1,634,1270,1272,-1,1709,1708,866,-1,1272,1280,1279,-1,1332,1283,1279,-1,1281,1477,1282,-1,1476,1480,1286,-1,1563,1105,1104,-1,1287,1473,1288,-1,1296,1292,1297,-1,1294,1295,1101,-1,1298,1295,1127,-1,770,1297,1301,-1,1469,1465,1308,-1,1222,1221,1306,-1,1309,1310,1463,-1,1141,1313,1312,-1,1311,1315,1312,-1,1462,810,1309,-1,1460,1314,1311,-1,1313,2371,1316,-1,1143,1736,2396,-1,1459,2397,1318,-1,1218,2398,1324,-1,1455,1134,1456,-1,1327,1214,1328,-1,1281,1332,1331,-1,1216,1793,820,-1,1451,1453,2131,-1,1450,1343,2399,-1,1337,1449,1338,-1,1447,1174,1169,-1,1339,1346,2400,-1,36,2401,1349,-1,1446,2399,1445,-1,1342,1425,1423,-1,35,1340,1342,-1,1349,2402,1440,-1,1441,2403,1439,-1,1437,2404,1438,-1,1436,2405,1098,-1,72,1451,1434,-1,70,1430,71,-1,1429,1205,1204,-1,1358,1087,1138,-1,1427,1099,1098,-1,1344,1343,1426,-1,1367,1423,1368,-1,1371,1234,1370,-1,1542,1336,1421,-1,1372,1227,1335,-1,1420,2381,1421,-1,1419,1506,1086,-1,955,956,2406,-1,1072,958,957,-1,2324,2357,1072,-1,1416,1590,960,-1,1367,1415,1370,-1,1410,2407,1381,-1,1026,1404,2341,-1,1387,2408,1385,-1,1341,1354,1402,-1,1399,2409,1400,-1,2330,1637,2410,-1,1453,1452,747,-1,747,1396,1453,-1,1270,634,750,-1,747,1452,51,-1,1399,2125,2411,-1,2412,2413,1410,-1,2324,1652,1651,-1,1072,957,2325,-1,1509,1241,1240,-1,950,952,2414,-1,963,2415,1061,-1,2330,2416,2417,-1,1028,1419,1025,-1,1420,1422,1228,-1,1421,1335,1422,-1,1233,1367,1370,-1,1205,1429,2369,-1,1366,1530,1365,-1,1184,1181,1188,-1,1362,1517,1208,-1,1098,2405,1360,-1,1358,2418,1359,-1,1355,1357,30,-1,2131,28,2419,-1,1353,2,1354,-1,2420,2403,1441,-1,755,2421,1351,-1,37,1350,1438,-1,1345,2422,1343,-1,1341,1425,1342,-1,1340,1354,1341,-1,1339,1333,1180,-1,1179,1447,1339,-1,1177,1338,1170,-1,1234,1336,1178,-1,1178,1231,1234,-1,1334,1180,1333,-1,1215,1214,650,-1,1327,1217,1331,-1,1330,1328,1329,-1,1326,1328,1330,-1,764,780,1164,-1,1324,2423,1322,-1,1218,1323,1325,-1,1322,1320,1323,-1,1321,1457,1320,-1,1319,2423,1317,-1,1143,1142,1525,-1,1316,1456,1311,-1,781,1461,1314,-1,1314,1461,1309,-1,1315,1309,1464,-1,810,809,1310,-1,1220,1466,1465,-1,1306,1733,773,-1,1300,1301,1298,-1,1298,1468,1299,-1,1292,1101,1295,-1,1292,1296,1293,-1,1244,1289,805,-1,1472,1288,1473,-1,1103,1472,1290,-1,1286,2424,1284,-1,650,1332,1279,-1,1278,2278,1276,-1,2425,2426,1557,-1,635,634,1266,-1,1498,1491,1497,-1,2390,1494,1556,-1,1122,1555,1554,-1,1261,2363,1130,-1,1259,1694,891,-1,1254,2394,1252,-1,1251,972,1249,-1,818,2427,2428,-1,2314,2297,2429,-1,1243,2430,1090,-1,1245,2430,1243,-1,2291,950,2414,-1,1242,782,1133,-1,834,1471,1246,-1,821,1188,1181,-1,1539,1188,2431,-1,2370,1185,1140,-1,1199,1363,1200,-1,2432,1235,1209,-1,1233,1231,1230,-1,1232,1446,1230,-1,1229,1231,1171,-1,1465,771,1220,-1,2396,1736,2397,-1,1464,1463,1524,-1,1331,1214,1327,-1,1528,1211,1212,-1,1362,1184,1187,-1,1210,2376,1190,-1,1208,2383,1206,-1,1136,817,816,-1,67,61,567,-1,1206,1529,1140,-1,1205,1366,1203,-1,1432,557,1528,-1,60,1200,61,-1,1192,1536,1199,-1,1536,1197,1199,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getfrontal_Geo_5_121_coordIndex_9()
		{
			int[] value = {1196,1212,1194,-1,1530,1189,1191,-1,1183,1185,2370,-1,2433,1533,2378,-1,1177,2382,1337,-1,1178,1336,1179,-1,1174,1542,1173,-1,1171,2374,1172,-1,1428,1204,1435,-1,1165,817,1166,-1,1146,2372,1089,-1,1163,1549,1156,-1,1152,1163,1155,-1,1161,1546,1149,-1,1544,1153,1152,-1,1156,1158,1154,-1,1151,1163,1152,-1,1148,1160,1149,-1,1144,1137,1136,-1,1141,1143,2396,-1,1159,1144,1087,-1,1140,1139,1087,-1,1156,1145,1159,-1,1137,1549,1135,-1,768,1454,1133,-1,1483,2434,2426,-1,1125,1567,1126,-1,1124,2364,1122,-1,1562,2435,1475,-1,1100,2436,2437,-1,1567,1566,1274,-1,2438,2439,1263,-1,1527,873,1721,-1,2440,2441,1570,-1,1102,1473,1287,-1,1109,1111,1120,-1,1105,1117,1103,-1,1095,2442,1096,-1,2442,2443,1096,-1,1089,1159,1087,-1,933,934,812,-1,1086,1579,1032,-1,2317,1583,2359,-1,2444,2414,952,-1,2354,1076,1052,-1,2323,1246,1589,-1,1075,1586,958,-1,1585,1587,1588,-1,1071,1073,958,-1,1068,1063,1066,-1,1063,1064,1065,-1,1591,1064,961,-1,1060,2445,1048,-1,2356,2446,1049,-1,2353,1047,1057,-1,1046,2447,2351,-1,1052,2353,1593,-1,1049,1051,2355,-1,1077,1059,1595,-1,1408,1599,1045,-1,1043,1047,2353,-1,2445,1058,1048,-1,1604,2448,1598,-1,2449,2450,2451,-1,2452,2449,2451,-1,1614,2453,2344,-1,2344,1616,1615,-1,1404,1026,1617,-1,1031,1033,1025,-1,2454,1028,1027,-1,2341,1023,1022,-1,1020,1620,1021,-1,2379,2455,1021,-1,1016,2379,1017,-1,2456,2457,1009,-1,1017,2379,1625,-1,2458,1009,2459,-1,2458,2336,1009,-1,2335,1248,1224,-1,1008,1632,1004,-1,1005,1634,1006,-1,1631,1224,1392,-1,1002,1004,999,-1,999,1001,1097,-1,2331,997,998,-1,1639,1637,1636,-1,2460,1637,1639,-1,986,2461,984,-1,982,2462,983,-1,2462,1642,983,-1,981,2463,976,-1,2361,2327,1645,-1,981,1643,2463,-1,1392,2464,1398,-1,962,1383,960,-1,960,1590,961,-1,959,2325,957,-1,2465,867,953,-1,954,1658,953,-1,870,1581,2294,-1,946,869,944,-1,939,943,1662,-1,938,939,941,-1,941,936,938,-1,2466,930,932,-1,1578,884,883,-1,883,2467,1578,-1,2468,878,2469,-1,925,929,928,-1,1670,2310,1668,-1,1669,924,926,-1,2470,1668,2471,-1,922,923,1667,-1,2472,2473,2474,-1,918,914,916,-1,1676,1675,2308,-1,910,908,911,-1,2475,905,1685,-1,1686,1688,1682,-1,903,898,2476,-1,902,901,2477,-1,902,2477,2478,-1,897,2479,2303,-1,2480,893,895,-1,2481,890,892,-1,887,886,888,-1,2482,886,846,-1,884,2483,885,-1,879,885,882,-1,2484,877,2485,-1,931,930,1702,-1,871,873,1703,-1,934,1703,812,-1,2293,1584,1492,-1,865,867,1656,-1,1653,1247,1246,-1,1254,1253,1709,-1,868,1108,1269,-1,861,2311,1501,-1,1711,1664,1670,-1,1712,1711,2486,-1,858,2487,916,-1,2488,1680,1678,-1,857,853,858,-1,1113,2287,1717,-1,2489,849,1693,-1,2282,845,1572,-1,1500,1085,1695,-1,838,2483,1698,-1,2490,2491,2295,-1,2490,1128,1721,-1,1260,1130,2283,-1,832,1509,833,-1,1471,1240,1246,-1,831,832,804,-1,1093,1505,1503,-1,826,2427,818,-1,825,827,823,-1,822,1236,820,-1,817,1165,818,-1,1188,178,1533,-1,790,810,791,-1,1723,806,808,-1,1722,803,805,-1,1729,800,802,-1,801,760,802,-1,799,798,796,-1,798,752,1728,-1,798,786,753,-1,791,795,797,-1,791,797,789,-1,783,1727,787,-1,1239,752,1376,-1,756,753,786,-1,785,767,766,-1,781,783,788,-1,779,763,1507,-1,1526,1307,1308,-1,1526,778,1307,-1,776,1321,777,-1,2492,1303,1276,-1,769,1520,752,-1,756,751,753,-1,768,1507,766,-1,1731,763,765,-1,2493,2494,1553,-1,762,802,760,-1,757,762,758,-1,754,2421,755,-1,749,2273,747,-1,362,1756,1925,-1,743,1857,742,-1,2495,737,2496,-1,1953,2497,424,-1,736,2498,734,-1,2499,424,423,-1,733,1994,732,-1,445,332,331,-1,1938,331,1750,-1,233,325,2500,-1,1962,459,728,-1,590,525,526,-1,725,694,723,-1,2244,720,722,-1,720,2243,1782,-1,719,2501,707,-1,462,508,1769,-1,511,1770,716,-1,561,1762,715,-1,58,1766,714,-1,1433,558,557,-1,462,1768,713,-1,2502,711,1775,-1,23,11,712,-1,2501,705,707,-1,1782,743,702,-1,702,743,703,-1,18,712,700,-1,699,692,698,-1,694,596,693,-1,694,725,596,-1,692,699,527,-1,577,1215,650,-1,578,679,579,-1,689,687,606,-1,687,579,2503,-1,684,599,685,-1,683,2504,180,-1,680,139,678,-1,677,675,681,-1,676,2505,675,-1,2235,1899,2245,-1,674,1796,672,-1,1801,2085,1804,-1,1803,674,673,-1,670,1802,668,-1,1899,2506,1805,-1,666,152,146,-1,2152,483,147,-1,1808,664,663,-1,144,2256,665,-1,660,1807,1811,-1,1809,2254,662,-1,470,659,661,-1,468,470,661,-1,2074,611,1850,-1,658,2253,174,-1,2253,1922,175,-1,654,1817,655,-1,651,2507,652,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getfrontal_Geo_5_121_coordIndex_10()
		{
			int[] value = {1819,1794,646,-1,650,1738,648,-1,646,648,640,-1,644,645,2251,-1,2234,2508,499,-1,633,635,1832,-1,1913,2509,1905,-1,203,205,625,-1,496,1826,225,-1,620,183,185,-1,2063,2064,2510,-1,2511,2512,2513,-1,615,2514,612,-1,612,2514,229,-1,324,2515,1752,-1,608,610,1795,-1,189,1850,326,-1,177,179,602,-1,177,538,2516,-1,1876,2240,563,-1,53,2241,54,-1,597,598,2242,-1,596,1861,594,-1,530,590,526,-1,616,618,2517,-1,586,2086,587,-1,586,149,2257,-1,679,690,680,-1,1215,577,1216,-1,1871,1870,572,-1,576,559,574,-1,570,531,597,-1,1876,565,569,-1,510,509,505,-1,566,556,56,-1,565,1876,563,-1,560,562,1764,-1,555,1859,535,-1,556,54,554,-1,552,1859,555,-1,550,551,553,-1,547,549,551,-1,548,2518,549,-1,2519,544,546,-1,537,1869,538,-1,542,1860,543,-1,537,573,540,-1,536,571,534,-1,533,598,531,-1,2237,529,695,-1,530,1789,467,-1,525,524,523,-1,691,719,692,-1,521,1891,520,-1,518,519,2520,-1,520,1882,461,-1,1887,2520,512,-1,1887,512,514,-1,1901,2521,1885,-1,2240,2065,563,-1,511,2065,509,-1,508,503,506,-1,510,1898,521,-1,503,508,504,-1,501,502,1836,-1,496,1922,497,-1,492,494,1815,-1,490,1816,491,-1,1822,486,488,-1,1906,1914,1818,-1,627,500,499,-1,631,476,1911,-1,1919,2522,2523,-1,2054,477,2053,-1,1921,2524,1909,-1,1907,1906,1817,-1,1814,1824,1816,-1,286,2016,287,-1,508,718,504,-1,2193,347,1991,-1,1770,461,463,-1,1846,1928,1927,-1,184,297,185,-1,460,2006,255,-1,2525,2526,2044,-1,457,1930,458,-1,1934,454,456,-1,451,2171,453,-1,449,330,447,-1,450,2219,330,-1,2271,2527,335,-1,732,339,1941,-1,2217,2528,1947,-1,430,435,2216,-1,438,2215,2499,-1,2214,2529,1951,-1,340,2497,2530,-1,420,1953,1952,-1,394,393,419,-1,417,421,415,-1,2531,2532,412,-1,2533,2213,403,-1,2534,2535,2536,-1,2537,408,410,-1,405,2209,406,-1,406,2534,2536,-1,401,1968,738,-1,728,1759,1962,-1,2538,2539,2540,-1,1966,2539,401,-1,389,392,390,-1,390,2208,388,-1,384,2203,2541,-1,380,618,378,-1,379,373,380,-1,374,376,2202,-1,374,2202,371,-1,2542,2543,2544,-1,1756,2201,1982,-1,368,367,1983,-1,1756,362,2201,-1,358,2200,356,-1,350,2199,348,-1,353,2545,351,-1,346,1990,347,-1,344,343,346,-1,344,347,2193,-1,2194,2546,2547,-1,2548,385,387,-1,733,439,441,-1,444,338,2549,-1,336,2549,1749,-1,591,449,1938,-1,230,329,2550,-1,326,327,2551,-1,2551,2220,326,-1,322,2552,323,-1,323,2552,2553,-1,1829,2554,2555,-1,237,315,316,-1,2556,235,316,-1,311,243,312,-1,455,454,2557,-1,248,308,307,-1,2512,2511,2558,-1,256,2040,304,-1,185,299,2170,-1,284,294,2559,-1,2013,2559,2012,-1,296,2011,300,-1,296,2188,294,-1,2559,2013,284,-1,2015,286,285,-1,285,287,2560,-1,2017,2182,2561,-1,288,283,282,-1,2020,274,278,-1,273,276,274,-1,273,272,271,-1,2166,2562,2563,-1,2564,279,281,-1,2021,2181,2022,-1,2565,215,2179,-1,2566,2567,2568,-1,259,625,205,-1,2032,203,626,-1,2175,202,2029,-1,2569,1931,1930,-1,2039,198,2005,-1,307,306,247,-1,2511,199,257,-1,2526,2162,2044,-1,193,244,2570,-1,193,2570,454,-1,243,239,241,-1,1830,2171,1999,-1,238,2045,236,-1,227,1821,234,-1,175,227,232,-1,613,229,231,-1,225,2515,2046,-1,621,1922,496,-1,637,1830,2045,-1,283,221,284,-1,2182,216,2571,-1,2572,219,221,-1,211,210,267,-1,2024,1842,1841,-1,205,204,258,-1,2573,2574,2031,-1,2054,2574,201,-1,2575,2057,197,-1,2158,2576,2159,-1,222,191,193,-1,186,2059,188,-1,2072,172,159,-1,2577,469,174,-1,181,1848,182,-1,1793,2157,179,-1,171,173,2156,-1,176,175,2074,-1,157,170,2084,-1,163,162,161,-1,158,166,168,-1,2082,2078,2080,-1,165,2077,163,-1,160,162,2155,-1,2578,156,160,-1,159,607,132,-1,131,160,156,-1,157,129,131,-1,1804,2085,609,-1,2579,2089,2084,-1,150,142,151,-1,148,2087,140,-1,143,2580,146,-1,2580,143,145,-1,140,676,141,-1,146,2580,666,-1,583,2506,1899,-1,132,134,466,-1,129,1851,130,-1,2075,2081,2090,-1,2093,126,128,-1,111,110,108,-1,123,114,2094,-1,2145,2581,2144,-1,109,2095,122,-1,119,121,2149,-1,68,117,118,-1,116,117,90,-1,120,69,122,-1,2109,2144,2581,-1,2581,2112,2109,-1,107,118,108,-1,106,96,98,-1,99,2107,103,-1,102,2103,64,-1,100,2100,99,-1,98,97,2146,-1,94,2097,95,-1,86,2108,91,-1,89,83,82,-1,87,2582,84,-1,2110,2143,99,-1,86,92,84,-1,87,2113,2582,-1,76,2583,74,-1,73,2115,51,-1,122,69,71,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getfrontal_Geo_5_121_coordIndex_11()
		{
			int[] value = {68,118,59,-1,2583,76,94,-1,58,2103,65,-1,59,61,67,-1,53,55,1532,-1,1363,1516,1200,-1,52,49,48,-1,6,42,2138,-1,33,37,2123,-1,40,34,38,-1,35,37,33,-1,2116,3,5,-1,24,2134,21,-1,22,15,19,-1,19,21,2134,-1,18,1778,16,-1,2262,2137,14,-1,6,8,41,-1,4,2126,5,-1,2136,2584,42,-1,2262,20,2137,-1,20,2262,2133,-1,5,43,45,-1,5,2128,43,-1,2585,45,44,-1,45,2585,2130,-1,2135,32,26,-1,8,32,2135,-1,2117,1439,2140,-1,2117,1437,1439,-1,2140,2119,2141,-1,2140,2118,2119,-1,2135,2586,2411,-1,2135,26,2586,-1,82,2587,2147,-1,82,81,2587,-1,2114,91,2142,-1,91,2114,92,-1,2145,2108,104,-1,2108,2145,2144,-1,79,2582,2113,-1,2582,79,78,-1,2588,102,101,-1,2588,98,102,-1,65,2106,66,-1,2106,65,2102,-1,100,2101,2100,-1,2101,100,2106,-1,112,2094,113,-1,112,111,2094,-1,2589,124,2590,-1,2589,114,124,-1,2145,2148,2581,-1,95,2148,2145,-1,121,115,2149,-1,115,121,2096,-1,2092,2083,1777,-1,2083,2092,2091,-1,2151,507,506,-1,2076,507,2151,-1,2089,683,1852,-1,2579,683,2089,-1,2088,2506,583,-1,2087,2506,2088,-1,165,1802,2070,-1,165,1923,1802,-1,2091,2080,2083,-1,2091,2082,2080,-1,153,2150,169,-1,2150,153,2151,-1,2073,168,2071,-1,2072,168,2073,-1,156,154,157,-1,154,156,2578,-1,2077,2082,163,-1,2078,2082,2077,-1,2062,2071,670,-1,2073,2071,2062,-1,505,2066,1872,-1,2066,505,509,-1,1879,601,2063,-1,604,601,1879,-1,2247,2058,2057,-1,2247,2055,2058,-1,2042,2058,2055,-1,2058,2042,253,-1,2166,2052,2167,-1,2052,2166,2591,-1,2592,218,2572,-1,2592,2593,218,-1,295,221,220,-1,221,295,284,-1,328,229,731,-1,229,328,230,-1,2004,2525,2003,-1,2004,2526,2525,-1,2038,255,2006,-1,255,2038,253,-1,1931,727,458,-1,727,1931,2164,-1,2573,2033,2030,-1,2033,2573,2031,-1,2165,2566,2568,-1,2165,206,2566,-1,2177,2566,265,-1,2566,2177,2567,-1,2565,214,215,-1,214,2565,2021,-1,2179,2564,2594,-1,2564,2179,279,-1,211,269,261,-1,211,267,269,-1,2185,2571,2593,-1,2185,2184,2571,-1,2595,2561,2596,-1,2597,2561,2595,-1,2598,1930,457,-1,2598,2569,1930,-1,2599,250,252,-1,2599,2043,250,-1,734,422,424,-1,734,2272,422,-1,1989,2192,349,-1,1989,2193,2192,-1,2195,620,2600,-1,2195,183,620,-1,2193,2546,2194,-1,2193,1991,2546,-1,2198,351,2545,-1,351,2198,2601,-1,1925,1986,362,-1,1986,1925,2200,-1,366,1981,367,-1,366,2602,1981,-1,372,465,745,-1,372,371,465,-1,388,2268,1976,-1,1970,2268,388,-1,1992,618,744,-1,2517,618,1992,-1,2224,385,2548,-1,2224,399,385,-1,1867,2603,2604,-1,1867,1969,2603,-1,399,2605,400,-1,2246,2605,399,-1,738,387,737,-1,2548,387,738,-1,2538,1965,2539,-1,2538,1963,1965,-1,408,395,409,-1,395,408,393,-1,2606,2534,2607,-1,2535,2534,2606,-1,413,1960,1961,-1,413,2608,1960,-1,412,2609,2610,-1,412,2532,2609,-1,1942,1935,1950,-1,2218,1935,1942,-1,1954,429,2611,-1,1954,1955,429,-1,2612,2613,2611,-1,2612,2614,2613,-1,1951,435,2214,-1,1950,435,1951,-1,422,2615,423,-1,422,426,2615,-1,327,448,2551,-1,327,1936,448,-1,2552,1940,2553,-1,2552,1941,1940,-1,2553,1939,1995,-1,1939,2553,1940,-1,1937,329,2616,-1,329,1937,2550,-1,436,316,437,-1,436,2556,316,-1,2218,1999,1935,-1,2218,1997,1999,-1,2617,2190,317,-1,2617,2618,2190,-1,2619,2270,1753,-1,2619,2555,2270,-1,313,431,430,-1,431,313,312,-1,2528,456,427,-1,2528,2000,456,-1,2620,2068,415,-1,1933,2068,2620,-1,2511,251,199,-1,2511,252,251,-1,2609,308,248,-1,2532,308,2609,-1,2044,1959,1958,-1,2044,2043,1959,-1,2621,2622,2623,-1,2621,2008,2622,-1,2039,2607,2210,-1,2005,2607,2039,-1,410,302,303,-1,410,2624,302,-1,2569,2622,2625,-1,2569,2598,2622,-1,2035,1967,2034,-1,1967,2035,2540,-1,2005,2606,2607,-1,2005,2189,2606,-1,1960,2003,2525,-1,2608,2003,1960,-1,1864,625,1865,-1,1864,626,625,-1,2030,396,2176,-1,396,2030,397,-1,2026,390,392,-1,2026,2025,390,-1,2207,2626,2627,-1,2207,261,2626,-1,2268,263,2269,-1,2268,262,263,-1,390,2178,2208,-1,390,2025,2178,-1,2605,2567,2628,-1,2567,2605,2568,-1,2563,379,2629,-1,379,2563,377,-1,2594,616,2630,-1,2594,2564,616,-1,2541,268,384,-1,2541,269,268,-1,1978,2020,1979,-1,272,2020,1978,-1,287,2602,366,-1,2631,2602,287,-1,1982,2597,2632,-1,2597,1982,2561,-1,270,1978,2202,-1,272,1978,270,-1,294,343,2196,-1,294,2188,343,-1,351,2633,2634,-1,2633,351,2601,-1,2547,2635,2010,-1,2635,2547,2546,-1,620,1847,1926,-1,619,1847,620,-1,1929,1845,1844,-1,1845,1929,1928,-1,614,2500,2636,-1,2500,614,233,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getfrontal_Geo_5_121_coordIndex_12()
		{
			int[] value = {186,607,159,-1,186,190,607,-1,652,656,655,-1,652,2637,656,-1,2638,1914,2639,-1,2638,651,1914,-1,2254,2230,1810,-1,2254,2640,2230,-1,632,1911,1910,-1,632,631,1911,-1,2228,2234,2233,-1,2228,2508,2234,-1,1904,1916,222,-1,194,1916,1904,-1,2037,2164,2036,-1,2037,727,2164,-1,1838,478,1902,-1,1840,478,1838,-1,1810,471,469,-1,2229,471,1810,-1,1911,1920,1909,-1,1911,476,1920,-1,1906,484,641,-1,485,484,1906,-1,474,1913,475,-1,474,2509,1913,-1,1918,622,2641,-1,1917,622,1918,-1,1763,717,1762,-1,1873,717,1763,-1,2642,2258,2503,-1,2642,2643,2258,-1,519,515,1890,-1,516,515,519,-1,515,2644,1888,-1,515,517,2644,-1,1889,520,1895,-1,1889,1882,520,-1,512,1895,513,-1,1892,1895,512,-1,1896,2236,2521,-1,2236,1896,2644,-1,1884,1897,1885,-1,1897,1884,1898,-1,1880,696,594,-1,696,1880,1791,-1,693,527,699,-1,693,528,527,-1,177,2239,545,-1,2516,2239,177,-1,1878,570,597,-1,1878,542,570,-1,546,548,2519,-1,548,546,2518,-1,541,568,565,-1,541,543,568,-1,2243,2266,1857,-1,2266,2243,2244,-1,667,149,586,-1,667,148,149,-1,2645,1866,2628,-1,1969,1866,2645,-1,1861,1880,594,-1,1861,1784,1880,-1,558,1856,1877,-1,558,1433,1856,-1,570,534,571,-1,1875,534,570,-1,2646,1857,2266,-1,1858,1857,2646,-1,708,698,709,-1,708,522,698,-1,1934,223,193,-1,223,1934,2001,-1,2217,2000,2528,-1,309,2000,2217,-1,2183,1985,1984,-1,2183,2185,1985,-1,346,2187,1990,-1,346,301,2187,-1,1757,2597,2595,-1,1757,2632,2597,-1,2168,2049,2048,-1,2168,275,2049,-1,2647,859,219,-1,859,2647,2648,-1,2050,215,213,-1,2649,215,2050,-1,212,207,2053,-1,207,212,1842,-1,2574,2053,204,-1,2574,2054,2053,-1,478,2158,1902,-1,478,477,2158,-1,1916,1837,191,-1,196,1837,1916,-1,1903,2650,2651,-1,629,2650,1903,-1,2650,629,1915,-1,635,1833,1832,-1,635,2652,1833,-1,475,226,473,-1,226,475,224,-1,1910,1822,632,-1,1910,1823,1822,-1,642,630,643,-1,2232,630,642,-1,2232,498,630,-1,2653,645,2654,-1,645,2653,2226,-1,497,2655,495,-1,2656,2655,497,-1,1824,2657,1825,-1,1824,1813,2657,-1,2658,2252,1819,-1,2252,2658,2654,-1,2252,136,1820,-1,2252,137,136,-1,2656,2659,2655,-1,2656,2660,2659,-1,1912,492,490,-1,493,492,1912,-1,175,611,2074,-1,175,2661,611,-1,469,2061,2060,-1,2061,469,2577,-1,1811,665,662,-1,1811,663,665,-1,2255,2662,1806,-1,659,2662,2255,-1,2257,2580,145,-1,2257,666,2580,-1,582,1806,2662,-1,582,2245,1806,-1,1801,671,668,-1,671,1801,1804,-1,609,1800,1804,-1,1800,609,608,-1,1799,583,585,-1,583,1799,2088,-1,2153,152,135,-1,152,2153,146,-1,1796,608,1797,-1,1800,608,1796,-1,76,2261,748,-1,76,75,2261,-1,1785,2663,1786,-1,1785,1775,2663,-1,701,1780,706,-1,700,1780,701,-1,1776,710,2664,-1,1776,2263,710,-1,2664,713,1768,-1,2664,2665,713,-1,10,24,2666,-1,10,9,24,-1,1792,2667,1785,-1,2668,2667,1792,-1,1773,2666,1774,-1,1773,10,2666,-1,1771,2264,716,-1,1771,1773,2264,-1,1769,2092,2265,-1,2090,2092,1769,-1,551,536,553,-1,532,536,551,-1,564,541,565,-1,541,564,560,-1,2090,508,507,-1,2090,1769,508,-1,432,2214,435,-1,1955,2214,432,-1,1971,2669,1970,-1,2669,1971,2670,-1,426,2617,2615,-1,426,2618,2617,-1,726,591,333,-1,592,591,726,-1,2671,332,1749,-1,333,332,2671,-1,2672,1749,2673,-1,2672,2671,1749,-1,2498,1993,734,-1,2673,1993,2498,-1,2674,2266,722,-1,2674,1748,2266,-1,416,2531,412,-1,416,2675,2531,-1,2497,2676,735,-1,2497,2677,2676,-1,2678,2676,2679,-1,2678,2680,2676,-1,1748,2646,2266,-1,2646,1748,1747,-1,2681,2682,2683,-1,2684,2682,2681,-1,2191,1992,746,-1,1992,2191,2205,-1,2681,2685,2686,-1,2687,2685,2681,-1,1742,741,740,-1,1742,2688,741,-1,1741,1742,1739,-1,1741,2689,1742,-1,2690,2687,2691,-1,2685,2687,2690,-1,359,2692,360,-1,350,2692,359,-1,2693,2691,2694,-1,2693,2690,2691,-1,2695,2689,1741,-1,2695,2696,2689,-1,2273,1786,2697,-1,2273,749,1786,-1,2696,2698,2699,-1,2696,2695,2698,-1,2700,2694,2701,-1,2693,2694,2700,-1,2702,350,2276,-1,2692,350,2702,-1,1508,1454,1737,-1,1508,1242,1454,-1,1223,1299,1734,-1,1223,1300,1299,-1,1458,774,2277,-1,774,1458,775,-1,776,1305,1732,-1,1305,776,1222,-1,760,1726,2493,-1,760,801,1726,-1,759,794,757,-1,759,792,794,-1,1728,807,789,-1,807,1728,1575,-1,2279,800,2280,-1,2279,801,800,-1,1726,785,1724,-1,2279,785,1726,-1,1473,803,1722,-1,1473,2281,803,-1,2283,1499,2282,-1,839,1499,2283,-1,2284,882,840,-1,2284,1699,882,-1,1260,1572,1261,-1,1572,1260,2282,-1,849,1720,847,-1,2489,1720,849,-1,2287,1718,1717,-1,902,1718,2287,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getfrontal_Geo_5_121_coordIndex_13()
		{
			int[] value = {1717,1716,1715,-1,2288,1716,1717,-1,856,2703,1714,-1,2290,2703,856,-1,2486,926,860,-1,2486,1669,926,-1,1710,1489,1107,-1,1489,1710,1490,-1,1709,865,1254,-1,865,1709,866,-1,1091,2430,1245,-1,1091,1090,2430,-1,2291,2393,1490,-1,2414,2393,2291,-1,864,938,862,-1,1705,938,864,-1,942,1584,1583,-1,942,1706,1584,-1,1082,813,1080,-1,1082,811,813,-1,872,1701,873,-1,872,1702,1701,-1,2295,875,1699,-1,876,875,2295,-1,2299,1718,2302,-1,2299,1719,1718,-1,2478,2704,2301,-1,2704,2478,2705,-1,2288,905,1716,-1,906,905,2288,-1,1687,2706,1688,-1,2707,2706,1687,-1,2708,2709,2710,-1,2708,2306,2709,-1,855,913,2487,-1,855,910,913,-1,2703,2711,2712,-1,2474,2711,2703,-1,2713,2472,1674,-1,2713,2473,2472,-1,919,922,1665,-1,919,921,922,-1,1668,929,924,-1,2470,929,1668,-1,2484,878,877,-1,878,2484,2469,-1,1696,2315,2714,-1,1696,2297,2315,-1,1659,1707,947,-1,1659,2318,1707,-1,1417,2715,1092,-1,1417,2716,2715,-1,2324,1378,2357,-1,1651,1378,2324,-1,1063,1652,962,-1,1063,1650,1652,-1,1406,2326,1596,-1,1406,1405,2326,-1,1646,2463,969,-1,976,2463,1646,-1,978,983,2329,-1,978,980,983,-1,1636,1640,1639,-1,1640,1636,2717,-1,1638,1393,1398,-1,1638,1640,1393,-1,1009,2337,2456,-1,1009,2336,2337,-1,2457,1010,1009,-1,1010,2457,1374,-1,2332,1097,1001,-1,2332,2334,1097,-1,1226,2459,2464,-1,1226,2718,2459,-1,2719,2718,1226,-1,2718,2719,2720,-1,1625,1620,1619,-1,2379,1620,1625,-1,1022,2338,1026,-1,2338,1022,1024,-1,2343,1405,2721,-1,2326,1405,2343,-1,1617,2345,2721,-1,1617,1618,2345,-1,2343,2344,1615,-1,1039,2344,2343,-1,2722,2346,2723,-1,2346,2722,2724,-1,1597,1603,1598,-1,1609,1603,1597,-1,1607,1611,2452,-1,1609,1611,1607,-1,1040,1616,2725,-1,1616,1040,1042,-1,1609,1600,1603,-1,1600,1609,1608,-1,1604,2726,2448,-1,1606,2726,1604,-1,1594,1409,1408,-1,1409,1594,1412,-1,2448,2727,2728,-1,2448,2726,2727,-1,2729,1379,2350,-1,2729,2730,1379,-1,1654,1587,1075,-1,1654,2323,1587,-1,1069,1658,1655,-1,1070,1658,1069,-1,2465,1066,1065,-1,953,1066,2465,-1,2358,2406,2715,-1,1378,2406,2358,-1,2317,1053,1593,-1,2359,1053,2317,-1,1581,2445,1060,-1,1581,946,2445,-1,1659,2356,2318,-1,1659,2446,2356,-1,1661,2355,1051,-1,1661,1660,2355,-1,2444,1061,2731,-1,2444,1062,1061,-1,2352,1580,936,-1,2352,2351,1580,-1,1082,2727,2726,-1,1082,1081,2727,-1,1040,2314,1041,-1,1040,2315,2314,-1,2468,2732,878,-1,2732,2468,2733,-1,2468,1035,1034,-1,2468,2469,1035,-1,881,1614,1038,-1,881,2734,1614,-1,2467,2722,1578,-1,2722,2467,2724,-1,2735,1577,2313,-1,2735,1697,1577,-1,2339,894,889,-1,2339,1030,894,-1,2723,1578,2722,-1,2723,2312,1578,-1,876,2451,2450,-1,876,2360,2451,-1,2736,2737,2738,-1,2736,2739,2737,-1,2481,1621,2740,-1,893,1621,2481,-1,2741,1258,890,-1,2380,1258,2741,-1,2742,2303,2743,-1,2742,898,2303,-1,2739,1374,2737,-1,2739,2302,1374,-1,2705,1018,1014,-1,2705,2478,1018,-1,2479,1019,2744,-1,1689,1019,2479,-1,2745,1007,1006,-1,2745,1681,1007,-1,1683,1248,1684,-1,1248,1683,1225,-1,904,1628,1627,-1,904,906,1628,-1,1677,1097,2334,-1,1677,907,1097,-1,1673,1635,1574,-1,1673,994,1635,-1,2746,914,2747,-1,2746,997,914,-1,1677,2333,911,-1,1677,2334,2333,-1,975,1666,1418,-1,975,1671,1666,-1,2748,2461,2749,-1,2461,2748,2307,-1,2470,1647,929,-1,2361,1647,2470,-1,973,928,1648,-1,973,927,928,-1,1096,2385,2384,-1,2385,1096,2443,-1,2442,2750,2443,-1,2442,2751,2750,-1,2311,1250,1501,-1,2311,1251,1250,-1,1493,1122,1114,-1,1123,1122,1493,-1,2752,2753,2424,-1,2753,2752,2754,-1,1565,2395,1485,-1,2755,2395,1565,-1,2756,1568,1284,-1,2756,2757,1568,-1,1117,2362,1287,-1,1117,1118,2362,-1,2435,1479,1475,-1,1573,1479,2435,-1,1124,2758,2759,-1,2760,2758,1124,-1,2439,2426,2434,-1,2426,2439,1557,-1,1500,846,845,-1,1695,846,1500,-1,1132,1262,1130,-1,1497,1262,1132,-1,2757,1566,1568,-1,2761,1566,2757,-1,2364,2759,1255,-1,2364,1124,2759,-1,1150,1543,1550,-1,1543,1150,1157,-1,1548,1099,1135,-1,1548,1147,1099,-1,1449,1450,1232,-1,1448,1450,1449,-1,1235,2762,1541,-1,1235,2763,2762,-1,2764,1362,1540,-1,2764,1517,1362,-1,1195,1512,1196,-1,1195,1537,1512,-1,1535,1541,2765,-1,2375,1541,1535,-1,1531,1431,1365,-1,1531,1202,1431,-1,1480,2424,1286,-1,2752,2424,1480,-1,2740,1023,2766,-1,2740,1621,1023,-1,1512,1432,1196,-1,1512,1433,1432,-1,1531,1190,2376,-1,1190,1531,1191,-1,1403,2767,1369,-1,2767,1403,1514,-1,1339,1347,1346,-1,1339,1447,1347,-1,862,937,1078,-1,938,937,862,-1,941,1055,1592,-1,1055,941,940,-1,989,2473,2768,-1,989,2474,2473,-1,2471,2328,2327,-1,2471,1668,2328,-1,2769,2417,2770,-1,2769,2771,2417,-1,853,2487,858,-1,853,855,2487,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getfrontal_Geo_5_121_coordIndex_14()
		{
			int[] value = {859,2772,1712,-1,2648,2772,859,-1,1686,851,1715,-1,851,1686,2708,-1,847,1113,848,-1,2287,1113,847,-1,848,2285,849,-1,848,1572,2285,-1,2490,1699,2284,-1,1699,2490,2295,-1,2283,1262,1129,-1,2283,1130,1262,-1,2390,1124,1123,-1,2390,2760,1124,-1,2391,1496,2773,-1,1496,2391,2368,-1,2392,1122,1554,-1,1122,2392,1114,-1,1263,1498,2438,-1,1265,1498,1263,-1,1110,1107,1487,-1,1710,1107,1110,-1,1485,1119,1264,-1,1485,2395,1119,-1,1263,1273,1275,-1,1263,2434,1273,-1,2439,2434,1263,-1,1278,2774,2775,-1,1115,2774,1278,-1,2776,1104,1559,-1,1104,2776,2777,-1,2752,1479,1486,-1,2752,1480,1479,-1,1478,2778,1282,-1,2775,2778,1478,-1,2779,2757,2756,-1,2757,2779,2761,-1,2780,2777,2776,-1,2780,2781,2777,-1,2367,1118,2366,-1,1118,2367,1561,-1,1470,771,1465,-1,772,771,1470,-1,2782,1310,829,-1,2782,1463,1310,-1,1460,782,1314,-1,1133,782,1460,-1,1736,1318,2397,-1,777,1318,1736,-1,1324,1552,2423,-1,2398,1552,1324,-1,2398,2783,1552,-1,2784,1316,2371,-1,2784,1455,1316,-1,1455,825,824,-1,1455,2784,825,-1,1451,51,1452,-1,1451,72,51,-1,1444,1349,2401,-1,1444,2402,1349,-1,1,2411,2125,-1,2135,2411,1,-1,1442,2401,1345,-1,2401,1442,1444,-1,1440,1511,1441,-1,2402,1511,1440,-1,1351,2405,2785,-1,1360,2405,1351,-1,1350,1439,1437,-1,1439,1350,1440,-1,31,1434,2419,-1,31,30,1434,-1,2418,2141,2119,-1,2141,2418,1356,-1,2428,1184,1213,-1,1184,2428,1181,-1,1339,1344,1333,-1,2400,1344,1339,-1,2786,931,2787,-1,931,2786,932,-1,1240,1228,959,-1,1240,1420,1228,-1,2325,1371,2788,-1,1371,2325,1372,-1,1370,2788,1371,-1,2788,1370,1415,-1,1411,2412,1410,-1,2412,1411,1414,-1,1596,1609,1597,-1,1596,1611,1609,-1,2407,2789,2790,-1,2789,2407,1410,-1,2344,2725,1616,-1,2344,2453,2725,-1,2791,2792,2793,-1,2791,2790,2792,-1,1386,2413,2767,-1,2794,2413,1386,-1,2793,2795,2796,-1,2795,2793,2792,-1,1011,1017,1625,-1,1017,1011,1012,-1,2797,2798,2799,-1,2797,2796,2798,-1,2125,1401,1402,-1,2125,1399,1401,-1,2800,2799,2798,-1,2800,2801,2799,-1,1638,2802,2803,-1,1638,2804,2802,-1,2805,2806,2807,-1,2805,2808,2806,-1,2409,2809,2810,-1,2409,2811,2809,-1,2812,2698,2813,-1,2698,2812,2814,-1,2815,2701,2816,-1,2701,2815,2817,-1,970,1644,2276,-1,970,1643,1644,-1,1280,2818,1397,-1,1280,1271,2818,-1,974,2274,2600,-1,2274,974,2819,-1,2802,2816,2820,-1,2816,2802,2815,-1,2806,2813,2821,-1,2813,2806,2812,-1,2811,1396,1395,-1,1396,2811,2822,-1,2586,1396,2822,-1,2586,1453,1396,-1,2810,2814,1391,-1,2810,2809,2814,-1,2800,2807,2817,-1,2800,2805,2807,-1,2803,1639,1638,-1,1639,2803,1644,-1,2798,2805,2800,-1,2805,2798,2823,-1,1388,1391,1389,-1,1388,2810,1391,-1,2824,1389,2825,-1,2824,1387,1389,-1,2799,967,2797,-1,967,2799,2826,-1,967,1625,1626,-1,967,1011,1625,-1,2792,2824,2795,-1,2824,2792,2827,-1,1384,2767,1514,-1,1384,1386,2767,-1,1385,2794,1386,-1,2408,2794,1385,-1,1406,2793,2828,-1,1406,2791,2793,-1,1410,2794,2789,-1,2794,1410,2413,-1,1652,1415,2829,-1,1652,2788,1415,-1,2324,2788,1652,-1,2788,2324,2325,-1,959,1372,2325,-1,1372,959,1227,-1,2830,2350,2831,-1,2830,2729,2350,-1,2704,1014,1013,-1,2705,1014,2704,-1,1044,2353,1052,-1,2353,1044,1043,-1,2428,819,818,-1,2428,1213,819,-1,758,1361,1360,-1,1361,758,762,-1,1357,2418,1358,-1,1357,1356,2418,-1,1356,4,2141,-1,4,1356,1355,-1,2419,1451,2131,-1,1451,2419,1434,-1,2421,1360,1351,-1,758,1360,2421,-1,1511,2420,1441,-1,1511,1510,2420,-1,1345,36,2422,-1,1345,2401,36,-1,26,1453,2586,-1,1453,26,2131,-1,1238,820,1236,-1,1238,1329,820,-1,1330,825,2784,-1,825,1330,1238,-1,1477,1325,2277,-1,1477,1219,1325,-1,777,1319,1318,-1,777,1321,1319,-1,1313,1459,2371,-1,1313,1141,1459,-1,1142,1315,1524,-1,1312,1315,1142,-1,1463,2832,1524,-1,2782,2832,1463,-1,1304,1468,1302,-1,1468,1304,1467,-1,1293,2782,1291,-1,2832,2782,1293,-1,1118,2436,2362,-1,2436,1118,1561,-1,2777,1563,1104,-1,2781,1563,2777,-1,1286,1474,1476,-1,1286,1560,1474,-1,2753,2779,2756,-1,2779,2753,2754,-1,1282,1481,1283,-1,2778,1481,1282,-1,2784,1326,1330,-1,2784,2371,1326,-1,2833,1274,1566,-1,2833,1275,1274,-1,1290,1253,1103,-1,1709,1253,1290,-1,2778,2774,1266,-1,2774,2778,2775,-1,2294,868,870,-1,2294,1492,868,-1,2425,1494,1493,-1,2425,1557,1494,-1,2392,2368,2391,-1,2368,2392,1554,-1,2490,839,1128,-1,839,2490,2284,-1,2285,891,849,-1,2285,892,891,-1,1496,1256,2834,-1,1496,1257,1256,-1,1112,848,1113,-1,1112,1261,848,-1,2487,1672,916,-1,2487,913,1672,-1,1712,2440,857,-1,1712,2834,2440,-1,2834,1712,2772,-1,1569,853,857,-1,1569,2488,853,-1,1505,2386,1504,-1,1505,2384,2386,-1,2751,2387,1504,-1,2751,2442,2387,-1,2337,2835,2836,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getfrontal_Geo_5_121_coordIndex_15()
		{
			int[] value = {2337,2304,2835,-1,982,923,2462,-1,982,1667,923,-1,2768,2713,2416,-1,2713,2768,2473,-1,1167,1352,1373,-1,769,1352,1167,-1,1352,769,755,-1,2433,2837,2762,-1,2378,2837,2433,-1,1178,1171,1231,-1,1171,1178,2374,-1,2765,2762,2837,-1,2762,2765,1541,-1,1203,1435,1204,-1,1203,1430,1435,-1,2369,1366,1205,-1,2369,1529,1366,-1,2837,1194,2765,-1,2837,1195,1194,-1,1209,1540,2432,-1,1209,2764,1540,-1,2763,2433,2762,-1,2763,2431,2433,-1,2382,1176,1426,-1,1176,2382,1177,-1,1338,1232,1229,-1,1449,1232,1338,-1,1137,1156,1549,-1,1145,1156,1137,-1,1151,1147,1548,-1,2838,1147,1151,-1,1148,1550,1154,-1,1550,1148,1150,-1,2373,1160,1148,-1,2373,2372,1160,-1,1543,1152,1162,-1,1544,1152,1543,-1,2389,1112,1571,-1,2363,1112,2389,-1,2282,1500,845,-1,1499,1500,2282,-1,1116,1493,1114,-1,1493,1116,2425,-1,1120,1479,1573,-1,1479,1120,1119,-1,2441,1255,2759,-1,1255,2441,1256,-1,1268,1107,1489,-1,1268,1108,1107,-1,1128,2283,1129,-1,1128,839,2283,-1,2434,1482,1273,-1,1482,2434,1483,-1,2760,2388,2758,-1,2839,2388,2760,-1,2435,1559,1252,-1,2435,1562,1559,-1,1561,2437,2436,-1,1561,1560,2437,-1,2755,1486,2395,-1,2840,1486,2755,-1,2406,1092,2715,-1,956,1092,2406,-1,1505,1096,2384,-1,1093,1096,1505,-1,1502,1249,1095,-1,1249,1502,1250,-1,929,1648,928,-1,1647,1648,929,-1,2748,1641,2841,-1,2749,1641,2748,-1,977,1671,975,-1,977,2310,1671,-1,1002,2305,1003,-1,2305,1002,909,-1,2769,2331,2771,-1,1674,2331,2769,-1,2746,1574,1635,-1,1574,2746,2747,-1,907,1002,1097,-1,1002,907,909,-1,906,2337,1628,-1,906,2304,2337,-1,1225,2706,2842,-1,1225,1683,2706,-1,1008,1681,2709,-1,1007,1681,1008,-1,1689,1020,1019,-1,1691,1020,1689,-1,2478,1623,1018,-1,2478,2477,1623,-1,2302,1375,1374,-1,2302,2301,1375,-1,2843,2456,2844,-1,2843,2300,2456,-1,1623,901,1624,-1,1623,2477,901,-1,1622,893,2480,-1,1621,893,1622,-1,1259,2380,1521,-1,1259,1258,2380,-1,932,2451,2360,-1,2451,932,2786,-1,2724,883,2845,-1,2724,2467,883,-1,2454,888,886,-1,2340,888,2454,-1,2733,2298,2732,-1,2733,2846,2298,-1,2312,1612,2313,-1,2312,2723,1612,-1,2845,879,1037,-1,879,2845,883,-1,2733,1034,2847,-1,2733,2468,1034,-1,2449,876,2450,-1,2449,874,876,-1,1663,2848,1702,-1,2848,1663,2348,-1,1699,2297,882,-1,1699,1700,2297,-1,811,2726,1606,-1,2726,811,1082,-1,936,1592,2352,-1,936,941,1592,-1,1057,2317,1593,-1,943,2317,1057,-1,2319,2729,948,-1,2730,2729,2319,-1,949,2446,1659,-1,949,2830,2446,-1,945,2445,946,-1,945,1058,2445,-1,1076,2293,2294,-1,2293,1076,2354,-1,1074,2849,2322,-1,1074,1073,2849,-1,1070,953,1658,-1,1066,953,1070,-1,952,1590,1416,-1,952,951,1590,-1,955,1378,1377,-1,955,2406,1378,-1,1072,2358,1071,-1,1072,2357,2358,-1,2730,963,1379,-1,963,2730,2415,-1,1413,1049,2831,-1,1413,1412,1049,-1,2352,1047,1046,-1,1047,2352,1592,-1,2831,2446,2830,-1,2831,1049,2446,-1,1045,1594,1408,-1,1045,1044,1594,-1,2848,1608,2787,-1,2848,2348,1608,-1,2451,1607,2452,-1,2451,2786,1607,-1,2342,2724,2845,-1,2724,2342,2346,-1,1618,1035,2345,-1,1036,1035,1618,-1,1024,2339,2338,-1,1024,1030,2339,-1,1626,2341,1404,-1,2341,1626,1649,-1,1020,1522,1620,-1,1522,1020,1523,-1,2742,2379,1016,-1,2742,2455,2379,-1,1619,2766,1649,-1,1619,1522,2766,-1,1224,2464,1392,-1,2464,1224,1226,-1,1375,1012,1010,-1,1012,1375,1013,-1,1576,1394,1393,-1,1576,1004,1394,-1,997,1635,996,-1,997,2746,1635,-1,2460,2410,1637,-1,990,2410,2460,-1,1641,2461,2329,-1,2749,2461,1641,-1,1646,2328,977,-1,1645,2328,1646,-1,2819,971,970,-1,2819,974,971,-1,968,1009,966,-1,1009,968,2459,-1,2292,2716,1417,-1,2849,2716,2292,-1,875,2850,1700,-1,875,874,2850,-1,2851,881,880,-1,2851,2734,881,-1,877,2735,2485,-1,2735,877,1697,-1,1676,920,919,-1,2307,920,1676,-1,2712,2308,1675,-1,2712,2711,2308,-1,1680,2305,1678,-1,1680,1679,2305,-1,2302,2736,2299,-1,2736,2302,2739,-1,897,1720,1690,-1,897,896,1720,-1,2300,2835,2304,-1,2835,2300,2843,-1,903,900,899,-1,2476,900,903,-1,1577,2483,884,-1,1698,2483,1577,-1,2360,2466,932,-1,2360,2296,2466,-1,1245,1417,1091,-1,2292,1417,1245,-1,1713,1664,1711,-1,1665,1664,1713,-1,1714,2712,2289,-1,1714,2703,2712,-1,852,1680,2488,-1,2710,1680,852,-1,838,842,841,-1,1698,842,838,-1,838,1499,839,-1,838,841,1499,-1,826,1182,2427,-1,1182,826,1237,-1,814,817,819,-1,816,817,814,-1,790,830,809,-1,830,790,806,-1,792,796,793,-1,796,792,799,-1,2279,1730,785,-1,2280,1730,2279,-1,789,806,790,-1,806,789,807,-1,2494,1726,1725,-1,2493,1726,2494,-1,1462,781,788,-1,1461,781,1462,-1,771,1300,1223,-1,1300,771,770,-1,764,2494,765,-1,764,1553,2494,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getfrontal_Geo_5_121_coordIndex_16()
		{
			int[] value = {350,2192,2275,-1,350,349,2192,-1,2820,2692,2702,-1,2852,2692,2820,-1,2821,2693,2700,-1,2853,2693,2821,-1,2854,2699,1395,-1,2854,2696,2699,-1,48,748,747,-1,76,748,48,-1,2696,2855,2689,-1,2696,2854,2855,-1,2853,2690,2693,-1,2853,2856,2690,-1,2852,360,2692,-1,2852,2857,360,-1,2858,2691,2687,-1,2858,2859,2691,-1,2860,2663,742,-1,2860,2861,2663,-1,2687,2683,2858,-1,2687,2681,2683,-1,389,1974,386,-1,388,1974,389,-1,2686,2684,2681,-1,2679,2684,2686,-1,1747,1744,2646,-1,1744,1747,2862,-1,2679,2677,2684,-1,2679,2676,2677,-1,2677,340,2496,-1,2497,340,2677,-1,735,424,2497,-1,734,424,735,-1,1952,2611,2613,-1,1954,2611,1952,-1,2674,2673,2498,-1,2672,2673,2674,-1,2673,337,1993,-1,2673,1749,337,-1,1948,2611,429,-1,2611,1948,2612,-1,1781,2501,1783,-1,2501,1781,705,-1,506,180,2504,-1,506,503,180,-1,10,1771,2863,-1,1773,1771,10,-1,2864,1774,2668,-1,2864,1772,1774,-1,2261,2668,1792,-1,2864,2668,2261,-1,713,2865,2863,-1,2665,2865,713,-1,2664,1854,2665,-1,2664,710,1854,-1,2133,1787,702,-1,2133,2262,1787,-1,1787,706,705,-1,1787,701,706,-1,2157,606,605,-1,2157,689,606,-1,599,687,685,-1,606,687,599,-1,139,1820,136,-1,139,680,1820,-1,2505,2088,1799,-1,2505,676,2088,-1,1798,673,2258,-1,1798,1900,673,-1,1803,1900,2235,-1,1803,673,1900,-1,2245,1805,1806,-1,1899,1805,2245,-1,2060,670,669,-1,670,2060,2062,-1,586,145,2086,-1,586,2257,145,-1,665,483,485,-1,665,2256,483,-1,1807,659,2255,-1,660,659,1807,-1,2060,470,469,-1,470,2060,2866,-1,2253,657,1922,-1,2253,658,657,-1,484,2152,644,-1,2152,484,483,-1,137,2654,645,-1,137,2252,2654,-1,644,2250,484,-1,644,2251,2250,-1,2507,2867,2868,-1,2507,2869,2867,-1,2655,491,495,-1,491,2655,2659,-1,2228,645,2226,-1,2233,645,2228,-1,645,2233,2251,-1,2870,2869,486,-1,2869,2870,2867,-1,1831,633,1832,-1,2653,633,1831,-1,2871,2652,2872,-1,1833,2652,2871,-1,2651,628,2873,-1,2651,500,628,-1,2651,2650,500,-1,256,2874,257,-1,256,305,2874,-1,2647,2872,2648,-1,2871,2872,2647,-1,2523,1917,1919,-1,2523,2875,1917,-1,2876,2875,2523,-1,2051,213,212,-1,2051,2050,213,-1,859,2169,219,-1,859,2047,2169,-1,283,2572,221,-1,283,2592,2572,-1,2877,1844,1501,-1,2877,2878,1844,-1,2387,2222,2879,-1,2387,2442,2222,-1,2880,2541,2881,-1,2880,269,2541,-1,293,729,1988,-1,293,2012,729,-1,2596,1984,1755,-1,2183,1984,2596,-1,2263,467,2267,-1,2263,126,467,-1,2263,127,126,-1,2518,2239,2882,-1,2239,2518,546,-1,556,55,54,-1,567,55,556,-1,593,694,1760,-1,593,592,694,-1,1900,585,584,-1,585,1900,1798,-1,1820,690,1794,-1,680,690,1820,-1,2074,2059,171,-1,1850,2059,2074,-1,577,689,1216,-1,689,577,688,-1,2882,549,2518,-1,533,549,2882,-1,75,714,1874,-1,75,62,714,-1,2241,550,552,-1,2241,575,550,-1,1856,548,1877,-1,1856,2519,548,-1,540,1878,539,-1,540,1767,1878,-1,2882,598,533,-1,2882,1868,598,-1,525,699,524,-1,699,525,693,-1,529,691,527,-1,2237,691,529,-1,718,2521,1901,-1,718,1896,2521,-1,2520,1892,512,-1,519,1892,2520,-1,2875,480,623,-1,2875,1908,480,-1,1914,653,1818,-1,653,1914,651,-1,2509,1903,1902,-1,1903,2509,474,-1,2036,2163,201,-1,2163,2036,2164,-1,2250,641,484,-1,2250,642,641,-1,2651,1838,1903,-1,2651,1839,1838,-1,490,1812,1912,-1,490,489,1812,-1,2254,1907,2640,-1,1809,1907,2254,-1,487,2639,488,-1,2638,2639,487,-1,2868,1825,2657,-1,2867,1825,2868,-1,491,2660,489,-1,491,2659,2660,-1,2223,399,2224,-1,2223,1864,399,-1,619,2170,1501,-1,619,185,2170,-1,2222,2600,620,-1,2222,2442,2600,-1,2878,1929,1844,-1,2883,1929,2878,-1,2010,184,2547,-1,2010,297,184,-1,2546,2186,2635,-1,2186,2546,1991,-1,2198,2633,2601,-1,289,2633,2198,-1,2559,2196,730,-1,2559,294,2196,-1,2542,278,277,-1,2542,2544,278,-1,2017,2602,2631,-1,2017,1981,2602,-1,366,2560,287,-1,366,365,2560,-1,1979,278,2544,-1,1979,2020,278,-1,384,2022,381,-1,384,268,2022,-1,617,2564,281,-1,616,2564,617,-1,377,2884,1977,-1,377,2563,2884,-1,2628,2177,2645,-1,2177,2628,2567,-1,2208,2670,1971,-1,2208,2178,2670,-1,2269,2885,2886,-1,2269,263,2885,-1,264,2603,2887,-1,264,266,2603,-1,626,2223,2032,-1,2223,626,1864,-1,397,2033,2225,-1,2033,397,2030,-1,2886,2888,2889,-1,2886,2885,2888,-1,1960,2044,1958,-1,1960,2525,2044,-1,460,2624,2890,-1,460,302,2624,-1,2029,2538,2175,-1,2029,1963,2538,-1,255,2891,303,-1,255,254,2891,-1,2890,2189,460,-1,2606,2189,2890,-1,405,2040,2209,-1,405,304,2040,-1,408,2008,2621,-1,408,2009,2008,-1,2625,2008,2007,-1,2622,2008,2625,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=17 */
		private int[] getfrontal_Geo_5_121_coordIndex_17()
		{
			int[] value = {2512,2212,2211,-1,2512,2558,2212,-1,2614,1933,2620,-1,2614,1932,1933,-1,455,427,456,-1,455,428,427,-1,1753,2221,2619,-1,1753,440,2221,-1,437,315,1949,-1,437,316,315,-1,436,319,2556,-1,436,1945,319,-1,1944,1997,2218,-1,1944,2892,1997,-1,2216,313,430,-1,313,2216,452,-1,2500,446,2636,-1,446,2500,334,-1,443,1995,1939,-1,1995,443,1996,-1,320,2527,321,-1,2527,320,442,-1,447,2551,448,-1,447,2220,2551,-1,1938,2616,331,-1,1938,1937,2616,-1,2215,1942,1951,-1,2215,1943,1942,-1,1951,2499,2215,-1,1951,2529,2499,-1,2613,420,1952,-1,2613,1957,420,-1,1961,2533,403,-1,1959,2533,1961,-1,341,1961,403,-1,1961,341,411,-1,2893,737,2495,-1,2893,402,737,-1,2894,2537,410,-1,2894,2895,2537,-1,398,2548,738,-1,2224,2548,398,-1,2621,393,408,-1,2621,418,393,-1,418,2621,2623,-1,400,2628,1866,-1,400,2605,2628,-1,400,386,385,-1,386,400,1867,-1,2896,2897,2517,-1,2898,2897,2896,-1,2205,2517,1992,-1,2205,2896,2517,-1,1979,2543,370,-1,1979,2544,2543,-1,1976,2206,1975,-1,2269,2206,1976,-1,2541,1975,2207,-1,2541,2203,1975,-1,745,360,746,-1,745,361,360,-1,361,363,359,-1,2899,363,361,-1,2545,1987,2198,-1,1987,2545,2197,-1,354,2196,345,-1,354,730,2196,-1,2194,184,2195,-1,2194,2547,184,-1,2272,1754,422,-1,2272,733,1754,-1,444,336,335,-1,336,444,2549,-1,330,591,187,-1,330,449,591,-1,230,327,231,-1,2550,327,230,-1,2555,1827,1829,-1,1827,2555,2619,-1,235,319,318,-1,235,2556,319,-1,2558,257,2874,-1,2558,2511,257,-1,300,2010,2635,-1,2010,300,298,-1,2013,282,284,-1,2013,292,282,-1,2184,2596,2561,-1,2184,2183,2596,-1,2900,2593,2592,-1,2593,2900,2185,-1,2019,275,2168,-1,2019,276,275,-1,2629,2649,2591,-1,2629,280,2649,-1,2594,2565,2179,-1,2565,2594,2901,-1,2021,267,214,-1,267,2021,268,-1,2669,2178,262,-1,2670,2178,2669,-1,209,260,263,-1,209,211,260,-1,250,2162,251,-1,2162,250,2044,-1,195,307,196,-1,195,248,307,-1,2069,1933,244,-1,2069,2068,1933,-1,453,243,311,-1,453,239,243,-1,2001,240,223,-1,240,2001,241,-1,1827,2515,2249,-1,2515,1827,1752,-1,2514,731,229,-1,2514,615,731,-1,2046,228,225,-1,1821,228,2046,-1,1828,224,475,-1,2249,224,1828,-1,299,2169,2047,-1,299,2011,2169,-1,2593,216,218,-1,216,2593,2571,-1,214,210,213,-1,210,214,267,-1,209,1842,210,-1,1842,209,1843,-1,206,204,207,-1,204,206,2165,-1,199,2575,197,-1,199,251,2575,-1,2247,2159,2576,-1,2159,2247,2057,-1,2156,174,176,-1,2156,2577,174,-1,157,153,170,-1,153,157,154,-1,2154,154,2578,-1,2154,155,154,-1,2155,2578,160,-1,2578,2155,2154,-1,2084,2902,2579,-1,2084,2903,2902,-1,169,2902,2903,-1,2902,169,2150,-1,153,2076,2151,-1,153,155,2076,-1,2506,148,1805,-1,2506,2087,148,-1,2153,147,146,-1,2153,2152,147,-1,2504,2579,2902,-1,2504,683,2579,-1,2147,2581,124,-1,2112,2581,2147,-1,2099,125,116,-1,123,125,2099,-1,2590,2115,2589,-1,52,2115,2590,-1,2096,113,115,-1,2096,112,113,-1,2583,93,2588,-1,2583,94,93,-1,97,2104,2146,-1,2104,97,2105,-1,81,2142,2587,-1,81,2114,2142,-1,84,2114,88,-1,2114,84,92,-1,79,566,56,-1,79,2113,566,-1,50,77,2097,-1,49,77,50,-1,2136,41,0,-1,42,41,2136,-1,2124,2121,2120,-1,2121,2124,2129,-1,7,2130,2585,-1,2904,2130,7,-1,2667,1775,1785,-1,1775,2667,2502,-1,2904,6,2129,-1,7,6,2904,-1,2141,3,2117,-1,2141,4,3,-1,0,8,2135,-1,0,41,8,-1,2124,1438,2404,-1,2124,2123,1438,-1,32,44,27,-1,32,2585,44,-1,2128,2126,2122,-1,2128,5,2126,-1,8,2585,32,-1,7,2585,8,-1,1353,35,40,-1,35,1353,1340,-1,2118,1439,2403,-1,2118,2140,1439,-1,2584,40,39,-1,1353,40,2584,-1,567,1516,55,-1,61,1516,567,-1,107,59,118,-1,60,59,107,-1,122,60,107,-1,60,122,71,-1,86,2143,2110,-1,86,85,2143,-1,80,2143,78,-1,80,99,2143,-1,2583,101,74,-1,2583,2588,101,-1,2100,2107,99,-1,2100,106,2107,-1,110,2095,109,-1,112,2095,110,-1,119,2115,73,-1,2115,119,2589,-1,2148,52,2590,-1,77,52,2148,-1,151,141,138,-1,142,141,151,-1,135,138,136,-1,151,138,135,-1,2153,137,644,-1,2153,135,137,-1,2072,158,168,-1,159,158,2072,-1,2084,169,2903,-1,169,2084,170,-1,2073,2061,173,-1,2073,2062,2061,-1,201,2158,477,-1,201,2576,2158,-1,2573,201,2574,-1,201,2573,202,-1,2024,207,1842,-1,207,2024,208,-1,2182,2048,216,-1,2048,2182,2015,-1,2661,612,611,-1,612,2661,175,-1,235,636,238,-1,636,235,318,-1,239,1830,240,-1,1830,239,453,-1,2069,192,1837,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=18 */
		private int[] getfrontal_Geo_5_121_coordIndex_18()
		{
			int[] value = {2069,244,192,-1,2161,249,195,-1,2161,2004,249,-1,2625,2042,2056,-1,2042,2625,2007,-1,2041,253,2042,-1,253,2041,254,-1,202,2030,2029,-1,202,2573,2030,-1,1843,262,2178,-1,1843,209,262,-1,2649,279,215,-1,280,279,2649,-1,2021,2901,2180,-1,2021,2565,2901,-1,2905,2563,2562,-1,2563,2905,2884,-1,2563,2591,2166,-1,2591,2563,2629,-1,2906,2562,270,-1,2906,2905,2562,-1,2182,2184,2561,-1,2182,2571,2184,-1,287,2017,2631,-1,287,2016,2017,-1,2634,289,2014,-1,289,2634,2633,-1,2635,301,300,-1,301,2635,2186,-1,2007,2173,2041,-1,2009,2173,2007,-1,2513,252,2511,-1,252,2513,2599,-1,244,2907,2570,-1,244,1932,2907,-1,236,314,237,-1,2892,314,236,-1,2636,328,614,-1,2636,329,328,-1,334,332,445,-1,332,334,336,-1,1749,338,337,-1,1749,2549,338,-1,342,2496,340,-1,342,2495,2496,-1,1989,344,2193,-1,344,1989,345,-1,353,2197,2545,-1,353,355,2197,-1,369,1983,364,-1,369,368,1983,-1,1756,2632,1757,-1,1982,2632,1756,-1,745,2899,361,-1,465,2899,745,-1,2207,2881,2541,-1,2207,2627,2881,-1,383,2205,2204,-1,383,2896,2205,-1,2604,389,1867,-1,389,2604,391,-1,2893,410,409,-1,2624,410,2893,-1,394,401,395,-1,394,1759,401,-1,1967,2539,1966,-1,2539,1967,2540,-1,2539,1968,401,-1,1965,1968,2539,-1,2495,2536,2893,-1,2536,2495,342,-1,409,402,2893,-1,409,395,402,-1,407,2536,404,-1,2536,407,406,-1,2535,2890,2624,-1,2606,2890,2535,-1,417,2530,420,-1,2530,417,414,-1,411,413,1961,-1,413,411,414,-1,403,2212,1745,-1,2213,2212,403,-1,416,414,417,-1,412,414,416,-1,2620,421,1957,-1,421,2620,415,-1,424,2529,1953,-1,2499,2529,424,-1,2614,1957,2613,-1,2614,2620,1957,-1,425,2618,426,-1,425,2908,2618,-1,335,442,444,-1,2527,442,335,-1,2220,2219,450,-1,2220,447,2219,-1,322,1941,2552,-1,322,732,1941,-1,2271,321,2527,-1,321,2271,325,-1,2616,2636,446,-1,2616,329,2636,-1,452,434,451,-1,434,452,2216,-1,1949,314,1956,-1,315,314,1949,-1,451,433,2171,-1,451,434,433,-1,2908,2555,2554,-1,2908,2270,2555,-1,2217,310,309,-1,310,2217,1946,-1,2909,2068,2067,-1,2909,415,2068,-1,2570,2557,454,-1,2907,2557,2570,-1,248,2610,2609,-1,248,2172,2610,-1,2043,2533,1959,-1,2043,2599,2533,-1,2598,2623,2622,-1,2623,2598,418,-1,410,2891,2894,-1,410,303,2891,-1,1746,2874,305,-1,1745,2874,1746,-1,1758,2034,1967,-1,1758,2037,2034,-1,457,418,2598,-1,418,457,419,-1,1746,304,405,-1,1746,305,304,-1,2558,1745,2212,-1,2874,1745,2558,-1,1963,2028,1964,-1,1963,2029,2028,-1,2225,2032,2223,-1,2225,2033,2032,-1,391,2026,392,-1,391,2027,2026,-1,2206,261,2207,-1,2206,260,261,-1,262,1970,2669,-1,1970,262,2268,-1,266,2604,2603,-1,2023,2604,266,-1,382,2180,2898,-1,382,2181,2180,-1,280,379,378,-1,280,2629,379,-1,2901,2630,2897,-1,2901,2594,2630,-1,2905,376,375,-1,2905,2906,376,-1,370,2018,2019,-1,370,2543,2018,-1,285,365,368,-1,285,2560,365,-1,368,2019,285,-1,368,370,2019,-1,1977,2905,375,-1,1977,2884,2905,-1,2188,346,343,-1,2188,301,346,-1,1988,291,293,-1,1988,352,291,-1,2187,1991,1990,-1,2187,2186,1991,-1,1847,1927,1926,-1,1847,1846,1927,-1,2877,2883,2878,-1,2877,2910,2883,-1,1929,2910,2222,-1,1929,2883,2910,-1,481,1834,2227,-1,1834,481,1835,-1,2637,2657,656,-1,2868,2657,2637,-1,1823,486,1822,-1,486,1823,2870,-1,1818,652,655,-1,1818,653,652,-1,471,657,472,-1,471,1912,657,-1,1824,2231,1816,-1,2231,1824,2524,-1,2876,1908,2875,-1,1908,2876,2873,-1,2234,498,2232,-1,499,498,2234,-1,1828,318,1829,-1,1828,636,318,-1,482,623,480,-1,623,482,501,-1,318,2554,1829,-1,2190,2554,318,-1,2523,2051,479,-1,2523,2522,2051,-1,1893,516,518,-1,1893,517,516,-1,1896,1888,2644,-1,1888,1896,1883,-1,1883,1889,1888,-1,1883,1882,1889,-1,1863,1881,719,-1,1863,1862,1881,-1,536,531,571,-1,532,531,536,-1,1869,539,2242,-1,1869,537,539,-1,2519,1513,544,-1,1856,1513,2519,-1,547,575,574,-1,575,547,550,-1,559,1877,574,-1,559,558,1877,-1,560,1763,561,-1,560,564,1763,-1,555,1766,58,-1,555,535,1766,-1,2516,1869,1868,-1,2516,538,1869,-1,595,693,596,-1,528,693,595,-1,2860,1858,1743,-1,2860,742,1858,-1,1848,2064,600,-1,1848,181,2064,-1,708,1790,522,-1,2267,1790,708,-1,488,643,630,-1,643,488,2639,-1,2557,428,455,-1,2557,1948,428,-1,356,2185,2900,-1,2185,356,1985,-1,603,2063,2510,-1,603,1879,2063,-1,259,1865,625,-1,259,2246,1865,-1,291,2014,292,-1,291,2634,2014,-1,2387,2877,1501,-1,2387,2879,2877,-1,2049,2522,217,-1,2049,2167,2522,-1,1918,219,217,-1,2641,219,1918,-1,2641,2647,219,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=19 */
		private int[] getfrontal_Geo_5_121_coordIndex_19()
		{
			int[] value = {285,2168,2015,-1,285,2019,2168,-1,2053,479,212,-1,2053,477,479,-1,622,2248,2641,-1,622,624,2248,-1,203,2574,204,-1,203,2031,2574,-1,2057,2160,1904,-1,2575,2160,2057,-1,1836,1831,1833,-1,1836,502,1831,-1,627,2508,1834,-1,627,499,2508,-1,2045,1999,1998,-1,2045,1830,1999,-1,2653,2658,633,-1,2654,2658,2653,-1,621,175,1922,-1,175,621,228,-1,641,2639,1914,-1,641,643,2639,-1,2503,685,687,-1,2503,2258,685,-1,647,1819,646,-1,1819,647,2658,-1,2507,2637,652,-1,2868,2637,2507,-1,490,1815,1814,-1,490,492,1815,-1,489,2656,497,-1,489,2660,2656,-1,2229,1912,471,-1,493,1912,2229,-1,2866,659,470,-1,659,2866,2662,-1,2256,147,483,-1,143,147,2256,-1,2662,580,582,-1,580,2662,2866,-1,671,2235,582,-1,2235,671,1803,-1,682,675,2505,-1,682,681,675,-1,675,139,138,-1,675,678,139,-1,682,2643,2642,-1,682,2259,2643,-1,686,1849,684,-1,1849,686,1797,-1,2911,2503,579,-1,2642,2503,2911,-1,719,1783,2501,-1,1783,719,1881,-1,1775,742,2663,-1,1775,703,742,-1,706,1788,707,-1,1780,1788,706,-1,1779,710,709,-1,1779,1854,710,-1,1855,11,2865,-1,11,1855,712,-1,1768,1776,2664,-1,1776,1768,2265,-1,25,2502,24,-1,25,711,2502,-1,2264,715,1762,-1,2264,1772,715,-1,715,2864,1874,-1,1772,2864,715,-1,177,572,573,-1,572,177,603,-1,572,2510,1871,-1,603,2510,572,-1,707,698,692,-1,698,707,1788,-1,2172,2608,2610,-1,2003,2608,2172,-1,593,187,591,-1,593,1761,187,-1,723,333,2671,-1,726,333,723,-1,2671,724,723,-1,2672,724,2671,-1,1748,2498,736,-1,2674,2498,1748,-1,414,340,2530,-1,414,411,340,-1,2680,735,2676,-1,736,735,2680,-1,2682,737,387,-1,2682,2496,737,-1,2680,739,2862,-1,2678,739,2680,-1,743,2243,1857,-1,2243,743,1782,-1,740,2678,2912,-1,739,2678,740,-1,2683,387,1973,-1,2682,387,2683,-1,2191,2913,1973,-1,746,2913,2191,-1,2914,2686,2685,-1,2914,2912,2686,-1,1743,2688,2860,-1,2688,1743,741,-1,2689,2688,1742,-1,2688,2689,2855,-1,2856,2685,2690,-1,2914,2685,2856,-1,2857,746,360,-1,2913,746,2857,-1,1986,350,359,-1,1986,2199,350,-1,2694,2859,2915,-1,2694,2691,2859,-1,1741,2916,2695,-1,2916,1741,1740,-1,1786,2861,2697,-1,1786,2663,2861,-1,2698,2916,2813,-1,2695,2916,2698,-1,2701,2915,2816,-1,2694,2915,2701,-1,639,2818,750,-1,639,638,2818,-1,754,758,2421,-1,759,758,754,-1,761,2493,1553,-1,2493,761,760,-1,763,766,1507,-1,766,763,1731,-1,1307,777,1736,-1,777,1307,778,-1,810,795,791,-1,810,1462,795,-1,1729,757,794,-1,757,1729,802,-1,2281,1723,803,-1,2281,828,1723,-1,813,1703,837,-1,813,812,1703,-1,1237,822,1182,-1,1237,1236,822,-1,1226,2842,2719,-1,1226,1225,2842,-1,1721,2491,2490,-1,1701,2491,1721,-1,840,2483,838,-1,885,2483,840,-1,1569,852,2488,-1,852,1569,850,-1,851,2710,852,-1,851,2708,2710,-1,2488,854,853,-1,1678,854,2488,-1,1670,2486,1711,-1,1670,1669,2486,-1,2444,2393,2414,-1,2444,2731,2393,-1,2491,2296,2295,-1,2466,2296,2491,-1,843,2298,1085,-1,843,2732,2298,-1,2481,2286,893,-1,892,2286,2481,-1,1690,2489,1691,-1,1690,1720,2489,-1,1690,2479,897,-1,1689,2479,1690,-1,1716,1687,1686,-1,905,1687,1716,-1,1683,1688,2706,-1,1682,1688,1683,-1,2304,1719,2300,-1,2304,2288,1719,-1,2290,2474,2703,-1,2290,2472,2474,-1,1674,2770,2713,-1,2770,1674,2769,-1,1083,2846,1579,-1,1083,2298,2846,-1,2465,1656,867,-1,1656,2465,2321,-1,1380,1381,1409,-1,1380,1382,1381,-1,970,2463,1643,-1,970,969,2463,-1,1249,974,2600,-1,1249,972,974,-1,1647,969,971,-1,1647,2361,969,-1,1643,980,979,-1,1643,981,980,-1,978,987,979,-1,978,986,987,-1,985,2460,987,-1,2460,985,990,-1,991,2717,1636,-1,2717,991,1000,-1,999,2717,1000,-1,1576,2717,999,-1,2738,1374,2457,-1,2738,2737,1374,-1,1628,2458,1629,-1,2458,1628,2336,-1,2720,1629,2718,-1,1629,2720,1630,-1,1392,1632,1631,-1,1392,1394,1632,-1,966,1012,1011,-1,966,1010,1012,-1,2455,2743,2744,-1,2455,2742,2743,-1,2721,2346,2343,-1,2721,2723,2346,-1,1023,1029,1024,-1,1023,1622,1029,-1,2326,1615,1610,-1,2343,1615,2326,-1,1039,2845,1037,-1,1039,2342,2845,-1,1598,1407,1597,-1,1598,1408,1407,-1,1607,2787,1608,-1,1607,2786,2787,-1,1076,1059,1077,-1,1059,1076,1060,-1,1046,1045,2917,-1,1046,1043,1045,-1,2728,2918,2917,-1,2728,2727,2918,-1,1052,1595,1044,-1,1595,1052,1077,-1,2831,1380,1413,-1,2831,2350,1380,-1,1075,2322,1654,-1,1075,1074,2322,-1,1064,1657,2321,-1,1064,1591,1657,-1,1065,2321,2465,-1,1064,2321,1065,-1,2716,1073,1071,-1,2849,1073,2716,-1,1660,2356,2355,-1,1660,2318,2356,-1,2294,1060,1076,-1,2294,1581,1060,-1,948,2830,949,-1,948,2729,2830,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=20 */
		private int[] getfrontal_Geo_5_121_coordIndex_20()
		{
			int[] value = {2415,2731,1061,-1,2415,2320,2731,-1,1662,1057,1056,-1,1662,943,1057,-1,1601,812,1602,-1,1601,933,812,-1,2919,2447,2918,-1,2919,2316,2447,-1,935,2348,1663,-1,935,2349,2348,-1,2314,1042,1041,-1,2314,2429,1042,-1,2485,2920,2921,-1,2485,2735,2920,-1,2469,1613,1035,-1,2484,1613,2469,-1,881,1037,879,-1,881,1038,1037,-1,2482,1419,1028,-1,2482,1506,1419,-1,1613,2485,2921,-1,2485,1613,2484,-1,2850,1042,2429,-1,1042,2850,2347,-1,2349,933,1601,-1,2349,935,933,-1,1029,2480,895,-1,1622,2480,1029,-1,2339,888,2340,-1,2339,889,888,-1,900,1016,1015,-1,900,2476,1016,-1,2738,2299,2736,-1,2457,2299,2738,-1,2835,2844,2836,-1,2843,2844,2835,-1,2303,2744,2743,-1,2303,2479,2744,-1,1685,1627,1630,-1,1685,904,1627,-1,2335,1684,1248,-1,2335,2306,1684,-1,2475,2719,2707,-1,2719,2475,2720,-1,1003,2922,1633,-1,1003,2305,2922,-1,996,992,997,-1,996,993,992,-1,914,2331,1674,-1,2331,914,997,-1,911,2332,912,-1,911,2333,2332,-1,1418,1667,982,-1,1418,1666,1667,-1,2461,2308,984,-1,2461,2307,2308,-1,1642,2841,1641,-1,1642,2309,2841,-1,2750,1504,2386,-1,2750,2751,1504,-1,2424,2756,1284,-1,2424,2753,2756,-1,1566,2923,2833,-1,1566,2761,2923,-1,2437,1294,1100,-1,2437,2924,1294,-1,1121,1264,1119,-1,1121,1265,1264,-1,2426,1116,1483,-1,2426,2425,1116,-1,1527,1128,863,-1,1128,1527,1721,-1,1695,2482,846,-1,1695,1506,2482,-1,2363,1131,1130,-1,1131,2363,2389,-1,2362,1100,1102,-1,1100,2362,2436,-1,1111,1121,1120,-1,1111,1491,1121,-1,2365,1567,1274,-1,1567,2365,1126,-1,1557,2438,1558,-1,1557,2439,2438,-1,1106,1497,1107,-1,1106,1262,1497,-1,1256,2440,2834,-1,2440,1256,2441,-1,1546,1157,1149,-1,1157,1546,1545,-1,2838,1546,1161,-1,2838,1547,1546,-1,1153,2838,1151,-1,1547,2838,1153,-1,2373,1154,1158,-1,1154,2373,1148,-1,2370,814,1183,-1,814,2370,815,-1,1334,1178,1180,-1,1334,2374,1178,-1,2433,1188,1533,-1,1188,2433,2431,-1,1190,2764,1209,-1,1190,1189,2764,-1,1195,2378,1537,-1,2837,2378,1195,-1,1535,1194,1197,-1,1535,2765,1194,-1,1196,1528,1212,-1,1196,1432,1528,-1,1538,2431,2763,-1,1538,1539,2431,-1,2432,2763,1235,-1,1538,2763,2432,-1,1329,1214,1216,-1,1328,1214,1329,-1,832,805,804,-1,805,832,834,-1,1217,1477,1281,-1,1477,1217,1219,-1,2397,1141,2396,-1,1459,1141,2397,-1,1335,1228,1422,-1,1335,1227,1228,-1,1514,1401,1384,-1,1514,1402,1401,-1,818,823,827,-1,818,1165,823,-1,1168,1347,1447,-1,1347,1168,1373,-1,1275,1484,1263,-1,2833,1484,1275,-1,2351,2316,1580,-1,2351,2447,2316,-1,2474,988,2711,-1,989,988,2474,-1,2427,1181,2428,-1,2427,1182,1181,-1,1521,1692,1259,-1,1521,1523,1692,-1,920,2309,921,-1,920,2841,2309,-1,2289,1675,1713,-1,2289,2712,1675,-1,2486,859,1712,-1,2486,860,859,-1,1715,850,1113,-1,1715,851,850,-1,2441,1571,1570,-1,2759,1571,2441,-1,2759,2758,1571,-1,2872,2772,2648,-1,2772,2872,2773,-1,2714,880,1696,-1,2714,2851,880,-1,2390,2839,2760,-1,1556,2839,2390,-1,2839,1556,1558,-1,2652,2773,2872,-1,2773,2652,2391,-1,1266,2392,1267,-1,2392,1266,2774,-1,2925,2755,1565,-1,2840,2755,2925,-1,1278,1116,1115,-1,1278,1483,1116,-1,1278,1277,1483,-1,1562,2776,1559,-1,2780,2776,1562,-1,2840,2779,2754,-1,2840,2925,2779,-1,1482,1276,2365,-1,1482,1277,1276,-1,2775,2278,1278,-1,2775,1478,2278,-1,1303,2365,1276,-1,1302,2365,1303,-1,1567,1284,1568,-1,1284,1567,1285,-1,1474,2366,1475,-1,1474,2367,2366,-1,1117,1472,1103,-1,1117,1288,1472,-1,1291,829,1102,-1,2782,829,1291,-1,1293,772,1470,-1,772,1293,1296,-1,1302,1298,1126,-1,1302,1468,1298,-1,1734,1220,1223,-1,1734,1221,1220,-1,809,829,1310,-1,830,829,809,-1,1308,1525,1469,-1,1525,1308,1143,-1,1320,2423,1319,-1,1320,1322,2423,-1,1325,1320,1458,-1,1325,1323,1320,-1,1551,2423,1552,-1,1551,1317,2423,-1,779,1455,824,-1,1134,1455,779,-1,1326,2783,1327,-1,2783,1326,1552,-1,1402,2,2125,-1,1402,1354,2,-1,2400,1345,1344,-1,1345,2400,1442,-1,1348,1443,1346,-1,1348,1510,1443,-1,1348,1351,2785,-1,1348,1352,1351,-1,1436,2785,2405,-1,1436,2420,2785,-1,2117,2404,1437,-1,2404,2117,2116,-1,1358,1429,1357,-1,1429,1358,1138,-1,2418,1436,1359,-1,2119,1436,2418,-1,1515,1535,1534,-1,1535,1515,2375,-1,1530,1529,1206,-1,1366,1529,1530,-1,1427,762,761,-1,1427,1361,762,-1,1081,2918,2727,-1,1081,2919,2918,-1,998,991,1637,-1,998,992,991,-1,1062,952,1416,-1,1062,2444,952,-1,965,1383,1382,-1,965,960,1383,-1,1383,1411,1381,-1,1411,1383,2829,-1,1369,1414,1367,-1,1369,2412,1414,-1,2349,1600,1608,-1,2349,1601,1600,-1,2790,1407,2407,-1,2790,2791,1407,-1,2790,2827,2792,-1,2790,2789,2827,-1,2767,2412,1369,-1,2413,2412,2767,-1,2828,2796,2797,-1,2796,2828,2793,-1,2464,968,1398,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=21 */
		private int[] getfrontal_Geo_5_121_coordIndex_21()
		{
			int[] value = {2459,968,2464,-1,2823,2796,2795,-1,2796,2823,2798,-1,1385,1388,1387,-1,1385,1400,1388,-1,2825,1390,2808,-1,1390,2825,1389,-1,2801,2826,2799,-1,2801,2804,2826,-1,2804,2815,2802,-1,2804,2801,2815,-1,2808,2812,2806,-1,2808,1390,2812,-1,2822,2409,1399,-1,2409,2822,2811,-1,2698,2809,2699,-1,2698,2814,2809,-1,2817,2700,2701,-1,2700,2817,2807,-1,1644,2702,2276,-1,2702,1644,2803,-1,1271,750,2818,-1,1271,1270,750,-1,2276,2819,970,-1,2276,2274,2819,-1,2803,2820,2702,-1,2820,2803,2802,-1,2807,2821,2700,-1,2821,2807,2806,-1,2699,2811,1395,-1,2699,2809,2811,-1,2812,1391,2814,-1,1390,1391,2812,-1,2801,2817,2815,-1,2801,2800,2817,-1,1644,2460,1639,-1,1644,987,2460,-1,1398,2804,1638,-1,2804,1398,2826,-1,2823,2808,2805,-1,2808,2823,2825,-1,1400,2810,1388,-1,2409,2810,1400,-1,1400,1384,1401,-1,1385,1384,1400,-1,2795,2825,2823,-1,2795,2824,2825,-1,2826,968,967,-1,968,2826,1398,-1,1626,2797,967,-1,2797,1626,2828,-1,2827,1387,2824,-1,1387,2827,2408,-1,1424,1341,1403,-1,1425,1341,1424,-1,2408,2789,2794,-1,2789,2408,2827,-1,1404,2828,1626,-1,1404,1406,2828,-1,1596,2791,1406,-1,2791,1596,1407,-1,1409,2407,1407,-1,2407,1409,1381,-1,2917,1599,2728,-1,1599,2917,1045,-1,2829,1414,1411,-1,1414,2829,1415,-1,962,2829,1383,-1,962,1652,2829,-1,2917,2447,1046,-1,2918,2447,2917,-1,1343,1445,2399,-1,2422,1445,1343,-1,1164,1553,764,-1,1164,1166,1553,-1,1365,1430,1203,-1,1431,1430,1365,-1,1434,1428,1435,-1,1428,1434,30,-1,1428,1357,1429,-1,1428,30,1357,-1,1510,2785,2420,-1,1510,1348,2785,-1,1443,2402,1444,-1,1511,2402,1443,-1,1346,1442,2400,-1,1346,1443,1442,-1,2422,1342,1445,-1,2422,36,1342,-1,2783,1218,1327,-1,2398,1218,2783,-1,1133,1456,1134,-1,1456,1133,1460,-1,773,2492,774,-1,1733,2492,773,-1,1469,1524,2832,-1,1469,1525,1524,-1,1735,1221,1734,-1,1735,1306,1221,-1,2832,1470,1469,-1,1470,2832,1293,-1,1298,1297,1295,-1,1298,1301,1297,-1,828,1102,829,-1,2281,1102,828,-1,2924,1560,1286,-1,2924,2437,1560,-1,1285,2924,1286,-1,1125,2924,1285,-1,2277,1478,1477,-1,2277,2278,1478,-1,1272,1283,1481,-1,1272,1279,1283,-1,1459,1551,2371,-1,1459,1317,1551,-1,2925,2761,2779,-1,2925,2923,2761,-1,1252,1573,2435,-1,1573,1252,2394,-1,865,950,2291,-1,865,1656,950,-1,1481,1266,634,-1,1266,1481,2778,-1,1564,2925,1565,-1,2925,1564,2923,-1,1110,1573,2394,-1,1110,1109,1573,-1,1254,1490,1710,-1,1490,1254,2291,-1,2774,1114,2392,-1,1114,2774,1115,-1,2391,635,1267,-1,2391,2652,635,-1,1558,1132,2839,-1,1558,1498,1132,-1,1558,2438,1498,-1,837,1527,835,-1,1527,837,873,-1,841,1085,1500,-1,841,843,1085,-1,2773,2834,2772,-1,2834,2773,1496,-1,2758,2389,1571,-1,2758,2388,2389,-1,1693,1691,2489,-1,1692,1691,1693,-1,2440,1569,857,-1,2440,1570,1569,-1,1714,1712,857,-1,1714,2289,1712,-1,860,2311,861,-1,860,926,2311,-1,1691,1523,1020,-1,1523,1691,1692,-1,984,2711,988,-1,984,2308,2711,-1,2770,2416,2713,-1,2416,2770,2417,-1,1373,1348,1347,-1,1352,1348,1373,-1,2381,1376,1519,-1,1420,1376,2381,-1,1237,825,1238,-1,1237,826,825,-1,1232,2399,1446,-1,2399,1232,1450,-1,2381,1542,1421,-1,1542,2381,1173,-1,1021,2744,1019,-1,2744,1021,2455,-1,1222,1466,1220,-1,1222,1526,1466,-1,1369,1424,1403,-1,1368,1424,1369,-1,2383,1530,1206,-1,2383,2377,1530,-1,1198,1194,1212,-1,1197,1194,1198,-1,1513,1537,544,-1,1537,1513,1512,-1,1517,1189,1518,-1,2764,1189,1517,-1,1540,1538,2432,-1,1540,1186,1538,-1,1210,1515,2376,-1,1515,1210,2375,-1,1176,1172,1334,-1,1172,1176,1175,-1,1450,2382,1426,-1,1450,1448,2382,-1,1160,1146,1161,-1,1160,2372,1146,-1,1161,1147,2838,-1,1146,1147,1161,-1,1545,1153,1544,-1,1545,1547,1153,-1,850,1571,1112,-1,850,1569,1571,-1,2319,947,1488,-1,947,2319,948,-1,1255,1555,2364,-1,1495,1555,1255,-1,947,1489,1488,-1,947,1268,1489,-1,863,1106,1108,-1,1106,863,1129,-1,1274,1482,2365,-1,1274,1273,1482,-1,1131,2839,1132,-1,1131,2388,2839,-1,1105,2366,1118,-1,1105,1563,2366,-1,1125,1294,2924,-1,1294,1125,1127,-1,2833,1564,1484,-1,1564,2833,2923,-1,1486,2754,2752,-1,2754,1486,2840,-1,2781,1562,1563,-1,2781,2780,1562,-1,2766,2741,2740,-1,1522,2741,2766,-1,1522,2380,2741,-1,1462,787,795,-1,788,787,1462,-1,2410,2416,2330,-1,2768,2416,2410,-1,1249,2442,1095,-1,1249,2600,2442,-1,2443,2386,2385,-1,2443,2750,2386,-1,1094,1502,1095,-1,1094,1503,1502,-1,2361,2471,2327,-1,2361,2470,2471,-1,2309,2462,923,-1,2309,1642,2462,-1,2328,2310,977,-1,2328,1668,2310,-1,2926,1006,1634,-1,2926,2745,1006,-1,913,995,1672,-1,913,1001,995,-1,994,1672,995,-1,994,1673,1672,-1,912,1001,913,-1,912,2332,1001,-1,1633,2926,1634,-1,1633,2922,2926,-1,2842,2707,2719,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=22 */
		private int[] getfrontal_Geo_5_121_coordIndex_22()
		{
			int[] value = {2842,2706,2707,-1,1008,2306,2335,-1,1008,2709,2306,-1,2475,1630,2720,-1,2475,1685,1630,-1,1016,898,2742,-1,898,1016,2476,-1,1013,2301,2704,-1,1375,2301,1013,-1,2300,2457,2456,-1,2300,2299,2457,-1,901,1015,1624,-1,901,900,1015,-1,890,2740,2741,-1,890,2481,2740,-1,895,1030,1029,-1,895,894,1030,-1,2725,2315,1040,-1,2315,2725,2714,-1,2734,2453,1614,-1,2734,2851,2453,-1,1605,1579,2846,-1,1032,1579,1605,-1,886,1028,2454,-1,886,2482,1028,-1,2714,2453,2851,-1,2453,2714,2725,-1,2735,1612,2920,-1,2735,2313,1612,-1,2847,2846,2733,-1,1605,2846,2847,-1,2347,874,2449,-1,2347,2850,874,-1,2787,1702,2848,-1,2787,931,1702,-1,2316,1704,1079,-1,1704,2316,2919,-1,811,1602,812,-1,811,1606,1602,-1,1662,1055,940,-1,1056,1055,1662,-1,2320,2730,2319,-1,2320,2415,2730,-1,2354,1582,2293,-1,2354,1054,1582,-1,945,1051,1058,-1,1051,945,1661,-1,1054,2359,1582,-1,1053,2359,1054,-1,2715,1071,2358,-1,2715,2716,1071,-1,1655,1377,1069,-1,955,1377,1655,-1,1591,951,1657,-1,1591,1590,951,-1,1588,2323,1589,-1,1588,1587,2323,-1,1059,1050,1595,-1,1059,1048,1050,-1,1412,1595,1050,-1,1412,1594,1595,-1,1598,2728,1599,-1,1598,2448,2728,-1,2347,2452,1616,-1,2452,2347,2449,-1,2452,1610,1616,-1,1611,1610,2452,-1,1404,2721,1405,-1,1404,1617,2721,-1,1613,2920,1612,-1,1613,2921,2920,-1,1649,1023,2341,-1,1023,1649,2766,-1,1605,1034,1036,-1,1605,2847,1034,-1,2338,2454,1027,-1,2340,2454,2338,-1,1026,1033,1618,-1,1026,1025,1033,-1,1612,2721,2345,-1,2721,1612,2723,-1,2459,1629,2458,-1,2459,2718,1629,-1,2836,2456,2337,-1,2836,2844,2456,-1,2717,1393,1640,-1,1393,2717,1576,-1,2771,2330,2417,-1,2330,2771,2331,-1,993,1000,991,-1,993,995,1000,-1,990,2768,2410,-1,990,989,2768,-1,986,2329,2461,-1,978,2329,986,-1,975,981,976,-1,975,1418,981,-1,973,971,974,-1,973,1648,971,-1,963,1382,1380,-1,963,965,1382,-1,1651,1068,1067,-1,1650,1068,1651,-1,959,1585,1240,-1,959,1586,1585,-1,2322,2292,1653,-1,2292,2322,2849,-1,2393,2320,1488,-1,2731,2320,2393,-1,2919,1080,1704,-1,2919,1081,1080,-1,1700,2429,2297,-1,2850,2429,1700,-1,2307,2841,920,-1,2748,2841,2307,-1,914,1574,2747,-1,914,918,1574,-1,2472,915,1674,-1,2472,2290,915,-1,1679,2922,2305,-1,1679,2926,2922,-1,2710,1681,1680,-1,2709,1681,2710,-1,1681,2926,1679,-1,2745,2926,1681,-1,2707,905,2475,-1,2707,1687,905,-1,1682,2708,1686,-1,2708,1682,2306,-1,2301,902,2478,-1,2301,1718,902,-1,893,887,894,-1,893,2286,887,-1,1698,877,842,-1,1697,877,1698,-1,842,2732,843,-1,878,2732,842,-1,930,2491,1701,-1,930,2466,2491,-1,836,813,837,-1,836,1080,813,-1,1492,1706,864,-1,1584,1706,1492,-1,1268,1707,1269,-1,947,1707,1268,-1,1243,1289,1244,-1,1290,1289,1243,-1,858,915,856,-1,916,915,858,-1,847,903,2287,-1,896,903,847,-1,845,2286,2285,-1,887,2286,845,-1,828,806,1723,-1,828,830,806,-1,1725,784,2927,-1,1724,784,1725,-1,2280,1729,1508,-1,800,1729,2280,-1,765,784,1731,-1,765,2927,784,-1,765,1725,2927,-1,2494,1725,765,-1,2278,2492,1276,-1,2278,774,2492,-1,1304,2492,1733,-1,1304,1303,2492,-1,1457,775,1458,-1,775,1457,1732,-1,638,1397,2818,-1,638,1738,1397,-1,2274,2195,2600,-1,2275,2195,2274,-1,2816,2852,2820,-1,2915,2852,2816,-1,2813,2853,2821,-1,2916,2853,2813,-1,2273,2854,1395,-1,2697,2854,2273,-1,2855,2697,2861,-1,2854,2697,2855,-1,2916,2856,2853,-1,2916,1740,2856,-1,2915,2857,2852,-1,2915,2859,2857,-1,2913,2859,2858,-1,2913,2857,2859,-1,1740,2914,2856,-1,1739,2914,1740,-1,2855,2860,2688,-1,2860,2855,2861,-1,1739,2912,2914,-1,1739,740,2912,-1,1973,2858,2683,-1,2913,2858,1973,-1,386,1973,387,-1,386,1974,1973,-1,2912,2679,2686,-1,2678,2679,2912,-1,2646,1743,1858,-1,2646,1744,1743,-1,2862,741,1744,-1,741,2862,739,-1,2684,2496,2682,-1,2684,2677,2496,-1,2862,736,2680,-1,1747,736,2862,-1,722,2672,2674,-1,724,2672,722,-1,1993,733,2272,-1,1993,1994,733,-1,1751,440,439,-1,1751,2221,440,-1,364,2201,362,-1,364,1980,2201,-1,2612,1932,2614,-1,2612,2907,1932,-1,1761,590,589,-1,1760,590,1761,-1,1872,2510,2064,-1,1872,1871,2510,-1,75,2864,2261,-1,2864,75,1874,-1,713,1771,463,-1,1771,713,2863,-1,1762,716,2264,-1,717,716,1762,-1,2668,2666,2667,-1,2668,1774,2666,-1,10,2865,11,-1,2865,10,2863,-1,2265,1777,1776,-1,1777,2265,2092,-1,2665,1855,2865,-1,2665,1854,1855,-1,712,1779,700,-1,1779,712,1855,-1,1780,709,1788,-1,1780,1779,709,-1,702,705,1781,-1,702,1787,705,-1,697,2237,695,-1,697,2238,2237,-1,679,2911,579,-1,2911,679,2260,-1,672,685,2258,-1,672,686,685,-1,2642,677,682,-1,2642,2260,677,-1,2642,2911,2260,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=23 */
		private int[] getfrontal_Geo_5_121_coordIndex_23()
		{
			int[] value = {682,1799,2259,-1,682,2505,1799,-1,669,2866,2060,-1,669,580,2866,-1,587,2255,588,-1,2255,587,1807,-1,494,2640,654,-1,494,2230,2640,-1,2640,1817,654,-1,1817,2640,1907,-1,2643,1798,2258,-1,2643,2259,1798,-1,651,2869,2507,-1,651,2638,2869,-1,2524,496,2231,-1,1826,496,2524,-1,324,2046,2515,-1,324,323,2046,-1,633,647,634,-1,2658,647,633,-1,2869,487,486,-1,2638,487,2869,-1,2524,226,1826,-1,2524,1921,226,-1,2249,225,224,-1,2515,225,2249,-1,2227,2653,1831,-1,2226,2653,2227,-1,629,630,1915,-1,630,629,631,-1,481,1831,502,-1,2227,1831,481,-1,2248,1833,2871,-1,1836,1833,2248,-1,1908,628,1835,-1,1908,2873,628,-1,2509,2159,1905,-1,2509,1902,2159,-1,251,2160,2575,-1,2162,2160,251,-1,1931,2055,2163,-1,1931,2056,2055,-1,2641,2871,2647,-1,2248,2871,2641,-1,1840,2876,2523,-1,1840,1839,2876,-1,2568,258,2165,-1,258,2568,259,-1,2522,1918,217,-1,2522,1919,1918,-1,219,218,217,-1,219,2572,218,-1,2170,2047,861,-1,2170,299,2047,-1,2246,2568,2605,-1,259,2568,2246,-1,2900,357,356,-1,2900,290,357,-1,1755,2595,2596,-1,1757,2595,1755,-1,710,2267,708,-1,2267,710,2263,-1,133,589,134,-1,589,133,1761,-1,599,604,606,-1,599,601,604,-1,1861,725,721,-1,1861,596,725,-1,1783,1880,1784,-1,1881,1880,1783,-1,398,2225,2224,-1,398,397,2225,-1,656,1813,654,-1,1813,656,2657,-1,1766,534,1765,-1,1766,535,534,-1,533,551,549,-1,551,533,532,-1,539,597,2242,-1,539,1878,597,-1,2239,1868,2882,-1,2239,2516,1868,-1,691,1863,719,-1,2238,1863,691,-1,595,696,695,-1,595,594,696,-1,2066,2240,1870,-1,2065,2240,2066,-1,513,520,1891,-1,1895,520,513,-1,2644,1893,2236,-1,1893,2644,517,-1,1886,2521,2236,-1,1886,1885,2521,-1,1894,2520,1887,-1,2520,1894,518,-1,479,1840,2523,-1,1840,479,478,-1,2163,2576,201,-1,2576,2163,2247,-1,500,1915,498,-1,500,2650,1915,-1,1834,2228,2227,-1,2508,2228,1834,-1,1824,1909,2524,-1,1910,1909,1824,-1,623,1917,2875,-1,622,1917,623,-1,475,636,1828,-1,475,637,636,-1,2159,1904,1905,-1,2159,2057,1904,-1,2250,2232,642,-1,2233,2232,2250,-1,1839,2873,2876,-1,2873,1839,2651,-1,495,2231,496,-1,495,491,2231,-1,2230,493,2229,-1,2230,494,493,-1,1825,2870,1823,-1,2870,1825,2867,-1,2879,2910,2877,-1,2879,2222,2910,-1,2634,352,351,-1,2634,291,352,-1,290,2198,357,-1,290,289,2198,-1,2012,730,729,-1,2012,2559,730,-1,2543,277,2018,-1,2543,2542,277,-1,1982,2017,2561,-1,1981,2017,1982,-1,1980,367,1981,-1,1980,1983,367,-1,2906,2202,376,-1,2906,270,2202,-1,2897,2180,2901,-1,2898,2180,2897,-1,281,378,617,-1,281,280,378,-1,381,2181,382,-1,381,2022,2181,-1,2645,264,2887,-1,2645,2177,264,-1,2627,2880,2881,-1,2880,2627,2626,-1,260,2889,2888,-1,2889,260,2206,-1,2604,2027,391,-1,2604,2023,2027,-1,2035,2538,2540,-1,2035,2175,2538,-1,2176,1964,2028,-1,1964,2176,396,-1,2002,2531,2675,-1,2002,306,2531,-1,2213,2599,2513,-1,2533,2599,2213,-1,2174,2537,2895,-1,2173,2537,2174,-1,728,2037,1758,-1,728,727,2037,-1,2210,2040,2039,-1,2210,2209,2040,-1,2537,2009,408,-1,2009,2537,2173,-1,2894,2174,2895,-1,2894,2891,2174,-1,2213,2512,2211,-1,2213,2513,2512,-1,2532,306,308,-1,2532,2531,306,-1,1948,2907,2612,-1,1948,2557,2907,-1,2067,2675,2909,-1,2067,2002,2675,-1,431,310,1946,-1,431,312,310,-1,1998,2892,236,-1,1997,2892,1998,-1,2618,2554,2190,-1,2554,2618,2908,-1,1945,317,319,-1,1945,2617,317,-1,1944,314,2892,-1,1944,1956,314,-1,2171,1935,1999,-1,433,1935,2171,-1,2550,1936,327,-1,2550,1937,1936,-1,1996,442,320,-1,442,1996,443,-1,732,1751,439,-1,732,322,1751,-1,334,325,2271,-1,334,2500,325,-1,446,331,2616,-1,446,445,331,-1,1754,2908,425,-1,2270,2908,1754,-1,438,423,2615,-1,438,2499,423,-1,1947,427,429,-1,2528,427,1947,-1,1945,2615,2617,-1,1945,438,2615,-1,2529,1954,1953,-1,2529,2214,1954,-1,2909,416,415,-1,2909,2675,416,-1,2610,413,412,-1,2610,2608,413,-1,2497,420,2530,-1,2497,1953,420,-1,2607,406,2210,-1,2607,2534,406,-1,404,342,341,-1,342,404,2536,-1,1964,398,1965,-1,1964,396,398,-1,2535,2893,2536,-1,2535,2624,2893,-1,2887,1969,2645,-1,2887,2603,1969,-1,388,1972,1974,-1,388,1976,1972,-1,373,744,380,-1,373,372,744,-1,383,2898,2896,-1,382,2898,383,-1,2204,384,383,-1,2203,384,2204,-1,2269,2889,2206,-1,2269,2886,2889,-1,2899,464,369,-1,464,2899,465,-1,2899,364,363,-1,369,364,2899,-1,1986,358,2199,-1,2200,358,1986,-1,2199,2197,348,-1,2199,1987,2197,-1,355,349,348,-1,355,354,349,-1,2194,2275,2192,-1,2194,2195,2275,-1,1975,2191,1972,-1,2205,2191,1975,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=24 */
		private int[] getfrontal_Geo_5_121_coordIndex_24()
		{
			int[] value = {323,1995,234,-1,2553,1995,323,-1,2891,2041,2174,-1,254,2041,2891,-1,2014,288,282,-1,288,2014,289,-1,290,2592,283,-1,290,2900,2592,-1,270,2166,271,-1,270,2562,2166,-1,2888,263,260,-1,2885,263,2888,-1,206,265,2566,-1,206,208,265,-1,2880,261,269,-1,2626,261,2880,-1,2027,2024,1841,-1,2024,2027,2023,-1,2569,2056,1931,-1,2569,2625,2056,-1,2526,2161,2162,-1,2161,2526,2004,-1,1827,2221,1752,-1,1827,2619,2221,-1,2169,296,220,-1,2169,2011,296,-1,273,2167,2049,-1,2167,273,271,-1,2591,2050,2052,-1,2591,2649,2050,-1,2052,2522,2167,-1,2051,2522,2052,-1,2038,197,2058,-1,197,2038,198,-1,2161,194,2160,-1,194,2161,195,-1,2630,2517,2897,-1,2630,616,2517,-1,602,604,1879,-1,602,605,604,-1,246,2069,1837,-1,246,2067,2069,-1,173,2577,2156,-1,173,2061,2577,-1,2081,2155,162,-1,2075,2155,2081,-1,2085,1923,1924,-1,1923,2085,1801,-1,664,587,2086,-1,1808,587,664,-1,2150,2504,2902,-1,2150,506,2504,-1,82,2099,116,-1,2099,82,2147,-1,2590,2581,2148,-1,2590,124,2581,-1,2149,2589,119,-1,2589,2149,114,-1,2146,2103,102,-1,2146,2104,2103,-1,105,2588,93,-1,2588,105,98,-1,96,2105,97,-1,2105,96,2101,-1,66,100,79,-1,66,2106,100,-1,78,84,2582,-1,85,84,78,-1,89,88,83,-1,87,88,89,-1,2587,2112,2147,-1,2112,2587,2142,-1,2111,1207,566,-1,1207,2111,2098,-1,2127,46,2139,-1,47,46,2127,-1,2411,2822,1399,-1,2586,2822,2411,-1,1436,2403,2420,-1,1436,2118,2403,-1,38,33,2120,-1,33,38,34,-1,42,39,2138,-1,2584,39,42,-1,38,2138,39,-1,38,2121,2138,-1,1353,2136,2,-1,2584,2136,1353,-1,2128,2139,43,-1,2127,2139,2128,-1,46,2419,28,-1,31,2419,46,-1,2116,2904,2404,-1,2904,2116,2130,-1,19,2132,22,-1,2132,19,2134,-1,19,2137,20,-1,15,2137,19,-1,2667,24,2502,-1,2667,2666,24,-1,2129,2404,2904,-1,2129,2124,2404,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getfrontal_Geo_5_121_normalIndex_1()
		{
			int[] value = {1377,1323,1107,-1,884,713,674,-1,2352,1495,1267,-1,1095,2134,1627,-1,753,1103,1355,-1,1355,698,753,-1,1183,927,1075,-1,227,1431,1404,-1,394,753,698,-1,927,1184,1075,-1,1258,1404,1440,-1,1122,874,922,-1,574,325,656,-1,874,1122,995,-1,1430,1333,1581,-1,1581,1853,1833,-1,1366,1428,1285,-1,2352,1561,1780,-1,198,355,199,-1,991,929,656,-1,1517,1832,1471,-1,1435,1549,1517,-1,1616,1335,1363,-1,1952,1024,1392,-1,987,468,1211,-1,677,26,164,-1,1392,1933,2065,-1,987,1578,1439,-1,2268,1636,1112,-1,1435,751,1897,-1,968,1900,1364,-1,1141,1832,1549,-1,899,1473,662,-1,1375,2140,1585,-1,1521,1505,2010,-1,1060,1521,1289,-1,2086,2140,2259,-1,1757,1894,2010,-1,1736,1165,2064,-1,263,612,697,-1,456,662,1106,-1,164,13,341,-1,1219,1050,456,-1,697,758,798,-1,1441,2275,2271,-1,2144,2251,1968,-1,2322,2243,2686,-1,2259,2140,2368,-1,1632,2275,1203,-1,2916,2236,2141,-1,1451,1441,2271,-1,2130,1806,2243,-1,2275,2100,2251,-1,1784,1518,2126,-1,765,902,928,-1,1422,2059,2044,-1,1222,1062,1142,-1,1062,1070,1012,-1,1706,1003,1816,-1,1160,1681,1597,-1,1160,1383,1138,-1,2142,1706,1916,-1,2062,1551,1615,-1,2115,1359,1802,-1,928,1149,906,-1,1422,791,962,-1,921,1256,1412,-1,1389,1572,1164,-1,780,1098,913,-1,1256,1572,1389,-1,1799,1722,2115,-1,766,793,711,-1,599,181,540,-1,1880,1461,1846,-1,667,440,379,-1,2063,1192,1162,-1,793,956,962,-1,2187,1856,1384,-1,956,1856,1896,-1,150,171,142,-1,217,178,192,-1,288,311,253,-1,420,446,421,-1,416,582,409,-1,596,643,598,-1,604,702,593,-1,679,747,702,-1,757,747,759,-1,1028,945,1025,-1,1180,1345,1167,-1,146,142,126,-1,96,76,203,-1,63,181,56,-1,1775,2656,2544,-1,181,859,2316,-1,63,1625,859,-1,1671,1261,2705,-1,39,1261,1671,-1,163,103,223,-1,1990,1936,223,-1,142,171,1745,-1,1688,334,1705,-1,1193,178,1522,-1,1694,194,1703,-1,310,1569,1535,-1,253,1901,1733,-1,409,520,492,-1,666,593,1195,-1,652,604,1266,-1,649,529,235,-1,671,1078,383,-1,640,905,1269,-1,915,1079,1269,-1,915,888,1040,-1,1079,1262,1793,-1,660,803,380,-1,979,972,1146,-1,1161,646,777,-1,985,1536,1088,-1,659,976,992,-1,821,1413,1408,-1,322,813,1329,-1,1444,1857,1408,-1,1146,1413,821,-1,1162,322,1329,-1,1867,1535,2555,-1,1901,2638,2587,-1,2478,1708,2637,-1,1990,2576,2644,-1,1982,2763,2602,-1,2705,2113,2220,-1,1671,2705,2541,-1,2408,1630,2416,-1,859,2457,2417,-1,2235,1533,1723,-1,2255,859,2417,-1,2016,2544,2346,-1,2656,2676,2241,-1,2187,2016,2387,-1,2693,2859,2762,-1,2426,2633,2863,-1,2875,2804,2752,-1,2754,2716,2723,-1,1442,2110,1839,-1,2110,2878,2214,-1,1950,1821,1827,-1,2257,1391,2011,-1,2011,1884,1944,-1,1732,1368,1829,-1,2058,2057,2153,-1,2025,2095,2102,-1,2502,1824,2228,-1,2491,2131,1864,-1,2413,2301,2566,-1,2462,2504,1460,-1,2413,2831,2462,-1,1838,2215,2475,-1,2832,2835,2210,-1,2508,2832,2210,-1,2534,2473,2537,-1,2477,2460,2030,-1,2460,2538,1979,-1,2819,2824,2807,-1,1964,2040,2593,-1,2534,2672,2611,-1,2698,2780,2807,-1,2728,2774,2716,-1,2909,2664,2683,-1,2889,2801,2821,-1,2716,2754,2704,-1,2745,2748,2711,-1,2837,2779,2800,-1,2819,1966,2201,-1,2800,2811,2858,-1,2862,2877,2808,-1,2903,2904,2862,-1,2569,2498,2888,-1,2840,2438,2913,-1,2623,2374,2915,-1,2394,2132,2925,-1,2572,2377,2927,-1,2726,2689,2658,-1,2426,2744,2237,-1,2355,1774,2397,-1,2387,2016,2128,-1,809,1982,2867,-1,158,1982,809,-1,1698,2528,2743,-1,1201,1081,1674,-1,1867,2048,1535,-1,2512,2194,2404,-1,2413,2232,2096,-1,1986,1599,1784,-1,947,801,1438,-1,801,633,606,-1,210,298,104,-1,320,298,210,-1,514,490,680,-1,787,1031,1008,-1,836,748,754,-1,479,591,570,-1,226,335,297,-1,294,464,301,-1,50,145,132,-1,686,794,508,-1,1036,1008,1094,-1,1558,2121,1742,-1,1764,2076,1885,-1,284,1782,2463,-1,2066,1453,2706,-1,1090,1941,1653,-1,2564,1941,1871,-1,2018,2512,2518,-1,885,1449,1221,-1,2509,1449,2530,-1,1340,2378,2286,-1,2444,1599,1986,-1,71,346,653,-1,280,958,351,-1,1880,1067,1411,-1,535,1067,515,-1,1,83,42,-1,1452,2260,2114,-1,1556,1568,1910,-1,1047,1556,1691,-1,1426,1047,1541,-1,1396,1426,1737,-1,1024,1308,1396,-1,1537,1360,1260,-1,808,2630,2273,-1,1421,729,36,-1,1714,1228,1308,-1,1742,2121,1782,-1,36,112,350,-1,241,85,71,-1,1117,515,1347,-1,623,366,1113,-1,1621,1639,1152,-1,1682,1570,1454,-1,1093,762,590,-1,1890,1594,1642,-1,2444,2550,2750,-1,2456,2361,2098,-1,2907,2809,2823,-1,444,71,583,-1,842,6,23,-1,1209,1831,1880,-1,74,32,774,-1,2187,1855,1896,-1,948,1006,1282,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getfrontal_Geo_5_121_normalIndex_2()
		{
			int[] value = {1775,276,349,-1,844,2016,276,-1,349,1873,1367,-1,1401,1729,2341,-1,1162,2205,2474,-1,76,95,145,-1,897,829,925,-1,847,784,416,-1,1008,1031,1094,-1,648,624,508,-1,320,404,298,-1,545,362,367,-1,1701,1492,1491,-1,55,48,39,-1,2367,2729,2922,-1,635,737,579,-1,1042,1142,1092,-1,2428,2922,2599,-1,2818,2183,1504,-1,547,442,631,-1,295,525,246,-1,606,419,441,-1,1664,1668,1448,-1,947,1448,1124,-1,1539,1954,1681,-1,1681,1248,1539,-1,1641,2062,1615,-1,1898,1890,1642,-1,1225,1197,954,-1,1225,1174,1570,-1,772,879,893,-1,867,1003,855,-1,1190,1131,867,-1,1131,1153,1169,-1,1190,1349,1084,-1,667,379,278,-1,1356,986,1033,-1,1076,1338,1152,-1,1035,1338,1076,-1,1639,1280,1153,-1,1639,1504,2183,-1,1340,1091,539,-1,2229,2509,2634,-1,2536,2765,2650,-1,731,885,1221,-1,731,1221,1043,-1,1075,900,800,-1,1906,2021,1718,-1,1045,569,417,-1,1121,1115,1291,-1,1718,1602,1440,-1,1184,1181,1075,-1,2127,2404,2194,-1,975,677,1392,-1,2813,2273,2630,-1,2789,2901,2463,-1,2194,2258,1885,-1,1205,417,539,-1,2543,2884,2738,-1,2671,2761,2917,-1,2750,2634,2509,-1,2361,2574,2634,-1,1674,575,2407,-1,1884,1337,901,-1,2676,2685,1873,-1,2632,2572,2874,-1,2783,2703,2669,-1,2661,2698,2573,-1,2485,2335,2347,-1,2135,2021,2221,-1,2197,2150,2181,-1,1455,1239,1328,-1,1492,2729,1494,-1,641,1415,1246,-1,971,1416,741,-1,1116,1154,1255,-1,687,858,953,-1,2639,2679,2535,-1,2440,2160,2045,-1,1415,641,1168,-1,1249,1371,1498,-1,1320,1724,1459,-1,1264,1946,993,-1,1826,2545,2639,-1,1731,1931,1633,-1,2440,2480,1997,-1,741,1604,971,-1,1424,1612,1633,-1,1998,1967,1808,-1,1769,1574,1529,-1,1773,1783,1883,-1,2149,2046,1604,-1,2149,1246,1415,-1,2149,1883,1783,-1,1198,1143,756,-1,2170,2174,2350,-1,2085,2162,2107,-1,1967,2013,2053,-1,470,1545,1200,-1,2906,2195,2667,-1,1179,2379,2308,-1,2647,1101,1761,-1,2449,1631,2109,-1,2902,2379,2920,-1,2226,1969,2074,-1,2174,2107,1974,-1,2263,2248,2247,-1,2778,2758,2749,-1,2613,2643,2641,-1,2615,2621,2626,-1,2517,2452,2533,-1,2290,2343,2357,-1,2139,2182,2129,-1,2081,2027,2037,-1,1923,1995,2007,-1,1487,1649,1486,-1,2802,2787,2803,-1,2846,2860,1385,-1,2894,1614,1288,-1,1254,1252,2735,-1,682,1272,1606,-1,2621,1357,1253,-1,2001,1038,434,-1,1038,2001,2680,-1,2324,1100,2617,-1,1927,2517,2533,-1,2515,2517,1927,-1,2515,2513,2540,-1,1985,2521,2503,-1,2688,2161,1878,-1,2339,2410,2697,-1,2329,1687,1937,-1,2331,2329,1937,-1,2336,2339,2697,-1,1362,2284,1869,-1,1204,1886,1697,-1,1903,1702,2424,-1,1903,2424,2067,-1,2327,1957,2026,-1,2026,2276,2288,-1,1970,1988,1972,-1,2359,1972,1959,-1,1418,2154,1661,-1,2606,2154,2433,-1,2154,1418,1877,-1,1447,775,503,-1,639,1254,1277,-1,639,458,1254,-1,116,1087,1381,-1,951,357,234,-1,951,1018,165,-1,236,820,449,-1,1343,608,530,-1,1232,696,225,-1,538,1385,2073,-1,676,2073,618,-1,344,455,484,-1,58,167,47,-1,16,0,52,-1,572,562,700,-1,1237,1281,1234,-1,868,1763,1238,-1,1555,1102,1526,-1,1011,1002,1009,-1,1061,1643,926,-1,1600,1119,959,-1,1001,959,1119,-1,1226,1057,990,-1,828,681,694,-1,433,445,704,-1,1063,681,678,-1,693,839,1114,-1,389,1506,526,-1,478,25,98,-1,98,718,526,-1,572,602,467,-1,562,572,462,-1,459,989,113,-1,398,661,480,-1,113,111,459,-1,105,40,365,-1,308,338,269,-1,168,233,261,-1,213,168,261,-1,131,129,269,-1,864,804,109,-1,124,37,102,-1,485,100,268,-1,573,481,87,-1,45,54,88,-1,45,38,14,-1,4,3,30,-1,3,4,537,-1,9,499,565,-1,14,138,259,-1,14,259,500,-1,717,537,4,-1,4,7,505,-1,415,560,0,-1,125,167,390,-1,125,266,244,-1,318,272,475,-1,272,191,475,-1,752,455,240,-1,455,709,853,-1,853,895,455,-1,466,8,9,-1,2790,1087,1290,-1,1213,443,345,-1,1836,1862,2625,-1,864,1297,804,-1,472,289,427,-1,1601,247,1073,-1,782,1324,454,-1,708,782,454,-1,12,389,693,-1,427,767,672,-1,2256,1973,2125,-1,2792,2785,2571,-1,2773,2822,2883,-1,2713,2727,2659,-1,2139,2253,2254,-1,1875,1861,1999,-1,2523,2571,2465,-1,2663,2695,2619,-1,1919,2084,2209,-1,2305,2168,2015,-1,2787,2722,2725,-1,2581,2511,2549,-1,2045,1993,1841,-1,1361,822,849,-1,46,472,43,-1,2195,1544,472,-1,2000,1876,1344,-1,1243,329,849,-1,1171,672,827,-1,2489,2302,1870,-1,487,81,568,-1,1528,249,184,-1,1085,1870,2302,-1,359,184,410,-1,2302,2730,2311,-1,81,249,93,-1,184,249,51,-1,427,672,1171,-1,2234,2495,1409,-1,1378,1948,1509,-1,414,108,614,-1,447,1509,1613,-1,1227,1887,1029,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getfrontal_Geo_5_121_normalIndex_3()
		{
			int[] value = {564,1748,1911,-1,1104,1866,1761,-1,2714,1818,2753,-1,1845,1608,1046,-1,2830,2668,2836,-1,1852,1112,1650,-1,1399,1403,1953,-1,1868,2580,2439,-1,2439,1812,1852,-1,468,1112,1812,-1,1530,1650,2005,-1,2317,615,292,-1,1544,2753,2886,-1,1578,1228,1609,-1,2667,1243,822,-1,2578,2886,2753,-1,2482,2853,2668,-1,1837,2580,2318,-1,2714,2039,1818,-1,1372,1511,1583,-1,1713,1882,1804,-1,1055,1199,1014,-1,1371,1056,1055,-1,597,1567,740,-1,578,484,830,-1,21,106,141,-1,106,21,122,-1,75,34,141,-1,2338,2853,2482,-1,2920,2109,2902,-1,1104,1761,1101,-1,2898,2852,2163,-1,1108,744,1044,-1,1899,1633,1931,-1,2584,2654,1178,-1,920,2090,2654,-1,1601,1073,2584,-1,1229,1567,597,-1,483,726,1788,-1,2782,2834,2850,-1,2101,2038,2031,-1,2521,2147,2087,-1,2581,2527,2446,-1,2674,2773,2725,-1,2400,2563,2575,-1,1263,1446,1491,-1,2883,2873,2887,-1,200,563,5,-1,2196,2300,2360,-1,1905,2022,1850,-1,120,642,1504,-1,1207,1240,517,-1,2476,2414,2635,-1,2523,2330,2496,-1,2520,2746,2350,-1,2350,2247,2654,-1,1532,1973,1520,-1,1520,1307,1532,-1,2104,2015,1803,-1,1498,1305,1590,-1,1689,1300,1053,-1,1053,1249,1405,-1,2082,1915,1797,-1,1320,848,1334,-1,1041,1344,889,-1,1676,2053,1779,-1,1987,1825,2049,-1,1860,1676,1820,-1,1987,2049,2156,-1,1929,2206,2171,-1,2105,2171,2071,-1,1648,1771,1617,-1,1908,1804,1882,-1,2679,2639,2545,-1,1992,1787,1727,-1,1874,2163,1892,-1,1787,1882,1713,-1,1504,1301,764,-1,2435,1887,1622,-1,34,360,326,-1,1029,381,206,-1,1227,1029,414,-1,1911,1748,2218,-1,1188,773,1066,-1,2190,2562,2385,-1,1835,1830,1684,-1,1833,1881,1548,-1,1352,1655,1416,-1,1188,1175,963,-1,469,333,130,-1,159,512,289,-1,1109,1082,767,-1,2578,1818,2418,-1,1369,1837,1547,-1,1046,1608,1818,-1,2806,2317,2138,-1,822,1361,672,-1,205,435,474,-1,75,140,34,-1,264,363,360,-1,1948,1378,1815,-1,157,701,467,-1,873,744,1108,-1,0,16,415,-1,627,513,318,-1,20,16,65,-1,144,77,90,-1,626,592,518,-1,601,860,795,-1,1097,795,1128,-1,736,783,634,-1,1435,1517,1455,-1,1469,1646,1455,-1,642,1499,1504,-1,783,736,750,-1,1111,861,790,-1,773,817,654,-1,270,209,238,-1,189,114,121,-1,262,144,154,-1,121,57,53,-1,205,221,162,-1,58,52,378,-1,247,256,1073,-1,1643,1061,2034,-1,531,1297,864,-1,710,195,581,-1,326,360,195,-1,264,360,34,-1,205,75,399,-1,625,399,690,-1,2435,2562,1854,-1,767,1082,1059,-1,159,289,472,-1,615,147,22,-1,2143,2389,1112,-1,1591,1463,1537,-1,457,838,751,-1,806,767,512,-1,1191,1496,1548,-1,1172,1514,1214,-1,1881,1514,1548,-1,1581,1066,1853,-1,2208,1811,2035,-1,1066,399,869,-1,303,869,399,-1,1853,1881,1833,-1,1509,1948,2051,-1,381,290,115,-1,548,1854,2190,-1,974,1678,1598,-1,2647,1874,1583,-1,1504,1372,1301,-1,1713,1207,1301,-1,1989,1899,1993,-1,1902,1940,2156,-1,1617,1771,1882,-1,1939,1872,2105,-1,2206,1929,2118,-1,1987,1940,1994,-1,1676,1654,1847,-1,1987,1860,1820,-1,1825,1876,2000,-1,1286,1397,1676,-1,1334,848,1014,-1,1332,1051,889,-1,1778,1300,1659,-1,1312,1559,1332,-1,1249,1498,1590,-1,2015,2168,1689,-1,1973,2256,2104,-1,1520,1803,1590,-1,2247,2248,1587,-1,2604,2337,2746,-1,2731,2539,2645,-1,1721,1739,1240,-1,764,1207,517,-1,5,563,642,-1,2645,2724,2736,-1,5,331,1492,-1,2091,2055,2022,-1,2563,2370,2405,-1,2770,2724,2663,-1,2659,2727,2720,-1,1242,2882,2893,-1,2720,2608,2659,-1,2787,2883,2866,-1,2084,2023,2287,-1,2002,2031,1925,-1,2031,2002,2101,-1,2629,2549,2532,-1,2586,2615,2561,-1,1468,726,497,-1,497,336,1817,-1,1817,336,451,-1,1631,2449,2545,-1,2371,1862,1297,-1,2247,920,2654,-1,618,2746,2584,-1,2320,2045,1841,-1,1633,1899,2036,-1,2248,1089,1587,-1,1811,1637,1645,-1,1463,2020,1464,-1,654,817,645,-1,1530,2005,2594,-1,1211,1812,1202,-1,1837,1369,2439,-1,2578,2848,2891,-1,399,106,303,-1,744,873,710,-1,447,891,981,-1,851,260,476,-1,1876,1512,1327,-1,889,1051,778,-1,1820,1397,1512,-1,2759,2787,2778,-1,399,625,435,-1,1837,1675,1537,-1,2308,2039,2714,-1,43,1544,2177,-1,2389,2005,1650,-1,2926,2653,2806,-1,838,1636,751,-1,1369,1547,1618,-1,1461,1452,663,-1,1650,1530,1852,-1,1508,1304,1704,-1,663,1452,1457,-1,1734,1845,1538,-1,2891,2830,2926,-1,2418,1845,2384,-1,2594,2005,2653,-1,2853,2338,2279,-1,614,1227,414,-1,981,1378,1509,-1,412,1613,326,-1,108,414,206,-1,1613,2051,1748,-1,359,410,427,-1,340,1085,375,-1,1010,1849,1318,-1,519,283,51,-1,249,1528,878,-1,519,1361,283,-1,1992,1942,1912,-1,2195,472,1243,-1,22,46,43,-1,1059,858,1187,-1,329,1243,410,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getfrontal_Geo_5_121_normalIndex_4()
		{
			int[] value = {1179,822,1409,-1,1848,1945,2002,-1,2472,2136,2448,-1,2792,2782,2868,-1,2731,2640,2481,-1,2614,2539,2699,-1,2370,2348,2461,-1,2351,2366,2314,-1,2472,2287,2136,-1,2608,2575,2619,-1,2106,2120,2213,-1,2446,2409,2343,-1,2719,2713,2695,-1,2366,2305,2414,-1,2724,2645,2539,-1,2288,2276,2152,-1,1044,1974,1996,-1,693,526,832,-1,512,427,289,-1,1433,1100,887,-1,1862,1836,1752,-1,116,405,1087,-1,1614,449,372,-1,2119,960,2769,-1,550,494,585,-1,491,799,550,-1,475,627,318,-1,167,342,293,-1,330,138,14,-1,9,89,499,-1,30,3,57,-1,66,54,29,-1,189,176,156,-1,114,118,91,-1,149,407,422,-1,118,128,68,-1,804,978,109,-1,92,128,149,-1,180,182,222,-1,176,216,228,-1,107,37,688,-1,268,100,15,-1,155,202,216,-1,148,233,123,-1,260,402,317,-1,896,983,338,-1,109,102,123,-1,907,965,480,-1,459,111,907,-1,461,402,400,-1,97,426,724,-1,94,97,724,-1,460,373,718,-1,98,526,478,-1,1507,431,478,-1,634,526,373,-1,839,445,1114,-1,1127,433,704,-1,834,911,828,-1,876,875,781,-1,1226,990,1119,-1,1061,926,1009,-1,673,926,1580,-1,1130,1002,1126,-1,719,818,1237,-1,1696,1234,1977,-1,402,368,400,-1,378,52,0,-1,125,272,62,-1,62,64,72,-1,494,484,455,-1,387,920,746,-1,2073,676,522,-1,1331,411,696,-1,482,2073,522,-1,1343,530,523,-1,396,715,236,-1,820,236,715,-1,165,1018,960,-1,357,951,285,-1,1252,458,291,-1,1661,2606,1788,-1,1571,1796,2313,-1,2313,2359,2381,-1,1096,1418,1515,-1,1588,1571,2111,-1,2359,2313,1796,-1,2276,2026,1794,-1,2276,1794,1445,-1,1957,2327,1638,-1,1975,1961,1970,-1,1150,1702,1886,-1,1886,1903,2037,-1,2027,2032,1697,-1,2117,2028,1690,-1,2274,2631,2558,-1,1317,2284,1362,-1,2167,2278,2283,-1,1557,2415,1651,-1,2450,2421,2526,-1,2521,1985,2147,-1,2515,2540,2161,-1,2582,1862,2371,-1,1038,2680,1224,-1,1398,2618,1433,-1,2733,1272,1257,-1,2751,1760,1447,-1,2596,1277,1254,-1,1273,1213,2790,-1,2710,2764,1018,-1,2803,2764,2710,-1,1614,2894,2887,-1,1614,1306,236,-1,1385,2860,2864,-1,2073,2864,2746,-1,387,1178,2090,-1,2746,2864,2872,-1,2850,2833,2727,-1,2790,2787,2802,-1,1629,1772,1785,-1,1995,1923,1924,-1,2184,2169,2167,-1,2184,2254,2230,-1,2230,2332,2345,-1,2290,2342,2339,-1,2357,2521,2526,-1,2452,2517,2515,-1,2617,2641,2680,-1,2751,2715,2735,-1,2758,2778,2790,-1,1089,2263,1974,-1,1089,744,1587,-1,1996,2107,2162,-1,1763,868,1788,-1,2449,2495,2234,-1,1461,1046,1101,-1,2746,2337,2388,-1,2170,2186,2174,-1,1236,1147,814,-1,1667,1529,1574,-1,1998,1883,2078,-1,1424,1574,1783,-1,1465,1529,2036,-1,1108,1996,2078,-1,2160,1997,1751,-1,1769,1255,971,-1,1731,1860,1931,-1,2440,2767,2480,-1,1320,1459,1132,-1,1014,993,778,-1,1797,1573,1778,-1,1370,1300,1778,-1,1132,1939,2071,-1,1586,1573,1334,-1,1041,1844,1344,-1,891,1415,981,-1,1962,2045,2160,-1,1116,756,953,-1,741,1416,1168,-1,1452,1461,2260,-1,1499,2294,1504,-1,2150,2197,2301,-1,2133,1843,1823,-1,2070,2335,2133,-1,2347,2309,2423,-1,2652,2897,2683,-1,2396,2531,2669,-1,2854,2859,2863,-1,2589,2693,2762,-1,1896,1856,2187,-1,2709,1723,1644,-1,2522,2908,2927,-1,1310,2108,2165,-1,2407,2718,2760,-1,2358,2224,2098,-1,2634,2750,2358,-1,2917,2738,2884,-1,2912,2630,2403,-1,1,808,630,-1,630,110,1,-1,110,975,691,-1,1113,1616,1547,-1,350,84,515,-1,2019,2194,1888,-1,2646,2404,2519,-1,2628,2552,2425,-1,1851,1602,1718,-1,1619,1744,1518,-1,1355,1103,1048,-1,1140,703,900,-1,2072,2242,1906,-1,2543,2148,2660,-1,1740,1582,1328,-1,1048,800,1120,-1,1115,731,705,-1,1564,1449,952,-1,2765,2828,2650,-1,1735,1328,1239,-1,1589,1583,1035,-1,1621,1504,1639,-1,1639,1762,1280,-1,1125,902,948,-1,1013,1099,1033,-1,1153,1131,1190,-1,1070,1003,867,-1,805,732,590,-1,1013,893,943,-1,1251,1225,950,-1,1118,1174,1049,-1,1682,1197,1225,-1,1641,1916,2062,-1,2047,1642,1658,-1,1539,1458,1596,-1,923,1248,754,-1,947,1124,706,-1,1394,1448,1668,-1,599,606,441,-1,132,370,226,-1,295,190,282,-1,295,175,301,-1,335,282,439,-1,533,619,525,-1,1725,1244,1762,-1,2818,2428,2183,-1,2818,2367,2922,-1,63,56,78,-1,2922,2729,1492,-1,545,367,438,-1,211,201,177,-1,203,76,214,-1,1692,44,1766,-1,404,320,362,-1,103,41,48,-1,1284,1524,1393,-1,648,916,846,-1,1054,925,1036,-1,192,334,179,-1,424,536,553,-1,607,644,605,-1,2269,2918,2501,-1,2501,2402,1468,-1,493,1356,1163,-1,1081,575,1674,-1,2016,685,276,-1,181,2316,349,-1,1099,898,620,-1,921,1125,1282,-1,1856,684,1384,-1,1342,1140,1322,-1,903,1463,1464,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getfrontal_Geo_5_121_normalIndex_5()
		{
			int[] value = {2135,2291,2296,-1,351,958,1429,-1,350,112,35,-1,2543,2660,2825,-1,2650,2707,2180,-1,1986,2044,2550,-1,2672,2553,2083,-1,2611,2551,2470,-1,583,1365,1210,-1,1260,1113,1547,-1,219,890,621,-1,1421,2885,2403,-1,2219,630,2273,-1,2219,975,630,-1,280,80,1,-1,350,1117,169,-1,1547,1616,1618,-1,1426,1396,1335,-1,970,1568,1556,-1,1396,1737,1392,-1,241,83,1,-1,35,83,215,-1,1347,1067,1880,-1,169,1117,219,-1,1072,1831,1209,-1,1564,2444,2530,-1,2286,2378,2809,-1,2788,2326,2707,-1,952,1599,1564,-1,1558,1742,440,-1,1546,1542,2258,-1,2747,2648,2879,-1,2844,2706,2879,-1,617,204,577,-1,2747,2497,2518,-1,1058,1871,577,-1,1453,2497,2747,-1,2382,2890,2879,-1,204,437,1058,-1,2258,1542,2099,-1,2088,2603,1782,-1,762,1624,934,-1,2463,2885,1421,-1,2463,2901,2885,-1,1611,2648,2088,-1,898,1099,948,-1,424,353,388,-1,208,146,197,-1,754,561,628,-1,787,722,846,-1,237,274,309,-1,370,419,471,-1,197,48,152,-1,588,561,635,-1,686,489,545,-1,192,170,217,-1,825,935,807,-1,599,801,606,-1,271,220,237,-1,132,135,419,-1,1077,1572,1354,-1,1938,2108,1310,-1,2568,1652,2146,-1,2146,2008,2474,-1,2685,1367,1873,-1,2463,2518,2512,-1,2201,1201,1674,-1,1081,1110,302,-1,2492,1745,2588,-1,1920,142,1698,-1,2915,2469,2623,-1,2068,2225,2486,-1,2397,1774,2068,-1,2689,2666,2804,-1,2547,2752,2804,-1,2547,2636,2752,-1,2921,2924,2266,-1,2312,2394,2925,-1,2438,2673,2910,-1,2847,2888,2498,-1,2913,2915,2840,-1,2132,2401,2924,-1,2921,2919,2896,-1,2838,2814,2841,-1,2910,2881,2913,-1,2216,2266,2924,-1,2855,2858,2811,-1,2524,2429,2851,-1,2429,2742,2851,-1,2897,2909,2683,-1,2728,2683,2774,-1,2698,2661,2780,-1,2760,2201,2050,-1,2799,2798,2662,-1,2670,2718,2306,-1,2698,2760,2670,-1,2593,2620,2662,-1,2542,2470,2551,-1,1960,2477,2816,-1,2364,2375,2471,-1,2334,2364,2468,-1,2413,2566,2215,-1,2899,2504,2462,-1,2232,2413,2548,-1,2911,2131,2232,-1,2265,1926,2691,-1,2491,2502,2228,-1,2265,2102,2238,-1,1319,1930,1938,-1,2025,1956,2058,-1,1983,1829,1368,-1,2011,1337,1884,-1,1391,1311,2011,-1,1710,1884,1839,-1,2483,1620,2214,-1,1821,1884,1710,-1,2200,2197,2181,-1,2839,2875,2880,-1,2875,2632,2880,-1,2762,2456,2589,-1,1625,2488,2398,-1,859,1625,2398,-1,2583,1656,632,-1,2644,2763,1990,-1,2696,2576,1626,-1,1626,1920,2696,-1,1688,1705,2295,-1,1705,2478,2295,-1,2432,1522,1770,-1,611,1840,2048,-1,1707,2794,2453,-1,813,322,555,-1,1329,813,1407,-1,557,992,580,-1,955,979,976,-1,646,910,647,-1,910,609,647,-1,516,1040,866,-1,1262,1079,1040,-1,1079,1749,1269,-1,650,1603,1078,-1,657,235,600,-1,802,1016,605,-1,1278,607,1016,-1,529,598,235,-1,1068,769,245,-1,432,957,1004,-1,1023,420,421,-1,1023,421,423,-1,403,1023,1186,-1,311,315,1840,-1,253,311,940,-1,1901,940,2493,-1,1607,307,1707,-1,1694,2250,1358,-1,334,192,1705,-1,1261,31,1656,-1,1533,78,82,-1,146,126,103,-1,1330,1487,1486,-1,945,1028,933,-1,915,852,888,-1,749,788,797,-1,595,643,582,-1,446,420,403,-1,514,551,446,-1,307,313,300,-1,286,314,288,-1,171,150,179,-1,684,669,685,-1,766,669,956,-1,980,707,857,-1,1474,23,6,-1,493,6,842,-1,32,1209,1846,-1,1742,621,556,-1,745,17,284,-1,1423,2467,1753,-1,1259,954,930,-1,796,883,711,-1,554,766,540,-1,2172,2252,1802,-1,1231,1098,919,-1,791,1422,1666,-1,1666,1299,780,-1,930,913,1098,-1,1256,1282,1354,-1,1795,1412,1527,-1,1666,2126,2012,-1,765,906,473,-1,1354,1006,1173,-1,620,278,379,-1,1916,1706,1816,-1,1597,1681,1889,-1,1976,1015,855,-1,1222,1615,1551,-1,1594,1596,1458,-1,1422,1986,1784,-1,928,902,1125,-1,898,765,506,-1,2252,2172,1980,-1,1768,1805,1980,-1,2126,1518,1744,-1,1422,2292,1666,-1,2100,2130,2657,-1,1235,1842,1451,-1,1525,1141,2064,-1,1897,2236,2916,-1,1233,1632,1439,-1,2100,1632,2368,-1,1756,1806,2130,-1,2322,2657,2243,-1,2271,2275,2144,-1,871,862,263,-1,1562,1933,477,-1,1562,1133,944,-1,968,13,164,-1,1562,944,1387,-1,1219,1212,758,-1,1050,1219,2064,-1,1757,2080,2017,-1,2064,1219,758,-1,2010,833,1050,-1,1233,1476,2086,-1,2017,1351,1757,-1,1060,1476,1074,-1,1375,1289,1155,-1,1106,662,1473,-1,1435,2427,1549,-1,1897,751,1636,-1,1578,1609,1233,-1,1952,1392,2065,-1,968,26,677,-1,164,1392,677,-1,1714,1609,1228,-1,1308,1024,1952,-1,1618,1363,1202,-1,1364,1517,1471,-1,1852,1812,1112,-1,884,1026,999,-1,937,806,785,-1,1366,1893,2395,-1,469,574,865,-1,1550,1730,1893,-1,1581,1333,1285,-1,1323,1071,1107,-1,713,469,826,-1,929,865,574,-1,1005,430,865,-1,2395,2445,2352,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getfrontal_Geo_5_121_normalIndex_6()
		{
			int[] value = {964,1026,674,-1,1326,1122,922,-1,874,355,198,-1,60,1095,1184,-1,1502,1404,1431,-1,60,316,1258,-1,394,60,927,-1,753,394,1183,-1,800,1048,1075,-1,1718,1440,1404,-1,1276,1323,1377,-1,1443,1377,1107,-1,1833,1496,1550,-1,1355,1390,698,-1,1906,1718,1502,-1,1183,1103,753,-1,1183,394,927,-1,1258,1095,60,-1,1048,1103,1183,-1,1502,1718,1404,-1,1184,927,60,-1,198,922,874,-1,964,674,199,-1,2352,2390,2395,-1,991,922,936,-1,865,929,1005,-1,574,656,929,-1,469,325,574,-1,1893,1430,1550,-1,865,826,469,-1,198,936,922,-1,999,973,699,-1,1471,1165,1364,-1,1165,1471,1525,-1,1202,1369,1618,-1,1714,1074,1476,-1,164,477,1392,-1,677,1900,968,-1,2065,1473,1952,-1,1578,1233,1439,-1,1636,2268,1897,-1,1387,944,862,-1,1050,833,456,-1,1375,1585,1289,-1,1060,2086,1476,-1,1351,1268,1757,-1,1233,2086,2259,-1,1050,2080,2010,-1,758,1736,2064,-1,899,881,1505,-1,2080,1921,2017,-1,2064,1728,1050,-1,758,1212,798,-1,164,26,968,-1,1133,1562,477,-1,341,697,239,-1,263,798,871,-1,1756,2369,1806,-1,1451,2141,2236,-1,2100,2275,1632,-1,1233,2259,1632,-1,1897,2268,2236,-1,1141,1316,2064,-1,1842,1235,1968,-1,1842,2141,1451,-1,2243,2560,2686,-1,2657,2251,2100,-1,2126,1744,2012,-1,1768,1980,1795,-1,1980,2076,2252,-1,1789,2164,1764,-1,506,620,898,-1,928,1125,921,-1,2292,2126,1666,-1,1784,2292,1422,-1,1017,1217,1042,-1,1976,855,1706,-1,1681,1954,1889,-1,1916,1816,2062,-1,379,1163,620,-1,1354,1282,1006,-1,765,473,506,-1,2012,1299,1666,-1,1422,1855,2059,-1,1527,1768,1795,-1,1572,1256,1354,-1,1098,1259,930,-1,1389,1527,1412,-1,1231,1164,1259,-1,1259,1098,1231,-1,1299,919,780,-1,1666,780,791,-1,1098,780,919,-1,1802,1754,2172,-1,1754,1503,2172,-1,766,786,540,-1,711,793,796,-1,1259,950,954,-1,1461,1880,2260,-1,556,440,1742,-1,1846,218,32,-1,842,1356,493,-1,6,556,1474,-1,2918,2146,2501,-1,956,793,766,-1,2187,1384,2016,-1,1856,669,684,-1,353,392,304,-1,208,243,217,-1,186,243,188,-1,315,314,310,-1,302,377,354,-1,582,594,520,-1,644,679,702,-1,852,945,933,-1,909,854,905,-1,870,933,910,-1,1345,1180,1346,-1,1413,1345,1408,-1,1543,1486,1468,-1,48,31,39,-1,95,76,56,-1,844,2544,2016,-1,1533,1625,78,-1,158,391,41,-1,334,1688,1423,-1,192,1708,1705,-1,1522,2158,1193,-1,1607,1680,949,-1,253,940,1901,-1,311,1840,611,-1,403,420,1023,-1,421,397,423,-1,432,416,957,-1,245,712,1068,-1,1177,529,649,-1,802,605,1427,-1,1016,607,605,-1,235,598,600,-1,651,759,660,-1,650,1395,1657,-1,516,1262,1040,-1,972,985,1088,-1,910,996,609,-1,835,1083,1279,-1,992,976,580,-1,1857,1309,1810,-1,813,1444,1407,-1,931,1408,1857,-1,2048,1798,611,-1,2432,2158,1522,-1,1920,2743,2696,-1,2576,1990,1626,-1,2763,1936,1990,-1,2328,1630,2408,-1,2235,1723,2709,-1,2398,2457,859,-1,859,2255,2316,-1,2486,2589,2456,-1,2875,2752,2632,-1,2927,2908,2874,-1,2375,2364,2233,-1,1685,1717,1719,-1,1192,2063,1716,-1,1839,1417,1442,-1,1950,1943,1944,-1,2011,1311,1337,-1,1368,2768,1983,-1,1983,1951,1829,-1,1930,1732,1984,-1,1930,1984,1938,-1,2025,2058,2095,-1,2691,2227,2265,-1,2911,1864,2131,-1,2413,1462,2548,-1,2341,2475,2197,-1,2831,2899,2462,-1,2413,2215,2831,-1,1729,1838,2341,-1,2299,2198,2334,-1,2334,2198,2192,-1,2470,2460,2473,-1,2166,2740,2334,-1,2817,2816,2477,-1,2593,2573,2620,-1,2670,2760,2718,-1,2760,2824,2201,-1,2827,2455,2664,-1,2458,2363,2842,-1,2876,2881,2841,-1,2888,2881,2910,-1,2925,2924,2895,-1,2132,2924,2925,-1,2441,2915,2374,-1,2793,2910,2673,-1,2438,2910,2913,-1,2401,2216,2924,-1,2921,2266,2436,-1,2377,2522,2927,-1,2666,2547,2804,-1,2689,2804,2658,-1,2355,2387,2451,-1,2068,2486,2397,-1,2016,2033,2128,-1,2915,2919,2469,-1,1644,2609,2709,-1,1982,2602,2867,-1,2201,1674,2050,-1,1688,2295,1423,-1,2512,2646,2463,-1,2146,2474,2568,-1,2008,1283,2474,-1,1938,1310,1319,-1,2548,2911,2232,-1,1077,1164,1572,-1,2298,2598,2627,-1,2194,2512,2258,-1,947,706,801,-1,419,370,132,-1,104,152,48,-1,203,220,271,-1,680,788,679,-1,1086,1069,941,-1,197,146,48,-1,603,706,610,-1,312,297,439,-1,846,1031,787,-1,923,754,628,-1,725,880,840,-1,948,902,898,-1,2088,2121,1611,-1,2603,2747,2518,-1,2463,1421,745,-1,1782,2518,2463,-1,1624,1064,934,-1,1782,2121,2088,-1,1058,577,204,-1,2382,2879,2459,-1,2747,2706,1453,-1,2382,2564,2890,-1,1090,617,577,-1,2844,2879,2890,-1,2879,2706,2747,-1,2258,2512,1546,-1,1558,440,667,-1,2273,2813,2219,-1,2707,2828,2788,-1,2809,2536,2286,-1,1564,2530,1449,-1,1091,1720,1859,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getfrontal_Geo_5_121_normalIndex_7()
		{
			int[] value = {2180,1859,2650,-1,2260,1577,2114,-1,219,10,169,-1,84,35,215,-1,80,241,1,-1,1392,1024,1396,-1,623,970,1556,-1,1335,542,1426,-1,1426,1541,1429,-1,110,280,1,-1,2403,729,1421,-1,621,17,219,-1,1260,1547,1537,-1,665,583,1210,-1,2315,2543,2500,-1,146,170,150,-1,1570,1174,1454,-1,1898,2047,2142,-1,1454,1064,1647,-1,2464,2672,2083,-1,1986,2550,2444,-1,2059,2187,2224,-1,2825,2884,2543,-1,35,84,350,-1,542,1113,366,-1,542,1616,1113,-1,1429,1541,351,-1,35,112,42,-1,1846,1461,1589,-1,1282,1256,921,-1,1099,620,1163,-1,1990,223,1626,-1,1775,844,276,-1,1873,349,2316,-1,1163,379,493,-1,1468,2269,2501,-1,2402,2205,1468,-1,313,347,377,-1,388,298,404,-1,1036,925,829,-1,1054,1019,925,-1,648,846,624,-1,48,146,103,-1,320,210,271,-1,1692,27,44,-1,203,271,210,-1,211,274,201,-1,438,570,545,-1,880,841,918,-1,1492,2599,2922,-1,201,282,190,-1,2818,2294,2367,-1,2428,1762,2183,-1,1725,1218,1244,-1,533,561,619,-1,295,282,175,-1,599,324,181,-1,684,685,1384,-1,1394,1124,1448,-1,1124,850,706,-1,923,1124,1248,-1,1539,1394,1458,-1,1410,1658,1642,-1,1681,1160,1303,-1,2047,1898,1642,-1,1641,1750,1916,-1,1225,1570,1682,-1,1118,1049,893,-1,950,1077,1251,-1,1049,943,893,-1,879,772,843,-1,1093,1624,762,-1,805,994,732,-1,1190,997,1153,-1,1033,772,1013,-1,1621,1152,1338,-1,1639,2183,1762,-1,218,1589,1035,-1,1735,1239,1932,-1,2828,2707,2650,-1,1449,885,952,-1,1206,1048,1120,-1,1735,1740,1328,-1,2543,2072,2148,-1,2072,2543,2242,-1,1355,1048,1206,-1,1619,1518,1321,-1,1627,1184,1095,-1,1718,2021,1851,-1,2628,2786,2552,-1,2646,2519,2789,-1,1888,1819,2019,-1,515,1117,350,-1,110,630,975,-1,1611,2121,2258,-1,2500,2738,2466,-1,2917,2761,2738,-1,2574,2671,2634,-1,1599,952,1134,-1,2231,2771,2468,-1,2187,2059,1855,-1,2522,2557,2908,-1,2426,2307,2633,-1,2908,2903,2862,-1,2849,2783,2839,-1,2652,2683,2728,-1,1315,1469,1455,-1,1470,1827,1695,-1,1470,1472,1827,-1,741,1168,641,-1,1962,1989,2045,-1,873,1415,891,-1,1879,1724,1800,-1,1872,1879,1908,-1,2071,1264,1132,-1,1370,1778,1586,-1,1573,1586,1778,-1,1014,1264,993,-1,1132,848,1320,-1,1605,814,1143,-1,971,1604,1769,-1,2160,1751,1962,-1,2036,1962,1751,-1,2078,1415,1108,-1,1751,1565,2036,-1,1529,1667,2036,-1,1773,1424,1783,-1,2046,1769,1604,-1,1883,2149,2078,-1,1574,1424,1667,-1,1236,1997,2480,-1,2746,2388,2350,-1,2186,2107,2174,-1,2647,1589,1101,-1,2545,2449,2234,-1,2125,2202,2337,-1,1996,1974,2107,-1,1044,1089,1974,-1,2778,2787,2790,-1,2516,2527,2624,-1,2643,2682,2641,-1,2430,2409,2452,-1,2430,2506,2503,-1,2357,2526,2421,-1,2289,2336,2329,-1,2230,2345,2261,-1,1772,1922,1785,-1,1923,1957,1971,-1,1785,1975,1796,-1,2866,2883,2894,-1,2792,2834,2782,-1,2892,2850,2846,-1,387,273,1178,-1,618,2073,2746,-1,2073,1385,2864,-1,1306,1614,2887,-1,2546,2866,2304,-1,2710,1018,951,-1,1273,2790,1290,-1,1213,2758,2790,-1,2739,1145,1606,-1,2680,1170,1224,-1,458,1252,1254,-1,2617,2001,2324,-1,2625,1434,1836,-1,2582,2625,1862,-1,2526,2087,2450,-1,2345,2267,1758,-1,2332,2282,1699,-1,2410,2285,2697,-1,1869,2261,2556,-1,2032,2293,1697,-1,1697,1886,2027,-1,1886,2037,2027,-1,1150,1886,1204,-1,2123,2274,2558,-1,1975,1970,1796,-1,1445,2152,2276,-1,1432,1961,1858,-1,1972,2277,1959,-1,2111,2009,1588,-1,2154,2606,1661,-1,1515,1588,1096,-1,2313,2111,1571,-1,1425,1661,1788,-1,1433,1080,384,-1,1170,287,789,-1,291,1760,1252,-1,1290,405,571,-1,327,165,960,-1,1306,776,396,-1,396,236,1306,-1,714,1242,544,-1,411,1331,358,-1,1232,1331,696,-1,387,746,819,-1,920,904,746,-1,920,744,550,-1,67,240,166,-1,318,513,64,-1,125,47,167,-1,216,176,207,-1,818,1526,1102,-1,453,49,719,-1,673,863,926,-1,1001,1126,1002,-1,1119,1600,1226,-1,911,823,678,-1,704,445,694,-1,678,823,224,-1,1501,723,2,-1,1506,478,526,-1,478,1506,1507,-1,460,718,1105,-1,597,460,1105,-1,636,426,1007,-1,907,480,459,-1,965,398,480,-1,281,261,233,-1,281,856,1158,-1,168,531,864,-1,308,233,364,-1,255,268,153,-1,250,268,15,-1,107,127,37,-1,242,255,153,-1,87,172,202,-1,193,134,182,-1,92,68,128,-1,978,102,109,-1,149,422,92,-1,53,65,121,-1,19,20,65,-1,436,369,38,-1,500,89,11,-1,565,305,9,-1,815,543,3,-1,560,378,0,-1,244,191,272,-1,183,513,695,-1,895,585,494,-1,799,920,550,-1,960,2119,61,-1,2769,2546,2119,-1,372,1288,1614,-1,405,1290,1087,-1,1297,1862,1752,-1,1145,337,1606,-1,1433,887,1080,-1,2606,1763,1788,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getfrontal_Geo_5_121_normalIndex_8()
		{
			int[] value = {782,336,1324,-1,512,767,427,-1,719,1237,1350,-1,672,1059,822,-1,1996,1108,1044,-1,1378,981,1168,-1,2125,1973,1532,-1,2303,2125,2330,-1,2629,2720,2822,-1,2629,2608,2720,-1,2484,2446,2253,-1,1919,2145,1945,-1,2175,2082,2168,-1,2370,2461,2405,-1,2539,2610,2699,-1,2731,2481,2499,-1,2868,2785,2792,-1,1891,1848,2002,-1,822,1059,1409,-1,1187,1409,1059,-1,510,22,43,-1,1243,2667,2195,-1,2195,2914,1544,-1,1992,2089,1942,-1,249,878,93,-1,51,487,519,-1,340,93,878,-1,1271,1000,427,-1,1085,1010,375,-1,359,427,1000,-1,1854,1887,2435,-1,206,21,108,-1,1613,1748,326,-1,534,1622,614,-1,1509,447,981,-1,2591,2853,2279,-1,2653,2845,2594,-1,1845,1046,1538,-1,2418,1608,1845,-1,2926,2870,2891,-1,816,663,1457,-1,1304,1868,1704,-1,1530,1704,1852,-1,1508,1704,1530,-1,838,2143,1636,-1,1818,2578,2753,-1,2926,2836,2653,-1,1650,1112,2389,-1,43,2177,510,-1,2714,2906,2308,-1,1537,1547,1837,-1,365,317,463,-1,851,386,260,-1,447,356,891,-1,290,381,845,-1,399,75,106,-1,2891,2815,2578,-1,2439,2580,1837,-1,2594,1508,1530,-1,2815,2891,2870,-1,1461,1101,1589,-1,2036,1667,1633,-1,1826,2320,1841,-1,2710,951,1381,-1,2090,1178,2654,-1,2584,1073,618,-1,1631,2545,1826,-1,1216,727,2176,-1,1817,1185,497,-1,1185,1468,497,-1,2289,2329,2331,-1,2399,2511,2383,-1,2596,2735,2749,-1,2002,1925,1891,-1,2287,2310,2084,-1,1576,1446,1683,-1,2866,2803,2787,-1,2608,2532,2575,-1,1242,2893,1287,-1,2850,2727,2717,-1,2770,2663,2781,-1,2563,2400,2370,-1,1492,200,5,-1,2872,2864,2860,-1,5,642,120,-1,764,517,120,-1,1207,1721,1240,-1,2645,2736,2635,-1,2699,2571,2785,-1,2330,2337,2496,-1,1305,1520,1590,-1,2104,1803,1973,-1,1689,1803,2015,-1,1249,1590,1405,-1,1312,1332,889,-1,1014,1199,1334,-1,1676,1779,1286,-1,2000,2049,1825,-1,1987,1820,1825,-1,1847,2053,1676,-1,1994,1860,1987,-1,2049,2089,2156,-1,1344,1844,2155,-1,2118,2340,2206,-1,1882,1958,1617,-1,1902,1841,1940,-1,1787,1372,1727,-1,1207,764,1301,-1,1583,1589,2647,-1,974,1598,1326,-1,548,2190,792,-1,381,115,206,-1,2051,1613,1509,-1,2218,1835,2239,-1,1853,2122,1881,-1,303,792,869,-1,1066,690,399,-1,1581,1188,1066,-1,1881,1741,1514,-1,1214,932,1172,-1,1191,1298,1496,-1,806,917,767,-1,751,974,457,-1,1636,2143,1112,-1,22,292,615,-1,159,472,46,-1,1059,672,767,-1,2562,2190,1854,-1,205,399,435,-1,264,34,140,-1,412,326,195,-1,363,578,360,-1,710,356,195,-1,531,2371,1297,-1,676,618,521,-1,240,455,344,-1,67,183,240,-1,378,342,58,-1,205,162,140,-1,262,229,144,-1,233,270,364,-1,601,452,592,-1,773,963,817,-1,1111,1166,861,-1,823,911,988,-1,1598,1678,1455,-1,1455,1646,1598,-1,200,1492,1494,-1,1455,1678,1435,-1,1111,1071,1215,-1,406,541,262,-1,67,72,64,-1,240,344,166,-1,1089,1044,744,-1,1232,225,1336,-1,16,382,415,-1,823,1663,763,-1,213,531,168,-1,710,581,830,-1,195,360,581,-1,75,205,140,-1,292,22,510,-1,2138,2926,2806,-1,1818,1104,1046,-1,2418,2848,2578,-1,767,917,1109,-1,159,408,512,-1,469,130,325,-1,1326,922,779,-1,1175,1107,963,-1,1223,932,1214,-1,1416,1293,1352,-1,1833,1548,1496,-1,2385,1909,2190,-1,773,690,1066,-1,1188,963,773,-1,2218,2435,1911,-1,1748,2051,2218,-1,1029,206,414,-1,34,326,564,-1,564,141,34,-1,1622,1911,2435,-1,1511,1372,1504,-1,1787,1713,1301,-1,1892,1727,1874,-1,1992,1727,1892,-1,2679,2545,2234,-1,1617,1834,1648,-1,1882,1771,1908,-1,1648,2105,1771,-1,2071,1939,2105,-1,2171,1834,1929,-1,1344,1876,1327,-1,2156,1940,1987,-1,1731,1654,1860,-1,1860,1654,1676,-1,1820,1676,1397,-1,2053,2013,1779,-1,1055,1051,1332,-1,1334,1573,1320,-1,1053,1405,1689,-1,1689,1659,1300,-1,1520,1973,1803,-1,1520,1305,1307,-1,2654,2520,2350,-1,2604,2496,2337,-1,2792,2604,2746,-1,2635,2687,2476,-1,1504,764,120,-1,1850,1800,1905,-1,2041,2092,2136,-1,1491,1492,1263,-1,2532,2608,2629,-1,2310,2287,2472,-1,1919,1945,1848,-1,2446,2484,2581,-1,2087,2526,2521,-1,2850,2717,2782,-1,1788,868,483,-1,2379,1466,1157,-1,287,1170,306,-1,2584,2052,1601,-1,1178,2052,2584,-1,2892,1232,1336,-1,1899,1931,1993,-1,2247,1587,920,-1,1101,1046,1104,-1,1538,1046,1386,-1,2914,2753,1544,-1,2439,1369,1812,-1,2240,2338,2482,-1,75,141,106,-1,122,303,106,-1,21,141,108,-1,1332,1371,1055,-1,2155,1844,2340,-1,1397,1286,1512,-1,1301,1372,1787,-1,1675,1837,2318,-1,2418,1818,1608,-1,2853,2845,2668,-1,2578,2815,2886,-1,822,1179,2667,-1,1578,1211,1228,-1,2886,2177,1544,-1,292,2138,2317,-1,1591,1537,1675,-1,468,1812,1211,-1,1852,1704,2439,-1,1704,1868,2439,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getfrontal_Geo_5_121_normalIndex_9()
		{
			int[] value = {1953,2318,1399,-1,2926,2830,2836,-1,2714,2753,2914,-1,1379,663,816,-1,1029,845,381,-1,564,326,1748,-1,1613,412,447,-1,108,534,614,-1,147,615,838,-1,2495,1179,1409,-1,1171,1271,427,-1,51,283,184,-1,81,51,249,-1,2311,1849,2302,-1,375,568,81,-1,184,359,1528,-1,487,51,81,-1,2489,2730,2302,-1,1243,849,822,-1,2000,1344,2155,-1,410,1243,472,-1,1544,43,472,-1,184,329,410,-1,849,283,1361,-1,2045,1989,1993,-1,2055,2207,2092,-1,2305,2366,2168,-1,2209,2145,1919,-1,2614,2616,2539,-1,2256,2333,2325,-1,2366,2351,2300,-1,2422,2246,2400,-1,2759,2735,2715,-1,2006,2103,2120,-1,2125,2337,2330,-1,2713,2659,2695,-1,2571,2523,2792,-1,454,1497,708,-1,1497,549,708,-1,427,410,472,-1,639,1277,1545,-1,1297,1752,804,-1,327,960,61,-1,319,1336,225,-1,305,466,9,-1,904,920,799,-1,895,494,455,-1,550,585,491,-1,752,709,455,-1,272,125,244,-1,125,390,266,-1,293,390,167,-1,505,675,4,-1,543,622,3,-1,11,14,500,-1,38,79,436,-1,9,11,89,-1,3,537,815,-1,8,7,29,-1,114,91,88,-1,45,14,11,-1,675,717,4,-1,68,70,118,-1,511,413,73,-1,185,511,73,-1,15,28,250,-1,250,202,155,-1,270,233,148,-1,864,109,168,-1,629,213,261,-1,364,338,308,-1,40,317,365,-1,463,395,365,-1,661,463,480,-1,187,760,602,-1,480,463,461,-1,735,602,739,-1,735,636,602,-1,1105,1229,597,-1,718,373,526,-1,478,431,25,-1,460,597,736,-1,389,526,693,-1,693,1114,12,-1,224,1063,678,-1,875,911,834,-1,998,911,875,-1,959,160,1600,-1,1643,1662,926,-1,1662,1580,926,-1,1061,1247,1102,-1,1350,453,719,-1,1061,1130,1247,-1,736,733,750,-1,47,90,58,-1,58,342,167,-1,484,166,344,-1,448,1385,538,-1,2073,482,538,-1,1288,372,2304,-1,449,1614,236,-1,951,165,285,-1,1381,951,234,-1,234,116,1381,-1,1182,1447,503,-1,887,1100,2324,-1,2324,1148,887,-1,137,1253,488,-1,2154,1877,2433,-1,1588,2009,1096,-1,1515,1418,1661,-1,1665,1096,1137,-1,2359,1959,2381,-1,1863,2094,1686,-1,2288,2327,2026,-1,1961,1975,1858,-1,1903,1886,1702,-1,1575,2284,1317,-1,2167,2283,2274,-1,2336,2697,2280,-1,2331,1937,2124,-1,2331,2124,1540,-1,2410,1776,2285,-1,2223,2688,1878,-1,1949,1985,2503,-1,2515,1927,2513,-1,1767,1927,2533,-1,1100,2612,2617,-1,2001,2617,2680,-1,1292,1357,1991,-1,775,1447,1760,-1,1254,2735,2596,-1,1277,2596,1545,-1,2546,2769,2866,-1,2846,1385,1331,-1,387,2090,920,-1,2850,2834,2872,-1,2894,2883,2887,-1,1486,1425,1468,-1,1629,1571,1588,-1,1772,1629,1628,-1,2007,2061,2026,-1,2079,2028,2032,-1,1995,2081,2007,-1,2254,2289,2230,-1,2344,2357,2421,-1,2516,2452,2409,-1,2561,2625,2582,-1,2613,2612,2618,-1,2690,2741,2739,-1,2690,2722,2715,-1,2527,2581,2624,-1,2263,1089,2248,-1,1587,744,920,-1,1974,2263,2174,-1,782,451,336,-1,2902,1466,2379,-1,2109,2920,2449,-1,1761,2898,2647,-1,1179,2495,2379,-1,1046,1461,663,-1,1967,2053,1808,-1,2186,2085,2107,-1,2388,2170,2350,-1,1465,1198,756,-1,1143,687,756,-1,2046,2149,1783,-1,2149,1415,2078,-1,2149,1604,1246,-1,1808,1773,1883,-1,1808,1883,1998,-1,1633,1667,1424,-1,1108,1415,873,-1,741,1246,1604,-1,1997,2160,2440,-1,1731,1633,1612,-1,1826,2639,2320,-1,778,1041,889,-1,778,993,1041,-1,1264,2071,1946,-1,1726,1915,1905,-1,1168,981,1415,-1,741,641,1246,-1,2045,2320,2440,-1,2767,2639,2535,-1,771,1159,1187,-1,953,756,687,-1,1116,953,1154,-1,971,1293,1416,-1,1328,1315,1455,-1,2025,2108,1938,-1,2221,2291,2135,-1,2721,2661,2694,-1,2814,2737,2808,-1,2669,2775,2783,-1,2871,2808,2877,-1,2874,2880,2632,-1,2744,2859,2693,-1,2486,2693,2589,-1,2316,2255,2419,-1,2050,1674,2407,-1,2750,2509,2530,-1,2917,2634,2671,-1,2500,2543,2738,-1,2543,2315,2242,-1,1205,811,417,-1,2194,1885,1888,-1,2463,2646,2789,-1,2630,2912,2813,-1,1392,691,975,-1,1463,1360,1537,-1,2194,2019,2127,-1,1634,1602,1851,-1,1184,1627,1181,-1,811,1045,417,-1,2242,2221,1906,-1,1906,2221,2021,-1,1075,1181,900,-1,1043,539,731,-1,2634,2823,2229,-1,2634,2917,2823,-1,539,1043,1340,-1,1621,1511,1504,-1,1639,1153,1152,-1,1035,1076,774,-1,1076,1152,946,-1,1356,842,986,-1,278,265,667,-1,1169,1012,1131,-1,1190,867,1349,-1,855,768,867,-1,1064,1624,1647,-1,893,1013,772,-1,1251,1173,1049,-1,1118,893,879,-1,954,950,1225,-1,1624,1907,2047,-1,1641,1615,1383,-1,1017,836,1138,-1,1596,1954,1539,-1,1681,1303,1248,-1,1668,1458,1394,-1,923,850,1124,-1,1438,1664,1448,-1,947,1438,1448,-1,554,276,685,-1,441,324,599,-1,324,135,181,-1,295,533,525,-1,547,376,442,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getfrontal_Geo_5_121_normalIndex_10()
		{
			int[] value = {1725,1762,2428,-1,1504,2294,2818,-1,2428,2818,2922,-1,1042,1092,918,-1,840,894,794,-1,1701,1491,1524,-1,152,258,197,-1,416,409,847,-1,145,214,76,-1,2474,2063,1162,-1,1474,556,1786,-1,1781,2642,2622,-1,1367,886,349,-1,349,886,1775,-1,1723,33,1644,-1,948,1282,1125,-1,1384,685,2016,-1,1880,1846,1209,-1,1880,1411,1563,-1,169,10,1421,-1,1616,542,1335,-1,444,583,665,-1,2823,2825,2907,-1,2444,2750,2530,-1,1401,2341,2191,-1,1890,1889,1594,-1,1890,1916,1750,-1,1153,1280,1169,-1,1511,1621,1583,-1,890,219,1117,-1,1113,1260,623,-1,241,71,444,-1,169,36,350,-1,1782,284,1742,-1,1714,1308,1952,-1,36,169,1421,-1,808,2273,630,-1,1737,1429,958,-1,1308,1335,1396,-1,1426,1429,1737,-1,1047,1691,1541,-1,1556,1910,1691,-1,1568,2112,1910,-1,1500,1452,2114,-1,1067,1210,1411,-1,83,35,42,-1,1067,1347,515,-1,351,85,280,-1,653,583,71,-1,1720,2286,2536,-1,2444,1564,1599,-1,2509,1221,1449,-1,1091,1205,539,-1,2518,2497,2018,-1,2564,1871,2597,-1,2018,1546,2512,-1,2844,2597,2066,-1,2844,2066,2706,-1,1611,2420,2648,-1,10,745,1421,-1,2463,745,284,-1,1885,1558,1764,-1,1782,2603,2518,-1,1558,1885,2121,-1,1036,1094,1054,-1,145,135,132,-1,294,301,175,-1,335,439,297,-1,438,479,570,-1,561,588,619,-1,648,508,794,-1,362,320,309,-1,807,824,720,-1,551,514,595,-1,220,212,237,-1,628,561,533,-1,282,201,439,-1,646,647,777,-1,1885,2258,2121,-1,1717,2214,1620,-1,2646,2512,2404,-1,2501,2146,1652,-1,1192,322,1162,-1,2048,1840,1535,-1,2595,1801,1358,-1,1201,1110,1081,-1,1920,1698,2743,-1,809,391,158,-1,2397,2387,2355,-1,2128,2451,2387,-1,2307,2490,2633,-1,2632,2752,2636,-1,2793,2600,2910,-1,2840,2915,2441,-1,2925,2895,2871,-1,2876,2861,2896,-1,2754,2737,2772,-1,2811,2814,2838,-1,2824,2819,2201,-1,2800,2858,2837,-1,2796,2734,2745,-1,2757,2842,2728,-1,2677,2692,2776,-1,2245,2889,2821,-1,2909,2827,2664,-1,2664,2677,2776,-1,2698,2620,2573,-1,2407,2760,2050,-1,2075,2649,1790,-1,2670,2649,2698,-1,2460,1979,2030,-1,2030,2817,2477,-1,2508,2299,1947,-1,2475,2341,1838,-1,2215,2566,2475,-1,2462,1460,1462,-1,2462,1462,2413,-1,2211,1467,2923,-1,2108,2227,2691,-1,2491,2228,2238,-1,2108,2025,2227,-1,1829,1984,1732,-1,1827,1951,1950,-1,2011,2069,2257,-1,2878,2483,2214,-1,2110,1442,2878,-1,2110,2214,1717,-1,1719,1270,969,-1,2570,2534,2537,-1,2874,2572,2927,-1,2658,2804,2865,-1,2863,2865,2854,-1,2456,2397,2486,-1,2656,2241,2264,-1,2016,2346,2323,-1,2323,2033,2016,-1,2235,2525,1533,-1,1533,2525,2579,-1,1766,2222,2393,-1,2705,2220,2541,-1,2157,1671,2541,-1,1982,1936,2763,-1,2528,1698,2365,-1,1193,2637,1708,-1,2642,1781,2137,-1,1901,2493,2638,-1,1162,1329,1543,-1,1146,821,576,-1,580,576,557,-1,1408,1407,1444,-1,1408,931,821,-1,576,580,1146,-1,910,646,1161,-1,1161,777,1554,-1,609,996,1341,-1,985,972,979,-1,1749,1079,1793,-1,915,1040,1079,-1,915,1269,905,-1,909,810,1274,-1,296,660,380,-1,650,1657,1603,-1,658,759,651,-1,524,1414,1325,-1,492,847,409,-1,957,416,784,-1,397,421,769,-1,1534,302,1110,-1,940,311,611,-1,1708,2478,1705,-1,1781,253,1733,-1,1801,188,1358,-1,142,1745,1693,-1,142,1693,1698,-1,1936,163,223,-1,41,391,632,-1,39,31,1261,-1,63,78,1625,-1,181,63,859,-1,844,1775,2544,-1,76,33,82,-1,95,135,145,-1,48,41,31,-1,972,1167,1146,-1,996,1028,977,-1,1030,1180,1167,-1,593,702,671,-1,600,644,607,-1,409,582,520,-1,428,509,432,-1,551,509,446,-1,251,286,288,-1,392,393,304,-1,146,150,142,-1,956,669,1856,-1,796,793,962,-1,730,801,599,-1,440,493,379,-1,1589,218,1846,-1,766,711,786,-1,540,181,554,-1,906,1722,473,-1,1389,1412,1256,-1,791,780,913,-1,1527,919,1299,-1,1164,1231,1389,-1,921,1412,1503,-1,1400,1149,921,-1,962,1855,1422,-1,928,921,1149,-1,906,765,928,-1,1049,1173,1006,-1,161,506,473,-1,2062,1816,1551,-1,2142,1976,1706,-1,1160,1382,1383,-1,1382,1160,1597,-1,1706,855,1003,-1,1383,1382,1641,-1,1093,1907,1624,-1,1422,2044,1986,-1,765,898,902,-1,2172,1795,1980,-1,2292,1784,2126,-1,2251,2144,2275,-1,2130,2243,2657,-1,1728,1510,1921,-1,2271,1235,1451,-1,2916,2141,2560,-1,1439,1632,1203,-1,2368,1632,2259,-1,2236,2268,1451,-1,2017,1921,1510,-1,1510,1351,2017,-1,1441,1203,2275,-1,798,263,697,-1,456,1212,1219,-1,341,477,164,-1,1106,871,456,-1,697,612,239,-1,1165,1525,2064,-1,2010,2080,1757,-1,2086,1585,2140,-1,1060,912,1521,-1,833,881,456,-1,2010,1894,1521,-1,1060,1074,912,-1,1364,507,968,-1,1897,2427,1435,-1,1451,2268,1112,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getfrontal_Geo_5_121_normalIndex_11()
		{
			int[] value = {1439,1203,987,-1,507,1364,1165,-1,1392,477,1933,-1,987,1211,1578,-1,1616,1363,1618,-1,1369,1202,1812,-1,1549,1832,1517,-1,2352,1780,2390,-1,1430,1833,1550,-1,1285,1333,1366,-1,1581,1833,1430,-1,1026,884,674,-1,1258,316,1404,-1,394,698,227,-1,227,1404,316,-1,1075,1048,1183,-1,1206,1390,1355,-1,2352,1267,1561,-1,713,826,674,-1,1443,1406,1780,-1,1206,1431,1390,-1,1431,1206,1502,-1,674,198,199,-1,674,430,198,-1,966,199,355,-1,199,966,964,-1,1276,995,1122,-1,1267,995,1276,-1,999,1172,973,-1,999,1191,1172,-1,973,785,699,-1,973,937,785,-1,1276,1348,1215,-1,1276,1122,1348,-1,2140,1560,2369,-1,2140,1375,1560,-1,1155,1757,1268,-1,1757,1155,1894,-1,1728,2080,1050,-1,2080,1728,1921,-1,1473,912,1074,-1,912,1473,899,-1,761,341,13,-1,761,697,341,-1,1933,1387,2065,-1,1387,1933,1562,-1,1106,862,871,-1,862,1106,1387,-1,1968,2657,2322,-1,1968,2251,2657,-1,2185,1806,1623,-1,2185,2243,1806,-1,1728,1316,1510,-1,2064,1316,1728,-1,2141,2686,2560,-1,2686,2141,1842,-1,1805,2012,1744,-1,2012,1805,1768,-1,2164,2076,1764,-1,2252,2076,2164,-1,506,278,620,-1,161,278,506,-1,1015,1907,1093,-1,1976,1907,1015,-1,1164,950,1259,-1,1164,1077,950,-1,1768,1299,2012,-1,1768,1527,1299,-1,2115,1789,1799,-1,1789,2115,2164,-1,883,913,930,-1,796,913,883,-1,1149,1359,906,-1,1359,1149,1400,-1,1231,1527,1389,-1,919,1527,1231,-1,857,930,954,-1,883,930,857,-1,1742,17,621,-1,17,1742,284,-1,1072,23,1474,-1,74,23,1072,-1,347,314,286,-1,347,313,314,-1,307,314,313,-1,314,307,310,-1,909,797,854,-1,797,909,831,-1,961,1025,1030,-1,961,967,1025,-1,1413,1167,1345,-1,1167,1413,1146,-1,2676,1775,2685,-1,1775,2676,2656,-1,1770,2595,2432,-1,1770,1801,2595,-1,315,1535,1840,-1,1535,315,310,-1,302,575,1081,-1,575,302,354,-1,428,1004,245,-1,1004,428,432,-1,594,524,1325,-1,594,596,524,-1,1177,524,529,-1,524,1177,1414,-1,658,757,759,-1,757,658,650,-1,651,296,546,-1,296,651,660,-1,593,383,1195,-1,593,671,383,-1,1279,977,967,-1,1279,1083,977,-1,1295,1341,498,-1,1679,1341,1295,-1,1935,1110,1201,-1,1935,1534,1110,-1,2447,1694,1703,-1,2447,2250,1694,-1,2783,2862,2808,-1,2783,2849,2862,-1,1710,1685,1821,-1,1710,1717,1685,-1,1716,2474,1477,-1,1716,2063,2474,-1,1717,1270,1719,-1,1717,1620,1270,-1,2768,2257,2069,-1,2257,2768,2900,-1,1938,1956,2025,-1,1956,1938,1984,-1,1824,1926,2228,-1,1824,1208,1926,-1,2301,2096,2150,-1,2301,2413,2096,-1,2477,2231,2468,-1,1960,2231,2477,-1,2200,2341,2197,-1,2191,2341,2200,-1,2598,2534,2570,-1,2598,2672,2534,-1,2470,1828,2272,-1,2470,2542,1828,-1,2672,2857,2611,-1,2464,2857,2672,-1,2573,2537,2661,-1,2570,2537,2573,-1,2075,2662,2649,-1,2075,2799,2662,-1,2889,2807,2801,-1,2807,2889,2819,-1,2281,2677,2003,-1,2692,2677,2281,-1,2748,2851,2742,-1,2748,2700,2851,-1,2745,2353,2349,-1,2745,2734,2353,-1,2921,2469,2919,-1,2436,2469,2921,-1,2841,2888,2869,-1,2841,2881,2888,-1,2601,2856,2869,-1,2601,2756,2856,-1,2896,2915,2876,-1,2919,2915,2896,-1,2862,2905,2877,-1,2862,2904,2905,-1,2346,1774,2323,-1,2346,2068,1774,-1,2525,2547,2579,-1,2525,2636,2547,-1,2579,2666,2488,-1,2666,2579,2547,-1,2225,2241,2179,-1,2241,2225,2264,-1,2394,2541,2132,-1,2394,2157,2541,-1,2436,632,2469,-1,2436,2583,632,-1,2244,2328,2408,-1,2244,2199,2328,-1,2505,2557,2522,-1,2505,2393,2557,-1,2602,2438,2840,-1,2438,2602,2763,-1,2600,2743,2569,-1,2600,2696,2743,-1,2605,2467,2837,-1,2588,2467,2605,-1,1781,194,253,-1,1781,1703,194,-1,2353,2637,1193,-1,2734,2637,2353,-1,1358,2429,2524,-1,1358,2250,2429,-1,2805,2577,2443,-1,2805,2794,2577,-1,940,2003,2455,-1,611,2003,940,-1,2821,1867,2555,-1,2821,2319,1867,-1,1534,2577,1584,-1,1534,1935,2577,-1,423,2306,1023,-1,2306,423,1790,-1,611,2281,2003,-1,611,1798,2281,-1,2851,2432,2595,-1,2700,2432,2851,-1,2553,847,2083,-1,2553,784,847,-1,245,1964,712,-1,1964,245,2040,-1,1016,2030,1979,-1,1016,802,2030,-1,2740,1592,2585,-1,2740,1195,1592,-1,2231,1266,2771,-1,2231,652,1266,-1,2030,1427,2817,-1,2030,802,1427,-1,2857,1414,2820,-1,1414,2857,1325,-1,1274,2215,1265,-1,2215,1274,2831,-1,546,1401,1552,-1,546,296,1401,-1,1947,1078,2508,-1,1947,383,1078,-1,2548,1749,2911,-1,1269,1749,2548,-1,777,1208,1824,-1,119,1208,777,-1,2691,1679,2829,-1,1679,2691,1341,-1,640,2548,1462,-1,1269,2548,640,-1,821,1442,1417,-1,821,931,1442,-1,2257,1918,1241,-1,1918,2257,2900,-1,969,1065,555,-1,1065,969,1270,-1,2474,2402,2568,-1,2205,2402,2474,-1,2008,2918,2269,-1,2918,2008,2146,-1,1873,2419,2249,-1,2419,1873,2316,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getfrontal_Geo_5_121_normalIndex_12()
		{
			int[] value = {956,1855,962,-1,956,1896,1855,-1,442,246,525,-1,442,275,246,-1,567,588,558,-1,567,547,588,-1,850,610,706,-1,850,613,610,-1,367,309,274,-1,367,362,309,-1,941,840,880,-1,941,894,840,-1,208,170,146,-1,217,170,208,-1,1186,354,403,-1,1186,575,354,-1,424,490,353,-1,553,490,424,-1,706,633,801,-1,603,633,706,-1,309,271,237,-1,309,320,271,-1,561,748,635,-1,754,748,561,-1,298,152,104,-1,298,258,152,-1,935,897,982,-1,825,897,935,-1,2403,2901,2912,-1,2885,2901,2403,-1,1027,843,946,-1,1027,942,843,-1,1871,1090,577,-1,1941,1090,1871,-1,1090,1513,617,-1,1090,1653,1513,-1,204,2018,437,-1,204,1546,2018,-1,2066,437,1453,-1,1058,437,2066,-1,2099,2459,2420,-1,2459,2099,1513,-1,2747,2088,2648,-1,2088,2747,2603,-1,2788,2765,2907,-1,2765,2788,2828,-1,2229,1340,1043,-1,2229,2378,1340,-1,1880,1577,2260,-1,1563,1577,1880,-1,215,241,444,-1,215,83,241,-1,2114,1568,1500,-1,1568,2114,2112,-1,1,112,36,-1,1,42,112,-1,2315,2466,2291,-1,2466,2315,2500,-1,1898,1916,1890,-1,1898,2142,1916,-1,2678,2551,2820,-1,2542,2551,2678,-1,2825,2788,2907,-1,2825,2660,2788,-1,1360,903,970,-1,1360,1463,903,-1,241,280,85,-1,80,280,241,-1,2356,2291,2466,-1,2296,2291,2356,-1,1121,731,1115,-1,1121,885,731,-1,1920,126,142,-1,126,1920,1626,-1,2793,2696,2600,-1,2576,2696,2793,-1,835,1930,1319,-1,835,1279,1930,-1,2878,1810,2483,-1,2878,1857,1810,-1,2165,1679,1295,-1,2165,2829,1679,-1,870,852,933,-1,870,888,852,-1,1194,1487,1180,-1,1487,1194,1488,-1,749,759,747,-1,770,759,749,-1,679,643,595,-1,643,679,644,-1,509,595,582,-1,509,551,595,-1,490,392,353,-1,490,514,392,-1,170,179,150,-1,192,179,170,-1,388,486,532,-1,404,486,388,-1,486,404,489,-1,1491,1393,1524,-1,1491,1490,1393,-1,104,203,210,-1,203,104,96,-1,274,438,367,-1,274,211,438,-1,737,545,579,-1,725,545,737,-1,725,686,545,-1,1339,1092,1245,-1,1092,1339,1086,-1,132,143,50,-1,133,143,132,-1,201,196,177,-1,201,190,196,-1,1738,1218,1725,-1,1218,1738,1245,-1,1218,1062,1244,-1,1218,1142,1062,-1,133,136,143,-1,133,86,136,-1,471,294,335,-1,464,294,471,-1,181,276,554,-1,181,418,276,-1,801,707,980,-1,707,801,730,-1,1394,1248,1124,-1,1394,1539,1248,-1,1410,1673,1658,-1,1664,1673,1410,-1,1750,1382,1597,-1,1750,1641,1382,-1,1454,1658,1673,-1,1454,1647,1658,-1,1251,1174,1225,-1,1174,1251,1049,-1,1006,943,1049,-1,943,1006,948,-1,732,1093,590,-1,1093,732,1015,-1,1217,1615,1222,-1,1615,1217,1383,-1,1013,948,1099,-1,943,948,1013,-1,1364,1932,1239,-1,1364,1900,1932,-1,1740,1904,1582,-1,1740,1851,1904,-1,800,703,569,-1,900,703,800,-1,1619,1291,1669,-1,1619,1321,1291,-1,1669,2127,2019,-1,1669,1743,2127,-1,2134,1258,2077,-1,2134,1095,1258,-1,1735,1914,1740,-1,2178,1914,1735,-1,2552,2077,2425,-1,2552,2134,2077,-1,2519,2786,2789,-1,2519,2552,2786,-1,1888,1805,1819,-1,1980,1805,1888,-1,1691,351,1541,-1,346,351,1691,-1,729,1,36,-1,1,729,808,-1,1980,1885,2076,-1,1980,1888,1885,-1,2913,2876,2915,-1,2881,2876,2913,-1,2816,914,1960,-1,914,2816,1660,-1,2904,2244,2905,-1,2904,2199,2244,-1,2574,2456,2762,-1,2361,2456,2574,-1,2791,2859,2854,-1,2762,2859,2791,-1,2766,2854,2812,-1,2766,2791,2854,-1,2775,2839,2783,-1,2812,2839,2775,-1,2712,2466,2738,-1,2712,2531,2466,-1,2779,2796,2745,-1,2779,2529,2796,-1,2737,2675,2703,-1,2737,2681,2675,-1,2565,2675,2590,-1,2565,2592,2675,-1,2531,2356,2466,-1,2356,2531,2396,-1,2412,2554,2386,-1,2567,2554,2412,-1,2233,2200,2181,-1,2200,2233,2192,-1,2412,2203,2434,-1,2217,2203,2412,-1,2070,2347,2335,-1,2070,2056,2347,-1,1823,2070,2133,-1,1823,1791,2070,-1,1963,2217,2004,-1,2203,2217,1963,-1,2058,1814,2057,-1,1827,1814,2058,-1,1755,2004,1792,-1,1755,1963,2004,-1,1566,1791,1823,-1,1566,1593,1791,-1,1315,1582,1579,-1,1315,1328,1582,-1,1593,1478,1475,-1,1593,1566,1478,-1,1481,1792,1482,-1,1755,1792,1481,-1,1485,1827,1472,-1,1814,1827,1485,-1,2036,1989,1962,-1,2036,1899,1989,-1,1056,1300,1370,-1,1056,1053,1300,-1,1872,1724,1879,-1,1724,1872,1459,-1,1264,848,1132,-1,848,1264,1014,-1,687,814,771,-1,687,1143,814,-1,1255,1529,1116,-1,1255,1769,1529,-1,2078,2162,1998,-1,2162,2078,1996,-1,1605,1198,1565,-1,1605,1143,1198,-1,814,1997,1236,-1,1605,1997,814,-1,2337,2170,2388,-1,2337,2202,2170,-1,2624,2586,2516,-1,2643,2586,2624,-1,2682,2680,2641,-1,2682,2733,2680,-1,2527,2409,2446,-1,2409,2527,2516,-1,2357,2342,2290,-1,2344,2342,2357,-1,2289,2332,2230,-1,2331,2332,2289,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getfrontal_Geo_5_121_normalIndex_13()
		{
			int[] value = {2230,2169,2184,-1,2261,2169,2230,-1,1923,1978,1924,-1,1971,1978,1923,-1,1628,1661,1649,-1,1628,1515,1661,-1,2833,2882,2822,-1,2882,2833,2893,-1,2872,2846,2850,-1,2846,2872,2860,-1,247,2052,1178,-1,247,1601,2052,-1,2892,1287,2893,-1,1336,1287,2892,-1,2803,1381,2802,-1,2710,1381,2803,-1,1018,2769,960,-1,1018,2764,2769,-1,345,1200,1213,-1,345,470,1200,-1,1252,2751,2735,-1,1252,1760,2751,-1,2739,1272,2733,-1,1606,1272,2739,-1,2267,2332,1699,-1,2267,2345,2332,-1,1540,2024,2282,-1,2024,1540,1313,-1,2261,2284,2169,-1,1869,2284,2261,-1,2278,2391,2283,-1,1765,2391,2278,-1,2159,1700,2097,-1,2159,2123,1700,-1,2037,2067,2061,-1,2037,1903,2067,-1,1978,2014,1981,-1,1686,2014,1978,-1,2442,1863,1638,-1,2442,2094,1863,-1,1970,2359,1796,-1,1970,1972,2359,-1,1096,1877,1418,-1,1665,1877,1096,-1,1292,1253,1357,-1,1253,1292,488,-1,1224,789,566,-1,1224,1170,789,-1,523,1306,1343,-1,523,776,1306,-1,256,683,1073,-1,256,692,683,-1,67,513,183,-1,64,513,67,-1,125,72,47,-1,125,62,72,-1,238,207,176,-1,238,209,207,-1,818,1247,1237,-1,1102,1247,818,-1,1011,926,863,-1,1011,1009,926,-1,834,781,875,-1,781,834,837,-1,876,783,750,-1,876,781,783,-1,602,1007,187,-1,602,636,1007,-1,760,467,602,-1,467,760,157,-1,1501,12,1114,-1,1501,2,12,-1,740,739,733,-1,740,721,739,-1,638,721,740,-1,721,638,321,-1,461,317,402,-1,463,317,461,-1,308,281,233,-1,281,308,269,-1,153,209,151,-1,207,209,153,-1,148,127,151,-1,148,123,127,-1,153,250,155,-1,268,250,153,-1,872,242,616,-1,242,872,655,-1,156,128,118,-1,222,128,156,-1,180,228,185,-1,222,228,180,-1,573,202,277,-1,202,573,87,-1,222,149,128,-1,149,222,182,-1,68,323,70,-1,92,323,68,-1,66,121,114,-1,121,66,57,-1,70,173,69,-1,70,323,173,-1,734,20,19,-1,734,528,20,-1,746,585,895,-1,746,904,585,-1,475,482,522,-1,191,482,475,-1,448,244,266,-1,538,244,448,-1,695,521,683,-1,513,521,695,-1,327,499,89,-1,61,499,327,-1,372,675,505,-1,372,449,675,-1,523,543,776,-1,523,622,543,-1,715,815,537,-1,715,396,815,-1,319,415,429,-1,319,560,415,-1,369,405,116,-1,369,436,405,-1,345,173,323,-1,345,443,173,-1,573,287,481,-1,573,789,287,-1,137,1388,1253,-1,1388,137,361,-1,137,37,124,-1,137,488,37,-1,434,15,100,-1,434,465,15,-1,1148,872,887,-1,872,1148,655,-1,174,1433,384,-1,174,1398,1433,-1,856,2161,2540,-1,856,129,2161,-1,616,887,872,-1,616,1080,887,-1,1606,73,413,-1,1606,337,73,-1,2043,101,1034,-1,2043,1176,101,-1,1949,896,299,-1,2688,896,1949,-1,637,2147,1985,-1,386,2147,637,-1,1123,2285,1037,-1,1123,2697,2285,-1,1176,157,101,-1,1176,1699,157,-1,1313,111,113,-1,1313,1540,111,-1,1776,105,254,-1,1557,105,1776,-1,1129,98,25,-1,1129,1690,98,-1,2631,1229,2558,-1,1229,2631,1567,-1,1362,426,97,-1,1362,1869,426,-1,1150,12,2,-1,1150,1204,12,-1,1445,1127,2152,-1,1445,433,1127,-1,1747,2327,2810,-1,1747,1063,2327,-1,1150,723,1702,-1,1150,2,723,-1,1555,2313,2034,-1,1555,2111,2313,-1,1032,160,24,-1,160,1032,1432,-1,1665,1696,1877,-1,1350,1696,1665,-1,1763,2433,1977,-1,1763,2606,2433,-1,708,727,1216,-1,727,708,549,-1,1497,877,549,-1,1497,1712,877,-1,1425,726,1468,-1,1425,1788,726,-1,2023,1919,1875,-1,2084,1919,2023,-1,2732,2655,2687,-1,2655,2732,2702,-1,2461,2781,2405,-1,2684,2781,2461,-1,2494,2314,2476,-1,2494,2362,2314,-1,2523,2303,2330,-1,2523,2465,2303,-1,2616,2724,2539,-1,2719,2724,2616,-1,2209,2262,2173,-1,2270,2262,2209,-1,2246,2092,2207,-1,2092,2246,2136,-1,2561,2533,2452,-1,2582,2533,2561,-1,2549,2674,2581,-1,2629,2674,2549,-1,2362,2351,2314,-1,2392,2351,2362,-1,2145,2173,2101,-1,2145,2209,2173,-1,1870,340,878,-1,340,1870,1085,-1,519,672,1361,-1,519,827,672,-1,115,548,122,-1,290,548,115,-1,2338,1519,2279,-1,2338,1670,1519,-1,2708,2418,2384,-1,2708,2848,2418,-1,1403,2020,1953,-1,1403,1457,2020,-1,1304,2279,1039,-1,2591,2279,1304,-1,2653,2389,2806,-1,2653,2005,2389,-1,2736,2687,2635,-1,2732,2687,2736,-1,299,338,332,-1,299,896,338,-1,2020,1591,1953,-1,2020,1463,1591,-1,2653,2668,2845,-1,2668,2653,2836,-1,654,584,474,-1,584,654,645,-1,2218,1830,1835,-1,2218,2051,1830,-1,2802,1087,2790,-1,1381,1087,2802,-1,234,138,330,-1,138,234,357,-1,1057,2094,1635,-1,1057,1686,2094,-1,1137,49,453,-1,1137,1096,49,-1,1294,763,1677,-1,1294,99,763,-1,2081,2061,2007,-1,2081,2037,2061,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getfrontal_Geo_5_121_normalIndex_14()
		{
			int[] value = {1487,1759,1772,-1,1488,1759,1487,-1,2167,2182,2184,-1,2182,2167,2159,-1,2290,2254,2343,-1,2289,2254,2290,-1,2343,2430,2357,-1,2343,2409,2430,-1,2690,2733,2682,-1,2733,2690,2739,-1,2624,2674,2725,-1,2624,2581,2674,-1,2310,2209,2084,-1,2310,2270,2209,-1,1576,1925,1709,-1,1925,1576,1891,-1,1683,1919,1848,-1,1919,1683,1875,-1,2400,2532,2422,-1,2575,2532,2400,-1,2727,2822,2720,-1,2833,2822,2727,-1,2405,2663,2563,-1,2405,2781,2663,-1,2400,2196,2360,-1,2400,2207,2196,-1,2246,2207,2400,-1,1850,1640,1711,-1,1861,1640,1850,-1,2784,2785,2868,-1,2785,2784,2797,-1,2732,2724,2770,-1,2732,2736,2724,-1,1739,1220,1240,-1,1711,1220,1739,-1,2559,2362,2494,-1,2362,2559,2392,-1,2795,2797,2784,-1,2795,2843,2797,-1,2499,2465,2610,-1,2465,2499,2481,-1,1559,1371,1332,-1,1498,1371,1559,-1,1437,1779,1969,-1,1437,1286,1779,-1,1994,1931,1860,-1,1993,1931,1994,-1,1844,2206,2340,-1,1946,2206,1844,-1,1617,1912,1834,-1,1958,1912,1617,-1,1958,1934,1912,-1,1955,2156,2089,-1,1955,1902,2156,-1,1902,2109,1631,-1,1902,1955,2109,-1,974,1435,1678,-1,974,751,1435,-1,2035,1881,2122,-1,2035,1741,1881,-1,1323,1215,1071,-1,1276,1215,1323,-1,2208,2122,2385,-1,2122,2208,2035,-1,1514,1645,1214,-1,1741,1645,1514,-1,1352,917,1314,-1,1109,917,1352,-1,1548,1172,1191,-1,1172,1548,1514,-1,656,457,779,-1,656,325,457,-1,408,699,785,-1,699,408,333,-1,1157,1818,2039,-1,1818,1157,1104,-1,2218,2562,2435,-1,2239,2562,2218,-1,232,775,589,-1,775,232,503,-1,744,830,484,-1,744,710,830,-1,166,264,139,-1,264,166,363,-1,140,139,264,-1,139,140,162,-1,154,406,262,-1,406,154,221,-1,176,222,156,-1,176,228,222,-1,229,339,257,-1,339,229,262,-1,250,277,202,-1,250,28,277,-1,252,343,371,-1,252,257,343,-1,518,541,584,-1,450,541,518,-1,371,502,527,-1,502,371,343,-1,462,480,461,-1,480,462,459,-1,552,716,743,-1,552,527,716,-1,1071,790,817,-1,1071,1111,790,-1,938,743,716,-1,938,908,743,-1,876,1136,1135,-1,876,882,1136,-1,984,1302,1196,-1,984,1052,1302,-1,1166,1374,1156,-1,1166,1353,1374,-1,1373,1478,1479,-1,1478,1373,1402,-1,1139,1482,1483,-1,1482,1139,1151,-1,1281,1126,1472,-1,1281,1130,1126,-1,642,1493,1499,-1,642,563,1493,-1,1238,1470,1477,-1,1470,1238,1275,-1,1136,1483,1484,-1,1483,1136,1139,-1,1302,1479,1480,-1,1479,1302,1373,-1,1353,1646,1469,-1,1646,1353,1380,-1,1348,1646,1380,-1,1348,1598,1646,-1,1156,1402,1128,-1,1156,1374,1402,-1,938,1196,1151,-1,938,984,1196,-1,1135,875,876,-1,875,1135,1126,-1,716,984,938,-1,984,716,728,-1,860,1128,795,-1,860,1156,1128,-1,504,795,738,-1,504,601,795,-1,743,562,552,-1,562,743,742,-1,562,461,400,-1,562,462,461,-1,343,504,502,-1,504,343,374,-1,626,584,645,-1,626,518,584,-1,592,450,518,-1,452,450,592,-1,238,371,385,-1,238,252,371,-1,262,450,339,-1,450,262,541,-1,72,162,117,-1,72,139,162,-1,67,139,72,-1,139,67,166,-1,484,363,166,-1,363,484,578,-1,689,19,18,-1,689,734,19,-1,2024,113,989,-1,1313,113,2024,-1,54,11,9,-1,11,54,45,-1,1157,2308,2379,-1,1157,2039,2308,-1,1154,1082,1109,-1,1082,1154,953,-1,130,408,159,-1,130,333,408,-1,333,713,699,-1,713,333,469,-1,779,974,1326,-1,974,779,457,-1,1293,1109,1352,-1,1154,1109,1293,-1,1645,1223,1214,-1,1645,1637,1223,-1,2385,1853,1909,-1,2385,2122,1853,-1,1122,1598,1348,-1,1598,1122,1326,-1,2163,2647,2898,-1,2163,1874,2647,-1,1892,2109,1955,-1,2109,1892,2163,-1,1721,1908,1879,-1,1721,1804,1908,-1,1946,2171,2206,-1,1946,2071,2171,-1,2049,2118,2089,-1,2049,2000,2118,-1,1876,1820,1512,-1,1825,1820,1876,-1,1286,1296,1512,-1,1437,1296,1286,-1,1797,1659,2082,-1,1659,1797,1778,-1,1307,1437,1532,-1,1296,1437,1307,-1,2465,2333,2303,-1,2333,2465,2481,-1,2797,2699,2785,-1,2843,2699,2797,-1,2635,2731,2645,-1,2635,2640,2731,-1,2655,2559,2494,-1,2559,2655,2702,-1,1240,331,517,-1,1220,331,1240,-1,1955,1992,1892,-1,1955,2089,1992,-1,2380,2300,2351,-1,2380,2360,2300,-1,2746,2834,2792,-1,2872,2834,2746,-1,1220,1640,1263,-1,1640,1220,1711,-1,2304,2894,1288,-1,2304,2866,2894,-1,2041,2287,2023,-1,2041,2136,2287,-1,1683,1891,1576,-1,1891,1683,1848,-1,2690,2643,2722,-1,2643,2690,2682,-1,2430,2521,2357,-1,2430,2503,2521,-1,1925,2038,1965,-1,1925,2031,2038,-1,2253,2343,2254,-1,2253,2446,2343,-1,2061,1794,2026,-1,2061,2067,1794,-1,1772,2006,1995,-1,1772,1965,2006,-1,1965,1772,1759,-1,2106,2081,1995,-1,2106,2079,2081,-1,451,2176,1817,-1,451,1216,2176,-1,1712,1185,1817,-1,1712,1497,1185,-1,1007,2437,1419,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getfrontal_Geo_5_121_normalIndex_15()
		{
			int[] value = {1007,2556,2437,-1,1643,1959,1662,-1,1643,2381,1959,-1,1635,2442,1663,-1,2442,1635,2094,-1,1378,1655,1815,-1,1168,1655,1378,-1,1655,1168,1416,-1,1379,812,1519,-1,816,812,1379,-1,564,108,141,-1,108,564,534,-1,1039,1519,812,-1,1519,1039,2279,-1,2317,838,615,-1,2317,2143,838,-1,510,2138,292,-1,510,2177,2138,-1,812,1399,1039,-1,812,1403,1399,-1,2482,2384,2240,-1,2482,2708,2384,-1,1670,1379,1519,-1,1670,1386,1379,-1,845,1887,1854,-1,1887,845,1029,-1,206,122,21,-1,115,122,206,-1,849,184,283,-1,329,184,849,-1,487,827,519,-1,1450,827,487,-1,2489,878,1528,-1,878,2489,1870,-1,1000,2730,2489,-1,1000,1271,2730,-1,340,81,93,-1,375,81,340,-1,2383,2253,2213,-1,2484,2253,2383,-1,2516,2561,2452,-1,2586,2561,2516,-1,1999,2023,1875,-1,2023,1999,2041,-1,2695,2724,2719,-1,2724,2695,2663,-1,2103,2101,2173,-1,2101,2103,2038,-1,2873,2822,2882,-1,2873,2883,2822,-1,2722,2624,2725,-1,2722,2643,2624,-1,2207,2091,2196,-1,2091,2207,2055,-1,2270,2399,2262,-1,2406,2399,2270,-1,2616,2868,2782,-1,2616,2614,2868,-1,2481,2325,2333,-1,2481,2640,2325,-1,2684,2770,2781,-1,2701,2770,2684,-1,521,1073,683,-1,618,1073,521,-1,451,708,1216,-1,782,708,451,-1,497,483,454,-1,483,497,726,-1,1877,1977,2433,-1,1696,1977,1877,-1,1032,673,1715,-1,24,673,1032,-1,1526,2111,1555,-1,1526,2009,2111,-1,389,2293,1506,-1,2293,389,1697,-1,1294,224,99,-1,1638,224,1294,-1,1747,2152,1127,-1,2152,1747,2810,-1,1204,389,12,-1,389,1204,1697,-1,1869,1007,426,-1,1869,2556,1007,-1,1567,2391,1420,-1,1567,2631,2391,-1,718,1690,1700,-1,98,1690,718,-1,1557,40,105,-1,1651,40,1557,-1,1540,907,111,-1,1540,2124,907,-1,1699,701,157,-1,1699,2282,701,-1,1376,187,348,-1,1376,1758,187,-1,907,1937,965,-1,907,2124,1937,-1,983,2688,2223,-1,896,2688,983,-1,2087,386,851,-1,2087,2147,386,-1,503,73,337,-1,73,503,232,-1,655,2324,939,-1,655,1148,2324,-1,629,2513,1927,-1,1158,2513,629,-1,361,1434,1388,-1,361,1020,1434,-1,1080,107,384,-1,1080,616,107,-1,939,2001,485,-1,2001,939,2324,-1,361,124,496,-1,361,137,124,-1,511,1606,413,-1,511,682,1606,-1,291,587,1760,-1,587,291,193,-1,2733,1170,2680,-1,2733,1257,1170,-1,470,323,92,-1,323,470,345,-1,116,330,369,-1,116,234,330,-1,500,327,89,-1,165,327,500,-1,714,734,608,-1,528,734,714,-1,530,622,523,-1,530,689,622,-1,820,675,449,-1,820,717,675,-1,466,2546,2304,-1,2546,466,305,-1,853,668,819,-1,853,709,668,-1,191,538,482,-1,244,538,191,-1,225,342,378,-1,225,696,342,-1,676,513,627,-1,676,521,513,-1,240,695,752,-1,240,183,695,-1,528,16,20,-1,16,528,382,-1,53,3,18,-1,53,57,3,-1,369,14,38,-1,14,369,330,-1,18,622,689,-1,18,3,622,-1,88,66,114,-1,88,54,66,-1,587,182,589,-1,587,193,182,-1,73,180,185,-1,73,232,180,-1,255,655,939,-1,655,255,242,-1,123,37,127,-1,102,37,123,-1,269,856,281,-1,269,129,856,-1,400,364,270,-1,364,400,368,-1,40,260,317,-1,260,40,476,-1,1123,463,661,-1,1123,395,463,-1,402,332,368,-1,402,260,332,-1,597,733,736,-1,733,597,740,-1,701,459,467,-1,459,701,989,-1,832,634,783,-1,832,526,634,-1,1063,1127,704,-1,1063,1747,1127,-1,998,988,911,-1,990,988,998,-1,673,160,863,-1,24,160,673,-1,818,49,1526,-1,719,49,818,-1,1275,1234,1281,-1,1275,1238,1234,-1,700,602,572,-1,602,700,739,-1,273,692,256,-1,668,692,273,-1,1272,495,1257,-1,1272,682,495,-1,352,434,1038,-1,352,465,434,-1,1357,174,1991,-1,174,1357,1398,-1,1961,1988,1970,-1,1432,1988,1961,-1,1981,1858,1975,-1,1981,2014,1858,-1,2028,2293,2032,-1,2028,2117,2293,-1,1699,2043,2267,-1,2043,1699,1176,-1,2410,2342,2415,-1,2410,2339,2342,-1,1758,2437,2556,-1,2437,1758,1376,-1,2336,1687,2329,-1,2280,1687,2336,-1,1433,2612,1100,-1,2618,2612,1433,-1,337,1182,503,-1,337,1145,1182,-1,1178,256,247,-1,273,256,1178,-1,1785,1571,1629,-1,1796,1571,1785,-1,1924,1981,1922,-1,1924,1978,1981,-1,2129,2028,2079,-1,2097,2028,2129,-1,2613,2621,2615,-1,2618,2621,2613,-1,2613,2586,2643,-1,2613,2615,2586,-1,2902,1866,1466,-1,1866,2902,2852,-1,2906,1179,2308,-1,2667,1179,2906,-1,1967,2074,2013,-1,2074,1967,2085,-1,1769,1783,1574,-1,1783,1769,2046,-1,1605,1751,1997,-1,1565,1751,1605,-1,1998,2085,1967,-1,2085,1998,2162,-1,1159,814,1147,-1,771,814,1159,-1,1847,1731,1612,-1,1654,1731,1847,-1,1371,1053,1056,-1,1053,1371,1249,-1,2679,1159,2535,-1,2679,1187,1159,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getfrontal_Geo_5_121_normalIndex_16()
		{
			int[] value = {1827,1685,1695,-1,1827,1821,1685,-1,1484,1814,1485,-1,1813,1814,1484,-1,1480,1755,1481,-1,1672,1755,1480,-1,1610,1475,1469,-1,1610,1593,1475,-1,1517,1239,1455,-1,1364,1239,1517,-1,1593,1807,1791,-1,1593,1610,1807,-1,1672,1963,1755,-1,1672,1895,1963,-1,1813,2057,1814,-1,1813,2054,2057,-1,2188,2004,2217,-1,2188,2029,2004,-1,2116,1904,2135,-1,2116,1865,1904,-1,2217,2386,2188,-1,2217,2412,2386,-1,2460,2471,2473,-1,2477,2471,2460,-1,2434,2567,2412,-1,2590,2567,2434,-1,2396,2423,2356,-1,2423,2396,2487,-1,2590,2681,2567,-1,2590,2675,2681,-1,2681,2754,2694,-1,2737,2754,2681,-1,2703,2808,2737,-1,2783,2808,2703,-1,2838,2869,2856,-1,2841,2869,2838,-1,2712,2812,2775,-1,2766,2812,2712,-1,2812,2875,2839,-1,2812,2854,2875,-1,2847,2869,2888,-1,2869,2847,2601,-1,2072,811,2148,-1,811,2072,1045,-1,1764,667,265,-1,1764,1558,667,-1,2134,2519,2151,-1,2552,2519,2134,-1,2479,2425,2178,-1,2479,2628,2425,-1,1932,2178,1735,-1,2479,2178,1932,-1,2127,1746,2151,-1,1743,1746,2127,-1,1669,1342,1743,-1,1669,1291,1342,-1,1502,1120,1906,-1,1502,1206,1120,-1,1120,569,1045,-1,1120,800,569,-1,218,774,32,-1,218,1035,774,-1,842,1076,986,-1,774,1076,842,-1,1012,1244,1062,-1,1012,1169,1244,-1,768,1015,732,-1,768,855,1015,-1,805,879,843,-1,805,934,879,-1,1118,934,1064,-1,1118,879,934,-1,1647,2047,1658,-1,1624,2047,1647,-1,980,954,1197,-1,954,980,857,-1,1890,1597,1889,-1,1890,1750,1597,-1,1248,836,754,-1,1248,1303,836,-1,1458,1664,1410,-1,1668,1664,1458,-1,980,1438,801,-1,1438,980,1531,-1,324,419,135,-1,324,441,419,-1,748,1017,1042,-1,1017,748,836,-1,1142,1245,1092,-1,1142,1218,1245,-1,1042,841,748,-1,1042,918,841,-1,376,231,230,-1,376,425,231,-1,143,297,50,-1,297,143,136,-1,941,1092,1086,-1,880,1092,941,-1,1092,880,918,-1,248,425,479,-1,425,248,231,-1,1284,1701,1524,-1,1339,1701,1284,-1,1250,1490,1489,-1,1393,1490,1250,-1,532,624,664,-1,532,508,624,-1,532,486,508,-1,1901,2373,1733,-1,1901,2587,2373,-1,1194,1489,1488,-1,1250,1489,1194,-1,720,825,807,-1,720,755,825,-1,670,755,720,-1,788,747,679,-1,788,749,747,-1,1487,1346,1180,-1,1487,1330,1346,-1,972,1030,1167,-1,972,961,1030,-1,1230,2269,1468,-1,1230,2204,2269,-1,1185,1283,1144,-1,1185,1497,1283,-1,501,1947,1553,-1,501,383,1947,-1,992,1337,1311,-1,992,557,1337,-1,498,1319,1310,-1,835,1319,498,-1,1321,1599,1134,-1,1321,1784,1599,-1,1321,1518,1784,-1,2112,1577,1436,-1,1577,2112,2114,-1,1308,1363,1335,-1,1228,1363,1308,-1,2098,2634,2358,-1,2098,2361,2634,-1,934,590,762,-1,590,934,805,-1,1244,1280,1762,-1,1169,1280,1244,-1,554,669,766,-1,685,669,554,-1,1621,1035,1583,-1,1035,1621,1338,-1,1436,1910,2112,-1,653,1910,1436,-1,1900,975,2219,-1,1900,677,975,-1,542,1047,1426,-1,542,366,1047,-1,903,1568,970,-1,903,1500,1568,-1,515,215,535,-1,515,84,215,-1,1436,583,653,-1,1436,1365,583,-1,2509,1043,1221,-1,1043,2509,2229,-1,2286,1091,1340,-1,1720,1091,2286,-1,2258,2420,1611,-1,2258,2099,2420,-1,2597,1058,2066,-1,1871,1058,2597,-1,755,787,829,-1,755,722,787,-1,588,631,619,-1,631,588,547,-1,258,388,353,-1,388,258,298,-1,403,377,446,-1,377,403,354,-1,841,635,748,-1,841,737,635,-1,532,424,388,-1,532,536,424,-1,335,370,471,-1,335,226,370,-1,850,628,613,-1,923,628,850,-1,591,558,570,-1,567,558,591,-1,230,177,196,-1,231,177,230,-1,297,86,226,-1,297,136,86,-1,2298,2672,2598,-1,2298,2553,2672,-1,2205,1543,1468,-1,2205,1162,1543,-1,1283,1477,2474,-1,1283,1497,1477,-1,2204,2008,2269,-1,2454,2008,2204,-1,555,1192,969,-1,555,322,1192,-1,1270,1309,1065,-1,1309,1270,1620,-1,2768,1918,2900,-1,1536,1918,2768,-1,576,1417,901,-1,576,821,1417,-1,2211,1793,1262,-1,2211,2923,1793,-1,609,1208,119,-1,609,1926,1208,-1,1824,1554,777,-1,1824,2502,1554,-1,2911,1793,2923,-1,2911,1749,1793,-1,2508,1603,2832,-1,2508,1078,1603,-1,1729,296,380,-1,1401,296,1729,-1,2831,1822,2899,-1,2831,1274,1822,-1,2820,1177,2678,-1,1177,2820,1414,-1,2817,1660,2816,-1,2817,1427,1660,-1,2771,1777,2826,-1,2771,1266,1777,-1,649,1828,1913,-1,649,235,1828,-1,784,2298,957,-1,2298,784,2553,-1,2040,1004,2627,-1,1004,2040,245,-1,2826,892,1917,-1,2826,1777,892,-1,2851,1358,2524,-1,2851,2595,1358,-1,2048,2319,2060,-1,2048,1867,2319,-1,769,2075,397,-1,769,2799,2075,-1,1535,2755,2555,-1,1535,1569,2755,-1,2060,1798,2048,-1,2281,1798,2060,-1,2909,2493,2827,-1,2909,2638,2493,-1,2889,2794,2805,-1,2889,2453,2794,-1,1584,2794,1707,-1,2577,2794,1584,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=17 */
		private int[] getfrontal_Geo_5_121_normalIndex_17()
		{
			int[] value = {2642,2363,2458,-1,2642,2137,2363,-1,2756,2588,2605,-1,2756,2492,2588,-1,2528,2569,2743,-1,2528,2498,2569,-1,2522,2609,2505,-1,2522,2377,2609,-1,2132,2220,2401,-1,2132,2541,2220,-1,2394,2416,2157,-1,2394,2312,2416,-1,2266,2583,2436,-1,2266,2507,2583,-1,2441,2602,2840,-1,2602,2441,2867,-1,2419,2237,2249,-1,2237,2419,2426,-1,2689,2488,2666,-1,2488,2689,2398,-1,2457,2490,2417,-1,2490,2457,2726,-1,2355,2323,1774,-1,2355,2033,2323,-1,2486,2179,2693,-1,2486,2225,2179,-1,2895,2921,2896,-1,2895,2924,2921,-1,2896,2871,2895,-1,2896,2861,2871,-1,2856,2811,2838,-1,2856,2855,2811,-1,2742,2757,2728,-1,2429,2757,2742,-1,2716,2742,2728,-1,2742,2716,2704,-1,2777,2661,2721,-1,2777,2780,2661,-1,2665,2245,2821,-1,2665,1928,2245,-1,2593,2570,2573,-1,2598,2570,2593,-1,2805,2819,2889,-1,2805,1966,2819,-1,1966,2805,2443,-1,2611,2820,2551,-1,2611,2857,2820,-1,2611,2473,2534,-1,2473,2611,2470,-1,2212,2297,2191,-1,2607,2297,2212,-1,2192,2191,2200,-1,2192,2212,2191,-1,2911,1467,1864,-1,2911,2923,1467,-1,2468,2166,2334,-1,2771,2166,2468,-1,1947,2334,2740,-1,1947,2299,2334,-1,2150,2057,2181,-1,2150,2153,2057,-1,2153,2095,2058,-1,2093,2095,2153,-1,2069,1983,2768,-1,1983,2069,1943,-1,1884,1417,1839,-1,1884,901,1417,-1,1719,1192,1716,-1,1719,969,1192,-1,2849,2908,2862,-1,2849,2874,2908,-1,2658,2863,2633,-1,2863,2658,2865,-1,2387,2456,2187,-1,2387,2397,2456,-1,2656,2346,2544,-1,2264,2346,2656,-1,2393,1692,1766,-1,1692,2393,2505,-1,1671,2416,1630,-1,1671,2157,2416,-1,2137,1733,2373,-1,2137,1781,1733,-1,1444,555,1065,-1,555,1444,813,-1,580,979,1146,-1,580,976,979,-1,1083,498,1341,-1,1083,835,498,-1,924,967,961,-1,967,924,1279,-1,866,888,870,-1,866,1040,888,-1,1265,770,831,-1,1265,803,770,-1,546,658,651,-1,658,546,1189,-1,650,671,757,-1,671,650,1078,-1,914,1427,652,-1,1660,1427,914,-1,604,666,1266,-1,604,593,666,-1,1694,188,194,-1,188,1694,1358,-1,178,1708,192,-1,178,1193,1708,-1,1753,2588,1745,-1,1753,2467,2588,-1,158,1936,1982,-1,158,163,1936,-1,1626,103,126,-1,103,1626,223,-1,1692,33,27,-1,33,1692,1644,-1,886,2685,1775,-1,886,1367,2685,-1,82,56,76,-1,78,56,82,-1,44,96,104,-1,27,96,44,-1,1329,1346,1330,-1,1329,1407,1346,-1,967,1028,1025,-1,1028,967,977,-1,757,702,747,-1,702,757,671,-1,604,644,702,-1,644,604,605,-1,596,582,643,-1,582,596,594,-1,253,251,288,-1,253,194,251,-1,347,304,393,-1,304,347,286,-1,786,599,540,-1,786,730,599,-1,906,2115,1722,-1,2115,906,1359,-1,1754,1359,1400,-1,1754,1802,1359,-1,1503,1400,921,-1,1400,1503,1754,-1,473,401,161,-1,473,559,401,-1,1799,401,559,-1,401,1799,1789,-1,2115,2252,2164,-1,2115,1802,2252,-1,1907,2142,2047,-1,1907,1976,2142,-1,1217,1138,1383,-1,1217,1017,1138,-1,265,161,401,-1,265,278,161,-1,2369,1510,1806,-1,1351,1510,2369,-1,1756,2100,2368,-1,2130,2100,1756,-1,1623,2427,2185,-1,1549,2427,1623,-1,1842,2322,2686,-1,1842,1968,2322,-1,507,1736,761,-1,507,1165,1736,-1,612,1133,239,-1,1133,612,944,-1,1375,1268,1560,-1,1375,1155,1268,-1,1521,1155,1289,-1,1155,1521,1894,-1,1473,1714,1952,-1,1473,1074,1714,-1,1471,1141,1525,-1,1832,1141,1471,-1,1443,1561,1377,-1,1780,1561,1443,-1,1730,2395,1893,-1,2395,1730,2445,-1,1495,964,966,-1,1523,964,1495,-1,1914,1851,1740,-1,1851,1914,1634,-1,1523,2352,2445,-1,1495,2352,1523,-1,699,884,999,-1,699,713,884,-1,1377,1267,1276,-1,1377,1561,1267,-1,1730,1496,1298,-1,1730,1550,1496,-1,995,355,874,-1,995,966,355,-1,430,826,865,-1,430,674,826,-1,1267,966,995,-1,1495,966,1267,-1,1175,1581,1285,-1,1581,1175,1188,-1,937,1172,932,-1,937,973,1172,-1,1406,1285,1428,-1,1175,1285,1406,-1,1228,1202,1363,-1,1211,1202,1228,-1,1441,987,1203,-1,468,987,1441,-1,1451,468,1441,-1,468,1451,1112,-1,2010,881,833,-1,2010,1505,881,-1,662,881,899,-1,662,456,881,-1,507,13,968,-1,507,761,13,-1,871,1212,456,-1,871,798,1212,-1,2144,1235,2271,-1,1968,1235,2144,-1,2916,2427,1897,-1,2427,2916,2185,-1,1316,1549,1623,-1,1141,1549,1316,-1,1551,1003,1070,-1,1816,1003,1551,-1,1222,1070,1062,-1,1551,1070,1222,-1,1217,1142,1042,-1,1217,1222,1142,-1,796,791,913,-1,962,791,796,-1,473,1799,559,-1,1799,473,1722,-1,883,707,711,-1,883,857,707,-1,446,392,514,-1,446,393,392,-1,428,446,509,-1,446,428,421,-1,600,643,644,-1,643,600,598,-1,996,933,1028,-1,933,996,910,-1,418,349,276,-1,349,418,181,-1,1671,55,39,-1,55,1671,1630,-1,163,41,103,-1,41,163,158,-1,1753,171,179,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=18 */
		private int[] getfrontal_Geo_5_121_normalIndex_18()
		{
			int[] value = {1753,1745,171,-1,186,1522,178,-1,186,1770,1522,-1,1584,307,300,-1,307,1584,1707,-1,1607,310,307,-1,310,1607,1569,-1,421,245,769,-1,421,428,245,-1,605,652,1427,-1,605,604,652,-1,770,660,759,-1,803,660,770,-1,650,1189,1395,-1,650,658,1189,-1,1516,1274,810,-1,1274,1516,1822,-1,1274,831,909,-1,831,1274,1265,-1,586,810,640,-1,586,1516,810,-1,996,1083,1341,-1,996,977,1083,-1,777,609,119,-1,777,647,609,-1,1241,1536,955,-1,1536,1241,1918,-1,1065,1857,1444,-1,1857,1065,1309,-1,1707,1680,1607,-1,2453,1680,1707,-1,2622,1703,1781,-1,1703,2622,2447,-1,1745,2651,1693,-1,1745,2492,2651,-1,1261,2113,2705,-1,2507,2113,1261,-1,2249,2676,1873,-1,2249,2241,2676,-1,2426,2859,2744,-1,2859,2426,2863,-1,2854,2804,2875,-1,2854,2865,2804,-1,2723,2694,2754,-1,2723,2721,2694,-1,1710,2110,1717,-1,2110,1710,1839,-1,2011,1943,2069,-1,2011,1944,1943,-1,2131,2238,2102,-1,2131,2491,2238,-1,2108,2829,2165,-1,2691,2829,2108,-1,2150,2093,2153,-1,2096,2093,2150,-1,2740,1553,1947,-1,2740,2585,1553,-1,2210,2192,2198,-1,2210,2212,2192,-1,2272,2460,2470,-1,2460,2272,2538,-1,2777,2821,2801,-1,2319,2821,2777,-1,2824,2698,2807,-1,2824,2760,2698,-1,2306,2649,2670,-1,2649,2306,1790,-1,2649,2620,2698,-1,2662,2620,2649,-1,2721,2776,2777,-1,2776,2721,2723,-1,2801,2780,2777,-1,2801,2807,2780,-1,2683,2776,2774,-1,2776,2683,2664,-1,2692,2060,2319,-1,2281,2060,2692,-1,2800,2772,2811,-1,2772,2800,2711,-1,2704,2748,2742,-1,2748,2704,2711,-1,2728,2363,2652,-1,2842,2363,2728,-1,2779,2711,2800,-1,2745,2711,2779,-1,2605,2858,2855,-1,2858,2605,2837,-1,2808,2861,2814,-1,2871,2861,2808,-1,2756,2855,2856,-1,2756,2605,2855,-1,2903,2199,2904,-1,2903,2411,2199,-1,2633,2726,2658,-1,2490,2726,2633,-1,2033,2451,2128,-1,2033,2355,2451,-1,2235,2636,2525,-1,2235,2632,2636,-1,2307,2417,2490,-1,2417,2307,2255,-1,2179,2249,2237,-1,2179,2241,2249,-1,2867,2374,809,-1,2374,2867,2441,-1,2401,2113,2216,-1,2220,2113,2401,-1,809,2623,391,-1,809,2374,2623,-1,2411,2393,2222,-1,2411,2557,2393,-1,2793,2644,2576,-1,2644,2793,2673,-1,2514,2467,1423,-1,2514,2837,2467,-1,1693,2365,1698,-1,2651,2365,1693,-1,1193,2349,2353,-1,1193,2158,2349,-1,2250,2757,2429,-1,2250,2447,2757,-1,1935,2443,2577,-1,2443,1935,1966,-1,2821,2755,2665,-1,2821,2555,2755,-1,2897,2373,2587,-1,2652,2373,2897,-1,2718,1023,2306,-1,2718,1186,1023,-1,1201,1966,1935,-1,1966,1201,2201,-1,2897,2638,2909,-1,2897,2587,2638,-1,2137,2652,2363,-1,2373,2652,2137,-1,2799,1068,2798,-1,2799,769,1068,-1,2627,957,2298,-1,2627,1004,957,-1,2538,1016,1979,-1,2538,1278,1016,-1,2166,1195,2740,-1,2166,666,1195,-1,652,1960,914,-1,1960,652,2231,-1,235,2272,1828,-1,657,2272,235,-1,2835,1395,2607,-1,2835,1657,1395,-1,803,2215,1838,-1,803,1265,2215,-1,1189,1552,2297,-1,1189,546,1552,-1,1516,1460,2504,-1,1516,586,1460,-1,1864,516,866,-1,1864,1467,516,-1,1161,2502,2491,-1,1161,1554,2502,-1,2491,866,1161,-1,2491,1864,866,-1,2899,1516,2504,-1,2899,1822,1516,-1,931,2878,1442,-1,931,1857,2878,-1,1311,659,992,-1,1311,1391,659,-1,1810,1620,2483,-1,1810,1309,1620,-1,2402,1652,2568,-1,2402,2501,1652,-1,1230,2454,2204,-1,1230,2042,2454,-1,2008,2042,1283,-1,2008,2454,2042,-1,1031,916,1069,-1,916,1031,846,-1,275,196,246,-1,230,196,275,-1,211,479,438,-1,479,211,248,-1,619,442,525,-1,619,631,442,-1,633,419,606,-1,633,471,419,-1,201,312,439,-1,312,201,212,-1,670,722,755,-1,722,670,664,-1,840,686,725,-1,794,686,840,-1,44,1630,1766,-1,44,55,1630,-1,1008,829,787,-1,829,1008,1036,-1,1630,2222,1766,-1,2328,2222,1630,-1,720,788,680,-1,720,824,788,-1,2382,1941,2564,-1,2382,1653,1941,-1,2099,617,1513,-1,617,2099,1542,-1,1542,204,617,-1,1542,1546,204,-1,2180,2326,1205,-1,2180,2707,2326,-1,351,71,85,-1,346,71,351,-1,1210,535,665,-1,1210,1067,535,-1,1500,1464,1452,-1,903,1464,1500,-1,1556,366,623,-1,366,1556,1047,-1,1260,970,623,-1,1260,1360,970,-1,808,2403,2630,-1,808,729,2403,-1,1737,691,1392,-1,1737,958,691,-1,1563,1210,1365,-1,1563,1411,1210,-1,2809,2229,2823,-1,2378,2229,2809,-1,2116,2296,2309,-1,2116,2135,2296,-1,493,556,6,-1,493,440,556,-1,1121,952,885,-1,1134,952,1121,-1,570,579,545,-1,579,570,558,-1,2365,2498,2528,-1,2365,2847,2498,-1,1732,1279,924,-1,1279,1732,1930,-1,1831,1474,1786,-1,1831,1072,1474,-1,492,2083,847,-1,492,2464,2083,-1,659,955,976,-1,659,1241,955,-1,1185,1230,1468,-1,1185,1144,1230,-1,852,824,945,-1,852,854,824,-1,935,1180,945,-1,982,1180,935,-1,982,1194,1180,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=19 */
		private int[] getfrontal_Geo_5_121_normalIndex_19()
		{
			int[] value = {1161,870,910,-1,1161,866,870,-1,595,680,679,-1,595,514,680,-1,897,1019,982,-1,897,925,1019,-1,416,509,582,-1,416,432,509,-1,286,243,208,-1,251,243,286,-1,1054,1284,1393,-1,1054,1094,1284,-1,648,894,916,-1,648,794,894,-1,31,632,1656,-1,31,41,632,-1,1339,1738,1701,-1,1245,1738,1339,-1,95,181,135,-1,181,95,56,-1,635,558,588,-1,635,579,558,-1,946,986,1076,-1,946,843,986,-1,2599,1725,2428,-1,1725,2599,1738,-1,376,275,442,-1,230,275,376,-1,335,175,282,-1,335,294,175,-1,226,133,132,-1,226,86,133,-1,603,471,633,-1,464,471,603,-1,1531,1664,1438,-1,1664,1531,1673,-1,1303,1138,836,-1,1160,1138,1303,-1,1673,1682,1454,-1,1682,1673,1531,-1,1174,1064,1454,-1,1064,1174,1118,-1,1084,867,768,-1,1084,1349,867,-1,867,1012,1070,-1,867,1131,1012,-1,1084,942,1027,-1,1084,994,942,-1,1033,1163,1356,-1,1163,1033,1099,-1,1021,946,1152,-1,1027,946,1021,-1,1205,2148,811,-1,2148,1205,2326,-1,1851,2135,1904,-1,1851,2021,2135,-1,569,705,417,-1,703,705,569,-1,1140,1291,1115,-1,1140,1342,1291,-1,1322,1627,1746,-1,1627,1322,1181,-1,2019,1619,1669,-1,1619,2019,1819,-1,1440,1634,1258,-1,1440,1602,1634,-1,2786,2813,2912,-1,2786,2628,2813,-1,2813,2479,2219,-1,2628,2479,2813,-1,1880,1117,1347,-1,1117,1880,1831,-1,1117,1786,890,-1,1831,1786,1117,-1,417,731,539,-1,731,417,705,-1,2158,2700,2349,-1,2432,2700,2158,-1,2098,2187,2456,-1,2098,2224,2187,-1,2671,2762,2791,-1,2574,2762,2671,-1,2791,2761,2671,-1,2766,2761,2791,-1,2531,2775,2669,-1,2712,2775,2531,-1,2711,2754,2772,-1,2711,2704,2754,-1,2592,2703,2675,-1,2669,2703,2592,-1,2554,2661,2537,-1,2554,2694,2661,-1,2592,2485,2487,-1,2565,2485,2592,-1,2221,2315,2291,-1,2315,2221,2242,-1,2335,2565,2431,-1,2485,2565,2335,-1,2386,2537,2375,-1,2554,2537,2386,-1,2233,2189,2375,-1,2181,2189,2233,-1,2193,2434,2203,-1,2193,2431,2434,-1,2309,2056,2116,-1,2056,2309,2347,-1,1791,2056,2070,-1,2056,1791,1807,-1,1895,2203,1963,-1,2193,2203,1895,-1,2054,2181,2057,-1,2189,2181,2054,-1,1956,1827,2058,-1,1956,1951,1827,-1,1792,2029,1809,-1,1792,2004,2029,-1,1823,1595,1566,-1,1595,1823,1843,-1,1582,1865,1579,-1,1582,1904,1865,-1,1478,1595,1479,-1,1566,1595,1478,-1,1482,1809,1483,-1,1792,1809,1482,-1,2729,1493,1494,-1,2729,2367,1493,-1,971,1154,1293,-1,1255,1154,971,-1,858,771,1187,-1,771,858,687,-1,2639,2440,2320,-1,2440,2639,2767,-1,1041,1946,1844,-1,1946,1041,993,-1,2053,1773,1808,-1,2053,1847,1773,-1,1465,1116,1529,-1,1116,1465,756,-1,2202,2186,2170,-1,2202,2226,2186,-1,1200,2596,2749,-1,1200,1545,2596,-1,2852,1761,1866,-1,2852,2898,1761,-1,740,1420,638,-1,740,1567,1420,-1,2715,2741,2690,-1,2751,2741,2715,-1,2641,2612,2613,-1,2617,2612,2641,-1,2106,2129,2079,-1,2129,2106,2139,-1,2182,2097,2129,-1,2182,2159,2097,-1,2079,2027,2081,-1,2032,2027,2079,-1,1588,1628,1629,-1,1588,1515,1628,-1,319,1287,1336,-1,319,429,1287,-1,2741,1145,2739,-1,1182,1145,2741,-1,2626,1434,2625,-1,2626,1388,1434,-1,1949,2506,2688,-1,2503,2506,1949,-1,2415,2344,1651,-1,2415,2342,2344,-1,2415,1776,2410,-1,1557,1776,2415,-1,2169,2278,2167,-1,2284,2278,2169,-1,2631,2283,2391,-1,2274,2283,2631,-1,2556,2345,1758,-1,2556,2261,2345,-1,1971,1686,1978,-1,1971,1863,1686,-1,1638,1677,2442,-1,1677,1638,1294,-1,1836,1020,1752,-1,1836,1434,1020,-1,448,1331,1385,-1,1331,448,358,-1,65,144,121,-1,65,77,144,-1,1281,1247,1130,-1,1281,1237,1247,-1,483,1238,1477,-1,483,868,1238,-1,1696,1237,1234,-1,1696,1350,1237,-1,1130,1009,1002,-1,1130,1061,1009,-1,1011,1001,1002,-1,1011,959,1001,-1,1119,998,1001,-1,998,1119,990,-1,828,837,834,-1,837,828,839,-1,693,837,839,-1,832,837,693,-1,1034,157,760,-1,1034,101,157,-1,426,735,724,-1,735,426,636,-1,321,724,721,-1,724,321,94,-1,736,373,460,-1,736,634,373,-1,572,459,462,-1,572,467,459,-1,395,1037,254,-1,395,1123,1037,-1,151,242,153,-1,151,616,242,-1,338,131,269,-1,338,983,131,-1,207,155,216,-1,153,155,207,-1,268,939,485,-1,268,255,939,-1,118,189,156,-1,118,114,189,-1,180,589,182,-1,180,232,589,-1,466,7,8,-1,7,466,505,-1,38,88,59,-1,38,45,88,-1,69,328,59,-1,69,173,328,-1,9,29,54,-1,29,9,8,-1,18,65,53,-1,18,19,65,-1,895,819,746,-1,895,853,819,-1,390,411,358,-1,390,293,411,-1,266,358,448,-1,390,358,266,-1,692,709,752,-1,668,709,692,-1,396,543,815,-1,396,776,543,-1,2304,505,466,-1,2304,372,505,-1,608,689,530,-1,608,734,689,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=20 */
		private int[] getfrontal_Geo_5_121_normalIndex_20()
		{
			int[] value = {382,429,415,-1,382,544,429,-1,285,500,259,-1,285,165,500,-1,407,1545,422,-1,407,639,1545,-1,279,79,328,-1,279,571,79,-1,458,193,291,-1,458,134,193,-1,287,87,481,-1,287,306,87,-1,1991,267,1022,-1,1991,174,267,-1,488,688,37,-1,1292,688,488,-1,434,485,2001,-1,434,100,485,-1,1767,531,213,-1,1767,2371,531,-1,688,1991,1022,-1,1991,688,1292,-1,495,87,306,-1,87,495,172,-1,134,639,407,-1,134,458,639,-1,131,2223,1878,-1,983,2223,131,-1,856,2513,1158,-1,856,2540,2513,-1,1687,661,398,-1,1687,2280,661,-1,1034,2267,2043,-1,760,2267,1034,-1,2437,348,1419,-1,1376,348,2437,-1,2285,254,1037,-1,2285,1776,254,-1,1317,97,94,-1,1317,1362,97,-1,1105,2558,1229,-1,1105,2123,2558,-1,1575,638,1765,-1,638,1575,321,-1,1506,2354,1507,-1,1506,2293,2354,-1,704,681,1063,-1,704,694,681,-1,2327,224,1638,-1,224,2327,1063,-1,1702,1501,2424,-1,1702,723,1501,-1,2034,2381,1643,-1,2034,2313,2381,-1,160,1858,1600,-1,160,1432,1858,-1,1580,1715,673,-1,1580,2277,1715,-1,877,1817,2176,-1,877,1712,1817,-1,2687,2494,2476,-1,2687,2655,2494,-1,2351,2372,2380,-1,2351,2392,2372,-1,2325,2104,2256,-1,2325,2321,2104,-1,2619,2563,2663,-1,2619,2575,2563,-1,2092,1999,2055,-1,2092,2041,1999,-1,2759,2722,2787,-1,2722,2759,2715,-1,2582,1767,2533,-1,2582,2371,1767,-1,2484,2511,2581,-1,2511,2484,2383,-1,2303,2256,2125,-1,2256,2303,2333,-1,2659,2619,2695,-1,2659,2608,2619,-1,2175,2366,2300,-1,2366,2175,2168,-1,2136,2422,2448,-1,2136,2246,2422,-1,2773,2629,2822,-1,2773,2674,2629,-1,2038,2006,1965,-1,2006,2038,2103,-1,1849,1085,2302,-1,1085,1849,1010,-1,1450,1849,2311,-1,1450,1318,1849,-1,568,1450,487,-1,1318,1450,568,-1,1000,1528,359,-1,1528,1000,2489,-1,2914,2906,2714,-1,2906,2914,2195,-1,1622,564,1911,-1,1622,534,564,-1,1379,1046,663,-1,1046,1379,1386,-1,2668,2708,2482,-1,2668,2830,2708,-1,1403,816,1457,-1,812,816,1403,-1,1304,1399,1868,-1,1304,1039,1399,-1,1953,1675,2318,-1,1953,1591,1675,-1,1734,1386,1670,-1,1734,1538,1386,-1,2240,1670,2338,-1,1734,1670,2240,-1,1874,1372,1583,-1,1727,1372,1874,-1,2263,2350,2174,-1,2350,2263,2247,-1,1713,1721,1207,-1,1721,1713,1804,-1,2340,2000,2155,-1,2118,2000,2340,-1,360,830,581,-1,360,578,830,-1,645,790,626,-1,645,817,790,-1,2379,2449,2920,-1,2379,2495,2449,-1,1948,1830,2051,-1,1830,1948,1815,-1,2360,2370,2400,-1,2380,2370,2360,-1,436,571,405,-1,436,79,571,-1,1686,1226,2014,-1,1057,1226,1686,-1,1466,1104,1157,-1,1466,1866,1104,-1,851,2450,2087,-1,851,476,2450,-1,1988,2277,1972,-1,1988,1715,2277,-1,1922,1975,1785,-1,1922,1981,1975,-1,1628,1487,1772,-1,1628,1649,1487,-1,2184,2139,2254,-1,2184,2182,2139,-1,2103,2213,2120,-1,2173,2213,2103,-1,2173,2262,2213,-1,1489,1759,1488,-1,1759,1489,1709,-1,566,1038,1224,-1,566,352,1038,-1,2310,2406,2270,-1,2472,2406,2310,-1,2406,2472,2448,-1,1490,1709,1489,-1,1709,1490,1576,-1,1263,1683,1446,-1,1683,1263,1640,-1,2510,2684,2461,-1,2701,2684,2510,-1,1850,1999,1861,-1,1850,2055,1999,-1,1850,2022,2055,-1,2614,2784,2868,-1,2795,2784,2614,-1,2701,2559,2702,-1,2701,2510,2559,-1,2091,1905,2175,-1,2091,2022,1905,-1,1711,1800,1850,-1,1711,1739,1800,-1,1915,2175,1905,-1,2082,2175,1915,-1,2366,2476,2314,-1,2476,2366,2414,-1,2731,2610,2539,-1,2731,2499,2610,-1,2523,2604,2792,-1,2523,2496,2604,-1,1532,1969,2125,-1,1437,1969,1532,-1,1307,1498,1559,-1,1498,1307,1305,-1,2082,1689,2168,-1,2082,1659,1689,-1,1370,1055,1056,-1,1370,1199,1055,-1,2013,1969,1779,-1,2074,1969,2013,-1,889,1327,1312,-1,1327,889,1344,-1,2105,1834,2171,-1,2105,1648,1834,-1,1908,2105,1872,-1,1908,1771,2105,-1,1942,1834,1912,-1,1942,1929,1834,-1,1826,1902,1631,-1,1841,1902,1826,-1,1992,1934,1787,-1,1934,1992,1912,-1,817,1107,1071,-1,817,963,1107,-1,2239,2385,2562,-1,2385,2239,2208,-1,1684,1811,1835,-1,1684,1637,1811,-1,1684,1352,1314,-1,1684,1655,1352,-1,806,1314,917,-1,806,1223,1314,-1,999,1298,1191,-1,1298,999,1026,-1,159,22,130,-1,22,159,46,-1,408,806,512,-1,785,806,408,-1,2594,1304,1508,-1,1304,2594,2591,-1,2926,2177,2886,-1,2138,2177,2926,-1,1059,953,858,-1,1059,1082,953,-1,443,328,173,-1,443,279,328,-1,678,828,911,-1,678,681,828,-1,560,225,378,-1,560,319,225,-1,52,90,77,-1,52,58,90,-1,90,154,144,-1,154,90,117,-1,474,221,205,-1,474,406,221,-1,134,149,182,-1,134,407,149,-1,257,189,229,-1,257,252,189,-1,257,374,343,-1,257,339,374,-1,584,406,474,-1,541,406,584,-1,385,527,552,-1,527,385,371,-1,733,700,750,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=21 */
		private int[] getfrontal_Geo_5_121_normalIndex_21()
		{
			int[] value = {739,700,733,-1,728,527,502,-1,527,728,716,-1,592,860,601,-1,592,861,860,-1,738,1097,1052,-1,1097,738,795,-1,908,742,743,-1,908,882,742,-1,882,1139,1136,-1,882,908,1139,-1,1052,1373,1302,-1,1052,1097,1373,-1,1380,1166,1111,-1,1166,1380,1353,-1,1478,1374,1475,-1,1478,1402,1374,-1,1151,1481,1482,-1,1481,1151,1196,-1,1126,1485,1472,-1,1485,1126,1135,-1,563,1494,1493,-1,563,200,1494,-1,1472,1275,1281,-1,1472,1470,1275,-1,1135,1484,1485,-1,1484,1135,1136,-1,1196,1480,1481,-1,1480,1196,1302,-1,1475,1353,1469,-1,1475,1374,1353,-1,1373,1128,1402,-1,1097,1128,1373,-1,908,1151,1139,-1,908,938,1151,-1,1126,998,875,-1,1126,1001,998,-1,750,882,876,-1,882,750,742,-1,728,1052,984,-1,1052,728,738,-1,861,1156,860,-1,1166,1156,861,-1,861,626,790,-1,592,626,861,-1,502,738,728,-1,502,504,738,-1,742,700,562,-1,700,742,750,-1,400,552,562,-1,552,400,385,-1,374,601,504,-1,601,374,452,-1,625,773,654,-1,690,773,625,-1,452,339,450,-1,339,452,374,-1,270,385,400,-1,270,238,385,-1,176,252,238,-1,252,176,189,-1,121,229,189,-1,229,121,144,-1,59,91,69,-1,91,59,88,-1,117,221,154,-1,221,117,162,-1,47,117,90,-1,47,72,117,-1,59,79,38,-1,328,79,59,-1,2190,869,792,-1,1909,869,2190,-1,2234,1187,2679,-1,2234,1409,1187,-1,2806,2143,2317,-1,2389,2143,2806,-1,457,147,838,-1,147,457,325,-1,147,130,22,-1,147,325,130,-1,1637,1314,1223,-1,1637,1684,1314,-1,1811,1741,2035,-1,1645,1741,1811,-1,1835,2208,2239,-1,1835,1811,2208,-1,1909,1066,869,-1,1909,1853,1066,-1,1934,1882,1787,-1,1958,1882,1934,-1,1993,1940,1841,-1,1940,1993,1994,-1,1320,1726,1724,-1,1573,1726,1320,-1,1312,1512,1296,-1,1312,1327,1512,-1,1586,1199,1370,-1,1586,1334,1199,-1,1296,1559,1312,-1,1559,1296,1307,-1,1689,1590,1803,-1,1689,1405,1590,-1,2226,2125,1969,-1,2202,2125,2226,-1,2321,2640,2635,-1,2321,2325,2640,-1,2414,2321,2635,-1,2305,2321,2414,-1,1879,1739,1721,-1,1879,1800,1739,-1,5,517,331,-1,5,120,517,-1,2118,1942,2089,-1,2118,1929,1942,-1,2510,2392,2559,-1,2510,2372,2392,-1,2782,2719,2616,-1,2719,2782,2717,-1,2846,1232,2892,-1,2846,1331,1232,-1,331,1263,1492,-1,1263,331,1220,-1,2348,2510,2461,-1,2510,2348,2372,-1,2727,2719,2717,-1,2727,2713,2719,-1,2850,2893,2833,-1,2893,2850,2892,-1,1640,1875,1683,-1,1875,1640,1861,-1,1576,1491,1446,-1,1576,1490,1491,-1,2448,2549,2406,-1,2448,2532,2549,-1,2448,2422,2532,-1,2749,2759,2778,-1,2759,2749,2735,-1,2615,2625,2561,-1,2615,2626,2625,-1,1709,1965,1759,-1,1965,1709,1925,-1,2262,2383,2213,-1,2262,2399,2383,-1,2421,1651,2344,-1,2450,1651,2421,-1,2006,2106,1995,-1,2006,2120,2106,-1,1924,1772,1995,-1,1924,1922,1772,-1,1649,1425,1486,-1,1649,1661,1425,-1,1651,476,40,-1,476,1651,2450,-1,1600,2014,1226,-1,1600,1858,2014,-1,1677,1663,2442,-1,1663,1677,763,-1,1815,1684,1830,-1,1655,1684,1815,-1,356,873,891,-1,710,873,356,-1,2852,2109,2163,-1,2852,2902,2109,-1,122,792,303,-1,792,122,548,-1,356,412,195,-1,412,356,447,-1,365,254,105,-1,254,365,395,-1,1014,1051,1055,-1,1014,778,1051,-1,474,625,654,-1,435,625,474,-1,2815,2926,2886,-1,2815,2870,2926,-1,2580,1399,2318,-1,1868,1399,2580,-1,1464,1457,1452,-1,1457,1464,2020,-1,2848,2830,2891,-1,2708,2830,2848,-1,2384,1734,2240,-1,2384,1845,1734,-1,2853,2594,2845,-1,2594,2853,2591,-1,1887,614,1622,-1,614,1887,1227,-1,548,845,1854,-1,548,290,845,-1,2730,1171,2311,-1,2730,1271,1171,-1,2311,827,1450,-1,1171,827,2311,-1,1010,568,375,-1,1010,1318,568,-1,2139,2213,2253,-1,2139,2106,2213,-1,714,1343,1242,-1,1343,714,608,-1,2101,1945,2145,-1,2002,1945,2101,-1,1343,2882,1242,-1,1343,2873,2882,-1,2787,2773,2883,-1,2773,2787,2725,-1,2300,2091,2175,-1,2300,2196,2091,-1,2511,2406,2549,-1,2511,2399,2406,-1,2571,2610,2465,-1,2571,2699,2610,-1,2305,2104,2321,-1,2104,2305,2015,-1,2380,2348,2370,-1,2348,2380,2372,-1,2770,2702,2732,-1,2702,2770,2701,-1,2843,2614,2699,-1,2843,2795,2614,-1,332,637,299,-1,260,637,332,-1,260,386,637,-1,1847,1424,1773,-1,1612,1424,1847,-1,988,1663,823,-1,1635,1663,988,-1,483,1497,454,-1,483,1477,1497,-1,549,2176,727,-1,549,877,2176,-1,1324,497,454,-1,1324,336,497,-1,1350,1137,453,-1,1350,1665,1137,-1,2277,1662,1959,-1,2277,1580,1662,-1,49,2009,1526,-1,49,1096,2009,-1,1456,25,431,-1,1456,1129,25,-1,2067,445,1794,-1,2067,1114,445,-1,433,1794,445,-1,433,1445,1794,-1,2424,1114,2067,-1,2424,1501,1114,-1,1507,1456,431,-1,1507,2354,1456,-1,1420,1765,638,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=22 */
		private int[] getfrontal_Geo_5_121_normalIndex_22()
		{
			int[] value = {1420,2391,1765,-1,718,2123,1105,-1,718,1700,2123,-1,1575,94,321,-1,1575,1317,94,-1,661,2697,1123,-1,2697,661,2280,-1,989,2282,2024,-1,701,2282,989,-1,1758,760,187,-1,1758,2267,760,-1,1937,398,965,-1,1937,1687,398,-1,1985,299,637,-1,1985,1949,299,-1,1878,129,131,-1,1878,2161,129,-1,277,789,573,-1,789,277,566,-1,465,28,15,-1,465,352,28,-1,978,1752,1020,-1,804,1752,978,-1,1927,213,629,-1,1927,1767,213,-1,566,28,352,-1,28,566,277,-1,174,107,267,-1,174,384,107,-1,496,1020,361,-1,978,1020,496,-1,172,682,511,-1,172,495,682,-1,589,1760,587,-1,589,775,1760,-1,571,1273,1290,-1,1273,571,279,-1,470,422,1545,-1,470,92,422,-1,285,138,357,-1,259,138,285,-1,544,528,714,-1,544,382,528,-1,305,2119,2546,-1,305,565,2119,-1,820,537,717,-1,537,820,715,-1,565,61,2119,-1,499,61,565,-1,683,752,695,-1,683,692,752,-1,522,627,475,-1,676,627,522,-1,293,696,411,-1,293,342,696,-1,491,904,799,-1,491,585,904,-1,7,30,29,-1,7,4,30,-1,57,29,30,-1,57,66,29,-1,118,69,91,-1,118,70,69,-1,172,185,202,-1,185,172,511,-1,185,216,202,-1,228,216,185,-1,270,151,209,-1,270,148,151,-1,688,267,107,-1,688,1022,267,-1,368,338,364,-1,338,368,332,-1,978,124,102,-1,978,496,124,-1,281,629,261,-1,1158,629,281,-1,233,109,123,-1,233,168,109,-1,107,151,127,-1,151,107,616,-1,739,724,735,-1,739,721,724,-1,1419,187,1007,-1,1419,348,187,-1,837,783,781,-1,783,837,832,-1,99,823,763,-1,823,99,224,-1,694,839,828,-1,694,445,839,-1,990,1635,988,-1,990,1057,1635,-1,959,863,160,-1,1011,863,959,-1,1555,1061,1102,-1,1555,2034,1061,-1,1763,1234,1238,-1,1763,1977,1234,-1,16,77,65,-1,16,52,77,-1,64,272,318,-1,62,272,64,-1,484,550,744,-1,484,494,550,-1,819,273,387,-1,273,819,668,-1,1287,544,1242,-1,429,544,1287,-1,279,1213,1273,-1,279,443,1213,-1,1257,306,1170,-1,495,306,1257,-1,1432,1715,1988,-1,1032,1715,1432,-1,2327,2152,2810,-1,2327,2288,2152,-1,1863,1957,1638,-1,1863,1971,1957,-1,2117,2354,2293,-1,2117,1456,2354,-1,2097,1690,2028,-1,1700,1690,2097,-1,1690,1456,2117,-1,1129,1456,1690,-1,1765,2284,1575,-1,1765,2278,2284,-1,2274,2159,2167,-1,2159,2274,2123,-1,2282,2331,1540,-1,2282,2332,2331,-1,2688,2515,2161,-1,2688,2506,2515,-1,2618,1357,2621,-1,1398,1357,2618,-1,2621,1388,2626,-1,1253,1388,2621,-1,1447,2741,2751,-1,1447,1182,2741,-1,2758,1200,2749,-1,2758,1213,1200,-1,2866,2764,2803,-1,2769,2764,2866,-1,2873,1306,2887,-1,1343,1306,2873,-1,2584,2520,2654,-1,2746,2520,2584,-1,2007,1957,1923,-1,2026,1957,2007,-1,2290,2336,2289,-1,2339,2336,2290,-1,2452,2506,2430,-1,2515,2506,2452,-1,2226,2085,2186,-1,2226,2074,2085,-1,1147,2480,2376,-1,1236,2480,1147,-1,1565,1465,2036,-1,1198,1465,1565,-1,2535,2480,2767,-1,2535,2376,2480,-1,2535,1147,2376,-1,1159,1147,2535,-1,1800,1726,1905,-1,1800,1724,1726,-1,1797,1726,1573,-1,1797,1915,1726,-1,1939,1459,1872,-1,1459,1939,1132,-1,2367,1499,1493,-1,2367,2294,1499,-1,1470,1716,1477,-1,1695,1716,1470,-1,1483,1813,1484,-1,1809,1813,1483,-1,1479,1672,1480,-1,1595,1672,1479,-1,1315,1610,1469,-1,1579,1610,1315,-1,1807,1579,1865,-1,1610,1579,1807,-1,1595,1895,1672,-1,1595,1843,1895,-1,1809,2054,1813,-1,1809,2029,2054,-1,2189,2029,2188,-1,2189,2054,2029,-1,1843,2193,1895,-1,2133,2193,1843,-1,1807,2116,2056,-1,2116,1807,1865,-1,2133,2431,2193,-1,2133,2335,2431,-1,2375,2188,2386,-1,2189,2188,2375,-1,2473,2375,2537,-1,2473,2471,2375,-1,2431,2590,2434,-1,2565,2590,2431,-1,2356,2309,2296,-1,2356,2423,2309,-1,2487,2347,2423,-1,2347,2487,2485,-1,2567,2694,2554,-1,2567,2681,2694,-1,2487,2669,2592,-1,2396,2669,2487,-1,2738,2766,2712,-1,2761,2766,2738,-1,2839,2874,2849,-1,2839,2880,2874,-1,2709,2377,2572,-1,2709,2609,2377,-1,2102,2227,2025,-1,2102,2265,2227,-1,2601,2492,2756,-1,2601,2651,2492,-1,2224,2750,2550,-1,2358,2750,2224,-1,621,1786,556,-1,621,890,1786,-1,1900,2479,1932,-1,2479,1900,2219,-1,2127,2519,2404,-1,2519,2127,2151,-1,2912,2789,2786,-1,2901,2789,2912,-1,2178,2077,1914,-1,2178,2425,2077,-1,2134,1746,1627,-1,1746,2134,2151,-1,1819,1744,1619,-1,1744,1819,1805,-1,1743,1322,1746,-1,1743,1342,1322,-1,1181,1140,900,-1,1140,1181,1322,-1,703,1115,705,-1,703,1140,1115,-1,1906,1045,2072,-1,1906,1120,1045,-1,2650,1720,2536,-1,2650,1859,1720,-1,1153,1021,1152,-1,1021,1153,997,-1,772,986,843,-1,772,1033,986,-1,1027,1190,1084,-1,1027,997,1190,-1,1027,1021,997,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=23 */
		private int[] getfrontal_Geo_5_121_normalIndex_23()
		{
			int[] value = {1084,732,994,-1,1084,768,732,-1,1197,1531,980,-1,1197,1682,1531,-1,1594,1410,1642,-1,1410,1594,1458,-1,301,613,295,-1,301,610,613,-1,613,533,295,-1,533,613,628,-1,942,805,843,-1,942,994,805,-1,547,425,376,-1,547,567,425,-1,212,145,312,-1,214,145,212,-1,1723,82,33,-1,1723,1533,82,-1,1701,2599,1492,-1,1738,2599,1701,-1,425,591,479,-1,567,591,425,-1,212,203,214,-1,212,220,203,-1,27,76,96,-1,33,76,27,-1,1069,1339,1284,-1,1086,1339,1069,-1,404,545,489,-1,545,404,362,-1,1031,1284,1094,-1,1069,1284,1031,-1,1019,1393,1250,-1,1054,1393,1019,-1,722,624,846,-1,722,664,624,-1,258,304,197,-1,258,353,304,-1,194,243,251,-1,188,243,194,-1,302,313,377,-1,302,300,313,-1,982,1250,1194,-1,1019,1250,982,-1,553,670,720,-1,553,536,670,-1,1325,520,594,-1,520,1325,492,-1,824,935,945,-1,824,807,935,-1,1180,1025,945,-1,1180,1030,1025,-1,1543,1330,1486,-1,1543,1329,1330,-1,2464,1325,2857,-1,492,1325,2464,-1,924,1368,1732,-1,924,1088,1368,-1,1310,1295,498,-1,2165,1295,1310,-1,1291,1134,1121,-1,1134,1291,1321,-1,2059,2550,2044,-1,2550,2059,2224,-1,842,74,774,-1,842,23,74,-1,2825,2917,2884,-1,2825,2823,2917,-1,2148,2788,2660,-1,2326,2788,2148,-1,2593,2627,2598,-1,2593,2040,2627,-1,246,190,295,-1,190,246,196,-1,691,280,110,-1,691,958,280,-1,653,1691,1910,-1,1691,653,346,-1,535,444,665,-1,535,215,444,-1,1577,1365,1436,-1,1577,1563,1365,-1,1091,2180,1205,-1,1859,2180,1091,-1,2809,2765,2536,-1,2809,2907,2765,-1,17,10,219,-1,745,10,17,-1,1453,2018,2497,-1,437,2018,1453,-1,1513,2382,2459,-1,2382,1513,1653,-1,2879,2420,2459,-1,2879,2648,2420,-1,2890,2597,2844,-1,2597,2890,2564,-1,680,553,720,-1,553,680,490,-1,377,393,446,-1,393,377,347,-1,508,489,686,-1,508,486,489,-1,916,941,1069,-1,894,941,916,-1,201,237,212,-1,274,237,201,-1,829,825,755,-1,897,825,829,-1,104,55,44,-1,104,48,55,-1,304,208,197,-1,304,286,208,-1,841,725,737,-1,880,725,841,-1,536,664,670,-1,664,536,532,-1,50,312,145,-1,50,297,312,-1,610,464,603,-1,610,301,464,-1,177,248,211,-1,248,177,231,-1,1144,2042,1230,-1,1144,1283,2042,-1,1241,1391,2257,-1,1241,659,1391,-1,1088,2768,1368,-1,1088,1536,2768,-1,557,901,1337,-1,557,576,901,-1,1467,1262,516,-1,1467,2211,1262,-1,2691,609,1341,-1,1926,609,2691,-1,2265,2228,1926,-1,2265,2238,2228,-1,586,1462,1460,-1,586,640,1462,-1,2297,1395,1189,-1,2607,1395,2297,-1,380,1838,1729,-1,380,803,1838,-1,2832,1657,2835,-1,2832,1603,1657,-1,2678,649,1913,-1,2678,1177,649,-1,2585,501,1553,-1,501,2585,1592,-1,666,1917,892,-1,1917,666,2166,-1,2272,1278,2538,-1,2272,657,1278,-1,423,2075,1790,-1,423,397,2075,-1,712,2798,1068,-1,2798,712,1964,-1,2295,2796,2529,-1,2295,2478,2796,-1,2842,2447,2622,-1,2757,2447,2842,-1,949,2245,1928,-1,1680,2245,949,-1,2407,1186,2718,-1,2407,575,1186,-1,2455,2493,940,-1,2455,2827,2493,-1,2245,2453,2889,-1,2453,2245,1680,-1,2665,949,1928,-1,2665,2755,949,-1,2842,2642,2458,-1,2842,2622,2642,-1,2734,2478,2637,-1,2734,2796,2478,-1,2847,2651,2601,-1,2847,2365,2651,-1,1423,2529,2514,-1,1423,2295,2529,-1,2438,2644,2673,-1,2438,2763,2644,-1,1656,2507,1261,-1,2583,2507,1656,-1,2199,2222,2328,-1,2222,2199,2411,-1,2312,2408,2416,-1,2312,2244,2408,-1,2266,2113,2507,-1,2266,2216,2113,-1,391,2469,632,-1,2623,2469,391,-1,2264,2068,2346,-1,2264,2225,2068,-1,2398,2726,2457,-1,2726,2398,2689,-1,2632,2709,2572,-1,2632,2235,2709,-1,2426,2255,2307,-1,2426,2419,2255,-1,2237,2693,2179,-1,2237,2744,2693,-1,2908,2411,2903,-1,2557,2411,2908,-1,2925,2877,2905,-1,2925,2871,2877,-1,2910,2569,2888,-1,2600,2569,2910,-1,2312,2905,2244,-1,2312,2925,2905,-1,2861,2841,2814,-1,2861,2876,2841,-1,2514,2779,2837,-1,2514,2529,2779,-1,2349,2748,2745,-1,2349,2700,2748,-1,2737,2811,2772,-1,2737,2814,2811,-1,2003,2664,2455,-1,2003,2677,2664,-1,2774,2723,2716,-1,2723,2774,2776,-1,2798,2593,2662,-1,2798,1964,2593,-1,2692,2777,2776,-1,2692,2319,2777,-1,1913,2542,2678,-1,1913,1828,2542,-1,2477,2364,2471,-1,2477,2468,2364,-1,2566,2197,2475,-1,2566,2301,2197,-1,2210,2607,2212,-1,2835,2607,2210,-1,2198,2508,2210,-1,2299,2508,2198,-1,2771,1917,2166,-1,2771,2826,1917,-1,2093,2232,2131,-1,2232,2093,2096,-1,2093,2102,2095,-1,2131,2102,2093,-1,1956,1829,1951,-1,1984,1829,1956,-1,1951,1943,1950,-1,1951,1983,1943,-1,1944,1821,1950,-1,1944,1884,1821,-1,1719,1695,1685,-1,1719,1716,1695,-1,2334,2233,2364,-1,2192,2233,2334,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=24 */
		private int[] getfrontal_Geo_5_121_normalIndex_24()
		{
			int[] value = {1533,2488,1625,-1,2579,2488,1533,-1,2755,1607,949,-1,1569,1607,2755,-1,955,985,979,-1,985,955,1536,-1,1088,961,972,-1,1088,924,961,-1,640,909,905,-1,640,810,909,-1,892,1266,666,-1,1777,1266,892,-1,596,529,524,-1,596,598,529,-1,501,1195,383,-1,1592,1195,501,-1,1278,600,607,-1,600,1278,657,-1,1534,300,302,-1,1534,1584,300,-1,1801,186,188,-1,186,1801,1770,-1,1692,2609,1644,-1,1692,2505,2609,-1,1346,1408,1345,-1,1346,1407,1408,-1,915,854,852,-1,854,915,905,-1,831,749,797,-1,831,770,749,-1,797,824,854,-1,788,824,797,-1,315,288,314,-1,288,315,311,-1,186,217,243,-1,217,186,178,-1,1552,2191,2297,-1,1552,1401,2191,-1,1209,74,1072,-1,1209,32,74,-1,334,1753,179,-1,334,1423,1753,-1,711,730,786,-1,711,707,730,-1,1795,1503,1412,-1,2172,1503,1795,-1,1173,1077,1354,-1,1077,1173,1251,-1,1954,1594,1889,-1,1596,1594,1954,-1,1789,265,401,-1,1789,1764,265,-1,2140,1756,2368,-1,1756,2140,2369,-1,1623,1510,1316,-1,1623,1806,1510,-1,2560,2185,2916,-1,2185,2560,2243,-1,239,477,341,-1,239,1133,477,-1,758,761,1736,-1,761,758,697,-1,263,944,612,-1,944,263,862,-1,2065,1106,1473,-1,2065,1387,1106,-1,899,1521,912,-1,1505,1521,899,-1,2086,1289,1585,-1,1060,1289,2086,-1,1560,1351,2369,-1,1351,1560,1268,-1,1476,1609,1714,-1,1609,1476,1233,-1,1005,991,936,-1,929,991,1005,-1,1215,1380,1111,-1,1348,1380,1215,-1,806,932,1223,-1,806,937,932,-1,1366,1430,1893,-1,1430,1366,1333,-1,1780,1428,2390,-1,1406,1428,1780,-1,1366,2390,1428,-1,1366,2395,2390,-1,1175,1443,1107,-1,1406,1443,1175,-1,430,936,198,-1,1005,936,430,-1,991,779,922,-1,656,779,991,-1,1026,1523,1298,-1,1523,1026,964,-1,227,60,394,-1,60,227,316,-1,227,1390,1431,-1,698,1390,227,-1,1914,1258,1634,-1,1914,2077,1258,-1,2445,1298,1523,-1,2445,1730,1298,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getfrontal_Coord_6_121_point_1()
		{
			double[] value = {-0.7334,57.9822,3.0009,-0.7438,58.0201,3.0232,-0.7972,58.0182,3.0125,-0.5818,57.8245,2.8115,-0.5151,57.7903,2.804,-0.5825,57.822,2.8132,-0.6486,57.8627,2.8762,-0.6398,57.8636,2.8742,-0.6471,57.9078,2.952,0.7583,57.884,2.7883,0.5494,57.8275,2.7321,0.7542,57.8883,2.7116,0.7578,57.8503,2.7851,0.7774,57.8441,2.7796,0.7825,57.8536,2.868,0.7458,57.8594,2.8772,0.7752,57.8619,2.7758,0.7732,57.8806,2.7631,0.9727,57.85,2.7127,0.7421,57.8684,2.8806,0.8036,57.8777,2.9032,0.8065,57.9005,2.9141,0.7528,57.8599,2.7793,0.7693,57.8835,2.755,0.7499,57.8893,2.8896,0.8066,57.9033,2.9172,-0.4533,57.9758,3.0919,-0.5213,57.8791,2.9736,-0.4756,57.8567,2.9813,-0.4135,57.7159,2.8239,-0.3613,57.6274,2.7822,-0.412,57.7183,2.8329,-0.5432,57.8879,2.9688,-0.7725,57.8605,2.8339,-0.7742,57.8636,2.8621,-0.9802,57.8497,2.8308,-1.2265,57.7178,2.72,-0.9782,57.8393,2.8018,-0.6786,57.8372,2.8675,-0.6854,57.8462,2.8886,-0.7752,57.8653,2.8804,-0.6628,57.9082,2.9502,-0.679,57.9002,2.9487,-0.5933,57.8102,2.8549,-0.5814,57.8414,2.8669,-0.5886,57.8372,2.8508,-0.511,57.7853,2.8561,-0.5155,57.7783,2.8349,0.0,57.6801,2.9905,-0.0001,57.5755,2.9697,0.0217,57.5781,2.9602,-0.1235,57.6049,2.9965,-0.0724,57.5705,2.9936,0.098,57.7793,2.9074,0.0897,57.5867,2.8153,-0.0041,57.6123,2.8128,0.0485,57.4695,2.8962,0.0783,57.5603,2.8096,0.1035,57.5476,2.8078,-0.0629,57.4631,2.8644,-0.0868,57.4865,2.8805,-0.067,57.5717,2.8415,0.1871,57.4692,2.9266,0.1622,57.5006,2.9445,0.1654,57.5126,2.9434,0.1133,57.4972,2.9363,0.082,57.4807,2.9343,-0.0545,57.4633,2.8652,-0.0506,57.447,2.9002,-0.1622,57.5006,2.9375,-0.2054,57.4764,2.9389,-0.1107,57.5099,2.8965,-0.2166,57.492,2.9613,-0.1845,57.4894,2.9762,0.1845,57.4894,2.9843,0.2078,57.4862,2.9764,0.1187,57.6367,3.0035,0.002,57.5837,2.9447,0.033,57.5571,2.8788,0.0402,57.4588,2.9388,0.0474,57.5534,2.8952,-0.0621,57.6478,2.8559,-0.0659,57.6453,2.854,-0.0598,57.6396,2.8525,0.0094,57.6201,2.8553,0.0198,57.6247,2.856,0.0194,57.6329,2.8588,-0.0153,57.5454,2.864,-0.0112,57.6208,2.8547,-0.0395,57.5441,2.8617,-0.0413,57.5449,2.8659,0.0078,57.626,2.8725,0.0083,57.6254,2.8685,0.0761,57.5824,2.9924,0.0724,57.5705,2.9966,0.0601,57.6049,2.9193,0.1269,57.5896,2.9049,0.1364,57.5769,2.9127,0.1341,57.5604,2.9636,0.0783,57.6273,2.8771,0.0609,57.5586,2.9012,0.1931,57.5113,2.973,0.1751,57.5231,2.9565,0.0708,57.6473,2.8681,0.0659,57.6453,2.8564,0.0772,57.5819,2.9764,0.0969,57.6306,2.8938,-0.0846,57.4736,2.9191,-0.0714,57.5494,2.8727,-0.0882,57.5613,2.8961,-0.0944,57.5693,2.8925,-0.1141,57.5903,2.8845,-0.1225,57.5775,2.8931,-0.1364,57.5769,2.9073,-0.1341,57.5604,2.9581,-0.1605,57.564,2.9034,-0.0783,57.6273,2.8741,-0.0515,57.5417,2.8647,-0.0589,57.4484,2.902,-0.1931,57.5113,2.9647,-0.1654,57.5126,2.9364,-0.1569,57.5253,2.9279,-0.1133,57.4972,2.9314,-0.0969,57.6306,2.8902,-0.0772,57.5819,2.9732,-0.0954,57.6252,2.8773,1.0946,57.453,1.5604,0.9383,57.446,1.5252,0.9264,57.3994,1.2968,0.3217,57.2465,1.3858,0.4456,57.3191,1.4066,0.4247,57.2975,1.3359,1.123,57.5651,1.2879,1.25,57.5687,1.4563,1.1375,57.4771,1.5409,0.7469,58.1661,2.829,0.7168,58.1647,2.8363,0.7414,58.4294,2.8634,0.7617,58.0351,2.6932,0.6562,58.0131,2.7257,0.8348,57.9758,2.3529,0.7927,58.0247,2.5136,0.8187,58.0275,2.5191,1.0414,57.9826,2.6012,1.0653,57.9602,2.4516,1.0334,57.9615,2.4436,0.9574,58.043,2.7082,0.9881,58.0488,2.7067,0.8729,57.8752,2.2014,0.8886,57.9501,2.3565,0.8782,57.9924,2.5477,0.7921,58.0421,2.6958,0.836,58.0366,2.7017,0.3276,57.1714,1.48,0.3512,57.1902,1.4444,0.3629,57.1776,1.4482,0.4129,57.2853,1.2961,0.3055,57.2228,1.3449,1.123,57.5672,1.2937,1.3141,57.6544,1.309,0.4985,57.3085,1.3065,0.5503,57.3245,1.29,0.5544,57.2877,1.2907,0.6474,57.2954,1.295,0.6341,57.3131,1.3039,0.7834,57.3668,1.3211,0.912,57.414,1.2756,0.8979,57.4144,1.3253,1.1196,57.5543,1.3399,0.2801,57.1498,1.4957,0.2801,57.1602,1.472,1.4878,57.755,1.3816,1.3972,57.7083,1.3537,1.3914,57.7111,1.3743,1.5503,57.7819,1.5441,1.7577,58.0328,1.5257,1.5746,57.8331,1.4138,0.0966,57.6339,2.3872,0.0,57.6313,2.4081,0.0894,57.6245,2.3883,0.2197,57.3807,1.7093,0.1746,57.4589,1.9071,0.2182,57.3855,1.7083,0.1639,60.8188,0.5949,0.2033,60.808,0.6193,0.0914,60.6289,0.7457,1.4125,57.7081,1.3203,1.5558,57.687,1.5781,1.4857,57.7293,1.2977,1.5409,57.7986,1.3102,1.4524,57.685,1.3112,1.8036,59.1595,1.3002,1.8297,59.1156,1.2557,1.8496,59.0401,1.2693,1.7487,59.2979,1.3367,1.7807,59.2952,1.2276,1.79,59.2667,1.2284,1.6701,59.4371,1.3823,1.7144,59.4764,1.2165,1.734,59.4378,1.2234,1.5973,59.7,1.1733,1.5178,59.6708,1.431,1.5888,59.7127,1.1692,1.5374,59.7886,1.1443,1.4425,59.7746,1.4048,1.5203,59.8139,1.1361,1.4578,59.8827,1.1136,1.3705,59.8429,1.3838,1.431,59.9085,1.1052,1.3228,60.0124,1.0714,1.2265,59.9796,1.3419,1.3047,60.0297,1.0657,1.2033,59.9317,1.4853,1.1551,60.0336,1.3221,1.2345,60.083,1.0483,1.1823,60.119,1.0365,0.6278,60.3428,1.2341,0.6655,60.2272,1.5484,0.5372,60.3771,1.2268,0.3155,60.3431,1.5832,0.2638,60.4593,1.1969,0.3561,60.4457,1.2124,1.731,59.1388,1.5529,1.85,58.9895,1.2861,1.8093,58.6491,1.7316,1.8215,58.4755,1.7774,1.7214,58.6844,1.9136,1.7789,58.1279,1.5093,1.7896,58.2541,1.6522,1.673,57.9175,1.265,1.6796,57.9246,1.3122,1.6583,57.8848,1.325,1.8153,58.1334,1.2643,1.7679,58.0833,1.2879,1.8425,58.1839,1.2703,1.9224,58.6151,1.1624,1.9078,58.6435,1.1417,1.9158,58.6222,1.1605,1.8515,58.7075,1.3742,1.9522,58.8375,1.0464,1.8509,58.8905,1.319,1.9467,58.8877,1.0447,1.9545,58.8843,1.0349,1.964,58.8306,1.0254,1.9208,59.121,1.0144,1.8853,59.2667,1.0017,1.8422,59.2624,1.117,1.8759,59.2828,0.9967,1.8652,59.3213,0.9866,1.8553,59.3365,0.9889,1.8351,59.4003,0.9728,1.748,59.395,1.2247,1.8251,59.427,0.9664,1.6752,59.5536,1.2027,1.7524,59.5655,0.9429,1.7625,59.5498,0.9436,1.8127,59.4585,0.9586,1.8173,59.4476,0.9619,1.5032,59.8392,1.1278,1.5696,59.8312,0.9133,1.3415,60.037,0.8829,1.3332,60.0437,0.8786,1.3697,60.0125,0.9064,1.3615,60.0195,0.9018,1.4921,59.898,0.8057,1.4963,59.9007,0.8942,1.4664,59.9289,0.8921,1.2867,60.047,1.0601,1.3026,60.0703,0.8937,1.3127,60.0616,0.8931,1.0402,60.2656,0.8107,0.9771,60.2474,0.978,1.0157,60.2828,0.8098,0.9267,60.2756,0.9605,0.9614,60.3055,0.7774,0.8762,60.3038,0.943,0.9208,60.3224,0.7531,0.9783,60.3139,0.6393,0.9981,60.2986,0.6909,1.1825,60.1613,0.8901,1.1425,60.1916,0.8889,1.1622,60.1787,0.8585,0.4364,60.5155,0.7948,0.4563,60.4985,0.8495,0.3925,60.5261,0.8378,0.8654,60.348,0.73,0.8439,60.3645,0.7283,0.8196,60.3786,0.652,0.4803,60.5049,0.7517,0.5031,60.5026,0.6909,0.5242,60.4943,0.7086,0.4653,60.527,0.5754,0.4402,60.5303,0.6592,0.4423,60.5289,0.5972,0.3663,60.5843,0.6365,0.3244,60.5321,0.8261,0.2563,60.5381,0.8143,0.1257,60.6243,0.6942,0.1461,60.5954,0.6944,0.1202,60.5501,0.7908,0.205,60.5842,0.6906,0.3035,60.6161,0.672,1.7717,59.5754,1.0788,1.7602,59.5927,1.0718,1.8109,59.4732,0.9822,1.8145,59.4677,1.0033,1.8794,59.2887,1.0225,1.8715,59.3009,0.9864,1.8727,59.3032,1.0024,1.9463,58.9073,1.0763,1.9546,58.8704,1.0727,1.9734,58.7768,1.0158,1.9502,58.837,1.0796,1.9402,58.8205,1.0993,1.9262,58.6603,1.1707,1.9262,58.6592,1.1923,1.9261,58.6532,1.1987,1.9261,58.6404,1.2338,1.9202,58.5934,1.1721,1.9264,58.651,1.2217,1.8272,58.1599,1.3702,1.812,58.1385,1.3585,1.917,58.355,1.3982,1.8672,58.2381,1.2699,1.9048,58.3325,1.2262,1.7999,58.12,1.3703,1.6369,57.845,1.3377,1.6742,57.892,1.352,1.701,57.9644,1.2993,1.7024,57.9442,1.355,1.6722,57.8683,1.3772,1.7781,57.9383,1.4958,1.8255,58.1023,1.6706,1.761,57.8998,1.8448,1.8136,58.0773,1.3647,1.833,58.1364,1.4064,1.8409,58.153,1.6104,1.8938,58.4395,1.6573,1.8717,58.2545,1.4895,1.9034,58.3057,1.4455,1.8322,59.2394,1.5984,1.8607,59.3791,1.3447,1.8238,59.4458,1.3734,0.4182,60.7437,0.6009,0.404,60.7674,0.621,0.4284,60.7579,0.6626,0.3918,60.7578,0.5822,0.3875,60.7737,0.593,0.53,60.6701,0.9688,0.4566,60.6962,0.9753,0.4681,60.6381,1.2443,0.6327,60.699,0.51,0.6006,60.7089,0.5124,0.5214,60.7148,0.7099,0.4692,60.7421,0.7322,0.5232,60.7215,0.7255,0.7325,60.6312,0.6177,0.6606,60.6457,0.6819,0.6674,60.6666,0.7074,0.8878,60.4872,1.1977,0.8789,60.4071,1.4661,0.9773,60.4375,1.1818,0.8842,60.5444,0.9379,0.9473,60.5133,0.9286,0.9543,60.5163,0.8748,0.9919,60.5211,0.6099,0.9733,60.5326,0.605,0.9847,60.5195,0.6871,1.0205,60.4968,0.7014,1.0244,60.4883,0.8117,1.0467,60.4808,0.7058,1.1801,60.3987,0.8944,1.1695,60.3718,1.0074,1.2048,60.3668,0.9075,1.1939,60.3798,0.8033,1.2013,60.3702,0.746,1.1765,60.3824,0.74,1.1821,60.3548,0.8512,1.2582,60.3089,0.8839,1.2061,60.3385,0.8588,1.2294,60.335,0.9206,1.3968,60.2209,0.8725,1.3946,60.2255,0.8502,1.3806,60.2248,0.9082,1.4058,60.2091,0.9031,1.6028,59.895,1.2934,1.5342,59.9646,1.3177,1.5902,59.7926,1.5232,1.4674,60.1175,1.1015,1.5045,60.0796,1.0895,1.5153,60.0924,0.9353,1.5397,60.0839,0.9387,1.5298,60.094,0.9292,1.7878,59.6668,1.0225,1.781,59.6864,1.0332,1.7885,59.6462,1.1655,1.7388,59.8121,0.8912,1.7199,59.8172,0.9306,1.7273,59.7882,1.0228,1.6496,59.8962,1.0345,1.6114,59.9704,1.0551,1.78,59.6746,1.2122,1.7971,59.6362,1.1998,1.8825,59.4443,1.1378,1.8654,59.4827,1.1502,1.8989,59.4946,1.0015,1.8482,59.5088,1.1086,1.8568,59.4927,1.1159,1.7947,59.6472,1.0117,1.797,59.6177,1.1188,1.7956,59.6118,1.0637,1.8873,59.3338,1.325,1.9393,59.3117,1.1406,1.9204,59.3559,1.1397,1.9139,59.2884,1.3053,1.9806,59.2048,1.1261,1.9583,59.2675,1.1415,1.9406,59.243,1.2855,1.8029,59.6889,0.9256,1.7807,59.7081,0.9554,1.8905,59.109,1.5342,1.946,59.2008,1.2783,1.9132,58.7832,1.6414,1.9274,58.8263,1.5624,1.8607,58.9543,1.7721,1.9663,58.6661,1.3889,1.9718,58.6923,1.3678,2.0066,58.9709,1.0689,2.0025,58.9998,1.0878,1.9731,58.99,1.2424,1.9995,58.8205,1.1176,1.9902,58.8314,1.0992,1.9763,58.9082,1.2701,1.9931,58.7232,1.1072,1.996,58.7203,1.095,1.9779,58.8673,1.284,1.9693,58.6511,1.2214,1.9707,58.6455,1.2078,1.9827,58.7447,1.3254,1.9569,58.3822,1.3737,1.9412,58.4666,1.3586,1.9532,58.4839,1.4137,1.875,58.156,1.3777,1.8844,58.1818,1.3868,1.8523,58.1954,1.448,1.7872,57.9739,1.4623,1.7555,57.9867,1.3663,1.6925,57.8898,1.3645,1.7028,57.9043,1.363,1.7075,57.8916,1.4167,1.6524,57.8515,1.3498,1.9264,58.7205,1.0781,1.9454,58.8036,1.0822,1.9578,58.7874,1.0482,1.9389,58.988,1.0189,1.9401,58.9885,1.0642,1.94,58.9621,1.0454,1.7103,59.6514,0.9734,1.7067,59.6485,0.9558,1.7007,59.6521,0.9766,1.7844,59.5566,1.0409,0.34,57.4775,2.015,0.4538,57.5708,1.9897,0.4506,57.6414,2.2132,1.1317,60.4321,0.8653,1.1272,60.4247,0.9022,1.108,57.4614,1.5504,1.1112,57.4591,1.5767,1.4032,57.8042,2.1178,1.4386,57.7055,1.8615,1.2503,57.7232,2.0208,1.4566,57.7264,1.8786,1.4589,57.72,1.8571,1.7009,58.8847,1.9046,1.5867,59.2151,1.8777,1.797,58.8227,1.6843,1.6235,58.902,2.0367,1.3776,59.6939,1.6666,1.3714,59.6686,1.7631,1.173,59.8471,1.7217,0.989,59.7674,2.12,0.8397,59.6534,2.4448,0.87,59.7956,2.1953,1.1551,58.104,2.6814,1.1731,58.383,2.7289,1.295,58.0771,2.571,1.4345,58.7531,2.4717,1.403,58.7259,2.5025,1.3878,58.7404,2.511,1.6768,58.0377,1.9961,1.6625,58.0241,2.0101,1.6884,58.174,2.0466,1.599,57.9573,2.0822,1.594,57.948,2.0781,1.5913,57.9563,2.0989,1.749,58.3123,1.9501,1.7484,58.3477,1.9481,1.724,58.0281,1.7851,1.0467,59.1053,2.7039,1.0288,59.1141,2.7117,1.2442,59.3601,2.2943,0.8718,59.8084,2.17,0.5731,59.7218,2.4601,0.2693,57.3878,1.7197,0.2951,57.4531,1.9556,0.2909,57.4494,1.9565,0.2726,57.2792,1.609,0.3313,57.2989,1.5845,0.3272,57.403,1.7306,0.2971,57.4365,2.0062,0.3008,57.4352,2.0016,0.3134,57.4026,2.1207,0.3105,57.4872,2.0242,0.3173,57.4722,2.0107,0.3072,57.4664,2.0014,0.3206,57.4957,2.006,0.3177,57.4953,2.0062,0.3184,57.4941,2.0013,0.3093,57.49,2.0044,0.3192,57.4977,2.0254,0.3355,57.4707,2.0043,0.3071,57.4446,2.002,1.3692,57.654,2.0801,1.4439,57.4908,2.006,1.4722,57.6026,2.1029,1.4953,57.6138,2.1053,1.4555,57.4944,1.9972,1.5338,57.5577,2.1731,1.5414,57.5641,2.1695,1.5611,57.5636,2.2061,1.3768,57.4915,1.833,0.4052,57.7747,2.6288,0.4372,57.8734,2.7592,0.4293,57.8875,2.7227,0.3199,57.4864,2.6473,0.2462,57.5508,2.8187,0.4181,57.782,2.8061,0.283,57.6945,2.4652,0.2789,57.7154,2.4671,0.3204,57.6788,2.4789,0.3309,57.6742,2.4484,0.3207,57.4596,2.4879,0.3369,57.5951,2.493,0.3296,57.4927,2.4699,0.0,57.6119,2.4324,0.004,57.6349,2.4106,0.1575,57.7813,2.5714,0.3115,57.8585,2.7606,0.2443,57.8207,2.7002,0.3391,57.8883,2.7693,0.3177,57.8337,2.782,0.3503,57.8725,2.799,0.2939,57.722,2.8336,0.3327,57.7481,2.849,0.0958,57.5735,2.8068,0.1227,57.5655,2.8146,0.063,57.5692,2.8142,0.0,57.9436,2.8265,0.0927,57.8672,2.7344,0.1278,57.9018,2.8079,0.3458,57.3541,2.4955,0.349,57.3549,2.4972,0.3243,57.351,2.622,0.3169,57.3644,2.2317,0.3221,57.3393,2.3681,0.2983,57.4664,2.3436,-0.0269,57.4641,2.8681,-0.0057,57.5769,2.8127,0.3199,57.5005,2.3853,0.3237,57.5597,2.3232,0.3566,57.5943,2.5063,0.387,57.6761,2.6584,0.2308,57.5818,2.2699,0.2575,57.6681,2.3868,0.3165,57.909,2.7992,0.318,57.8793,2.8066,0.1221,57.8792,2.8293,0.1241,57.8138,2.538,0.1941,57.8761,2.6698,0.2903,57.8286,2.5566,0.983,57.5794,1.7775,0.8444,57.5894,1.7133,0.831,57.7132,1.8682,0.7868,57.8861,2.0839,0.7224,57.8214,2.061,0.7009,57.8209,2.1145,0.9822,57.8653,2.2712,1.0839,57.8451,2.2978,1.0054,57.8258,2.1843,1.3706,57.5253,1.8249,1.4478,57.5656,1.9559,1.6754,57.7457,1.6816,1.5932,57.6832,1.9103,1.5435,57.6495,1.8574,1.6264,57.6596,2.4181,1.6045,57.6133,2.2747,1.579,57.7008,2.2981,0.3506,57.6773,2.4956,0.3926,57.8051,2.6059,0.2053,57.5772,2.1057,0.1538,57.4842,2.0276,0.1625,57.5087,2.1069,0.1117,57.565,2.2749,0.1338,57.5675,2.2584,0.1141,57.5514,2.2283,0.108,57.5684,2.2708,0.1526,57.6278,2.2401,1.3478,57.6409,1.3076,0.4843,57.3886,1.5595,0.5688,57.4056,1.4984,0.5537,57.3356,1.3543,1.6427,57.9057,1.3225,1.7083,57.9907,1.2993,1.644,57.9019,1.2644,1.7224,58.0042,1.2864,1.7016,57.9873,1.2646,1.2991,60.2866,0.8421,1.2792,60.3047,0.8588,1.2541,60.3031,0.9337,0.0723,60.6295,0.7398,0.1402,60.8242,0.589,1.7731,58.252,1.77,0.9038,59.917,1.9401,0.9876,59.7848,2.0917,0.8806,59.8335,2.1154,1.5774,59.8136,0.8929,1.5862,59.805,0.9023,1.0628,59.4004,2.4965,1.0793,59.5175,2.364,1.3766,59.2191,2.2291,1.2404,59.0565,2.5602,1.3951,58.9844,2.3621,1.3897,58.973,2.3803,0.2554,59.2098,2.8297,0.0,59.2359,2.7204,0.0,59.5624,2.6056,1.8513,58.6788,1.3813,1.8036,58.8227,1.6392,0.0169,58.7209,2.6927,0.0169,59.0545,2.7492,0.029,58.7379,2.8045,1.1885,58.3971,2.7194,1.1528,58.7501,2.7328,1.2182,58.729,2.688,0.984,58.427,2.8292,0.7764,58.806,2.8882,0.0821,58.3272,2.8858,0.028,58.7581,2.8665,0.0476,58.2801,2.7447,0.111,57.9645,2.7314,0.0,57.9429,2.6256,1.3946,58.344,2.5332,1.4388,58.1743,2.4702,1.4039,58.2323,2.5079,1.5626,58.0257,2.2456,1.4339,58.1484,2.4664,1.4762,58.2176,2.4143,1.6085,57.8771,1.8634,1.623,57.834,1.7281,1.1601,57.7855,2.0579,1.178,57.8268,2.2011,1.2778,57.7975,2.1397,1.3112,57.8855,2.3108,1.1262,57.8635,2.3573,1.0857,57.8841,2.359,1.2037,57.941,2.458,0.9514,57.9676,2.5711,0.9238,57.8541,2.1973,0.8631,57.4707,1.5323,1.051,57.5182,1.6235,1.0856,57.5513,1.4832,0.7327,57.5972,1.7621,0.4955,57.5803,1.9035,0.5735,57.6473,1.8902,0.5715,57.5254,1.7604,0.6875,57.9416,2.5185,0.8085,57.9713,2.3563,0.5685,57.8988,2.4719,0.5885,57.93,2.6019,0.4368,57.9203,2.6168,0.4606,57.974,2.7876,0.6155,57.8831,2.4461,0.6247,57.865,2.3826,0.1968,57.2792,1.5889,0.195,57.4642,1.9048,0.3659,57.6184,2.1334,0.3649,57.5161,1.909,0.2782,57.6803,2.3248,0.1749,57.7514,2.4622,0.0968,57.6662,2.3779,0.3675,57.9401,2.7665,1.5501,57.586,2.3037,1.5052,57.6033,2.3294,1.4961,57.6013,2.1237,1.5327,57.6756,2.1037,1.5982,57.5946,2.2815,1.6216,57.6376,2.4228,1.5726,57.5813,2.4529,1.3973,57.7322,2.2668,1.4884,57.597,2.1264,1.2137,57.8286,2.562,1.223,57.7592,2.6641,1.2742,57.7753,2.7665,1.0075,57.9994,2.9239,0.9859,57.8877,2.8915,1.3291,57.6591,2.6708,1.3259,57.7126,2.6021,1.4467,57.6463,2.4797,1.1996,57.7051,2.0585,1.2094,57.7796,2.1996,0.9632,57.7391,2.0365,0.8015,57.9272,2.9677,0.9676,57.871,2.6604,0.6018,57.772,2.2297,0.2308,57.4359,2.8853,0.3295,57.5078,2.7247,0.375,57.5895,2.4364,0.3325,57.4216,2.2912,0.3375,57.4802,1.9648,1.5244,57.5089,2.4696,1.5153,57.8276,2.6027,1.5731,57.8322,2.4676,1.5672,58.0348,2.4747,1.6477,57.8467,2.0869,1.6228,57.9635,2.2811,1.5756,57.7944,2.3071,1.6418,57.7617,1.9844,1.6961,59.6556,0.9785,1.7712,59.7218,0.9599,0.5328,60.7262,0.5302,0.5141,60.7247,0.5568,1.7027,57.9697,1.2779,1.9352,58.3569,1.4013,1.9309,58.5369,1.5217,1.8086,58.7809,1.9838,1.7504,58.879,2.0583,1.69,58.6309,2.295,1.7502,59.579,1.4307,1.749,59.7131,1.2264,1.3423,58.7308,2.7109,1.2221,58.916,2.8249,1.2478,58.6298,2.7965,1.0192,58.1391,2.9557,1.2819,57.9197,2.768,1.1562,60.338,1.1499,1.1044,60.3668,1.1591,1.1563,60.2605,1.4097,0.0,57.9817,3.0815,0.0732,57.884,3.0792,0.2064,58.0959,3.1305,0.0,59.0545,2.7492,-0.9435,57.4131,1.2956,-1.123,57.5651,1.2879,-0.9183,57.4071,1.263,-0.8172,57.3355,1.3087,-0.9383,57.446,1.5252,-0.9264,57.3994,1.2968,-0.5428,57.2978,1.3539,-0.6497,57.3966,1.5176,-0.662,57.3006,1.3254,-0.351,57.2232,1.4985,-0.3313,57.2989,1.583,-0.4985,57.3604,1.5425,-0.1968,57.2792,1.5878,-0.1915,57.2755,1.5996,-0.1696,57.1865,1.5183,-0.1765,57.2023,1.4982,-0.3217,57.2465,1.3858,-0.3568,57.2977,1.4744,-1.0946,57.453,1.5604,-1.1043,57.8525,2.3238,-1.0839,57.8451,2.2948,-1.1262,57.8455,2.2314,-0.836,58.0366,2.694,-0.7469,58.1661,2.8229,-0.7921,58.0421,2.6879,-0.8348,57.9758,2.3488,-0.7942,57.9236,2.1872,-0.819,57.9222,2.1843,-0.2397,57.3807,1.6886,-0.2182,57.3855,1.7064,-0.6266,57.4124,1.473,-0.5688,57.4056,1.4984,-0.5537,57.3356,1.3543,-0.1607,57.1562,1.4584,-0.3055,57.2228,1.3449,-0.8094,57.332,1.252,-0.6341,57.3131,1.3039,-0.6242,57.3409,1.3639,-1.1196,57.5543,1.3399,-1.0917,57.5613,1.3506,-0.9039,57.4352,1.3228,-0.663,57.2848,1.2705,-0.6474,57.2954,1.295,-0.5544,57.2877,1.2907,-0.7834,57.3668,1.3211,-0.785,57.3533,1.3185,-0.8979,57.4144,1.3253,-0.912,57.414,1.2756,-0.7999,57.3381,1.2827,-0.4468,57.2359,1.373,-0.3629,57.1776,1.4478,-0.5085,57.2888,1.3722,-1.4825,57.7708,1.3996,-1.4878,57.755,1.3816,-1.5681,57.8235,1.3966,-1.2985,57.6457,1.3716,-1.3129,57.6359,1.3582,-1.3972,57.7083,1.3537,-1.0856,57.5513,1.4832,-0.8819,57.4475,1.4162,-1.9105,59.1911,1.1089,-1.8945,59.2582,1.0056,-1.9093,59.181,1.0106,-0.2998,57.4769,2.065,-0.3076,57.3998,2.1137,-0.2971,57.4365,2.0009,-0.2909,57.4494,1.9519,-0.1553,57.4779,2.0191,-0.2945,57.4939,2.0518,-0.0864,57.6266,2.3615,-0.0894,57.6245,2.386,-0.1117,57.565,2.2721,-0.1745,57.4647,1.9014,-0.195,57.4642,1.902,-0.2053,57.5772,2.1019,-0.1625,57.5087,2.1035,-0.1538,57.4842,2.0248,-1.3735,57.6713,1.5269,-1.2639,57.5761,1.7243,-1.2851,57.616,1.5182,-1.4125,57.7081,1.3203,-1.4908,57.768,1.3349,-1.5135,57.7757,1.3277,-1.5704,57.838,1.3512,-1.8036,59.1595,1.3002,-1.8297,59.1156,1.2557,-1.8099,59.1911,1.242,-1.6238,59.5092,1.3972,-1.6147,59.427,1.5438,-1.6701,59.4371,1.3823,-1.5776,59.5813,1.4121,-1.6557,59.5922,1.1958,-1.6459,59.6115,1.1923,-1.5973,59.7,1.1733,-1.5178,59.6708,1.431,-1.6059,59.6874,1.1775,-1.3705,59.8429,1.3838,-1.4223,59.7553,1.4592,-1.4425,59.7746,1.4048,-0.972,60.0826,1.515,-1.0836,60.0875,1.3024,-1.0121,60.1414,1.2826,-0.8163,60.2528,1.2551,-0.9267,60.2756,0.9605,-0.8762,60.3038,0.943,-0.6278,60.3428,1.2341,-0.6655,60.2272,1.5484,-0.7184,60.3085,1.2413,0.0,60.3782,1.5591,-0.0793,60.4867,1.1658,0.0,60.5003,1.1503,-1.85,58.9895,1.2861,-1.731,59.1388,1.5529,-1.8509,58.8905,1.319,-1.8214,58.318,1.4752,-1.8001,58.2229,1.4925,-1.8425,58.1839,1.2703,-1.8518,58.7362,1.3672,-1.9078,58.6435,1.1417,-1.9078,58.6579,1.1362,-1.8759,59.2828,0.9967,-1.8715,59.3009,0.9864,-1.79,59.2667,1.2284,-1.8373,59.4042,1.0076,-1.8351,59.4003,0.9728,-1.8421,59.3839,0.9748,-1.7464,59.5752,0.9424,-1.7322,59.6006,0.9357,-1.7987,59.4787,0.9506,-1.8127,59.4585,0.9586,-1.8065,59.4739,0.9587,-1.734,59.4378,1.2234,-1.787,59.4961,0.9539,-1.7824,59.5219,0.9456,-1.7144,59.4764,1.2165,-1.6779,59.6733,0.95,-1.5888,59.7127,1.1692,-1.6714,59.6851,0.9554,-1.6702,59.6871,0.9579,-1.5932,59.7941,0.898,-1.5374,59.7886,1.1443,-1.5545,59.7633,1.1526,-1.6452,59.735,0.9298,-1.6652,59.6955,0.9573,-1.6522,59.7054,0.9048,-1.431,59.9085,1.1052,-1.4963,59.9007,0.8942,-1.4664,59.9289,0.8921,-1.3769,59.9604,1.0883,-1.4328,59.9582,0.92,-1.4237,59.966,0.9127,-1.3588,59.9777,1.0826,-1.3949,59.9431,1.0939,-1.2896,60.0813,0.8602,-1.2626,60.1006,0.8925,-1.3026,60.0703,0.8937,-0.9948,60.2989,0.7589,-0.9614,60.3055,0.7774,-1.0157,60.2828,0.8098,-0.9208,60.3224,0.7531,-0.9783,60.3139,0.6393,-0.9315,60.3204,0.6697,-0.889,60.3357,0.734,-0.8009,60.3974,0.7248,-0.7116,60.3879,0.8963,-0.7754,60.3603,0.908,-0.8439,60.3645,0.7283,-0.8224,60.381,0.7265,-0.4364,60.5155,0.7948,-0.4716,60.5164,0.675,-0.4402,60.5303,0.6592,-0.4087,60.5441,0.6434,-0.4423,60.5289,0.5972,-0.205,60.5842,0.6906,-0.1461,60.5954,0.6944,-0.1202,60.5501,0.7908,-0.1257,60.6243,0.6942,-0.1601,60.6198,0.6426,-0.2208,60.6218,0.5858,-1.8553,59.3365,0.9889,-1.8647,59.3343,1.0426,-1.859,59.3534,1.0567,-1.8848,59.2734,1.0223,-1.8853,59.2667,1.0017,-1.8794,59.2887,1.0225,-1.94,58.9621,1.0454,-1.9425,58.9588,1.0339,-1.9412,58.9378,1.043,-1.9545,58.8843,1.0349,-1.9463,58.9073,1.0763,-1.9415,58.9387,1.0489,-1.964,58.8306,1.0254,-1.9502,58.837,1.0796,-1.9158,58.6222,1.1605,-1.9262,58.6603,1.1707,-1.9079,58.6584,1.1423,-1.9202,58.5934,1.1721,-1.9262,58.6312,1.2597,-1.9261,58.6404,1.2338,-1.9048,58.3325,1.2262,-1.917,58.355,1.3982,-1.906,58.3785,1.362,-1.8413,58.1773,1.3773,-1.8153,58.1334,1.2643,-1.7999,58.12,1.3703,-1.7679,58.0833,1.2879,-1.7592,57.9029,1.5301,-1.7428,57.915,1.4562,-1.6754,57.7457,1.6816,-1.9123,58.4882,1.5896,-1.9034,58.3057,1.4455,-1.8938,58.4395,1.6573,-1.9495,58.5856,1.4535,-1.9532,58.4839,1.4137,-1.9309,58.5369,1.5217,-1.3971,60.1038,1.3663,-1.3767,60.0036,1.6148,-1.3168,60.156,1.3808,-0.334,60.7652,0.7318,-0.3013,60.7207,0.9705,-0.2478,60.7799,0.7316,-0.1639,60.8188,0.5949,-0.2033,60.808,0.6193,-0.1616,60.7946,0.7313,-0.4712,60.7407,0.5505,-0.4284,60.7579,0.6626,-0.4182,60.7437,0.6009,-0.5771,60.701,0.7187,-0.53,60.6701,0.9688,-0.5232,60.7215,0.7255,-0.4692,60.7421,0.7322,-0.5328,60.7262,0.5302,-0.5214,60.7148,0.7099,-0.6606,60.6457,0.6819,-0.6674,60.6666,0.7074,-0.6311,60.6804,0.7119,-0.6035,60.6441,0.9624,-0.7325,60.6312,0.6177,-0.7588,60.6198,0.6333,-0.7733,60.6263,0.694,-0.9543,60.5163,0.8748,-0.9518,60.5438,0.6875,-0.9861,60.5203,0.6944,-0.9919,60.5211,0.6099,-1.0205,60.4968,0.7014,-0.9847,60.5195,0.6871,-0.9488,60.5421,0.6728,-0.9322,60.5571,0.6835,-1.1317,60.4321,0.8653};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getfrontal_Coord_6_121_point_2()
		{
			double[] value = {-1.0244,60.4883,0.8117,-1.0467,60.4808,0.7058,-1.1314,60.4016,0.7776,-1.1552,60.3868,0.7793,-1.1801,60.3987,0.8944,-1.1939,60.3798,0.8033,-1.2082,60.354,0.7834,-1.1821,60.3548,0.8512,-1.2061,60.3385,0.8588,-1.3977,60.1888,1.124,-1.4387,60.1469,1.1108,-1.4656,60.0342,1.342,-1.4674,60.1175,1.1015,-1.4924,60.1334,0.8813,-1.508,60.1172,0.8997,-1.5397,60.0839,0.9387,-1.5478,60.0759,0.9437,-1.5045,60.0796,1.0895,-1.5094,60.1132,0.9223,-1.649,59.9563,0.8614,-1.6472,59.9362,0.8976,-1.6008,59.9972,1.008,-1.7537,59.7314,1.1175,-1.7273,59.7882,1.0228,-1.7429,59.7608,1.0299,-1.7741,59.7061,1.044,-1.78,59.6746,1.2122,-1.7672,59.7182,1.0409,-1.7674,59.7317,0.9547,-1.744,59.7995,0.9012,-1.7431,59.7771,0.9447,-1.7774,59.7143,0.9548,-1.7807,59.7081,0.9554,-1.781,59.6864,1.0332,-1.8088,59.6673,0.9428,-1.7947,59.6472,1.0117,-1.7878,59.6668,1.0225,-1.9007,59.5054,0.9459,-1.9059,59.4983,0.9577,-1.8482,59.5088,1.1086,-1.8976,59.4686,1.0322,-1.9081,59.4636,1.0017,-1.904,59.45,1.0368,-1.9644,58.9513,1.323,-1.9557,58.9127,1.4036,-1.9339,58.9781,1.4471,-1.9731,58.99,1.2424,-1.9747,58.9491,1.2563,-1.9814,58.7784,1.3141,-1.9827,58.7447,1.3254,-1.9737,58.8007,1.3515,-1.9728,58.6546,1.1995,-1.9779,58.8673,1.284,-1.9894,58.8028,1.0949,-1.996,58.7203,1.095,-1.9965,58.9062,1.0993,-1.9961,58.8697,1.0922,-1.9902,58.8314,1.0992,-1.9783,58.6549,1.1829,-1.9803,58.806,1.3048,-1.985,58.6594,1.149,-1.9419,58.5102,1.3643,-1.9412,58.4666,1.3586,-1.8717,58.2545,1.4895,-1.908,58.2696,1.3765,-1.8974,58.2279,1.3878,-1.8844,58.1818,1.3868,-1.833,58.1364,1.4064,-1.8523,58.1954,1.448,-1.8658,58.1282,1.3646,-1.875,58.156,1.3777,-1.7344,57.956,1.356,-1.7781,57.9383,1.4958,-1.7223,57.9297,1.3485,-1.7101,57.9041,1.3515,-1.7028,57.9043,1.363,-1.9908,58.7076,1.1129,-1.9795,58.8265,1.2979,-1.8496,59.0401,1.2693,-1.9389,58.988,1.0189,-1.9208,59.121,1.0144,-1.9237,59.1172,1.111,-1.9188,59.152,1.103,-1.7111,59.6378,0.9391,-1.7067,59.6485,0.9558,-1.6361,59.6308,1.1889,-1.7007,59.6521,0.9766,-0.3134,57.4026,2.1137,-0.3745,57.5426,2.191,-0.34,57.4775,2.0093,-1.7016,57.9873,1.2646,-1.7027,57.9697,1.2779,-1.7224,58.0042,1.2864,-0.0697,60.846,0.5579,-0.1207,60.8221,0.5499,-0.1439,60.8291,0.5577,-0.0691,60.851,0.5273,-1.117,60.4208,0.7294,-0.4538,57.5708,1.9839,-0.3375,57.4802,1.9597,-1.4828,57.8641,2.1186,-1.4032,57.8042,2.1178,-1.4386,57.7055,1.8615,-1.7247,58.0284,1.7604,-1.724,58.0281,1.7851,-1.6185,57.8961,1.8767,-1.7853,58.8624,1.6833,-1.797,58.8227,1.6843,-1.8036,58.8227,1.6392,-1.6141,58.7458,2.1047,-1.7214,58.6844,1.9136,-1.6297,58.8919,2.0322,-1.173,59.8471,1.7217,-1.2033,59.9317,1.4853,-0.8055,59.4542,2.612,-0.7994,59.163,2.7978,-0.9213,59.1343,2.7561,-1.6085,57.8771,1.8634,-1.6029,57.8796,1.8848,-1.4893,58.8113,2.3305,-1.5015,58.8103,2.3053,-1.4912,58.8285,2.3142,-0.8397,59.6534,2.4448,-0.855,59.6505,2.4379,-1.0189,59.7634,2.0933,-1.3793,58.0041,2.4476,-1.295,58.0771,2.5708,-1.3646,57.9899,2.4453,-1.7147,59.1705,1.5717,-1.7132,59.1554,1.594,-1.5122,59.3828,1.8636,-1.4839,59.4142,1.8786,-1.5053,59.3769,1.8837,-0.4843,57.3886,1.5589,-0.3744,57.43,1.7156,-0.2991,57.4502,1.953,-0.2951,57.4531,1.9509,-0.3005,57.4492,1.961,-0.3325,57.4216,2.2822,-0.3198,57.372,2.2337,-0.3169,57.3644,2.2232,-0.6345,57.7186,2.0085,-0.7368,57.7149,1.9176,-0.814,57.8129,2.0141,-0.3008,57.4352,1.9963,-0.3046,57.4464,1.9828,-0.3352,57.4769,1.9724,-0.3288,57.4742,1.9614,-0.3271,57.485,2.0111,-0.3223,57.4977,2.0182,-0.3206,57.4962,2.0213,-0.3118,57.4786,1.9801,-0.3084,57.4863,1.9968,-0.3103,57.4889,1.9943,-0.3173,57.4722,2.0052,-0.3072,57.4664,1.9962,-0.3055,57.4483,1.982,-0.3192,57.4977,2.02,-0.3143,57.4528,1.9936,-0.3071,57.4446,1.9966,-0.33,57.484,2.001,-0.3282,57.4862,1.9883,-0.309,57.4857,2.015,-0.3097,57.474,1.9852,-0.2197,57.3807,1.7074,-0.1746,57.4589,1.9045,-0.2693,57.3878,1.7173,-1.1112,57.4591,1.5767,-1.2527,57.5181,1.8215,-1.3635,57.4838,1.8435,-1.5904,57.5946,2.2812,-1.5976,57.6133,2.2745,-1.5594,57.5636,2.206,-1.3768,57.4915,1.833,-1.4439,57.4908,2.006,-1.5628,57.5812,2.2963,-1.5444,57.586,2.3031,-1.5504,57.5757,2.3267,-1.4961,57.6013,2.1236,-1.4722,57.6026,2.1029,-1.4884,57.597,2.1264,-0.1338,57.5675,2.2552,-0.1178,57.5472,2.2284,-0.3035,57.5342,2.1558,-0.2308,57.5818,2.2645,-0.2733,57.5243,2.2875,-0.283,57.6945,2.4581,-0.2575,57.6681,2.3806,-0.0966,57.6339,2.3847,-0.3369,57.5951,2.4834,-0.3566,57.5943,2.4962,-0.3303,57.4908,2.4903,-0.1408,57.5663,2.8083,-0.1495,57.5623,2.8098,-0.3115,57.8585,2.7527,-0.2443,57.8207,2.6938,-0.2318,57.851,2.6891,-0.3177,57.8337,2.7735,-0.318,57.8793,2.7985,-0.2992,57.7422,2.8561,-0.0971,57.5894,2.8318,-0.3004,57.6954,2.8517,-0.2462,57.5508,2.8093,-0.3154,57.3505,2.6062,-0.3243,57.351,2.6094,-0.349,57.3549,2.485,-0.2983,57.4664,2.3352,-0.0352,57.4638,2.8672,-0.3237,57.5597,2.3152,-0.3506,57.6773,2.4866,-0.4052,57.7747,2.6188,-0.1221,57.8792,2.8259,-0.3165,57.909,2.7916,-0.2982,57.5384,2.1519,-0.1241,57.8138,2.535,0.0,57.7992,2.5049,0.0,57.6677,2.3916,-0.3675,57.9401,2.7585,-0.4368,57.9203,2.6084,-0.4606,57.974,2.7786,-0.9822,57.8653,2.2678,-0.9629,57.9464,2.3668,-0.8886,57.9501,2.3523,-1.0572,57.8852,2.3407,-1.2541,60.3031,0.9337,-1.2991,60.2866,0.8421,-1.3047,60.2718,0.9235,-1.5932,57.6832,1.9103,-1.5435,57.6495,1.8574,-1.6207,57.6596,2.4179,-1.5778,57.7375,2.4474,-1.5741,57.7008,2.298,-1.6102,57.656,2.5097,-1.5666,57.8322,2.4675,-1.5721,57.7944,2.307,-0.3926,57.8051,2.5967,-0.108,57.5684,2.2681,-0.1141,57.5514,2.2256,-0.1526,57.6278,2.2368,-1.3478,57.6409,1.3076,-1.5558,57.687,1.5781,-1.4524,57.685,1.3112,-0.4973,57.3274,1.3617,-1.7083,57.9907,1.2993,-1.6427,57.9057,1.3225,-1.673,57.9175,1.265,-1.6369,57.845,1.3377,-1.644,57.9019,1.2644,-1.2792,60.3047,0.8588,-0.1402,60.8242,0.589,-0.0723,60.6295,0.7398,-0.0914,60.6289,0.7457,-1.7484,58.3477,1.9481,-1.7731,58.252,1.77,-1.8215,58.4755,1.7774,-0.9876,59.7848,2.0917,-0.9038,59.917,1.9401,-0.8806,59.8335,2.1154,-1.5862,59.805,0.9023,-1.5774,59.8136,0.8929,-1.5206,59.5267,1.6034,-1.3776,59.6939,1.6666,-1.5949,59.2187,1.8573,-1.2404,59.0565,2.5602,-1.3897,58.973,2.3803,-1.3951,58.9844,2.3621,-0.2554,59.2098,2.8297,-0.2506,59.5141,2.6553,-1.8513,58.6788,1.3813,-1.8515,58.7075,1.3742,-0.0169,59.0545,2.7492,-0.0169,58.7209,2.6927,-0.029,58.7379,2.8045,-1.1528,58.7501,2.7328,-1.1885,58.3971,2.7194,-1.2182,58.729,2.688,-0.984,58.427,2.8292,-1.0147,58.778,2.7955,-0.7764,58.806,2.8882,-0.0476,58.2801,2.7442,-0.0169,58.2508,2.6425,-0.2508,58.0042,2.8397,-0.2511,58.3872,2.9498,-0.0821,58.3272,2.885,-1.4339,58.1484,2.4664,-1.4029,58.0708,2.4616,-1.5626,58.0257,2.2456,-1.4589,57.72,1.8571,-1.623,57.834,1.7281,-1.7002,57.9693,1.4241,-1.7577,58.0328,1.5257,-1.2503,57.7232,2.0207,-1.2778,57.7975,2.1395,-1.1601,57.7855,2.0576,-1.4474,57.9244,2.2869,-1.3112,57.8855,2.3105,-1.178,57.8268,2.2001,-1.1913,57.8485,2.2775,-1.2037,57.941,2.4563,-1.0653,57.9602,2.4485,-1.0857,57.8841,2.3559,-1.1262,57.8635,2.3545,-1.1551,58.104,2.6798,-0.9931,58.1325,2.77,-0.9881,58.0488,2.7014,-0.8782,57.9924,2.5413,-0.9514,57.9676,2.5648,-0.8118,57.8883,2.0885,-0.8929,57.8323,2.1024,-0.8631,57.4707,1.5323,-1.051,57.5182,1.6235,-0.5715,57.5254,1.7579,-0.6672,57.6407,1.8376,-0.5735,57.6473,1.8868,-0.62,57.4991,1.6673,-0.7327,57.5972,1.761,-0.4955,57.5803,1.8989,-0.5938,57.8259,2.2825,-0.7086,57.862,2.2281,-0.7267,57.8939,2.3783,-0.6875,57.9416,2.51,-0.8085,57.9713,2.3517,-0.6155,57.8831,2.4374,-0.5885,57.93,2.5923,-0.5685,57.8988,2.4634,-0.6562,58.0131,2.7164,-0.4229,57.7788,2.3423,-0.2903,57.8286,2.55,-0.1749,57.7514,2.458,-0.0968,57.6662,2.3755,-0.2782,57.6803,2.3187,-0.1941,57.8761,2.6651,-0.111,57.9645,2.7289,-1.501,57.6033,2.3284,-1.5337,57.5577,2.1731,-1.5327,57.6756,2.1037,-1.4953,57.6138,2.1053,-1.5619,57.5814,2.4515,-1.6159,57.6376,2.4224,-1.398,57.7322,2.2663,-0.9859,57.8877,2.8789,-1.2819,57.9197,2.7641,-1.2745,57.7753,2.7588,-1.4515,57.5662,2.5349,-1.4455,57.6463,2.477,-1.3321,57.7126,2.5966,-1.2094,57.7796,2.1985,-1.1996,57.7051,2.0579,-0.9632,57.7391,2.0345,-0.9757,57.8376,2.7313,-0.7593,57.8849,2.7645,-0.8049,57.5515,1.7153,-0.9489,57.5502,1.7516,-0.7884,57.9171,2.9469,-1.0075,57.9994,2.915,-0.416,57.712,2.8019,-0.4168,57.7218,2.657,-0.3801,57.61,2.6037,-0.375,57.5895,2.4265,-0.4506,57.6414,2.2051,-0.6465,57.5016,1.7189,-0.4769,57.457,1.7214,-0.3309,57.6742,2.4402,-0.098,57.7793,2.9042,0.0,57.9329,2.8523,-0.3004,57.4541,2.6309,-0.3458,57.3541,2.4835,-1.5672,58.0348,2.4747,-1.4823,57.9881,2.6064,-1.4867,58.1345,2.5994,-1.6228,57.9635,2.2811,-1.6477,57.8467,2.0869,-1.6418,57.7617,1.9844,-1.1532,57.546,1.7973,-1.4601,60.1605,0.8997,-1.4731,60.1476,0.9084,-1.25,57.5687,1.4563,-1.8328,58.1116,1.3757,-1.8136,58.0773,1.3647,-1.9663,58.6661,1.3889,-1.9132,58.7832,1.6414,-1.8086,58.7809,1.9838,-1.8875,58.7031,1.7416,-1.8617,58.623,1.8411,-1.2511,58.3941,2.7723,-1.2478,58.6298,2.7965,-1.3139,58.4368,2.714,-1.2221,58.916,2.8249,-1.053,58.7864,2.9321,-1.0526,59.0727,2.9077,-0.7859,59.1831,2.9915,-0.7792,59.0065,3.0322,-1.1562,60.338,1.1499,-1.1044,60.3668,1.1591,-1.1695,60.3718,1.0074,0.0,58.4365,3.0869,-0.1579,58.1869,3.1088,0.0,58.2508,2.6426,-1.1563,60.2605,1.4097,-0.7796,58.297,3.0298,-1.0291,58.5306,2.9359,-1.0123,58.3059,2.931,-1.0192,58.1391,2.9512,-1.2785,58.0654,2.7635,-1.7502,59.579,1.4307,-1.787,59.5124,1.402,-1.7293,59.4211,1.7185,-1.8042,59.0673,1.8546,-1.8756,59.0316,1.6532,-1.8607,58.9543,1.7721,-1.69,58.6309,2.295,-1.721,58.5471,2.2168,-1.9392,58.8623,1.4963,-1.9274,58.8263,1.5624,-1.6307,58.2855,2.3909,-1.7016,58.1706,2.2223,-1.9569,58.3822,1.3737,-1.701,57.9644,1.2993,-0.5141,60.7247,0.5568,-1.7712,59.7218,0.9599,-1.4271,57.5975,1.7525,-1.4478,57.5656,1.9559,-1.4786,57.631,1.9128,-1.5121,57.8276,2.602,-1.4224,57.9477,2.6649,-1.3679,57.8877,2.7058,-1.5023,57.5107,2.4661,-0.3272,57.403,1.7278,-0.3295,57.5078,2.7126,-0.3409,57.4808,2.5231,-0.2223,57.4475,2.8632,-0.2328,57.5252,2.801,-0.0927,57.8672,2.732,0.0,57.8106,2.6122,-0.3223,57.6598,2.8989,-0.2392,57.4519,2.8812,-0.6018,57.772,2.2223,-0.6791,57.8756,2.7553,-0.7712,57.8741,2.8274,-0.6862,57.8815,2.7015,-0.7522,57.8889,2.6939,-0.7452,57.8892,2.4956,-1.2832,57.7994,2.5014,-1.1288,57.8426,2.3551,-1.2138,57.8286,2.557,-1.4042,57.7308,2.7006,-1.5595,57.7174,2.5539,-1.3692,57.654,2.08,-1.5974,57.5849,2.5231,-1.607,57.6361,2.4947,-1.5956,57.5901,2.5477,-0.2527,57.7114,3.0056,-0.0732,57.884,3.077,-0.2064,58.0959,3.1261,-0.4456,57.3191,1.4066,-0.3649,57.5161,1.9046,-0.4784,57.4762,1.743,-0.7927,58.0247,2.5076,-0.7617,58.0351,2.6849,-0.6198,57.7569,2.1186,-0.5254,57.4544,1.6527,-0.7435,57.4346,1.4969,-0.7737,57.3877,1.3876,-0.983,57.5794,1.7773,-0.8444,57.5894,1.7131,-1.0054,57.8258,2.1818,-0.9238,57.8541,2.1941,-1.0414,57.9826,2.5963,-1.1036,57.9718,2.5455,-0.9755,57.7681,2.0513,-1.0715,57.8211,2.1229,-1.5409,57.7986,1.3102,-1.6664,57.8893,1.6689,-1.5503,57.7819,1.5441,-1.5944,57.9622,2.0906,-1.6716,58.1889,2.0684,-1.6225,58.2304,2.1328,-0.482,58.1092,2.8944,-0.502,58.4272,2.9461,-1.5964,58.5887,2.1962,-1.5721,58.2648,2.2434,-0.028,58.7581,2.8665,-1.1325,58.7541,2.7429,-1.0163,59.0215,2.7448,-1.3878,58.7404,2.511,-1.4307,58.7731,2.4648,-1.4987,58.6552,2.3821,-1.7009,58.8847,1.9046,-1.9184,58.5588,1.1895,-1.8499,58.6587,1.389,-1.8467,58.5488,1.42,-1.6235,58.902,2.0367,-1.852,58.7649,1.3601,-0.8288,59.4581,2.5981,-1.0628,59.4004,2.4965,-0.8718,59.8084,2.17,-0.5899,59.9368,2.1625,-1.5867,59.2151,1.8777,-1.3766,59.2191,2.2291,-1.5608,59.5735,1.4682,-1.5313,59.6534,1.427,0.0,60.5621,0.7672,-0.0736,60.6271,0.6941,-0.0494,60.6336,0.674,-0.0146,60.6955,0.4839,-0.0693,60.6564,0.5917,-1.6961,59.6556,0.9785,-0.2049,57.2849,1.5696,-0.4985,57.3085,1.3065,-1.4857,57.7293,1.2977,-0.9531,57.8429,2.2626,-0.9497,57.8858,2.4709,-0.137,57.7912,2.5843,0.0,57.6549,2.4361,-1.2691,58.1774,2.763,-0.4181,57.782,2.7945,-0.0692,57.6065,2.8391,-0.3387,57.6547,2.4439,-0.3485,57.5906,2.4642,-1.1375,57.4771,1.5409,-1.108,57.4614,1.5504,-1.6679,59.9084,0.8969,-1.6496,59.8962,1.0345,-1.6554,59.9168,0.9135,-0.831,57.7132,1.8673,-0.8337,57.7566,1.9576,-0.8729,57.8752,2.198,-1.7576,59.2789,1.3312,-0.1278,57.9018,2.8046,-0.3221,57.3393,2.3579,-0.3207,57.4596,2.4776,-0.3199,57.4864,2.6359,0.0,57.6998,2.8129,-0.004,57.6349,2.4105,-0.3327,57.7481,2.8387,-0.3503,57.8725,2.7902,-0.2939,57.722,2.8243,-0.1488,57.762,2.5939,-0.288,57.7156,2.4602,-0.2789,57.7154,2.4603,-0.3204,57.6788,2.4707,-0.4293,57.8875,2.7131,-1.4555,57.4944,1.9972,-0.31,57.4893,2.0176,-0.3093,57.49,1.9993,-0.3177,57.4953,2.001,-0.3206,57.4957,2.0007,-0.3184,57.4941,1.9961,-0.3076,57.4575,1.9579,-0.3039,57.4524,1.9643,-0.3105,57.4872,2.0188,-0.572,57.8203,2.2862,-0.5192,57.8224,2.3638,-0.2726,57.2792,1.6073,-0.5731,59.7218,2.4601,-0.87,59.7956,2.1953,-1.2442,59.3601,2.2943,-1.0288,59.1141,2.7117,-1.2535,59.3594,2.2823,-1.749,58.3123,1.9501,-1.5913,57.9563,2.0989,-1.594,57.948,2.0781,-1.6884,58.174,2.0466,-1.6768,58.0377,1.9961,-1.403,58.7259,2.5025,-1.4345,58.7531,2.4717,-1.3777,58.3447,2.5463,-1.3097,58.0884,2.5614,-1.3876,58.2225,2.5185,-0.9607,60.0844,1.5264,-0.9225,59.986,1.7906,-1.159,59.8494,1.7381,-1.47,59.7131,1.4451,-1.6104,58.5804,2.1696,-0.8196,60.3786,0.652,-1.3141,57.6544,1.309,-1.1272,60.4247,0.9022,-1.7625,59.5498,0.9436,-1.7844,59.5566,1.0409,-1.7103,59.6514,0.9734,-1.9401,58.9885,1.0642,-1.9076,58.6602,1.1389,-1.9264,58.7205,1.0781,-1.9734,58.7768,1.0158,-1.9578,58.7874,1.0482,-1.6722,57.8683,1.3772,-1.7075,57.8916,1.4167,-1.6925,57.8898,1.3645,-1.6864,57.8714,1.3555,-1.6524,57.8515,1.3498,-1.9352,58.3569,1.4013,-1.9228,58.3199,1.3944,-2.0047,58.9431,1.0733,-1.9995,58.8205,1.1176,-1.9486,58.8911,1.4434,-1.9647,58.8567,1.3776,-1.8322,59.2394,1.5984,-1.8613,59.1742,1.5663,-1.8905,59.109,1.5342,-1.9122,59.0436,1.4906,-1.9583,59.2675,1.1415,-1.9689,59.2823,1.0547,-1.9801,59.2673,1.0361,-1.9406,59.243,1.2855,-1.946,59.2008,1.2783,-1.8029,59.6889,0.9256,-1.9806,59.2048,1.1261,-1.9204,59.3559,1.1397,-1.9393,59.3117,1.1406,-1.9139,59.2884,1.3053,-1.8607,59.3791,1.3447,-1.8873,59.3338,1.325,-1.7956,59.6118,1.0637,-1.8033,59.6307,1.014,-1.8989,59.4946,1.0015,-1.8654,59.4827,1.1502,-1.8825,59.4443,1.1378,-1.7971,59.6362,1.1998,-1.7885,59.6462,1.1655,-1.6028,59.895,1.2934,-1.6114,59.9704,1.0551,-1.7199,59.8172,0.9306,-1.7388,59.8121,0.8912,-1.5153,60.0924,0.9353,-1.5298,60.094,0.9292,-1.5342,59.9646,1.3177,-1.5902,59.7926,1.5232,-1.3968,60.2209,0.8725,-1.4058,60.2091,0.9031,-1.3806,60.2248,0.9082,-1.3946,60.2255,0.8502,-1.2294,60.335,0.9206,-1.2048,60.3668,0.9075,-1.1765,60.3824,0.74,-1.2013,60.3702,0.746,-0.9733,60.5326,0.605,-0.9473,60.5133,0.9286,-0.8842,60.5444,0.9379,-0.8789,60.4071,1.4661,-0.8878,60.4872,1.1977,-0.9773,60.4375,1.1818,-0.6327,60.699,0.51,-0.6006,60.7089,0.5124,-0.4566,60.6962,0.9753,-0.4681,60.6381,1.2443,-0.3875,60.7737,0.593,-0.404,60.7674,0.621,-0.2873,60.8032,0.5203,-0.2443,60.8132,0.5603,-1.6759,59.8041,1.2599,-1.8563,58.2038,1.5501,-1.8409,58.153,1.6104,-1.8338,58.2595,1.8627,-1.6583,57.8848,1.325,-1.6705,57.8916,1.3562,-1.812,58.1385,1.3585,-1.8672,58.2381,1.2699,-1.8955,58.3204,1.3894,-1.8272,58.1599,1.3702,-1.9264,58.651,1.2217,-1.9261,58.6532,1.1987,-1.9262,58.6592,1.1923,-1.9546,58.8704,1.0727,-1.8727,59.3032,1.0024,-0.3244,60.5321,0.8261,-0.3925,60.5261,0.8378,-0.3898,60.5726,0.6423,-0.4129,60.5488,0.5931,-0.3035,60.6161,0.672,-0.1883,60.5441,0.8025,-0.2563,60.5381,0.8143,-0.3663,60.5843,0.6365,-0.8654,60.348,0.73,-0.8423,60.3666,0.658,-0.7805,60.4065,0.7225,-0.4563,60.4985,0.8495,-0.4803,60.5049,0.7517,-0.9981,60.2986,0.6909,-0.9771,60.2474,0.978,-1.0644,60.2478,0.839,-1.0275,60.2192,0.9955,-1.0887,60.23,0.8673,-1.1825,60.1613,0.8901,-1.1874,60.1616,0.8391,-1.1622,60.1787,0.8585,-1.2841,60.0858,0.8347,-1.1823,60.119,1.0365,-1.2226,60.131,0.8913,-1.1987,60.1491,0.8906,-1.5414,59.85,0.8582,-1.5262,59.8724,0.8964,-1.5562,59.8442,0.8985,-1.5696,59.8312,0.9133,-1.5032,59.8392,1.1278,-1.5203,59.8139,1.1361,-1.6165,59.6694,1.182,-1.8173,59.4476,0.9619,-1.7524,59.5655,0.9429,-1.6752,59.5536,1.2027,-1.748,59.395,1.2247,-1.8251,59.427,0.9664,-1.7807,59.2952,1.2276,-1.8652,59.3213,0.9866,-1.8422,59.2624,1.117,-1.9348,59.0225,1.0208,-1.9467,58.8877,1.0447,-1.9522,58.8375,1.0464,-1.9224,58.6151,1.1624,-1.7789,58.1279,1.5093,-1.7896,58.2541,1.6522,-1.8093,58.6491,1.7316,-0.2638,60.4593,1.1969,-0.3155,60.3431,1.5832,-0.3561,60.4457,1.2124,-0.5372,60.3771,1.2268,-1.1551,60.0336,1.3221,-1.2345,60.083,1.0483,-1.2265,59.9796,1.3419,-1.3228,60.0124,1.0714,-1.3047,60.0297,1.0657,-1.4578,59.8827,1.1136,-1.7487,59.2979,1.3367,-1.5746,57.8331,1.4138,-1.3914,57.7111,1.3743,-0.2801,57.1602,1.4713,-0.2801,57.1498,1.4947,-0.3276,57.1714,1.4793,-0.5503,57.3245,1.29,-1.123,57.5672,1.2937,-0.5055,57.2767,1.3206,-0.4129,57.2853,1.2961,-0.1736,57.2003,1.5047,-0.8187,58.0275,2.5135,-0.9574,58.043,2.7023,-1.0334,57.9615,2.4402,-1.0113,57.976,2.5866,-0.7868,57.8861,2.0819,-0.4247,57.2975,1.3359,0.0169,58.2508,2.6426,1.0526,59.0727,2.9077,0.7859,59.1831,2.9915,0.7792,59.0065,3.0322,1.053,58.7864,2.9321,1.2511,58.3941,2.7723,1.3139,58.4368,2.714,1.893,59.4757,1.0383,1.8906,59.4836,1.0336,1.5298,58.4185,2.5089,1.5824,58.3601,2.4806,1.8338,58.2595,1.8627,1.7592,57.9029,1.5301,1.906,58.3785,1.362,1.9113,58.435,1.1821,1.9419,58.5102,1.3643,1.9495,58.5856,1.4535,0.8597,60.5962,0.5644,0.9035,60.5767,0.6777,0.9004,60.5806,0.5511,1.7674,59.7317,0.9547,1.7741,59.7061,1.044,1.4786,57.631,1.9128,1.4271,57.5975,1.7525,0.3409,57.4808,2.5343,0.3255,57.3398,2.3706,0.3154,57.3505,2.6184,0.3004,57.4541,2.6419,0.2328,57.5252,2.8101,0.3387,57.6547,2.4525,0.623,57.6662,1.995,0.4769,57.457,1.7241,0.3745,57.5426,2.1988,0.43,57.7054,2.4909,0.3613,57.6274,2.7944,0.4224,57.7145,2.6685,0.4163,57.7103,2.8282,0.7797,58.0228,3.0384,0.8049,57.5515,1.7159,0.8084,57.43,1.5154,0.9732,57.8274,2.7457,1.1288,57.8426,2.3583,1.2814,57.7994,2.5049,1.4004,57.7308,2.7053,1.3678,57.8877,2.7083,1.5325,57.6456,2.5985,1.5608,57.7174,2.5547,0.4689,58.02,3.1216,0.4066,58.1924,3.135,1.2258,57.7178,2.7303,1.3724,57.743,2.3624,1.3635,57.4838,1.8435,1.2527,57.5181,1.8215,1.6054,57.6361,2.4953,0.3193,57.8656,3.084,0.0,57.6258,2.3998,0.2508,58.0042,2.8452,0.4973,57.3274,1.3617,0.4784,57.4762,1.7459,0.3744,57.43,1.7182,0.6198,57.7569,2.1246,0.7086,57.862,2.2338,0.5254,57.4544,1.6541,0.7435,57.4346,1.4969,0.8819,57.4475,1.4162,0.6672,57.6407,1.8398,0.62,57.4991,1.6682,0.8929,57.8323,2.1047,0.9755,57.7681,2.053,1.1262,57.8455,2.233,1.1043,57.8525,2.3267,1.3646,57.9899,2.4453,1.4828,57.8641,2.1186,1.1913,57.8485,2.2789,1.6185,57.8961,1.8767,1.5721,58.2648,2.2434,1.6225,58.2304,2.1328,1.5944,57.9622,2.0906,1.6716,58.1889,2.0684,1.4029,58.0708,2.4616,1.3876,58.2225,2.5185,0.2511,58.3872,2.9516,0.482,58.1092,2.9019,1.8001,58.2229,1.4925,1.4307,58.7731,2.4648,1.4886,58.7199,2.3932,1.5964,58.5887,2.1962,1.4987,58.6552,2.3821,1.7413,58.5119,1.9226,1.917,58.5193,1.1813,1.8499,58.6587,1.389,1.9184,58.5588,1.1895,1.852,58.7649,1.3601,0.5515,59.4926,2.6552,0.2506,59.5141,2.6553,0.2491,59.8342,2.4699,0.8288,59.4581,2.5981,0.855,59.6505,2.4379,0.564,59.7333,2.4535,1.8099,59.1911,1.242,1.4839,59.4142,1.8786,1.3248,59.5799,1.9632,1.3623,59.6669,1.7834,1.3769,59.9604,1.0883,1.2985,59.9113,1.3628,1.3588,59.9777,1.0826,0.0632,60.621,0.5591,0.0693,60.6564,0.5917,0.0494,60.6336,0.674,0.0736,60.6271,0.6941,0.1745,57.4647,1.9039,0.2397,57.3807,1.6906,1.5704,57.838,1.3512,0.3568,57.2977,1.4746,0.2049,57.2849,1.5706,1.5135,57.7757,1.3277,0.9531,57.8429,2.2668,0.9497,57.8858,2.4781,0.137,57.7912,2.5879,1.2785,58.0654,2.7648,1.2691,58.1774,2.7633,0.3004,57.6954,2.8617,0.3485,57.5906,2.4739,1.5849,57.7375,2.4476,1.5975,57.5849,2.5245,1.5402,57.5164,2.4551,1.6715,59.9001,0.9027,1.6679,59.9084,0.8969,1.6008,59.9972,1.008,1.558,60.025,1.0723,0.3214,57.7719,2.5455,0.288,57.7156,2.4672,0.3035,57.5342,2.1621,0.2982,57.5384,2.158,0.2945,57.4939,2.0572,0.3198,57.372,2.2423,0.2587,57.4474,2.9079,0.3303,57.4908,2.5007,0.2733,57.5243,2.2944,0.2318,57.851,2.695,0.3306,57.6582,2.4847,0.1178,57.5472,2.2312,1.6074,57.656,2.5102,1.5923,57.59,2.5491,0.3364,57.4744,1.9936,0.3352,57.4769,1.9777,0.3055,57.4483,1.9871,0.3039,57.4524,1.9692,0.3097,57.474,1.9903,0.309,57.4857,2.0203,0.3282,57.4862,1.9936,0.33,57.484,2.0064,0.3223,57.4977,2.0237,0.3143,57.4528,1.999,0.3206,57.4962,2.0268,0.3103,57.4889,1.9994,0.3084,57.4863,2.0019,0.3271,57.485,2.0167,0.3288,57.4742,1.9664,0.3005,57.4492,1.9658,0.3046,57.4464,1.988,0.814,57.8129,2.016,0.6345,57.7186,2.013,0.2991,57.4502,1.9577,1.5122,59.3828,1.8636,1.5053,59.3769,1.8837,1.7147,59.1705,1.5717,1.7132,59.1554,1.594,1.3097,58.0884,2.5615,1.3793,58.0041,2.4476,1.0189,59.7634,2.0933,1.5015,58.8103,2.3053,1.4893,58.8113,2.3305,1.4912,58.8285,2.3142,1.6029,57.8796,1.8848,1.7853,58.8624,1.6833,1.3777,58.3447,2.5463,1.2584,59.3458,2.2878,1.7576,59.2789,1.3312,0.9121,59.9392,1.8932,0.6279,60.1269,1.8235,0.9225,59.986,1.7906,1.6297,58.8919,2.0322,1.6141,58.7458,2.1047,1.7247,58.0284,1.7604,0.7737,57.3877,1.3876,0.6242,57.3409,1.3639,0.8358,60.6025,0.6862,0.1439,60.8291,0.5577,0.1207,60.8221,0.5499,0.0697,60.846,0.5579,0.0691,60.851,0.5273,1.7111,59.6378,0.9391,1.6361,59.6308,1.1889,1.9237,59.1172,1.111,1.9188,59.152,1.103,1.9425,58.9588,1.0339,1.9908,58.7076,1.1129,1.7101,57.9041,1.3515,1.7223,57.9297,1.3485,1.7428,57.915,1.4562,1.8974,58.2279,1.3878,1.908,58.2696,1.3765,1.9228,58.3199,1.3944,1.9803,58.806,1.3048,1.9814,58.7784,1.3141,1.9828,58.6508,1.1621,1.9666,58.6416,1.229,1.9961,58.8697,1.0922,1.9747,58.9491,1.2563,1.9988,59.0278,1.1254,1.9728,58.6546,1.1995,1.9795,58.8265,1.2979,1.9647,58.8567,1.3776,1.9122,59.0436,1.4906,1.8756,59.0316,1.6532,1.9339,58.9781,1.4471,1.9644,58.9513,1.323,1.9783,58.6549,1.1829,1.9514,59.1587,1.2712,1.9323,59.4032,1.0051,1.9162,59.4198,1.0385,1.922,59.3785,1.0794,1.9014,59.4001,1.1387,1.7774,59.7143,0.9548,1.7431,59.7771,0.9447,1.744,59.7995,0.9012,1.7429,59.7608,1.0299,1.7672,59.7182,1.0409,1.7654,59.7514,0.9298,1.7537,59.7314,1.1175,1.5903,60.0239,0.9609,1.4924,60.1334,0.8813,1.508,60.1172,0.8997,1.3971,60.1038,1.3663,1.3767,60.0036,1.6148,1.4656,60.0342,1.342,1.3977,60.1888,1.124,1.4387,60.1469,1.1108,1.2082,60.354,0.7834,1.1314,60.4016,0.7776,1.117,60.4208,0.7294,0.9518,60.5438,0.6875,0.9488,60.5421,0.6728,0.9312,60.5571,0.6649,0.9861,60.5203,0.6944,0.8208,60.605,0.6245,0.7588,60.6198,0.6333,0.7503,60.5919,0.9496,0.6311,60.6804,0.7119,0.5747,60.7117,0.5325,0.4016,60.7536,0.732,0.4067,60.7727,0.5128,0.3471,60.7903,0.5167,1.2676,60.2692,1.1379,1.8617,58.623,1.8411,1.9123,58.4882,1.5896,1.8531,58.2227,1.3777,1.8413,58.1773,1.3773,1.9076,58.6602,1.1389,1.9078,58.6579,1.1362,1.9093,58.7093,1.1012};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=3 */
		private double[] getfrontal_Coord_6_121_point_3()
		{
			double[] value = {1.9415,58.9387,1.0489,1.9412,58.9378,1.043,1.8848,59.2734,1.0223,1.859,59.3534,1.0567,1.852,59.354,0.9831,1.787,59.4961,0.9539,1.7824,59.5219,0.9456,1.7322,59.6006,0.9357,1.7331,59.61,0.9638,1.7422,59.606,1.0272,0.1601,60.6198,0.6426,0.1883,60.5441,0.8025,0.4129,60.5488,0.5931,0.4087,60.5441,0.6434,0.4716,60.5164,0.675,0.7754,60.3603,0.908,0.8224,60.381,0.7265,0.8009,60.3974,0.7248,0.9315,60.3204,0.6697,0.889,60.3357,0.734,0.9948,60.2989,0.7589,1.2626,60.1006,0.8925,1.2896,60.0813,0.8602,1.4398,59.9522,0.9229,1.3949,59.9431,1.0939,1.4144,59.974,0.9211,1.4237,59.966,0.9127,1.4328,59.9582,0.92,1.6522,59.7054,0.9048,1.6652,59.6955,0.9573,1.6452,59.735,0.9298,1.5545,59.7633,1.1526,1.5932,59.7941,0.898,1.6249,59.7618,0.9282,1.6779,59.6733,0.95,1.6714,59.6851,0.9554,1.6059,59.6874,1.1775,1.6918,59.6623,0.9745,1.6948,59.515,1.2096,1.7987,59.4787,0.9506,1.8065,59.4739,0.9587,1.7464,59.5752,0.9424,1.6557,59.5922,1.1958,1.8373,59.4042,1.0076,1.8421,59.3839,0.9748,1.8518,58.7362,1.3672,1.8214,58.318,1.4752,0.0793,60.4867,1.1658,0.7184,60.3085,1.2413,0.8163,60.2528,1.2551,1.0836,60.0875,1.3024,0.972,60.0826,1.515,1.0121,60.1414,1.2826,1.4223,59.7553,1.4592,1.47,59.7131,1.4451,1.5776,59.5813,1.4121,1.6459,59.6115,1.1923,1.6147,59.427,1.5438,1.6238,59.5092,1.3972,1.4908,57.768,1.3349,1.2639,57.5761,1.7243,1.3735,57.6713,1.5269,1.2851,57.616,1.5182,0.1666,57.5048,2.1069,0.1553,57.4779,2.022,0.3076,57.3998,2.1206,0.2998,57.4769,2.0708,1.8945,59.2582,1.0056,1.9105,59.1911,1.1089,1.9093,59.181,1.0106,0.9039,57.4352,1.3228,1.0917,57.5613,1.3506,1.3129,57.6359,1.3582,1.2985,57.6457,1.3716,1.5681,57.8235,1.3966,0.5085,57.2888,1.3722,0.351,57.2232,1.4992,0.785,57.3533,1.3185,0.7999,57.3381,1.2827,0.9183,57.4071,1.263,0.8094,57.332,1.252,0.5428,57.2978,1.3539,0.663,57.2848,1.2705,0.8172,57.3355,1.3087,0.1607,57.1562,1.4588,0.6266,57.4124,1.473,1.0572,57.8852,2.3439,0.819,57.9222,2.187,0.7942,57.9236,2.1902,0.1765,57.2023,1.4988,0.4985,57.3604,1.5431,0.662,57.3006,1.3254,0.6497,57.3966,1.5177,0.9435,57.4131,1.2956,-0.1269,57.5896,2.8999,-0.1212,57.5664,2.8984,-0.1439,57.5647,2.8864,0.0455,57.589,2.9256,-0.0421,57.4479,2.9048,-0.0817,57.6331,2.8901,0.0954,57.6252,2.8809,0.1141,57.5903,2.889,0.1212,57.5664,2.9033,0.1569,57.5253,2.9345,0.1439,57.5647,2.8921,0.1225,57.5775,2.8979,0.0882,57.5613,2.8996,0.0817,57.6331,2.8932,0.0174,57.6371,2.8715,0.0085,57.623,2.8729,0.066,57.6422,2.8546,-0.0361,57.4479,2.905,-0.004,57.624,2.8729,-0.0195,57.4536,2.9139,-0.0048,57.6268,2.8659,-0.1316,57.5507,2.9778,-0.6014,57.8313,2.8167,-0.6162,57.862,2.7462,-0.6012,57.8293,2.5063,-0.5676,57.8153,2.509,-0.6633,57.8257,2.8384,-0.6553,57.8372,2.8617,-0.5163,57.778,2.8246,-0.772,57.8706,2.8313,-0.6579,57.8437,2.8265,-0.7939,58.1897,3.0495,-0.5153,57.7871,2.8103,-0.5791,57.7967,2.8322,-0.5887,57.8007,2.827,-0.6524,57.8535,2.853,-0.6007,57.8466,2.848,-0.3193,57.8656,3.0747,0.7603,57.8812,2.7905,0.9827,57.8665,2.865,0.7502,57.8858,2.8882,-0.6883,58.022,3.0273,-0.7269,57.9585,2.9871,0.7931,57.8625,2.8903,-0.6533,57.85,2.8843,-0.5829,57.8043,2.856,-0.6125,57.8599,2.7104,-0.5278,57.8201,2.7167,-0.0061,57.6277,2.8716,0.0648,57.6345,2.8532,0.0175,57.6354,2.8737,0.0494,57.6053,2.9074,0.1605,57.564,2.9098,-0.0708,57.6473,2.8655,-0.0013,57.5954,2.9414,-0.1751,57.5231,2.9491,0.2779,57.1877,1.5288,0.3082,57.2094,1.5254,0.9931,58.1325,2.7737,0.9628,58.137,2.7852,0.4468,57.2359,1.373,0.5055,57.2767,1.3206,1.4825,57.7708,1.3996,0.0864,57.6266,2.3637,1.5206,59.5267,1.6034,1.6077,59.4248,1.5649,1.7225,59.3443,1.3519,1.7713,59.3237,1.2267,1.7601,59.3579,1.2258,1.5313,59.6534,1.427,1.6165,59.6694,1.182,1.4846,59.857,1.122,1.0275,60.2192,0.9955,0.9142,60.1971,1.2688,0.8258,60.3321,0.9255,0.1716,60.473,1.1814,0.0815,60.5535,0.7841,1.9203,58.725,1.0968,1.8647,59.3343,1.0426,1.7483,59.5964,1.0287,1.748,59.585,0.9788,1.6702,59.6871,0.9579,1.6492,59.7177,0.8958,1.5132,59.8751,0.8213,1.4073,59.9801,0.9122,1.1987,60.1491,0.8906,1.2722,60.0959,0.8197,1.2841,60.0858,0.8347,0.7116,60.3879,0.8963,0.6582,60.4503,0.6683,0.6734,60.4439,0.6979,0.6172,60.4614,0.6746,0.2782,60.6361,0.5745,0.3126,60.6173,0.5761,0.3178,60.6075,0.6851,1.7981,59.5354,1.0451,1.9262,58.6312,1.2597,1.3168,60.156,1.3808,0.3013,60.7207,0.9705,0.334,60.7652,0.7318,0.2478,60.7799,0.7316,0.1616,60.7946,0.7313,0.4712,60.7407,0.5505,0.5771,60.701,0.7187,0.6325,60.6535,0.6607,0.6035,60.6441,0.9624,0.7733,60.6263,0.694,0.9322,60.5571,0.6835,1.1552,60.3868,0.7793,1.4031,60.2024,0.9767,1.3893,60.2064,1.0185,1.3391,60.225,1.1303,1.4415,60.1792,0.8827,1.4358,60.1847,0.8798,1.5094,60.1132,0.9223,1.9059,59.4983,0.9577,1.9007,59.5054,0.9459,1.9081,59.4636,1.0017,1.8976,59.4686,1.0322,1.904,59.45,1.0368,1.9557,58.9127,1.4036,1.9737,58.8007,1.3515,1.9894,58.8028,1.0949,1.9965,58.9062,1.0993,1.985,58.6594,1.149,1.6864,57.8714,1.3555,1.6649,57.8747,1.3603,1.9081,58.4704,1.3506,0.014,60.8503,0.4646,1.6823,59.8882,0.8968,1.6683,59.8617,1.0499,1.701,59.845,0.9281,0.7994,59.163,2.7978,0.8055,59.4542,2.612,0.9213,59.1343,2.7561,1.4982,57.8698,2.1046,1.4975,57.8797,2.1248,1.6809,58.2056,2.0545,1.0339,59.0247,2.7337,1.0163,59.0215,2.7448,1.0199,59.0552,2.7341,0.7368,57.7149,1.9198,0.3118,57.4786,1.9852,1.5698,57.5812,2.2968,1.5603,57.5757,2.3275,0.2535,57.7657,2.5378,0.3106,57.4493,2.1969,0.2992,57.7422,2.8655,0.3399,57.7033,2.4888,1.4224,57.9477,2.6657,1.4823,57.9881,2.6064,0.8337,57.7566,1.9593,1.6554,59.9168,0.9135,1.5608,59.5735,1.4682,0.5899,59.9368,2.1625,1.8467,58.5488,1.42,1.1325,58.7541,2.7429,1.0147,58.778,2.7955,0.502,58.4272,2.9476,1.6664,57.8893,1.6689,1.4474,57.9244,2.2869,1.0715,57.8211,2.1241,1.1036,57.9718,2.5491,0.9629,57.9464,2.3704,0.5131,57.7066,2.1214,0.5938,57.8259,2.29,0.4998,57.8692,2.468,0.2527,57.7114,3.0145,0.9762,57.818,2.805,0.9489,57.5502,1.7519,0.3801,57.61,2.6152,0.6465,57.5016,1.7206,1.4867,58.1345,2.5994,1.1532,57.546,1.7973,1.4731,60.1476,0.9084,1.4601,60.1605,0.8997,1.9458,58.5494,1.3567,1.8328,58.1116,1.3757,1.8875,58.7031,1.7416,0.1579,58.1869,3.1115,0.0,60.7698,0.9609,0.146,60.7453,0.9657,0.0,60.7056,1.2378,-0.7168,58.1647,2.83,-0.7414,58.4294,2.8629,-0.3512,57.1902,1.4441,-0.4386,57.2604,1.3625,-1.4619,57.7266,1.5356,-1.5539,59.572,1.4848,-1.6077,59.4248,1.5649,-1.6963,59.3907,1.3671,-1.4802,59.7227,1.4179,-1.5717,59.738,1.1609,-1.2985,59.9113,1.3628,-1.2867,60.047,1.0601,-0.4467,60.4114,1.2196,-0.6477,60.4155,0.8846,-1.8426,58.4131,1.4575,-1.6796,57.9246,1.3122,-1.9203,58.725,1.0968,-1.9093,58.7093,1.1012,-1.7601,59.3579,1.2258,-1.8487,59.3659,0.9807,-1.8203,59.4417,0.9636,-1.7214,59.6225,0.9329,-1.3415,60.037,0.8829,-1.3332,60.0437,0.8786,-1.3697,60.0125,0.9064,-1.3615,60.0195,0.9018,-1.4921,59.898,0.8057,-1.3127,60.0616,0.8931,-1.0402,60.2656,0.8107,-1.1425,60.1916,0.8889,-0.5031,60.5026,0.6909,-0.5242,60.4943,0.7086,-0.4653,60.527,0.5754,-0.3178,60.6075,0.6851,-0.0815,60.5535,0.7841,-1.7717,59.5754,1.0788,-1.7602,59.5927,1.0718,-1.8208,59.4432,0.972,-1.8201,59.4516,1.0022,-1.9385,59.0184,1.1048,-1.9402,58.8205,1.0993,-1.9268,58.6591,1.2151,-1.9266,58.6267,1.2833,-1.9174,58.5551,1.3493,-1.8684,58.2667,1.3671,-1.6742,57.892,1.352,-1.6649,57.8747,1.3603,-1.8255,58.1023,1.6706,-1.761,57.8998,1.8448,-1.8238,59.4458,1.3734,-0.4067,60.7727,0.5128,-0.3918,60.7578,0.5822,-0.5736,60.6874,0.6875,-0.9035,60.5767,0.6777,-0.9312,60.5571,0.6649,-1.0874,60.4612,0.6416,-1.114,60.4466,0.6192,-1.1284,60.4275,0.6667,-1.2582,60.3089,0.8839,-1.4031,60.2024,0.9767,-1.4154,60.2006,0.902,-1.7585,59.7334,1.0369,-1.7506,59.7661,0.9456,-1.7575,59.762,0.9353,-1.749,59.7131,1.2264,-1.8397,59.5249,1.1013,-1.8483,59.5211,1.1626,-1.8568,59.4927,1.1159,-1.797,59.6177,1.1188,-1.8311,59.541,1.094,-1.9061,59.4378,1.0475,-1.9605,59.3161,1.0343,-1.9622,59.2984,1.055,-1.9718,58.6923,1.3678,-2.0025,58.9998,1.0878,-2.0066,58.9709,1.0689,-1.9763,58.9082,1.2701,-1.9931,58.7232,1.1072,-1.9707,58.6455,1.2078,-1.9693,58.6511,1.2214,-1.7872,57.9739,1.4623,-1.7555,57.9867,1.3663,-1.9454,58.8036,1.0822,-1.853,59.3682,1.0471,-0.3471,60.7903,0.5167,-1.4566,57.7264,1.8786,-1.3714,59.6686,1.7631,-0.989,59.7674,2.12,-1.1731,58.383,2.7289,-1.6625,58.0241,2.0101,-1.599,57.9573,2.0822,-0.564,59.7333,2.4535,-0.3255,57.3398,2.3603,-0.3106,57.4493,2.1895,-0.5131,57.7066,2.115,-0.3364,57.4744,1.9881,-0.3355,57.4707,1.9987,-1.5413,57.5641,2.1695,-0.4372,57.8734,2.749,-0.387,57.6761,2.6471,-0.3296,57.4927,2.4597,-0.1575,57.7813,2.5673,-1.558,60.025,1.0723,-1.6715,59.9001,0.9027,-1.3706,57.5253,1.8249,-1.5172,57.5177,2.4522,-0.3199,57.5005,2.3763,-0.0632,60.621,0.5591,-0.0582,60.6366,0.5231,-0.0335,60.6501,0.5061,0.0,60.6999,0.5117,-1.3248,59.5799,1.9632,-1.3623,59.6669,1.7834,-1.0793,59.5175,2.364,-0.2491,59.8342,2.4699,-0.5515,59.4926,2.6552,-1.917,58.5193,1.1813,-1.7413,58.5119,1.9226,-1.4886,58.7199,2.3932,-0.7224,57.8214,2.0578,-0.7009,57.8209,2.1102,-0.4998,57.8692,2.4595,-1.5379,57.6456,2.5963,-1.375,57.743,2.3611,-1.2238,57.7592,2.656,-0.9662,57.8765,2.6366,-0.7116,57.8752,2.4979,-0.6511,57.8445,2.8236,-0.623,57.6662,1.9899,-1.7841,58.0916,1.3597,-1.7504,58.879,2.0583,-1.3423,58.7308,2.7109,-0.7679,58.5038,3.0101,-0.8358,60.6025,0.6862,-0.7353,58.1901,3.0611,-1.5824,58.3601,2.4806,-1.5298,58.4185,2.5089,-1.9113,58.435,1.1821,-1.9458,58.5494,1.3567,-0.8597,60.5962,0.5644,-0.9004,60.5806,0.5511,-0.43,57.7054,2.4807,-0.3842,57.7701,2.945,-0.7544,57.8374,2.2261,-0.8084,57.43,1.5154,-1.3358,57.6591,2.6631,-0.6247,57.865,2.3744,-1.4762,58.2176,2.4143,-0.939,59.1393,2.7449,-1.0199,59.0552,2.7341,-0.1666,57.5048,2.1034,-0.1876,57.5221,2.1116,-1.8267,59.4339,1.0063,-1.6772,57.946,1.2498,-0.2662,57.7406,2.4959,-0.3399,57.7033,2.4804,-0.2535,57.7657,2.5315,-1.0339,59.0247,2.7337,-1.6809,58.2056,2.0545,-1.4982,57.8698,2.1046,-1.4975,57.8797,2.1248,-1.2584,59.3458,2.2878,-1.0467,59.1053,2.7039,-0.6279,60.1269,1.8235,-0.9121,59.9392,1.8932,0.0,60.8476,0.4921,-0.0648,60.8469,0.4995,-1.9081,58.4704,1.3506,-1.9828,58.6508,1.1621,-1.9666,58.6416,1.229,-1.9988,59.0278,1.1254,-1.9514,59.1587,1.2712,-1.9162,59.4198,1.0385,-1.9323,59.4032,1.0051,-1.922,59.3785,1.0794,-1.9014,59.4001,1.1387,-1.8906,59.4836,1.0336,-1.7654,59.7514,0.9298,-1.5903,60.0239,0.9609,-1.4358,60.1847,0.8798,-1.4415,60.1792,0.8827,-1.3893,60.2064,1.0185,-1.3391,60.225,1.1303,-0.7503,60.5919,0.9496,-0.6325,60.6535,0.6607,-0.5747,60.7117,0.5325,-0.4016,60.7536,0.732,-1.2676,60.2692,1.1379,-1.8531,58.2227,1.3777,-1.852,59.354,0.9831,-1.7981,59.5354,1.0451,-1.7331,59.61,0.9638,-1.7422,59.606,1.0272,-0.2782,60.6361,0.5745,-0.3126,60.6173,0.5761,-0.6734,60.4439,0.6979,-0.6582,60.4503,0.6683,-0.6172,60.4614,0.6746,-1.2722,60.0959,0.8197,-1.4398,59.9522,0.9229,-1.4144,59.974,0.9211,-1.4073,59.9801,0.9122,-1.5132,59.8751,0.8213,-1.6492,59.7177,0.8958,-1.6249,59.7618,0.9282,-1.6918,59.6623,0.9745,-1.6948,59.515,1.2096,-1.7483,59.5964,1.0287,-1.748,59.585,0.9788,-0.1716,60.473,1.1814,-0.8258,60.3321,0.9255,-0.9142,60.1971,1.2688,-1.4846,59.857,1.122,-1.7225,59.3443,1.3519,-1.7713,59.3237,1.2267,-0.9628,58.137,2.7811,-0.3082,57.2094,1.5243,-0.2779,57.1877,1.5276,1.787,59.5124,1.402,1.7293,59.4211,1.7185,1.8042,59.0673,1.8546,1.721,58.5471,2.2168,1.9392,58.8623,1.4963,1.7841,58.0916,1.3597,1.457,57.5656,2.5395,0.768,57.9308,2.9736,0.4229,57.7788,2.35,0.1915,57.2755,1.6009,0.7267,57.8939,2.3859,0.8118,57.8883,2.0904,1.4524,58.3215,2.4662,0.939,59.1393,2.7449,1.5949,59.2187,1.8573,0.1876,57.5221,2.1155,1.8203,59.4417,0.9636,1.8208,59.4432,0.972,1.8267,59.4339,1.0063,1.6772,57.946,1.2498,1.8426,58.4131,1.4575,0.2662,57.7406,2.5025,1.3047,60.2718,0.9235,0.2516,57.8428,2.6767,0.1488,57.762,2.5979,0.31,57.4893,2.0229,0.3076,57.4575,1.9627,0.9607,60.0844,1.5264,1.159,59.8494,1.7381,1.6104,58.5804,2.1696,1.853,59.3682,1.0471,1.8487,59.3659,0.9807,1.8658,58.1282,1.3646,2.0047,58.9431,1.0733,1.9486,58.8911,1.4434,1.8613,59.1742,1.5663,1.9622,59.2984,1.055,1.9605,59.3161,1.0343,1.9061,59.4378,1.0475,1.8397,59.5249,1.1013,1.8311,59.541,1.094,1.8483,59.5211,1.1626,1.8033,59.6307,1.014,1.7506,59.7661,0.9456,1.7585,59.7334,1.0369,1.7575,59.762,0.9353,1.4154,60.2006,0.902,1.114,60.4466,0.6192,1.0874,60.4612,0.6416,1.1284,60.4275,0.6667,0.5736,60.6874,0.6875,0.2873,60.8032,0.5203,0.2443,60.8132,0.5603,1.6759,59.8041,1.2599,1.8563,58.2038,1.5501,1.6901,57.9213,1.3471,1.6705,57.8916,1.3562,1.8955,58.3204,1.3894,1.8684,58.2667,1.3671,1.9266,58.6267,1.2833,1.9174,58.5551,1.3493,1.9268,58.6591,1.2151,1.9385,59.0184,1.1048,1.8201,59.4516,1.0022,0.3898,60.5726,0.6423,0.8423,60.3666,0.658,0.7805,60.4065,0.7225,1.0644,60.2478,0.839,1.0887,60.23,0.8673,1.1874,60.1616,0.8391,1.2226,60.131,0.8913,1.5262,59.8724,0.8964,1.5414,59.85,0.8582,1.5562,59.8442,0.8985,1.7214,59.6225,0.9329,1.9348,59.0225,1.0208,0.6477,60.4155,0.8846,0.4467,60.4114,1.2196,1.5717,59.738,1.1609,1.4802,59.7227,1.4179,1.6963,59.3907,1.3671,1.5539,59.572,1.4848,1.4619,57.7266,1.5356,0.4386,57.2604,1.3625,0.1736,57.2003,1.5053,1.0113,57.976,2.592,-0.0072,57.5953,2.9271,-0.0001,57.5484,2.8725,0.1316,57.5507,2.9833,-0.7101,57.8971,2.9511,-0.5952,57.853,2.8693,-0.4066,58.1924,3.1289,-0.0651,57.6492,2.8645,0.1367,57.561,2.979,-0.1367,57.561,2.9733,-0.0761,57.5824,2.9893,1.078,60.191,1.013,0.5201,60.4708,0.8612,0.5839,60.4432,0.8729,1.2079,60.1488,0.7855,0.7326,60.428,0.5974,0.6953,60.4403,0.6095,0.7754,60.4064,0.6621,1.7227,59.6264,0.9487,1.8313,59.423,1.0168,0.0,60.824,0.7309,0.66,60.6658,0.5559,0.9536,60.5436,0.617,1.5786,60.0534,0.909,1.5478,60.0759,0.9437,1.6472,59.9362,0.8976,1.839,59.55,1.0425,1.8834,59.5323,0.9508,1.9258,59.3622,1.0901,1.9564,59.3368,1.018,1.9375,59.344,1.0752,1.968,59.0295,1.2491,1.9977,59.0581,1.1137,1.9568,59.1165,1.264,1.9894,59.1328,1.1308,1.9772,58.7185,1.3466,1.7344,57.956,1.356,1.9647,58.6311,1.2411,1.9614,58.6218,1.2686,1.9127,58.5162,1.3572,1.985,59.1686,1.1219,1.8088,59.6673,0.9428,1.7254,59.6191,0.9474,1.8071,59.6823,0.9243,1.8054,59.5893,1.0722,1.7258,59.6124,0.9328,1.3303,60.0461,0.8491,1.4345,60.1887,0.8565,1.649,59.9563,0.8614,1.1221,60.2053,0.8779,1.3192,60.2853,0.8066,0.7985,60.3962,0.6657,0.9324,60.5575,0.6018,0.5192,60.5026,0.593,0.4927,60.5131,0.5709,0.2208,60.6218,0.5858,1.7175,57.972,1.3629,1.4699,58.2321,2.4303,1.3937,58.6745,2.5206,1.377,58.6786,2.5334,1.463,57.9381,2.2889,0.6167,60.1262,1.8351,0.5192,57.8224,2.3721,0.572,57.8203,2.2937,0.3229,57.4853,1.9868,1.6374,59.9853,0.8339,1.4083,58.2512,2.6487,0.2825,60.2337,1.8737,0.0,60.2706,1.844,1.1301,60.155,1.0248,1.2535,59.3594,2.2823,1.3205,59.5691,1.982,0.0,59.8564,2.4078,0.5457,59.1846,2.8412,0.5308,58.8034,2.949,1.7158,58.1526,1.9334,1.7106,58.0938,1.8881,1.5062,58.3005,2.3789,0.2633,58.7926,2.9699,1.6987,58.1376,1.9669,1.6949,58.087,1.941,1.7002,57.9693,1.4241,1.0697,57.7192,1.969,0.7939,58.1897,3.056,0.7798,57.7393,1.9848,0.7544,57.8374,2.2321,0.5434,57.8238,2.8697,0.5221,57.8957,2.9978,0.3842,57.7701,2.9567,1.3904,59.9944,0.8753,1.4049,59.982,0.8909,1.7575,58.0443,2.0195,1.7016,58.1706,2.2223,1.7954,58.4182,2.0478,1.6307,58.2855,2.3909,1.9689,59.2823,1.0547,1.6447,59.0588,2.1908,1.6955,59.2417,1.9648,1.4633,58.9523,2.5429,1.5312,59.2373,2.304,1.5605,58.7915,2.431,1.3523,59.6443,2.1929,1.5776,59.6326,1.829,1.3633,59.8411,1.9264,1.5517,59.4441,2.0939,1.1249,59.6243,2.5093,1.3508,59.4438,2.42,1.1333,59.8118,2.2764,1.0291,58.5306,2.9359,0.7692,58.7398,3.0216,0.8197,59.7556,2.588,0.8292,59.9588,2.3415,0.4516,60.5604,1.5222,0.4046,59.8581,2.6533,0.4234,60.0773,2.4166,0.3733,58.969,3.0865,0.3769,58.7107,3.0784,0.387,58.3076,3.0997,0.0,58.9696,3.0787,0.0,58.6917,3.0832,0.0,59.8906,2.6855,0.0,60.1039,2.4576,0.0,60.6225,1.5256,-0.5839,60.4432,0.8729,-1.3904,59.9944,0.8753,-1.4049,59.982,0.8909,-1.2079,60.1488,0.7855,-1.2294,60.1326,0.7857,-1.1301,60.155,1.0248,-1.1221,60.2053,0.8779,-1.078,60.191,1.013,-0.5841,60.4768,0.6527,-0.5201,60.4708,0.8612,-0.6953,60.4403,0.6095,-1.8178,59.4593,1.0084,-1.7175,57.972,1.3629,-1.7024,57.9442,1.355,-1.0203,60.4773,0.9179,-1.3553,60.2405,0.9133,-1.3485,60.2683,0.8078,-1.3876,60.2341,0.8396,-1.8142,59.5978,1.1874,-1.8261,59.5764,1.0367,-1.8054,59.5893,1.0722,-1.839,59.55,1.0425,-1.893,59.4757,1.0383,-1.985,59.1686,1.1219,-1.9894,59.1328,1.1308,-1.9568,59.1165,1.264,-1.9614,58.6218,1.2686,-1.9587,58.6175,1.2941,-1.9127,58.5162,1.3572,-1.7258,59.6124,0.9328,-1.7254,59.6191,0.9474,-1.8109,59.4732,0.9822,-1.7562,59.5722,0.9805,-1.3582,60.022,0.861,-1.4655,60.1592,0.8692,-1.458,60.1667,0.8627,-1.3658,60.0156,0.8677,-1.701,59.845,0.9281,-1.6823,59.8882,0.8968,-1.5786,60.0534,0.909,-1.615,60.0254,0.8122,-1.6374,59.9853,0.8339,-1.1042,60.2205,0.8158,-0.9536,60.5436,0.617,-0.7985,60.3962,0.6657,-0.5192,60.5026,0.593,-0.66,60.6658,0.5559,-0.0336,60.8506,0.4815,-0.014,60.8503,0.4646,-1.5062,58.3005,2.3789,-1.4699,58.2321,2.4303,-1.4976,58.3062,2.3986,-1.4824,58.7068,2.4122,-1.4388,58.1743,2.4702,-1.4039,58.2323,2.5079,-1.1243,59.7127,2.0391,-1.0163,59.7768,2.0753,-1.1215,59.7026,2.0587,-1.3946,58.344,2.5332,-0.3538,57.8283,2.6151,-0.3214,57.7719,2.5378,-0.3306,57.6582,2.476,-0.3391,57.8883,2.7611,-1.6683,59.8617,1.0499,-1.4083,58.2512,2.6487,-0.8208,60.605,0.6245,-0.7754,60.4064,0.6621,-0.7326,60.428,0.5974,-0.9324,60.5575,0.6018,-0.2825,60.2337,1.8737,-0.2548,60.0379,2.2008,-0.5457,59.1846,2.8412,-0.5308,58.8034,2.949,-1.7158,58.1526,1.9334,-1.7106,58.0938,1.8881,-0.2633,58.7926,2.9699,-1.4524,58.3215,2.4662,-1.6987,58.1376,1.9669,-1.6949,58.087,1.941,-1.1442,57.6404,1.9082,-0.4922,57.8568,2.4432,-0.3659,57.6184,2.1272,-0.7798,57.7393,1.9822,-1.9258,59.3622,1.0901,-1.9375,59.344,1.0752,-1.7575,58.0443,2.0195,-1.5605,58.7915,2.431,-1.6447,59.0588,2.1908,-1.6955,59.2417,1.9648,-1.5312,59.2373,2.304,-1.5517,59.4441,2.0939,-1.431,58.5714,2.5973,-1.3508,59.4438,2.42,-1.3523,59.6443,2.1929,-1.3633,59.8411,1.9264,-1.1333,59.8118,2.2764,-1.1327,60.0041,1.9952,-0.8292,59.9588,2.3415,-0.8452,60.1416,2.053,-0.4464,60.447,1.8117,-0.4516,60.5604,1.5222,-0.8692,60.2971,1.7421,-0.8197,59.7556,2.588,-0.3848,59.5241,2.9076,-0.4046,59.8581,2.6533,-0.799,59.4529,2.8466,-0.3769,58.7107,3.0784,-0.7692,58.7398,3.0216,-0.3791,58.4976,3.0764,-0.3786,59.2205,3.0431,0.0,59.2468,3.0406,-0.3733,58.969,3.0865,-0.4338,60.2819,2.1282,0.0,60.3219,2.1603,-0.4234,60.0773,2.4166,0.0,58.7209,2.6927,-0.146,60.7453,0.9657,0.0,60.4945,1.8331,0.0,59.5467,2.9213,-0.387,58.3076,3.0957,-1.1249,59.6243,2.5093,-1.3082,59.1489,2.6607,-1.0986,59.3209,2.7707,-1.1444,60.1592,1.6797,-1.4633,58.9523,2.5429,-1.5776,59.6326,1.829,-1.7954,58.4182,2.0478,-1.9647,58.6311,1.2411,-1.9772,58.7185,1.3466,-1.0697,57.7192,1.9684,-1.377,58.6786,2.5334,-0.6167,60.1262,1.8351,-1.3232,60.0521,0.8482,-1.428,60.1946,0.8562,-0.2516,57.8428,2.6704,-0.3229,57.4853,1.9817,-1.3205,59.5691,1.982,-1.4899,58.6552,2.4025,-0.4927,60.5131,0.5709,-1.3192,60.2853,0.8066,-1.3303,60.0461,0.8491,-1.4345,60.1887,0.8565,-1.8834,59.5323,0.9508,-1.7227,59.6264,0.9487,-1.8071,59.6823,0.9243,-1.9564,59.3368,1.018,-1.6901,57.9213,1.3471,-1.8313,59.423,1.0168,-1.8145,59.4677,1.0033,0.4464,60.447,1.8117,0.3848,59.5241,2.9076,0.3791,58.4976,3.0773,0.7679,58.5038,3.0102,0.799,59.4529,2.8466,0.8692,60.2971,1.7421,1.1327,60.0041,1.9952,0.8452,60.1416,2.053,1.0123,58.3059,2.9319,0.7796,58.297,3.0332,1.431,58.5714,2.5973,0.5676,57.8153,2.5196,0.3223,57.6598,2.9102,0.7452,57.8892,2.505,1.1442,57.6404,1.9084,1.4899,58.6552,2.4025,1.4976,58.3062,2.3986,1.4364,58.6634,2.4794,1.4824,58.7068,2.4122,0.2548,60.0379,2.2008,0.0,60.0778,2.1709,1.1215,59.7026,2.0587,1.8178,59.4593,1.0084,1.0163,59.7768,2.0753,1.1243,59.7127,2.0391,0.0335,60.6501,0.5061,0.0582,60.6366,0.5231,0.0146,60.6955,0.4839,1.3232,60.0521,0.8482,1.428,60.1946,0.8562,0.3538,57.8283,2.6235,0.0648,60.8469,0.4995,1.1042,60.2205,0.8158,1.3658,60.0156,0.8677,1.4655,60.1592,0.8692,1.615,60.0254,0.8122,1.3582,60.022,0.861,1.458,60.1667,0.8627,1.8261,59.5764,1.0367,1.7562,59.5722,0.9805,1.9079,58.6584,1.1423,1.8142,59.5978,1.1874,1.8288,59.6149,0.9701,1.8209,59.6299,0.9681,1.3553,60.2405,0.9133,1.3485,60.2683,0.8078,1.3876,60.2341,0.8396,1.0203,60.4773,0.9179,0.5841,60.4768,0.6527,1.2294,60.1326,0.7857,0.1696,57.1865,1.5191,0.1593,57.1447,1.4807,-0.6436,57.8548,2.8508,1.0871,60.234,0.765,1.0638,60.2505,0.7581,1.9345,59.0419,1.0943,1.9587,58.6175,1.2941,1.9801,59.2673,1.0361,0.0336,60.8506,0.4815,0.4922,57.8568,2.4516,1.3082,59.1489,2.6607,1.1444,60.1592,1.6797,1.0986,59.3209,2.7707,0.4338,60.2819,2.1282,0.3786,59.2205,3.0431,-1.968,59.0295,1.2491,-1.9977,59.0581,1.1137,-1.9345,59.0419,1.0943,-1.8288,59.6149,0.9701,-1.8209,59.6299,0.9681,-1.0638,60.2505,0.7581,-1.3937,58.6745,2.5206,-1.463,57.9381,2.2889,-1.4364,58.6634,2.4794,-1.0871,60.234,0.765,-0.1593,57.1447,1.4802};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_122_vector_1()
		{
			double[] value = {-0.9998,0.0184,0.0117,-0.9981,0.0586,0.0206,-0.997,0.0198,-0.0754,-0.9967,-0.0307,0.0745,-0.9966,0.0494,0.0662,-0.9954,0.0602,-0.0739,-0.9951,0.099,-0.0009,-0.9944,0.0624,0.0857,-0.9936,0.0693,0.0894,-0.9913,0.0643,0.1146,-0.9903,-0.1121,-0.0822,-0.9903,0.0854,0.1101,-0.9897,0.0708,-0.1244,-0.9888,-0.117,-0.0929,-0.9883,0.0646,0.138,-0.9881,-0.1421,0.0587,-0.988,-0.0614,0.1414,-0.9876,-0.1159,0.1054,-0.9868,-0.0979,0.1289,-0.9864,-0.1063,0.1253,-0.9864,-0.1102,0.1221,-0.9859,0.163,-0.0378,-0.9847,-0.169,0.0427,-0.984,-0.1529,-0.0917,-0.9837,0.0227,-0.1782,-0.9829,-0.1839,-0.012,-0.9821,-0.1137,-0.15,-0.9819,-0.0311,-0.1869,-0.9812,-0.1465,-0.1256,-0.9811,0.0751,0.1782,-0.9811,0.0747,0.1784,-0.9811,-0.0409,-0.1891,-0.9805,-0.1576,-0.1177,-0.9795,0.0814,-0.1842,-0.9789,-0.1968,0.055,-0.9782,0.0268,-0.2057,-0.9775,-0.0078,0.2108,-0.9772,-0.1501,-0.1501,-0.9771,0.0881,0.1936,-0.977,-0.0542,-0.2063,-0.9766,-0.0976,-0.1915,-0.9765,-0.04,-0.2116,-0.9763,0.2133,-0.036,-0.9761,-0.202,-0.0802,-0.976,-0.0315,-0.2153,-0.975,0.1399,0.1724,-0.9741,-0.2245,-0.0277,-0.9739,-0.1299,0.1862,-0.9735,-0.1649,-0.1586,-0.9733,-0.1357,-0.1852,-0.9731,0.0204,-0.2293,-0.973,-0.1796,0.145,-0.9725,-0.0515,0.2272,-0.9719,0.0828,0.2202,-0.9719,0.1245,0.1999,-0.9713,-0.0366,-0.2349,-0.9713,0.2068,-0.1175,-0.9711,0.0888,0.2214,-0.971,-0.1041,0.2153,-0.9709,0.0932,0.2204,-0.9706,-0.1368,-0.1981,-0.9701,0.0933,-0.2242,-0.9696,-0.2405,0.0449,-0.9696,0.2044,-0.1347,-0.9696,-0.2406,0.0449,-0.9695,0.0421,0.2415,-0.9693,0.1032,0.2234,-0.9691,-0.2376,0.0668,-0.969,0.0852,0.2317,-0.9681,0.0853,0.2355,-0.9677,0.0874,0.2365,-0.9676,0.0568,0.2459,-0.9674,-0.1444,0.2079,-0.9666,-0.1323,-0.2195,-0.9665,-0.1242,-0.2248,-0.9664,-0.0193,0.2562,-0.9663,0.0089,-0.2571,-0.9661,0.0099,0.258,-0.9655,0.1949,-0.1726,-0.9654,0.1089,-0.2369,-0.9639,0.2647,0.029,-0.9638,-0.2237,0.1453,-0.9628,0.1842,-0.1975,-0.9625,0.0301,0.2697,-0.9621,-0.2694,0.0432,-0.9619,0.2723,0.0226,-0.9614,0.1233,-0.246,-0.9614,-0.1972,-0.1921,-0.9613,0.1659,0.22,-0.961,-0.2125,-0.1772,-0.9601,-0.0079,0.2794,-0.96,0.1615,0.2289,-0.9592,-0.0244,-0.2818,-0.9583,0.079,-0.2745,-0.9582,0.0917,-0.271,-0.9581,0.2148,-0.1896,-0.9575,-0.131,-0.2568,-0.9568,0.2652,-0.1195,-0.9565,-0.0844,-0.2794,-0.955,-0.0164,-0.2961,-0.9543,-0.245,-0.1713,-0.954,0.0259,-0.2987,-0.9535,0.2716,0.1304,-0.95,-0.1332,-0.2824,-0.9498,-0.1988,-0.2416,-0.9489,-0.1175,-0.2929,-0.9477,0.3081,0.0834,-0.9473,-0.268,-0.1753,-0.9472,-0.0102,-0.3203,-0.947,0.3117,0.0779,-0.9462,0.1864,-0.2645,-0.9445,0.3064,-0.1182,-0.9445,0.2856,0.1622,-0.9445,0.0947,-0.3146,-0.9439,0.2097,0.2551,-0.9424,-0.3344,-0.003,-0.9423,0.022,-0.334,-0.9407,-0.0385,0.3371,-0.9405,0.2077,0.269,-0.94,-0.023,-0.3405,-0.9396,0.1046,-0.3259,-0.9391,0.1642,0.3018,-0.9383,0.161,0.3059,-0.9382,0.3443,-0.0366,-0.9357,-0.3023,-0.1819,-0.935,-0.3049,0.1812,-0.9338,-0.1198,-0.3371,-0.9319,0.3612,-0.033,-0.9315,0.272,0.2416,-0.93,-0.1595,-0.3311,-0.9289,-0.3631,0.0737,-0.9283,-0.1114,-0.3547,-0.928,0.3612,-0.0908,-0.928,0.2428,-0.2827,-0.9279,0.1504,-0.3413,-0.9278,0.3539,-0.1182,-0.9274,0.2729,-0.2558,-0.9273,-0.2415,-0.286,-0.9271,-0.1659,-0.3362,-0.9267,-0.236,0.2925,-0.9266,-0.2298,0.2978,-0.9265,0.2145,-0.309,-0.9262,-0.1929,-0.3239,-0.9233,0.2689,-0.2742,-0.9228,0.1123,0.3686,-0.9221,0.0233,-0.3862,-0.9208,-0.2755,-0.276,-0.9206,-0.3035,0.2458,-0.9202,0.3824,0.0836,-0.9197,0.3476,0.1824,-0.9196,-0.2839,-0.2714,-0.9187,0.3868,0.0797,-0.9184,-0.2818,-0.2777,-0.9182,0.3901,0.0687,-0.9179,-0.0113,0.3967,-0.9175,0.3933,0.0593,-0.9167,0.2679,0.2965,-0.9163,0.3874,-0.1013,-0.915,0.047,-0.4007,-0.9149,-0.3977,0.0697,-0.9144,0.2528,-0.316,-0.9137,0.387,-0.1237,-0.9137,-0.1342,0.3837,-0.9132,-0.1139,-0.3913,-0.9122,-0.1102,0.3947,-0.9114,-0.3185,-0.2605,-0.9108,-0.3854,0.1481,-0.9098,-0.3257,0.2572,-0.9084,0.4144,0.056,-0.9081,-0.1651,0.3849,-0.9076,-0.3192,-0.2727,-0.9072,-0.2897,-0.3051,-0.9067,0.3235,-0.2706,-0.9057,0.0902,-0.4142,-0.9057,0.154,-0.395,-0.9053,0.0658,-0.4196,-0.9052,0.3036,0.2975,-0.9046,-0.0424,-0.4241,-0.9037,-0.3062,-0.2994,-0.903,-0.2898,-0.3172,-0.9013,0.3921,0.1841,-0.9012,0.432,-0.0354,-0.9008,0.3916,0.1879,-0.9007,-0.3968,-0.1772,-0.9001,-0.3588,-0.2472,-0.9,0.3858,0.2029,-0.8999,-0.3103,-0.3066,-0.8998,0.3646,-0.2398,-0.8989,-0.3059,-0.3138,-0.8981,0.2553,0.3581,-0.8973,0.025,-0.4406,-0.8972,-0.1638,-0.4102,-0.8968,-0.3096,-0.316,-0.8968,-0.237,-0.3735,-0.8968,-0.3101,-0.3156,-0.8965,-0.3477,-0.2744,-0.8965,0.0621,-0.4387,-0.896,-0.3304,-0.2968,-0.8959,-0.3478,0.2766,-0.8948,-0.3694,0.2507,-0.8946,0.4359,-0.0983,-0.8945,-0.0922,-0.4374,-0.8942,0.4075,0.1854,-0.894,-0.1357,-0.427,-0.8934,-0.4363,-0.1074,-0.892,-0.0357,0.4505,-0.8915,-0.4521,0.0279,-0.891,0.3729,0.2589,-0.8906,-0.3403,-0.3016,-0.8894,0.3749,0.2615,-0.8885,-0.2283,-0.3981,-0.8872,-0.2091,-0.4113,-0.8864,-0.0939,-0.4534,-0.8862,-0.2234,-0.4059,-0.8859,-0.1167,-0.449,-0.8855,-0.1652,0.4342,-0.8845,0.3855,0.2629,-0.884,-0.3654,-0.2915,-0.8828,-0.154,-0.4438,-0.8821,-0.4709,0.009,-0.882,-0.1427,-0.4492,-0.8818,-0.0448,0.4695,-0.8816,0.3939,0.26,-0.8811,-0.1014,-0.462,-0.8809,0.344,-0.3252,-0.8804,-0.1101,-0.4612,-0.8786,0.3381,-0.3372,-0.8785,-0.113,0.4643,-0.8784,0.4009,0.2602,-0.878,0.2008,0.4344,-0.8778,0.0489,-0.4765,-0.8772,-0.0277,-0.4794,-0.8768,0.4008,-0.2656,-0.8759,0.4504,0.1731,-0.8755,-0.0656,-0.4788,-0.8754,-0.1327,-0.4649,-0.8741,0.482,-0.061,-0.8729,-0.2083,-0.4412,-0.8719,0.3678,0.3233,-0.8717,-0.3686,0.323,-0.8716,-0.4668,-0.1497,-0.8714,0.157,0.4649,-0.8712,0.4866,0.0655,-0.8706,-0.3768,-0.3164,-0.8702,-0.3148,-0.379,-0.8698,-0.1743,-0.4616,-0.8676,0.1104,-0.4849,-0.8667,-0.4172,-0.2734,-0.8666,-0.1268,-0.4826,-0.866,0.2984,-0.4012,-0.8658,0.492,0.091,-0.8658,-0.3764,-0.3298,-0.8656,0.3182,0.3866,-0.864,-0.3949,-0.3124,-0.8634,0.077,-0.4986,-0.8633,0.4991,0.075,-0.8631,-0.4917,-0.1149,-0.8626,0.22,0.4556,-0.8625,-0.3493,-0.3661,-0.8621,-0.0685,-0.5021,-0.8619,0.4847,0.1487,-0.861,0.5018,0.0823,-0.861,0.0908,0.5004,-0.8602,-0.4385,0.2603,-0.8597,-0.4172,0.2948,-0.8595,-0.1968,0.4718,-0.8593,-0.3014,-0.4132,-0.8588,-0.2299,-0.4578,-0.8585,0.505,0.0893,-0.8582,0.5045,0.0948,-0.8579,0.4262,0.2871,-0.8572,-0.2289,-0.4614,-0.8571,-0.4476,0.2548,-0.8567,-0.4904,-0.16,-0.8556,-0.2919,-0.4275,-0.855,0.1008,-0.5088,-0.8546,0.4964,-0.1526,-0.8535,0.4718,-0.2214,-0.8532,0.4683,-0.2299,-0.8521,0.0732,-0.5182,-0.8518,0.4566,-0.2568,-0.8516,0.5149,0.0986,-0.8512,0.0816,-0.5185,-0.8511,-0.5162,-0.0954,-0.8488,-0.5268,-0.0452,-0.8477,-0.015,-0.5303,-0.8473,-0.4225,-0.3218,-0.8472,0.4689,-0.2497,-0.8449,-0.4237,-0.3266,-0.8447,-0.5301,0.0744,-0.8404,-0.5419,-0.0118,-0.8399,-0.1757,-0.5136,-0.8394,-0.5436,-0.0038,-0.839,-0.1289,-0.5287,-0.8389,0.3829,-0.3868,-0.8382,0.3117,-0.4476,-0.8348,-0.2889,-0.4686,-0.8345,0.1725,-0.5234,-0.8333,-0.3506,-0.4275,-0.8321,0.2365,-0.5017,-0.8313,-0.4733,-0.2915,-0.8312,0.4315,-0.3506,-0.831,-0.4692,-0.2987,-0.8309,0.2542,0.495,-0.8306,-0.4457,-0.3338,-0.8303,-0.5573,0.0017,-0.8303,-0.3887,-0.3995,-0.8301,-0.4744,-0.2932,-0.8295,0.5496,0.0991,-0.8282,-0.3207,-0.4597,-0.828,-0.4748,-0.2982,-0.8278,-0.4712,-0.3046,-0.8274,-0.0198,-0.5612,-0.8267,-0.4651,-0.3166,-0.8261,-0.4649,-0.3184,-0.8257,-0.475,-0.3044,-0.8253,-0.1036,0.5551,-0.825,0.5386,0.1712,-0.8243,-0.4883,0.2865,-0.8235,-0.0413,-0.5658,-0.8234,-0.3229,-0.4667,-0.8223,0.3265,-0.4661,-0.8221,-0.2115,-0.5286,-0.8212,0.0778,-0.5653,-0.8211,0.5702,-0.0258,-0.821,-0.4983,0.2785,-0.8199,-0.5644,-0.0956,-0.8198,-0.0618,-0.5693,-0.8197,0.0405,-0.5713,-0.8194,-0.5299,-0.2188,-0.8193,-0.2982,-0.4898,-0.8184,-0.0289,-0.5739,-0.8181,0.556,0.1466,-0.8181,-0.574,0.0345,-0.8164,-0.4574,-0.3527,-0.8159,0.3943,-0.4228,-0.8148,0.4571,-0.3567,-0.8146,-0.4074,-0.4128,-0.8143,0.5646,0.135,-0.8142,0.1164,0.5688,-0.8142,-0.4058,-0.4153,-0.8135,-0.4341,0.3871,-0.8126,-0.5509,-0.1902,-0.8123,0.3156,0.4904,-0.8118,-0.5671,-0.1391,-0.8115,0.1171,-0.5725,-0.8107,-0.4685,-0.3511,-0.8105,-0.4759,-0.3415,-0.8105,0.1457,-0.5673,-0.8104,0.5858,0.0097,-0.8102,-0.1117,0.5754,-0.8096,0.065,-0.5834,-0.8093,-0.3723,-0.4544,-0.8089,-0.4607,-0.3652,-0.8085,-0.508,-0.2971,-0.8077,-0.3017,0.5066,-0.8068,-0.4076,-0.4277,-0.8063,-0.0982,-0.5833,-0.8063,-0.3741,-0.4583,-0.8061,-0.3085,-0.5049,-0.8058,-0.5796,0.1217,-0.8041,0.113,-0.5837,-0.803,-0.3522,-0.4808,-0.803,-0.5438,0.2441,-0.8025,0.5529,0.2242,-0.8004,0.5778,0.1598,-0.8001,-0.2075,-0.5629,-0.7989,-0.3699,-0.4743,-0.7983,0.5651,0.2085,-0.798,0.1778,-0.5758,-0.7973,0.5571,-0.2322,-0.7969,0.4274,0.4268,-0.7965,-0.4534,-0.4001,-0.7959,0.6048,-0.0281,-0.7952,0.1637,0.5839,-0.7949,-0.5965,0.1109,-0.7938,0.0233,-0.6077,-0.7911,-0.5021,-0.3492,-0.7894,-0.4173,-0.4502,-0.7884,0.5325,-0.3081,-0.7882,-0.1943,-0.5839,-0.788,-0.5941,-0.1613,-0.7875,-0.3509,-0.5066,-0.7873,-0.3878,-0.4793,-0.7858,-0.3538,-0.5073,-0.7846,0.5021,0.3636,-0.7845,0.3904,-0.4818,-0.7839,-0.5634,-0.2611,-0.7825,-0.4391,-0.4415,-0.7816,0.1176,-0.6126,-0.7811,-0.1392,-0.6087,-0.7802,-0.0971,-0.618,-0.7787,-0.5176,-0.3546,-0.777,-0.4945,-0.3895,-0.7767,-0.2041,-0.5959,-0.7767,0.6061,0.1713,-0.7762,-0.5924,-0.2159,-0.7762,-0.0723,-0.6264,-0.7753,0.4002,-0.4886,-0.7752,0.0659,0.6283,-0.7743,0.5517,0.31,-0.7735,-0.3045,0.5559,-0.7724,0.5867,0.2434,-0.7721,-0.5754,-0.2698,-0.7719,-0.4012,-0.4932,-0.7694,0.456,-0.4473,-0.7685,0.08,0.6348,-0.7684,0.5803,-0.27,-0.7658,-0.6284,0.1368,-0.7649,-0.593,-0.2514,-0.7648,-0.6015,-0.2307,-0.7646,-0.2269,-0.6033,-0.7645,-0.6422,-0.0556,-0.7645,0.0779,-0.6399,-0.7639,-0.6453,-0.0048,-0.7632,-0.0118,-0.6461,-0.763,-0.5983,-0.2448,-0.7623,-0.5841,-0.2789,-0.7623,0.6467,0.0271,-0.7616,0.6008,-0.243,-0.7606,-0.5977,-0.2535,-0.7604,-0.5945,-0.2616,-0.7602,0.1027,-0.6416,-0.7599,0.0419,-0.6487,-0.7591,-0.5025,-0.4138,-0.7582,-0.0467,-0.6503,-0.7572,0.5572,-0.3407,-0.7569,-0.6531,-0.0249,-0.7548,-0.5989,-0.2678,-0.7546,-0.1063,-0.6475,-0.7544,-0.5471,-0.3628,-0.7542,0.1949,-0.6271,-0.7541,-0.6041,-0.2576,-0.754,0.153,-0.6388,-0.7535,-0.3512,-0.5558,-0.7535,0.0628,0.6545,-0.7523,0.5257,-0.3972,-0.752,0.1441,-0.6432,-0.752,-0.3112,-0.5812,-0.7497,0.1417,-0.6464,-0.7494,-0.6616,0.0272,-0.7491,0.6527,-0.1135,-0.7487,0.188,-0.6357,-0.7469,0.1117,-0.6555,-0.7461,-0.0274,0.6652,-0.745,0.443,-0.4987,-0.7439,-0.5656,-0.3559,-0.7439,-0.5052,-0.4375,-0.741,-0.2847,-0.6082,-0.74,-0.5451,-0.3941,-0.7396,0.0139,0.6729,-0.7388,-0.6737,-0.0144,-0.7377,-0.0017,0.6751,-0.7375,0.2408,-0.631,-0.7371,0.4362,-0.5162,-0.7364,-0.6205,-0.2697,-0.7358,-0.0221,0.6769,-0.7331,-0.464,0.4973,-0.7328,-0.1454,-0.6647,-0.7323,0.6578,0.176,-0.732,0.6784,0.0632,-0.7318,0.6261,0.2692,-0.7314,0.6274,0.2674,-0.7305,0.6478,0.2162,-0.7298,0.6204,-0.2873,-0.7298,-0.6525,-0.2042,-0.7294,-0.3899,-0.5621,-0.7284,0.6635,0.1713,-0.7277,-0.4857,-0.4843,-0.7271,-0.6796,0.0972,-0.7271,-0.1833,-0.6617,-0.7264,0.6297,-0.2752,-0.7263,-0.6598,-0.1926,-0.7263,-0.282,-0.6269,-0.7257,0.0375,0.687,-0.7249,-0.47,-0.5036,-0.7247,0.5687,-0.3891,-0.722,0.0002,0.6919,-0.7218,0.6874,0.0802,-0.7218,-0.2441,-0.6476,-0.7211,0.6672,0.1868,-0.7193,0.2219,-0.6584,-0.719,-0.2216,-0.6588,-0.718,0.691,-0.0832,-0.7178,-0.6913,-0.0826,-0.7176,0.0081,-0.6965,-0.7174,-0.4806,-0.5043,-0.7169,-0.5551,0.4218,-0.7169,-0.1913,-0.6704,-0.7142,-0.4556,-0.5314,-0.7131,-0.633,-0.3013,-0.7129,-0.2931,-0.6371,-0.7125,-0.331,-0.6187,-0.7122,0.5726,-0.4061,-0.712,-0.6606,-0.2379,-0.7115,0.0854,-0.6975,-0.7105,0.1001,-0.6966,-0.7101,-0.6426,-0.2877,-0.7099,-0.3361,-0.6189,-0.7096,0.307,-0.6341,-0.7066,-0.4129,-0.5746,-0.7061,-0.1719,-0.687,-0.7043,0.4595,0.5411,-0.704,0.2117,-0.6779,-0.704,0.3017,0.643,-0.7027,-0.5691,-0.427,-0.7027,0.6045,-0.3752,-0.7018,-0.7118,-0.0297,-0.7013,-0.4595,-0.5451,-0.7012,-0.6038,-0.3792,-0.701,-0.7114,-0.0501,-0.7008,0.6817,-0.21,-0.6982,-0.6897,0.1919,-0.6969,-0.2002,-0.6887,-0.6954,-0.6566,-0.2922,-0.6951,-0.6886,0.2065,-0.6939,-0.4127,-0.59,-0.6939,0.1686,-0.7,-0.6939,0.0116,0.72,-0.6938,-0.7028,0.1575,-0.6934,-0.6766,-0.2478,-0.6929,-0.2751,-0.6665,-0.6921,-0.5565,-0.4596,-0.6915,-0.5104,-0.5112,-0.6905,-0.7227,-0.0306,-0.6893,0.238,-0.6842,-0.6884,0.7252,0.0157,-0.6879,0.556,0.4666,-0.6877,-0.6699,-0.2799,-0.6875,-0.7241,-0.0545,-0.6869,-0.6186,-0.3815,-0.6868,0.3306,-0.6473,-0.6862,-0.5447,-0.4822,-0.6852,0.3281,-0.6502,-0.6827,-0.3673,-0.6317,-0.6823,-0.4325,0.5895,-0.6815,-0.5769,-0.4503,-0.6815,-0.7245,-0.1034,-0.6814,-0.1275,-0.7207,-0.6806,-0.7229,-0.1188,-0.6798,0.7328,-0.029,-0.6796,0.1462,0.7189,-0.6795,0.201,-0.7056,-0.6783,-0.7342,0.0289,-0.6778,-0.4166,-0.6059,-0.6772,-0.3744,-0.6335,-0.6762,-0.1632,-0.7184,-0.6748,0.0369,-0.7371,-0.6726,-0.4421,0.5935,-0.6712,0.5348,-0.5133,-0.6711,-0.7392,-0.0576,-0.6711,-0.625,-0.3987,-0.671,0.6199,0.4068,-0.6686,-0.6344,-0.3881,-0.6682,0.744,-0.0094,-0.6681,-0.4361,-0.6029,-0.6676,-0.7278,0.1569,-0.6672,-0.3566,-0.654,-0.6656,-0.0821,-0.7418,-0.6625,-0.7402,0.1149,-0.6624,0.0344,-0.7484,-0.6624,0.2255,-0.7144,-0.6605,0.6679,0.3429,-0.6602,0.1023,-0.7441,-0.6601,-0.4993,-0.5612,-0.6595,-0.6439,-0.3878,-0.6594,0.2594,-0.7057,-0.6582,-0.0848,-0.7481,-0.6579,-0.6335,0.4073,-0.6559,-0.6584,-0.3692,-0.652,-0.1875,-0.7347,-0.6516,0.3104,-0.6921,-0.6492,0.7023,0.2922,-0.649,0.7538,-0.1028,-0.6484,-0.7179,0.2533,-0.648,-0.3737,-0.6637,-0.6476,-0.5811,-0.4929,-0.647,-0.7132,-0.2697,-0.6453,-0.7564,0.1066,-0.6451,-0.1221,-0.7543,-0.6448,-0.7583,-0.0961,-0.6436,-0.765,-0.0248,-0.6428,-0.6656,-0.3793,-0.6421,-0.4877,0.5914,-0.6421,0.0834,0.762,-0.6421,-0.5046,-0.5771,-0.6419,-0.2818,-0.7131,-0.6412,0.4609,-0.6136,-0.6385,0.0528,-0.7678,-0.6362,0.7658,-0.0935,-0.636,0.7315,-0.2458,-0.6359,-0.143,-0.7584,-0.6357,-0.0508,0.7703,-0.6345,-0.7364,-0.2348,-0.6335,-0.7364,-0.2373,-0.6332,-0.6696,-0.3882,-0.6328,-0.7364,-0.2393,-0.6327,0.7599,0.1494,-0.6322,-0.7363,-0.2413,-0.6321,0.7676,0.1059,-0.632,-0.7336,-0.2496,-0.6319,0.1145,0.7665,-0.6304,0.7553,0.1792,-0.6293,0.7003,-0.3369,-0.629,-0.7394,-0.24,-0.6279,-0.7376,-0.2484,-0.6271,0.7616,-0.1637,-0.6267,-0.7372,-0.2524,-0.625,-0.7487,-0.2209,-0.6249,-0.6422,-0.4439,-0.6237,0.6888,-0.3695,-0.6229,0.0737,-0.7788,-0.6229,-0.7811,0.0432,-0.6222,0.6081,-0.493,-0.6215,-0.7685,-0.1525,-0.621,-0.7459,0.2408,-0.6198,0.6008,-0.5049,-0.6193,-0.7561,0.2116,-0.6189,0.7783,0.106,-0.6189,0.1517,-0.7707,-0.6182,0.6651,-0.4189,-0.6178,-0.7051,0.3481,-0.6171,-0.6191,-0.4857,-0.617,-0.758,-0.2115,-0.6165,-0.5849,-0.5271,-0.6153,0.0484,0.7868,-0.6141,-0.0154,0.7891,-0.6129,-0.7355,-0.2887,-0.6119,0.5035,-0.61,-0.6114,0.1727,-0.7722,-0.6104,-0.7912,-0.0375,-0.6099,0.1329,-0.7813,-0.6095,-0.1445,-0.7795,-0.6095,0.723,-0.3253,-0.6086,0.7586,0.2326,-0.6057,0.038,-0.7948,-0.6052,0.7904,0.0952,-0.603,0.3526,-0.7156,-0.6029,0.4996,-0.622,-0.6021,0.511,-0.6135,-0.6014,-0.5773,-0.5523,-0.6013,-0.7491,-0.2779,-0.601,0.0526,-0.7975,-0.6009,-0.7202,-0.3469,-0.6006,-0.7316,-0.3224,-0.6005,0.045,0.7984,-0.6002,-0.794,-0.0964,-0.6002,-0.794,-0.0964,-0.5999,-0.4794,-0.6406,-0.5982,-0.2157,-0.7718,-0.5978,-0.7941,-0.1098,-0.5964,-0.7901,-0.1413,-0.5957,-0.5599,-0.576,-0.5952,-0.77,0.2296,-0.5951,0.0414,0.8026,-0.5948,0.7765,-0.2078,-0.5943,-0.7079,0.3817,-0.5933,-0.3982,-0.6996,-0.592,-0.7951,-0.1317,-0.5918,-0.454,-0.666,-0.5883,-0.7943,-0.1515,-0.5877,0.7242,-0.3607,-0.5862,0.3999,0.7046,-0.5853,-0.7789,0.2253,-0.5851,-0.6691,-0.4583,-0.5845,-0.2694,0.7653,-0.5827,-0.5768,-0.5725,-0.5817,-0.6681,0.4641,-0.5796,-0.3017,-0.757,-0.5794,0.7732,-0.2577,-0.5792,-0.6984,-0.4205,-0.579,-0.7798,-0.2381,-0.5774,-0.8127,0.0778,-0.5768,0.4022,-0.7109,-0.5768,-0.5053,-0.6419,-0.5747,-0.8167,-0.0521,-0.5735,-0.3972,-0.7165,-0.5734,-0.7945,0.2,-0.5728,0.8191,0.0315,-0.5724,-0.746,-0.3404,-0.5719,-0.741,-0.352,-0.5697,0.8205,-0.0467,-0.5692,0.6515,-0.5015,-0.5692,-0.1421,-0.8098,-0.5688,0.6609,-0.4895,-0.5684,0.7924,-0.2215,-0.5683,-0.3769,-0.7315,-0.5679,-0.5698,0.594,-0.5677,0.8109,-0.1418,-0.5676,-0.7501,-0.3393,-0.5669,-0.0188,0.8236,-0.5656,0.0162,-0.8246,-0.5645,-0.0756,-0.822,-0.5644,0.8254,0.0093,-0.5626,0.8246,-0.0593,-0.5623,-0.3129,-0.7654,-0.5621,-0.3599,-0.7447,-0.5619,-0.8126,-0.1548,-0.5619,-0.7274,0.394,-0.56,-0.8272,-0.0451,-0.5597,0.7727,0.2992,-0.5561,0.7204,-0.4145,-0.555,-0.7666,-0.3229,-0.5533,-0.8246,-0.1178,-0.5526,0.8304,-0.0709,-0.5517,-0.833,-0.0413,-0.5505,0.734,-0.3977,-0.5502,0.8294,0.0966,-0.55,-0.3935,0.7367,-0.5499,-0.1186,-0.8268,-0.5481,-0.8199,-0.1655,-0.548,0.8306,-0.0987,-0.5478,-0.1687,-0.8194,-0.5477,-0.7886,-0.2796,-0.547,-0.769,-0.3307,-0.5459,-0.7788,-0.309,-0.5455,0.6633,0.5123,-0.5454,-0.81,0.2156,-0.5453,0.2107,-0.8113,-0.545,0.8384,0.0006,-0.5438,-0.7492,-0.3781,-0.5432,0.8282,0.138,-0.5421,-0.7,-0.4648,-0.542,0.3267,-0.7743,-0.542,0.8303,0.1299,-0.5408,-0.2184,-0.8123,-0.5405,-0.6617,-0.5196,-0.5398,-0.6279,-0.5606,-0.5397,0.5872,0.6032,-0.5394,-0.842,-0.0117,-0.539,0.8369,0.0949,-0.5384,-0.8313,0.1378,-0.5373,0.8144,-0.2192,-0.5348,0.8255,0.1801,-0.5346,-0.8325,-0.1458,-0.5344,0.8396,0.0977,-0.5342,0.8161,0.2204,-0.5331,-0.1312,-0.8358,-0.5322,0.4325,0.7278,-0.5313,0.8267,0.1852,-0.5308,0.8385,0.1228,-0.5305,-0.8386,-0.1236,-0.5289,0.7683,0.3606,-0.5289,0.7278,0.4365,-0.5288,-0.8245,-0.2014,-0.5279,-0.8216,-0.215,-0.5269,-0.7279,-0.4388,-0.524,-0.7949,-0.3059,-0.5228,0.0946,-0.8472,-0.5228,-0.8021,-0.2885,-0.5228,0.8029,0.2864,-0.5226,-0.5025,0.6888,-0.522,-0.0502,-0.8514,-0.5213,-0.7727,-0.3621,-0.5191,0.455,-0.7235,-0.5182,-0.7425,-0.4245,-0.5179,-0.8064,0.2856,-0.5163,-0.8199,-0.2473,-0.5158,-0.8375,-0.1806,-0.5142,-0.8186,-0.256,-0.5129,0.7118,-0.4799,-0.5126,-0.7225,-0.4639,-0.5122,0.6875,-0.5148,-0.5119,0.3071,-0.8023,-0.5117,0.5212,-0.683,-0.5117,0.8154,-0.2708,-0.5113,0.8101,-0.287,-0.5112,-0.7946,0.3276,-0.5103,0.8085,-0.293,-0.5095,-0.6429,-0.5719,-0.5086,-0.819,-0.2657,-0.5084,-0.5488,0.6636,-0.5082,0.7384,-0.4433,-0.5067,-0.0511,0.8606,-0.5062,0.7457,-0.4332,-0.5061,0.778,-0.3724,-0.5057,-0.844,-0.1787,-0.5052,-0.5324,-0.6792,-0.5049,0.7847,-0.3596,-0.5049,-0.6401,0.5791,-0.5033,0.7793,-0.3734,-0.5017,0.8334,0.2318,-0.4997,-0.6848,-0.5305,-0.4974,0.8337,0.2399,-0.496,-0.5218,-0.6941,-0.4951,-0.8554,0.1523,-0.4938,0.829,-0.2625,-0.4926,-0.7353,-0.4654,-0.4918,-0.8081,-0.3243,-0.4893,0.7822,-0.3857,-0.4889,0.0362,0.8716,-0.4879,0.8711,-0.0562,-0.4876,-0.2553,0.8349,-0.4872,0.8519,-0.192,-0.4868,-0.3962,-0.7785,-0.4868,0.2286,0.8431,-0.4851,0.8325,-0.2678,-0.4839,-0.8293,-0.2795,-0.4838,-0.8745,-0.0341,-0.4828,-0.8426,-0.2387,-0.4827,-0.7509,-0.4508,-0.4814,0.8441,-0.2361,-0.4813,-0.5932,-0.6453,-0.4803,-0.6176,-0.6228,-0.4801,0.6682,-0.5683,-0.4796,0.8048,-0.3497,-0.4793,-0.8323,0.2784,-0.478,-0.7891,-0.3858,-0.4775,-0.8782,0.027,-0.4764,-0.5866,-0.6549,-0.4764,-0.8682,-0.1387,-0.4761,-0.853,0.214,-0.4757,-0.8781,0.051,-0.4752,-0.7525,-0.456,-0.4744,-0.8536,0.2151,-0.4732,-0.8753,-0.1002,-0.4728,-0.8566,0.2069,-0.4723,-0.0474,0.8802,-0.4706,0.8764,-0.1026,-0.47,-0.8759,-0.1086,-0.4687,-0.8805,-0.071,-0.4682,-0.5086,-0.7226,-0.4669,-0.871,-0.1527,-0.4667,0.8816,0.0708,-0.4659,-0.8161,-0.3418,-0.464,-0.7816,-0.417,-0.4622,-0.7475,-0.4771,-0.4622,-0.8421,0.2778,-0.4616,0.8795,0.1156,-0.4615,-0.7717,-0.4377,-0.4604,-0.8875,0.0212,-0.4589,-0.8482,-0.2646,-0.4586,0.8575,0.2332,-0.458,-0.2919,0.8396,-0.4573,0.8761,0.1523,-0.4573,-0.6789,-0.5744,-0.455,0.4564,-0.7646,-0.4531,0.8753,0.1689,-0.453,-0.7795,0.4325,-0.4522,0.8885,0.0777,-0.451,-0.2402,-0.8596,-0.4508,-0.1116,-0.8856,-0.4507,0.7848,-0.4253,-0.4506,0.8036,-0.3889,-0.4505,-0.0698,-0.89,-0.4501,-0.8734,-0.1859,-0.4487,-0.682,-0.5775,-0.4487,-0.3102,-0.8381,-0.4481,0.8798,-0.1588,-0.4469,-0.8412,-0.3045,-0.4468,0.7742,-0.4483,-0.446,0.5272,-0.7232,-0.4454,-0.8559,-0.2627,-0.4447,-0.6927,-0.5678,-0.4446,-0.8544,-0.2688,-0.4443,0.8464,-0.2936,-0.4434,0.7461,-0.4967,-0.4431,0.8879,0.1237,-0.4415,-0.6625,0.6052,-0.4401,-0.7733,-0.4564,-0.4389,0.0013,0.8985,-0.4387,-0.0322,0.898,-0.4375,0.0969,0.894,-0.4373,0.8937,-0.101,-0.4366,0.4708,-0.7666,-0.4345,-0.8721,-0.2252,-0.4342,-0.6995,-0.5676,-0.4338,0.8426,-0.3192,-0.4317,0.4122,-0.8023,-0.4315,-0.191,0.8817,-0.4308,-0.8825,-0.1887,-0.4299,-0.4063,0.8063,-0.4299,0.6084,-0.6672,-0.4285,-0.8713,-0.2391,-0.428,-0.6234,0.6543,-0.4277,0.8737,0.2319,-0.4277,0.85,0.3074,-0.427,0.7625,-0.4861,-0.4261,0.2865,-0.8581,-0.426,0.7674,-0.4792,-0.4254,-0.2097,-0.8804,-0.4248,0.113,0.8982,-0.4248,0.8175,0.3889,-0.4245,0.8377,-0.3437,-0.424,-0.7159,-0.5548,-0.4237,-0.7445,0.5159,-0.4233,-0.0831,-0.9022,-0.4215,0.6867,-0.5923,-0.4207,-0.8849,-0.1999,-0.42,0.7979,-0.4324,-0.4178,-0.87,0.2617,-0.4174,-0.8584,-0.2984,-0.4172,-0.4215,-0.8051,-0.4172,0.7678,-0.4862,-0.415,-0.4219,-0.8061,-0.4148,-0.9075,-0.0667,-0.4131,0.8289,-0.3772,-0.4128,-0.7914,-0.4509,-0.4126,0.8329,-0.3689,-0.4109,0.4024,0.8181,-0.4108,-0.8833,-0.226,-0.4093,0.7446,-0.5273,-0.4091,0.8784,-0.247,-0.4089,-0.5516,0.727,-0.4088,0.0134,-0.9125,-0.4087,-0.8773,-0.2516,-0.4086,-0.1254,-0.9041,-0.4068,0.687,-0.6021,-0.4064,0.783,0.4708,-0.4044,-0.8789,-0.253,-0.4036,-0.8918,-0.2046,-0.4022,0.9006,0.1645,-0.402,0.3675,0.8387,-0.402,0.8304,-0.3859,-0.4018,-0.4065,-0.8205,-0.4015,-0.8862,-0.2312,-0.3996,-0.5285,-0.749,-0.3995,-0.7896,0.4657,-0.3989,-0.1206,-0.909,-0.3982,0.8363,-0.377,-0.3979,-0.5727,-0.7167,-0.3967,0.3663,-0.8417,-0.3966,-0.651,0.6472,-0.3953,0.7055,-0.5883,-0.3918,-0.4486,-0.8033,-0.3915,-0.8008,-0.4532,-0.3906,0.908,-0.1517,-0.3904,-0.7834,-0.4836,-0.3903,0.9021,-0.1838,-0.3899,-0.8942,0.22,-0.3894,0.8036,-0.4501,-0.3892,-0.5895,-0.7078,-0.3882,-0.9122,0.1312,-0.3875,-0.8862,-0.2539,-0.3872,0.8244,-0.4129,-0.3851,-0.8347,-0.3936,-0.3843,-0.8191,0.4258,-0.3842,-0.9122,0.1427,-0.3837,0.7351,0.559,-0.3822,0.7601,-0.5256,-0.3821,-0.4328,-0.8165,-0.382,-0.3479,-0.8562,-0.3802,0.8591,-0.3425,-0.38,0.838,-0.3916,-0.3791,0.0769,0.9222,-0.3777,-0.866,-0.3278,-0.3776,0.817,-0.4359,-0.3729,0.8111,-0.4505,-0.3727,0.8464,-0.3804,-0.3725,0.7736,-0.5127,-0.3721,0.8901,-0.2632,-0.372,0.154,-0.9154,-0.3719,-0.8125,0.4489,-0.371,-0.8068,0.4598,-0.3699,0.9275,0.0536,-0.3686,-0.9259,-0.0824,-0.3667,0.6497,-0.6659,-0.3647,-0.4583,-0.8105,-0.3646,0.4382,-0.8216,-0.3632,0.9181,-0.1588,-0.3629,-0.5695,-0.7375,-0.3629,-0.9137,-0.1831,-0.3628,0.7386,-0.5681,-0.3627,-0.3185,0.8758,-0.3627,-0.8563,0.3677,-0.3622,0.6553,-0.6629,-0.362,-0.8247,0.4346,-0.3613,-0.9151,-0.1789,-0.361,-0.4729,0.8038,-0.3608,0.8228,-0.439,-0.3607,-0.6248,0.6925,-0.3604,-0.9145,0.1837,-0.3601,-0.9137,-0.1886,-0.3586,-0.9312,0.0661,-0.3583,-0.3712,0.8567,-0.3572,-0.9309,0.0761,-0.3567,-0.9313,-0.0742,-0.3545,-0.9154,-0.1907,-0.3544,0.6634,-0.659,-0.3544,-0.9258,-0.1316,-0.3543,0.923,-0.1498,-0.3515,-0.8978,-0.2652,-0.3515,-0.8279,-0.4371,-0.3511,0.5914,-0.7259,-0.3507,0.6547,0.6696,-0.3502,-0.9282,-0.1254,-0.3502,0.8374,-0.4197,-0.3501,-0.6138,-0.7075,-0.35,0.9344,0.067,-0.3498,0.5405,-0.7652,-0.3497,0.9367,0.0187,-0.3496,-0.8249,0.4443,-0.3493,-0.815,-0.4624,-0.3487,0.8704,-0.3476,-0.3487,0.8761,-0.3329,-0.3483,-0.7128,0.6088,-0.3482,-0.9136,-0.2099,-0.348,0.8242,-0.4467,-0.3474,0.9212,0.175,-0.3457,-0.9258,-0.1527};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_122_vector_2()
		{
			double[] value = {-0.3449,-0.8101,-0.4741,-0.3446,0.9216,0.1787,-0.3441,0.9209,0.1829,-0.3437,0.9108,-0.2287,-0.3411,-0.6003,-0.7234,-0.3409,-0.9375,0.0706,-0.3405,0.8494,-0.4033,-0.34,0.8724,-0.351,-0.3392,-0.8156,-0.4687,-0.3392,0.9334,-0.1171,-0.3388,-0.9256,0.1688,-0.3385,0.9331,-0.1213,-0.3377,0.7694,-0.5422,-0.3374,0.8378,-0.4292,-0.3369,0.8877,-0.3138,-0.3365,0.9071,-0.2527,-0.3342,-0.3754,-0.8645,-0.3335,0.3988,-0.8543,-0.3328,0.1096,-0.9366,-0.3324,-0.7834,-0.5251,-0.3324,0.5685,-0.7526,-0.3297,0.831,-0.448,-0.3284,0.7311,-0.598,-0.3283,-0.5722,-0.7515,-0.3283,-0.2675,-0.9059,-0.3267,-0.9105,-0.2533,-0.3266,-0.9439,0.0487,-0.3266,0.8534,-0.4062,-0.3265,-0.911,-0.2519,-0.3256,-0.9274,-0.1842,-0.3254,-0.9109,-0.2536,-0.3237,-0.6987,-0.638,-0.3233,-0.9114,-0.2546,-0.3228,0.8532,-0.4096,-0.3228,0.549,-0.7709,-0.3195,0.6652,-0.6749,-0.3194,-0.839,-0.4406,-0.3192,0.6334,-0.7049,-0.3159,-0.3416,-0.8852,-0.3152,-0.9201,-0.2326,-0.3147,-0.9418,-0.1186,-0.3145,0.8189,-0.4802,-0.3143,0.0746,-0.9464,-0.3134,-0.9156,-0.2521,-0.312,-0.5995,-0.737,-0.3113,-0.9052,0.2892,-0.3104,-0.7062,0.6363,-0.3094,-0.4399,-0.8431,-0.3094,-0.885,-0.3479,-0.3094,0.8334,-0.458,-0.3091,-0.8719,0.3798,-0.308,0.8807,-0.3598,-0.3049,0.5223,0.7964,-0.3045,0.7548,-0.5811,-0.3043,-0.6938,-0.6527,-0.3037,0.8465,-0.4373,-0.3037,0.7895,-0.5333,-0.3032,0.5106,-0.8046,-0.3029,-0.1692,-0.9379,-0.2993,-0.8479,0.4375,-0.299,0.3085,0.903,-0.2979,0.9479,0.1126,-0.2979,0.4038,-0.865,-0.2973,0.8857,-0.3566,-0.2969,0.8084,-0.5083,-0.2966,-0.6288,-0.7187,-0.2942,-0.3271,0.8981,-0.2918,-0.5375,0.7912,-0.2917,-0.8545,-0.4299,-0.2909,-0.5413,-0.7889,-0.2907,0.847,-0.445,-0.2899,0.009,0.957,-0.2886,-0.9168,0.2762,-0.2885,0.162,-0.9437,-0.2881,-0.6183,0.7312,-0.2878,-0.8447,-0.4512,-0.2867,0.8443,-0.4527,-0.2859,0.8699,-0.4019,-0.2857,-0.7749,-0.5639,-0.285,-0.9458,-0.1557,-0.2841,0.461,-0.8407,-0.2834,0.8008,-0.5276,-0.2832,-0.8535,0.4375,-0.2828,-0.9513,-0.1224,-0.2819,0.9055,-0.3172,-0.2818,-0.833,-0.4761,-0.2817,-0.3733,-0.8839,-0.281,-0.6239,-0.7293,-0.2798,-0.8267,-0.4881,-0.2793,-0.0336,-0.9596,-0.2792,-0.9354,0.2169,-0.2783,-0.9589,-0.0546,-0.2771,-0.0975,-0.9559,-0.2754,0.8133,-0.5126,-0.2728,-0.6676,-0.6928,-0.2718,-0.959,-0.0803,-0.2716,-0.8637,-0.4245,-0.2687,0.3316,0.9043,-0.2681,0.4923,-0.8281,-0.268,0.8618,-0.4307,-0.2669,-0.1673,-0.9491,-0.2655,-0.6936,0.6696,-0.2652,0.964,0.0211,-0.2651,-0.8004,-0.5376,-0.2635,-0.8663,0.4244,-0.2631,0.8725,-0.4117,-0.263,0.3896,0.8826,-0.2628,-0.374,0.8894,-0.2625,-0.5571,-0.7879,-0.2617,-0.8404,0.4746,-0.26,0.4218,-0.8686,-0.26,0.1443,0.9548,-0.2594,-0.8239,-0.5038,-0.2586,-0.5579,-0.7886,-0.2576,0.862,-0.4367,-0.2555,-0.9062,0.3369,-0.2554,-0.9207,0.295,-0.253,-0.8553,0.4521,-0.2515,0.792,-0.5563,-0.2515,0.9476,-0.1971,-0.2508,-0.925,0.2855,-0.2503,-0.831,0.4968,-0.2502,-0.3506,0.9025,-0.2502,0.9244,-0.2878,-0.248,0.851,-0.4629,-0.2479,0.924,-0.2912,-0.2474,0.9394,0.2374,-0.247,0.5371,-0.8066,-0.2469,0.0885,0.965,-0.2453,-0.9694,-0.0055,-0.245,0.9501,0.1931,-0.2414,0.924,-0.2967,-0.2412,0.9526,-0.1853,-0.2411,-0.0187,0.9703,-0.241,-0.8473,0.4733,-0.2407,0.9165,0.3196,-0.2406,0.8804,0.4088,-0.2383,-0.8622,-0.4471,-0.2379,0.6974,-0.6761,-0.2378,0.8245,0.5135,-0.2377,-0.9558,0.1729,-0.2375,-0.7018,-0.6717,-0.2331,0.0995,-0.9674,-0.2325,-0.9614,-0.1473,-0.2323,-0.3114,-0.9214,-0.2297,-0.1765,-0.9571,-0.2288,-0.9506,-0.2096,-0.2281,-0.9377,0.262,-0.2264,0.5545,-0.8008,-0.2256,0.1105,-0.9679,-0.2231,-0.9596,-0.1713,-0.223,0.7546,0.6172,-0.2228,0.834,-0.5047,-0.2215,0.9131,-0.3424,-0.2211,-0.8727,0.4354,-0.2204,-0.9234,0.3143,-0.2202,-0.0419,0.9745,-0.2201,-0.8948,0.3884,-0.2194,0.7938,-0.5673,-0.219,-0.6341,0.7416,-0.2186,0.8635,-0.4544,-0.2177,-0.8777,-0.4268,-0.2174,-0.5436,-0.8107,-0.217,0.83,-0.5138,-0.2168,0.6189,-0.755,-0.2164,-0.7696,0.6007,-0.215,0.0338,0.976,-0.2137,-0.9442,-0.2507,-0.213,-0.9717,0.1017,-0.2125,0.7906,-0.5743,-0.212,-0.1305,-0.9685,-0.2115,-0.9724,0.0989,-0.2098,-0.9777,0.0003,-0.2091,0.8611,-0.4635,-0.2074,0.7893,-0.5779,-0.2073,-0.6432,0.7371,-0.2066,-0.9263,-0.3152,-0.2059,-0.7872,-0.5814,-0.2055,-0.1003,-0.9735,-0.205,-0.9719,0.1155,-0.2042,-0.923,-0.3261,-0.204,-0.9597,-0.1934,-0.2034,-0.1849,-0.9615,-0.2028,-0.4532,-0.868,-0.2019,-0.972,-0.12,-0.2013,-0.7862,-0.5842,-0.201,-0.8107,-0.5499,-0.2008,-0.6891,0.6963,-0.1996,-0.561,0.8034,-0.1994,-0.593,-0.7801,-0.1992,0.8948,-0.3995,-0.1992,-0.961,-0.1921,-0.1992,0.8981,-0.3921,-0.1972,0.1546,-0.9681,-0.1954,-0.8753,-0.4424,-0.1951,-0.8915,-0.4089,-0.1927,0.6538,0.7317,-0.1916,0.9734,-0.1255,-0.1914,-0.8639,-0.4659,-0.1914,0.8965,-0.3995,-0.1905,-0.0637,-0.9796,-0.1905,0.6119,-0.7676,-0.1896,0.1282,-0.9734,-0.1889,-0.7298,0.6571,-0.1879,-0.9675,-0.1693,-0.187,-0.978,0.0926,-0.1869,-0.9441,0.2715,-0.1868,0.5552,-0.8105,-0.1868,0.8687,-0.4589,-0.1861,-0.891,0.4141,-0.1858,-0.4503,0.8733,-0.1851,-0.2407,-0.9528,-0.185,-0.9547,-0.233,-0.1839,-0.0773,-0.9799,-0.1835,-0.9771,0.1081,-0.1834,-0.0026,0.983,-0.1832,-0.911,0.3695,-0.1831,0.4108,-0.8932,-0.1829,0.0842,-0.9795,-0.1827,-0.9814,0.059,-0.1807,-0.1345,-0.9743,-0.1806,-0.8407,0.5105,-0.1799,0.42,-0.8895,-0.1798,-0.9397,0.291,-0.1772,-0.2035,-0.9629,-0.1771,0.9266,-0.3317,-0.1768,0.444,-0.8784,-0.1759,-0.9828,0.0564,-0.1752,-0.1789,-0.9682,-0.1744,0.8943,-0.4122,-0.173,-0.5896,-0.7889,-0.1717,0.5503,-0.8171,-0.1696,-0.339,-0.9254,-0.1696,-0.6493,0.7414,-0.1692,0.9682,0.1843,-0.1691,0.4113,0.8957,-0.1691,-0.8988,-0.4045,-0.1677,0.9717,0.1667,-0.1676,0.966,0.1968,-0.1673,-0.2588,0.9513,-0.1671,0.1258,-0.9779,-0.1666,-0.7276,-0.6655,-0.1665,-0.2179,-0.9617,-0.1664,-0.932,-0.3221,-0.1653,0.4152,-0.8946,-0.1649,-0.1144,-0.9797,-0.1641,-0.0899,-0.9823,-0.1639,0.9733,0.1605,-0.1637,0.8253,-0.5404,-0.1637,0.9176,-0.3622,-0.163,-0.8035,-0.5725,-0.1629,0.8895,-0.4268,-0.162,-0.153,-0.9749,-0.1617,-0.193,-0.9678,-0.1601,-0.4013,-0.9018,-0.1597,-0.923,0.3501,-0.1595,0.6244,-0.7647,-0.1594,-0.1506,-0.9757,-0.159,-0.8507,0.5009,-0.1586,0.494,-0.8549,-0.1583,-0.9758,-0.1511,-0.1581,-0.4538,-0.877,-0.1578,-0.5367,-0.8289,-0.1578,-0.3761,-0.9131,-0.1578,0.9471,-0.2793,-0.1577,-0.6602,-0.7343,-0.1577,-0.9248,-0.3462,-0.1576,-0.7454,0.6477,-0.1557,-0.8044,-0.5733,-0.1551,-0.8387,-0.5221,-0.1543,0.6312,-0.7601,-0.1525,-0.9602,-0.2341,-0.1524,-0.1006,-0.9832,-0.1522,0.0254,-0.988,-0.151,-0.9232,-0.3534,-0.1507,0.9648,0.2155,-0.1506,-0.3924,0.9074,-0.1502,-0.2276,-0.9621,-0.1487,-0.6811,-0.7169,-0.1485,-0.8252,-0.5449,-0.1485,0.8538,-0.499,-0.1461,0.9677,0.2054,-0.1461,0.9477,-0.2838,-0.1459,0.5756,-0.8046,-0.1456,-0.5474,-0.8241,-0.1452,-0.9146,0.3774,-0.1451,0.8459,-0.5132,-0.1446,-0.0131,-0.9894,-0.1444,-0.4618,-0.8751,-0.1435,-0.3397,0.9295,-0.1434,-0.1997,-0.9693,-0.1431,-0.8698,0.4722,-0.1422,0.6431,-0.7525,-0.142,-0.8779,0.4573,-0.142,-0.9741,-0.1761,-0.1401,-0.6814,-0.7184,-0.1398,0.7892,-0.598,-0.1382,0.7488,-0.6482,-0.1376,-0.9893,-0.0486,-0.1375,-0.3237,-0.9361,-0.1373,0.9206,-0.3655,-0.1372,0.8351,-0.5326,-0.1358,0.5038,0.8531,-0.135,0.9036,-0.4065,-0.1346,-0.6291,-0.7656,-0.1345,0.9475,-0.2902,-0.1331,-0.1775,-0.9751,-0.1319,0.8414,-0.5242,-0.1306,-0.2022,-0.9706,-0.1299,-0.6637,-0.7367,-0.1293,0.7627,-0.6336,-0.1293,0.7968,-0.5902,-0.1285,0.8716,-0.4731,-0.1282,-0.9107,-0.3927,-0.1279,-0.8581,0.4973,-0.1253,0.0842,0.9885,-0.1236,-0.8344,-0.5371,-0.1236,-0.9011,-0.4156,-0.1222,-0.897,0.4249,-0.122,0.9156,-0.3831,-0.1218,0.8689,-0.4798,-0.1204,-0.868,0.4818,-0.1184,-0.9914,0.0566,-0.1181,-0.3702,0.9214,-0.1162,-0.1302,-0.9847,-0.1158,-0.9063,-0.4064,-0.1152,-0.4345,0.8933,-0.1138,0.828,-0.549,-0.1121,-0.0281,0.9933,-0.1116,-0.8989,-0.4237,-0.1116,-0.9668,-0.2301,-0.1111,-0.3316,-0.9368,-0.1109,0.9454,-0.3064,-0.1108,-0.9892,0.0959,-0.1107,0.9613,-0.2522,-0.1102,0.4005,-0.9096,-0.1102,-0.1563,-0.9815,-0.1094,0.6407,-0.7599,-0.1087,0.7863,-0.6082,-0.1084,-0.3959,-0.9119,-0.1076,-0.9611,-0.2543,-0.1064,-0.9339,-0.3414,-0.1024,-0.947,0.3044,-0.1023,-0.4143,-0.9044,-0.1018,0.7279,-0.6781,-0.1011,-0.9656,-0.2395,-0.0994,-0.9671,-0.2342,-0.0993,-0.8652,0.4915,-0.0977,0.0871,0.9914,-0.0976,0.9214,-0.3763,-0.0942,0.6309,-0.7701,-0.0914,-0.6585,-0.747,-0.0912,-0.8498,0.5192,-0.09,0.0471,0.9948,-0.0899,0.8962,-0.4344,-0.0884,-0.967,0.2389,-0.0884,0.902,-0.4226,-0.0874,-0.0655,-0.994,-0.0868,-0.1846,-0.979,-0.0864,-0.8011,-0.5923,-0.0859,-0.8748,0.4768,-0.0857,-0.8528,-0.5151,-0.0847,-0.962,-0.2594,-0.0841,0.1006,-0.9914,-0.0839,-0.215,0.973,-0.0834,-0.791,0.6061,-0.0833,-0.9379,0.3368,-0.0832,0.5151,-0.8531,-0.0832,0.5808,-0.8098,-0.0823,-0.0643,-0.9945,-0.0822,0.946,-0.3137,-0.0813,0.9462,-0.3132,-0.0796,0.7626,-0.642,-0.0795,0.2942,0.9524,-0.0783,-0.0181,0.9968,-0.0782,-0.8579,0.5079,-0.0767,-0.8049,-0.5884,-0.0754,-0.5335,0.8424,-0.075,-0.9859,0.1498,-0.0713,-0.8245,0.5614,-0.0707,0.1773,0.9816,-0.0706,0.1208,-0.9902,-0.0696,0.9465,-0.3153,-0.0668,0.7535,-0.6541,-0.0653,0.1457,-0.9872,-0.0636,-0.2224,-0.9729,-0.0636,-0.8042,0.591,-0.0635,0.3904,0.9184,-0.0616,-0.0717,-0.9955,-0.0609,0.7004,-0.7112,-0.0606,-0.7557,0.6521,-0.0599,0.6704,-0.7396,-0.0589,-0.4364,-0.8978,-0.0582,-0.6819,-0.7292,-0.058,0.9401,-0.336,-0.057,-0.7855,-0.6163,-0.0569,0.1738,-0.9831,-0.0568,0.816,-0.5752,-0.0546,-0.0134,-0.9984,-0.0542,-0.9976,-0.0439,-0.0541,-0.7314,-0.6798,-0.0541,0.9555,-0.2898,-0.0539,0.0649,0.9964,-0.0536,-0.8769,0.4777,-0.0533,-0.6242,0.7794,-0.0516,0.8468,-0.5294,-0.05,-0.6665,0.7438,-0.0497,-0.9584,-0.281,-0.0493,-0.9581,-0.282,-0.0489,-0.8512,0.5225,-0.0484,0.9364,-0.3477,-0.0477,-0.5659,0.8231,-0.0473,-0.7168,-0.6957,-0.0461,-0.9697,-0.2401,-0.045,-0.9369,-0.3467,-0.044,0.1061,-0.9934,-0.0422,-0.932,0.36,-0.0398,0.5248,-0.8503,-0.0391,-0.9367,-0.3479,-0.038,0.7905,-0.6112,-0.0374,0.8124,-0.582,-0.0342,-0.9503,-0.3094,-0.034,0.0591,-0.9977,-0.0335,-0.0849,-0.9958,-0.0327,0.7436,-0.6679,-0.032,-0.8171,-0.5756,-0.0294,-0.0104,-0.9995,-0.0293,-0.9295,-0.3676,-0.0292,-0.8616,0.5067,-0.0289,-0.0483,-0.9984,-0.0282,-0.8082,-0.5883,-0.027,-0.5395,0.8415,-0.0259,-0.976,-0.2161,-0.0256,0.0043,-0.9997,-0.0255,0.1498,-0.9884,-0.0254,-0.2133,0.9767,-0.0251,-0.8451,0.534,-0.0249,0.8347,-0.5501,-0.0248,0.8427,-0.5378,-0.0244,-0.867,0.4977,-0.0231,-0.8444,0.5352,-0.0223,-0.6251,0.7802,-0.0223,0.5426,-0.8397,-0.0215,-0.5133,0.8579,-0.0214,-0.9235,-0.383,-0.0209,-0.846,-0.5328,-0.02,-0.4989,-0.8664,-0.0187,-0.0832,-0.9964,-0.0161,0.8993,-0.437,-0.0158,-0.8785,0.4776,-0.0148,-0.8632,0.5046,-0.0132,-0.5182,0.8552,-0.013,-0.9978,0.0646,-0.0127,0.6171,-0.7868,-0.0126,0.8357,-0.5491,-0.0126,-0.124,0.9922,-0.0115,-0.8177,-0.5755,-0.0101,-0.8175,0.5759,-0.0101,0.9798,-0.1999,-0.0094,0.9148,-0.4038,-0.0077,0.6403,-0.7681,-0.0075,-0.9533,0.3019,-0.0075,0.8603,-0.5097,-0.0069,-0.8291,0.559,-0.0068,-0.2843,0.9587,-0.0066,-0.884,-0.4673,-0.0059,-0.9557,0.2943,-0.0058,0.8987,-0.4386,-0.0044,-0.9017,-0.4323,-0.0028,0.0414,0.9991,-0.0028,0.9753,0.2207,-0.0027,-0.9416,0.3368,-0.0021,0.9685,0.2488,-0.0021,-0.6142,0.7891,-0.0018,-0.9582,0.2861,-0.0004,0.0116,0.9999,-0.0003,-0.7844,0.6202,-0.0002,0.983,0.1838,0.0,0.0739,0.9973,0.0,0.2691,0.9631,0.0,0.4833,0.8755,0.0,0.6519,0.7583,0.0,0.7705,0.6375,0.0,0.8475,0.5309,0.0,0.9064,0.4225,0.0,0.944,0.33,0.0,-0.9753,-0.2211,0.0,-0.9486,-0.3166,0.0,-0.9052,-0.4249,0.0,-0.806,-0.5919,0.0,-0.6873,-0.7263,0.0,-0.4843,-0.8749,0.0,-0.3011,-0.9536,0.0,0.1367,-0.9906,0.0,0.0052,-1.0,0.0024,-0.9069,0.4213,0.0037,-0.8962,-0.4437,0.0038,0.9811,-0.1933,0.0047,0.9821,-0.1881,0.0049,0.0806,-0.9967,0.0057,-0.8124,0.5831,0.0058,0.8987,-0.4386,0.0066,-0.7667,0.642,0.0066,-0.884,-0.4673,0.007,0.6022,-0.7983,0.0073,-0.0306,0.9995,0.0075,0.8603,-0.5097,0.0077,0.6403,-0.7681,0.0084,-0.2306,-0.973,0.0086,-0.9894,0.1452,0.0087,-0.9483,-0.3173,0.009,0.6486,-0.7611,0.0094,0.8344,-0.5511,0.0095,-0.8646,0.5023,0.0101,-0.9984,-0.0565,0.0111,-0.9578,-0.2871,0.0115,-0.8177,-0.5755,0.0131,-0.2745,0.9615,0.0138,-0.9452,0.3263,0.0143,-0.8454,0.5339,0.015,0.899,-0.4377,0.0162,-0.2822,0.9592,0.0187,-0.0832,-0.9964,0.0187,-0.9334,0.3584,0.02,-0.4989,-0.8664,0.0207,-0.6166,-0.787,0.0223,0.5426,-0.8397,0.0225,-0.445,-0.8952,0.0225,0.6163,-0.7872,0.0228,-0.7253,-0.6881,0.0238,-0.0468,-0.9986,0.0239,0.8351,-0.5496,0.024,0.8426,-0.538,0.0251,-0.4646,-0.8852,0.0255,0.1498,-0.9884,0.0256,0.0043,-0.9997,0.0259,-0.976,-0.2161,0.0278,-0.9995,0.0164,0.0289,-0.5685,0.8222,0.029,0.8832,-0.4681,0.0293,-0.9295,-0.3676,0.0295,-0.2631,-0.9643,0.0301,-0.9986,0.0444,0.032,-0.8171,-0.5756,0.0334,-0.9532,-0.3004,0.0335,-0.0849,-0.9958,0.0336,-0.9885,-0.1478,0.0344,-0.6762,-0.7359,0.0345,-0.9936,-0.1075,0.0359,-0.9289,0.3685,0.037,-0.5438,-0.8384,0.0372,0.9007,-0.4328,0.0374,0.8124,-0.582,0.038,0.7905,-0.6112,0.0397,-0.8323,-0.5529,0.0398,0.5248,-0.8503,0.0433,-0.9957,-0.0823,0.045,-0.9369,-0.3467,0.0455,-0.8527,0.5205,0.0455,0.9359,-0.3492,0.0469,-0.9229,-0.3821,0.05,-0.7047,0.7077,0.0502,0.5066,0.8607,0.0504,-0.8049,0.5913,0.0507,-0.9987,0.0054,0.0536,-0.7312,-0.6801,0.0539,0.0649,0.9964,0.0541,0.9555,-0.2898,0.0543,-0.8742,0.4825,0.0546,-0.0134,-0.9984,0.0548,0.8168,-0.5743,0.0549,-0.9712,-0.2317,0.0561,0.7286,-0.6826,0.0561,0.7582,-0.6496,0.057,0.7053,-0.7066,0.057,-0.7855,-0.6163,0.0582,-0.6819,-0.7292,0.0583,-0.8253,0.5617,0.0583,-0.6666,-0.7431,0.059,0.1966,0.9787,0.0599,0.6704,-0.7396,0.0601,-0.8605,0.5059,0.0612,0.1398,0.9883,0.0615,0.3556,-0.9326,0.0616,-0.0717,-0.9955,0.0643,-0.1151,0.9913,0.0644,0.9468,-0.3152,0.0653,0.1457,-0.9872,0.0664,-0.9481,-0.3109,0.0672,-0.9634,-0.2594,0.0736,0.94,-0.333,0.0739,-0.8757,0.4772,0.0767,-0.8049,-0.5884,0.0786,-0.0163,0.9968,0.0794,0.9468,-0.3119,0.0795,0.2942,0.9524,0.0795,0.934,-0.3482,0.0796,0.9465,-0.3126,0.0819,-0.0532,0.9952,0.0822,-0.9855,0.1483,0.0832,0.5808,-0.8098,0.0832,0.5151,-0.8531,0.0837,-0.7498,0.6564,0.0847,-0.962,-0.2594,0.0849,-0.2905,-0.9531,0.0852,-0.7992,-0.595,0.0868,-0.1846,-0.979,0.0874,-0.0655,-0.994,0.0881,-0.8652,0.4936,0.0883,-0.7321,-0.6755,0.0888,0.0556,0.9945,0.0891,-0.8556,-0.5099,0.0896,0.8682,-0.4881,0.0896,-0.8867,0.4536,0.0911,-0.4663,-0.8799,0.0911,0.8474,-0.523,0.0912,-0.0472,-0.9947,0.0925,0.9287,-0.3592,0.0934,0.1024,-0.9903,0.094,-0.8509,0.5169,0.0942,0.6309,-0.7701,0.0947,0.7612,-0.6415,0.096,-0.9615,-0.2576,0.0968,-0.763,-0.6391,0.0981,0.7292,-0.6772,0.0983,-0.0883,-0.9912,0.0984,-0.1493,-0.9839,0.0985,-0.9939,-0.0491,0.0994,-0.9671,-0.2342,0.1011,-0.9656,-0.2395,0.1023,-0.4143,-0.9044,0.1026,0.8943,-0.4356,0.1041,0.1822,0.9777,0.1042,0.9282,-0.3571,0.1042,-0.7554,0.6469,0.1049,0.9073,-0.4072,0.1051,-0.9259,0.3628,0.1054,-0.9458,0.3072,0.1064,-0.9339,-0.3414,0.1079,0.8411,-0.53,0.1084,-0.3959,-0.9119,0.1084,0.9616,-0.2522,0.1092,0.9465,-0.3035,0.1094,0.6407,-0.7599,0.1102,-0.1563,-0.9815,0.1107,-0.9915,0.0683,0.1109,0.0778,0.9908,0.111,0.8297,-0.547,0.1111,0.9495,-0.2935,0.1116,-0.9668,-0.2301,0.1151,-0.3656,-0.9236,0.1158,-0.9063,-0.4064,0.1162,-0.1302,-0.9847,0.1177,-0.8987,0.4225,0.1179,0.8988,-0.4223,0.1214,-0.8671,0.4832,0.1218,-0.3397,-0.9326,0.1236,-0.9011,-0.4156,0.1256,0.8731,-0.4711,0.1274,0.9045,-0.4071,0.1282,-0.9107,-0.3927,0.1288,-0.9027,-0.4106,0.1293,0.7968,-0.5902,0.1293,0.7627,-0.6336,0.1296,0.8421,-0.5235,0.1299,-0.6637,-0.7367,0.1306,-0.1368,-0.982,0.1321,0.6456,-0.7522,0.1327,0.9482,-0.2888,0.1327,-0.8592,0.4942,0.1329,-0.7554,0.6417,0.1331,-0.1775,-0.9751,0.1358,0.5038,0.8531,0.1375,0.7905,-0.5969,0.1382,0.7488,-0.6482,0.139,-0.9763,-0.1661,0.1397,0.9157,-0.3768,0.1401,-0.6814,-0.7184,0.1416,-0.2765,0.9505,0.142,-0.9741,-0.1761,0.1422,0.6431,-0.7525,0.1443,0.9161,-0.3741,0.1445,0.8465,-0.5124,0.1456,-0.5474,-0.8241,0.1458,-0.8681,0.4745,0.1484,0.9681,0.2021,0.1485,-0.8252,-0.5449,0.1487,-0.6811,-0.7169,0.1502,-0.2276,-0.9621,0.1503,0.8302,-0.5368,0.151,-0.9232,-0.3534,0.1513,-0.6284,-0.763,0.1521,-0.0778,-0.9853,0.1522,0.0254,-0.988,0.1524,-0.1006,-0.9832,0.1535,0.9672,0.2024,0.1543,0.6312,-0.7601,0.1551,-0.8387,-0.5221,0.157,-0.2614,-0.9524,0.1577,-0.9248,-0.3462,0.1577,-0.6602,-0.7343,0.1578,-0.3761,-0.9131,0.1578,-0.5367,-0.8289,0.1594,-0.1506,-0.9757,0.1594,-0.026,-0.9869,0.1601,-0.4013,-0.9018,0.1604,0.9314,-0.3268,0.1617,-0.193,-0.9678,0.162,-0.153,-0.9749,0.163,-0.8035,-0.5725,0.1639,0.9733,0.1605,0.1645,-0.1129,-0.9799,0.1653,0.5439,-0.8227,0.1661,0.833,-0.5278,0.1662,-0.7593,-0.6292,0.1666,-0.7276,-0.6655,0.1676,0.966,0.1968,0.1677,0.9717,0.1667,0.1678,-0.5894,0.7902,0.1692,0.9682,0.1843,0.1693,-0.9847,0.0423,0.1693,0.4254,-0.889,0.1695,-0.9001,-0.4015,0.1696,-0.339,-0.9254,0.1701,0.4342,-0.8846,0.1716,0.1185,-0.978,0.172,0.423,-0.8897,0.1732,0.783,-0.5974,0.1739,-0.8871,-0.4275,0.1744,0.8943,-0.4122,0.175,-0.8473,-0.5014,0.1754,0.8808,-0.4399,0.1768,0.444,-0.8784,0.1772,-0.2035,-0.9629,0.1774,-0.4606,0.8697,0.1784,-0.4309,0.8846,0.1795,-0.7679,-0.6149,0.1797,0.0849,-0.9801,0.1808,-0.1366,-0.974,0.1815,0.0952,-0.9788,0.1817,-0.2926,0.9388,0.1823,-0.9637,-0.1952,0.1825,-0.9793,0.088,0.1826,-0.9401,0.2879,0.1837,-0.8907,0.4157,0.1839,-0.0773,-0.9799,0.1852,-0.9777,0.0991,0.1868,0.8687,-0.4589,0.1873,-0.8411,0.5074,0.1879,-0.9675,-0.1693,0.1891,0.8969,-0.3997,0.19,0.1158,-0.9749,0.1905,0.6119,-0.7676,0.1905,-0.0637,-0.9796,0.1905,-0.864,-0.4661,0.1927,0.6538,0.7317,0.1938,-0.9535,-0.2309,0.1942,-0.6715,-0.7151,0.1951,-0.8915,-0.4089,0.1954,-0.8753,-0.4424,0.1972,0.1546,-0.9681,0.199,-0.8917,0.4066,0.1991,0.5504,-0.8108,0.1992,0.8981,-0.3921,0.1994,-0.6917,0.6941,0.1994,-0.593,-0.7801,0.2009,-0.1116,-0.9732,0.201,-0.8107,-0.5499,0.2021,-0.9216,0.3314,0.2029,-0.4714,-0.8583,0.2034,-0.1849,-0.9615,0.2035,0.9063,-0.3703,0.2042,-0.923,-0.3261,0.205,0.6111,-0.7646,0.2054,-0.963,-0.1745,0.2055,-0.1003,-0.9735,0.2059,-0.7872,-0.5814,0.2066,-0.9263,-0.3152,0.2074,0.8665,-0.4541,0.2092,0.9648,-0.1592,0.2118,-0.6337,0.7441,0.212,-0.1305,-0.9685,0.2126,-0.9392,-0.2697,0.2129,0.5587,-0.8015,0.2131,-0.9717,0.1015,0.2137,-0.9442,-0.2507,0.2138,-0.8964,0.3882,0.2169,0.8746,-0.4337,0.2174,-0.5436,-0.8107,0.219,-0.6366,0.7394,0.2194,0.7938,-0.5673,0.2203,-0.0418,0.9745,0.223,0.7546,0.6172,0.2231,-0.9596,-0.1713,0.2233,-0.8734,-0.4329,0.2234,-0.9355,0.2739,0.2238,-0.9536,-0.2012,0.2247,0.7044,-0.6733,0.2264,0.5545,-0.8008,0.2281,-0.9373,0.2634,0.2294,0.1098,-0.9671,0.2297,-0.1765,-0.9571,0.2316,-0.9616,-0.1475,0.2327,0.8494,-0.4737,0.2351,0.8016,-0.5496,0.236,-0.8627,0.4472,0.2366,-0.9491,-0.2082,0.2369,0.0236,0.9713,0.2371,0.4633,-0.8539,0.2378,0.8245,0.5135,0.2383,-0.8622,-0.4471,0.2387,-0.9548,0.1773,0.2403,-0.0198,-0.9705,0.2406,0.8804,0.4088,0.2407,0.9165,0.3196,0.2418,-0.8466,0.4741,0.2418,0.9589,-0.1482,0.2422,-0.458,-0.8553,0.2427,-0.8559,0.4567,0.2442,-0.8362,0.491,0.2444,0.7733,-0.5851,0.245,0.9501,0.1931,0.2453,-0.9694,-0.0055,0.2469,0.0885,0.965,0.247,0.5371,-0.8066,0.2476,0.7763,-0.5797,0.2479,0.8138,-0.5256,0.2483,0.939,0.2379,0.2502,0.9244,-0.2878,0.2515,0.9476,-0.1971,0.2521,-0.8298,0.4979,0.2535,-0.8677,0.4276,0.255,-0.8487,0.4633,0.2559,-0.949,0.1843,0.2562,0.9006,-0.3512,0.2568,-0.905,0.3392,0.26,0.4218,-0.8686,0.262,-0.5686,-0.7797,0.2631,0.8725,-0.4117,0.2652,0.964,0.0211,0.2669,-0.1673,-0.9491,0.2679,0.8601,-0.4341,0.2684,-0.1329,0.9541,0.2687,0.3316,0.9043,0.2713,0.814,-0.5136,0.2717,-0.542,0.7953,0.2719,-0.6963,0.6643,0.2721,0.885,-0.3778,0.2728,-0.6676,-0.6928,0.2768,-0.9356,0.2192,0.277,-0.0971,-0.956,0.2778,-0.3483,0.8953,0.2782,-0.2179,-0.9355,0.2785,-0.9216,0.2702,0.2786,-0.9595,0.0407,0.2793,-0.5261,-0.8032,0.2793,-0.0336,-0.9596,0.2797,-0.8575,-0.4317,0.2798,-0.8267,-0.4881,0.2799,-0.9345,-0.22,0.2806,0.8488,-0.4482,0.2817,-0.3733,-0.8839,0.2823,0.8,-0.5295,0.2828,-0.9513,-0.1224,0.2838,0.8682,-0.4071,0.284,0.1854,0.9407,0.2841,-0.9181,0.2765,0.2841,0.461,-0.8407,0.285,-0.4995,-0.8181,0.2857,-0.7749,-0.5639,0.2861,-0.17,-0.943,0.2862,-0.8344,-0.4711,0.2864,0.8498,-0.4424,0.2885,0.162,-0.9437,0.2898,0.6848,-0.6686,0.2909,-0.5413,-0.7889,0.2915,0.8078,-0.5123,0.2915,-0.6253,-0.7238,0.2917,-0.8545,-0.4299,0.2919,0.4177,-0.8604,0.2932,-0.7191,0.63,0.2947,-0.9396,-0.1741,0.295,0.8909,-0.3453,0.296,0.5207,-0.8008,0.2979,0.9479,0.1126,0.2987,-0.8498,0.4342,0.2993,-0.943,-0.1456,0.3002,-0.951,-0.0736,0.3005,-0.84,0.4517,0.3013,0.7905,-0.5333,0.3021,0.8478,-0.4359,0.303,-0.6928,-0.6544,0.3031,0.8167,-0.491,0.3036,-0.905,-0.2979,0.3043,-0.9166,0.2594,0.3049,0.5223,0.7964,0.3059,-0.6011,-0.7383,0.306,-0.527,0.7928,0.3069,0.8821,-0.3573,0.3089,0.8921,-0.3297,0.3091,-0.576,0.7568,0.3114,-0.3556,-0.8812,0.3123,0.8499,-0.4245,0.3123,-0.9435,-0.1107,0.3125,0.0654,0.9477,0.3126,0.0805,-0.9465,0.314,-0.3295,0.8904,0.314,0.8196,-0.4792,0.3143,0.7858,-0.5327,0.3152,-0.8973,0.3091,0.3162,-0.9207,-0.2289,0.3178,-0.9213,-0.2241,0.3192,0.8718,-0.3716,0.3192,0.6334,-0.7049,0.3193,-0.6982,0.6407,0.3222,0.409,-0.8537,0.3227,0.8812,-0.3454,0.3228,0.549,-0.7709,0.3233,-0.9114,-0.2546,0.3249,-0.6991,-0.6369,0.3249,-0.244,-0.9137,0.3253,-0.7681,-0.5515,0.3254,-0.9109,-0.2536,0.3265,-0.911,-0.2519,0.3267,-0.9105,-0.2533,0.327,-0.7876,-0.5223,0.327,0.8617,-0.388,0.3283,-0.5722,-0.7515,0.3284,0.7311,-0.598,0.3288,0.8859,-0.3273,0.3288,0.5109,-0.7943,0.3291,0.8691,-0.3691,0.3295,-0.3904,0.8597,0.3309,-0.5653,0.7556,0.3317,0.83,-0.4485,0.3324,0.5685,-0.7526,0.3328,0.1096,-0.9366,0.3342,-0.3754,-0.8645,0.3347,0.9407,0.0557,0.3351,0.9119,-0.2371,0.3356,0.8364,-0.4334,0.3373,-0.9264,0.1674,0.3375,0.8749,-0.3474,0.3385,0.9331,-0.1213,0.3392,0.9334,-0.1171,0.3392,-0.8156,-0.4687,0.3396,0.9034,-0.2619,0.34,0.8724,-0.351,0.3407,-0.8112,0.4752,0.3411,-0.6003,-0.7234,0.3441,0.9209,0.1829,0.3446,0.9216,0.1787,0.345,-0.8495,-0.3992,0.3463,-0.6283,0.6966,0.3463,0.7684,-0.5381,0.3464,0.8417,-0.4142,0.3474,0.9212,0.175,0.3482,-0.9136,-0.2099,0.3487,0.8237,-0.447,0.3493,-0.815,-0.4624,0.3498,0.5405,-0.7652,0.3502,-0.9282,-0.1254,0.3506,0.9156,-0.1969,0.3507,0.6547,0.6696,0.3511,0.5914,-0.7259,0.3515,-0.8279,-0.4371,0.3526,0.6756,-0.6475,0.3529,0.8233,-0.4445,0.3537,0.0686,0.9329,0.3543,0.9231,-0.1499,0.3544,-0.9258,-0.1316,0.3545,-0.9154,-0.1907,0.3567,-0.9313,-0.0742,0.3596,0.8326,-0.4213,0.36,0.6641,-0.6553,0.3601,-0.9137,-0.1886,0.3607,0.8768,-0.318,0.3608,0.8228,-0.439,0.3613,-0.9151,-0.1789,0.3622,0.6553,-0.6629,0.3623,-0.8063,0.4676,0.3629,-0.9137,-0.1831,0.3629,-0.5695,-0.7375,0.3632,0.9181,-0.1588,0.3638,0.9315,-0.0013,0.3647,-0.4583,-0.8105,0.3655,-0.8943,-0.2582,0.3679,0.7832,-0.5013,0.3686,-0.9259,-0.0824,0.3712,0.8942,-0.2501,0.3713,0.1611,-0.9144,0.3725,0.7736,-0.5127,0.3726,0.8172,-0.4397,0.3755,0.8474,-0.3753,0.3773,0.8373,-0.3956,0.3777,-0.866,-0.3278,0.3802,0.7222,-0.5779,0.3803,-0.1368,-0.9147,0.3815,0.8458,-0.3729,0.382,-0.3479,-0.8562};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=3 */
		private double[] getNormal_6_122_vector_3()
		{
			double[] value = {0.3821,0.8246,-0.4171,0.3821,-0.4328,-0.8165,0.3821,-0.8026,-0.458,0.3822,0.7601,-0.5256,0.3837,0.7351,0.559,0.3845,0.4382,-0.8125,0.3851,-0.8347,-0.3936,0.3875,-0.8862,-0.2539,0.3879,-0.718,0.5779,0.3892,-0.5895,-0.7078,0.3905,-0.6531,0.6488,0.3906,0.908,-0.1517,0.3912,-0.8997,0.1935,0.3917,0.9161,0.0862,0.3918,-0.4486,-0.8033,0.3924,0.7067,-0.5888,0.3926,-0.5776,-0.7157,0.3928,-0.6375,-0.6628,0.3931,-0.7591,-0.5189,0.394,-0.8023,0.4483,0.3944,-0.5537,0.7334,0.3978,-0.2601,0.8798,0.3989,-0.1206,-0.909,0.3996,-0.5285,-0.749,0.4018,-0.4065,-0.8205,0.4022,0.9006,0.1645,0.4036,-0.8918,-0.2046,0.4039,-0.8832,-0.2382,0.4044,-0.8789,-0.253,0.4064,0.783,0.4708,0.4068,0.687,-0.6021,0.4079,-0.8023,-0.4358,0.4087,-0.8773,-0.2516,0.4088,0.0134,-0.9125,0.4093,0.7446,-0.5273,0.4111,-0.8824,-0.229,0.4121,0.3719,-0.8318,0.4123,-0.8872,-0.207,0.4128,-0.7914,-0.4509,0.413,-0.8719,0.263,0.4131,0.8289,-0.3772,0.415,-0.4219,-0.8061,0.4152,0.6991,-0.5821,0.4172,-0.4215,-0.8051,0.419,-0.8683,-0.2657,0.4193,0.8363,-0.3534,0.4199,0.8138,-0.4018,0.4204,0.799,-0.43,0.4215,0.6867,-0.5923,0.4218,0.7669,-0.4836,0.4228,0.4757,-0.7714,0.4229,-0.7561,0.4995,0.4233,-0.0831,-0.9022,0.4242,0.8858,-0.1881,0.4248,0.8175,0.3889,0.4254,-0.2097,-0.8804,0.4264,-0.0446,0.9035,0.4277,0.85,0.3074,0.4277,0.8737,0.2319,0.4285,-0.8713,-0.2391,0.4299,0.6084,-0.6672,0.4308,-0.8825,-0.1887,0.4314,0.8923,-0.1332,0.4317,0.4122,-0.8023,0.4318,-0.7709,-0.4683,0.4325,-0.5332,0.7271,0.433,0.2845,-0.8553,0.4342,-0.6995,-0.5676,0.4358,-0.6689,-0.6022,0.4373,0.8937,-0.101,0.4389,0.0013,0.8985,0.4391,0.8526,-0.2833,0.4397,-0.2661,0.8578,0.4401,-0.7733,-0.4564,0.4431,0.8879,0.1237,0.4434,0.7461,-0.4967,0.4439,-0.664,0.6017,0.4443,-0.8528,0.2746,0.4444,0.8921,-0.0814,0.4446,-0.8544,-0.2688,0.4453,-0.8755,-0.1879,0.4454,-0.8559,-0.2627,0.4458,0.4615,-0.767,0.446,0.5272,-0.7232,0.4463,-0.6871,-0.5734,0.4469,0.8296,-0.3347,0.4469,0.2855,0.8478,0.4487,-0.3102,-0.8381,0.4495,-0.841,-0.3009,0.4496,0.801,-0.3953,0.4505,-0.0698,-0.89,0.4508,-0.1116,-0.8856,0.451,-0.2402,-0.8596,0.4531,0.8753,0.1689,0.4573,-0.6789,-0.5744,0.4573,0.8761,0.1523,0.4586,0.8575,0.2332,0.4589,-0.8482,-0.2646,0.4604,-0.8875,0.0212,0.4611,-0.8432,0.2764,0.4612,-0.5124,0.7244,0.4615,-0.7717,-0.4377,0.4616,0.8795,0.1156,0.464,-0.7816,-0.417,0.4643,0.7492,-0.4723,0.4658,0.8236,-0.3237,0.4659,-0.8161,-0.3418,0.4664,0.8604,-0.2051,0.4667,0.8816,0.0708,0.4694,0.7833,-0.4075,0.4706,0.8764,-0.1026,0.4711,-0.4856,-0.7363,0.4747,-0.8782,0.0592,0.4747,-0.8778,-0.0645,0.475,-0.8545,0.2101,0.4758,-0.8531,0.2141,0.4762,0.0663,0.8768,0.4764,-0.8682,-0.1387,0.4764,0.8051,-0.3535,0.4764,-0.5866,-0.6549,0.478,-0.7891,-0.3858,0.4784,-0.8619,-0.1682,0.4792,-0.7478,-0.4596,0.4803,-0.6176,-0.6228,0.4813,-0.5932,-0.6453,0.4814,0.8441,-0.2362,0.4815,-0.8714,-0.0936,0.4815,-0.8321,0.2752,0.4828,-0.8426,-0.2387,0.4839,-0.8293,-0.2795,0.4843,-0.8744,-0.0291,0.4856,0.8723,0.0572,0.4865,-0.8684,-0.0963,0.4868,0.2286,0.8431,0.487,-0.873,0.0254,0.4872,-0.0235,0.873,0.488,-0.3966,-0.7775,0.4893,0.7822,-0.3857,0.4906,-0.8696,0.0548,0.4918,-0.8081,-0.3243,0.4919,-0.3942,0.7763,0.4937,0.4547,0.7413,0.4938,0.7999,-0.3411,0.494,-0.8685,-0.0403,0.4953,0.668,0.5553,0.4958,-0.7311,-0.4687,0.4959,-0.6877,-0.5302,0.496,-0.5218,-0.6941,0.4967,-0.3164,0.8082,0.4967,0.7723,-0.3959,0.4974,0.8337,0.2399,0.4982,-0.8565,0.1349,0.5017,-0.5403,-0.6756,0.5017,0.8334,0.2318,0.5028,-0.7323,-0.4593,0.505,0.6902,-0.5183,0.5055,0.7377,-0.4474,0.5057,-0.844,-0.1787,0.5061,0.778,-0.3724,0.5086,-0.819,-0.2657,0.5094,0.8196,-0.2623,0.5095,-0.6429,-0.5719,0.5096,0.8085,-0.2942,0.511,0.7431,-0.432,0.5112,-0.5503,0.6602,0.5119,0.3071,-0.8023,0.5129,0.7118,-0.4799,0.5142,-0.8186,-0.256,0.5144,0.4583,-0.7248,0.5163,-0.8199,-0.2473,0.5163,0.8196,-0.2484,0.5163,0.8007,-0.3037,0.518,-0.8066,0.2849,0.5182,-0.7425,-0.4245,0.5204,0.8012,-0.2954,0.5209,0.0976,-0.848,0.5214,-0.5723,-0.633,0.5217,-0.852,-0.0447,0.522,-0.629,0.5761,0.522,-0.0502,-0.8514,0.5221,-0.8372,-0.1627,0.5228,0.8029,0.2864,0.5228,-0.8021,-0.2885,0.523,0.5167,-0.6778,0.524,-0.7949,-0.3059,0.5256,-0.7181,-0.4562,0.5263,0.8468,-0.0768,0.5288,-0.8245,-0.2014,0.5289,0.7278,0.4365,0.5289,0.7683,0.3606,0.5303,-0.8154,0.2322,0.5308,0.8385,0.1228,0.5313,0.8267,0.1852,0.5322,0.4325,0.7278,0.5325,-0.7916,0.2998,0.5329,-0.8215,-0.2028,0.5331,-0.1312,-0.8358,0.5342,0.8161,0.2204,0.5344,0.8396,0.0977,0.5346,-0.8325,-0.1458,0.5348,0.8255,0.1801,0.5355,0.6165,-0.5772,0.539,0.8369,0.0949,0.5397,0.5872,0.6032,0.5398,-0.6279,-0.5606,0.5405,-0.6617,-0.5196,0.5405,0.8148,-0.2098,0.5408,-0.2184,-0.8123,0.5415,-0.8321,-0.1198,0.5418,-0.7,-0.4653,0.542,0.8303,0.1299,0.542,0.3267,-0.7743,0.5432,0.8282,0.138,0.5438,-0.7492,-0.3781,0.545,0.8384,0.0006,0.5453,0.2107,-0.8113,0.5454,-0.81,0.2156,0.5455,0.6633,0.5123,0.5459,-0.8264,0.1384,0.5459,-0.6612,0.5146,0.5459,-0.7788,-0.309,0.5467,-0.0161,0.8372,0.547,-0.769,-0.3307,0.5478,-0.1687,-0.8194,0.5481,-0.8199,-0.1655,0.5499,-0.1186,-0.8268,0.5502,0.8294,0.0966,0.5525,0.832,0.0499,0.5526,0.8304,-0.0709,0.5542,-0.5927,-0.5845,0.555,-0.7666,-0.3229,0.5561,0.7204,-0.4145,0.5564,0.8309,-0.0054,0.5597,0.7727,0.2992,0.5615,-0.6629,0.4952,0.5621,-0.3599,-0.7447,0.5623,0.2154,0.7984,0.5623,-0.3129,-0.7654,0.5626,0.8246,-0.0593,0.5627,-0.8258,-0.0373,0.5632,-0.3043,0.7683,0.5645,-0.0756,-0.822,0.5667,0.0464,0.8226,0.5676,-0.8088,-0.1537,0.5676,-0.7501,-0.3393,0.5677,0.8109,-0.1418,0.5679,-0.3803,-0.73,0.5684,0.7924,-0.2215,0.5688,0.6609,-0.4895,0.5692,-0.1421,-0.8098,0.5692,0.6515,-0.5015,0.5705,0.0648,0.8188,0.5705,-0.5708,0.5906,0.5719,-0.741,-0.352,0.5724,-0.746,-0.3404,0.5735,-0.3972,-0.7165,0.5767,0.728,-0.3706,0.5768,0.4022,-0.7109,0.5776,-0.8129,0.0745,0.5779,0.2063,0.7896,0.5781,-0.7857,0.2201,0.579,-0.7798,-0.2381,0.5792,-0.6984,-0.4205,0.5794,0.7732,-0.2577,0.5796,-0.3017,-0.757,0.5818,0.8127,-0.032,0.5819,-0.8117,-0.0506,0.5827,-0.5768,-0.5725,0.5835,-0.4792,0.6557,0.585,-0.7645,-0.2708,0.5851,-0.6691,-0.4583,0.5873,0.495,0.6403,0.5877,0.7242,-0.3607,0.588,-0.7714,0.2432,0.5883,-0.7943,-0.1515,0.5911,0.2248,0.7746,0.5912,-0.7983,-0.1148,0.5918,-0.454,-0.666,0.592,-0.7951,-0.1317,0.5922,-0.7718,0.2315,0.5933,-0.3982,-0.6996,0.5948,0.7765,-0.2078,0.5957,-0.5599,-0.576,0.5964,-0.7901,-0.1413,0.5978,-0.7941,-0.1098,0.5982,-0.2157,-0.7718,0.5985,-0.7824,-0.1719,0.5999,-0.4794,-0.6406,0.6002,-0.794,-0.0964,0.6006,-0.7316,-0.3224,0.6009,-0.7202,-0.3469,0.601,0.0509,0.7976,0.6013,-0.7491,-0.2779,0.6014,-0.5773,-0.5523,0.6021,0.0436,-0.7972,0.6021,0.511,-0.6135,0.6027,0.051,0.7963,0.6029,0.4996,-0.622,0.603,0.3526,-0.7156,0.6052,0.7904,0.0952,0.6057,0.0381,-0.7948,0.6086,0.7586,0.2326,0.6093,-0.7499,-0.2578,0.6095,0.723,-0.3253,0.6095,-0.1445,-0.7795,0.6112,0.504,-0.6103,0.6114,0.1727,-0.7722,0.6129,-0.7355,-0.2887,0.6142,-0.7067,0.3513,0.6147,-0.0147,0.7886,0.6165,-0.5849,-0.5271,0.6168,-0.7575,0.2138,0.6171,-0.6191,-0.4857,0.6181,-0.5842,-0.526,0.6182,0.1346,-0.7744,0.6188,0.0591,0.7833,0.6189,0.7783,0.106,0.619,-0.783,-0.0613,0.619,-0.7577,-0.2066,0.6198,0.6008,-0.5049,0.6205,0.6724,-0.4036,0.6222,0.6081,-0.493,0.6224,-0.7813,0.0459,0.6224,-0.73,-0.2823,0.6229,0.0737,-0.7788,0.6237,0.6888,-0.3695,0.6238,-0.4193,0.6596,0.6249,-0.6422,-0.4439,0.625,-0.7487,-0.2209,0.6267,-0.7372,-0.2524,0.6271,0.7616,-0.1637,0.6279,-0.7376,-0.2484,0.629,-0.7394,-0.24,0.6293,0.7003,-0.3369,0.6304,0.7553,0.1792,0.6319,0.1145,0.7665,0.632,-0.7336,-0.2496,0.6321,0.7676,0.1059,0.6322,-0.4917,0.5988,0.6322,-0.7363,-0.2413,0.6325,0.7333,-0.2494,0.6327,0.7599,0.1494,0.6328,-0.7364,-0.2393,0.6332,-0.6696,-0.3882,0.6335,-0.7364,-0.2373,0.6345,-0.7364,-0.2348,0.6356,-0.7674,-0.0842,0.6357,-0.0508,0.7703,0.6359,-0.143,-0.7584,0.6362,0.7658,-0.0935,0.6364,0.7696,-0.0516,0.6384,0.0529,-0.7679,0.6389,-0.6655,0.386,0.6412,0.4609,-0.6136,0.6419,-0.2818,-0.7131,0.6421,-0.5046,-0.5771,0.6426,0.0847,0.7615,0.6428,-0.6656,-0.3793,0.6436,-0.765,-0.0248,0.6448,-0.7583,-0.0961,0.6451,-0.1221,-0.7543,0.6453,-0.7564,0.1066,0.6469,0.1069,-0.755,0.649,0.7538,-0.1028,0.6492,0.7023,0.2922,0.6516,0.3104,-0.6921,0.652,0.2318,-0.7219,0.6523,0.1172,-0.7489,0.6534,-0.2361,0.7193,0.655,-0.7541,-0.0488,0.6573,-0.2304,-0.7175,0.6577,-0.3228,-0.6806,0.6582,-0.0848,-0.7481,0.6594,0.2594,-0.7057,0.6595,-0.6439,-0.3878,0.6605,0.6679,0.3429,0.6621,-0.7404,0.1156,0.6624,0.0344,-0.7484,0.6645,-0.3835,-0.6414,0.6653,-0.7301,0.1561,0.6656,-0.0821,-0.7418,0.6672,-0.3566,-0.654,0.6685,-0.616,0.4167,0.6686,-0.6344,-0.3881,0.6693,-0.4411,0.5979,0.6699,-0.6413,-0.3741,0.671,0.6199,0.4068,0.6711,-0.7392,-0.0576,0.6712,0.7409,-0.023,0.6713,0.0393,-0.7401,0.6738,-0.5754,0.4636,0.6762,-0.1632,-0.7184,0.6772,0.0414,-0.7346,0.6778,-0.4166,-0.6059,0.6783,-0.7342,0.0289,0.6787,-0.7006,0.2201,0.6796,0.1462,0.7189,0.6799,-0.704,-0.2052,0.6814,-0.1275,-0.7207,0.6815,-0.5769,-0.4503,0.6823,-0.3692,-0.631,0.6836,-0.7247,-0.0872,0.685,-0.662,-0.3042,0.6857,-0.7275,-0.0231,0.6857,-0.6977,0.2076,0.6857,-0.375,-0.6238,0.6862,-0.5447,-0.4822,0.6868,0.3306,-0.6473,0.6869,-0.6186,-0.3815,0.687,-0.587,-0.4283,0.6875,-0.7241,-0.0545,0.6877,-0.6699,-0.2799,0.6879,0.556,0.4666,0.6884,0.7252,0.0157,0.6894,0.3529,-0.6326,0.6905,-0.7227,-0.0306,0.6915,-0.5104,-0.5112,0.6921,-0.5565,-0.4596,0.6922,-0.6909,0.2088,0.6929,-0.2751,-0.6665,0.6932,-0.7037,0.1559,0.6934,-0.6766,-0.2478,0.6935,-0.4706,-0.5456,0.6939,0.0116,0.72,0.6939,-0.4127,-0.59,0.695,-0.6776,0.2406,0.6969,-0.2002,-0.6887,0.6974,-0.7118,-0.0838,0.6977,0.1649,-0.6971,0.7008,0.6817,-0.21,0.7012,-0.6038,-0.3792,0.704,0.3017,0.643,0.704,0.2117,-0.6779,0.7043,-0.3658,-0.6084,0.7043,0.4595,0.5411,0.7049,-0.6942,-0.1455,0.7053,-0.5698,-0.4217,0.7061,-0.1719,-0.687,0.7066,-0.4129,-0.5746,0.7067,0.16,-0.6891,0.7095,0.607,-0.3581,0.7096,0.307,-0.6341,0.7099,-0.3361,-0.6189,0.7105,0.1001,-0.6966,0.7106,-0.5183,-0.4758,0.7107,-0.6914,0.1301,0.7107,-0.6356,-0.3014,0.7115,0.0854,-0.6975,0.712,-0.4686,-0.523,0.7122,0.5685,-0.4118,0.7125,-0.331,-0.6187,0.7129,-0.2931,-0.6371,0.7133,-0.5591,-0.4226,0.7169,-0.1913,-0.6704,0.7175,0.4649,-0.5186,0.7176,0.0081,-0.6965,0.7178,-0.6913,-0.0826,0.719,-0.2216,-0.6588,0.7193,0.2219,-0.6584,0.7198,-0.5594,0.411,0.7211,0.6672,0.1868,0.7218,-0.2441,-0.6476,0.7218,0.6874,0.0802,0.7237,-0.6609,-0.1988,0.7247,0.5687,-0.3891,0.7264,0.6297,-0.2752,0.7267,0.0381,0.6859,0.7271,-0.1833,-0.6617,0.7284,0.6635,0.1713,0.7294,-0.3899,-0.5621,0.7305,0.6478,0.2162,0.7314,0.6274,0.2674,0.7314,-0.4065,-0.5475,0.7318,0.6261,0.2692,0.7319,0.6793,-0.0545,0.732,0.6784,0.0632,0.7321,0.2201,-0.6446,0.7323,0.6578,0.176,0.7328,-0.1454,-0.6647,0.7348,-0.4458,0.5113,0.7362,-0.3005,-0.6064,0.7363,0.602,-0.3089,0.7372,-0.0346,0.6748,0.7375,0.2408,-0.631,0.7376,-0.6151,-0.2785,0.7377,-0.0017,0.6751,0.7388,-0.6195,-0.2653,0.7396,0.0139,0.6729,0.741,-0.2847,-0.6082,0.7416,0.1975,-0.6411,0.7436,-0.458,-0.4871,0.745,0.443,-0.4987,0.7469,0.1117,-0.6555,0.748,-0.3427,-0.5684,0.7483,0.1837,-0.6375,0.7488,-0.6623,0.0257,0.7491,0.6527,-0.1135,0.7511,-0.2965,-0.5899,0.7523,0.5257,-0.3972,0.7529,0.4438,-0.4859,0.7531,0.0707,0.6541,0.7535,-0.5993,-0.2703,0.754,0.153,-0.6388,0.7541,-0.6041,-0.2576,0.7542,0.1949,-0.6271,0.7546,-0.1063,-0.6475,0.7548,-0.5989,-0.2678,0.7561,-0.5223,-0.3944,0.7572,0.5572,-0.3407,0.7576,-0.6241,-0.1912,0.7582,-0.0467,-0.6503,0.7591,-0.5025,-0.4138,0.7594,-0.6503,-0.0208,0.7599,0.0419,-0.6487,0.7602,0.1027,-0.6416,0.7604,-0.5945,-0.2616,0.7606,-0.5118,-0.3995,0.7606,-0.5977,-0.2535,0.7622,-0.6059,-0.2277,0.7624,-0.6372,0.1127,0.7626,0.6463,0.0275,0.763,-0.5983,-0.2448,0.7632,-0.0118,-0.6461,0.7633,0.5987,-0.2427,0.7645,0.0779,-0.6399,0.7646,-0.2269,-0.6033,0.7649,-0.593,-0.2514,0.7681,-0.5298,-0.3598,0.7682,0.4486,-0.4568,0.7684,0.5803,-0.27,0.7685,-0.6383,-0.0439,0.7685,0.08,0.6348,0.7719,-0.4012,-0.4932,0.7721,-0.5754,-0.2698,0.7724,0.5867,0.2434,0.773,-0.2926,0.5629,0.7736,-0.6308,-0.0604,0.7743,0.5517,0.31,0.7753,0.4002,-0.4886,0.7754,0.1118,-0.6215,0.7762,-0.0723,-0.6264,0.7762,-0.5924,-0.2159,0.7767,0.6061,0.1713,0.779,0.091,0.6203,0.7793,-0.5506,-0.2994,0.7795,0.5456,-0.3077,0.7802,-0.0971,-0.618,0.7811,-0.1392,-0.6087,0.7816,0.1176,-0.6126,0.7825,-0.4391,-0.4415,0.7832,-0.4171,-0.4611,0.7835,0.5986,0.1665,0.7843,-0.617,0.0641,0.7845,0.3904,-0.4818,0.7846,0.5021,0.3636,0.7858,-0.3538,-0.5073,0.7873,-0.3878,-0.4793,0.7875,-0.3509,-0.5066,0.7882,-0.1943,-0.5839,0.7887,0.0303,-0.614,0.7893,-0.5073,0.346,0.7911,-0.5021,-0.3492,0.7927,-0.536,-0.2902,0.7928,-0.3544,-0.4958,0.7944,-0.5972,0.1107,0.7952,0.1637,0.5839,0.7959,0.6048,-0.0281,0.7969,0.4274,0.4268,0.7972,0.3526,-0.4901,0.798,0.1778,-0.5758,0.7983,0.5651,0.2085,0.7998,0.5566,-0.2248,0.8015,-0.4237,-0.4221,0.8025,0.5529,0.2242,0.803,-0.5438,0.2441,0.803,-0.3522,-0.4808,0.8034,-0.0955,-0.5877,0.8041,0.113,-0.5837,0.8041,-0.1149,0.5833,0.8063,-0.3741,-0.4583,0.8074,-0.1977,-0.5559,0.8082,-0.4639,-0.3628,0.8092,-0.5074,-0.2963,0.8093,-0.4168,-0.414,0.8104,0.5858,0.0097,0.8105,0.1457,-0.5673,0.8105,-0.4759,-0.3415,0.8112,-0.3731,-0.4503,0.8115,0.1171,-0.5725,0.8118,-0.5671,-0.1391,0.8123,0.3156,0.4904,0.8133,-0.4642,-0.3507,0.8142,0.1164,0.5688,0.8143,0.5646,0.135,0.8145,0.0723,-0.5756,0.8146,-0.4074,-0.4128,0.8164,-0.4574,-0.3527,0.8172,-0.4068,-0.4083,0.8181,0.556,0.1466,0.8188,-0.0299,-0.5732,0.8193,-0.2982,-0.4898,0.8197,0.0405,-0.5713,0.8198,-0.0618,-0.5693,0.8202,-0.5298,-0.216,0.8211,0.5702,-0.0258,0.8212,0.0778,-0.5653,0.8221,-0.2115,-0.5286,0.8223,0.3265,-0.4661,0.8234,-0.3229,-0.4667,0.8235,-0.0413,-0.5658,0.8235,0.399,-0.4032,0.8242,0.5379,0.1769,0.8257,-0.475,-0.3044,0.8261,-0.4649,-0.3184,0.8266,0.1857,-0.5313,0.8267,-0.4651,-0.3166,0.8274,-0.0198,-0.5612,0.8278,-0.4712,-0.3046,0.828,-0.4748,-0.2982,0.8282,-0.3207,-0.4597,0.8295,0.5496,0.0991,0.8301,-0.4744,-0.2932,0.8303,-0.3887,-0.3995,0.8303,-0.5573,0.0017,0.8306,-0.4457,-0.3338,0.8311,-0.4699,-0.2976,0.8313,-0.4733,-0.2915,0.8321,0.2365,-0.5017,0.8332,-0.4883,0.2594,0.8333,-0.3506,-0.4275,0.8338,-0.5513,-0.0281,0.8348,-0.2889,-0.4686,0.835,-0.5129,-0.1994,0.8367,-0.472,0.2776,0.8378,-0.5459,0.0094,0.8382,0.3117,-0.4476,0.839,-0.1289,-0.5287,0.8399,-0.1757,-0.5136,0.8412,-0.5079,-0.1858,0.8415,0.4874,-0.233,0.8443,0.43,-0.3197,0.8449,-0.4237,-0.3266,0.8472,0.4689,-0.2497,0.8473,-0.4225,-0.3218,0.8477,-0.015,-0.5303,0.8487,0.0726,-0.5239,0.8489,-0.5219,0.084,0.8491,-0.2151,-0.4824,0.8515,-0.516,-0.0935,0.8516,0.5149,0.0986,0.8521,-0.5144,-0.0964,0.8521,0.0732,-0.5182,0.8535,0.4718,-0.2214,0.8536,0.4548,-0.254,0.8546,0.4964,-0.1526,0.855,0.1008,-0.5088,0.8567,-0.4904,-0.16,0.8567,-0.4405,0.2682,0.8569,-0.4498,0.252,0.8572,-0.2289,-0.4614,0.8574,0.2023,0.4731,0.8579,0.4262,0.2871,0.8582,0.5045,0.0948,0.8582,-0.2814,-0.4294,0.8585,0.505,0.0893,0.8588,-0.2299,-0.4578,0.8593,-0.3014,-0.4132,0.8602,-0.5048,-0.0727,0.8604,0.1663,0.4817,0.861,0.0908,0.5004,0.861,0.5018,0.0823,0.8614,-0.4161,0.2914,0.8619,0.4847,0.1487,0.8621,-0.0685,-0.5021,0.8625,-0.3493,-0.3661,0.8626,0.22,0.4556,0.8631,-0.4917,-0.1149,0.8633,0.4991,0.075,0.8634,0.077,-0.4986,0.8638,-0.2193,0.4536,0.864,-0.3949,-0.3124,0.8656,0.3182,0.3866,0.8658,-0.3764,-0.3298,0.8658,0.492,0.091,0.8666,-0.1268,-0.4826,0.8667,-0.4172,-0.2734,0.8675,-0.3666,0.3361,0.8676,0.1104,-0.4849,0.8698,-0.1743,-0.4616,0.8702,-0.3148,-0.379,0.8706,-0.3768,-0.3164,0.8711,0.3525,-0.3419,0.8712,0.4866,0.0655,0.8716,-0.4668,-0.1497,0.8719,0.3678,0.3233,0.8729,-0.2083,-0.4412,0.8736,-0.1423,-0.4653,0.8754,-0.1327,-0.4649,0.8759,0.4504,0.1731,0.8764,0.3325,-0.3484,0.8768,0.4008,-0.2656,0.8772,-0.0277,-0.4794,0.8778,0.0489,-0.4765,0.878,0.2008,0.4344,0.8784,0.4009,0.2602,0.8786,0.4741,-0.0581,0.8789,0.2573,-0.4016,0.8796,-0.4684,0.0833,0.8797,-0.146,0.4525,0.8804,-0.1101,-0.4612,0.8811,-0.1014,-0.462,0.8816,0.3939,0.26,0.8818,-0.0448,0.4695,0.882,-0.1427,-0.4492,0.8821,-0.471,0.0103,0.884,-0.3654,-0.2915,0.8845,0.3855,0.2629,0.8859,-0.1167,-0.449,0.8862,-0.2234,-0.4059,0.8864,-0.0939,-0.4534,0.8885,-0.2283,-0.3981,0.8894,0.3749,0.2615,0.8906,-0.3403,-0.3016,0.891,0.3729,0.2589,0.8933,-0.0938,-0.4395,0.8939,-0.335,-0.2979,0.894,-0.2189,-0.391,0.894,-0.1357,-0.427,0.8942,0.4075,0.1854,0.8946,0.4359,-0.0983,0.895,-0.4336,-0.1046,0.8952,0.221,-0.3869,0.8965,0.0621,-0.4387,0.8968,-0.3101,-0.3156,0.8968,-0.237,-0.3735,0.8968,-0.3096,-0.316,0.8973,0.025,-0.4406,0.8981,0.2553,0.3581,0.8981,-0.0468,0.4372,0.8989,-0.3059,-0.3138,0.8998,0.3646,-0.2398,0.8999,-0.3103,-0.3066,0.9,0.3858,0.2029,0.9005,0.1693,-0.4006,0.9007,-0.3968,-0.1772,0.9008,0.3916,0.1879,0.9012,0.432,-0.0354,0.9012,-0.3584,-0.2436,0.9013,0.3921,0.1841,0.903,-0.2898,-0.3172,0.9033,-0.3349,-0.268,0.9037,-0.3062,-0.2994,0.9044,-0.3456,0.2502,0.9044,-0.1682,0.392,0.9052,0.3036,0.2975,0.9057,0.154,-0.395,0.9057,0.0902,-0.4142,0.9067,0.3235,-0.2706,0.9072,-0.2897,-0.3051,0.9076,-0.3192,-0.2727,0.9078,0.4153,0.0589,0.9107,-0.2452,0.3325,0.9108,-0.3854,0.1481,0.9114,-0.3185,-0.2605,0.9132,-0.1139,-0.3913,0.9135,-0.3978,0.0851,0.9137,-0.1342,0.3837,0.914,0.389,-0.115,0.9144,0.2528,-0.316,0.915,0.047,-0.4007,0.9155,-0.079,-0.3946,0.9163,0.3874,-0.1013,0.9167,0.2679,0.2965,0.9174,-0.2775,-0.2852,0.9175,0.3933,0.0593,0.9179,-0.0113,0.3967,0.9182,0.3901,0.0687,0.9187,0.3868,0.0797,0.9196,-0.2839,-0.2714,0.9197,0.3476,0.1824,0.9202,0.3824,0.0836,0.9205,-0.1911,-0.3409,0.922,0.0223,-0.3865,0.9228,0.1123,0.3686,0.9233,0.2689,-0.2742,0.9233,0.3734,-0.0896,0.9237,-0.3748,0.0796,0.9243,-0.2719,-0.2677,0.9257,0.1473,0.3484,0.926,-0.375,0.0437,0.9262,-0.1929,-0.3239,0.9267,-0.236,0.2925,0.9267,0.3565,-0.1189,0.9271,-0.1659,-0.3362,0.9273,-0.2415,-0.286,0.9274,0.2729,-0.2558,0.9279,0.1504,-0.3413,0.928,0.2428,-0.2827,0.9283,-0.1114,-0.3547,0.93,-0.1595,-0.3311,0.9315,0.272,0.2416,0.9319,0.3612,-0.033,0.9338,-0.1198,-0.3371,0.934,-0.1191,-0.3367,0.935,-0.3049,0.1812,0.9357,-0.3023,-0.1819,0.9381,0.1873,-0.2915,0.9382,0.3443,-0.0366,0.9391,0.1642,0.3018,0.9394,0.0083,-0.3428,0.94,-0.023,-0.3405,0.9405,0.2077,0.269,0.9407,-0.0385,0.3371,0.9407,-0.2647,0.2123,0.9439,0.2097,0.2551,0.9442,0.2853,0.1647,0.9445,0.0947,-0.3146,0.9445,0.3064,-0.1182,0.945,0.0899,-0.3144,0.9455,0.3082,0.1051,0.9461,-0.1163,-0.3022,0.9473,-0.268,-0.1753,0.9498,-0.1988,-0.2416,0.9501,0.1829,-0.2525,0.9524,0.2997,0.0558,0.9534,0.2781,0.1168,0.954,0.0259,-0.2987,0.9543,-0.245,-0.1713,0.9546,-0.292,0.0584,0.955,-0.0164,-0.2961,0.9564,-0.0007,0.292,0.9565,-0.0844,-0.2794,0.9568,0.2652,-0.1195,0.9575,-0.131,-0.2568,0.9581,0.2148,-0.1896,0.9582,0.0917,-0.271,0.959,0.2044,0.1964,0.9592,-0.0244,-0.2818,0.96,0.1615,0.2289,0.9601,-0.0079,0.2794,0.961,-0.2125,-0.1772,0.9613,0.1659,0.22,0.9614,-0.1972,-0.1921,0.9614,0.1233,-0.246,0.9619,0.0809,-0.2611,0.962,0.272,0.0231,0.9624,0.1955,-0.1887,0.9654,0.1089,-0.2369,0.9657,-0.2579,0.0296,0.9661,0.0099,0.258,0.9663,0.0089,-0.2571,0.9666,-0.1323,-0.2195,0.9668,-0.1256,-0.2226,0.9669,0.0536,0.2494,0.9674,-0.1444,0.2079,0.9677,0.0874,0.2365,0.9681,0.0853,0.2355,0.9688,-0.1456,-0.2007,0.969,0.0852,0.2317,0.9691,-0.2376,0.0668,0.9692,0.1881,-0.1589,0.9693,0.1032,0.2234,0.9695,0.0421,0.2415,0.9696,-0.2406,0.0449,0.9696,0.2044,-0.1347,0.9696,-0.2405,0.0449,0.97,-0.0751,-0.2311,0.9701,0.0933,-0.2242,0.9706,0.021,-0.2397,0.9709,0.0932,0.2204,0.971,0.2375,0.0277,0.9711,0.0888,0.2214,0.9713,0.2068,-0.1175,0.9713,-0.0366,-0.2349,0.9717,-0.0711,0.2254,0.9718,-0.129,0.1974,0.9719,0.1245,0.1999,0.9719,0.0828,0.2202,0.9733,-0.1357,-0.1852,0.9737,-0.1969,0.1149,0.9746,-0.0805,0.2088,0.975,0.1399,0.1724,0.9752,-0.0362,-0.2184,0.9753,-0.1709,-0.1402,0.9761,0.0439,0.2129,0.9763,-0.1941,-0.0958,0.9768,-0.01,0.2137,0.977,-0.0542,-0.2063,0.9771,0.0881,0.1936,0.9772,-0.1501,-0.1501,0.9779,-0.1509,0.1447,0.9788,-0.018,-0.2039,0.9795,0.0814,-0.1842,0.981,-0.0287,-0.192,0.9811,-0.0409,-0.1891,0.9811,0.0747,0.1784,0.9811,0.0751,0.1782,0.9812,-0.1465,-0.1256,0.9814,-0.1592,-0.1074,0.9829,-0.1839,-0.012,0.9837,0.0227,-0.1782,0.9839,-0.1666,-0.0641,0.9848,-0.1503,-0.0874,0.9864,-0.1102,0.1221,0.9864,-0.1063,0.1253,0.9868,-0.0979,0.1289,0.9874,-0.1169,0.1066,0.9875,0.1574,-0.0017,0.988,-0.0614,0.1414,0.9881,-0.1421,0.0587,0.9883,0.0646,0.138,0.99,0.1109,-0.0875,0.99,-0.1393,0.0203,0.9903,0.0854,0.1101,0.9904,-0.1111,-0.0823,0.9913,0.0643,0.1146,0.9915,-0.1084,-0.0714,0.9915,-0.1129,0.0639,0.9917,-0.099,0.0821,0.9936,0.0693,0.0894,0.9939,0.1094,-0.0138,0.9946,0.0602,0.0848,0.9954,0.067,-0.0687,0.997,0.0198,-0.0754,0.9971,0.0468,0.0598,0.9973,-0.0303,0.0668,0.9984,0.0452,0.0331,0.9998,0.0184,0.0117};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getinconl_Geo_5_127_coordIndex_2()
		{
			int[] value = {84,131,117,-1,84,17,131,-1,76,64,28,-1,64,76,95,-1,145,143,82,-1,145,42,143,-1,80,115,152,-1,80,54,115,-1,142,77,129,-1,142,58,77,-1,129,76,69,-1,77,76,129,-1,140,61,138,-1,61,140,107,-1,130,82,143,-1,55,82,130,-1,86,134,103,-1,86,85,134,-1,150,49,120,-1,114,49,150,-1,147,25,149,-1,146,25,147,-1,157,144,155,-1,157,21,144,-1,156,21,157,-1,21,156,22,-1,140,91,136,-1,140,139,91,-1,150,112,114,-1,150,24,112,-1,141,149,121,-1,149,141,147,-1,70,89,103,-1,70,53,89,-1,93,132,99,-1,93,50,132,-1,39,73,40,-1,39,78,73,-1,110,128,126,-1,110,127,128,-1,135,102,101,-1,102,135,99,-1,36,106,118,-1,36,72,106,-1,137,103,89,-1,86,103,137,-1,85,117,154,-1,117,85,84,-1,118,9,8,-1,9,118,153,-1,57,73,58,-1,65,73,57,-1,100,148,68,-1,100,135,148,-1,35,67,4,-1,35,125,67,-1,151,110,124,-1,127,110,151,-1,139,155,91,-1,139,157,155,-1,126,108,0,-1,108,126,128,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getinconl_Geo_5_127_normalIndex_2()
		{
			int[] value = {85,59,89,-1,85,43,59,-1,132,91,121,-1,91,132,134,-1,47,55,58,-1,47,42,55,-1,79,113,109,-1,79,83,113,-1,136,140,144,-1,136,130,140,-1,144,132,148,-1,140,132,144,-1,66,99,70,-1,99,66,95,-1,52,58,55,-1,67,58,52,-1,96,142,93,-1,96,138,142,-1,2,0,1,-1,16,0,2,-1,31,12,9,-1,33,12,31,-1,35,24,34,-1,35,23,24,-1,37,23,35,-1,23,37,27,-1,66,39,53,-1,66,38,39,-1,2,22,16,-1,2,6,22,-1,28,9,10,-1,9,28,31,-1,88,40,93,-1,88,36,40,-1,94,56,105,-1,94,49,56,-1,137,127,116,-1,137,135,127,-1,117,125,123,-1,117,124,125,-1,157,107,156,-1,107,157,105,-1,114,108,143,-1,114,131,108,-1,32,93,40,-1,96,93,32,-1,138,89,120,-1,89,138,85,-1,143,155,149,-1,155,143,146,-1,98,127,130,-1,90,127,98,-1,154,151,152,-1,154,157,151,-1,62,21,71,-1,62,5,21,-1,129,117,126,-1,124,117,129,-1,38,34,39,-1,38,35,34,-1,123,153,118,-1,153,123,125,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getinconr_Geo_5_133_coordIndex_2()
		{
			int[] value = {51,145,140,-1,51,50,145,-1,55,102,101,-1,151,102,55,-1,157,73,72,-1,157,150,73,-1,65,15,14,-1,15,65,68,-1,18,121,123,-1,18,17,121,-1,134,90,89,-1,90,134,86,-1,133,118,151,-1,107,118,133,-1,93,95,91,-1,93,120,95,-1,26,146,156,-1,146,26,144,-1,25,155,152,-1,25,22,155,-1,22,153,155,-1,142,153,22,-1,99,87,134,-1,99,135,87,-1,117,100,102,-1,117,141,100,-1,156,95,120,-1,146,95,156,-1,118,77,59,-1,77,118,107,-1,70,51,71,-1,70,49,51,-1,80,46,76,-1,80,84,46,-1,103,115,126,-1,103,125,115,-1,107,106,36,-1,133,106,107,-1,41,150,157,-1,114,150,41,-1,112,37,28,-1,112,38,37,-1,102,118,117,-1,118,102,151,-1,46,81,47,-1,46,83,81,-1,21,137,139,-1,137,21,97,-1,9,72,10,-1,157,72,9,-1,80,65,64,-1,65,80,75,-1,154,105,129,-1,154,106,105,-1,156,96,100,-1,156,120,96,-1,154,130,63,-1,154,129,130,-1,152,135,99,-1,152,155,135,-1,67,126,2,-1,103,126,67,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getinconr_Geo_5_133_normalIndex_2()
		{
			int[] value = {102,110,101,-1,102,115,110,-1,108,143,156,-1,100,143,108,-1,11,48,15,-1,11,49,48,-1,59,57,38,-1,57,59,80,-1,47,84,87,-1,47,53,84,-1,103,78,99,-1,78,103,76,-1,51,95,100,-1,52,95,51,-1,142,130,139,-1,142,147,130,-1,146,126,148,-1,126,146,125,-1,133,123,124,-1,133,134,123,-1,134,122,123,-1,129,122,134,-1,118,91,103,-1,118,119,91,-1,135,155,143,-1,135,151,155,-1,148,130,147,-1,126,130,148,-1,95,56,96,-1,56,95,52,-1,81,102,105,-1,81,116,102,-1,29,20,41,-1,29,23,20,-1,33,40,35,-1,33,32,40,-1,52,0,1,-1,51,0,52,-1,34,49,11,-1,45,49,34,-1,106,109,136,-1,106,86,109,-1,143,95,135,-1,95,143,100,-1,20,64,54,-1,20,21,64,-1,114,62,72,-1,62,114,121,-1,2,15,8,-1,11,15,2,-1,29,59,26,-1,59,29,67,-1,6,3,5,-1,6,0,3,-1,148,157,155,-1,148,147,157,-1,6,13,22,-1,6,5,13,-1,124,119,118,-1,124,123,119,-1,4,35,39,-1,33,35,4,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl1disk_Geo_5_139_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,3,13,-1,14,15,16,-1,17,18,9,-1,4,19,20,-1,12,21,22,-1,23,9,24,-1,25,26,27,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,37,38,39,-1,40,41,42,-1,43,44,45,-1,43,46,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,58,52,60,-1,61,62,63,-1,64,65,66,-1,58,67,68,-1,69,70,71,-1,72,73,70,-1,45,74,43,-1,75,76,77,-1,39,78,79,-1,28,80,81,-1,82,83,84,-1,29,25,27,-1,85,86,87,-1,88,89,90,-1,10,9,18,-1,91,92,93,-1,94,95,14,-1,96,5,97,-1,98,99,100,-1,18,101,10,-1,90,13,88,-1,86,102,87,-1,29,103,25,-1,82,33,83,-1,79,37,39,-1,76,104,105,-1,75,106,76,-1,71,107,69,-1,68,53,58,-1,64,108,65,-1,65,109,66,-1,61,110,62,-1,60,59,58,-1,57,67,58,-1,54,56,111,-1,111,112,113,-1,66,114,64,-1,52,58,53,-1,48,115,49,-1,43,47,44,-1,40,42,116,-1,37,117,38,-1,36,118,34,-1,28,30,80,-1,25,119,26,-1,23,120,9,-1,22,0,12,-1,20,5,4,-1,120,17,9,-1,15,121,16,-1,12,122,3,-1,11,24,9,-1,8,98,6,-1,5,96,3,-1,123,124,83,-1,125,126,127,-1,23,128,120,-1,86,128,23,-1,129,128,86,-1,52,130,60,-1,52,131,130,-1,120,132,17,-1,128,132,120,-1,133,134,135,-1,133,136,134,-1,137,138,139,-1,137,140,138,-1,141,142,143,-1,142,141,144,-1,145,146,147,-1,148,146,145,-1,149,150,151,-1,152,150,149,-1,123,153,154,-1,83,153,123,-1,155,126,156,-1,126,155,127,-1,157,36,158,-1,36,157,159,-1,2,160,8,-1,1,160,2,-1,161,162,163,-1,161,164,162,-1,165,84,166,-1,167,84,165,-1,168,169,170,-1,168,171,169,-1,172,100,173,-1,100,172,174,-1,7,19,4,-1,7,6,19,-1,175,176,177,-1,176,175,178,-1,179,180,91,-1,180,179,181,-1,182,183,184,-1,169,183,182,-1,185,186,187,-1,186,185,188,-1,189,190,191,-1,190,189,192,-1,193,194,195,-1,193,196,194,-1,197,123,195,-1,124,123,197,-1,125,198,199,-1,125,200,198,-1,13,21,12,-1,21,13,90,-1,121,102,16,-1,121,87,102,-1,201,90,202,-1,201,21,90,-1,11,155,94,-1,155,11,10,-1,203,204,185,-1,151,204,203,-1,85,205,206,-1,85,87,205,-1,147,175,207,-1,147,208,175,-1,209,210,157,-1,209,201,210,-1,196,211,194,-1,134,211,196,-1,138,192,189,-1,138,212,192,-1,119,118,95,-1,34,118,119,-1,213,156,126,-1,26,156,213,-1,83,32,153,-1,33,32,83,-1,214,215,82,-1,215,214,216,-1,28,217,218,-1,28,216,217,-1,219,220,35,-1,219,221,220,-1,222,217,223,-1,222,224,217,-1,41,38,1,-1,38,41,40,-1,160,225,99,-1,225,160,117,-1,104,79,105,-1,104,226,79,-1,106,104,76,-1,106,227,104,-1,106,228,227,-1,77,229,75,-1,230,229,77,-1,231,105,232,-1,231,230,105,-1,220,233,116,-1,220,221,233,-1,231,222,234,-1,231,224,222,-1,235,236,237,-1,235,238,236,-1,239,49,115,-1,140,49,239,-1,44,240,45,-1,44,241,240,-1,242,240,243,-1,242,244,240,-1,245,246,242,-1,245,247,246,-1,128,248,132,-1,128,249,248,-1,250,132,248,-1,250,251,132,-1,69,72,70,-1,252,72,69,-1,68,107,53,-1,68,69,107,-1,253,254,48,-1,253,255,254,-1,68,238,235,-1,68,67,238,-1,256,257,258,-1,259,257,256,-1,260,63,261,-1,61,63,260,-1,148,108,146,-1,148,65,108,-1,262,260,261,-1,262,263,260,-1,146,264,265,-1,108,264,146,-1,266,267,268,-1,266,263,267,-1,268,269,270,-1,269,268,271,-1,97,56,272,-1,97,273,56,-1,269,274,275,-1,274,269,112,-1,59,276,55,-1,60,276,59,-1,62,254,63,-1,62,277,254,-1,236,278,279,-1,278,236,257,-1,262,279,278,-1,262,280,279,-1,152,62,150,-1,152,277,62,-1,55,272,56,-1,272,55,276,-1,112,281,274,-1,281,112,111,-1,111,273,281,-1,56,273,111,-1,275,270,269,-1,275,282,270,-1,262,267,263,-1,267,262,278,-1,282,265,264,-1,283,265,282,-1,263,114,260,-1,263,266,114,-1,284,65,148,-1,284,109,65,-1,260,66,61,-1,66,260,114,-1,113,259,256,-1,271,259,113,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl1disk_Geo_5_139_coordIndex_2()
		{
			int[] value = {280,253,285,-1,280,255,253,-1,235,69,68,-1,235,252,69,-1,286,251,250,-1,286,287,251,-1,288,287,286,-1,288,133,287,-1,289,247,237,-1,246,247,289,-1,243,241,288,-1,243,240,241,-1,244,45,240,-1,244,74,45,-1,43,49,46,-1,50,49,43,-1,137,49,140,-1,137,46,49,-1,73,245,290,-1,73,72,245,-1,232,224,231,-1,232,291,224,-1,158,116,42,-1,116,158,220,-1,105,292,232,-1,105,79,292,-1,75,168,92,-1,229,168,75,-1,106,92,293,-1,92,106,75,-1,226,227,294,-1,227,226,104,-1,117,295,225,-1,295,117,37,-1,1,117,160,-1,117,1,38,-1,224,218,217,-1,224,291,218,-1,35,158,36,-1,220,158,35,-1,296,28,218,-1,296,29,28,-1,167,82,84,-1,82,167,214,-1,31,30,297,-1,80,30,31,-1,298,26,213,-1,27,26,298,-1,26,95,156,-1,119,95,26,-1,139,189,299,-1,139,138,189,-1,300,134,196,-1,135,134,300,-1,23,102,86,-1,23,24,102,-1,4,122,7,-1,3,122,4,-1,208,178,175,-1,208,301,178,-1,131,205,302,-1,131,206,205,-1,185,303,188,-1,204,303,185,-1,121,159,304,-1,15,159,121,-1,202,131,302,-1,130,131,202,-1,201,302,210,-1,201,202,302,-1,11,102,24,-1,11,16,102,-1,210,159,157,-1,159,210,304,-1,199,305,306,-1,199,198,305,-1,124,307,166,-1,124,197,307,-1,308,195,194,-1,197,195,308,-1,192,184,190,-1,184,192,309,-1,166,191,165,-1,166,307,191,-1,182,170,169,-1,170,182,187,-1,179,188,310,-1,179,186,188,-1,172,178,311,-1,172,176,178,-1,181,162,180,-1,162,181,177,-1,98,174,6,-1,98,100,174,-1,171,183,169,-1,171,312,183,-1,83,166,84,-1,83,124,166,-1,313,163,173,-1,313,161,163,-1,22,1,0,-1,41,1,22,-1,15,36,159,-1,118,36,15,-1,314,125,199,-1,314,126,125,-1,151,315,204,-1,150,315,151,-1,147,265,208,-1,146,265,147,-1,143,20,141,-1,143,316,20,-1,317,139,318,-1,317,137,139,-1,319,133,135,-1,287,133,319,-1,97,88,96,-1,97,272,88,-1,206,52,51,-1,52,206,131,-1,320,86,85,-1,320,129,86,-1,60,89,276,-1,60,130,89,-1,17,251,321,-1,132,251,17,-1,136,211,134,-1,136,322,211,-1,140,212,138,-1,140,239,212,-1,283,144,301,-1,283,142,144,-1,303,148,145,-1,284,148,303,-1,239,149,212,-1,239,152,149,-1,154,323,306,-1,153,323,154,-1,156,94,155,-1,156,95,94,-1,42,157,158,-1,42,209,157,-1,99,8,160,-1,99,98,8,-1,164,180,162,-1,164,293,180,-1,324,167,165,-1,325,167,324,-1,92,170,93,-1,92,168,170,-1,8,122,2,-1,8,7,122,-1,176,173,163,-1,173,176,172,-1,6,326,19,-1,6,174,326,-1,207,177,181,-1,177,207,175,-1,91,186,179,-1,91,93,186,-1,183,190,184,-1,183,324,190,-1,182,185,187,-1,182,203,185,-1,307,189,191,-1,307,299,189,-1,305,196,193,-1,305,300,196,-1,154,195,123,-1,154,193,195,-1,200,127,101,-1,125,127,200,-1,200,327,198,-1,200,328,327,-1,87,304,205,-1,121,304,87,-1,13,96,88,-1,96,13,3,-1,94,16,11,-1,94,14,16,-1,321,18,17,-1,321,328,18,-1,309,151,203,-1,149,151,309,-1,145,207,310,-1,145,147,207,-1,144,326,311,-1,144,141,326,-1,209,21,201,-1,209,22,21,-1,328,319,327,-1,321,319,328,-1,308,211,318,-1,211,308,194,-1,212,309,192,-1,212,149,309,-1,25,34,119,-1,25,103,34,-1,297,126,314,-1,126,297,213,-1,153,31,323,-1,153,32,31,-1,82,81,33,-1,215,81,82,-1,216,223,217,-1,216,214,223,-1,35,103,219,-1,35,34,103,-1,329,219,296,-1,219,329,221,-1,312,223,325,-1,222,223,312,-1,40,39,38,-1,40,78,39,-1,99,294,313,-1,225,294,99,-1,227,164,161,-1,227,228,164,-1,234,230,231,-1,234,229,230,-1,78,116,233,-1,78,40,116,-1,233,329,292,-1,221,329,233,-1,234,312,171,-1,312,234,222,-1,237,252,235,-1,252,237,247,-1,48,330,253,-1,330,48,50,-1,44,317,322,-1,44,47,317,-1,330,285,253,-1,330,331,285,-1,241,322,136,-1,322,241,44,-1,246,244,242,-1,246,331,244,-1,290,242,243,-1,245,242,290,-1,71,128,129,-1,71,249,128,-1,250,290,286,-1,73,290,250,-1,320,53,107,-1,53,320,51,-1,254,115,48,-1,254,277,115,-1,289,236,279,-1,237,236,289,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl1disk_Geo_5_139_coordIndex_3()
		{
			int[] value = {236,258,257,-1,236,238,258,-1,110,150,62,-1,150,110,315,-1,332,108,64,-1,332,264,108,-1,332,268,270,-1,332,266,268,-1,267,271,268,-1,267,259,271,-1,281,97,316,-1,281,273,97,-1,316,274,281,-1,316,143,274,-1,113,54,111,-1,54,113,256,-1,55,57,59,-1,55,54,57,-1,254,261,63,-1,254,255,261,-1,238,57,258,-1,238,67,57,-1,261,280,262,-1,261,255,280,-1,54,258,57,-1,54,256,258,-1,143,275,274,-1,143,142,275,-1,142,282,275,-1,142,283,282,-1,259,278,257,-1,278,259,267,-1,264,270,282,-1,264,332,270,-1,64,266,332,-1,64,114,266,-1,110,66,109,-1,66,110,61,-1,110,284,315,-1,110,109,284,-1,271,112,269,-1,271,113,112,-1,279,285,289,-1,279,280,285,-1,115,152,239,-1,115,277,152,-1,129,107,71,-1,320,107,129,-1,248,73,250,-1,70,73,248,-1,249,70,248,-1,70,249,71,-1,243,286,290,-1,243,288,286,-1,246,285,331,-1,289,285,246,-1,136,288,241,-1,288,136,133,-1,74,331,330,-1,74,244,331,-1,47,137,317,-1,47,46,137,-1,43,330,50,-1,74,330,43,-1,247,72,252,-1,72,247,245,-1,329,232,292,-1,232,329,291,-1,233,79,78,-1,292,79,233,-1,229,171,168,-1,171,229,234,-1,105,77,76,-1,77,105,230,-1,228,293,164,-1,293,228,106,-1,294,161,313,-1,161,294,227,-1,226,37,79,-1,226,295,37,-1,226,225,295,-1,226,294,225,-1,218,329,296,-1,291,329,218,-1,29,219,103,-1,219,29,296,-1,325,214,167,-1,223,214,325,-1,215,28,81,-1,216,28,215,-1,33,80,31,-1,33,81,80,-1,323,297,314,-1,31,297,323,-1,27,30,29,-1,27,298,30,-1,213,30,298,-1,213,297,30,-1,318,299,308,-1,318,139,299,-1,135,327,319,-1,135,300,327,-1,311,301,144,-1,301,311,178,-1,145,188,303,-1,145,310,188,-1,12,2,122,-1,0,2,12,-1,19,141,20,-1,141,19,326,-1,202,89,130,-1,89,202,90,-1,302,304,210,-1,304,302,205,-1,328,101,18,-1,200,101,328,-1,101,155,10,-1,127,155,101,-1,306,193,154,-1,306,305,193,-1,300,198,327,-1,305,198,300,-1,308,307,197,-1,307,308,299,-1,184,203,182,-1,184,309,203,-1,165,190,324,-1,165,191,190,-1,187,93,170,-1,93,187,186,-1,310,181,179,-1,181,310,207,-1,311,174,172,-1,174,311,326,-1,177,163,162,-1,163,177,176,-1,183,325,324,-1,312,325,183,-1,91,293,92,-1,293,91,180,-1,100,313,173,-1,99,313,100,-1,42,22,209,-1,42,41,22,-1,95,15,14,-1,95,118,15,-1,306,314,199,-1,323,314,306,-1,204,284,303,-1,315,284,204,-1,208,283,301,-1,265,283,208,-1,316,5,20,-1,316,97,5,-1,322,318,211,-1,322,317,318,-1,287,321,251,-1,287,319,321,-1,88,276,89,-1,272,276,88,-1,85,51,320,-1,51,85,206,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl1disk_Geo_5_139_normalIndex_1()
		{
			int[] value = {269,261,297,-1,295,305,300,-1,320,307,304,-1,28,24,34,-1,270,295,259,-1,62,247,67,-1,23,13,28,-1,305,319,309,-1,270,78,86,-1,41,28,39,-1,71,82,61,-1,90,95,66,-1,79,113,121,-1,111,135,240,-1,271,233,265,-1,221,124,91,-1,117,112,104,-1,117,118,100,-1,187,119,115,-1,201,136,127,-1,200,146,147,-1,152,149,215,-1,149,136,137,-1,213,141,183,-1,220,234,209,-1,149,166,180,-1,132,94,185,-1,123,89,94,-1,104,125,117,-1,195,264,268,-1,265,224,242,-1,90,68,69,-1,122,51,65,-1,95,71,61,-1,251,109,255,-1,223,81,77,-1,24,28,13,-1,296,266,293,-1,37,70,62,-1,292,300,257,-1,312,283,317,-1,13,12,24,-1,77,259,223,-1,109,73,255,-1,95,108,71,-1,122,121,51,-1,242,271,265,-1,264,262,245,-1,195,212,264,-1,185,186,132,-1,180,127,149,-1,220,228,234,-1,234,216,209,-1,213,205,141,-1,137,215,149,-1,152,166,149,-1,200,147,237,-1,237,241,211,-1,209,208,220,-1,136,149,127,-1,187,196,119,-1,117,100,112,-1,221,91,197,-1,271,246,233,-1,240,210,111,-1,90,66,68,-1,71,98,82,-1,41,33,28,-1,86,269,270,-1,309,300,305,-1,33,23,28,-1,247,254,67,-1,270,301,295,-1,34,39,28,-1,304,312,320,-1,300,292,295,-1,20,30,51,-1,17,48,21,-1,41,75,33,-1,109,75,41,-1,188,75,109,-1,136,74,137,-1,136,175,74,-1,33,49,23,-1,75,49,33,-1,40,18,8,-1,40,46,18,-1,58,55,38,-1,58,72,55,-1,313,289,284,-1,289,313,322,-1,302,277,308,-1,281,277,302,-1,156,199,226,-1,159,199,156,-1,20,44,16,-1,51,44,20,-1,29,48,57,-1,48,29,21,-1,178,240,174,-1,240,178,272,-1,297,275,304,-1,261,275,297,-1,290,318,323,-1,290,288,318,-1,54,65,36,-1,80,65,54,-1,252,232,278,-1,252,202,232,-1,330,317,321,-1,317,330,328,-1,307,319,305,-1,307,320,319,-1,325,329,326,-1,329,325,331,-1,303,310,296,-1,310,303,315,-1,235,158,157,-1,232,158,235,-1,279,298,280,-1,298,279,299,-1,52,97,50,-1,97,52,103,-1,6,15,14,-1,6,7,15,-1,26,20,14,-1,30,20,26,-1,17,2,11,-1,17,4,2,-1,259,78,270,-1,78,259,77,-1,254,73,67,-1,254,255,73,-1,59,77,64,-1,59,78,77,-1,34,29,37,-1,29,34,24,-1,229,276,279,-1,226,276,229,-1,251,267,258,-1,251,255,267,-1,308,325,316,-1,308,314,325,-1,60,177,178,-1,60,59,177,-1,7,25,15,-1,18,25,7,-1,55,103,52,-1,55,106,103,-1,98,210,70,-1,111,210,98,-1,85,57,48,-1,82,57,85,-1,51,113,44,-1,121,113,51,-1,128,63,122,-1,63,128,84,-1,90,153,189,-1,90,84,153,-1,148,173,135,-1,148,172,173,-1,169,153,150,-1,169,168,153,-1,124,233,261,-1,233,124,221,-1,275,248,283,-1,248,275,246,-1,262,242,245,-1,262,263,242,-1,212,262,264,-1,212,253,262,-1,212,219,253,-1,268,206,195,-1,249,206,268,-1,179,245,144,-1,179,249,245,-1,173,184,197,-1,173,172,184,-1,179,169,182,-1,179,168,169,-1,194,164,193,-1,194,165,164,-1,133,119,196,-1,72,119,133,-1,112,96,104,-1,112,110,96,-1,87,96,83,-1,87,116,96,-1,107,120,87,-1,107,130,120,-1,75,114,49,-1,75,142,114,-1,101,49,114,-1,101,47,49,-1,132,123,94,-1,129,123,132,-1,180,186,127,-1,180,132,186,-1,192,160,187,-1,192,162,160,-1,180,165,194,-1,180,166,165,-1,204,139,138,-1,203,139,204,-1,227,183,140,-1,213,183,227,-1,281,228,277,-1,281,234,228,-1,143,227,140,-1,143,230,227,-1,277,222,286,-1,228,222,277,-1,217,214,244,-1,217,230,214,-1,244,243,250,-1,243,244,225,-1,257,147,145,-1,257,191,147,-1,243,231,238,-1,231,243,241,-1,215,126,146,-1,137,126,215,-1,141,160,183,-1,141,154,160,-1,164,134,163,-1,134,164,139,-1,143,163,134,-1,143,161,163,-1,159,141,199,-1,159,154,141,-1,146,145,147,-1,145,146,126,-1,241,218,231,-1,218,241,237,-1,237,191,218,-1,147,191,237,-1,238,250,243,-1,238,239,250,-1,143,214,230,-1,214,143,134,-1,239,286,222,-1,291,286,239,-1,230,208,227,-1,230,217,208,-1,274,234,281,-1,274,216,234,-1,227,209,213,-1,209,227,208,-1,211,203,204,-1,225,203,211,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl1disk_Geo_5_139_normalIndex_2()
		{
			int[] value = {161,192,190,-1,161,162,192,-1,194,132,180,-1,194,129,132,-1,93,47,101,-1,93,43,47,-1,92,43,93,-1,92,40,43,-1,198,130,193,-1,120,130,198,-1,83,110,92,-1,83,96,110,-1,116,104,96,-1,116,125,104,-1,117,119,118,-1,115,119,117,-1,58,119,72,-1,58,118,119,-1,89,107,88,-1,89,123,107,-1,144,168,179,-1,144,170,168,-1,174,197,91,-1,197,174,173,-1,245,181,144,-1,245,242,181,-1,195,252,266,-1,206,252,195,-1,212,266,285,-1,266,212,195,-1,263,253,256,-1,253,263,262,-1,246,22,248,-1,22,246,271,-1,261,246,275,-1,246,261,233,-1,168,189,153,-1,168,170,189,-1,135,174,240,-1,173,174,135,-1,151,90,189,-1,151,95,90,-1,80,122,65,-1,122,80,128,-1,79,66,76,-1,68,66,79,-1,311,82,85,-1,61,82,311,-1,82,70,57,-1,98,70,82,-1,38,52,35,-1,38,55,52,-1,1,18,7,-1,8,18,1,-1,41,73,109,-1,41,39,73,-1,305,301,307,-1,295,301,305,-1,314,331,325,-1,314,324,331,-1,175,267,176,-1,175,258,267,-1,279,294,299,-1,276,294,279,-1,254,272,273,-1,247,272,254,-1,64,175,176,-1,74,175,64,-1,59,176,177,-1,59,64,176,-1,34,73,39,-1,34,67,73,-1,177,272,178,-1,272,177,273,-1,11,3,9,-1,11,2,3,-1,30,32,36,-1,30,26,32,-1,27,14,15,-1,26,14,27,-1,103,157,97,-1,157,103,155,-1,36,50,54,-1,36,32,50,-1,235,278,232,-1,278,235,280,-1,303,299,306,-1,303,298,299,-1,330,331,332,-1,330,329,331,-1,315,318,310,-1,318,315,326,-1,312,328,320,-1,312,317,328,-1,202,158,232,-1,202,167,158,-1,51,36,65,-1,51,30,36,-1,287,323,321,-1,287,290,323,-1,86,261,269,-1,124,261,86,-1,247,240,272,-1,210,240,247,-1,45,17,11,-1,45,48,17,-1,226,260,276,-1,199,260,226,-1,308,286,314,-1,277,286,308,-1,284,309,313,-1,284,282,309,-1,53,38,31,-1,53,58,38,-1,10,40,8,-1,43,40,10,-1,257,223,292,-1,257,145,223,-1,258,136,201,-1,136,258,175,-1,207,109,251,-1,207,188,109,-1,137,81,126,-1,137,74,81,-1,23,47,19,-1,49,47,23,-1,46,25,18,-1,46,56,25,-1,72,106,55,-1,72,133,106,-1,291,322,324,-1,291,289,322,-1,294,281,302,-1,274,281,294,-1,133,156,106,-1,133,159,156,-1,16,42,9,-1,44,42,16,-1,57,37,29,-1,57,70,37,-1,91,178,174,-1,91,60,178,-1,283,304,275,-1,283,312,304,-1,288,310,318,-1,288,285,310,-1,99,80,54,-1,131,80,99,-1,266,278,293,-1,266,252,278,-1,304,301,297,-1,304,307,301,-1,329,321,323,-1,321,329,330,-1,320,327,319,-1,320,328,327,-1,316,326,315,-1,326,316,325,-1,296,298,303,-1,296,293,298,-1,158,97,157,-1,158,99,97,-1,235,279,280,-1,235,229,279,-1,32,52,50,-1,32,35,52,-1,3,7,6,-1,3,1,7,-1,16,14,20,-1,16,6,14,-1,4,21,12,-1,17,21,4,-1,4,0,2,-1,4,5,0,-1,255,273,267,-1,254,273,255,-1,259,292,223,-1,292,259,295,-1,37,67,34,-1,37,62,67,-1,19,13,23,-1,19,5,13,-1,155,226,229,-1,156,226,155,-1,302,316,306,-1,302,308,316,-1,322,327,332,-1,322,313,327,-1,60,78,59,-1,60,86,78,-1,5,10,0,-1,19,10,5,-1,27,25,31,-1,25,27,15,-1,106,155,103,-1,106,156,155,-1,71,111,98,-1,71,108,111,-1,76,48,45,-1,48,76,85,-1,44,79,42,-1,44,113,79,-1,122,69,121,-1,63,69,122,-1,84,150,153,-1,84,128,150,-1,135,108,148,-1,135,111,108,-1,171,148,151,-1,148,171,172,-1,167,150,131,-1,169,150,167,-1,221,265,233,-1,221,224,265,-1,283,256,287,-1,248,256,283,-1,253,288,290,-1,253,219,288,-1,182,249,179,-1,182,206,249,-1,224,197,184,-1,224,221,197,-1,184,171,181,-1,172,171,184,-1,182,167,202,-1,167,182,169,-1,193,129,194,-1,129,193,130,-1,187,105,192,-1,105,187,115,-1,112,53,56,-1,112,100,53,-1,105,190,192,-1,105,102,190,-1,110,56,46,-1,56,110,112,-1,120,116,87,-1,120,102,116,-1,88,87,83,-1,107,87,88,-1,185,75,188,-1,185,142,75,-1,101,88,93,-1,89,88,101,-1,207,127,186,-1,127,207,201,-1,160,196,187,-1,160,154,196,-1,198,164,163,-1,193,164,198,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl1disk_Geo_5_139_normalIndex_3()
		{
			int[] value = {164,138,139,-1,164,165,138,-1,205,199,141,-1,199,205,260,-1,236,228,220,-1,236,222,228,-1,236,244,250,-1,236,217,244,-1,214,225,244,-1,214,203,225,-1,218,257,282,-1,218,191,257,-1,282,231,218,-1,282,284,231,-1,211,200,237,-1,200,211,204,-1,146,152,215,-1,146,200,152,-1,160,140,183,-1,160,162,140,-1,165,152,138,-1,165,166,152,-1,140,161,143,-1,140,162,161,-1,200,138,152,-1,200,204,138,-1,284,238,231,-1,284,289,238,-1,289,239,238,-1,289,291,239,-1,203,134,139,-1,134,203,214,-1,222,250,239,-1,222,236,250,-1,220,217,236,-1,220,208,217,-1,205,209,216,-1,209,205,213,-1,205,274,260,-1,205,216,274,-1,225,241,243,-1,225,211,241,-1,163,190,198,-1,163,161,190,-1,196,159,133,-1,196,154,159,-1,188,186,185,-1,207,186,188,-1,114,89,101,-1,94,89,114,-1,142,94,114,-1,94,142,185,-1,83,93,88,-1,83,92,93,-1,120,190,102,-1,198,190,120,-1,46,92,110,-1,92,46,40,-1,125,102,105,-1,125,116,102,-1,100,58,53,-1,100,118,58,-1,117,105,115,-1,125,105,117,-1,130,123,129,-1,123,130,107,-1,171,144,181,-1,144,171,170,-1,184,242,224,-1,181,242,184,-1,206,202,252,-1,202,206,182,-1,245,268,264,-1,268,245,249,-1,219,285,288,-1,285,219,212,-1,256,290,287,-1,290,256,253,-1,263,271,242,-1,263,22,271,-1,263,248,22,-1,263,256,248,-1,189,171,151,-1,170,171,189,-1,95,148,108,-1,148,95,151,-1,131,128,80,-1,150,128,131,-1,63,90,69,-1,84,90,63,-1,121,68,79,-1,121,69,68,-1,42,76,45,-1,79,76,42,-1,61,66,95,-1,61,311,66,-1,85,66,311,-1,85,76,66,-1,31,35,27,-1,31,38,35,-1,8,0,10,-1,8,1,0,-1,332,324,322,-1,324,332,331,-1,302,299,294,-1,302,306,299,-1,270,297,301,-1,269,297,270,-1,319,313,309,-1,313,319,327,-1,64,81,74,-1,81,64,77,-1,176,273,177,-1,273,176,267,-1,5,12,13,-1,4,12,5,-1,12,29,24,-1,21,29,12,-1,9,6,16,-1,9,3,6,-1,1,2,0,-1,3,2,1,-1,27,32,26,-1,32,27,35,-1,157,229,235,-1,157,155,229,-1,54,97,99,-1,54,50,97,-1,280,293,278,-1,293,280,298,-1,306,315,303,-1,315,306,316,-1,332,328,330,-1,328,332,327,-1,326,323,318,-1,323,326,329,-1,158,131,99,-1,167,131,158,-1,296,285,266,-1,285,296,310,-1,317,287,321,-1,283,287,317,-1,91,86,60,-1,91,124,86,-1,70,247,62,-1,70,210,247,-1,9,45,11,-1,42,45,9,-1,276,274,294,-1,260,274,276,-1,314,291,324,-1,286,291,314,-1,282,300,309,-1,282,257,300,-1,56,31,25,-1,56,53,31,-1,43,19,47,-1,43,10,19,-1,223,126,81,-1,145,126,223,-1,251,201,207,-1,201,251,258,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl2_Geo_5_145_coordIndex_2()
		{
			int[] value = {586,587,588,-1,465,589,528,-1,438,442,590,-1,591,583,592,-1,593,477,594,-1,470,510,509,-1,595,596,597,-1,522,521,293,-1,598,599,600,-1,601,602,603,-1,601,604,602,-1,605,449,606,-1,607,452,582,-1,459,608,609,-1,364,610,49,-1,576,611,332,-1,581,612,613,-1,347,614,354,-1,615,616,617,-1,618,619,620,-1,621,622,623,-1,624,625,326,-1,626,393,627,-1,488,628,604,-1,629,601,608,-1,630,631,624,-1,623,622,632,-1,633,615,581,-1,612,354,614,-1,617,634,635,-1,611,636,637,-1,638,354,351,-1,498,639,353,-1,360,336,640,-1,453,452,609,-1,458,641,642,-1,451,450,607,-1,643,644,645,-1,646,606,647,-1,608,601,461,-1,648,600,296,-1,521,649,650,-1,514,483,462,-1,509,651,597,-1,652,653,654,-1,628,655,604,-1,594,656,511,-1,657,658,590,-1,582,592,583,-1,447,446,647,-1,441,659,590,-1,456,603,660,-1,602,473,472,-1,661,662,616,-1,343,575,663,-1,664,665,666,-1,667,575,574,-1,668,669,670,-1,637,636,349,-1,572,671,672,-1,570,569,408,-1,409,564,567,-1,589,465,464,-1,552,673,674,-1,675,676,677,-1,678,411,679,-1,680,681,682,-1,683,541,684,-1,671,571,682,-1,685,678,686,-1,678,687,676,-1,688,618,620,-1,689,690,223,-1,539,691,370,-1,692,370,693,-1,694,366,365,-1,218,534,215,-1,695,617,635,-1,696,697,566,-1,427,430,698,-1,426,699,698,-1,426,425,699,-1,700,701,702,-1,481,703,704,-1,705,706,707,-1,708,709,710,-1,711,712,710,-1,713,714,715,-1,516,517,716,-1,513,717,517,-1,718,719,720,-1,721,722,723,-1,721,724,725,-1,726,727,651,-1,728,729,730,-1,731,732,733,-1,570,597,596,-1,335,334,391,-1,734,735,736,-1,475,737,738,-1,491,739,489,-1,740,486,488,-1,484,486,740,-1,720,741,513,-1,706,715,707,-1,742,743,744,-1,745,746,747,-1,593,473,655,-1,456,660,457,-1,461,748,609,-1,588,749,750,-1,751,752,277,-1,461,603,456,-1,450,449,753,-1,437,439,754,-1,447,606,591,-1,443,755,431,-1,424,444,441,-1,438,756,757,-1,758,698,699,-1,416,415,759,-1,760,698,758,-1,542,696,422,-1,411,685,564,-1,408,679,410,-1,761,405,402,-1,762,763,764,-1,765,766,767,-1,399,396,768,-1,676,675,544,-1,553,560,769,-1,550,557,559,-1,770,645,605,-1,395,394,386,-1,500,771,499,-1,772,388,390,-1,773,774,662,-1,586,383,775,-1,278,776,382,-1,777,778,65,-1,693,779,375,-1,536,535,780,-1,781,618,688,-1,369,534,693,-1,368,691,782,-1,688,613,614,-1,783,372,784,-1,610,364,361,-1,356,785,352,-1,785,786,353,-1,346,345,781,-1,787,771,330,-1,782,788,789,-1,345,639,498,-1,790,635,634,-1,344,343,791,-1,792,793,794,-1,500,338,334,-1,335,795,796,-1,301,797,165,-1,136,798,297,-1,624,63,630,-1,323,322,799,-1,273,316,314,-1,42,271,800,-1,801,313,802,-1,0,21,28,-1,15,308,309,-1,640,17,359,-1,280,139,307,-1,132,276,803,-1,276,275,803,-1,302,801,804,-1,225,805,134,-1,301,806,297,-1,807,296,295,-1,293,650,808,-1,161,193,141,-1,185,146,809,-1,810,811,812,-1,813,814,155,-1,815,282,816,-1,285,817,274,-1,121,815,122,-1,818,144,298,-1,299,143,300,-1,817,819,274,-1,820,821,13,-1,30,822,11,-1,823,820,824,-1,23,235,234,-1,825,235,265,-1,151,262,261,-1,260,99,98,-1,226,826,827,-1,255,828,237,-1,829,830,831,-1,142,260,98,-1,832,243,245,-1,833,834,835,-1,836,100,239,-1,236,837,237,-1,263,838,825,-1,237,839,235,-1,229,228,840,-1,841,840,239,-1,232,842,843,-1,228,834,844,-1,284,225,115,-1,225,116,115,-1,320,319,845,-1,690,846,52,-1,222,220,51,-1,847,51,848,-1,849,850,851,-1,215,852,218,-1,318,317,853,-1,259,827,826,-1,854,855,856,-1,854,857,112,-1,857,113,112,-1,858,859,860,-1,861,196,862,-1,863,864,865,-1,866,867,868,-1,867,869,158,-1,159,870,871,-1,872,192,191,-1,873,874,875,-1,289,876,186,-1,877,878,879,-1,878,877,880,-1,881,882,883,-1,884,290,809,-1,81,6,885,-1,886,887,888,-1,889,154,153,-1,170,890,168,-1,891,165,167,-1,167,162,161,-1,158,892,159,-1,861,194,196,-1,865,864,893,-1,812,811,150,-1,894,818,895,-1,138,798,307,-1,896,164,897,-1,277,68,751,-1,895,298,138,-1,898,133,803,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl2_Geo_5_145_coordIndex_3()
		{
			int[] value = {899,118,120,-1,130,134,805,-1,900,111,125,-1,124,110,123,-1,901,902,119,-1,857,854,903,-1,904,104,905,-1,854,856,906,-1,106,907,224,-1,108,257,826,-1,97,96,100,-1,908,909,910,-1,911,912,913,-1,914,835,834,-1,250,249,241,-1,804,915,916,-1,71,69,68,-1,177,917,4,-1,918,919,803,-1,73,77,74,-1,68,72,71,-1,70,72,278,-1,778,66,65,-1,72,68,278,-1,59,60,847,-1,920,19,845,-1,847,852,217,-1,921,52,846,-1,19,800,845,-1,48,45,47,-1,7,6,17,-1,42,41,271,-1,309,38,40,-1,920,45,20,-1,29,270,822,-1,26,28,234,-1,2,917,328,-1,922,923,921,-1,924,45,920,-1,15,20,16,-1,37,270,925,-1,14,13,821,-1,926,266,927,-1,928,5,1,-1,82,8,4,-1,929,5,928,-1,0,2,930,-1,929,3,5,-1,82,885,8,-1,927,10,926,-1,821,272,14,-1,27,931,932,-1,15,18,20,-1,922,921,933,-1,2,328,930,-1,233,26,234,-1,934,32,935,-1,823,936,310,-1,29,822,30,-1,920,20,19,-1,309,43,38,-1,40,38,937,-1,48,47,610,-1,45,924,46,-1,19,315,800,-1,921,50,52,-1,217,51,847,-1,845,319,920,-1,56,58,221,-1,847,848,59,-1,778,938,66,-1,278,939,70,-1,940,75,67,-1,304,303,69,-1,78,80,941,-1,177,4,8,-1,86,85,942,-1,943,804,916,-1,249,242,241,-1,841,842,229,-1,228,914,834,-1,944,94,945,-1,944,946,94,-1,912,947,913,-1,843,256,948,-1,908,949,909,-1,100,836,97,-1,99,239,100,-1,108,826,226,-1,907,116,224,-1,906,903,854,-1,905,950,904,-1,119,121,901,-1,122,124,123,-1,125,127,900,-1,130,132,134,-1,919,898,803,-1,68,951,751,-1,307,139,138,-1,952,147,184,-1,812,150,149,-1,953,300,952,-1,954,955,956,-1,861,957,194,-1,158,869,892,-1,161,958,167,-1,891,167,958,-1,153,959,889,-1,23,141,265,-1,81,15,6,-1,261,884,809,-1,883,960,881,-1,878,880,961,-1,877,879,962,-1,186,185,289,-1,873,963,874,-1,191,876,872,-1,871,160,159,-1,158,193,867,-1,867,964,868,-1,865,965,863,-1,864,863,966,-1,861,862,201,-1,860,967,968,-1,858,969,859,-1,854,112,855,-1,915,225,916,-1,826,238,259,-1,853,931,318,-1,59,58,57,-1,51,50,222,-1,223,690,52,-1,970,225,915,-1,228,844,840,-1,232,231,842,-1,841,229,840,-1,236,235,825,-1,237,970,839,-1,837,89,237,-1,239,840,836,-1,142,971,260,-1,972,304,973,-1,829,868,830,-1,260,258,99,-1,151,97,262,-1,264,825,265,-1,23,234,21,-1,934,935,31,-1,823,824,974,-1,11,975,30,-1,824,820,13,-1,312,304,972,-1,143,148,300,-1,818,298,895,-1,121,282,815,-1,815,816,819,-1,813,155,184,-1,812,976,810,-1,809,289,185,-1,161,977,193,-1,808,204,293,-1,807,978,296,-1,138,297,798,-1,225,134,916,-1,804,943,302,-1,919,918,137,-1,307,306,280,-1,640,7,17,-1,309,18,15,-1,979,42,35,-1,21,234,28,-1,800,315,42,-1,36,315,19,-1,273,317,316,-1,972,322,312,-1,972,324,322,-1,624,327,63,-1,136,297,806,-1,301,165,891,-1,330,332,637,-1,796,980,335,-1,333,500,334,-1,331,980,796,-1,794,533,792,-1,791,341,344,-1,981,580,982,-1,362,345,498,-1,781,784,372,-1,789,983,782,-1,787,627,771,-1,669,984,670,-1,576,985,574,-1,345,784,781,-1,352,785,353,-1,612,355,354,-1,360,337,336,-1,364,784,361,-1,688,614,346,-1,689,368,782,-1,369,693,370,-1,688,346,781,-1,693,375,692,-1,278,585,776,-1,65,379,777,-1,278,382,939,-1,380,776,585,-1,384,386,385,-1,450,642,641,-1,500,333,771,-1,585,773,380,-1,605,646,770,-1,551,550,559,-1,554,553,769,-1,543,986,987,-1,676,544,686,-1,988,399,768,-1,989,765,767,-1,761,402,401,-1,679,411,410,-1,696,563,422,-1,760,427,698,-1,759,420,416,-1,757,442,438,-1,440,424,441,-1,431,445,443,-1,606,451,591,-1,450,753,642,-1,752,585,277,-1,608,461,609,-1,510,470,593,-1,742,710,712,-1,742,990,743,-1,706,713,715,-1,741,717,513,-1,740,462,484,-1,740,488,991,-1,738,476,475,-1,572,992,349,-1,993,335,391,-1,596,994,570,-1,995,730,746,-1,731,996,732,-1,730,995,728,-1,651,509,726,-1,725,722,721,-1,723,997,721,-1,720,515,718,-1,517,514,513,-1,716,998,516,-1,713,704,714,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl2_Geo_5_145_coordIndex_4()
		{
			int[] value = {710,709,711,-1,705,999,706,-1,481,480,703,-1,1000,1001,1002,-1,702,1002,700,-1,430,426,698,-1,646,647,770,-1,566,565,696,-1,635,342,695,-1,374,535,375,-1,539,370,537,-1,368,689,223,-1,770,647,541,-1,678,676,686,-1,685,543,987,-1,686,543,685,-1,571,683,684,-1,682,684,680,-1,678,685,411,-1,464,409,589,-1,381,662,661,-1,684,418,436,-1,697,696,542,-1,409,567,589,-1,570,408,407,-1,572,571,671,-1,636,571,349,-1,667,663,575,-1,664,1003,665,-1,663,791,343,-1,582,657,592,-1,472,463,602,-1,603,1004,660,-1,441,590,442,-1,446,1005,647,-1,657,590,659,-1,510,594,511,-1,655,473,604,-1,652,468,653,-1,597,1006,509,-1,992,514,462,-1,650,293,521,-1,296,978,648,-1,601,629,604,-1,606,447,647,-1,644,605,645,-1,607,584,451,-1,588,458,642,-1,642,774,588,-1,609,748,453,-1,359,360,640,-1,353,577,498,-1,611,637,332,-1,1007,1008,643,-1,614,613,612,-1,346,614,347,-1,615,695,581,-1,616,622,661,-1,622,1009,661,-1,630,1010,631,-1,629,608,459,-1,991,488,604,-1,626,627,787,-1,624,631,625,-1,621,1009,622,-1,632,622,616,-1,618,1011,619,-1,617,695,615,-1,347,354,638,-1,613,633,581,-1,1008,616,662,-1,332,1012,576,-1,353,578,577,-1,609,460,459,-1,452,1013,582,-1,662,774,644,-1,604,473,602,-1,603,461,601,-1,599,296,600,-1,293,292,522,-1,595,597,651,-1,509,1006,470,-1,593,594,510,-1,591,592,448,-1,1005,446,1014,-1,590,1015,438,-1,455,453,748,-1,528,1016,465,-1,586,588,774,-1,774,773,586,-1,582,584,607,-1,581,341,612,-1,339,1017,579,-1,579,1017,1018,-1,331,333,980,-1,330,771,333,-1,532,1019,573,-1,570,994,568,-1,589,567,528,-1,566,567,564,-1,563,763,562,-1,436,414,560,-1,413,769,560,-1,557,555,558,-1,413,412,556,-1,552,554,673,-1,549,551,1020,-1,564,685,565,-1,571,684,682,-1,986,764,763,-1,546,1021,547,-1,543,686,544,-1,422,421,417,-1,541,647,540,-1,368,223,216,-1,538,537,536,-1,535,692,375,-1,369,216,215,-1,531,533,794,-1,528,530,735,-1,1022,760,758,-1,424,440,425,-1,523,525,1023,-1,489,1024,1025,-1,522,482,481,-1,1026,705,1027,-1,518,520,1028,-1,706,1029,713,-1,516,483,514,-1,741,720,719,-1,512,1030,508,-1,726,509,511,-1,508,1031,503,-1,496,504,506,-1,1031,501,503,-1,392,498,577,-1,496,506,497,-1,348,626,787,-1,494,400,492,-1,489,1025,490,-1,486,1032,487,-1,483,1033,484,-1,515,720,513,-1,479,594,477,-1,476,1034,474,-1,406,1006,407,-1,471,1035,472,-1,470,1006,466,-1,466,468,652,-1,465,1004,463,-1,349,992,462,-1,748,461,455,-1,585,752,1036,-1,455,457,1037,-1,452,454,1013,-1,1014,1038,429,-1,451,606,449,-1,447,591,448,-1,429,1038,445,-1,424,755,443,-1,442,757,440,-1,437,756,438,-1,436,423,435,-1,540,432,434,-1,427,429,431,-1,426,755,424,-1,696,565,563,-1,418,420,759,-1,417,421,415,-1,435,412,414,-1,411,564,409,-1,408,410,406,-1,403,1039,404,-1,400,1040,401,-1,606,646,605,-1,393,395,1041,-1,771,627,499,-1,334,338,392,-1,389,578,390,-1,587,586,775,-1,383,385,775,-1,381,661,382,-1,382,776,380,-1,379,326,625,-1,376,1010,377,-1,779,373,375,-1,535,374,780,-1,372,54,53,-1,368,370,691,-1,363,783,364,-1,361,784,345,-1,364,783,784,-1,785,1042,786,-1,354,356,352,-1,1043,785,982,-1,347,638,639,-1,532,531,984,-1,668,1003,579,-1,611,634,1044,-1,626,348,350,-1,349,348,637,-1,345,347,639,-1,360,362,498,-1,341,791,339,-1,338,500,336,-1,335,980,333,-1,25,930,328,-1,326,327,624,-1,799,322,325,-1,321,1045,319,-1,318,312,316,-1,35,42,315,-1,314,800,271,-1,0,28,310,-1,49,610,47,-1,307,798,136,-1,274,306,275,-1,134,133,943,-1,299,301,297,-1,298,299,297,-1,296,599,294,-1,204,203,292,-1,289,809,290,-1,185,184,147,-1,288,179,286,-1,129,817,285,-1,121,119,281,-1,260,971,279,-1,67,69,303,-1,276,285,274,-1,271,14,273,-1,41,1046,14,-1,270,29,269,-1,81,79,308,-1,310,820,823,-1,1,5,4,-1,267,1047,34,-1,1048,264,141,-1,261,263,884,-1,214,213,258,-1,238,99,258,-1,108,1049,256,-1,255,1050,254,-1,1051,251,253,-1,250,1052,246,-1,248,102,246,-1,243,1053,244,-1,242,1054,240,-1,839,233,235,-1,843,842,841,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getl2_Geo_5_145_coordIndex_5()
		{
			int[] value = {230,1055,231,-1,227,914,228,-1,226,106,105,-1,225,970,224,-1,217,223,52,-1,221,222,1056,-1,59,848,58,-1,219,1057,218,-1,217,852,215,-1,887,212,214,-1,903,906,1058,-1,210,123,110,-1,109,113,210,-1,207,1059,208,-1,203,205,831,-1,197,253,198,-1,867,193,977,-1,977,964,867,-1,870,159,892,-1,190,1060,191,-1,188,1061,189,-1,186,813,184,-1,175,181,183,-1,178,180,1062,-1,308,15,81,-1,175,183,176,-1,930,25,22,-1,173,1063,171,-1,168,1064,169,-1,165,1065,166,-1,76,164,77,-1,164,1066,86,-1,161,163,977,-1,831,205,829,-1,157,1067,155,-1,154,1068,152,-1,300,148,150,-1,147,1069,145,-1,144,971,142,-1,24,161,141,-1,140,895,138,-1,942,951,68,-1,126,128,283,-1,132,803,133,-1,130,805,131,-1,126,900,127,-1,125,111,110,-1,123,901,121,-1,119,902,120,-1,101,107,255,-1,907,114,116,-1,126,117,856,-1,113,109,111,-1,257,238,826,-1,106,905,104,-1,102,248,103,-1,100,96,98,-1,97,151,95,-1,92,94,946,-1,87,89,837,-1,943,916,134,-1,84,86,329,-1,177,328,917,-1,81,885,82,-1,79,1070,80,-1,940,67,1071,-1,940,73,75,-1,70,972,973,-1,70,973,71,-1,67,75,68,-1,64,326,65,-1,61,63,1072,-1,57,219,60,-1,54,924,55,-1,51,217,52,-1,1073,850,849,-1,49,46,363,-1,16,20,48,-1,17,1074,359,-1,359,1074,357,-1,42,979,40,-1,40,937,41,-1,309,40,979,-1,24,23,22,-1,18,36,19,-1,272,821,853,-1,14,1046,12,-1,10,927,11,-1,8,885,6,-1,3,82,4,-1,1075,266,926,-1,1075,267,266,-1,932,853,821,-1,932,931,853,-1,33,11,927,-1,975,11,33,-1,1076,1077,1078,-1,1077,1076,1079,-1,852,60,218,-1,847,60,852,-1,1080,938,1081,-1,66,938,1080,-1,938,1082,1083,-1,1082,938,778,-1,69,973,304,-1,69,71,973,-1,43,941,44,-1,43,78,941,-1,68,74,942,-1,68,75,74,-1,90,838,1084,-1,90,91,838,-1,910,1085,230,-1,910,909,1085,-1,947,1086,913,-1,947,1087,1086,-1,241,172,250,-1,172,241,945,-1,254,1084,244,-1,254,1050,1084,-1,835,1088,1089,-1,914,1088,835,-1,908,1063,949,-1,908,1090,1063,-1,92,913,93,-1,92,911,913,-1,232,948,1091,-1,232,843,948,-1,1052,1063,1090,-1,1052,171,1063,-1,1092,911,92,-1,911,1092,1089,-1,856,900,126,-1,900,856,855,-1,857,1058,113,-1,903,1058,857,-1,305,280,306,-1,305,1093,280,-1,275,307,135,-1,275,306,307,-1,281,118,1094,-1,281,119,118,-1,1095,147,952,-1,1095,1069,147,-1,145,976,1096,-1,810,976,145,-1,1097,1098,959,-1,1099,1098,1097,-1,1100,1101,1102,-1,1103,1101,1100,-1,1104,814,1105,-1,814,1104,1106,-1,599,1107,294,-1,1108,1107,599,-1,864,1109,893,-1,1110,1109,864,-1,1111,1112,862,-1,1113,1112,1111,-1,1066,329,86,-1,1066,25,329,-1,1114,1115,1116,-1,1114,1117,1115,-1,1118,751,951,-1,751,1118,1119,-1,958,1120,891,-1,1120,958,1121,-1,163,1122,1123,-1,1122,163,1116,-1,1124,1125,1126,-1,1124,1127,1125,-1,1128,959,153,-1,1097,959,1128,-1,115,283,284,-1,117,283,115,-1,117,126,283,-1,1129,1130,1131,-1,1130,1129,1132,-1,1048,884,264,-1,884,1048,290,-1,1133,882,881,-1,1133,1134,882,-1,1133,1135,1134,-1,1133,1136,1135,-1,1137,961,880,-1,961,1137,1138,-1,1139,877,1140,-1,1139,880,877,-1,1062,1060,178,-1,1060,1062,191,-1,188,960,1061,-1,188,881,960,-1,1141,963,1142,-1,874,963,1141,-1,1143,962,1144,-1,1145,962,1143,-1,875,870,892,-1,874,870,875,-1,869,866,1146,-1,869,867,866,-1,199,202,197,-1,199,200,202,-1,1109,1147,1132,-1,1109,1110,1147,-1,1148,1149,1150,-1,1148,1151,1149,-1,863,1152,966,-1,863,1153,1152,-1,1154,1155,965,-1,1154,1051,1155,-1,1059,1098,208,-1,1098,1059,1156,-1,1157,1064,168,-1,1157,1158,1064,-1,1157,1159,1160,-1,1157,1161,1159,-1,1162,1163,1159,-1,1162,1164,1163,-1,1165,157,156,-1,1165,1166,157,-1,156,1167,1165,-1,156,1106,1167,-1,968,858,860,-1,858,968,1168,-1,969,807,295,-1,969,858,807,-1,898,303,302,-1,898,919,303,-1,266,33,927,-1,266,34,33,-1,56,1073,57,-1,1073,56,850,-1,50,923,222,-1,50,921,923,-1,920,55,924,-1,55,920,933,-1,1169,325,1170,-1,1169,1171,325,-1,907,226,827,-1,907,106,226,-1,841,256,843,-1,256,841,239,-1,1172,840,844,-1,840,1172,836,-1,1173,243,832,-1,1173,1054,243,-1,910,1174,908,-1,1174,910,1091,-1,102,254,1175,-1,254,102,101,-1,70,61,972,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getl2_Geo_5_145_coordIndex_6()
		{
			int[] value = {61,70,62,-1,1176,187,1177,-1,1176,182,187,-1,1146,198,1178,-1,198,1146,1179,-1,830,203,831,-1,830,1180,203,-1,929,1181,1182,-1,1181,929,1183,-1,917,1,4,-1,917,2,1,-1,941,926,10,-1,80,926,941,-1,897,67,303,-1,897,1071,67,-1,144,299,298,-1,299,144,143,-1,819,1184,274,-1,819,816,1184,-1,954,1103,1185,-1,1103,956,1101,-1,954,956,1103,-1,1067,184,155,-1,184,1067,952,-1,953,1186,797,-1,1186,953,1187,-1,291,871,872,-1,291,160,871,-1,883,1143,1188,-1,1143,883,1145,-1,1189,1190,1191,-1,1189,1135,1190,-1,1192,1149,1113,-1,1192,1193,1149,-1,1131,1194,176,-1,1131,1195,1194,-1,1191,1196,1197,-1,1190,1196,1191,-1,1099,208,1098,-1,1099,1198,208,-1,1199,1200,1201,-1,1199,1202,1200,-1,915,839,970,-1,915,804,839,-1,135,803,275,-1,135,918,803,-1,135,137,918,-1,302,313,801,-1,302,304,313,-1,1203,799,325,-1,1203,1045,799,-1,640,1204,7,-1,640,1205,1204,-1,1065,1206,1207,-1,1208,1206,1065,-1,533,1209,792,-1,533,573,1209,-1,664,982,580,-1,664,1043,982,-1,781,789,618,-1,781,983,789,-1,576,634,611,-1,576,790,634,-1,984,665,670,-1,984,531,665,-1,667,985,1210,-1,985,667,574,-1,1210,1211,1212,-1,1211,1210,985,-1,1003,670,665,-1,1003,668,670,-1,537,692,535,-1,370,692,537,-1,694,1213,1214,-1,365,1213,694,-1,631,1215,625,-1,1216,1215,631,-1,585,586,773,-1,585,383,586,-1,381,773,662,-1,381,380,773,-1,772,786,1042,-1,772,390,786,-1,384,585,1036,-1,384,383,585,-1,1217,680,1218,-1,681,680,1217,-1,1219,680,561,-1,680,1219,1218,-1,543,1021,986,-1,543,545,1021,-1,399,1220,397,-1,492,1220,399,-1,554,557,550,-1,554,769,557,-1,1218,1221,1217,-1,1218,1222,1221,-1,1218,1219,1222,-1,1223,675,1224,-1,675,1223,544,-1,989,398,397,-1,989,767,398,-1,1223,765,1225,-1,1223,766,765,-1,988,1020,551,-1,1020,988,768,-1,1022,699,425,-1,699,1022,758,-1,609,607,460,-1,609,452,607,-1,439,1015,1226,-1,439,438,1015,-1,470,1227,593,-1,470,469,1227,-1,1228,471,1227,-1,471,1228,654,-1,745,1229,746,-1,1229,745,1230,-1,1231,737,1232,-1,737,1231,1233,-1,1234,1235,1236,-1,1235,1234,1237,-1,1238,1239,1240,-1,1238,1241,1239,-1,990,712,1242,-1,990,742,712,-1,1026,1243,705,-1,1026,1244,1243,-1,1245,1205,1246,-1,1205,1245,1119,-1,1247,1248,1249,-1,1247,1250,1248,-1,486,1251,1032,-1,484,1251,486,-1,1252,740,991,-1,1253,740,1252,-1,1249,1033,1247,-1,1254,1033,1249,-1,1255,1124,1256,-1,1255,1127,1124,-1,738,1128,476,-1,1128,738,1097,-1,1014,432,1005,-1,1014,428,432,-1,1014,429,428,-1,1257,1258,1259,-1,1260,1258,1257,-1,994,1261,672,-1,596,1261,994,-1,733,1262,731,-1,733,1263,1262,-1,1264,1262,1263,-1,1264,1265,1262,-1,1266,1267,1268,-1,1269,1267,1266,-1,728,1270,1271,-1,728,1268,1270,-1,1272,1273,1274,-1,1272,1275,1273,-1,996,1275,1272,-1,996,731,1275,-1,997,1276,1277,-1,1276,997,723,-1,729,1278,1279,-1,1278,729,1280,-1,719,722,741,-1,722,719,723,-1,714,703,1281,-1,704,703,714,-1,711,1244,1282,-1,711,709,1244,-1,1283,1284,1285,-1,1283,1286,1284,-1,1287,708,710,-1,1288,708,1287,-1,1289,1290,1291,-1,1289,1292,1290,-1,1260,743,1258,-1,744,743,1260,-1,1027,714,518,-1,1027,715,714,-1,713,481,704,-1,481,713,1029,-1,1025,1231,1293,-1,1025,1024,1231,-1,739,1294,1295,-1,739,1296,1294,-1,1236,1297,1298,-1,1297,1236,1235,-1,1299,1300,1294,-1,1301,1300,1299,-1,1302,1303,1304,-1,1302,1297,1303,-1,1305,1002,1306,-1,1002,1305,700,-1,1306,1001,1307,-1,1002,1001,1306,-1,1241,701,700,-1,1238,701,1241,-1,774,753,644,-1,774,642,753,-1,779,1057,373,-1,1057,779,218,-1,367,780,374,-1,366,780,367,-1,788,691,539,-1,788,782,691,-1,371,781,372,-1,983,781,371,-1,621,1215,1216,-1,621,1308,1215,-1,542,434,697,-1,542,417,434,-1,763,987,986,-1,685,987,763,-1,1309,571,636,-1,571,1309,683,-1,682,1310,671,-1,682,681,1310,-1,1224,677,1311,-1,675,677,1224,-1,687,1312,552,-1,687,1313,1312,-1,409,406,410,-1,409,464,406,-1,762,562,763,-1,562,762,1314,-1,378,382,661,-1,377,382,378,-1,1273,743,990,-1,1273,504,743,-1,725,1315,520,-1,725,724,1315,-1,480,716,703,-1,480,998,716,-1,569,679,408,-1,679,569,1313,-1,1212,795,1316,-1,1211,795,1212,-1,981,785,356,-1,981,982,785,-1,440,1317,526,-1,757,1317,440,-1,457,754,1037,-1,437,457,734,-1,754,457,437,-1,659,444,527,-1,444,659,441,-1,527,657,659,-1,592,657,527,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getl2_Geo_5_145_coordIndex_7()
		{
			int[] value = {1318,454,1226,-1,1318,1013,454,-1,1237,1319,502,-1,1237,1234,1319,-1,628,1320,1240,-1,628,1321,1320,-1,992,515,514,-1,1261,515,992,-1,1030,1277,1276,-1,512,1277,1030,-1,1271,1263,733,-1,1270,1263,1271,-1,1322,649,1323,-1,1322,650,649,-1,1283,1324,1286,-1,1283,1325,1324,-1,1326,1327,497,-1,1326,1328,1327,-1,1329,1330,1331,-1,1329,1332,1330,-1,1333,1334,523,-1,1333,1335,1334,-1,648,1127,1255,-1,648,978,1127,-1,449,644,753,-1,644,449,605,-1,793,1042,1336,-1,772,1042,793,-1,1007,1309,1044,-1,1007,643,1309,-1,688,633,613,-1,620,633,688,-1,615,632,616,-1,632,615,619,-1,378,1009,376,-1,378,661,1009,-1,487,628,488,-1,1321,628,487,-1,499,1246,336,-1,499,1041,1246,-1,1216,1009,621,-1,1216,376,1009,-1,1011,632,619,-1,632,1011,623,-1,620,615,633,-1,620,619,615,-1,1008,617,616,-1,1008,1007,617,-1,1013,1337,582,-1,1013,1318,1337,-1,584,591,451,-1,584,583,591,-1,1301,1124,1200,-1,1256,1124,1301,-1,1334,524,523,-1,1334,1198,524,-1,1197,1330,1332,-1,1330,1197,1338,-1,497,1194,495,-1,497,1327,1194,-1,1286,1193,1291,-1,1286,1324,1193,-1,1248,292,1339,-1,522,292,1248,-1,1280,733,732,-1,1271,733,1280,-1,1276,1340,1030,-1,1276,718,1340,-1,654,1341,652,-1,654,1228,1341,-1,1342,502,501,-1,1342,1237,502,-1,1343,1230,745,-1,1343,1232,1230,-1,1037,1226,454,-1,1037,439,1226,-1,439,1037,754,-1,757,736,1317,-1,756,736,757,-1,342,581,695,-1,581,342,344,-1,1043,1042,785,-1,1043,1336,1042,-1,1209,391,389,-1,391,1209,993,-1,796,1211,1012,-1,796,795,1211,-1,1344,567,566,-1,529,567,1344,-1,423,562,435,-1,423,422,562,-1,480,1250,998,-1,482,1250,480,-1,1345,520,519,-1,1345,725,520,-1,1274,990,1242,-1,1274,1273,990,-1,377,939,382,-1,1010,939,377,-1,630,939,1010,-1,663,339,791,-1,663,1017,339,-1,555,1040,558,-1,555,556,1040,-1,1346,1314,762,-1,1346,1347,1314,-1,673,550,549,-1,673,554,550,-1,986,546,764,-1,986,1021,546,-1,541,418,684,-1,541,419,418,-1,647,432,540,-1,432,647,1005,-1,1348,621,1349,-1,1308,621,1348,-1,1350,536,1351,-1,1350,538,536,-1,1238,600,701,-1,600,1238,598,-1,1307,1304,1303,-1,1001,1304,1307,-1,700,478,1241,-1,700,1305,478,-1,1304,1352,1302,-1,1353,1352,1304,-1,1299,1296,1352,-1,1299,1294,1296,-1,1298,1354,1236,-1,1354,1298,490,-1,1295,1300,1333,-1,1295,1294,1300,-1,490,1293,1354,-1,490,1025,1293,-1,521,1029,649,-1,521,481,1029,-1,1281,518,714,-1,518,1281,519,-1,1242,711,1355,-1,711,1242,712,-1,1029,1323,649,-1,1029,706,1323,-1,1285,1288,1287,-1,1284,1288,1285,-1,1026,1282,1244,-1,1282,1026,1028,-1,1345,722,725,-1,1345,741,722,-1,1030,727,508,-1,1340,727,1030,-1,1271,729,728,-1,1280,729,1271,-1,1356,1272,1357,-1,1356,996,1272,-1,508,726,1031,-1,727,726,508,-1,1270,1267,1358,-1,1270,1268,1267,-1,1268,995,1266,-1,1268,728,995,-1,1262,506,505,-1,1262,1265,506,-1,511,1031,726,-1,1031,511,501,-1,1359,746,730,-1,1359,747,746,-1,685,563,565,-1,685,763,563,-1,1266,746,1229,-1,1266,995,746,-1,1257,1325,1283,-1,1257,1360,1325,-1,405,1220,402,-1,404,1220,405,-1,1001,1353,1304,-1,1001,1000,1353,-1,1361,1254,1249,-1,1115,1254,1361,-1,1253,749,485,-1,1252,749,1253,-1,1252,750,749,-1,1117,1032,1251,-1,1117,1362,1032,-1,1247,998,1250,-1,1247,516,998,-1,395,1246,1041,-1,1246,395,1245,-1,1363,1289,1192,-1,1363,1364,1289,-1,1239,478,477,-1,1241,478,1239,-1,1365,1237,1342,-1,1365,1235,1237,-1,1293,1232,1343,-1,1293,1231,1232,-1,476,1366,1034,-1,1366,476,1128,-1,593,471,473,-1,1227,471,593,-1,466,1341,469,-1,466,652,1341,-1,464,472,406,-1,463,472,464,-1,469,1228,1227,-1,469,1341,1228,-1,425,1367,1022,-1,425,526,1367,-1,433,427,760,-1,427,433,428,-1,436,680,684,-1,436,561,680,-1,416,419,417,-1,419,416,420,-1,1020,396,1368,-1,1020,768,396,-1,401,556,1347,-1,1040,556,401,-1,398,1368,396,-1,1368,398,1311,-1,552,676,687,-1,552,674,676,-1,988,492,399,-1,493,492,988,-1,1039,1225,765,-1,1039,547,1225,-1,1039,548,547,-1,403,548,1039,-1,1217,1310,681,-1,1310,1217,1221,-1,627,1041,499,-1,627,393,1041,-1,587,385,387,-1,587,775,385,-1,1308,1369,1215,-1,1350,1369,1308,-1,1216,1010,376,-1,1216,631,1010,-1,1370,1214,777,-1,1214,1370,694,-1,365,1371,1213,-1,365,367,1371,-1,358,610,361,-1,610,358,357,-1,638,353,639,-1,638,351,353,-1,1019,984,669,-1,1019,532,984,-1,1210,1018,667,-1,1210,669,1018,-1,579,669,668,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getl2_Geo_5_145_coordIndex_8()
		{
			int[] value = {669,579,1018,-1,636,1044,1309,-1,636,611,1044,-1,339,981,340,-1,339,580,981,-1,993,573,1316,-1,573,993,1209,-1,348,330,637,-1,348,787,330,-1,1204,177,7,-1,1204,84,177,-1,324,1170,325,-1,324,1072,1170,-1,323,1045,321,-1,799,1045,323,-1,316,320,314,-1,316,321,320,-1,318,313,312,-1,318,802,313,-1,78,309,79,-1,78,43,309,-1,919,897,303,-1,137,897,919,-1,1208,1108,1206,-1,1107,1108,1208,-1,1372,1202,1199,-1,1372,1335,1202,-1,1329,152,1373,-1,1329,1366,152,-1,1190,1328,1196,-1,1374,1328,1190,-1,1360,1131,1130,-1,1360,1195,1131,-1,1111,1322,1363,-1,1375,1322,1111,-1,1189,1134,1135,-1,1139,1134,1189,-1,1188,190,1142,-1,190,1188,1143,-1,291,1048,160,-1,290,1048,291,-1,301,953,797,-1,301,300,953,-1,179,1105,180,-1,179,288,1105,-1,1376,1101,956,-1,1376,1377,1101,-1,817,128,211,-1,128,817,129,-1,902,888,120,-1,902,886,888,-1,1121,161,24,-1,958,161,1121,-1,1046,937,925,-1,937,1046,41,-1,926,1070,1075,-1,926,80,1070,-1,310,821,820,-1,932,821,310,-1,1047,1182,1181,-1,1047,267,1182,-1,264,263,825,-1,264,884,263,-1,253,1178,198,-1,253,252,1178,-1,1177,189,1378,-1,1177,187,189,-1,939,62,70,-1,939,63,62,-1,63,939,630,-1,12,824,13,-1,12,269,824,-1,1090,246,1052,-1,1090,247,246,-1,1379,1091,948,-1,1379,1174,1091,-1,242,243,1054,-1,242,1053,243,-1,828,970,237,-1,828,224,970,-1,325,1380,1203,-1,1380,325,1171,-1,221,1381,1382,-1,221,1056,1381,-1,295,1383,969,-1,294,1383,295,-1,1384,1167,1385,-1,1167,1384,967,-1,157,859,1386,-1,157,1166,859,-1,1159,1384,1160,-1,1384,1159,1163,-1,1161,1162,1159,-1,1161,1387,1162,-1,1100,1158,1388,-1,1064,1158,1100,-1,1199,1389,1372,-1,1199,1387,1389,-1,1102,1064,1100,-1,1102,169,1064,-1,195,204,808,-1,195,205,204,-1,957,201,200,-1,957,861,201,-1,253,1155,1051,-1,1155,253,197,-1,1375,862,196,-1,862,1375,1111,-1,1112,966,1152,-1,966,1112,1151,-1,1151,1390,966,-1,1390,1151,1148,-1,1391,1132,1147,-1,1130,1132,1391,-1,1392,957,1393,-1,957,1392,194,-1,875,1178,252,-1,875,892,1178,-1,1143,1060,190,-1,1143,1144,1060,-1,1394,1142,963,-1,1394,1188,1142,-1,875,251,873,-1,875,252,251,-1,186,191,1062,-1,191,186,876,-1,1137,1139,1189,-1,1137,880,1139,-1,1374,1135,1136,-1,1190,1135,1374,-1,188,182,181,-1,188,187,182,-1,1395,179,178,-1,286,179,1395,-1,257,239,238,-1,257,256,239,-1,955,961,1396,-1,955,878,961,-1,1325,1130,1391,-1,1325,1360,1130,-1,1397,909,949,-1,909,1397,1086,-1,1163,967,1384,-1,1163,968,967,-1,1116,1361,1122,-1,1361,1116,1115,-1,164,1121,1066,-1,164,1120,1121,-1,164,896,1120,-1,166,1117,1114,-1,166,1362,1117,-1,868,1123,830,-1,868,964,1123,-1,1204,85,84,-1,1118,85,1204,-1,1113,1363,1192,-1,1113,1111,1363,-1,294,1186,1383,-1,1107,1186,294,-1,1106,155,814,-1,155,1106,156,-1,1103,1388,287,-1,1103,1100,1388,-1,959,1156,889,-1,1098,1156,959,-1,1376,1068,154,-1,1376,1396,1068,-1,145,95,146,-1,95,145,1096,-1,1398,145,1069,-1,1398,810,145,-1,148,142,95,-1,142,148,143,-1,1399,1069,1095,-1,1399,1398,1069,-1,1400,113,1058,-1,1400,210,113,-1,855,111,900,-1,111,855,112,-1,255,105,828,-1,255,107,105,-1,104,828,105,-1,104,904,828,-1,887,279,888,-1,214,279,887,-1,171,250,172,-1,171,1052,250,-1,230,1091,910,-1,230,232,1091,-1,247,908,1174,-1,908,247,1090,-1,1401,92,946,-1,1092,92,1401,-1,834,245,844,-1,834,832,245,-1,1175,244,1053,-1,1175,254,244,-1,93,1086,1397,-1,93,913,1086,-1,1055,227,231,-1,1402,227,1055,-1,1050,90,1084,-1,1403,90,1050,-1,942,77,86,-1,942,74,77,-1,81,1070,79,-1,81,83,1070,-1,136,1120,896,-1,1120,136,806,-1,66,1169,64,-1,66,1080,1169,-1,219,1073,1078,-1,57,1073,219,-1,846,53,55,-1,690,53,846,-1,54,46,924,-1,54,363,46,-1,16,1074,17,-1,16,48,1074,-1,32,1047,935,-1,32,34,1047,-1,268,1404,974,-1,268,935,1404,-1,935,29,31,-1,268,29,935,-1,39,11,822,-1,39,9,11,-1,930,21,0,-1,930,22,21,-1,267,1405,1182,-1,1075,1405,267,-1,925,12,1046,-1,925,270,12,-1,936,311,310,-1,936,1183,311,-1,309,35,18,-1,309,979,35,-1,610,1074,48,-1,357,1074,610,-1,1078,849,1076,-1,1078,1073,849,-1,1083,1081,938,-1,851,1081,1083,-1,63,1170,1072,-1,63,327,1170,-1,1080,1171,1169,-1,1171,1080,1381,-1,73,1071,76,-1,73,940,1071,-1,84,328,177,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getl2_Geo_5_145_coordIndex_9()
		{
			int[] value = {84,329,328,-1,838,87,837,-1,91,87,838,-1,230,1087,1055,-1,1087,230,1085,-1,1402,1087,947,-1,1402,1055,1087,-1,173,945,94,-1,945,173,172,-1,912,1089,1088,-1,912,911,1089,-1,949,173,1397,-1,949,1063,173,-1,946,240,1401,-1,946,944,240,-1,224,905,106,-1,950,905,224,-1,89,255,237,-1,89,1050,255,-1,856,114,906,-1,117,114,856,-1,887,1406,212,-1,886,1406,887,-1,129,283,128,-1,131,283,129,-1,140,1093,1407,-1,1093,140,280,-1,137,896,897,-1,136,896,137,-1,1094,1184,281,-1,1184,1094,1408,-1,144,279,971,-1,144,818,279,-1,976,149,1096,-1,976,812,149,-1,150,952,300,-1,952,150,1095,-1,1366,153,152,-1,1128,153,1366,-1,1377,1102,1101,-1,1377,1409,1102,-1,288,1104,1105,-1,288,1410,1104,-1,157,1187,1067,-1,1187,157,1386,-1,893,1176,1177,-1,1109,1176,893,-1,201,1112,1152,-1,1112,201,862,-1,1122,1339,1180,-1,1339,1122,1361,-1,1114,163,162,-1,1114,1116,163,-1,1118,942,85,-1,951,942,1118,-1,1207,166,1065,-1,1207,1362,166,-1,163,964,977,-1,1123,964,163,-1,1168,1126,1125,-1,1164,1126,1168,-1,1389,209,1372,-1,207,209,1389,-1,213,1400,1411,-1,212,1400,213,-1,1396,1138,1068,-1,1396,961,1138,-1,3,83,82,-1,83,3,1405,-1,878,1185,879,-1,878,954,1185,-1,955,954,878,-1,1062,813,186,-1,180,813,1062,-1,175,1133,181,-1,175,1136,1133,-1,1373,1137,1412,-1,1373,1138,1137,-1,178,1144,1395,-1,1144,178,1060,-1,189,1413,1414,-1,189,1061,1413,-1,1061,1394,1413,-1,1061,960,1394,-1,962,1140,877,-1,1140,962,1145,-1,874,871,870,-1,1141,871,874,-1,1146,892,869,-1,1178,892,1146,-1,1155,202,1153,-1,197,202,1155,-1,1390,1147,1110,-1,1147,1390,1148,-1,1375,195,808,-1,1375,196,195,-1,965,1378,1154,-1,865,1378,965,-1,199,1179,1393,-1,198,1179,199,-1,829,1392,1415,-1,1392,829,205,-1,1059,1409,1156,-1,1059,206,1409,-1,1059,170,206,-1,170,1059,207,-1,168,1161,1157,-1,168,890,1161,-1,1158,1160,1416,-1,1158,1157,1160,-1,1164,1201,1126,-1,1201,1164,1162,-1,1104,1416,1385,-1,1104,1410,1416,-1,1106,1385,1167,-1,1106,1104,1385,-1,858,1125,807,-1,858,1168,1125,-1,1058,1411,1400,-1,1058,1417,1411,-1,219,1077,1057,-1,219,1078,1077,-1,56,1382,850,-1,56,221,1382,-1,1380,222,923,-1,222,1380,1056,-1,55,921,846,-1,55,933,921,-1,827,114,907,-1,1417,114,827,-1,914,1402,1088,-1,914,227,1402,-1,1418,838,263,-1,1418,1084,838,-1,263,1172,1418,-1,263,262,1172,-1,1054,1401,240,-1,1173,1401,1054,-1,245,1084,1418,-1,245,244,1084,-1,248,1049,103,-1,1049,248,1379,-1,1175,246,102,-1,249,246,1175,-1,182,1129,183,-1,1129,182,1176,-1,1154,251,1051,-1,1154,1414,251,-1,1415,1146,866,-1,1179,1146,1415,-1,1049,107,103,-1,1049,108,107,-1,258,1411,259,-1,1411,258,213,-1,1183,928,311,-1,1183,929,928,-1,83,1075,1070,-1,1405,1075,83,-1,44,39,38,-1,44,9,39,-1,273,853,317,-1,272,853,273,-1,886,901,1406,-1,901,886,902,-1,1094,1407,1093,-1,118,1407,1094,-1,899,1407,118,-1,284,805,225,-1,284,131,805,-1,1184,282,281,-1,816,282,1184,-1,287,1185,1103,-1,1185,287,286,-1,953,1067,1187,-1,952,1067,953,-1,1398,811,810,-1,1398,1399,811,-1,872,1141,192,-1,872,871,1141,-1,882,1145,883,-1,1145,882,1140,-1,292,1180,1339,-1,1180,292,203,-1,1193,1150,1149,-1,1193,1324,1150,-1,1194,174,176,-1,1194,1327,174,-1,1412,1197,1332,-1,1191,1197,1412,-1,208,1334,209,-1,208,1198,1334,-1,1124,1201,1200,-1,1201,1124,1126,-1,130,276,132,-1,130,285,276,-1,1184,305,274,-1,1184,1408,305,-1,318,26,802,-1,318,27,26,-1,931,27,318,-1,922,1045,1203,-1,922,319,1045,-1,1080,1382,1381,-1,1081,1382,1080,-1,666,1043,664,-1,666,1336,1043,-1,1012,985,576,-1,1012,1211,985,-1,580,1003,664,-1,1003,580,579,-1,358,362,360,-1,358,361,362,-1,783,54,372,-1,783,363,54,-1,53,689,371,-1,689,53,690,-1,367,373,1371,-1,373,367,374,-1,1215,379,625,-1,1215,1369,379,-1,1252,459,750,-1,629,459,1252,-1,389,392,578,-1,389,391,392,-1,386,1036,395,-1,386,384,1036,-1,1222,561,1419,-1,561,1222,1219,-1,545,547,1021,-1,547,545,1225,-1,404,397,1220,-1,404,989,397,-1,1224,766,1223,-1,1224,767,766,-1,492,402,1220,-1,492,400,402,-1,1346,548,761,-1,1346,546,548,-1,559,494,493,-1,559,558,494,-1,1016,735,734,-1,735,1016,528,-1,418,415,421,-1,418,759,415,-1,421,436,418,-1,421,423,436,-1,755,430,431,-1,426,430,755,-1,540,417,419,-1,540,434,417,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getl2_Geo_5_145_coordIndex_10()
		{
			int[] value = {1317,735,530,-1,735,1317,736,-1,1014,448,1038,-1,448,1014,446,-1,454,455,1037,-1,453,455,454,-1,750,458,588,-1,458,750,459,-1,1337,1226,1015,-1,1318,1226,1337,-1,1016,1004,465,-1,1016,660,1004,-1,1035,468,467,-1,1035,653,468,-1,654,1035,471,-1,1035,654,653,-1,406,466,1006,-1,467,466,406,-1,474,1230,475,-1,474,1229,1230,-1,1233,738,737,-1,738,1233,1420,-1,1236,1421,1234,-1,1236,1354,1421,-1,594,1422,656,-1,479,1422,594,-1,1240,598,1238,-1,598,1240,1320,-1,1292,705,1243,-1,999,705,1292,-1,1339,1249,1248,-1,1361,1249,1339,-1,1033,1251,484,-1,1033,1254,1251,-1,1036,1245,395,-1,1245,1036,752,-1,1032,1207,487,-1,1032,1362,1207,-1,516,1033,483,-1,1033,516,1247,-1,1256,1423,1255,-1,1423,1256,1424,-1,523,1295,1333,-1,1295,523,1023,-1,1367,529,1344,-1,529,1367,530,-1,1269,1229,474,-1,1269,1266,1229,-1,338,498,392,-1,338,337,498,-1,502,1425,503,-1,1425,502,1319,-1,504,1275,505,-1,504,1273,1275,-1,1264,1326,1265,-1,1326,1264,1426,-1,1267,1331,1330,-1,1267,1269,1331,-1,1279,503,1425,-1,507,503,1279,-1,1357,1274,1427,-1,1357,1272,1274,-1,1277,1356,997,-1,1277,1428,1356,-1,507,1278,512,-1,507,1279,1278,-1,718,723,719,-1,723,718,1276,-1,741,1429,717,-1,1429,741,1345,-1,1260,1283,1285,-1,1283,1260,1257,-1,1288,1290,708,-1,1284,1290,1288,-1,708,1292,1243,-1,1290,1292,708,-1,999,1323,706,-1,1364,1323,999,-1,1282,520,1315,-1,1028,520,1282,-1,705,715,1027,-1,705,707,715,-1,1231,525,1233,-1,1231,1024,525,-1,489,525,1024,-1,1023,525,489,-1,1296,491,1430,-1,1296,739,491,-1,1302,1298,1297,-1,1302,1430,1298,-1,1301,1424,1256,-1,1299,1424,1301,-1,1297,1365,1303,-1,1297,1235,1365,-1,1303,1422,1307,-1,1303,1365,1422,-1,1255,702,648,-1,1255,1423,702,-1,1344,1022,1367,-1,1344,1431,1022,-1,1077,373,1057,-1,1077,1371,373,-1,1351,780,366,-1,1351,536,780,-1,539,1348,788,-1,538,1348,539,-1,782,371,689,-1,782,983,371,-1,433,697,434,-1,697,433,1431,-1,1225,544,1223,-1,1225,545,544,-1,671,1312,568,-1,671,1419,1312,-1,671,1310,1419,-1,1313,568,1312,-1,1313,569,568,-1,1368,549,1020,-1,549,1368,1432,-1,1419,552,1312,-1,1419,553,552,-1,562,412,435,-1,1314,412,562,-1,555,769,413,-1,769,555,557,-1,1258,504,496,-1,743,504,1258,-1,724,1355,1315,-1,724,1427,1355,-1,1429,703,716,-1,703,1429,1281,-1,568,672,671,-1,568,994,672,-1,1316,1019,1212,-1,1316,573,1019,-1,343,576,575,-1,576,343,790,-1,389,792,1209,-1,389,388,792,-1,356,340,981,-1,355,340,356,-1,462,1253,350,-1,1253,462,740,-1,734,756,437,-1,734,736,756,-1,1038,592,527,-1,448,592,1038,-1,590,1337,1015,-1,1337,590,658,-1,1359,1234,1421,-1,1319,1234,1359,-1,477,655,1239,-1,655,477,593,-1,1261,595,515,-1,595,1261,596,-1,512,1428,1277,-1,1278,1428,512,-1,1263,1358,1264,-1,1358,1263,1270,-1,1322,1364,1363,-1,1364,1322,1323,-1,1259,1360,1257,-1,1259,1195,1360,-1,1328,1426,1196,-1,1426,1328,1326,-1,1034,1329,1331,-1,1034,1366,1329,-1,1202,1333,1300,-1,1202,1335,1333,-1,1108,1321,1206,-1,1321,1108,1320,-1,353,390,578,-1,353,786,390,-1,1044,617,1007,-1,617,1044,634,-1,1011,789,1349,-1,1011,618,789,-1,1351,1369,1350,-1,1369,1351,1370,-1,1206,487,1207,-1,487,1206,1321,-1,1246,640,336,-1,1246,1205,640,-1,623,1349,621,-1,623,1011,1349,-1,1008,644,643,-1,1008,662,644,-1,450,460,607,-1,641,460,450,-1,641,458,460,-1,683,770,541,-1,683,645,770,-1,1200,1300,1301,-1,1200,1202,1300,-1,524,1099,1420,-1,524,1198,1099,-1,1196,1338,1197,-1,1338,1196,1426,-1,1194,1259,495,-1,1194,1195,1259,-1,1291,1192,1289,-1,1291,1193,1192,-1,1426,1358,1338,-1,1426,1264,1358,-1,1278,732,1428,-1,1280,732,1278,-1,718,595,1340,-1,718,515,595,-1,1240,655,628,-1,1239,655,1240,-1,656,501,511,-1,656,1342,501,-1,1421,747,1359,-1,745,1421,1343,-1,1421,745,747,-1,1337,657,582,-1,1337,658,657,-1,602,1004,603,-1,463,1004,602,-1,341,355,612,-1,341,340,355,-1,792,772,793,-1,772,792,388,-1,1212,669,1210,-1,669,1212,1019,-1,572,1261,992,-1,572,672,1261,-1,522,1250,482,-1,522,1248,1250,-1,519,1429,1345,-1,1281,1429,519,-1,1242,1427,1274,-1,1355,1427,1242,-1,496,1259,1258,-1,496,495,1259,-1,1017,667,1018,-1,1017,663,667,-1,1347,761,401,-1,1346,761,1347,-1,673,1432,674,-1,673,549,1432,-1,678,1313,687,-1,679,1313,678,-1,643,683,1309,-1,645,683,643,-1,566,1431,1344,-1,1431,566,697,-1,1349,788,1348,-1,1349,789,788,-1,1308,538,1350,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getl2_Geo_5_145_coordIndex_11()
		{
			int[] value = {1308,1348,538,-1,1351,694,1370,-1,1351,366,694,-1,1079,1214,1213,-1,1079,1082,1214,-1,527,445,1038,-1,445,527,443,-1,648,701,600,-1,648,702,701,-1,702,1000,1002,-1,1423,1000,702,-1,1307,479,1306,-1,1307,1422,479,-1,478,1306,479,-1,478,1305,1306,-1,1353,1299,1352,-1,1353,1424,1299,-1,1352,1430,1302,-1,1352,1296,1430,-1,490,1430,491,-1,490,1298,1430,-1,1420,525,524,-1,1233,525,1420,-1,1282,1355,711,-1,1282,1315,1355,-1,1243,709,708,-1,1243,1244,709,-1,1291,1284,1286,-1,1291,1290,1284,-1,1285,744,1260,-1,1285,1287,744,-1,1026,518,1028,-1,1026,1027,518,-1,716,717,1429,-1,716,517,717,-1,651,1340,595,-1,651,727,1340,-1,996,1428,732,-1,1428,996,1356,-1,1357,997,1356,-1,721,997,1357,-1,721,1427,724,-1,721,1357,1427,-1,1279,730,729,-1,1279,1425,730,-1,1330,1358,1267,-1,1358,1330,1338,-1,497,1265,1326,-1,497,506,1265,-1,731,505,1275,-1,1262,505,731,-1,1319,730,1425,-1,730,1319,1359,-1,407,597,570,-1,1006,597,407,-1,474,1331,1269,-1,1034,1331,474,-1,1232,475,1230,-1,475,1232,737,-1,489,1295,1023,-1,739,1295,489,-1,1424,1000,1423,-1,1000,1424,1353,-1,350,485,626,-1,1253,485,350,-1,749,386,485,-1,386,749,387,-1,751,1245,752,-1,1119,1245,751,-1,1115,1251,1254,-1,1115,1117,1251,-1,393,485,394,-1,393,626,485,-1,1292,1364,999,-1,1364,1292,1289,-1,744,710,742,-1,710,744,1287,-1,1320,599,598,-1,599,1320,1108,-1,656,1365,1342,-1,1422,1365,656,-1,1343,1354,1293,-1,1354,1343,1421,-1,1420,1097,738,-1,1097,1420,1099,-1,472,467,406,-1,472,1035,467,-1,660,734,457,-1,660,1016,734,-1,587,749,588,-1,387,749,587,-1,526,530,1367,-1,530,526,1317,-1,1431,760,1022,-1,760,1431,433,-1,767,1311,398,-1,1224,1311,767,-1,400,558,1040,-1,400,494,558,-1,762,546,1346,-1,762,764,546,-1,1347,412,1314,-1,556,412,1347,-1,1432,1311,677,-1,1432,1368,1311,-1,674,677,676,-1,674,1432,677,-1,1419,560,553,-1,1419,561,560,-1,493,551,559,-1,988,551,493,-1,404,765,989,-1,404,1039,765,-1,403,761,548,-1,403,405,761,-1,1310,1222,1419,-1,1310,1221,1222,-1,629,991,604,-1,629,1252,991,-1,1082,777,1214,-1,778,777,1082,-1,777,1369,1370,-1,1369,777,379,-1,779,534,218,-1,534,779,693,-1,1077,1213,1371,-1,1079,1213,1077,-1,666,531,794,-1,531,666,665,-1,342,790,343,-1,342,635,790,-1,794,1336,666,-1,794,793,1336,-1,993,795,335,-1,993,1316,795,-1,331,1012,332,-1,331,796,1012,-1,797,1065,165,-1,1065,797,1208,-1,324,61,1072,-1,324,972,61,-1,323,316,312,-1,321,316,323,-1,314,845,800,-1,845,314,320,-1,233,802,26,-1,233,801,802,-1,44,10,9,-1,10,44,941,-1,302,133,898,-1,943,133,302,-1,1127,807,1125,-1,1127,978,807,-1,1334,1372,209,-1,1334,1335,1372,-1,1412,1329,1373,-1,1412,1332,1329,-1,1327,1374,174,-1,1327,1328,1374,-1,1324,1391,1150,-1,1324,1325,1391,-1,808,1322,1375,-1,808,650,1322,-1,1134,1140,882,-1,1140,1134,1139,-1,1142,192,1141,-1,192,1142,190,-1,160,141,193,-1,141,160,1048,-1,1107,797,1186,-1,1107,1208,797,-1,180,814,813,-1,180,1105,814,-1,1093,1408,1094,-1,1093,305,1408,-1,819,211,815,-1,211,819,817,-1,124,815,211,-1,122,815,124,-1,899,894,1407,-1,894,120,888,-1,120,894,899,-1,1406,123,210,-1,123,1406,901,-1,38,925,937,-1,38,37,925,-1,935,1181,1404,-1,1047,1181,935,-1,836,262,97,-1,1172,262,836,-1,866,829,1415,-1,866,868,829,-1,1414,1378,189,-1,1378,1414,1154,-1,1131,183,1129,-1,1131,176,183,-1,974,269,268,-1,974,824,269,-1,1049,948,256,-1,1379,948,1049,-1,95,98,96,-1,95,142,98,-1,1418,844,245,-1,1418,1172,844,-1,833,1089,1092,-1,1089,833,835,-1,838,236,825,-1,838,837,236,-1,839,801,233,-1,801,839,804,-1,1417,259,1411,-1,827,259,1417,-1,923,1203,1380,-1,923,922,1203,-1,1056,1171,1381,-1,1056,1380,1171,-1,851,1382,1081,-1,851,850,1382,-1,1083,1079,1076,-1,1083,1082,1079,-1,127,211,128,-1,125,211,127,-1,969,1386,859,-1,1386,969,1383,-1,967,1165,1167,-1,1165,967,860,-1,860,1166,1165,-1,859,1166,860,-1,1385,1160,1384,-1,1385,1416,1160,-1,1199,1162,1387,-1,1162,1199,1201,-1,1416,1388,1158,-1,1410,1388,1416,-1,1387,890,1389,-1,1387,1161,890,-1,1409,169,1102,-1,1409,206,169,-1,205,194,1392,-1,195,194,205,-1,1393,200,199,-1,1393,957,200,-1,1176,1132,1129,-1,1132,1176,1109,-1,1151,1113,1149,-1,1151,1112,1113,-1,966,1110,864,-1,1110,966,1390,-1,1148,1391,1147,-1,1148,1150,1391,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getl2_Geo_5_145_coordIndex_12()
		{
			int[] value = {1153,965,1155,-1,1153,863,965,-1,1415,1393,1179,-1,1393,1415,1392,-1,872,289,291,-1,872,876,289,-1,1188,960,883,-1,1394,960,1188,-1,963,1413,1394,-1,1413,963,873,-1,1414,873,251,-1,1414,1413,873,-1,879,1144,962,-1,879,1395,1144,-1,1189,1412,1137,-1,1191,1412,1189,-1,1136,174,1374,-1,1136,175,174,-1,181,881,188,-1,881,181,1133,-1,879,286,1395,-1,1185,286,879,-1,809,151,261,-1,151,809,146,-1,1373,1068,1138,-1,1068,1373,152,-1,154,1377,1376,-1,889,1377,154,-1,1389,170,207,-1,170,1389,890,-1,968,1164,1168,-1,1163,1164,968,-1,1066,24,25,-1,24,1066,1121,-1,1114,167,166,-1,167,1114,162,-1,1180,1123,1122,-1,1180,830,1123,-1,1205,1118,1204,-1,1119,1118,1205,-1,1152,202,201,-1,1152,1153,202,-1,865,1177,1378,-1,865,893,1177,-1,1187,1383,1186,-1,1187,1386,1383,-1,1410,287,1388,-1,288,287,1410,-1,889,1409,1377,-1,1156,1409,889,-1,1396,956,955,-1,1376,956,1396,-1,150,1399,1095,-1,811,1399,150,-1,1096,148,95,-1,1096,149,148,-1,888,818,894,-1,888,279,818,-1,164,1071,897,-1,1071,164,76,-1,895,1407,894,-1,1407,895,140,-1,212,210,1400,-1,1406,210,212,-1,906,1417,1058,-1,114,1417,906,-1,828,950,224,-1,904,950,828,-1,240,945,241,-1,944,945,240,-1,947,1088,1402,-1,947,912,1088,-1,1087,909,1086,-1,909,1087,1085,-1,248,1174,1379,-1,1174,248,247,-1,1092,1173,833,-1,1092,1401,1173,-1,833,832,834,-1,833,1173,832,-1,90,88,87,-1,90,1403,88,-1,249,1053,242,-1,249,1175,1053,-1,1397,94,93,-1,94,1397,173,-1,231,229,842,-1,231,227,229,-1,89,1403,1050,-1,88,1403,89,-1,891,806,301,-1,891,1120,806,-1,1169,327,64,-1,327,1169,1170,-1,1076,851,1083,-1,851,1076,849,-1,848,220,58,-1,220,848,51,-1,934,30,975,-1,934,31,30,-1,1183,1404,1181,-1,936,1404,1183,-1,936,974,1404,-1,823,974,936,-1,975,32,934,-1,975,33,32,-1,27,310,28,-1,27,932,310,-1,922,920,319,-1,922,933,920,-1,37,822,270,-1,37,39,822,-1,929,1405,3,-1,929,1182,1405,-1,311,1,0,-1,311,928,1,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl2_Geo_5_145_normalIndex_1()
		{
			int[] value = {287,347,496,-1,804,1014,545,-1,1249,1091,1165,-1,976,1053,361,-1,340,249,394,-1,1290,1205,1214,-1,1240,524,1220,-1,548,1001,802,-1,1208,1001,1137,-1,186,180,129,-1,60,96,40,-1,138,223,200,-1,1240,913,774,-1,870,1155,894,-1,1157,1033,837,-1,1267,1207,1155,-1,652,385,371,-1,1220,652,1192,-1,680,371,385,-1,50,114,128,-1,682,688,239,-1,23,87,8,-1,218,87,396,-1,146,316,370,-1,288,678,327,-1,515,882,481,-1,350,293,407,-1,1055,1152,1045,-1,1055,966,1067,-1,1361,1421,1213,-1,1367,1172,1252,-1,1167,1132,1143,-1,818,558,801,-1,254,818,482,-1,132,78,15,-1,253,235,222,-1,208,230,318,-1,812,823,781,-1,141,192,263,-1,431,409,192,-1,649,469,1005,-1,1005,810,380,-1,102,378,454,-1,812,781,431,-1,378,102,373,-1,1196,1057,1011,-1,1079,1030,362,-1,1064,1226,469,-1,959,1206,1281,-1,1342,1341,1156,-1,1246,1107,1212,-1,1384,1280,1311,-1,1153,1385,1225,-1,1208,513,802,-1,273,619,528,-1,647,81,252,-1,465,399,196,-1,91,81,253,-1,588,597,433,-1,189,424,512,-1,246,170,75,-1,1124,1076,967,-1,1164,1143,1067,-1,1144,999,1123,-1,824,839,797,-1,605,315,276,-1,497,425,525,-1,1290,1214,1249,-1,1165,1091,1100,-1,30,11,16,-1,365,342,421,-1,156,67,61,-1,259,286,163,-1,17,88,44,-1,75,329,246,-1,904,852,829,-1,800,258,857,-1,933,926,934,-1,883,641,769,-1,839,816,797,-1,807,664,751,-1,469,649,321,-1,1226,1064,1406,-1,174,51,109,-1,728,744,314,-1,765,396,391,-1,10,7,8,-1,7,10,12,-1,314,744,741,-1,901,454,1008,-1,197,192,409,-1,843,538,950,-1,1015,1021,1018,-1,281,257,445,-1,650,778,445,-1,297,563,230,-1,289,486,509,-1,372,401,393,-1,939,984,877,-1,939,689,660,-1,14,73,191,-1,544,812,505,-1,671,450,409,-1,297,93,106,-1,109,93,105,-1,32,210,215,-1,176,368,513,-1,368,445,802,-1,400,294,200,-1,19,79,60,-1,344,79,340,-1,394,611,1033,-1,394,159,310,-1,1299,1219,1253,-1,684,710,882,-1,105,255,109,-1,1385,1300,1225,-1,1314,1346,1079,-1,1056,1156,915,-1,1342,1370,1341,-1,69,213,142,-1,252,81,67,-1,52,31,26,-1,625,749,641,-1,873,815,674,-1,1197,1153,766,-1,970,536,1201,-1,840,846,439,-1,1299,1268,1229,-1,1280,1384,1411,-1,1399,1421,1265,-1,1,145,287,-1,439,302,501,-1,310,301,611,-1,913,357,774,-1,267,280,265,-1,108,139,122,-1,302,113,131,-1,113,54,29,-1,750,288,322,-1,1095,1198,1137,-1,850,1083,1179,-1,415,262,633,-1,319,175,188,-1,1094,615,1039,-1,1277,1284,1271,-1,221,885,554,-1,430,644,206,-1,464,266,165,-1,593,417,306,-1,266,464,593,-1,701,250,708,-1,708,250,219,-1,238,221,227,-1,742,1044,680,-1,1320,1430,1357,-1,1305,1118,1318,-1,682,1191,1141,-1,1032,1350,1216,-1,1250,1113,1298,-1,1119,678,750,-1,1139,1149,1085,-1,389,279,379,-1,352,468,379,-1,207,161,58,-1,179,262,64,-1,241,284,299,-1,1288,1368,1312,-1,1288,1418,1368,-1,692,462,777,-1,484,1052,607,-1,1180,1327,1210,-1,1224,1194,1068,-1,562,610,632,-1,1293,1046,1158,-1,871,436,517,-1,1234,1070,997,-1,927,1071,653,-1,1013,1059,473,-1,637,1013,432,-1,1049,1331,1272,-1,687,632,923,-1,1059,1331,1049,-1,423,369,236,-1,1048,406,349,-1,927,205,364,-1,226,432,473,-1,271,212,89,-1,325,244,182,-1,202,134,160,-1,201,578,673,-1,119,133,47,-1,278,578,201,-1,644,292,206,-1,795,1148,1227,-1,788,910,522,-1,788,1074,1181,-1,1231,932,908,-1,994,993,860,-1,1106,922,1010,-1,819,668,640,-1,662,366,292,-1,352,284,270,-1,298,472,305,-1,614,608,600,-1,1154,1117,826,-1,902,1026,917,-1,175,219,150,-1,345,319,307,-1,1416,1419,1402,-1,1084,1061,1019,-1,1402,1355,1332,-1,1360,1273,1373,-1,1332,1355,1415,-1,1185,1125,1358,-1,899,1125,1130,-1,598,1178,1241,-1,668,799,584,-1,759,779,621,-1,1048,1115,1071,-1,25,364,205,-1,1325,1381,1256,-1,1211,1235,1031,-1,728,937,1118,-1,1423,1426,1424,-1,1432,1417,1424,-1,744,1118,1305,-1,931,436,533,-1,1070,1158,1233,-1,490,987,571,-1,418,471,410,-1,1072,949,929,-1,1047,1043,961,-1,506,610,449,-1,754,532,748,-1,632,610,888,-1,888,1028,923,-1,753,1070,963,-1,1193,1128,1328,-1,1348,1381,1325,-1,1215,1232,1392,-1,644,990,1063,-1,1235,1138,1031,-1,1083,850,415,-1,1407,1398,1431,-1,34,13,64,-1,1366,1097,1094,-1,1111,1271,1039,-1,135,82,144,-1,556,710,684,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl2_Geo_5_145_normalIndex_2()
		{
			int[] value = {921,1035,395,-1,1227,1340,1325,-1,369,349,68,-1,86,82,35,-1,1170,1106,1247,-1,1181,1273,1360,-1,1408,1405,1425,-1,584,799,749,-1,572,657,639,-1,251,508,665,-1,251,233,508,-1,333,325,220,-1,217,202,135,-1,133,320,22,-1,1044,707,680,-1,1431,1303,1179,-1,1111,864,1116,-1,554,1017,593,-1,1162,1133,1173,-1,1326,1308,1295,-1,1401,1319,1374,-1,763,1145,750,-1,295,241,326,-1,305,434,233,-1,76,251,320,-1,746,1101,763,-1,1374,1319,1301,-1,1136,1162,1111,-1,864,593,1017,-1,1173,1251,1286,-1,1303,1175,896,-1,511,593,464,-1,150,190,165,-1,219,319,703,-1,134,202,22,-1,119,216,339,-1,182,244,217,-1,957,591,627,-1,277,220,448,-1,320,251,278,-1,743,639,674,-1,799,638,780,-1,1125,662,292,-1,1360,1377,1425,-1,599,1066,1242,-1,434,907,233,-1,1247,1285,1373,-1,39,209,68,-1,135,35,82,-1,212,271,448,-1,406,21,68,-1,578,665,954,-1,508,908,932,-1,1239,996,1133,-1,1284,1398,1388,-1,1110,1279,1078,-1,1410,1398,1407,-1,1391,1372,1336,-1,896,1175,644,-1,1063,1104,1276,-1,1392,1232,1210,-1,1224,1193,1348,-1,1340,1227,1148,-1,1047,1041,1073,-1,1087,1060,1075,-1,975,1068,1065,-1,685,624,775,-1,890,533,656,-1,1104,990,775,-1,867,975,891,-1,975,1034,1060,-1,1221,1326,1295,-1,1203,686,741,-1,1417,1382,1318,-1,1344,1318,1126,-1,1316,1430,1320,-1,765,937,728,-1,1171,1173,1286,-1,1204,1386,1328,-1,1013,637,1086,-1,653,1054,1086,-1,653,1071,1054,-1,756,757,651,-1,668,974,575,-1,519,573,620,-1,495,461,521,-1,669,761,521,-1,534,566,499,-1,899,1130,1062,-1,1185,1188,1130,-1,1393,1329,1261,-1,1345,1324,1343,-1,1345,1420,1363,-1,1375,1322,1377,-1,1202,1274,1264,-1,1187,1338,1228,-1,1392,1425,1405,-1,633,262,179,-1,965,1186,895,-1,993,941,809,-1,600,634,614,-1,137,298,305,-1,366,298,137,-1,1261,1263,1185,-1,573,499,620,-1,783,1012,814,-1,1200,1199,1259,-1,1170,908,907,-1,578,954,673,-1,278,46,22,-1,395,275,162,-1,683,351,684,-1,278,665,578,-1,244,325,435,-1,423,236,312,-1,212,220,86,-1,205,402,432,-1,927,364,406,-1,369,628,879,-1,1245,1086,1054,-1,1046,1293,983,-1,1309,1086,1245,-1,1233,1204,1070,-1,1068,867,1193,-1,1210,1065,1194,-1,390,607,777,-1,523,782,488,-1,988,1121,1255,-1,1418,1288,1294,-1,1060,1087,987,-1,1043,888,798,-1,949,754,748,-1,416,627,333,-1,299,284,352,-1,307,491,345,-1,199,207,58,-1,953,586,996,-1,921,389,602,-1,710,1023,1085,-1,1009,679,678,-1,1126,1024,1216,-1,1426,1423,1409,-1,1161,1326,1221,-1,1118,937,1126,-1,1305,1382,1337,-1,1221,1116,1017,-1,1036,1141,785,-1,707,1044,238,-1,306,274,266,-1,274,164,165,-1,885,221,1161,-1,446,491,850,-1,1337,1404,1369,-1,221,190,150,-1,1307,1286,1251,-1,1271,1284,1182,-1,479,384,938,-1,307,188,262,-1,633,1147,1209,-1,1201,1003,1144,-1,1280,1105,1197,-1,763,370,746,-1,131,113,57,-1,310,267,301,-1,837,611,376,-1,477,501,337,-1,287,548,129,-1,1290,1399,1265,-1,703,1214,708,-1,1300,1385,1411,-1,1246,1253,1189,-1,1253,1219,1189,-1,840,477,803,-1,1008,1217,1212,-1,1201,1354,1197,-1,690,674,815,-1,749,780,747,-1,1124,329,513,-1,67,81,4,-1,832,193,383,-1,66,149,189,-1,1403,1346,1236,-1,1370,1397,1299,-1,1079,1403,1030,-1,480,528,766,-1,970,619,536,-1,1397,1390,1299,-1,42,148,249,-1,96,332,361,-1,27,42,49,-1,802,445,257,-1,313,445,368,-1,91,210,32,-1,105,230,208,-1,197,228,45,-1,505,560,778,-1,630,872,792,-1,273,105,208,-1,360,372,393,-1,358,386,346,-1,335,318,563,-1,650,836,778,-1,215,467,313,-1,778,543,445,-1,950,538,489,-1,962,489,563,-1,1018,1025,979,-1,538,386,392,-1,915,1008,378,-1,1008,454,378,-1,139,108,214,-1,686,232,128,-1,12,10,114,-1,308,114,90,-1,112,2,116,-1,728,500,765,-1,265,280,153,-1,106,45,228,-1,348,793,419,-1,348,381,810,-1,381,380,810,-1,786,676,847,-1,866,829,859,-1,947,900,681,-1,387,331,542,-1,331,242,246,-1,170,104,38,-1,41,44,88,-1,84,92,101,-1,52,107,61,-1,231,247,171,-1,247,231,334,-1,243,204,95,-1,83,31,4,-1,1367,1249,1260,-1,537,245,470,-1,476,433,597,-1,797,796,824,-1,1353,1144,1123,-1,1123,1076,1124,-1,246,167,170,-1,866,904,829,-1,681,900,655,-1,383,193,196,-1,767,480,855,-1,1153,1105,1411,-1,1269,1164,1040,-1,684,882,683,-1,855,766,1153,-1,1002,1107,1189,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl2_Geo_5_145_normalIndex_3()
		{
			int[] value = {1120,1196,1011,-1,1341,1212,1217,-1,1004,1005,1226,-1,1064,469,362,-1,552,806,1057,-1,381,348,185,-1,453,141,388,-1,348,419,121,-1,263,166,901,-1,409,450,228,-1,222,235,318,-1,981,817,1051,-1,183,304,203,-1,426,346,386,-1,660,689,486,-1,803,960,1146,-1,293,481,882,-1,1100,906,1014,-1,1218,1092,1189,-1,1055,1067,1152,-1,882,407,293,-1,350,407,710,-1,679,327,678,-1,407,882,710,-1,218,396,308,-1,268,524,214,-1,308,500,314,-1,97,128,232,-1,524,376,214,-1,1192,652,371,-1,1091,1249,1214,-1,837,1033,611,-1,1265,1155,1157,-1,268,652,1220,-1,60,344,332,-1,186,129,257,-1,496,906,1095,-1,63,28,97,-1,291,652,268,-1,1290,1220,1205,-1,870,344,869,-1,394,249,148,-1,955,400,498,-1,224,545,347,-1,1172,1165,1014,-1,285,545,224,-1,287,496,982,-1,285,804,545,-1,1172,1260,1165,-1,498,1053,955,-1,148,159,394,-1,180,125,123,-1,1290,1240,1220,-1,63,97,187,-1,496,1095,982,-1,281,186,257,-1,98,138,59,-1,27,99,1,-1,60,332,96,-1,268,1220,524,-1,1265,1267,1155,-1,1157,1155,1131,-1,1192,371,707,-1,652,291,385,-1,524,357,376,-1,97,50,128,-1,314,114,308,-1,214,108,268,-1,23,8,7,-1,308,90,218,-1,679,428,327,-1,710,714,350,-1,830,1045,515,-1,439,846,481,-1,1361,1213,1237,-1,1100,1014,1165,-1,1143,1132,1129,-1,1114,803,1146,-1,689,509,486,-1,962,1025,950,-1,538,426,386,-1,140,15,169,-1,140,151,15,-1,304,444,203,-1,979,671,912,-1,981,626,817,-1,318,335,222,-1,230,563,318,-1,409,228,197,-1,166,454,901,-1,121,185,348,-1,388,918,453,-1,1057,1079,552,-1,1030,1064,362,-1,1226,1206,1004,-1,1341,1246,1212,-1,1092,1002,1189,-1,882,1089,683,-1,1411,1385,1153,-1,256,252,156,-1,383,196,399,-1,530,536,256,-1,172,229,234,-1,866,944,904,-1,246,242,167,-1,1124,1282,1123,-1,1353,1123,1282,-1,597,642,476,-1,802,513,368,-1,1367,1290,1249,-1,32,83,4,-1,95,184,243,-1,247,334,343,-1,231,171,158,-1,61,67,52,-1,84,103,92,-1,88,107,41,-1,38,75,170,-1,246,329,331,-1,331,510,542,-1,681,773,947,-1,900,947,940,-1,866,859,926,-1,847,861,805,-1,786,675,676,-1,348,810,793,-1,960,1008,1146,-1,228,297,106,-1,153,125,265,-1,218,8,87,-1,114,50,12,-1,741,686,128,-1,903,1008,960,-1,538,392,489,-1,1018,1021,1025,-1,962,950,489,-1,650,445,313,-1,778,903,543,-1,836,801,778,-1,563,489,335,-1,273,194,105,-1,195,439,283,-1,630,542,872,-1,105,93,230,-1,91,222,210,-1,176,313,368,-1,802,257,548,-1,98,59,40,-1,27,49,24,-1,361,157,96,-1,49,42,249,-1,302,439,195,-1,619,465,536,-1,480,766,855,-1,1079,1346,1403,-1,1403,1236,1390,-1,66,189,156,-1,383,914,832,-1,4,52,67,-1,1124,569,329,-1,747,641,749,-1,690,718,674,-1,1153,1197,1105,-1,1008,1212,1146,-1,803,1114,840,-1,1092,1218,1311,-1,1411,1229,1300,-1,703,1091,1214,-1,1265,1240,1290,-1,971,837,913,-1,548,257,129,-1,376,357,837,-1,774,357,524,-1,310,280,267,-1,195,113,302,-1,195,54,113,-1,763,322,370,-1,1280,1197,1354,-1,1201,1144,1353,-1,850,1179,896,-1,1209,889,633,-1,415,307,262,-1,1083,889,1209,-1,938,1031,479,-1,1182,1039,1271,-1,564,1097,561,-1,227,221,150,-1,1161,785,1141,-1,1369,1243,1337,-1,446,326,491,-1,1372,1296,1336,-1,1431,1335,1407,-1,221,785,1161,-1,266,274,165,-1,864,417,593,-1,219,175,319,-1,1044,785,238,-1,1221,1017,885,-1,1203,1305,1337,-1,1118,1126,1318,-1,1221,885,1161,-1,1126,1216,1344,-1,710,556,1023,-1,678,1119,1009,-1,710,1085,714,-1,1139,1023,556,-1,279,352,379,-1,244,339,216,-1,307,415,491,-1,556,953,1139,-1,333,277,416,-1,929,949,748,-1,961,1043,798,-1,490,414,475,-1,1060,987,891,-1,1262,1418,1294,-1,1230,988,1255,-1,390,777,462,-1,1065,1068,1194,-1,1204,963,1070,-1,1309,1013,1086,-1,983,517,1046,-1,879,349,369,-1,1048,927,406,-1,432,226,205,-1,220,182,86,-1,244,435,339,-1,351,556,684,-1,320,278,22,-1,1273,1181,1170,-1,783,521,761,-1,783,1090,1012,-1,573,534,499,-1,1263,1188,1185,-1,137,292,366,-1,137,305,65,-1,809,860,993,-1,1063,920,644,-1,535,633,179,-1,1405,1347,1392,-1,1176,1264,1199,-1,1187,1248,1338,-1,1264,1176,1202,-1,1377,1360,1375,-1,1363,1324,1345,-1,1343,1330,1345,-1,1261,1358,1393,-1,1130,1125,1185,-1,1062,876,899,-1,534,575,566,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl2_Geo_5_145_normalIndex_4()
		{
			int[] value = {521,461,669,-1,519,570,573,-1,668,819,974,-1,629,576,585,-1,651,585,756,-1,637,653,1086,-1,277,448,416,-1,1328,1128,1204,-1,1286,1277,1171,-1,1350,1423,1216,-1,1417,1318,1424,-1,1305,1203,741,-1,416,448,533,-1,975,1060,891,-1,867,490,475,-1,891,490,867,-1,990,890,656,-1,775,656,685,-1,975,867,1068,-1,1148,1224,1340,-1,1149,996,1239,-1,656,871,923,-1,1386,1204,1233,-1,1224,1348,1340,-1,1392,1210,1327,-1,1063,990,1104,-1,1175,990,644,-1,1410,1388,1398,-1,1110,1334,1279,-1,1388,1182,1284,-1,135,39,35,-1,932,795,508,-1,665,925,954,-1,406,68,349,-1,271,549,448,-1,39,68,21,-1,1273,1247,1373,-1,907,908,233,-1,599,522,1066,-1,1425,1352,1360,-1,920,1125,292,-1,780,749,799,-1,674,718,743,-1,251,76,233,-1,220,212,448,-1,591,333,627,-1,217,144,182,-1,395,119,339,-1,339,586,395,-1,22,46,134,-1,708,219,703,-1,165,34,150,-1,1303,896,1179,-1,1096,936,957,-1,1017,1116,864,-1,885,1017,554,-1,1162,1171,1111,-1,1133,1319,1239,-1,1319,1379,1239,-1,746,1042,1101,-1,76,320,133,-1,65,305,233,-1,295,326,446,-1,763,1101,1145,-1,1401,1379,1319,-1,1301,1319,1133,-1,1326,1376,1308,-1,1173,1171,1162,-1,554,593,511,-1,1116,1136,1111,-1,936,1133,996,-1,1179,1289,1431,-1,165,13,34,-1,22,47,133,-1,202,127,135,-1,996,586,591,-1,233,908,508,-1,665,278,251,-1,657,674,639,-1,749,625,584,-1,1408,1425,1377,-1,1360,1352,1181,-1,1170,1247,1273,-1,86,35,89,-1,549,271,377,-1,68,168,369,-1,201,134,46,-1,1325,1163,1227,-1,921,395,586,-1,586,953,921,-1,135,144,217,-1,1111,1039,864,-1,1094,1351,1366,-1,1366,1351,1413,-1,1083,415,889,-1,850,491,415,-1,1235,1302,1138,-1,1392,1347,1215,-1,1340,1348,1325,-1,1328,1348,1193,-1,963,782,753,-1,923,632,888,-1,610,798,888,-1,754,506,532,-1,610,562,449,-1,1047,961,1041,-1,1072,929,1127,-1,1193,867,1128,-1,990,656,775,-1,414,488,782,-1,418,412,471,-1,490,891,987,-1,1070,1234,1158,-1,533,448,931,-1,1305,741,744,-1,1432,1424,1426,-1,1423,1344,1216,-1,1118,744,728,-1,1211,1031,938,-1,1325,1256,1186,-1,1349,1309,1245,-1,927,1048,1071,-1,759,621,612,-1,614,616,594,-1,584,640,668,-1,503,519,504,-1,598,1241,646,-1,573,581,534,-1,899,662,1125,-1,1263,1261,1329,-1,1415,1387,1332,-1,1375,1360,1373,-1,1332,1400,1402,-1,1026,1084,1019,-1,1400,1416,1402,-1,64,150,34,-1,1026,1019,917,-1,430,295,446,-1,826,692,1154,-1,614,594,608,-1,298,422,472,-1,662,518,366,-1,1358,1261,1185,-1,1010,1247,1106,-1,860,848,994,-1,1180,1352,1327,-1,1231,1038,932,-1,1181,1352,788,-1,788,522,599,-1,1227,925,795,-1,644,920,292,-1,46,278,201,-1,556,351,309,-1,201,673,272,-1,202,160,127,-1,377,152,473,-1,182,220,325,-1,212,86,89,-1,473,152,226,-1,927,402,205,-1,349,879,1048,-1,423,628,369,-1,923,997,687,-1,931,1049,1272,-1,1013,473,432,-1,653,402,927,-1,1204,1128,963,-1,871,517,983,-1,1158,1234,1293,-1,687,562,632,-1,1068,1193,1224,-1,1210,1194,1180,-1,484,691,1052,-1,692,452,462,-1,220,277,333,-1,241,299,261,-1,491,326,345,-1,262,188,64,-1,161,13,58,-1,1035,921,602,-1,389,379,602,-1,1149,1239,1085,-1,1085,1023,1139,-1,1119,750,1145,-1,1250,1042,1113,-1,1024,1032,1216,-1,1423,1350,1409,-1,1141,688,682,-1,1305,1318,1382,-1,742,1036,1044,-1,238,785,221,-1,1044,1036,785,-1,274,225,164,-1,593,306,266,-1,539,274,561,-1,554,511,190,-1,1235,1211,1296,-1,1391,1334,1366,-1,1303,1251,1244,-1,295,430,206,-1,644,430,896,-1,221,554,190,-1,219,227,150,-1,1039,1182,1094,-1,188,307,319,-1,633,889,415,-1,1137,982,1095,-1,750,322,763,-1,57,113,29,-1,122,56,108,-1,265,302,267,-1,913,837,357,-1,301,376,611,-1,287,129,1,-1,680,707,371,-1,1411,1105,1280,-1,1299,1229,1219,-1,1212,1107,1114,-1,970,1201,1197,-1,766,970,1197,-1,674,657,873,-1,641,883,625,-1,52,4,31,-1,67,156,252,-1,142,11,69,-1,1342,1397,1370,-1,1079,1057,1314,-1,105,194,255,-1,515,481,846,-1,1253,1370,1299,-1,611,394,310,-1,1033,820,394,-1,344,60,79,-1,1367,1421,1399,-1,1,42,27,-1,347,545,1014,-1,294,130,200,-1,80,176,513,-1,32,215,83,-1,109,51,93,-1,297,230,93,-1,409,752,671,-1,505,404,544,-1,181,14,191,-1,660,897,939,-1,877,823,939,-1,372,460,401,-1,509,367,289,-1,543,281,445,-1,979,1025,962,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getl2_Geo_5_145_normalIndex_5()
		{
			int[] value = {1015,930,1021,-1,843,426,538,-1,197,263,192,-1,1008,903,901,-1,314,741,128,-1,7,12,0,-1,218,90,8,-1,391,776,765,-1,314,500,728,-1,245,174,109,-1,185,121,85,-1,321,362,469,-1,649,380,321,-1,807,791,664,-1,883,769,792,-1,800,191,258,-1,331,329,569,-1,569,510,331,-1,104,170,167,-1,17,70,88,-1,286,211,163,-1,61,66,156,-1,425,365,421,-1,30,16,33,-1,1399,1290,1367,-1,425,421,525,-1,982,1137,1001,-1,276,740,605,-1,824,833,839,-1,1144,946,999,-1,966,1164,1067,-1,1164,1166,1143,-1,1124,967,569,-1,792,769,630,-1,512,303,189,-1,433,440,588,-1,536,465,196,-1,252,359,647,-1,528,194,273,-1,1208,1124,513,-1,1225,855,1153,-1,1129,1089,882,-1,959,1281,1056,-1,1246,1189,1107,-1,1341,1217,1156,-1,959,1004,1206,-1,1226,1005,469,-1,362,552,1079,-1,1057,806,1011,-1,812,431,505,-1,166,102,454,-1,959,373,419,-1,380,649,1005,-1,450,297,228,-1,263,388,141,-1,823,877,781,-1,318,235,208,-1,222,91,253,-1,132,15,151,-1,818,801,836,-1,1114,1146,1212,-1,1167,1143,1198,-1,1100,1095,906,-1,1367,1260,1172,-1,1421,1266,1213,-1,830,515,398,-1,830,1055,1045,-1,350,195,283,-1,350,283,293,-1,515,1045,882,-1,288,750,678,-1,146,370,178,-1,87,391,396,-1,688,291,239,-1,114,314,128,-1,77,2,112,-1,680,385,742,-1,1205,1220,1192,-1,1214,1183,708,-1,708,1183,701,-1,837,971,1157,-1,1157,1131,1033,-1,1265,1157,971,-1,1208,802,1001,-1,1240,774,524,-1,159,148,153,-1,394,820,340,-1,1053,498,361,-1,1165,1260,1249,-1,804,1172,1014,-1,909,400,955,-1,909,294,400,-1,123,153,148,-1,123,125,153,-1,223,361,498,-1,157,361,223,-1,442,734,437,-1,734,442,730,-1,500,396,765,-1,308,396,500,-1,100,428,111,-1,327,428,100,-1,428,727,408,-1,727,428,679,-1,481,283,439,-1,481,293,283,-1,1267,1237,1207,-1,1267,1361,1237,-1,882,1152,1129,-1,882,1045,1152,-1,254,467,282,-1,254,482,467,-1,1051,969,1015,-1,1051,817,969,-1,444,375,203,-1,444,745,375,-1,486,315,660,-1,315,486,169,-1,544,282,401,-1,544,404,282,-1,346,405,317,-1,426,405,346,-1,981,740,626,-1,981,985,740,-1,132,203,78,-1,132,183,203,-1,1018,912,1006,-1,1018,979,912,-1,897,740,985,-1,897,605,740,-1,324,183,132,-1,183,324,317,-1,419,1004,959,-1,1004,419,793,-1,381,85,380,-1,185,85,381,-1,1268,1300,1229,-1,1268,1270,1300,-1,1219,1411,1384,-1,1219,1229,1411,-1,1314,1196,1278,-1,1314,1057,1196,-1,260,252,256,-1,260,359,252,-1,647,914,527,-1,832,914,647,-1,709,672,642,-1,713,672,709,-1,483,300,553,-1,240,300,483,-1,458,149,147,-1,149,458,451,-1,657,945,873,-1,729,945,657,-1,900,617,655,-1,911,617,900,-1,842,892,859,-1,853,892,842,-1,1166,1198,1143,-1,1166,1137,1198,-1,1007,737,989,-1,1007,735,737,-1,1058,683,1089,-1,683,1058,695,-1,1282,1362,1353,-1,1362,1282,1371,-1,967,968,875,-1,968,967,989,-1,720,659,661,-1,720,719,659,-1,705,642,597,-1,709,642,705,-1,378,1056,915,-1,373,1056,378,-1,373,959,1056,-1,507,787,587,-1,787,507,772,-1,80,83,176,-1,83,80,31,-1,354,204,243,-1,354,338,204,-1,354,413,338,-1,354,403,413,-1,456,343,334,-1,343,456,438,-1,330,231,198,-1,330,334,231,-1,33,70,30,-1,70,33,88,-1,286,184,211,-1,286,243,184,-1,36,103,18,-1,92,103,36,-1,48,158,120,-1,94,158,48,-1,101,104,167,-1,92,104,101,-1,242,387,264,-1,242,331,387,-1,857,934,800,-1,857,933,934,-1,617,880,772,-1,617,911,880,-1,916,838,862,-1,916,886,838,-1,947,948,940,-1,947,919,948,-1,237,677,773,-1,237,181,677,-1,791,672,664,-1,672,791,636,-1,841,833,824,-1,841,825,833,-1,841,865,874,-1,841,821,865,-1,811,827,865,-1,811,789,827,-1,822,512,424,-1,822,764,512,-1,424,835,822,-1,424,451,835,-1,805,786,847,-1,786,805,790,-1,675,690,815,-1,675,786,690,-1,1002,846,840,-1,1002,1092,846,-1,400,223,498,-1,400,200,223,-1,23,77,87,-1,77,23,2,-1,50,28,12,-1,50,97,28,-1,268,239,291,-1,239,268,187,-1,115,29,117,-1,115,9,29,-1,166,197,45,-1,166,263,197,-1,962,671,979,-1,671,962,563,-1,353,489,392,-1,489,353,335,-1,356,372,360,-1,356,367,372,-1,1051,995,981,-1,995,1051,1006,-1,823,544,631,-1,544,823,812,-1,350,146,195,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getl2_Geo_5_145_normalIndex_6()
		{
			int[] value = {146,350,316,-1,420,259,341,-1,420,342,259,-1,264,258,177,-1,258,264,336,-1,872,883,792,-1,872,942,883,-1,285,118,290,-1,118,285,143,-1,906,347,1014,-1,906,496,347,-1,1237,955,1053,-1,1213,955,1237,-1,1040,515,846,-1,1040,398,515,-1,528,970,766,-1,970,528,619,-1,1390,1297,1299,-1,1390,1236,1297,-1,172,240,154,-1,240,234,300,-1,172,234,240,-1,303,156,189,-1,156,303,256,-1,530,893,1003,-1,893,530,550,-1,26,38,41,-1,26,75,38,-1,95,48,43,-1,48,95,94,-1,443,514,493,-1,443,413,514,-1,715,838,853,-1,715,717,838,-1,587,700,525,-1,587,706,700,-1,493,699,697,-1,514,699,493,-1,713,664,672,-1,713,739,664,-1,667,723,654,-1,667,725,723,-1,960,543,903,-1,960,803,543,-1,1384,1189,1219,-1,1384,1218,1189,-1,1384,1311,1218,-1,840,501,477,-1,840,439,501,-1,37,57,29,-1,37,56,57,-1,703,1050,1091,-1,703,696,1050,-1,946,738,732,-1,951,738,946,-1,1031,529,479,-1,1031,1138,529,-1,1110,561,1097,-1,1110,539,561,-1,1161,1369,1326,-1,1161,1243,1369,-1,1431,1251,1303,-1,1431,1307,1251,-1,1296,1279,1336,-1,1296,1211,1279,-1,1410,1335,1364,-1,1335,1410,1407,-1,1364,1291,1313,-1,1291,1364,1335,-1,1334,1336,1279,-1,1334,1391,1336,-1,1424,1344,1423,-1,1318,1344,1424,-1,1316,992,1022,-1,1320,992,1316,-1,1101,1317,1145,-1,1315,1317,1101,-1,556,921,953,-1,556,389,921,-1,1149,953,996,-1,1149,1139,953,-1,199,164,225,-1,199,58,164,-1,279,556,309,-1,279,389,556,-1,635,685,881,-1,624,685,635,-1,1069,685,1028,-1,685,1069,881,-1,490,412,414,-1,490,571,412,-1,1418,1135,1368,-1,1154,1135,1418,-1,961,754,949,-1,961,798,754,-1,881,964,635,-1,881,1177,964,-1,881,1069,1177,-1,1027,1087,1112,-1,1087,1027,987,-1,1230,1312,1368,-1,1230,1255,1312,-1,1027,988,670,-1,1027,1121,988,-1,1262,1127,929,-1,1127,1262,1294,-1,1349,1054,1071,-1,1054,1349,1245,-1,22,217,47,-1,22,202,217,-1,236,168,155,-1,236,369,168,-1,1181,1174,1170,-1,1181,1074,1174,-1,1184,1231,1174,-1,1231,1184,1242,-1,1200,1109,1199,-1,1109,1200,1103,-1,813,941,1037,-1,941,813,794,-1,1222,978,956,-1,978,1222,1292,-1,623,884,540,-1,623,868,884,-1,1090,761,1159,-1,1090,783,761,-1,503,487,519,-1,503,516,487,-1,374,696,382,-1,696,374,695,-1,555,494,466,-1,555,559,494,-1,298,427,422,-1,366,427,298,-1,72,137,65,-1,62,137,72,-1,466,518,555,-1,447,518,466,-1,771,720,770,-1,771,719,720,-1,809,705,860,-1,705,809,709,-1,377,1049,549,-1,377,1059,1049,-1,377,473,1059,-1,648,928,845,-1,658,928,648,-1,1347,1356,1276,-1,1405,1356,1347,-1,1228,1080,1187,-1,1228,1093,1080,-1,1016,1080,1093,-1,1016,1029,1080,-1,1088,980,1099,-1,998,980,1088,-1,1202,1102,1238,-1,1202,1099,1102,-1,1223,1169,1275,-1,1223,1140,1169,-1,1248,1140,1223,-1,1248,1187,1140,-1,1330,1396,1414,-1,1396,1330,1343,-1,1274,1383,1310,-1,1383,1274,1339,-1,1329,1324,1263,-1,1324,1329,1343,-1,566,974,1098,-1,575,974,566,-1,669,516,755,-1,669,461,516,-1,577,520,551,-1,577,574,520,-1,526,495,521,-1,463,495,526,-1,580,547,592,-1,580,541,547,-1,658,1012,928,-1,814,1012,658,-1,504,566,598,-1,504,499,566,-1,534,668,575,-1,668,534,581,-1,594,813,878,-1,594,616,813,-1,634,596,601,-1,634,613,596,-1,956,582,606,-1,582,956,978,-1,622,762,596,-1,784,762,622,-1,557,583,568,-1,557,582,583,-1,666,585,609,-1,585,666,756,-1,609,576,595,-1,585,576,609,-1,868,757,756,-1,623,757,868,-1,586,435,591,-1,586,339,435,-1,1024,776,1032,-1,776,1024,765,-1,1357,1409,1350,-1,1430,1409,1357,-1,1404,1382,1417,-1,1404,1337,1382,-1,1191,1161,1141,-1,1243,1161,1191,-1,1401,1317,1315,-1,1401,1422,1317,-1,1233,1272,1386,-1,1233,1158,1272,-1,782,475,414,-1,867,475,782,-1,1150,990,1175,-1,990,1150,890,-1,775,973,1104,-1,775,624,973,-1,1112,1075,1108,-1,1087,1075,1112,-1,1034,1082,1047,-1,1034,1081,1082,-1,1224,1180,1194,-1,1224,1148,1180,-1,523,753,782,-1,753,523,531,-1,1298,1085,1239,-1,1113,1085,1298,-1,1169,1012,1090,-1,1169,1084,1012,-1,1363,1257,1241,-1,1363,1420,1257,-1,819,1062,974,-1,819,876,1062,-1,1232,1065,1210,-1,1065,1232,1081,-1,1313,1147,1142,-1,1291,1147,1313,-1,564,274,306,-1,564,561,274,-1,1048,1020,1115,-1,879,1020,1048,-1,673,312,272,-1,423,673,965,-1,312,673,423,-1,21,364,25,-1,364,21,406,-1,25,39,21,-1,35,39,25,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getl2_Geo_5_145_normalIndex_7()
		{
			int[] value = {173,160,155,-1,173,127,160,-1,1292,1365,1419,-1,1292,1222,1365,-1,434,492,540,-1,434,485,492,-1,920,1358,1125,-1,1356,1358,920,-1,1387,1414,1396,-1,1415,1414,1387,-1,1238,1093,1228,-1,1102,1093,1238,-1,711,638,603,-1,711,780,638,-1,577,722,574,-1,577,721,722,-1,935,704,917,-1,935,702,704,-1,693,887,854,-1,693,694,887,-1,768,726,759,-1,768,724,726,-1,743,719,771,-1,743,718,719,-1,325,591,435,-1,591,325,333,-1,384,225,459,-1,199,225,384,-1,1096,1150,1244,-1,1096,957,1150,-1,1221,1136,1116,-1,1295,1136,1221,-1,1162,1301,1133,-1,1301,1162,1308,-1,1298,1379,1250,-1,1298,1239,1379,-1,472,434,305,-1,485,434,472,-1,345,382,319,-1,345,261,382,-1,1315,1379,1401,-1,1315,1250,1379,-1,1376,1301,1308,-1,1301,1376,1374,-1,1295,1162,1136,-1,1295,1308,1162,-1,936,1173,1133,-1,936,1096,1173,-1,127,136,135,-1,127,173,136,-1,144,86,182,-1,144,82,86,-1,784,720,723,-1,770,720,784,-1,726,779,759,-1,726,739,779,-1,697,887,694,-1,887,697,943,-1,917,700,902,-1,917,704,700,-1,574,717,592,-1,574,722,717,-1,494,625,731,-1,584,625,494,-1,1339,1228,1338,-1,1238,1228,1339,-1,1396,1394,1387,-1,1396,1393,1394,-1,1242,958,599,-1,1242,1184,958,-1,1287,1419,1416,-1,1287,1292,1419,-1,1134,1103,1200,-1,1134,1037,1103,-1,272,155,160,-1,272,236,155,-1,236,272,312,-1,879,895,1020,-1,628,895,879,-1,1277,1111,1171,-1,1111,1277,1271,-1,539,225,274,-1,539,459,225,-1,529,179,161,-1,179,529,535,-1,1209,1291,1289,-1,1209,1147,1291,-1,1378,1348,1328,-1,1381,1348,1378,-1,997,753,687,-1,997,1070,753,-1,819,559,876,-1,640,559,819,-1,1254,1241,1178,-1,1254,1363,1241,-1,1275,1090,1159,-1,1275,1169,1090,-1,1113,714,1085,-1,1042,714,1113,-1,746,714,1042,-1,1388,1094,1182,-1,1388,1351,1094,-1,506,452,532,-1,506,449,452,-1,429,531,523,-1,429,441,531,-1,1041,949,1072,-1,1041,961,949,-1,414,418,488,-1,414,412,418,-1,533,871,656,-1,533,436,871,-1,448,1049,931,-1,1049,448,549,-1,1428,1401,1395,-1,1422,1401,1428,-1,1427,1426,1429,-1,1427,1432,1426,-1,623,639,757,-1,639,623,572,-1,595,568,583,-1,576,568,595,-1,756,922,868,-1,756,666,922,-1,568,567,557,-1,604,567,568,-1,622,613,567,-1,622,596,613,-1,606,952,956,-1,952,606,608,-1,601,762,768,-1,601,596,762,-1,608,878,952,-1,608,594,878,-1,799,581,638,-1,799,668,581,-1,1098,598,566,-1,598,1098,1178,-1,1159,669,1195,-1,669,1159,761,-1,581,603,638,-1,581,573,603,-1,551,463,526,-1,520,463,551,-1,503,755,516,-1,755,503,646,-1,1254,1324,1363,-1,1254,1263,1324,-1,1387,1322,1332,-1,1394,1322,1387,-1,1238,1274,1202,-1,1339,1274,1238,-1,1304,1223,1306,-1,1304,1248,1223,-1,1332,1375,1400,-1,1322,1375,1332,-1,1102,980,991,-1,1102,1099,980,-1,1099,1176,1088,-1,1099,1202,1176,-1,1080,1019,1061,-1,1080,1029,1019,-1,1373,1400,1375,-1,1400,1373,1416,-1,1283,1199,1264,-1,1283,1259,1199,-1,867,963,1128,-1,867,782,963,-1,1088,1199,1109,-1,1088,1176,1199,-1,648,721,577,-1,648,716,721,-1,607,1135,777,-1,1052,1135,607,-1,576,604,568,-1,576,629,604,-1,736,447,466,-1,737,447,736,-1,62,275,270,-1,72,275,62,-1,72,162,275,-1,735,422,427,-1,735,733,422,-1,555,876,559,-1,555,899,876,-1,299,382,261,-1,382,299,374,-1,712,580,715,-1,712,589,580,-1,884,922,1106,-1,868,922,884,-1,977,1292,1287,-1,977,978,1292,-1,878,1037,1134,-1,878,813,1037,-1,860,698,848,-1,698,860,705,-1,1170,1231,908,-1,1174,1231,1170,-1,788,958,1074,-1,788,599,958,-1,1148,932,1180,-1,795,932,1148,-1,1074,1184,1174,-1,1074,958,1184,-1,1071,1323,1349,-1,1071,1115,1323,-1,1331,1013,1309,-1,1013,1331,1059,-1,923,685,656,-1,923,1028,685,-1,1046,436,1158,-1,436,1046,517,-1,1127,1288,1122,-1,1127,1294,1288,-1,462,449,441,-1,452,449,462,-1,1312,1122,1288,-1,1122,1312,1108,-1,1047,1060,1034,-1,1047,1073,1060,-1,1262,1154,1418,-1,1117,1154,1262,-1,691,670,988,-1,691,471,670,-1,691,410,471,-1,484,410,691,-1,635,973,624,-1,973,635,964,-1,326,261,345,-1,326,241,261,-1,1035,379,468,-1,1035,602,379,-1,1422,1333,1317,-1,1427,1333,1422,-1,1315,1042,1250,-1,1315,1101,1042,-1,1321,1022,1009,-1,1022,1321,1316,-1,1320,1000,992,-1,1320,1357,1000,-1,250,707,238,-1,707,250,701,-1,511,165,190,-1,511,464,165,-1,1302,1296,1372,-1,1302,1235,1296,-1,1364,1413,1410,-1,1364,1372,1413,-1,1366,1372,1391,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getl2_Geo_5_145_normalIndex_8()
		{
			int[] value = {1372,1366,1413,-1,1175,1244,1150,-1,1175,1303,1244,-1,1094,564,615,-1,1094,1097,564,-1,535,1138,1142,-1,1138,535,529,-1,430,850,896,-1,430,446,850,-1,1050,1100,1091,-1,1050,1167,1100,-1,54,117,29,-1,54,178,117,-1,131,56,122,-1,57,56,131,-1,267,139,301,-1,267,122,139,-1,265,501,302,-1,265,337,501,-1,1361,1265,1421,-1,1361,1267,1265,-1,1092,1040,846,-1,1311,1040,1092,-1,951,729,738,-1,945,729,951,-1,663,725,667,-1,663,724,725,-1,693,588,579,-1,693,698,588,-1,514,702,699,-1,502,702,514,-1,716,587,787,-1,716,706,587,-1,842,711,712,-1,828,711,842,-1,443,338,413,-1,330,338,443,-1,43,17,18,-1,17,43,48,-1,26,80,75,-1,31,80,26,-1,1201,530,1003,-1,1201,536,530,-1,11,147,16,-1,11,142,147,-1,328,300,234,-1,328,397,300,-1,1397,1281,1406,-1,1281,1397,1342,-1,806,470,1011,-1,806,537,470,-1,1371,1124,1208,-1,1282,1124,1371,-1,820,1131,869,-1,1131,820,1033,-1,955,1266,909,-1,955,1213,1266,-1,1,148,42,-1,123,148,1,-1,130,290,118,-1,130,294,290,-1,176,215,313,-1,176,83,215,-1,191,177,258,-1,191,73,177,-1,341,163,269,-1,341,259,163,-1,714,316,350,-1,714,370,316,-1,370,714,746,-1,340,49,249,-1,340,79,49,-1,985,939,897,-1,985,984,939,-1,905,1006,912,-1,905,995,1006,-1,509,372,367,-1,509,460,372,-1,560,903,778,-1,560,901,903,-1,29,5,37,-1,5,29,9,-1,7,6,3,-1,7,0,6,-1,815,808,675,-1,873,808,815,-1,863,835,849,-1,835,863,861,-1,512,676,565,-1,512,764,676,-1,865,863,874,-1,863,865,827,-1,821,811,865,-1,821,834,811,-1,483,825,478,-1,833,825,483,-1,667,831,663,-1,667,834,831,-1,553,833,483,-1,553,839,833,-1,852,641,747,-1,852,769,641,-1,944,926,933,-1,944,866,926,-1,191,677,181,-1,677,191,800,-1,828,859,829,-1,859,828,842,-1,892,940,948,-1,940,892,886,-1,886,972,940,-1,972,886,916,-1,858,772,880,-1,787,772,858,-1,856,944,844,-1,944,856,904,-1,101,177,73,-1,101,167,177,-1,48,70,17,-1,48,120,70,-1,126,18,103,-1,126,43,18,-1,101,14,84,-1,101,73,14,-1,61,88,33,-1,88,61,107,-1,456,330,443,-1,456,334,330,-1,502,413,403,-1,514,413,502,-1,286,342,365,-1,286,259,342,-1,74,11,30,-1,69,11,74,-1,450,563,297,-1,450,671,563,-1,229,343,323,-1,229,247,343,-1,721,787,858,-1,721,716,787,-1,296,817,626,-1,817,296,375,-1,827,861,863,-1,827,805,861,-1,989,736,968,-1,736,989,737,-1,1164,1371,1166,-1,1164,1362,1371,-1,1164,1269,1362,-1,999,735,1007,-1,999,733,735,-1,542,875,872,-1,542,510,875,-1,1050,1132,1167,-1,1058,1132,1050,-1,853,712,715,-1,853,842,712,-1,873,893,808,-1,945,893,873,-1,451,189,149,-1,189,451,424,-1,240,478,213,-1,240,483,478,-1,642,636,476,-1,672,636,642,-1,328,440,433,-1,328,323,440,-1,647,253,81,-1,253,647,527,-1,474,647,359,-1,474,832,647,-1,465,273,253,-1,273,465,619,-1,248,359,260,-1,248,474,359,-1,110,380,85,-1,110,321,380,-1,793,1005,1004,-1,1005,793,810,-1,505,192,560,-1,505,431,192,-1,141,560,192,-1,141,453,560,-1,245,255,470,-1,109,255,245,-1,605,660,315,-1,605,897,660,-1,1015,1006,1051,-1,1015,1018,1006,-1,984,981,995,-1,981,984,985,-1,311,132,151,-1,324,132,311,-1,386,393,392,-1,386,360,393,-1,631,401,460,-1,631,544,401,-1,78,375,296,-1,78,203,375,-1,930,843,1021,-1,760,843,930,-1,404,254,282,-1,363,254,404,-1,1129,1067,1143,-1,1129,1152,1067,-1,1367,1266,1421,-1,1367,1252,1266,-1,1280,1362,1269,-1,1362,1280,1354,-1,327,115,288,-1,327,100,115,-1,391,77,437,-1,87,77,391,-1,232,682,239,-1,686,682,232,-1,688,385,291,-1,688,742,385,-1,1205,1183,1214,-1,1205,1192,1183,-1,138,130,59,-1,138,200,130,-1,19,71,24,-1,19,59,71,-1,59,60,40,-1,19,60,59,-1,894,361,332,-1,894,976,361,-1,982,548,287,-1,982,1001,548,-1,294,898,290,-1,909,898,294,-1,869,340,820,-1,869,344,340,-1,99,145,1,-1,99,143,145,-1,1265,913,1240,-1,1265,971,913,-1,707,1183,1192,-1,701,1183,707,-1,437,112,442,-1,437,77,112,-1,408,111,428,-1,116,111,408,-1,370,117,178,-1,370,322,117,-1,100,9,115,-1,9,100,6,-1,1055,398,966,-1,1055,830,398,-1,1167,1095,1100,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getl2_Geo_5_145_normalIndex_9()
		{
			int[] value = {1167,1198,1095,-1,467,818,836,-1,482,818,467,-1,1015,745,930,-1,745,1015,969,-1,760,745,444,-1,760,930,745,-1,276,169,15,-1,169,276,315,-1,304,317,405,-1,304,183,317,-1,626,276,296,-1,626,740,276,-1,151,289,311,-1,151,140,289,-1,901,388,263,-1,918,388,901,-1,801,505,778,-1,801,404,505,-1,419,102,121,-1,373,102,419,-1,245,411,174,-1,537,411,245,-1,1342,1056,1281,-1,1156,1056,1342,-1,1225,1270,1160,-1,1270,1225,1300,-1,1311,1269,1040,-1,1280,1269,1311,-1,1278,1297,1314,-1,1297,1278,1258,-1,528,255,194,-1,528,480,255,-1,914,399,527,-1,914,383,399,-1,196,256,536,-1,256,196,260,-1,698,597,588,-1,705,597,698,-1,397,553,300,-1,397,618,553,-1,142,458,147,-1,142,457,458,-1,512,550,303,-1,550,512,565,-1,655,420,341,-1,617,420,655,-1,926,892,948,-1,892,926,859,-1,968,731,942,-1,731,968,736,-1,1007,967,1076,-1,1007,989,967,-1,1058,1129,1132,-1,1089,1129,1058,-1,732,999,946,-1,732,733,999,-1,967,510,569,-1,875,510,967,-1,790,661,659,-1,789,661,790,-1,831,751,663,-1,807,751,831,-1,51,110,55,-1,174,110,51,-1,323,438,440,-1,323,343,438,-1,804,1252,1172,-1,1252,804,898,-1,247,154,171,-1,247,172,154,-1,229,172,247,-1,33,66,61,-1,16,66,33,-1,425,354,365,-1,425,403,354,-1,579,456,546,-1,579,438,456,-1,30,120,74,-1,120,30,70,-1,163,124,53,-1,163,211,124,-1,211,126,124,-1,211,184,126,-1,158,198,231,-1,198,158,94,-1,92,38,104,-1,36,38,92,-1,264,167,242,-1,177,167,264,-1,677,934,919,-1,800,934,677,-1,972,880,911,-1,880,972,916,-1,828,852,747,-1,828,829,852,-1,773,269,237,-1,681,269,773,-1,857,336,844,-1,258,336,857,-1,630,856,455,-1,856,630,769,-1,791,618,636,-1,791,816,618,-1,791,797,816,-1,797,791,807,-1,824,821,841,-1,824,796,821,-1,825,874,851,-1,825,841,874,-1,789,654,661,-1,654,789,811,-1,458,851,849,-1,458,457,851,-1,451,849,835,-1,451,458,849,-1,786,659,690,-1,786,790,659,-1,85,55,110,-1,85,20,55,-1,391,734,776,-1,391,437,734,-1,23,3,2,-1,23,7,3,-1,5,12,28,-1,12,5,0,-1,239,97,232,-1,239,187,97,-1,45,102,166,-1,20,102,45,-1,426,760,405,-1,426,843,760,-1,355,467,215,-1,355,282,467,-1,215,353,355,-1,215,210,353,-1,367,311,289,-1,356,311,367,-1,393,282,355,-1,393,401,282,-1,877,752,781,-1,752,877,905,-1,631,939,823,-1,689,939,631,-1,342,507,421,-1,507,342,420,-1,237,14,181,-1,237,53,14,-1,455,264,387,-1,336,264,455,-1,752,431,781,-1,752,409,431,-1,93,55,106,-1,55,93,51,-1,143,224,145,-1,143,285,224,-1,1252,909,1266,-1,898,909,1252,-1,1207,894,1155,-1,1207,976,894,-1,310,153,280,-1,159,153,310,-1,537,552,411,-1,552,537,806,-1,1278,1160,1270,-1,1196,1160,1278,-1,1120,1160,1196,-1,915,1217,1008,-1,915,1156,1217,-1,1297,1346,1314,-1,1236,1346,1297,-1,213,154,240,-1,154,213,69,-1,530,303,550,-1,256,303,530,-1,474,193,832,-1,474,248,193,-1,41,36,44,-1,41,38,36,-1,204,94,95,-1,94,204,198,-1,625,942,731,-1,942,625,883,-1,717,862,838,-1,717,722,862,-1,700,497,525,-1,700,704,497,-1,546,697,694,-1,493,697,546,-1,664,726,751,-1,664,739,726,-1,720,654,723,-1,654,720,661,-1,1341,1253,1246,-1,1341,1370,1253,-1,1297,1268,1299,-1,1297,1258,1268,-1,265,186,337,-1,265,180,186,-1,125,180,265,-1,63,56,37,-1,63,108,56,-1,100,3,6,-1,111,3,100,-1,1078,539,1110,-1,1078,459,539,-1,1289,1335,1431,-1,1289,1291,1335,-1,1097,1334,1110,-1,1334,1097,1366,-1,250,227,219,-1,250,238,227,-1,1036,688,1141,-1,1036,742,688,-1,682,1203,1191,-1,1203,682,686,-1,1357,1032,1000,-1,1032,1357,1350,-1,1317,1119,1145,-1,1317,1333,1119,-1,72,133,162,-1,76,133,72,-1,161,64,13,-1,161,179,64,-1,352,309,299,-1,352,279,309,-1,1177,1028,1151,-1,1028,1177,1069,-1,571,471,412,-1,471,571,670,-1,1052,1368,1135,-1,1052,1230,1368,-1,1112,1121,1027,-1,1112,1255,1121,-1,1154,777,1135,-1,1154,692,777,-1,429,410,390,-1,429,418,410,-1,748,826,1117,-1,748,532,826,-1,1163,1186,965,-1,1186,1163,1325,-1,871,1293,1234,-1,871,983,1293,-1,1234,923,871,-1,1234,997,923,-1,402,637,432,-1,653,637,402,-1,931,1158,436,-1,931,1272,1158,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getl2_Geo_5_145_normalIndex_10()
		{
			int[] value = {1020,1186,1256,-1,1186,1020,895,-1,377,89,152,-1,89,377,271,-1,160,201,272,-1,134,201,160,-1,162,119,395,-1,119,162,133,-1,136,155,168,-1,173,155,136,-1,1163,925,1227,-1,1163,954,925,-1,1038,522,910,-1,1038,1066,522,-1,1242,1038,1231,-1,1038,1242,1066,-1,1180,788,1352,-1,910,788,1180,-1,994,1103,993,-1,994,1109,1103,-1,794,809,941,-1,809,794,758,-1,956,1190,1222,-1,956,952,1190,-1,1247,986,1285,-1,1010,986,1247,-1,540,572,623,-1,572,540,492,-1,541,519,487,-1,570,519,541,-1,731,466,494,-1,736,466,731,-1,518,427,366,-1,518,447,427,-1,309,374,299,-1,374,309,351,-1,422,732,472,-1,422,733,732,-1,899,518,662,-1,518,899,555,-1,770,643,771,-1,643,770,645,-1,759,601,768,-1,601,759,612,-1,1323,1381,1378,-1,1381,1323,1256,-1,998,1109,994,-1,998,1088,1109,-1,188,150,64,-1,188,175,150,-1,1419,1359,1402,-1,1359,1419,1365,-1,1084,1140,1061,-1,1084,1169,1140,-1,1016,935,1029,-1,935,1016,924,-1,980,854,887,-1,980,998,854,-1,1310,1402,1359,-1,1355,1402,1310,-1,1306,1275,1380,-1,1306,1223,1275,-1,1414,1304,1330,-1,1414,1389,1304,-1,1355,1383,1415,-1,1355,1310,1383,-1,1393,1343,1329,-1,1343,1393,1396,-1,1263,1168,1188,-1,1168,1263,1254,-1,658,577,551,-1,577,658,648,-1,463,547,495,-1,520,547,463,-1,495,541,487,-1,547,541,495,-1,570,603,573,-1,589,603,570,-1,755,1241,1257,-1,646,1241,755,-1,519,499,504,-1,519,620,499,-1,813,621,794,-1,813,616,621,-1,614,621,616,-1,612,621,614,-1,613,600,590,-1,613,634,600,-1,557,606,582,-1,557,590,606,-1,784,645,770,-1,622,645,784,-1,582,977,583,-1,582,978,977,-1,583,986,595,-1,583,977,986,-1,771,651,743,-1,771,643,651,-1,1378,1349,1323,-1,1378,1412,1349,-1,734,1032,776,-1,734,1000,1032,-1,1429,1409,1430,-1,1429,1426,1409,-1,1417,1428,1404,-1,1432,1428,1417,-1,1337,1191,1203,-1,1337,1243,1191,-1,1331,1386,1272,-1,1386,1331,1412,-1,670,987,1027,-1,670,571,987,-1,1104,1082,1215,-1,1104,1151,1082,-1,1104,973,1151,-1,1081,1215,1082,-1,1081,1232,1215,-1,1122,1072,1127,-1,1072,1122,1077,-1,1151,1047,1082,-1,1151,1043,1047,-1,753,562,687,-1,531,562,753,-1,506,798,610,-1,798,506,754,-1,928,1084,1026,-1,1012,1084,928,-1,1420,1195,1257,-1,1420,1380,1195,-1,1168,974,1062,-1,974,1168,1098,-1,1215,1276,1104,-1,1215,1347,1276,-1,1142,1302,1313,-1,1142,1138,1302,-1,1284,1431,1398,-1,1431,1284,1307,-1,161,479,529,-1,161,207,479,-1,306,615,564,-1,417,615,306,-1,292,62,206,-1,62,292,137,-1,965,628,423,-1,965,895,628,-1,152,35,25,-1,89,35,152,-1,68,136,168,-1,136,68,209,-1,1283,1222,1190,-1,1365,1222,1283,-1,1106,907,884,-1,907,1106,1170,-1,1356,1408,1358,-1,1408,1356,1405,-1,1415,1389,1414,-1,1383,1389,1415,-1,1093,991,1016,-1,991,1093,1102,-1,711,589,712,-1,589,711,603,-1,845,716,648,-1,845,706,716,-1,702,924,699,-1,924,702,935,-1,848,693,854,-1,848,698,693,-1,725,768,762,-1,725,724,768,-1,729,485,738,-1,485,729,492,-1,165,58,13,-1,165,164,58,-1,1244,1173,1096,-1,1173,1244,1251,-1,1376,1369,1395,-1,1376,1326,1369,-1,1429,1333,1427,-1,1333,1429,1321,-1,738,472,732,-1,472,738,485,-1,382,703,319,-1,382,696,703,-1,1374,1395,1401,-1,1374,1376,1395,-1,936,591,957,-1,936,996,591,-1,244,47,217,-1,216,47,244,-1,216,119,47,-1,890,416,533,-1,890,627,416,-1,723,762,784,-1,723,725,762,-1,779,713,758,-1,779,739,713,-1,699,943,697,-1,943,699,924,-1,700,845,902,-1,700,706,845,-1,592,715,580,-1,592,717,715,-1,924,991,943,-1,924,1016,991,-1,1383,1338,1389,-1,1339,1338,1383,-1,1393,1408,1394,-1,1393,1358,1408,-1,540,907,434,-1,884,907,540,-1,1285,1416,1373,-1,1285,1287,1416,-1,1190,1259,1283,-1,1200,1190,1134,-1,1190,1200,1259,-1,136,39,135,-1,136,209,39,-1,508,925,665,-1,795,925,508,-1,1039,417,864,-1,1039,615,417,-1,479,199,384,-1,199,479,207,-1,1313,1372,1364,-1,1372,1313,1302,-1,1063,1356,920,-1,1063,1276,1356,-1,584,559,640,-1,584,494,559,-1,1178,1168,1254,-1,1098,1168,1178,-1,1159,1380,1275,-1,1195,1380,1159,-1,1026,845,928,-1,1026,902,845,-1,1351,1410,1413,-1,1351,1388,1410,-1,441,390,462,-1,429,390,441,-1,1041,1077,1073,-1,1041,1072,1077,-1,975,1081,1034,-1,1065,1081,975,-1,957,890,1150,-1,627,890,957,-1,1328,1412,1378,-1,1412,1328,1386,-1,1395,1404,1428,-1,1395,1369,1404,-1,1422,1432,1427,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getl2_Geo_5_145_normalIndex_11()
		{
			int[] value = {1422,1428,1432,-1,1429,1316,1321,-1,1429,1430,1316,-1,730,1022,992,-1,730,727,1022,-1,25,226,152,-1,226,25,205,-1,743,757,639,-1,743,651,757,-1,651,629,585,-1,643,629,651,-1,595,1010,609,-1,595,986,1010,-1,922,609,1010,-1,922,666,609,-1,604,622,567,-1,604,645,622,-1,567,590,557,-1,567,613,590,-1,608,590,600,-1,608,606,590,-1,758,621,779,-1,794,621,758,-1,755,1195,669,-1,755,1257,1195,-1,487,461,495,-1,487,516,461,-1,592,520,574,-1,592,547,520,-1,551,814,658,-1,551,526,814,-1,503,598,646,-1,503,504,598,-1,1062,1188,1168,-1,1062,1130,1188,-1,1377,1394,1408,-1,1377,1322,1394,-1,1248,1389,1338,-1,1389,1248,1304,-1,1306,1330,1304,-1,1345,1330,1306,-1,1345,1380,1420,-1,1345,1306,1380,-1,1310,1264,1274,-1,1310,1359,1264,-1,887,991,980,-1,991,887,943,-1,917,1029,935,-1,917,1019,1029,-1,1187,1061,1140,-1,1080,1061,1187,-1,1365,1264,1359,-1,1264,1365,1283,-1,1327,1425,1392,-1,1352,1425,1327,-1,994,854,998,-1,848,854,994,-1,1037,993,1103,-1,993,1037,941,-1,614,601,612,-1,634,601,614,-1,645,629,643,-1,629,645,604,-1,206,270,295,-1,62,270,206,-1,275,352,270,-1,352,275,468,-1,683,374,351,-1,695,374,683,-1,737,427,447,-1,737,735,427,-1,241,270,284,-1,241,295,270,-1,541,589,570,-1,589,541,580,-1,814,521,783,-1,521,814,526,-1,492,657,572,-1,657,492,729,-1,1285,977,1287,-1,986,977,1285,-1,1134,952,878,-1,952,1134,1190,-1,758,709,809,-1,709,758,713,-1,932,910,1180,-1,932,1038,910,-1,954,965,673,-1,954,1163,965,-1,1035,275,395,-1,468,275,1035,-1,1115,1256,1323,-1,1256,1115,1020,-1,1412,1309,1349,-1,1309,1412,1331,-1,1255,1108,1312,-1,1112,1108,1255,-1,692,532,452,-1,692,826,532,-1,523,418,429,-1,523,488,418,-1,441,562,531,-1,449,562,441,-1,1077,1108,1075,-1,1077,1122,1108,-1,1073,1075,1060,-1,1073,1077,1075,-1,1151,888,1043,-1,1151,1028,888,-1,1117,929,748,-1,1262,929,1117,-1,1052,988,1230,-1,1052,691,988,-1,484,390,410,-1,484,607,390,-1,973,1177,1151,-1,973,964,1177,-1,76,65,233,-1,76,72,65,-1,727,1009,1022,-1,679,1009,727,-1,1009,1333,1321,-1,1333,1009,1119,-1,1024,937,765,-1,937,1024,1126,-1,734,992,1000,-1,730,992,734,-1,1078,1211,938,-1,1211,1078,1279,-1,1277,1307,1284,-1,1277,1286,1307,-1,938,459,1078,-1,938,384,459,-1,535,1147,633,-1,535,1142,1147,-1,1083,1289,1179,-1,1083,1209,1289,-1,1003,946,1144,-1,946,1003,951,-1,54,146,178,-1,54,195,146,-1,131,267,302,-1,122,267,131,-1,301,214,376,-1,214,301,139,-1,281,337,186,-1,281,477,337,-1,1207,1053,976,-1,1053,1207,1237,-1,840,1107,1002,-1,1114,1107,840,-1,719,690,659,-1,719,718,690,-1,726,663,751,-1,726,724,663,-1,546,693,579,-1,546,694,693,-1,704,502,497,-1,704,702,502,-1,722,858,862,-1,722,721,858,-1,747,711,828,-1,747,780,711,-1,338,198,204,-1,198,338,330,-1,18,44,36,-1,44,18,17,-1,75,513,329,-1,513,75,80,-1,945,1003,893,-1,945,951,1003,-1,16,149,66,-1,16,147,149,-1,1270,1258,1278,-1,1270,1268,1258,-1,1390,1406,1403,-1,1406,1390,1397,-1,1064,1403,1406,-1,1030,1403,1064,-1,1120,767,1160,-1,767,1011,470,-1,1011,767,1120,-1,411,362,321,-1,362,411,552,-1,1155,869,1131,-1,1155,870,869,-1,59,118,71,-1,130,118,59,-1,335,210,222,-1,353,210,335,-1,387,630,455,-1,387,542,630,-1,53,269,163,-1,269,53,237,-1,587,421,507,-1,587,525,421,-1,24,79,19,-1,24,49,79,-1,752,912,671,-1,905,912,752,-1,253,208,235,-1,253,273,208,-1,355,392,393,-1,355,353,392,-1,358,317,324,-1,317,358,346,-1,467,650,313,-1,467,836,650,-1,543,477,281,-1,477,543,803,-1,20,106,55,-1,45,106,20,-1,28,37,5,-1,28,63,37,-1,0,9,6,-1,0,5,9,-1,116,3,111,-1,116,2,3,-1,408,730,442,-1,408,727,730,-1,1206,1406,1281,-1,1226,1406,1206,-1,675,565,676,-1,565,675,808,-1,861,822,835,-1,822,861,847,-1,847,764,822,-1,676,764,847,-1,849,874,863,-1,849,851,874,-1,667,811,834,-1,811,667,654,-1,851,478,825,-1,457,478,851,-1,834,796,831,-1,834,821,796,-1,618,839,553,-1,618,816,839,-1,769,904,856,-1,852,904,769,-1,844,933,857,-1,844,944,933,-1,420,772,507,-1,772,420,617,-1,886,853,838,-1,886,892,853,-1,940,911,900,-1,911,940,972,-1,916,858,880,-1,916,862,858,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getl2_Geo_5_145_normalIndex_12()
		{
			int[] value = {919,773,677,-1,919,947,773,-1,455,844,336,-1,844,455,856,-1,41,52,26,-1,41,107,52,-1,43,184,95,-1,126,184,43,-1,103,124,126,-1,124,103,84,-1,53,84,14,-1,53,124,84,-1,171,120,158,-1,171,74,120,-1,443,546,456,-1,493,546,443,-1,403,497,502,-1,403,425,497,-1,365,243,286,-1,243,365,354,-1,171,69,74,-1,154,69,171,-1,4,91,32,-1,91,4,81,-1,579,440,438,-1,440,579,588,-1,433,397,328,-1,476,397,433,-1,831,797,807,-1,797,831,796,-1,805,789,790,-1,827,789,805,-1,1166,1208,1137,-1,1208,1166,1371,-1,1007,1123,999,-1,1123,1007,1076,-1,942,875,968,-1,942,872,875,-1,696,1058,1050,-1,695,1058,696,-1,948,934,926,-1,948,919,934,-1,681,341,269,-1,681,655,341,-1,550,808,893,-1,550,565,808,-1,457,213,478,-1,142,213,457,-1,476,618,397,-1,636,618,476,-1,323,234,229,-1,328,234,323,-1,196,248,260,-1,193,248,196,-1,527,465,253,-1,527,399,465,-1,470,480,767,-1,470,255,480,-1,1164,398,1040,-1,398,1164,966,-1,855,1160,767,-1,1160,855,1225,-1,174,321,110,-1,411,321,174,-1,121,20,85,-1,102,20,121,-1,560,918,901,-1,453,918,560,-1,289,169,486,-1,140,169,289,-1,444,405,760,-1,444,304,405,-1,745,817,375,-1,817,745,969,-1,877,995,905,-1,995,877,984,-1,324,356,358,-1,324,311,356,-1,358,360,386,-1,358,356,360,-1,254,558,818,-1,254,363,558,-1,689,460,509,-1,689,631,460,-1,296,15,78,-1,15,296,276,-1,1021,950,1025,-1,1021,843,950,-1,801,363,404,-1,558,363,801,-1,1353,1354,1201,-1,1353,1362,1354,-1,115,322,288,-1,322,115,117,-1,442,116,408,-1,116,442,112,-1,90,10,8,-1,10,90,114,-1,98,96,157,-1,98,40,96,-1,143,71,118,-1,99,71,143,-1,99,24,71,-1,27,24,99,-1,157,138,98,-1,157,223,138,-1,180,1,129,-1,180,123,1,-1,63,268,108,-1,63,187,268,-1,870,332,344,-1,870,894,332,-1,285,898,804,-1,285,290,898,-1,145,347,287,-1,145,224,347,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getl2_Coord_6_145_point_1()
		{
			double[] value = {-0.4439,39.319,-2.1377,-0.412,39.2408,-2.1223,-0.4229,39.3184,-2.1279,-0.3659,39.1119,-2.0828,-0.318,39.2323,-2.1343,-0.3974,39.2209,-2.117,-0.1514,39.1873,-2.3059,-0.1209,39.2932,-2.2465,-0.2562,39.2584,-2.1733,-0.3709,38.6112,-2.2846,-0.3308,38.6233,-2.2086,-0.3769,38.6109,-2.2815,-0.4328,38.8806,-2.4382,-0.4384,39.0272,-2.4079,-0.4257,39.0297,-2.4156,-0.1523,39.0542,-2.3419,-0.0876,39.0826,-2.3963,-0.1249,39.1874,-2.3459,-0.1902,38.9142,-2.4085,-0.1158,39.0981,-2.5446,-0.1073,39.0279,-2.452,-0.5028,39.4086,-2.0557,-0.4136,39.4407,-2.0572,-0.527,39.4781,-1.9912,-0.4474,39.5343,-1.9723,-0.3276,39.4944,-2.0733,-0.4954,39.3714,-2.1967,-0.456,39.3104,-2.2258,-0.4937,39.351,-2.1797,-0.4447,38.7419,-2.3652,-0.42,38.676,-2.3273,-0.4311,38.7232,-2.3084,-0.3769,38.6974,-2.2057,-0.3599,38.6481,-2.2045,-0.3451,38.7056,-2.1526,-0.2121,38.9079,-2.4197,-0.2075,38.9281,-2.4324,-0.4041,38.727,-2.3967,-0.3468,38.7178,-2.364,-0.3905,38.6584,-2.3503,-0.2918,38.8001,-2.341,-0.3793,38.9032,-2.426,-0.3321,38.9246,-2.4106,-0.3036,38.7154,-2.2997,-0.3368,38.6551,-2.296,-0.0245,39.115,-2.4907,-0.0064,39.0974,-2.5242,-0.0049,39.1029,-2.4834,-0.023,39.111,-2.4507,-0.0001,39.1013,-2.4807,-0.0252,39.1699,-2.9284,-0.0757,39.1358,-3.0947,-0.0039,39.1123,-2.923,0.0,39.1487,-2.7094,0.0,39.0998,-2.589,-0.0124,39.156,-2.7109,-0.0777,39.403,-3.3274,-0.0838,39.3901,-3.4211,-0.1345,39.2757,-3.3299,-0.105,39.2448,-3.3743,-0.0798,39.24,-3.388,-0.0945,39.7828,-2.4351,-0.0858,39.7983,-2.4097,-0.0699,39.8043,-2.4553,-0.0131,39.8025,-2.785,0.0,39.7825,-2.9996,-0.0162,39.776,-3.0056,-0.2072,39.8001,-2.1971,-0.1214,39.7919,-2.2118,-0.2644,39.7201,-2.263,-0.0982,39.7905,-2.3415,-0.1436,39.7577,-2.3122,-0.1022,39.7908,-2.3191,-0.1911,39.8252,-2.1761,-0.1805,39.8137,-2.1808,-0.1787,39.8171,-2.1893,-0.2135,39.8161,-2.1655,-0.1972,39.7942,-2.1716,-0.2596,38.7103,-2.1971,-0.2169,38.8265,-2.2176,-0.2726,38.7091,-2.1453,-0.2455,38.9542,-2.1957,-0.2963,39.1404,-2.1217,-0.2742,38.9677,-2.1096,-0.225,39.4703,-2.1711,-0.1679,39.6437,-2.1893,-0.2285,39.6549,-2.1474,-0.8931,39.4986,-2.1072,-0.8983,39.4998,-2.1116,-0.8854,39.508,-2.1171,-0.9177,39.5091,-2.1106,-0.8949,39.5016,-2.1024,-1.5079,39.7719,-2.3598,-1.5115,39.7603,-2.3947,-1.5312,39.6854,-2.3855,-0.6757,39.9968,-1.963,-0.7551,39.9145,-2.0344,-0.7639,39.9026,-2.0246,-0.7198,39.9952,-2.1383,-0.7841,39.9467,-2.1971,-0.8472,39.8973,-2.1165,-1.0097,39.5806,-2.2472,-1.144,39.5919,-2.2647,-1.0098,39.6,-2.2643,-0.8536,39.64,-2.3582,-0.869,39.6534,-2.3197,-0.8254,39.6915,-2.3888,-0.8951,39.6354,-2.284,-0.9024,39.701,-2.3,-0.6604,40.1112,-2.6166,-0.6123,40.1125,-2.6179,-0.6305,40.0162,-2.6872,-0.6649,40.0162,-2.7003,-0.7085,40.11,-2.6153,-0.7561,39.8855,-2.5789,-0.7403,39.8699,-2.5854,-0.7711,39.7606,-2.4602,-0.7377,39.8779,-2.5943,-0.5016,40.3192,-2.2697,-0.5433,40.312,-2.3284,-0.5059,40.3238,-2.2674,-0.5738,40.2651,-2.4528,-0.5829,40.1999,-2.561,-0.5948,40.1966,-2.5514,-0.599,40.1169,-2.6227,-0.6169,40.015,-2.6816,-0.6118,39.9038,-2.6351,-0.626,39.9685,-2.6877,-0.6075,39.9074,-2.634,-0.5859,39.8706,-2.5748,-0.5563,39.8345,-2.4468,-0.5898,39.8656,-2.5759,-0.4805,39.812,-2.2964,-0.3864,39.8355,-2.227,-0.4813,39.8045,-2.2956,-0.324,39.8905,-2.1304,-0.3241,39.8852,-2.1199,-0.3224,39.8848,-2.1309,-0.3734,40.1761,-2.1197,-0.3708,40.1893,-2.1438,-0.4015,40.26,-2.1594,-0.5506,39.5124,-1.8168,-0.6485,40.0662,-2.0543,-0.5912,40.0676,-2.0406,-0.5629,40.1832,-2.1148,-0.6452,39.9606,-1.8632,-0.6953,39.9248,-1.8503,-0.6604,39.9864,-1.8296,-0.5989,40.0109,-1.946,-0.6084,39.9915,-1.9116,-0.582,39.9979,-1.8901,-0.707,39.9057,-1.9522,-0.1916,40.2495,-0.6366,-0.1905,40.2628,-0.641,-0.3367,40.2439,-0.6638,-0.7594,40.1653,-1.6798,-0.7517,40.1734,-1.6774,-0.6256,40.1592,-1.7816,-0.6338,39.4763,-1.5887,-0.6904,39.4821,-1.5542,-0.6544,39.5725,-1.6588,-0.4257,39.5614,-1.832,-0.2926,39.5843,-1.7782,-0.2933,39.4686,-1.7549,-0.2648,39.8059,-2.1394,-0.2909,39.8684,-1.8353,-0.1691,39.7284,-1.7492,-0.2919,39.6988,-1.8012,-0.5288,40.2323,-1.0582,-0.5339,40.2671,-0.9288,-0.4595,40.2555,-0.9741,-1.4947,39.6316,-2.3842,-1.5187,39.618,-2.37,-1.5254,39.6836,-2.394,-0.1295,39.5035,-0.5032,-0.27,39.4948,-0.5624,-0.137,39.4483,-0.4583,-0.2714,39.3293,-2.1562,-0.8602,40.0078,-1.2656,-0.8523,40.1192,-1.2817,-0.856,40.0957,-1.4467,-0.4497,39.4934,-0.6382,-0.4769,39.4188,-0.5846,-0.2945,39.4343,-0.5011,-0.7275,40.0423,-1.7112,-0.7399,39.9531,-1.729,-0.8141,39.9637,-1.565,-0.6653,39.4055,-0.6924,-0.6401,39.4691,-0.7389,-0.783,39.373,-0.8194,-0.7655,39.7766,-1.2448,-0.7955,39.8715,-1.4018,-0.7317,39.7588,-1.3825,-0.5338,39.4484,-1.7057,-0.4126,39.2384,-1.4927,-0.3219,39.258,-1.4774,-0.3216,39.2759,-1.3741,-0.7585,39.2074,-1.2847,-0.8055,39.1844,-1.4745,-0.7054,39.1975,-1.4027,-0.6102,39.2283,-1.3529,-0.4914,39.2725,-1.2902,-0.6332,39.233,-1.2805,-0.1694,39.1611,-1.6329,-0.1633,39.2216,-1.5621,-0.3184,39.1982,-1.5871,-0.4775,40.2728,-0.8916,-0.3349,40.2599,-0.9021,-0.1483,40.2885,-0.7839,-0.1589,40.2545,-0.8746,-0.6793,40.2038,-2.5092,-0.5727,40.0318,-2.5363,-0.6446,40.2588,-2.4158,-0.6701,40.1718,-2.3811,-0.6243,40.2772,-2.2814,0.0,39.1028,-3.3003,0.0,39.0895,-3.0816,-0.0091,39.0951,-3.0832,0.0,39.2412,-3.409,-0.0685,39.387,-3.4362,-0.0806,39.2578,-3.1017,-0.0688,39.4029,-3.1342,-0.0641,39.2658,-2.9539,0.0,39.1069,-2.9229,-0.7842,39.6614,-2.3764,-0.6477,39.7521,-2.4418,-0.8495,39.7653,-2.3242,-1.2608,39.9226,-2.3212,-1.1311,39.8803,-2.204,-1.1034,39.8856,-2.2631,-1.3588,39.8887,-2.3769,-1.2572,39.915,-2.3316,-1.2682,39.8705,-2.3434,-0.5499,39.5052,-2.198,-0.5752,39.4147,-2.11,-0.6962,39.4796,-2.046,-0.7796,39.4865,-2.1101,-0.7688,39.5444,-2.194,-0.8446,39.8563,-2.2631,-0.9402,39.8533,-2.2312,-1.4963,39.6097,-2.3156,-1.482,39.597,-2.3418,-1.3155,39.5886,-2.2613,-1.1972,39.6387,-2.1664,-1.0136,39.5564,-2.1489,-1.044,39.6731,-2.1037,-1.3248,39.6127,-2.3193,-1.3138,39.6511,-2.3282,-1.1347,39.6159,-2.2782,-1.3116,39.5878,-2.2724,-1.4765,39.5989,-2.3528,-0.9122,39.3253,-1.1365,-0.8754,39.3096,-1.3133,-0.8834,39.2161,-1.3031,-1.01,39.5529,-2.1586,-0.8818,39.6135,-2.2724,-0.9842,39.7853,-2.278,-0.9108,39.783,-2.3027,-0.7071,40.0333,-2.2919,-0.7375,39.9463,-2.3539,-0.6564,40.0971,-2.2124,-0.7211,39.8174,-1.8982,-0.7758,39.8038,-2.0054,-0.7736,39.691,-1.977,-0.7045,39.6059,-1.893,-0.6466,39.5222,-1.9305,-0.315,38.7115,-2.1199,-0.3309,38.8577,-2.0845,-0.4574,38.8555,-2.3531,-0.4659,38.8732,-2.4074,-0.4126,38.7289,-2.3961,-0.3824,39.0641,-2.418,-0.4423,39.1682,-2.3254,-0.385,39.167,-2.412,-0.5041,40.0126,-2.3083,-0.4412,39.9524,-2.2489,-0.4802,39.8829,-2.2955,0.0,39.7695,-2.2523,0.0,39.7936,-2.293,-0.5791,40.2951,-2.2021,-0.3933,40.2067,-2.1854,-0.5094,40.2264,-2.3475,-0.5417,40.1891,-2.4034,-0.6094,39.9005,-2.6318,-0.6281,39.833,-2.5561,-0.529,39.8897,-2.3942,-0.8187,40.1452,-1.0881,-0.7861,40.2338,-1.1191,-0.8301,40.2199,-1.2792,-0.7212,39.84,-1.6903,-0.6766,39.7113,-1.7779,-0.6662,39.7082,-1.6727,0.0,39.1771,-1.607,0.0,39.2041,-1.5343,-0.1528,40.1656,-1.7928,-0.1586,40.1624,-1.7224,0.0,40.1477,-1.6821,-0.443,40.0075,-2.0556,-0.4616,40.1803,-2.1187,-0.5319,40.058,-2.0411,-0.5358,40.0225,-1.932,-0.4083,39.9852,-1.9604,-0.4013,39.7028,-2.2628,-0.327,39.7402,-2.2363,-0.2905,39.6834,-2.2927,-0.4314,40.1408,-2.2374,-0.431,40.0538,-2.2351,-0.3321,40.0621,-2.1235,-0.2143,38.9356,-2.2779,-0.2734,38.8128,-2.329,-0.4676,39.2456,-2.2067,-0.4211,39.2243,-2.1436,-0.2219,39.5441,-2.3299,-0.351,39.5735,-2.2898,-0.2722,39.1835,-2.434,-0.2498,39.0029,-2.4545,-0.2676,39.3109,-2.3866,-0.3766,39.2617,-2.3609,-0.3907,39.3508,-2.3038,-0.1496,39.2655,-2.6113,-0.2073,39.2375,-2.514,-0.1882,39.3492,-2.4711,-0.1358,39.5693,-2.4078,-0.1803,39.4328,-2.4473,-0.0998,39.6979,-2.5111,-0.0887,39.5542,-2.6349,0.0,39.8103,-2.7811,-0.0283,39.8159,-2.6053,-0.3012,39.4033,-2.1153,-0.2706,39.4849,-2.1173,0.4229,39.3184,-2.1279,0.412,39.2408,-2.1223,0.4439,39.319,-2.1377,0.318,39.2323,-2.1343,0.2963,39.1404,-2.1217,0.3659,39.1119,-2.0828,0.1209,39.2932,-2.2465,0.1514,39.1873,-2.3059,0.2362,39.1656,-2.1957,0.4328,38.8806,-2.4382,0.4194,38.8825,-2.4414,0.4257,39.0297,-2.4156,0.4428,39.1717,-2.3232,0.4471,39.1665,-2.3195,0.4423,39.1682,-2.3254,0.1073,39.0279,-2.452,0.1158,39.0981,-2.5446,0.2075,38.9281,-2.4324,0.4136,39.4407,-2.0572,0.527,39.4781,-1.9912,0.4474,39.5343,-1.9723,0.2832,38.8224,-2.3527,0.2918,38.8001,-2.341,0.2734,38.8128,-2.329,0.3321,38.9246,-2.4106,0.3793,38.9032,-2.426,0.3532,38.7577,-2.3809,0.0,39.1318,-2.4627,0.0176,39.1236,-2.4514,0.0,39.2809,-2.4091,0.1249,39.1874,-2.3459,0.023,39.111,-2.4507,0.0876,39.0826,-2.3963,0.0,39.0965,-2.5319,0.0049,39.1029,-2.4834,0.0638,39.6938,-3.3848,0.0696,39.5802,-3.3189,0.0751,39.5754,-3.4303,0.0039,39.1123,-2.923,0.0091,39.0951,-3.0832,0.0757,39.1358,-3.0947,0.0124,39.156,-2.7109,0.0151,39.1054,-2.5912,0.0685,39.387,-3.4362,0.0838,39.3901,-3.4211,0.105,39.2448,-3.3743,0.0788,39.7967,-2.4602,0.0858,39.7983,-2.4097,0.0945,39.7828,-2.4351,0.0162,39.776,-3.0056,0.1436,39.7577,-2.3122,0.1453,39.7498,-2.3232,0.0982,39.7905,-2.3415,0.1787,39.8171,-2.1893,0.1805,39.8137,-2.1808,0.1911,39.8252,-2.1761,0.1972,39.7942,-2.1716,0.2135,39.8161,-2.1655,0.2726,38.7091,-2.1453,0.2533,38.8426,-2.1333,0.2596,38.7103,-2.1971,0.2742,38.9677,-2.1096,0.2455,38.9542,-2.1957,0.2706,39.4849,-2.1173,0.2285,39.6549,-2.1474,0.1679,39.6437,-2.1893,1.5201,39.6921,-2.3544,1.5115,39.7603,-2.3947,1.5079,39.7719,-2.3598,1.5312,39.6854,-2.3855,1.4855,39.6826,-2.4013,1.4379,39.7284,-2.405,1.4747,39.7381,-2.4107,1.3949,39.8856,-2.3908,1.4695,39.8466,-2.4088,1.4472,39.8397,-2.4145,0.6757,39.9968,-1.963,0.707,39.9057,-1.9522,0.7639,39.9026,-2.0246,0.7198,39.9952,-2.1383,0.7551,39.9145,-2.0344,0.8472,39.8973,-2.1165,1.1347,39.6159,-2.2782,1.144,39.5919,-2.2647,1.0097,39.5806,-2.2472,0.8536,39.64,-2.3582,0.834,39.6503,-2.3807,0.8254,39.6915,-2.3888,0.8252,39.6132,-2.3211,0.7842,39.6614,-2.3764,0.818,39.6387,-2.3763,0.869,39.6534,-2.3197,0.9024,39.701,-2.3,0.8951,39.6354,-2.284,0.6123,40.1125,-2.6179,0.7085,40.11,-2.6153,0.6649,40.0162,-2.7003,0.7095,39.9436,-2.678,0.7377,39.8779,-2.5943,0.6118,39.9038,-2.6351,0.6683,39.979,-2.7042,0.6352,39.9708,-2.6936,0.7403,39.8699,-2.5854,0.7561,39.8855,-2.5789,0.7909,39.7726,-2.4529,1.0098,39.6,-2.2643,0.8818,39.6135,-2.2724,0.5059,40.3238,-2.2674,0.5433,40.312,-2.3284,0.5016,40.3192,-2.2697,0.5948,40.1966,-2.5514,0.5829,40.1999,-2.561,0.5738,40.2651,-2.4528,0.6169,40.015,-2.6816,0.599,40.1169,-2.6227,0.626,39.9685,-2.6877,0.5898,39.8656,-2.5759,0.5594,39.8283,-2.4472,0.5859,39.8706,-2.5748,0.3864,39.8355,-2.227,0.3821,39.8446,-2.2239,0.4805,39.812,-2.2964,0.431,40.0538,-2.2351,0.3933,40.2067,-2.1854,0.4242,40.2221,-2.2245,0.4015,40.26,-2.1594,0.4289,40.2431,-2.131,0.504,40.3226,-2.1946,0.3224,39.8848,-2.1309,0.3241,39.8852,-2.1199,0.324,39.8905,-2.1304,0.3734,40.1761,-2.1197,0.4257,39.5614,-1.832,0.5912,40.0676,-2.0406,0.6485,40.0662,-2.0543,0.6143,40.1698,-2.1386,0.6452,39.9606,-1.8632,0.6456,39.9854,-1.9134,0.6343,39.9681,-1.898,0.6359,39.9861,-1.8439,0.6604,39.9864,-1.8296,0.582,39.9979,-1.8901,0.5989,40.0109,-1.946,0.5358,40.0225,-1.932,0.3378,40.2298,-0.6617,0.3367,40.2439,-0.6638,0.1905,40.2628,-0.641,0.6306,40.1511,-1.7891,0.6256,40.1592,-1.7816,0.7517,40.1734,-1.6774,0.4251,39.1693,-1.6854,0.3184,39.1982,-1.5871,0.3123,39.163,-1.6742,0.4059,39.4995,-1.7599,0.2926,39.5843,-1.7782,0.2891,39.6662,-2.1055,0.2919,39.6988,-1.8012,0.158,39.8902,-1.8002,0.2909,39.8684,-1.8353,0.4595,40.2555,-0.9741,0.6204,40.2527,-1.0419,0.5288,40.2323,-1.0582,1.5254,39.6836,-2.394,1.5187,39.618,-2.37,1.4947,39.6316,-2.3842,0.137,39.4483,-0.4583,0.2945,39.4343,-0.5011,0.1295,39.5035,-0.5032,0.1523,39.0542,-2.3419,0.2714,39.3293,-2.1562,0.2562,39.2584,-2.1733,0.856,40.0957,-1.4467,0.8523,40.1192,-1.2817,0.8602,40.0078,-1.2656,0.4769,39.4188,-0.5846,0.4497,39.4934,-0.6382,0.27,39.4948,-0.5624,0.7953,39.9085,-1.2522,0.7955,39.8715,-1.4018,0.7399,39.9531,-1.729,0.7275,40.0423,-1.7112,0.8108,40.072,-1.5678,0.7655,39.7766,-1.2448,0.6338,39.4763,-1.5887,0.5338,39.4484,-1.7057,0.6544,39.5725,-1.6588,0.3974,39.3601,-1.7233,0.5201,39.3754,-1.6762,0.7054,39.1975,-1.4027,0.8055,39.1844,-1.4745,0.8834,39.2161,-1.3031,0.1633,39.2216,-1.5621,0.1694,39.1611,-1.6329,0.1589,40.2545,-0.8746,0.1483,40.2885,-0.7839,0.335,40.2761,-0.8154,0.6793,40.2038,-2.5092,0.5727,40.0318,-2.5363,0.6243,40.2772,-2.2814,0.6701,40.1718,-2.3811,0.6446,40.2588,-2.4158,0.3599,38.6481,-2.2045,0.3451,38.7056,-2.1526,0.315,38.7115,-2.1199,0.0144,39.1049,-3.2966,0.1345,39.2757,-3.3299,0.0688,39.4029,-3.1342,0.0806,39.2578,-3.1017,0.0744,39.4161,-2.9529,0.0641,39.2658,-2.9539,0.7711,39.7606,-2.4602,0.7134,39.6194,-2.276,0.8495,39.7653,-2.3242,1.1034,39.8856,-2.2631,1.2823,39.8997,-2.2736,1.2608,39.9226,-2.3212,1.2682,39.8705,-2.3434,1.3516,39.9135,-2.3643,1.3588,39.8887,-2.3769,1.3436,39.6286,-2.2361,1.3155,39.5886,-2.2613,1.482,39.597,-2.3418,1.044,39.6731,-2.1037,1.0136,39.5564,-2.1489,1.174,39.5712,-2.2091,1.3248,39.6127,-2.3193,1.3138,39.6511,-2.3282,1.3116,39.5878,-2.2724,1.4653,39.6234,-2.3772,1.4765,39.5989,-2.3528,1.01,39.5529,-2.1586,0.9307,39.524,-2.1351,1.0148,39.7053,-2.285,0.9108,39.783,-2.3027,0.7841,39.9467,-2.1971,0.8446,39.8563,-2.2631,0.7375,39.9463,-2.3539,0.7071,40.0333,-2.2919,0.7736,39.691,-1.977,0.7758,39.8038,-2.0054,0.7211,39.8174,-1.8982,0.6962,39.4796,-2.046,0.6466,39.5222,-1.9305,0.3309,38.8577,-2.0845,0.4712,39.1105,-2.2483,0.471,39.1321,-2.3004,0.4676,39.2456,-2.2067,0.2143,38.9356,-2.2779,0.2169,38.8265,-2.2176,0.4447,38.7419,-2.3652,0.4126,38.7289,-2.3961,0.385,39.167,-2.412,0.5041,40.0126,-2.3083,0.529,39.8897,-2.3942,0.4802,39.8829,-2.2955,0.1214,39.7919,-2.2118,0.2072,39.8001,-2.1971,0.213,39.8203,-2.1737,0.267,39.8091,-2.1464,0.6564,40.0971,-2.2124,0.5417,40.1891,-2.4034,0.5563,39.8345,-2.4468,0.5534,39.982,-2.4417,0.6132,40.0467,-1.8322,0.7594,40.1653,-1.6798,0.6662,39.7082,-1.6727,0.6766,39.7113,-1.7779,0.7135,39.8338,-1.8061,0.1528,40.1656,-1.7928,0.0,40.1654,-1.7482,0.1586,40.1624,-1.7224,0.443,40.0075,-2.0556,0.5319,40.058,-2.0411,0.4616,40.1803,-2.1187,0.4083,39.9852,-1.9604,0.4932,39.7343,-2.2959,0.4813,39.8045,-2.2956,0.4412,39.9524,-2.2489,0.3431,40.0567,-2.1168,0.3321,40.0621,-2.1235,0.0,39.1146,-2.4689,0.4937,39.351,-2.1797,0.3824,39.0641,-2.418,0.2657,39.1226,-2.428,0.2498,39.0029,-2.4545,0.2676,39.3109,-2.3866,0.2219,39.5441,-2.3299,0.3907,39.3508,-2.3038,0.1496,39.2655,-2.6113,0.1882,39.3492,-2.4711,0.2073,39.2375,-2.514,0.0887,39.5542,-2.6349,0.1358,39.5693,-2.4078,0.1316,39.4487,-2.5723,0.0,39.8239,-2.5995,0.0131,39.8025,-2.785,0.3276,39.4944,-2.0733,0.3012,39.4033,-2.1153,0.2898,40.0487,-1.8716,0.394,39.8635,-2.0468,0.0,39.8113,-2.4425,0.0283,39.8159,-2.6053,0.1803,39.4328,-2.4473,0.2722,39.1835,-2.434,0.456,39.3104,-2.2258,0.4389,39.2752,-2.2461,0.5752,39.4147,-2.11,0.5028,39.4086,-2.0557,0.2121,38.9079,-2.4197,0.1902,38.9142,-2.4085,0.0,39.3367,-2.2761,0.3495,39.8644,-2.1741,0.3785,39.838,-2.2235,0.4909,39.5739,-2.2679,0.4013,39.7028,-2.2628,0.5598,39.6394,-2.2835,0.5705,39.7432,-2.3689,0.6477,39.7521,-2.4418,0.1658,40.1344,-1.6087,0.156,39.2736,-1.4517,0.0,39.2844,-1.4462,0.7212,39.84,-1.6903,0.635,39.9493,-1.8672,0.6123,39.9724,-1.8976,0.5981,39.9767,-1.8833,0.5032,40.0712,-1.8939,0.7976,40.1788,-1.569,0.5551,40.0866,-2.4193,0.5231,40.1239,-2.3636,0.5598,40.1368,-2.4634,0.5319,40.295,-2.1757,0.1533,39.7118,-2.3614,0.2905,39.6834,-2.2927,0.4776,39.0197,-2.3686,0.3982,38.6585,-2.3484,0.3894,38.628,-2.2723,0.3769,38.6109,-2.2815,0.4688,39.002,-2.314,0.4311,38.7232,-2.3084,0.4356,38.855,-2.2557,0.4095,38.7065,-2.2553,0.7806,39.5372,-2.0213,0.7045,39.6059,-1.893,1.1972,39.6387,-2.1664,1.1836,39.6969,-2.173,1.3043,39.8273,-2.268,1.1602,39.7966,-2.1844,1.3211,39.7722,-2.2637,0.9963,39.8697,-2.137,0.8652,39.8832,-2.0936,0.8854,39.508,-2.1171,0.8829,39.5024,-2.105,0.7796,39.4865,-2.1101,0.6146,39.5764,-2.2197,0.7688,39.5444,-2.194,0.9402,39.8533,-2.2312,1.1311,39.8803,-2.204,1.0154,39.7837,-2.1275,0.2005,39.2134,-2.5215,0.007,39.1366,-2.833,0.0,39.1329,-2.8308,0.0252,39.1699,-2.9284,0.1048,39.1408,-3.2798,0.0852,39.1149,-3.2788,0.0525,39.7458,-3.3004,0.3766,39.2617,-2.3609,0.8658,39.8086,-2.3108,0.7959,39.8825,-2.4226,0.7032,39.9855,-2.697,0.7032,40.0421,-2.6725,0.4903,40.1686,-1.7389,0.3372,40.1772,-1.7288,0.3376,40.1358,-1.6081,0.5598,39.1691,-1.6632,0.4674,39.1858,-1.5695,0.4914,39.2725,-1.2902,0.3216,39.2759,-1.3741,0.4031,39.2765,-1.3712,0.4585,39.3107,-0.9855,0.5923,39.2737,-0.9821,0.5499,39.2801,-0.8904,0.7124,39.2421,-0.991,0.6513,39.273,-0.8543,0.4126,39.2384,-1.4927,0.5628,39.193,-1.5114,0.5118,39.2227,-1.45,0.5448,39.269,-1.675,0.6549,39.3642,-1.576,0.6868,39.594,-1.4885,0.7398,39.4721,-1.4626,0.6904,39.4821,-1.5542,0.8713,39.4188,-1.1656,0.8323,39.3949,-1.3073,0.7926,39.4979,-1.3305,0.9122,39.3253,-1.1365,0.8754,39.3096,-1.3133,0.8141,39.9637,-1.565,0.7397,39.846,-1.5243,0.6119,39.9832,-0.8515,0.6913,39.9474,-0.9664,0.743,40.0726,-0.9451,0.6043,39.5831,-0.7859,0.6762,39.6827,-0.9512,0.5994,39.7173,-0.8218,0.5559,40.3336,-2.239,0.6016,40.3128,-2.2971,0.5806,40.3213,-2.309,0.328,40.297,-0.6894,0.1831,40.2947,-0.6662,0.4544,40.2341,-1.0524,0.3869,39.7098,-1.8852,0.7648,39.3657,-1.4615,0.5823,39.2912,-0.7676,0.4678,39.3492,-0.5873,0.4708,39.3115,-0.6642,0.6363,40.2156,-0.8384,0.6378,40.2015,-0.8351,0.6879,40.192,-0.896,0.3708,40.1893,-2.1438,0.2648,39.8059,-2.1394,0.2713,39.8145,-2.1349,0.0,39.759,-2.2457,0.1185,39.7861,-2.2058,0.3808,39.8377,-2.2241,0.4666,40.319,-2.2244,0.6305,40.0162,-2.6872,0.5523,40.3138,-2.3232,0.5913,40.2642,-2.4465,0.7343,40.0206,-2.6603,0.8366,39.6249,-2.3586,0.743,39.9639,-2.6578,1.3904,39.8184,-2.3899,1.1015,39.7786,-2.2923,0.9842,39.7853,-2.278,1.0907,39.8203,-2.2889,1.4069,39.912,-2.3737,1.4144,39.906,-2.3523,1.4767,39.8565,-2.376,1.521,39.6211,-2.3384,1.1691,39.5693,-2.2197,0.6059,39.7108,-2.3503,0.3381,39.3222,-2.133,0.289,38.6575,-2.204,0.2644,39.7201,-2.263,0.327,39.7402,-2.2363,0.1925,39.8295,-2.1833,0.1022,39.7908,-2.3191,0.0338,39.7766,-3.1505,0.0,39.7778,-3.1449,0.0798,39.24,-3.388,0.0777,39.403,-3.3274,0.0552,39.1551,-2.5997,0.0345,39.173,-2.8456,0.0064,39.0974,-2.5242,0.0245,39.115,-2.4907,0.3468,38.7178,-2.364,0.3036,38.7154,-2.2997,0.3659,39.4183,-2.0871,0.0654,39.2589,-2.8312,0.1047,39.2674,-2.7199,0.4427,39.2707,-2.2415,0.4384,39.0272,-2.4079,0.3088,38.711,-2.1195,0.3308,38.6233,-2.2086,0.3362,38.6241,-2.2063,0.3709,39.1093,-2.0841,0.4047,39.2169,-2.1214,-0.2898,40.0487,-1.8716,-0.3431,40.0567,-2.1168,-0.1316,39.4487,-2.5723,-0.2657,39.1226,-2.428,-0.4909,39.5739,-2.2679,-0.439,39.4594,-2.2802,-0.3821,39.8446,-2.2239,-0.5598,39.6394,-2.2835,-0.5594,39.8283,-2.4472,-0.394,39.8635,-2.0468,-0.1658,40.1344,-1.6087,-0.156,39.2736,-1.4517,-0.7135,39.8338,-1.8061,-0.635,39.9493,-1.8672,-0.5981,39.9767,-1.8833,-0.6123,39.9724,-1.8976,-0.8108,40.072,-1.5678,-0.7976,40.1788,-1.569,-0.5598,40.1368,-2.4634,-0.5231,40.1239,-2.3636,-0.5534,39.982,-2.4417,-0.5319,40.295,-2.1757,-0.5551,40.0866,-2.4193,-0.471,39.1321,-2.3004,-0.4471,39.1665,-2.3195,-0.3982,38.6585,-2.3484,-0.4712,39.1105,-2.2483,-0.4776,39.0197,-2.3686,-0.7806,39.5372,-2.0213,-0.8658,39.8086,-2.3108,-0.7959,39.8825,-2.4226,-0.8252,39.6132,-2.3211,-0.4251,39.1693,-1.6854,-0.2953,39.239,-1.7033,-0.3123,39.163,-1.6742,-1.1836,39.6969,-2.173,-1.3211,39.7722,-2.2637,-1.1602,39.7966,-2.1844,-1.3043,39.8273,-2.268,-0.8652,39.8832,-2.0936,-0.8829,39.5024,-2.105,-0.8852,39.5069,-2.0979,-0.6146,39.5764,-2.2197,-0.9963,39.8697,-2.137,-0.9904,39.8585,-2.241,-1.099,39.8788,-2.2723,-1.0907,39.8203,-2.2889,-1.0154,39.7837,-2.1275,-0.2005,39.2134,-2.5215,-0.007,39.1366,-2.833,-0.0852,39.1149,-3.2788,-0.1048,39.1408,-3.2798,-0.0638,39.6938,-3.3848,-0.0696,39.5802,-3.3189,-0.0525,39.7458,-3.3004,-0.0144,39.1049,-3.2966,-0.4428,39.1717,-2.3232,-0.7032,39.9855,-2.697,-0.6683,39.979,-2.7042,-0.7095,39.9436,-2.678,-0.7032,40.0421,-2.6725,-0.3376,40.1358,-1.6081,-0.4903,40.1686,-1.7389,-0.4889,40.1529,-1.5543,-0.4031,39.2765,-1.3712,-0.3207,39.2948,-1.2626,-0.5923,39.2737,-0.9821,-0.5499,39.2801,-0.8904,-0.6513,39.273,-0.8543,-0.5448,39.269,-1.675,-0.5201,39.3754,-1.6762,-0.4129,39.2685,-1.7017,-0.6549,39.3642,-1.576,-0.7398,39.4721,-1.4626,-0.6868,39.594,-1.4885,-0.698,39.7409,-1.5202,-0.8713,39.4188,-1.1656,-0.7926,39.4979,-1.3305,-0.8323,39.3949,-1.3073,-0.7397,39.846,-1.5243,-0.6119,39.9832,-0.8515,-0.6266,40.1165,-0.8265,-0.743,40.0726,-0.9451,-0.4848,40.0174,-0.7493,-0.6043,39.5831,-0.7859,-0.5994,39.7173,-0.8218,-0.6762,39.6827,-0.9512,-0.707,39.7088,-1.887,-0.2362,39.1656,-2.1957,-0.5806,40.3213,-2.309,-0.6016,40.3128,-2.2971,-0.5559,40.3336,-2.239,-0.328,40.297,-0.6894,-0.4544,40.2341,-1.0524,-0.3664,39.8431,-1.9323,-0.7648,39.3657,-1.4615,-0.5823,39.2912,-0.7676,-0.504,40.3226,-2.1946,-0.4289,40.2431,-2.131,-0.2713,39.8145,-2.1349,-0.267,39.8091,-2.1464,-0.3808,39.8377,-2.2241,-0.4666,40.319,-2.2244,-0.6352,39.9708,-2.6936,-0.5913,40.2642,-2.4465,-0.5523,40.3138,-2.3232,-0.7343,40.0206,-2.6603,-0.8366,39.6249,-2.3586,-0.834,39.6503,-2.3807,-0.743,39.9639,-2.6578,-0.7909,39.7726,-2.4529,-1.4379,39.7284,-2.405,-1.4472,39.8397,-2.4145,-1.3904,39.8184,-2.3899,-1.4767,39.8565,-2.376,-1.4144,39.906,-2.3523,-1.4773,39.8514,-2.3988,-1.2823,39.8997,-2.2736,-0.6059,39.7108,-2.3503,-0.5705,39.7432,-2.3689,-0.3381,39.3222,-2.133,-0.3495,39.8644,-2.1741,-0.3785,39.838,-2.2235,-0.0552,39.1551,-2.5997,-0.0345,39.173,-2.8456,-0.1047,39.2674,-2.7199,-0.0654,39.2589,-2.8312,-0.0151,39.1054,-2.5912,-0.4046,38.7296,-2.3979,-0.3088,38.711,-2.1195,-0.3362,38.6241,-2.2063,-0.4047,39.2169,-2.1214,-0.3709,39.1093,-2.0841,-0.3659,39.4183,-2.0871,-0.4389,39.2752,-2.2461,-0.4427,39.2707,-2.2415,-0.0286,39.1756,-2.7125,-0.4095,38.7065,-2.2553,-0.4356,38.855,-2.2557,-0.4582,39.1098,-2.2185,-0.3532,38.7577,-2.3809,-0.0338,39.7766,-3.1505,0.0,39.8001,-2.3306,-0.1925,39.8295,-2.1833,-0.289,38.6575,-2.204,-0.1208,39.7865,-2.2044,-0.4932,39.7343,-2.2959,-1.521,39.6211,-2.3384,-1.5234,39.6156,-2.3589,-1.5201,39.6921,-2.3544,-1.4069,39.912,-2.3737,-1.1015,39.7786,-2.2923,-1.4747,39.7381,-2.4107,-0.818,39.6387,-2.3763,-0.1185,39.7861,-2.2058,-0.6132,40.0467,-1.8322,-0.5032,40.0712,-1.8939,-0.6879,40.192,-0.896,-0.6378,40.2015,-0.8351,-0.6363,40.2156,-0.8384,-0.5118,39.2227,-1.45,-0.3869,39.7098,-1.8852,-0.1831,40.2947,-0.6662,-0.7116,39.5577,-0.9041,-0.4816,40.1411,-0.7346,-0.6913,39.9474,-0.9664,-0.8123,39.5121,-1.1874,-0.3974,39.3601,-1.7233,-0.7124,39.2421,-0.991,-0.4585,39.3107,-0.9855,-0.5392,40.1589,-1.4925,-0.4688,40.1566,-1.4867,-0.3372,40.1772,-1.7288,-0.7134,39.6194,-2.276,-0.6143,40.1698,-2.1386,-0.1533,39.7118,-2.3614,-0.1453,39.7498,-2.3232,-0.4688,39.002,-2.314,-0.3894,38.628,-2.2723,-0.6343,39.9681,-1.898,-0.4059,39.4995,-1.7599,0.0,40.1466,-1.5709,-0.2832,38.8224,-2.3527,0.3974,39.2209,-2.117,0.4046,38.7296,-2.3979,0.4041,38.727,-2.3967,0.0286,39.1756,-2.7125,0.3769,38.6974,-2.2057,0.4582,39.1098,-2.2185,1.099,39.8788,-2.2723,0.9904,39.8585,-2.241,1.5234,39.6156,-2.3589,1.4773,39.8514,-2.3988,0.6599,39.3284,-0.6952,0.3664,39.8431,-1.9323,0.5506,39.5124,-1.8168,0.3419,38.9745,-2.0661,0.707,39.7088,-1.887,0.6266,40.1165,-0.8265,0.7116,39.5577,-0.9041,0.8123,39.5121,-1.1874,0.4129,39.2685,-1.7017,0.3207,39.2948,-1.2626};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getl2_Coord_6_145_point_2()
		{
			double[] value = {0.4688,40.1566,-1.4867,0.5392,40.1589,-1.4925,0.4889,40.1529,-1.5543,0.42,38.676,-2.3273,0.5629,40.1832,-2.1148,0.6281,39.833,-2.5561,0.6953,39.9248,-1.8503,0.439,39.4594,-2.2802,0.351,39.5735,-2.2898,0.0998,39.6979,-2.5111,0.0699,39.8043,-2.4553,0.1386,39.3788,-2.5978,0.4211,39.2243,-2.1436,0.4314,40.1408,-2.2374,0.6094,39.9005,-2.6318,0.5094,40.2264,-2.3475,0.5791,40.2951,-2.2021,0.4659,38.8732,-2.4074,0.4574,38.8555,-2.3531,0.3622,38.857,-2.1364,1.4963,39.6097,-2.3156,1.2572,39.915,-2.3316,0.7507,40.0802,-2.5907,0.3349,40.2599,-0.9021,0.4775,40.2728,-0.8916,0.5339,40.2671,-0.9288,0.6332,39.233,-1.2805,0.6102,39.2283,-1.3529,0.7585,39.2074,-1.2847,0.3219,39.258,-1.4774,0.7317,39.7588,-1.3825,0.8499,39.9869,-1.441,0.1691,39.7284,-1.7492,0.2933,39.4686,-1.7549,0.1916,40.2495,-0.6366,0.6084,39.9915,-1.9116,0.1208,39.7865,-2.2044,0.4588,40.3182,-2.2148,0.6075,39.9074,-2.634,1.4022,39.9042,-2.383,1.4516,39.6759,-2.3911,0.225,39.4703,-2.1711,0.3368,38.6551,-2.296,0.3905,38.6584,-2.3503,0.4954,39.3714,-2.1967,-0.1386,39.3788,-2.5978,-0.4194,38.8825,-2.4414,-0.3622,38.857,-2.1364,-0.6614,39.6155,-1.7684,-1.0148,39.7053,-2.285,-0.9307,39.524,-2.1351,-0.9077,39.2495,-1.1356,-1.4653,39.6234,-2.3772,-1.174,39.5712,-2.2091,-1.3436,39.6286,-2.2361,-1.3516,39.9135,-2.3643,-0.0744,39.4161,-2.9529,0.0,39.3672,-3.4334,-0.7507,40.0802,-2.5907,-0.335,40.2761,-0.8154,-0.7953,39.9085,-1.2522,-0.7572,39.4451,-0.8504,-0.8499,39.9869,-1.441,-1.4855,39.6826,-2.4013,-0.6204,40.2527,-1.0419,-0.158,39.8902,-1.8002,-0.2891,39.6662,-2.1055,-0.6306,40.1511,-1.7891,-0.3378,40.2298,-0.6617,-0.6359,39.9861,-1.8439,-0.2533,38.8426,-2.1333,-0.213,39.8203,-2.1737,-0.0788,39.7967,-2.4602,-0.0751,39.5754,-3.4303,-0.0176,39.1236,-2.4514,-0.3244,38.8588,-2.0829,-0.05,39.699,-3.3944,0.0,39.5788,-3.4386,-0.0595,39.5778,-3.4451,0.0,39.7015,-3.3917,-0.0284,39.7659,-3.005,-0.0463,39.768,-3.1493,0.0,39.7581,-3.3057,-0.0405,39.754,-3.3047,-0.9322,39.5313,-2.1168,-1.3949,39.8856,-2.3908,-1.4695,39.8466,-2.4088,-1.4022,39.9042,-2.383,-1.3808,39.9084,-2.3319,-1.4317,39.8412,-2.3341,-1.4516,39.6759,-2.3911,-1.2826,39.7902,-2.3425,-1.454,39.7737,-2.3234,-0.4242,40.2221,-2.2245,-0.4703,40.2234,-2.2832,-0.6144,40.0103,-1.848,-0.6456,39.9854,-1.9134,0.0,40.2932,-0.6642,-0.1812,40.2996,-0.6783,0.0,40.2985,-0.6768,-0.6898,40.2677,-0.983,-0.6104,40.2873,-0.8654,-0.6025,40.292,-0.8725,-0.6976,40.2623,-0.9753,-0.8207,40.1976,-1.4528,-0.8302,40.191,-1.4529,-0.7897,40.186,-1.5664,-0.1521,40.1589,-1.8028,0.0,40.1602,-1.7581,-0.4708,39.3115,-0.6642,-0.4548,39.3048,-0.7747,-0.1745,39.3238,-1.224,-0.3198,39.3137,-1.1511,-0.1753,39.3464,-1.1099,-0.1749,39.5807,-1.7153,0.0,39.483,-1.6742,-0.1775,39.4695,-1.6931,0.0,39.5937,-1.681,-0.1192,39.6483,-2.2172,0.0,39.649,-2.2536,-0.3839,39.8339,-2.045,-0.4121,39.7011,-2.0128,-0.177,39.3568,-1.685,-0.294,39.3529,-1.7317,0.0,40.1638,-1.4017,-0.1723,40.1421,-1.5124,-0.1788,40.1497,-1.4162,0.0,40.1552,-1.4863,0.0,40.2684,-0.6408,-0.2924,39.3622,-0.5069,-0.1492,39.3426,-0.563,-0.1323,39.372,-0.4669,-0.3004,39.3231,-0.6108,-0.4351,39.6085,-0.6833,-0.449,39.752,-0.7226,-0.2731,39.75,-0.658,-0.2658,39.618,-0.6232,-0.3038,40.0443,-0.6791,-0.3383,40.149,-0.6744,-0.467,39.8816,-0.7463,-0.6014,39.8468,-0.8515,-0.736,39.6136,-1.345,-0.7504,39.6329,-1.2199,-0.7281,39.8035,-1.0941,-0.765,39.9322,-1.0939,-0.6726,39.8188,-0.9705,-0.6836,39.2635,-1.5864,-0.3225,39.3224,-0.6984,-0.3151,39.3501,-0.8122,-0.1743,39.3561,-0.9563,-0.1553,39.371,-0.7427,-0.3211,39.3328,-0.9762,-0.5108,39.275,-1.1569,-0.6227,39.2451,-1.144,-0.8579,39.2696,-0.9777,-0.7684,39.2243,-1.1634,-0.3245,40.3021,-0.6997,-0.5595,40.2201,-1.1331,-0.6556,40.2328,-1.127,-0.4772,40.1818,-1.2751,-0.5844,40.2008,-1.2685,-0.4537,40.2193,-1.1203,-0.3373,40.1663,-1.2627,-0.4681,40.1627,-1.4129,-0.3378,40.1548,-1.3999,-0.6158,40.1721,-1.6183,-0.5598,40.1702,-1.6867,-0.6866,40.1813,-1.5283,-0.3376,40.1471,-1.5041,-0.0259,39.7917,-2.7864,-0.0369,39.8066,-2.6075,-0.0691,39.5613,-2.8024,-0.8806,39.7918,-2.0722,-1.3372,39.6929,-2.2473,-1.297,39.7099,-2.3417,-1.1691,39.5693,-2.2197,-0.4678,39.3492,-0.5873,-0.6599,39.3284,-0.6952,-0.8002,39.2776,-1.4794,-0.6954,39.176,-1.588,-0.179,39.2397,-1.6685,-0.3753,38.9771,-2.109,-0.3487,38.9741,-2.0675,-0.3973,39.1098,-2.119,-0.4879,40.1534,-2.3129,-0.7403,40.1741,-0.96,-0.3177,40.1747,-1.8469,-0.4731,40.1621,-1.8663,-0.7206,39.6624,-1.0738,-0.2876,39.8916,-0.6876,-0.135,39.7697,-0.6145,-0.1396,39.9081,-0.6449,0.0,39.355,-1.1106,0.0,39.3648,-0.9514,0.0,39.4481,-0.4454,0.0,39.3731,-0.4588,0.0,39.7833,-0.6014,0.0,39.923,-0.6181,0.0003,40.2971,-0.7738,-0.1743,40.1961,-1.1115,0.0,40.1814,-1.2535,-0.1807,40.1671,-1.2574,0.0,40.2165,-1.1026,-0.1035,39.4004,-2.6844,-0.1201,39.4564,-2.233,0.0,39.4929,-2.2649,0.0,40.0382,-1.7982,0.0,39.8718,-1.766,-0.1514,40.0607,-1.8393,0.3244,38.8588,-2.0829,0.4416,38.9867,-2.2308,0.3973,39.1098,-2.119,0.3753,38.9771,-2.109,0.05,39.699,-3.3944,0.0405,39.754,-3.3047,0.0259,39.7917,-2.7864,0.0369,39.8066,-2.6075,0.8931,39.4986,-2.1072,0.8983,39.4998,-2.1116,0.917,39.5067,-2.119,1.5055,39.756,-2.4036,0.8949,39.5016,-2.1024,0.9177,39.5091,-2.1106,1.3808,39.9084,-2.3319,1.4317,39.8412,-2.3341,1.3509,39.9209,-2.3555,0.4703,40.2234,-2.2832,0.6144,40.0103,-1.848,0.6157,39.9829,-1.859,0.4854,40.2156,-0.7278,0.485,40.2294,-0.731,0.4718,40.3,-0.7812,0.4765,40.2956,-0.7712,0.3245,40.3021,-0.6997,0.7861,40.2338,-1.1191,0.821,40.2263,-1.2788,0.7767,40.2395,-1.1244,0.8301,40.2199,-1.2792,0.3205,40.1816,-1.8381,0.4731,40.1621,-1.8663,0.3177,40.1747,-1.8469,0.4719,40.1697,-1.8562,0.7846,39.2981,-0.8328,0.5108,39.275,-1.1569,0.6227,39.2451,-1.144,0.1192,39.6483,-2.2172,0.1201,39.4564,-2.233,0.294,39.3529,-1.7317,0.179,39.2397,-1.6685,0.177,39.3568,-1.685,0.2953,39.239,-1.7033,0.1749,39.5807,-1.7153,0.3839,39.8339,-2.045,0.4121,39.7011,-2.0128,0.1775,39.4695,-1.6931,0.1723,40.1421,-1.5124,0.1788,40.1497,-1.4162,0.1492,39.3426,-0.563,0.2924,39.3622,-0.5069,0.1323,39.372,-0.4669,0.3004,39.3231,-0.6108,0.6614,39.6155,-1.7684,0.4351,39.6085,-0.6833,0.449,39.752,-0.7226,0.2731,39.75,-0.658,0.2658,39.618,-0.6232,0.4816,40.1411,-0.7346,0.3038,40.0443,-0.6791,0.4848,40.0174,-0.7493,0.3383,40.149,-0.6744,0.467,39.8816,-0.7463,0.6014,39.8468,-0.8515,0.7572,39.4451,-0.8504,0.6653,39.4055,-0.6924,0.783,39.373,-0.8194,0.6401,39.4691,-0.7389,0.736,39.6136,-1.345,0.7504,39.6329,-1.2199,0.7281,39.8035,-1.0941,0.765,39.9322,-1.0939,0.6726,39.8188,-0.9705,0.6954,39.176,-1.588,0.7684,39.2243,-1.1634,0.1533,39.3396,-0.6586,0.3151,39.3501,-0.8122,0.3225,39.3224,-0.6984,0.1553,39.371,-0.7427,0.4548,39.3048,-0.7747,0.3922,39.3321,-0.8517,0.1753,39.3464,-1.1099,0.3211,39.3328,-0.9762,0.1743,39.3561,-0.9563,0.3198,39.3137,-1.1511,0.6025,40.292,-0.8725,0.3436,40.2095,-1.1063,0.3402,40.2318,-1.0165,0.4537,40.2193,-1.1203,0.7273,40.2143,-1.2763,0.6556,40.2328,-1.127,0.3373,40.1663,-1.2627,0.1743,40.1961,-1.1115,0.1807,40.1671,-1.2574,0.5844,40.2008,-1.2685,0.7192,40.1862,-1.4448,0.5575,40.1708,-1.4133,0.5598,40.1702,-1.6867,0.6158,40.1721,-1.6183,0.6866,40.1813,-1.5283,0.0691,39.5613,-2.8024,0.5499,39.5052,-2.198,0.8852,39.5069,-2.0979,1.454,39.7737,-2.3234,0.9013,39.6811,-2.0432,0.8806,39.7918,-2.0722,1.1204,39.7062,-2.298,0.9077,39.2495,-1.1356,0.3487,38.9741,-2.0675,0.6269,40.2685,-2.4309,0.4592,40.1472,-2.2746,0.8187,40.1452,-1.0881,0.1521,40.1589,-1.8028,0.1514,40.0607,-1.8393,0.0,39.3098,-1.3381,0.1737,39.3012,-1.3381,0.0,39.3702,-0.7247,0.0,39.3504,-0.656,0.1266,39.6391,-0.5702,0.0,39.514,-0.4932,0.0,39.6341,-0.5576,0.0,40.1998,-0.6337,0.1572,40.0461,-0.6502,0.1905,40.1805,-0.6383,0.0,40.0719,-0.6332,0.1483,40.2291,-0.9775,0.0,40.2684,-0.8655,0.0,40.246,-0.9671,0.3709,38.6112,-2.2846,0.4879,40.1534,-2.3129,0.1396,39.9081,-0.6449,0.0,39.2637,-1.6482,0.698,39.7409,-1.5202,0.6315,39.9712,-1.8523,0.8302,40.191,-1.4529,0.6104,40.2873,-0.8654,0.7129,40.0823,-2.4576,0.8002,39.2776,-1.4794,1.2826,39.7902,-2.3425,1.297,39.7099,-2.3417,0.078,39.4187,-2.8088,0.1035,39.4004,-2.6844,0.0577,39.5689,-2.9751,0.0613,39.5784,-3.1419,0.4772,40.1818,-1.2751,0.4681,40.1627,-1.4129,0.6898,40.2677,-0.983,0.8579,39.2696,-0.9777,0.7766,39.5479,-1.0431,0.8407,39.4239,-0.9835,0.2876,39.8916,-0.6876,0.7403,40.1741,-0.96,0.0,39.3454,-0.5622,0.0,39.3719,-1.6692,0.0,39.7221,-1.7003,0.0,39.3324,-1.2243,0.1745,39.3238,-1.224,0.8207,40.1976,-1.4528,0.0,40.2555,-0.6354,0.6942,40.194,-2.4923,1.462,39.6919,-2.3112,0.0284,39.7659,-3.005,0.0463,39.768,-3.1493,0.0595,39.5778,-3.4451,-0.1483,40.2291,-0.9775,-0.1905,40.1805,-0.6383,-0.1266,39.6391,-0.5702,-0.1737,39.3012,-1.3381,-0.485,40.2294,-0.731,-0.4765,40.2956,-0.7712,-0.7846,39.2981,-0.8328,-1.1204,39.7062,-2.298,-0.078,39.4187,-2.8088,-0.0577,39.5689,-2.9751,-0.0613,39.5784,-3.1419,-0.3205,40.1816,-1.8381,-0.5575,40.1708,-1.4133,-0.7192,40.1862,-1.4448,-0.4719,40.1697,-1.8562,-0.3436,40.2095,-1.1063,-0.7767,40.2395,-1.1244,-0.3402,40.2318,-1.0165,-0.3922,39.3321,-0.8517,-0.1533,39.3396,-0.6586,-0.4674,39.1858,-1.5695,-0.5628,39.193,-1.5114,-0.7766,39.5479,-1.0431,-0.8283,40.0365,-1.0928,-0.4854,40.2156,-0.7278,-1.5055,39.756,-2.4036,-0.6315,39.9712,-1.8523,-0.6157,39.9829,-1.859,-0.6942,40.194,-2.4923,-1.462,39.6919,-2.3112,-1.3509,39.9209,-2.3555,-0.917,39.5067,-2.119,-0.4416,38.9867,-2.2308,-0.3419,38.9745,-2.0661,-0.6269,40.2685,-2.4309,-0.4588,40.3182,-2.2148,-0.4592,40.1472,-2.2746,-0.4718,40.3,-0.7812,-0.821,40.2263,-1.2788,-0.7129,40.0823,-2.4576,-0.1572,40.0461,-0.6502,-0.8407,39.4239,-0.9835,-0.8707,39.346,-0.9744,-0.5598,39.1691,-1.6632,-0.7273,40.2143,-1.2763,-0.7653,39.9918,-2.5182,-0.9013,39.6811,-2.0432,0.9322,39.5313,-2.1168,0.1812,40.2996,-0.6783,0.6976,40.2623,-0.9753,0.7897,40.186,-1.5664,0.3376,40.1471,-1.5041,0.3378,40.1548,-1.3999,0.8283,40.0365,-1.0928,0.135,39.7697,-0.6145,0.8707,39.346,-0.9744,0.7206,39.6624,-1.0738,0.6836,39.2635,-1.5864,0.5595,40.2201,-1.1331,0.7653,39.9918,-2.5182,1.3372,39.6929,-2.2473};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_146_vector_1()
		{
			double[] value = {-0.9993,0.0139,-0.0337,-0.9967,-0.0319,0.0748,-0.9965,0.0672,0.05,-0.9961,0.0763,0.0451,-0.9954,-0.0941,-0.0185,-0.9946,0.0172,-0.1021,-0.9931,0.1148,-0.0257,-0.9928,0.0978,0.0687,-0.9906,0.0191,-0.1357,-0.9892,0.1261,-0.0743,-0.9875,0.0285,0.1552,-0.9861,0.1518,0.0673,-0.986,-0.151,0.0702,-0.984,-0.1745,0.037,-0.9838,0.1766,0.0323,-0.9827,0.018,-0.1845,-0.98,0.0918,-0.1765,-0.9798,-0.1919,0.057,-0.979,0.2037,-0.0102,-0.9782,-0.119,0.17,-0.9761,0.2152,0.0305,-0.9757,-0.0357,-0.2163,-0.9755,0.1294,0.1778,-0.9742,0.2224,0.0385,-0.9712,-0.1294,0.2,-0.9709,-0.0129,-0.2391,-0.9704,-0.2384,-0.0383,-0.9694,-0.0969,0.2255,-0.9685,-0.1832,-0.1687,-0.964,0.1796,-0.196,-0.9636,-0.2456,0.106,-0.9633,-0.2166,0.1584,-0.9603,0.1096,0.2566,-0.9582,-0.2545,-0.1308,-0.956,-0.256,0.143,-0.9546,0.0322,-0.296,-0.9546,0.1875,-0.2314,-0.9539,0.1181,-0.2759,-0.9515,0.0724,-0.299,-0.9509,-0.0129,-0.3092,-0.9475,-0.219,0.2329,-0.9463,-0.2596,-0.1929,-0.9451,0.197,-0.2607,-0.9434,0.217,0.2509,-0.9409,-0.2871,-0.1794,-0.9399,0.3184,-0.1234,-0.9388,0.3428,-0.0324,-0.9365,0.175,-0.3039,-0.9364,-0.1071,0.3342,-0.9361,0.1217,-0.3301,-0.9357,-0.3311,0.1222,-0.9352,0.3162,0.1595,-0.9352,-0.3366,-0.1104,-0.9335,0.1145,0.3397,-0.9326,0.2066,-0.296,-0.9298,0.2976,0.2168,-0.9268,0.1641,-0.3379,-0.9251,0.2396,-0.2947,-0.923,-0.3833,-0.0337,-0.9229,-0.1328,0.3614,-0.9229,-0.3112,-0.2266,-0.9228,-0.2359,-0.3047,-0.9225,-0.1121,0.3694,-0.9211,-0.2485,-0.2997,-0.9208,0.0478,0.3872,-0.9186,-0.0501,-0.392,-0.9182,0.0255,-0.3953,-0.9154,0.061,-0.3979,-0.9154,0.084,-0.3937,-0.9153,0.2286,0.3317,-0.9149,-0.3739,0.1523,-0.9148,-0.1368,0.3801,-0.9112,0.1419,0.3868,-0.9089,0.2524,-0.332,-0.9089,-0.2111,0.3597,-0.908,-0.3267,-0.2624,-0.9078,0.2754,0.3162,-0.9075,0.1233,-0.4017,-0.9074,0.2625,-0.3284,-0.9063,-0.1132,-0.4071,-0.9029,-0.4178,0.1012,-0.9014,0.4106,-0.1376,-0.9013,0.0227,-0.4326,-0.9005,-0.0926,0.4248,-0.9004,0.4295,-0.0694,-0.8995,0.3811,-0.2136,-0.8989,-0.2116,-0.3837,-0.898,0.0331,-0.4387,-0.8934,-0.4405,-0.0879,-0.8925,-0.247,-0.3775,-0.8909,-0.4261,-0.1573,-0.8907,0.3063,0.3358,-0.8895,0.3453,-0.2992,-0.8889,0.4573,0.0267,-0.886,-0.0238,0.4631,-0.8856,0.2044,0.4171,-0.8836,-0.464,-0.0626,-0.8833,-0.4678,-0.0306,-0.8827,-0.235,0.4069,-0.8822,-0.1395,0.4497,-0.8746,0.4845,0.0162,-0.8743,0.3403,-0.3461,-0.8735,-0.2371,-0.4251,-0.8728,0.4872,-0.0294,-0.8714,0.2453,-0.4248,-0.8692,0.4448,0.216,-0.8678,0.4956,-0.0366,-0.8662,-0.461,-0.1927,-0.8646,-0.1892,-0.4654,-0.8645,0.4453,0.2331,-0.8635,0.5043,-0.0051,-0.8581,0.5121,0.037,-0.8554,0.402,-0.3267,-0.8547,0.2158,-0.4721,-0.8545,-0.4893,0.1742,-0.8541,0.514,-0.0794,-0.8524,0.5097,-0.1166,-0.8513,0.4997,-0.1599,-0.8483,-0.1404,0.5105,-0.8475,0.4563,-0.2713,-0.8468,-0.3719,0.3803,-0.8465,-0.1483,-0.5113,-0.8455,0.2473,-0.4732,-0.8442,0.1645,-0.5101,-0.8432,0.4619,0.2748,-0.8429,0.1639,-0.5125,-0.8401,0.4969,0.2174,-0.8401,-0.018,-0.5422,-0.8388,-0.5266,0.1383,-0.8387,-0.5405,-0.0676,-0.8385,-0.178,0.5149,-0.8381,0.2988,-0.4564,-0.8377,0.3018,0.4553,-0.8374,0.2698,0.4753,-0.8363,0.2011,-0.5101,-0.8351,0.0147,-0.5498,-0.8323,-0.0381,-0.5531,-0.8323,-0.2788,-0.4792,-0.8321,-0.2227,0.508,-0.8313,0.1399,-0.538,-0.8311,-0.2688,0.4868,-0.8303,-0.3622,-0.4236,-0.8282,0.56,0.0197,-0.8274,-0.0823,0.5556,-0.8261,0.0363,-0.5623,-0.8246,-0.1522,0.5449,-0.8232,0.5222,-0.2225,-0.8222,0.5402,-0.1794,-0.8176,0.3156,-0.4815,-0.8165,0.478,-0.3238,-0.8149,-0.2835,0.5055,-0.8147,0.1535,0.5592,-0.8112,-0.2386,-0.5338,-0.8109,0.2961,-0.5047,-0.8077,0.268,0.5252,-0.8071,0.1832,-0.5613,-0.8045,0.1242,-0.5808,-0.8031,-0.5278,0.2765,-0.8011,-0.2682,0.5351,-0.7997,0.2386,-0.5509,-0.7976,0.1975,-0.57,-0.7964,-0.0641,0.6014,-0.7955,0.3908,0.4632,-0.7944,0.1967,0.5746,-0.793,-0.4134,-0.4476,-0.7901,-0.4711,-0.3922,-0.7893,-0.2534,-0.5592,-0.7885,0.2711,-0.5521,-0.7879,0.2359,-0.5688,-0.7877,-0.6071,-0.1043,-0.7873,-0.0981,-0.6087,-0.7844,-0.1363,0.605,-0.7844,0.2127,0.5827,-0.783,-0.1189,-0.6105,-0.782,0.6227,-0.0287,-0.7814,-0.3329,0.5277,-0.7783,-0.3731,0.505,-0.7774,0.2048,-0.5948,-0.7753,0.6096,-0.165,-0.7752,0.0876,0.6256,-0.7747,-0.0789,-0.6274,-0.7744,-0.6147,0.1496,-0.773,-0.0657,-0.631,-0.7709,0.5739,0.2764,-0.7673,0.4613,0.4454,-0.7629,0.2806,-0.5824,-0.76,-0.316,-0.5679,-0.7592,-0.6395,-0.1209,-0.7588,-0.1059,0.6426,-0.7588,0.3427,-0.5539,-0.7586,-0.6286,-0.1715,-0.7583,-0.64,-0.1243,-0.7531,-0.2927,-0.5892,-0.7488,0.6528,-0.1147,-0.7483,0.5071,0.4277,-0.7463,0.3873,-0.5413,-0.7432,0.6302,-0.2248,-0.743,0.0443,-0.6678,-0.7424,0.0205,0.6696,-0.7419,-0.6681,0.0575,-0.7404,-0.2878,0.6074,-0.7393,0.6459,0.1905,-0.7344,0.0099,-0.6787,-0.7326,0.5456,-0.4068,-0.7309,0.1639,0.6625,-0.7266,0.1448,-0.6716,-0.7253,-0.5245,0.4459,-0.7195,-0.4364,0.5403,-0.7188,0.6605,0.217,-0.7181,0.284,-0.6353,-0.7181,0.2165,0.6614,-0.7173,0.5018,0.4834,-0.7168,-0.5747,-0.3948,-0.7167,0.6631,0.2159,-0.7158,-0.2095,-0.6662,-0.7088,-0.0202,0.7051,-0.7087,0.352,-0.6115,-0.7078,0.0807,-0.7018,-0.703,-0.3173,-0.6365,-0.6995,-0.3519,0.622,-0.6962,-0.1774,-0.6956,-0.6949,-0.7131,-0.0927,-0.694,0.4766,0.5396,-0.6938,-0.4671,0.5481,-0.693,-0.0535,0.719,-0.686,-0.5615,-0.4628,-0.6828,-0.2536,-0.6852,-0.6826,-0.4083,0.6061,-0.6817,0.3935,-0.6167,-0.6799,0.1037,0.7259,-0.6769,0.7349,-0.0427,-0.676,-0.1617,0.7189,-0.6739,-0.7273,0.1297,-0.6731,0.5435,-0.5016,-0.6722,0.3534,0.6505,-0.669,0.6921,0.271,-0.6595,0.5547,-0.5073,-0.658,-0.6677,0.348,-0.6558,-0.591,0.4697,-0.6526,-0.7485,-0.1177,-0.6516,0.69,0.3152,-0.6503,-0.1376,0.7471,-0.6479,0.1399,-0.7488,-0.6406,0.3581,0.6792,-0.6398,0.2056,-0.7406,-0.6389,0.768,0.0448,-0.6369,-0.3363,-0.6938,-0.6336,-0.0794,0.7695,-0.6335,0.3857,-0.6708,-0.6284,0.2715,-0.7289,-0.6267,-0.2386,0.7418,-0.6244,0.5297,0.5741,-0.6202,0.4836,-0.6177,-0.6199,0.6942,0.3659,-0.6195,-0.4946,0.6096,-0.6191,0.5864,0.5225,-0.6177,0.3402,-0.709,-0.6169,-0.7849,-0.0578,-0.6163,-0.6974,-0.3658,-0.616,0.2994,0.7286,-0.6156,0.3228,-0.7189,-0.6117,-0.131,0.7802,-0.611,0.1162,0.7831,-0.6069,-0.1693,-0.7766,-0.6067,0.1633,-0.778,-0.6064,0.1666,-0.7775,-0.6044,-0.3016,-0.7374,-0.5954,0.3384,-0.7287,-0.5947,-0.6681,-0.4472,-0.5928,-0.6089,0.5271,-0.5903,0.0431,0.806,-0.59,-0.6407,-0.4913,-0.5882,0.8039,-0.0885,-0.5872,0.6878,0.4268,-0.5862,-0.3997,-0.7047,-0.5841,0.4303,0.6883,-0.5818,-0.1422,-0.8008,-0.5812,-0.4597,-0.6715,-0.5811,0.3585,0.7306,-0.5743,0.3553,0.7375,-0.5737,0.3962,-0.7169,-0.5723,-0.436,-0.6945,-0.5708,-0.5149,0.6396,-0.5707,0.6724,-0.4713,-0.5697,0.0096,0.8218,-0.5689,0.0354,0.8216,-0.5656,0.5465,0.6176,-0.56,-0.3904,0.7307,-0.5595,0.8223,-0.1038,-0.557,-0.4817,0.6765,-0.5549,-0.0966,0.8263,-0.5488,-0.8135,-0.1923,-0.5485,-0.7028,-0.453,-0.547,0.7815,-0.3001,-0.5469,-0.2165,0.8087,-0.5468,-0.1807,0.8176,-0.5377,0.0983,-0.8374,-0.5376,0.6717,-0.5098,-0.5316,-0.191,-0.8252,-0.5312,-0.046,0.846,-0.5305,0.7241,0.4407,-0.5305,0.0938,-0.8425,-0.5301,0.1988,-0.8243,-0.5244,0.473,-0.708,-0.5219,0.7382,0.4274,-0.5215,-0.1675,-0.8366,-0.5196,-0.2307,-0.8227,-0.518,-0.0236,0.855,-0.5179,-0.8046,-0.2906,-0.5142,0.3454,0.7851,-0.5141,0.2609,-0.8171,-0.5137,0.1715,0.8407,-0.5106,0.7887,-0.3424,-0.5101,-0.5584,0.6542,-0.5081,-0.8596,0.0543,-0.5034,-0.6081,-0.6138,-0.5021,0.8648,-0.0096,-0.5009,0.3079,0.8089,-0.5002,0.8451,0.1886,-0.4994,-0.3213,0.8046,-0.4971,0.1129,0.8603,-0.4943,0.7463,-0.4458,-0.4928,0.8664,-0.0807,-0.4926,0.0501,0.8688,-0.4911,0.249,0.8348,-0.4911,0.0944,-0.866,-0.4901,-0.264,0.8307,-0.4887,0.8719,-0.031,-0.4859,0.3545,0.7989,-0.4848,-0.5828,-0.6522,-0.4838,0.0155,0.875,-0.4826,-0.1367,-0.8651,-0.482,-0.6889,-0.5415,-0.4787,-0.2049,-0.8537,-0.4766,-0.0857,0.8749,-0.471,0.7001,0.5367,-0.4677,-0.6858,-0.5577,-0.4663,-0.0732,-0.8816,-0.4627,0.1571,0.8725,-0.4606,0.3125,-0.8308,-0.4596,-0.071,-0.8853,-0.4582,-0.5671,0.6844,-0.4578,0.2845,0.8423,-0.4553,-0.0967,0.8851,-0.4546,-0.4362,-0.7766,-0.4534,-0.1622,0.8764,-0.453,0.2143,0.8654,-0.4528,-0.0592,0.8897,-0.4517,-0.0054,-0.8922,-0.4479,0.7626,-0.4667,-0.447,0.8922,-0.0646,-0.4462,0.3906,0.8052,-0.4426,0.0511,0.8952,-0.4403,0.2678,0.857,-0.4393,0.2988,0.8472,-0.4298,-0.0148,0.9028,-0.4295,0.2226,0.8752,-0.4276,-0.1468,-0.8919,-0.4264,0.235,0.8735,-0.4258,0.4214,-0.8007,-0.425,0.2053,0.8816,-0.4246,-0.9053,-0.0155,-0.4228,0.7016,-0.5736,-0.4209,-0.8512,-0.3135,-0.4137,0.46,-0.7857,-0.4128,0.5211,0.747,-0.4094,-0.2709,-0.8712,-0.4087,-0.2474,0.8785,-0.4067,-0.8056,0.4308,-0.404,0.7914,-0.4587,-0.4011,0.9161,-0.0019,-0.4008,-0.8829,0.2448,-0.3998,-0.2086,0.8926,-0.3991,-0.6349,-0.6616,-0.3985,-0.0745,0.9142,-0.3979,0.3707,-0.8392,-0.3975,-0.0796,-0.9141,-0.3948,-0.6137,-0.6837,-0.3946,-0.6446,-0.6548,-0.3933,0.6021,0.6948,-0.3932,0.6649,-0.635,-0.3929,0.521,-0.7578,-0.3898,-0.0758,0.9178,-0.3897,0.7283,0.5637,-0.3895,-0.8973,0.2078,-0.3891,-0.9201,0.046,-0.3887,0.2622,0.8833,-0.3851,0.0215,-0.9226,-0.3843,-0.2643,-0.8846,-0.3832,0.8495,-0.3627,-0.3773,-0.0365,-0.9254,-0.3771,-0.1086,-0.9198,-0.3724,0.2522,0.8931,-0.3721,-0.0544,0.9266,-0.3719,0.1935,-0.9079,-0.3712,0.8977,-0.2373,-0.3681,-0.4328,-0.8229,-0.3665,0.7494,0.5514,-0.3653,0.9225,-0.125,-0.3623,0.7624,0.5363,-0.3598,-0.4299,0.8281,-0.3572,-0.7333,0.5785,-0.357,0.3091,-0.8815,-0.3553,0.3259,0.8761,-0.3551,-0.8932,-0.2758,-0.3538,0.7073,0.612,-0.3522,0.6386,-0.6843,-0.3474,0.935,-0.0718,-0.3469,0.8845,-0.3119,-0.3461,-0.0724,-0.9354,-0.3457,0.1967,-0.9175,-0.3446,0.8713,-0.3496,-0.3374,0.5501,-0.7639,-0.3361,0.1998,0.9204,-0.3361,0.6096,-0.7179,-0.3353,0.1865,0.9235,-0.3334,-0.719,-0.6099,-0.3311,-0.04,-0.9428,-0.3306,0.0688,-0.9412,-0.3295,-0.5545,-0.7641,-0.329,-0.5651,0.7566,-0.3284,0.3424,0.8803,-0.3259,-0.2704,-0.9059,-0.325,0.9064,-0.2698,-0.3205,0.883,-0.3429,-0.317,0.5817,0.7491,-0.3169,0.6384,0.7015,-0.3168,-0.1903,-0.9292,-0.3154,0.9482,-0.0383,-0.3143,-0.055,-0.9477,-0.3134,-0.5077,0.8025,-0.3123,-0.4453,-0.8391,-0.312,-0.2982,-0.9021,-0.3119,0.3129,0.8971,-0.3118,0.1164,-0.943,-0.3116,0.1564,-0.9372,-0.3092,-0.6343,-0.7086,-0.3082,0.1762,-0.9349,-0.3059,-0.1409,0.9416,-0.3052,0.3931,-0.8674,-0.3045,0.0152,0.9524,-0.3019,-0.1797,-0.9363,-0.2966,0.6214,-0.7252,-0.2961,0.0526,0.9537,-0.2961,0.9095,-0.2917,-0.2946,-0.949,0.1125,-0.2934,-0.3884,0.8735,-0.2934,-0.126,-0.9477,-0.2888,-0.7698,-0.5692,-0.2879,-0.3003,-0.9094,-0.2834,0.2661,-0.9213,-0.2829,0.9413,-0.1842,-0.2817,-0.3125,-0.9072,-0.277,-0.8665,-0.4152,-0.275,-0.6407,-0.7169,-0.2674,-0.7377,-0.6199,-0.267,-0.1003,0.9585,-0.266,0.9609,-0.0769,-0.2653,0.9498,-0.1659,-0.2646,-0.8994,-0.3478,-0.2628,-0.8507,0.4552,-0.2605,-0.965,0.0308,-0.2593,-0.133,-0.9566,-0.2584,-0.9657,-0.0257,-0.2582,-0.6239,-0.7376,-0.2579,0.867,0.4264,-0.256,-0.1234,-0.9588,-0.2554,-0.5807,0.773,-0.2551,0.5408,0.8015,-0.255,0.6202,-0.7419,-0.254,0.9498,0.1829,-0.2456,0.5671,-0.7862,-0.2452,-0.2374,-0.94,-0.2448,-0.6184,-0.7467,-0.2444,0.514,-0.8222,-0.2419,0.2467,-0.9384,-0.2419,0.7093,0.6622,-0.2418,-0.1789,-0.9537,-0.2418,0.9699,-0.0304,-0.2417,-0.4686,0.8497,-0.2416,0.6018,0.7612,-0.2416,0.7376,-0.6306,-0.2415,-0.6185,0.7477,-0.2405,0.9698,-0.0405,-0.24,0.2708,-0.9322,-0.24,0.0755,-0.9678,-0.2399,-0.9707,0.01,-0.2373,-0.9672,0.0901,-0.2356,0.1659,-0.9576,-0.2341,0.7878,0.5698,-0.233,0.9625,-0.1387,-0.2321,-0.1967,0.9526,-0.2308,0.5952,-0.7697,-0.2299,0.094,0.9687,-0.2298,-0.2821,-0.9315,-0.2296,-0.9712,0.0635,-0.2284,-0.0853,0.9698,-0.2267,0.5392,0.8111,-0.2266,-0.812,0.5378,-0.2256,-0.9398,0.2568,-0.2255,-0.8734,-0.4317,-0.2253,0.1074,-0.9684,-0.225,0.3647,0.9035,-0.2245,-0.9672,0.1189,-0.2244,-0.9526,0.2055,-0.2237,-0.7569,-0.614,-0.2208,-0.6283,-0.746,-0.2199,-0.5939,0.7739,-0.2194,0.7239,0.6541,-0.2193,-0.8867,0.407,-0.2178,-0.2153,-0.9519,-0.2174,-0.6402,-0.7368,-0.2173,0.9105,-0.3518,-0.2172,-0.9727,-0.0814,-0.2152,0.2441,0.9456,-0.2118,0.6644,-0.7168,-0.2107,-0.9738,0.0859,-0.2096,-0.6504,-0.7302,-0.2091,-0.1924,-0.9588,-0.209,-0.9677,0.1407,-0.2081,-0.9752,-0.0756,-0.2045,-0.9783,0.033,-0.2016,0.7845,0.5865,-0.1997,0.0208,-0.9796,-0.1996,-0.534,-0.8216,-0.1989,0.2948,0.9346,-0.1983,-0.9801,0.0012,-0.1983,0.8463,0.4944,-0.198,0.5482,0.8125,-0.1977,-0.1608,0.967,-0.1931,0.528,-0.827,-0.1878,-0.1127,-0.9757,-0.1831,-0.5524,-0.8132,-0.1821,-0.7618,-0.6216,-0.1799,-0.9277,0.3272,-0.1774,0.0225,0.9839,-0.1704,0.9734,-0.153,-0.1703,0.9617,-0.2149,-0.1693,0.7654,0.6209,-0.1678,-0.6779,-0.7157,-0.1651,0.5563,-0.8144,-0.1644,-0.9771,0.1353,-0.1639,-0.1478,-0.9753,-0.1629,-0.7032,-0.6921,-0.1619,-0.983,-0.0872,-0.1615,0.2097,0.9643,-0.1576,-0.0387,0.9867,-0.1568,-0.9832,0.0938,-0.1546,-0.7381,0.6567,-0.1524,-0.7981,-0.5829,-0.1429,0.5607,-0.8156,-0.1378,-0.9862,-0.092,-0.1377,0.885,-0.4448,-0.1363,0.9907,0.0045,-0.1357,-0.5382,-0.8318,-0.1337,-0.2042,-0.9697,-0.1334,0.9826,0.129,-0.1333,0.9766,-0.1686,-0.1319,-0.942,-0.3085,-0.1312,-0.2906,-0.9478,-0.13,-0.8874,-0.4423,-0.1289,-0.46,-0.8785,-0.1279,-0.3897,-0.912,-0.1277,0.8534,-0.5054,-0.1271,-0.3248,-0.9372,-0.1258,0.9266,-0.3544,-0.125,-0.9665,0.2243,-0.1244,0.9755,-0.1816,-0.1232,0.9834,-0.1332,-0.1224,-0.6065,-0.7856,-0.1206,-0.9784,0.1682,-0.1206,0.9914,-0.0512,-0.1204,0.9581,-0.2601,-0.1179,-0.9764,0.1809,-0.1164,-0.9785,-0.17,-0.1149,-0.9559,0.2703,-0.1146,0.9915,-0.0611,-0.1119,-0.9839,-0.1392,-0.1099,0.4756,0.8727,-0.1095,-0.0771,0.991,-0.109,-0.9855,0.1297,-0.1082,-0.9389,0.3267,-0.1079,0.9824,-0.1522,-0.1058,0.9895,-0.0989,-0.1057,-0.9682,-0.2269,-0.1041,0.9946,0.0025,-0.1039,0.5725,-0.8133,-0.1032,-0.6278,0.7715,-0.101,0.1538,0.9829,-0.1002,-0.9765,0.1909,-0.0999,0.9737,-0.2048,-0.0958,0.1776,-0.9794,-0.0928,-0.9934,0.0678,-0.0915,-0.2396,-0.9665,-0.0907,0.9717,-0.2182,-0.0907,0.995,-0.0416,-0.0898,0.9644,-0.2488,-0.0894,0.472,0.877,-0.0887,-0.9832,0.1595,-0.0882,0.9771,-0.1939,-0.088,0.9599,-0.2661,-0.0836,0.9661,-0.2443,-0.0818,0.9657,-0.2466,-0.0809,-0.9749,0.2073,-0.08,0.9911,-0.1063,-0.08,-0.4751,-0.8763,-0.0777,0.9762,-0.2024,-0.0769,0.1595,-0.9842,-0.0762,0.9663,-0.2458,-0.0755,0.997,-0.0191,-0.0738,-0.7531,-0.6538,-0.0732,0.011,-0.9973,-0.0726,0.9753,-0.2086,-0.0725,0.9715,-0.2255,-0.0714,0.9706,-0.2297,-0.0714,-0.0588,-0.9957,-0.0688,0.9735,-0.2181,-0.0669,-0.9561,0.2852,-0.0663,0.997,0.0397,-0.0662,0.7515,0.6564,-0.0655,-0.964,0.2576,-0.0636,0.9748,-0.2139,-0.0635,0.9833,-0.1708,-0.0606,0.952,-0.3002,-0.0602,-0.9921,0.1099,-0.0571,-0.9497,-0.3079,-0.057,-0.0834,-0.9949,-0.0567,-0.4939,-0.8677,-0.0564,0.9515,-0.3024,-0.0561,0.9952,-0.0803,-0.0558,-0.7996,-0.598,-0.0518,-0.9843,-0.169,-0.0515,-0.8548,-0.5164,-0.0507,0.185,0.9814,-0.0501,0.9698,-0.2386,-0.0488,-0.9978,0.0457,-0.0457,0.9908,0.1277,-0.0446,-0.237,-0.9705,-0.0444,-0.9428,0.3304,-0.0442,0.9871,0.1538,-0.0438,-0.9095,-0.4134,-0.0433,-0.8501,0.5249,-0.0426,0.7981,0.601,-0.0423,0.9949,-0.0917,-0.0423,-0.8687,0.4936,-0.0414,0.9957,-0.0832,-0.041,-0.992,0.1197,-0.04,0.9434,-0.3293,-0.0386,-0.9839,0.1743,-0.0376,0.6754,-0.7365,-0.0349,-0.9873,-0.1547,-0.034,0.9947,0.0973,-0.0336,-0.9854,-0.167,-0.0335,0.3544,-0.9345,-0.0328,0.9882,-0.1495,-0.0324,-0.9705,0.2387,-0.0315,-0.8422,-0.5383,-0.0278,0.9977,-0.0614,-0.023,-0.9827,0.1838,-0.023,0.9961,-0.085,-0.0227,-0.8859,-0.4634,-0.0226,0.9953,-0.0938,-0.0224,-0.5008,-0.8653,-0.0209,0.9724,-0.2326,-0.0195,0.9786,-0.2047,-0.0194,0.3679,0.9296,-0.0183,0.9998,-0.0074,-0.0177,0.9738,-0.2269,-0.0165,-0.9053,0.4244,-0.0132,-0.9872,0.159,-0.0123,0.9806,-0.1957,-0.0119,0.3008,-0.9536,-0.0115,0.9904,0.1376,-0.0114,0.8795,0.4758,-0.0113,0.9882,0.1525,-0.0113,0.9848,0.1735,-0.0113,0.9989,0.0455,-0.0111,-0.9913,0.1308,-0.0103,0.9973,-0.073,-0.0084,0.9981,-0.0618,-0.0083,-0.8601,0.51,-0.0066,-0.978,0.2084,-0.0053,-0.9863,-0.1649,-0.0052,0.2147,0.9767,-0.0051,0.7306,0.6828,-0.0036,-0.8237,-0.567,-0.0032,-0.9826,0.1859,-0.0023,-0.4741,-0.8805,-0.0021,-0.9775,-0.211,-0.0021,-0.973,-0.2309,-0.0019,0.997,0.0769,-0.0011,0.6079,-0.794,-0.0003,-0.2458,-0.9693,0.0,-0.0088,1.0,0.0,0.0474,0.9989,0.0,-0.0719,0.9974,0.0,-0.0763,0.9971,0.0,0.0887,0.9961,0.0,0.2124,0.9772,0.0,0.2209,0.9753,0.0,0.2367,0.9716,0.0,-0.3385,0.941,0.0,0.3917,0.9201,0.0,-0.4432,0.8964,0.0,0.5226,0.8526,0.0,0.5417,0.8406,0.0,-0.6646,0.7472,0.0,-0.6695,0.7428,0.0,-0.7088,0.7054,0.0,0.8207,0.5714,0.0,0.9749,0.2225,0.0,-0.9767,0.2145,0.0,-0.9808,0.1949,0.0,0.9845,0.1754,0.0,0.9909,0.1345,0.0,-0.9917,0.1286,0.0,-0.9938,0.1116,0.0,-0.9985,0.0551,0.0,0.9986,-0.0537,0.0,0.9951,-0.0985,0.0,0.9944,-0.1055,0.0,-0.9885,-0.1512,0.0,-0.9883,-0.1525,0.0,0.9862,-0.1658,0.0,0.9768,-0.214,0.0,0.9753,-0.221,0.0,0.9617,-0.2741,0.0,0.9365,-0.3508,0.0,-0.8721,-0.4893,0.0,0.6892,-0.7246,0.0,0.6479,-0.7617,0.0,-0.2961,-0.9552,0.0,-0.2838,-0.9589,0.0,-0.269,-0.9631,0.0,0.1728,-0.985,0.0,-0.1259,-0.992,0.0,-0.1193,-0.9929,0.0,-0.0791,-0.9969,0.0,0.0285,-0.9996,0.0002,0.9885,-0.1513,0.0003,-0.2458,-0.9693,0.0006,-0.9831,0.1829,0.0011,-0.9998,-0.0197,0.0019,0.997,0.0769,0.0029,-0.9994,0.0358,0.0034,0.613,-0.79,0.0039,0.9964,0.0845,0.0065,-0.9319,0.3626,0.0068,-0.8862,-0.4633,0.0076,-0.8506,0.5258,0.0089,0.9944,-0.1053,0.009,0.9543,-0.2988,0.0093,-0.0657,-0.9978,0.0093,-0.0786,-0.9969,0.0105,-0.9723,-0.2337,0.0111,-0.9913,0.1308,0.0113,0.9989,0.0455,0.0113,0.9848,0.1735,0.0115,0.9904,0.1376,0.0117,0.9589,-0.2834,0.0123,0.9806,-0.1957,0.0175,-0.9725,0.2323,0.0177,0.9738,-0.2269,0.0181,0.9998,-0.0092,0.0183,0.9998,-0.0074,0.0184,-0.4216,-0.9066,0.0194,0.3679,0.9296,0.0203,0.8778,0.4786,0.0209,0.9724,-0.2326,0.0214,-0.9045,0.4259,0.0226,0.9953,-0.0938,0.023,0.9961,-0.085,0.023,-0.9827,0.1838,0.0233,-0.9858,0.1661,0.0236,-0.5639,-0.8255,0.0274,-0.9883,-0.1499,0.028,-0.1478,-0.9886,0.03,-0.0654,-0.9974,0.03,-0.8433,-0.5366,0.03,0.9764,-0.214,0.0305,-0.9021,0.4305,0.0316,-0.4746,-0.8797,0.0323,0.3341,-0.942,0.0324,-0.9705,0.2387,0.0328,0.9882,-0.1495,0.0336,-0.9854,-0.167,0.034,0.9947,0.0973,0.0386,-0.9839,0.1743,0.04,0.9434,-0.3293,0.0414,0.9957,-0.0832,0.0423,0.9949,-0.0917,0.0428,0.9789,-0.2,0.0438,-0.9095,-0.4134,0.0446,-0.237,-0.9705,0.0457,0.9908,0.1277,0.0497,0.7435,0.6669,0.0501,0.9698,-0.2386,0.0502,0.9707,-0.2349,0.0518,-0.9843,-0.169,0.052,-0.8211,0.5684,0.0522,-0.9883,0.1435,0.0531,-0.8321,-0.5521,0.0533,-0.8574,0.5119,0.0557,-0.5157,-0.855,0.0558,0.1808,0.9819,0.0561,0.9952,-0.0803,0.0564,0.9515,-0.3024,0.0597,0.9734,-0.2212,0.0606,0.952,-0.3002,0.0606,0.7915,0.6082,0.0618,0.3995,-0.9146,0.0635,0.9833,-0.1708,0.0661,-0.8537,-0.5165,0.0663,0.997,0.0397,0.0669,-0.9561,0.2852,0.067,0.9877,0.1414,0.0688,0.9735,-0.2181,0.0693,0.163,-0.9842,0.0706,-0.9966,0.0431,0.0709,-0.8152,-0.5748,0.0714,-0.0588,-0.9957,0.0725,0.9715,-0.2255,0.0755,0.997,-0.0191,0.0765,-0.7641,-0.6405,0.0772,0.9705,-0.2285,0.0777,0.9762,-0.2024,0.08,-0.4751,-0.8763,0.08,0.9911,-0.1063,0.0809,-0.9749,0.2073,0.0818,-0.9787,0.1882,0.0818,0.9657,-0.2466,0.0836,0.9661,-0.2443,0.0882,0.9771,-0.1939,0.0886,0.9665,-0.241,0.0898,0.9644,-0.2488,0.0907,0.995,-0.0416,0.0914,-0.9926,0.0795,0.092,-0.2353,-0.9676,0.0928,-0.9934,0.0678,0.0942,0.9656,-0.2422,0.0958,0.1776,-0.9794,0.0999,0.9737,-0.2048,0.1002,-0.9765,0.1909,0.1021,0.9917,-0.0783,0.1022,-0.9699,0.2209,0.1032,-0.6278,0.7715,0.1039,0.5725,-0.8133,0.1041,0.9946,0.0025,0.1056,0.1566,0.982,0.1058,0.9895,-0.0989,0.1062,-0.3077,0.9455,0.1079,0.9824,-0.1522,0.1082,-0.9389,0.3267,0.109,-0.9855,0.1297,0.1095,-0.0771,0.991,0.1096,0.4867,0.8667,0.1104,-0.9551,0.2749,0.1117,-0.9821,0.1514,0.1119,-0.9839,-0.1392,0.1122,-0.981,0.1581,0.1125,0.4841,0.8678,0.1146,0.9915,-0.0611,0.1164,-0.9785,-0.17,0.1232,0.9834,-0.1332,0.1236,0.044,-0.9914,0.1244,0.9755,-0.1816,0.1246,-0.9687,0.2148,0.1253,0.8429,-0.5233,0.1258,0.9266,-0.3544,0.1271,-0.3248,-0.9372,0.1289,-0.46,-0.8785,0.13,-0.8874,-0.4423,0.1312,-0.2906,-0.9478,0.1325,0.9599,-0.2469,0.1333,0.9766,-0.1686,0.1337,-0.2042,-0.9697,0.1338,-0.1812,-0.9743,0.1346,-0.3763,-0.9166,0.1363,0.9907,0.0045,0.1377,0.885,-0.4448,0.1378,-0.9862,-0.092,0.1386,-0.9502,-0.2791,0.1415,0.9813,0.1301,0.1426,-0.9684,-0.2044,0.1429,0.5607,-0.8156,0.1547,-0.5354,-0.8303,0.1568,-0.9832,0.0938,0.1576,-0.0387,0.9867,0.1619,-0.983,-0.0872,0.1623,0.2063,0.9649,0.1629,-0.7032,-0.6921,0.1629,0.7995,0.5782,0.1644,-0.9771,0.1353,0.1651,0.5563,-0.8144,0.1678,-0.6779,-0.7157,0.1703,0.9617,-0.2149,0.1733,-0.7269,0.6645,0.1749,-0.5446,-0.8202,0.1774,0.0225,0.9839,0.1795,-0.2101,-0.9611,0.1811,-0.9832,0.0218,0.1818,-0.6852,-0.7053,0.1836,0.2836,0.9412,0.1857,-0.7732,-0.6064,0.1872,-0.9098,0.3705,0.1878,-0.1127,-0.9757,0.1878,-0.1167,0.9752,0.1931,0.528,-0.827,0.1939,0.963,-0.1872,0.1977,-0.1608,0.967,0.1983,0.8463,0.4944,0.1983,-0.9801,0.0012,0.1997,0.0208,-0.9796,0.2006,-0.62,-0.7585,0.2016,0.7845,0.5865,0.2039,-0.81,-0.5498,0.2081,-0.9752,-0.0756,0.2088,0.5512,0.8078,0.2096,-0.6504,-0.7302,0.2107,-0.9738,0.0859,0.2116,-0.9756,-0.0582,0.2118,0.6644,-0.7168,0.2137,0.9112,-0.3522,0.2142,-0.7599,-0.6138,0.2152,0.2441,0.9456,0.2157,0.5316,0.8191,0.216,-0.9666,0.1381,0.219,0.6049,-0.7656,0.2199,-0.5939,0.7739,0.2202,-0.9745,0.043,0.2206,0.5863,-0.7795,0.2216,-0.6642,-0.714,0.2232,0.8896,0.3985,0.2244,-0.9526,0.2055,0.2245,-0.9672,0.1189,0.225,0.3647,0.9035,0.2253,0.1074,-0.9684,0.2255,-0.8734,-0.4317,0.2264,-0.8146,0.534,0.2282,-0.6202,-0.7505,0.2296,-0.9712,0.0635,0.2298,0.7026,0.6734,0.2298,-0.2821,-0.9315,0.2299,0.094,0.9687,0.2303,-0.9271,0.2958,0.2308,0.5952,-0.7697,0.2319,-0.2528,-0.9393,0.2337,-0.9695,0.0736,0.2373,-0.9672,0.0901,0.2382,-0.8834,0.4036,0.2397,0.9546,-0.1769,0.24,0.0755,-0.9678,0.2405,0.9698,-0.0405,0.2416,0.7376,-0.6306,0.2416,0.6018,0.7612,0.2417,-0.4686,0.8497,0.2418,0.9699,-0.0304,0.2418,-0.1789,-0.9537,0.2444,0.514,-0.8222,0.2448,-0.6184,-0.7467,0.2449,-0.7268,-0.6417,0.2451,-0.8399,0.4843,0.246,0.7979,-0.5503,0.2477,0.2966,-0.9223,0.2504,-0.6259,0.7386,0.254,0.9498,0.1829,0.2551,0.5408,0.8015,0.2556,-0.2432,-0.9357,0.256,-0.1234,-0.9588,0.2562,0.2688,-0.9285,0.258,0.7401,0.621,0.2582,-0.6239,-0.7376,0.2584,-0.9657,-0.0257,0.2585,-0.5973,0.7592,0.2587,-0.7408,-0.62,0.259,0.7888,0.5574,0.2646,-0.898,-0.3515,0.2653,0.9498,-0.1659,0.266,0.9609,-0.0769,0.2669,0.1873,-0.9454,0.267,-0.1003,0.9585,0.2711,-0.173,-0.9469,0.277,-0.4354,0.8566,0.277,-0.8665,-0.4152,0.2805,-0.2921,-0.9143,0.2817,-0.3125,-0.9072,0.2829,0.9413,-0.1842,0.2851,0.6516,0.703,0.2873,0.9118,-0.2935,0.2934,-0.126,-0.9477,0.2946,-0.949,0.1125,0.2961,0.0526,0.9537,0.2966,0.6214,-0.7252,0.2975,0.3187,0.8999,0.3016,0.0175,0.9533,0.3019,-0.1797,-0.9363,0.3052,0.3931,-0.8674,0.3054,-0.4355,-0.8468,0.3059,-0.1409,0.9416,0.3069,-0.2525,-0.9176};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_146_vector_2()
		{
			double[] value = {0.3082,0.1762,-0.9349,0.3088,-0.5354,0.7861,0.3116,0.1564,-0.9372,0.3118,0.1164,-0.943,0.312,-0.2982,-0.9021,0.313,0.3672,-0.8759,0.3143,-0.055,-0.9477,0.3168,-0.1903,-0.9292,0.3195,-0.7466,-0.5835,0.32,0.9463,-0.0456,0.3213,0.8845,-0.3381,0.325,0.9064,-0.2698,0.329,-0.5651,0.7566,0.3295,-0.5545,-0.7641,0.3301,0.155,0.9311,0.3318,0.1901,-0.924,0.3361,0.1998,0.9204,0.3393,-0.2119,-0.9165,0.3403,0.0566,-0.9386,0.3419,0.5808,0.7388,0.3446,0.8713,-0.3496,0.3448,0.5538,-0.7579,0.3469,0.8845,-0.3119,0.3474,0.935,-0.0718,0.3508,-0.4299,-0.8319,0.3519,0.5974,-0.7206,0.3527,0.3432,0.8706,0.3538,0.7073,0.612,0.3551,-0.8932,-0.2758,0.3553,0.3259,0.8761,0.3594,0.6441,-0.6753,0.3598,-0.4299,0.8281,0.3598,-0.1194,-0.9254,0.3608,-0.0583,-0.9308,0.3609,0.2372,0.9019,0.3653,0.9225,-0.125,0.3656,-0.9287,0.0624,0.3665,0.7494,0.5514,0.3678,0.7685,0.5235,0.3696,0.1912,-0.9093,0.3712,0.8977,-0.2373,0.3715,-0.2271,0.9002,0.3726,0.9278,-0.0198,0.3736,-0.7242,0.5797,0.3758,-0.8974,0.2313,0.3832,0.8495,-0.3627,0.3843,-0.2643,-0.8846,0.3846,-0.0689,0.9205,0.3872,0.7331,-0.5591,0.3895,-0.6424,-0.66,0.3898,-0.0758,0.9178,0.3922,-0.0282,-0.9194,0.3926,0.3733,-0.8405,0.3928,-0.8954,0.2097,0.3929,0.521,-0.7578,0.3933,0.6021,0.6948,0.3948,-0.6137,-0.6837,0.398,0.8082,-0.434,0.3985,-0.0745,0.9142,0.3991,-0.6349,-0.6616,0.4018,0.2536,0.8799,0.4033,0.5125,0.7581,0.4044,0.0059,-0.9146,0.4067,-0.8226,0.3973,0.4101,0.4722,-0.7803,0.4108,0.6497,0.6396,0.4108,0.7151,0.5655,0.4185,0.0656,0.9059,0.4194,0.889,0.1839,0.4209,-0.8512,-0.3135,0.4216,-0.0907,-0.9023,0.423,0.6502,-0.6311,0.425,-0.2652,0.8655,0.425,0.2053,0.8816,0.4258,0.4214,-0.8007,0.4264,0.235,0.8735,0.4277,-0.1807,-0.8857,0.4295,0.2226,0.8752,0.435,-0.9002,-0.0197,0.4386,0.735,-0.5172,0.4393,0.2988,0.8472,0.4403,0.2678,0.857,0.4413,-0.0012,0.8973,0.4432,-0.045,0.8953,0.4462,0.2939,0.8453,0.447,0.8922,-0.0646,0.4517,-0.0054,-0.8922,0.453,0.2143,0.8654,0.4553,-0.0967,0.8851,0.4554,0.3947,0.798,0.4582,-0.5671,0.6844,0.4604,-0.3623,0.8104,0.4606,0.3125,-0.8308,0.4627,0.1571,0.8725,0.464,-0.0791,-0.8823,0.4647,-0.2825,0.8392,0.4663,-0.0732,-0.8816,0.4672,-0.4365,-0.7689,0.4677,-0.6858,-0.5577,0.4766,-0.0857,0.8749,0.4789,-0.1208,0.8695,0.4817,0.8737,-0.0672,0.4838,0.0155,0.875,0.4859,0.3545,0.7989,0.486,-0.5757,0.6576,0.4877,0.0903,0.8683,0.4899,0.4995,-0.7145,0.4911,0.0944,-0.866,0.4911,0.249,0.8348,0.4926,0.0501,0.8688,0.4966,-0.6845,-0.5337,0.4994,0.2495,-0.8297,0.5009,0.3079,0.8089,0.502,0.8649,-0.0033,0.5021,-0.1943,-0.8427,0.5031,0.7549,-0.4207,0.5032,0.0106,-0.8641,0.5034,-0.6081,-0.6138,0.5064,-0.8604,0.0578,0.5085,0.861,-0.0079,0.5106,0.7887,-0.3424,0.5132,0.7391,0.4363,0.5137,0.1715,0.8407,0.5153,-0.2387,-0.8231,0.517,-0.6804,-0.5194,0.5177,-0.5594,-0.6474,0.5179,-0.8046,-0.2906,0.5229,-0.503,0.6882,0.5242,0.6828,-0.5089,0.5249,0.3547,0.7737,0.5254,-0.1283,-0.8411,0.5257,-0.2139,-0.8234,0.5273,-0.0846,0.8455,0.5301,0.1988,-0.8243,0.5305,0.7241,0.4407,0.5377,0.0983,-0.8374,0.545,0.0731,-0.8352,0.5468,-0.1807,0.8176,0.5469,-0.2165,0.8087,0.547,0.7815,-0.3001,0.5518,0.5574,0.6204,0.5523,-0.8126,-0.1863,0.5549,-0.0966,0.8263,0.5573,-0.0103,0.8302,0.5579,-0.1556,-0.8152,0.559,0.8241,-0.0917,0.5658,-0.3977,-0.7223,0.5683,0.0409,0.8218,0.5692,0.7065,0.4206,0.5707,0.6724,-0.4713,0.5723,-0.436,-0.6945,0.5736,-0.5155,0.6366,0.5743,0.3553,0.7375,0.5811,0.3585,0.7306,0.5818,-0.1422,-0.8008,0.5862,-0.3997,-0.7047,0.5882,-0.6518,-0.4786,0.5893,-0.2935,-0.7527,0.5926,-0.1817,-0.7847,0.5928,-0.6089,0.5271,0.5934,0.8023,-0.0649,0.5947,-0.6681,-0.4472,0.5954,0.3384,-0.7287,0.5964,0.6073,0.5248,0.5967,0.4126,0.6883,0.5999,-0.0781,0.7963,0.6005,0.053,0.7979,0.6052,-0.106,0.789,0.6067,0.1633,-0.778,0.6068,0.2916,0.7394,0.6089,0.3315,-0.7207,0.6108,0.404,-0.681,0.611,0.1162,0.7831,0.6122,0.1411,-0.778,0.6156,0.3228,-0.7189,0.6169,-0.7849,-0.0578,0.6183,-0.0897,0.7808,0.6187,-0.4952,0.6099,0.6189,-0.7032,-0.35,0.6193,-0.4764,0.6241,0.6199,0.6942,0.3659,0.6202,0.4836,-0.6177,0.6252,0.2607,-0.7356,0.6267,-0.2386,0.7418,0.6335,0.3857,-0.6708,0.6369,-0.3363,-0.6938,0.6389,0.768,0.0448,0.6406,0.3581,0.6792,0.6479,0.1399,-0.7488,0.6496,0.2007,-0.7333,0.6516,0.69,0.3152,0.6547,-0.7461,-0.1212,0.6558,-0.591,0.4697,0.656,0.7498,-0.086,0.6561,0.7027,0.2752,0.658,-0.6677,0.348,0.6595,0.5547,-0.5073,0.6627,0.503,0.5548,0.6655,-0.124,0.7361,0.6695,0.1188,0.7332,0.6722,0.3534,0.6505,0.6731,0.5435,-0.5016,0.676,-0.1617,0.7189,0.678,-0.7224,0.1355,0.6817,0.3935,-0.6167,0.6826,-0.4083,0.6061,0.6828,-0.2536,-0.6852,0.686,-0.5615,-0.4628,0.6901,-0.5375,0.4845,0.6906,-0.0554,0.7211,0.6929,0.4908,0.5282,0.6938,-0.4671,0.5481,0.6962,-0.1774,-0.6956,0.6975,-0.4559,0.5528,0.6995,-0.3519,0.622,0.7024,-0.0116,0.7117,0.7066,-0.3229,-0.6296,0.7085,-0.5768,-0.4065,0.7087,0.352,-0.6115,0.709,0.0948,-0.6988,0.7095,-0.7001,-0.0807,0.7146,-0.1632,-0.6802,0.7167,0.6631,0.2159,0.7226,0.5094,0.4672,0.7229,0.6699,0.169,0.723,0.6633,0.1932,0.7266,0.1448,-0.6716,0.7279,0.4766,0.493,0.7309,0.1639,0.6625,0.7343,0.0089,-0.6788,0.7346,0.5399,-0.4109,0.7368,0.6382,-0.2231,0.7378,0.1896,0.6478,0.739,0.0972,-0.6667,0.7395,-0.3897,-0.5489,0.7404,-0.2878,0.6074,0.7418,0.2799,-0.6094,0.7419,-0.6681,0.0575,0.7424,0.0205,0.6696,0.7463,0.3873,-0.5413,0.7523,-0.6394,-0.1587,0.7579,-0.6406,-0.1231,0.7585,0.6464,-0.0832,0.7592,-0.6395,-0.1209,0.76,-0.316,-0.5679,0.7629,0.2806,-0.5824,0.7653,-0.082,-0.6385,0.766,0.349,-0.5399,0.7673,0.4613,0.4454,0.7705,-0.2822,0.5716,0.7738,0.6005,-0.2015,0.7747,-0.0789,-0.6274,0.7752,0.0876,0.6256,0.7759,0.0678,-0.6272,0.7774,0.2048,-0.5948,0.7787,0.5593,0.2842,0.782,0.6227,-0.0287,0.7825,-0.6088,0.1303,0.783,-0.1189,-0.6105,0.7844,0.2126,0.5827,0.7862,-0.0074,0.618,0.7873,-0.0981,-0.6087,0.7877,-0.6071,-0.1043,0.7885,0.2711,-0.5521,0.7888,-0.1473,0.5967,0.7901,-0.4711,-0.3922,0.7916,-0.0504,0.6089,0.793,-0.4134,-0.4476,0.7948,-0.016,-0.6066,0.7955,0.3908,0.4632,0.7956,0.2025,-0.571,0.7963,0.2493,-0.5512,0.7979,-0.2158,-0.5629,0.8001,0.1191,-0.5879,0.8011,-0.2682,0.5351,0.8021,0.1855,0.5677,0.8044,-0.3475,0.4819,0.806,0.3127,-0.5027,0.8071,0.1832,-0.5613,0.8086,-0.5332,0.2489,0.8111,0.3011,0.5015,0.8112,-0.2386,-0.5338,0.8137,-0.3424,-0.4697,0.8143,0.2773,0.5099,0.8163,0.3298,-0.4743,0.8165,0.478,-0.3238,0.8209,0.1591,-0.5485,0.8222,0.5402,-0.1794,0.8236,0.1792,0.5381,0.8246,-0.1522,0.5449,0.8256,-0.2959,0.4805,0.8274,-0.0823,0.5556,0.8282,0.56,0.0197,0.8303,-0.3622,-0.4236,0.8311,-0.2688,0.4868,0.8313,0.1399,-0.538,0.8321,-0.2227,0.508,0.8323,-0.0381,-0.5531,0.8351,0.5043,-0.2195,0.8351,0.0147,-0.5498,0.838,0.2034,-0.5063,0.8381,0.2988,-0.4564,0.8385,-0.178,0.5149,0.8387,-0.5405,-0.0676,0.8401,0.4969,0.2174,0.8411,-0.5269,0.1224,0.8432,0.4619,0.2748,0.8442,0.1645,-0.5101,0.8455,0.2473,-0.4732,0.8465,-0.1483,-0.5113,0.8468,-0.3719,0.3803,0.8475,0.4563,-0.2713,0.8476,0.2847,0.4478,0.8483,-0.1404,0.5105,0.8502,0.1889,-0.4914,0.8513,0.4997,-0.1599,0.8524,0.5097,-0.1166,0.8541,0.514,-0.0794,0.8545,-0.4893,0.1742,0.8547,0.2158,-0.4721,0.8554,0.402,-0.3267,0.8581,0.5121,0.037,0.8616,-0.4817,-0.1603,0.8635,0.5043,-0.0051,0.8636,0.3511,-0.3618,0.8644,0.4562,0.2114,0.8646,-0.1892,-0.4654,0.8649,0.354,0.3558,0.8687,0.4953,0.0059,0.8714,0.2453,-0.4248,0.8728,0.4872,-0.0294,0.874,-0.2314,-0.4273,0.8744,-0.4723,-0.1113,0.8746,0.4845,0.0162,0.8794,-0.4687,-0.0839,0.8822,-0.1395,0.4497,0.8827,-0.235,0.4069,0.8833,-0.4678,-0.0306,0.8856,0.2044,0.4171,0.886,-0.0238,0.4631,0.886,0.4121,0.2123,0.8874,-0.2768,-0.3686,0.8877,-0.2503,-0.3865,0.8895,0.3453,-0.2992,0.8909,-0.4261,-0.1573,0.8932,0.4465,-0.0536,0.8943,0.0491,-0.4447,0.8948,-0.0693,0.4411,0.8994,0.4326,0.0621,0.8995,0.3811,-0.2136,0.8998,0.049,-0.4336,0.9011,-0.128,-0.4142,0.9014,0.4106,-0.1376,0.9054,-0.026,-0.4237,0.9055,0.3109,0.2889,0.9061,-0.3854,0.1743,0.9063,-0.4045,0.1224,0.9075,0.1233,-0.4017,0.908,-0.3267,-0.2624,0.9089,-0.2111,0.3597,0.9092,0.0466,-0.4136,0.9093,-0.412,-0.0589,0.9112,0.1419,0.3868,0.9129,0.2331,-0.3351,0.9148,-0.1368,0.3801,0.9153,0.2286,0.3317,0.9183,-0.3143,-0.2407,0.9194,0.0404,0.3913,0.921,0.2432,-0.3043,0.9211,-0.2485,-0.2997,0.922,0.0184,-0.3869,0.9225,-0.1121,0.3694,0.9229,-0.1328,0.3614,0.9232,0.0402,-0.3821,0.9251,0.2396,-0.2947,0.9255,-0.2495,-0.285,0.9268,0.1641,-0.3379,0.9283,-0.3511,-0.1226,0.9298,0.2976,0.2168,0.9326,0.2066,-0.296,0.9335,0.1145,0.3397,0.9352,0.3162,0.1595,0.9357,-0.3311,0.1222,0.9364,-0.1071,0.3342,0.9365,0.175,-0.3039,0.9388,0.3428,-0.0324,0.9399,0.3184,-0.1234,0.9412,-0.2709,-0.2017,0.9427,0.109,-0.3155,0.9434,0.217,0.2509,0.9469,-0.0592,-0.316,0.9475,-0.219,0.2329,0.9501,0.0794,0.3016,0.9515,0.0724,-0.299,0.9532,-0.2437,-0.1789,0.9539,0.1181,-0.2759,0.9546,0.1875,-0.2314,0.9547,0.0546,-0.2926,0.9558,0.1846,-0.2288,0.956,-0.256,0.143,0.9584,-0.2453,-0.1457,0.964,0.1796,-0.196,0.9662,-0.2281,0.1202,0.9671,0.0178,-0.2539,0.9685,-0.1832,-0.1687,0.9695,-0.1831,0.1627,0.9709,-0.0129,-0.2391,0.9717,-0.1029,0.2128,0.9726,-0.2271,-0.0503,0.9742,0.2224,0.0385,0.9746,-0.1095,0.1954,0.9755,0.1294,0.1778,0.9761,0.2152,0.0305,0.9782,-0.119,0.17,0.979,0.2037,-0.0102,0.9798,-0.1919,0.057,0.98,0.0918,-0.1765,0.9811,-0.1702,0.0918,0.9839,0.0407,-0.1739,0.9861,0.1518,0.0673,0.9866,0.1599,0.0331,0.9866,-0.1612,0.0233,0.9892,0.1261,-0.0743,0.9906,0.0191,-0.1357,0.9909,0.0028,0.1347,0.9915,-0.1284,-0.0212,0.9925,0.1107,0.0517,0.9931,0.1148,-0.0257,0.9946,0.0172,-0.1021,0.9961,0.0763,0.0451,0.9965,0.0672,0.05,0.9967,-0.0319,0.0748,0.9994,0.0305,-0.018};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl2disk_Geo_5_151_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,19,24,4,-1,25,26,4,-1,27,28,29,-1,30,31,32,-1,33,28,27,-1,26,25,34,-1,25,35,36,-1,37,38,39,-1,40,41,42,-1,43,44,41,-1,37,45,46,-1,43,40,47,-1,24,48,35,-1,19,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,56,-1,59,60,61,-1,52,59,61,-1,62,63,64,-1,62,56,58,-1,65,66,67,-1,68,69,70,-1,68,71,72,-1,73,74,75,-1,76,71,66,-1,77,78,10,-1,79,80,81,-1,81,82,79,-1,8,83,84,-1,85,86,87,-1,88,89,22,-1,90,91,92,-1,93,94,95,-1,96,33,97,-1,8,84,98,-1,81,99,82,-1,77,10,100,-1,76,66,101,-1,68,72,69,-1,65,102,66,-1,62,64,103,-1,52,61,53,-1,59,50,60,-1,56,55,57,-1,51,104,52,-1,19,18,49,-1,35,25,24,-1,37,105,45,-1,41,40,43,-1,37,46,38,-1,36,34,25,-1,34,33,26,-1,33,34,28,-1,106,39,107,-1,30,32,108,-1,45,109,46,-1,4,24,25,-1,4,20,19,-1,110,51,111,-1,21,23,112,-1,52,113,59,-1,114,102,115,-1,9,116,10,-1,12,14,117,-1,118,117,119,-1,8,1,6,-1,120,32,121,-1,122,123,101,-1,115,124,114,-1,115,125,124,-1,126,90,92,-1,126,127,90,-1,122,114,124,-1,101,114,122,-1,2,128,129,-1,1,128,2,-1,130,131,132,-1,130,133,131,-1,134,135,136,-1,135,134,137,-1,138,139,140,-1,141,139,138,-1,6,142,143,-1,6,144,142,-1,145,146,147,-1,145,49,146,-1,96,26,33,-1,26,96,148,-1,149,150,151,-1,152,150,149,-1,153,154,155,-1,154,153,156,-1,157,158,159,-1,157,160,158,-1,23,89,161,-1,23,22,89,-1,162,163,164,-1,63,163,162,-1,165,166,167,-1,168,166,165,-1,169,168,165,-1,170,168,169,-1,171,172,173,-1,171,174,172,-1,170,175,168,-1,164,175,170,-1,89,173,176,-1,89,88,173,-1,177,178,179,-1,177,180,178,-1,181,182,183,-1,182,181,184,-1,185,186,187,-1,185,188,186,-1,189,190,191,-1,190,189,192,-1,3,177,193,-1,3,194,177,-1,96,195,183,-1,96,97,195,-1,188,151,196,-1,149,151,188,-1,197,198,156,-1,198,197,191,-1,199,200,201,-1,199,202,200,-1,203,204,205,-1,204,203,206,-1,153,202,199,-1,153,207,202,-1,205,158,208,-1,158,205,204,-1,209,210,211,-1,209,138,210,-1,212,192,93,-1,212,213,192,-1,214,215,216,-1,215,214,201,-1,123,217,187,-1,123,122,217,-1,187,218,123,-1,218,187,186,-1,219,220,221,-1,219,222,220,-1,142,223,127,-1,142,174,223,-1,224,165,225,-1,224,169,165,-1,226,227,228,-1,229,227,226,-1,126,99,143,-1,126,82,99,-1,86,230,231,-1,230,86,85,-1,81,232,83,-1,80,232,81,-1,78,79,82,-1,78,77,79,-1,233,230,85,-1,233,234,230,-1,235,236,237,-1,13,236,235,-1,116,100,10,-1,116,238,100,-1,239,240,237,-1,239,241,240,-1,242,243,244,-1,242,245,243,-1,246,247,248,-1,246,249,247,-1,250,231,251,-1,231,250,252,-1,114,66,102,-1,101,66,114,-1,73,15,253,-1,15,73,75,-1,254,255,17,-1,254,256,255,-1,72,257,69,-1,257,258,259,-1,72,258,257,-1,260,70,261,-1,260,262,70,-1,263,264,75,-1,263,265,264,-1,260,266,267,-1,266,260,268,-1,65,115,102,-1,238,115,65,-1,238,116,115,-1,269,270,266,-1,269,271,270,-1,256,95,272,-1,256,259,95,-1,273,73,141,-1,273,74,73,-1,63,58,163,-1,63,62,58,-1,110,274,51,-1,110,275,274,-1,60,49,145,-1,50,49,60,-1,57,275,276,-1,57,55,275,-1,277,278,279,-1,277,280,278,-1,281,54,56,-1,282,54,281,-1,283,284,285,-1,283,286,284,-1,287,64,288,-1,103,64,287,-1,111,60,21,-1,111,61,60,-1,59,19,50,-1,19,59,113,-1,285,289,283,-1,285,290,289,-1,43,291,292,-1,43,47,291,-1,293,107,39,-1,293,294,107,-1,152,295,150,-1,295,152,296,-1,294,44,297,-1,294,41,44,-1,298,299,300,-1,298,301,299,-1,42,302,40,-1,302,42,303,-1,304,305,306,-1,304,307,305,-1,157,308,160,-1,308,157,309,-1,295,106,108,-1,295,105,106,-1,28,45,296,-1,109,45,28,-1,289,306,305,-1,289,290,306,-1,310,311,312,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl2disk_Geo_5_151_coordIndex_2()
		{
			int[] value = {310,313,311,-1,314,315,316,-1,317,315,314,-1,29,296,152,-1,296,29,28,-1,108,150,295,-1,32,150,108,-1,44,292,155,-1,43,292,44,-1,317,109,36,-1,317,46,109,-1,303,300,302,-1,300,303,298,-1,297,107,294,-1,30,107,297,-1,318,312,299,-1,318,310,312,-1,305,316,289,-1,305,314,316,-1,280,290,285,-1,280,319,290,-1,24,113,48,-1,24,19,113,-1,145,21,60,-1,21,145,22,-1,163,57,320,-1,57,163,58,-1,113,321,48,-1,113,52,321,-1,279,282,281,-1,278,282,279,-1,110,276,275,-1,276,110,112,-1,286,51,274,-1,104,51,286,-1,322,74,273,-1,322,323,74,-1,256,324,255,-1,324,256,272,-1,242,269,325,-1,242,271,269,-1,326,238,65,-1,241,238,326,-1,266,327,269,-1,266,268,327,-1,264,327,16,-1,264,265,327,-1,257,328,261,-1,328,257,254,-1,17,328,254,-1,17,16,328,-1,17,253,15,-1,255,253,17,-1,251,135,250,-1,251,329,135,-1,249,130,247,-1,249,87,130,-1,245,251,243,-1,251,245,329,-1,237,270,235,-1,237,240,270,-1,330,237,236,-1,237,330,239,-1,234,243,230,-1,243,234,244,-1,232,13,12,-1,232,236,13,-1,12,118,84,-1,12,117,118,-1,92,82,126,-1,92,78,82,-1,117,85,119,-1,117,233,85,-1,229,331,131,-1,229,226,331,-1,225,167,129,-1,225,165,167,-1,127,178,90,-1,127,223,178,-1,125,184,181,-1,125,332,184,-1,186,333,218,-1,333,186,334,-1,174,144,172,-1,142,144,174,-1,201,140,215,-1,140,201,200,-1,211,335,209,-1,335,211,206,-1,336,337,338,-1,336,339,337,-1,159,204,340,-1,159,158,204,-1,339,228,337,-1,339,226,228,-1,340,206,211,-1,340,204,206,-1,197,201,214,-1,197,199,201,-1,191,121,198,-1,121,191,190,-1,341,188,185,-1,341,149,188,-1,183,148,96,-1,148,183,182,-1,193,179,342,-1,193,177,179,-1,213,190,192,-1,343,190,213,-1,187,344,185,-1,344,187,217,-1,182,220,345,-1,182,184,220,-1,223,179,178,-1,346,179,223,-1,89,347,161,-1,89,176,347,-1,164,348,162,-1,164,170,348,-1,176,172,349,-1,176,173,172,-1,170,350,348,-1,170,169,350,-1,338,288,336,-1,351,288,338,-1,320,164,163,-1,320,175,164,-1,352,351,338,-1,313,351,352,-1,291,159,353,-1,291,157,159,-1,31,156,198,-1,31,154,156,-1,341,152,149,-1,29,152,341,-1,26,5,4,-1,26,148,5,-1,22,147,88,-1,22,145,147,-1,333,354,355,-1,333,212,354,-1,134,322,335,-1,136,322,134,-1,140,324,215,-1,139,324,140,-1,135,227,250,-1,135,137,227,-1,247,132,224,-1,247,130,132,-1,93,354,212,-1,95,354,93,-1,116,125,115,-1,116,332,125,-1,127,143,142,-1,126,143,127,-1,219,9,11,-1,9,219,221,-1,11,91,219,-1,11,92,91,-1,123,76,101,-1,76,123,218,-1,129,248,225,-1,128,248,129,-1,133,229,131,-1,133,252,229,-1,272,94,216,-1,272,95,94,-1,209,141,138,-1,273,141,209,-1,342,20,193,-1,18,20,342,-1,33,356,97,-1,33,27,356,-1,151,32,120,-1,150,32,151,-1,207,155,292,-1,155,207,153,-1,160,208,158,-1,160,311,208,-1,357,23,161,-1,358,23,357,-1,359,63,162,-1,64,63,359,-1,226,360,331,-1,339,360,226,-1,347,167,166,-1,347,361,167,-1,339,359,360,-1,336,359,339,-1,168,357,166,-1,175,357,168,-1,147,173,88,-1,147,171,173,-1,194,180,177,-1,194,222,180,-1,183,362,181,-1,183,195,362,-1,188,334,186,-1,188,196,334,-1,147,346,171,-1,147,146,346,-1,194,5,345,-1,3,5,194,-1,344,97,356,-1,97,344,195,-1,343,151,120,-1,151,343,196,-1,156,199,197,-1,156,153,199,-1,210,202,363,-1,202,210,200,-1,205,364,203,-1,205,365,364,-1,363,207,353,-1,207,363,202,-1,208,365,205,-1,208,352,365,-1,138,200,210,-1,138,140,200,-1,216,189,214,-1,216,94,189,-1,349,2,361,-1,0,2,349,-1,184,221,220,-1,332,221,184,-1,217,124,362,-1,122,124,217,-1,219,180,222,-1,219,91,180,-1,349,144,0,-1,144,349,172,-1,169,132,350,-1,224,132,169,-1,137,228,227,-1,137,364,228,-1,249,118,119,-1,118,249,246,-1,6,99,7,-1,6,143,99,-1,243,231,230,-1,243,251,231,-1,12,83,232,-1,84,83,12,-1,330,79,77,-1,79,330,80,-1,14,233,117,-1,14,234,233,-1,14,235,366,-1,14,13,235,-1,238,239,100,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl2disk_Geo_5_151_coordIndex_3()
		{
			int[] value = {239,238,241,-1,366,242,244,-1,366,271,242,-1,248,98,246,-1,128,98,248,-1,86,252,133,-1,86,231,252,-1,75,16,15,-1,75,264,16,-1,72,354,258,-1,72,355,354,-1,323,367,263,-1,323,368,367,-1,254,259,256,-1,254,257,259,-1,68,262,67,-1,70,262,68,-1,268,261,328,-1,268,260,261,-1,367,265,263,-1,325,265,367,-1,267,262,260,-1,326,262,267,-1,270,267,266,-1,270,240,267,-1,368,245,367,-1,329,245,368,-1,141,253,139,-1,141,73,253,-1,135,368,136,-1,135,329,368,-1,316,283,289,-1,316,369,283,-1,370,318,277,-1,370,310,318,-1,287,277,279,-1,277,287,370,-1,282,284,54,-1,278,284,282,-1,54,286,274,-1,284,286,54,-1,104,321,52,-1,369,321,104,-1,276,23,358,-1,112,23,276,-1,51,61,111,-1,51,53,61,-1,315,369,316,-1,369,315,321,-1,351,310,370,-1,351,313,310,-1,47,157,291,-1,309,157,47,-1,39,307,293,-1,307,39,38,-1,296,105,295,-1,105,296,45,-1,299,308,300,-1,312,308,299,-1,304,303,42,-1,303,304,298,-1,307,42,293,-1,42,307,304,-1,317,38,46,-1,38,317,314,-1,31,297,154,-1,297,31,30,-1,105,39,106,-1,105,37,39,-1,109,34,36,-1,109,28,34,-1,290,301,306,-1,290,319,301,-1,319,299,301,-1,319,318,299,-1,36,315,317,-1,36,35,315,-1,155,297,44,-1,155,154,297,-1,41,293,42,-1,41,294,293,-1,298,306,301,-1,298,304,306,-1,309,300,308,-1,309,302,300,-1,108,107,30,-1,108,106,107,-1,160,312,311,-1,312,160,308,-1,314,307,38,-1,305,307,314,-1,40,309,47,-1,302,309,40,-1,277,319,280,-1,277,318,319,-1,315,48,321,-1,315,35,48,-1,276,320,57,-1,276,358,320,-1,274,55,54,-1,274,275,55,-1,285,278,280,-1,285,284,278,-1,279,103,287,-1,279,281,103,-1,110,21,112,-1,110,111,21,-1,370,288,351,-1,287,288,370,-1,286,369,104,-1,369,286,283,-1,103,56,62,-1,56,103,281,-1,323,136,368,-1,322,136,323,-1,139,255,324,-1,139,253,255,-1,367,242,325,-1,367,245,242,-1,240,326,267,-1,240,241,326,-1,326,67,262,-1,65,67,326,-1,327,325,269,-1,327,265,325,-1,16,268,328,-1,16,327,268,-1,68,66,71,-1,68,67,66,-1,261,69,257,-1,69,261,70,-1,263,74,323,-1,75,74,263,-1,72,76,355,-1,72,71,76,-1,259,354,95,-1,259,258,354,-1,87,133,130,-1,87,86,133,-1,1,98,128,-1,1,8,98,-1,270,366,235,-1,270,271,366,-1,77,239,330,-1,239,77,100,-1,244,14,366,-1,244,234,14,-1,80,236,232,-1,80,330,236,-1,83,99,81,-1,7,83,8,-1,83,7,99,-1,246,84,118,-1,246,98,84,-1,119,87,249,-1,85,87,119,-1,78,11,10,-1,11,78,92,-1,350,131,331,-1,132,131,350,-1,361,129,167,-1,2,129,361,-1,180,90,178,-1,91,90,180,-1,181,124,125,-1,124,181,362,-1,203,137,134,-1,137,203,364,-1,212,334,213,-1,212,333,334,-1,94,192,189,-1,94,93,192,-1,134,206,203,-1,134,335,206,-1,365,338,337,-1,352,338,365,-1,340,353,159,-1,353,340,363,-1,364,337,228,-1,365,337,364,-1,211,363,340,-1,363,211,210,-1,214,191,197,-1,191,214,189,-1,343,121,190,-1,120,121,343,-1,185,356,341,-1,356,185,344,-1,148,345,5,-1,148,182,345,-1,346,342,179,-1,146,342,346,-1,213,196,343,-1,196,213,334,-1,217,195,344,-1,195,217,362,-1,222,345,220,-1,194,345,222,-1,174,346,223,-1,171,346,174,-1,161,166,357,-1,161,347,166,-1,162,360,359,-1,162,348,360,-1,176,361,347,-1,176,349,361,-1,348,331,360,-1,348,350,331,-1,336,64,359,-1,288,64,336,-1,358,175,320,-1,358,357,175,-1,311,352,208,-1,311,313,352,-1,292,353,207,-1,292,291,353,-1,121,31,198,-1,32,31,121,-1,27,341,356,-1,27,29,341,-1,193,4,3,-1,20,4,193,-1,49,342,146,-1,49,18,342,-1,335,273,209,-1,322,273,335,-1,324,216,215,-1,324,272,216,-1,252,227,229,-1,252,250,227,-1,248,224,225,-1,248,247,224,-1,355,218,333,-1,355,76,218,-1,221,116,9,-1,116,221,332,-1,6,0,144,-1,6,1,0,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl2disk_Geo_5_151_normalIndex_1()
		{
			int[] value = {24,247,17,-1,311,277,288,-1,281,334,326,-1,163,137,199,-1,109,248,216,-1,280,243,296,-1,161,157,286,-1,114,36,42,-1,157,234,277,-1,204,147,277,-1,84,210,212,-1,232,327,333,-1,107,210,84,-1,147,204,145,-1,204,219,202,-1,279,274,310,-1,301,320,316,-1,165,214,320,-1,279,303,253,-1,165,301,153,-1,234,146,219,-1,157,74,96,-1,62,94,128,-1,53,48,64,-1,159,209,64,-1,69,91,55,-1,94,69,55,-1,220,83,131,-1,220,64,209,-1,205,152,138,-1,225,261,211,-1,225,118,73,-1,120,124,278,-1,154,118,152,-1,221,218,137,-1,132,156,108,-1,108,249,132,-1,326,97,65,-1,93,245,251,-1,20,15,36,-1,169,283,230,-1,346,353,122,-1,82,107,59,-1,326,65,290,-1,108,298,249,-1,221,137,201,-1,154,152,141,-1,225,73,261,-1,205,240,152,-1,220,131,242,-1,94,55,128,-1,69,96,91,-1,64,48,159,-1,62,92,94,-1,157,161,74,-1,219,204,234,-1,279,317,303,-1,320,301,165,-1,279,253,274,-1,202,145,204,-1,145,107,147,-1,107,145,210,-1,313,310,314,-1,232,333,272,-1,303,268,253,-1,277,234,204,-1,277,286,157,-1,56,62,57,-1,114,42,148,-1,94,101,69,-1,166,240,217,-1,163,206,137,-1,109,216,116,-1,75,116,90,-1,326,247,281,-1,350,333,355,-1,87,196,141,-1,217,77,166,-1,217,102,77,-1,215,169,230,-1,215,52,169,-1,87,166,77,-1,141,166,87,-1,17,167,14,-1,247,167,17,-1,125,34,26,-1,125,117,34,-1,246,178,168,-1,178,246,173,-1,344,236,351,-1,244,236,344,-1,281,33,250,-1,281,30,33,-1,45,41,27,-1,45,74,41,-1,82,147,107,-1,147,82,192,-1,329,325,343,-1,293,325,329,-1,358,330,319,-1,330,358,364,-1,237,323,335,-1,237,256,323,-1,42,15,9,-1,42,36,15,-1,29,66,18,-1,83,66,29,-1,4,0,1,-1,5,0,4,-1,7,5,4,-1,10,5,7,-1,25,21,16,-1,25,28,21,-1,10,12,5,-1,18,12,10,-1,15,16,8,-1,15,20,16,-1,297,149,151,-1,297,289,149,-1,71,194,70,-1,194,71,193,-1,222,331,224,-1,222,332,331,-1,367,362,368,-1,362,367,359,-1,311,297,302,-1,311,312,297,-1,82,58,70,-1,82,59,58,-1,332,343,345,-1,329,343,332,-1,370,361,364,-1,361,370,368,-1,365,363,366,-1,365,360,363,-1,271,328,284,-1,328,271,324,-1,358,360,365,-1,358,352,360,-1,284,323,282,-1,323,284,328,-1,336,348,339,-1,336,344,348,-1,340,359,346,-1,340,349,359,-1,369,357,356,-1,357,369,366,-1,196,81,224,-1,196,87,81,-1,224,318,196,-1,318,224,331,-1,294,299,267,-1,294,308,299,-1,33,39,52,-1,33,28,39,-1,19,4,13,-1,19,7,4,-1,46,123,99,-1,54,123,46,-1,215,298,250,-1,215,249,298,-1,245,158,241,-1,158,245,93,-1,108,113,97,-1,156,113,108,-1,218,132,249,-1,218,221,132,-1,136,158,93,-1,136,170,158,-1,266,259,239,-1,248,259,266,-1,206,201,137,-1,206,200,201,-1,203,183,239,-1,203,188,183,-1,175,231,238,-1,175,176,231,-1,265,134,112,-1,265,292,134,-1,197,241,228,-1,241,197,143,-1,166,152,240,-1,141,152,166,-1,120,280,78,-1,280,120,278,-1,306,104,296,-1,306,80,104,-1,73,275,261,-1,275,37,44,-1,73,37,275,-1,111,211,257,-1,111,144,211,-1,208,233,278,-1,208,195,233,-1,111,103,129,-1,103,111,133,-1,205,217,240,-1,200,217,205,-1,200,206,217,-1,106,182,103,-1,106,177,182,-1,80,122,198,-1,80,44,122,-1,255,120,244,-1,255,124,120,-1,83,209,66,-1,83,220,209,-1,56,50,62,-1,56,60,50,-1,91,74,45,-1,96,74,91,-1,159,60,207,-1,159,48,60,-1,98,63,85,-1,98,95,63,-1,67,53,64,-1,49,53,67,-1,100,79,110,-1,100,76,79,-1,155,131,115,-1,242,131,155,-1,57,91,114,-1,57,55,91,-1,69,157,96,-1,157,69,101,-1,110,187,100,-1,110,185,187,-1,165,287,305,-1,165,153,287,-1,321,314,310,-1,321,309,314,-1,293,264,325,-1,264,293,270,-1,309,214,162,-1,309,320,214,-1,307,273,285,-1,307,276,273,-1,316,304,301,-1,304,316,322,-1,291,269,260,-1,291,295,269,-1,237,213,256,-1,213,237,126,-1,264,313,272,-1,264,317,313,-1,210,303,270,-1,268,303,210,-1,187,260,269,-1,187,185,260,-1,186,235,223,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl2disk_Geo_5_151_normalIndex_2()
		{
			int[] value = {186,181,235,-1,263,190,189,-1,252,190,263,-1,212,270,293,-1,270,212,210,-1,272,325,264,-1,333,325,272,-1,214,305,319,-1,165,305,214,-1,252,268,202,-1,252,253,268,-1,322,285,304,-1,285,322,307,-1,162,314,309,-1,232,314,162,-1,180,223,273,-1,180,186,223,-1,269,189,187,-1,269,263,189,-1,95,185,110,-1,95,179,185,-1,234,101,146,-1,234,157,101,-1,45,114,91,-1,114,45,36,-1,66,159,51,-1,159,66,209,-1,101,119,146,-1,101,94,119,-1,85,49,67,-1,63,49,85,-1,56,207,60,-1,207,56,148,-1,76,62,50,-1,92,62,76,-1,227,124,255,-1,227,127,124,-1,80,258,104,-1,258,80,198,-1,175,106,130,-1,175,177,106,-1,164,200,205,-1,188,200,164,-1,103,160,106,-1,103,133,160,-1,233,160,243,-1,233,195,160,-1,275,254,257,-1,254,275,306,-1,296,254,306,-1,296,243,254,-1,296,78,280,-1,104,78,296,-1,228,178,197,-1,228,184,178,-1,292,125,134,-1,292,251,125,-1,176,228,231,-1,228,176,184,-1,239,182,266,-1,239,183,182,-1,226,239,259,-1,239,226,203,-1,170,231,158,-1,231,170,238,-1,113,248,109,-1,113,259,248,-1,109,75,65,-1,109,116,75,-1,230,249,215,-1,230,218,249,-1,116,93,90,-1,116,136,93,-1,54,31,34,-1,54,46,31,-1,13,1,14,-1,13,4,1,-1,52,149,169,-1,52,39,149,-1,102,193,71,-1,102,191,193,-1,331,337,318,-1,337,331,342,-1,28,30,21,-1,33,30,28,-1,366,351,357,-1,351,366,363,-1,339,315,336,-1,315,339,324,-1,47,86,88,-1,47,43,86,-1,335,328,338,-1,335,323,328,-1,43,99,86,-1,43,46,99,-1,338,324,339,-1,338,328,324,-1,370,366,369,-1,370,365,366,-1,368,355,361,-1,355,368,362,-1,229,332,222,-1,229,329,332,-1,70,192,82,-1,192,70,194,-1,302,151,140,-1,302,297,151,-1,349,362,359,-1,354,362,349,-1,224,72,222,-1,72,224,81,-1,194,299,300,-1,194,193,299,-1,39,151,149,-1,38,151,39,-1,15,2,9,-1,15,8,2,-1,18,23,29,-1,18,10,23,-1,8,21,11,-1,8,16,21,-1,10,22,23,-1,10,7,22,-1,88,115,47,-1,135,115,88,-1,51,18,66,-1,51,12,18,-1,174,135,88,-1,181,135,174,-1,287,335,341,-1,287,237,335,-1,327,364,361,-1,327,330,364,-1,229,293,329,-1,212,293,229,-1,147,288,277,-1,147,192,288,-1,36,27,20,-1,36,45,27,-1,337,89,121,-1,337,340,89,-1,246,227,315,-1,168,227,246,-1,351,258,357,-1,236,258,351,-1,178,123,197,-1,178,173,123,-1,134,26,19,-1,134,125,26,-1,346,89,340,-1,122,89,346,-1,206,102,217,-1,206,191,102,-1,52,250,33,-1,215,250,52,-1,294,163,199,-1,163,294,267,-1,199,283,294,-1,199,230,283,-1,196,154,141,-1,154,196,318,-1,14,112,13,-1,167,112,14,-1,117,54,34,-1,117,143,54,-1,198,353,356,-1,198,122,353,-1,336,244,344,-1,255,244,336,-1,140,286,302,-1,161,286,140,-1,107,68,59,-1,107,84,68,-1,343,333,350,-1,325,333,343,-1,352,319,305,-1,319,352,358,-1,256,282,323,-1,256,235,282,-1,6,42,9,-1,40,42,6,-1,35,83,29,-1,131,83,35,-1,46,32,31,-1,43,32,46,-1,2,1,0,-1,2,3,1,-1,43,35,32,-1,47,35,43,-1,5,6,0,-1,12,6,5,-1,27,16,20,-1,27,25,16,-1,312,289,297,-1,312,308,289,-1,70,61,71,-1,70,58,61,-1,332,342,331,-1,332,345,342,-1,27,38,25,-1,27,41,38,-1,312,288,300,-1,311,288,312,-1,72,59,68,-1,59,72,58,-1,354,343,350,-1,343,354,345,-1,364,365,370,-1,364,358,365,-1,348,360,347,-1,360,348,363,-1,284,171,271,-1,284,172,171,-1,347,352,341,-1,352,347,360,-1,282,172,284,-1,282,174,172,-1,344,363,348,-1,344,351,363,-1,356,367,369,-1,356,353,367,-1,11,17,3,-1,24,17,11,-1,193,267,299,-1,191,267,193,-1,81,77,61,-1,87,77,81,-1,294,289,308,-1,294,283,289,-1,11,30,24,-1,30,11,21,-1,7,26,22,-1,19,26,7,-1,173,99,123,-1,173,171,99,-1,292,75,90,-1,75,292,265,-1,281,298,334,-1,281,250,298,-1,231,241,158,-1,231,228,241,-1,109,97,113,-1,65,97,109,-1,226,132,221,-1,132,226,156,-1,216,136,116,-1,216,170,136,-1,216,266,262,-1,216,248,266,-1,200,203,201,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl2disk_Geo_5_151_normalIndex_3()
		{
			int[] value = {203,200,188,-1,262,175,238,-1,262,177,175,-1,112,290,265,-1,167,290,112,-1,245,143,117,-1,245,241,143,-1,278,243,280,-1,278,233,243,-1,73,89,37,-1,73,121,89,-1,127,139,208,-1,127,142,139,-1,306,44,80,-1,306,275,44,-1,225,144,138,-1,211,144,225,-1,133,257,254,-1,133,111,257,-1,139,195,208,-1,130,195,139,-1,129,144,111,-1,164,144,129,-1,182,129,103,-1,182,183,129,-1,142,176,139,-1,184,176,142,-1,244,78,236,-1,244,120,78,-1,178,142,168,-1,178,184,142,-1,189,100,187,-1,189,105,100,-1,150,180,98,-1,150,186,180,-1,155,98,85,-1,98,155,150,-1,49,79,53,-1,63,79,49,-1,53,76,50,-1,79,76,53,-1,92,119,94,-1,105,119,92,-1,207,42,40,-1,148,42,207,-1,62,55,57,-1,62,128,55,-1,190,105,189,-1,105,190,119,-1,135,186,150,-1,135,181,186,-1,153,237,287,-1,126,237,153,-1,310,295,321,-1,295,310,274,-1,270,317,264,-1,317,270,303,-1,273,213,285,-1,223,213,273,-1,291,322,316,-1,322,291,307,-1,295,316,321,-1,316,295,291,-1,252,274,253,-1,274,252,263,-1,327,162,330,-1,162,327,232,-1,317,310,313,-1,317,279,310,-1,268,145,202,-1,268,210,145,-1,185,276,260,-1,185,179,276,-1,179,273,276,-1,179,180,273,-1,202,190,252,-1,202,219,190,-1,319,162,214,-1,319,330,162,-1,320,321,316,-1,320,309,321,-1,307,260,276,-1,307,291,260,-1,126,285,213,-1,126,304,285,-1,272,314,232,-1,272,313,314,-1,256,223,235,-1,223,256,213,-1,263,295,274,-1,269,295,263,-1,301,126,153,-1,304,126,301,-1,98,179,95,-1,98,180,179,-1,190,146,119,-1,190,219,146,-1,207,51,159,-1,207,40,51,-1,50,48,53,-1,50,60,48,-1,110,63,95,-1,110,79,63,-1,85,242,155,-1,85,67,242,-1,56,114,148,-1,56,57,114,-1,150,115,135,-1,155,115,150,-1,76,105,92,-1,105,76,100,-1,242,64,220,-1,64,242,67,-1,127,168,142,-1,227,168,127,-1,236,104,258,-1,236,78,104,-1,139,175,130,-1,139,176,175,-1,183,164,129,-1,183,188,164,-1,164,138,144,-1,205,138,164,-1,160,130,106,-1,160,195,130,-1,243,133,254,-1,243,160,133,-1,225,152,118,-1,225,138,152,-1,257,261,275,-1,261,257,211,-1,208,124,127,-1,278,124,208,-1,73,154,121,-1,73,118,154,-1,44,89,122,-1,44,37,89,-1,251,117,125,-1,251,245,117,-1,247,290,167,-1,247,326,290,-1,182,262,266,-1,182,177,262,-1,221,203,226,-1,203,221,201,-1,238,216,262,-1,238,170,216,-1,156,259,113,-1,156,226,259,-1,97,298,108,-1,334,97,326,-1,97,334,298,-1,265,65,75,-1,265,290,65,-1,90,251,292,-1,93,251,90,-1,218,199,137,-1,199,218,230,-1,22,34,31,-1,26,34,22,-1,3,14,1,-1,17,14,3,-1,289,169,149,-1,283,169,289,-1,71,77,102,-1,77,71,61,-1,271,173,246,-1,173,271,171,-1,340,342,349,-1,340,337,342,-1,353,359,367,-1,353,346,359,-1,246,324,271,-1,246,315,324,-1,172,88,86,-1,174,88,172,-1,338,341,335,-1,341,338,347,-1,171,86,99,-1,172,86,171,-1,339,347,338,-1,347,339,348,-1,369,368,370,-1,368,369,367,-1,354,355,362,-1,350,355,354,-1,222,68,229,-1,68,222,72,-1,192,300,288,-1,192,194,300,-1,38,140,151,-1,41,140,38,-1,349,345,354,-1,345,349,342,-1,81,58,72,-1,58,81,61,-1,308,300,299,-1,312,300,308,-1,28,38,39,-1,25,38,28,-1,9,0,6,-1,9,2,0,-1,29,32,35,-1,29,23,32,-1,8,3,2,-1,8,11,3,-1,23,31,32,-1,23,22,31,-1,47,131,35,-1,115,131,47,-1,40,12,51,-1,40,6,12,-1,235,174,282,-1,235,181,174,-1,305,341,352,-1,305,287,341,-1,355,327,361,-1,333,327,355,-1,84,229,68,-1,84,212,229,-1,302,277,311,-1,286,277,302,-1,74,140,41,-1,74,161,140,-1,315,255,336,-1,227,255,315,-1,258,356,357,-1,258,198,356,-1,143,123,54,-1,143,197,123,-1,112,19,13,-1,112,134,19,-1,121,318,337,-1,121,154,318,-1,267,206,163,-1,206,267,191,-1,281,24,30,-1,281,247,24,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl3_Geo_5_157_coordIndex_2()
		{
			int[] value = {597,598,599,-1,600,601,602,-1,603,604,605,-1,606,607,608,-1,609,604,603,-1,610,611,612,-1,613,614,602,-1,613,615,616,-1,617,618,619,-1,620,621,622,-1,611,623,624,-1,625,626,627,-1,605,624,623,-1,616,618,617,-1,628,629,630,-1,612,611,309,-1,631,603,623,-1,609,632,608,-1,605,633,622,-1,607,634,635,-1,634,600,602,-1,636,599,637,-1,638,456,558,-1,591,639,558,-1,587,640,557,-1,641,598,590,-1,642,643,644,-1,645,583,584,-1,569,574,585,-1,645,584,431,-1,646,647,648,-1,320,649,450,-1,650,651,652,-1,653,654,655,-1,655,656,653,-1,322,657,658,-1,659,660,661,-1,584,662,431,-1,573,569,568,-1,441,447,446,-1,560,663,664,-1,401,400,665,-1,666,667,565,-1,553,552,668,-1,669,670,671,-1,672,376,548,-1,673,426,674,-1,675,424,676,-1,546,677,544,-1,678,679,680,-1,541,525,524,-1,541,681,682,-1,683,684,685,-1,686,687,530,-1,532,686,533,-1,688,532,523,-1,689,688,690,-1,691,519,520,-1,516,510,692,-1,693,516,694,-1,408,357,415,-1,695,696,697,-1,695,513,407,-1,507,504,698,-1,349,699,700,-1,349,701,699,-1,702,700,491,-1,703,702,704,-1,498,372,500,-1,499,705,558,-1,187,384,185,-1,484,348,706,-1,323,707,324,-1,183,182,708,-1,493,709,380,-1,710,704,491,-1,711,712,487,-1,484,486,713,-1,327,169,329,-1,714,336,343,-1,344,715,481,-1,478,338,164,-1,716,474,473,-1,364,717,365,-1,471,470,366,-1,718,719,720,-1,456,721,499,-1,459,499,460,-1,456,638,722,-1,321,320,723,-1,724,725,726,-1,727,728,729,-1,448,444,445,-1,719,606,730,-1,731,732,597,-1,443,441,446,-1,404,403,392,-1,447,733,734,-1,735,736,447,-1,737,738,739,-1,740,737,387,-1,741,742,743,-1,744,745,455,-1,433,430,746,-1,430,429,746,-1,747,431,455,-1,748,749,750,-1,751,552,752,-1,668,666,753,-1,690,688,523,-1,517,516,754,-1,356,755,756,-1,757,355,514,-1,411,410,408,-1,409,411,381,-1,758,759,760,-1,761,689,762,-1,356,355,757,-1,515,759,758,-1,664,520,560,-1,763,690,764,-1,563,571,398,-1,765,766,767,-1,390,385,739,-1,740,387,386,-1,385,403,405,-1,388,768,389,-1,768,769,389,-1,770,771,709,-1,772,765,771,-1,773,772,774,-1,376,672,775,-1,776,777,778,-1,779,776,778,-1,780,781,782,-1,504,783,371,-1,372,371,500,-1,784,379,785,-1,358,784,785,-1,786,787,788,-1,789,356,508,-1,702,703,790,-1,791,790,703,-1,792,358,791,-1,793,713,794,-1,707,15,14,-1,348,347,795,-1,796,797,798,-1,344,343,336,-1,799,774,800,-1,801,342,802,-1,327,329,331,-1,324,475,346,-1,475,324,707,-1,803,627,804,-1,317,805,310,-1,806,302,318,-1,807,314,316,-1,312,311,808,-1,809,298,810,-1,811,310,805,-1,812,813,814,-1,307,306,301,-1,304,814,813,-1,298,809,299,-1,138,300,815,-1,291,816,278,-1,289,817,818,-1,819,820,821,-1,281,280,285,-1,822,823,817,-1,271,272,269,-1,824,270,269,-1,273,825,826,-1,827,828,829,-1,113,112,830,-1,831,242,250,-1,110,832,253,-1,268,250,249,-1,243,242,833,-1,834,835,836,-1,210,837,73,-1,838,72,71,-1,80,248,839,-1,840,841,842,-1,840,188,280,-1,840,842,188,-1,843,844,845,-1,241,103,242,-1,108,846,847,-1,231,847,232,-1,229,219,53,-1,223,222,227,-1,212,56,848,-1,849,234,236,-1,850,851,852,-1,852,851,853,-1,854,209,213,-1,855,223,226,-1,856,224,857,-1,858,210,859,-1,214,860,861,-1,214,213,95,-1,862,81,863,-1,864,865,866,-1,867,845,868,-1,43,42,194,-1,192,191,176,-1,869,191,195,-1,190,153,152,-1,870,871,189,-1,156,186,872,-1,873,186,185,-1,874,186,875,-1,156,157,875,-1,876,872,35,-1,180,179,877,-1,23,20,22,-1,176,29,28,-1,878,64,59,-1,879,880,173,-1,881,21,172,-1,1,882,2,-1,883,884,885,-1,886,887,888,-1,886,9,8,-1,480,889,890,-1,164,166,5,-1,884,891,885,-1,892,162,893,-1,28,894,895,-1,25,896,26,-1,897,898,899,-1,325,187,874,-1,900,901,462,-1,871,902,153,-1,155,897,148,-1,110,903,832,-1,904,905,262,-1,906,113,907,-1,124,121,131,-1,908,909,245,-1,903,908,244,-1,910,911,121,-1,912,147,913,-1,914,915,111,-1,916,235,917,-1,232,847,846,-1,79,918,77,-1,919,198,200,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl3_Geo_5_157_coordIndex_3()
		{
			int[] value = {920,32,202,-1,921,865,922,-1,77,92,923,-1,60,924,925,-1,245,127,839,-1,837,834,926,-1,879,921,927,-1,61,928,62,-1,65,57,64,-1,120,66,62,-1,186,873,870,-1,88,929,930,-1,931,54,932,-1,844,933,934,-1,935,44,190,-1,156,40,41,-1,160,161,30,-1,936,937,938,-1,39,21,24,-1,202,32,866,-1,896,25,939,-1,940,195,194,-1,941,170,14,-1,11,885,942,-1,885,943,883,-1,887,944,6,-1,3,945,946,-1,947,5,166,-1,948,949,950,-1,0,951,889,-1,887,167,952,-1,887,952,168,-1,884,883,953,-1,954,184,875,-1,874,875,184,-1,186,874,187,-1,184,325,874,-1,325,184,323,-1,883,941,953,-1,168,888,887,-1,167,955,952,-1,0,2,951,-1,949,956,950,-1,3,946,4,-1,944,7,6,-1,6,167,887,-1,885,13,943,-1,14,953,941,-1,942,885,891,-1,957,940,958,-1,162,895,163,-1,30,29,160,-1,959,960,930,-1,156,876,40,-1,934,868,844,-1,47,931,932,-1,88,961,929,-1,962,90,59,-1,66,65,62,-1,64,62,65,-1,61,909,928,-1,879,963,921,-1,74,251,964,-1,253,837,926,-1,245,839,75,-1,925,126,60,-1,924,60,63,-1,927,921,922,-1,89,963,90,-1,922,879,927,-1,202,201,920,-1,919,200,965,-1,836,966,967,-1,846,968,232,-1,916,236,235,-1,111,112,914,-1,915,969,111,-1,970,115,113,-1,912,140,147,-1,128,123,908,-1,244,908,245,-1,121,132,131,-1,288,971,136,-1,906,133,113,-1,904,262,830,-1,110,129,903,-1,913,972,973,-1,283,150,287,-1,897,974,148,-1,902,151,153,-1,900,975,901,-1,899,974,897,-1,161,27,26,-1,28,895,162,-1,892,28,162,-1,5,476,164,-1,480,955,889,-1,886,944,887,-1,9,886,888,-1,172,171,881,-1,880,976,173,-1,176,28,892,-1,977,23,22,-1,180,877,978,-1,979,178,88,-1,872,937,35,-1,157,954,875,-1,186,156,875,-1,872,876,156,-1,870,189,872,-1,190,152,842,-1,867,935,845,-1,892,192,176,-1,43,194,193,-1,935,980,845,-1,89,960,201,-1,84,981,982,-1,866,982,864,-1,862,82,81,-1,203,214,861,-1,211,854,859,-1,857,983,856,-1,226,984,855,-1,214,203,212,-1,213,848,854,-1,853,985,852,-1,852,986,850,-1,849,218,234,-1,56,987,848,-1,227,226,223,-1,238,229,53,-1,231,106,847,-1,843,845,980,-1,280,249,840,-1,80,839,988,-1,71,989,838,-1,73,72,210,-1,242,831,833,-1,110,926,254,-1,254,824,272,-1,250,270,831,-1,827,990,828,-1,826,905,273,-1,269,272,824,-1,268,282,271,-1,277,822,817,-1,284,818,285,-1,819,991,820,-1,291,278,135,-1,138,301,300,-1,301,303,297,-1,307,301,138,-1,812,814,305,-1,811,805,992,-1,810,808,809,-1,312,806,316,-1,318,993,806,-1,317,302,304,-1,803,994,627,-1,335,995,336,-1,477,801,802,-1,344,336,995,-1,715,482,481,-1,795,706,348,-1,14,326,707,-1,713,486,794,-1,792,359,358,-1,791,358,790,-1,996,468,353,-1,366,490,471,-1,789,414,356,-1,786,495,787,-1,358,360,784,-1,997,353,367,-1,371,783,500,-1,504,507,783,-1,782,375,780,-1,778,998,779,-1,779,999,776,-1,775,375,376,-1,775,780,375,-1,1000,773,774,-1,381,380,709,-1,772,766,765,-1,768,1001,769,-1,388,385,405,-1,385,392,403,-1,386,767,740,-1,767,769,765,-1,563,687,1002,-1,1003,401,395,-1,563,1004,571,-1,763,764,1005,-1,664,521,520,-1,515,1006,759,-1,757,755,356,-1,1007,1008,694,-1,508,356,756,-1,516,693,754,-1,523,764,690,-1,668,667,666,-1,752,671,751,-1,748,1009,749,-1,455,745,747,-1,747,432,431,-1,746,434,433,-1,1010,743,1011,-1,743,1010,741,-1,737,739,387,-1,440,735,447,-1,447,734,726,-1,392,399,404,-1,443,454,441,-1,597,1012,731,-1,445,437,448,-1,724,726,734,-1,456,722,457,-1,499,721,460,-1,456,1013,721,-1,1014,997,369,-1,717,996,1015,-1,364,996,717,-1,473,788,716,-1,338,165,164,-1,344,995,715,-1,327,170,169,-1,487,413,711,-1,488,487,712,-1,490,710,491,-1,704,710,792,-1,380,494,493,-1,182,799,708,-1,323,15,707,-1,484,713,348,-1,496,382,384,-1,558,456,499,-1,500,459,498,-1,351,504,349,-1,702,491,704,-1,700,350,349,-1,698,789,507,-1,505,1016,501,-1,418,695,697,-1,1017,388,696,-1,415,411,408,-1,516,692,1018,-1,532,524,523,-1,686,530,529,-1,685,1019,683,-1,541,524,539,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl3_Geo_5_157_coordIndex_4()
		{
			int[] value = {546,545,526,-1,546,676,677,-1,424,550,676,-1,548,553,672,-1,670,751,671,-1,668,672,553,-1,565,573,666,-1,775,753,1009,-1,568,570,557,-1,705,500,1020,-1,663,1021,664,-1,441,440,447,-1,571,455,396,-1,455,431,662,-1,322,658,1022,-1,655,723,656,-1,650,652,1023,-1,437,1024,448,-1,647,1025,648,-1,645,431,430,-1,585,570,569,-1,586,570,585,-1,583,586,584,-1,642,644,1026,-1,598,1027,590,-1,587,557,570,-1,591,640,589,-1,591,558,557,-1,591,593,639,-1,558,639,638,-1,718,720,1028,-1,636,637,1029,-1,602,635,634,-1,603,605,623,-1,608,607,633,-1,608,604,609,-1,631,623,610,-1,612,309,308,-1,628,616,615,-1,628,1030,618,-1,616,628,618,-1,621,624,622,-1,1031,611,624,-1,627,994,625,-1,605,622,624,-1,620,1032,621,-1,617,620,616,-1,602,601,613,-1,610,623,611,-1,603,631,609,-1,608,632,606,-1,635,633,607,-1,597,599,636,-1,592,588,720,-1,596,1033,594,-1,591,557,640,-1,588,590,1027,-1,585,584,586,-1,1034,584,574,-1,582,1035,583,-1,580,1036,581,-1,576,578,728,-1,569,573,574,-1,584,1034,662,-1,662,396,455,-1,567,573,565,-1,530,687,563,-1,562,663,560,-1,705,1020,559,-1,559,568,557,-1,558,705,559,-1,501,1016,556,-1,573,749,666,-1,554,752,552,-1,424,423,550,-1,376,378,547,-1,544,1019,545,-1,531,1037,542,-1,539,1038,540,-1,534,536,537,-1,534,1039,535,-1,524,533,539,-1,541,682,525,-1,529,533,686,-1,528,675,526,-1,691,520,522,-1,416,519,691,-1,515,510,516,-1,355,407,513,-1,514,760,757,-1,512,692,510,-1,507,789,508,-1,501,555,502,-1,371,701,349,-1,350,700,702,-1,705,499,500,-1,496,498,382,-1,369,496,384,-1,185,384,383,-1,497,369,384,-1,495,496,368,-1,381,709,1040,-1,494,1041,492,-1,472,471,491,-1,768,388,1017,-1,487,489,413,-1,484,359,485,-1,335,1042,995,-1,347,328,796,-1,890,479,480,-1,478,164,476,-1,474,471,472,-1,471,474,469,-1,468,996,364,-1,467,1013,458,-1,462,464,900,-1,459,461,498,-1,458,1013,456,-1,1043,638,639,-1,1044,652,436,-1,572,453,455,-1,452,575,450,-1,449,433,444,-1,732,731,1028,-1,445,447,726,-1,433,442,444,-1,400,439,665,-1,665,439,453,-1,447,736,733,-1,436,1024,437,-1,428,430,431,-1,426,673,427,-1,424,1045,422,-1,1005,1046,763,-1,418,697,416,-1,414,357,356,-1,406,408,412,-1,764,754,1005,-1,402,404,518,-1,401,562,399,-1,396,398,571,-1,385,390,392,-1,388,386,385,-1,385,387,739,-1,768,409,1001,-1,1047,379,381,-1,373,375,782,-1,1020,555,556,-1,500,783,502,-1,370,701,371,-1,997,367,369,-1,1047,509,1048,-1,365,490,366,-1,716,469,474,-1,1049,351,790,-1,475,347,346,-1,327,326,14,-1,330,714,343,-1,801,340,342,-1,478,477,802,-1,338,1050,339,-1,336,479,334,-1,333,714,330,-1,329,332,330,-1,327,796,328,-1,497,324,1051,-1,187,465,384,-1,322,649,320,-1,805,317,304,-1,316,314,313,-1,1052,1053,313,-1,308,310,811,-1,992,805,813,-1,813,812,992,-1,305,814,306,-1,303,301,306,-1,805,304,813,-1,299,300,297,-1,1052,294,296,-1,293,816,291,-1,286,287,1054,-1,280,283,284,-1,823,281,285,-1,268,280,282,-1,279,822,277,-1,275,276,1055,-1,272,271,273,-1,250,268,270,-1,265,267,1056,-1,906,147,140,-1,260,972,146,-1,255,257,258,-1,1057,1058,1059,-1,111,254,272,-1,253,832,251,-1,926,110,253,-1,132,121,128,-1,246,248,80,-1,841,190,842,-1,280,268,249,-1,104,97,51,-1,243,98,241,-1,52,101,237,-1,100,102,240,-1,238,53,52,-1,228,231,233,-1,220,219,229,-1,222,1060,228,-1,222,224,230,-1,221,55,219,-1,1061,233,232,-1,232,968,1061,-1,218,849,215,-1,212,848,213,-1,859,210,211,-1,854,211,209,-1,95,213,209,-1,78,96,1062,-1,81,1063,863,-1,206,208,93,-1,85,93,1064,-1,203,861,204,-1,89,202,921,-1,1065,64,878,-1,198,1065,199,-1,865,864,199,-1,845,844,868,-1,196,33,197,-1,195,191,193,-1,977,869,23,-1,194,42,940,-1,189,871,153,-1,188,842,152,-1,186,870,872,-1,12,18,172,-1,184,15,323,-1,1066,181,183,-1,961,178,180,-1,22,177,977,-1,176,977,177,-1,174,173,976,-1,175,879,173,-1,168,170,941,-1,165,956,166,-1,34,893,162,-1,159,27,161,-1,30,894,28,-1,289,139,290,-1,154,897,155,-1,151,154,152,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getl3_Geo_5_157_coordIndex_5()
		{
			int[] value = {148,150,155,-1,257,264,1067,-1,145,256,146,-1,124,1068,144,-1,140,133,906,-1,134,136,971,-1,132,128,130,-1,61,60,126,-1,125,910,121,-1,121,911,122,-1,120,1069,119,-1,1070,1071,116,-1,116,118,1072,-1,117,1073,118,-1,1074,1075,1076,-1,114,914,112,-1,109,111,969,-1,109,1077,110,-1,108,847,106,-1,1078,103,105,-1,100,1079,101,-1,97,241,98,-1,78,923,95,-1,92,1064,93,-1,91,32,31,-1,982,866,84,-1,921,963,89,-1,981,204,1080,-1,1081,1062,1082,-1,84,866,32,-1,80,82,246,-1,77,923,78,-1,70,58,68,-1,120,62,928,-1,67,68,65,-1,63,60,62,-1,57,59,64,-1,58,962,59,-1,178,1083,1084,-1,178,961,88,-1,1085,1086,48,-1,46,931,47,-1,44,196,42,-1,37,929,38,-1,39,24,37,-1,34,1087,35,-1,32,920,33,-1,957,23,869,-1,23,957,24,-1,20,24,21,-1,17,171,18,-1,16,953,14,-1,11,13,885,-1,943,1088,883,-1,1,0,7,-1,1089,1090,181,-1,947,3,5,-1,888,168,941,-1,942,891,184,-1,16,184,891,-1,954,942,184,-1,954,19,942,-1,884,16,891,-1,884,953,16,-1,941,9,888,-1,883,9,941,-1,2,950,951,-1,2,948,950,-1,946,1091,1066,-1,945,1091,946,-1,18,942,19,-1,18,11,942,-1,881,22,21,-1,22,881,177,-1,895,26,896,-1,895,894,26,-1,935,196,44,-1,935,867,196,-1,844,105,933,-1,844,843,105,-1,45,50,1092,-1,50,45,1093,-1,49,1094,1095,-1,48,1094,49,-1,1096,1095,1097,-1,1095,1096,1092,-1,773,1090,1098,-1,1090,773,1000,-1,1083,69,1098,-1,1083,70,69,-1,975,119,1099,-1,975,1100,119,-1,1101,1098,69,-1,1098,1101,773,-1,127,909,61,-1,909,127,245,-1,838,1081,1082,-1,838,247,1081,-1,85,918,86,-1,85,1064,918,-1,861,1080,204,-1,1080,861,1102,-1,963,175,90,-1,963,879,175,-1,976,1103,878,-1,976,880,1103,-1,200,207,965,-1,200,1104,207,-1,235,846,108,-1,235,234,846,-1,986,1105,216,-1,986,984,1105,-1,105,1106,1078,-1,1107,1106,105,-1,1108,236,916,-1,1108,849,236,-1,1109,114,115,-1,1110,114,1109,-1,1077,117,1074,-1,117,1077,1073,-1,1070,915,914,-1,1111,915,1070,-1,1074,110,1077,-1,1074,1076,110,-1,1110,1071,1070,-1,1110,1109,1071,-1,1072,1070,116,-1,1072,1111,1070,-1,296,1112,1113,-1,295,1112,296,-1,815,139,138,-1,815,290,139,-1,820,812,1054,-1,812,820,992,-1,905,263,262,-1,826,263,905,-1,265,1114,1115,-1,265,1116,1114,-1,1117,1118,1119,-1,1117,1120,1118,-1,129,1076,130,-1,1076,129,110,-1,1121,1122,1123,-1,1124,1122,1121,-1,974,1121,148,-1,974,1125,1121,-1,1100,900,1126,-1,1100,975,900,-1,898,125,899,-1,125,898,910,-1,151,1127,1128,-1,151,902,1127,-1,909,123,928,-1,909,908,123,-1,19,157,17,-1,19,954,157,-1,1068,1129,1130,-1,1131,1129,1068,-1,952,169,168,-1,952,1132,169,-1,882,948,2,-1,1133,948,882,-1,1134,946,1135,-1,4,946,1134,-1,10,882,1,-1,10,1136,882,-1,1137,889,951,-1,1137,890,889,-1,959,33,920,-1,197,33,959,-1,957,37,24,-1,957,958,37,-1,979,90,962,-1,979,88,90,-1,883,10,9,-1,1088,10,883,-1,1138,945,1139,-1,1138,1091,945,-1,1140,1141,1142,-1,1141,1140,1138,-1,1143,1144,1145,-1,1143,1142,1144,-1,35,40,876,-1,35,1087,40,-1,938,872,189,-1,872,938,937,-1,977,191,869,-1,977,176,191,-1,933,31,934,-1,933,1097,31,-1,1097,933,1096,-1,1103,865,199,-1,1103,922,865,-1,982,1080,1146,-1,1080,982,981,-1,205,83,91,-1,204,83,205,-1,919,862,863,-1,919,965,862,-1,862,87,82,-1,862,206,87,-1,247,86,1081,-1,247,246,86,-1,72,1082,211,-1,72,838,1082,-1,856,1147,858,-1,983,1147,856,-1,833,853,1148,-1,833,1149,853,-1,205,56,212,-1,205,91,56,-1,916,1150,1108,-1,240,1150,916,-1,51,99,52,-1,99,51,97,-1,840,1107,841,-1,840,1106,1107,-1,103,249,242,-1,1078,249,103,-1,210,834,837,-1,858,834,210,-1,967,834,836,-1,834,254,926,-1,967,254,834,-1,270,1151,831,-1,270,824,1151,-1,1152,1153,1154,-1,1152,1155,1153,-1,1156,1157,1158,-1,1156,1159,1157,-1,1160,1161,1162,-1,1160,1163,1161,-1,1153,1164,1154,-1,1165,1164,1153,-1,1166,1167,1163,-1,1168,1167,1166,-1,1169,1166,1170,-1,1169,1171,1166,-1,1155,1172,1153,-1,1173,1172,1155,-1,1116,1174,1114,-1,1116,1057,1174,-1,1120,1155,1118,-1,1120,1173,1155,-1,829,276,1115,-1,829,828,276,-1,905,274,273,-1,905,904,274,-1,1175,1176,1177,-1,1178,1176,1175,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getl3_Geo_5_157_coordIndex_6()
		{
			int[] value = {279,1175,822,-1,279,1179,1175,-1,1180,275,1055,-1,1180,1181,275,-1,1182,1183,1184,-1,1182,1185,1183,-1,1186,1183,1187,-1,1186,1188,1183,-1,1189,1190,1191,-1,1189,1192,1190,-1,293,1193,816,-1,1193,293,1194,-1,285,817,823,-1,285,818,817,-1,188,150,283,-1,155,150,188,-1,818,1195,137,-1,284,1195,818,-1,1112,1196,1113,-1,1112,1197,1196,-1,1198,1199,1200,-1,1198,1053,1199,-1,1200,809,1198,-1,134,809,1200,-1,810,297,303,-1,297,810,298,-1,1201,314,807,-1,1202,314,1201,-1,1202,1203,1204,-1,1202,1205,1203,-1,319,994,803,-1,319,1206,994,-1,324,465,325,-1,324,497,465,-1,799,1207,708,-1,799,800,1207,-1,1049,504,351,-1,698,504,1049,-1,352,788,787,-1,352,716,788,-1,1208,788,473,-1,1208,786,788,-1,502,1020,500,-1,502,555,1020,-1,556,1209,1020,-1,556,748,1209,-1,1009,1210,775,-1,1009,748,1210,-1,777,1211,373,-1,776,1211,777,-1,1211,1212,1213,-1,1214,1212,1211,-1,1215,775,1210,-1,1215,780,775,-1,489,406,413,-1,1216,406,489,-1,1217,737,740,-1,1217,1218,737,-1,740,766,1217,-1,767,766,740,-1,413,408,410,-1,412,408,413,-1,1219,1021,663,-1,1220,1021,1219,-1,520,561,560,-1,520,519,561,-1,693,1005,754,-1,1005,693,1046,-1,757,759,755,-1,757,760,759,-1,518,697,402,-1,416,697,518,-1,1009,666,749,-1,753,666,1009,-1,671,1221,425,-1,671,752,1221,-1,1045,674,422,-1,1045,1222,674,-1,1223,534,538,-1,1223,685,534,-1,1223,526,545,-1,1223,527,526,-1,1011,744,1224,-1,743,744,1011,-1,1225,432,1010,-1,1225,428,432,-1,390,735,440,-1,390,738,735,-1,739,738,390,-1,1226,1227,1228,-1,1226,1229,1227,-1,1230,597,636,-1,1012,597,1230,-1,1231,606,632,-1,1231,730,606,-1,612,594,610,-1,612,595,594,-1,728,659,729,-1,728,1232,659,-1,649,581,582,-1,649,1233,581,-1,646,1234,1235,-1,648,1234,646,-1,1236,437,445,-1,438,437,1236,-1,1237,448,1024,-1,449,448,1237,-1,436,651,1024,-1,436,652,651,-1,457,1238,1239,-1,457,722,1238,-1,460,1240,1241,-1,460,721,1240,-1,463,185,383,-1,185,463,462,-1,733,1240,467,-1,733,736,1240,-1,399,561,404,-1,562,561,399,-1,724,1130,725,-1,1242,1130,724,-1,1015,486,717,-1,1015,794,486,-1,1243,1050,1244,-1,1243,339,1050,-1,342,1245,1244,-1,342,341,1245,-1,484,360,359,-1,484,1041,360,-1,379,494,380,-1,494,379,784,-1,704,791,703,-1,792,791,704,-1,1246,709,493,-1,770,709,1246,-1,797,1247,1248,-1,797,715,1247,-1,708,1135,183,-1,708,340,1135,-1,800,1249,1207,-1,800,1250,1249,-1,1251,798,1252,-1,1251,795,798,-1,787,353,352,-1,787,367,353,-1,1051,369,497,-1,1051,1014,369,-1,699,491,700,-1,491,699,472,-1,696,402,697,-1,388,402,696,-1,388,405,402,-1,511,515,758,-1,511,510,515,-1,1018,694,516,-1,1018,1007,694,-1,688,686,532,-1,688,761,686,-1,689,761,688,-1,545,685,1223,-1,1019,685,545,-1,1039,1253,535,-1,1254,1253,1039,-1,673,1222,1255,-1,673,674,1222,-1,1037,1256,542,-1,1037,683,1256,-1,1256,677,547,-1,544,677,1256,-1,425,669,671,-1,425,427,669,-1,553,1257,554,-1,1257,553,548,-1,565,751,670,-1,565,667,751,-1,559,750,568,-1,750,559,1258,-1,1220,1002,687,-1,1220,1219,1002,-1,660,1259,1260,-1,1259,660,659,-1,655,1261,657,-1,654,1261,655,-1,651,653,656,-1,651,650,653,-1,1232,1259,659,-1,1232,1262,1259,-1,1263,1264,1265,-1,577,1264,1263,-1,1044,1023,652,-1,1044,1266,1023,-1,1044,1267,1266,-1,1169,1268,1263,-1,1169,1269,1268,-1,1270,436,438,-1,1270,1044,436,-1,1270,1267,1044,-1,649,1022,1233,-1,649,322,1022,-1,661,1235,1234,-1,661,660,1235,-1,1271,1272,1273,-1,1271,1117,1272,-1,1274,648,1025,-1,648,1274,1275,-1,1276,583,1035,-1,583,1276,586,-1,1277,1035,1036,-1,1276,1035,1277,-1,1278,1279,1280,-1,1278,641,1279,-1,1280,1281,1278,-1,1280,1282,1281,-1,1283,1284,647,-1,1283,1285,1284,-1,1286,1287,1285,-1,1288,1287,1286,-1,1289,1290,1288,-1,1289,1190,1290,-1,1281,644,637,-1,1026,644,1281,-1,587,589,640,-1,1291,589,587,-1,722,1043,1033,-1,722,638,1043,-1,1292,593,1231,-1,1292,639,593,-1,720,730,592,-1,720,719,730,-1,637,1293,1029,-1,637,644,1293,-1,1294,1229,1295,-1,1294,1296,1229,-1,600,1297,731,-1,634,1297,600,-1,633,604,608,-1,604,633,605,-1,1298,628,630,-1,1298,1030,628,-1,626,619,1299,-1,626,1032,619,-1,1296,1203,1300,-1,1296,1294,1203,-1,1206,611,1031,-1,1206,309,611,-1,1299,627,626,-1,1299,1301,627,-1,1300,1298,1296,-1,1030,1298,1300,-1,1032,625,621,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getl3_Geo_5_157_coordIndex_7()
		{
			int[] value = {625,1032,626,-1,620,619,1032,-1,617,619,620,-1,613,620,614,-1,620,613,616,-1,601,1230,1302,-1,1230,601,1012,-1,1303,1302,1230,-1,1303,629,1302,-1,1304,1305,1192,-1,1305,1304,1226,-1,1027,597,732,-1,1027,598,597,-1,1227,1296,1298,-1,1229,1296,1227,-1,639,1306,1043,-1,1306,639,1292,-1,1033,1238,722,-1,596,1238,1033,-1,588,591,589,-1,588,592,591,-1,590,1291,1307,-1,590,589,1291,-1,1190,1305,1290,-1,1190,1192,1305,-1,1285,1273,1286,-1,1285,1283,1273,-1,1285,1308,1284,-1,1285,1287,1308,-1,1282,1026,1281,-1,1026,1282,1308,-1,1309,1280,1279,-1,1280,1309,1310,-1,1036,1309,1277,-1,580,1309,1036,-1,1291,586,1276,-1,1291,587,586,-1,645,451,583,-1,645,452,451,-1,1274,579,1275,-1,1274,580,579,-1,1311,1120,1312,-1,1311,1173,1120,-1,1313,1234,1314,-1,1313,661,1234,-1,1172,1311,1315,-1,1311,1172,1173,-1,1265,1169,1263,-1,1265,1171,1169,-1,1316,1265,1264,-1,1265,1316,1317,-1,1262,1315,1259,-1,1315,1262,1318,-1,1261,577,576,-1,1261,1264,577,-1,576,727,658,-1,576,728,727,-1,571,394,572,-1,1004,394,571,-1,397,419,421,-1,662,397,396,-1,397,662,419,-1,397,530,398,-1,530,397,531,-1,568,749,573,-1,749,568,750,-1,1209,559,1020,-1,1209,1258,559,-1,668,775,672,-1,753,775,668,-1,1319,427,1320,-1,427,1319,669,-1,547,542,1256,-1,547,378,542,-1,544,683,1019,-1,1256,683,544,-1,1038,531,543,-1,1038,529,531,-1,1045,675,528,-1,424,675,1045,-1,535,566,1321,-1,535,1253,566,-1,1322,523,525,-1,523,1322,764,-1,755,681,756,-1,681,755,759,-1,758,514,511,-1,760,514,758,-1,508,1210,506,-1,1212,1210,508,-1,1215,1210,1212,-1,496,361,372,-1,362,361,496,-1,367,495,368,-1,367,787,495,-1,1252,1246,1251,-1,1252,1323,1246,-1,1324,1250,1323,-1,1249,1250,1324,-1,341,1249,1245,-1,341,1207,1249,-1,715,796,482,-1,796,715,797,-1,409,1040,1001,-1,409,381,1040,-1,785,790,358,-1,785,1049,790,-1,789,1048,414,-1,1048,789,698,-1,479,1137,334,-1,479,890,1137,-1,1325,1244,1245,-1,1325,1243,1244,-1,1244,802,342,-1,1050,802,1244,-1,1326,334,1137,-1,337,334,1326,-1,472,1208,473,-1,1208,472,699,-1,361,370,372,-1,370,361,363,-1,1327,1328,1329,-1,1330,1328,1327,-1,721,467,1240,-1,721,1013,467,-1,1329,1242,724,-1,1329,1328,1242,-1,738,1241,735,-1,738,1331,1241,-1,498,1332,382,-1,498,461,1332,-1,1241,736,735,-1,1241,1240,736,-1,442,454,443,-1,455,454,442,-1,1312,1117,1271,-1,1312,1120,1117,-1,1314,648,1275,-1,1314,1234,648,-1,649,451,450,-1,451,649,582,-1,631,594,1306,-1,610,594,631,-1,719,1297,606,-1,719,718,1297,-1,1228,1333,1293,-1,1333,1228,1227,-1,446,444,443,-1,444,446,445,-1,1334,1010,1011,-1,1334,1225,1010,-1,428,1334,429,-1,1334,428,1225,-1,743,745,744,-1,742,745,743,-1,746,1335,434,-1,1335,746,1336,-1,673,1320,427,-1,673,1255,1320,-1,1254,1337,564,-1,1254,1338,1337,-1,685,1039,534,-1,685,684,1039,-1,528,1222,1045,-1,528,678,1222,-1,551,425,1221,-1,551,426,425,-1,1046,694,1008,-1,1046,693,694,-1,762,1220,761,-1,762,1021,1220,-1,391,399,392,-1,400,399,391,-1,1004,1002,1003,-1,563,1002,1004,-1,1332,383,382,-1,1332,463,383,-1,377,756,540,-1,377,1213,756,-1,377,374,1213,-1,1214,1215,1212,-1,1339,1215,1214,-1,1211,999,1214,-1,999,1211,776,-1,779,781,1339,-1,998,781,779,-1,748,1016,1210,-1,748,556,1016,-1,370,786,1208,-1,370,363,786,-1,509,414,1048,-1,415,414,509,-1,470,364,366,-1,470,468,364,-1,716,354,469,-1,352,354,716,-1,338,802,1050,-1,338,478,802,-1,336,333,479,-1,333,336,714,-1,310,1206,319,-1,310,309,1206,-1,1203,1340,1204,-1,1203,1294,1340,-1,807,804,1201,-1,807,993,804,-1,313,294,1052,-1,313,315,294,-1,814,303,306,-1,304,303,814,-1,1053,296,1199,-1,296,1053,1052,-1,1341,1197,1112,-1,1341,1189,1197,-1,136,289,288,-1,277,289,136,-1,277,817,289,-1,820,287,821,-1,1054,287,820,-1,1123,1342,819,-1,1123,1122,1342,-1,816,279,278,-1,279,816,1193,-1,1191,1197,1189,-1,1343,1197,1191,-1,1344,1186,1187,-1,1344,1272,1186,-1,1182,1343,1185,-1,1345,1343,1182,-1,275,1182,1184,-1,275,1181,1182,-1,1346,276,828,-1,1055,276,1346,-1,1178,1179,1346,-1,1179,1178,1175,-1,266,1184,267,-1,266,275,1184,-1,274,830,112,-1,274,904,830,-1,1056,1188,1347,-1,1056,267,1188,-1,1152,1118,1155,-1,1348,1118,1152,-1,1114,1349,1350,-1,1114,1174,1349,-1,264,907,262,-1,264,145,907,-1,1153,1351,1165,-1,1153,1172,1351,-1,1171,1168,1166,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getl3_Geo_5_157_coordIndex_8()
		{
			int[] value = {1171,1352,1168,-1,1168,261,1167,-1,260,261,1168,-1,1353,1165,1354,-1,1353,1164,1165,-1,142,1160,1162,-1,142,1353,1160,-1,255,146,256,-1,255,261,146,-1,1161,258,1159,-1,258,1161,259,-1,1154,1058,1152,-1,1059,1058,1154,-1,1148,240,239,-1,1148,1150,240,-1,106,1355,1356,-1,1355,106,231,-1,1060,230,229,-1,230,1060,222,-1,230,856,220,-1,230,224,856,-1,221,56,55,-1,221,987,56,-1,1149,985,853,-1,985,1149,1357,-1,1061,225,233,-1,1061,1105,225,-1,85,206,93,-1,85,87,206,-1,965,206,862,-1,965,207,206,-1,1102,1146,1080,-1,1102,208,1146,-1,1104,208,207,-1,1104,1146,208,-1,1065,1103,199,-1,878,1103,1065,-1,199,1104,200,-1,864,1104,199,-1,25,1087,939,-1,25,40,1087,-1,943,1145,1144,-1,943,13,1145,-1,1138,1089,1091,-1,1138,1140,1089,-1,1135,1066,183,-1,1135,946,1066,-1,1136,1088,1358,-1,1136,10,1088,-1,178,1143,179,-1,1143,178,1084,-1,37,197,959,-1,958,197,37,-1,1139,3,1359,-1,1139,945,3,-1,949,1133,1359,-1,949,948,1133,-1,171,158,159,-1,171,17,158,-1,1130,144,1068,-1,144,1130,1242,-1,988,127,126,-1,127,988,839,-1,1360,910,898,-1,1360,911,910,-1,185,901,873,-1,462,901,185,-1,1360,151,1128,-1,1360,154,151,-1,1123,148,1121,-1,1123,149,148,-1,146,913,147,-1,146,972,913,-1,906,145,147,-1,145,906,907,-1,140,1131,131,-1,1131,140,912,-1,1116,1056,1361,-1,1056,1116,265,-1,827,263,826,-1,827,1362,263,-1,1059,142,141,-1,1059,1363,142,-1,820,811,992,-1,820,991,811,-1,138,1195,307,-1,138,137,1195,-1,135,1200,291,-1,1200,135,134,-1,295,1341,1112,-1,295,1364,1341,-1,1100,773,1101,-1,1100,1126,773,-1,1076,970,113,-1,970,1076,1075,-1,1110,914,114,-1,1070,914,1110,-1,109,1073,1077,-1,1073,109,118,-1,970,1109,115,-1,1109,970,1071,-1,215,1108,850,-1,215,849,1108,-1,1357,857,985,-1,1357,983,857,-1,1061,216,1105,-1,216,1061,217,-1,966,835,1357,-1,835,966,836,-1,98,101,99,-1,102,101,98,-1,174,878,59,-1,174,976,878,-1,90,174,59,-1,90,175,174,-1,921,866,865,-1,921,202,866,-1,860,1102,861,-1,860,94,1102,-1,82,86,246,-1,82,87,86,-1,79,1062,1081,-1,79,78,1062,-1,989,76,75,-1,71,76,989,-1,251,76,252,-1,251,74,76,-1,69,67,1101,-1,67,69,68,-1,119,1101,67,-1,119,1100,1101,-1,922,880,879,-1,880,922,1103,-1,219,931,53,-1,55,931,219,-1,55,54,931,-1,46,1092,1096,-1,1092,46,45,-1,1092,49,1095,-1,49,1092,50,-1,1085,45,47,-1,1093,45,1085,-1,105,841,1107,-1,843,841,105,-1,843,980,841,-1,34,1365,893,-1,34,36,1365,-1,34,939,1087,-1,34,163,939,-1,42,958,940,-1,958,42,197,-1,1089,1098,1090,-1,1089,1083,1098,-1,1157,264,263,-1,1157,1067,264,-1,1091,181,1066,-1,1091,1089,181,-1,957,195,940,-1,957,869,195,-1,937,36,35,-1,36,937,936,-1,29,881,160,-1,177,881,29,-1,929,959,930,-1,959,929,37,-1,193,189,43,-1,189,193,1366,-1,841,935,190,-1,841,980,935,-1,933,104,51,-1,933,105,104,-1,1094,1086,932,-1,1086,1094,48,-1,1097,1094,1367,-1,1094,1097,1095,-1,51,1096,933,-1,51,46,1096,-1,1097,91,31,-1,1097,1367,91,-1,979,1083,178,-1,979,70,1083,-1,901,1099,1368,-1,901,975,1099,-1,68,57,65,-1,58,57,68,-1,247,989,248,-1,989,247,838,-1,988,81,80,-1,988,1063,81,-1,77,1064,92,-1,918,1064,77,-1,204,84,83,-1,204,981,84,-1,198,925,924,-1,925,198,919,-1,241,104,103,-1,104,241,97,-1,107,100,917,-1,107,1079,100,-1,234,968,846,-1,234,218,968,-1,852,984,986,-1,852,855,984,-1,225,984,226,-1,225,1105,984,-1,1074,116,1075,-1,116,1074,117,-1,969,1111,1072,-1,969,915,1111,-1,122,928,123,-1,1069,928,122,-1,928,1069,120,-1,130,113,133,-1,130,1076,113,-1,296,292,1199,-1,296,1113,292,-1,971,290,815,-1,971,288,290,-1,1054,305,286,-1,305,1054,812,-1,1270,1131,912,-1,1270,1129,1131,-1,1115,1350,829,-1,1115,1114,1350,-1,1119,1348,1347,-1,1119,1118,1348,-1,143,1174,141,-1,1349,1174,143,-1,257,145,264,-1,257,256,145,-1,1330,1121,1125,-1,1121,1330,1124,-1,1127,119,1069,-1,1127,1099,119,-1,899,144,1369,-1,144,899,125,-1,1099,902,1368,-1,1099,1127,902,-1,974,1369,1125,-1,974,899,1369,-1,192,1366,193,-1,192,1365,1366,-1,159,881,171,-1,160,881,159,-1,950,165,1326,-1,165,950,956,-1,4,476,5,-1,4,1134,476,-1,1133,1136,1370,-1,1136,1133,882,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getl3_Geo_5_157_coordIndex_9()
		{
			int[] value = {886,7,944,-1,8,7,886,-1,39,172,21,-1,39,978,172,-1,180,929,961,-1,38,929,180,-1,13,877,1145,-1,13,12,877,-1,1139,1141,1138,-1,1139,1370,1141,-1,181,1000,182,-1,181,1090,1000,-1,1358,1142,1141,-1,1358,1144,1142,-1,1142,1084,1140,-1,1084,1142,1143,-1,41,17,157,-1,158,17,41,-1,33,934,31,-1,33,196,934,-1,924,1065,198,-1,924,64,1065,-1,924,63,64,-1,94,208,1102,-1,94,93,208,-1,925,863,1063,-1,863,925,919,-1,918,1081,86,-1,918,79,1081,-1,211,96,209,-1,1082,96,211,-1,96,1082,1062,-1,851,1108,1150,-1,1108,851,850,-1,221,856,858,-1,221,220,856,-1,228,225,227,-1,228,233,225,-1,1060,231,228,-1,1355,231,1060,-1,1356,101,1079,-1,1356,237,101,-1,240,917,100,-1,240,916,917,-1,1355,237,1356,-1,238,237,1355,-1,102,243,239,-1,102,98,243,-1,1078,840,249,-1,1106,840,1078,-1,1151,1357,1149,-1,966,1357,1151,-1,967,824,254,-1,967,1151,824,-1,1151,967,966,-1,1057,141,1174,-1,141,1057,1059,-1,1156,1349,143,-1,1156,1158,1349,-1,257,1159,258,-1,1159,1067,1157,-1,257,1067,1159,-1,1163,259,1161,-1,1163,1167,259,-1,1154,1363,1059,-1,1154,1164,1363,-1,1163,1170,1166,-1,1170,1163,1160,-1,260,973,972,-1,1266,973,260,-1,1266,1267,973,-1,1354,1169,1170,-1,1354,1269,1169,-1,913,1270,912,-1,973,1270,913,-1,973,1267,1270,-1,1158,263,1362,-1,1158,1157,263,-1,1361,1057,1116,-1,1361,1058,1057,-1,1272,1119,1186,-1,1272,1117,1119,-1,265,276,266,-1,1115,276,265,-1,273,1176,825,-1,271,1176,273,-1,825,1178,990,-1,1178,825,1176,-1,1179,1193,1180,-1,1179,279,1193,-1,1194,1180,1193,-1,1194,1181,1180,-1,1184,1188,267,-1,1184,1183,1188,-1,1185,1187,1183,-1,1187,1185,1371,-1,1191,1289,1371,-1,1191,1190,1289,-1,1196,1194,293,-1,1194,1196,1345,-1,823,282,281,-1,282,823,1177,-1,287,149,821,-1,287,150,149,-1,284,286,1195,-1,284,283,286,-1,137,289,818,-1,137,139,289,-1,1113,293,292,-1,1113,1196,293,-1,1364,1294,1295,-1,1364,1340,1294,-1,815,299,971,-1,299,815,300,-1,808,1198,809,-1,1198,808,311,-1,303,806,810,-1,806,303,302,-1,311,1053,1198,-1,313,1053,311,-1,803,317,319,-1,803,318,317,-1,314,1204,315,-1,1204,314,1202,-1,1301,1202,1201,-1,1301,1205,1202,-1,346,1051,324,-1,346,793,1051,-1,707,328,475,-1,707,326,328,-1,482,327,331,-1,327,482,796,-1,337,335,334,-1,337,339,335,-1,1207,340,708,-1,340,1207,341,-1,346,713,793,-1,346,348,713,-1,792,485,359,-1,710,485,792,-1,468,469,354,-1,468,470,469,-1,507,502,783,-1,507,503,502,-1,505,507,506,-1,505,503,507,-1,782,777,373,-1,777,782,778,-1,373,1213,374,-1,1211,1213,373,-1,737,464,1372,-1,737,1218,464,-1,772,1217,766,-1,773,1217,772,-1,663,401,1219,-1,562,401,663,-1,519,404,561,-1,518,404,519,-1,1322,754,764,-1,1322,517,754,-1,711,410,409,-1,711,413,410,-1,509,381,411,-1,509,1047,381,-1,1216,488,1017,-1,1216,489,488,-1,692,418,417,-1,692,512,418,-1,422,426,551,-1,422,674,426,-1,527,538,679,-1,527,1223,538,-1,1258,748,750,-1,748,1258,1209,-1,423,1221,549,-1,423,551,1221,-1,537,679,538,-1,537,680,679,-1,1224,1373,1011,-1,1224,435,1373,-1,432,741,1010,-1,432,747,741,-1,1224,455,442,-1,455,1224,744,-1,1011,1336,1334,-1,1011,1335,1336,-1,1011,1373,1335,-1,454,439,441,-1,439,454,453,-1,1295,1226,1304,-1,1229,1226,1295,-1,1230,1029,1303,-1,1230,636,1029,-1,632,1292,1231,-1,609,1292,632,-1,1374,612,308,-1,1374,595,612,-1,445,725,1236,-1,445,726,725,-1,1233,579,581,-1,1233,1375,579,-1,1235,1376,646,-1,1235,1377,1376,-1,450,433,449,-1,450,575,433,-1,393,572,394,-1,665,572,393,-1,665,453,572,-1,1024,656,1237,-1,1024,651,656,-1,1122,1239,1238,-1,1239,1122,1124,-1,1239,458,457,-1,1239,1327,458,-1,900,1218,1126,-1,900,464,1218,-1,734,467,466,-1,733,467,734,-1,1331,460,1241,-1,1331,461,460,-1,440,391,390,-1,440,439,391,-1,1014,793,794,-1,1014,1051,793,-1,1129,725,1130,-1,725,1129,1236,-1,169,332,329,-1,169,1132,332,-1,339,1042,335,-1,1042,339,1243,-1,340,1134,1135,-1,1134,340,801,-1,1042,715,995,-1,1042,1247,715,-1,333,1132,480,-1,333,332,1132,-1,706,1041,484,-1,706,492,1041,-1,1041,784,360,-1,494,784,1041,-1,1251,493,492,-1,1246,493,1251,-1,1325,1248,1247,-1,1248,1325,1324,-1,765,1001,1040,-1,765,769,1001,-1,1252,797,1248,-1,1252,798,797,-1,1250,771,770,-1,1250,800,771,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getl3_Geo_5_157_coordIndex_10()
		{
			int[] value = {1015,353,997,-1,996,353,1015,-1,407,1216,695,-1,407,406,1216,-1,511,513,512,-1,514,513,511,-1,759,682,681,-1,759,1006,682,-1,522,416,691,-1,522,417,416,-1,1007,522,521,-1,1007,1018,522,-1,1008,1021,762,-1,1008,664,1021,-1,761,687,686,-1,761,1220,687,-1,1337,1037,531,-1,1037,1337,1338,-1,529,539,533,-1,529,1038,539,-1,1321,536,535,-1,1321,1319,536,-1,678,1255,1222,-1,678,680,1255,-1,540,681,541,-1,540,756,681,-1,542,377,543,-1,542,378,377,-1,1257,547,677,-1,548,547,1257,-1,549,752,554,-1,752,549,1221,-1,565,1321,566,-1,1321,565,670,-1,393,401,665,-1,393,395,401,-1,564,531,397,-1,531,564,1337,-1,566,1378,567,-1,1253,1378,566,-1,1378,574,567,-1,1378,1034,574,-1,1315,1260,1259,-1,1315,1311,1260,-1,576,657,1261,-1,658,657,576,-1,1316,653,650,-1,653,1316,654,-1,578,1232,728,-1,578,1262,1232,-1,578,1263,1268,-1,578,577,1263,-1,1266,1317,1023,-1,1317,1266,1352,-1,1268,1351,1318,-1,1268,1269,1351,-1,1375,1022,1379,-1,1233,1022,1375,-1,660,1377,1235,-1,660,1260,1377,-1,1376,1273,1283,-1,1271,1273,1376,-1,582,1036,1035,-1,581,1036,582,-1,1276,1307,1291,-1,1307,1276,1277,-1,1307,641,590,-1,1307,1279,641,-1,1380,1280,1310,-1,1380,1282,1280,-1,1310,1025,1380,-1,1310,1274,1025,-1,1287,1290,642,-1,1290,1287,1288,-1,1289,1286,1344,-1,1286,1289,1288,-1,1278,637,599,-1,1281,637,1278,-1,596,1374,1342,-1,596,595,1374,-1,1231,592,730,-1,592,1231,593,-1,644,1228,1293,-1,644,643,1228,-1,1298,1333,1227,-1,1333,1298,630,-1,1012,600,731,-1,1012,601,600,-1,635,614,633,-1,602,614,635,-1,618,1299,619,-1,1299,618,1381,-1,1203,1381,1300,-1,1203,1205,1381,-1,994,1031,625,-1,994,1206,1031,-1,1381,1301,1299,-1,1381,1205,1301,-1,1300,618,1030,-1,1381,618,1300,-1,624,625,1031,-1,624,621,625,-1,629,615,1302,-1,615,629,628,-1,620,633,614,-1,622,633,620,-1,1302,613,601,-1,615,613,1302,-1,606,634,607,-1,1297,634,606,-1,1333,629,1303,-1,630,629,1333,-1,643,1226,1228,-1,643,1305,1226,-1,720,732,1028,-1,720,1027,732,-1,720,588,1027,-1,1043,594,1033,-1,594,1043,1306,-1,1342,1238,596,-1,1342,1122,1238,-1,641,599,598,-1,1278,599,641,-1,643,1290,1305,-1,1290,643,642,-1,1273,1344,1286,-1,1273,1272,1344,-1,642,1308,1287,-1,1308,642,1026,-1,1308,1380,1284,-1,1308,1282,1380,-1,1274,1309,580,-1,1309,1274,1310,-1,1279,1277,1309,-1,1307,1277,1279,-1,1284,1025,647,-1,1284,1380,1025,-1,575,645,430,-1,575,452,645,-1,1283,646,1376,-1,1283,647,646,-1,1312,1260,1311,-1,1260,1312,1377,-1,1379,1314,1375,-1,1379,1313,1314,-1,449,320,450,-1,449,1237,320,-1,1351,1315,1318,-1,1351,1172,1315,-1,1317,1171,1265,-1,1317,1352,1171,-1,650,1317,1316,-1,1317,650,1023,-1,1318,578,1268,-1,1318,1262,578,-1,654,1264,1261,-1,654,1316,1264,-1,657,723,655,-1,321,657,322,-1,657,321,723,-1,1379,658,727,-1,1379,1022,658,-1,729,661,1313,-1,659,661,729,-1,1034,419,662,-1,1378,419,1034,-1,420,419,1378,-1,1254,1378,1253,-1,1378,1254,420,-1,669,1321,670,-1,669,1319,1321,-1,1257,549,554,-1,550,549,1257,-1,550,677,676,-1,677,550,1257,-1,526,676,546,-1,526,675,676,-1,540,543,377,-1,540,1038,543,-1,1320,536,1319,-1,537,536,1320,-1,683,1338,684,-1,1037,1338,683,-1,525,1006,1322,-1,1006,525,682,-1,762,1046,1008,-1,762,763,1046,-1,1018,417,522,-1,1018,692,417,-1,1216,696,695,-1,696,1216,1017,-1,512,695,418,-1,695,512,513,-1,794,997,1014,-1,997,794,1015,-1,770,1323,1250,-1,1246,1323,770,-1,1323,1248,1324,-1,1323,1252,1248,-1,1000,799,182,-1,1000,774,799,-1,1324,1245,1249,-1,1324,1325,1245,-1,492,795,1251,-1,492,706,795,-1,698,785,1048,-1,785,698,1049,-1,344,483,345,-1,483,344,481,-1,1247,1243,1325,-1,1042,1243,1247,-1,476,801,477,-1,476,1134,801,-1,165,337,1326,-1,338,337,165,-1,485,717,486,-1,717,485,365,-1,370,699,701,-1,370,1208,699,-1,1329,458,1327,-1,1329,466,458,-1,461,1372,1332,-1,461,1331,1372,-1,724,466,1329,-1,734,466,724,-1,737,1331,738,-1,737,1372,1331,-1,1239,1330,1327,-1,1124,1330,1239,-1,1237,723,320,-1,1237,656,723,-1,1313,727,729,-1,727,1313,1379,-1,1377,1271,1376,-1,1377,1312,1271,-1,1375,1275,579,-1,1375,1314,1275,-1,1236,1270,438,-1,1236,1129,1270,-1,609,1306,1292,-1,631,1306,609,-1,718,731,1297,-1,718,1028,731,-1,1029,1333,1303,-1,1029,1293,1333,-1,773,1218,1217,-1,773,1126,1218,-1,435,442,433,-1,435,1224,442,-1,429,1336,746,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getl3_Geo_5_157_coordIndex_11()
		{
			int[] value = {1336,429,1334,-1,742,747,745,-1,741,747,742,-1,1335,435,434,-1,1373,435,1335,-1,1320,680,537,-1,1320,1255,680,-1,684,1254,1039,-1,684,1338,1254,-1,679,528,527,-1,678,528,679,-1,564,420,1254,-1,421,420,564,-1,552,667,668,-1,667,552,751,-1,1017,712,768,-1,1017,488,712,-1,712,409,768,-1,712,711,409,-1,355,408,407,-1,355,357,408,-1,515,1322,1006,-1,515,517,1322,-1,1008,521,664,-1,1008,1007,521,-1,689,763,762,-1,689,690,763,-1,1003,1219,401,-1,1219,1003,1002,-1,1003,394,1004,-1,1003,395,394,-1,389,767,386,-1,767,389,769,-1,1372,463,1332,-1,1372,464,463,-1,771,1040,709,-1,771,765,1040,-1,756,1212,508,-1,756,1213,1212,-1,375,377,376,-1,375,374,377,-1,1339,780,1215,-1,781,780,1339,-1,999,1339,1214,-1,779,1339,999,-1,781,778,782,-1,778,781,998,-1,1016,506,1210,-1,1016,505,506,-1,1048,379,1047,-1,785,379,1048,-1,485,490,365,-1,490,485,710,-1,786,362,495,-1,363,362,786,-1,350,790,351,-1,350,702,790,-1,795,796,798,-1,796,795,347,-1,772,800,774,-1,772,771,800,-1,627,1201,804,-1,627,1301,1201,-1,294,1204,1340,-1,1204,294,315,-1,803,993,318,-1,804,993,803,-1,807,806,993,-1,806,807,316,-1,806,808,810,-1,312,808,806,-1,299,134,971,-1,299,809,134,-1,1189,1304,1192,-1,1341,1304,1189,-1,135,277,136,-1,135,278,277,-1,1340,295,294,-1,295,1340,1364,-1,1374,819,1342,-1,1374,991,819,-1,1123,821,149,-1,821,1123,819,-1,1177,822,1175,-1,1177,823,822,-1,1343,1196,1197,-1,1345,1196,1343,-1,1187,1289,1344,-1,1371,1289,1187,-1,1191,1185,1343,-1,1371,1185,1191,-1,1345,1181,1194,-1,1182,1181,1345,-1,1180,1346,1179,-1,1055,1346,1180,-1,1346,990,1178,-1,990,1346,828,-1,271,1177,1176,-1,271,282,1177,-1,274,111,272,-1,112,111,274,-1,990,826,825,-1,826,990,827,-1,1186,1347,1188,-1,1347,1186,1119,-1,1348,1058,1361,-1,1348,1152,1058,-1,1158,1350,1349,-1,1350,1158,1362,-1,1351,1354,1165,-1,1351,1269,1354,-1,1168,1266,260,-1,1352,1266,1168,-1,1170,1353,1354,-1,1170,1160,1353,-1,1363,1353,142,-1,1363,1164,1353,-1,255,1167,261,-1,259,1167,255,-1,1159,1162,1161,-1,1162,1159,1156,-1,143,1162,1156,-1,143,142,1162,-1,1151,833,831,-1,833,1151,1149,-1,858,835,834,-1,1147,835,858,-1,75,964,244,-1,75,74,964,-1,1148,243,833,-1,239,243,1148,-1,1079,106,1356,-1,107,106,1079,-1,229,1355,1060,-1,1355,229,238,-1,858,987,221,-1,858,859,987,-1,851,1148,853,-1,851,1150,1148,-1,848,859,854,-1,848,987,859,-1,857,223,855,-1,223,857,224,-1,95,860,214,-1,923,860,95,-1,864,1146,1104,-1,1146,864,982,-1,25,158,41,-1,158,25,27,-1,1083,1140,1084,-1,1083,1089,1140,-1,1088,1144,1358,-1,1088,943,1144,-1,962,70,979,-1,962,58,70,-1,1358,1370,1136,-1,1141,1370,1358,-1,179,1145,877,-1,1145,179,1143,-1,38,978,39,-1,978,38,180,-1,978,12,172,-1,978,877,12,-1,1132,955,480,-1,1132,952,955,-1,1,8,10,-1,8,1,7,-1,1359,1370,1139,-1,1359,1133,1370,-1,947,1359,3,-1,1359,947,949,-1,951,1326,1137,-1,1326,951,950,-1,1365,892,893,-1,192,892,1365,-1,1366,938,189,-1,936,938,1366,-1,1328,1125,1369,-1,1125,1328,1330,-1,898,154,1360,-1,898,897,154,-1,1242,1369,144,-1,1242,1328,1369,-1,1128,1069,122,-1,1128,1127,1069,-1,1368,871,870,-1,1368,902,871,-1,911,1128,122,-1,911,1360,1128,-1,832,964,251,-1,832,244,964,-1,832,903,244,-1,113,262,907,-1,113,830,262,-1,1347,1361,1056,-1,1347,1348,1361,-1,829,1362,827,-1,829,1350,1362,-1,1068,131,1131,-1,1068,124,131,-1,811,1374,308,-1,811,991,1374,-1,286,307,1195,-1,307,286,305,-1,292,1200,1199,-1,292,291,1200,-1,1341,1295,1304,-1,1295,1341,1364,-1,908,129,128,-1,903,129,908,-1,118,969,1072,-1,118,109,969,-1,1071,1075,116,-1,1071,970,1075,-1,216,850,986,-1,216,215,850,-1,1147,1357,835,-1,1147,983,1357,-1,985,855,852,-1,985,857,855,-1,218,1061,968,-1,218,217,1061,-1,917,108,107,-1,917,235,108,-1,88,960,89,-1,88,930,960,-1,92,860,923,-1,92,94,860,-1,126,1063,988,-1,1063,126,925,-1,75,248,989,-1,248,75,839,-1,253,73,837,-1,253,252,73,-1,71,252,76,-1,252,71,73,-1,873,1368,870,-1,873,901,1368,-1,91,54,56,-1,91,1367,54,-1,931,51,53,-1,931,46,51,-1,48,1093,1085,-1,48,50,1093,-1,1367,932,54,-1,932,1367,1094,-1,1086,47,932,-1,1085,47,1086,-1,196,868,934,-1,196,867,868,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getl3_Geo_5_157_coordIndex_12()
		{
			int[] value = {190,43,189,-1,190,44,43,-1,36,1366,1365,-1,36,936,1366,-1,920,960,959,-1,960,920,201,-1,161,894,30,-1,161,26,894,-1,896,163,895,-1,163,896,939,-1,947,956,949,-1,947,166,956,-1,955,0,889,-1,167,0,955,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl3_Geo_5_157_normalIndex_1()
		{
			int[] value = {198,34,78,-1,21,280,386,-1,198,71,35,-1,20,38,40,-1,233,173,54,-1,686,738,353,-1,1210,486,1036,-1,202,561,404,-1,204,414,202,-1,1237,990,1186,-1,83,220,319,-1,648,1074,157,-1,631,1001,605,-1,236,376,656,-1,1153,1237,1265,-1,48,63,259,-1,401,478,334,-1,741,1017,784,-1,492,635,422,-1,346,272,200,-1,847,793,534,-1,1330,1192,1228,-1,1207,1228,1107,-1,1067,1258,1137,-1,1014,475,445,-1,373,226,235,-1,914,807,552,-1,597,523,348,-1,995,1222,1225,-1,1035,1231,1074,-1,1211,717,1240,-1,583,1026,886,-1,550,1035,1074,-1,1145,1319,1204,-1,484,491,523,-1,487,489,558,-1,520,746,514,-1,336,453,533,-1,892,570,377,-1,659,544,273,-1,224,388,299,-1,299,388,189,-1,141,258,828,-1,1258,1101,1137,-1,1258,1206,1101,-1,1284,1299,1300,-1,997,1010,1284,-1,1293,1093,1192,-1,1170,846,876,-1,934,1163,876,-1,876,814,934,-1,206,84,49,-1,201,277,137,-1,815,934,814,-1,857,787,880,-1,1010,997,826,-1,446,626,644,-1,864,740,576,-1,1242,1190,1064,-1,1190,1338,993,-1,1269,1265,1286,-1,1229,1186,1133,-1,896,1133,945,-1,230,481,631,-1,727,716,480,-1,71,198,296,-1,403,718,730,-1,486,1073,462,-1,1057,755,969,-1,3,247,220,-1,298,221,385,-1,209,660,658,-1,1235,353,738,-1,173,233,486,-1,664,1136,673,-1,1190,993,460,-1,300,1064,381,-1,22,107,65,-1,1,50,65,-1,185,106,48,-1,1138,1248,1279,-1,1026,923,1140,-1,547,1044,469,-1,1359,1334,1336,-1,484,214,491,-1,116,226,216,-1,547,469,183,-1,128,393,183,-1,166,152,31,-1,57,166,31,-1,340,418,257,-1,994,976,803,-1,413,836,918,-1,994,863,918,-1,418,640,770,-1,906,417,352,-1,131,262,243,-1,635,888,777,-1,514,450,420,-1,635,558,746,-1,431,264,399,-1,922,1023,807,-1,790,287,389,-1,1284,1300,1170,-1,208,168,264,-1,587,327,232,-1,310,273,544,-1,762,581,496,-1,762,813,744,-1,726,626,611,-1,231,163,324,-1,215,210,293,-1,55,47,117,-1,47,55,60,-1,18,100,136,-1,181,210,127,-1,93,109,80,-1,111,51,23,-1,111,460,341,-1,111,245,97,-1,350,341,477,-1,27,113,61,-1,160,255,225,-1,517,447,351,-1,904,833,363,-1,904,391,578,-1,915,950,877,-1,591,878,402,-1,748,736,630,-1,866,960,861,-1,823,786,861,-1,908,861,960,-1,915,720,768,-1,720,630,592,-1,1054,989,949,-1,745,143,676,-1,1050,1238,1081,-1,971,1109,1212,-1,795,773,1109,-1,1053,1302,1183,-1,1020,1009,1288,-1,1130,1380,1362,-1,1309,1346,1304,-1,1309,1304,1109,-1,535,1230,1128,-1,730,1238,686,-1,1375,1318,1344,-1,355,147,361,-1,135,308,252,-1,968,806,646,-1,608,506,650,-1,434,488,1058,-1,228,187,110,-1,1060,1305,1091,-1,1021,1008,1047,-1,955,1090,1041,-1,977,933,799,-1,289,292,246,-1,151,315,126,-1,275,538,315,-1,115,260,188,-1,372,794,466,-1,1042,1131,1224,-1,290,360,563,-1,172,52,86,-1,175,52,172,-1,156,178,222,-1,493,241,338,-1,122,186,156,-1,1049,455,252,-1,184,74,101,-1,1134,1117,1071,-1,1177,855,973,-1,979,1121,1070,-1,754,928,1158,-1,1114,557,754,-1,974,1191,1262,-1,573,529,609,-1,295,81,211,-1,360,260,295,-1,982,518,596,-1,440,217,96,-1,596,751,948,-1,1149,1249,1213,-1,526,539,840,-1,396,541,456,-1,316,138,239,-1,743,329,375,-1,174,673,676,-1,456,392,90,-1,394,361,147,-1,972,1013,1298,-1,1316,1098,1151,-1,1230,902,1081,-1,712,965,895,-1,935,773,697,-1,1351,1341,1327,-1,1109,1304,1327,-1,1327,1212,1109,-1,1212,1327,1341,-1,953,551,309,-1,321,370,223,-1,1298,1160,1376,-1,1205,1154,1005,-1,383,506,297,-1,104,246,174,-1,110,187,297,-1,297,1091,330,-1,190,316,978,-1,921,1018,992,-1,1375,1333,1305,-1,907,921,992,-1,951,1197,723,-1,455,759,338,-1,43,62,42,-1,32,39,135,-1,162,69,192,-1,184,153,158,-1,159,154,59,-1,899,1255,991,-1,967,1132,1274,-1,1315,1267,1185,-1,1255,1167,1337,-1,916,930,964,-1,1087,1082,916,-1,1326,1182,1198,-1,981,1119,1185,-1,379,513,463,-1,955,735,606,-1,855,498,470,-1,855,1177,986,-1,655,501,461,-1,956,921,575,-1,1257,983,1095,-1,387,213,499,-1,1267,1147,1224,-1,1071,1102,1131,-1,1003,1056,1122,-1,1173,1234,1321,-1,1148,749,840,-1,1113,1122,1273,-1,1174,1158,974,-1,568,791,747,-1,1329,1307,1377,-1,1335,1281,1249,-1,1374,1345,1273,-1,1324,1360,1321,-1,1233,1290,1308,-1,1246,1184,1116,-1,642,510,560,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl3_Geo_5_157_normalIndex_2()
		{
			int[] value = {1289,1272,1221,-1,1032,929,559,-1,713,483,505,-1,1097,798,512,-1,805,483,713,-1,752,649,566,-1,482,433,559,-1,482,519,432,-1,452,549,628,-1,467,616,465,-1,649,778,653,-1,761,621,682,-1,505,653,778,-1,432,549,452,-1,532,884,900,-1,566,649,736,-1,842,713,778,-1,805,985,512,-1,505,429,465,-1,798,1006,468,-1,1006,1032,559,-1,1226,1221,1157,-1,824,396,983,-1,1246,1055,983,-1,1360,1331,1257,-1,1311,1272,1308,-1,975,954,1066,-1,1244,1281,1374,-1,1234,1273,1345,-1,1244,1374,1114,-1,1048,1088,1166,-1,1054,1216,1149,-1,757,750,615,-1,604,634,567,-1,567,792,604,-1,949,545,473,-1,537,788,797,-1,1374,1072,1114,-1,1113,1234,1173,-1,211,96,217,-1,387,996,588,-1,563,360,457,-1,947,897,1003,-1,501,655,821,-1,966,920,875,-1,647,955,606,-1,1146,1121,1253,-1,1027,973,521,-1,463,419,379,-1,1347,1227,1217,-1,1198,991,1255,-1,1198,912,835,-1,503,502,603,-1,1165,1156,1267,-1,1167,1165,1337,-1,890,1167,899,-1,1078,890,865,-1,145,158,159,-1,69,43,41,-1,265,69,170,-1,222,252,455,-1,134,263,242,-1,134,32,178,-1,1197,1333,1275,-1,1375,1280,1358,-1,1375,1314,1280,-1,1291,1358,1376,-1,1164,1291,1203,-1,330,1091,978,-1,190,577,983,-1,673,246,664,-1,953,1128,1201,-1,745,1025,143,-1,658,660,1127,-1,1154,1083,933,-1,1135,1203,1376,-1,411,629,321,-1,953,309,893,-1,1238,718,971,-1,1085,1183,1309,-1,1346,1342,1351,-1,895,1009,727,-1,889,1151,1098,-1,434,249,488,-1,1298,1013,1058,-1,1323,1243,1270,-1,396,44,190,-1,316,190,138,-1,396,824,627,-1,989,1054,891,-1,556,585,384,-1,500,579,527,-1,751,596,440,-1,1243,1097,1180,-1,1278,1332,1289,-1,518,211,217,-1,86,52,188,-1,96,91,374,-1,82,28,96,-1,283,199,176,-1,244,283,126,-1,564,952,1125,-1,1139,1075,840,-1,974,1158,1084,-1,1158,928,1084,-1,715,1114,840,-1,817,1043,1115,-1,859,655,632,-1,821,947,894,-1,865,890,899,-1,192,69,237,-1,308,349,851,-1,149,135,39,-1,338,241,222,-1,493,338,799,-1,193,335,164,-1,1123,1078,1111,-1,308,135,149,-1,162,335,193,-1,588,159,387,-1,1033,865,444,-1,1147,1148,1224,-1,988,910,371,-1,115,151,176,-1,244,126,315,-1,151,52,175,-1,275,852,538,-1,852,589,538,-1,1287,1179,1083,-1,1004,988,1179,-1,672,1004,1187,-1,955,647,887,-1,636,1019,1039,-1,586,636,1039,-1,901,984,1045,-1,1333,1126,1305,-1,1091,1305,978,-1,1000,977,1150,-1,968,1000,1150,-1,775,322,742,-1,1232,308,723,-1,1291,1164,1266,-1,1176,1266,1164,-1,980,968,1176,-1,345,893,171,-1,1025,738,686,-1,1128,1230,1328,-1,1364,1373,1368,-1,1346,1309,1183,-1,1175,1187,1357,-1,1100,1362,1259,-1,1238,971,1212,-1,143,902,535,-1,902,143,1025,-1,623,682,764,-1,720,724,630,-1,913,915,768,-1,756,823,908,-1,960,866,883,-1,459,833,926,-1,769,630,724,-1,508,617,909,-1,402,878,578,-1,877,909,617,-1,833,459,363,-1,277,391,130,-1,160,169,109,-1,113,148,197,-1,820,732,638,-1,51,111,97,-1,75,92,148,-1,60,18,47,-1,125,117,47,-1,100,112,46,-1,6,73,53,-1,388,224,207,-1,234,264,168,-1,544,633,232,-1,55,168,208,-1,399,264,333,-1,253,282,311,-1,116,155,235,-1,276,226,373,-1,995,389,881,-1,286,380,804,-1,286,460,111,-1,286,804,460,-1,811,843,458,-1,431,336,264,-1,377,205,522,-1,906,522,417,-1,640,340,422,-1,976,994,918,-1,183,200,58,-1,218,131,243,-1,294,415,464,-1,464,415,451,-1,45,214,128,-1,774,976,836,-1,400,803,844,-1,194,116,67,-1,393,1029,1069,-1,393,128,484,-1,1325,1222,1214,-1,1349,1200,1245,-1,390,458,472,-1,63,48,1,-1,107,22,3,-1,94,22,50,-1,381,1064,1190,-1,1063,1062,300,-1,1269,1136,1077,-1,1089,1136,664,-1,1208,1136,1285,-1,1269,1286,1285,-1,1193,1077,1001,-1,385,221,177,-1,204,202,404,-1,3,220,83,-1,1040,1107,534,-1,1194,1161,1057,-1,832,561,462,-1,34,11,78,-1,16,328,146,-1,56,268,167,-1,56,38,20,-1,697,448,702,-1,727,480,386,-1,328,476,146,-1,66,230,288,-1,83,364,407,-1,1237,1022,990,-1,1251,1296,961,-1,676,673,1208,-1,729,1046,743,-1,1062,1143,1064,-1,993,1251,864,-1,544,858,633,-1,165,133,231,-1,651,388,427,-1,997,1284,934,-1,1086,1124,1023,-1,858,1086,922,-1,1292,1354,1284,-1,819,644,837,-1,436,602,273,-1,312,262,405,-1,417,522,205,-1,348,494,597,-1,1189,1138,1279,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl3_Geo_5_157_normalIndex_3()
		{
			int[] value = {331,1074,1140,-1,1159,1200,1223,-1,597,1145,937,-1,1330,1209,1236,-1,1023,1093,881,-1,155,253,337,-1,1194,1159,1261,-1,1192,1268,1228,-1,1067,847,1107,-1,1206,1258,1228,-1,1136,1089,1063,-1,583,406,565,-1,342,346,362,-1,843,737,412,-1,366,259,381,-1,1269,1153,1265,-1,896,945,319,-1,725,874,776,-1,656,561,414,-1,1140,1074,1245,-1,1022,1237,1030,-1,36,50,1,-1,139,730,686,-1,233,146,850,-1,146,10,16,-1,268,76,71,-1,21,2,254,-1,124,386,480,-1,99,72,358,-1,198,325,448,-1,268,296,590,-1,268,590,403,-1,328,16,302,-1,1241,1235,1285,-1,1208,1285,1235,-1,1136,1208,673,-1,1235,676,1208,-1,676,1235,745,-1,16,139,302,-1,403,167,268,-1,296,613,590,-1,198,78,325,-1,72,359,358,-1,21,254,280,-1,76,35,71,-1,71,296,268,-1,146,54,10,-1,686,302,139,-1,850,146,476,-1,119,36,68,-1,230,407,481,-1,319,220,896,-1,284,625,565,-1,1269,1193,1153,-1,412,472,843,-1,334,342,362,-1,583,490,406,-1,454,886,534,-1,1258,1067,1228,-1,1107,1228,1067,-1,1192,1124,1268,-1,1194,1141,1159,-1,914,587,1012,-1,232,155,337,-1,1023,881,807,-1,1236,1293,1330,-1,1209,1330,1207,-1,1261,1159,1223,-1,1026,1141,886,-1,1223,1194,1261,-1,1140,923,331,-1,1189,1279,1306,-1,311,266,248,-1,205,103,417,-1,312,243,262,-1,273,224,436,-1,602,825,273,-1,121,189,388,-1,819,815,644,-1,1170,1300,1086,-1,922,1086,1023,-1,1284,1163,934,-1,27,102,49,-1,651,814,388,-1,165,231,207,-1,544,846,858,-1,837,783,869,-1,341,576,477,-1,1251,927,864,-1,1143,1242,1064,-1,729,998,1046,-1,961,927,1251,-1,945,1186,990,-1,83,407,230,-1,66,83,230,-1,386,712,727,-1,697,613,448,-1,56,76,268,-1,38,56,167,-1,462,1073,832,-1,1161,1015,1057,-1,3,83,66,-1,179,204,404,-1,385,177,326,-1,416,298,583,-1,1077,874,1001,-1,1286,1241,1285,-1,1136,1269,1285,-1,1077,1193,1269,-1,1063,300,1077,-1,381,1190,804,-1,390,366,458,-1,66,107,3,-1,63,1,65,-1,366,425,458,-1,1026,625,923,-1,1231,1215,1340,-1,1245,1340,1349,-1,1325,1225,1222,-1,547,393,1069,-1,216,45,67,-1,844,347,400,-1,836,443,774,-1,393,547,183,-1,128,58,45,-1,451,582,464,-1,464,301,294,-1,218,57,131,-1,200,87,58,-1,918,836,976,-1,777,640,422,-1,906,892,522,-1,811,458,425,-1,111,208,286,-1,995,881,1168,-1,373,354,276,-1,235,226,116,-1,264,234,333,-1,544,337,310,-1,310,125,18,-1,168,117,234,-1,6,85,73,-1,46,133,100,-1,47,18,125,-1,55,23,60,-1,93,75,148,-1,245,197,97,-1,820,871,732,-1,160,109,84,-1,277,578,391,-1,578,950,904,-1,402,578,277,-1,508,909,591,-1,769,724,728,-1,926,883,459,-1,960,913,908,-1,768,719,913,-1,720,915,877,-1,623,679,682,-1,1302,1352,1183,-1,965,1100,1259,-1,1346,1183,1352,-1,1342,1341,1351,-1,1328,1201,1128,-1,686,1050,1025,-1,893,309,171,-1,980,806,968,-1,1176,968,1266,-1,196,394,147,-1,1058,1160,1298,-1,1232,1049,308,-1,775,383,322,-1,968,646,1000,-1,120,147,228,-1,1305,1126,978,-1,1333,1197,1126,-1,1045,1047,901,-1,1039,946,586,-1,586,368,636,-1,887,1047,955,-1,887,901,1047,-1,678,672,1187,-1,799,933,1083,-1,1004,910,988,-1,852,924,589,-1,275,151,175,-1,151,188,52,-1,315,371,244,-1,371,589,988,-1,1147,1156,1011,-1,831,563,466,-1,1147,1051,1148,-1,1033,444,763,-1,588,154,159,-1,162,313,335,-1,149,349,308,-1,142,657,170,-1,723,308,851,-1,69,265,237,-1,899,444,865,-1,821,897,947,-1,632,875,859,-1,817,925,1043,-1,840,1075,715,-1,715,557,1114,-1,1084,1191,974,-1,497,1125,1239,-1,1125,497,564,-1,283,176,126,-1,81,82,96,-1,96,374,384,-1,188,290,86,-1,518,539,211,-1,1289,1172,1278,-1,440,529,751,-1,556,384,374,-1,396,627,541,-1,190,44,138,-1,396,140,44,-1,89,120,110,-1,249,196,150,-1,434,196,249,-1,1098,742,889,-1,1009,716,727,-1,1346,1352,1342,-1,1238,730,718,-1,321,186,411,-1,370,321,629,-1,1160,1135,1376,-1,1203,1135,980,-1,933,1005,1154,-1,660,1175,1127,-1,745,738,1025,-1,953,893,1128,-1,297,289,246,-1,983,396,190,-1,978,316,330,-1,1344,1333,1375,-1,1291,1376,1203,-1,1358,1318,1375,-1,1275,1232,1197,-1,907,542,921,-1,101,134,242,-1,339,275,263,-1,455,338,222,-1,69,41,24,-1,1167,1255,899,-1,1165,1267,1315,-1,603,408,503,-1,1198,1255,1326,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl3_Geo_5_157_normalIndex_4()
		{
			int[] value = {463,513,967,-1,463,521,419,-1,973,470,521,-1,606,501,647,-1,920,859,875,-1,821,647,501,-1,1003,1113,947,-1,887,894,925,-1,1173,1321,1257,-1,577,978,1002,-1,996,1094,588,-1,211,81,96,-1,1148,840,1042,-1,840,1114,1072,-1,949,473,873,-1,567,891,792,-1,757,615,722,-1,529,637,751,-1,1088,1178,1166,-1,1244,1114,1158,-1,1345,1321,1234,-1,1324,1321,1345,-1,1281,1324,1374,-1,975,1066,1104,-1,1272,1277,1308,-1,1360,1257,1321,-1,1246,1331,1290,-1,1246,983,1257,-1,1246,1116,1055,-1,983,1055,824,-1,1323,1270,1355,-1,1226,1157,1129,-1,559,468,1006,-1,713,505,778,-1,512,798,429,-1,512,483,805,-1,842,778,752,-1,566,736,748,-1,532,432,519,-1,532,594,549,-1,432,532,549,-1,616,653,465,-1,789,649,653,-1,682,679,761,-1,505,465,653,-1,467,654,616,-1,452,467,432,-1,559,929,482,-1,752,778,649,-1,713,842,805,-1,512,985,1097,-1,468,429,798,-1,1289,1221,1226,-1,1184,1233,1270,-1,560,739,642,-1,1246,1257,1331,-1,1233,1308,1277,-1,1345,1374,1324,-1,1256,1374,1273,-1,1335,1271,1281,-1,1307,1297,1377,-1,568,747,579,-1,1234,1113,1273,-1,1374,1256,1072,-1,1072,1042,840,-1,1122,1113,1003,-1,1267,1156,1147,-1,499,996,387,-1,577,1002,1095,-1,1095,1173,1257,-1,983,577,1095,-1,921,542,575,-1,1113,1043,947,-1,461,632,655,-1,973,855,470,-1,955,1041,735,-1,379,408,513,-1,1185,1007,981,-1,1326,1295,1182,-1,916,964,1087,-1,916,801,930,-1,1255,1337,1326,-1,1198,835,991,-1,1315,1337,1165,-1,1274,1027,967,-1,145,159,59,-1,184,158,145,-1,162,43,69,-1,135,178,32,-1,39,164,149,-1,42,41,43,-1,1197,1232,723,-1,921,956,1018,-1,1305,1314,1375,-1,1318,1358,1291,-1,577,190,978,-1,297,330,289,-1,110,297,246,-1,664,246,292,-1,104,110,246,-1,383,297,187,-1,799,1083,963,-1,1005,1052,1205,-1,1316,1298,1376,-1,852,275,339,-1,321,223,186,-1,953,806,551,-1,1302,1370,1352,-1,1230,1081,1364,-1,702,935,697,-1,895,727,712,-1,1151,1298,1316,-1,1298,1151,972,-1,394,196,434,-1,90,140,456,-1,743,375,729,-1,316,239,330,-1,456,140,396,-1,911,824,1055,-1,515,615,573,-1,749,526,840,-1,1213,1174,1149,-1,948,974,596,-1,1332,1278,1355,-1,440,96,384,-1,974,982,596,-1,360,295,457,-1,457,295,526,-1,96,28,91,-1,573,637,529,-1,754,1158,1114,-1,1121,1146,1070,-1,973,1283,1177,-1,763,885,1033,-1,101,242,184,-1,1049,252,308,-1,156,222,122,-1,444,237,763,-1,172,86,153,-1,563,499,290,-1,1042,1224,1148,-1,151,115,188,-1,275,315,151,-1,151,126,176,-1,852,493,924,-1,816,977,799,-1,1021,1047,1045,-1,1002,956,575,-1,978,1126,1018,-1,1060,1314,1305,-1,120,228,110,-1,816,759,1099,-1,488,1160,1058,-1,889,972,1151,-1,1313,1344,1266,-1,902,1230,535,-1,1238,1050,686,-1,1109,1085,1309,-1,1100,1130,1362,-1,895,965,1259,-1,1009,1312,1288,-1,1183,935,1053,-1,773,1085,1109,-1,971,795,1109,-1,1238,1364,1081,-1,104,143,144,-1,673,174,246,-1,949,1216,1054,-1,724,720,877,-1,908,823,861,-1,479,495,861,-1,748,630,769,-1,728,724,617,-1,617,508,728,-1,591,909,878,-1,950,578,878,-1,724,877,617,-1,363,391,904,-1,479,517,351,-1,225,169,160,-1,350,477,471,-1,111,341,245,-1,92,51,97,-1,55,111,23,-1,80,75,93,-1,181,127,118,-1,18,60,100,-1,168,55,117,-1,215,293,332,-1,651,644,815,-1,726,783,626,-1,762,496,813,-1,584,593,848,-1,273,310,18,-1,232,633,587,-1,337,544,232,-1,1163,1284,1170,-1,790,389,995,-1,380,381,804,-1,111,55,208,-1,453,487,492,-1,399,489,431,-1,635,746,888,-1,520,514,420,-1,777,422,635,-1,863,906,352,-1,418,340,640,-1,994,942,863,-1,994,803,770,-1,257,272,340,-1,108,352,417,-1,417,103,108,-1,57,218,166,-1,183,58,128,-1,67,116,216,-1,45,216,214,-1,484,128,214,-1,523,491,305,-1,1222,1219,1214,-1,1359,1336,1319,-1,1211,1319,1118,-1,547,1069,1044,-1,1026,1140,1159,-1,1120,1107,1040,-1,1138,1120,1248,-1,1200,1349,1248,-1,458,843,472,-1,185,157,106,-1,50,22,65,-1,179,94,204,-1,1,48,36,-1,300,1062,1064,-1,460,804,1190,-1,1136,1063,1077,-1,173,486,462,-1,1235,738,745,-1,256,209,658,-1,490,298,385,-1,404,247,179,-1,3,179,247,-1,755,1057,1015,-1,969,1194,1057,-1,403,730,139,-1,716,359,480,-1,631,288,230,-1,1133,1186,945,-1,319,364,83,-1,113,137,61,-1,1338,1251,993,-1,1242,1338,1190,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getl3_Geo_5_157_normalIndex_5()
		{
			int[] value = {864,576,993,-1,496,324,395,-1,446,581,626,-1,997,796,826,-1,815,814,651,-1,206,49,102,-1,1163,1170,876,-1,1192,1330,1293,-1,1010,1292,1284,-1,1284,1354,1299,-1,1206,1181,1101,-1,622,114,141,-1,141,828,882,-1,258,428,828,-1,250,132,378,-1,299,436,224,-1,659,273,825,-1,659,307,544,-1,377,522,892,-1,267,336,533,-1,520,753,746,-1,487,431,489,-1,523,937,484,-1,1145,1118,1319,-1,550,1074,648,-1,1340,1245,1231,-1,1159,1141,1026,-1,1215,1044,1195,-1,270,305,261,-1,1231,1245,1074,-1,995,1225,790,-1,597,937,523,-1,445,793,1014,-1,1206,1228,1268,-1,1137,1014,1067,-1,1207,1330,1228,-1,847,534,1107,-1,793,454,534,-1,298,203,95,-1,298,490,583,-1,344,365,741,-1,478,342,334,-1,259,185,48,-1,236,406,376,-1,656,414,236,-1,631,1059,1001,-1,1074,331,157,-1,119,204,94,-1,204,119,414,-1,202,414,561,-1,1210,1073,486,-1,353,302,686,-1,233,54,146,-1,10,7,16,-1,34,198,35,-1,25,195,209,-1,124,21,386,-1,167,403,139,-1,850,476,1235,-1,353,1235,476,-1,1241,850,1235,-1,1241,1036,850,-1,328,353,476,-1,328,302,353,-1,139,38,167,-1,16,38,139,-1,78,358,325,-1,78,99,358,-1,254,13,256,-1,2,13,254,-1,486,850,1036,-1,486,233,850,-1,832,404,561,-1,404,832,247,-1,407,990,1022,-1,407,364,990,-1,366,185,259,-1,366,390,185,-1,843,533,737,-1,843,811,533,-1,401,784,898,-1,784,401,441,-1,1017,853,1079,-1,741,853,1017,-1,860,1079,999,-1,1079,860,898,-1,672,195,367,-1,195,672,678,-1,203,475,367,-1,203,445,475,-1,998,1101,1105,-1,998,987,1101,-1,940,367,475,-1,367,940,672,-1,1093,1124,1192,-1,1124,1093,1023,-1,276,270,261,-1,276,287,270,-1,1211,494,717,-1,1211,1118,494,-1,1069,1195,1044,-1,1195,1069,1220,-1,1141,969,886,-1,1141,1194,969,-1,1015,1162,1040,-1,1015,1161,1162,-1,1279,1334,1306,-1,1279,1339,1334,-1,262,205,377,-1,262,131,205,-1,301,251,152,-1,301,443,251,-1,533,271,267,-1,398,271,533,-1,318,243,312,-1,318,218,243,-1,182,299,189,-1,357,299,182,-1,307,258,250,-1,258,307,428,-1,622,602,436,-1,838,602,622,-1,250,544,307,-1,250,378,544,-1,357,114,622,-1,357,182,114,-1,882,622,141,-1,882,838,622,-1,351,421,314,-1,447,421,351,-1,130,137,277,-1,130,61,137,-1,732,508,471,-1,508,732,728,-1,133,163,231,-1,46,163,133,-1,215,274,129,-1,215,320,274,-1,671,601,580,-1,671,675,601,-1,846,378,876,-1,378,846,544,-1,856,710,834,-1,707,710,856,-1,927,856,864,-1,927,870,856,-1,987,729,663,-1,987,998,729,-1,1296,1010,961,-1,1010,1296,1292,-1,1242,1169,1276,-1,1242,1143,1169,-1,1124,1300,1268,-1,1124,1086,1300,-1,1036,1286,1210,-1,1036,1241,1286,-1,796,705,704,-1,830,705,796,-1,590,718,403,-1,590,688,718,-1,11,99,78,-1,14,99,11,-1,691,254,693,-1,280,254,691,-1,40,11,34,-1,40,15,11,-1,708,448,325,-1,708,702,448,-1,284,157,331,-1,106,157,284,-1,119,236,414,-1,119,68,236,-1,416,886,454,-1,416,583,886,-1,16,40,38,-1,7,40,16,-1,5,2,0,-1,5,13,2,-1,19,8,26,-1,8,19,5,-1,79,29,77,-1,79,26,29,-1,1001,1153,1193,-1,1001,1059,1153,-1,776,1077,300,-1,1077,776,874,-1,179,22,94,-1,179,3,22,-1,737,648,412,-1,737,999,648,-1,999,737,860,-1,1162,1200,1248,-1,1162,1223,1200,-1,1340,1195,1322,-1,1195,1340,1215,-1,469,1035,550,-1,1044,1035,469,-1,1189,1325,1214,-1,1189,1306,1325,-1,1325,1240,1225,-1,1325,1359,1240,-1,287,717,270,-1,287,790,717,-1,226,261,216,-1,226,276,261,-1,400,229,194,-1,347,229,400,-1,333,451,424,-1,333,343,451,-1,469,200,183,-1,469,550,200,-1,312,410,318,-1,420,410,312,-1,492,558,635,-1,558,492,487,-1,286,398,380,-1,286,271,398,-1,336,208,264,-1,267,208,336,-1,116,253,155,-1,194,253,116,-1,248,253,311,-1,253,310,337,-1,248,310,253,-1,117,240,234,-1,117,125,240,-1,595,612,731,-1,595,618,612,-1,905,430,507,-1,905,839,430,-1,607,809,800,-1,607,571,809,-1,612,711,731,-1,600,711,612,-1,598,619,571,-1,652,619,598,-1,690,598,554,-1,690,687,598,-1,618,694,612,-1,683,694,618,-1,320,504,274,-1,320,584,504,-1,675,618,601,-1,675,683,618,-1,53,127,129,-1,53,73,127,-1,133,136,100,-1,133,165,136,-1,17,88,37,-1,70,88,17,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getl3_Geo_5_157_normalIndex_6()
		{
			int[] value = {80,17,75,-1,80,33,17,-1,98,181,118,-1,98,161,181,-1,281,435,291,-1,281,423,435,-1,574,435,569,-1,574,449,435,-1,516,668,543,-1,516,670,668,-1,225,123,169,-1,123,225,191,-1,97,148,92,-1,97,197,148,-1,460,576,341,-1,993,576,460,-1,197,269,201,-1,245,269,197,-1,421,317,314,-1,421,426,317,-1,442,306,227,-1,442,495,306,-1,227,459,442,-1,206,459,227,-1,926,904,950,-1,904,926,833,-1,760,823,756,-1,765,823,760,-1,765,684,734,-1,765,689,684,-1,592,679,623,-1,592,677,679,-1,143,174,676,-1,143,104,174,-1,1175,1367,1127,-1,1175,1357,1367,-1,1313,1333,1344,-1,1275,1333,1313,-1,355,742,322,-1,355,889,742,-1,1080,742,1098,-1,1080,775,742,-1,1018,1002,978,-1,1018,956,1002,-1,575,962,1002,-1,575,817,962,-1,925,639,887,-1,925,817,639,-1,1019,531,1021,-1,636,531,1019,-1,531,382,733,-1,304,382,531,-1,525,887,639,-1,525,901,887,-1,223,156,186,-1,219,156,223,-1,439,283,244,-1,439,397,283,-1,244,910,439,-1,371,910,244,-1,186,222,241,-1,122,222,186,-1,1031,1094,996,-1,1106,1094,1031,-1,159,213,387,-1,159,158,213,-1,265,763,237,-1,763,265,885,-1,149,335,349,-1,149,164,335,-1,153,242,172,-1,184,242,153,-1,925,947,1043,-1,894,947,925,-1,875,822,979,-1,875,632,822,-1,1283,1253,1177,-1,1283,1320,1253,-1,938,916,1082,-1,938,603,916,-1,938,967,513,-1,938,1132,967,-1,1239,1139,1250,-1,1125,1139,1239,-1,546,557,497,-1,546,754,557,-1,115,82,81,-1,115,199,82,-1,176,199,115,-1,872,936,959,-1,872,849,936,-1,1155,1289,1226,-1,1172,1289,1155,-1,1112,1097,985,-1,1112,1180,1097,-1,566,642,752,-1,566,510,642,-1,579,537,527,-1,579,610,537,-1,1216,1377,1335,-1,1216,1199,1377,-1,1048,1061,943,-1,1166,1061,1048,-1,553,529,440,-1,609,529,553,-1,932,751,637,-1,948,751,932,-1,573,750,637,-1,573,615,750,-1,541,548,528,-1,541,627,548,-1,138,30,105,-1,138,44,30,-1,329,664,292,-1,664,329,743,-1,91,30,90,-1,91,28,30,-1,290,213,86,-1,499,213,290,-1,556,704,585,-1,700,704,556,-1,150,309,249,-1,150,171,309,-1,1366,1312,1369,-1,1366,1288,1312,-1,1362,1381,1369,-1,1362,1380,1381,-1,953,646,806,-1,953,1052,646,-1,977,1005,933,-1,1005,977,1000,-1,1203,1176,1164,-1,980,1176,1203,-1,1301,1083,1154,-1,1287,1083,1301,-1,1373,1365,1371,-1,1373,1342,1365,-1,1127,693,658,-1,1127,1130,693,-1,1357,1378,1367,-1,1357,1361,1378,-1,1303,1368,1353,-1,1303,1328,1368,-1,322,147,355,-1,322,228,147,-1,144,110,104,-1,144,89,110,-1,1280,1376,1358,-1,1376,1280,1316,-1,263,172,242,-1,275,172,263,-1,275,175,172,-1,62,162,193,-1,62,43,162,-1,24,170,69,-1,24,142,170,-1,890,1165,1167,-1,890,1123,1165,-1,1078,1123,890,-1,513,603,938,-1,408,603,513,-1,801,1037,930,-1,1016,1037,801,-1,1146,1320,1171,-1,1146,1253,1320,-1,1007,614,981,-1,1007,503,614,-1,614,419,735,-1,379,419,614,-1,979,966,875,-1,979,1070,966,-1,501,438,461,-1,438,501,606,-1,1003,859,920,-1,1003,897,859,-1,1095,1115,1173,-1,1115,1095,1110,-1,1106,1011,1156,-1,1106,1031,1011,-1,788,643,785,-1,643,788,537,-1,567,572,545,-1,634,572,567,-1,750,604,792,-1,750,757,604,-1,610,643,537,-1,610,661,643,-1,829,810,782,-1,791,810,829,-1,515,722,615,-1,515,680,722,-1,515,696,680,-1,690,818,829,-1,690,692,818,-1,699,573,609,-1,699,515,573,-1,699,696,515,-1,1216,873,1199,-1,1216,949,873,-1,797,943,1061,-1,797,788,943,-1,802,667,808,-1,802,671,667,-1,1247,1166,1178,-1,1166,1247,1254,-1,1294,1281,1271,-1,1281,1294,1324,-1,1310,1271,1297,-1,1294,1271,1310,-1,1260,1348,1282,-1,1260,1311,1348,-1,1282,1188,1260,-1,1282,1218,1188,-1,931,1092,1088,-1,931,944,1092,-1,812,958,944,-1,845,958,812,-1,665,841,845,-1,665,668,841,-1,1188,1066,1157,-1,1104,1066,1188,-1,1360,1290,1331,-1,1343,1290,1360,-1,627,911,739,-1,627,824,911,-1,1024,1116,1112,-1,1024,1055,1116,-1,1270,1180,1184,-1,1270,1243,1180,-1,1157,1068,1129,-1,1157,1066,1068,-1,674,849,669,-1,674,781,849,-1,1032,1252,1278,-1,1006,1252,1032,-1,429,483,512,-1,483,429,505,-1,867,532,900,-1,867,594,532,-1,621,628,624,-1,621,654,628,-1,781,684,641,-1,781,674,684,-1,677,649,789,-1,677,736,649,-1,624,682,621,-1,624,685,682,-1,641,867,781,-1,594,867,641,-1,654,761,616,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getl3_Geo_5_157_normalIndex_7()
		{
			int[] value = {761,654,621,-1,467,628,654,-1,452,628,467,-1,482,467,433,-1,467,482,432,-1,929,1155,939,-1,1155,929,1172,-1,1076,939,1155,-1,1076,884,939,-1,666,868,670,-1,868,666,872,-1,1277,1289,1332,-1,1277,1272,1289,-1,936,781,867,-1,849,781,936,-1,1055,919,911,-1,919,1055,1024,-1,739,548,627,-1,560,548,739,-1,1233,1246,1290,-1,1233,1184,1246,-1,1308,1343,1363,-1,1308,1290,1343,-1,668,868,841,-1,668,670,868,-1,944,808,812,-1,944,931,808,-1,944,1103,1092,-1,944,958,1103,-1,1218,1104,1188,-1,1104,1218,1103,-1,1317,1282,1348,-1,1282,1317,1264,-1,1297,1317,1310,-1,1307,1317,1297,-1,1343,1324,1294,-1,1343,1360,1324,-1,1244,1249,1281,-1,1244,1213,1249,-1,1247,1329,1254,-1,1247,1307,1329,-1,767,675,779,-1,767,683,675,-1,879,1061,1108,-1,879,797,1061,-1,694,767,771,-1,767,694,683,-1,782,690,829,-1,782,687,690,-1,766,782,810,-1,782,766,721,-1,661,771,643,-1,771,661,780,-1,572,791,568,-1,572,810,791,-1,568,500,473,-1,568,579,500,-1,1148,794,749,-1,1051,794,1148,-1,1131,1134,1071,-1,1072,1131,1042,-1,1131,1072,1134,-1,1131,1267,1224,-1,1267,1131,1185,-1,1173,1043,1113,-1,1043,1173,1115,-1,962,1095,1002,-1,962,1110,1095,-1,821,887,647,-1,894,887,821,-1,970,1070,1065,-1,1070,970,966,-1,735,981,614,-1,735,1041,981,-1,379,503,408,-1,614,503,379,-1,1295,1185,1119,-1,1295,1315,1185,-1,1283,1027,1274,-1,973,1027,1283,-1,930,1056,957,-1,930,1037,1056,-1,356,899,991,-1,899,356,444,-1,349,912,851,-1,912,349,335,-1,193,39,62,-1,164,39,193,-1,723,639,951,-1,382,639,723,-1,525,639,382,-1,297,608,1091,-1,506,608,297,-1,228,383,187,-1,228,322,383,-1,1353,1301,1303,-1,1353,1356,1301,-1,1372,1361,1356,-1,1378,1361,1372,-1,1380,1378,1381,-1,1380,1367,1378,-1,1342,1364,1341,-1,1364,1342,1373,-1,493,963,924,-1,493,799,963,-1,1150,1266,968,-1,1150,1313,1266,-1,1232,1099,1049,-1,1099,1232,1275,-1,935,708,1053,-1,935,702,708,-1,1379,1369,1381,-1,1379,1366,1369,-1,1369,1259,1362,-1,1312,1259,1369,-1,706,1053,708,-1,1020,1053,706,-1,1316,1080,1098,-1,1080,1316,1280,-1,608,1060,1091,-1,1060,608,650,-1,511,701,524,-1,703,701,511,-1,44,90,30,-1,44,140,90,-1,524,700,556,-1,524,701,700,-1,199,105,82,-1,199,212,105,-1,330,285,289,-1,330,239,285,-1,105,28,82,-1,105,30,28,-1,982,539,518,-1,840,539,982,-1,779,671,802,-1,779,675,671,-1,1108,1166,1254,-1,1108,1061,1166,-1,1216,1249,1149,-1,1249,1216,1335,-1,842,642,919,-1,752,642,842,-1,1243,1252,1097,-1,1243,1323,1252,-1,959,1034,1068,-1,1034,959,936,-1,217,596,518,-1,596,217,440,-1,758,497,1239,-1,758,546,497,-1,754,758,928,-1,758,754,546,-1,1125,1075,1139,-1,952,1075,1125,-1,1084,1196,1191,-1,1196,1084,1028,-1,1146,1065,1070,-1,1146,1171,1065,-1,1016,1152,1102,-1,1016,1038,1152,-1,603,801,916,-1,603,502,801,-1,1274,1320,1283,-1,1274,1347,1320,-1,986,979,822,-1,986,1121,979,-1,885,170,657,-1,885,265,170,-1,1111,1106,1123,-1,1111,1094,1106,-1,260,290,188,-1,360,290,260,-1,1051,1011,831,-1,1147,1011,1051,-1,285,292,289,-1,285,329,292,-1,1090,851,1182,-1,1090,733,851,-1,1090,1008,733,-1,304,525,382,-1,485,525,304,-1,531,368,304,-1,368,531,636,-1,586,984,485,-1,946,984,586,-1,817,542,639,-1,817,575,542,-1,1060,775,1080,-1,1060,650,775,-1,759,1049,1099,-1,455,1049,759,-1,1013,434,1058,-1,1013,394,434,-1,889,361,972,-1,355,361,889,-1,1009,1259,1312,-1,1009,895,1259,-1,1183,773,935,-1,773,1183,1085,-1,630,677,592,-1,630,736,677,-1,684,599,734,-1,684,674,599,-1,756,764,760,-1,756,719,764,-1,861,517,479,-1,861,786,517,-1,909,950,878,-1,877,950,909,-1,495,351,306,-1,351,495,479,-1,509,426,421,-1,509,516,426,-1,49,113,27,-1,93,113,49,-1,93,148,113,-1,732,477,638,-1,471,477,732,-1,834,709,820,-1,834,710,709,-1,169,80,109,-1,80,169,123,-1,543,426,516,-1,409,426,543,-1,662,574,569,-1,662,667,574,-1,281,409,423,-1,279,409,281,-1,181,281,291,-1,181,161,281,-1,64,127,73,-1,118,127,64,-1,70,33,64,-1,33,70,17,-1,210,291,293,-1,210,181,291,-1,136,207,224,-1,136,165,207,-1,332,449,474,-1,332,293,449,-1,595,601,618,-1,530,601,595,-1,274,555,238,-1,274,504,555,-1,324,427,231,-1,324,446,427,-1,612,695,600,-1,612,694,695,-1,687,652,598,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getl3_Geo_5_157_normalIndex_8()
		{
			int[] value = {687,681,652,-1,652,611,619,-1,726,611,652,-1,645,600,562,-1,645,711,600,-1,787,607,800,-1,787,645,607,-1,762,626,581,-1,762,611,626,-1,809,813,839,-1,813,809,744,-1,731,593,595,-1,848,593,731,-1,424,420,450,-1,424,410,420,-1,892,941,917,-1,941,892,906,-1,942,770,640,-1,770,942,994,-1,770,400,418,-1,770,803,400,-1,257,200,272,-1,257,87,200,-1,343,582,451,-1,582,343,369,-1,108,413,352,-1,108,251,413,-1,1211,1359,1319,-1,1211,1240,1359,-1,1306,1359,1325,-1,1306,1334,1359,-1,1220,1322,1195,-1,1220,1336,1322,-1,1339,1336,1334,-1,1339,1322,1336,-1,1120,1162,1248,-1,1040,1162,1120,-1,1248,1339,1279,-1,1349,1339,1248,-1,1237,1059,1030,-1,1237,1153,1059,-1,10,77,29,-1,10,54,77,-1,5,25,13,-1,5,19,25,-1,693,256,658,-1,693,254,256,-1,15,7,9,-1,15,40,7,-1,298,79,221,-1,79,298,95,-1,236,106,284,-1,68,106,236,-1,0,21,12,-1,0,2,21,-1,72,14,12,-1,72,99,14,-1,1073,1229,1133,-1,1073,1210,1229,-1,704,826,796,-1,826,704,700,-1,1168,1093,1293,-1,1093,1168,881,-1,1350,1292,1296,-1,1350,1354,1292,-1,664,1046,1089,-1,743,1046,664,-1,1350,1242,1276,-1,1350,1338,1242,-1,834,864,856,-1,834,740,864,-1,626,837,644,-1,626,783,837,-1,651,446,644,-1,446,651,427,-1,815,830,934,-1,830,815,819,-1,320,332,437,-1,332,320,215,-1,6,163,46,-1,6,180,163,-1,848,787,857,-1,848,772,787,-1,732,769,728,-1,732,871,769,-1,277,269,402,-1,277,201,269,-1,84,227,160,-1,227,84,206,-1,447,509,421,-1,447,536,509,-1,987,672,940,-1,987,663,672,-1,378,121,388,-1,121,378,132,-1,357,436,299,-1,622,436,357,-1,659,428,307,-1,428,659,828,-1,121,182,189,-1,182,121,114,-1,166,318,294,-1,166,218,318,-1,369,844,582,-1,369,347,844,-1,108,152,251,-1,152,108,31,-1,266,282,369,-1,282,266,311,-1,489,746,558,-1,514,746,489,-1,755,1040,534,-1,755,1015,1040,-1,886,755,534,-1,886,969,755,-1,1159,1245,1200,-1,1159,1140,1245,-1,1029,1220,1069,-1,1029,1204,1220,-1,1225,717,790,-1,1225,1240,717,-1,348,305,270,-1,348,523,305,-1,354,552,807,-1,373,552,354,-1,587,552,327,-1,587,914,552,-1,475,1137,940,-1,1137,475,1014,-1,1101,940,1137,-1,1101,987,940,-1,1223,1161,1194,-1,1161,1223,1162,-1,340,342,422,-1,272,342,340,-1,272,346,342,-1,478,898,860,-1,898,478,401,-1,898,1017,1079,-1,1017,898,784,-1,344,401,334,-1,441,401,344,-1,533,380,398,-1,811,380,533,-1,811,425,380,-1,631,303,288,-1,631,605,303,-1,631,1030,1059,-1,631,481,1030,-1,48,68,36,-1,68,48,106,-1,25,367,195,-1,25,203,367,-1,430,324,163,-1,430,395,324,-1,13,209,256,-1,13,25,209,-1,119,50,36,-1,119,94,50,-1,874,605,1001,-1,605,874,725,-1,220,832,896,-1,247,832,220,-1,406,284,565,-1,284,406,236,-1,65,300,63,-1,300,65,323,-1,380,366,381,-1,380,425,366,-1,737,453,492,-1,737,533,453,-1,853,365,362,-1,365,853,741,-1,999,853,714,-1,853,999,1079,-1,492,860,737,-1,492,478,860,-1,999,550,648,-1,999,714,550,-1,416,203,298,-1,416,445,203,-1,1046,1105,1096,-1,1046,998,1105,-1,1014,847,1067,-1,793,847,1014,-1,287,354,389,-1,354,287,276,-1,1168,1222,995,-1,1168,1219,1222,-1,597,1118,1145,-1,494,1118,597,-1,1044,1231,1035,-1,1044,1215,1231,-1,1138,1236,1209,-1,1236,1138,1189,-1,431,453,336,-1,453,431,487,-1,570,520,405,-1,570,753,520,-1,131,103,205,-1,131,57,103,-1,464,443,301,-1,464,774,443,-1,413,443,836,-1,413,251,443,-1,250,141,132,-1,141,250,258,-1,825,838,882,-1,825,602,838,-1,1299,1268,1300,-1,1181,1268,1299,-1,1268,1181,1206,-1,876,388,814,-1,876,378,388,-1,351,255,306,-1,351,314,255,-1,102,61,130,-1,102,27,61,-1,471,591,350,-1,591,471,508,-1,699,830,819,-1,699,705,830,-1,129,238,53,-1,129,274,238,-1,580,530,474,-1,580,601,530,-1,880,504,857,-1,555,504,880,-1,496,446,324,-1,496,581,446,-1,703,856,870,-1,856,703,707,-1,1169,1101,1181,-1,1169,1105,1101,-1,961,826,862,-1,826,961,1010,-1,1105,1143,1096,-1,1105,1169,1143,-1,927,862,870,-1,927,961,862,-1,107,323,65,-1,107,303,323,-1,1133,832,1073,-1,896,832,1133,-1,358,716,706,-1,716,358,359,-1,280,712,386,-1,280,691,712,-1,14,15,4,-1,15,14,11,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getl3_Geo_5_157_normalIndex_9()
		{
			int[] value = {56,35,76,-1,20,35,56,-1,656,462,561,-1,656,326,462,-1,385,406,490,-1,376,406,385,-1,54,177,77,-1,54,173,177,-1,0,8,5,-1,0,4,8,-1,209,678,660,-1,209,195,678,-1,9,26,8,-1,9,29,26,-1,26,95,19,-1,95,26,79,-1,1265,1210,1286,-1,1229,1210,1265,-1,157,412,648,-1,157,185,412,-1,1209,1120,1138,-1,1209,1107,1120,-1,1209,1207,1107,-1,1204,1336,1220,-1,1204,1319,1336,-1,1236,1214,1219,-1,1214,1236,1189,-1,494,270,717,-1,494,348,270,-1,216,491,214,-1,261,491,216,-1,491,261,305,-1,415,318,410,-1,318,415,294,-1,257,400,194,-1,257,418,400,-1,863,413,918,-1,863,352,413,-1,942,906,863,-1,941,906,942,-1,917,746,753,-1,917,888,746,-1,420,405,520,-1,420,312,405,-1,941,888,917,-1,777,888,941,-1,514,399,450,-1,514,489,399,-1,267,286,208,-1,271,286,267,-1,240,369,343,-1,266,369,240,-1,248,125,310,-1,248,240,125,-1,240,248,266,-1,584,857,504,-1,857,584,848,-1,905,555,880,-1,905,507,555,-1,496,839,813,-1,839,395,430,-1,496,395,839,-1,571,744,809,-1,571,619,744,-1,731,772,848,-1,731,711,772,-1,571,554,598,-1,554,571,607,-1,726,869,783,-1,680,869,726,-1,680,696,869,-1,562,690,554,-1,562,692,690,-1,837,699,819,-1,869,699,837,-1,869,696,699,-1,507,163,180,-1,507,430,163,-1,437,584,320,-1,437,593,584,-1,667,580,574,-1,667,671,580,-1,215,127,210,-1,129,127,215,-1,100,88,112,-1,60,88,100,-1,112,70,85,-1,70,112,88,-1,33,123,98,-1,33,80,123,-1,191,98,123,-1,191,161,98,-1,291,449,293,-1,291,435,449,-1,423,569,435,-1,569,423,540,-1,543,665,540,-1,543,668,665,-1,317,191,225,-1,191,317,279,-1,92,23,51,-1,23,92,37,-1,477,740,638,-1,477,576,740,-1,245,350,269,-1,245,341,350,-1,201,113,197,-1,201,137,113,-1,314,225,255,-1,314,317,225,-1,536,674,669,-1,536,599,674,-1,130,363,102,-1,363,130,391,-1,883,442,459,-1,442,883,866,-1,950,913,926,-1,913,950,915,-1,866,495,442,-1,861,495,866,-1,623,720,592,-1,623,768,720,-1,823,734,786,-1,734,823,765,-1,685,765,760,-1,685,689,765,-1,535,144,143,-1,535,345,144,-1,1025,1081,902,-1,1025,1050,1081,-1,1341,1238,1212,-1,1238,1341,1364,-1,1020,1302,1053,-1,1020,1288,1302,-1,1367,1130,1127,-1,1130,1367,1380,-1,535,893,345,-1,535,1128,893,-1,980,551,806,-1,1135,551,980,-1,394,972,361,-1,394,1013,972,-1,1197,1018,1126,-1,1197,992,1018,-1,907,1197,951,-1,907,992,1197,-1,1045,1019,1021,-1,1019,1045,1039,-1,1021,733,1008,-1,531,733,1021,-1,283,375,278,-1,283,397,375,-1,1004,439,910,-1,672,439,1004,-1,996,563,1031,-1,499,563,996,-1,158,86,213,-1,153,86,158,-1,356,237,444,-1,356,192,237,-1,411,241,493,-1,411,186,241,-1,759,799,338,-1,759,816,799,-1,219,370,339,-1,219,223,370,-1,41,101,74,-1,41,42,101,-1,1177,1121,986,-1,1177,1253,1121,-1,1132,1082,1227,-1,1132,938,1082,-1,1110,817,1115,-1,817,1110,962,-1,855,822,498,-1,855,986,822,-1,1087,1227,1082,-1,1087,1217,1227,-1,1250,1263,1239,-1,1250,1262,1263,-1,557,564,497,-1,557,715,564,-1,1250,840,982,-1,840,1250,1139,-1,1239,1028,758,-1,1239,1196,1028,-1,1239,1263,1196,-1,539,295,211,-1,295,539,526,-1,669,872,666,-1,849,872,669,-1,1155,1129,1076,-1,1155,1226,1129,-1,985,1024,1112,-1,805,1024,985,-1,698,566,748,-1,698,510,566,-1,440,585,553,-1,440,384,585,-1,1199,1329,1377,-1,1199,1144,1329,-1,943,903,1048,-1,943,854,903,-1,1149,974,948,-1,1149,1174,974,-1,372,749,794,-1,457,749,372,-1,457,526,749,-1,637,792,932,-1,637,750,792,-1,710,528,548,-1,528,710,707,-1,528,456,541,-1,528,511,456,-1,729,397,663,-1,729,375,397,-1,374,90,392,-1,91,90,374,-1,212,138,105,-1,212,239,138,-1,81,260,115,-1,81,295,260,-1,89,345,171,-1,89,144,345,-1,705,585,704,-1,585,705,553,-1,718,795,971,-1,718,688,795,-1,1288,1370,1302,-1,1370,1288,1366,-1,1130,691,693,-1,691,1130,1100,-1,1370,1342,1352,-1,1370,1365,1342,-1,773,688,697,-1,773,795,688,-1,1201,1052,953,-1,1201,1205,1052,-1,1052,1000,646,-1,1005,1000,1052,-1,1303,1154,1205,-1,1301,1154,1303,-1,1379,1371,1365,-1,1371,1379,1372,-1,988,924,963,-1,988,589,924,-1,1353,1373,1371,-1,1353,1368,1373,-1,1361,1179,1287,-1,1361,1357,1179,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getl3_Geo_5_157_normalIndex_10()
		{
			int[] value = {150,147,120,-1,196,147,150,-1,178,219,134,-1,178,156,219,-1,62,32,42,-1,39,32,62,-1,335,835,912,-1,335,313,835,-1,59,184,145,-1,59,74,184,-1,142,59,154,-1,142,24,59,-1,657,1094,1111,-1,657,588,1094,-1,1123,1156,1165,-1,1123,1106,1156,-1,1152,1007,1185,-1,1007,1152,1038,-1,1315,1326,1337,-1,1315,1295,1326,-1,957,964,930,-1,957,970,964,-1,1347,1171,1320,-1,1347,1217,1171,-1,1182,912,1198,-1,1182,851,912,-1,981,1090,1119,-1,981,1041,1090,-1,438,735,419,-1,606,735,438,-1,498,632,461,-1,632,498,822,-1,1003,957,1056,-1,957,1003,920,-1,372,563,457,-1,372,466,563,-1,1102,1185,1131,-1,1185,1102,1152,-1,1056,1142,1122,-1,1037,1142,1056,-1,1142,1273,1122,-1,1142,1256,1273,-1,771,785,643,-1,771,767,785,-1,568,545,572,-1,473,545,568,-1,766,604,757,-1,604,766,634,-1,747,610,579,-1,747,661,610,-1,747,829,818,-1,747,791,829,-1,680,721,722,-1,721,680,681,-1,818,695,780,-1,818,692,695,-1,1144,873,827,-1,1199,873,1144,-1,788,854,943,-1,788,785,854,-1,903,808,931,-1,802,808,903,-1,1335,1297,1271,-1,1377,1297,1335,-1,1294,1363,1343,-1,1363,1294,1310,-1,1363,1311,1308,-1,1363,1348,1311,-1,1202,1282,1264,-1,1202,1218,1282,-1,1264,1178,1202,-1,1264,1247,1178,-1,958,841,975,-1,841,958,845,-1,665,812,662,-1,812,665,845,-1,1260,1157,1221,-1,1188,1157,1260,-1,560,698,709,-1,560,510,698,-1,1112,1184,1180,-1,1184,1112,1116,-1,1066,959,1068,-1,1066,954,959,-1,867,1034,936,-1,1034,867,900,-1,1172,1032,1278,-1,1172,929,1032,-1,468,433,429,-1,559,433,468,-1,549,624,628,-1,624,549,620,-1,684,620,641,-1,684,689,620,-1,679,789,761,-1,679,677,789,-1,620,685,624,-1,620,689,685,-1,641,549,594,-1,620,549,641,-1,653,761,789,-1,653,616,761,-1,884,519,939,-1,519,884,532,-1,467,429,433,-1,465,429,467,-1,939,482,929,-1,519,482,939,-1,1097,1006,798,-1,1252,1006,1097,-1,1034,884,1076,-1,900,884,1034,-1,954,872,959,-1,954,868,872,-1,1270,1332,1355,-1,1270,1277,1332,-1,1270,1233,1277,-1,911,642,739,-1,642,911,919,-1,709,548,560,-1,709,710,548,-1,1311,1221,1272,-1,1260,1221,1311,-1,954,841,868,-1,841,954,975,-1,808,662,812,-1,808,667,662,-1,975,1103,958,-1,1103,975,1104,-1,1103,1202,1092,-1,1103,1218,1202,-1,1247,1317,1307,-1,1317,1247,1264,-1,1348,1310,1317,-1,1363,1310,1348,-1,1092,1178,1088,-1,1092,1202,1178,-1,1174,1244,1158,-1,1174,1213,1244,-1,931,1048,903,-1,931,1088,1048,-1,779,785,767,-1,785,779,854,-1,827,1108,1144,-1,827,879,1108,-1,948,1054,1149,-1,948,932,1054,-1,695,771,780,-1,695,694,771,-1,721,687,782,-1,721,681,687,-1,757,721,766,-1,721,757,722,-1,780,747,818,-1,780,661,747,-1,634,810,572,-1,634,766,810,-1,545,891,567,-1,989,545,949,-1,545,989,891,-1,827,473,500,-1,827,873,473,-1,527,797,879,-1,537,797,527,-1,1256,1134,1072,-1,1142,1134,1256,-1,1117,1134,1142,-1,1016,1142,1037,-1,1142,1016,1117,-1,966,957,920,-1,966,970,957,-1,438,498,461,-1,470,498,438,-1,470,419,521,-1,419,470,438,-1,967,521,463,-1,967,1027,521,-1,1182,1119,1090,-1,1182,1295,1119,-1,1065,964,970,-1,1087,964,1065,-1,503,1038,502,-1,1007,1038,503,-1,991,313,356,-1,313,991,835,-1,1111,885,657,-1,1111,1033,885,-1,24,74,59,-1,24,41,74,-1,219,263,134,-1,263,219,339,-1,42,134,101,-1,134,42,32,-1,171,120,89,-1,120,171,150,-1,1287,1356,1361,-1,1301,1356,1287,-1,1356,1371,1372,-1,1356,1353,1371,-1,678,1175,660,-1,678,1187,1175,-1,1372,1381,1378,-1,1372,1379,1381,-1,1205,1328,1303,-1,1205,1201,1328,-1,1275,1150,1099,-1,1150,1275,1313,-1,1346,1327,1304,-1,1327,1346,1351,-1,1365,1366,1379,-1,1370,1366,1365,-1,712,1100,965,-1,712,691,1100,-1,716,1020,706,-1,1009,1020,716,-1,551,249,309,-1,249,551,488,-1,1060,1280,1314,-1,1060,1080,1280,-1,524,456,511,-1,524,392,456,-1,239,278,285,-1,239,212,278,-1,556,392,524,-1,374,392,556,-1,283,212,199,-1,283,278,212,-1,528,703,511,-1,707,703,528,-1,932,891,1054,-1,932,792,891,-1,879,500,527,-1,500,879,827,-1,854,802,903,-1,854,779,802,-1,1144,1254,1329,-1,1144,1108,1254,-1,553,699,609,-1,553,705,699,-1,805,919,1024,-1,842,919,805,-1,1323,1278,1252,-1,1323,1355,1278,-1,1129,1034,1076,-1,1129,1068,1034,-1,672,397,439,-1,672,663,397,-1,1262,982,974,-1,1262,1250,982,-1,928,1028,1084,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getl3_Geo_5_157_normalIndex_11()
		{
			int[] value = {1028,928,758,-1,952,715,1075,-1,564,715,952,-1,1196,1262,1191,-1,1263,1262,1196,-1,1065,1217,1087,-1,1065,1171,1217,-1,502,1016,801,-1,502,1038,1016,-1,1227,1274,1132,-1,1347,1274,1227,-1,1102,1117,1016,-1,1071,1117,1102,-1,655,897,821,-1,897,655,859,-1,339,629,852,-1,339,370,629,-1,629,493,852,-1,629,411,493,-1,135,222,178,-1,135,252,222,-1,162,356,313,-1,162,192,356,-1,657,154,588,-1,657,142,154,-1,1078,1033,1111,-1,1078,865,1033,-1,831,1031,563,-1,1031,831,1011,-1,831,794,1051,-1,831,466,794,-1,538,371,315,-1,371,538,589,-1,278,329,285,-1,278,375,329,-1,1179,963,1083,-1,1179,988,963,-1,851,382,723,-1,851,733,382,-1,1047,1090,955,-1,1047,1008,1090,-1,485,901,525,-1,984,901,485,-1,368,485,304,-1,586,485,368,-1,984,1039,1045,-1,1039,984,946,-1,542,951,639,-1,542,907,951,-1,1099,977,816,-1,1150,977,1099,-1,551,1160,488,-1,1160,551,1135,-1,775,506,383,-1,650,506,775,-1,1318,1266,1344,-1,1318,1291,1266,-1,1328,1364,1368,-1,1364,1328,1230,-1,1004,1357,1187,-1,1004,1179,1357,-1,682,760,764,-1,682,685,760,-1,517,734,599,-1,734,517,786,-1,623,719,768,-1,764,719,623,-1,756,913,719,-1,913,756,908,-1,913,883,926,-1,960,883,913,-1,363,206,102,-1,363,459,206,-1,516,666,670,-1,509,666,516,-1,84,93,49,-1,84,109,93,-1,599,447,517,-1,447,599,536,-1,698,820,709,-1,698,871,820,-1,834,638,740,-1,638,834,820,-1,37,75,17,-1,37,92,75,-1,409,317,426,-1,279,317,409,-1,569,665,662,-1,540,665,569,-1,543,423,409,-1,540,423,543,-1,279,161,191,-1,281,161,279,-1,98,64,33,-1,118,64,98,-1,64,85,70,-1,85,64,73,-1,60,37,88,-1,60,23,37,-1,136,273,18,-1,224,273,136,-1,85,46,112,-1,46,85,6,-1,574,474,449,-1,474,574,580,-1,530,593,437,-1,530,595,593,-1,507,238,555,-1,238,507,180,-1,695,562,600,-1,695,692,562,-1,652,680,726,-1,681,680,652,-1,554,645,562,-1,554,607,645,-1,772,645,787,-1,772,711,645,-1,762,619,611,-1,744,619,762,-1,839,800,809,-1,800,839,905,-1,880,800,905,-1,880,787,800,-1,240,333,234,-1,333,240,343,-1,194,282,253,-1,229,282,194,-1,807,1012,922,-1,807,914,1012,-1,424,399,333,-1,450,399,424,-1,753,892,917,-1,570,892,753,-1,640,941,942,-1,941,640,777,-1,194,87,257,-1,194,67,87,-1,415,424,451,-1,415,410,424,-1,58,67,45,-1,58,87,67,-1,844,976,774,-1,976,844,803,-1,484,1029,393,-1,937,1029,484,-1,1349,1322,1339,-1,1322,1349,1340,-1,1237,1229,1265,-1,1229,1237,1186,-1,203,19,95,-1,203,25,19,-1,7,29,9,-1,7,10,29,-1,454,445,416,-1,454,793,445,-1,9,4,15,-1,8,4,9,-1,221,77,177,-1,77,221,79,-1,376,326,656,-1,326,376,385,-1,326,173,462,-1,326,177,173,-1,688,613,697,-1,688,590,613,-1,34,20,40,-1,20,34,35,-1,12,4,0,-1,12,14,4,-1,124,12,21,-1,12,124,72,-1,325,706,708,-1,706,325,358,-1,303,66,288,-1,107,66,303,-1,323,776,300,-1,725,776,323,-1,701,870,862,-1,870,701,703,-1,1296,1338,1350,-1,1296,1251,1338,-1,700,862,826,-1,700,701,862,-1,1276,1181,1299,-1,1276,1169,1181,-1,1096,1062,1063,-1,1096,1143,1062,-1,1354,1276,1299,-1,1354,1350,1276,-1,633,1012,587,-1,633,922,1012,-1,633,858,922,-1,388,231,427,-1,388,207,231,-1,474,437,332,-1,474,530,437,-1,53,180,6,-1,53,238,180,-1,796,934,830,-1,796,997,934,-1,769,698,748,-1,769,871,698,-1,350,402,269,-1,402,350,591,-1,255,227,306,-1,255,160,227,-1,509,669,666,-1,669,509,536,-1,1086,846,1170,-1,858,846,1086,-1,828,825,882,-1,828,659,825,-1,114,132,141,-1,114,121,132,-1,152,294,301,-1,152,166,294,-1,229,369,282,-1,229,347,369,-1,582,774,464,-1,582,844,774,-1,57,108,103,-1,57,31,108,-1,405,377,570,-1,405,262,377,-1,583,625,1026,-1,583,565,625,-1,1145,1029,937,-1,1145,1204,1029,-1,1293,1219,1168,-1,1219,1293,1236,-1,807,389,354,-1,389,807,881,-1,232,235,155,-1,232,327,235,-1,373,327,552,-1,327,373,235,-1,1089,1096,1063,-1,1089,1046,1096,-1,550,346,200,-1,550,714,346,-1,342,492,422,-1,342,478,492,-1,741,441,344,-1,741,784,441,-1,714,362,346,-1,362,714,853,-1,365,334,362,-1,344,334,365,-1,185,472,412,-1,185,390,472,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getl3_Geo_5_157_normalIndex_12()
		{
			int[] value = {381,63,300,-1,381,259,63,-1,605,323,303,-1,605,725,323,-1,331,625,284,-1,625,331,923,-1,945,364,319,-1,945,990,364,-1,1022,481,407,-1,481,1022,1030,-1,124,359,72,-1,124,480,359,-1,613,198,448,-1,296,198,613,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getl3_Coord_6_157_point_1()
		{
			double[] value = {-0.0678,37.9176,-3.3193,-0.0564,38.0064,-3.1635,-0.0719,38.119,-3.3334,-0.0337,38.5114,-3.0221,-0.0134,38.5888,-3.0,-0.0188,38.5632,-3.1944,-0.0799,37.8429,-3.1905,-0.1008,37.9079,-3.1542,-0.1138,37.9107,-3.0658,-0.058,37.9357,-2.8869,-0.0596,38.0133,-2.9651,-0.109,37.879,-2.4469,-0.1404,37.9219,-2.423,-0.0817,37.9705,-2.5296,0.0,37.8807,-2.5734,0.0,37.8561,-2.4725,-0.0199,37.8615,-2.4775,-0.2096,37.6486,-2.2669,-0.1548,37.7996,-2.3536,-0.1337,37.7818,-2.3501,-0.3816,37.9076,-2.3072,-0.3839,37.772,-2.3739,-0.3985,37.7706,-2.3714,-0.4109,37.9475,-2.2549,-0.3735,37.9168,-2.3157,-0.2781,37.4452,-2.0622,-0.3756,37.3559,-2.1802,-0.3183,37.4173,-2.1762,-0.4454,37.4272,-2.1572,-0.4353,37.4683,-2.3166,-0.4155,37.3922,-2.2679,-0.6079,38.4192,-2.1279,-0.5344,38.4787,-2.1828,-0.4985,38.2884,-2.101,-0.2739,37.6505,-1.9538,-0.2266,37.7911,-1.9299,-0.2735,37.7887,-1.9278,-0.3864,38.1012,-2.2173,-0.3747,38.1042,-2.2243,-0.3513,37.9275,-2.3053,-0.2257,37.6431,-1.9994,-0.1832,37.6346,-2.0382,-0.4525,38.1472,-2.065,-0.4173,38.0634,-1.9232,-0.4883,38.1755,-1.8619,-0.7992,38.3687,-2.1381,-0.8081,38.371,-2.0985,-0.8265,38.3876,-2.1604,-0.774,38.3881,-2.1901,-0.7676,38.3798,-2.1741,-0.7772,38.3672,-2.1603,-0.8018,38.3307,-1.9967,-0.9705,38.32,-1.9714,-0.9625,38.4115,-2.0845,-0.8219,38.4565,-2.1911,-0.8467,38.4988,-2.1912,-0.7463,38.5813,-2.281,-0.2179,38.6169,-2.0249,-0.1951,38.5834,-2.0366,-0.293,38.5508,-2.0115,-0.3024,38.7752,-1.9687,-0.3121,38.7829,-1.9138,-0.2682,38.6739,-1.9155,-0.298,38.7219,-1.9717,-0.2953,38.6764,-1.9679,-0.1987,38.6361,-1.9787,-0.1864,38.6287,-1.9754,-0.1728,38.6017,-1.9856,-0.179,38.6011,-1.9938,-0.0932,38.5977,-2.0388,-0.1208,38.5117,-2.0987,-0.6393,39.1133,-2.0834,-0.6794,39.0535,-2.1854,-0.6487,39.1049,-2.0762,-0.5283,39.0557,-1.9064,-0.477,39.0768,-1.9934,-0.5754,39.0878,-1.9662,-0.5784,38.9163,-2.5038,-0.6215,38.9503,-2.4468,-0.6089,38.9595,-2.4465,-0.5199,39.1322,-2.1359,-0.5129,39.1232,-2.1407,-0.5386,39.1026,-2.244,-0.5385,38.5216,-2.2989,-0.5285,38.5296,-2.296,-0.5533,39.0252,-2.3832,-0.561,39.0424,-2.3667,-0.5541,39.0382,-2.3659,-0.2431,38.3002,-2.1481,-0.4031,38.3901,-2.1169,-0.3489,38.4406,-2.0612,-0.6739,38.4849,-2.2622,-0.569,38.8971,-2.5139,-0.5487,38.8792,-2.4851,-0.5644,38.8327,-2.5049,-0.6794,38.8817,-2.5372,-0.6875,38.9478,-2.476,-0.8126,38.2691,-1.9077,-0.9618,38.2903,-1.9038,-0.9595,38.2878,-1.9145,-1.2975,38.2918,-1.974,-1.1195,38.3118,-1.9471,-1.1212,38.3151,-1.9355,-0.7357,38.2471,-1.8693,-0.741,38.2506,-1.9128,-0.6995,38.2327,-1.8954,-1.4014,38.3011,-2.0938,-1.4373,38.2828,-2.0395,-1.4951,38.2941,-2.0712,-0.6138,38.7565,-1.6881,-0.5715,38.8014,-1.7562,-0.6735,38.715,-1.6312,-0.6753,38.7456,-1.5924,-0.5271,38.8394,-1.6596,-0.596,38.7846,-1.6333,-0.5714,38.7981,-1.6516,-0.5714,38.759,-1.6755,-0.578,38.756,-1.6832,-0.6036,38.7372,-1.6771,-0.1581,38.5229,-2.0003,-0.2641,38.6656,-1.9071,-0.3672,38.7312,-1.7298,-0.36,38.6585,-1.7881,-0.3773,38.7349,-1.7947,-0.3103,38.7655,-1.6809,-0.305,38.6513,-1.6532,-0.3388,38.9211,-1.9913,-0.3799,38.94,-1.9359,-0.3887,38.778,-1.7757,-0.4641,38.7932,-1.7736,-0.4203,38.798,-1.7372,-0.3219,38.8006,-1.684,-0.3606,38.7764,-1.7356,-0.3772,38.8107,-1.6901,-0.8679,37.9601,-0.7879,-0.8734,37.9849,-0.787,-0.95,37.9604,-0.9714,-0.8273,37.8944,-1.2792,-0.8209,37.8721,-1.27,-0.8416,37.9023,-1.2589,-0.3171,38.817,-1.6805,-0.5805,38.9303,-0.884,-0.4783,38.8928,-0.9542,-0.6353,38.9124,-0.9637,-0.1781,38.6389,-1.6252,-0.5127,38.9094,-1.607,-0.3017,38.9242,-1.6235,-0.3043,38.9107,-1.646,-0.2914,38.3075,-1.5322,-0.284,38.204,-1.5249,-0.4204,38.1996,-1.5207,-0.3556,38.4084,-1.783,-0.4282,38.295,-1.6671,-0.3526,38.2416,-1.7797,-0.3727,38.4157,-1.6934,-0.4222,38.2799,-1.5389,-0.1453,37.8122,-2.0572,-0.1511,37.7458,-2.1595,-0.2387,37.5722,-2.2417,-0.2818,37.5316,-2.2655,-0.4183,37.4684,-2.3199,-0.3992,37.3876,-2.262,-0.3886,37.419,-2.0312,-0.3454,37.4216,-2.0079,0.0,38.4675,-3.2841,0.0,38.361,-3.3328,-0.0176,38.4742,-3.2829,-0.0553,37.8319,-3.2811,-0.0178,37.7683,-2.9051,0.0,37.7654,-2.9111,0.0,37.8365,-2.7583,-0.276,37.6536,-2.3398,-0.211,37.8472,-2.363,-0.3891,38.5217,-2.0228,-0.3558,38.5315,-2.0163,-0.3776,38.4948,-2.0326,-0.4754,37.6888,-2.2268,-0.4424,37.5539,-2.383,-0.1467,38.3013,-2.1671,-0.1411,38.1487,-2.285,-0.2227,38.1146,-2.2512,-0.014,38.6613,-2.3086,0.0,38.6658,-2.3031,0.0,38.6841,-2.5568,-0.0091,37.9461,-2.3046,0.0,38.1594,-2.001,-0.0681,38.0194,-2.0215,0.0,38.0411,-2.0389,-0.5808,38.2073,-1.5085,-0.4097,38.0451,-1.8923,-0.4885,38.1488,-1.8283,-0.4664,37.8626,-2.1374,-0.4388,37.7864,-2.0243,-0.414,37.9501,-1.9765,-0.4226,38.0172,-2.0935,-0.4236,38.0122,-2.1021,-0.487,38.2952,-2.0127,-0.4391,38.1814,-2.1354,-0.4312,38.7797,-2.0751,-0.4713,38.6926,-2.1043,-0.4832,38.7741,-2.1336,-0.4454,38.3513,-2.1666,-0.5177,38.4739,-2.1605,-0.6291,38.6602,-2.4854,-0.5416,38.5731,-2.4116,-0.623,38.5574,-2.4165,-0.5494,38.9283,-2.3162,-0.5241,38.8175,-2.2754,-0.5461,38.7697,-2.4272,-0.7462,38.9254,-2.4501,-0.8003,38.8698,-2.0994,-0.7113,38.9698,-2.3082,-0.7208,38.659,-2.3869,-0.7614,38.8489,-2.4837,-0.6945,38.7747,-2.5251,-1.5521,38.6179,-2.0803,-1.5441,38.6859,-2.1194,-1.5746,38.5885,-2.1251,-1.5748,38.4474,-2.1054,-0.9549,38.4991,-2.1252,-0.9461,38.6173,-2.0844,-0.8585,38.6341,-2.1161,-1.2537,38.6403,-2.09,-1.2507,38.7376,-2.0432,-1.1052,38.7085,-1.9968,-1.5235,38.6724,-2.1626,-1.3941,38.7302,-2.1096,-1.3994,38.668,-2.1604,-1.4279,38.5338,-2.1658,-1.0953,38.5165,-2.0765,-1.1028,38.6266,-2.0494,-1.404,38.4107,-2.1391,-1.5298,38.4301,-2.1548,-1.5463,38.5645,-2.1669,-1.5498,38.3425,-2.0897,-1.4986,38.2992,-2.0605,-1.5155,38.3613,-2.0582,-1.1082,38.3294,-2.0095,-1.1033,38.4143,-2.0594,-1.1635,38.3753,-1.8967,-1.32,38.3717,-1.9396,-0.8132,38.2688,-1.8952,-0.8096,38.3586,-1.7533,-0.9727,38.3854,-1.8365,-0.4428,38.8627,-1.8422,-0.3943,38.9345,-1.9285,-0.5457,39.1077,-2.2433,-0.6002,39.0899,-2.2249,-0.5616,39.1344,-2.1275,-0.6919,38.3214,-1.6548,-0.7358,38.3853,-1.64,-0.533,39.0448,-1.897,-0.5862,39.0801,-1.9619,-0.6996,38.9779,-1.9712,-0.7506,38.7393,-1.7012,-0.4392,38.8979,-1.5105,-0.5037,38.9204,-1.582,-0.703,38.8994,-1.4675,-0.5762,38.8974,-1.4266,-0.4106,38.8424,-1.3537,-0.1599,38.9239,-1.5371,-0.2929,38.9102,-1.5286,-0.7633,38.845,-1.4856,-0.857,38.8452,-1.284,-0.7179,38.8933,-1.4724,-0.6828,38.9447,-0.6272,-0.653,38.8563,-0.6012,-0.547,38.8948,-0.493,-0.6814,38.4088,-1.497,-0.7288,38.5704,-1.528,-0.7482,38.5197,-1.6573,-0.7001,38.5871,-1.3997,-0.7241,38.6302,-1.5395,-0.7697,38.7139,-1.4561,-0.7187,38.74,-1.5204,-0.6253,38.6656,-0.6022,-0.7745,38.8351,-0.752,-0.86,38.1354,-0.987,-0.8235,38.1415,-0.8153,-0.7816,38.3128,-0.8559,-0.6416,38.2509,-1.5038,-0.6783,38.2513,-1.3592,-0.6713,38.4123,-1.373,-0.5655,38.0571,-1.4388,-0.6669,38.0668,-1.373,-0.6883,38.1768,-1.3623,-0.5879,37.9014,-1.463,-0.4031,38.0643,-1.5083,-0.9496,37.9557,-0.9947,-0.9032,38.0228,-1.1387,-0.9336,37.9251,-1.0983,-0.7826,38.0206,-0.6131,-0.6586,38.0278,-0.4947,-0.6275,38.185,-0.5263,-0.3518,37.9769,-0.3676,-0.3363,38.0413,-0.3164,-0.5098,38.0257,-0.3916,-0.8101,37.8848,-1.1236,-0.8264,37.8908,-0.9801,-0.9069,37.8948,-0.9781,-0.8978,37.8703,-1.1005,-0.7903,37.8529,-1.249,-0.4832,37.964,-1.1402,-0.5972,37.929,-1.1305,-0.5104,37.928,-1.3373,-0.5837,37.8874,-1.4515,-0.6482,37.8653,-1.347,-0.6956,37.8817,-1.3766,0.0,37.8865,-1.4598,0.0,37.8913,-1.411,-0.1323,37.8902,-1.4254,-0.5977,37.9409,-0.7554,-0.4866,37.9684,-0.8506,-0.4916,37.956,-0.6803,-0.3318,37.9917,-0.7392,-0.3515,37.9649,-0.5865,-0.4384,37.9874,-0.844,-0.3139,37.9408,-1.3253,-0.315,37.9978,-1.1322,-0.1386,37.9344,-1.3109,0.7179,38.8933,-1.4724,0.747,38.8981,-1.3794,0.7776,38.8968,-1.2993,0.0,37.9577,-2.3147,0.0091,37.9461,-2.3046,0.0,38.0473,-2.2021,0.0103,37.886,-2.5726,0.0132,37.8469,-2.7591,0.0206,37.8913,-2.5718,0.0178,37.7683,-2.9051,0.0585,37.7207,-3.1077,0.0375,37.7888,-2.8979,0.0192,37.7093,-3.1011,0.0177,37.839,-3.2895,0.0228,38.0936,-3.3789,0.0719,38.119,-3.3334,0.0678,37.9176,-3.3193,0.0224,38.2466,-3.3626,0.0178,38.3623,-3.3305,0.0746,38.2558,-3.3228,0.0102,38.6354,-2.7774,0.0196,38.511,-2.8081,0.0337,38.5114,-3.0221,0.0799,37.8429,-3.1905,0.1008,37.9079,-3.1542,0.0942,37.7926,-3.1171,0.0893,37.8686,-2.4502,0.0737,37.9186,-2.5677,0.109,37.879,-2.4469,0.4226,38.0172,-2.0935,0.4236,38.0122,-2.1021,0.4181,38.0261,-2.1065,0.333,37.4207,-2.0097,0.2781,37.4452,-2.0622,0.348,37.3678,-2.0467,0.5251,38.4843,-2.1671,0.5344,38.4787,-2.1828,0.5177,38.4739,-2.1605,0.3735,37.9168,-2.3157,0.3839,37.772,-2.3739,0.3513,37.9275,-2.3053,0.3555,37.9915,-1.902,0.2679,37.9158,-1.918,0.2817,37.9106,-1.9174,0.3992,37.3876,-2.262,0.4183,37.4684,-2.3199,0.4155,37.3922,-2.2679,0.2257,37.6431,-1.9994,0.1933,37.8002,-1.9546,0.1453,37.8122,-2.0572,0.3698,37.9068,-1.9264,0.4173,38.0634,-1.9232,0.4097,38.0451,-1.8923,0.8066,38.4145,-2.1877,0.8219,38.4565,-2.1911,0.8658,38.3973,-2.1479,0.9625,38.4115,-2.0845,0.8467,38.4988,-2.1912,0.9549,38.4991,-2.1252,0.375,38.1087,-2.2218,0.2329,38.2074,-2.1997,0.2431,38.3002,-2.1481,0.1298,38.1322,-1.9177,0.0649,38.1458,-1.9593,0.0681,38.0194,-2.0215,0.2682,38.6739,-1.9155,0.1987,38.6361,-1.9787,0.1864,38.6287,-1.9754,0.2953,38.6764,-1.9679,0.2179,38.6169,-2.0249,0.2694,38.6762,-1.9033,0.3253,38.7811,-1.9057,0.3121,38.7829,-1.9138,0.4998,38.9835,-1.8786,0.533,39.0448,-1.897,0.5283,39.0557,-1.9064,0.7298,38.8407,-1.8537,0.8,38.8357,-1.9468,0.7199,38.9561,-1.9971,0.3799,38.94,-1.9359,0.3943,38.9345,-1.9285,0.477,39.0768,-1.9934,0.3074,38.7744,-1.9808,0.3024,38.7752,-1.9687,0.3388,38.9211,-1.9913,0.298,38.7219,-1.9717,0.437,38.5557,-2.0847,0.4629,38.541,-2.1189,0.4585,38.5279,-2.1145,0.3489,38.4406,-2.0612,0.4111,38.4838,-2.0825,0.4031,38.3901,-2.1169,0.4493,38.531,-2.0977,0.4177,38.52,-2.0542,0.4642,38.3314,-2.1649,0.4454,38.3513,-2.1666,0.464,38.8786,-2.0989,0.4951,38.8555,-2.163,0.4832,38.7741,-2.1336,0.7996,38.7363,-1.762,0.8575,38.7263,-1.8294,0.8553,38.7376,-1.8395,1.5484,38.3396,-2.1019,1.4886,38.3203,-2.1229,1.5298,38.4301,-2.1548,1.4427,38.2874,-2.0302,1.4986,38.2992,-2.0605,1.4565,38.3531,-1.9979,0.6188,38.7599,-1.6488,0.6133,38.7696,-1.6389,0.6753,38.7456,-1.5924,0.6735,38.715,-1.6312,0.6195,38.7528,-1.6633,0.5271,38.8394,-1.6596,0.5714,38.7981,-1.6516,0.5651,38.7959,-1.6704,0.1645,38.9179,-1.6209,0.3171,38.817,-1.6805,0.1687,38.8513,-1.6698,0.4021,38.8023,-1.816,0.3773,38.7349,-1.7947,0.3887,38.778,-1.7757,0.5451,38.8082,-1.7038,0.4203,38.798,-1.7372,0.3772,38.8107,-1.6901,0.3219,38.8006,-1.684,0.3606,38.7764,-1.7356,0.3672,38.7312,-1.7298,0.372,38.8289,-1.6903,0.5235,38.8503,-1.6523,0.7633,38.845,-1.4856,0.7675,38.8319,-1.4872,0.7642,38.8329,-1.4912,0.4513,38.8111,-1.8182,0.4641,38.7932,-1.7736,0.5715,38.8014,-1.7562,0.4222,38.2799,-1.5389,0.2914,38.3075,-1.5322,0.2961,38.4213,-1.569,0.3526,38.2416,-1.7797,0.3556,38.4084,-1.783,0.2507,38.361,-1.863,0.0,38.305,-2.039,0.0724,38.2971,-1.9912,0.0799,38.4483,-2.0231,0.029,38.0254,-2.1091,0.3023,38.5324,-1.6032,0.3818,38.555,-1.6639,0.3756,37.3559,-2.1802,0.361,37.3667,-2.0474,0.3869,37.3554,-2.173,0.4484,37.4272,-2.1572,0.4651,37.6487,-2.0945,0.3759,37.6232,-1.9936,0.3886,37.419,-2.0312,0.0554,37.8835,-2.488,0.0,38.5653,-3.18,0.0188,38.5632,-3.1944,0.0176,38.4742,-3.2829,0.0136,37.9275,-3.3379,0.0,37.8423,-3.2934,0.1138,37.9107,-3.0658,0.058,37.9357,-2.8869,0.1027,37.8316,-3.0341,0.211,37.8472,-2.363,0.4301,37.5539,-2.385,0.276,37.6536,-2.3398,0.3891,38.5217,-2.0228,0.3757,38.5521,-2.017,0.4034,38.5449,-2.0385,0.4353,37.4683,-2.3166,0.4754,37.6888,-2.2268,0.1547,38.0063,-2.3747,0.1411,38.1487,-2.285,0.2227,38.1146,-2.2512,0.2266,37.7911,-1.9299,0.1427,38.0153,-1.9455,0.0367,37.9459,-2.1317,0.2438,38.2048,-1.8404,0.4282,38.295,-1.6671,0.4885,38.1488,-1.8283,0.583,38.2638,-1.9189,0.5489,38.2136,-1.8894,0.5494,38.2685,-1.9582,0.4525,38.1472,-2.065,0.5818,38.2819,-1.9511,0.569,38.3782,-2.033,0.487,38.2952,-2.0127,0.6079,38.4192,-2.1279,0.391,38.242,-2.1818,0.5461,38.7697,-2.4272,0.5208,38.7047,-2.384,0.5106,38.7415,-2.2436,0.4958,38.6639,-2.2156,0.5029,38.6325,-2.3502,0.5615,38.6891,-2.4609,0.5487,38.8792,-2.4851,0.5644,38.8327,-2.5049,0.3412,38.9191,-2.0026,0.4283,39.069,-2.0461,0.5129,39.1232,-2.1407,0.5386,39.1026,-2.244,0.5316,38.9634,-2.2144,0.6794,38.8817,-2.5372,0.7614,38.8489,-2.4837,0.6945,38.7747,-2.5251,1.5235,38.6724,-2.1626,1.5408,38.6879,-2.1335,1.5732,38.5875,-2.1394,0.7974,38.782,-2.175,0.8003,38.8698,-2.0994,0.8661,38.7819,-2.0549,0.7462,38.9254,-2.4501,0.7866,38.8563,-2.3283,1.3079,38.7732,-1.9904,1.1719,38.651,-1.9198,1.3447,38.6396,-1.9741,1.4807,38.6419,-2.0212,1.4449,38.754,-2.0519,0.7689,38.7721,-2.3568,0.7463,38.5813,-2.281,0.7208,38.659,-2.3869,0.9461,38.6173,-2.0844,0.8585,38.6341,-2.1161,1.2537,38.6403,-2.09,1.3941,38.7302,-2.1096,1.3994,38.668,-2.1604,1.0953,38.5165,-2.0765,1.1033,38.4143,-2.0594,1.4014,38.3011,-2.0938,1.404,38.4107,-2.1391,1.4951,38.2941,-2.0712,1.1195,38.3118,-1.9471,1.1082,38.3294,-2.0095,1.2425,38.2998,-2.0281,0.5887,38.235,-1.8793,0.6333,38.2519,-1.9084,0.6416,38.2509,-1.5038,0.5808,38.2073,-1.5085,0.6347,38.2557,-1.68,0.5199,39.1322,-2.1359,0.4295,39.0757,-2.0358,0.4652,39.0891,-1.9993,0.6487,39.1049,-2.0762,0.9559,38.7354,-1.9124,0.9727,38.3854,-1.8365,0.9603,38.5134,-1.8383,0.8401,38.4824,-1.7469,0.6919,38.3214,-1.6548,0.7358,38.3853,-1.64,0.6814,38.4088,-1.497,0.6996,38.9779,-1.9712,0.5411,38.8802,-1.8466,0.8096,38.3586,-1.7533,0.7482,38.5197,-1.6573,0.7605,38.8324,-1.4968,0.4993,38.8374,-1.14,0.3048,38.8548,-1.1284,0.2989,38.8854,-0.9526,0.8626,38.8909,-0.9339,0.8447,38.8182,-0.9079,0.878,38.8477,-1.1339,0.8597,38.834,-1.2848,0.7697,38.7139,-1.4561,0.7241,38.6302,-1.5395,0.7288,38.5704,-1.528,0.7001,38.5871,-1.3997,0.6713,38.4123,-1.373,0.8425,38.1219,-1.1361,0.7267,38.2811,-1.1736,0.7793,38.2989,-1.0129,0.6883,38.1768,-1.3623,0.778,38.0867,-1.2755,0.6669,38.0668,-1.373,0.2981,37.8834,-1.5259,0.112,37.9124,-1.4928,0.1201,38.0646,-1.5171,0.8734,37.9849,-0.787,0.8235,38.1415,-0.8153,0.7169,38.1579,-0.6476,0.9069,37.8948,-0.9781,0.8273,37.9159,-0.8192,0.8264,37.8908,-0.9801,0.423,37.8937,-1.4549,0.5524,37.9017,-1.4261,0.5104,37.928,-1.3373,0.8209,37.8721,-1.27,0.7903,37.8529,-1.249,0.6482,37.8653,-1.347,0.5837,37.8874,-1.4515,0.3007,37.871,-1.5117,0.1323,37.8902,-1.4254,0.1137,37.8984,-1.4755,0.6338,37.9294,-0.8298,0.6829,37.9313,-0.9879,0.5977,37.9409,-0.7554,0.4866,37.9684,-0.8506,0.4384,37.9874,-0.844,0.3318,37.9917,-0.7392,0.3349,37.9953,-0.8541,0.5094,37.9908,-0.9952,0.315,37.9978,-1.1322,0.4832,37.964,-1.1402,0.3383,37.8887,-1.4698,0.3139,37.9408,-1.3253,0.1537,37.9904,-1.1367,0.1699,37.9965,-0.9932,0.0,38.0112,-0.9771,0.4916,37.956,-0.6803,0.6251,37.9534,-0.5452,0.5142,37.9699,-0.4545,0.4217,37.8915,-1.4975,0.6956,37.8817,-1.3766,0.5972,37.929,-1.1305,0.8978,37.8703,-1.1005,0.8101,37.8848,-1.1236,0.7826,38.0206,-0.6131,0.6275,38.185,-0.5263,0.4204,38.1996,-1.5207,0.5655,38.0571,-1.4388,0.6783,38.2513,-1.3592,0.7816,38.3128,-0.8559,0.3491,38.3402,-0.3886,0.3393,38.1999,-0.3645,0.4914,38.1951,-0.4198,0.7187,38.74,-1.5204,0.5319,38.9667,-0.5083,0.547,38.8948,-0.493,0.6828,38.9447,-0.6272,0.857,38.8452,-1.284,0.2929,38.9102,-1.5286,0.3017,38.9242,-1.6235,0.1638,38.924,-1.6088,0.4392,38.8979,-1.5105,0.4106,38.8424,-1.3537,0.5762,38.8974,-1.4266,0.5037,38.9204,-1.582,0.6654,38.8914,-1.3052,0.6756,38.8779,-1.1511,0.5258,38.9482,-0.8043,0.5196,39.0009,-0.6654,0.6147,38.9868,-0.7444,0.7506,38.7393,-1.7012,0.5616,39.1344,-2.1275,0.5457,39.1077,-2.2433,0.4428,38.8627,-1.8422,0.8132,38.2688,-1.8952,0.9618,38.2903,-1.9038,0.9595,38.2878,-1.9145,1.32,38.3717,-1.9396,1.1635,38.3753,-1.8967,1.2975,38.2918,-1.974,0.9705,38.32,-1.9714,1.5155,38.3613,-2.0582,1.5498,38.3425,-2.0897,1.5463,38.5645,-2.1669,1.4279,38.5338,-2.1658,1.2574,38.534,-2.1172,1.5746,38.5885,-2.1251,1.5441,38.6859,-2.1194,1.5521,38.6179,-2.0803,0.623,38.5574,-2.4165,0.6291,38.6602,-2.4854,1.1052,38.7085,-1.9968,1.1172,38.7384,-1.9613,1.3036,38.7773,-1.9987,0.7113,38.9698,-2.3082,0.6794,39.0535,-2.1854,0.6875,38.9478,-2.476,0.6313,39.0059,-2.3548,0.6215,38.9503,-2.4468,0.489,39.0138,-2.1204,0.5241,38.8175,-2.2754,0.5663,38.946,-2.4822,0.5533,39.0252,-2.3832,0.4713,38.6926,-2.1043,0.4011,38.6807,-2.0476,0.4312,38.7797,-2.0751,0.4391,38.1814,-2.1354,0.4388,37.7864,-2.0243,0.4664,37.8626,-2.1374,0.414,37.9501,-1.9765,0.4192,37.9636,-2.2301,0.4109,37.9475,-2.2549,0.4486,37.7421,-2.3541,0.5418,38.2129,-1.6599,0.1404,37.9219,-2.423,0.0199,37.8615,-2.4775,0.0126,38.6828,-2.5659,0.1467,38.3013,-2.1671,0.4424,37.5539,-2.383,0.3776,38.4948,-2.0326,0.3558,38.5315,-2.0163,0.1548,37.7996,-2.3536,0.0553,37.8319,-3.2811,0.0596,38.0133,-2.9651,0.3454,37.4216,-2.0079,0.2818,37.5316,-2.2655,0.9336,37.9251,-1.0983,0.8416,37.9023,-1.2589,0.9032,38.0228,-1.1387,0.3727,38.4157,-1.6934,0.284,38.204,-1.5249,0.703,38.8994,-1.4675,0.1781,38.6389,-1.6252,0.1778,38.7573,-1.6756,0.3103,38.7655,-1.6809,0.6353,38.9124,-0.9637,0.4783,38.8928,-0.9542,0.5805,38.9303,-0.884,0.8273,37.8944,-1.2792,0.9488,37.9351,-0.9713,0.95,37.9604,-0.9714,0.3745,38.6431,-1.6969,0.305,38.6513,-1.6532,0.36,38.6585,-1.7881,0.3696,38.6474,-1.7229,0.1581,38.5229,-2.0003,0.261,38.5954,-1.8969,0.2641,38.6656,-1.9071,0.1728,38.6017,-1.9856,0.6036,38.7372,-1.6771,0.5888,38.7512,-1.687,0.578,38.756,-1.6832,0.5762,38.7841,-1.6964,0.5922,38.7756,-1.7021,0.596,38.7846,-1.6333,0.6138,38.7565,-1.6881,0.6995,38.2327,-1.8954,0.7357,38.2471,-1.8693,0.7201,38.2383,-1.8645,1.1212,38.3151,-1.9355,1.2944,38.2867,-1.9852,0.8126,38.2691,-1.9077,0.569,38.8971,-2.5139,0.5385,38.5216,-2.2989,0.6739,38.4849,-2.2622,0.5285,38.5296,-2.296,0.5353,38.5931,-2.4129,0.5416,38.5731,-2.4116,0.5314,38.5797,-2.4057,0.6318,39.0082,-2.3392,0.6214,39.018,-2.346,0.6089,38.9595,-2.4465,0.5811,38.8976,-2.5222,0.1208,38.5117,-2.0987,0.0932,38.5977,-2.0388,0.179,38.6011,-1.9938,0.293,38.5508,-2.0115,0.1951,38.5834,-2.0366,0.0846,38.3079,-2.2688,0.081,38.4734,-2.1319,0.0271,38.5983,-2.0846,0.0,38.5961,-2.059,0.014,38.6312,-2.246,0.8018,38.3307,-1.9967,0.774,38.3881,-2.1901,0.7975,38.3935,-2.1838,0.8078,38.3796,-2.1697,0.7772,38.3672,-2.1603,0.8081,38.371,-2.0985,0.7992,38.3687,-2.1381,0.8265,38.3876,-2.1604,0.4883,38.1755,-1.8619,0.3747,38.1042,-2.2243,0.3864,38.1012,-2.2173,0.2735,37.7887,-1.9278,0.2606,37.6511,-1.9564,0.2739,37.6505,-1.9538,0.4985,38.2884,-2.101,0.4117,37.9759,-2.2384,0.3816,37.9076,-2.3072,0.3985,37.7706,-2.3714,0.1337,37.7818,-2.3501,0.2096,37.6486,-2.2669,0.0817,37.9705,-2.5296,0.0437,37.958,-2.7751,0.0428,38.0192,-2.8049,0.0423,38.0187,-2.7282,0.014,38.6613,-2.3086,0.0524,38.5108,-2.3566,0.0134,38.5888,-3.0,0.0575,38.4843,-3.247,-0.1537,37.9904,-1.1367,-0.1699,37.9965,-0.9932,-0.3383,37.8887,-1.4698,-0.5094,37.9908,-0.9952,-0.3349,37.9953,-0.8541,-0.6338,37.9294,-0.8298,-0.8273,37.9159,-0.8192,-0.6829,37.9313,-0.9879,-0.1137,37.8984,-1.4755,-0.4217,37.8915,-1.4975,-0.423,37.8937,-1.4549,-0.5524,37.9017,-1.4261,-0.9289,37.9,-1.0888,-0.7169,38.1579,-0.6476,-0.8425,38.1219,-1.1361,-0.778,38.0867,-1.2755,-0.1201,38.0646,-1.5171,-0.2981,37.8834,-1.5259,-0.2736,38.0601,-1.5147,-0.7793,38.2989,-1.0129,-0.7267,38.2811,-1.1736,-0.7695,38.6542,-1.6775,-0.8177,38.7448,-1.2754,-0.8597,38.834,-1.2848,-0.878,38.8477,-1.1339,-0.8447,38.8182,-0.9079,-0.8626,38.8909,-0.9339,-0.7605,38.8324,-1.4968,-0.8401,38.4824,-1.7469,-0.5411,38.8802,-1.8466,-0.9603,38.5134,-1.8383,-0.8,38.8357,-1.9468,-0.9559,38.7354,-1.9124,-0.8553,38.7376,-1.8395,-0.7199,38.9561,-1.9971,-0.6107,39.0814,-2.2178,-0.4652,39.0891,-1.9993,-0.6347,38.2557,-1.68,-0.5932,38.2089,-1.8111,-0.5418,38.2129,-1.6599,-0.6333,38.2519,-1.9084,-0.6424,38.2888,-1.961,-0.583,38.2638,-1.9189,-1.5484,38.3396,-2.1019,-1.4886,38.3203,-2.1229,-0.7689,38.7721,-2.3568,-1.5445,38.4887,-2.0652,-1.4807,38.6419,-2.0212,-1.3447,38.6396,-1.9741,-1.3079,38.7732,-1.9904,-1.1719,38.651,-1.9198,-0.7866,38.8563,-2.3283,-1.3036,38.7773,-1.9987,-0.9638,38.6931,-2.0349,-1.1172,38.7384,-1.9613,-0.8661,38.7819,-2.0549,-0.7974,38.782,-2.175,-0.5753,38.8303,-2.5131,-0.5712,38.6834,-2.4691,-0.5316,38.9634,-2.2144,-0.489,39.0138,-2.1204,-0.4958,38.6639,-2.2156,-0.4629,38.541,-2.1189,-0.5251,38.4843,-2.1671,-0.5494,38.2685,-1.9582,-0.5818,38.2819,-1.9511,-0.4192,37.9636,-2.2301,-0.1298,38.1322,-1.9177,-0.2438,38.2048,-1.8404,-0.1427,38.0153,-1.9455,-0.0649,38.1458,-1.9593,-0.029,38.0254,-2.1091,-0.0367,37.9459,-2.1317,-0.1933,37.8002,-1.9546,-0.1547,38.0063,-2.3747,-0.3517,38.6006,-2.014,-0.4177,38.52,-2.0542,-0.4034,38.5449,-2.0385,-0.4301,37.5539,-2.385,-0.0511,38.1433,-3.137,-0.0437,37.958,-2.7751,-0.0206,37.8913,-2.5718,-0.0737,37.9186,-2.5677,-0.1027,37.8316,-3.0341,-0.0585,37.7207,-3.1077,-0.0375,37.7888,-2.8979,-0.0136,37.9275,-3.3379,0.0,37.9305,-3.3435,-0.0554,37.8835,-2.488,-0.4651,37.6487,-2.0945,-0.3759,37.6232,-1.9936,-0.3869,37.3554,-2.173,-0.361,37.3667,-2.0474,-0.348,37.3678,-2.0467,-0.3899,38.423,-1.6037,-0.3818,38.555,-1.6639,-0.3023,38.5324,-1.6032,0.0,38.4535,-2.0547,-0.0724,38.2971,-1.9912,-0.2507,38.361,-1.863,-0.4513,38.8111,-1.8182,-0.7642,38.8329,-1.4912,-0.7675,38.8319,-1.4872,-0.372,38.8289,-1.6903,-0.5235,38.8503,-1.6523,-0.4021,38.8023,-1.816,-0.3253,38.7811,-1.9057,-0.3745,38.6431,-1.6969,-0.3696,38.6474,-1.7229,-0.1687,38.8513,-1.6698,-0.1645,38.9179,-1.6209,-0.6133,38.7696,-1.6389,-0.6188,38.7599,-1.6488,-1.4565,38.3531,-1.9979,-1.4427,38.2874,-2.0302,-0.5768,38.9483,-2.4835,-0.464,38.8786,-2.0989,-0.4642,38.3314,-2.1649,-0.4585,38.5279,-2.1145,-0.437,38.5557,-2.0847,-0.5811,38.8976,-2.5222,-0.3074,38.7744,-1.9808,-0.3412,38.9191,-2.0026,-0.7298,38.8407,-1.8537,-0.4493,38.531,-2.0977,-0.2694,38.6762,-1.9033,-0.375,38.1087,-2.2218,-0.381,38.2281,-2.1871,-0.8658,38.3973,-2.1479,-0.8066,38.4145,-2.1877,-0.7153,38.3183,-2.0175,-0.569,38.3782,-2.033,-0.5489,38.2136,-1.8894,-0.2817,37.9106,-1.9174,-0.2679,37.9158,-1.918,-0.3555,37.9915,-1.902,-0.333,37.4207,-2.0097,-0.4181,38.0261,-2.1065,-0.0132,37.8469,-2.7591,-0.0893,37.8686,-2.4502,-0.0423,38.0187,-2.7282,-0.0942,37.7926,-3.1171,-0.0196,38.511,-2.8081,-0.0102,38.6354,-2.7774,-0.0575,38.4843,-3.247,-0.0746,38.2558,-3.3228,-0.0651,38.3529,-3.2863,-0.0224,38.2466,-3.3626,-0.0228,38.0936,-3.3789,-0.0192,37.7093,-3.1011,-0.0103,37.886,-2.5726,-0.0719,37.8657,-2.2349,-0.0177,37.839,-3.2895,-0.0178,38.3623,-3.3305,-0.4117,37.9759,-2.2384,-0.4179,38.0819,-2.1755,-0.4005,38.2104,-2.1828,-0.391,38.242,-2.1818,-0.2329,38.2074,-2.1997,-0.2728,38.5225,-2.0294,-0.4111,38.4838,-2.0825,-0.4998,38.9835,-1.8786,-0.4951,38.8555,-2.163,-0.8575,38.7263,-1.8294,-0.7996,38.7363,-1.762,-1.5739,38.4462,-2.1186,-0.6195,38.7528,-1.6633,-0.5651,38.7959,-1.6704,-0.9488,37.9351,-0.9713,-0.1638,38.924,-1.6088,-0.0861,38.9161,-1.604,-0.2961,38.4213,-1.569,-0.0799,38.4483,-2.0231,-0.3757,38.5521,-2.017,-0.4486,37.7421,-2.3541,-0.2262,37.9745,-2.3095,-0.1713,38.3808,-2.1189,-0.5887,38.235,-1.8793,-0.5314,38.5797,-2.4057,-0.5029,38.6325,-2.3502,-0.9634,38.7284,-1.9181,-1.4405,38.7577,-2.0611,-1.1211,38.7339,-1.9513,-1.4449,38.754,-2.0519,-0.7927,38.6992,-2.1938,-0.4295,39.0757,-2.0358,-0.576,39.1194,-2.1248,-0.8414,38.7671,-1.1079,-0.112,37.9124,-1.4928,-0.3007,37.871,-1.5117,-0.3022,37.9962,-0.9861,0.0,37.9786,-1.1271,0.0564,38.0064,-3.1635,0.3183,37.4173,-2.1762,0.1832,37.6346,-2.0382,0.7937,38.3698,-2.1582,0.7676,38.3798,-2.1741};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getl3_Coord_6_157_point_2()
		{
			double[] value = {0.0,38.6324,-2.2332,0.2728,38.5225,-2.0294,0.6393,39.1133,-2.0834,0.5754,39.0878,-1.9662,0.5862,39.0801,-1.9619,0.5784,38.9163,-2.5038,0.5712,38.6834,-2.4691,0.5541,39.0382,-2.3659,0.561,39.0424,-2.3667,0.741,38.2506,-1.9128,0.6069,38.7342,-1.6603,0.5714,38.759,-1.6755,0.8679,37.9601,-0.7879,0.3899,38.423,-1.6037,0.1511,37.7458,-2.1595,0.2387,37.5722,-2.2417,0.6424,38.2888,-1.961,0.3517,38.6006,-2.014,0.5494,38.9283,-2.3162,1.2507,38.7376,-2.0432,0.5932,38.2089,-1.8111,0.6002,39.0899,-2.2249,0.7846,38.9028,-1.1527,0.1599,38.9239,-1.5371,0.3043,38.9107,-1.646,0.653,38.8563,-0.6012,0.5049,38.3271,-0.4658,0.86,38.1354,-0.987,0.9496,37.9557,-0.9947,0.6586,38.0278,-0.4947,0.3515,37.9649,-0.5865,0.1386,37.9344,-1.3109,0.3022,37.9962,-0.9861,0.2736,38.0601,-1.5147,0.7695,38.6542,-1.6775,0.8177,38.7448,-1.2754,0.8414,38.7671,-1.1079,0.9638,38.6931,-2.0349,0.7927,38.6992,-2.1938,1.1211,38.7339,-1.9513,0.1713,38.3808,-2.1189,0.2262,37.9745,-2.3095,0.0511,38.1433,-3.137,0.4031,38.0643,-1.5083,0.0861,38.9161,-1.604,1.5739,38.4462,-2.1186,0.5768,38.9483,-2.4835,0.381,38.2281,-2.1871,0.4005,38.2104,-2.1828,0.4179,38.0819,-2.1755,0.0651,38.3529,-3.2863,0.0719,37.8657,-2.2349,-0.5142,37.9699,-0.4545,-0.6251,37.9534,-0.5452,-0.4229,37.9037,-1.5117,-0.7263,38.6636,-0.755,-0.5319,38.9667,-0.5083,-0.6147,38.9868,-0.7444,-0.5196,39.0009,-0.6654,-0.5258,38.9482,-0.8043,-1.2574,38.534,-2.1172,-1.5732,38.5875,-2.1394,-0.6313,39.0059,-2.3548,-0.4283,39.069,-2.0461,-0.5663,38.946,-2.4822,-0.4011,38.6807,-2.0476,-0.0126,38.6828,-2.5659,-0.747,38.8981,-1.3794,-0.1778,38.7573,-1.6756,-0.261,38.5954,-1.8969,-0.6037,38.746,-1.6447,-0.5703,38.7635,-1.6658,-0.6069,38.7342,-1.6603,-0.5888,38.7512,-1.687,-0.5762,38.7841,-1.6964,-0.5668,38.7895,-1.685,-0.5451,38.8082,-1.7038,-0.5922,38.7756,-1.7021,-0.7201,38.2383,-1.8645,-1.2944,38.2867,-1.9852,-0.5353,38.5931,-2.4129,-0.6214,39.018,-2.346,-0.6318,39.0082,-2.3392,-0.081,38.4734,-2.1319,-0.0846,38.3079,-2.2688,-0.8078,38.3796,-2.1697,-0.7975,38.3935,-2.1838,-0.2606,37.6511,-1.9564,-0.0428,38.0192,-2.8049,-0.0524,38.5108,-2.3566,-0.014,38.6312,-2.246,-0.03,38.5559,-2.6096,-0.7672,38.3637,-2.1421,-0.7937,38.3698,-2.1582,-0.7611,38.4042,-2.1999,-0.7487,38.3879,-2.1689,-0.7484,38.3615,-2.1057,-0.714,38.4071,-2.156,-0.0271,38.5983,-2.0846,-0.1572,38.4434,-1.9923,-0.0819,38.525,-2.0327,-0.0855,38.5978,-2.0314,-0.5615,38.6891,-2.4609,-0.4171,38.5723,-2.0607,-0.5106,38.7415,-2.2436,-1.5408,38.6879,-2.1335,-0.7134,38.2319,-1.8648,-0.7016,38.2251,-1.8756,-1.4676,38.5016,-2.0021,-0.5747,38.7653,-1.6538,-0.5921,38.756,-1.6409,-0.6068,38.7393,-1.6509,-0.3396,38.0673,-0.3132,-0.5137,38.0513,-0.3868,-0.7855,38.9352,-0.7799,-0.79,38.9258,-0.7738,-0.6782,38.9548,-0.6333,0.0,38.9766,-0.4105,-0.1791,38.9787,-0.4225,-0.1795,38.9691,-0.413,0.0,38.9864,-0.4202,-0.1184,38.3428,-1.5085,0.0,38.211,-1.4943,-0.1193,38.2037,-1.5128,0.0,38.3378,-1.5005,-0.1391,38.4387,-1.5414,0.0,38.529,-2.0537,-0.2576,38.5173,-1.8856,-0.3585,38.5752,-1.7864,0.0,38.8341,-1.6455,0.0,38.7332,-1.6492,-0.1659,38.8374,-1.6734,0.0,37.7104,-3.097,-0.046,38.2404,-3.1128,0.0,38.5883,-2.9937,0.0,38.6364,-2.7701,-0.0375,38.1409,-2.9229,0.0,38.0847,-3.3849,-0.0252,38.4021,-2.664,-0.0236,38.3918,-2.8444,-0.0413,38.3731,-2.4602,-0.0282,38.2754,-2.7232,-0.0432,38.2365,-2.5538,-0.0829,38.1929,-2.3705,-0.0463,38.1209,-2.6428,-0.0959,38.064,-2.4612,-0.5208,38.7047,-2.384,-0.9594,38.7327,-1.9167,-1.1784,38.5032,-1.9072,-0.9728,38.6346,-1.8544,-1.3242,38.4995,-1.9513,-0.851,38.6432,-1.7663,-0.3371,39.0136,-0.5796,-0.1765,38.9915,-0.6753,-0.3449,38.9687,-0.7128,-0.1717,39.0191,-0.5626,-0.6756,38.8779,-1.1511,-0.7776,38.8968,-1.2993,-0.7846,38.9028,-1.1527,-0.6654,38.8914,-1.3052,-0.3048,38.8548,-1.1284,-0.4711,38.8395,-1.259,-0.4993,38.8374,-1.14,-0.3248,38.8519,-1.2771,-0.3126,38.9224,-0.8408,-0.1857,38.9308,-0.8356,-0.1605,38.8639,-1.2899,-0.3098,38.8662,-1.4161,-0.1527,38.8714,-1.4372,0.0,38.8906,-1.1372,-0.1817,38.8625,-1.133,0.0,38.87,-1.2953,0.0,38.9993,-0.6876,0.0,39.0281,-0.5585,-0.717,38.9614,-0.8314,-0.7396,38.4375,-1.0352,-0.7458,38.6106,-1.225,-0.7069,38.4148,-1.2001,-0.7796,38.6307,-1.0885,-0.7463,38.4568,-0.8902,-0.6827,38.4799,-0.7439,-0.6018,38.4897,-0.5911,-0.4973,38.5013,-0.4807,-0.3538,38.6967,-0.4186,-0.5128,38.6978,-0.484,-0.3374,38.5134,-0.4164,-0.1797,38.9012,-0.3901,-0.1832,38.6781,-0.3903,-0.351,38.9064,-0.417,-0.1482,38.1957,-0.3074,0.0,38.3559,-0.3555,-0.1723,38.3497,-0.3471,0.0,38.2105,-0.3087,-0.7078,38.3084,-0.7064,-0.6227,38.3167,-0.5664,-0.7017,37.8991,-1.387,-0.4914,38.1951,-0.4198,-0.3393,38.1999,-0.3645,-0.7316,37.9401,-0.6488,-0.6553,38.0031,-0.5009,-0.78,37.9969,-0.6159,-0.1609,37.9964,-0.8342,-0.1589,38.0022,-0.6847,0.0,37.9665,-0.4667,-0.1683,37.9667,-0.4714,0.0,37.9972,-0.6608,0.0,37.9212,-1.317,0.03,38.5559,-2.6096,0.3766,37.7782,-1.9502,0.7016,38.2251,-1.8756,0.7153,38.3183,-2.0175,0.7611,38.4042,-2.1999,0.714,38.4071,-2.156,0.7367,38.4373,-2.2142,0.7487,38.3879,-2.1689,0.7484,38.3615,-2.1057,0.4171,38.5723,-2.0607,0.0855,38.5978,-2.0314,0.0819,38.525,-2.0327,0.576,39.1194,-2.1248,0.6107,39.0814,-2.2178,1.4373,38.2828,-2.0395,1.5748,38.4474,-2.1054,1.4405,38.7577,-2.0611,0.5668,38.7895,-1.685,0.6068,38.7393,-1.6509,0.1434,38.0719,-0.2704,0.3363,38.0413,-0.3164,0.3396,38.0673,-0.3132,0.1436,38.0453,-0.2748,0.78,37.9969,-0.6159,0.7017,37.8991,-1.387,0.4448,38.9116,-0.8947,0.8743,38.8576,-1.1371,0.6782,38.9548,-0.6333,0.5271,38.9759,-0.5164,0.1659,38.8374,-1.6734,0.5127,38.9094,-1.607,0.1193,38.2037,-1.5128,0.1184,38.3428,-1.5085,0.3719,38.5636,-1.7159,0.3585,38.5752,-1.7864,0.0,38.6356,-1.6067,0.046,38.2404,-3.1128,0.0393,38.3648,-3.0661,0.0236,38.3918,-2.8444,0.0829,38.1929,-2.3705,0.0375,38.1409,-2.9229,0.0352,38.149,-2.7825,0.0252,38.4021,-2.664,0.0413,38.3731,-2.4602,0.0959,38.064,-2.4612,0.0463,38.1209,-2.6428,0.9728,38.6346,-1.8544,0.964,38.7241,-1.9069,1.5445,38.4887,-2.0652,1.1028,38.6266,-2.0494,1.2527,38.4063,-2.0851,0.7134,38.2319,-1.8648,0.3449,38.9687,-0.7128,0.3371,39.0136,-0.5796,0.4711,38.8395,-1.259,0.3126,38.9224,-0.8408,0.1817,38.8625,-1.133,0.3248,38.8519,-1.2771,0.1605,38.8639,-1.2899,0.0,38.912,-1.5288,0.0,38.9074,-1.5902,0.1641,38.8919,-0.9669,0.0,38.9115,-0.9792,0.0,38.8474,-1.6404,0.1795,38.9691,-0.413,0.0,38.9144,-0.3869,0.1797,38.9012,-0.3901,0.7745,38.8351,-0.752,0.79,38.9258,-0.7738,0.7458,38.6106,-1.225,0.7796,38.6307,-1.0885,0.7078,38.3084,-0.7064,0.7463,38.4568,-0.8902,0.6827,38.4799,-0.7439,0.6227,38.3167,-0.5664,0.6018,38.4897,-0.5911,0.351,38.9064,-0.417,0.5128,38.6978,-0.484,0.3538,38.6967,-0.4186,0.1832,38.6781,-0.3903,0.3374,38.5134,-0.4164,0.1818,38.5029,-0.3772,0.0,38.4899,-0.3765,0.1723,38.3497,-0.3471,0.7069,38.4148,-1.2001,0.5879,37.9014,-1.463,0.5137,38.0513,-0.3868,0.0,37.9872,-0.3059,0.0,38.0588,-0.2632,0.1476,37.986,-0.3173,0.9289,37.9,-1.0888,0.3518,37.9769,-0.3676,0.1609,37.9964,-0.8342,0.1683,37.9667,-0.4714,0.0,38.0036,-0.8297,0.7316,37.9401,-0.6488,0.6553,38.0031,-0.5009,0.0,38.0867,-0.2611,0.1482,38.1957,-0.3074,0.4229,37.9037,-1.5117,0.7396,38.4375,-1.0352,0.4973,38.5013,-0.4807,0.7852,38.6525,-0.9149,0.7263,38.6636,-0.755,0.1717,39.0191,-0.5626,0.1791,38.9787,-0.4225,0.717,38.9614,-0.8314,0.7855,38.9352,-0.7799,0.1765,38.9915,-0.6753,0.3098,38.8662,-1.4161,0.1527,38.8714,-1.4372,0.1857,38.9308,-0.8356,1.3242,38.4995,-1.9513,1.4676,38.5016,-2.0021,1.1784,38.5032,-1.9072,0.5753,38.8303,-2.5131,0.0432,38.2365,-2.5538,0.0282,38.2754,-2.7232,0.0258,38.2688,-2.8788,0.0,38.2425,-3.3678,0.1391,38.4387,-1.5414,0.0,38.5206,-1.5582,0.1582,38.5319,-1.5828,0.0,38.4298,-1.5249,0.2576,38.5173,-1.8856,0.1448,38.2874,-1.9568,0.5098,38.0257,-0.3916,0.6037,38.746,-1.6447,0.5747,38.7653,-1.6538,0.5921,38.756,-1.6409,0.9594,38.7327,-1.9167,0.9634,38.7284,-1.9181,0.7672,38.3637,-2.1421,-0.1476,37.986,-0.3173,-0.1434,38.0719,-0.2704,0.0,38.083,-1.497,-0.3491,38.3402,-0.3886,0.0,38.6989,-0.3901,-0.5049,38.3271,-0.4658,-0.7852,38.6525,-0.9149,-0.3344,38.971,-0.4376,-0.3309,38.9799,-0.4469,-0.7573,38.9387,-0.9556,-0.8573,38.9005,-0.9376,0.0,38.9445,-0.838,0.0,38.8669,-1.4276,-0.2989,38.8854,-0.9526,-0.1641,38.8919,-0.9669,-1.2527,38.4063,-2.0851,-1.2425,38.2998,-2.0281,-0.964,38.7241,-1.9069,-0.0352,38.149,-2.7825,-0.0393,38.3648,-3.0661,-0.3719,38.5636,-1.7159,-0.5271,38.9759,-0.5164,-0.8743,38.8576,-1.1371,-0.4448,38.9116,-0.8947,-0.1436,38.0453,-0.2748,-0.3766,37.7782,-1.9502,-0.3698,37.9068,-1.9264,-0.7367,38.4373,-2.2142,-0.1448,38.2874,-1.9568,-0.1582,38.5319,-1.5828,-0.0258,38.2688,-2.8788,-0.1818,38.5029,-0.3772,0.1572,38.4434,-1.9923,0.5703,38.7635,-1.6658,0.0,37.9,-1.4766,0.8573,38.9005,-0.9376,0.3344,38.971,-0.4376,0.3309,38.9799,-0.4469,0.851,38.6432,-1.7663,0.7573,38.9387,-0.9556,0.6253,38.6656,-0.6022,0.1589,38.0022,-0.6847};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_158_vector_1()
		{
			double[] value = {-0.9994,0.0191,0.0281,-0.9991,0.0055,-0.0424,-0.9991,0.0416,0.0105,-0.9987,0.0018,-0.0505,-0.9986,0.0412,0.0331,-0.9984,0.0216,-0.0526,-0.9984,-0.049,-0.0298,-0.9976,0.056,0.0405,-0.9975,0.0575,-0.0422,-0.9971,0.071,-0.0288,-0.9965,0.0335,-0.0763,-0.9964,0.0351,0.0769,-0.9956,0.0138,0.0928,-0.9951,0.0836,-0.053,-0.9944,0.0277,0.1018,-0.9939,0.0952,0.0563,-0.993,-0.1094,0.0437,-0.9927,0.0125,-0.1197,-0.992,0.0969,0.0803,-0.9909,0.061,-0.1204,-0.99,0.139,0.0224,-0.9895,0.1384,0.0407,-0.9889,0.1433,0.0379,-0.9883,-0.1061,-0.1092,-0.988,0.0935,-0.123,-0.9868,0.1483,-0.0646,-0.9861,0.1116,-0.1235,-0.9857,0.1316,-0.1051,-0.9854,-0.0078,0.1699,-0.9847,0.1134,-0.132,-0.9824,0.0051,0.187,-0.9821,0.1427,0.1226,-0.982,0.0117,-0.1883,-0.9815,0.0418,0.1868,-0.9805,0.1958,-0.019,-0.9779,0.1153,-0.1744,-0.9771,0.0319,-0.2104,-0.9762,-0.0356,-0.2141,-0.9758,-0.0128,0.2181,-0.9751,-0.0543,-0.2151,-0.9748,0.1971,0.1043,-0.9747,0.0955,-0.2022,-0.9746,0.1098,-0.1953,-0.9736,0.0025,-0.2281,-0.9734,-0.155,0.1687,-0.9734,0.2286,-0.0157,-0.9702,-0.0751,-0.2304,-0.968,-0.0754,0.2392,-0.9665,-0.2152,-0.1401,-0.9652,0.2074,0.1592,-0.9638,0.2648,-0.0295,-0.9633,0.0831,-0.2551,-0.9625,0.2167,-0.1633,-0.9617,0.1907,0.1969,-0.9552,0.022,-0.2951,-0.9536,-0.231,0.1931,-0.9532,-0.2422,0.1811,-0.9528,-0.0927,0.2891,-0.9526,-0.2128,-0.2173,-0.9516,0.0903,-0.2937,-0.9475,-0.3179,-0.0342,-0.9465,-0.0724,-0.3146,-0.9464,0.133,-0.2944,-0.9436,-0.3312,-0.0012,-0.9433,-0.2655,0.1992,-0.9423,-0.074,0.3266,-0.9421,-0.0585,0.3302,-0.9403,0.1536,-0.3038,-0.9389,0.0136,-0.3439,-0.9382,0.0621,-0.3405,-0.9379,-0.3385,-0.0765,-0.9371,-0.2428,-0.2509,-0.9351,0.1565,-0.318,-0.9308,-0.2387,0.2768,-0.9304,0.0642,-0.361,-0.9253,0.3471,-0.1527,-0.9249,-0.3358,-0.1782,-0.9242,0.2167,-0.3147,-0.9241,0.0055,-0.3821,-0.9211,0.2548,-0.2944,-0.9211,0.3107,0.2346,-0.9202,0.3297,0.2111,-0.9195,0.1006,0.38,-0.9168,-0.3788,0.1268,-0.9158,0.0804,0.3934,-0.9148,-0.404,0.0003,-0.9132,0.4003,0.0761,-0.9124,0.0238,-0.4085,-0.9119,-0.3727,-0.1719,-0.9103,-0.4126,0.0327,-0.9102,-0.1867,-0.3697,-0.9101,-0.2091,-0.3577,-0.908,0.2635,-0.3257,-0.9078,0.4189,0.0226,-0.9053,0.3201,-0.2791,-0.9032,0.2813,-0.3241,-0.899,-0.0379,-0.4363,-0.8982,0.0828,-0.4317,-0.8971,0.028,0.441,-0.8967,0.1426,-0.4191,-0.8966,-0.2703,-0.3508,-0.8957,0.0126,-0.4445,-0.8957,-0.3921,0.2099,-0.8954,-0.1576,-0.4164,-0.8953,-0.3545,0.2697,-0.8936,0.0284,0.4479,-0.8934,-0.1237,-0.432,-0.8928,-0.0532,0.4474,-0.8897,0.1128,-0.4423,-0.8847,0.3358,0.3233,-0.882,-0.3268,0.3395,-0.8809,-0.4208,-0.2169,-0.8798,-0.4599,-0.1205,-0.8751,0.3209,-0.3624,-0.8731,0.4305,-0.2289,-0.8719,0.3182,0.3721,-0.8717,0.4791,-0.1031,-0.8685,-0.0602,0.4921,-0.8677,-0.2166,0.4473,-0.8663,0.2663,-0.4227,-0.8651,-0.3214,0.3851,-0.8608,0.4613,-0.2149,-0.8575,0.0549,-0.5115,-0.8561,0.234,0.4609,-0.8552,0.377,-0.3557,-0.8549,0.1657,0.4916,-0.8533,0.5151,0.081,-0.8494,-0.136,0.5099,-0.8482,0.0278,-0.5289,-0.8469,0.2924,0.4441,-0.8448,-0.5132,-0.1515,-0.8433,-0.3862,0.3737,-0.8418,0.5299,0.103,-0.8413,0.0815,-0.5344,-0.841,0.0193,-0.5407,-0.8381,-0.1066,-0.535,-0.8368,-0.034,-0.5464,-0.8353,-0.0849,-0.5432,-0.8349,-0.0102,0.5504,-0.833,-0.5049,0.2262,-0.8325,-0.3322,-0.4433,-0.8303,0.5448,0.1173,-0.8299,0.4477,-0.3329,-0.8288,-0.5345,0.1652,-0.8277,-0.5581,0.0589,-0.8269,0.0712,-0.5579,-0.8248,-0.4875,-0.2865,-0.8243,-0.5254,0.2108,-0.8207,0.4778,-0.3132,-0.8201,-0.5226,-0.2331,-0.8189,-0.452,-0.3536,-0.8182,0.5749,-0.0034,-0.8165,0.5481,0.1814,-0.8161,0.2089,-0.5389,-0.8155,0.4744,-0.3314,-0.8145,0.5241,0.2488,-0.8135,-0.1396,-0.5645,-0.809,-0.5271,-0.2601,-0.8089,0.3654,-0.4605,-0.8076,0.4578,-0.3716,-0.8054,0.1358,0.577,-0.8037,0.0429,0.5935,-0.8036,-0.1082,-0.5853,-0.8028,0.5521,-0.2252,-0.8019,-0.3562,-0.4797,-0.8006,0.0846,-0.5932,-0.7992,0.2166,0.5606,-0.7985,-0.4926,0.3462,-0.796,-0.3367,0.503,-0.7946,0.3761,0.4766,-0.7938,0.4724,-0.3829,-0.7898,-0.4933,-0.3645,-0.7894,0.0656,-0.6104,-0.7886,-0.0517,-0.6127,-0.7884,-0.5931,0.1632,-0.7876,0.027,-0.6156,-0.7875,0.3298,0.5207,-0.7871,0.2754,-0.552,-0.7787,-0.0423,-0.626,-0.7756,0.1952,-0.6003,-0.7724,0.6248,-0.1138,-0.7724,-0.1134,0.625,-0.7719,0.3708,-0.5165,-0.7718,-0.4107,-0.4855,-0.7675,0.0548,-0.6387,-0.7666,-0.5754,-0.285,-0.764,0.2525,-0.5938,-0.7638,-0.2563,0.5924,-0.7634,0.3425,0.5477,-0.7603,0.4562,-0.4623,-0.7603,-0.6044,0.238,-0.7599,0.2009,0.6182,-0.7593,-0.1225,-0.6392,-0.7582,-0.118,-0.6412,-0.7577,0.5599,-0.3354,-0.7546,0.6254,0.1984,-0.7541,-0.6014,-0.264,-0.751,0.2554,-0.6089,-0.7505,-0.2239,-0.6217,-0.7477,0.1196,0.6531,-0.7474,-0.2916,-0.5969,-0.747,-0.1543,-0.6467,-0.7462,0.2906,-0.5989,-0.7458,0.3964,-0.5354,-0.743,0.353,-0.5686,-0.7398,-0.5524,-0.3841,-0.739,-0.5082,0.4423,-0.7365,0.1568,-0.658,-0.7361,-0.6086,0.2962,-0.7353,0.6617,0.1467,-0.734,-0.0785,0.6746,-0.7299,0.6698,-0.1367,-0.7281,0.1081,0.6769,-0.7254,0.685,0.068,-0.7248,0.6063,-0.3271,-0.724,0.3011,0.6206,-0.7228,0.6737,-0.1543,-0.7123,0.3546,-0.6057,-0.7123,-0.0187,0.7016,-0.7121,-0.0527,-0.7001,-0.7103,-0.463,-0.5302,-0.7085,0.4223,-0.5654,-0.7085,0.1378,-0.6922,-0.708,-0.1358,-0.693,-0.6999,0.408,-0.5862,-0.6933,0.2788,0.6645,-0.6929,0.6894,-0.2112,-0.6923,-0.4381,0.5735,-0.6894,-0.2995,0.6595,-0.6884,0.7253,-0.0024,-0.6872,-0.3225,0.651,-0.6836,0.527,-0.5049,-0.6811,0.5441,0.4899,-0.6799,-0.45,-0.579,-0.6791,-0.0673,0.7309,-0.6783,0.7066,0.2014,-0.6746,0.2237,-0.7034,-0.6722,0.2328,-0.7028,-0.6718,0.7405,0.0196,-0.6702,0.1282,0.731,-0.6675,0.228,0.7089,-0.6666,0.4329,-0.6069,-0.6635,-0.0079,-0.7482,-0.663,-0.1347,0.7364,-0.6562,0.5116,0.5547,-0.6548,-0.0169,-0.7556,-0.6535,-0.4391,0.6165,-0.6515,-0.2462,-0.7175,-0.6513,0.5649,0.5066,-0.6499,-0.4964,-0.5756,-0.648,0.646,0.4036,-0.6462,0.655,-0.3917,-0.6445,0.1981,-0.7385,-0.6436,0.714,0.2755,-0.6428,0.7481,-0.1647,-0.6422,-0.004,0.7665,-0.6279,0.7723,-0.0962,-0.6263,0.2888,-0.7241,-0.6239,0.5969,0.5045,-0.6229,-0.6357,-0.4561,-0.6229,0.3671,0.6908,-0.6161,0.7507,-0.2385,-0.6126,-0.6254,0.4833,-0.6097,-0.0083,-0.7926,-0.607,-0.5298,0.5923,-0.6015,0.507,-0.6173,-0.5966,0.5301,0.6025,-0.5879,-0.801,0.1128,-0.5874,-0.7975,-0.1377,-0.5838,-0.2019,-0.7864,-0.5828,0.7282,-0.3606,-0.5825,-0.8109,0.0555,-0.5803,-0.0253,-0.814,-0.5801,0.81,0.086,-0.58,0.7915,0.1927,-0.5773,0.3426,-0.7412,-0.575,0.7767,-0.2569,-0.5721,-0.6839,-0.4528,-0.571,0.1504,0.807,-0.571,0.1717,0.8028,-0.57,0.8131,-0.1182,-0.5698,0.0405,0.8208,-0.5676,0.7702,0.291,-0.5649,0.0506,0.8236,-0.5631,0.0638,-0.8239,-0.5611,0.2148,0.7994,-0.5595,-0.8189,0.1279,-0.5586,0.7918,-0.2471,-0.5554,-0.1664,0.8148,-0.5545,-0.0743,0.8288,-0.5516,0.4757,0.6851,-0.5488,-0.0429,0.8349,-0.5421,-0.0802,0.8365,-0.5418,0.0966,0.8349,-0.5365,0.2277,0.8126,-0.5318,0.6312,0.5646,-0.5313,-0.5861,-0.6117,-0.5297,-0.2544,0.8091,-0.5246,0.4486,-0.7236,-0.5217,0.3522,-0.777,-0.5206,-0.4837,0.7036,-0.52,0.7032,0.4849,-0.5198,-0.8437,-0.1342,-0.5179,-0.167,0.839,-0.5177,-0.7241,-0.4557,-0.5125,0.8036,-0.3025,-0.511,-0.5207,0.6839,-0.5097,0.729,0.4569,-0.5094,-0.6144,-0.6025,-0.5086,-0.3839,-0.7707,-0.5079,0.6735,0.5371,-0.5073,0.6966,0.5073,-0.5067,-0.2245,0.8323,-0.5059,-0.2364,-0.8296,-0.5012,0.0215,0.8651,-0.4998,0.8129,-0.2989,-0.4987,-0.3895,0.7743,-0.4968,0.249,0.8314,-0.496,0.0223,0.8681,-0.4843,-0.7036,-0.52,-0.4824,0.8054,0.3444,-0.4742,0.2307,-0.8497,-0.4717,-0.2933,0.8316,-0.4716,-0.1994,0.859,-0.4638,0.7945,-0.3919,-0.4615,-0.0291,-0.8867,-0.4605,0.3326,-0.823,-0.4588,0.6821,0.5694,-0.457,-0.8542,-0.248,-0.4545,0.2131,0.8649,-0.4544,-0.1358,0.8804,-0.447,-0.1769,-0.8769,-0.4469,0.5109,0.7344,-0.4467,0.0398,0.8938,-0.444,-0.745,-0.4978,-0.4438,-0.6238,-0.6433,-0.44,-0.8773,0.1916,-0.4399,0.7201,0.5367,-0.4372,0.407,-0.802,-0.4368,0.0635,-0.8973,-0.4367,0.0037,-0.8996,-0.4354,-0.0846,-0.8963,-0.4312,-0.662,-0.613,-0.4294,0.2839,0.8573,-0.4281,-0.7171,-0.55,-0.424,-0.7116,-0.5602,-0.4228,-0.2851,-0.8602,-0.418,0.9081,0.0249,-0.4167,0.7152,-0.5611,-0.416,-0.8376,-0.3542,-0.416,-0.261,-0.8711,-0.4158,-0.4596,0.7848,-0.4157,-0.0446,-0.9084,-0.4149,-0.9058,0.0856,-0.4139,0.9043,0.1042,-0.4127,-0.4693,0.7806,-0.4124,-0.1673,-0.8955,-0.4105,0.4984,-0.7636,-0.4056,0.1875,-0.8946,-0.4006,0.3035,-0.8645,-0.4002,0.4792,0.7811,-0.3985,-0.8274,0.3958,-0.3979,-0.2815,-0.8732,-0.3963,-0.8967,0.197,-0.3962,-0.9182,0.0037,-0.3962,-0.4091,-0.822,-0.394,-0.7676,-0.5056,-0.3932,0.9139,-0.1014,-0.3927,-0.773,-0.4982,-0.3897,0.6778,0.6235,-0.3892,-0.0867,-0.9171,-0.387,0.7837,-0.4857,-0.3844,0.4277,0.8182,-0.3828,0.9225,0.0501,-0.3822,-0.2992,-0.8743,-0.3766,0.1437,0.9152,-0.3738,0.3847,-0.844,-0.3702,-0.9217,-0.116,-0.3685,0.9101,-0.1894,-0.3657,0.3324,-0.8694,-0.3628,-0.9315,-0.0269,-0.362,-0.9012,0.2383,-0.3611,-0.788,-0.4986,-0.3605,-0.1982,0.9115,-0.3583,-0.0942,-0.9288,-0.3583,0.4524,-0.8167,-0.3574,0.8428,-0.4025,-0.3562,0.9296,-0.0942,-0.356,0.6798,-0.6411,-0.3558,0.9192,0.169,-0.3511,-0.6916,-0.6312,-0.3505,-0.9365,-0.0103,-0.349,-0.2973,-0.8887,-0.3461,-0.3209,-0.8816,-0.3456,-0.9062,-0.2435,-0.3448,0.9314,-0.1167,-0.3444,-0.5416,-0.7669,-0.342,0.0548,0.9381,-0.3405,-0.9246,-0.1711,-0.3405,-0.3096,0.8878,-0.3395,0.6622,-0.6681,-0.3373,-0.9389,-0.068,-0.3348,-0.7872,-0.5179,-0.3346,-0.8675,0.368,-0.3327,0.298,-0.8947,-0.3317,-0.738,0.5877,-0.3258,0.3598,-0.8743,-0.3255,-0.8192,0.4722,-0.3235,0.6754,-0.6627,-0.3231,0.1609,0.9326,-0.3197,0.0822,0.944,-0.3195,0.523,-0.7901,-0.3185,-0.8472,-0.4252,-0.3182,0.4299,-0.8449,-0.3157,0.375,-0.8716,-0.3134,0.1496,0.9377,-0.3114,0.3884,-0.8673,-0.307,-0.2047,-0.9294,-0.3038,0.3885,-0.8699,-0.3015,-0.013,-0.9534,-0.3008,-0.1972,0.9331,-0.2986,0.0942,0.9497,-0.298,-0.6164,-0.7289,-0.2953,0.0869,0.9514,-0.2948,0.0751,0.9526,-0.2919,-0.8411,-0.4554,-0.291,0.2439,0.9251,-0.2904,0.6054,-0.741,-0.2863,0.6448,0.7087,-0.2854,-0.9398,0.188,-0.2837,0.9565,-0.0682,-0.2823,-0.9223,0.2641,-0.2792,-0.9482,-0.1517,-0.2779,-0.9603,0.0226,-0.2762,-0.7703,-0.5747,-0.2755,-0.0062,0.9613,-0.2748,0.6535,-0.7053,-0.2732,0.8724,0.4053,-0.2677,-0.3289,-0.9056,-0.266,0.7183,0.6429,-0.2656,0.1925,-0.9447,-0.2647,-0.9146,-0.3057,-0.2622,-0.9105,0.3197,-0.2618,0.9493,-0.174,-0.2617,0.3655,-0.8932,-0.2616,0.4776,-0.8387,-0.2613,0.7756,-0.5746,-0.2613,-0.3643,0.8939,-0.2611,-0.3634,-0.8943,-0.2573,0.1706,0.9511,-0.2572,-0.3142,0.9138,-0.2549,0.25,0.9341,-0.251,-0.9475,-0.1979,-0.2438,-0.9031,-0.3534,-0.2437,0.3955,-0.8856,-0.2415,0.1953,-0.9505,-0.2408,-0.3372,-0.9101,-0.24,0.4883,0.839,-0.2396,-0.7939,-0.5588,-0.2339,-0.9372,0.2589,-0.2335,-0.7267,-0.646,-0.2296,-0.8184,-0.5268,-0.2252,0.0024,-0.9743,-0.2224,0.3403,-0.9136,-0.2219,0.6644,0.7136,-0.219,-0.9547,0.2013,-0.2186,0.7343,0.6426,-0.2173,-0.9755,0.0341,-0.2171,-0.9581,0.1871,-0.2157,-0.7279,-0.6509,-0.2151,-0.2597,-0.9414,-0.2104,-0.3629,-0.9078,-0.2064,-0.7504,-0.6279,-0.2043,0.9759,-0.0766,-0.2035,0.554,0.8073,-0.2032,0.8878,-0.413,-0.2017,-0.9706,-0.1314,-0.2016,-0.0129,-0.9794,-0.1981,-0.9491,-0.2449,-0.1975,-0.8975,0.3943,-0.1945,0.5478,-0.8137,-0.1921,-0.3387,0.9211,-0.1912,-0.9815,0.006,-0.1911,-0.9444,0.2677,-0.1901,0.3091,-0.9318,-0.19,-0.96,-0.2059,-0.1894,-0.4401,-0.8778,-0.1882,-0.9331,-0.3065,-0.1852,-0.5512,-0.8135,-0.1846,-0.8239,0.5358,-0.1809,0.4624,-0.868,-0.1781,0.8045,-0.5666,-0.1754,-0.8534,-0.4908,-0.1746,0.5097,-0.8425,-0.1736,0.6461,-0.7432,-0.1729,-0.9222,0.3458,-0.1709,0.9779,-0.1203,-0.1664,0.9728,-0.1614,-0.1657,-0.7453,-0.6458,-0.1657,0.788,0.593,-0.1648,0.9516,-0.2595,-0.1615,-0.7565,-0.6337,-0.1598,0.9811,-0.1094,-0.1578,0.7175,-0.6785,-0.1577,0.9806,-0.1168,-0.1571,-0.9673,0.1991,-0.1555,-0.0382,0.9871,-0.1532,0.9801,-0.1259,-0.153,-0.9326,-0.327,-0.1526,0.064,0.9862,-0.1505,-0.475,-0.867,-0.1498,-0.3312,-0.9316,-0.1496,-0.9879,-0.0399,-0.1489,0.7362,-0.6602,-0.147,-0.8121,0.5647,-0.1467,0.8889,-0.4341,-0.1465,0.2713,0.9513,-0.1457,-0.8606,0.4879,-0.1445,0.9431,-0.2996,-0.1437,-0.9887,0.0426,-0.1399,-0.7193,0.6805,-0.1359,-0.0747,-0.9879,-0.1328,-0.6193,-0.7738,-0.1325,0.7819,-0.6092,-0.131,-0.3553,-0.9255,-0.1299,-0.9241,-0.3594,-0.1275,0.6993,0.7034,-0.1261,0.9415,-0.3126,-0.126,-0.1516,-0.9804,-0.1254,0.2616,-0.957,-0.1251,0.8758,0.4662,-0.1247,-0.511,-0.8505,-0.1246,-0.9921,-0.0119,-0.1245,-0.9039,-0.4092,-0.1241,0.3074,-0.9435,-0.1221,-0.9353,-0.3321,-0.1211,-0.372,0.9203,-0.119,0.9346,-0.3353,-0.1181,0.5496,-0.827,-0.118,0.9855,0.1221,-0.1176,0.1292,0.9846,-0.1163,-0.1735,-0.9779,-0.1158,-0.7669,-0.6312,-0.1135,0.1966,0.9739,-0.1132,0.9031,0.4142,-0.1129,0.9891,0.0942,-0.1129,0.8106,-0.5747,-0.1118,-0.4383,-0.8919,-0.1113,0.0093,-0.9937,-0.1105,-0.9901,-0.0863,-0.1101,-0.7783,-0.6181,-0.11,-0.3244,-0.9395,-0.1097,0.9067,0.4072,-0.1091,0.1483,-0.9829,-0.1077,0.9905,-0.0855,-0.1073,0.9824,-0.1528,-0.1067,-0.3578,-0.9277,-0.1066,0.988,-0.1118,-0.106,-0.9828,-0.1511,-0.1048,-0.9889,0.1056,-0.0989,-0.0295,-0.9947,-0.0979,0.227,-0.9689,-0.0972,0.9714,-0.2165,-0.0968,0.7445,0.6606,-0.0959,0.9031,0.4185,-0.0957,0.2721,-0.9575,-0.0955,-0.9209,-0.3779,-0.0943,0.9813,0.1678,-0.094,0.9905,-0.0999,-0.0938,0.0272,0.9952,-0.0924,-0.9951,0.0342,-0.092,0.9954,0.0268,-0.0911,0.9933,0.0716,-0.0887,0.7449,-0.6612,-0.0883,0.1535,0.9842,-0.0866,-0.846,-0.526,-0.0862,-0.1935,-0.9773,-0.0852,-0.9805,0.177,-0.085,-0.9948,-0.0567,-0.085,0.9483,-0.3058,-0.0847,0.5194,0.8503,-0.0843,0.994,-0.0699,-0.083,0.7209,0.6881,-0.081,0.4542,-0.8872,-0.0801,0.9891,-0.1234,-0.0797,-0.1895,-0.9786,-0.0785,-0.9217,-0.38,-0.0776,0.51,0.8567,-0.0746,0.9206,-0.3833,-0.0744,0.5831,-0.809,-0.0743,-0.9856,-0.152,-0.0711,-0.9251,-0.3729,-0.0702,-0.9431,0.3251,-0.0697,0.9947,-0.0759,-0.0694,-0.9963,-0.0497,-0.0686,0.9976,0.0055,-0.0685,0.5382,-0.84,-0.0678,0.6267,-0.7763,-0.0649,0.9978,0.0125,-0.0647,-0.8468,0.5279,-0.0641,0.9432,-0.326,-0.0628,0.8548,0.5152,-0.0622,0.7994,-0.5976,-0.0608,0.9981,-0.0099,-0.0591,0.961,0.2701,-0.0586,-0.1463,0.9875,-0.0585,-0.3927,-0.9178,-0.0571,0.9925,-0.1079,-0.0567,-0.1229,0.9908,-0.0544,0.4443,-0.8942,-0.0523,0.9444,-0.3246,-0.0508,0.9615,0.2702,-0.0507,0.9534,-0.2973,-0.0489,-0.6612,-0.7486,-0.0486,0.4014,-0.9146,-0.0482,0.9759,-0.2129,-0.0469,-0.9865,0.1567,-0.0456,-0.9831,0.1773,-0.0455,0.9985,0.0295,-0.0449,0.9704,0.2373,-0.0432,-0.9962,-0.0762,-0.0421,-0.9989,0.0225,-0.04,0.6421,-0.7656,-0.0395,-0.9812,0.1889,-0.0394,-0.9992,0.0054,-0.0392,0.2443,-0.9689,-0.035,0.9752,-0.2184,-0.0347,-0.0841,-0.9959,-0.0342,-0.9992,-0.0229,-0.034,0.2453,-0.9689,-0.0334,-0.9925,0.1174,-0.0299,-0.2352,0.9715,-0.0294,-0.9916,0.1256,-0.0292,0.5527,0.8329,-0.0224,0.9863,0.1636,-0.0217,-0.8262,-0.563,-0.0214,-0.6363,-0.7711,-0.0209,0.6473,-0.7619,-0.0195,0.0114,-0.9997,-0.0179,-0.8414,-0.5401,-0.0175,0.0243,-0.9996,-0.0166,-0.9998,-0.0069,-0.0158,-0.4314,-0.902,-0.0157,0.9424,-0.3343,-0.0134,0.6671,-0.7449,-0.013,0.97,-0.2427,-0.0122,0.4069,-0.9134,-0.0114,-0.8132,-0.5818,-0.0113,-0.8017,-0.5976,-0.0098,-0.99,0.1408,-0.0091,-0.1203,0.9927,-0.0072,0.2576,-0.9662,-0.0068,0.968,0.2508,-0.0067,-0.9538,0.3005,-0.0065,-1.0,-0.0009,-0.0056,-0.9999,0.0105,-0.0045,0.4192,-0.9079,-0.0044,0.8436,-0.537,-0.0044,0.9999,-0.0125,-0.0022,0.8271,0.562,-0.0009,0.9581,0.2865,-0.0004,0.9446,-0.3282,0.0,0.0264,0.9997,0.0,0.0342,0.9994,0.0,-0.0602,0.9982,0.0,0.1237,0.9923,0.0,0.14,0.9901,0.0,0.1768,0.9843,0.0,0.216,0.9764,0.0,-0.2907,0.9568,0.0,0.331,0.9436,0.0,0.5437,0.8393,0.0,0.7481,0.6636,0.0,-0.7917,0.6109,0.0,-0.8324,0.5542,0.0,0.8592,0.5116,0.0,-0.8974,0.4412,0.0,-0.9508,0.3099,0.0,0.963,0.2695,0.0,-0.9675,0.2528,0.0,0.9792,0.2028,0.0,0.9823,0.1875,0.0,-0.9988,0.0484,0.0,0.9992,0.04,0.0,-0.9999,-0.0149,0.0,-0.9997,-0.026,0.0,-0.9995,-0.0303,0.0,0.9984,-0.0573,0.0,-0.9949,-0.1005,0.0,-0.9947,-0.1031,0.0,0.9941,-0.1085,0.0,0.9844,-0.1761,0.0,0.9841,-0.1779,0.0,0.9764,-0.2159,0.0,0.9583,-0.2859,0.0,0.9532,-0.3025,0.0,0.9007,-0.4344,0.0,-0.6417,-0.7669,0.0,-0.5249,-0.8512,0.0,0.5015,-0.8652,0.0,-0.3867,-0.9222,0.0,-0.3736,-0.9276,0.0,-0.3557,-0.9346,0.0,-0.3095,-0.9509,0.0,-0.2069,-0.9784,0.0,0.1973,-0.9803,0.0,0.1838,-0.983,0.0,-0.1498,-0.9887,0.0,-0.1141,-0.9935,0.0,-0.0363,-0.9993,0.0,0.0074,-1.0,0.0004,0.9446,-0.3282,0.0016,0.9499,-0.3125,0.0016,-0.9842,0.1769,0.0021,-0.6096,-0.7927,0.0022,0.8271,0.562,0.0035,0.3348,-0.9423,0.0044,0.8436,-0.537,0.0051,-0.9365,0.3507,0.0065,-1.0,-0.0009,0.0067,-0.9538,0.3005,0.0068,0.968,0.2508,0.0074,0.9742,0.2257,0.0075,-0.805,-0.5932,0.0081,-0.9348,0.3552,0.0091,-0.1203,0.9927,0.0102,0.971,0.2389,0.0103,0.5376,-0.8432,0.0126,-0.9799,-0.199,0.0137,0.0975,0.9951,0.0142,-0.933,0.3595,0.0157,0.9424,-0.3343,0.0158,-0.4314,-0.902,0.0158,-0.5834,-0.812,0.0166,-0.9998,-0.0069,0.0175,0.0243,-0.9996,0.0179,-0.9811,0.1928,0.0179,-0.8414,-0.5401,0.0186,-0.9828,0.184,0.0195,0.0114,-0.9997,0.0196,-0.0722,-0.9972,0.0197,-0.6385,-0.7693,0.0198,-0.2223,0.9748,0.0216,0.1951,0.9805,0.0224,0.9863,0.1636,0.0227,-0.8449,0.5344,0.0248,-0.9997,0.0006,0.0277,0.9662,-0.2565,0.0287,-0.9633,-0.267,0.0292,0.5527,0.8329,0.0293,0.9769,-0.2117,0.0301,0.2665,-0.9634,0.0307,-0.9691,-0.2449,0.0315,-0.9913,0.1278,0.0334,0.7762,-0.6296,0.034,0.2453,-0.9689,0.0342,-0.9992,-0.0229,0.0381,0.9654,0.258,0.0391,0.6423,-0.7655,0.0392,0.2443,-0.9689,0.0394,-0.9992,0.0054,0.0395,-0.9812,0.1889,0.041,0.9623,0.269,0.0411,0.6285,-0.7767,0.0421,-0.9989,0.0225,0.0432,-0.9962,-0.0762,0.0449,0.9704,0.2373,0.0455,0.9985,0.0295,0.0469,-0.9865,0.1567,0.0473,-0.9186,-0.3923,0.0486,0.4014,-0.9146,0.0507,0.9534,-0.2973,0.0523,0.9444,-0.3246,0.0524,-0.6655,-0.7446,0.0558,0.9984,-0.0092,0.0562,-0.1498,0.9871,0.0567,-0.1229,0.9908,0.0585,-0.3927,-0.9178,0.0623,-0.9529,0.2967,0.0628,0.8548,0.5152,0.0641,0.9432,-0.326,0.0647,-0.8468,0.5279,0.0649,0.9978,0.0125,0.0679,0.9711,-0.2288,0.0679,-0.9189,-0.3887,0.0686,0.9976,0.0055,0.0694,-0.9963,-0.0497,0.0695,0.9545,-0.29,0.0697,0.9947,-0.0759,0.0702,-0.9431,0.3251,0.0705,0.9194,-0.3869,0.0736,0.9931,-0.0916,0.0738,0.9924,-0.0985,0.0744,0.5831,-0.809,0.0776,0.51,0.8567,0.0781,-0.9844,-0.1577,0.0797,-0.1895,-0.9786,0.0801,0.9891,-0.1234,0.0808,-0.9937,-0.0779,0.081,0.4542,-0.8872,0.0826,0.9904,-0.1111,0.083,0.7209,0.6881,0.0847,0.5194,0.8503,0.085,0.6684,-0.7389,0.0852,-0.9805,0.177,0.0861,-0.9237,-0.3732,0.087,0.2109,-0.9736,0.0874,0.747,0.6591,0.0883,0.1535,0.9842,0.0911,0.9933,0.0716,0.092,0.9954,0.0268,0.0921,-0.8414,-0.5326,0.0938,0.0272,0.9952,0.094,0.9883,0.1203,0.0943,0.5724,-0.8145,0.0949,0.2403,-0.966,0.0957,0.2721,-0.9575,0.0969,-0.9163,-0.3886,0.0972,0.9714,-0.2165,0.0988,0.4136,-0.9051,0.0989,-0.0295,-0.9947,0.099,-0.9845,-0.145,0.1,-0.9949,0.0145,0.1001,-0.9909,-0.0899,0.1024,-0.2091,-0.9725,0.1066,0.988,-0.1118,0.1067,-0.3578,-0.9277,0.1073,0.9824,-0.1528,0.1074,0.8992,0.4242,0.1077,0.9905,-0.0855,0.1091,0.1483,-0.9829,0.1097,0.9067,0.4072,0.11,-0.3244,-0.9395,0.1102,-0.9885,0.1033,0.1113,0.0093,-0.9937,0.1118,-0.4383,-0.8919,0.112,0.7547,-0.6464,0.1121,0.7585,-0.642,0.1129,0.8106,-0.5747,0.1129,0.9891,0.0942,0.1135,0.9037,0.4128,0.1135,0.1966,0.9739,0.1145,-0.94,-0.3213,0.1158,-0.7669,-0.6312,0.1168,0.9906,-0.0713,0.1176,0.1292,0.9846,0.118,0.9855,0.1221,0.1181,0.5496,-0.827,0.119,0.9346,-0.3353,0.1211,-0.372,0.9203,0.1221,-0.9353,-0.3321,0.1236,-0.7783,-0.6156,0.1241,0.3074,-0.9435,0.1247,-0.511,-0.8505,0.1251,0.8758,0.4662,0.1254,-0.6299,-0.7664,0.126,-0.1516,-0.9804,0.1261,0.9415,-0.3126,0.1275,0.6993,0.7034,0.1284,-0.8159,0.5637,0.1299,-0.9241,-0.3594,0.13,-0.9913,-0.0209,0.131,-0.3553,-0.9255,0.1312,-0.0851,-0.9877,0.1319,-0.2094,-0.9689,0.1382,0.7835,-0.6058,0.1437,-0.9887,0.0426,0.1457,-0.8606,0.4879,0.1465,0.2713,0.9513,0.1467,0.8889,-0.4341,0.1498,-0.3312,-0.9316,0.1505,-0.475,-0.867,0.1526,0.064,0.9862,0.1532,0.9801,-0.1259,0.1555,-0.0382,0.9871,0.1565,-0.7301,0.6652,0.1568,0.926,-0.3435,0.1571,-0.9673,0.1991,0.1576,-0.9867,-0.041,0.1577,0.9806,-0.1168,0.1648,0.9516,-0.2595,0.165,0.7912,0.5888,0.1695,0.9716,-0.1651,0.1702,-0.9854,-0.0093,0.1729,-0.9222,0.3458,0.1736,0.6461,-0.7432,0.1746,0.5097,-0.8425,0.1754,-0.8534,-0.4908,0.1763,-0.765,-0.6195,0.1775,-0.3591,0.9163,0.1781,0.8045,-0.5666,0.1782,0.9767,-0.1192,0.1796,-0.7408,-0.6472,0.1827,-0.484,-0.8558,0.184,-0.9331,-0.3089,0.1846,0.5524,-0.8129,0.1852,-0.5512,-0.8135,0.1886,-0.822,0.5374,0.19,-0.96,-0.2059,0.1901,0.3091,-0.9318,0.1975,-0.8975,0.3943,0.1981,-0.9491,-0.2449,0.2017,-0.9706,-0.1314,0.2035,0.554,0.8073,0.2043,-0.9577,0.2027,0.2043,0.9759,-0.0766,0.2054,-0.2502,-0.9462,0.2064,-0.7504,-0.6279,0.2075,-0.9739,-0.0917,0.2107,-0.9521,0.2216,0.2113,0.8989,-0.3839,0.2149,-0.0255,-0.9763,0.2157,-0.7279,-0.6509,0.2173,-0.9755,0.0341,0.2186,0.7343,0.6426,0.219,-0.9547,0.2013,0.2219,0.6644,0.7136,0.2296,-0.8184,-0.5268,0.2307,0.2996,-0.9258,0.2309,-0.3456,-0.9095,0.2358,-0.2873,0.9284,0.2396,-0.7939,-0.5588,0.24,0.4883,0.839,0.2427,0.2172,-0.9455,0.2437,0.3955,-0.8856,0.2438,-0.9031,-0.3534,0.2478,-0.9667,0.0639,0.2534,-0.2877,-0.9236,0.2536,0.6668,-0.7008,0.2547,-0.9252,0.2814,0.2549,0.25,0.9341,0.2573,0.1706,0.9511,0.2574,0.7775,-0.5739,0.2599,0.4835,-0.8359,0.2608,0.2092,-0.9425,0.2611,-0.3634,-0.8943,0.2613,-0.3643,0.8939,0.2616,0.3674,-0.8925,0.2618,0.9493,-0.174,0.2622,-0.9105,0.3197,0.266,0.7183,0.6429,0.2677,-0.3289,-0.9056,0.2712,0.0197,-0.9623,0.2732,0.8724,0.4053,0.2755,-0.0062,0.9613,0.2762,-0.7703,-0.5747,0.2766,-0.9214,-0.273,0.2783,-0.9226,0.267,0.279,0.5964,-0.7526,0.2837,0.9565,-0.0682,0.2854,-0.9398,0.188,0.2863,-0.8448,-0.452,0.2863,0.6448,0.7087,0.2892,-0.0008,-0.9573,0.291,0.2439,0.9251,0.2914,-0.6111,-0.736,0.2919,-0.8411,-0.4554,0.2948,0.0751,0.9526,0.2953,0.0869,0.9514,0.2986,0.0942,0.9497,0.3055,-0.944,-0.1247,0.3058,-0.3353,-0.8911,0.3099,-0.9314,-0.1908,0.3114,0.3884,-0.8673,0.3134,0.1496,0.9377,0.3145,0.8443,-0.4339,0.3172,-0.1861,0.9299,0.3182,0.4299,-0.8449,0.3186,0.3824,-0.8673,0.3195,0.523,-0.7901,0.3197,0.0822,0.944,0.3198,-0.8652,0.3862,0.321,-0.8198,0.4742,0.322,-0.2316,-0.918,0.3226,0.6746,-0.6639,0.3231,0.1609,0.9326,0.3231,0.6733,-0.6651,0.3258,0.3598,-0.8743,0.3261,-0.9151,0.2371,0.3317,-0.738,0.5877,0.3321,0.2746,-0.9024,0.334,0.3793,-0.8629,0.3349,0.9248,-0.1802,0.3358,-0.7643,-0.5505,0.3373,-0.9389,-0.068,0.3381,-0.7948,-0.504,0.3399,-0.9311,-0.1326,0.342,0.0548,0.9381,0.3438,0.4396,-0.8298,0.3448,0.9314,-0.1167,0.3456,-0.9062,-0.2435,0.3461,-0.3209,-0.8816,0.3511,-0.6916,-0.6312,0.3516,-0.5658,-0.7458,0.3532,0.2917,-0.8889,0.3556,0.9302,-0.0915,0.3558,0.9192,0.169,0.3583,-0.0942,-0.9288,0.3584,0.1641,0.919,0.3611,-0.788,-0.4986};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_158_vector_2()
		{
			double[] value = {0.3616,0.4072,-0.8387,0.3624,-0.1956,0.9113,0.3641,-0.9309,-0.0282,0.3664,-0.3313,0.8695,0.3668,0.9246,-0.1029,0.3766,0.4222,-0.8246,0.378,-0.9247,-0.0461,0.3787,0.6736,-0.6347,0.3802,-0.2188,-0.8987,0.3813,0.3281,-0.8643,0.3822,-0.2992,-0.8743,0.3828,0.9225,0.0501,0.3844,0.4277,0.8182,0.3868,-0.9221,0.0009,0.387,0.7837,-0.4857,0.3892,-0.0867,-0.9171,0.3897,0.6778,0.6235,0.3927,-0.773,-0.4982,0.394,-0.7676,-0.5056,0.3962,-0.4091,-0.822,0.3971,0.1747,-0.901,0.3979,-0.2815,-0.8732,0.3985,-0.8274,0.3958,0.3998,0.4739,0.7846,0.4024,-0.2479,-0.8812,0.4053,-0.9078,0.1075,0.4056,0.4184,-0.8127,0.4063,-0.0148,-0.9136,0.4102,0.4965,-0.765,0.4124,-0.1673,-0.8955,0.4127,-0.4693,0.7806,0.4139,0.9043,0.1042,0.4144,-0.8834,0.2187,0.4154,0.7197,-0.5563,0.4158,-0.4596,0.7848,0.416,-0.8376,-0.3542,0.424,-0.7116,-0.5602,0.4294,0.2839,0.8573,0.4328,0.9014,0.0085,0.4357,-0.713,-0.5494,0.4368,0.0635,-0.8973,0.438,-0.0256,-0.8986,0.4399,0.7201,0.5367,0.44,-0.8773,0.1916,0.4436,-0.6251,-0.6423,0.444,-0.745,-0.4978,0.4442,0.1975,0.8739,0.4446,-0.6515,-0.6147,0.4469,0.5109,0.7344,0.447,-0.1769,-0.8769,0.4586,-0.8878,-0.0377,0.4588,0.6821,0.5694,0.4605,0.3326,-0.823,0.4615,-0.0291,-0.8867,0.4638,0.7945,-0.3919,0.4643,-0.047,-0.8844,0.4643,0.0644,0.8834,0.4742,0.2307,-0.8497,0.4754,-0.7061,-0.5247,0.4778,-0.3056,0.8236,0.4786,-0.1865,0.858,0.4824,0.8054,0.3444,0.4834,-0.1676,0.8592,0.4869,-0.1166,0.8656,0.4944,-0.3437,0.7984,0.496,0.0223,0.8681,0.4968,0.249,0.8314,0.4998,0.8129,-0.2989,0.5012,0.0215,0.8651,0.5032,-0.2343,-0.8318,0.5067,-0.2245,0.8323,0.5073,0.6966,0.5073,0.5079,0.6735,0.5371,0.5086,-0.3839,-0.7707,0.5094,-0.6144,-0.6025,0.5097,0.729,0.4569,0.511,-0.5207,0.6839,0.5114,-0.2256,0.8292,0.5125,0.8036,-0.3025,0.5177,-0.7241,-0.4557,0.5179,-0.167,0.839,0.5193,-0.8426,-0.1426,0.52,0.7032,0.4849,0.5215,0.4583,-0.7197,0.5217,0.3522,-0.777,0.5249,-0.5971,-0.6065,0.5318,0.6312,0.5646,0.5365,0.2277,0.8126,0.5418,0.0966,0.8349,0.5421,-0.0802,0.8365,0.5432,-0.0489,-0.8382,0.545,-0.5196,0.6581,0.5488,-0.0429,0.8349,0.5568,0.4712,0.6841,0.5586,0.7918,-0.2471,0.5595,-0.8189,0.1279,0.5611,0.2148,0.7994,0.5615,-0.6896,-0.4574,0.5628,-0.1556,0.8118,0.5631,0.0638,-0.8239,0.5649,0.8185,-0.1049,0.5649,0.0506,0.8236,0.5676,0.7702,0.291,0.5698,0.0405,0.8208,0.571,0.1717,0.8028,0.571,0.1504,0.807,0.575,0.7767,-0.2569,0.5773,0.3426,-0.7412,0.58,0.7915,0.1927,0.5823,-0.7993,-0.1486,0.5825,-0.8109,0.0555,0.5828,0.7282,-0.3606,0.5838,-0.2019,-0.7864,0.5844,-0.5196,0.6233,0.5871,0.8052,0.0841,0.5879,-0.801,0.1128,0.5914,0.0811,-0.8023,0.5966,0.5301,0.6025,0.6015,0.507,-0.6173,0.6052,0.299,-0.7378,0.6097,-0.0083,-0.7926,0.6126,-0.6254,0.4833,0.6156,-0.0565,0.786,0.6161,0.7507,-0.2385,0.6229,0.3671,0.6908,0.6229,0.6103,0.4895,0.6229,-0.6357,-0.4561,0.6282,0.7718,-0.0983,0.6312,-0.4498,-0.6318,0.6422,-0.004,0.7665,0.6428,0.7481,-0.1647,0.6436,0.714,0.2755,0.6462,0.655,-0.3917,0.6499,-0.4964,-0.5756,0.6513,0.5649,0.5066,0.6515,-0.2462,-0.7175,0.6535,-0.4391,0.6165,0.6562,0.5116,0.5547,0.6635,-0.0079,-0.7482,0.6637,0.627,0.4078,0.6659,0.1872,-0.7222,0.6666,0.4329,-0.6069,0.6675,0.228,0.7089,0.6702,0.1282,0.731,0.6718,0.7405,0.0196,0.6722,0.2328,-0.7028,0.6743,-0.1254,0.7278,0.6783,0.7066,0.2014,0.6811,0.5441,0.4899,0.6836,0.527,-0.5049,0.6849,0.2365,-0.6892,0.6868,-0.3301,0.6476,0.6884,0.7253,-0.0024,0.6894,-0.2995,0.6595,0.6917,0.4137,-0.592,0.6923,-0.4381,0.5735,0.6929,0.6894,-0.2112,0.6933,0.2788,0.6645,0.7038,0.4087,-0.581,0.7067,0.1227,-0.6968,0.7069,-0.4614,-0.5361,0.708,-0.1358,-0.693,0.7121,-0.0527,-0.7001,0.7127,0.3299,-0.6191,0.7221,0.3708,-0.584,0.7228,0.6737,-0.1543,0.724,0.3011,0.6206,0.7248,0.6063,-0.3271,0.7254,0.685,0.068,0.7281,0.1081,0.6769,0.7299,0.6698,-0.1367,0.7306,-0.0115,0.6827,0.7346,-0.5106,0.4467,0.7361,-0.6086,0.2962,0.7365,0.1568,-0.658,0.7368,0.6593,0.1496,0.7387,0.3368,-0.5838,0.7398,-0.5524,-0.3841,0.741,-0.0928,0.6651,0.7451,0.3763,-0.5506,0.747,-0.1543,-0.6467,0.7477,0.1196,0.6531,0.7488,-0.3028,-0.5896,0.7505,-0.2239,-0.6217,0.751,0.2554,-0.6089,0.7535,0.5664,-0.3339,0.7541,-0.6014,-0.264,0.7546,0.6254,0.1984,0.7599,0.2009,0.6182,0.7603,0.0306,-0.6489,0.7603,-0.6044,0.238,0.7603,0.4562,-0.4623,0.7634,0.3425,0.5477,0.7638,-0.2563,0.5924,0.764,0.2525,-0.5938,0.766,-0.1183,-0.6319,0.7703,0.3823,-0.5104,0.7712,-0.564,-0.2951,0.7718,-0.4107,-0.4855,0.7724,0.6248,-0.1138,0.7787,-0.0423,-0.626,0.7799,0.0274,-0.6253,0.7819,-0.1014,0.6151,0.7839,0.197,-0.5888,0.7848,-0.133,-0.6054,0.7871,0.2754,-0.552,0.7875,0.3298,0.5207,0.7876,0.027,-0.6156,0.7884,-0.5931,0.1632,0.7886,0.0619,-0.6118,0.7898,-0.4933,-0.3645,0.7938,0.4724,-0.3829,0.7985,-0.4926,0.3462,0.8006,0.0846,-0.5932,0.8018,0.0904,-0.5908,0.8019,-0.3562,-0.4797,0.8028,0.5521,-0.2252,0.8031,0.2072,0.5586,0.8037,0.0429,0.5935,0.8039,0.3925,-0.4469,0.8047,-0.0996,-0.5853,0.8065,0.3625,0.467,0.811,0.4554,-0.3673,0.8135,-0.1396,-0.5645,0.8145,0.5241,0.2488,0.8158,0.4708,-0.3358,0.816,0.1536,0.5573,0.8165,0.5481,0.1814,0.8182,0.5749,-0.0034,0.8189,-0.452,-0.3536,0.8195,-0.5042,-0.2723,0.8201,-0.5226,-0.2331,0.8205,-0.515,-0.2479,0.8207,0.4778,-0.3132,0.8216,-0.3392,0.4581,0.8236,-0.5339,0.1916,0.8239,0.2035,-0.5289,0.8243,-0.5254,0.2108,0.8263,-0.5238,0.207,0.8265,0.5504,0.1181,0.8299,0.4477,-0.3329,0.8325,-0.553,0.0331,0.8349,-0.0102,0.5504,0.8353,-0.0849,-0.5432,0.8368,-0.034,-0.5464,0.8381,-0.1066,-0.535,0.8387,0.0253,-0.5439,0.8404,-0.1478,0.5215,0.841,0.0193,-0.5407,0.8413,0.0815,-0.5344,0.8415,0.5268,0.1201,0.8418,-0.2727,-0.4659,0.8448,-0.5132,-0.1515,0.8455,-0.3744,0.3807,0.8469,0.2924,0.4441,0.8482,0.0278,-0.5289,0.8502,0.1553,0.503,0.8518,-0.4977,-0.1638,0.8533,0.5151,0.081,0.8547,0.3714,-0.3627,0.8561,0.234,0.4609,0.8575,0.0549,-0.5115,0.8608,0.4613,-0.2149,0.8609,0.4502,-0.2371,0.8637,-0.1995,0.4629,0.8651,-0.3214,0.3851,0.866,0.2649,-0.4241,0.8717,0.4791,-0.1031,0.8719,0.3182,0.3721,0.8724,-0.3304,0.3602,0.8751,0.3209,-0.3624,0.8798,-0.4599,-0.1205,0.8837,0.3424,0.3192,0.8903,-0.0509,0.4525,0.8903,0.1214,-0.4388,0.8934,-0.1237,-0.432,0.8936,0.0284,0.4479,0.8937,0.4464,0.0454,0.8955,-0.3952,0.2048,0.8957,0.0126,-0.4445,0.8957,-0.0366,0.4431,0.8966,-0.2703,-0.3508,0.8971,0.028,0.441,0.8983,-0.1663,-0.4068,0.899,-0.0379,-0.4363,0.9,-0.3407,0.2718,0.9017,-0.4315,0.0279,0.9032,0.2813,-0.3241,0.9071,0.1132,-0.4055,0.9074,0.0985,0.4087,0.908,0.2635,-0.3257,0.909,0.3101,-0.2787,0.9101,-0.2091,-0.3577,0.9117,0.4035,0.0778,0.9119,-0.3727,-0.1719,0.9124,0.0238,-0.4085,0.9135,-0.2014,-0.3535,0.9148,-0.404,0.0003,0.9152,-0.3827,0.126,0.9195,0.1006,0.38,0.9202,0.3297,0.2111,0.9211,0.2548,-0.2944,0.9241,0.0055,-0.3821,0.9242,0.2167,-0.3147,0.9249,-0.3358,-0.1782,0.9283,-0.3718,0.0075,0.9304,0.0642,-0.361,0.9308,-0.2387,0.2768,0.9369,0.3268,-0.1243,0.9371,-0.2428,-0.2509,0.9379,-0.3385,-0.0765,0.9387,0.275,0.2079,0.9387,0.1705,-0.2996,0.9389,0.0136,-0.3439,0.9402,-0.0712,0.333,0.9403,0.1536,-0.3038,0.9413,-0.0546,0.3331,0.9433,-0.2655,0.1992,0.9445,0.3115,-0.104,0.9462,0.0451,-0.3203,0.9463,-0.0953,0.3089,0.9463,-0.2443,0.2116,0.9464,0.133,-0.2944,0.9465,-0.0724,-0.3146,0.9475,-0.3179,-0.0342,0.9516,0.0903,-0.2937,0.9526,-0.2128,-0.2173,0.9532,-0.2422,0.1811,0.9575,0.0241,-0.2874,0.9617,0.1907,0.1969,0.9633,0.2145,-0.1615,0.9633,0.0831,-0.2551,0.9655,0.2106,0.153,0.9665,-0.2152,-0.1401,0.9682,0.1059,-0.2266,0.9702,-0.0751,-0.2304,0.9702,0.0384,-0.239,0.9734,0.2286,-0.0157,0.9734,-0.155,0.1687,0.9746,0.1098,-0.1953,0.9751,-0.0543,-0.2151,0.9758,-0.0128,0.2181,0.9759,0.1946,0.0989,0.9762,-0.0356,-0.2141,0.9771,0.0319,-0.2104,0.9779,-0.0283,0.2072,0.9788,0.136,-0.1532,0.9812,0.13,0.1429,0.9815,0.0418,0.1868,0.982,0.0117,-0.1883,0.9824,0.0051,0.187,0.9827,0.1852,-0.003,0.9828,0.1845,-0.0064,0.9847,0.1134,-0.132,0.9854,-0.0078,0.1699,0.9857,0.1316,-0.1051,0.9861,0.1116,-0.1235,0.9868,0.1483,-0.0646,0.9879,0.1493,0.0412,0.9882,0.066,-0.1379,0.9883,-0.1061,-0.1092,0.9909,0.061,-0.1204,0.9909,0.1191,0.0625,0.9927,0.0125,-0.1197,0.9938,-0.1065,0.0316,0.9939,0.0952,0.0563,0.9944,0.0277,0.1018,0.9951,0.0836,-0.053,0.9952,0.0489,-0.0846,0.9956,0.0138,0.0928,0.9964,0.0351,0.0769,0.9971,0.071,-0.0288,0.9975,0.0575,-0.0422,0.9976,0.056,0.0405,0.9978,0.0538,0.039,0.9979,0.056,-0.0326,0.9982,0.0224,-0.0564,0.9984,-0.049,-0.0298,0.9984,0.0216,-0.0526,0.9986,0.0412,0.0331,0.9991,0.0416,0.0105,0.9994,0.0191,0.0281};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl3disk_Geo_5_163_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,13,12,18,-1,19,20,21,-1,22,23,24,-1,25,26,27,-1,28,29,30,-1,31,32,33,-1,34,25,35,-1,36,37,38,-1,39,7,40,-1,41,42,43,-1,44,45,46,-1,43,47,48,-1,49,50,51,-1,48,52,37,-1,53,54,55,-1,56,57,4,-1,58,59,60,-1,49,36,61,-1,62,63,64,-1,65,66,67,-1,68,69,23,-1,70,71,72,-1,73,74,75,-1,76,77,78,-1,77,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,63,94,-1,94,12,95,-1,96,90,92,-1,92,97,96,-1,98,99,100,-1,101,102,103,-1,104,105,103,-1,90,106,91,-1,107,84,108,-1,106,90,99,-1,109,110,111,-1,112,105,104,-1,113,114,115,-1,100,99,90,-1,97,116,95,-1,97,92,116,-1,12,63,62,-1,63,93,89,-1,117,75,83,-1,80,83,82,-1,78,118,119,-1,118,120,119,-1,118,78,121,-1,122,123,98,-1,71,74,73,-1,68,124,72,-1,68,67,66,-1,70,81,74,-1,125,65,17,-1,126,127,128,-1,49,129,50,-1,128,55,130,-1,131,132,133,-1,55,134,135,-1,136,61,36,-1,137,37,36,-1,138,139,140,-1,141,69,142,-1,143,144,145,-1,146,62,138,-1,147,148,149,-1,150,57,2,-1,151,40,7,-1,7,6,151,-1,152,40,151,-1,153,154,155,-1,156,87,157,-1,17,158,35,-1,139,31,140,-1,43,159,47,-1,160,7,39,-1,161,162,45,-1,137,36,49,-1,38,136,36,-1,55,135,130,-1,163,58,164,-1,133,59,131,-1,128,53,55,-1,49,126,129,-1,126,61,127,-1,54,53,56,-1,158,67,23,-1,17,16,125,-1,81,66,82,-1,72,69,68,-1,71,70,74,-1,122,75,123,-1,118,165,166,-1,78,119,76,-1,81,83,74,-1,167,19,87,-1,91,116,92,-1,12,94,63,-1,100,90,96,-1,167,168,115,-1,113,109,104,-1,111,169,109,-1,106,110,91,-1,107,85,84,-1,106,99,170,-1,110,106,111,-1,104,103,113,-1,105,171,103,-1,114,113,103,-1,98,123,99,-1,95,116,94,-1,110,93,91,-1,89,167,87,-1,86,172,84,-1,75,74,83,-1,77,80,82,-1,76,119,173,-1,174,121,78,-1,174,175,125,-1,73,75,122,-1,72,124,70,-1,23,67,68,-1,70,124,81,-1,16,144,125,-1,49,61,126,-1,176,160,39,-1,48,37,137,-1,51,137,49,-1,177,43,48,-1,177,41,43,-1,40,52,39,-1,37,178,38,-1,35,22,34,-1,31,33,140,-1,179,28,30,-1,25,34,26,-1,180,16,15,-1,64,88,139,-1,17,35,15,-1,95,12,14,-1,181,182,183,-1,1,0,184,-1,5,185,3,-1,57,0,2,-1,38,186,136,-1,38,187,186,-1,8,160,188,-1,7,160,8,-1,154,189,155,-1,154,190,189,-1,191,192,193,-1,191,194,192,-1,195,196,197,-1,198,196,195,-1,148,11,10,-1,148,147,11,-1,138,64,139,-1,62,64,138,-1,199,200,201,-1,199,102,200,-1,202,203,204,-1,202,205,203,-1,206,165,179,-1,166,165,206,-1,141,23,69,-1,23,141,24,-1,73,207,208,-1,73,122,207,-1,209,210,211,-1,209,195,210,-1,9,212,213,-1,9,214,212,-1,215,32,149,-1,215,33,32,-1,216,157,21,-1,157,216,217,-1,218,219,220,-1,219,218,221,-1,222,223,224,-1,222,225,223,-1,226,227,228,-1,226,229,227,-1,230,231,232,-1,230,233,231,-1,234,33,235,-1,234,140,33,-1,150,231,236,-1,150,2,231,-1,187,223,186,-1,187,237,223,-1,6,227,151,-1,6,238,227,-1,188,239,8,-1,188,240,239,-1,241,242,243,-1,241,244,242,-1,245,246,29,-1,245,247,246,-1,27,183,248,-1,181,183,27,-1,15,249,180,-1,15,250,249,-1,251,217,252,-1,251,253,217,-1,141,254,24,-1,141,255,254,-1,256,257,211,-1,258,257,256,-1,259,260,261,-1,259,212,260,-1,262,14,13,-1,14,262,233,-1,207,263,264,-1,207,265,263,-1,246,155,189,-1,155,246,247,-1,244,192,242,-1,193,192,244,-1,266,267,268,-1,266,269,267,-1,270,271,162,-1,272,271,270,-1,50,268,51,-1,266,268,50,-1,190,44,46,-1,190,154,44,-1,273,274,275,-1,274,273,276,-1,39,159,176,-1,39,47,159,-1,277,278,182,-1,277,279,278,-1,58,280,281,-1,58,60,280,-1,282,59,283,-1,60,59,282,-1,283,284,285,-1,283,286,284,-1,198,132,196,-1,132,198,133,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl3disk_Geo_5_163_coordIndex_2()
		{
			int[] value = {54,134,55,-1,54,287,134,-1,53,127,56,-1,128,127,53,-1,288,174,143,-1,121,174,288,-1,125,143,174,-1,125,144,143,-1,77,66,175,-1,82,66,77,-1,165,121,288,-1,121,165,118,-1,83,86,117,-1,83,80,86,-1,289,119,120,-1,290,119,289,-1,290,291,292,-1,290,293,291,-1,109,115,168,-1,113,115,109,-1,112,109,169,-1,109,112,104,-1,107,169,111,-1,108,169,107,-1,294,295,202,-1,295,294,171,-1,84,296,108,-1,84,291,296,-1,99,297,170,-1,99,123,297,-1,298,202,295,-1,298,205,202,-1,112,108,296,-1,112,169,108,-1,103,294,101,-1,103,171,294,-1,20,167,115,-1,20,19,167,-1,115,199,20,-1,199,115,114,-1,85,117,86,-1,85,297,117,-1,298,290,289,-1,298,293,290,-1,119,292,173,-1,292,119,290,-1,65,175,66,-1,125,175,65,-1,299,300,148,-1,299,287,300,-1,54,4,3,-1,56,4,54,-1,196,131,301,-1,132,131,196,-1,164,302,163,-1,164,10,302,-1,303,50,129,-1,50,303,266,-1,133,283,59,-1,283,133,286,-1,281,164,58,-1,281,299,164,-1,304,266,303,-1,304,269,266,-1,176,279,277,-1,279,176,159,-1,48,51,177,-1,48,137,51,-1,46,275,190,-1,275,46,273,-1,272,305,194,-1,305,272,284,-1,267,306,307,-1,269,306,267,-1,177,268,41,-1,51,268,177,-1,45,273,46,-1,45,162,273,-1,279,308,278,-1,279,42,308,-1,178,52,40,-1,37,52,178,-1,41,267,309,-1,41,268,267,-1,310,244,311,-1,310,193,244,-1,249,248,312,-1,250,248,249,-1,313,314,228,-1,315,314,313,-1,316,233,230,-1,316,14,233,-1,251,31,253,-1,251,32,31,-1,317,261,221,-1,317,259,261,-1,208,228,314,-1,208,226,228,-1,13,318,262,-1,13,18,318,-1,34,24,254,-1,22,24,34,-1,180,245,145,-1,180,249,245,-1,145,29,28,-1,145,245,29,-1,319,243,320,-1,319,241,243,-1,321,244,241,-1,321,311,244,-1,240,322,323,-1,188,322,240,-1,26,254,323,-1,34,254,26,-1,229,151,227,-1,152,151,229,-1,225,186,223,-1,184,186,225,-1,236,5,150,-1,5,236,324,-1,235,318,234,-1,318,235,324,-1,237,224,223,-1,263,224,237,-1,238,228,227,-1,313,228,238,-1,258,320,243,-1,203,320,258,-1,221,200,219,-1,200,221,261,-1,217,156,157,-1,156,217,253,-1,214,11,252,-1,9,11,214,-1,210,197,317,-1,195,197,210,-1,98,207,122,-1,98,265,207,-1,315,69,72,-1,69,315,142,-1,145,16,180,-1,144,16,145,-1,319,166,206,-1,325,166,319,-1,294,204,220,-1,294,202,204,-1,20,201,21,-1,20,199,201,-1,62,18,12,-1,62,146,18,-1,176,188,160,-1,188,176,322,-1,213,10,9,-1,302,10,213,-1,209,198,195,-1,326,198,209,-1,274,193,310,-1,274,191,193,-1,153,182,154,-1,182,153,183,-1,327,38,178,-1,38,327,187,-1,4,150,5,-1,4,57,150,-1,184,136,186,-1,0,136,184,-1,277,322,176,-1,277,328,322,-1,329,190,275,-1,190,329,189,-1,194,330,192,-1,194,305,330,-1,197,301,331,-1,196,301,197,-1,148,215,149,-1,148,300,215,-1,316,95,14,-1,97,95,316,-1,88,156,139,-1,88,87,156,-1,102,219,200,-1,102,101,219,-1,203,332,320,-1,205,332,203,-1,179,288,28,-1,165,288,179,-1,158,22,35,-1,158,23,22,-1,314,73,208,-1,71,73,314,-1,333,96,334,-1,100,96,333,-1,211,330,209,-1,330,211,257,-1,259,213,212,-1,331,213,259,-1,147,32,251,-1,147,149,32,-1,260,21,201,-1,21,260,216,-1,256,220,204,-1,220,256,218,-1,232,222,230,-1,222,232,225,-1,335,226,264,-1,226,335,229,-1,236,233,262,-1,233,236,231,-1,235,215,185,-1,215,235,33,-1,232,2,1,-1,2,232,231,-1,335,187,327,-1,187,335,237,-1,238,8,239,-1,6,8,238,-1,240,336,239,-1,255,336,240,-1,27,328,181,-1,328,27,26,-1,29,337,30,-1,29,246,337,-1,179,321,206,-1,179,30,321,-1,312,183,153,-1,183,312,248,-1,35,250,15,-1,35,25,250,-1,249,247,245,-1,247,249,312,-1,230,334,316,-1,334,230,222,-1,211,218,256,-1,211,210,218,-1,212,216,260,-1,212,214,216,-1,234,18,146,-1,18,234,318,-1,263,333,224,-1,265,333,263,-1,255,142,336,-1,141,142,255,-1,337,189,329,-1,189,337,246,-1,257,243,242,-1,243,257,258,-1,309,45,308,-1,309,161,45,-1,162,307,270,-1,307,162,161,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl3disk_Geo_5_163_coordIndex_3()
		{
			int[] value = {284,270,285,-1,284,272,270,-1,276,191,274,-1,271,191,276,-1,42,159,43,-1,42,279,159,-1,52,47,39,-1,47,52,48,-1,134,280,135,-1,281,280,134,-1,127,57,56,-1,0,57,127,-1,280,282,304,-1,280,60,282,-1,283,306,282,-1,283,285,306,-1,326,133,198,-1,286,133,326,-1,10,299,148,-1,299,10,164,-1,65,158,17,-1,67,158,65,-1,174,77,175,-1,77,174,78,-1,77,173,79,-1,76,173,77,-1,79,86,80,-1,86,79,172,-1,289,325,332,-1,120,325,289,-1,292,84,172,-1,292,291,84,-1,116,93,94,-1,91,93,116,-1,93,109,168,-1,109,93,110,-1,114,102,199,-1,103,102,114,-1,107,106,170,-1,107,111,106,-1,105,295,171,-1,295,105,338,-1,291,338,296,-1,291,293,338,-1,170,85,107,-1,170,297,85,-1,338,298,295,-1,338,293,298,-1,296,105,112,-1,338,105,296,-1,168,89,93,-1,89,168,167,-1,64,89,88,-1,89,64,63,-1,297,75,117,-1,297,123,75,-1,332,298,289,-1,332,205,298,-1,172,173,292,-1,172,79,173,-1,325,118,166,-1,325,120,118,-1,66,124,68,-1,124,66,81,-1,287,3,300,-1,54,3,287,-1,129,128,130,-1,129,126,128,-1,301,163,302,-1,131,163,301,-1,305,286,326,-1,284,286,305,-1,306,304,282,-1,304,306,269,-1,303,130,135,-1,130,303,129,-1,131,58,163,-1,131,59,58,-1,281,287,299,-1,281,134,287,-1,127,136,0,-1,136,127,61,-1,304,135,280,-1,304,303,135,-1,278,154,182,-1,44,154,278,-1,271,194,191,-1,194,271,272,-1,306,270,307,-1,306,285,270,-1,307,309,267,-1,307,161,309,-1,162,276,273,-1,162,271,276,-1,44,308,45,-1,44,278,308,-1,309,42,41,-1,42,309,308,-1,311,329,310,-1,329,311,337,-1,315,336,142,-1,315,313,336,-1,334,224,333,-1,334,222,224,-1,214,217,216,-1,214,252,217,-1,210,221,218,-1,210,317,221,-1,264,208,207,-1,208,264,226,-1,146,140,234,-1,146,138,140,-1,25,248,250,-1,248,25,27,-1,153,247,312,-1,153,155,247,-1,206,241,319,-1,206,321,241,-1,30,311,321,-1,30,337,311,-1,328,323,322,-1,328,26,323,-1,255,323,254,-1,255,240,323,-1,327,229,335,-1,327,152,229,-1,1,225,232,-1,1,184,225,-1,185,324,235,-1,185,5,324,-1,262,324,236,-1,262,318,324,-1,264,237,335,-1,264,263,237,-1,313,239,336,-1,313,238,239,-1,204,258,256,-1,204,203,258,-1,261,201,200,-1,201,261,260,-1,253,139,156,-1,139,253,31,-1,147,252,11,-1,147,251,252,-1,331,317,197,-1,331,259,317,-1,330,242,192,-1,330,257,242,-1,333,98,100,-1,98,333,265,-1,72,314,315,-1,72,71,314,-1,28,143,145,-1,288,143,28,-1,320,325,319,-1,332,325,320,-1,101,220,219,-1,101,294,220,-1,87,21,157,-1,87,19,21,-1,96,316,334,-1,96,97,316,-1,331,302,213,-1,301,302,331,-1,330,326,209,-1,305,326,330,-1,275,310,329,-1,275,274,310,-1,328,182,181,-1,277,182,328,-1,178,152,327,-1,178,40,152,-1,185,300,3,-1,300,185,215,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl3disk_Geo_5_163_normalIndex_1()
		{
			int[] value = {242,273,274,-1,264,130,295,-1,64,107,68,-1,320,281,321,-1,258,303,292,-1,3,45,35,-1,303,258,308,-1,284,289,323,-1,16,88,24,-1,4,14,8,-1,19,12,23,-1,334,328,325,-1,11,4,2,-1,125,142,145,-1,272,107,97,-1,221,119,239,-1,183,194,229,-1,239,109,198,-1,143,176,157,-1,198,112,142,-1,230,231,100,-1,65,222,130,-1,146,214,126,-1,143,125,234,-1,243,106,290,-1,72,60,233,-1,83,80,88,-1,184,134,61,-1,216,225,149,-1,67,71,62,-1,71,152,123,-1,81,70,151,-1,173,177,206,-1,294,304,265,-1,190,257,122,-1,276,106,256,-1,256,258,278,-1,148,190,122,-1,122,154,148,-1,201,139,115,-1,270,277,245,-1,266,237,245,-1,190,189,257,-1,132,173,209,-1,189,190,139,-1,268,269,215,-1,203,237,266,-1,279,252,262,-1,115,139,190,-1,154,267,278,-1,154,122,267,-1,258,106,243,-1,106,276,265,-1,228,149,151,-1,123,151,70,-1,62,95,99,-1,95,113,99,-1,95,62,86,-1,192,197,201,-1,134,225,216,-1,83,76,61,-1,83,233,60,-1,184,81,225,-1,101,72,35,-1,213,220,136,-1,143,186,176,-1,136,100,79,-1,138,105,196,-1,100,219,118,-1,193,234,125,-1,155,142,125,-1,322,336,327,-1,30,80,34,-1,49,54,15,-1,315,243,322,-1,319,282,316,-1,271,222,274,-1,66,97,107,-1,107,64,66,-1,114,97,66,-1,17,56,18,-1,335,294,331,-1,35,48,2,-1,336,334,327,-1,239,108,109,-1,208,107,272,-1,212,124,194,-1,155,125,143,-1,145,193,125,-1,100,118,79,-1,110,146,160,-1,196,214,138,-1,136,230,100,-1,143,213,186,-1,213,234,220,-1,231,230,65,-1,48,233,88,-1,35,45,101,-1,81,60,70,-1,61,80,83,-1,134,184,225,-1,192,149,197,-1,95,59,69,-1,62,99,67,-1,81,151,225,-1,232,284,294,-1,257,267,122,-1,258,256,106,-1,115,190,148,-1,232,275,262,-1,279,268,266,-1,215,188,268,-1,189,269,257,-1,132,177,173,-1,189,139,111,-1,269,189,215,-1,266,245,279,-1,237,227,245,-1,252,279,245,-1,201,197,139,-1,278,267,256,-1,269,276,257,-1,265,232,294,-1,206,129,173,-1,149,225,151,-1,71,123,70,-1,67,99,137,-1,77,86,62,-1,77,63,101,-1,216,149,192,-1,61,76,184,-1,88,233,83,-1,184,76,81,-1,45,54,101,-1,143,234,213,-1,73,208,272,-1,198,142,155,-1,157,155,143,-1,259,239,198,-1,259,221,239,-1,97,112,272,-1,142,159,145,-1,2,16,11,-1,334,325,327,-1,32,19,23,-1,4,11,14,-1,7,45,3,-1,290,304,336,-1,35,2,3,-1,278,258,292,-1,22,57,20,-1,273,242,226,-1,295,298,264,-1,222,242,274,-1,145,103,193,-1,145,179,103,-1,68,208,43,-1,107,208,68,-1,56,26,18,-1,56,75,26,-1,104,98,58,-1,104,120,98,-1,280,241,296,-1,235,241,280,-1,282,321,281,-1,282,319,321,-1,322,290,336,-1,243,290,322,-1,285,306,318,-1,285,277,306,-1,224,163,251,-1,224,166,163,-1,41,59,32,-1,69,59,41,-1,30,88,80,-1,88,30,24,-1,216,244,210,-1,216,192,244,-1,240,288,250,-1,240,280,288,-1,320,324,310,-1,320,329,324,-1,314,328,316,-1,314,325,328,-1,330,331,323,-1,331,330,337,-1,287,297,283,-1,297,287,301,-1,140,91,85,-1,140,158,91,-1,200,74,78,-1,200,185,74,-1,260,291,263,-1,260,293,291,-1,317,325,311,-1,317,327,325,-1,271,291,302,-1,271,274,291,-1,179,91,103,-1,179,181,91,-1,64,74,66,-1,64,47,74,-1,43,36,68,-1,43,33,36,-1,51,89,84,-1,51,50,89,-1,9,13,12,-1,9,10,13,-1,8,20,6,-1,22,20,8,-1,3,1,7,-1,3,0,1,-1,332,337,333,-1,332,338,337,-1,30,21,24,-1,30,29,21,-1,254,162,250,-1,161,162,254,-1,312,326,313,-1,312,324,326,-1,307,292,303,-1,292,307,293,-1,244,182,253,-1,244,180,182,-1,13,18,26,-1,18,13,10,-1,50,98,89,-1,58,98,50,-1,175,156,199,-1,175,174,156,-1,117,147,124,-1,135,147,117,-1,176,199,157,-1,175,199,176,-1,75,183,229,-1,75,56,183,-1,202,96,93,-1,96,202,153,-1,272,108,73,-1,272,109,108,-1,53,102,57,-1,53,90,102,-1,146,150,207,-1,146,126,150,-1,218,214,223,-1,126,214,218,-1,223,169,168,-1,223,204,169,-1,235,105,241,-1,105,235,196,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl3disk_Geo_5_163_normalIndex_2()
		{
			int[] value = {231,219,100,-1,231,249,219,-1,230,220,65,-1,136,220,230,-1,52,77,49,-1,86,77,52,-1,101,49,77,-1,101,54,49,-1,71,60,63,-1,70,60,71,-1,59,86,52,-1,86,59,95,-1,151,206,228,-1,151,123,206,-1,144,99,113,-1,127,99,144,-1,127,170,133,-1,127,167,170,-1,268,262,275,-1,279,262,268,-1,203,268,188,-1,268,203,266,-1,132,188,215,-1,209,188,132,-1,247,195,224,-1,195,247,227,-1,173,205,209,-1,173,170,205,-1,139,178,111,-1,139,197,178,-1,171,224,195,-1,171,166,224,-1,203,209,205,-1,203,188,209,-1,245,247,270,-1,245,227,247,-1,289,232,262,-1,289,284,232,-1,262,285,289,-1,285,262,252,-1,177,228,206,-1,177,178,228,-1,171,127,144,-1,171,167,127,-1,99,133,137,-1,133,99,127,-1,72,63,60,-1,101,63,72,-1,238,286,282,-1,238,249,286,-1,231,130,264,-1,65,130,231,-1,241,138,246,-1,105,138,241,-1,160,261,110,-1,160,281,261,-1,141,176,186,-1,176,141,175,-1,196,223,214,-1,223,196,204,-1,207,160,146,-1,207,238,160,-1,187,175,141,-1,187,174,175,-1,73,90,53,-1,90,73,108,-1,198,157,259,-1,198,155,157,-1,229,93,75,-1,93,229,202,-1,135,165,120,-1,165,135,169,-1,156,172,121,-1,174,172,156,-1,259,199,221,-1,157,199,259,-1,194,202,229,-1,194,124,202,-1,90,131,102,-1,90,119,131,-1,159,112,97,-1,142,112,159,-1,221,156,191,-1,221,199,156,-1,42,50,39,-1,42,58,50,-1,1,6,5,-1,0,6,1,-1,44,82,78,-1,46,82,44,-1,255,293,260,-1,255,292,293,-1,332,334,338,-1,332,328,334,-1,299,313,301,-1,299,312,313,-1,210,78,82,-1,210,200,78,-1,303,309,307,-1,303,308,309,-1,11,24,21,-1,16,24,11,-1,7,9,15,-1,7,1,9,-1,15,12,19,-1,15,9,12,-1,55,84,87,-1,55,51,84,-1,37,50,51,-1,37,39,50,-1,33,40,28,-1,43,40,33,-1,14,21,28,-1,11,21,14,-1,185,66,74,-1,114,66,185,-1,158,103,91,-1,226,103,158,-1,302,295,271,-1,295,302,305,-1,311,309,317,-1,309,311,305,-1,181,85,91,-1,182,85,181,-1,47,78,74,-1,44,78,47,-1,161,87,84,-1,163,87,161,-1,301,306,297,-1,306,301,313,-1,337,335,331,-1,335,337,338,-1,329,321,333,-1,320,321,329,-1,288,296,299,-1,280,296,288,-1,201,244,192,-1,201,180,244,-1,46,80,61,-1,80,46,34,-1,15,45,7,-1,54,45,15,-1,55,69,41,-1,92,69,55,-1,247,251,283,-1,247,224,251,-1,289,318,323,-1,289,285,318,-1,243,308,258,-1,243,315,308,-1,73,43,208,-1,43,73,40,-1,310,281,320,-1,261,281,310,-1,240,235,280,-1,217,235,240,-1,96,58,42,-1,96,104,58,-1,17,57,56,-1,57,17,20,-1,236,145,159,-1,145,236,179,-1,130,271,295,-1,130,222,271,-1,226,193,103,-1,242,193,226,-1,53,40,73,-1,53,27,40,-1,38,75,93,-1,75,38,26,-1,120,164,98,-1,120,165,164,-1,296,246,300,-1,241,246,296,-1,282,314,316,-1,282,286,314,-1,255,278,292,-1,154,278,255,-1,304,335,336,-1,304,294,335,-1,277,297,306,-1,277,270,297,-1,163,116,87,-1,166,116,163,-1,32,52,19,-1,59,52,32,-1,48,16,2,-1,48,88,16,-1,82,216,210,-1,134,216,82,-1,94,148,128,-1,115,148,94,-1,250,164,240,-1,164,250,162,-1,312,310,324,-1,300,310,312,-1,319,328,332,-1,319,316,328,-1,326,323,318,-1,323,326,330,-1,254,283,251,-1,283,254,287,-1,263,140,260,-1,140,263,158,-1,248,200,253,-1,200,248,185,-1,302,293,307,-1,293,302,291,-1,311,314,298,-1,314,311,325,-1,263,274,273,-1,274,263,291,-1,248,179,236,-1,179,248,181,-1,47,68,36,-1,64,68,47,-1,33,31,36,-1,29,31,33,-1,8,27,22,-1,27,8,14,-1,12,25,23,-1,12,13,25,-1,32,37,41,-1,32,23,37,-1,5,20,17,-1,20,5,6,-1,2,0,3,-1,2,4,0,-1,1,10,9,-1,10,1,5,-1,260,128,255,-1,128,260,140,-1,250,287,254,-1,250,288,287,-1,324,330,326,-1,324,329,330,-1,317,308,315,-1,308,317,309,-1,182,94,85,-1,180,94,182,-1,29,34,31,-1,30,34,29,-1,25,26,38,-1,26,25,13,-1,162,84,89,-1,84,162,161,-1,191,194,131,-1,191,212,194,-1,124,121,117,-1,121,124,212,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl3disk_Geo_5_163_normalIndex_3()
		{
			int[] value = {169,117,168,-1,169,135,117,-1,153,104,96,-1,147,104,153,-1,119,108,239,-1,119,90,108,-1,112,109,272,-1,109,112,198,-1,219,150,118,-1,207,150,219,-1,220,222,65,-1,242,222,220,-1,150,218,187,-1,150,126,218,-1,223,172,218,-1,223,168,172,-1,217,196,235,-1,204,196,217,-1,281,238,282,-1,238,281,160,-1,72,48,35,-1,233,48,72,-1,77,71,63,-1,71,77,62,-1,71,137,152,-1,67,137,71,-1,152,206,123,-1,206,152,129,-1,144,92,116,-1,113,92,144,-1,133,173,129,-1,133,170,173,-1,267,276,256,-1,257,276,267,-1,276,268,275,-1,268,276,269,-1,252,277,285,-1,245,277,252,-1,132,189,111,-1,132,215,189,-1,237,195,227,-1,195,237,211,-1,170,211,205,-1,170,167,211,-1,111,177,132,-1,111,178,177,-1,211,171,195,-1,211,167,171,-1,205,237,203,-1,211,237,205,-1,275,265,276,-1,265,275,232,-1,290,265,304,-1,265,290,106,-1,178,149,228,-1,178,197,149,-1,116,171,144,-1,116,166,171,-1,129,137,133,-1,129,152,137,-1,92,95,69,-1,92,113,95,-1,60,76,83,-1,76,60,81,-1,249,264,286,-1,231,264,249,-1,186,136,79,-1,186,213,136,-1,246,110,261,-1,138,110,246,-1,165,204,217,-1,169,204,165,-1,172,187,218,-1,187,172,174,-1,141,79,118,-1,79,141,186,-1,138,146,110,-1,138,214,146,-1,207,249,238,-1,207,219,249,-1,220,193,242,-1,193,220,234,-1,187,118,150,-1,187,141,118,-1,102,56,57,-1,183,56,102,-1,147,120,104,-1,120,147,135,-1,172,117,121,-1,172,168,117,-1,121,191,156,-1,121,212,191,-1,124,153,202,-1,124,147,153,-1,183,131,194,-1,183,102,131,-1,191,119,221,-1,119,191,131,-1,39,38,42,-1,38,39,25,-1,46,31,34,-1,46,44,31,-1,128,85,94,-1,128,140,85,-1,329,337,330,-1,329,333,337,-1,288,301,287,-1,288,299,301,-1,253,210,244,-1,210,253,200,-1,315,327,317,-1,315,322,327,-1,4,6,0,-1,6,4,8,-1,17,10,5,-1,17,18,10,-1,41,51,55,-1,41,37,51,-1,23,39,37,-1,23,25,39,-1,27,28,40,-1,27,14,28,-1,29,28,21,-1,29,33,28,-1,236,185,248,-1,236,114,185,-1,273,158,263,-1,273,226,158,-1,298,305,311,-1,298,295,305,-1,307,305,302,-1,307,309,305,-1,253,181,248,-1,253,182,181,-1,44,36,31,-1,44,47,36,-1,251,161,254,-1,251,163,161,-1,313,318,306,-1,318,313,326,-1,338,336,335,-1,336,338,334,-1,319,333,321,-1,319,332,333,-1,300,299,296,-1,300,312,299,-1,164,89,98,-1,164,162,89,-1,94,201,115,-1,201,94,180,-1,61,82,46,-1,61,134,82,-1,19,49,15,-1,52,49,19,-1,87,92,55,-1,116,92,87,-1,270,283,297,-1,270,247,283,-1,294,323,331,-1,294,284,323,-1,148,255,128,-1,148,154,255,-1,300,261,310,-1,246,261,300,-1,164,217,240,-1,165,217,164,-1,93,42,38,-1,93,96,42,-1,27,57,22,-1,53,57,27,-1,159,114,236,-1,159,97,114,-1,298,286,264,-1,286,298,314,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl4_Geo_5_169_coordIndex_2()
		{
			int[] value = {581,583,584,-1,585,586,587,-1,588,589,590,-1,591,592,593,-1,594,595,596,-1,597,594,598,-1,599,556,600,-1,599,601,556,-1,602,603,604,-1,253,605,254,-1,522,487,523,-1,606,607,608,-1,482,609,610,-1,610,609,611,-1,566,565,612,-1,613,505,614,-1,371,373,375,-1,412,615,405,-1,455,454,511,-1,616,617,618,-1,619,507,509,-1,619,509,620,-1,621,622,623,-1,624,490,608,-1,490,606,608,-1,625,399,626,-1,627,628,629,-1,630,398,400,-1,631,632,633,-1,634,628,627,-1,635,636,626,-1,637,427,426,-1,638,639,640,-1,638,641,431,-1,642,641,643,-1,413,642,644,-1,645,646,647,-1,648,649,650,-1,650,448,446,-1,493,492,651,-1,652,653,654,-1,481,655,656,-1,657,655,658,-1,659,660,661,-1,662,663,664,-1,665,666,422,-1,629,559,558,-1,550,549,667,-1,668,669,670,-1,671,547,546,-1,672,673,674,-1,675,676,403,-1,677,678,679,-1,548,397,675,-1,680,681,682,-1,503,409,408,-1,683,536,684,-1,685,342,341,-1,685,686,342,-1,687,688,689,-1,533,668,670,-1,538,540,690,-1,691,669,692,-1,550,693,694,-1,387,394,695,-1,696,697,698,-1,699,700,547,-1,701,699,547,-1,547,702,703,-1,704,384,383,-1,401,697,705,-1,694,693,394,-1,668,692,669,-1,706,539,538,-1,688,539,706,-1,707,708,709,-1,709,533,670,-1,710,711,712,-1,713,714,715,-1,366,716,364,-1,717,682,698,-1,698,401,717,-1,718,402,719,-1,548,675,720,-1,548,721,722,-1,723,721,724,-1,330,332,723,-1,673,725,726,-1,547,671,727,-1,728,729,606,-1,439,728,730,-1,662,425,663,-1,731,656,655,-1,481,732,428,-1,733,652,734,-1,450,735,413,-1,644,642,736,-1,737,738,634,-1,636,739,736,-1,431,641,642,-1,643,641,638,-1,740,640,741,-1,742,741,430,-1,636,637,626,-1,443,743,633,-1,633,444,443,-1,699,630,400,-1,743,627,629,-1,399,419,490,-1,400,490,624,-1,613,744,505,-1,652,622,621,-1,745,652,621,-1,746,747,494,-1,748,749,620,-1,619,620,750,-1,750,507,619,-1,512,514,614,-1,632,445,444,-1,628,399,398,-1,751,488,752,-1,610,753,754,-1,755,545,756,-1,757,754,758,-1,602,605,759,-1,760,761,762,-1,594,760,595,-1,593,763,590,-1,764,765,233,-1,766,767,578,-1,768,769,770,-1,765,584,771,-1,561,354,353,-1,772,773,774,-1,775,773,776,-1,777,566,778,-1,563,562,561,-1,778,779,780,-1,731,657,433,-1,600,477,476,-1,781,782,396,-1,748,783,784,-1,647,785,786,-1,755,546,545,-1,495,787,465,-1,788,789,783,-1,537,790,410,-1,691,379,378,-1,791,531,792,-1,793,794,483,-1,795,785,515,-1,796,797,795,-1,798,456,521,-1,799,800,788,-1,790,440,800,-1,801,511,510,-1,720,403,402,-1,802,497,803,-1,522,804,805,-1,467,498,468,-1,806,807,808,-1,809,607,780,-1,810,746,496,-1,810,493,746,-1,699,811,629,-1,482,523,486,-1,488,609,489,-1,812,813,814,-1,815,816,817,-1,818,477,557,-1,819,473,472,-1,820,819,491,-1,787,495,808,-1,466,468,500,-1,462,461,465,-1,821,454,798,-1,822,411,823,-1,457,508,824,-1,825,786,551,-1,444,447,737,-1,659,433,432,-1,354,472,355,-1,415,432,431,-1,426,425,665,-1,432,415,414,-1,640,639,657,-1,658,480,741,-1,417,826,827,-1,517,552,520,-1,744,558,406,-1,505,406,405,-1,410,405,404,-1,401,719,402,-1,811,385,384,-1,828,487,522,-1,675,397,396,-1,680,782,829,-1,703,526,830,-1,830,526,391,-1,696,524,702,-1,381,380,392,-1,377,695,693,-1,380,379,504,-1,831,364,339,-1,374,373,832,-1,802,803,671,-1,705,542,833,-1,363,364,362,-1,834,361,341,-1,835,836,837,-1,721,838,722,-1,839,838,721,-1,840,685,841,-1,842,843,844,-1,323,845,54,-1,846,847,848,-1,849,189,188,-1,850,188,851,-1,202,201,852,-1,14,712,711,-1,853,715,714,-1,22,854,855,-1,44,334,856,-1,326,53,857,-1,858,331,333,-1,859,679,332,-1,857,329,326,-1,326,330,672,-1,198,280,199,-1,321,199,322,-1,321,323,194,-1,320,319,348,-1,46,860,861,-1,862,317,260,-1,863,862,88,-1,864,865,315,-1,314,313,316,-1,308,313,311,-1,866,867,309,-1,300,303,301,-1,868,869,870,-1,871,294,872,-1,93,288,873,-1,874,875,294,-1,290,875,876,-1,877,878,291,-1,879,880,877,-1,293,282,874,-1,285,92,91,-1,57,56,164,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl4_Geo_5_169_coordIndex_3()
		{
			int[] value = {284,881,55,-1,69,68,143,-1,280,198,144,-1,882,278,883,-1,196,279,147,-1,207,884,161,-1,107,885,108,-1,91,96,166,-1,172,265,264,-1,174,262,261,-1,886,887,200,-1,888,889,174,-1,890,252,249,-1,233,765,235,-1,771,891,765,-1,892,133,893,-1,223,222,894,-1,895,896,897,-1,898,899,900,-1,901,902,903,-1,904,905,902,-1,906,218,220,-1,893,907,904,-1,908,312,909,-1,121,215,910,-1,335,861,911,-1,912,913,277,-1,206,914,207,-1,915,916,917,-1,200,918,886,-1,919,920,921,-1,148,113,922,-1,914,923,884,-1,924,7,6,-1,925,926,927,-1,928,348,319,-1,929,930,931,-1,929,179,930,-1,177,176,183,-1,174,173,932,-1,137,933,173,-1,137,920,933,-1,934,935,936,-1,267,164,163,-1,937,938,203,-1,939,159,161,-1,90,89,924,-1,924,101,90,-1,940,941,273,-1,53,327,857,-1,150,942,943,-1,257,944,153,-1,153,942,149,-1,150,945,195,-1,946,947,259,-1,148,147,299,-1,55,50,49,-1,140,255,138,-1,140,171,141,-1,948,0,949,-1,950,816,951,-1,121,123,952,-1,953,119,954,-1,955,956,954,-1,957,224,120,-1,958,959,120,-1,149,922,116,-1,156,115,960,-1,113,110,109,-1,961,962,963,-1,268,964,965,-1,108,885,966,-1,106,108,270,-1,967,63,968,-1,873,94,96,-1,969,165,95,-1,908,909,87,-1,133,119,120,-1,970,866,971,-1,76,81,868,-1,908,78,878,-1,880,879,972,-1,64,210,973,-1,164,266,216,-1,269,216,266,-1,287,93,92,-1,60,269,974,-1,53,975,54,-1,50,217,843,-1,944,257,256,-1,335,213,976,-1,338,337,856,-1,977,978,175,-1,175,978,842,-1,322,177,323,-1,979,36,980,-1,37,928,33,-1,847,846,36,-1,339,22,981,-1,89,31,30,-1,982,983,943,-1,984,194,975,-1,926,985,853,-1,341,17,834,-1,986,5,4,-1,858,987,331,-1,331,987,988,-1,989,343,925,-1,954,119,990,-1,991,201,5,-1,988,859,331,-1,986,4,835,-1,341,15,17,-1,926,925,985,-1,321,194,992,-1,847,36,844,-1,33,35,37,-1,979,844,36,-1,177,993,323,-1,842,350,175,-1,994,977,175,-1,338,856,334,-1,47,34,995,-1,976,328,335,-1,328,338,334,-1,944,256,996,-1,50,843,51,-1,106,270,269,-1,53,325,975,-1,974,6,60,-1,855,8,7,-1,92,56,287,-1,266,106,269,-1,216,57,164,-1,170,967,167,-1,973,65,64,-1,880,972,310,-1,312,908,878,-1,868,997,76,-1,318,864,74,-1,77,76,997,-1,120,136,133,-1,225,88,998,-1,76,908,87,-1,873,96,91,-1,63,62,968,-1,966,964,108,-1,965,999,268,-1,937,105,271,-1,109,114,113,-1,115,112,960,-1,149,151,922,-1,959,957,120,-1,957,1000,224,-1,956,953,954,-1,953,1001,119,-1,952,214,121,-1,816,1002,951,-1,127,154,949,-1,1003,1004,1005,-1,1006,1007,1008,-1,140,138,137,-1,1009,142,141,-1,51,842,978,-1,1010,225,224,-1,299,1011,148,-1,946,259,1012,-1,151,150,195,-1,115,153,149,-1,153,152,257,-1,983,150,943,-1,53,52,327,-1,884,939,161,-1,203,103,937,-1,935,61,936,-1,165,915,935,-1,174,932,888,-1,178,177,183,-1,181,183,176,-1,928,846,348,-1,974,924,6,-1,914,884,207,-1,113,116,922,-1,858,212,320,-1,1013,968,62,-1,1014,205,207,-1,277,276,912,-1,335,334,861,-1,122,121,910,-1,312,311,909,-1,946,1015,906,-1,893,904,1016,-1,906,220,1017,-1,904,1017,905,-1,901,903,1018,-1,898,1018,899,-1,895,1019,896,-1,894,1020,223,-1,990,1021,954,-1,891,235,765,-1,1022,229,1023,-1,233,235,234,-1,239,1024,126,-1,1025,1026,238,-1,245,1027,1028,-1,890,1029,252,-1,888,758,889,-1,886,996,887,-1,174,889,262,-1,264,141,172,-1,881,143,1030,-1,91,166,1031,-1,157,1032,938,-1,1033,274,276,-1,276,161,1033,-1,161,277,207,-1,146,196,147,-1,278,1034,279,-1,278,305,1034,-1,266,164,267,-1,198,145,144,-1,145,69,143,-1,55,287,56,-1,144,284,49,-1,91,1031,285,-1,285,56,92,-1,281,289,874,-1,877,1035,879,-1,877,880,878,-1,290,292,875,-1,872,292,77,-1,294,293,874,-1,288,295,873,-1,871,295,294,-1,870,869,97,-1,866,970,867,-1,308,307,313,-1,314,316,315,-1,75,864,315,-1,863,88,87,-1,260,1036,862,-1,348,349,320,-1,858,320,852,-1,323,975,194,-1,321,982,199,-1,1037,324,326,-1,329,332,330,-1,333,331,329,-1,858,333,212,-1,327,976,212,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl4_Geo_5_169_coordIndex_4()
		{
			int[] value = {326,325,53,-1,54,1038,336,-1,54,845,1038,-1,22,855,20,-1,714,13,853,-1,711,1039,14,-1,852,186,202,-1,849,188,850,-1,34,33,995,-1,848,348,846,-1,54,975,323,-1,844,979,842,-1,1040,1041,45,-1,199,49,977,-1,478,355,1042,-1,837,1043,1044,-1,839,678,838,-1,835,837,986,-1,834,359,361,-1,364,716,362,-1,1045,542,727,-1,704,380,504,-1,377,693,378,-1,380,704,392,-1,702,697,696,-1,391,383,830,-1,830,701,703,-1,829,681,680,-1,694,394,393,-1,396,676,675,-1,782,680,676,-1,828,522,805,-1,384,559,811,-1,405,615,506,-1,401,705,719,-1,404,537,410,-1,1046,536,683,-1,505,405,506,-1,406,505,744,-1,827,1047,417,-1,480,430,741,-1,639,433,657,-1,414,434,432,-1,429,428,1048,-1,354,1049,472,-1,570,1050,1051,-1,432,439,659,-1,446,515,1052,-1,444,445,447,-1,825,551,552,-1,615,457,506,-1,457,822,508,-1,822,412,411,-1,553,617,1053,-1,462,465,464,-1,463,466,500,-1,787,808,467,-1,491,1054,820,-1,819,472,491,-1,355,1055,1056,-1,1057,1058,1042,-1,557,1059,818,-1,815,1002,816,-1,812,502,1060,-1,1061,1062,1063,-1,1064,1065,1066,-1,482,486,489,-1,488,485,1067,-1,830,383,385,-1,491,570,492,-1,607,1068,780,-1,807,497,808,-1,498,804,468,-1,522,499,804,-1,802,498,497,-1,718,720,402,-1,790,832,440,-1,788,620,799,-1,521,512,798,-1,1069,744,613,-1,796,795,1070,-1,793,483,482,-1,525,530,532,-1,531,1071,792,-1,667,691,378,-1,1072,1073,840,-1,537,1046,790,-1,783,748,788,-1,495,465,496,-1,549,548,722,-1,786,825,1074,-1,748,1075,1076,-1,395,781,396,-1,476,1077,600,-1,659,731,433,-1,563,1078,562,-1,777,1079,566,-1,776,1080,775,-1,772,1081,773,-1,1042,1082,478,-1,584,1083,771,-1,571,768,770,-1,764,584,765,-1,594,597,760,-1,762,761,588,-1,760,1084,761,-1,1085,1086,1087,-1,602,759,603,-1,757,758,888,-1,756,828,755,-1,610,754,757,-1,752,612,751,-1,632,516,445,-1,457,824,458,-1,620,788,748,-1,746,745,747,-1,1088,621,1089,-1,400,624,700,-1,399,625,419,-1,629,398,630,-1,744,743,558,-1,633,632,444,-1,636,635,739,-1,742,430,1090,-1,740,741,742,-1,1091,643,638,-1,736,643,636,-1,737,634,442,-1,736,738,644,-1,413,735,414,-1,651,654,653,-1,733,622,652,-1,732,1048,428,-1,731,661,656,-1,662,1092,425,-1,439,1051,728,-1,606,666,728,-1,781,1093,1094,-1,670,549,722,-1,702,547,727,-1,547,700,624,-1,672,330,673,-1,673,723,718,-1,332,679,839,-1,548,724,721,-1,718,719,673,-1,829,782,1095,-1,366,683,716,-1,713,1096,714,-1,710,1097,711,-1,670,1043,709,-1,707,709,1098,-1,706,538,1099,-1,668,1100,692,-1,401,698,697,-1,383,392,704,-1,1101,1102,1103,-1,703,701,547,-1,391,526,525,-1,695,390,387,-1,667,693,550,-1,692,503,691,-1,690,535,538,-1,1104,358,1105,-1,686,344,342,-1,341,361,685,-1,364,340,339,-1,680,682,717,-1,396,782,676,-1,724,548,720,-1,723,332,721,-1,330,723,673,-1,403,720,675,-1,673,719,725,-1,697,702,727,-1,669,549,670,-1,679,678,839,-1,629,811,559,-1,492,570,651,-1,1106,662,664,-1,659,661,731,-1,657,731,655,-1,656,732,481,-1,1107,1108,1109,-1,654,734,652,-1,651,653,493,-1,446,1052,650,-1,650,646,648,-1,642,643,736,-1,431,639,638,-1,640,740,638,-1,426,626,637,-1,442,634,627,-1,631,633,1110,-1,630,699,629,-1,626,1111,625,-1,399,635,626,-1,608,545,624,-1,699,400,700,-1,745,621,747,-1,750,620,749,-1,750,1112,507,-1,511,1113,455,-1,459,821,614,-1,405,410,412,-1,371,375,372,-1,614,514,613,-1,626,426,1111,-1,612,752,566,-1,611,753,610,-1,1114,1067,809,-1,482,489,609,-1,606,1068,607,-1,561,560,354,-1,487,486,523,-1,605,602,254,-1,604,1115,602,-1,599,1087,601,-1,597,598,1085,-1,596,1116,594,-1,591,593,585,-1,588,590,762,-1,586,1117,587,-1,581,584,764,-1,582,764,233,-1,1118,576,581,-1,1118,574,576,-1,571,770,572,-1,1119,813,1120,-1,1121,567,569,-1,566,1079,564,-1,1122,563,353,-1,407,406,558,-1,600,556,477,-1,397,548,550,-1,1047,1123,1124,-1,748,784,1075,-1,555,519,553,-1,551,521,520,-1,1098,709,1043,-1,545,547,624,-1,499,501,500,-1,465,787,466,-1,1125,1126,747,-1,503,692,541,-1,536,404,409,-1,693,667,378,-1,531,1127,532,-1,528,1071,529,-1,751,609,488,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getl4_Geo_5_169_coordIndex_5()
		{
			int[] value = {517,520,456,-1,519,555,517,-1,515,446,445,-1,744,1069,1110,-1,620,509,799,-1,459,614,505,-1,500,502,463,-1,468,804,499,-1,808,497,467,-1,496,746,494,-1,491,493,810,-1,398,629,628,-1,566,779,778,-1,486,485,488,-1,485,487,1128,-1,484,523,482,-1,576,1129,580,-1,1130,1131,1060,-1,593,586,585,-1,818,475,477,-1,474,471,472,-1,471,1055,355,-1,466,787,467,-1,465,466,463,-1,460,462,1042,-1,459,458,510,-1,1088,783,1125,-1,459,506,457,-1,456,798,454,-1,449,735,450,-1,444,737,442,-1,652,745,653,-1,440,832,441,-1,434,1051,439,-1,429,1090,430,-1,434,435,1132,-1,1133,1109,438,-1,433,639,431,-1,430,480,428,-1,663,425,427,-1,422,1134,423,-1,419,625,420,-1,416,826,417,-1,551,786,797,-1,404,407,408,-1,558,743,629,-1,407,559,384,-1,407,404,406,-1,403,717,401,-1,385,811,699,-1,387,386,393,-1,1094,1101,1095,-1,1135,389,382,-1,386,388,1136,-1,382,377,380,-1,695,394,693,-1,379,380,377,-1,376,1137,372,-1,370,441,371,-1,673,726,674,-1,364,831,365,-1,686,685,840,-1,359,362,360,-1,356,358,707,-1,536,1046,537,-1,838,670,722,-1,332,839,721,-1,353,355,478,-1,1119,1138,813,-1,40,1139,351,-1,845,323,993,-1,34,48,42,-1,995,33,211,-1,348,848,191,-1,187,189,184,-1,852,1140,186,-1,1141,851,12,-1,344,985,343,-1,341,343,15,-1,1142,8,855,-1,58,192,848,-1,336,1038,337,-1,976,213,212,-1,679,988,1143,-1,327,328,976,-1,674,326,672,-1,918,199,982,-1,852,320,1140,-1,320,349,1140,-1,859,988,679,-1,217,50,55,-1,301,225,1010,-1,1144,75,316,-1,311,314,909,-1,310,308,311,-1,309,867,307,-1,1145,1146,1147,-1,1148,304,306,-1,300,1034,302,-1,301,1010,299,-1,95,298,969,-1,298,1149,296,-1,916,297,1150,-1,871,872,870,-1,293,295,288,-1,78,77,292,-1,878,78,291,-1,74,73,289,-1,281,874,282,-1,287,1030,288,-1,285,1031,286,-1,144,881,284,-1,55,1030,287,-1,281,143,68,-1,258,260,145,-1,145,198,200,-1,306,305,278,-1,161,160,1033,-1,160,274,1033,-1,1151,962,1152,-1,273,105,104,-1,268,974,269,-1,267,1032,157,-1,283,74,281,-1,218,265,1153,-1,261,263,171,-1,1012,1009,1154,-1,261,171,140,-1,259,947,260,-1,133,135,893,-1,257,138,255,-1,251,890,249,-1,245,243,1155,-1,242,1156,243,-1,124,241,1157,-1,238,240,1025,-1,237,1158,125,-1,234,236,231,-1,234,1159,232,-1,231,132,227,-1,230,1160,228,-1,1161,1022,1162,-1,132,1163,226,-1,1164,0,2,-1,221,223,1165,-1,218,1153,219,-1,907,893,135,-1,216,59,217,-1,214,247,215,-1,169,204,963,-1,967,170,63,-1,211,320,212,-1,199,918,200,-1,156,155,197,-1,146,195,196,-1,196,1166,1167,-1,191,848,192,-1,192,60,8,-1,928,319,33,-1,182,930,183,-1,179,1168,180,-1,261,137,174,-1,139,138,257,-1,103,203,170,-1,167,1169,103,-1,169,1169,167,-1,96,95,165,-1,1032,1170,938,-1,273,941,105,-1,160,966,274,-1,106,266,157,-1,847,58,848,-1,156,960,154,-1,115,156,152,-1,149,942,150,-1,148,922,146,-1,1030,55,881,-1,906,1015,218,-1,142,255,140,-1,139,920,137,-1,866,309,972,-1,892,1171,990,-1,122,1172,123,-1,1001,117,119,-1,118,958,120,-1,1173,1174,111,-1,115,149,116,-1,960,112,114,-1,954,109,111,-1,941,107,158,-1,1167,914,883,-1,106,158,107,-1,105,937,103,-1,97,869,98,-1,93,873,91,-1,300,279,1034,-1,25,1175,89,-1,81,76,87,-1,879,1035,971,-1,83,868,81,-1,84,1145,1176,-1,78,908,76,-1,74,864,75,-1,79,70,72,-1,80,67,69,-1,1177,64,66,-1,997,868,870,-1,268,999,974,-1,60,192,58,-1,58,843,217,-1,217,59,58,-1,52,54,336,-1,144,143,881,-1,213,335,911,-1,47,41,48,-1,979,350,842,-1,42,352,43,-1,40,48,41,-1,51,843,842,-1,38,980,36,-1,32,1178,29,-1,27,1175,28,-1,674,1037,326,-1,21,981,22,-1,925,343,985,-1,16,19,17,-1,1141,12,14,-1,10,1179,11,-1,3,5,201,-1,858,852,987,-1,331,859,332,-1,991,986,1180,-1,991,5,986,-1,988,852,1143,-1,987,852,988,-1,340,18,22,-1,1181,18,340,-1,19,1182,1183,-1,1182,19,16,-1,339,1184,1185,-1,339,981,1184,-1,847,843,58,-1,847,844,843,-1,180,845,993,-1,1038,845,180,-1,860,45,1041,-1,860,46,45,-1,929,1168,179,-1,1168,929,1186,-1,995,861,47,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getl4_Geo_5_169_coordIndex_6()
		{
			int[] value = {995,911,861,-1,943,996,886,-1,943,944,996,-1,325,984,975,-1,325,324,984,-1,855,30,20,-1,855,7,30,-1,168,967,968,-1,167,967,168,-1,209,1187,1188,-1,209,208,1187,-1,973,1189,1190,-1,973,1188,1189,-1,1191,293,288,-1,1191,1190,293,-1,67,283,68,-1,67,1192,283,-1,84,1146,1145,-1,84,86,1146,-1,312,880,310,-1,878,880,312,-1,136,225,998,-1,120,225,136,-1,964,270,108,-1,964,268,270,-1,1014,1193,205,-1,1014,1194,1193,-1,962,169,963,-1,169,962,1151,-1,1169,1151,272,-1,169,1151,1169,-1,1195,1196,1197,-1,1195,1008,1196,-1,1198,1003,1199,-1,1004,1003,1198,-1,1200,1201,1202,-1,1200,1203,1201,-1,110,148,1011,-1,113,148,110,-1,1001,1204,117,-1,1205,1204,1001,-1,1206,955,1174,-1,1206,1207,955,-1,959,1208,957,-1,1209,1208,959,-1,224,1173,111,-1,1000,1173,224,-1,889,253,252,-1,253,889,758,-1,1210,214,952,-1,1211,214,1210,-1,1212,1213,1165,-1,1213,1212,1214,-1,895,1215,900,-1,895,1216,1215,-1,892,1217,1171,-1,892,1218,1217,-1,128,1219,129,-1,1219,128,891,-1,155,129,919,-1,154,129,155,-1,129,154,127,-1,264,1009,141,-1,264,1154,1009,-1,224,299,1010,-1,1011,299,224,-1,24,195,945,-1,23,195,24,-1,992,150,983,-1,992,945,150,-1,1152,274,940,-1,274,1152,275,-1,286,166,934,-1,1031,166,286,-1,933,932,173,-1,932,933,1220,-1,351,930,182,-1,931,930,351,-1,347,1221,187,-1,1221,347,1222,-1,1222,1183,1182,-1,1222,1223,1183,-1,89,7,924,-1,30,7,89,-1,1224,971,1035,-1,1224,1176,971,-1,946,907,135,-1,946,906,907,-1,904,906,1017,-1,907,906,904,-1,905,220,1225,-1,1017,220,905,-1,905,903,902,-1,905,1226,903,-1,903,899,1018,-1,903,1227,899,-1,895,899,1019,-1,900,899,895,-1,1228,1229,221,-1,1229,1228,1230,-1,1231,1230,1232,-1,1233,1230,1231,-1,1234,1235,1236,-1,1234,1231,1235,-1,1236,1237,1238,-1,1236,1239,1237,-1,1240,1241,1242,-1,1243,1241,1240,-1,1172,894,219,-1,894,1172,1020,-1,1244,1214,1212,-1,1244,1158,1214,-1,111,1011,224,-1,110,1011,111,-1,236,891,128,-1,891,236,235,-1,1171,1245,1246,-1,1171,1217,1245,-1,1247,1216,1248,-1,1247,1215,1216,-1,1249,1162,1022,-1,1249,1250,1162,-1,228,1251,229,-1,1251,228,1252,-1,1253,232,1159,-1,232,1253,1254,-1,1162,1255,1161,-1,1162,1256,1255,-1,1248,230,1247,-1,1160,230,1248,-1,131,1164,2,-1,130,1164,131,-1,124,1257,237,-1,1257,124,1157,-1,1024,1258,1259,-1,1024,1260,1258,-1,1261,1259,1258,-1,1262,1259,1261,-1,1263,244,1264,-1,1263,1265,244,-1,1266,910,1267,-1,1266,122,910,-1,1268,1027,1269,-1,1027,1268,1028,-1,1211,247,214,-1,247,1211,1269,-1,1036,947,134,-1,1036,260,947,-1,1210,265,172,-1,1210,952,265,-1,29,27,26,-1,29,31,27,-1,159,100,102,-1,159,939,100,-1,299,279,300,-1,147,279,299,-1,1194,306,1193,-1,1194,1148,306,-1,164,285,162,-1,164,56,285,-1,291,1270,877,-1,291,1271,1270,-1,1272,1271,1273,-1,1272,1270,1271,-1,876,874,289,-1,875,874,876,-1,871,873,295,-1,94,873,871,-1,94,870,97,-1,871,870,94,-1,1150,917,916,-1,1150,1274,917,-1,1148,1275,1276,-1,1275,1148,1194,-1,98,301,303,-1,98,869,301,-1,867,1145,1147,-1,1145,867,970,-1,909,863,87,-1,314,863,909,-1,1036,88,862,-1,88,1036,998,-1,13,712,14,-1,714,712,13,-1,1180,1143,991,-1,1180,679,1143,-1,188,12,851,-1,188,1277,12,-1,176,1278,181,-1,1278,176,350,-1,986,1044,1180,-1,986,837,1044,-1,670,678,677,-1,678,670,838,-1,837,1098,1043,-1,837,836,1098,-1,707,1104,708,-1,358,1104,707,-1,363,340,364,-1,340,363,1181,-1,1279,362,1280,-1,360,362,1279,-1,1281,339,1185,-1,1281,831,339,-1,384,504,408,-1,384,704,504,-1,528,829,1282,-1,528,681,829,-1,381,391,1283,-1,391,381,392,-1,717,676,680,-1,717,403,676,-1,701,385,699,-1,701,830,385,-1,374,683,366,-1,374,1046,683,-1,1074,555,554,-1,555,1074,825,-1,416,1284,1285,-1,1284,416,1286,-1,826,1285,1287,-1,1285,826,416,-1,1285,399,628,-1,399,1285,1284,-1,664,1288,1289,-1,664,1290,1288,-1,741,657,658,-1,657,741,640,-1,570,1049,1050,-1,1049,570,472,-1,615,822,457,-1,615,412,822,-1,1291,1076,1075,-1,1291,1292,1076,-1,519,617,553,-1,618,617,519,-1,618,518,1113,-1,518,618,519,-1,1293,1294,1295,-1,1293,1064,1294,-1,1063,1296,1297,-1,1296,1063,1062,-1,1298,1299,1300,-1,1298,1301,1299,-1,496,461,810,-1,461,496,465,-1,1302,1055,471,-1,1055,1302,1303,-1,1058,1304,469,-1,1058,1305,1304,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getl4_Geo_5_169_coordIndex_7()
		{
			int[] value = {1306,819,820,-1,819,1306,1307,-1,1308,753,611,-1,753,1308,759,-1,567,1309,1310,-1,1311,1309,567,-1,1312,1313,1314,-1,1315,1313,1312,-1,1316,815,817,-1,1317,815,1316,-1,572,774,1318,-1,572,770,774,-1,1138,814,813,-1,1138,1082,814,-1,574,1319,1320,-1,574,1321,1319,-1,483,544,484,-1,483,1322,544,-1,1067,752,488,-1,1067,1114,752,-1,809,756,607,-1,1128,756,809,-1,805,498,802,-1,805,804,498,-1,932,794,793,-1,1220,794,932,-1,531,1323,1127,-1,1323,531,791,-1,1324,690,540,-1,1325,690,1324,-1,1280,1325,1279,-1,1280,1326,1325,-1,1046,832,790,-1,832,1046,374,-1,369,494,747,-1,369,806,494,-1,1327,357,356,-1,1327,1328,357,-1,1076,749,748,-1,749,1076,1329,-1,1124,417,1047,-1,418,417,1124,-1,437,1288,1330,-1,437,436,1288,-1,778,1078,777,-1,1078,778,562,-1,1079,1331,1332,-1,1331,1079,777,-1,776,1331,1080,-1,776,1333,1331,-1,1081,776,773,-1,1081,1334,776,-1,1081,1335,1336,-1,1335,1081,772,-1,1337,1338,569,-1,1339,1338,1337,-1,1339,1340,1341,-1,1340,1339,1342,-1,1343,1344,1345,-1,1343,1340,1344,-1,1237,1345,1346,-1,1237,1239,1345,-1,1347,1240,1312,-1,1240,1347,1243,-1,1348,475,564,-1,1310,475,1348,-1,1349,1350,1351,-1,1349,1117,1350,-1,810,460,491,-1,460,810,461,-1,1083,583,1131,-1,584,583,1083,-1,1352,479,1353,-1,1352,1354,479,-1,1317,1355,815,-1,1355,1317,1356,-1,1357,1358,767,-1,1359,1358,1357,-1,232,1321,582,-1,1254,1321,232,-1,571,577,579,-1,571,573,577,-1,1360,1361,768,-1,1361,1360,1362,-1,1120,1129,1119,-1,1129,1120,580,-1,1363,585,587,-1,591,585,1363,-1,1364,763,1365,-1,1364,1366,763,-1,1365,1261,1364,-1,1261,1365,1262,-1,1116,1263,1367,-1,1116,1265,1263,-1,1077,1309,1368,-1,1077,476,1309,-1,1263,1115,1367,-1,1263,1369,1115,-1,1308,603,759,-1,603,1308,1370,-1,1068,729,1371,-1,1068,606,729,-1,612,1372,751,-1,612,1059,1372,-1,1052,785,647,-1,1052,515,785,-1,800,789,788,-1,789,800,440,-1,621,1125,747,-1,621,1088,1125,-1,1070,513,796,-1,1070,631,513,-1,742,1373,1374,-1,1373,742,1090,-1,427,1375,1290,-1,427,637,1375,-1,634,736,739,-1,634,738,736,-1,645,1376,1377,-1,1376,645,1378,-1,1376,1379,1377,-1,1292,1379,1376,-1,651,449,654,-1,651,735,449,-1,1109,732,1107,-1,1048,732,1109,-1,730,659,439,-1,659,730,660,-1,1051,729,728,-1,1050,729,1051,-1,724,718,723,-1,718,724,720,-1,535,1099,538,-1,1099,535,534,-1,1103,1282,1101,-1,1103,792,1282,-1,1283,525,532,-1,391,525,1283,-1,532,1135,1283,-1,532,1127,1135,-1,529,696,527,-1,529,524,696,-1,357,711,1097,-1,357,1328,711,-1,1280,716,1380,-1,1280,362,716,-1,705,727,542,-1,705,697,727,-1,549,691,667,-1,549,669,691,-1,570,435,651,-1,570,1132,435,-1,665,1092,666,-1,1092,665,425,-1,1106,1289,1381,-1,1106,664,1289,-1,1107,656,1381,-1,732,656,1107,-1,654,649,734,-1,654,449,649,-1,623,1089,621,-1,1089,623,1291,-1,650,449,448,-1,449,650,649,-1,645,648,646,-1,1377,648,645,-1,1091,1375,637,-1,1375,1091,1382,-1,1382,638,740,-1,1382,1091,638,-1,801,1113,511,-1,616,1113,801,-1,616,618,1113,-1,1059,565,818,-1,1059,612,565,-1,1067,1128,809,-1,1067,485,1128,-1,607,545,608,-1,607,756,545,-1,601,1308,1383,-1,1370,1308,601,-1,604,1367,1115,-1,1367,604,598,-1,598,1086,1085,-1,598,604,1086,-1,597,1087,599,-1,597,1085,1087,-1,1368,1084,1077,-1,1084,1368,761,-1,1367,594,1116,-1,594,1367,598,-1,1384,1116,596,-1,1265,1116,1384,-1,1385,592,591,-1,1385,1386,592,-1,1117,589,1350,-1,586,589,1117,-1,1387,591,1363,-1,1385,591,1387,-1,583,580,1120,-1,580,583,581,-1,575,1129,576,-1,575,1388,1129,-1,1362,1356,1361,-1,1358,1356,1362,-1,1389,1357,1390,-1,1389,1359,1357,-1,767,1391,1357,-1,1391,767,766,-1,1320,578,1392,-1,1320,766,578,-1,1393,815,1355,-1,1393,1002,815,-1,1352,572,1354,-1,573,572,1352,-1,813,583,1120,-1,583,813,1131,-1,1082,462,814,-1,1042,462,1082,-1,1313,1117,1349,-1,587,1117,1313,-1,568,1310,1348,-1,567,1310,568,-1,1312,1394,1347,-1,1312,1314,1394,-1,1343,1239,1395,-1,1239,1343,1345,-1,1340,1396,1341,-1,1343,1396,1340,-1,1339,1394,1338,-1,1341,1394,1339,-1,1397,1335,1316,-1,1397,1336,1335,-1,1336,1334,1081,-1,1336,1398,1334,-1,1333,1334,1399,-1,1334,1333,776,-1,1332,564,1079,-1,1332,1348,564,-1,1318,563,1122,-1,1318,775,563,-1,1133,437,1373,-1,438,437,1133,-1,749,1400,750,-1,749,1329,1400,-1,1327,836,835,-1,356,836,1327,-1,495,806,808,-1,494,806,495,-1,1126,369,747,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getl4_Geo_5_169_coordIndex_8()
		{
			int[] value = {1126,367,369,-1,1279,841,360,-1,1279,1401,841,-1,1402,540,539,-1,1324,540,1402,-1,1100,541,692,-1,541,1100,1403,-1,541,536,409,-1,536,541,684,-1,709,534,533,-1,709,708,534,-1,530,1071,531,-1,529,1071,530,-1,524,530,525,-1,530,524,529,-1,1220,1404,794,-1,1404,1220,1405,-1,515,1070,795,-1,515,516,1070,-1,1069,514,513,-1,613,514,1069,-1,801,508,507,-1,801,824,508,-1,807,542,1045,-1,807,368,542,-1,752,779,566,-1,752,1114,779,-1,484,499,522,-1,484,544,499,-1,1066,1301,1064,-1,1066,1299,1301,-1,1406,1407,1301,-1,1061,1407,1406,-1,1063,1407,1061,-1,1063,1408,1407,-1,780,1371,560,-1,780,1068,1371,-1,1254,1319,1321,-1,1254,1409,1319,-1,812,1131,813,-1,1131,812,1060,-1,1354,1318,1122,-1,1354,572,1318,-1,1410,1316,1335,-1,1410,1317,1316,-1,1314,1349,1411,-1,1313,1349,1314,-1,1310,476,475,-1,1309,476,1310,-1,754,759,605,-1,754,753,759,-1,355,1057,1042,-1,1056,1057,355,-1,819,1298,473,-1,819,1307,1298,-1,1304,470,469,-1,470,1304,1297,-1,1303,1056,1055,-1,1056,1303,1293,-1,464,502,812,-1,464,463,502,-1,1299,1302,1300,-1,1302,1299,1066,-1,1062,1306,1296,-1,1306,1062,1061,-1,1295,1407,1305,-1,1295,1294,1407,-1,1126,440,367,-1,440,1126,789,-1,456,1113,518,-1,455,1113,456,-1,1329,1292,1376,-1,1292,1329,1076,-1,789,1125,783,-1,789,1126,1125,-1,450,446,448,-1,446,450,447,-1,367,543,368,-1,367,441,543,-1,434,570,1051,-1,434,1132,570,-1,436,1289,1288,-1,1108,1289,436,-1,1111,665,422,-1,665,1111,426,-1,421,1134,419,-1,1134,421,423,-1,1287,628,634,-1,628,1287,1285,-1,1412,826,1287,-1,1412,827,826,-1,1413,1047,827,-1,1413,1123,1047,-1,821,512,614,-1,512,821,798,-1,443,627,743,-1,443,442,627,-1,725,1414,1415,-1,833,1414,725,-1,755,671,546,-1,755,802,671,-1,397,694,395,-1,694,397,550,-1,1283,382,381,-1,1283,1135,382,-1,386,1102,1093,-1,386,1136,1102,-1,681,527,682,-1,681,528,527,-1,373,441,832,-1,441,373,371,-1,1281,365,831,-1,1281,1415,365,-1,713,840,1073,-1,713,686,840,-1,1072,687,1073,-1,1072,1402,687,-1,689,1097,710,-1,1097,689,1105,-1,1098,356,707,-1,836,356,1098,-1,194,1416,193,-1,194,984,1416,-1,977,322,199,-1,977,994,322,-1,43,181,1278,-1,43,182,181,-1,993,178,180,-1,993,177,178,-1,1140,191,1417,-1,349,191,1140,-1,9,202,1418,-1,3,202,9,-1,715,985,344,-1,715,853,985,-1,1181,17,18,-1,17,1181,834,-1,865,314,315,-1,865,863,314,-1,1419,316,1420,-1,1419,1144,316,-1,307,1147,1420,-1,1147,307,867,-1,1149,303,302,-1,1149,98,303,-1,882,306,278,-1,1193,306,882,-1,916,298,297,-1,916,969,298,-1,963,1150,1421,-1,204,1150,963,-1,204,1274,1150,-1,872,997,870,-1,872,77,997,-1,1422,1272,1273,-1,1423,1272,1422,-1,1272,1224,1270,-1,85,1224,1272,-1,260,69,145,-1,69,260,71,-1,163,286,1170,-1,163,162,286,-1,160,102,965,-1,159,102,160,-1,160,964,966,-1,160,965,964,-1,276,961,912,-1,961,276,275,-1,974,101,924,-1,974,999,101,-1,72,260,317,-1,72,71,260,-1,172,263,1210,-1,171,263,172,-1,1012,1015,946,-1,1012,1154,1015,-1,998,134,136,-1,998,1036,134,-1,254,250,249,-1,250,254,1369,-1,890,1028,1268,-1,1028,890,251,-1,1028,246,245,-1,1028,251,246,-1,215,1424,910,-1,215,248,1424,-1,238,1424,1425,-1,238,1026,1424,-1,243,1264,244,-1,246,1264,243,-1,242,1260,1156,-1,1258,1260,242,-1,1262,241,1259,-1,1386,241,1262,-1,1259,126,1024,-1,126,1259,241,-1,1260,239,238,-1,1024,239,1260,-1,125,239,126,-1,240,239,125,-1,1426,2,1246,-1,131,2,1426,-1,1159,231,227,-1,1159,234,231,-1,1247,1161,1255,-1,230,1161,1247,-1,1393,1252,1427,-1,1389,1252,1393,-1,1428,1429,1430,-1,1429,1428,1409,-1,1253,227,226,-1,227,1253,1159,-1,230,1022,1161,-1,230,229,1022,-1,1249,1426,1250,-1,1249,1163,1426,-1,1431,1248,1216,-1,1248,1431,1432,-1,1433,1245,1217,-1,1245,1433,1256,-1,236,0,1164,-1,128,0,236,-1,109,1021,948,-1,1021,109,954,-1,1158,1434,1214,-1,1434,1158,237,-1,221,1213,1228,-1,221,1165,1213,-1,1241,1435,1436,-1,1241,1243,1435,-1,816,1238,1237,-1,950,1238,816,-1,1234,1238,896,-1,1234,1236,1238,-1,1437,1231,1234,-1,1437,1233,1231,-1,1227,1019,899,-1,1227,1437,1019,-1,1227,1226,1438,-1,903,1226,1227,-1,219,1225,220,-1,219,894,1225,-1,123,219,1153,-1,123,1172,219,-1,47,860,41,-1,47,861,860,-1,44,861,334,-1,44,46,861,-1,4,1327,835,-1,1327,4,11,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getl4_Geo_5_169_coordIndex_9()
		{
			int[] value = {1184,324,1037,-1,1184,1439,324,-1,1223,1440,1183,-1,1223,1441,1440,-1,1223,347,1442,-1,1222,347,1223,-1,1440,855,854,-1,855,1440,1142,-1,352,182,43,-1,351,182,352,-1,850,1141,345,-1,850,851,1141,-1,1443,40,39,-1,1443,1139,40,-1,936,938,1170,-1,203,938,936,-1,275,962,961,-1,1152,962,275,-1,996,1444,887,-1,1444,996,256,-1,1015,264,218,-1,1015,1154,264,-1,152,139,257,-1,152,197,139,-1,1203,1006,1008,-1,1203,1200,1006,-1,1445,1446,1203,-1,1445,1005,1446,-1,1445,1003,1005,-1,1445,1447,1003,-1,134,946,135,-1,134,947,946,-1,1429,1254,1253,-1,1429,1409,1254,-1,128,949,0,-1,127,949,128,-1,1448,1217,1218,-1,1448,1433,1217,-1,897,1216,895,-1,897,1431,1216,-1,1214,1449,1213,-1,1449,1214,1434,-1,122,1020,1172,-1,1020,122,1266,-1,1029,889,252,-1,1029,262,889,-1,957,1198,1000,-1,1208,1198,957,-1,1207,956,955,-1,1207,1197,956,-1,117,1202,118,-1,1204,1202,117,-1,111,955,954,-1,955,111,1174,-1,1203,1209,1201,-1,1203,1446,1209,-1,1199,1447,1206,-1,1003,1447,1199,-1,1196,1007,1205,-1,1008,1007,1196,-1,941,271,105,-1,941,158,271,-1,912,963,1421,-1,912,961,963,-1,882,205,1193,-1,206,205,882,-1,225,81,88,-1,225,82,81,-1,1420,1146,1419,-1,1420,1147,1146,-1,970,1176,1145,-1,971,1176,970,-1,75,1422,73,-1,1422,75,1144,-1,283,79,72,-1,1192,79,283,-1,1189,143,282,-1,1189,1450,143,-1,1190,282,293,-1,1190,1189,282,-1,1188,1450,1189,-1,1188,1187,1450,-1,1187,1177,66,-1,208,1177,1187,-1,917,204,1013,-1,917,1274,204,-1,61,203,936,-1,61,63,203,-1,1416,324,1439,-1,324,1416,984,-1,982,886,918,-1,982,943,886,-1,995,213,911,-1,211,213,995,-1,38,1278,980,-1,38,43,1278,-1,1041,41,860,-1,1041,39,41,-1,180,337,1038,-1,180,1168,337,-1,1175,31,89,-1,27,31,1175,-1,21,1184,981,-1,21,1439,1184,-1,343,16,15,-1,989,16,343,-1,12,927,926,-1,12,1277,927,-1,1039,1141,14,-1,345,1141,1039,-1,11,3,9,-1,3,11,4,-1,201,1143,852,-1,201,991,1143,-1,10,1039,1179,-1,10,345,1039,-1,13,926,853,-1,12,926,13,-1,1451,1222,1182,-1,1221,1222,1451,-1,22,19,854,-1,19,22,18,-1,1185,1037,674,-1,1185,1184,1037,-1,193,28,1175,-1,28,193,1416,-1,29,20,30,-1,29,1178,20,-1,21,26,28,-1,32,26,21,-1,37,42,38,-1,37,35,42,-1,44,1186,45,-1,44,856,1186,-1,48,352,42,-1,48,40,352,-1,938,271,157,-1,937,271,938,-1,210,1188,973,-1,210,209,1188,-1,65,1190,1191,-1,65,973,1190,-1,1030,1191,288,-1,1452,1191,1030,-1,71,80,69,-1,70,80,71,-1,318,283,72,-1,74,283,318,-1,1419,86,1423,-1,86,1419,1146,-1,193,25,24,-1,193,1175,25,-1,95,97,99,-1,94,97,95,-1,1167,923,914,-1,1167,1166,923,-1,1194,913,1275,-1,1014,913,1194,-1,272,103,1169,-1,103,272,104,-1,90,1166,25,-1,923,1166,90,-1,1445,1197,1207,-1,1445,1195,1197,-1,1208,1004,1198,-1,1005,1004,1208,-1,1204,1200,1202,-1,1006,1200,1204,-1,154,114,949,-1,154,960,114,-1,953,1205,1001,-1,1196,1205,953,-1,1173,1206,1174,-1,1199,1206,1173,-1,1201,959,958,-1,1201,1209,959,-1,1453,1210,263,-1,1453,1211,1210,-1,1454,1165,223,-1,1165,1454,1212,-1,1455,1240,1242,-1,1240,1455,1456,-1,1457,900,1215,-1,898,900,1457,-1,1021,1171,1,-1,1021,990,1171,-1,891,1458,1219,-1,1458,891,771,-1,1163,1459,226,-1,1249,1459,1163,-1,1203,1195,1445,-1,1203,1008,1195,-1,155,921,197,-1,921,155,919,-1,194,945,992,-1,194,24,945,-1,966,940,274,-1,966,885,940,-1,885,941,940,-1,885,107,941,-1,100,90,101,-1,100,939,90,-1,1032,163,1170,-1,163,1032,267,-1,934,165,935,-1,934,166,165,-1,1460,1220,933,-1,1405,1220,1460,-1,179,183,930,-1,183,179,178,-1,185,202,186,-1,185,1418,202,-1,8,190,192,-1,1142,190,8,-1,190,1417,191,-1,1441,1417,190,-1,187,1277,188,-1,1277,187,1221,-1,989,1182,16,-1,989,1451,1182,-1,23,1166,196,-1,23,25,1166,-1,195,922,151,-1,922,195,146,-1,919,933,920,-1,919,1460,933,-1,917,62,915,-1,917,1013,62,-1,85,1176,1224,-1,1176,85,84,-1,1016,1448,1218,-1,1016,901,1448,-1,1226,1225,1461,-1,905,1225,1226,-1,221,1461,222,-1,1461,221,1229,-1,1230,1438,1229,-1,1438,1230,1233,-1,1462,1230,1228,-1,1230,1462,1232,-1,1436,1231,1232,-1,1231,1436,1235,-1,1239,1235,1395,-1,1236,1235,1239,-1,1462,1242,1241,-1,1462,1449,1242,-1,1257,1456,1455,-1,1456,1257,1387,-1,1463,1212,1454,-1,1212,1463,1244,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getl4_Geo_5_169_coordIndex_10()
		{
			int[] value = {1219,919,129,-1,919,1219,1460,-1,1246,1,1171,-1,2,1,1246,-1,1215,1255,1457,-1,1215,1247,1255,-1,951,1393,1427,-1,951,1002,1393,-1,1022,1459,1249,-1,1022,1023,1459,-1,1430,229,1251,-1,1023,229,1430,-1,1251,1389,1390,-1,1251,1252,1389,-1,1432,1160,1248,-1,1160,1432,228,-1,131,1163,132,-1,131,1426,1163,-1,130,236,1164,-1,231,236,130,-1,1157,1387,1257,-1,1387,1157,1385,-1,240,1158,1244,-1,1158,240,125,-1,241,1385,1157,-1,241,1386,1385,-1,244,1384,242,-1,1384,244,1265,-1,1155,1156,1425,-1,1156,1155,243,-1,1424,1267,910,-1,1026,1267,1424,-1,1027,1155,248,-1,1027,245,1155,-1,1264,251,250,-1,246,251,1264,-1,1453,1269,1211,-1,1269,1453,1268,-1,200,259,258,-1,200,887,259,-1,1444,1009,1012,-1,1444,142,1009,-1,1153,952,123,-1,1153,265,952,-1,272,940,273,-1,272,1152,940,-1,272,1151,1152,-1,290,1271,291,-1,290,876,1271,-1,1273,876,289,-1,1271,876,1273,-1,296,1150,297,-1,1150,296,1276,-1,98,298,99,-1,1149,298,98,-1,302,305,304,-1,302,1034,305,-1,304,1276,296,-1,1276,304,1148,-1,83,869,868,-1,869,83,301,-1,972,308,310,-1,972,309,308,-1,865,318,317,-1,864,318,865,-1,83,225,301,-1,83,82,225,-1,854,1183,1440,-1,854,19,1183,-1,711,1179,1039,-1,711,1328,1179,-1,1418,849,346,-1,185,849,1418,-1,1442,184,186,-1,1442,347,184,-1,1139,931,351,-1,1443,931,1139,-1,677,1043,670,-1,677,1044,1043,-1,1097,358,357,-1,1097,1105,358,-1,1073,1096,713,-1,1096,1073,687,-1,1325,1401,1279,-1,1401,1325,1324,-1,360,685,361,-1,685,360,841,-1,726,1185,674,-1,726,1281,1185,-1,370,543,441,-1,1414,543,370,-1,366,375,374,-1,366,376,375,-1,372,365,370,-1,365,372,1137,-1,390,377,382,-1,390,695,377,-1,1282,1095,1101,-1,1282,829,1095,-1,389,387,390,-1,389,388,387,-1,521,797,796,-1,521,551,797,-1,554,1464,1074,-1,554,1465,1464,-1,418,1286,416,-1,1286,418,1124,-1,1284,1413,1466,-1,1284,1286,1413,-1,635,1412,739,-1,635,1466,1412,-1,399,1466,635,-1,399,1284,1466,-1,424,1111,422,-1,1111,424,1467,-1,1290,663,427,-1,664,663,1290,-1,1133,1048,1109,-1,1048,1133,429,-1,1108,1381,1289,-1,1108,1107,1381,-1,1075,1089,1291,-1,1089,1075,784,-1,553,1400,1378,-1,553,1053,1400,-1,821,510,454,-1,821,459,510,-1,1065,1293,1303,-1,1293,1065,1064,-1,1408,1297,1304,-1,1297,1408,1063,-1,1307,1301,1298,-1,1307,1406,1301,-1,1058,460,1042,-1,469,460,1058,-1,1300,471,474,-1,471,1300,1302,-1,1057,1305,1058,-1,1057,1295,1305,-1,1296,820,1054,-1,820,1296,1306,-1,1372,1308,611,-1,1372,1383,1308,-1,1121,1311,567,-1,1351,1311,1121,-1,1240,1315,1312,-1,1456,1315,1240,-1,772,770,769,-1,770,772,774,-1,479,1082,1138,-1,479,478,1082,-1,1458,1083,1468,-1,771,1083,1458,-1,1320,575,574,-1,575,1320,1392,-1,1294,1301,1407,-1,1294,1064,1301,-1,1322,501,544,-1,1469,501,1322,-1,1128,828,756,-1,487,828,1128,-1,617,1112,1053,-1,1112,617,616,-1,510,824,801,-1,510,458,824,-1,453,790,800,-1,453,452,790,-1,512,796,513,-1,796,512,521,-1,888,793,757,-1,888,932,793,-1,388,1470,1136,-1,388,1471,1470,-1,689,706,1105,-1,689,688,706,-1,1127,389,1135,-1,389,1127,1323,-1,683,1380,716,-1,684,1380,683,-1,690,1326,1472,-1,1326,690,1325,-1,1380,1326,1280,-1,1380,1403,1326,-1,725,1281,726,-1,725,1415,1281,-1,794,1322,483,-1,1404,1322,794,-1,1322,1404,1469,-1,786,1464,647,-1,786,1074,1464,-1,781,1095,782,-1,781,1094,1095,-1,1093,393,386,-1,1093,781,393,-1,564,818,565,-1,564,475,818,-1,777,1080,1331,-1,1080,777,1078,-1,1332,1333,1473,-1,1333,1332,1331,-1,1473,569,568,-1,1337,569,1473,-1,1399,1339,1337,-1,1342,1339,1399,-1,1340,1398,1344,-1,1340,1342,1398,-1,1346,1344,1397,-1,1346,1345,1344,-1,1346,816,1237,-1,816,1346,817,-1,1435,1347,1396,-1,1435,1243,1347,-1,1411,569,1338,-1,1411,1121,569,-1,1456,1363,1315,-1,1387,1363,1456,-1,1351,1474,1311,-1,1350,1474,1351,-1,1469,1468,1130,-1,1404,1468,1469,-1,1138,1353,479,-1,1353,1138,1119,-1,1361,1317,1410,-1,1356,1317,1361,-1,1388,1392,1475,-1,1388,575,1392,-1,578,1360,579,-1,578,767,1360,-1,1118,1321,574,-1,582,1321,1118,-1,1319,1428,1391,-1,1409,1428,1319,-1,1359,1393,1355,-1,1393,1359,1389,-1,579,768,571,-1,768,579,1360,-1,581,582,1118,-1,581,764,582,-1,1119,1388,1353,-1,1388,1119,1129,-1,590,586,593,-1,586,590,589,-1,590,1366,762,-1,1366,590,763,-1,593,1365,763,-1,592,1365,593,-1,592,1262,1365,-1,1262,592,1386,-1,1366,596,595,-1,596,1366,1364,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getl4_Geo_5_169_coordIndex_11()
		{
			int[] value = {1084,600,1077,-1,1084,599,600,-1,1086,603,1370,-1,604,603,1086,-1,1115,254,602,-1,1369,254,1115,-1,1371,1050,1049,-1,1371,729,1050,-1,779,809,780,-1,779,1114,809,-1,611,751,1372,-1,751,611,609,-1,606,422,666,-1,606,1134,422,-1,452,410,790,-1,452,411,410,-1,1053,750,1400,-1,1112,750,1053,-1,822,509,508,-1,822,823,509,-1,451,509,823,-1,509,451,799,-1,631,1069,513,-1,631,1110,1069,-1,419,606,490,-1,1134,606,419,-1,1373,1330,1374,-1,1330,1373,437,-1,1330,1290,1375,-1,1290,1330,1288,-1,415,642,413,-1,415,431,642,-1,645,553,1378,-1,645,554,553,-1,645,1465,554,-1,650,647,646,-1,650,1052,647,-1,1377,733,648,-1,1379,733,1377,-1,735,435,414,-1,651,435,735,-1,655,480,658,-1,655,481,480,-1,662,661,660,-1,662,1106,661,-1,660,1092,662,-1,660,730,1092,-1,359,1181,363,-1,834,1181,359,-1,686,715,344,-1,686,713,715,-1,1099,708,1104,-1,708,1099,534,-1,535,1472,533,-1,535,690,1472,-1,503,379,691,-1,503,504,379,-1,791,1471,1323,-1,1471,791,1470,-1,1414,542,543,-1,1414,833,542,-1,792,1470,791,-1,1470,792,1103,-1,389,1471,388,-1,389,1323,1471,-1,687,539,688,-1,687,1402,539,-1,677,1180,1044,-1,677,679,1180,-1,712,1096,710,-1,1096,712,714,-1,666,730,728,-1,730,666,1092,-1,1106,656,661,-1,1106,1381,656,-1,648,734,649,-1,733,734,648,-1,1379,622,733,-1,623,622,1379,-1,1464,645,647,-1,1464,1465,645,-1,413,447,450,-1,447,413,644,-1,737,644,738,-1,644,737,447,-1,636,1091,637,-1,1091,636,643,-1,1382,1330,1375,-1,1382,1374,1330,-1,1374,740,742,-1,1374,1382,740,-1,633,744,1110,-1,633,743,744,-1,623,1292,1291,-1,623,1379,1292,-1,745,493,653,-1,493,745,746,-1,453,799,451,-1,453,800,799,-1,556,1383,557,-1,601,1383,556,-1,1087,1370,601,-1,1086,1370,1087,-1,599,760,597,-1,1084,760,599,-1,1474,761,1368,-1,761,1474,588,-1,595,762,1366,-1,595,760,762,-1,1364,1384,596,-1,1384,1364,1261,-1,1350,588,1474,-1,589,588,1350,-1,1353,1475,1352,-1,1353,1388,1475,-1,1475,573,1352,-1,577,573,1475,-1,1358,1355,1356,-1,1355,1358,1359,-1,1428,1357,1391,-1,1428,1390,1357,-1,1391,1320,1319,-1,1391,766,1320,-1,767,1362,1360,-1,767,1358,1362,-1,577,1392,578,-1,577,1475,1392,-1,1410,768,1361,-1,1410,769,768,-1,1468,1405,1458,-1,1404,1405,1468,-1,464,814,462,-1,464,812,814,-1,1311,1368,1309,-1,1474,1368,1311,-1,1315,587,1313,-1,1363,587,1315,-1,1338,1314,1411,-1,1314,1338,1394,-1,1396,1395,1435,-1,1395,1396,1343,-1,1341,1347,1394,-1,1396,1347,1341,-1,817,1397,1316,-1,817,1346,1397,-1,1336,1344,1398,-1,1397,1344,1336,-1,1399,1398,1342,-1,1398,1399,1334,-1,1333,1337,1473,-1,1399,1337,1333,-1,1473,1348,1332,-1,1473,568,1348,-1,775,774,773,-1,774,775,1318,-1,1078,775,1080,-1,775,1078,563,-1,562,780,560,-1,562,778,780,-1,429,1373,1090,-1,429,1133,1373,-1,1100,533,1472,-1,533,1100,668,-1,840,1401,1072,-1,1401,840,841,-1,1403,684,541,-1,684,1403,1380,-1,1472,1403,1100,-1,1403,1472,1326,-1,1105,1099,1104,-1,706,1099,1105,-1,526,702,524,-1,702,526,703,-1,1103,1136,1470,-1,1103,1102,1136,-1,482,757,793,-1,757,482,610,-1,516,631,1070,-1,631,516,632,-1,507,616,801,-1,1112,616,507,-1,497,1045,803,-1,497,807,1045,-1,806,368,807,-1,368,806,369,-1,1130,501,1469,-1,1130,502,501,-1,1060,502,1130,-1,560,1049,354,-1,560,1371,1049,-1,1468,1131,1130,-1,1083,1131,1468,-1,1354,353,479,-1,1354,1122,353,-1,769,1335,772,-1,769,1410,1335,-1,1411,1351,1121,-1,1349,1351,1411,-1,557,1372,1059,-1,1372,557,1383,-1,253,754,605,-1,758,754,253,-1,470,491,460,-1,470,1054,491,-1,1297,1054,470,-1,1054,1297,1296,-1,1056,1295,1057,-1,1056,1293,1295,-1,473,1300,474,-1,473,1298,1300,-1,1066,1303,1302,-1,1303,1066,1065,-1,1306,1406,1307,-1,1306,1061,1406,-1,1305,1408,1304,-1,1305,1407,1408,-1,1329,1378,1400,-1,1376,1378,1329,-1,1088,784,783,-1,1088,1089,784,-1,452,823,411,-1,451,823,452,-1,785,797,786,-1,785,795,797,-1,420,424,421,-1,420,1467,424,-1,1108,438,1109,-1,1108,436,438,-1,1111,420,625,-1,1111,1467,420,-1,739,1287,634,-1,739,1412,1287,-1,1466,827,1412,-1,1466,1413,827,-1,1286,1123,1413,-1,1286,1124,1123,-1,552,555,825,-1,555,552,517,-1,833,719,705,-1,833,725,719,-1,828,802,755,-1,828,805,802,-1,781,694,393,-1,781,395,694,-1,528,792,1071,-1,1282,792,528,-1,1101,1093,1102,-1,1101,1094,1093,-1,698,527,696,-1,527,698,682,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getl4_Geo_5_169_coordIndex_12()
		{
			int[] value = {365,376,366,-1,365,1137,376,-1,1415,370,365,-1,1415,1414,370,-1,671,1045,727,-1,803,1045,671,-1,1324,1072,1401,-1,1072,1324,1402,-1,710,687,689,-1,710,1096,687,-1,1443,929,931,-1,1040,929,1443,-1,1186,1040,45,-1,1186,929,1040,-1,849,184,189,-1,185,184,849,-1,857,333,329,-1,327,333,857,-1,863,317,862,-1,865,317,863,-1,307,316,313,-1,307,1420,316,-1,302,296,1149,-1,296,302,304,-1,1275,1150,1276,-1,1421,1150,1275,-1,294,292,872,-1,294,875,292,-1,1273,73,1422,-1,1273,289,73,-1,1224,877,1270,-1,1035,877,1224,-1,1170,934,936,-1,1170,286,934,-1,1167,278,196,-1,1167,883,278,-1,923,939,884,-1,90,939,923,-1,915,969,916,-1,915,165,969,-1,890,1453,1029,-1,1268,1453,890,-1,250,1263,1264,-1,250,1369,1263,-1,1269,248,247,-1,1269,1027,248,-1,1425,248,1155,-1,248,1425,1424,-1,1026,1463,1267,-1,1025,1463,1026,-1,238,1156,1260,-1,238,1425,1156,-1,1384,1258,242,-1,1261,1258,1384,-1,1025,1244,1463,-1,1244,1025,240,-1,1250,1246,1245,-1,1250,1426,1246,-1,1256,1250,1245,-1,1250,1256,1162,-1,1427,228,1432,-1,1252,228,1427,-1,1251,1428,1430,-1,1251,1390,1428,-1,1459,1430,1429,-1,1459,1023,1430,-1,1427,1431,951,-1,1432,1431,1427,-1,1457,1256,1433,-1,1256,1457,1255,-1,1405,1219,1458,-1,1219,1405,1460,-1,948,114,109,-1,948,949,114,-1,1267,1454,1266,-1,1454,1267,1463,-1,237,1455,1434,-1,1455,237,1257,-1,1449,1228,1213,-1,1462,1228,1449,-1,1395,1436,1435,-1,1235,1436,1395,-1,1241,1232,1462,-1,1232,1241,1436,-1,896,950,897,-1,896,1238,950,-1,1234,1019,1437,-1,1019,1234,896,-1,1437,1438,1233,-1,1227,1438,1437,-1,1229,1226,1461,-1,1226,1229,1438,-1,894,1461,1225,-1,894,222,1461,-1,898,901,1018,-1,1448,901,898,-1,901,904,902,-1,1016,904,901,-1,1016,892,893,-1,892,1016,1218,-1,1423,85,1272,-1,1423,86,85,-1,64,208,210,-1,208,64,1177,-1,277,1014,207,-1,913,1014,277,-1,1179,1327,11,-1,1179,1328,1327,-1,186,1417,1442,-1,1140,1417,186,-1,1451,925,927,-1,989,925,1451,-1,1142,1441,190,-1,1440,1441,1142,-1,1441,1442,1417,-1,1223,1442,1441,-1,849,345,346,-1,345,849,850,-1,322,175,177,-1,994,175,322,-1,39,1040,1443,-1,39,1041,1040,-1,942,944,943,-1,942,153,944,-1,887,1012,259,-1,1012,887,1444,-1,255,1444,256,-1,1444,255,142,-1,197,920,139,-1,197,921,920,-1,1429,226,1459,-1,1429,1253,226,-1,948,1,0,-1,948,1021,1,-1,898,1433,1448,-1,898,1457,1433,-1,951,897,950,-1,897,951,1431,-1,1434,1242,1449,-1,1242,1434,1455,-1,1266,223,1020,-1,223,1266,1454,-1,262,1453,263,-1,1029,1453,262,-1,1000,1199,1173,-1,1198,1199,1000,-1,1197,953,956,-1,1197,1196,953,-1,1202,958,118,-1,1202,1201,958,-1,1205,1006,1204,-1,1007,1006,1205,-1,1446,1208,1209,-1,1446,1005,1208,-1,1447,1207,1206,-1,1447,1445,1207,-1,1421,913,912,-1,913,1421,1275,-1,206,883,914,-1,206,882,883,-1,965,101,999,-1,101,965,102,-1,61,915,62,-1,61,935,915,-1,79,67,80,-1,79,1192,67,-1,866,879,971,-1,866,972,879,-1,1423,1144,1419,-1,1423,1422,1144,-1,143,1452,1030,-1,1450,1452,143,-1,1452,65,1191,-1,66,65,1452,-1,1450,66,1452,-1,1187,66,1450,-1,168,1013,204,-1,968,1013,168,-1,59,269,60,-1,216,269,59,-1,51,977,49,-1,51,978,977,-1,328,336,338,-1,328,52,336,-1,350,980,1278,-1,979,980,350,-1,856,1168,1186,-1,856,337,1168,-1,36,928,37,-1,846,928,36,-1,1178,21,20,-1,1178,32,21,-1,28,1439,21,-1,28,1416,1439,-1,992,982,321,-1,982,992,983,-1,927,1221,1451,-1,1277,1221,927,-1,346,9,1418,-1,9,346,10,-1,892,119,133,-1,990,119,892,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl4_Geo_5_169_normalIndex_1()
		{
			int[] value = {520,275,476,-1,385,768,535,-1,919,408,431,-1,318,396,629,-1,229,557,583,-1,294,154,279,-1,285,279,124,-1,300,1127,355,-1,1142,1162,1313,-1,1001,900,1224,-1,335,284,240,-1,335,1001,1150,-1,832,1076,1007,-1,534,918,531,-1,296,202,809,-1,531,603,120,-1,1335,840,1266,-1,1063,798,1076,-1,220,140,82,-1,1278,1220,1286,-1,792,868,593,-1,528,666,993,-1,398,453,715,-1,803,788,1170,-1,949,902,934,-1,486,505,232,-1,680,822,383,-1,378,522,1018,-1,323,864,486,-1,194,184,214,-1,371,896,394,-1,194,364,183,-1,1313,420,1306,-1,87,381,516,-1,114,20,8,-1,160,109,71,-1,1143,1229,1364,-1,1257,1390,1409,-1,1387,1459,1427,-1,426,463,451,-1,1273,1083,870,-1,1244,1432,1273,-1,813,838,254,-1,838,195,254,-1,262,239,145,-1,771,888,879,-1,761,859,878,-1,849,851,599,-1,28,58,39,-1,28,72,58,-1,526,560,954,-1,472,433,573,-1,977,884,953,-1,1233,910,999,-1,1475,1385,1373,-1,1044,1334,1244,-1,605,874,885,-1,1416,1465,1387,-1,1213,1378,1333,-1,460,790,926,-1,4,40,8,-1,915,579,1042,-1,980,915,1257,-1,433,440,362,-1,526,645,784,-1,52,76,344,-1,369,351,850,-1,19,5,138,-1,17,3,15,-1,993,919,431,-1,33,24,45,-1,169,174,500,-1,1212,1162,1157,-1,1249,1142,1048,-1,1273,1432,1083,-1,885,951,1044,-1,622,501,984,-1,316,119,385,-1,980,1059,715,-1,1042,579,391,-1,1235,1341,1323,-1,941,430,490,-1,1129,1350,1370,-1,262,454,550,-1,593,1115,234,-1,64,99,115,-1,253,181,134,-1,195,427,187,-1,599,639,546,-1,787,821,664,-1,662,849,599,-1,786,708,812,-1,812,855,831,-1,612,888,771,-1,988,952,963,-1,771,879,827,-1,632,780,600,-1,914,661,780,-1,550,830,1026,-1,655,584,682,-1,655,675,704,-1,704,705,655,-1,703,1037,1034,-1,887,698,244,-1,571,472,526,-1,571,694,513,-1,64,203,259,-1,1416,1287,1194,-1,1433,1336,1411,-1,1416,1415,1465,-1,1390,1359,1438,-1,1443,1423,1439,-1,1402,1333,1439,-1,1048,564,586,-1,422,884,220,-1,984,887,953,-1,862,480,977,-1,902,654,862,-1,792,220,471,-1,460,337,221,-1,1071,568,516,-1,936,862,822,-1,1018,990,1088,-1,595,990,1018,-1,299,319,278,-1,101,78,36,-1,20,71,36,-1,559,524,332,-1,190,321,524,-1,186,334,372,-1,395,483,341,-1,686,502,852,-1,502,416,397,-1,383,377,375,-1,232,215,386,-1,593,234,792,-1,370,445,1129,-1,1141,442,1068,-1,1210,1207,1177,-1,1314,1278,1248,-1,1177,1250,733,-1,1117,729,1250,-1,1314,1350,1343,-1,1248,1407,1311,-1,1337,1271,1379,-1,730,735,355,-1,772,765,439,-1,439,765,769,-1,289,396,125,-1,17,27,33,-1,302,174,149,-1,1129,832,370,-1,1076,603,1007,-1,76,52,68,-1,9,171,202,-1,501,422,220,-1,1424,1447,1219,-1,847,857,1075,-1,1191,1322,1181,-1,1352,1191,1188,-1,1104,346,1180,-1,177,314,330,-1,250,577,465,-1,1234,1189,1136,-1,465,1136,1067,-1,567,983,1057,-1,957,1080,947,-1,1302,1261,1392,-1,671,690,1274,-1,1307,894,947,-1,1302,1408,1190,-1,410,387,690,-1,167,165,105,-1,363,499,590,-1,201,251,198,-1,477,139,366,-1,799,1261,961,-1,961,982,477,-1,207,95,44,-1,1218,1223,1110,-1,305,674,389,-1,543,525,614,-1,1239,991,1156,-1,1056,653,797,-1,1255,1106,700,-1,960,1089,808,-1,991,614,1156,-1,1277,1223,1260,-1,1078,582,1102,-1,1096,1089,1277,-1,210,297,177,-1,962,1093,1394,-1,1467,1452,1361,-1,1405,1366,1318,-1,110,276,496,-1,67,84,217,-1,42,26,25,-1,1022,1013,1050,-1,631,681,452,-1,255,0,224,-1,1022,1228,1155,-1,795,1219,1276,-1,1276,635,701,-1,1461,1238,1200,-1,1290,1329,1424,-1,965,1133,1255,-1,931,604,521,-1,843,869,492,-1,1024,1054,869,-1,536,590,499,-1,1049,1069,907,-1,260,111,489,-1,89,1,0,-1,434,565,224,-1,565,596,873,-1,1111,961,1144,-1,176,88,25,-1,35,57,98,-1,67,22,38,-1,282,897,291,-1,1470,1467,1436,-1,558,273,425,-1,497,414,217,-1,217,273,558,-1,400,881,521,-1,1145,1400,1426,-1,611,667,1114,-1,1330,1327,1464,-1,1456,1471,1466,-1,1040,555,477,-1,1430,1458,1431,-1,982,1111,1296,-1,322,314,263,-1,434,515,596,-1,475,409,975,-1,137,1023,343,-1,763,497,587,-1,814,1091,903,-1,663,1028,1200,-1,920,1222,799,-1,1441,1468,1460,-1,1429,1468,1424,-1,1376,1303,1414,-1,1347,1301,1221,-1,1288,1049,1276,-1,1107,1348,1130,-1,837,646,877,-1,764,783,846,-1,877,625,794,-1,708,786,713,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl4_Geo_5_169_normalIndex_2()
		{
			int[] value = {794,626,679,-1,665,588,866,-1,514,517,511,-1,636,668,576,-1,691,676,845,-1,493,691,804,-1,448,663,908,-1,448,634,663,-1,863,770,796,-1,704,836,705,-1,400,492,881,-1,1230,782,606,-1,931,1043,872,-1,872,1043,964,-1,1414,1303,1214,-1,281,176,56,-1,577,1234,1136,-1,44,65,139,-1,84,67,38,-1,53,193,151,-1,10,35,98,-1,10,98,133,-1,909,1137,1118,-1,823,536,606,-1,536,1230,606,-1,574,499,615,-1,403,293,687,-1,1003,363,590,-1,1253,1386,1139,-1,922,293,403,-1,996,899,615,-1,542,797,653,-1,449,421,432,-1,449,938,960,-1,1122,938,935,-1,1218,1122,1196,-1,1243,1398,1372,-1,1374,1404,1442,-1,1442,1405,1452,-1,907,1069,1146,-1,1113,944,1193,-1,1133,994,1084,-1,644,994,774,-1,998,1092,1032,-1,1119,1095,1151,-1,1086,1259,1239,-1,687,1222,920,-1,343,1023,1103,-1,1331,1317,1164,-1,307,975,409,-1,734,295,728,-1,196,245,198,-1,1036,549,718,-1,137,105,196,-1,103,197,242,-1,1111,982,961,-1,1246,1040,1267,-1,1031,765,772,-1,1031,1058,765,-1,1242,1457,1225,-1,1456,1331,1164,-1,1430,1431,1448,-1,1173,1317,1299,-1,343,643,274,-1,690,387,456,-1,601,405,312,-1,1254,1052,975,-1,1395,1254,975,-1,975,1047,1377,-1,1131,1261,1302,-1,201,405,298,-1,274,643,387,-1,1331,1299,1317,-1,1419,1458,1430,-1,1457,1458,1419,-1,1159,1412,1355,-1,1355,1456,1164,-1,893,753,756,-1,956,754,752,-1,1180,1294,1104,-1,148,242,312,-1,312,201,148,-1,204,251,269,-1,137,196,159,-1,137,310,436,-1,225,310,132,-1,733,729,225,-1,295,265,455,-1,975,307,356,-1,1284,1381,1230,-1,1096,1284,1101,-1,1119,1056,1095,-1,976,1084,994,-1,1133,1262,1255,-1,1285,1113,1295,-1,1318,1312,1218,-1,1196,1122,1134,-1,1340,1201,922,-1,899,1175,1134,-1,960,938,1122,-1,935,938,449,-1,404,432,473,-1,418,473,700,-1,899,542,615,-1,1093,608,1139,-1,1139,1394,1093,-1,1254,1003,590,-1,608,403,687,-1,499,543,536,-1,590,536,823,-1,281,547,176,-1,1113,1137,909,-1,890,1113,909,-1,572,423,260,-1,153,74,133,-1,10,133,37,-1,37,35,10,-1,282,291,56,-1,1386,1467,1394,-1,293,499,363,-1,1109,1024,1270,-1,872,710,802,-1,347,475,457,-1,789,802,683,-1,863,836,807,-1,479,478,494,-1,691,479,676,-1,576,613,511,-1,711,651,708,-1,820,650,783,-1,1094,1215,1292,-1,651,679,693,-1,1468,1447,1424,-1,1247,1315,1304,-1,1382,1315,1356,-1,1434,1414,1453,-1,1429,1460,1468,-1,1453,1421,1380,-1,976,644,808,-1,908,1200,1238,-1,236,70,165,-1,153,116,136,-1,1372,1339,1039,-1,347,409,475,-1,111,47,452,-1,287,166,116,-1,555,628,207,-1,1173,1057,983,-1,1354,1327,1163,-1,778,640,604,-1,1326,1339,1470,-1,992,1074,1326,-1,106,217,414,-1,258,359,287,-1,628,210,359,-1,41,38,22,-1,159,198,251,-1,107,89,127,-1,400,141,122,-1,0,1,224,-1,226,267,102,-1,1035,782,1380,-1,942,572,489,-1,942,907,572,-1,1254,1338,687,-1,931,881,869,-1,1024,1043,1054,-1,901,955,1051,-1,912,723,929,-1,1328,1200,1028,-1,930,635,1276,-1,981,930,1049,-1,47,111,102,-1,255,224,565,-1,1050,1013,452,-1,59,67,106,-1,6,95,32,-1,42,57,75,-1,828,1039,763,-1,1394,1361,1340,-1,998,808,1089,-1,1447,1276,1219,-1,1110,1089,960,-1,653,1056,1086,-1,1089,1110,1223,-1,432,421,644,-1,774,965,473,-1,674,689,1120,-1,558,587,497,-1,547,920,366,-1,176,366,139,-1,207,139,477,-1,201,269,251,-1,1338,1392,1261,-1,325,492,400,-1,196,105,165,-1,103,70,161,-1,1377,1426,1449,-1,1449,1426,1408,-1,601,1145,1047,-1,1080,957,1190,-1,567,456,643,-1,957,1057,1144,-1,464,1104,730,-1,1189,1234,1053,-1,107,127,307,-1,298,322,268,-1,1188,1104,1352,-1,762,1181,772,-1,776,706,932,-1,310,504,436,-1,491,504,310,-1,1297,1031,1324,-1,170,206,342,-1,1068,1158,1286,-1,401,333,382,-1,31,45,24,-1,60,24,13,-1,119,316,320,-1,583,756,753,-1,529,752,754,-1,355,178,237,-1,1335,1407,1316,-1,1177,1220,1258,-1,1062,1117,1343,-1,1006,718,729,-1,1258,1250,1177,-1,1177,733,734,-1,622,422,501,-1,1141,501,442,-1,1141,1068,1157,-1,445,370,302,-1,1266,1011,1236,-1,199,215,244,-1,357,199,183,-1,415,308,377,-1,397,416,375,-1,483,416,502,-1,219,213,341,-1,524,321,332,-1,252,163,256,-1,277,319,349,-1,516,568,130,-1,578,553,319,-1,990,553,913,-1,1038,1070,1088,-1,777,987,1038,-1,299,480,578,-1,337,381,87,-1,593,868,926,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl4_Geo_5_169_normalIndex_3()
		{
			int[] value = {471,1108,792,-1,934,902,977,-1,422,622,884,-1,1027,564,1166,-1,1048,586,910,-1,1323,1203,1333,-1,1459,1401,1427,-1,87,8,40,-1,362,259,203,-1,784,694,571,-1,1126,1019,984,-1,716,781,784,-1,695,675,655,-1,708,651,855,-1,693,856,651,-1,49,28,7,-1,134,181,129,-1,338,393,428,-1,162,216,233,-1,94,62,118,-1,14,80,62,-1,16,64,115,-1,7,23,14,-1,670,852,488,-1,262,550,566,-1,1311,1236,1309,-1,1256,1165,1402,-1,1341,1360,1323,-1,128,90,261,-1,984,1064,1126,-1,871,895,482,-1,999,1083,1365,-1,1360,1310,1203,-1,835,408,919,-1,164,208,66,-1,485,302,370,-1,313,143,121,-1,313,351,143,-1,344,76,138,-1,784,645,779,-1,526,824,645,-1,526,895,824,-1,175,150,484,-1,1194,926,790,-1,1369,1192,1059,-1,1148,1213,1333,-1,1306,420,835,-1,835,1229,1306,-1,1435,1450,1438,-1,1220,1314,1258,-1,1385,1474,1368,-1,1034,1349,1334,-1,1334,1474,1475,-1,1385,1205,1249,-1,97,188,698,-1,999,910,559,-1,792,140,220,-1,472,703,560,-1,472,440,433,-1,424,520,575,-1,545,723,562,-1,262,145,290,-1,462,254,317,-1,223,303,317,-1,438,427,195,-1,841,495,195,-1,1475,1365,1432,-1,885,1244,684,-1,1083,463,426,-1,1240,1279,657,-1,1433,1473,1440,-1,1427,1401,1417,-1,1387,1427,1411,-1,889,715,647,-1,130,114,8,-1,11,4,20,-1,670,488,364,-1,28,254,195,-1,79,219,365,-1,378,194,252,-1,670,1018,1070,-1,987,777,512,-1,803,490,354,-1,926,1287,1115,-1,1336,1115,1287,-1,1071,516,381,-1,993,1336,1268,-1,1220,1179,1286,-1,140,234,206,-1,1349,1034,1037,-1,1311,1370,1275,-1,1379,1271,1316,-1,61,29,52,-1,52,29,170,-1,442,344,1068,-1,283,534,392,-1,918,485,832,-1,333,401,534,-1,730,355,1012,-1,420,240,284,-1,1168,1346,1368,-1,1208,1157,1179,-1,208,417,529,-1,772,279,762,-1,766,535,768,-1,1062,971,1117,-1,1117,971,937,-1,152,439,164,-1,317,254,182,-1,380,316,535,-1,937,1006,1117,-1,766,768,776,-1,772,294,279,-1,208,164,417,-1,1141,1157,1169,-1,333,534,342,-1,832,1007,918,-1,283,342,534,-1,344,853,1068,-1,170,68,52,-1,93,61,52,-1,1379,1316,1407,-1,1063,1076,1198,-1,1275,1248,1311,-1,1248,1379,1407,-1,1349,1037,1176,-1,140,206,82,-1,1387,1411,1336,-1,1220,1207,1179,-1,1268,919,993,-1,237,431,408,-1,381,868,1071,-1,1287,1387,1336,-1,1115,593,926,-1,980,889,915,-1,354,788,803,-1,987,512,686,-1,852,670,1070,-1,252,361,378,-1,386,415,822,-1,522,378,361,-1,195,72,28,-1,187,183,104,-1,378,670,364,-1,130,8,87,-1,715,453,647,-1,1417,1473,1427,-1,1440,1375,1433,-1,1369,1409,1415,-1,426,870,1083,-1,1244,1273,684,-1,1475,1373,1365,-1,495,438,195,-1,438,379,427,-1,303,462,317,-1,462,618,254,-1,290,454,262,-1,723,727,562,-1,761,605,575,-1,248,358,554,-1,933,854,481,-1,472,560,526,-1,537,573,433,-1,82,170,29,-1,406,187,427,-1,559,527,999,-1,97,698,437,-1,1373,1385,1249,-1,1244,1334,1475,-1,1334,1044,1034,-1,1346,1385,1368,-1,1220,1278,1314,-1,1203,1148,1333,-1,1059,1257,1369,-1,150,398,484,-1,4,128,150,-1,784,779,716,-1,369,344,138,-1,19,138,76,-1,485,401,302,-1,1268,835,919,-1,1360,1203,1323,-1,1083,1432,1365,-1,1062,1350,445,-1,384,647,453,-1,1174,1235,1323,-1,1402,1439,1256,-1,1311,1407,1236,-1,239,262,566,-1,852,502,488,-1,97,54,16,-1,7,14,48,-1,16,115,43,-1,14,43,80,-1,94,118,156,-1,162,156,216,-1,338,336,393,-1,129,69,134,-1,182,235,317,-1,856,855,651,-1,696,821,652,-1,708,855,812,-1,952,865,879,-1,972,986,988,-1,914,1008,891,-1,695,659,675,-1,716,683,781,-1,1126,1176,1019,-1,784,781,694,-1,203,433,362,-1,1108,977,1182,-1,87,40,100,-1,1416,1183,1192,-1,1463,1443,1439,-1,1439,1333,1463,-1,1333,1402,1323,-1,1233,1048,910,-1,564,292,586,-1,564,334,292,-1,1287,926,1194,-1,622,953,884,-1,953,934,977,-1,792,1071,868,-1,884,471,220,-1,87,100,337,-1,337,868,381,-1,862,936,578,-1,1038,898,777,-1,1038,987,1070,-1,990,595,553,-1,349,595,522,-1,319,299,578,-1,568,278,130,-1,277,278,319,-1,256,163,160,-1,219,79,213,-1,483,395,416,-1,397,375,377,-1,383,415,377,-1,357,183,364,-1,244,96,199,-1,302,149,445,-1,1062,445,320,-1,1068,1179,1157,-1,1141,1168,501,-1,1020,1210,1177,-1,1250,729,733,-1,1343,1117,1250,-1,1062,1343,1350,-1,1314,1275,1350,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl4_Geo_5_169_normalIndex_4()
		{
			int[] value = {1177,1207,1220,-1,1286,1216,1337,-1,1286,1158,1216,-1,355,237,300,-1,754,557,529,-1,753,563,583,-1,320,15,119,-1,31,24,60,-1,1076,832,1198,-1,382,302,401,-1,1286,1179,1068,-1,342,283,170,-1,304,469,840,-1,501,220,61,-1,1290,1219,1160,-1,932,1161,1097,-1,491,549,504,-1,776,932,766,-1,762,1191,1181,-1,1104,1294,1352,-1,306,322,356,-1,1131,957,1144,-1,567,643,983,-1,957,1131,1190,-1,1047,405,601,-1,1408,1302,1449,-1,1449,1395,1377,-1,161,197,103,-1,274,387,410,-1,165,245,196,-1,70,103,245,-1,325,400,122,-1,1261,1222,1338,-1,139,65,88,-1,201,298,269,-1,477,555,207,-1,1065,1040,1246,-1,176,139,88,-1,366,176,547,-1,1120,985,674,-1,965,700,473,-1,421,808,644,-1,1223,1277,1089,-1,1106,1255,1397,-1,1447,1403,1276,-1,1288,1371,1298,-1,1089,1096,998,-1,1452,1470,1462,-1,1394,1467,1361,-1,828,763,587,-1,65,42,88,-1,42,6,57,-1,6,44,95,-1,814,193,231,-1,1050,452,681,-1,631,255,565,-1,47,102,0,-1,1049,1098,981,-1,930,1276,1049,-1,1219,860,1009,-1,1172,1251,1160,-1,1028,1185,1328,-1,912,727,723,-1,901,873,717,-1,921,1116,1226,-1,995,623,544,-1,931,869,1054,-1,1024,843,945,-1,1449,1302,1392,-1,1049,1288,1069,-1,782,1283,1380,-1,267,89,102,-1,1,141,224,-1,400,434,141,-1,107,1,89,-1,204,159,251,-1,628,1053,210,-1,287,133,258,-1,414,282,106,-1,688,547,281,-1,992,1326,1300,-1,778,604,931,-1,1400,1330,1464,-1,1327,1132,1163,-1,1103,1173,983,-1,1410,1265,1297,-1,555,1065,628,-1,116,153,287,-1,111,452,489,-1,1023,137,436,-1,1039,828,1090,-1,153,238,301,-1,167,236,165,-1,1238,906,908,-1,998,976,808,-1,1429,1446,1460,-1,1434,1357,1414,-1,1356,1418,1382,-1,1247,1263,1315,-1,1160,1237,1290,-1,679,627,693,-1,1107,1094,1292,-1,711,679,651,-1,691,493,479,-1,494,478,514,-1,479,444,478,-1,616,585,468,-1,863,807,770,-1,789,683,716,-1,457,325,347,-1,872,802,789,-1,1270,1214,1109,-1,1386,1436,1467,-1,42,75,26,-1,133,287,153,-1,572,890,423,-1,309,909,447,-1,590,823,1052,-1,499,574,543,-1,687,363,1003,-1,547,608,920,-1,1139,1386,1394,-1,899,996,1175,-1,418,700,580,-1,404,473,418,-1,561,935,449,-1,1134,935,899,-1,1340,922,962,-1,1134,1201,1196,-1,1218,1312,1223,-1,1146,1193,944,-1,1285,1137,1113,-1,1262,1397,1255,-1,976,1032,1084,-1,1119,1167,1056,-1,1096,1298,1284,-1,1230,1259,1284,-1,236,466,211,-1,1164,1023,436,-1,1047,975,356,-1,975,1052,823,-1,734,733,295,-1,295,225,204,-1,729,718,491,-1,137,132,310,-1,204,269,295,-1,161,70,142,-1,1180,1246,1294,-1,956,916,754,-1,893,911,753,-1,1164,1161,1355,-1,1159,1355,1087,-1,1419,1430,1437,-1,1331,1388,1299,-1,201,312,405,-1,1302,1190,1131,-1,637,1005,1171,-1,1377,1395,975,-1,1408,1426,1400,-1,456,894,690,-1,1103,643,343,-1,1299,1111,1173,-1,1448,1466,1430,-1,1351,1075,1184,-1,1058,769,765,-1,772,1181,1031,-1,1104,735,730,-1,103,242,148,-1,165,70,245,-1,132,137,159,-1,225,729,310,-1,733,225,295,-1,198,159,196,-1,295,269,265,-1,405,1047,356,-1,1317,1023,1164,-1,718,549,491,-1,687,1338,1222,-1,1069,1288,1146,-1,1077,1119,1151,-1,998,1032,976,-1,644,976,994,-1,1084,1262,1133,-1,1332,1367,1451,-1,1193,1295,1113,-1,1146,944,907,-1,1452,1462,1442,-1,1442,1398,1374,-1,1122,935,1134,-1,960,421,449,-1,432,404,449,-1,653,615,542,-1,962,922,403,-1,1253,1139,1015,-1,1003,1254,687,-1,615,819,574,-1,499,996,615,-1,606,475,823,-1,1254,590,1052,-1,890,909,423,-1,37,133,74,-1,37,51,35,-1,38,117,84,-1,25,59,56,-1,139,207,44,-1,577,1136,465,-1,56,291,281,-1,615,653,819,-1,1214,1270,1414,-1,964,710,872,-1,1153,945,1035,-1,931,1054,1043,-1,1230,1283,782,-1,1468,1441,1447,-1,492,869,881,-1,836,863,705,-1,796,892,863,-1,448,468,634,-1,493,804,616,-1,845,876,691,-1,636,576,665,-1,514,511,494,-1,588,833,866,-1,794,679,711,-1,713,711,708,-1,928,877,794,-1,928,837,877,-1,1107,1292,1348,-1,997,955,968,-1,1231,1347,1221,-1,1414,1357,1376,-1,1472,1429,1424,-1,799,366,920,-1,908,663,1200,-1,105,137,343,-1,985,1041,539,-1,153,136,238,-1,903,425,814,-1,763,414,497,-1,1087,1355,1161,-1,475,975,823,-1,434,596,565,-1,452,47,255,-1,272,168,423,-1,1111,1299,1296,-1,1040,477,982,-1,643,1103,983,-1,1327,1469,1464,-1,667,1132,1114,-1,1109,1043,1024,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getl4_Geo_5_169_normalIndex_5()
		{
			int[] value = {558,497,217,-1,425,903,558,-1,1470,1452,1467,-1,547,688,1015,-1,133,98,258,-1,25,56,176,-1,565,873,631,-1,224,141,434,-1,102,89,0,-1,489,572,260,-1,1049,907,942,-1,363,687,293,-1,1414,1421,1453,-1,869,843,1024,-1,843,492,530,-1,521,881,931,-1,877,624,625,-1,597,619,717,-1,576,588,665,-1,1328,1461,1200,-1,701,795,1276,-1,795,860,1219,-1,255,47,0,-1,452,255,631,-1,1022,1050,1160,-1,25,26,22,-1,309,116,272,-1,25,88,42,-1,217,106,67,-1,1366,1312,1318,-1,1394,1340,962,-1,1113,890,944,-1,210,1053,297,-1,1277,1298,1096,-1,1106,580,700,-1,1277,1260,1289,-1,1123,1451,1102,-1,808,421,960,-1,700,965,1255,-1,1095,1056,797,-1,1239,973,991,-1,543,574,525,-1,305,689,674,-1,763,1039,1074,-1,477,799,961,-1,920,608,687,-1,799,1222,1261,-1,799,477,366,-1,198,148,201,-1,1392,1338,1254,-1,690,671,410,-1,211,637,142,-1,1358,1307,947,-1,671,1274,1178,-1,947,567,957,-1,456,387,643,-1,1057,957,567,-1,1067,339,465,-1,250,297,577,-1,295,455,728,-1,1104,464,346,-1,1058,1031,1297,-1,1191,1352,1322,-1,847,1075,1159,-1,1040,1065,555,-1,504,1164,436,-1,729,491,310,-1,1424,1219,1290,-1,997,1197,955,-1,202,50,9,-1,1158,1068,853,-1,1076,798,603,-1,1198,832,1129,-1,302,382,174,-1,33,45,17,-1,320,147,15,-1,249,13,229,-1,769,417,439,-1,772,439,294,-1,209,431,237,-1,528,500,382,-1,1337,1216,1271,-1,1275,1370,1350,-1,718,937,435,-1,1314,1248,1275,-1,728,1177,734,-1,1064,501,1168,-1,320,445,147,-1,445,149,147,-1,1006,937,718,-1,234,140,792,-1,332,187,406,-1,315,383,375,-1,502,397,488,-1,686,483,502,-1,341,213,395,-1,21,108,144,-1,288,186,372,-1,524,292,190,-1,332,406,559,-1,20,36,11,-1,36,73,101,-1,90,78,228,-1,277,349,256,-1,299,278,568,-1,1018,522,595,-1,1070,1018,1088,-1,822,680,936,-1,862,578,480,-1,1071,1182,568,-1,337,100,221,-1,884,1108,471,-1,792,1182,1071,-1,862,977,902,-1,887,244,953,-1,953,622,984,-1,372,334,564,-1,1333,1378,1463,-1,1378,1443,1463,-1,1325,1279,1422,-1,1438,1409,1390,-1,1433,1268,1336,-1,1194,1183,1416,-1,654,822,862,-1,64,259,173,-1,571,513,440,-1,437,537,327,-1,571,440,472,-1,698,188,244,-1,28,39,7,-1,1034,560,703,-1,682,695,655,-1,914,780,979,-1,632,816,780,-1,771,827,848,-1,988,963,972,-1,612,642,888,-1,812,831,662,-1,812,699,786,-1,662,599,546,-1,664,609,787,-1,630,696,714,-1,599,829,639,-1,508,520,476,-1,253,134,243,-1,64,173,99,-1,23,7,39,-1,1115,666,234,-1,454,830,550,-1,1042,391,657,-1,889,980,715,-1,1129,445,1350,-1,501,1064,984,-1,885,874,951,-1,1233,1249,1048,-1,1048,1308,1202,-1,174,382,500,-1,500,993,431,-1,485,370,832,-1,5,143,138,-1,351,791,850,-1,571,526,784,-1,954,560,1034,-1,1257,1059,980,-1,915,1199,1257,-1,1042,1199,915,-1,8,20,4,-1,1183,581,1192,-1,1438,1450,1409,-1,1378,1417,1443,-1,1387,1287,1416,-1,333,528,382,-1,885,684,605,-1,1244,885,1044,-1,1475,1474,1385,-1,999,1365,1233,-1,1182,792,1108,-1,16,54,64,-1,573,703,472,-1,954,895,526,-1,219,341,512,-1,49,146,182,-1,239,12,145,-1,618,813,254,-1,838,841,195,-1,324,246,451,-1,1244,1475,1432,-1,684,1273,870,-1,317,426,451,-1,1450,1459,1465,-1,1202,1360,1166,-1,1387,1465,1459,-1,1409,1369,1257,-1,160,163,109,-1,516,130,87,-1,524,586,292,-1,1313,1124,420,-1,194,378,364,-1,777,898,365,-1,214,252,194,-1,371,21,352,-1,1018,670,378,-1,822,415,383,-1,323,486,232,-1,864,949,934,-1,1082,803,1170,-1,361,252,256,-1,1433,1375,1268,-1,993,500,528,-1,528,206,234,-1,234,666,528,-1,1278,1286,1337,-1,884,977,1108,-1,1370,1311,1309,-1,1063,809,798,-1,283,68,170,-1,603,171,120,-1,202,798,809,-1,82,206,170,-1,531,392,534,-1,1150,412,335,-1,900,1124,1224,-1,728,1020,1177,-1,1127,1012,355,-1,164,439,417,-1,154,124,279,-1,249,229,583,-1,396,621,629,-1,385,535,316,-1,1062,320,971,-1,1117,1006,729,-1,380,766,760,-1,380,535,766,-1,937,320,435,-1,971,320,937,-1,735,285,355,-1,759,285,735,-1,124,83,113,-1,83,124,154,-1,730,1072,720,-1,730,1012,1072,-1,333,206,528,-1,333,342,206,-1,850,1158,853,-1,1216,1158,850,-1,1011,840,469,-1,1011,1266,840,-1,313,791,351,-1,791,313,810,-1,1198,1236,1063,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getl4_Geo_5_169_normalIndex_6()
		{
			int[] value = {1198,1309,1236,-1,1368,1176,1126,-1,1368,1349,1176,-1,1207,1208,1179,-1,1207,1210,1208,-1,237,284,300,-1,237,408,284,-1,579,889,647,-1,915,889,579,-1,430,978,376,-1,430,941,978,-1,354,326,280,-1,354,376,326,-1,805,299,568,-1,805,280,299,-1,949,654,902,-1,949,411,654,-1,371,108,21,-1,371,394,108,-1,852,987,686,-1,1070,987,852,-1,72,187,104,-1,195,187,72,-1,1473,1411,1427,-1,1473,1433,1411,-1,1174,800,1235,-1,1174,518,800,-1,1279,1042,657,-1,1042,1279,1325,-1,1199,1325,1359,-1,1042,1325,1199,-1,222,523,180,-1,222,481,523,-1,374,248,212,-1,358,248,374,-1,969,1280,1245,-1,969,1004,1280,-1,463,999,527,-1,1083,999,463,-1,618,1128,813,-1,970,1128,618,-1,92,223,246,-1,92,30,223,-1,495,707,438,-1,1147,707,495,-1,427,324,451,-1,379,324,427,-1,781,704,675,-1,704,781,683,-1,350,454,290,-1,487,454,350,-1,360,368,243,-1,368,360,461,-1,338,257,233,-1,338,340,257,-1,49,112,146,-1,49,2,112,-1,859,861,878,-1,861,859,856,-1,874,878,871,-1,605,878,874,-1,878,605,761,-1,203,537,433,-1,203,327,537,-1,427,559,406,-1,527,559,427,-1,1162,1249,1205,-1,1142,1249,1162,-1,1169,1385,1346,-1,1169,1205,1385,-1,1422,1443,1435,-1,1443,1422,1423,-1,221,40,175,-1,100,40,221,-1,824,779,645,-1,779,824,758,-1,9,143,5,-1,121,143,9,-1,27,34,33,-1,34,27,46,-1,46,113,83,-1,46,91,113,-1,420,408,835,-1,284,408,420,-1,904,365,898,-1,904,352,365,-1,97,23,39,-1,97,16,23,-1,14,16,43,-1,23,16,14,-1,80,115,135,-1,43,115,80,-1,80,118,62,-1,80,131,118,-1,118,216,156,-1,118,191,216,-1,338,216,336,-1,233,216,338,-1,388,230,253,-1,230,388,353,-1,413,353,419,-1,328,353,413,-1,399,541,519,-1,399,413,541,-1,519,721,509,-1,519,719,721,-1,725,556,540,-1,726,556,725,-1,12,129,99,-1,129,12,69,-1,641,461,360,-1,641,642,461,-1,451,527,427,-1,463,527,451,-1,831,856,859,-1,856,831,855,-1,146,390,407,-1,146,112,390,-1,367,340,446,-1,367,257,340,-1,817,714,696,-1,817,875,714,-1,787,839,821,-1,839,787,815,-1,672,786,699,-1,786,672,736,-1,714,373,630,-1,714,348,373,-1,446,664,367,-1,609,664,446,-1,851,508,476,-1,849,508,851,-1,771,677,612,-1,677,771,848,-1,865,656,685,-1,865,844,656,-1,748,685,656,-1,747,685,748,-1,739,600,589,-1,739,742,600,-1,264,566,620,-1,264,239,566,-1,785,1008,842,-1,1008,785,891,-1,487,830,454,-1,830,487,842,-1,96,188,58,-1,96,244,188,-1,350,259,362,-1,350,290,259,-1,335,900,1001,-1,335,240,900,-1,1213,1143,1364,-1,1213,1148,1143,-1,559,586,524,-1,910,586,559,-1,518,372,800,-1,518,288,372,-1,926,337,460,-1,926,868,337,-1,1088,1025,1038,-1,1088,1017,1025,-1,946,1017,943,-1,946,1025,1017,-1,913,578,936,-1,553,578,913,-1,277,130,278,-1,114,130,277,-1,114,256,160,-1,277,256,114,-1,228,261,90,-1,228,286,261,-1,288,474,200,-1,474,288,518,-1,109,332,321,-1,109,163,332,-1,213,21,144,-1,21,213,79,-1,488,357,364,-1,397,357,488,-1,96,183,199,-1,183,96,104,-1,557,756,583,-1,754,756,557,-1,760,435,380,-1,760,718,435,-1,24,229,13,-1,24,18,229,-1,76,85,19,-1,85,76,68,-1,766,1097,760,-1,766,932,1097,-1,1164,549,1036,-1,549,1164,504,-1,932,1087,1161,-1,932,706,1087,-1,1159,1351,1412,-1,1075,1351,1159,-1,1188,735,1104,-1,735,1188,759,-1,1391,1352,1362,-1,1322,1352,1391,-1,402,730,720,-1,402,464,730,-1,1261,1144,961,-1,1261,1131,1144,-1,667,161,669,-1,667,197,161,-1,1080,1408,1389,-1,1408,1080,1190,-1,148,245,103,-1,148,198,245,-1,1395,1392,1254,-1,1395,1449,1392,-1,1189,1246,1180,-1,1189,1065,1246,-1,1090,903,1091,-1,903,1090,828,-1,305,459,247,-1,459,305,498,-1,689,247,673,-1,247,689,305,-1,247,499,293,-1,499,247,459,-1,1151,1033,1269,-1,1151,924,1033,-1,473,644,774,-1,644,473,432,-1,1288,1403,1371,-1,1403,1288,1276,-1,65,6,42,-1,65,44,6,-1,678,301,238,-1,678,959,301,-1,425,193,814,-1,151,193,425,-1,151,273,117,-1,273,151,425,-1,950,1252,1291,-1,950,995,1252,-1,1226,1100,1264,-1,1100,1226,1116,-1,192,507,227,-1,192,470,507,-1,489,1013,942,-1,1013,489,452,-1,345,860,795,-1,860,345,506,-1,1251,1383,1228,-1,1251,1445,1383,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getl4_Geo_5_169_normalIndex_7()
		{
			int[] value = {773,930,981,-1,930,773,331,-1,925,710,964,-1,710,925,807,-1,1347,1211,1406,-1,1206,1211,1347,-1,940,966,1010,-1,880,966,940,-1,1046,912,929,-1,1045,912,1046,-1,1348,1304,1393,-1,1348,1292,1304,-1,1197,1051,955,-1,1197,1237,1051,-1,837,712,775,-1,837,806,712,-1,604,515,521,-1,604,598,515,-1,945,1270,1024,-1,945,1153,1270,-1,1035,457,782,-1,530,457,1035,-1,122,1,107,-1,122,141,1,-1,779,640,778,-1,758,640,779,-1,1327,1455,1469,-1,1455,1327,1354,-1,1444,1448,1431,-1,1428,1448,1444,-1,1362,1428,1391,-1,1362,1384,1428,-1,1065,1053,628,-1,1053,1065,1189,-1,330,260,423,-1,330,226,260,-1,740,857,847,-1,740,750,857,-1,301,74,153,-1,74,301,311,-1,539,674,985,-1,389,674,539,-1,582,1033,533,-1,582,1078,1033,-1,1453,1446,1434,-1,1446,1453,1460,-1,1357,1396,1342,-1,1396,1357,1434,-1,1356,1396,1418,-1,1356,1344,1396,-1,1263,1356,1315,-1,1263,1281,1356,-1,1263,1138,1140,-1,1138,1263,1247,-1,1241,1085,1221,-1,1121,1085,1241,-1,1121,1060,1055,-1,1060,1121,1152,-1,939,1073,958,-1,939,1060,1073,-1,721,958,967,-1,721,719,958,-1,917,725,940,-1,725,917,726,-1,1345,1461,1376,-1,1406,1461,1345,-1,1014,834,1112,-1,1014,833,834,-1,942,1022,1049,-1,1022,942,1013,-1,627,626,619,-1,679,626,627,-1,1081,1329,1066,-1,1081,1363,1329,-1,1045,867,912,-1,867,1045,974,-1,638,697,650,-1,660,697,638,-1,786,806,713,-1,736,806,786,-1,1107,764,846,-1,1107,1130,764,-1,811,1029,1094,-1,1029,811,709,-1,968,624,997,-1,624,968,625,-1,801,665,866,-1,636,665,801,-1,818,613,793,-1,818,633,613,-1,793,748,818,-1,748,793,747,-1,876,739,886,-1,876,742,739,-1,906,1211,858,-1,906,1238,1211,-1,739,892,886,-1,739,741,892,-1,925,770,807,-1,770,925,692,-1,1283,1381,1413,-1,1283,1230,1381,-1,1214,1125,1109,-1,1214,1185,1125,-1,1462,1339,1372,-1,1462,1470,1339,-1,359,166,287,-1,166,359,210,-1,909,272,423,-1,909,309,272,-1,1300,897,992,-1,1300,1253,897,-1,418,570,450,-1,570,418,580,-1,797,538,924,-1,797,542,538,-1,922,1134,1175,-1,922,1201,1134,-1,1243,1000,1272,-1,1000,1243,883,-1,1000,1186,1272,-1,959,1186,1000,-1,1146,1366,1193,-1,1146,1312,1366,-1,1451,1262,1332,-1,1397,1262,1451,-1,1101,998,1096,-1,998,1101,1092,-1,1298,1381,1284,-1,1371,1381,1298,-1,132,204,225,-1,204,132,159,-1,1466,1437,1430,-1,1437,1466,1471,-1,1171,669,637,-1,1171,1163,669,-1,1389,1400,1464,-1,1408,1400,1389,-1,1464,1358,1389,-1,1464,1469,1358,-1,1114,601,611,-1,1114,1145,601,-1,857,753,911,-1,857,750,753,-1,1362,1294,1319,-1,1362,1352,1294,-1,298,356,322,-1,298,405,356,-1,1023,1173,1103,-1,1023,1317,1173,-1,1288,1260,1146,-1,1288,1289,1260,-1,1086,1167,1259,-1,1167,1086,1056,-1,1077,1269,1204,-1,1077,1151,1269,-1,1332,1084,1204,-1,1262,1084,1332,-1,1193,1404,1295,-1,1193,1366,1404,-1,1118,447,909,-1,447,1118,678,-1,1442,1366,1405,-1,1366,1442,1404,-1,1243,1374,1398,-1,1272,1374,1243,-1,561,538,542,-1,538,561,458,-1,458,449,404,-1,458,561,449,-1,41,117,38,-1,53,117,41,-1,53,151,117,-1,1185,1303,1328,-1,1185,1214,1303,-1,945,530,1035,-1,945,843,530,-1,782,475,606,-1,782,457,475,-1,634,925,989,-1,692,925,634,-1,796,886,892,-1,886,796,804,-1,804,585,616,-1,804,796,585,-1,493,468,448,-1,493,616,468,-1,858,444,906,-1,444,858,478,-1,886,691,876,-1,691,886,804,-1,746,876,845,-1,742,876,746,-1,751,668,636,-1,751,749,668,-1,833,517,834,-1,588,517,833,-1,737,636,801,-1,751,636,737,-1,626,625,968,-1,625,626,794,-1,646,624,877,-1,646,569,624,-1,709,974,1029,-1,697,974,709,-1,744,638,745,-1,744,660,638,-1,650,648,638,-1,648,650,820,-1,775,783,658,-1,775,820,783,-1,732,912,867,-1,732,727,912,-1,1081,1348,1363,-1,1130,1348,1081,-1,955,626,968,-1,626,955,619,-1,1237,1050,1051,-1,1160,1050,1237,-1,966,833,1014,-1,866,833,966,-1,1301,1406,1345,-1,1347,1406,1301,-1,940,1030,917,-1,940,1010,1030,-1,939,719,722,-1,719,939,958,-1,1060,923,1055,-1,939,923,1060,-1,1121,1030,1085,-1,1055,1030,1121,-1,1079,1138,1046,-1,1079,1140,1138,-1,1140,1281,1263,-1,1140,1149,1281,-1,1344,1281,1282,-1,1281,1344,1356,-1,1342,1376,1357,-1,1342,1345,1376,-1,1393,1429,1472,-1,1393,1382,1429,-1,1123,582,570,-1,1102,582,1123,-1,74,218,37,-1,74,311,218,-1,740,706,776,-1,847,706,740,-1,111,226,102,-1,260,226,111,-1,168,330,423,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getl4_Geo_5_169_normalIndex_8()
		{
			int[] value = {168,177,330,-1,1391,1324,1322,-1,1391,1399,1324,-1,1454,1431,1458,-1,1444,1431,1454,-1,1388,1296,1299,-1,1296,1388,1353,-1,1296,1040,982,-1,1040,1296,1267,-1,1355,1471,1456,-1,1355,1412,1471,-1,1330,1132,1327,-1,1114,1132,1330,-1,1145,1330,1400,-1,1330,1145,1114,-1,758,649,640,-1,649,758,757,-1,1470,1300,1326,-1,1470,1436,1300,-1,688,291,897,-1,281,291,688,-1,41,57,35,-1,41,75,57,-1,267,322,306,-1,267,314,322,-1,1270,1421,1414,-1,1270,1153,1421,-1,521,434,400,-1,521,515,434,-1,544,470,995,-1,544,507,470,-1,532,1321,470,-1,921,1321,532,-1,1226,1321,921,-1,1226,1293,1321,-1,1380,1413,1441,-1,1380,1283,1413,-1,736,712,806,-1,736,738,712,-1,901,619,955,-1,619,901,717,-1,1363,1393,1472,-1,1363,1348,1393,-1,1135,1046,1138,-1,1135,1045,1046,-1,1010,1014,1105,-1,966,1014,1010,-1,1406,1238,1461,-1,1211,1238,1406,-1,802,807,836,-1,802,710,807,-1,1219,1172,1160,-1,1009,1172,1219,-1,930,192,635,-1,930,331,192,-1,1383,1155,1228,-1,1155,1383,1264,-1,506,1009,860,-1,1009,506,950,-1,681,873,901,-1,681,631,873,-1,507,345,227,-1,345,507,544,-1,1116,773,1100,-1,773,1116,921,-1,1291,1321,1445,-1,1291,1252,1321,-1,168,210,177,-1,210,168,166,-1,217,117,273,-1,84,117,217,-1,311,959,1000,-1,959,311,301,-1,166,272,116,-1,166,168,272,-1,1318,1452,1405,-1,1452,1318,1361,-1,177,263,314,-1,177,297,263,-1,1277,1288,1298,-1,1277,1289,1288,-1,1078,1269,1033,-1,1367,1269,1078,-1,819,1086,1239,-1,1086,819,653,-1,614,973,543,-1,973,614,991,-1,673,293,922,-1,293,673,247,-1,1195,689,673,-1,1195,1120,689,-1,1099,985,1120,-1,1099,1041,985,-1,59,282,56,-1,282,59,106,-1,1093,403,608,-1,1093,962,403,-1,265,241,266,-1,268,241,265,-1,347,307,409,-1,347,107,307,-1,105,274,167,-1,274,105,343,-1,1389,947,1080,-1,1389,1358,947,-1,671,1005,466,-1,671,1178,1005,-1,197,611,242,-1,197,667,611,-1,1234,297,1053,-1,297,1234,577,-1,402,346,464,-1,402,266,346,-1,956,1297,1265,-1,956,1058,1297,-1,1410,1242,1265,-1,1410,1454,1242,-1,1225,911,893,-1,911,1225,1184,-1,1087,847,1159,-1,706,847,1087,-1,1157,1232,1212,-1,1157,1208,1232,-1,61,442,501,-1,61,93,442,-1,120,19,85,-1,120,5,19,-1,853,369,850,-1,853,344,369,-1,147,174,86,-1,149,174,147,-1,318,119,63,-1,385,119,318,-1,752,417,769,-1,752,529,417,-1,759,279,285,-1,279,759,762,-1,308,397,377,-1,308,357,397,-1,205,375,271,-1,205,315,375,-1,395,144,271,-1,144,395,213,-1,73,321,190,-1,73,109,321,-1,1027,372,564,-1,800,372,1027,-1,90,36,78,-1,90,11,36,-1,657,228,591,-1,391,228,657,-1,391,286,228,-1,349,361,256,-1,349,522,361,-1,551,946,943,-1,441,946,551,-1,946,904,1025,-1,896,904,946,-1,244,934,953,-1,934,244,505,-1,790,221,581,-1,790,460,221,-1,1378,1364,1440,-1,1213,1364,1378,-1,1378,1473,1417,-1,1378,1440,1473,-1,1439,1240,1256,-1,1240,1439,1423,-1,1268,1229,835,-1,1268,1375,1229,-1,232,244,215,-1,232,505,244,-1,362,513,350,-1,440,513,362,-1,437,54,97,-1,437,327,54,-1,104,58,72,-1,104,96,58,-1,705,584,655,-1,584,705,741,-1,695,891,785,-1,891,695,682,-1,891,661,914,-1,891,682,661,-1,550,1021,566,-1,550,1026,1021,-1,988,1021,1002,-1,988,986,1021,-1,780,589,600,-1,661,589,780,-1,632,844,816,-1,656,844,632,-1,747,827,685,-1,749,827,747,-1,685,879,865,-1,879,685,827,-1,844,952,988,-1,865,952,844,-1,888,952,879,-1,963,952,888,-1,905,476,407,-1,851,476,905,-1,699,662,546,-1,699,812,662,-1,367,630,373,-1,664,630,367,-1,732,815,610,-1,744,815,732,-1,743,767,825,-1,767,743,738,-1,672,546,639,-1,546,672,699,-1,664,696,630,-1,664,821,696,-1,817,905,875,-1,817,829,905,-1,429,446,340,-1,446,429,503,-1,126,390,112,-1,390,126,348,-1,831,520,508,-1,859,520,831,-1,426,235,424,-1,235,426,317,-1,642,510,461,-1,510,642,612,-1,253,368,388,-1,253,243,368,-1,556,724,552,-1,556,726,724,-1,723,509,721,-1,545,509,723,-1,399,509,393,-1,399,519,509,-1,329,413,399,-1,329,328,413,-1,191,336,216,-1,191,329,336,-1,191,131,189,-1,118,131,191,-1,99,135,115,-1,99,129,135,-1,145,99,173,-1,145,12,99,-1,1063,1011,809,-1,1063,1236,1011,-1,1335,1236,1407,-1,1335,1266,1236,-1,768,740,776,-1,740,768,629,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getl4_Geo_5_169_normalIndex_9()
		{
			int[] value = {1072,1210,1020,-1,1072,1209,1210,-1,91,158,113,-1,91,123,158,-1,91,27,55,-1,46,27,91,-1,158,237,178,-1,237,158,209,-1,171,5,120,-1,9,5,171,-1,60,249,289,-1,60,13,249,-1,157,202,296,-1,157,50,202,-1,484,1192,581,-1,1059,1192,484,-1,1423,1279,1240,-1,1422,1279,1423,-1,1176,927,1019,-1,927,1176,1037,-1,54,203,64,-1,54,327,203,-1,1044,954,1034,-1,1044,951,954,-1,1004,933,481,-1,1004,969,933,-1,155,948,1004,-1,155,554,948,-1,155,248,554,-1,155,179,248,-1,58,97,39,-1,58,188,97,-1,767,736,672,-1,767,738,736,-1,859,575,520,-1,761,575,859,-1,81,112,2,-1,81,126,112,-1,428,340,338,-1,428,429,340,-1,461,467,368,-1,467,461,510,-1,239,69,12,-1,69,239,264,-1,659,781,675,-1,659,694,781,-1,438,374,379,-1,707,374,438,-1,30,303,223,-1,30,180,303,-1,813,1245,838,-1,1128,1245,813,-1,451,223,317,-1,223,451,246,-1,1004,1147,1280,-1,1004,948,1147,-1,212,179,92,-1,248,179,212,-1,523,854,970,-1,481,854,523,-1,1450,1415,1409,-1,1450,1465,1415,-1,1256,657,591,-1,1256,1240,657,-1,1027,1235,800,-1,1341,1235,1027,-1,187,194,183,-1,187,184,194,-1,271,108,205,-1,271,144,108,-1,79,352,21,-1,365,352,79,-1,383,551,680,-1,551,383,315,-1,654,323,232,-1,411,323,654,-1,326,977,480,-1,326,1016,977,-1,280,480,299,-1,280,326,480,-1,376,1016,326,-1,376,978,1016,-1,978,1082,1170,-1,941,1082,978,-1,261,391,384,-1,261,286,391,-1,398,1059,484,-1,398,715,1059,-1,1232,1210,1209,-1,1210,1232,1208,-1,1168,1126,1064,-1,1168,1368,1126,-1,1198,1370,1309,-1,1129,1370,1198,-1,531,85,392,-1,531,120,85,-1,469,809,1011,-1,469,296,809,-1,850,1271,1216,-1,850,791,1271,-1,1124,240,420,-1,900,240,1124,-1,1127,1072,1012,-1,1127,1209,1072,-1,439,154,294,-1,152,154,439,-1,229,66,208,-1,229,18,66,-1,563,249,583,-1,289,249,563,-1,629,385,318,-1,385,629,768,-1,316,435,320,-1,316,380,435,-1,396,563,621,-1,396,289,563,-1,557,208,529,-1,229,208,557,-1,77,46,83,-1,34,46,77,-1,355,124,178,-1,124,355,285,-1,720,1020,728,-1,720,1072,1020,-1,1212,1224,1124,-1,1224,1212,1232,-1,335,300,284,-1,335,412,300,-1,1127,1001,1224,-1,1150,1001,1127,-1,918,603,531,-1,918,1007,603,-1,1335,810,840,-1,1335,1316,810,-1,798,171,603,-1,798,202,171,-1,1192,1415,1416,-1,1369,1415,1192,-1,490,376,354,-1,490,430,376,-1,788,280,805,-1,788,354,280,-1,1182,805,568,-1,1227,805,1182,-1,505,864,934,-1,486,864,505,-1,386,654,232,-1,822,654,386,-1,205,394,441,-1,394,205,108,-1,1212,1313,1162,-1,1212,1124,1313,-1,20,160,71,-1,114,160,20,-1,1202,1310,1360,-1,1202,1308,1310,-1,518,1165,474,-1,1174,1165,518,-1,1359,1257,1199,-1,1257,1359,1390,-1,1306,1308,1313,-1,1310,1308,1306,-1,155,180,30,-1,155,222,180,-1,707,358,374,-1,554,358,707,-1,1128,969,1245,-1,933,969,1128,-1,605,870,575,-1,605,684,870,-1,462,970,618,-1,523,970,462,-1,324,92,246,-1,212,92,324,-1,1280,495,841,-1,1280,1147,495,-1,548,350,513,-1,548,487,350,-1,270,243,134,-1,243,270,360,-1,594,725,540,-1,725,594,731,-1,185,233,257,-1,162,233,185,-1,235,146,275,-1,235,182,146,-1,856,755,861,-1,755,856,693,-1,829,702,639,-1,817,702,829,-1,1004,222,155,-1,1004,481,222,-1,874,482,951,-1,482,874,871,-1,1157,1205,1169,-1,1157,1162,1205,-1,1417,1435,1443,-1,1417,1401,1435,-1,1401,1450,1435,-1,1401,1459,1450,-1,1143,1306,1229,-1,1143,1148,1306,-1,1183,790,581,-1,790,1183,1194,-1,175,4,150,-1,175,40,4,-1,826,758,824,-1,757,758,826,-1,351,138,143,-1,138,351,369,-1,3,119,15,-1,3,63,119,-1,431,169,500,-1,209,169,431,-1,169,86,174,-1,123,86,169,-1,33,18,24,-1,18,33,34,-1,152,83,154,-1,152,77,83,-1,1142,1308,1048,-1,1142,1313,1308,-1,1249,1365,1373,-1,1365,1249,1233,-1,871,824,895,-1,871,826,824,-1,261,453,128,-1,261,384,453,-1,896,352,904,-1,352,896,371,-1,48,81,2,-1,48,94,81,-1,131,135,172,-1,80,135,131,-1,253,172,181,-1,172,253,230,-1,353,189,230,-1,189,353,328,-1,443,353,388,-1,353,443,419,-1,552,413,419,-1,413,552,541,-1,719,541,722,-1,519,541,719,-1,443,540,556,-1,443,467,540,-1,677,731,594,-1,731,677,737,-1,592,360,270,-1,360,592,641,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getl4_Geo_5_169_normalIndex_10()
		{
			int[] value = {861,871,878,-1,871,861,826,-1,407,275,146,-1,476,275,407,-1,257,373,185,-1,257,367,373,-1,562,732,610,-1,562,727,732,-1,696,702,817,-1,696,652,702,-1,825,821,839,-1,652,821,825,-1,839,744,745,-1,839,815,744,-1,503,609,446,-1,609,503,787,-1,851,829,599,-1,851,905,829,-1,849,831,508,-1,662,831,849,-1,848,737,677,-1,737,848,751,-1,963,642,641,-1,642,963,888,-1,827,751,848,-1,827,749,751,-1,600,746,632,-1,746,600,742,-1,979,816,1002,-1,816,979,780,-1,1021,620,566,-1,986,620,1021,-1,1008,979,1026,-1,1008,914,979,-1,589,682,584,-1,661,682,589,-1,548,842,487,-1,842,548,785,-1,984,698,887,-1,984,1019,698,-1,927,537,437,-1,927,573,537,-1,173,290,145,-1,173,259,290,-1,1359,1435,1438,-1,1359,1422,1435,-1,1359,1325,1422,-1,990,1017,1088,-1,990,913,1017,-1,943,913,936,-1,1017,913,943,-1,101,228,78,-1,228,101,200,-1,109,36,71,-1,73,36,109,-1,190,334,186,-1,190,292,334,-1,186,200,101,-1,200,186,288,-1,214,163,252,-1,163,214,332,-1,512,483,686,-1,512,341,483,-1,308,386,215,-1,415,386,308,-1,214,187,332,-1,214,184,187,-1,178,113,158,-1,178,124,113,-1,753,621,563,-1,753,750,621,-1,63,31,125,-1,3,31,63,-1,55,17,15,-1,55,27,17,-1,50,121,9,-1,157,121,50,-1,1036,1161,1164,-1,1036,1097,1161,-1,911,1075,857,-1,911,1184,1075,-1,1265,916,956,-1,916,1265,1242,-1,1428,1399,1391,-1,1399,1428,1444,-1,1322,1031,1181,-1,1031,1322,1324,-1,455,720,728,-1,455,402,720,-1,250,263,297,-1,241,263,250,-1,1180,1136,1189,-1,1180,1067,1136,-1,465,346,250,-1,346,465,339,-1,894,567,947,-1,894,456,567,-1,669,142,637,-1,669,161,142,-1,1307,690,894,-1,1307,1274,690,-1,414,1074,992,-1,414,763,1074,-1,1091,1217,1090,-1,1091,1187,1217,-1,389,498,305,-1,498,389,539,-1,459,1099,1154,-1,459,498,1099,-1,996,1195,1175,-1,996,1154,1195,-1,499,1154,996,-1,499,459,1154,-1,1156,819,1239,-1,819,1156,1061,-1,924,1095,797,-1,1151,1095,924,-1,1123,1397,1451,-1,1397,1123,1106,-1,1367,1204,1269,-1,1367,1332,1204,-1,238,447,678,-1,447,238,136,-1,814,218,883,-1,814,231,218,-1,59,22,67,-1,59,25,22,-1,623,950,506,-1,950,623,995,-1,1293,1264,1383,-1,1264,1293,1226,-1,331,470,192,-1,331,532,470,-1,1251,1022,1160,-1,1228,1022,1251,-1,227,795,701,-1,795,227,345,-1,1172,1445,1251,-1,1172,1291,1445,-1,1100,981,1098,-1,981,1100,773,-1,1125,925,964,-1,1125,989,925,-1,1231,1206,1347,-1,1112,1206,1231,-1,725,880,940,-1,731,880,725,-1,1247,1292,1215,-1,1292,1247,1304,-1,1329,1237,1197,-1,1329,1290,1237,-1,755,627,617,-1,693,627,755,-1,775,646,837,-1,646,775,658,-1,1252,470,1321,-1,1252,995,470,-1,598,596,515,-1,607,596,598,-1,530,325,457,-1,492,325,530,-1,193,51,231,-1,51,193,53,-1,22,75,41,-1,22,26,75,-1,496,628,359,-1,496,276,628,-1,282,992,897,-1,992,282,414,-1,716,778,789,-1,716,779,778,-1,1274,1320,1178,-1,1274,1425,1320,-1,1225,1419,1184,-1,1225,1457,1419,-1,1469,1307,1358,-1,1307,1469,1455,-1,1246,1319,1294,-1,1267,1319,1246,-1,1448,1384,1420,-1,1384,1448,1428,-1,1319,1384,1362,-1,1319,1353,1384,-1,265,402,455,-1,265,266,402,-1,640,598,604,-1,649,598,640,-1,598,649,607,-1,1039,1217,1372,-1,1039,1090,1217,-1,236,142,70,-1,236,211,142,-1,466,410,671,-1,466,236,410,-1,1376,1328,1303,-1,1376,1461,1328,-1,1434,1418,1396,-1,1418,1434,1446,-1,1342,1344,1305,-1,1344,1342,1396,-1,1305,1221,1301,-1,1241,1221,1305,-1,1282,1121,1241,-1,1152,1121,1282,-1,1060,1149,1073,-1,1060,1152,1149,-1,967,1073,1079,-1,967,958,1073,-1,967,723,721,-1,723,967,929,-1,724,917,923,-1,724,726,917,-1,1105,1221,1085,-1,1105,1231,1221,-1,731,801,880,-1,737,801,731,-1,1112,882,1206,-1,834,882,1112,-1,607,617,597,-1,649,617,607,-1,1197,1066,1329,-1,1066,1197,997,-1,1029,1045,1135,-1,974,1045,1029,-1,569,658,602,-1,569,646,658,-1,783,811,846,-1,783,650,811,-1,928,806,837,-1,713,806,928,-1,712,743,648,-1,738,743,712,-1,660,732,867,-1,732,660,744,-1,846,1094,1107,-1,1094,846,811,-1,794,713,928,-1,794,711,713,-1,997,569,1066,-1,569,997,624,-1,511,588,576,-1,588,511,517,-1,511,633,494,-1,633,511,613,-1,576,793,613,-1,668,793,576,-1,668,747,793,-1,747,668,749,-1,633,845,676,-1,845,633,818,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getl4_Geo_5_169_normalIndex_11()
		{
			int[] value = {444,908,906,-1,444,448,908,-1,585,770,692,-1,796,770,585,-1,892,705,863,-1,741,705,892,-1,1413,1371,1403,-1,1413,1381,1371,-1,1421,1035,1380,-1,1421,1153,1035,-1,964,1109,1125,-1,1109,964,1043,-1,1230,1239,1259,-1,1230,973,1239,-1,276,207,628,-1,276,95,207,-1,231,37,218,-1,51,37,231,-1,6,98,57,-1,6,32,98,-1,110,98,32,-1,98,110,258,-1,1253,688,897,-1,1253,1015,688,-1,543,1230,536,-1,973,1230,543,-1,570,533,450,-1,533,570,582,-1,533,924,538,-1,924,533,1033,-1,1110,1122,1218,-1,1110,960,1122,-1,1243,814,883,-1,1243,1091,814,-1,1243,1187,1091,-1,1442,1372,1398,-1,1442,1462,1372,-1,1272,1285,1374,-1,1186,1285,1272,-1,1312,1260,1223,-1,1146,1260,1312,-1,994,965,774,-1,994,1133,965,-1,1119,1032,1092,-1,1119,1077,1032,-1,1092,1167,1119,-1,1092,1101,1167,-1,1191,759,1188,-1,762,759,1191,-1,1058,752,769,-1,1058,956,752,-1,1437,1412,1351,-1,1412,1437,1471,-1,1466,1420,1456,-1,1466,1448,1420,-1,1111,1057,1173,-1,1111,1144,1057,-1,1354,1425,1455,-1,1425,1354,1320,-1,241,322,263,-1,241,268,322,-1,1163,1320,1354,-1,1320,1163,1171,-1,1307,1425,1274,-1,1307,1455,1425,-1,1242,1458,1457,-1,1242,1454,1458,-1,1036,760,1097,-1,1036,718,760,-1,756,916,893,-1,916,756,754,-1,1259,1101,1284,-1,1101,1259,1167,-1,1077,1084,1032,-1,1077,1204,1084,-1,1374,1295,1404,-1,1285,1295,1374,-1,1186,1137,1285,-1,1118,1137,1186,-1,1217,1243,1372,-1,1217,1187,1243,-1,1218,1361,1318,-1,1361,1218,1196,-1,1340,1196,1201,-1,1196,1340,1361,-1,899,561,542,-1,561,899,935,-1,458,533,538,-1,458,450,533,-1,450,404,418,-1,450,458,404,-1,1139,547,1015,-1,1139,608,547,-1,1118,959,678,-1,1118,1186,959,-1,890,907,944,-1,907,890,572,-1,496,258,110,-1,496,359,258,-1,663,989,1028,-1,634,989,663,-1,468,692,634,-1,585,692,468,-1,448,479,493,-1,444,479,448,-1,882,478,858,-1,478,882,514,-1,676,494,633,-1,676,479,494,-1,818,746,845,-1,746,818,748,-1,834,514,882,-1,517,514,834,-1,1066,602,1081,-1,1066,569,602,-1,602,1130,1081,-1,764,1130,602,-1,697,867,974,-1,867,697,660,-1,743,638,648,-1,743,745,638,-1,648,775,712,-1,648,820,775,-1,650,709,811,-1,650,697,709,-1,764,658,783,-1,764,602,658,-1,1135,1094,1029,-1,1135,1215,1094,-1,617,757,755,-1,649,757,617,-1,681,1051,1050,-1,681,901,1051,-1,1206,858,1211,-1,882,858,1206,-1,880,866,966,-1,801,866,880,-1,1085,1010,1105,-1,1010,1085,1030,-1,923,722,724,-1,722,923,939,-1,1055,917,1030,-1,923,917,1055,-1,929,1079,1046,-1,929,967,1079,-1,1140,1073,1149,-1,1079,1073,1140,-1,1282,1149,1152,-1,1149,1282,1281,-1,1344,1241,1305,-1,1282,1241,1344,-1,1305,1345,1342,-1,1305,1301,1345,-1,1382,1304,1315,-1,1304,1382,1393,-1,1446,1382,1418,-1,1382,1446,1429,-1,1460,1380,1441,-1,1460,1453,1380,-1,1106,570,580,-1,1106,1123,570,-1,1388,1456,1420,-1,1456,1388,1331,-1,1297,1399,1410,-1,1399,1297,1324,-1,1353,1267,1296,-1,1267,1353,1319,-1,1420,1353,1388,-1,1353,1420,1384,-1,1184,1437,1351,-1,1419,1437,1184,-1,1426,1047,1145,-1,1047,1426,1377,-1,1171,1178,1320,-1,1171,1005,1178,-1,931,789,778,-1,789,931,872,-1,1436,1253,1300,-1,1253,1436,1386,-1,35,53,41,-1,51,53,35,-1,89,306,127,-1,89,267,306,-1,226,314,267,-1,314,226,330,-1,597,596,607,-1,597,873,596,-1,717,873,597,-1,1441,1403,1447,-1,1441,1413,1403,-1,617,619,597,-1,627,619,617,-1,1363,1424,1329,-1,1363,1472,1424,-1,1215,1138,1247,-1,1215,1135,1138,-1,1105,1112,1231,-1,1014,1112,1105,-1,1028,1125,1185,-1,1125,1028,989,-1,704,802,836,-1,683,802,704,-1,1155,1049,1022,-1,1155,1098,1049,-1,1264,1098,1155,-1,1098,1264,1100,-1,1009,1291,1172,-1,1009,950,1291,-1,635,227,701,-1,635,192,227,-1,544,506,345,-1,506,544,623,-1,773,532,331,-1,773,921,532,-1,1445,1293,1383,-1,1445,1321,1293,-1,311,883,218,-1,1000,883,311,-1,309,136,116,-1,309,447,136,-1,276,32,95,-1,110,32,276,-1,1339,1074,1039,-1,1339,1326,1074,-1,525,1156,614,-1,525,1061,1156,-1,1367,1102,1451,-1,1367,1078,1102,-1,819,525,574,-1,819,1061,525,-1,1175,673,922,-1,1175,1195,673,-1,1154,1120,1195,-1,1154,1099,1120,-1,498,1041,1099,-1,498,539,1041,-1,587,903,828,-1,903,587,558,-1,268,269,298,-1,268,265,269,-1,325,107,347,-1,325,122,107,-1,236,274,410,-1,236,167,274,-1,667,1163,1132,-1,669,1163,667,-1,637,466,1005,-1,637,211,466,-1,312,611,601,-1,611,312,242,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getl4_Geo_5_169_normalIndex_12()
		{
			int[] value = {346,1067,1180,-1,346,339,1067,-1,266,250,346,-1,266,241,250,-1,307,306,356,-1,127,306,307,-1,1444,1410,1399,-1,1410,1444,1454,-1,893,1242,1225,-1,893,916,1242,-1,157,313,121,-1,304,313,157,-1,810,304,840,-1,810,313,304,-1,31,17,45,-1,3,17,31,-1,1258,1343,1250,-1,1314,1343,1258,-1,357,215,199,-1,308,215,357,-1,395,375,416,-1,395,271,375,-1,190,101,73,-1,101,190,186,-1,474,228,200,-1,591,228,474,-1,319,595,349,-1,319,553,595,-1,943,680,551,-1,943,936,680,-1,904,1038,1025,-1,898,1038,904,-1,581,175,484,-1,581,221,175,-1,1202,564,1048,-1,1202,1166,564,-1,1310,1148,1203,-1,1306,1148,1310,-1,128,11,90,-1,128,4,11,-1,695,548,659,-1,785,548,695,-1,584,739,589,-1,584,741,739,-1,842,1026,830,-1,842,1008,1026,-1,1002,1026,979,-1,1026,1002,1021,-1,986,592,620,-1,972,592,986,-1,988,816,844,-1,988,1002,816,-1,746,656,632,-1,748,656,746,-1,972,641,592,-1,641,972,963,-1,875,407,390,-1,875,905,407,-1,348,875,390,-1,875,348,714,-1,610,787,503,-1,815,787,610,-1,839,743,825,-1,839,745,743,-1,702,825,767,-1,702,652,825,-1,610,429,562,-1,503,429,610,-1,185,348,126,-1,348,185,373,-1,757,861,755,-1,861,757,826,-1,424,870,426,-1,424,575,870,-1,620,270,264,-1,270,620,592,-1,612,594,510,-1,594,612,677,-1,467,388,368,-1,443,388,467,-1,722,552,724,-1,541,552,722,-1,556,419,443,-1,419,556,552,-1,393,545,428,-1,393,509,545,-1,399,336,329,-1,336,399,393,-1,329,189,328,-1,191,189,329,-1,230,131,172,-1,131,230,189,-1,129,172,135,-1,129,181,172,-1,162,94,156,-1,81,94,162,-1,94,14,62,-1,48,14,94,-1,48,49,7,-1,49,48,2,-1,441,896,946,-1,441,394,896,-1,803,941,490,-1,941,803,1082,-1,1402,1174,1323,-1,1165,1174,1402,-1,621,740,629,-1,621,750,740,-1,15,86,55,-1,147,86,15,-1,77,164,66,-1,152,164,77,-1,209,123,169,-1,158,123,209,-1,123,55,86,-1,91,55,123,-1,31,289,125,-1,289,31,60,-1,442,52,344,-1,93,52,442,-1,296,304,157,-1,296,469,304,-1,1474,1349,1368,-1,1474,1334,1349,-1,1019,437,698,-1,437,1019,927,-1,703,927,1037,-1,927,703,573,-1,951,895,954,-1,951,482,895,-1,767,639,702,-1,767,672,639,-1,424,275,520,-1,424,235,275,-1,162,126,81,-1,162,185,126,-1,562,428,545,-1,428,562,429,-1,510,540,467,-1,540,510,594,-1,264,134,69,-1,134,264,270,-1,694,548,513,-1,659,548,694,-1,379,212,324,-1,374,212,379,-1,180,462,303,-1,180,523,462,-1,1245,841,838,-1,1245,1280,841,-1,970,933,1128,-1,854,933,970,-1,948,707,1147,-1,948,554,707,-1,179,30,92,-1,179,155,30,-1,591,1165,1256,-1,1165,591,474,-1,1341,1166,1360,-1,1341,1027,1166,-1,1440,1229,1375,-1,1229,1440,1364,-1,398,128,453,-1,398,150,128,-1,323,949,864,-1,323,411,949,-1,219,777,365,-1,219,512,777,-1,441,315,205,-1,441,551,315,-1,977,1227,1182,-1,1016,1227,977,-1,1227,788,805,-1,1170,788,1227,-1,1016,1170,1227,-1,978,1170,1016,-1,579,384,391,-1,647,384,579,-1,666,1336,993,-1,1115,1336,666,-1,82,61,220,-1,82,29,61,-1,1248,1337,1379,-1,1248,1278,1337,-1,68,392,85,-1,283,392,68,-1,1316,791,810,-1,1316,1271,791,-1,534,485,918,-1,401,485,534,-1,412,1127,300,-1,412,1150,1127,-1,1224,1209,1127,-1,1224,1232,1209,-1,1169,1168,1141,-1,1168,1169,1346,-1,66,34,77,-1,18,34,66,-1,125,318,63,-1,318,125,396,-1,49,254,28,-1,182,254,49,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getl4_Coord_6_169_point_1()
		{
			double[] value = {-0.5119,37.6668,-1.4527,-0.716,37.5978,-1.326,-0.6869,37.6359,-1.2943,-0.1108,36.6833,-2.6246,-0.0273,36.6809,-2.5943,-0.0232,36.705,-2.4966,-0.3855,37.2306,-1.942,-0.309,37.3179,-1.8482,-0.318,37.1885,-1.9848,-0.1177,36.6706,-2.7631,-0.1022,36.6643,-2.9114,-0.0294,36.6532,-2.7683,-0.0843,37.1457,-3.1568,-0.0202,37.1528,-3.1663,-0.0229,36.9507,-3.2028,-0.0118,37.4272,-2.4932,-0.0371,37.3966,-2.5059,-0.0153,37.4829,-2.3406,-0.0189,37.4846,-2.1864,-0.0598,37.3901,-2.2605,-0.1745,37.4324,-1.899,-0.1527,37.4498,-1.8884,-0.0529,37.466,-2.053,-0.4088,37.4629,-1.6731,-0.3714,37.3409,-1.7055,-0.3479,37.5032,-1.7131,-0.232,37.4921,-1.8061,-0.2919,37.4701,-1.7725,-0.2322,37.4248,-1.8045,-0.2495,37.4856,-1.814,-0.2671,37.422,-1.821,-0.2993,37.4601,-1.7841,-0.1794,37.4882,-1.8618,-0.4636,36.6146,-2.2071,-0.4974,36.4776,-2.1941,-0.5368,36.5993,-2.2327,-0.5413,36.8123,-2.1327,-0.5572,36.7052,-2.1995,-0.5854,36.7099,-2.2096,-0.5208,36.3354,-2.1396,-0.5667,36.4302,-2.2305,-0.5144,36.3349,-2.1438,-0.5767,36.591,-2.2467,-0.5954,36.7035,-2.202,-0.3889,36.373,-1.9561,-0.3949,36.3678,-1.9552,-0.3905,36.3652,-1.964,-0.4401,36.3937,-2.1569,-0.5605,36.4305,-2.2337,-0.6212,37.1007,-1.84,-0.5929,37.1212,-1.9387,-0.573,37.0027,-1.9883,-0.3197,36.7706,-1.9531,-0.3148,36.873,-1.9397,-0.3758,36.8551,-1.8746,-0.677,37.2207,-1.9538,-0.6521,37.2602,-2.1031,-0.5829,37.2406,-2.0361,-0.4815,37.0553,-2.0678,-0.5203,37.1542,-2.0491,-0.4376,37.1435,-2.0102,-0.6598,37.698,-2.2323,-0.6511,37.74,-2.1774,-0.6287,37.7026,-2.2385,-0.8535,37.0688,-2.0136,-0.844,37.0929,-2.0192,-0.8298,37.0787,-2.0082,-0.9742,36.9873,-1.7058,-0.9675,36.9969,-1.7127,-0.9586,36.9909,-1.6991,-0.9767,36.9932,-1.6869,-0.9725,36.9976,-1.6794,-0.9873,37.0051,-1.6912,-1.2673,36.9966,-1.8686,-1.1065,37.0073,-1.7847,-1.2713,36.998,-1.863,-1.0072,37.365,-1.7602,-1.0042,37.3662,-1.7698,-1.1456,37.3879,-1.8594,-0.9846,36.9917,-1.6944,-0.9693,36.9896,-1.6974,-0.9151,37.3666,-1.6408,-0.8888,37.3871,-1.5856,-0.9055,37.3782,-1.6404,-1.6201,37.2992,-2.0397,-1.5226,37.2648,-2.0357,-1.593,37.2096,-2.015,-1.0587,37.3204,-1.7572,-0.9496,37.3086,-1.638,-0.3233,37.465,-1.757,-0.3482,37.5062,-1.7215,-0.7582,37.383,-2.1141,-0.7225,37.2836,-2.1393,-0.7467,37.24,-2.0907,-0.7804,37.4279,-1.978,-0.7618,37.5127,-2.0139,-0.7698,37.4568,-2.0563,-0.787,37.4629,-1.8901,-0.7817,37.5826,-1.8174,-0.7637,37.5393,-1.9038,-0.4103,37.4467,-1.7758,-0.4274,37.3619,-1.7949,-0.4269,37.378,-1.8015,-0.5426,37.6888,-2.211,-0.5341,37.6885,-2.2002,-0.5246,37.6051,-2.2045,-0.4859,37.3453,-2.0328,-0.4959,37.4806,-2.1216,-0.4775,37.3654,-2.0296,-0.5508,37.5501,-1.4728,-0.5702,37.5285,-1.533,-0.6904,37.4846,-1.474,-0.514,37.5047,-1.5209,-0.5336,37.5394,-1.5354,-0.5194,37.5426,-1.479,-0.5131,37.4164,-1.5129,-0.527,37.5053,-1.54,-0.7898,37.4449,-1.4,-0.7984,37.4402,-1.4164,-0.8043,37.4454,-1.3429,-0.8333,37.4184,-1.438,-0.9456,36.6539,-1.1831,-1.0092,36.6167,-0.9938,-0.9501,36.6658,-1.1827,-0.4104,36.5693,-0.5338,-0.5017,36.5908,-0.5767,-0.3919,36.6373,-0.6212,-0.3442,37.6135,-1.4987,-0.3348,37.6227,-1.4924,-0.3354,37.6115,-1.4984,-0.4635,37.6219,-1.2742,-0.5426,37.6037,-1.1972,-0.3814,37.5679,-1.1265,-0.8304,37.4196,-1.2842,-0.8763,37.2622,-1.4115,-0.8522,37.2866,-1.3186,-0.8572,37.3527,-1.4229,-0.4051,37.017,-1.4155,-0.4516,37.1031,-1.4284,-0.4339,37.2061,-1.4606,-0.5058,37.0028,-1.3737,-0.6066,36.9886,-1.332,-0.6218,37.0508,-1.3771,-0.8501,37.0433,-1.8744,-0.6995,37.0893,-1.8136,-0.808,37.014,-1.7315,-0.5024,37.5251,-1.6124,-0.5358,37.5414,-1.6019,-0.5343,37.5362,-1.5701,-0.5266,37.4305,-1.552,-0.5174,37.3017,-1.6178,-0.5145,37.4354,-1.5916,-0.4658,37.3103,-1.4911,-0.5137,37.3067,-1.519,-0.4018,37.5767,-1.498,-0.3832,37.4463,-1.4937,-0.4356,37.4412,-1.4982,-0.5059,37.5048,-2.2553,-0.4984,37.4798,-2.1372,-0.4862,37.4827,-1.7995,-0.5236,37.4651,-1.8798,-0.5323,37.6031,-1.8093,-0.6707,37.3601,-2.2465,-0.6223,37.3735,-2.2719,-0.6151,37.2952,-2.1608,-0.7669,37.5497,-2.1018,-0.7593,37.4857,-2.1346,-0.5839,37.6966,-2.2334,-0.6067,37.743,-2.1785,-0.5568,37.7484,-2.1823,-0.5873,37.6849,-2.2462,-0.5375,36.8655,-1.4136,-0.6376,36.8495,-1.3677,-0.2043,37.0701,-1.441,-0.2254,36.8816,-1.4524,-0.5842,36.9552,-1.8694,-0.58,36.8735,-1.897,-0.522,36.8433,-1.8171,-0.492,36.7193,-1.8502,-0.4685,36.5919,-1.8911,-0.4059,36.7154,-1.8311,-0.6103,36.7515,-2.0226,-0.6024,36.6518,-2.1378,-0.5802,36.7154,-1.9452,-0.1449,36.8926,-2.7415,-0.1567,36.8272,-2.7698,-0.1653,36.8402,-2.6084,-0.1222,36.9841,-2.8887,-0.1112,36.9437,-3.01,-0.1385,36.9279,-2.8925,-0.276,37.041,-2.1623,-0.2825,36.9002,-2.2407,-0.3681,37.0463,-2.0512,-0.3294,37.3654,-1.7424,-0.3494,37.2536,-1.7363,-0.4912,37.4436,-1.6287,-0.4489,37.583,-1.6491,-0.4085,37.3264,-1.4771,-0.6773,37.0372,-1.7098,-0.6076,37.0145,-1.7328,-0.6761,37.1042,-1.5867,-0.1103,36.7216,-2.5148,-0.1448,36.7166,-2.631,-0.5721,37.632,-2.3165,-0.6395,37.8109,-2.1062,-0.5298,37.8516,-1.7336,-0.4974,37.8197,-1.7091,-0.5202,37.7484,-1.7671,-0.8608,37.0424,-1.9751,-0.8786,37.0469,-1.9753,-0.8787,37.0575,-1.9997,-0.3504,36.5326,-2.1703,-0.2377,36.6622,-2.1454,-0.3319,36.5027,-2.0901,-0.8143,36.677,-1.2905,-0.9001,36.6219,-1.1649,-0.5285,37.2641,-2.0457,-0.5703,37.1364,-2.0244,-0.8452,36.9698,-1.1466,-0.969,36.7599,-0.9833,-0.8584,36.9231,-0.9869,-0.754,36.6846,-0.508,-0.8775,36.6982,-0.6762,-0.91,36.6035,-0.6547,-0.7208,37.4834,-1.5231,-0.8677,37.4002,-1.5333,-0.3479,37.5751,-1.0519,-0.3438,37.5846,-1.1474,-0.344,37.5994,-0.5259,-0.3522,37.5769,-0.691,-0.5068,37.6003,-0.6114,-0.3424,37.6308,-1.3049,0.0,37.5955,-1.184,0.0,37.6155,-1.2961,-0.1788,37.6426,-1.2973,-0.1621,37.6574,-1.4073,-0.3258,37.667,-1.4164,-0.4209,36.5492,-0.364,-0.5693,36.6641,-0.84,-0.4893,36.6424,-0.7229,-0.5768,36.5939,-0.6506,-0.1887,36.6418,-0.6007,-0.2023,36.713,-0.9854,-0.4237,36.7418,-1.0836,-0.1846,36.7156,-1.0905,-0.4991,36.7358,-1.1609,-0.4257,36.7355,-1.1903,-0.7667,36.6492,-1.2514,-0.6771,36.6666,-1.1292,-0.2507,36.714,-1.4245,-0.2276,36.6976,-1.3121,-0.4299,36.7281,-1.3181,-0.2058,36.7235,-1.4518,0.0,36.721,-1.4611,0.0,36.6858,-1.4217,-0.5529,37.0835,-1.4015,-0.5688,37.1378,-1.4545,-0.4992,37.1785,-1.4709,-0.7981,37.073,-1.5602,-0.7915,37.0749,-1.4692,-0.9341,37.09,-1.5107,-0.3971,36.8835,-1.4425,-0.4073,36.7568,-1.4664,-0.5139,36.7666,-1.4636,-0.7908,36.9768,-1.2642,-0.7982,36.8103,-1.2623,-0.5203,37.336,-2.1225,-0.5393,37.3924,-2.264,-0.4734,37.3382,-1.9609,-0.4887,37.2838,-2.0135,-0.4833,37.3412,-2.019,-0.5221,37.5844,-2.2049,-0.5473,37.7365,-2.1793,-0.5278,37.6132,-2.1569,-0.5441,37.622,-2.03,-0.5534,37.7546,-2.0453,-0.5647,37.7579,-1.9395,-0.569,37.7841,-1.8553,-0.5427,37.7197,-1.6655,-0.541,37.5766,-1.6548,-0.6763,37.0579,-1.7754,-1.0417,37.0289,-1.7869,-0.9332,37.0645,-1.8756,-0.9987,36.9932,-1.7257,-0.6626,37.1642,-1.8643,-0.6982,37.3272,-2.1879,-0.7168,37.4519,-2.2895,-0.7349,37.2111,-2.0411,-0.8159,37.1759,-2.0353,-1.1805,37.0866,-1.9065,-1.1269,37.3181,-1.8897,-1.2794,37.3637,-1.9417,-1.0089,37.3027,-1.855,-0.9336,37.1137,-1.9891,-0.9447,37.2395,-1.9656,-0.8731,37.2874,-2.0076,-0.7304,37.7542,-1.8367,-0.7357,37.7448,-1.9655,-0.7403,37.6158,-1.9176,-0.5843,37.5393,-1.6027,-0.6379,37.5723,-1.6563,-0.7951,37.4742,-1.6256,-0.7165,37.6617,-1.7624,-0.7352,37.591,-1.71,-0.7071,37.7586,-1.783,-0.6399,37.7384,-1.7192,-0.6123,37.7918,-1.7272,-1.5361,37.3328,-1.9543,-1.4987,37.4018,-1.9721,-1.5729,37.3987,-2.0018,-1.4393,37.431,-1.9818,-1.3347,37.3829,-1.8967,-1.2821,37.4043,-1.9212,-1.3765,37.3065,-1.8922,-1.2351,37.29,-1.8181,-1.2815,37.1524,-1.8257,-1.4227,37.1919,-1.8809,-1.034,37.11,-1.6587,-1.1031,37.0107,-1.7716,-0.3351,36.6603,-2.2497,-0.2808,36.7255,-2.3236,-0.4472,37.1035,-1.7147,-0.5564,36.9581,-1.7672,-0.4548,36.9887,-1.7751,-0.212,37.211,-1.8663,-0.2774,37.0333,-1.8912,-0.1484,37.072,-1.9995,-0.2369,36.7801,-2.0219,-0.32,36.6514,-1.9737,-0.1215,36.976,-2.1552,0.0,37.1001,-2.1224,-0.1061,36.8349,-2.2892,0.0,36.9827,-2.2356,-0.1657,36.8338,-2.1751,-0.373,36.5093,-1.9833,-0.3524,36.506,-2.0367,-0.3587,36.7441,-1.8916,-0.3873,36.5825,-1.8665,-0.3668,36.5964,-1.925,0.0,37.4497,-1.9605,0.0,37.4832,-2.0675,0.0,37.4339,-2.4862,0.0,37.4149,-2.6919,-0.0102,37.4164,-2.6914,0.0,37.381,-2.8521,-0.0955,36.7611,-3.048,-0.146,36.7184,-2.9314,-0.1444,37.01,-2.7067,-0.3625,36.7771,-2.2407,-0.3022,36.7791,-2.3262,-0.587,36.8776,-2.0339,-0.5957,36.5606,-2.1782,-0.5828,36.5891,-2.2429,0.855,37.5312,-1.1918,0.8304,37.4196,-1.2842,0.8043,37.4454,-1.3429,0.0294,36.6532,-2.7683,0.0242,36.6605,-2.9211,0.1022,36.6643,-2.9114,0.0153,37.4829,-2.3406,0.0371,37.3966,-2.5059,0.0118,37.4272,-2.4932,0.0598,37.3901,-2.2605,0.0189,37.4846,-2.1864,0.0529,37.466,-2.053,0.1527,37.4498,-1.8884,0.1745,37.4324,-1.899,0.3479,37.5032,-1.7131,0.3714,37.3409,-1.7055,0.4088,37.4629,-1.6731,0.2322,37.4248,-1.8045,0.2919,37.4701,-1.7725,0.232,37.4921,-1.8061,0.2993,37.4601,-1.7841,0.2671,37.422,-1.821,0.2495,37.4856,-1.814,0.1916,37.478,-1.8681,0.5572,36.7052,-2.1995,0.4689,36.7162,-2.2148,0.4799,36.8269,-2.1566,0.5413,36.8123,-2.1327,0.5967,36.8138,-2.1346,0.5854,36.7099,-2.2096,0.5817,36.8937,-2.0348,0.5412,37.0408,-2.022,0.573,37.0027,-1.9883,0.5144,36.3349,-2.1438,0.5605,36.4305,-2.2337,0.5667,36.4302,-2.2305,0.5828,36.5891,-2.2429,0.5767,36.591,-2.2467,0.587,36.8776,-2.0339,0.5807,36.8814,-2.0441,0.4401,36.3937,-2.1569,0.4974,36.4776,-2.1941,0.3583,36.4079,-2.106,0.3524,36.506,-2.0367,0.3319,36.5027,-2.0901,0.7387,37.1415,-1.8614,0.8501,37.0433,-1.8744,0.6995,37.0893,-1.8136,0.3758,36.8551,-1.8746,0.3148,36.873,-1.9397,0.3197,36.7706,-1.9531,0.4376,37.1435,-2.0102,0.4887,37.2838,-2.0135,0.5285,37.2641,-2.0457,0.5203,37.1542,-2.0491,0.4815,37.0553,-2.0678,0.3681,37.0463,-2.0512,0.4487,37.2945,-1.93,0.4711,37.3309,-1.8973,0.4734,37.3382,-1.9609,0.8929,37.4152,-1.7964,0.9083,37.3783,-1.6466,0.994,37.3741,-1.7618,0.8298,37.0787,-2.0082,0.8535,37.0688,-2.0136,0.846,37.0635,-2.0039,0.9586,36.9909,-1.6991,0.9742,36.9873,-1.7058,0.9693,36.9896,-1.6974,0.9873,37.0051,-1.6912,0.9767,36.9932,-1.6869,0.9846,36.9917,-1.6944,1.1106,37.0109,-1.7769,1.1065,37.0073,-1.7847,1.2673,36.9966,-1.8686,1.6087,37.3846,-2.0288,1.6102,37.3748,-2.0383,1.5134,37.435,-2.0229,1.0042,37.3662,-1.7698,1.0072,37.365,-1.7602,1.1507,37.3893,-1.8521,0.9151,37.3666,-1.6408,0.9055,37.3782,-1.6404,1.593,37.2096,-2.015,1.5226,37.2648,-2.0357,1.6201,37.2992,-2.0397,1.0587,37.3204,-1.7572,0.3482,37.5062,-1.7215,0.3125,37.4774,-1.747,0.7467,37.24,-2.0907,0.7225,37.2836,-2.1393,0.7582,37.383,-2.1141,0.7698,37.4568,-2.0563,0.7618,37.5127,-2.0139,0.7804,37.4279,-1.978,0.7637,37.5393,-1.9038,0.7817,37.5826,-1.8174,0.787,37.4629,-1.8901,0.4269,37.378,-1.8015,0.4274,37.3619,-1.7949,0.4103,37.4467,-1.7758,0.5246,37.6051,-2.2045,0.5341,37.6885,-2.2002,0.5426,37.6888,-2.211,0.4775,37.3654,-2.0296,0.4959,37.4806,-2.1216,0.4984,37.4798,-2.1372,0.6904,37.4846,-1.474,0.5702,37.5285,-1.533,0.5508,37.5501,-1.4728,0.4685,37.5304,-1.4891,0.5194,37.5426,-1.479,0.5336,37.5394,-1.5354,0.514,37.5047,-1.5209,0.5266,37.4305,-1.552,0.5131,37.4164,-1.5129,0.7141,37.4709,-1.4462,0.7256,37.4704,-1.4645,0.7898,37.4449,-1.4,0.8333,37.4184,-1.438,0.8003,37.4383,-1.4343,0.7984,37.4402,-1.4164,1.0142,36.6255,-0.9943,1.0092,36.6167,-0.9938,0.9456,36.6539,-1.1831,0.8453,37.5358,-1.2057,0.8518,37.5444,-1.1908,1.5164,37.4386,-2.0144,1.5729,37.3987,-2.0018,0.4051,37.017,-1.4155,0.3681,37.2332,-1.4519,0.4339,37.2061,-1.4606,0.6218,37.0508,-1.3771,0.5529,37.0835,-1.4015,0.5688,37.1378,-1.4545,0.6066,36.9886,-1.332,0.5058,37.0028,-1.3737,0.808,37.014,-1.7315,0.7208,37.4834,-1.5231,0.7549,37.4722,-1.5747,0.5843,37.5393,-1.6027,0.5024,37.5251,-1.6124,0.5228,37.524,-1.5777,0.5343,37.5362,-1.5701,0.5174,37.3017,-1.6178,0.5195,37.3216,-1.5687,0.4658,37.3103,-1.4911,0.4356,37.4412,-1.4982,0.3832,37.4463,-1.4937,0.4018,37.5767,-1.498,0.392,36.9082,-2.1421,0.4817,36.8958,-2.0952,0.5203,37.336,-2.1225,0.4859,37.3453,-2.0328,0.5441,37.622,-2.03,0.5261,37.4789,-1.9878,0.5236,37.4651,-1.8798,0.4989,37.5006,-2.1348,0.5278,37.6132,-2.1569,0.5457,37.561,-2.3214,0.6408,37.4792,-2.3298,0.5369,37.4863,-2.3062,0.7669,37.5497,-2.1018,0.7593,37.4857,-2.1346,0.5839,37.6966,-2.2334,0.5568,37.741,-2.1865,0.5568,37.7484,-2.1823,0.5873,37.6849,-2.2462,0.5721,37.632,-2.3165,0.4992,37.1785,-1.4709,0.4516,37.1031,-1.4284,0.522,36.8433,-1.8171,0.58,36.8735,-1.897,0.5842,36.9552,-1.8694,0.4059,36.7154,-1.8311,0.3944,36.582,-1.8633,0.492,36.7193,-1.8502,0.5802,36.7154,-1.9452,0.5704,36.5775,-1.9835,0.6103,36.7515,-2.0226,0.1653,36.8402,-2.6084,0.1567,36.8272,-2.7698,0.1449,36.8926,-2.7415,0.318,37.1885,-1.9848,0.3855,37.2306,-1.942,0.1385,36.9279,-2.8925,0.1112,36.9437,-3.01,0.1222,36.9841,-2.8887,0.276,37.041,-2.1623,0.3494,37.2536,-1.7363,0.3294,37.3654,-1.7424,0.4085,37.3264,-1.4771,0.6761,37.1042,-1.5867,0.6024,37.1104,-1.6232,0.6076,37.0145,-1.7328,0.2377,36.6622,-2.1454,0.2808,36.7255,-2.3236,0.3504,36.5326,-2.1703,0.6287,37.7026,-2.2385,0.5985,37.6928,-2.234,0.5955,37.8395,-2.0995,0.6395,37.8109,-2.1062,0.6067,37.743,-2.1785,0.7667,36.6492,-1.2514,0.8143,36.677,-1.2905,0.5829,37.2406,-2.0361,0.5703,37.1364,-2.0244,0.8522,37.2866,-1.3186,0.8306,37.3887,-1.1735,0.8203,37.2628,-1.1565,0.8407,37.3938,-0.9753,0.969,36.7599,-0.9833,0.9042,36.8091,-1.1779,0.8452,36.9698,-1.1466,0.91,36.6035,-0.6547,0.8775,36.6982,-0.6762,0.754,36.6846,-0.508,0.8677,37.4002,-1.5333,0.7103,37.5703,-0.6392,0.8368,37.5265,-0.787,0.7913,37.5821,-0.7645,0.3479,37.5751,-1.0519,0.4742,37.5682,-1.0286,0.3814,37.5679,-1.1265,0.6383,37.589,-0.7685,0.4179,37.5712,-0.7697,0.5999,37.5904,-0.6782,0.4635,37.6219,-1.2742,0.3424,37.6308,-1.3049,0.1751,37.6025,-1.1796,0.3258,37.667,-1.4164,0.1621,37.6574,-1.4073,0.4104,36.5693,-0.5338,0.5017,36.5908,-0.5767,0.4209,36.5492,-0.364,0.6667,36.5979,-0.7742,0.5768,36.5939,-0.6506,0.4893,36.6424,-0.7229,0.2016,36.5729,-0.4618,0.1887,36.6418,-0.6007,0.3919,36.6373,-0.6212,0.4237,36.7418,-1.0836,0.4313,36.7181,-0.9784,0.2023,36.713,-0.9854,0.557,36.7228,-1.0767,0.4257,36.7355,-1.1903,0.6771,36.6666,-1.1292,0.9001,36.6219,-1.1649,0.6241,36.6845,-1.3462,0.2507,36.714,-1.4245,0.4319,36.707,-1.4191,0.4299,36.7281,-1.3181,0.2058,36.7235,-1.4518,0.9341,37.09,-1.5107,0.7915,37.0749,-1.4692,0.7981,37.073,-1.5602,0.5375,36.8655,-1.4136,0.3971,36.8835,-1.4425,0.5139,36.7666,-1.4636,0.7982,36.8103,-1.2623,0.5393,37.3924,-2.264,0.5059,37.5048,-2.2553,0.4833,37.3412,-2.019,0.5469,37.7526,-2.1131,0.5824,37.8297,-2.1016,0.549,37.7501,-2.1719,0.5558,37.6205,-1.9166,0.5323,37.6031,-1.8093,0.5427,37.7197,-1.6655,0.6399,37.7384,-1.7192,0.6123,37.7918,-1.7272,0.6773,37.0372,-1.7098,0.9675,36.9969,-1.7127,1.0417,37.0289,-1.7869,0.7349,37.2111,-2.0411,0.7813,37.1416,-2.0086,0.677,37.2207,-1.9538,0.6626,37.1642,-1.8643,0.7168,37.4519,-2.2895,0.7401,37.4083,-2.1678,0.6982,37.3272,-2.1879,0.8159,37.1759,-2.0353,0.9332,37.0645,-1.8756,1.058,37.109,-1.9078,1.1805,37.0866,-1.9065,1.1269,37.3181,-1.8897,1.1456,37.3879,-1.8594,1.2792,37.4019,-1.9287,1.0089,37.3027,-1.855,0.9233,37.3642,-1.8703,1.0368,37.2209,-1.9296,0.8749,37.3777,-1.8957,0.6755,37.8312,-1.9801,0.7357,37.7448,-1.9655,0.7509,37.7043,-2.0795,0.7304,37.7542,-1.8367,0.7561,37.6486,-1.8305,0.7403,37.6158,-1.9176,0.7951,37.4742,-1.6256,0.6701,37.6495,-1.7057,0.6379,37.5723,-1.6563,0.7352,37.591,-1.71,1.4987,37.4018,-1.9721,1.5361,37.3328,-1.9543,1.2821,37.4043,-1.9212,1.4393,37.431,-1.9818,1.2098,37.3597,-1.8399,1.2351,37.29,-1.8181,1.3765,37.3065,-1.8922,1.2815,37.1524,-1.8257,1.2713,36.998,-1.863,1.4321,37.0924,-1.934,1.1031,37.0107,-1.7716,1.034,37.11,-1.6587,0.3351,36.6603,-2.2497,0.2153,36.8297,-2.4677,0.3022,36.7791,-2.3262,0.1408,36.7908,-2.4848,0.5093,37.1374,-1.6585,0.0,37.1228,-2.0297,0.1484,37.072,-1.9995,0.0,37.1587,-1.9649,0.274,36.6354,-2.0019,0.32,36.6514,-1.9737,0.0185,36.7885,-2.3942,0.023,36.7885,-2.3662,0.0,36.794,-2.3693,0.3668,36.5964,-1.925,0.3873,36.5825,-1.8665,0.3919,36.7208,-1.8356,0.2304,37.3167,-1.9242,0.2613,37.1974,-2.0379,0.0102,37.4164,-2.6914,0.0121,37.3788,-2.8583,0.0843,37.1457,-3.1568,0.1074,36.9362,-3.0958,0.0893,36.9342,-3.1805,0.1444,37.01,-2.7067,0.3625,36.7771,-2.2407,0.2825,36.9002,-2.2407,0.4636,36.6146,-2.2071,0.3687,36.4361,-2.1515,0.5368,36.5993,-2.2327,0.4465,36.8374,-1.8088,0.4548,36.9887,-1.7751,0.4294,36.8384,-1.8147,0.6212,37.1007,-1.84,0.6763,37.0579,-1.7754,0.5873,36.9678,-1.8659,0.5564,36.9581,-1.7672,0.5844,36.9622,-1.8616,0.5177,36.8884,-2.069,0.3661,37.011,-1.8331,0.1137,36.8289,-3.0185,0.1177,36.6706,-2.7631,0.1524,36.7231,-2.7737,0.1448,36.7166,-2.631,0.0229,36.9507,-3.2028,0.0,36.7538,-3.0617,0.0,36.954,-3.2034,0.0095,37.3373,-3.0081,0.0,37.1531,-3.169,0.0,37.3395,-3.0052,0.1158,37.3685,-2.12,0.3587,36.7441,-1.8916,0.2203,36.9083,-1.9868,0.2774,37.0333,-1.8912,0.2369,36.7801,-2.0219,0.1061,36.8349,-2.2892,0.2176,36.7414,-2.3396,0.1215,36.976,-2.1552,0.1657,36.8338,-2.1751,0.212,37.211,-1.8663,0.1112,37.1845,-1.9348,0.4472,37.1035,-1.7147,0.9763,37.2352,-1.641,0.9066,37.2381,-1.5042,1.1121,37.2683,-1.7494,1.3347,37.3829,-1.8967,1.6052,37.3577,-2.0058,0.7071,37.7586,-1.783,0.7165,37.6617,-1.7624,0.8278,37.5209,-1.8027,0.9447,37.2395,-1.9656,0.7763,37.3578,-2.0603,0.8731,37.2874,-2.0076,0.9336,37.1137,-1.9891,1.2794,37.3637,-1.9417,1.436,37.4293,-1.9903,1.4287,37.3999,-2.0152,0.6521,37.2602,-2.1031,0.6151,37.2952,-2.1608,0.541,37.5766,-1.6548,0.5358,37.5414,-1.6019,0.4489,37.583,-1.6491,0.5202,37.7484,-1.7671,0.569,37.7841,-1.8553,0.5647,37.7579,-1.9395,0.6376,36.8495,-1.3677,0.7908,36.9768,-1.2642,0.4073,36.7568,-1.4664,0.2051,36.7354,-1.457,0.5975,37.1384,-1.5957,0.6571,37.1021,-1.5102,0.2254,36.8816,-1.4524,0.0,36.7333,-1.4651,0.4084,36.7449,-1.4618,0.5843,36.7112,-0.9744,0.6907,36.6097,-0.8546,0.5693,36.6641,-0.84,0.4023,36.6571,-0.7157,0.1788,37.6426,-1.2973,0.0,37.6534,-1.3883,0.3513,37.5809,-0.7731,0.3522,37.5769,-0.691,0.612,37.5778,-0.526,0.6264,37.5135,-0.505,0.7447,37.5207,-0.6339,0.0,37.6258,-1.4539,0.6281,37.4993,-0.5047,0.711,37.3805,-0.6624,0.7457,37.5069,-0.6337,0.8148,37.3906,-0.8232,0.713,37.184,-0.6946,0.8105,37.0693,-0.9933,0.819,37.1191,-1.1585,0.8308,37.0599,-1.2366,0.8672,37.1333,-1.3345,0.4004,36.3713,-2.0983,0.373,36.5093,-1.9833,0.4523,37.694,-1.6821,0.4974,37.8197,-1.7091,0.7505,37.6722,-2.1526,0.6511,37.74,-2.1774,0.527,37.5053,-1.54,0.4673,37.5951,-1.7508,0.3729,37.5664,-1.7057,0.3931,37.3418,-1.7992,0.5706,36.5005,-2.034,0.4683,36.4709,-1.9418,0.2043,37.0701,-1.441,0.1878,37.2606,-1.4483,0.7491,37.6308,-2.2195,0.6434,37.597,-2.3217,0.6598,37.698,-2.2323,0.5315,37.6033,-2.2172,0.4862,37.4827,-1.7995,0.396,37.5011,-1.7608,0.5315,37.618,-2.093,0.5235,37.1954,-1.59,0.5119,37.1903,-1.6454,0.5137,37.3067,-1.519,0.522,37.2022,-1.524,0.4912,37.4436,-1.6287,0.484,37.3123,-1.6568,0.5145,37.4354,-1.5916,0.7849,37.0769,-1.3782,0.5748,37.5286,-1.5662,0.5929,37.1212,-1.9387,0.4997,37.6513,-1.4639,0.5119,37.6668,-1.4527,0.5168,37.6545,-1.4598,0.194,37.503,-0.2983,0.0,37.4907,-0.2917,0.1941,37.4885,-0.2961,0.9501,36.6658,-1.1827,0.7929,37.4437,-1.4594,0.76,37.4596,-1.4788,0.5221,37.5844,-2.2049,0.4656,37.3543,-1.9604,0.4671,37.3485,-1.9008,0.5102,37.4822,-2.0592,0.6217,37.7403,-2.1789,0.844,37.0929,-2.0192,0.8926,37.0673,-2.0001,0.5833,37.1491,-1.5206,0.3812,36.4755,-1.8969,0.5851,36.965,-1.8748,0.0819,37.4496,-1.9367,0.3233,37.465,-1.757,0.273,37.2149,-1.802,0.0,37.4888,-2.3307,0.0,36.6858,-2.5877,0.0273,36.6809,-2.5943,0.0232,36.705,-2.4966,0.1123,36.7803,-2.3581,0.0207,36.802,-2.3537,0.0415,37.3469,-2.8767,0.0351,37.3874,-2.6888,-0.5817,36.8937,-2.0348,-0.5412,37.0408,-2.022,-0.5177,36.8884,-2.069,-0.4294,36.8384,-1.8147,-0.4799,36.8269,-2.1566,-0.4817,36.8958,-2.0952,-0.392,36.9082,-2.1421,-0.1528,36.827,-2.9154,-0.1137,36.8289,-3.0185,-0.1074,36.9362,-3.0958,-0.1408,36.7908,-2.4848,-0.0095,37.3373,-3.0081,-0.1158,37.3685,-2.12,-0.2304,37.3167,-1.9242,-0.3812,36.4755,-1.8969,-0.2203,36.9083,-1.9868,-0.2176,36.7414,-2.3396,-0.0207,36.802,-2.3537,-0.4466,36.3207,-2.0585,-0.4004,36.3713,-2.0983,-0.9763,37.2352,-1.641,-1.1121,37.2683,-1.7494,-1.1106,37.0109,-1.7769,-1.1452,37.1184,-1.7371,-1.6087,37.3846,-2.0288,-1.6052,37.3577,-2.0058,-0.9083,37.3783,-1.6466,-0.8278,37.5209,-1.8027,-0.8929,37.4152,-1.7964,-0.8749,37.3777,-1.8957,-0.9233,37.3642,-1.8703,-0.7763,37.3578,-2.0603,-1.058,37.109,-1.9078,-1.0368,37.2209,-1.9296,-1.1617,37.229,-1.9282,-1.4287,37.3999,-2.0152,-1.2792,37.4019,-1.9287,-1.5134,37.435,-2.0229,-1.436,37.4293,-1.9903,-0.7387,37.1415,-1.8614,-0.5011,37.8203,-1.7024,-0.4568,37.6982,-1.6751,-0.4673,37.5951,-1.7508,-0.5102,37.4822,-2.0592,-0.5975,37.1384,-1.5957,-0.6571,37.1021,-1.5102,0.0,36.9067,-1.4265,-0.2051,36.7354,-1.457,-0.4319,36.707,-1.4191,-0.1685,37.619,-1.4704,-0.855,37.5312,-1.1918,-0.8306,37.3887,-1.1735,-0.9438,36.7449,-0.8363,-0.5129,37.4894,-0.4182,-0.3852,37.3629,-0.3922,-0.3921,37.503,-0.3618,-0.7457,37.5069,-0.6337,-0.6306,37.3676,-0.5411,-0.6281,37.4993,-0.5047,-0.8148,37.3906,-0.8232,-0.7665,37.1985,-0.8386,-0.713,37.184,-0.6946,-0.8001,37.2157,-0.973,-0.7936,37.0555,-0.8403,-0.819,37.1191,-1.1585,-0.8203,37.2628,-1.1565,-1.1507,37.3893,-1.8521,-1.2098,37.3597,-1.8399,-0.9481,36.5935,-0.9841,-0.3583,36.4079,-2.106,-0.5992,37.8771,-1.9563,-0.6095,37.8818,-1.8518,-0.4523,37.694,-1.6821,-0.7505,37.6722,-2.1526,-0.7509,37.7043,-2.0795,-0.6511,37.8017,-2.1058,-0.6024,37.1104,-1.6232,-0.3312,37.4495,-1.4883,-0.3681,37.2332,-1.4519,-0.3497,37.3414,-1.4701,-0.5228,37.524,-1.5777,-0.3729,37.5664,-1.7057,-0.3931,37.3418,-1.7992,-0.0415,37.3469,-2.8767,-0.0671,37.3036,-3.0151,-0.0816,37.2674,-2.9192,-0.4689,36.7162,-2.2148,-0.4683,36.4709,-1.9418,-0.5704,36.5775,-1.9835,-0.5706,36.5005,-2.034,0.0,37.0896,-1.4355,-0.1878,37.2606,-1.4483,-0.7283,37.5418,-2.2816,-0.7491,37.6308,-2.2195,-0.6434,37.597,-2.3217,-0.5315,37.6033,-2.2172,-0.5457,37.561,-2.3214,-0.396,37.5011,-1.7608,-0.5315,37.618,-2.093,-0.4989,37.5006,-2.1348,-0.5195,37.3216,-1.5687,-0.5235,37.1954,-1.59,-0.522,37.2022,-1.524,-0.484,37.3123,-1.6568,-0.8672,37.1333,-1.3345,-0.9007,37.1116,-1.4226,-0.5168,37.6545,-1.4598,-0.4997,37.6513,-1.4639,-0.1941,37.4885,-0.2961,-0.194,37.503,-0.2983,-0.8184,36.6873,-1.2931,-0.7567,37.456,-1.3845,-0.6601,37.4859,-1.425,-0.7113,37.469,-1.4285,-0.7191,37.4666,-1.4049,-0.76,37.4596,-1.4788,-0.8003,37.4383,-1.4343,-0.7929,37.4437,-1.4594,-0.4685,37.5304,-1.4891,-0.5853,37.8366,-2.0959,-0.5824,37.8297,-2.1016,-0.5955,37.8395,-2.0995,-0.4656,37.3543,-1.9604,-0.4671,37.3485,-1.9008,-0.5261,37.4789,-1.9878,-0.5985,37.6928,-2.234,-0.6217,37.7403,-2.1789,-0.7565,37.5987,-2.0475,-1.6146,37.3748,-2.031,-1.6102,37.3748,-2.0383,-1.5164,37.4386,-2.0144,-0.8926,37.0673,-2.0001,-0.4487,37.2945,-1.93,-0.3661,37.011,-1.8331,-0.274,36.6354,-2.0019,-0.5873,36.9678,-1.8659,-0.5851,36.965,-1.8748,-0.5807,36.8814,-2.0441,-0.5967,36.8138,-2.1346,-0.0819,37.4496,-1.9367,-0.5093,37.1374,-1.6585,-0.5119,37.1903,-1.6454,-0.273,37.2149,-1.802,-0.0121,37.3788,-2.8583,0.0,36.7072,-2.4788,-0.1123,36.7803,-2.3581,-0.023,36.7885,-2.3662,-0.0351,37.3874,-2.6888,-0.8453,37.5358,-1.2057,-0.0266,36.746,-2.4338,-0.4649,37.204,-1.6868,-0.4465,36.8374,-1.8088,-0.5844,36.9622,-1.8616,-0.3687,36.4361,-2.1515,-0.5833,37.1491,-1.5206,-0.994,37.3741,-1.7618,-0.8913,37.3205,-1.5177,-0.4711,37.3309,-1.8973};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getl4_Coord_6_169_point_2()
		{
			double[] value = {-0.7401,37.4678,-1.4746,-0.779,37.45,-1.3905,0.0,37.5039,-0.2961,-0.7273,37.4101,-1.449,-0.734,37.4088,-1.4537,-0.7433,37.4051,-1.4557,-0.7571,37.3982,-1.419,-0.7521,37.4006,-1.4146,-0.7418,37.4034,-1.4118,-0.6926,37.0433,-1.3473,-0.7549,37.4722,-1.5747,-0.5748,37.5286,-1.5662,-0.7849,37.0769,-1.3782,-0.6469,37.7926,-2.1221,-0.5854,37.8735,-1.7951,-0.8308,37.0599,-1.2366,-0.8407,37.3938,-0.9753,-0.8105,37.0693,-0.9933,-0.711,37.3805,-0.6624,-0.5072,37.3615,-0.4641,-0.978,36.6097,-0.8348,-0.7179,37.5857,-1.3339,-0.4179,37.5712,-0.7697,-0.3513,37.5809,-0.7731,-0.4023,36.6571,-0.7157,-0.6667,36.5979,-0.7742,-0.6907,36.6097,-0.8546,-0.5764,36.7078,-1.2582,-0.4676,36.7277,-1.314,-0.4084,36.7449,-1.4618,-0.7813,37.1416,-2.0086,-0.7401,37.4083,-2.1678,-0.5369,37.4863,-2.3062,-0.5558,37.6205,-1.9166,-0.6701,37.6495,-1.7057,-1.5038,37.3958,-2.0309,-0.9066,37.2381,-1.5042,-0.1112,37.1845,-1.9348,-0.3919,36.7208,-1.8356,-0.0271,36.7559,-3.0578,-0.4634,36.389,-1.9833,-0.4534,36.3214,-2.054,0.6601,37.4859,-1.425,0.1103,36.7216,-2.5148,0.0266,36.746,-2.4338,0.4649,37.204,-1.6868,0.309,37.3179,-1.8482,0.8787,37.0575,-1.9997,1.6146,37.3748,-2.031,0.8572,37.3527,-1.4229,0.8913,37.3205,-1.5177,0.9496,37.3086,-1.638,0.7565,37.5987,-2.0475,0.5853,37.8366,-2.0959,0.7401,37.4678,-1.4746,0.779,37.45,-1.3905,0.7567,37.456,-1.3845,0.7191,37.4666,-1.4049,0.7113,37.469,-1.4285,0.8184,36.6873,-1.2931,0.3442,37.6135,-1.4987,0.7433,37.4051,-1.4557,0.734,37.4088,-1.4537,0.7273,37.4101,-1.449,0.7418,37.4034,-1.4118,0.7521,37.4006,-1.4146,0.7571,37.3982,-1.419,0.6926,37.0433,-1.3473,0.9007,37.1116,-1.4226,0.6223,37.3735,-2.2719,0.7283,37.5418,-2.2816,0.4685,36.5919,-1.8911,0.0816,37.2674,-2.9192,0.0671,37.3036,-3.0151,0.6469,37.7926,-2.1221,0.5298,37.8516,-1.7336,0.5854,37.8735,-1.7951,0.9481,36.5935,-0.9841,0.8001,37.2157,-0.973,0.8584,36.9231,-0.9869,0.7665,37.1985,-0.8386,0.6306,37.3676,-0.5411,0.7179,37.5857,-1.3339,0.1685,37.619,-1.4704,0.7111,36.6349,-1.0032,0.4991,36.7358,-1.1609,0.4676,36.7277,-1.314,0.5764,36.7078,-1.2582,0.4568,37.6982,-1.6751,0.5011,37.8203,-1.7024,1.5038,37.3958,-2.0309,1.1617,37.229,-1.9282,1.1452,37.1184,-1.7371,0.4466,36.3207,-2.0585,0.3905,36.3652,-1.964,0.3889,36.373,-1.9561,0.0202,37.1528,-3.1663,0.0271,36.7559,-3.0578,0.1108,36.6833,-2.6246,0.1528,36.827,-2.9154,0.2078,36.9806,-2.3917,0.3949,36.3678,-1.9552,0.4534,36.3214,-2.054,0.4634,36.389,-1.9833,0.146,36.7184,-2.9314,0.0955,36.7611,-3.048,1.4227,37.1919,-1.8809,1.6145,37.2819,-1.9981,1.5981,37.2102,-2.0075,1.6264,37.3032,-2.0327,0.6707,37.3601,-2.2465,0.9987,36.9932,-1.7257,0.5534,37.7546,-2.0453,0.5473,37.7365,-2.1793,0.7798,37.0376,-1.3114,0.2276,36.6976,-1.3121,0.1846,36.7156,-1.0905,0.5807,36.5557,-0.4245,0.3438,37.5846,-1.1474,0.6869,37.6359,-1.2943,0.5275,37.685,-1.4171,0.7692,36.5818,-0.4923,0.8786,37.514,-0.9786,0.8786,37.0469,-1.9753,0.8608,37.0424,-1.9751,0.4483,37.6846,-1.6733,0.3731,37.5642,-1.6965,0.6024,36.6518,-2.1378,0.6385,37.0972,-1.4381,0.5426,37.6037,-1.1972,0.3354,37.6115,-1.4984,0.3348,37.6227,-1.4924,0.8888,37.3871,-1.5856,1.621,37.3036,-2.0402,0.9725,36.9976,-1.6794,0.5954,36.7035,-2.202,0.5208,36.3354,-2.1396,0.1794,37.4882,-1.8618,0.716,37.5978,-1.326,-0.5793,36.4567,-2.1612,-0.2153,36.8297,-2.4677,-0.0893,36.9342,-3.1805,-0.2613,37.1974,-2.0379,-0.0185,36.7885,-2.3942,-1.4321,37.0924,-1.934,-1.6264,37.3032,-2.0327,-1.5981,37.2102,-2.0075,-1.6145,37.2819,-1.9981,-0.652,37.8184,-1.7852,-0.7561,37.6486,-1.8305,-0.6755,37.8312,-1.9801,-0.549,37.7501,-2.1719,-0.5469,37.7526,-2.1131,-0.9042,36.8091,-1.1779,-0.7798,37.0376,-1.3114,-0.557,36.7228,-1.0767,-0.4313,36.7181,-0.9784,-0.2016,36.5729,-0.4618,-0.5807,36.5557,-0.4245,-0.1751,37.6025,-1.1796,-0.4233,37.5984,-0.5623,-0.5999,37.5904,-0.6782,-0.6383,37.589,-0.7685,-0.4742,37.5682,-1.0286,-0.5275,37.685,-1.4171,-0.7692,36.5818,-0.4923,-0.3731,37.5642,-1.6965,-0.4483,37.6846,-1.6733,-0.3944,36.582,-1.8633,-0.5568,37.741,-2.1865,-0.6408,37.4792,-2.3298,-0.8518,37.5444,-1.1908,-1.0142,36.6255,-0.9943,-0.7256,37.4704,-1.4645,-0.7141,37.4709,-1.4462,-0.3125,37.4774,-1.747,-1.621,37.3036,-2.0402,-0.846,37.0635,-2.0039,-0.1916,37.478,-1.8681,-0.0242,36.6605,-2.9211,0.0,36.7499,-2.4053,0.0,37.4897,-2.1738,-0.0836,37.3086,-2.5387,-0.1012,37.2807,-2.3284,-0.0965,37.3173,-1.929,0.0,37.3044,-1.9559,-0.3868,36.4744,-1.8939,-0.8582,37.0382,-1.9528,-0.8924,37.047,-1.9533,-0.9078,37.0497,-1.9268,-0.908,37.0809,-1.9987,-0.8335,37.1202,-2.0279,-0.9907,36.9854,-1.7127,-0.5339,37.8524,-1.7287,-0.5909,37.8743,-1.7928,-0.7243,37.4083,-1.4213,-0.7515,37.4316,-1.3987,-0.7248,37.4391,-1.4132,-0.7397,37.4399,-1.4628,-0.7293,37.4418,-1.4556,-0.7612,37.396,-1.4266,-0.7824,37.419,-1.4341,-0.7811,37.4203,-1.4214,-0.762,37.3951,-1.435,-0.775,37.4237,-1.4097,-0.7673,37.4273,-1.403,-0.7212,37.4422,-1.4426,-0.7192,37.4408,-1.43,-0.7538,37.4341,-1.4658,-0.7772,37.4228,-1.452,-0.6691,36.7385,-1.4012,-0.6651,36.7275,-1.3992,-0.7656,36.5719,-0.4965,-0.6147,36.5857,-0.3855,-0.6122,36.5751,-0.3903,-0.6264,37.5135,-0.505,-0.512,37.5034,-0.4181,-0.8759,37.5266,-0.9778,-0.8786,37.514,-0.9786,-0.1691,37.6076,-1.4768,0.0,37.2726,-1.4319,-0.1104,37.1417,-2.8303,-0.1241,37.1358,-2.6435,-0.1395,37.1395,-2.4339,-1.5155,37.3229,-2.042,-0.8496,36.9025,-0.8415,-0.7226,37.0457,-0.684,-0.6297,37.175,-0.5514,-0.5877,36.6602,-0.3916,-0.7005,36.8377,-0.532,-0.5555,36.8208,-0.4304,-0.3883,36.9977,-0.3732,-0.403,36.8021,-0.3513,-0.5307,37.0033,-0.4484,-0.3782,37.181,-0.3967,-0.2091,36.9958,-0.3109,-0.1927,37.1749,-0.3191,0.0,37.3366,-0.3002,-0.2027,37.3454,-0.3204,0.0,37.1653,-0.3094,0.0,36.5915,-0.2377,-0.1998,36.6619,-0.2572,-0.2181,36.5877,-0.2552,0.0,36.6737,-0.2496,-0.7071,36.5475,-0.5308,-0.813,37.5955,-0.9647,-0.7868,37.627,-1.1626,-0.612,37.5778,-0.526,-0.498,37.5806,-0.4441,-0.4727,37.5617,-0.9333,-0.6291,37.5826,-0.9496,-0.1749,37.5696,-0.6324,-0.1733,37.5941,-0.4538,-0.1714,37.5819,-1.0586,0.0,37.5867,-1.059,-0.7103,37.5703,-0.6392,-0.7913,37.5821,-0.7645,-0.2047,36.5518,-0.3142,-0.2031,36.6841,-0.8205,-0.1929,36.6556,-0.7296,-0.4064,36.6883,-0.8377,0.0,36.6741,-0.8391,0.0,36.6514,-0.7124,0.0,36.6924,-1.1721,-0.2337,36.7177,-1.1883,0.0,36.6988,-1.0664,-0.973,36.6001,-0.8369,-0.8941,36.573,-0.8426,-0.514,36.7031,-1.3948,-0.6241,36.6845,-1.3462,-1.4184,37.3154,-2.0141,-1.2953,37.259,-1.9642,-1.4671,37.2262,-2.0114,-1.3191,37.1536,-1.9497,-0.6475,37.8082,-2.1,-0.6175,37.8833,-1.8522,-0.6812,37.8277,-1.8561,-0.0995,37.1362,-2.9877,-0.6064,36.8061,-2.1257,0.0836,37.3086,-2.5387,0.1012,37.2807,-2.3284,0.0965,37.3173,-1.929,0.3868,36.4744,-1.8939,0.6064,36.8061,-2.1257,0.8552,37.0363,-1.9261,0.8116,37.0985,-2.011,0.8582,37.0382,-1.9528,0.8335,37.1202,-2.0279,1.5651,37.1608,-1.9906,1.5687,37.1622,-1.9844,1.4285,37.0917,-1.9397,0.5339,37.8524,-1.7287,0.5909,37.8743,-1.7928,0.7515,37.4316,-1.3987,0.7243,37.4083,-1.4213,0.7248,37.4391,-1.4132,0.7397,37.4399,-1.4628,0.7293,37.4418,-1.4556,0.7824,37.419,-1.4341,0.7612,37.396,-1.4266,0.7811,37.4203,-1.4214,0.762,37.3951,-1.435,0.775,37.4237,-1.4097,0.7673,37.4273,-1.403,0.7212,37.4422,-1.4426,0.7192,37.4408,-1.43,0.7538,37.4341,-1.4658,0.7772,37.4228,-1.452,0.5141,36.7547,-1.4603,0.973,36.6001,-0.8369,0.978,36.6097,-0.8348,0.9058,36.5942,-0.6558,0.2181,36.5877,-0.2552,0.4336,36.5724,-0.3276,0.4359,36.5837,-0.3224,0.2165,36.577,-0.2616,0.3921,37.503,-0.3618,0.3918,37.5176,-0.3631,0.8394,37.5131,-0.7876,0.1678,37.5612,-0.9376,0.3519,37.5671,-0.9385,0.1714,37.5819,-1.0586,0.3497,37.3414,-1.4701,0.5957,36.5606,-2.1782,0.1104,37.1417,-2.8303,0.1241,37.1358,-2.6435,0.1395,37.1395,-2.4339,0.0,36.6533,-2.7709,0.0,36.6594,-2.924,0.6095,37.8818,-1.8518,1.4671,37.2262,-2.0114,0.7936,37.0555,-0.8403,0.8496,36.9025,-0.8415,0.7226,37.0457,-0.684,0.6297,37.175,-0.5514,0.5129,37.4894,-0.4182,0.5072,37.3615,-0.4641,0.7005,36.8377,-0.532,0.5877,36.6602,-0.3916,0.5555,36.8208,-0.4304,0.3883,36.9977,-0.3732,0.403,36.8021,-0.3513,0.5307,37.0033,-0.4484,0.2091,36.9958,-0.3109,0.3782,37.181,-0.3967,0.1927,37.1749,-0.3191,0.2027,37.3454,-0.3204,0.1998,36.6619,-0.2572,0.9438,36.7449,-0.8363,0.6122,36.5751,-0.3903,0.7071,36.5475,-0.5308,0.7656,36.5719,-0.4965,0.813,37.5955,-0.9647,0.7868,37.627,-1.1626,0.8759,37.5266,-0.9778,0.1983,37.5836,-0.3304,0.3862,37.5817,-0.3831,0.1749,37.5696,-0.6324,0.344,37.5994,-0.5259,0.1733,37.5941,-0.4538,0.5068,37.6003,-0.6114,0.498,37.5806,-0.4441,0.4233,37.5984,-0.5623,0.2047,36.5518,-0.3142,0.2031,36.6841,-0.8205,0.1929,36.6556,-0.7296,0.4064,36.6883,-0.8377,0.2337,36.7177,-1.1883,0.8941,36.573,-0.8426,0.0,36.686,-1.2778,0.514,36.7031,-1.3948,0.8763,37.2622,-1.4115,0.6691,36.7385,-1.4012,1.5155,37.3229,-2.042,1.4184,37.3154,-2.0141,1.3191,37.1536,-1.9497,0.6175,37.8833,-1.8522,0.6812,37.8277,-1.8561,0.6074,37.8798,-1.9572,0.652,37.8184,-1.7852,0.1625,37.2574,-2.1888,1.5755,37.2494,-1.9593,1.2953,37.259,-1.9642,0.6651,36.7275,-1.3992,0.0,36.6925,-0.9534,0.0,36.5889,-0.4662,0.0,36.634,-0.5727,0.0,36.5464,-0.3165,0.6243,37.5876,-1.0833,0.0,37.5849,-0.4482,0.0,37.5634,-0.5933,0.1779,37.5714,-0.7651,0.4727,37.5617,-0.9333,0.0,37.5804,-0.3292,0.4372,36.6494,-0.3298,0.0,36.9774,-0.3067,0.2139,36.8094,-0.2862,0.3852,37.3629,-0.3922,0.517,37.1707,-0.463,0.6567,37.0208,-0.5518,0.5992,37.8771,-1.9563,0.0761,37.2913,-2.7255,0.0995,37.1362,-2.9877,0.1887,37.1174,-2.3013,0.1673,37.4486,-1.4759,0.0,37.4551,-1.4765,0.7586,37.3977,-1.4466,0.7206,37.4094,-1.4322,0.7219,37.4103,-1.4405,0.0,37.5644,-0.9336,0.512,37.5034,-0.4181,0.6147,36.5857,-0.3855,0.908,37.0809,-1.9987,0.8924,37.047,-1.9533,0.2526,37.3199,-1.8033,0.1823,37.3304,-1.8773,-0.2526,37.3199,-1.8033,-0.2078,36.9806,-2.3917,-0.1524,36.7231,-2.7737,-1.5687,37.1622,-1.9844,-1.5755,37.2494,-1.9593,-0.6074,37.8798,-1.9572,-1.4285,37.0917,-1.9397,-1.5651,37.1608,-1.9906,-0.7111,36.6349,-1.0032,-0.5843,36.7112,-0.9744,-0.6243,37.5876,-1.0833,-0.1983,37.5836,-0.3304,0.0,37.562,-0.7574,-0.1678,37.5612,-0.9376,-0.1779,37.5714,-0.7651,-0.3918,37.5176,-0.3631,-0.3862,37.5817,-0.3831,-0.8368,37.5265,-0.787,-0.4336,36.5724,-0.3276,0.0,36.7951,-0.2918,-0.2139,36.8094,-0.2862,-0.517,37.1707,-0.463,-0.6567,37.0208,-0.5518,-0.1823,37.3304,-1.8773,-0.1625,37.2574,-2.1888,-0.1887,37.1174,-2.3013,-0.168,37.0039,-2.5339,-0.5562,36.4059,-2.0794,-0.6385,37.0972,-1.4381,-0.7206,37.4094,-1.4322,-0.7586,37.3977,-1.4466,-0.7219,37.4103,-1.4405,-0.8394,37.5131,-0.7876,-0.4359,36.5837,-0.3224,-0.8552,37.0363,-1.9261,-0.0761,37.2913,-2.7255,-0.8116,37.0985,-2.011,-0.5141,36.7547,-1.4603,-0.9058,36.5942,-0.6558,-0.2165,36.577,-0.2616,0.0,36.5801,-0.2447,-0.7447,37.5207,-0.6339,0.0,37.6154,-1.4615,-0.3519,37.5671,-0.9385,-0.1673,37.4486,-1.4759,-0.7947,36.8565,-0.6901,-0.4372,36.6494,-0.3298,-0.8293,36.5662,-0.6862,0.6511,37.8017,-2.1058,0.6475,37.8082,-2.1,0.9078,37.0497,-1.9268,0.9907,36.9854,-1.7127,0.1691,37.6076,-1.4768,0.3312,37.4495,-1.4883,0.5562,36.4059,-2.0794,0.5793,36.4567,-2.1612,0.168,37.0039,-2.5339,0.7947,36.8565,-0.6901,0.8293,36.5662,-0.6862,0.6291,37.5826,-0.9496};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_170_vector_1()
		{
			double[] value = {-0.9992,0.0004,-0.0392,-0.9988,0.0081,-0.0491,-0.9979,-0.0522,0.0382,-0.9979,0.0605,-0.0242,-0.9976,0.0496,-0.0485,-0.9975,-0.071,-0.0065,-0.9973,0.0074,-0.0724,-0.9945,-0.1022,0.0224,-0.9935,0.0607,-0.0965,-0.9933,-0.0945,-0.0668,-0.9915,0.1219,-0.0462,-0.9914,0.103,0.0812,-0.9908,-0.1086,-0.0811,-0.9904,0.0091,-0.1377,-0.9902,-0.065,0.1236,-0.99,-0.0965,-0.103,-0.9892,0.0611,0.1335,-0.9887,0.1254,-0.0822,-0.9886,0.1263,-0.0824,-0.9884,-0.07,0.1348,-0.9882,0.153,0.0073,-0.9882,-0.0417,-0.1474,-0.9881,0.1475,-0.0434,-0.9877,-0.0279,0.1539,-0.9871,0.0913,-0.1313,-0.9869,-0.0237,-0.1599,-0.9867,0.1619,0.0165,-0.9864,0.1197,-0.113,-0.9845,0.1515,-0.0882,-0.984,-0.1374,-0.1137,-0.9839,0.1655,-0.0674,-0.9827,0.046,-0.1795,-0.9825,0.0761,-0.17,-0.9818,0.1594,-0.1035,-0.9817,0.1779,-0.0679,-0.9815,0.1398,0.1309,-0.9813,0.1742,-0.0821,-0.9796,0.2009,0.0093,-0.979,0.1987,0.0457,-0.9776,0.0758,0.1961,-0.9767,-0.0562,-0.2071,-0.9764,0.1785,0.1215,-0.9749,-0.0308,-0.2205,-0.9735,0.196,0.1182,-0.9715,-0.1275,-0.2,-0.9709,0.2236,-0.0859,-0.9707,0.2309,-0.0668,-0.969,0.1369,-0.2058,-0.9684,-0.2444,0.0504,-0.9665,0.0911,-0.2399,-0.966,-0.2584,0.0122,-0.965,0.2466,0.0896,-0.965,-0.211,0.1561,-0.9642,0.2643,0.0219,-0.9639,-0.2305,-0.1331,-0.963,0.1961,-0.1849,-0.9622,0.0308,-0.2706,-0.9598,0.2677,0.0843,-0.959,0.1531,0.2386,-0.9575,0.1994,-0.2086,-0.9568,-0.0633,-0.2836,-0.9567,-0.2907,-0.0152,-0.9554,-0.04,0.2926,-0.9535,-0.3013,0.0043,-0.9535,0.1982,-0.227,-0.9533,-0.2148,-0.2123,-0.9532,0.3009,-0.0294,-0.9528,0.1525,-0.2626,-0.9508,0.2828,-0.1265,-0.9506,-0.142,0.2762,-0.9491,-0.2494,0.1925,-0.9471,0.2541,-0.1963,-0.9464,0.2859,0.1506,-0.9463,0.3179,0.059,-0.9444,0.2791,-0.1738,-0.9422,0.2601,0.2112,-0.9411,-0.103,0.322,-0.939,0.3398,-0.0529,-0.9372,0.3486,0.0072,-0.936,0.3511,-0.0241,-0.9325,0.2283,0.2799,-0.9299,-0.0612,0.3626,-0.9299,0.1068,-0.352,-0.9296,0.365,-0.0514,-0.9295,0.2532,-0.268,-0.9272,0.2787,-0.2503,-0.9262,0.2395,-0.2912,-0.9235,-0.1057,-0.3688,-0.9222,-0.2151,-0.3215,-0.9216,-0.0636,0.3828,-0.9215,0.3725,-0.1096,-0.9215,0.3453,-0.178,-0.9211,0.1634,0.3535,-0.9195,-0.2982,0.2559,-0.9188,-0.2399,0.3134,-0.9185,0.2789,-0.2802,-0.9183,0.1872,0.3488,-0.9179,-0.36,0.167,-0.9151,0.3447,-0.2093,-0.9141,0.4053,0.0105,-0.9139,-0.2321,-0.3329,-0.9131,0.3724,0.166,-0.9126,-0.0436,0.4064,-0.9122,-0.1671,0.3742,-0.9069,0.2737,0.3202,-0.9064,-0.4217,0.0233,-0.9064,0.2086,-0.3674,-0.9043,-0.37,0.2132,-0.9022,-0.4312,0.0126,-0.8997,0.4348,-0.0389,-0.899,0.0565,-0.4342,-0.8977,0.284,0.3369,-0.8972,0.4378,0.0581,-0.8965,0.41,-0.1678,-0.892,0.3616,-0.2714,-0.8917,0.4404,0.1044,-0.8887,0.428,-0.1644,-0.8873,0.3228,-0.3294,-0.887,0.0013,0.4618,-0.8866,-0.4481,0.1148,-0.8862,0.1424,-0.4409,-0.883,-0.2724,0.3824,-0.8812,-0.3913,-0.2654,-0.8781,0.3691,-0.3044,-0.8781,0.4595,-0.1338,-0.878,-0.3834,-0.2866,-0.8743,0.3632,0.3219,-0.8704,-0.0776,0.4862,-0.8702,0.4238,-0.2513,-0.869,0.3851,0.3106,-0.868,0.1305,-0.479,-0.8676,0.1992,0.4556,-0.8673,-0.2989,0.398,-0.8657,0.1633,-0.4732,-0.8624,-0.0361,0.505,-0.8615,0.4242,0.279,-0.8594,0.5028,-0.0933,-0.8592,-0.5109,-0.0267,-0.8583,-0.2244,0.4615,-0.8578,0.0049,-0.514,-0.8571,-0.3834,-0.344,-0.853,-0.0744,-0.5165,-0.8503,-0.3758,0.3686,-0.8491,-0.2357,0.4727,-0.8477,-0.034,0.5294,-0.8457,0.013,-0.5334,-0.8436,0.457,-0.2821,-0.8428,-0.2275,-0.4878,-0.8406,-0.0276,0.5409,-0.8403,0.0204,-0.5417,-0.8382,0.3302,-0.434,-0.8361,0.4396,-0.3281,-0.8345,0.5465,-0.0702,-0.8288,0.1983,-0.5232,-0.8283,0.5545,-0.0803,-0.827,0.562,-0.0112,-0.8262,-0.2097,0.5229,-0.8257,-0.4636,0.3212,-0.8206,0.4791,-0.3115,-0.8199,-0.2141,0.5309,-0.8174,0.4596,-0.3473,-0.8155,-0.2489,0.5224,-0.809,-0.1116,0.577,-0.8055,0.5674,-0.171,-0.8054,0.5889,-0.0671,-0.8031,-0.4462,0.3949,-0.803,0.4948,-0.3323,-0.8028,-0.5956,0.0265,-0.8018,0.2719,0.5322,-0.7988,0.3739,-0.4713,-0.7985,0.3211,-0.5092,-0.7971,-0.0022,-0.6038,-0.7967,0.3715,0.4768,-0.7933,0.3363,-0.5075,-0.787,0.3611,-0.5003,-0.783,0.075,-0.6175,-0.7826,-0.4738,-0.4039,-0.7745,0.2094,0.5969,-0.7727,0.5786,-0.261,-0.77,0.5607,0.3043,-0.7662,0.2479,-0.5928,-0.763,0.4054,0.5035,-0.7618,0.3712,-0.5309,-0.759,0.3637,0.54,-0.7584,0.6351,0.1465,-0.7579,0.2902,0.5842,-0.756,0.3969,0.5205,-0.7525,0.6277,0.1994,-0.7471,-0.5264,0.4058,-0.7471,0.1831,0.639,-0.7461,0.3623,0.5587,-0.7454,0.0524,0.6646,-0.7442,0.6609,0.0971,-0.744,0.5956,-0.3029,-0.743,0.5656,0.3578,-0.7408,0.6697,0.0518,-0.7398,-0.3533,0.5726,-0.7374,-0.1332,0.6621,-0.7357,-0.0792,0.6726,-0.7348,0.218,0.6423,-0.7329,0.6641,0.148,-0.7305,-0.1191,0.6724,-0.7303,-0.4262,-0.5339,-0.7276,-0.1615,-0.6667,-0.7255,-0.3069,0.616,-0.7255,-0.6166,0.3057,-0.7247,0.0231,-0.6886,-0.7237,0.5293,-0.4429,-0.723,0.5816,-0.3728,-0.7226,0.5245,-0.4503,-0.7211,0.5761,-0.385,-0.7196,-0.6687,0.187,-0.7191,0.2017,0.6649,-0.7167,0.2515,0.6504,-0.7086,0.6703,0.2203,-0.6987,-0.1324,0.703,-0.6984,-0.1533,0.6991,-0.6983,0.3899,-0.6003,-0.6978,0.7135,-0.063,-0.6971,0.7163,-0.0301,-0.6954,-0.5238,-0.492,-0.6934,-0.2814,-0.6633,-0.6926,0.582,-0.4261,-0.6901,0.7232,0.0276,-0.6877,-0.0212,-0.7257,-0.6874,-0.5049,0.5221,-0.684,-0.0767,0.7255,-0.6825,0.6537,-0.3269,-0.6807,0.7169,-0.1507,-0.6805,0.3407,-0.6487,-0.6802,0.2953,0.6709,-0.6785,0.6842,-0.2674,-0.6726,-0.4867,0.5574,-0.671,-0.0465,0.74,-0.6692,-0.2416,-0.7027,-0.6684,0.3589,-0.6514,-0.6681,-0.6956,-0.2641,-0.6673,0.5427,-0.5101,-0.6671,0.7199,-0.1913,-0.6646,-0.7353,-0.1325,-0.6642,0.4025,-0.6299,-0.6631,-0.111,0.7403,-0.6628,-0.0556,0.7467,-0.6623,-0.1582,0.7323,-0.6612,-0.5591,0.5003,-0.6596,-0.2516,0.7083,-0.6576,0.7008,0.2763,-0.6576,-0.5333,-0.5321,-0.6549,0.5424,0.5262,-0.6547,-0.2278,-0.7207,-0.6527,-0.0412,0.7565,-0.6525,-0.2616,0.7112,-0.6518,0.6849,0.3257,-0.6505,0.2967,0.6991,-0.6493,0.7102,-0.2721,-0.6489,0.0849,-0.7561,-0.6486,0.734,-0.2016,-0.6484,0.2385,0.723,-0.6478,0.3234,-0.6898,-0.6361,0.2273,-0.7374,-0.6345,0.1705,0.7539,-0.6335,0.6566,-0.4093,-0.6333,-0.5552,-0.5392,-0.6307,-0.0709,0.7728,-0.6301,-0.7646,0.1355,-0.6292,-0.2457,0.7374,-0.6279,-0.0865,0.7735,-0.6272,-0.1294,0.768,-0.623,-0.2487,0.7416,-0.6216,-0.3195,0.7153,-0.6215,-0.7131,0.3245,-0.6202,-0.052,0.7827,-0.6181,0.4169,0.6664,-0.6145,0.4208,-0.6673,-0.6132,-0.3756,-0.695,-0.6118,0.6092,-0.5045,-0.6067,0.3071,-0.7332,-0.6065,0.6469,-0.4622,-0.6056,0.3148,-0.7309,-0.6054,0.7769,-0.1729,-0.6035,-0.4051,-0.6868,-0.6033,-0.5217,-0.6032,-0.6019,0.154,-0.7836,-0.6005,0.5686,-0.5622,-0.5991,0.346,-0.7221,-0.5974,0.8005,-0.0485,-0.597,0.7335,-0.3249,-0.5951,0.3073,-0.7426,-0.5924,0.6318,0.4999,-0.5922,-0.5292,-0.6077,-0.5921,-0.0759,-0.8023,-0.5917,-0.2295,-0.7728,-0.5909,0.2247,0.7749,-0.5901,-0.5914,-0.5496,-0.5871,0.792,-0.1673,-0.5869,-0.5269,0.6147,-0.5828,-0.8102,-0.0622,-0.5788,0.795,0.1815,-0.5783,-0.3069,0.7559,-0.5783,-0.2709,-0.7695,-0.5759,0.5453,-0.6091,-0.5737,0.8064,-0.1436,-0.5736,0.2395,-0.7833,-0.5731,0.7427,-0.3463,-0.5705,-0.5179,0.6374,-0.5691,-0.6101,-0.5513,-0.5681,-0.1433,0.8104,-0.5674,-0.4527,0.6879,-0.5667,-0.1567,0.8089,-0.5654,0.3809,0.7316,-0.5649,-0.6275,0.5359,-0.5634,0.8255,-0.0347,-0.5628,-0.059,0.8245,-0.559,-0.3709,0.7416,-0.5579,-0.1213,0.821,-0.5565,-0.7436,0.3706,-0.5547,-0.7106,0.4329,-0.5546,0.7799,-0.2902,-0.5514,-0.8334,0.0361,-0.5504,0.3363,-0.7642,-0.5501,-0.8348,0.0227,-0.5495,0.6219,0.5579,-0.5489,-0.1907,0.8138,-0.5468,-0.6686,0.504,-0.5459,0.7188,0.4305,-0.5458,-0.8269,-0.1355,-0.5415,-0.8362,-0.0872,-0.5404,-0.6239,-0.5646,-0.539,0.1364,0.8312,-0.5319,0.0781,0.8432,-0.5297,-0.0434,0.8471,-0.5285,0.5739,0.6255,-0.5279,0.7708,0.3568,-0.524,0.3939,-0.7552,-0.5236,0.3218,0.7889,-0.5197,0.7251,-0.4519,-0.5156,-0.1618,0.8414,-0.5156,-0.6274,-0.5836,-0.5115,-0.1258,0.85,-0.511,0.8588,-0.036,-0.5076,0.1845,0.8416,-0.5041,0.6154,0.606,-0.5029,0.435,-0.7469,-0.501,-0.4622,-0.7317,-0.4983,-0.3067,0.811,-0.4981,0.6045,-0.6216,-0.4969,0.7972,0.3429,-0.4968,-0.7978,0.3415,-0.4958,0.8316,0.2503,-0.4953,0.7024,-0.5111,-0.4905,0.0409,-0.8705,-0.49,-0.3126,0.8137,-0.487,-0.0421,-0.8724,-0.4868,0.2222,0.8448,-0.4852,-0.54,-0.6877,-0.4825,0.8755,-0.0272,-0.4821,-0.377,0.7909,-0.4794,0.3322,0.8123,-0.4709,0.5029,0.7248,-0.4706,0.2973,-0.8308,-0.4656,-0.7564,0.4595,-0.4635,0.8859,0.0201,-0.4631,0.3021,-0.8332,-0.4631,-0.6786,-0.5702,-0.4625,0.58,0.6706,-0.4614,0.3279,-0.8244,-0.4601,-0.3915,-0.7969,-0.4569,0.7612,0.4603,-0.4565,-0.1167,0.882,-0.4558,-0.3271,0.8278,-0.4547,-0.2882,-0.8427,-0.4527,-0.27,-0.8498,-0.4519,0.4811,0.7512,-0.4514,0.8113,0.3716,-0.4504,0.269,0.8514,-0.4488,-0.0794,0.8901,-0.4476,-0.8715,-0.2003,-0.4473,-0.0949,0.8894,-0.447,0.8217,0.3535,-0.4468,0.7445,0.4961,-0.4454,-0.6743,0.589,-0.4408,-0.5619,-0.6999,-0.44,0.468,-0.7664,-0.4343,-0.7662,0.4737,-0.4341,0.6582,-0.6151,-0.4326,-0.8807,0.1931,-0.4322,-0.715,0.5496,-0.4321,-0.1081,-0.8953,-0.4291,0.2525,0.8672,-0.4222,-0.7788,-0.464,-0.4204,0.9019,0.0988,-0.4194,0.7431,-0.5215,-0.4178,0.6437,-0.6411,-0.4177,-0.1366,0.8982,-0.4167,-0.4845,-0.7692,-0.4138,0.2732,0.8684,-0.4121,-0.8725,-0.2624,-0.4106,0.2663,0.872,-0.4091,0.6816,-0.6067,-0.4087,0.0528,0.9112,-0.4071,-0.4499,-0.7949,-0.4058,0.4999,-0.7651,-0.404,-0.0375,0.914,-0.4,-0.7887,-0.4669,-0.3985,0.2256,-0.889,-0.3984,-0.3395,0.8521,-0.3978,0.8921,0.2145,-0.3956,0.9165,-0.0601,-0.3944,0.6048,-0.6918,-0.3931,-0.6908,0.6069,-0.3926,-0.5271,-0.7537,-0.3895,-0.9175,-0.08,-0.3881,0.5384,-0.748,-0.3877,0.1341,0.912,-0.3861,0.484,-0.7853,-0.3832,-0.7135,0.5866,-0.3806,0.2637,0.8863,-0.3804,0.9004,-0.2112,-0.3782,0.357,-0.8541,-0.3747,0.1676,0.9119,-0.3734,0.5837,-0.721,-0.3732,0.8007,-0.4686,-0.3708,-0.8235,-0.4295,-0.3687,0.1919,0.9095,-0.3683,0.4179,-0.8305,-0.3682,0.6021,-0.7085,-0.3676,0.6853,-0.6287,-0.3672,0.9237,0.1093,-0.3649,-0.0548,0.9294,-0.362,0.2128,0.9076,-0.3595,-0.8862,-0.2923,-0.3593,0.6246,-0.6933,-0.3586,0.6992,-0.6185,-0.3555,-0.1507,-0.9224,-0.3553,-0.1485,-0.9229,-0.3526,-0.8436,0.405,-0.3509,-0.9196,-0.1765,-0.3508,-0.9086,-0.2265,-0.3481,0.8101,0.4719,-0.3476,0.9289,-0.1279,-0.3472,0.3397,-0.8741,-0.347,-0.7345,-0.5831,-0.344,-0.5995,0.7227,-0.3419,0.1612,0.9258,-0.3414,-0.9262,-0.16,-0.3409,-0.6959,-0.632,-0.3383,0.7709,0.5397,-0.3374,0.5939,0.7304,-0.3372,-0.9402,-0.0473,-0.3365,0.4508,-0.8268,-0.3363,-0.0525,-0.9403,-0.3339,0.9311,0.1466,-0.3311,0.9003,-0.2825,-0.3292,0.7473,-0.5772,-0.3274,-0.6641,-0.6722,-0.3273,-0.3293,0.8857,-0.3272,0.1167,-0.9377,-0.3253,-0.9409,-0.0942,-0.3216,-0.0242,-0.9466,-0.3211,-0.9469,0.0184,-0.3207,-0.6832,-0.656,-0.3201,-0.7148,0.6218,-0.3186,0.8171,-0.4804,-0.3182,0.9443,-0.0845,-0.3181,0.6735,0.6672,-0.317,0.8214,0.4742,-0.3167,-0.9448,-0.0835,-0.3158,-0.1769,0.9322,-0.314,-0.9466,0.0734,-0.3116,-0.8903,0.332,-0.3066,0.9486,0.0789,-0.3056,-0.74,-0.5992,-0.3051,-0.0739,-0.9495,-0.3045,0.8542,-0.4214,-0.3038,0.9448,0.1228,-0.3037,-0.9198,0.2485,-0.3009,0.9467,-0.1145,-0.2995,0.3966,-0.8678,-0.2983,-0.9295,-0.217,-0.2977,-0.9334,-0.2004,-0.2956,-0.8731,-0.3877,-0.2949,0.6998,-0.6506,-0.2935,-0.1037,-0.9503,-0.2921,0.5416,0.7882,-0.2908,0.309,-0.9055,-0.2879,0.1724,-0.942,-0.2866,-0.7746,0.5638,-0.2854,-0.5745,-0.7671,-0.2834,0.5906,0.7555,-0.2834,0.9559,0.0765,-0.278,-0.7364,-0.6168,-0.2752,-0.6303,0.726,-0.2739,-0.8011,-0.5322,-0.2714,-0.9624,-0.0123,-0.2706,-0.9075,-0.3211,-0.2661,0.9533,-0.1426,-0.2635,0.2143,-0.9406,-0.2623,0.7887,-0.556,-0.2604,-0.9557,-0.1372,-0.26,-0.9383,-0.2279,-0.2598,0.5255,-0.8102,-0.2562,-0.8847,0.3895,-0.2553,0.5922,0.7642,-0.2549,0.7525,0.6073,-0.2523,-0.9347,0.2504,-0.2463,-0.8088,0.534,-0.2454,0.5341,-0.809,-0.2434,0.9392,-0.2422,-0.241,0.952,-0.1886,-0.237,-0.0701,0.969,-0.233,-0.6833,0.6919,-0.2325,-0.9308,-0.2823,-0.2297,0.9692,0.0893,-0.2289,0.054,-0.972,-0.2287,-0.9458,-0.2304,-0.2265,-0.1847,-0.9564,-0.2265,-0.5762,-0.7853,-0.2259,-0.9493,-0.2187,-0.2205,0.9054,0.3628,-0.2203,0.0223,0.9752,-0.2155,0.7397,-0.6375,-0.2134,-0.2223,-0.9513,-0.2105,0.9481,-0.2382,-0.209,0.412,-0.8869,-0.2069,0.6325,0.7464,-0.2067,-0.9613,-0.1824,-0.2059,-0.0297,-0.9781,-0.2048,0.9596,0.1931,-0.2047,0.264,-0.9426,-0.2032,0.8233,-0.53,-0.2023,-0.8954,-0.3966,-0.2022,0.4038,-0.8922,-0.2015,0.8456,0.4944,-0.1993,-0.3149,-0.928,-0.1986,0.6254,-0.7546,-0.1985,-0.9069,0.3717,-0.196,-0.9805,-0.0144,-0.1956,-0.7203,-0.6655,-0.1932,-0.3089,-0.9313,-0.1901,-0.9333,-0.3046,-0.1883,-0.2265,0.9556,-0.1874,0.1018,0.977,-0.1806,-0.4692,-0.8644,-0.1777,-0.981,0.0783,-0.1774,0.8757,-0.449,-0.1744,-0.0134,0.9846,-0.174,0.9639,0.2017,-0.1713,-0.8323,-0.5272,-0.1701,-0.5103,-0.843,-0.1656,-0.9124,0.3744,-0.1648,-0.9383,-0.3042,-0.1615,-0.769,-0.6185,-0.1612,0.1481,0.9757,-0.1608,0.2366,-0.9582,-0.1594,0.6826,0.7132,-0.158,0.657,-0.7372,-0.1576,0.145,0.9768,-0.1558,0.437,-0.8859,-0.1545,0.6836,-0.7133,-0.1536,0.8845,0.4405,-0.1526,-0.3614,-0.9198,-0.1521,0.0683,-0.986,-0.1489,0.2552,0.9554,-0.1487,-0.7098,-0.6885,-0.1476,0.2548,0.9557,-0.1443,-0.0281,-0.9891,-0.1436,-0.9788,-0.1458,-0.1429,0.351,-0.9254,-0.1407,-0.2221,-0.9648,-0.1368,0.984,0.1142,-0.1356,-0.0156,-0.9906,-0.1342,0.2327,-0.9632,-0.1305,0.8821,0.4526,-0.1304,-0.6813,-0.7203,-0.1302,-0.864,-0.4863,-0.1294,0.3768,-0.9172,-0.1291,-0.922,-0.3649,-0.127,0.9897,0.0658,-0.1265,-0.5571,-0.8207,-0.124,0.7125,-0.6906,-0.1228,0.1789,-0.9762,-0.1225,-0.2169,-0.9685,-0.1215,-0.2428,-0.9624,-0.1208,-0.2185,-0.9683,-0.1207,-0.9925,0.0177,-0.12,-0.9835,0.1354,-0.1196,0.5406,0.8327,-0.119,0.8432,-0.5243,-0.117,-0.9527,-0.2807,-0.1155,-0.9894,0.0878,-0.114,-0.7381,-0.665,-0.114,0.9812,-0.1559,-0.1138,-0.9934,-0.0129,-0.1131,-0.6531,-0.7488,-0.1097,-0.7315,0.673,-0.1095,0.7065,-0.6991,-0.1094,-0.0927,-0.9897,-0.1059,0.1939,-0.9753,-0.1057,-0.1734,-0.9792,-0.1055,0.9839,0.1443,-0.1039,-0.9946,-0.0011,-0.1035,-0.2294,0.9678,-0.1019,0.9942,0.0359,-0.0993,0.0842,-0.9915,-0.0986,-0.1573,-0.9826,-0.0986,0.0931,-0.9908,-0.0979,-0.9748,0.2003,-0.0977,-0.1119,-0.9889,-0.0908,-0.8826,-0.4613,-0.0908,0.9794,0.1806,-0.0907,0.777,0.623,-0.0883,-0.1927,0.9773,-0.0882,-0.9778,0.1903,-0.0863,-0.9683,-0.2346,-0.0856,-0.9476,0.3076,-0.0852,-0.8308,-0.55,-0.0849,-0.9951,-0.05,-0.0845,0.2464,-0.9655,-0.084,0.89,-0.4481,-0.0839,0.6808,-0.7276,-0.0839,-0.9947,-0.0586,-0.0833,-0.9447,-0.3172,-0.0823,-0.989,0.1229,-0.0786,0.7537,-0.6524,-0.0754,0.9646,0.2527,-0.0747,0.9378,0.3391,-0.0746,0.9917,-0.1045,-0.0734,0.6894,-0.7207,-0.0717,0.6275,-0.7753,-0.0714,-0.9957,0.0592,-0.0707,0.9975,-0.0051,-0.0701,0.23,-0.9707,-0.0687,-0.9905,-0.1192,-0.0681,-0.9702,-0.2324,-0.0653,-0.9546,-0.2905,-0.0649,0.9964,0.0542,-0.0619,-0.9515,-0.3012,-0.0614,-0.7017,0.7099,-0.0601,0.9958,-0.0685,-0.0585,0.9966,0.0585,-0.058,-0.0932,-0.994,-0.0579,-0.9971,0.0495,-0.0573,-0.9906,0.1244,-0.0572,-0.134,-0.9893,-0.0549,0.9888,0.1387,-0.0516,0.0135,-0.9986,-0.0505,0.9953,0.0832,-0.0502,0.7613,-0.6465,-0.048,0.9986,-0.0225,-0.0467,-0.0944,-0.9944,-0.0446,0.997,-0.0639,-0.0445,0.999,-0.0097,-0.044,0.9988,-0.0198,-0.0436,-0.982,-0.1837,-0.0432,-0.9714,-0.2337,-0.0415,-0.979,-0.1996,-0.0407,-0.972,-0.2313,-0.0403,0.8603,-0.5082,-0.0403,0.9992,0.0017,-0.0395,-0.5551,-0.8308,-0.0375,0.9991,-0.017,-0.0373,-0.9976,0.0591,-0.037,0.9507,0.308,-0.0359,-0.9633,-0.266,-0.0341,0.9992,-0.0203,-0.0333,-0.9335,-0.3569,-0.0317,0.1051,-0.994,-0.0311,-0.2825,0.9588,-0.0308,-0.9619,-0.2715,-0.0301,-0.3836,0.923,-0.0295,0.943,0.3314,-0.0285,-0.8624,-0.5054,-0.0259,0.9879,0.1532,-0.0256,-0.192,-0.9811,-0.0242,-0.493,-0.8697,-0.0238,-0.7226,-0.6909,-0.0233,-0.9725,-0.2318,-0.0232,-0.9851,0.1701,-0.023,0.818,0.5748,-0.0227,0.9819,-0.1879,-0.0227,-0.9038,-0.4274,-0.0217,0.7219,-0.6917,-0.0209,-0.9932,0.1147,-0.02,-0.0653,-0.9977,-0.0195,0.1734,-0.9847,-0.0191,-0.9794,-0.2011,-0.0186,0.9508,0.3093,-0.0177,-0.8911,-0.4534,-0.0173,-0.6457,-0.7634,-0.0171,-0.2887,-0.9573,-0.0171,-0.3656,-0.9306,-0.0167,-0.9982,-0.057,-0.0162,-0.9657,-0.2592,-0.0148,0.7891,-0.6141,-0.0148,-0.1005,-0.9948,-0.0145,-0.9597,-0.2808,-0.0144,0.997,-0.0764,-0.0141,0.9998,-0.0158,-0.0141,-0.9971,0.0741,-0.0121,0.9694,0.245,-0.0104,0.6817,-0.7316,-0.0096,0.9834,-0.1812,-0.0093,0.9999,0.0054,-0.0088,-0.553,-0.8331,-0.0087,-0.5499,-0.8352,-0.0081,-0.9342,-0.3568,-0.008,-0.9788,0.2049,-0.0074,0.3968,0.9179,-0.0058,0.9629,0.2697,-0.0053,1.0,-0.0029,-0.0043,-0.086,-0.9963,-0.0036,0.9694,0.2455,-0.0036,0.9983,0.0581,-0.0031,0.9729,0.2313,-0.0018,1.0,-0.0053,-0.0016,0.7791,-0.627,-0.0013,0.071,-0.9975,-0.0005,0.2857,-0.9583,-0.0001,-0.8072,0.5903,0.0,-0.01,0.9999,0.0,-0.0225,0.9997,0.0,-0.0414,0.9991,0.0,0.0619,0.9981,0.0,0.1085,0.9941,0.0,0.1831,0.9831,0.0,-0.2038,0.979,0.0,0.2395,0.9709,0.0,0.3574,0.9339,0.0,-0.4993,0.8664,0.0,-0.6556,0.7551,0.0,0.7069,0.7073,0.0,-0.7356,0.6774,0.0,0.8145,0.5802,0.0,-0.8503,0.5262,0.0,-0.9333,0.3591,0.0,0.9873,0.1586,0.0,0.9926,0.1215,0.0,-0.9945,0.1051,0.0,0.9956,0.0937,0.0,-0.9975,0.071,0.0,-0.9987,0.0504,0.0,-0.9994,0.0336,0.0,-1.0,-0.0022,0.0,0.9999,-0.0105,0.0,0.9987,-0.0502,0.0,0.9962,-0.0874,0.0,-0.9935,-0.114,0.0,-0.9894,-0.1452,0.0,-0.9829,-0.1839,0.0,-0.9623,-0.272,0.0,-0.9435,-0.3314,0.0,-0.9385,-0.3454,0.0,0.8803,-0.4744,0.0,-0.7141,-0.7,0.0,0.422,-0.9066,0.0,0.3645,-0.9312,0.0,-0.1812,-0.9834,0.0,-0.0932,-0.9956,0.0,-0.0912,-0.9958,0.0002,0.9993,0.0365,0.0002,-0.7001,0.7141,0.0005,0.2857,-0.9583,0.0009,0.9935,-0.1141,0.0016,0.7791,-0.627,0.0018,1.0,-0.0053,0.0025,0.9878,-0.156,0.0026,-0.9001,0.4357,0.0036,0.9983,0.0581,0.0036,-0.9802,0.1978,0.0043,0.9732,-0.2297,0.0051,-0.9585,-0.2851,0.0059,-0.9391,-0.3436,0.0071,0.9667,-0.2559,0.0074,0.3968,0.9179,0.0086,0.9341,0.3569,0.0093,0.9999,0.0054,0.0102,-0.9806,0.1958,0.0104,0.6817,-0.7316,0.0106,-0.0238,-0.9997,0.0106,-0.0178,-0.9998,0.0127,-0.9965,-0.0826,0.0133,-0.1699,-0.9854,0.0141,-0.9971,0.0741,0.0144,0.997,-0.0764,0.0154,0.0712,-0.9973,0.0162,-0.9657,-0.2592,0.0164,0.9875,0.1569,0.0171,0.9998,-0.0126,0.0171,-0.2887,-0.9573,0.0172,0.0773,-0.9969,0.0173,-0.6457,-0.7634,0.0176,-0.2681,0.9632,0.0177,-0.8911,-0.4534,0.0191,-0.9794,-0.2011,0.0193,0.9552,0.2952,0.0209,0.9148,-0.4035,0.0209,-0.9932,0.1147,0.0209,-0.9051,-0.4247,0.0213,-0.3552,-0.9346,0.022,0.0213,-0.9995,0.023,0.818,0.5748,0.0232,-0.9851,0.1701,0.0236,-0.1841,-0.9826,0.0242,-0.493,-0.8697,0.0256,-0.9987,0.0443,0.0256,-0.192,-0.9811,0.0259,0.9879,0.1532,0.0261,-0.5679,-0.8227,0.0281,0.9584,0.2841,0.0285,-0.8624,-0.5054,0.0301,-0.3836,0.923,0.0305,0.9993,-0.0197,0.0321,0.9704,0.2395,0.0336,0.9179,-0.3955,0.0361,0.867,-0.497,0.0375,0.9992,-0.017,0.0378,-0.9752,-0.2181,0.0403,0.9992,0.0017,0.0407,-0.972,-0.2313,0.0432,-0.9714,-0.2337,0.044,0.9988,-0.0198,0.0458,0.9968,-0.0661,0.0459,-0.9819,-0.1837,0.046,-0.9948,0.0913,0.0466,-0.1086,-0.993,0.048,0.9986,-0.0225,0.0492,-0.0924,-0.9945,0.0497,-0.9576,-0.2836,0.0502,0.7613,-0.6465,0.0505,0.9953,0.0832,0.0527,-0.9624,-0.2667,0.054,0.9907,-0.125,0.0572,-0.134,-0.9893,0.0573,-0.9906,0.1244,0.0579,-0.9971,0.0495,0.058,0.6581,-0.7507,0.0581,-0.6851,-0.7261,0.0585,0.9966,0.0585,0.059,0.9671,-0.2475,0.0601,0.9958,-0.0685,0.0614,-0.7017,0.7099,0.0649,0.9964,0.0542,0.0653,-0.9546,-0.2905,0.0672,-0.6906,-0.7201,0.0681,-0.9702,-0.2324,0.0687,-0.9905,-0.1192,0.0707,0.9975,-0.0051,0.0714,-0.9957,0.0592,0.0726,-0.9549,-0.2878,0.0747,0.9378,0.3391,0.075,-0.2106,0.9747,0.0754,0.9646,0.2527,0.0764,0.9811,0.1776,0.0771,-0.2027,0.9762,0.0786,0.7537,-0.6524,0.0826,0.9785,-0.189,0.0834,0.6946,-0.7146,0.0834,-0.9447,-0.3172,0.0839,-0.9947,-0.0586,0.0839,0.6808,-0.7276,0.084,0.89,-0.4481,0.0845,0.2464,-0.9655,0.0852,-0.8308,-0.55,0.0853,-0.9573,-0.2761,0.0856,-0.9476,0.3076,0.0863,-0.9683,-0.2346,0.0882,-0.9778,0.1903,0.0907,0.777,0.623,0.0908,-0.8826,-0.4613,0.091,-0.5901,-0.8022,0.0927,0.5988,-0.7955,0.0942,-0.1077,-0.9897,0.0947,0.1956,-0.9761,0.0986,0.0931,-0.9908,0.0999,-0.1028,-0.9897,0.1019,0.9942,0.0359,0.1039,-0.9946,-0.0011,0.1055,0.9839,0.1443,0.1059,0.1939,-0.9753,0.1086,-0.9151,-0.3883,0.1097,-0.7315,0.673,0.112,-0.3425,-0.9328,0.1138,-0.9934,-0.0129,0.114,0.9812,-0.1559,0.114,-0.7381,-0.665,0.1153,-0.0243,-0.993,0.1155,-0.9894,0.0878,0.1163,-0.9773,0.1769,0.117,-0.9527,-0.2807,0.119,0.8432,-0.5243,0.1196,0.5406,0.8327,0.12,-0.9835,0.1354,0.1207,-0.9925,0.0177,0.1208,-0.2185,-0.9683,0.121,0.1034,-0.9873,0.1212,-0.1798,-0.9762,0.1215,-0.2428,-0.9624,0.1225,-0.2169,-0.9685,0.1228,0.1789,-0.9762,0.1265,-0.5571,-0.8207,0.127,0.9897,0.0658,0.1294,0.3768,-0.9172,0.1302,-0.864,-0.4863,0.1351,0.6967,-0.7046,0.1356,-0.0156,-0.9906,0.1368,0.984,0.1142,0.1377,-0.9816,-0.132,0.1415,0.8823,0.4489,0.1432,-0.9255,-0.3505,0.1476,0.2548,0.9557,0.1477,0.8876,0.4363,0.1488,-0.7098,-0.6885,0.1489,0.2552,0.9554,0.1521,0.0683,-0.986,0.1537,-0.9875,0.0355,0.1545,0.6836,-0.7133,0.1558,0.437,-0.8859,0.1576,0.145,0.9768,0.1579,0.366,-0.9171,0.158,0.657,-0.7372,0.1581,-0.6332,-0.7577,0.1594,0.6826,0.7132,0.1602,-0.2167,-0.963,0.1612,0.1481,0.9757,0.1615,-0.769,-0.6185,0.1701,-0.5103,-0.843,0.1713,-0.8323,-0.5272,0.1728,-0.8943,-0.4128,0.174,0.9639,0.2017,0.1744,-0.0134,0.9846,0.1752,0.9497,0.2597,0.1765,-0.0217,-0.9841,0.1767,-0.9172,0.3571,0.1774,0.8757,-0.449,0.1777,-0.981,0.0783,0.1782,0.2191,-0.9593,0.1806,-0.4692,-0.8644,0.1846,-0.9176,0.352,0.1871,0.7514,-0.6327,0.1874,0.1018,0.977,0.1883,-0.2265,0.9556,0.1901,-0.9333,-0.3046,0.1903,0.966,0.1752,0.1932,-0.3089,-0.9313,0.194,0.6212,0.7593,0.1956,-0.7203,-0.6655,0.1993,-0.3149,-0.928,0.2013,0.4058,-0.8915,0.2015,0.8456,0.4944,0.2067,-0.9613,-0.1824,0.209,0.412,-0.8869,0.2096,-0.1633,-0.9641,0.2102,-0.9347,-0.2867,0.2128,-0.9771,0.0025,0.2134,-0.2223,-0.9513,0.2155,0.7397,-0.6375,0.2189,0.8277,-0.5167,0.2196,0.6451,-0.7319,0.2203,0.0223,0.9752,0.2205,0.9054,0.3628,0.2208,0.9403,-0.259,0.2209,0.2757,-0.9355,0.2265,-0.5762,-0.7853,0.2273,-0.9449,-0.2357,0.2289,0.054,-0.972,0.2297,0.9692,0.0893,0.233,-0.6833,0.6919,0.237,-0.0701,0.969,0.241,0.952,-0.1886,0.2434,0.9392,-0.2422,0.2454,0.5341,-0.809,0.2456,-0.9373,0.2474,0.2458,-0.9425,-0.2266,0.2463,-0.8088,0.534,0.2549,0.7525,0.6073,0.2573,-0.8833,0.3919,0.2589,0.6059,0.7523,0.26,-0.9383,-0.2279,0.2604,-0.9557,-0.1372,0.262,-0.9643,-0.0388,0.2623,0.7887,-0.556,0.2645,0.8025,0.5349,0.2663,0.5369,-0.8005,0.2697,0.1574,-0.95,0.2755,-0.9344,0.2258,0.278,-0.7364,-0.6168,0.2799,-0.9397,-0.1967,0.2818,0.8639,-0.4175,0.2853,-0.914,-0.2886,0.2854,-0.5745,-0.7671,0.2855,0.4159,-0.8634,0.2866,-0.7746,0.5638,0.2908,0.309,-0.9055,0.2914,0.4024,-0.8678,0.2936,0.5579,0.7762,0.2949,0.6998,-0.6506,0.2956,-0.8731,-0.3877,0.3009,0.9467,-0.1145,0.3028,0.5467,0.7807,0.303,0.9484,0.0934};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_170_vector_2()
		{
			double[] value = {0.3038,0.9448,0.1228,0.3056,0.8092,0.5019,0.3056,-0.9286,-0.2106,0.3056,-0.74,-0.5992,0.3066,0.9486,0.0789,0.3116,-0.8903,0.332,0.3132,-0.6111,0.727,0.3139,0.082,-0.9459,0.314,-0.9466,0.0734,0.3141,0.8224,-0.4744,0.3158,-0.1769,0.9322,0.3167,-0.9448,-0.0835,0.3181,0.6735,0.6672,0.3182,0.9443,-0.0845,0.3201,-0.7148,0.6218,0.3207,-0.6832,-0.656,0.3211,-0.9469,0.0184,0.3216,-0.0242,-0.9466,0.3229,0.8193,-0.4739,0.3253,-0.9409,-0.0942,0.3272,-0.3293,0.8857,0.3294,-0.9282,-0.1733,0.3339,0.9311,0.1466,0.3348,-0.6708,-0.6618,0.3361,-0.1269,-0.9333,0.3363,-0.0525,-0.9403,0.3372,-0.9402,-0.0473,0.3374,0.5939,0.7304,0.3382,-0.6774,-0.6533,0.3383,0.7709,0.5397,0.3419,0.1612,0.9258,0.3456,0.9291,-0.1319,0.3466,0.2237,0.9109,0.347,-0.7345,-0.5831,0.3501,-0.4903,-0.7981,0.3508,-0.9086,-0.2265,0.3529,-0.8435,0.4049,0.3565,-0.7648,-0.5366,0.3567,0.3453,-0.8681,0.3583,0.7532,-0.5517,0.3593,0.6246,-0.6933,0.3595,-0.8862,-0.2923,0.3595,0.611,-0.7053,0.3615,0.3253,-0.8738,0.3615,-0.1407,-0.9217,0.362,0.2128,0.9076,0.3649,-0.0548,0.9294,0.3658,-0.5754,0.7315,0.3666,0.1804,0.9127,0.3667,0.9239,0.1088,0.3676,0.6853,-0.6287,0.3683,0.4179,-0.8305,0.3708,-0.8235,-0.4295,0.3714,0.5661,-0.7359,0.3742,-0.0635,-0.9252,0.3747,0.1676,0.9119,0.3843,-0.7142,0.585,0.385,0.526,-0.7584,0.385,0.8961,-0.2207,0.3861,0.484,-0.7853,0.3877,0.1341,0.912,0.3895,-0.9175,-0.08,0.3913,-0.9146,-0.1022,0.3926,-0.5271,-0.7537,0.3931,-0.6908,0.6069,0.3944,0.6048,-0.6918,0.3956,0.9165,-0.0601,0.3956,0.5556,-0.7313,0.3964,-0.346,0.8503,0.3978,0.8921,0.2145,0.3993,0.6948,-0.5981,0.4,-0.7887,-0.4669,0.404,-0.0375,0.914,0.4087,0.0528,0.9112,0.4091,0.6816,-0.6067,0.4121,-0.8725,-0.2624,0.4149,-0.0984,-0.9046,0.415,-0.0916,0.9052,0.4167,-0.4845,-0.7692,0.4177,-0.1366,0.8982,0.4178,0.6437,-0.6411,0.4204,0.9019,0.0988,0.4222,-0.7788,-0.464,0.4231,0.8854,-0.1925,0.4255,0.2672,0.8646,0.4291,0.2525,0.8672,0.4322,-0.715,0.5496,0.4326,-0.8807,0.1931,0.4331,0.2192,-0.8743,0.4333,0.8258,0.361,0.4341,0.6582,-0.6151,0.4348,0.7432,-0.5085,0.4354,0.27,0.8588,0.4408,-0.5619,-0.6999,0.4415,0.7675,0.4648,0.443,-0.7595,0.4763,0.4439,0.4976,0.7452,0.4456,-0.6743,0.589,0.4468,0.7445,0.4961,0.4476,-0.8715,-0.2003,0.4504,0.269,0.8514,0.4525,0.3408,0.8241,0.4527,-0.27,-0.8498,0.4547,-0.2882,-0.8427,0.4554,0.8896,-0.0361,0.4565,-0.1167,0.882,0.4614,0.3279,-0.8244,0.4624,0.8182,0.3416,0.4631,-0.6786,-0.5702,0.4631,0.3021,-0.8332,0.4635,0.8859,0.0201,0.4647,0.4467,-0.7645,0.4656,-0.7564,0.4595,0.4673,0.355,0.8097,0.4674,-0.3136,0.8266,0.4708,-0.433,-0.7687,0.4709,0.5029,0.7248,0.476,-0.667,0.5732,0.4763,0.473,0.7412,0.4814,-0.0874,0.8722,0.4852,-0.54,-0.6877,0.4868,0.2222,0.8448,0.4868,0.7117,-0.5064,0.487,-0.0421,-0.8724,0.4876,0.8463,0.2146,0.4905,0.0409,-0.8705,0.4968,-0.7978,0.3415,0.4969,0.7972,0.3429,0.4981,0.6045,-0.6216,0.501,-0.4622,-0.7317,0.5016,0.8216,0.2707,0.5029,0.435,-0.7469,0.5033,-0.3301,0.7986,0.5041,0.6154,0.606,0.5063,0.3084,-0.8053,0.5076,0.1845,0.8416,0.5083,0.7294,-0.4578,0.5108,0.3518,0.7844,0.5115,-0.1258,0.85,0.5156,-0.6274,-0.5836,0.5156,-0.1618,0.8414,0.5159,-0.3882,0.7636,0.5198,-0.037,0.8535,0.5229,0.1222,-0.8436,0.524,0.3939,-0.7552,0.5276,-0.351,0.7736,0.5279,0.7708,0.3568,0.5285,0.5739,0.6255,0.5317,0.2294,-0.8152,0.5319,0.0781,0.8432,0.5349,0.8435,-0.0496,0.5388,-0.7427,0.3976,0.539,0.1364,0.8312,0.5404,-0.6239,-0.5646,0.5415,-0.8362,-0.0872,0.5459,0.7188,0.4305,0.5468,-0.6686,0.504,0.5478,-0.1944,0.8137,0.5499,-0.0483,0.8338,0.5514,-0.8334,0.0361,0.5546,0.7799,-0.2902,0.5547,-0.7106,0.4329,0.5579,-0.1213,0.821,0.559,-0.3709,0.7416,0.5593,-0.8283,0.032,0.5634,0.8255,-0.0347,0.5654,0.3809,0.7316,0.5667,-0.1567,0.8089,0.5674,-0.4527,0.6879,0.5681,-0.1433,0.8104,0.5691,-0.6101,-0.5513,0.5705,-0.5179,0.6374,0.5718,0.7488,-0.3352,0.5736,0.2395,-0.7833,0.5737,0.8064,-0.1436,0.5751,-0.2573,-0.7766,0.5761,-0.8101,-0.1086,0.577,-0.5344,0.6176,0.5828,-0.8102,-0.0622,0.5844,-0.3174,0.7469,0.5863,0.5707,-0.5749,0.5866,0.7929,-0.1651,0.5901,-0.5914,-0.5496,0.5917,-0.2295,-0.7728,0.5922,-0.5292,-0.6077,0.5947,-0.0789,-0.8,0.5955,0.6168,0.5147,0.597,0.7335,-0.3249,0.5975,0.8004,-0.0485,0.5991,0.346,-0.7221,0.6005,0.5686,-0.5622,0.6014,0.7787,-0.1787,0.6019,0.154,-0.7836,0.6024,0.5749,0.5538,0.6033,-0.5217,-0.6032,0.6035,-0.4051,-0.6868,0.6065,0.6469,-0.4622,0.6118,0.6092,-0.5045,0.6132,-0.3756,-0.695,0.6145,0.4208,-0.6673,0.6163,-0.5504,-0.5633,0.6166,0.2897,-0.732,0.6181,0.4169,0.6664,0.6192,0.3968,-0.6776,0.6202,-0.052,0.7827,0.621,-0.1211,0.7744,0.6215,-0.7131,0.3245,0.6225,-0.3559,0.6971,0.623,-0.2487,0.7416,0.6279,-0.0865,0.7735,0.6292,-0.2457,0.7374,0.6301,-0.7646,0.1355,0.6307,-0.0709,0.7728,0.6347,0.2641,-0.7263,0.6361,0.2273,-0.7374,0.6423,0.2307,0.7309,0.6425,-0.0645,0.7636,0.6444,0.6411,-0.4168,0.6486,0.734,-0.2016,0.649,0.7097,-0.2741,0.6497,-0.2206,0.7275,0.6505,0.2967,0.6991,0.6518,-0.2827,-0.7038,0.6518,0.6849,0.3257,0.6527,-0.0412,0.7565,0.6547,-0.2278,-0.7207,0.6549,0.5424,0.5262,0.6576,-0.5333,-0.5321,0.6576,0.7008,0.2763,0.6584,0.3426,-0.6701,0.6612,-0.5591,0.5003,0.6623,-0.1582,0.7323,0.6631,-0.111,0.7403,0.6637,0.1569,0.7313,0.6642,0.4025,-0.6299,0.6671,0.7199,-0.1913,0.6681,-0.6956,-0.2641,0.6684,0.3589,-0.6514,0.6714,-0.7314,-0.1197,0.6726,-0.4867,0.5574,0.6785,0.6842,-0.2674,0.6802,0.2953,0.6709,0.6805,0.3407,-0.6487,0.6807,0.7169,-0.1507,0.6815,0.0067,-0.7318,0.6825,0.6537,-0.3269,0.6844,0.5291,-0.5017,0.6846,-0.0612,0.7264,0.6862,-0.2221,0.6927,0.6865,-0.0708,0.7237,0.6874,-0.505,0.5221,0.6901,0.7232,0.0276,0.6926,0.582,-0.4261,0.6934,-0.2814,-0.6633,0.6954,-0.5238,-0.492,0.6971,0.7163,-0.0301,0.6978,0.7135,-0.063,0.6983,0.3899,-0.6003,0.6984,-0.2513,0.6701,0.6987,-0.1324,0.703,0.7086,0.6703,0.2203,0.715,0.0464,-0.6976,0.7167,0.2515,0.6504,0.7181,-0.1243,0.6848,0.7191,0.2017,0.6649,0.7196,0.5904,-0.3654,0.7196,-0.6687,0.187,0.7226,0.5245,-0.4503,0.7237,0.5293,-0.4429,0.7255,-0.6166,0.3057,0.7276,-0.1615,-0.6667,0.7293,-0.1513,0.6673,0.7329,0.6641,0.148,0.7334,0.1988,-0.6501,0.7371,-0.4179,-0.5311,0.7377,-0.33,0.589,0.7398,0.6707,0.0545,0.743,0.5656,0.3578,0.7434,-0.092,0.6625,0.744,0.5956,-0.3029,0.7442,0.6609,0.0971,0.7454,0.0524,0.6646,0.7471,0.1831,0.639,0.7471,-0.5264,0.4058,0.7482,0.254,0.6129,0.75,0.4125,0.5171,0.7513,-0.0747,0.6557,0.7516,-0.5168,-0.4099,0.7525,0.6277,0.1994,0.7584,0.6351,0.1465,0.7618,0.3712,-0.5309,0.7662,0.2479,-0.5928,0.7695,0.295,0.5665,0.77,0.5607,0.3043,0.7703,0.5689,-0.288,0.7767,0.363,0.5148,0.7783,0.4033,-0.4812,0.781,0.6145,-0.1118,0.7815,0.3458,0.5193,0.7825,0.3528,-0.513,0.783,0.075,-0.6175,0.7844,0.3884,0.4835,0.7926,0.3228,-0.5173,0.7933,0.3363,-0.5075,0.7956,-0.1318,0.5913,0.7967,0.3715,0.4768,0.7985,0.4591,-0.3894,0.8006,-0.0152,-0.5991,0.8018,0.2719,0.5322,0.8028,-0.5956,0.0265,0.803,0.4948,-0.3323,0.8031,-0.4462,0.3949,0.8055,0.5674,-0.171,0.8121,0.1963,0.5496,0.8143,-0.2221,0.5363,0.8155,-0.1887,0.5472,0.8155,-0.2489,0.5224,0.8168,0.0047,-0.5769,0.8174,0.4596,-0.3473,0.8206,0.4791,-0.3115,0.8257,-0.4636,0.3212,0.827,0.562,-0.0112,0.8283,0.5545,-0.0803,0.8288,0.1983,-0.5232,0.8345,0.5465,-0.0702,0.8361,0.4396,-0.3281,0.8382,0.3302,-0.434,0.8421,-0.2515,0.4771,0.8431,0.0134,-0.5377,0.8436,0.457,-0.2821,0.8455,-0.2073,0.4922,0.8458,-0.2748,-0.4573,0.8477,-0.034,0.5294,0.8479,0.1899,-0.495,0.85,-0.0599,-0.5234,0.8503,-0.3758,0.3686,0.8525,-0.0161,-0.5224,0.857,-0.0299,0.5144,0.8571,-0.3834,-0.344,0.8588,0.4535,-0.2383,0.859,0.1742,-0.4814,0.8594,0.5028,-0.0933,0.8615,0.4242,0.279,0.8654,-0.4056,0.2942,0.8676,0.1992,0.4556,0.8698,0.3739,0.3221,0.8704,-0.0776,0.4862,0.8709,-0.0215,0.491,0.8714,0.3659,0.3267,0.8723,-0.4284,-0.2358,0.8748,-0.4818,-0.0517,0.878,-0.3834,-0.2866,0.8781,0.4595,-0.1338,0.8781,0.3691,-0.3044,0.883,-0.2724,0.3824,0.8866,-0.4481,0.1148,0.887,0.0013,0.4618,0.8871,0.4519,0.0941,0.8871,0.1441,-0.4385,0.8873,0.3228,-0.3294,0.8887,0.428,-0.1644,0.8895,0.3584,-0.2834,0.8965,0.41,-0.1678,0.8972,0.4378,0.0581,0.899,0.0565,-0.4342,0.8991,0.2716,0.3432,0.8997,0.4348,-0.0389,0.9022,-0.4312,0.0126,0.9043,-0.37,0.2132,0.9064,0.2086,-0.3674,0.9064,-0.4217,0.0233,0.9069,0.2737,0.3202,0.9114,0.3862,-0.1422,0.9115,-0.0411,0.4092,0.9131,0.3724,0.166,0.9134,0.2855,-0.2903,0.9141,0.4053,0.0105,0.9144,-0.3868,0.119,0.9151,0.3447,-0.2093,0.9159,-0.1795,0.359,0.9179,-0.36,0.167,0.9183,0.1872,0.3488,0.9188,-0.2399,0.3134,0.9211,0.1634,0.3535,0.9215,0.3453,-0.178,0.9241,-0.0533,0.3785,0.9256,-0.2218,-0.3067,0.9259,-0.2185,-0.3082,0.9262,0.2395,-0.2912,0.9272,0.2787,-0.2503,0.9295,0.2532,-0.268,0.9296,0.365,-0.0514,0.9299,0.1068,-0.352,0.9299,-0.0612,0.3626,0.9311,-0.0606,-0.3597,0.9314,-0.3549,-0.0812,0.9325,0.2452,0.2652,0.936,0.3511,-0.0241,0.9372,0.3486,0.0072,0.939,0.3398,-0.0529,0.9411,-0.103,0.322,0.9422,0.2601,0.2112,0.9444,0.2791,-0.1738,0.9463,0.2732,0.173,0.9463,0.3179,0.059,0.9471,0.2541,-0.1963,0.9476,-0.1313,0.2911,0.9491,-0.2494,0.1925,0.9515,0.2789,-0.1299,0.9528,0.1525,-0.2626,0.9532,0.3009,-0.0294,0.9533,-0.2148,-0.2123,0.9535,-0.3013,0.0043,0.9544,0.1663,0.2479,0.9546,0.2222,-0.1983,0.9575,0.1994,-0.2086,0.9596,0.0364,-0.2788,0.9598,0.2677,0.0843,0.9606,-0.0571,0.2721,0.963,-0.0466,-0.2656,0.963,0.1961,-0.1849,0.9639,-0.2305,-0.1331,0.9642,0.2643,0.0219,0.965,0.2466,0.0896,0.9665,0.0911,-0.2399,0.9691,-0.2468,-0.0041,0.9692,-0.1747,0.1736,0.9705,-0.0299,-0.2392,0.9707,0.2309,-0.0668,0.9708,-0.2313,0.0643,0.9722,0.1839,-0.1448,0.9728,0.1869,-0.1371,0.9736,0.0882,-0.2104,0.9756,-0.1187,-0.1846,0.9756,0.1906,0.1086,0.9764,0.1785,0.1215,0.9768,-0.0834,-0.1973,0.9772,0.0717,-0.1998,0.979,0.1987,0.0457,0.9796,0.2009,0.0093,0.9801,0.0621,-0.1885,0.9802,0.098,0.1721,0.9813,0.1742,-0.0821,0.9815,0.1398,0.1309,0.9817,0.1779,-0.0679,0.9839,0.1655,-0.0674,0.9842,-0.096,0.1486,0.9849,0.147,-0.0917,0.9866,0.1273,-0.1024,0.9875,-0.1421,-0.0674,0.9881,0.1475,-0.0434,0.9882,-0.0417,-0.1474,0.9882,0.153,0.0073,0.9885,0.049,0.1432,0.9886,0.1263,-0.0824,0.9893,-0.1162,-0.0885,0.99,-0.0965,-0.103,0.9904,0.0091,-0.1377,0.9905,0.0731,-0.1168,0.9905,0.1369,0.0111,0.9908,-0.0534,0.1245,0.9912,-0.1071,-0.0779,0.9914,0.103,0.0812,0.9915,0.1219,-0.0462,0.9915,-0.0245,0.1275,0.9919,0.0572,-0.113,0.9921,0.1061,-0.0673,0.9941,0.0217,-0.1064,0.9961,-0.088,0.0057,0.9971,-0.0734,-0.0193,0.9976,0.0496,-0.0485,0.9979,0.0605,-0.0242,0.9979,-0.0522,0.0382,0.9982,-0.003,-0.0595,0.9992,0.0226,-0.0315,0.9996,0.0187,-0.023};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl4disk_Geo_5_175_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,31,34,-1,35,34,36,-1,37,23,38,-1,1,39,40,-1,41,42,0,-1,43,44,45,-1,46,42,47,-1,48,46,49,-1,50,46,48,-1,51,52,38,-1,53,54,55,-1,56,57,58,-1,59,60,61,-1,62,63,64,-1,65,66,67,-1,68,69,70,-1,71,72,73,-1,74,75,76,-1,77,78,79,-1,80,81,82,-1,83,82,84,-1,85,86,87,-1,88,8,89,-1,87,90,91,-1,91,92,87,-1,86,90,87,-1,68,93,69,-1,91,94,92,-1,65,67,95,-1,96,97,56,-1,62,98,99,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,58,11,-1,112,46,50,-1,113,52,51,-1,114,115,116,-1,47,41,117,-1,118,119,120,-1,121,122,113,-1,123,112,50,-1,39,124,55,-1,125,120,119,-1,126,32,127,-1,128,129,130,-1,131,132,133,-1,134,135,3,-1,134,31,135,-1,136,137,138,-1,139,140,128,-1,127,33,141,-1,142,35,36,-1,137,136,4,-1,2,143,144,-1,145,146,90,-1,147,148,66,-1,149,150,151,-1,15,152,25,-1,25,153,15,-1,125,117,154,-1,155,156,93,-1,157,158,159,-1,143,160,144,-1,142,36,161,-1,128,130,139,-1,31,30,135,-1,3,24,134,-1,133,126,131,-1,128,162,129,-1,127,31,33,-1,40,39,55,-1,113,163,121,-1,117,164,47,-1,116,165,114,-1,113,51,163,-1,50,48,114,-1,104,109,108,-1,11,166,111,-1,109,167,110,-1,105,107,168,-1,102,104,108,-1,101,169,99,-1,99,170,62,-1,96,56,111,-1,96,64,97,-1,95,171,65,-1,94,65,92,-1,93,172,69,-1,173,174,175,-1,76,176,74,-1,83,177,178,-1,86,89,90,-1,88,89,86,-1,87,179,85,-1,69,172,180,-1,83,181,82,-1,80,82,182,-1,77,175,78,-1,74,173,75,-1,71,73,77,-1,158,68,70,-1,77,73,175,-1,65,94,66,-1,59,61,168,-1,168,61,105,-1,104,183,107,-1,111,56,58,-1,53,55,124,-1,51,38,184,-1,185,46,112,-1,49,186,48,-1,44,187,45,-1,41,47,42,-1,38,188,37,-1,35,189,34,-1,32,31,127,-1,30,32,190,-1,134,26,31,-1,191,27,29,-1,26,134,24,-1,161,36,152,-1,23,37,21,-1,192,18,20,-1,193,15,17,-1,12,194,13,-1,195,94,196,-1,197,198,57,-1,199,200,201,-1,0,2,202,-1,118,203,204,-1,118,120,203,-1,55,143,40,-1,55,205,143,-1,193,152,15,-1,161,152,193,-1,4,206,5,-1,4,136,206,-1,207,12,208,-1,207,209,12,-1,210,211,212,-1,210,213,211,-1,214,192,43,-1,214,18,192,-1,215,216,217,-1,218,216,215,-1,155,68,219,-1,93,68,155,-1,220,90,89,-1,90,220,145,-1,57,221,197,-1,57,222,221,-1,223,224,225,-1,224,223,226,-1,227,228,229,-1,227,230,228,-1,231,232,233,-1,234,232,231,-1,235,236,237,-1,238,236,235,-1,239,240,241,-1,239,242,240,-1,243,229,244,-1,245,229,243,-1,246,247,237,-1,246,248,247,-1,151,249,250,-1,151,208,249,-1,246,251,248,-1,246,252,251,-1,253,254,255,-1,253,10,254,-1,198,256,257,-1,198,197,256,-1,205,160,143,-1,205,258,160,-1,259,153,260,-1,153,259,261,-1,262,221,263,-1,221,262,264,-1,195,265,266,-1,195,196,265,-1,267,145,220,-1,145,267,268,-1,269,270,271,-1,269,272,270,-1,273,274,275,-1,273,276,274,-1,277,243,278,-1,279,243,277,-1,280,219,281,-1,155,219,280,-1,282,223,283,-1,226,223,282,-1,144,268,267,-1,144,160,268,-1,250,254,284,-1,249,254,250,-1,278,244,285,-1,278,243,244,-1,286,204,287,-1,199,204,286,-1,258,288,289,-1,258,290,288,-1,262,261,259,-1,291,261,262,-1,292,293,257,-1,292,294,293,-1,13,295,296,-1,13,297,295,-1,298,241,240,-1,247,241,298,-1,140,27,191,-1,140,139,27,-1,299,300,301,-1,299,302,300,-1,138,303,150,-1,137,303,138,-1,301,213,210,-1,301,300,213,-1,4,30,137,-1,3,30,4,-1,3,135,30,-1,191,132,140,-1,304,132,191,-1,127,162,128,-1,162,127,141,-1,305,129,162,-1,305,22,129,-1,21,306,307,-1,21,37,306,-1,189,308,309,-1,189,310,308,-1,311,113,122,-1,113,312,52,-1,311,312,113,-1,114,186,115,-1,114,48,186,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl4disk_Geo_5_175_coordIndex_2()
		{
			int[] value = {313,214,314,-1,315,214,313,-1,316,115,186,-1,316,313,115,-1,165,121,163,-1,116,121,165,-1,185,124,39,-1,185,317,124,-1,312,318,188,-1,319,318,312,-1,320,321,322,-1,321,320,184,-1,238,323,236,-1,324,323,238,-1,234,325,232,-1,326,325,234,-1,107,109,104,-1,109,107,106,-1,107,327,168,-1,327,107,183,-1,104,328,183,-1,103,328,104,-1,103,329,328,-1,329,103,330,-1,327,101,100,-1,101,327,331,-1,332,99,169,-1,99,332,170,-1,333,60,166,-1,60,333,61,-1,98,64,96,-1,98,62,64,-1,95,332,171,-1,332,95,170,-1,97,334,222,-1,335,334,97,-1,71,230,227,-1,230,71,336,-1,337,225,224,-1,225,337,338,-1,76,339,338,-1,339,76,75,-1,340,341,80,-1,342,341,340,-1,74,81,343,-1,74,344,81,-1,176,338,337,-1,76,338,176,-1,344,180,84,-1,180,344,345,-1,346,180,172,-1,346,177,180,-1,179,347,348,-1,179,349,347,-1,92,179,87,-1,179,92,349,-1,86,178,88,-1,178,86,85,-1,178,181,83,-1,178,85,181,-1,69,345,70,-1,69,180,345,-1,74,345,344,-1,74,176,345,-1,82,348,182,-1,181,348,82,-1,80,343,81,-1,341,343,80,-1,329,78,350,-1,330,78,329,-1,350,175,174,-1,175,350,78,-1,343,173,74,-1,174,173,343,-1,73,173,175,-1,75,173,73,-1,338,351,225,-1,351,338,339,-1,336,238,230,-1,238,336,324,-1,56,222,57,-1,97,222,56,-1,64,335,97,-1,63,335,64,-1,96,59,98,-1,60,59,96,-1,325,61,333,-1,61,325,105,-1,100,168,327,-1,100,59,168,-1,331,340,101,-1,340,331,342,-1,326,105,325,-1,106,105,326,-1,232,333,352,-1,325,333,232,-1,236,110,353,-1,323,110,236,-1,317,53,124,-1,310,53,317,-1,38,321,184,-1,23,321,38,-1,188,52,312,-1,52,188,38,-1,185,354,317,-1,185,112,354,-1,314,115,313,-1,314,116,115,-1,47,49,46,-1,164,49,47,-1,355,187,44,-1,355,356,187,-1,315,316,201,-1,315,313,316,-1,309,322,357,-1,309,308,322,-1,307,358,359,-1,307,306,358,-1,141,305,162,-1,357,305,141,-1,26,34,31,-1,26,36,34,-1,137,190,303,-1,30,190,137,-1,27,210,28,-1,27,301,210,-1,303,207,150,-1,303,360,207,-1,251,297,361,-1,295,297,251,-1,294,284,293,-1,294,250,284,-1,259,264,262,-1,259,362,264,-1,266,363,17,-1,265,363,266,-1,272,154,270,-1,203,154,272,-1,364,298,240,-1,298,364,365,-1,366,19,18,-1,366,276,19,-1,274,199,286,-1,200,199,274,-1,288,363,265,-1,288,290,363,-1,273,226,282,-1,159,226,273,-1,269,155,280,-1,156,155,269,-1,279,20,283,-1,279,277,20,-1,275,286,281,-1,275,274,286,-1,271,367,368,-1,271,270,367,-1,289,145,268,-1,146,145,289,-1,195,369,147,-1,195,266,369,-1,264,197,221,-1,197,264,256,-1,261,15,153,-1,15,261,16,-1,205,290,258,-1,205,370,290,-1,371,257,293,-1,371,198,257,-1,233,255,296,-1,233,253,255,-1,212,372,361,-1,212,211,372,-1,14,208,12,-1,208,14,249,-1,292,206,373,-1,206,292,374,-1,365,229,228,-1,229,365,244,-1,240,215,364,-1,242,215,240,-1,146,91,90,-1,91,146,375,-1,252,234,231,-1,376,234,252,-1,230,235,228,-1,230,238,235,-1,225,377,223,-1,225,351,377,-1,58,198,371,-1,58,57,198,-1,94,147,66,-1,94,195,147,-1,378,93,156,-1,379,93,378,-1,242,218,215,-1,358,218,242,-1,380,43,192,-1,44,43,380,-1,213,239,211,-1,213,359,239,-1,194,209,29,-1,209,194,12,-1,206,138,373,-1,136,138,206,-1,193,142,161,-1,142,193,381,-1,1,143,2,-1,1,40,143,-1,203,125,154,-1,120,125,203,-1,201,204,199,-1,201,118,204,-1,382,0,202,-1,41,0,382,-1,205,54,370,-1,55,54,205,-1,260,3,5,-1,24,3,260,-1,150,208,151,-1,150,207,208,-1,212,28,210,-1,28,212,383,-1,18,315,366,-1,214,315,18,-1,217,355,384,-1,216,355,217,-1,219,158,157,-1,68,158,219,-1,89,7,220,-1,89,8,7,-1,222,263,221,-1,222,334,263,-1,158,226,159,-1,158,224,226,-1,385,229,245,-1,385,227,229,-1,352,233,232,-1,352,253,233,-1,237,353,246,-1,236,353,237,-1,211,241,372,-1,211,239,241,-1,285,384,278,-1,217,384,285,-1,298,237,247,-1,235,237,298,-1,149,250,294,-1,149,151,250,-1,194,297,13,-1,194,383,297,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl4disk_Geo_5_175_coordIndex_3()
		{
			int[] value = {231,251,252,-1,231,295,251,-1,10,284,254,-1,10,9,284,-1,202,367,382,-1,202,386,367,-1,17,381,193,-1,381,17,363,-1,260,362,259,-1,260,5,362,-1,263,291,262,-1,263,148,291,-1,375,265,196,-1,375,288,265,-1,387,220,7,-1,220,387,267,-1,272,280,287,-1,269,280,272,-1,276,282,19,-1,273,282,276,-1,378,368,6,-1,378,271,368,-1,157,281,219,-1,157,275,281,-1,283,377,279,-1,223,377,283,-1,386,267,387,-1,144,267,386,-1,203,287,204,-1,203,272,287,-1,278,380,277,-1,384,380,278,-1,277,192,20,-1,380,192,277,-1,258,268,160,-1,268,258,289,-1,291,16,261,-1,369,16,291,-1,257,374,292,-1,256,374,257,-1,296,14,13,-1,255,14,296,-1,372,247,248,-1,372,241,247,-1,26,152,36,-1,152,26,25,-1,139,301,27,-1,139,299,301,-1,128,126,127,-1,126,128,131,-1,304,29,209,-1,304,191,29,-1,300,359,213,-1,300,307,359,-1,133,304,360,-1,133,132,304,-1,309,34,189,-1,309,33,34,-1,129,21,302,-1,22,21,129,-1,321,22,305,-1,22,321,23,-1,53,189,35,-1,189,53,310,-1,1,42,39,-1,0,42,1,-1,356,122,187,-1,356,311,122,-1,114,163,50,-1,165,163,114,-1,43,314,214,-1,43,45,314,-1,218,319,216,-1,218,318,319,-1,186,119,316,-1,119,186,49,-1,185,42,46,-1,185,39,42,-1,184,123,51,-1,123,184,320,-1,358,318,218,-1,358,306,318,-1,322,354,320,-1,322,308,354,-1,376,326,234,-1,376,167,326,-1,323,108,110,-1,102,108,323,-1,331,183,328,-1,331,327,183,-1,328,342,331,-1,342,328,329,-1,169,347,332,-1,169,388,347,-1,166,352,333,-1,166,11,352,-1,347,171,332,-1,347,349,171,-1,334,67,66,-1,67,334,335,-1,72,227,385,-1,227,72,71,-1,79,324,336,-1,324,79,389,-1,75,72,339,-1,72,75,73,-1,78,389,79,-1,78,330,389,-1,182,340,80,-1,340,182,388,-1,84,81,344,-1,81,84,82,-1,345,337,70,-1,176,337,345,-1,177,84,180,-1,177,83,84,-1,348,85,179,-1,181,85,348,-1,8,346,379,-1,346,8,88,-1,379,172,93,-1,172,379,346,-1,88,177,346,-1,177,88,178,-1,224,70,337,-1,224,158,70,-1,347,182,348,-1,347,388,182,-1,342,350,341,-1,329,350,342,-1,174,341,350,-1,174,343,341,-1,77,336,71,-1,336,77,79,-1,339,385,351,-1,339,72,385,-1,171,92,65,-1,349,92,171,-1,63,67,335,-1,95,67,63,-1,170,63,62,-1,170,95,63,-1,60,111,166,-1,60,96,111,-1,100,98,59,-1,99,98,100,-1,340,169,101,-1,388,169,340,-1,389,103,102,-1,389,330,103,-1,167,106,326,-1,109,106,167,-1,324,102,323,-1,389,102,324,-1,353,167,376,-1,110,167,353,-1,308,317,354,-1,308,310,317,-1,306,188,318,-1,306,37,188,-1,112,320,354,-1,112,123,320,-1,51,50,163,-1,123,50,51,-1,116,45,121,-1,45,116,314,-1,49,125,119,-1,49,117,125,-1,117,49,164,-1,216,356,355,-1,216,319,356,-1,316,118,201,-1,118,316,119,-1,319,311,356,-1,319,312,311,-1,187,121,45,-1,187,122,121,-1,142,53,35,-1,142,54,53,-1,321,357,322,-1,305,357,321,-1,307,302,21,-1,302,307,300,-1,357,33,309,-1,357,141,33,-1,140,131,128,-1,131,140,132,-1,133,303,190,-1,133,360,303,-1,209,360,304,-1,360,209,207,-1,190,126,133,-1,190,32,126,-1,130,299,139,-1,302,130,129,-1,130,302,299,-1,248,361,372,-1,251,361,248,-1,255,249,14,-1,254,249,255,-1,362,256,264,-1,362,374,256,-1,266,16,369,-1,266,17,16,-1,270,382,367,-1,154,382,270,-1,365,285,244,-1,365,364,285,-1,276,200,274,-1,366,200,276,-1,386,368,367,-1,386,387,368,-1,243,377,245,-1,377,243,279,-1,275,159,273,-1,157,159,275,-1,156,271,378,-1,156,269,271,-1,19,283,20,-1,282,283,19,-1,281,287,280,-1,281,286,287,-1,387,6,368,-1,7,6,387,-1,289,375,146,-1,375,289,288,-1,148,369,291,-1,148,147,369,-1,5,374,362,-1,5,206,374,-1,290,381,363,-1,370,381,290,-1,202,144,386,-1,202,2,144,-1,293,9,371,-1,9,293,284,-1,231,296,295,-1,231,233,296,-1,383,361,297,-1,383,212,361,-1,373,294,292,-1,373,149,294,-1,228,298,365,-1,228,235,298,-1,364,217,285,-1,215,217,364,-1,91,196,94,-1,91,375,196,-1,246,376,252,-1,353,376,246,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl4disk_Geo_5_175_coordIndex_4()
		{
			int[] value = {253,11,10,-1,352,11,253,-1,351,245,377,-1,351,385,245,-1,11,371,9,-1,11,58,371,-1,148,334,66,-1,334,148,263,-1,6,379,378,-1,8,379,6,-1,359,242,239,-1,359,358,242,-1,44,384,355,-1,44,380,384,-1,366,201,200,-1,315,201,366,-1,29,383,194,-1,29,28,383,-1,373,150,149,-1,138,150,373,-1,25,260,153,-1,25,24,260,-1,54,381,370,-1,54,142,381,-1,117,382,154,-1,117,41,382,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl4disk_Geo_5_175_normalIndex_1()
		{
			int[] value = {169,271,300,-1,96,71,45,-1,346,289,234,-1,7,6,61,-1,18,13,5,-1,102,143,176,-1,371,384,376,-1,141,232,157,-1,168,223,263,-1,251,129,108,-1,119,246,97,-1,323,246,283,-1,262,283,146,-1,160,157,167,-1,271,240,309,-1,224,122,169,-1,286,258,153,-1,136,122,166,-1,287,136,280,-1,126,136,287,-1,106,267,167,-1,206,207,135,-1,150,84,125,-1,46,39,44,-1,75,91,41,-1,277,265,215,-1,249,70,79,-1,107,132,296,-1,340,331,334,-1,216,247,266,-1,121,239,219,-1,314,219,336,-1,163,137,147,-1,230,234,100,-1,147,140,177,-1,177,178,147,-1,137,140,147,-1,249,307,70,-1,177,269,178,-1,277,215,228,-1,40,127,150,-1,75,50,174,-1,174,148,264,-1,128,156,86,-1,55,56,53,-1,152,92,279,-1,311,125,61,-1,64,136,126,-1,292,267,106,-1,325,324,333,-1,166,224,290,-1,327,243,303,-1,320,297,292,-1,65,64,126,-1,240,123,135,-1,318,303,243,-1,69,97,260,-1,105,142,76,-1,63,51,60,-1,220,159,96,-1,220,246,159,-1,85,139,59,-1,88,57,105,-1,260,323,322,-1,250,262,146,-1,139,85,71,-1,300,276,245,-1,112,158,140,-1,227,181,265,-1,16,42,12,-1,102,114,223,-1,223,130,102,-1,318,290,341,-1,358,361,307,-1,382,329,383,-1,276,180,245,-1,250,146,80,-1,105,76,88,-1,246,119,159,-1,96,168,220,-1,60,69,63,-1,105,301,142,-1,260,246,323,-1,309,240,135,-1,292,268,320,-1,290,356,166,-1,333,332,325,-1,292,106,268,-1,126,287,325,-1,86,92,152,-1,61,306,311,-1,92,255,279,-1,55,53,49,-1,128,86,152,-1,264,285,174,-1,174,238,75,-1,40,150,311,-1,40,41,127,-1,228,299,277,-1,269,277,178,-1,307,248,70,-1,328,278,288,-1,334,339,340,-1,314,345,298,-1,137,100,140,-1,230,100,137,-1,147,90,163,-1,70,248,349,-1,314,149,219,-1,121,219,98,-1,216,288,247,-1,340,328,331,-1,107,296,216,-1,329,249,79,-1,216,296,288,-1,277,269,265,-1,46,44,49,-1,49,44,55,-1,86,109,53,-1,311,150,125,-1,206,135,123,-1,106,167,87,-1,99,136,64,-1,280,319,287,-1,258,117,153,-1,224,166,122,-1,167,257,160,-1,262,294,283,-1,97,246,260,-1,119,97,68,-1,220,263,246,-1,233,251,108,-1,263,220,168,-1,80,146,114,-1,157,160,141,-1,365,371,376,-1,101,102,176,-1,18,24,13,-1,273,269,231,-1,28,31,84,-1,373,377,343,-1,169,300,254,-1,327,351,364,-1,327,303,351,-1,135,276,309,-1,135,134,276,-1,101,114,102,-1,80,114,101,-1,71,37,45,-1,71,85,37,-1,58,18,15,-1,58,83,18,-1,165,62,38,-1,165,182,62,-1,304,365,286,-1,304,371,365,-1,275,217,326,-1,214,217,275,-1,358,249,372,-1,307,249,358,-1,118,140,100,-1,140,118,112,-1,84,32,28,-1,84,81,32,-1,375,316,312,-1,316,375,381,-1,184,321,337,-1,184,242,321,-1,22,77,14,-1,115,77,22,-1,187,144,66,-1,194,144,187,-1,110,188,89,-1,110,189,188,-1,355,337,342,-1,352,337,355,-1,48,72,66,-1,48,43,72,-1,12,4,2,-1,12,15,4,-1,48,33,43,-1,48,36,33,-1,8,1,3,-1,8,6,1,-1,31,26,23,-1,31,28,26,-1,134,180,276,-1,134,154,180,-1,54,130,78,-1,130,54,116,-1,52,32,67,-1,32,52,29,-1,273,222,244,-1,273,231,222,-1,173,112,118,-1,112,173,138,-1,363,353,360,-1,363,359,353,-1,388,387,389,-1,388,385,387,-1,369,355,354,-1,370,355,369,-1,366,372,378,-1,358,372,366,-1,386,375,380,-1,381,375,386,-1,245,138,173,-1,245,180,138,-1,2,1,0,-1,4,1,2,-1,354,342,338,-1,354,355,342,-1,379,364,368,-1,373,364,379,-1,154,210,171,-1,154,211,210,-1,52,116,54,-1,120,116,52,-1,21,11,23,-1,21,10,11,-1,13,19,9,-1,13,20,19,-1,186,89,188,-1,72,89,186,-1,57,251,233,-1,57,88,251,-1,103,221,274,-1,103,104,221,-1,59,175,42,-1,139,175,59,-1,274,182,165,-1,274,221,182,-1,71,119,139,-1,96,119,71,-1,96,159,119,-1,233,51,57,-1,235,51,233,-1,260,301,105,-1,301,260,322,-1,284,142,301,-1,284,232,142,-1,141,204,212,-1,141,160,204,-1,294,203,305,-1,294,205,203,-1,282,292,297,-1,292,281,267,-1,282,281,292,-1,325,319,324,-1,325,287,319,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl4disk_Geo_5_175_normalIndex_2()
		{
			int[] value = {151,304,155,-1,330,304,151,-1,218,324,319,-1,218,151,324,-1,332,320,268,-1,333,320,332,-1,99,123,240,-1,99,94,123,-1,281,185,257,-1,172,185,281,-1,74,202,201,-1,202,74,87,-1,194,229,144,-1,199,229,194,-1,115,291,77,-1,256,291,115,-1,53,92,86,-1,92,53,56,-1,53,124,49,-1,124,53,109,-1,86,226,109,-1,156,226,86,-1,156,193,226,-1,193,156,191,-1,124,264,148,-1,264,124,241,-1,295,174,285,-1,174,295,238,-1,272,39,306,-1,39,272,44,-1,50,41,40,-1,50,75,41,-1,228,295,299,-1,295,228,238,-1,127,179,81,-1,170,179,127,-1,107,242,184,-1,242,107,161,-1,113,312,316,-1,312,113,95,-1,334,131,95,-1,131,334,331,-1,195,145,121,-1,192,145,195,-1,340,239,261,-1,340,344,239,-1,339,95,113,-1,334,95,339,-1,344,349,336,-1,349,344,348,-1,259,349,248,-1,259,345,349,-1,90,198,93,-1,90,197,198,-1,178,90,147,-1,90,178,197,-1,137,298,230,-1,298,137,163,-1,298,149,314,-1,298,163,149,-1,70,348,79,-1,70,349,348,-1,340,348,344,-1,340,339,348,-1,219,93,98,-1,149,93,219,-1,121,261,239,-1,145,261,121,-1,193,247,164,-1,191,247,193,-1,164,288,278,-1,288,164,247,-1,261,328,340,-1,278,328,261,-1,296,328,288,-1,331,328,296,-1,95,270,312,-1,270,95,131,-1,161,194,242,-1,194,161,199,-1,150,81,84,-1,127,81,150,-1,41,170,127,-1,91,170,41,-1,40,46,50,-1,39,46,40,-1,291,44,272,-1,44,291,55,-1,148,49,124,-1,148,46,49,-1,241,195,264,-1,195,241,192,-1,256,55,291,-1,56,55,256,-1,77,272,73,-1,291,272,77,-1,144,279,213,-1,229,279,144,-1,94,206,123,-1,205,206,94,-1,167,202,87,-1,157,202,167,-1,257,267,281,-1,267,257,167,-1,99,82,94,-1,99,64,82,-1,155,324,151,-1,155,333,324,-1,166,280,136,-1,356,280,166,-1,225,117,258,-1,225,111,117,-1,330,218,343,-1,330,151,218,-1,305,201,315,-1,305,203,201,-1,212,200,183,-1,212,204,200,-1,322,284,301,-1,315,284,322,-1,263,283,246,-1,263,146,283,-1,139,68,175,-1,119,68,139,-1,251,165,129,-1,251,274,165,-1,175,58,42,-1,175,237,58,-1,33,20,34,-1,19,20,33,-1,10,0,11,-1,10,2,0,-1,54,29,52,-1,54,35,29,-1,244,236,176,-1,222,236,244,-1,359,341,353,-1,351,341,359,-1,302,186,188,-1,186,302,317,-1,374,384,371,-1,374,385,384,-1,387,373,379,-1,377,373,387,-1,210,236,222,-1,210,211,236,-1,388,381,386,-1,383,381,388,-1,363,358,366,-1,361,358,363,-1,370,376,380,-1,370,369,376,-1,389,379,378,-1,389,387,379,-1,360,335,347,-1,360,353,335,-1,171,112,138,-1,158,112,171,-1,273,162,227,-1,273,244,162,-1,29,28,32,-1,28,29,26,-1,116,102,130,-1,102,116,143,-1,134,211,154,-1,134,209,211,-1,17,23,11,-1,17,31,23,-1,14,3,9,-1,14,8,3,-1,38,47,34,-1,38,62,47,-1,5,15,18,-1,15,5,4,-1,21,37,25,-1,37,21,30,-1,317,337,321,-1,337,317,342,-1,188,275,302,-1,189,275,188,-1,158,177,140,-1,177,158,208,-1,36,115,22,-1,133,115,36,-1,242,187,321,-1,242,194,187,-1,312,367,375,-1,312,270,367,-1,125,31,17,-1,125,84,31,-1,269,227,265,-1,269,273,227,-1,357,307,361,-1,308,307,357,-1,189,214,275,-1,200,214,189,-1,362,286,365,-1,258,286,362,-1,182,110,62,-1,182,183,110,-1,24,83,108,-1,83,24,18,-1,37,59,25,-1,85,59,37,-1,101,250,80,-1,250,101,252,-1,271,276,300,-1,271,309,276,-1,351,318,341,-1,303,318,351,-1,343,364,373,-1,343,327,364,-1,310,169,254,-1,224,169,310,-1,134,207,209,-1,135,207,134,-1,78,96,45,-1,168,96,78,-1,42,15,12,-1,42,58,15,-1,38,129,165,-1,129,38,27,-1,371,330,374,-1,304,330,371,-1,326,225,350,-1,217,225,326,-1,372,329,382,-1,249,329,372,-1,100,289,118,-1,100,234,289,-1,81,67,32,-1,81,179,67,-1,329,381,383,-1,329,316,381,-1,253,337,352,-1,253,184,337,-1,73,14,77,-1,73,8,14,-1,66,213,48,-1,144,213,66,-1,62,89,47,-1,62,110,89,-1,338,350,354,-1,326,350,338,-1,186,66,72,-1,187,66,186,-1,16,2,10,-1,16,12,2,-1,24,20,13,-1,24,27,20,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl4disk_Geo_5_175_normalIndex_3()
		{
			int[] value = {22,33,36,-1,22,19,33,-1,6,0,1,-1,6,7,0,-1,254,335,310,-1,254,293,335,-1,176,252,101,-1,252,176,236,-1,78,35,54,-1,78,45,35,-1,67,120,52,-1,67,181,120,-1,208,222,231,-1,208,210,222,-1,313,118,289,-1,118,313,173,-1,359,366,368,-1,363,366,359,-1,385,386,384,-1,388,386,385,-1,357,347,346,-1,357,360,347,-1,382,378,372,-1,382,389,378,-1,380,367,370,-1,375,367,380,-1,293,173,313,-1,245,173,293,-1,351,368,364,-1,351,359,368,-1,354,362,369,-1,350,362,354,-1,369,365,376,-1,362,365,369,-1,154,138,180,-1,138,154,171,-1,120,143,116,-1,162,143,120,-1,23,30,21,-1,26,30,23,-1,9,5,13,-1,3,5,9,-1,47,72,43,-1,47,89,72,-1,263,114,146,-1,114,263,223,-1,88,274,251,-1,88,103,274,-1,105,69,260,-1,69,105,63,-1,235,108,83,-1,235,233,108,-1,221,183,182,-1,221,212,183,-1,60,235,237,-1,60,51,235,-1,305,283,294,-1,305,323,283,-1,142,141,104,-1,232,141,142,-1,202,232,284,-1,232,202,157,-1,206,294,262,-1,294,206,205,-1,271,122,240,-1,169,122,271,-1,111,297,117,-1,111,282,297,-1,325,268,126,-1,332,268,325,-1,286,155,304,-1,286,153,155,-1,214,172,217,-1,214,185,172,-1,319,243,218,-1,243,319,280,-1,99,122,136,-1,99,240,122,-1,87,65,106,-1,65,87,74,-1,200,185,214,-1,200,204,185,-1,201,82,74,-1,201,203,82,-1,133,256,115,-1,133,255,256,-1,229,152,279,-1,128,152,229,-1,241,109,226,-1,241,124,109,-1,226,192,241,-1,192,226,193,-1,285,198,295,-1,285,196,198,-1,306,73,272,-1,306,61,73,-1,198,299,295,-1,198,197,299,-1,179,215,265,-1,215,179,170,-1,132,184,253,-1,184,132,107,-1,266,199,161,-1,199,266,190,-1,331,132,131,-1,132,331,296,-1,247,190,266,-1,247,191,190,-1,98,195,121,-1,195,98,196,-1,336,239,344,-1,239,336,219,-1,348,113,79,-1,339,113,348,-1,345,336,349,-1,345,314,336,-1,93,163,90,-1,149,163,93,-1,234,259,308,-1,259,234,230,-1,308,248,307,-1,248,308,259,-1,230,345,259,-1,345,230,298,-1,316,79,113,-1,316,329,79,-1,198,98,93,-1,198,196,98,-1,192,164,145,-1,193,164,192,-1,278,145,164,-1,278,261,145,-1,216,161,107,-1,161,216,266,-1,131,253,270,-1,131,132,253,-1,299,178,277,-1,197,178,299,-1,91,215,170,-1,228,215,91,-1,238,91,75,-1,238,228,91,-1,39,311,306,-1,39,40,311,-1,148,50,46,-1,174,50,148,-1,195,285,264,-1,196,285,195,-1,190,156,128,-1,190,191,156,-1,255,56,256,-1,92,56,255,-1,199,128,229,-1,190,128,199,-1,213,255,133,-1,279,255,213,-1,203,94,82,-1,203,205,94,-1,204,257,185,-1,204,160,257,-1,64,74,82,-1,64,65,74,-1,106,126,268,-1,65,126,106,-1,333,153,320,-1,153,333,155,-1,280,318,243,-1,280,290,318,-1,290,280,356,-1,217,111,225,-1,217,172,111,-1,218,327,343,-1,327,218,243,-1,172,282,111,-1,172,281,282,-1,117,320,153,-1,117,297,320,-1,250,206,262,-1,250,207,206,-1,202,315,201,-1,284,315,202,-1,212,104,141,-1,104,212,221,-1,315,323,305,-1,315,322,323,-1,57,63,105,-1,63,57,51,-1,60,175,68,-1,60,237,175,-1,83,237,235,-1,237,83,58,-1,68,69,60,-1,68,97,69,-1,76,103,88,-1,104,76,142,-1,76,104,103,-1,43,34,47,-1,33,34,43,-1,3,4,5,-1,1,4,3,-1,35,26,29,-1,35,30,26,-1,244,143,162,-1,244,176,143,-1,353,310,335,-1,341,310,353,-1,317,338,342,-1,317,302,338,-1,385,377,387,-1,374,377,385,-1,293,347,335,-1,293,313,347,-1,355,367,352,-1,367,355,370,-1,389,383,388,-1,382,383,389,-1,361,360,357,-1,361,363,360,-1,384,380,376,-1,386,380,384,-1,378,368,366,-1,378,379,368,-1,313,346,347,-1,289,346,313,-1,171,208,158,-1,208,171,210,-1,181,162,120,-1,181,227,162,-1,45,30,35,-1,45,37,30,-1,211,252,236,-1,209,252,211,-1,254,245,293,-1,254,300,245,-1,11,7,17,-1,7,11,0,-1,22,9,19,-1,22,14,9,-1,27,34,20,-1,27,38,34,-1,25,10,21,-1,25,16,10,-1,321,186,317,-1,321,187,186,-1,302,326,338,-1,275,326,302,-1,177,231,269,-1,177,208,231,-1,48,133,36,-1,213,133,48,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl4disk_Geo_5_175_normalIndex_4()
		{
			int[] value = {8,61,6,-1,73,61,8,-1,270,352,367,-1,270,253,352,-1,61,17,7,-1,61,125,17,-1,181,179,265,-1,179,181,67,-1,346,308,357,-1,234,308,346,-1,183,189,110,-1,183,200,189,-1,258,350,225,-1,258,362,350,-1,374,343,377,-1,330,343,374,-1,108,27,24,-1,108,129,27,-1,25,42,16,-1,59,42,25,-1,223,78,130,-1,223,168,78,-1,207,252,209,-1,207,250,252,-1,290,310,341,-1,290,224,310,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl5_Geo_5_181_coordIndex_2()
		{
			int[] value = {178,598,599,-1,600,601,602,-1,598,603,599,-1,603,604,605,-1,606,607,608,-1,546,609,536,-1,580,610,611,-1,612,613,614,-1,615,616,617,-1,618,619,620,-1,621,622,623,-1,624,625,626,-1,596,627,628,-1,629,630,631,-1,632,633,634,-1,635,636,637,-1,638,639,640,-1,641,642,643,-1,644,645,646,-1,647,648,649,-1,650,648,651,-1,639,651,640,-1,652,653,654,-1,655,656,657,-1,653,652,658,-1,659,660,652,-1,659,661,660,-1,662,663,664,-1,665,666,667,-1,584,668,585,-1,669,670,671,-1,483,672,673,-1,631,674,629,-1,491,675,676,-1,677,578,457,-1,678,679,680,-1,679,681,682,-1,392,683,684,-1,685,474,586,-1,686,687,688,-1,689,442,690,-1,691,553,555,-1,692,556,693,-1,694,695,696,-1,697,698,694,-1,699,700,701,-1,702,454,703,-1,704,705,706,-1,699,701,707,-1,636,707,708,-1,709,710,711,-1,706,712,704,-1,525,713,635,-1,714,715,637,-1,716,717,430,-1,717,718,431,-1,719,720,721,-1,681,722,723,-1,724,725,726,-1,588,727,685,-1,728,722,729,-1,445,730,731,-1,732,733,734,-1,735,736,535,-1,576,737,438,-1,738,739,740,-1,741,742,703,-1,743,744,745,-1,557,746,747,-1,557,747,554,-1,748,749,750,-1,751,752,753,-1,754,464,466,-1,463,526,755,-1,756,757,758,-1,759,526,525,-1,735,760,736,-1,761,762,763,-1,764,765,766,-1,767,768,769,-1,770,771,772,-1,654,653,773,-1,583,774,654,-1,775,776,777,-1,778,779,780,-1,781,782,377,-1,783,784,377,-1,785,786,787,-1,788,789,790,-1,791,792,793,-1,794,795,796,-1,797,798,799,-1,391,692,693,-1,800,795,435,-1,400,801,398,-1,802,803,804,-1,794,804,803,-1,607,606,436,-1,606,437,436,-1,805,806,689,-1,546,543,542,-1,806,805,807,-1,736,760,808,-1,809,808,810,-1,811,458,732,-1,466,465,812,-1,452,813,814,-1,815,700,816,-1,817,818,819,-1,820,821,569,-1,567,544,543,-1,822,823,824,-1,825,817,700,-1,826,827,450,-1,524,528,827,-1,459,828,829,-1,830,831,808,-1,696,832,807,-1,833,799,834,-1,532,834,530,-1,835,836,837,-1,838,839,840,-1,606,433,437,-1,841,842,443,-1,843,844,845,-1,824,823,846,-1,394,435,683,-1,746,2,847,-1,820,799,833,-1,479,848,791,-1,849,850,787,-1,638,786,785,-1,631,630,851,-1,631,178,599,-1,852,853,854,-1,855,780,856,-1,857,858,779,-1,859,775,657,-1,860,667,861,-1,862,863,767,-1,765,864,865,-1,866,867,760,-1,721,757,756,-1,720,868,473,-1,869,757,870,-1,871,526,759,-1,871,872,478,-1,687,438,688,-1,752,873,575,-1,874,875,876,-1,877,878,879,-1,688,880,881,-1,882,883,884,-1,443,842,885,-1,886,887,801,-1,745,888,889,-1,694,890,891,-1,703,742,892,-1,878,741,893,-1,894,895,896,-1,897,898,899,-1,900,752,901,-1,864,902,863,-1,903,904,905,-1,906,532,531,-1,460,829,529,-1,905,907,531,-1,724,430,725,-1,722,679,908,-1,721,756,909,-1,910,911,912,-1,913,914,431,-1,494,915,717,-1,914,728,727,-1,916,917,776,-1,916,918,919,-1,468,915,494,-1,776,917,920,-1,715,714,921,-1,715,922,637,-1,525,923,922,-1,712,518,517,-1,711,801,924,-1,925,803,886,-1,701,708,707,-1,516,926,713,-1,891,890,927,-1,893,703,454,-1,741,878,928,-1,816,705,704,-1,799,798,885,-1,434,433,840,-1,691,929,553,-1,438,440,577,-1,873,930,881,-1,931,679,678,-1,736,809,535,-1,734,871,539,-1,445,444,932,-1,682,681,919,-1,680,682,933,-1,934,731,678,-1,578,577,935,-1,676,936,848,-1,672,937,783,-1,670,938,671,-1,939,581,940,-1,612,488,941,-1,942,584,836,-1,943,944,945,-1,895,738,740,-1,661,946,947,-1,661,948,949,-1,652,660,658,-1,656,652,950,-1,951,648,650,-1,952,953,954,-1,955,956,957,-1,958,789,959,-1,648,647,960,-1,952,961,962,-1,963,959,789,-1,637,636,964,-1,708,817,819,-1,965,595,597,-1,966,967,968,-1,623,969,616,-1,970,617,971,-1,972,973,974,-1,484,582,975,-1,976,977,978,-1,602,784,604,-1,598,600,979,-1,782,781,601,-1,980,981,982,-1,983,590,941,-1,984,566,593,-1,568,565,594,-1,588,985,726,-1,986,987,988,-1,489,582,484,-1,488,612,581,-1,590,589,612,-1,590,983,479,-1,576,578,677,-1,570,573,737,-1,989,990,753,-1,930,873,810,-1,548,550,561,-1,549,690,441,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl5_Geo_5_181_coordIndex_3()
		{
			int[] value = {561,991,562,-1,559,551,552,-1,693,556,992,-1,555,847,434,-1,991,441,551,-1,548,993,549,-1,994,995,996,-1,537,997,446,-1,998,907,535,-1,811,732,533,-1,733,755,871,-1,999,811,662,-1,1000,461,517,-1,813,519,521,-1,1001,827,1002,-1,714,509,921,-1,506,1003,507,-1,505,1004,502,-1,499,506,500,-1,496,1005,497,-1,1006,1007,504,-1,1008,500,496,-1,492,724,726,-1,492,494,716,-1,1009,1010,1011,-1,670,941,488,-1,670,669,941,-1,377,68,1012,-1,1013,858,958,-1,790,1014,792,-1,1014,790,485,-1,791,848,850,-1,483,835,1015,-1,481,480,580,-1,1016,1017,1018,-1,587,1019,985,-1,1020,1021,911,-1,1022,493,492,-1,1023,815,1024,-1,564,846,1025,-1,664,1026,1027,-1,459,458,999,-1,1028,1029,1030,-1,739,751,875,-1,450,449,1031,-1,739,738,901,-1,990,1032,876,-1,990,989,1033,-1,1034,807,1035,-1,841,769,1036,-1,435,795,794,-1,725,727,588,-1,494,493,469,-1,144,169,407,-1,1037,172,171,-1,425,1038,428,-1,39,38,97,-1,105,108,101,-1,419,1039,30,-1,1040,1041,1042,-1,274,411,412,-1,1043,360,12,-1,408,1044,1045,-1,410,109,111,-1,121,407,406,-1,160,1046,252,-1,1047,1048,1049,-1,276,1050,286,-1,0,285,187,-1,400,1051,1052,-1,1053,845,1054,-1,1055,1056,1057,-1,3,394,392,-1,335,2,336,-1,1058,388,429,-1,57,1059,1060,-1,1061,381,380,-1,1062,379,216,-1,1063,216,217,-1,178,851,1064,-1,176,1064,205,-1,1065,64,238,-1,65,1066,1067,-1,1068,1069,1070,-1,236,371,265,-1,1071,248,1072,-1,12,360,1073,-1,358,1074,1075,-1,1076,1077,353,-1,351,350,312,-1,1078,1079,313,-1,1080,1081,315,-1,1082,1083,1084,-1,51,1085,270,-1,347,346,1086,-1,344,148,327,-1,291,342,341,-1,346,1087,1088,-1,882,1089,1090,-1,1091,278,1092,-1,330,1093,1094,-1,1095,1096,1097,-1,1098,339,338,-1,290,1099,1100,-1,291,1101,342,-1,1102,1103,1104,-1,1105,259,1106,-1,325,1107,111,-1,29,1108,106,-1,110,322,324,-1,116,1109,1110,-1,1111,319,1112,-1,303,316,304,-1,1110,1113,1114,-1,54,1115,1116,-1,349,1117,1118,-1,310,351,312,-1,1119,50,1120,-1,305,1121,1122,-1,1123,1124,71,-1,305,304,1125,-1,370,1126,302,-1,1115,1127,266,-1,45,1128,71,-1,71,1124,45,-1,1116,1126,1129,-1,301,1130,84,-1,84,155,213,-1,1131,212,103,-1,1051,399,1132,-1,1133,1134,1135,-1,1136,288,294,-1,1137,1136,293,-1,1041,1138,1139,-1,1140,20,19,-1,340,342,1101,-1,1105,1100,1099,-1,294,288,428,-1,293,295,426,-1,405,1141,281,-1,1045,278,280,-1,128,277,0,-1,130,137,1142,-1,345,153,152,-1,330,329,333,-1,1143,1144,1086,-1,264,263,318,-1,112,415,414,-1,119,270,269,-1,1145,1146,320,-1,1127,267,266,-1,43,152,151,-1,151,261,1147,-1,1148,1149,1150,-1,253,375,254,-1,1151,194,158,-1,194,166,256,-1,1152,1153,161,-1,1154,367,1153,-1,1155,1156,1104,-1,242,240,241,-1,241,1157,1158,-1,1071,1157,241,-1,219,225,220,-1,1159,231,230,-1,1160,1161,1162,-1,383,1163,1164,-1,1068,1165,1069,-1,1166,1167,1159,-1,65,1168,1066,-1,383,226,381,-1,297,296,213,-1,287,428,288,-1,1169,173,175,-1,1170,1171,1172,-1,197,196,1173,-1,1174,1175,196,-1,1176,1177,1178,-1,157,1179,1180,-1,1095,1097,1181,-1,184,378,179,-1,1182,181,177,-1,180,1183,782,-1,1184,1185,1186,-1,1177,1187,202,-1,1149,256,166,-1,168,140,139,-1,171,141,143,-1,165,316,315,-1,161,251,1188,-1,253,157,159,-1,159,158,1189,-1,167,194,193,-1,166,58,57,-1,156,155,1190,-1,258,151,153,-1,347,150,147,-1,344,23,1191,-1,418,1144,1143,-1,136,122,124,-1,122,126,273,-1,1192,138,1193,-1,125,127,135,-1,279,133,1194,-1,1195,335,128,-1,127,126,1193,-1,123,1196,124,-1,1197,1113,1110,-1,1198,1109,116,-1,322,1199,113,-1,323,1200,114,-1,270,348,271,-1,245,114,246,-1,95,33,36,-1,96,38,37,-1,1201,105,1202,-1,1130,85,84,-1,90,89,83,-1,1203,1204,80,-1,78,1205,79,-1,74,88,75,-1,82,87,1206,-1,1207,1203,1208,-1,76,75,77,-1,1209,1080,73,-1,1210,1011,232,-1,1189,256,66,-1,1163,1069,1165,-1,1211,1190,382,-1,382,1190,1212,-1,1060,1061,1213,-1,1048,1180,255,-1,154,156,59,-1,1214,1215,1216,-1,1081,1217,1218,-1,54,56,309,-1,73,72,1209,-1,426,295,1038,-1,246,28,30,-1,44,1219,40,-1,1220,326,1221,-1,17,16,1222,-1,326,328,1156,-1,24,23,343,-1,22,1223,1191,-1,357,413,412,-1,361,360,1092,-1,7,1224,1225,-1,393,3,404,-1,0,5,4,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl5_Geo_5_181_coordIndex_4()
		{
			int[] value = {165,304,316,-1,1128,72,71,-1,47,1080,1209,-1,1054,1093,332,-1,0,4,1,-1,404,386,393,-1,7,1225,8,-1,1226,1076,352,-1,360,1043,1092,-1,358,357,412,-1,13,1074,411,-1,22,1191,23,-1,343,1227,24,-1,326,1156,1221,-1,1228,17,1222,-1,328,1229,1156,-1,1230,107,106,-1,30,27,246,-1,172,1055,170,-1,309,50,54,-1,1081,1231,1217,-1,1232,1214,1216,-1,154,59,190,-1,255,1049,1048,-1,1213,1148,1060,-1,1212,1233,382,-1,68,377,69,-1,232,1234,1210,-1,308,71,73,-1,315,306,73,-1,75,78,77,-1,1207,79,1203,-1,82,81,87,-1,88,90,75,-1,78,83,1205,-1,80,1235,1203,-1,1236,1237,81,-1,89,84,83,-1,293,300,1137,-1,424,96,37,-1,101,98,1202,-1,114,28,246,-1,270,102,348,-1,322,113,112,-1,1198,116,115,-1,1114,1238,1110,-1,189,407,121,-1,1239,1240,1241,-1,1192,136,124,-1,129,128,334,-1,335,334,128,-1,129,131,135,-1,1192,1193,136,-1,122,273,123,-1,147,153,347,-1,427,287,1057,-1,1190,1059,156,-1,1190,1211,1059,-1,57,1150,166,-1,194,167,166,-1,158,194,1189,-1,253,1179,157,-1,1242,1080,1243,-1,190,168,139,-1,1149,166,1150,-1,183,182,176,-1,179,378,1183,-1,1182,177,182,-1,179,1182,184,-1,185,187,1181,-1,320,1198,115,-1,1180,252,157,-1,1177,1176,1187,-1,1174,196,195,-1,196,1244,1173,-1,1245,1246,1176,-1,1170,1245,1171,-1,1169,175,1247,-1,213,155,297,-1,380,215,214,-1,383,227,226,-1,1168,1248,1066,-1,1159,1249,1166,-1,1164,227,383,-1,1162,1250,1160,-1,1159,230,1249,-1,220,228,1160,-1,1251,239,235,-1,1158,242,241,-1,1104,1103,1155,-1,1153,1252,1154,-1,1152,161,1188,-1,256,1189,194,-1,1151,158,1046,-1,1253,1254,1255,-1,375,62,254,-1,1148,1256,1149,-1,1147,43,151,-1,22,24,1106,-1,1127,268,267,-1,320,317,1145,-1,269,120,119,-1,112,114,415,-1,1086,1088,1143,-1,329,1224,333,-1,152,6,345,-1,130,1142,276,-1,0,1195,128,-1,1045,1092,278,-1,298,293,426,-1,294,428,1038,-1,1105,1099,1219,-1,340,1101,1257,-1,19,289,1140,-1,1139,1258,1041,-1,1133,401,1134,-1,1131,1117,212,-1,213,1117,301,-1,301,1259,1130,-1,1126,1259,1129,-1,1115,266,302,-1,302,371,370,-1,305,1125,1121,-1,71,308,1123,-1,307,305,1123,-1,1121,1260,1122,-1,1119,54,50,-1,55,54,1116,-1,54,1119,1115,-1,319,263,1112,-1,316,307,306,-1,110,324,325,-1,106,419,29,-1,110,109,321,-1,325,1261,1107,-1,1262,1263,1075,-1,328,327,417,-1,1106,1257,1105,-1,1104,1264,1102,-1,291,1140,1101,-1,1100,289,290,-1,1098,338,283,-1,1094,331,330,-1,399,1265,1133,-1,1091,126,278,-1,1090,883,882,-1,1088,1086,346,-1,291,341,1266,-1,1227,1220,1267,-1,148,1144,327,-1,346,345,8,-1,52,51,270,-1,1085,102,270,-1,1268,350,1269,-1,1080,1231,1081,-1,313,312,1078,-1,1118,1083,349,-1,102,32,31,-1,352,1076,353,-1,358,1075,1270,-1,12,1073,1262,-1,1072,1271,1071,-1,265,1272,236,-1,1212,1190,155,-1,1069,1273,1070,-1,1274,374,1275,-1,374,373,1275,-1,64,236,238,-1,1253,69,1254,-1,183,176,205,-1,176,178,1064,-1,1063,1276,216,-1,379,214,216,-1,380,1213,1061,-1,403,385,384,-1,1058,1045,388,-1,4,3,392,-1,845,397,1054,-1,1277,400,1052,-1,1091,1092,1043,-1,5,0,187,-1,277,276,286,-1,1047,1152,1048,-1,363,407,192,-1,363,365,407,-1,111,408,410,-1,408,1045,1058,-1,12,10,1043,-1,412,275,274,-1,1042,1278,1040,-1,29,419,30,-1,105,101,1202,-1,105,420,108,-1,428,1279,425,-1,1057,1056,42,-1,407,410,144,-1,1022,987,1280,-1,1281,889,843,-1,794,436,435,-1,760,867,830,-1,1036,842,841,-1,1034,1035,766,-1,1282,865,1283,-1,990,1033,1284,-1,876,1285,990,-1,739,901,751,-1,826,450,1031,-1,738,663,901,-1,529,464,754,-1,999,1027,459,-1,999,664,1027,-1,700,699,816,-1,1024,1286,1023,-1,911,472,1020,-1,1019,1287,985,-1,1016,1018,1288,-1,611,481,580,-1,483,482,835,-1,791,850,849,-1,485,487,1014,-1,1012,938,377,-1,938,490,377,-1,669,491,941,-1,1011,1210,1009,-1,492,987,1022,-1,1008,496,495,-1,1006,510,1007,-1,496,507,1005,-1,499,508,506,-1,502,501,505,-1,1007,512,1289,-1,506,714,1003,-1,926,706,705,-1,813,521,814,-1,1001,523,524,-1,999,458,811,-1,755,526,871,-1,535,534,998,-1,538,537,446,-1,994,1290,1291,-1,545,543,546,-1,1292,547,476,-1,548,561,1293,-1,747,555,554,-1,555,747,847,-1,559,558,554,-1,561,562,1293,-1,549,441,550,-1,737,576,570,-1,824,819,818,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getl5_Geo_5_181_coordIndex_5()
		{
			int[] value = {480,1014,579,-1,479,591,590,-1,613,612,589,-1,488,581,489,-1,489,484,673,-1,942,668,584,-1,726,725,588,-1,588,587,985,-1,984,593,611,-1,983,941,676,-1,973,620,619,-1,599,603,605,-1,781,784,602,-1,603,598,979,-1,604,979,602,-1,976,606,608,-1,538,446,445,-1,484,975,482,-1,1294,974,973,-1,970,971,1295,-1,969,617,616,-1,974,615,1296,-1,967,1296,968,-1,965,597,1297,-1,964,579,637,-1,786,640,787,-1,789,788,963,-1,962,1298,952,-1,858,1013,779,-1,959,648,960,-1,959,960,958,-1,957,1299,955,-1,952,954,961,-1,956,649,951,-1,656,950,657,-1,947,948,661,-1,661,659,946,-1,895,740,896,-1,945,1300,943,-1,584,945,836,-1,941,590,612,-1,581,612,940,-1,672,783,673,-1,983,676,848,-1,1301,1032,1284,-1,934,1302,731,-1,933,1303,680,-1,919,918,682,-1,932,730,445,-1,871,540,539,-1,809,811,535,-1,881,880,873,-1,577,576,438,-1,929,563,553,-1,840,555,434,-1,885,842,799,-1,1304,696,805,-1,816,699,705,-1,928,899,741,-1,454,453,893,-1,927,831,891,-1,705,707,926,-1,926,635,713,-1,886,1305,925,-1,517,812,712,-1,525,922,1306,-1,637,579,714,-1,921,920,715,-1,920,921,776,-1,494,469,468,-1,916,919,1307,-1,776,775,916,-1,914,727,431,-1,717,716,494,-1,717,431,430,-1,431,718,913,-1,911,1021,912,-1,758,1308,922,-1,1309,1021,1310,-1,1291,995,994,-1,727,725,432,-1,722,908,1311,-1,994,997,537,-1,905,735,907,-1,529,1312,460,-1,530,903,905,-1,1301,897,899,-1,896,1313,894,-1,878,893,879,-1,892,702,703,-1,695,694,891,-1,977,1314,978,-1,745,744,888,-1,885,441,443,-1,884,1315,882,-1,881,1316,688,-1,879,1317,877,-1,752,575,753,-1,880,688,737,-1,871,759,872,-1,1318,1319,1320,-1,473,721,720,-1,758,1319,1308,-1,463,462,526,-1,1321,866,760,-1,765,865,766,-1,767,769,862,-1,667,949,861,-1,775,852,657,-1,579,1014,487,-1,779,778,857,-1,854,655,852,-1,938,1012,671,-1,631,599,605,-1,631,851,178,-1,638,785,1322,-1,787,788,849,-1,791,793,479,-1,479,983,848,-1,804,796,1323,-1,820,1324,799,-1,392,394,683,-1,845,1053,843,-1,606,1325,433,-1,839,691,840,-1,1015,835,837,-1,975,939,585,-1,1302,543,545,-1,532,544,834,-1,799,1326,834,-1,807,805,696,-1,808,760,830,-1,459,829,460,-1,1001,524,827,-1,528,527,827,-1,826,1002,827,-1,1327,519,1024,-1,700,815,825,-1,594,1025,1328,-1,543,592,567,-1,613,543,614,-1,1024,815,816,-1,452,814,1329,-1,465,522,812,-1,810,900,809,-1,808,809,736,-1,806,807,1034,-1,1330,1331,1282,-1,544,821,834,-1,771,543,1302,-1,689,1304,805,-1,803,925,794,-1,1323,802,804,-1,400,924,801,-1,394,800,435,-1,2,392,684,-1,391,390,692,-1,1324,797,799,-1,794,796,804,-1,790,849,788,-1,787,850,785,-1,377,490,783,-1,784,781,377,-1,669,671,1012,-1,1332,655,854,-1,778,780,855,-1,584,583,654,-1,773,1300,654,-1,772,1333,770,-1,768,1036,769,-1,764,766,1035,-1,763,1334,761,-1,735,1321,760,-1,759,525,1306,-1,757,1319,758,-1,1335,754,466,-1,737,688,438,-1,751,753,1285,-1,878,877,928,-1,750,1336,748,-1,558,557,554,-1,885,552,441,-1,746,847,747,-1,743,745,1337,-1,741,703,893,-1,901,752,751,-1,531,530,905,-1,535,907,735,-1,734,533,732,-1,531,907,906,-1,731,538,445,-1,908,931,730,-1,722,1311,729,-1,430,432,725,-1,679,931,908,-1,681,679,722,-1,756,1017,1020,-1,721,909,719,-1,716,430,724,-1,431,727,432,-1,509,776,921,-1,923,637,922,-1,635,923,525,-1,922,1308,1306,-1,706,518,712,-1,711,924,709,-1,964,636,708,-1,699,707,705,-1,517,516,1000,-1,694,1304,697,-1,694,696,1304,-1,798,992,885,-1,840,691,555,-1,689,806,1331,-1,733,871,734,-1,680,679,682,-1,680,934,678,-1,491,676,941,-1,631,1338,674,-1,673,484,483,-1,975,585,668,-1,1339,665,667,-1,664,999,662,-1,660,661,658,-1,653,658,1340,-1,655,657,852,-1,652,654,774,-1,639,1341,651,-1,649,648,951,-1,647,649,1342,-1,959,963,648,-1,1343,644,646,-1,1344,641,643,-1,951,650,1345,-1,638,640,786,-1,635,637,923,-1,1346,632,634,-1,629,1347,630,-1,1348,1349,1350,-1,1351,1352,1295,-1,623,616,621,-1,1353,618,620,-1,1294,615,974,-1,615,617,970,-1,940,612,614,-1,482,975,835,-1,610,984,611,-1,546,542,609,-1,976,608,977,-1,604,603,979,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getl5_Geo_5_181_coordIndex_6()
		{
			int[] value = {979,600,602,-1,602,601,781,-1,596,628,1354,-1,595,627,596,-1,591,481,593,-1,564,1025,594,-1,593,566,567,-1,588,685,586,-1,942,975,668,-1,940,585,939,-1,611,593,481,-1,480,479,793,-1,753,990,1285,-1,575,737,573,-1,1355,570,572,-1,935,1030,455,-1,984,564,566,-1,441,690,442,-1,441,991,561,-1,559,554,551,-1,692,1356,556,-1,434,847,2,-1,548,1293,993,-1,444,547,1292,-1,545,536,538,-1,532,542,544,-1,994,537,1290,-1,540,477,476,-1,446,997,1357,-1,536,1290,537,-1,907,998,996,-1,535,811,533,-1,529,829,528,-1,450,827,527,-1,462,713,525,-1,523,1358,522,-1,519,1327,520,-1,507,1003,1005,-1,510,512,1007,-1,509,714,506,-1,500,507,496,-1,504,1007,505,-1,1359,501,503,-1,498,500,1008,-1,495,497,1360,-1,492,726,987,-1,492,716,724,-1,856,853,1361,-1,937,1338,1362,-1,481,591,479,-1,1020,1310,1021,-1,478,872,476,-1,475,1363,473,-1,911,470,472,-1,1280,467,469,-1,935,822,1364,-1,1024,519,813,-1,1000,516,713,-1,463,1365,461,-1,460,732,458,-1,1027,1026,1366,-1,1032,990,1284,-1,1286,452,454,-1,451,1367,449,-1,448,440,439,-1,1368,1283,862,-1,1330,1368,442,-1,438,687,439,-1,437,683,435,-1,2,684,433,-1,1281,843,1053,-1,1053,1369,1281,-1,192,407,193,-1,426,1038,425,-1,423,37,1370,-1,421,100,99,-1,419,420,1039,-1,1200,28,114,-1,416,415,417,-1,415,416,352,-1,413,405,275,-1,1371,407,189,-1,272,275,405,-1,404,187,186,-1,386,1134,401,-1,384,401,403,-1,399,1051,400,-1,845,395,397,-1,393,800,394,-1,1194,389,391,-1,388,1045,280,-1,385,393,386,-1,1059,1211,1060,-1,381,1061,382,-1,379,1213,380,-1,69,1253,70,-1,1065,238,1372,-1,374,1373,372,-1,368,234,366,-1,363,1374,364,-1,360,362,1073,-1,358,1270,359,-1,356,1375,354,-1,414,352,324,-1,349,1083,350,-1,344,327,326,-1,339,1376,337,-1,131,129,334,-1,334,336,132,-1,332,1093,330,-1,329,331,1377,-1,1155,1221,1156,-1,345,347,153,-1,112,414,324,-1,271,1200,323,-1,115,1378,317,-1,316,303,307,-1,319,318,263,-1,314,1112,263,-1,56,1215,351,-1,311,310,313,-1,48,309,311,-1,305,1122,1123,-1,307,1123,308,-1,371,302,265,-1,1130,370,85,-1,1117,213,212,-1,103,211,34,-1,1131,1118,1117,-1,299,94,300,-1,288,1136,296,-1,293,1136,294,-1,300,293,298,-1,20,1140,291,-1,297,191,288,-1,294,1038,295,-1,286,337,284,-1,1379,281,283,-1,1194,133,389,-1,128,130,276,-1,346,8,1225,-1,163,1380,164,-1,1,4,392,-1,268,263,262,-1,267,1381,265,-1,264,1382,262,-1,258,260,261,-1,256,1149,257,-1,207,1383,61,-1,253,255,1179,-1,1253,1255,70,-1,160,251,161,-1,248,1384,249,-1,247,1229,245,-1,242,1158,243,-1,1251,241,239,-1,236,1272,237,-1,233,366,234,-1,230,232,1385,-1,1386,225,219,-1,229,1387,228,-1,222,1388,224,-1,1389,221,223,-1,213,296,211,-1,1390,208,210,-1,205,1064,206,-1,1391,1392,1393,-1,1394,1395,1396,-1,1174,1397,1398,-1,197,1173,201,-1,1399,198,200,-1,1176,1246,1187,-1,195,197,1246,-1,192,194,1151,-1,1048,252,1180,-1,190,139,191,-1,188,1371,189,-1,1097,185,1181,-1,1182,182,184,-1,179,181,1182,-1,1183,180,179,-1,1400,203,204,-1,173,204,174,-1,168,59,58,-1,170,141,171,-1,144,140,168,-1,163,165,1218,-1,251,252,1188,-1,1046,160,1151,-1,59,168,190,-1,1059,57,156,-1,343,23,344,-1,150,347,148,-1,145,147,1401,-1,1147,44,43,-1,141,170,139,-1,9,273,126,-1,136,1193,126,-1,127,129,135,-1,133,1402,389,-1,2,335,1195,-1,1196,1192,124,-1,117,189,121,-1,1238,116,1110,-1,1239,53,119,-1,1403,1109,1198,-1,116,1238,117,-1,1197,1199,322,-1,113,323,114,-1,108,419,106,-1,104,420,105,-1,103,34,32,-1,100,1404,98,-1,96,1405,97,-1,1406,1407,1408,-1,81,1237,86,-1,83,85,1205,-1,75,90,83,-1,1235,80,82,-1,77,79,1207,-1,1409,74,76,-1,1080,315,73,-1,306,308,73,-1,66,68,69,-1,376,159,1189,-1,1212,1410,1233,-1,1179,255,1180,-1,59,156,57,-1,53,1239,51,-1,309,48,50,-1,1128,45,47,-1,40,42,43,-1,422,99,107,-1,31,33,1411,-1,28,1200,29,-1,261,260,1147,-1,20,1370,21,-1,104,16,18,-1,7,6,15,-1,1198,320,1146,-1,1091,9,126,-1,6,8,345,-1,5,404,3,-1,1195,0,2,-1,303,305,307,-1,1209,1128,47,-1,1128,1209,72,-1,1369,1054,332,-1,1053,1054,1369,-1,329,1225,1224,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getl5_Geo_5_181_coordIndex_7()
		{
			int[] value = {329,1412,1225,-1,1043,9,1091,-1,9,1043,10,-1,357,1413,413,-1,357,354,1413,-1,146,22,258,-1,146,1223,22,-1,44,260,1219,-1,44,1147,260,-1,292,1222,423,-1,292,1228,1222,-1,1414,18,25,-1,1414,104,18,-1,39,1370,37,-1,21,1370,39,-1,1415,1269,1145,-1,1415,1268,1269,-1,1215,55,1216,-1,1215,56,55,-1,1416,1417,208,-1,1416,1418,1417,-1,1419,250,249,-1,1419,1420,250,-1,199,1252,1047,-1,199,201,1252,-1,1421,1422,1423,-1,1421,1062,1422,-1,1061,1211,382,-1,1061,1060,1211,-1,65,1236,63,-1,1236,65,1067,-1,1424,221,1389,-1,221,1424,1425,-1,1426,1427,1428,-1,1274,1427,1426,-1,1255,376,1189,-1,1255,1254,376,-1,92,1207,1208,-1,91,1207,92,-1,1406,1429,1409,-1,1430,1429,1406,-1,1203,1431,1208,-1,1203,1235,1431,-1,74,87,88,-1,1206,87,74,-1,369,1204,370,-1,1204,369,80,-1,1430,1408,1432,-1,1430,1406,1408,-1,1114,321,188,-1,1114,1113,321,-1,1239,118,1240,-1,119,118,1239,-1,407,109,410,-1,407,1371,109,-1,149,1433,150,-1,1433,149,1434,-1,1191,148,344,-1,149,148,1191,-1,427,42,41,-1,42,427,1057,-1,169,193,407,-1,167,193,169,-1,388,171,429,-1,388,1037,171,-1,202,1246,197,-1,202,1187,1246,-1,1184,1391,1185,-1,1184,1392,1391,-1,207,1435,1436,-1,206,1435,207,-1,1174,1437,1175,-1,1398,1437,1174,-1,1419,196,1175,-1,196,1419,1244,-1,1246,1170,195,-1,1245,1170,1246,-1,1172,1397,1170,-1,1397,1172,1438,-1,1392,203,1438,-1,1392,1184,203,-1,1172,1395,1393,-1,1171,1395,1172,-1,1396,1439,1394,-1,1396,1440,1439,-1,1441,1394,1439,-1,1394,1441,1442,-1,1443,1444,1445,-1,1443,1446,1444,-1,1447,1159,1167,-1,1159,1448,231,-1,1447,1448,1159,-1,1160,1387,1161,-1,1160,228,1387,-1,1449,1450,1451,-1,1248,1450,1449,-1,1452,1161,1387,-1,1452,1449,1161,-1,1250,1166,1249,-1,1162,1166,1250,-1,1386,217,215,-1,1386,1453,217,-1,1448,1454,1234,-1,1455,1454,1448,-1,1456,1457,1458,-1,1457,1456,1271,-1,1458,1459,1460,-1,1458,1461,1459,-1,1047,1153,1152,-1,1153,1047,1252,-1,159,375,253,-1,376,375,159,-1,1462,1382,364,-1,1462,262,1382,-1,1463,1111,1464,-1,1463,1465,1111,-1,325,353,1261,-1,353,325,324,-1,346,1412,1087,-1,1225,1412,346,-1,186,1097,1096,-1,1097,186,185,-1,1100,1257,1101,-1,1257,1100,1105,-1,1139,1098,1258,-1,1139,1466,1098,-1,401,1265,402,-1,1265,401,1133,-1,1467,1468,396,-1,1469,1468,1467,-1,1117,1259,301,-1,1117,1129,1259,-1,1470,1471,1472,-1,1471,1470,1077,-1,1116,302,1126,-1,1115,302,1116,-1,1121,1473,1260,-1,1121,314,1473,-1,1473,1120,1260,-1,1473,1119,1120,-1,1120,49,1474,-1,1120,50,49,-1,317,1415,1145,-1,319,1415,317,-1,1127,1119,1473,-1,1119,1127,1115,-1,1073,1263,1262,-1,1472,1263,1073,-1,1257,1267,340,-1,1257,1106,1267,-1,1102,341,1103,-1,1102,1266,341,-1,418,1466,1139,-1,418,1143,1466,-1,1098,282,1258,-1,1098,283,282,-1,1181,1475,1476,-1,1475,1181,284,-1,1477,1095,1469,-1,1477,1096,1095,-1,1478,1087,1479,-1,1478,1088,1087,-1,1082,350,1083,-1,1082,1269,350,-1,1242,1231,1080,-1,1231,1242,1217,-1,102,1131,103,-1,1131,102,1085,-1,1077,1480,1471,-1,1076,1480,1077,-1,408,1107,1044,-1,408,111,1107,-1,1071,1384,248,-1,1071,1481,1384,-1,364,1482,1462,-1,1374,1482,364,-1,1070,1066,1068,-1,1067,1066,1070,-1,1425,244,243,-1,1425,1424,244,-1,1423,257,1421,-1,1423,1483,257,-1,1064,1484,1485,-1,851,1484,1064,-1,1486,1186,1185,-1,1486,1487,1186,-1,1247,1418,1416,-1,1488,1418,1247,-1,1489,1461,1490,-1,1489,1459,1461,-1,1491,1454,1492,-1,1491,1493,1454,-1,1494,1495,1496,-1,1494,1497,1495,-1,216,1422,1062,-1,1422,216,1276,-1,1057,191,139,-1,1057,287,191,-1,1090,15,1498,-1,1090,1089,15,-1,1277,1467,1499,-1,1277,1052,1467,-1,0,286,285,-1,0,277,286,-1,1048,1188,252,-1,1188,1048,1152,-1,1041,1226,1138,-1,1040,1226,1041,-1,99,108,107,-1,101,108,99,-1,777,1361,775,-1,777,1289,1361,-1,844,889,888,-1,889,844,843,-1,865,1034,766,-1,1282,1034,865,-1,1500,1501,1502,-1,1501,1500,762,-1,1025,1503,1328,-1,448,1503,1025,-1,876,751,1285,-1,751,876,875,-1,895,1026,664,-1,895,894,1026,-1,1023,892,1504,-1,1023,702,892,-1,529,1505,1312,-1,529,754,1505,-1,1312,755,733,-1,1312,1505,755,-1,846,577,1025,-1,846,823,577,-1,1364,1030,935,-1,1364,1028,1030,-1,452,1024,813,-1,1024,452,1286,-1,869,1506,932,-1,869,870,1506,-1,1310,1017,1016,-1,1310,1020,1017,-1,634,1507,1508,-1,634,1509,1507,-1,1510,623,943,-1,1510,969,623,-1,1338,672,674,-1,937,672,1338,-1,1507,1511,1512,-1,1511,1507,1513,-1,850,936,785,-1,850,848,936,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getl5_Geo_5_181_coordIndex_8()
		{
			int[] value = {857,486,485,-1,857,511,486,-1,854,1514,1332,-1,854,1515,1514,-1,1516,642,1517,-1,1516,643,642,-1,858,485,958,-1,858,857,485,-1,498,514,503,-1,514,498,515,-1,1518,1519,1360,-1,1519,1518,1520,-1,1521,1006,504,-1,1518,1006,1521,-1,508,502,1004,-1,502,508,499,-1,1003,486,1005,-1,1003,487,486,-1,1522,1520,1523,-1,1522,1519,1520,-1,1522,1524,1519,-1,906,1291,609,-1,906,995,1291,-1,541,476,547,-1,476,541,540,-1,1525,574,573,-1,1526,574,1525,-1,575,989,753,-1,989,575,574,-1,822,818,1364,-1,824,818,822,-1,613,592,543,-1,592,613,589,-1,594,1324,820,-1,594,1328,1324,-1,615,621,616,-1,615,1294,621,-1,1350,982,981,-1,1350,1349,982,-1,1527,629,1528,-1,629,1527,1347,-1,1511,1295,971,-1,1295,1511,1351,-1,617,1529,971,-1,969,1529,617,-1,968,615,970,-1,615,968,1296,-1,1352,966,968,-1,1530,966,1352,-1,628,1349,1530,-1,628,982,1349,-1,626,966,1348,-1,966,626,967,-1,624,1531,1532,-1,1533,1531,624,-1,963,787,640,-1,787,963,788,-1,1514,1534,1535,-1,1515,1534,1514,-1,1298,644,1343,-1,1298,962,644,-1,1536,1537,1538,-1,1536,1539,1537,-1,779,1540,780,-1,1013,1540,779,-1,1538,641,1344,-1,1538,1537,641,-1,958,647,1013,-1,960,647,958,-1,1343,1299,1298,-1,1541,1299,1343,-1,951,953,952,-1,953,951,1345,-1,1542,954,953,-1,1542,1010,954,-1,948,1543,1544,-1,1543,948,947,-1,1545,1543,1546,-1,1545,1547,1543,-1,943,773,1510,-1,943,1300,773,-1,1548,676,675,-1,1548,936,676,-1,934,1303,772,-1,934,680,1303,-1,1549,541,1357,-1,539,541,1549,-1,1550,743,1551,-1,744,743,1550,-1,1325,748,838,-1,1552,748,1325,-1,899,742,741,-1,898,742,899,-1,1553,1554,1555,-1,1553,749,1554,-1,607,1305,1314,-1,607,925,1305,-1,1556,1557,1558,-1,1557,1556,1559,-1,920,922,715,-1,920,1560,922,-1,1561,1562,1563,-1,866,1562,1561,-1,775,918,916,-1,859,918,775,-1,722,914,723,-1,722,728,914,-1,718,915,1564,-1,915,718,717,-1,986,1280,987,-1,986,467,1280,-1,470,910,1564,-1,470,911,910,-1,1506,730,932,-1,730,1506,908,-1,912,919,1565,-1,1307,919,912,-1,1549,997,994,-1,997,1549,1357,-1,1549,534,539,-1,998,534,1549,-1,1562,903,768,-1,903,1562,904,-1,897,1029,898,-1,897,456,1029,-1,1566,810,927,-1,1566,930,810,-1,694,1567,890,-1,694,698,1567,-1,1554,976,1551,-1,1552,976,1554,-1,744,1556,888,-1,744,1550,1556,-1,711,886,801,-1,1305,886,711,-1,884,1568,1569,-1,883,1568,884,-1,879,1031,1317,-1,1031,879,1570,-1,880,575,873,-1,880,737,575,-1,757,1320,1319,-1,757,869,1320,-1,1287,988,987,-1,1019,988,1287,-1,461,1335,517,-1,1365,1335,461,-1,863,865,864,-1,862,865,863,-1,862,1283,865,-1,860,1571,1346,-1,860,861,1571,-1,1572,772,1303,-1,772,1572,1333,-1,775,853,852,-1,775,1361,853,-1,1573,1574,1575,-1,1573,1576,1574,-1,675,1423,1548,-1,675,1483,1423,-1,604,631,605,-1,1362,631,604,-1,631,1362,1338,-1,1533,1577,1531,-1,1533,1578,1577,-1,1579,627,595,-1,627,1579,1580,-1,1581,632,1582,-1,632,1581,1583,-1,1427,1584,1585,-1,1584,1427,1586,-1,1587,1010,1542,-1,1010,1587,1011,-1,1063,1341,639,-1,1341,1063,1588,-1,1589,693,992,-1,1589,1569,693,-1,1590,796,1591,-1,1590,1323,796,-1,1592,1369,882,-1,1281,1369,1592,-1,1557,1277,1499,-1,1557,709,1277,-1,929,839,697,-1,839,929,691,-1,614,585,940,-1,614,770,585,-1,842,1326,799,-1,842,1036,1326,-1,1501,696,695,-1,696,1501,832,-1,528,465,464,-1,465,528,524,-1,846,984,824,-1,564,984,846,-1,1327,816,704,-1,1024,816,1327,-1,712,522,520,-1,812,522,712,-1,809,662,811,-1,900,662,809,-1,695,1502,1501,-1,695,891,1502,-1,769,1368,862,-1,841,1368,769,-1,770,543,771,-1,614,543,770,-1,929,1304,689,-1,697,1304,929,-1,801,1593,398,-1,801,887,1593,-1,1499,1558,1557,-1,1558,1499,395,-1,797,992,798,-1,797,1589,992,-1,610,579,964,-1,610,580,579,-1,638,1063,639,-1,638,1276,1063,-1,1587,1594,1494,-1,1542,1594,1587,-1,1595,1428,1596,-1,1595,1491,1428,-1,1582,1490,1581,-1,1582,1597,1490,-1,965,1579,595,-1,965,1488,1579,-1,1578,981,1486,-1,1533,981,1578,-1,783,604,784,-1,783,1362,604,-1,1362,783,937,-1,1483,491,67,-1,675,491,1483,-1,1516,1575,1574,-1,1546,1575,1516,-1,487,714,579,-1,487,1003,714,-1,774,1333,1572,-1,583,1333,774,-1,1340,773,653,-1,666,773,1340,-1,1302,772,771,-1,772,1302,934,-1,761,764,1035,-1,1334,764,761,-1,517,466,812,-1,1335,466,517,-1,759,1308,1319,-1,759,1306,1308,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getl5_Geo_5_181_coordIndex_9()
		{
			int[] value = {1336,838,748,-1,838,1336,839,-1,1550,1559,1556,-1,1550,978,1559,-1,978,1551,976,-1,1551,978,1550,-1,1598,743,1337,-1,1555,743,1598,-1,740,874,928,-1,739,874,740,-1,875,874,739,-1,996,1549,994,-1,996,998,1549,-1,730,678,731,-1,678,730,931,-1,728,685,727,-1,728,729,685,-1,1307,1021,1309,-1,1307,912,1021,-1,1560,1288,922,-1,1560,1016,1288,-1,922,1018,758,-1,922,1288,1018,-1,467,719,471,-1,986,719,467,-1,1564,468,470,-1,468,1564,915,-1,1563,763,1561,-1,1563,902,763,-1,1558,888,1556,-1,1558,844,888,-1,750,1566,1567,-1,1599,1566,750,-1,1317,449,1313,-1,1317,1031,449,-1,708,700,817,-1,700,708,701,-1,698,839,1336,-1,698,697,839,-1,556,560,992,-1,556,558,560,-1,745,1600,1337,-1,1592,1600,745,-1,1506,1311,908,-1,1506,1363,1311,-1,1301,677,897,-1,1284,677,1301,-1,770,583,585,-1,583,770,1333,-1,1601,1582,1571,-1,1597,1582,1601,-1,1547,1544,1543,-1,1544,1547,1601,-1,947,1546,1543,-1,1546,947,1575,-1,1573,656,655,-1,1573,946,656,-1,954,1009,1539,-1,1010,1009,954,-1,1602,651,1341,-1,1602,650,651,-1,955,1541,1603,-1,955,1299,1541,-1,1537,1595,641,-1,1537,1604,1595,-1,1541,646,1535,-1,1541,1343,646,-1,952,956,951,-1,956,952,957,-1,962,1538,644,-1,962,1536,1538,-1,645,643,1605,-1,645,1344,643,-1,1534,856,780,-1,1534,1515,856,-1,1606,630,1347,-1,1607,630,1606,-1,1350,1533,624,-1,981,1533,1350,-1,1527,972,1608,-1,972,1527,973,-1,967,625,972,-1,967,626,625,-1,1348,1530,1349,-1,966,1530,1348,-1,968,1295,1352,-1,970,1295,968,-1,1509,1513,1507,-1,1509,1297,1513,-1,620,1609,1353,-1,1609,620,1528,-1,1512,971,1529,-1,1512,1511,971,-1,731,545,538,-1,1302,545,731,-1,1610,598,178,-1,1610,600,598,-1,619,1294,973,-1,619,621,1294,-1,1611,1569,1589,-1,1611,884,1569,-1,820,568,594,-1,820,569,568,-1,480,792,1014,-1,480,793,792,-1,817,1364,818,-1,825,1364,817,-1,574,1612,989,-1,1612,574,1526,-1,566,568,567,-1,566,565,568,-1,556,746,557,-1,1356,746,556,-1,609,532,906,-1,609,542,532,-1,478,540,871,-1,477,540,478,-1,609,1290,536,-1,609,1291,1290,-1,1358,1001,1002,-1,1001,1358,523,-1,1289,505,1007,-1,1289,777,505,-1,509,1004,776,-1,1004,509,508,-1,504,1359,1521,-1,504,501,1359,-1,1522,498,1008,-1,515,498,1522,-1,1523,1518,1521,-1,1520,1518,1523,-1,643,1574,1605,-1,1516,1574,643,-1,853,1515,854,-1,853,856,1515,-1,1322,936,1548,-1,1322,785,936,-1,1513,1351,1511,-1,1351,1513,1613,-1,837,1353,1015,-1,837,618,1353,-1,665,969,1510,-1,665,1529,969,-1,633,1509,634,-1,633,1614,1509,-1,444,869,932,-1,444,1320,869,-1,870,1363,1506,-1,870,473,1363,-1,1028,825,1504,-1,1364,825,1028,-1,461,713,462,-1,461,1000,713,-1,733,460,1312,-1,460,733,732,-1,454,1023,1286,-1,1023,454,702,-1,1366,894,1367,-1,894,1366,1026,-1,447,1600,1315,-1,447,439,1600,-1,864,764,902,-1,864,765,764,-1,867,1502,830,-1,1502,867,1500,-1,1283,1330,1282,-1,1330,1283,1368,-1,439,686,1600,-1,687,686,439,-1,692,1615,1356,-1,1615,692,390,-1,424,1222,1201,-1,1222,424,423,-1,16,1201,1222,-1,16,105,1201,-1,245,415,114,-1,415,245,417,-1,352,1138,1226,-1,352,416,1138,-1,386,186,1134,-1,386,404,186,-1,402,1590,403,-1,1590,402,1616,-1,396,1499,1467,-1,395,1499,396,-1,279,387,280,-1,279,1617,387,-1,155,191,297,-1,155,154,191,-1,1496,1587,1494,-1,1587,1496,1385,-1,1428,1492,1426,-1,1428,1491,1492,-1,1490,1618,1581,-1,1490,1461,1618,-1,1579,1247,175,-1,1579,1488,1247,-1,1185,1578,1486,-1,1578,1185,1442,-1,184,375,378,-1,60,375,184,-1,62,375,60,-1,66,1483,67,-1,1483,66,257,-1,243,1373,1425,-1,1373,243,372,-1,84,1212,155,-1,84,89,1212,-1,1374,233,1482,-1,233,1374,162,-1,368,1481,234,-1,1481,368,1384,-1,364,406,365,-1,1382,406,364,-1,359,354,357,-1,354,359,355,-1,422,95,421,-1,95,422,1619,-1,1118,1085,1083,-1,1118,1131,1085,-1,1411,1230,1620,-1,1619,1230,1411,-1,1376,1478,1479,-1,339,1478,1376,-1,138,127,1193,-1,130,127,138,-1,130,129,127,-1,1096,1132,1135,-1,1477,1132,1096,-1,1258,1042,1041,-1,1258,282,1042,-1,1088,1466,1143,-1,1088,1478,1466,-1,340,1103,341,-1,1103,340,1155,-1,245,328,417,-1,328,245,1229,-1,362,1472,1073,-1,1470,1472,362,-1,323,120,269,-1,120,323,113,-1,1473,268,1127,-1,1473,314,268,-1,1232,1129,1117,-1,1232,1216,1129,-1,311,46,48,-1,46,311,1243,-1,45,1474,49,-1,1124,1474,45,-1,1259,370,1130,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getl5_Geo_5_181_coordIndex_10()
		{
			int[] value = {1259,1126,370,-1,1094,396,1468,-1,1094,397,396,-1,1476,1621,1377,-1,1476,1475,1621,-1,187,284,1181,-1,187,285,284,-1,1142,273,272,-1,137,273,1142,-1,1111,1415,319,-1,1111,1465,1415,-1,1382,1378,406,-1,264,1378,1382,-1,258,1106,259,-1,1106,258,22,-1,1046,157,252,-1,1046,158,157,-1,1622,1384,368,-1,1384,1622,249,-1,1460,1275,373,-1,1460,1459,1275,-1,1157,1271,1456,-1,1157,1071,1271,-1,235,242,237,-1,235,240,242,-1,237,244,238,-1,237,242,244,-1,1234,231,1448,-1,231,1234,232,-1,1386,1495,1453,-1,1386,219,1495,-1,1451,1161,1449,-1,1451,1162,1161,-1,227,229,225,-1,1164,229,227,-1,1444,1388,222,-1,1444,1623,1388,-1,1248,1452,1066,-1,1248,1449,1452,-1,1446,1426,1492,-1,1446,1443,1426,-1,1450,1389,223,-1,1624,1389,1450,-1,1064,1625,206,-1,1625,1064,1485,-1,1442,1391,1394,-1,1391,1442,1185,-1,1178,1435,1626,-1,1177,1435,1178,-1,1396,1171,1178,-1,1396,1395,1171,-1,1438,1393,1392,-1,1393,1438,1172,-1,1174,1170,1397,-1,1170,1174,195,-1,1627,1628,1629,-1,1627,1169,1628,-1,1630,1399,200,-1,1436,1399,1630,-1,1175,1420,1419,-1,1175,1437,1420,-1,121,1378,115,-1,1378,121,406,-1,177,1610,178,-1,177,181,1610,-1,1631,1498,1617,-1,1631,1090,1498,-1,143,429,171,-1,143,142,429,-1,41,428,427,-1,428,41,1279,-1,1632,149,1191,-1,1434,149,1632,-1,143,140,144,-1,143,141,140,-1,336,133,132,-1,133,336,1402,-1,109,188,321,-1,109,1371,188,-1,119,52,270,-1,52,119,53,-1,1238,188,117,-1,1238,1114,188,-1,1202,1404,1201,-1,98,1404,1202,-1,80,1236,81,-1,80,369,1236,-1,1204,85,370,-1,1205,85,1204,-1,1431,82,1633,-1,1431,1235,82,-1,1407,1409,76,-1,1406,1409,1407,-1,1208,93,92,-1,1208,1431,93,-1,376,69,377,-1,376,1254,69,-1,1425,1445,221,-1,1445,1425,1373,-1,1168,64,1065,-1,1168,65,64,-1,1256,1062,1421,-1,1256,379,1062,-1,1398,1627,1437,-1,1634,1627,1398,-1,200,1047,1049,-1,200,199,1047,-1,1244,249,1622,-1,1244,1419,249,-1,1628,208,1390,-1,1628,1416,208,-1,1269,1146,1145,-1,1269,1082,1146,-1,1465,1268,1415,-1,1465,1078,1268,-1,39,1635,21,-1,1635,39,425,-1,43,1056,152,-1,43,42,1056,-1,34,33,32,-1,34,36,33,-1,29,271,1108,-1,1200,271,29,-1,1635,19,21,-1,290,19,1635,-1,1264,25,18,-1,26,25,1264,-1,1224,15,1089,-1,1224,7,15,-1,359,1075,1263,-1,359,1270,1075,-1,1040,1076,1226,-1,1480,1076,1040,-1,11,13,411,-1,10,13,11,-1,1615,389,1402,-1,390,389,1615,-1,1413,1375,1278,-1,354,1375,1413,-1,172,6,152,-1,172,14,6,-1,247,1156,1229,-1,247,1104,1156,-1,1370,292,423,-1,20,292,1370,-1,1636,1219,1099,-1,1636,40,1219,-1,31,1620,348,-1,31,1411,1620,-1,26,246,27,-1,26,247,246,-1,1279,40,1636,-1,40,1279,41,-1,1079,1218,1217,-1,163,1218,1079,-1,1082,1241,1146,-1,1241,1082,1084,-1,49,46,45,-1,49,48,46,-1,254,1630,255,-1,254,1383,1630,-1,1420,1637,250,-1,1420,1629,1637,-1,201,1154,1252,-1,201,1173,1154,-1,200,255,1630,-1,200,1049,255,-1,1397,1634,1398,-1,1400,1634,1397,-1,86,1070,1273,-1,86,1237,1070,-1,1389,1372,1424,-1,1389,1624,1372,-1,1426,374,1274,-1,1426,1443,374,-1,1237,1067,1070,-1,1237,1236,1067,-1,66,1255,1189,-1,66,70,1255,-1,1429,1432,1633,-1,1432,1429,1430,-1,1207,1408,77,-1,1408,1207,91,-1,1409,1206,74,-1,1429,1206,1409,-1,88,86,1410,-1,87,86,88,-1,1405,1404,100,-1,96,1404,1405,-1,104,1039,420,-1,1414,1039,104,-1,1113,322,321,-1,1113,1197,322,-1,1403,1240,118,-1,1240,1403,1198,-1,1402,2,1615,-1,1402,336,2,-1,1192,137,138,-1,1196,137,1192,-1,409,1058,429,-1,409,408,1058,-1,409,144,410,-1,409,142,144,-1,150,1401,147,-1,1401,150,1433,-1,146,1638,1223,-1,1638,146,145,-1,145,1632,1638,-1,1401,1632,145,-1,1401,1434,1632,-1,1401,1433,1434,-1,315,1218,165,-1,315,1081,1218,-1,168,167,169,-1,168,58,167,-1,387,1037,388,-1,387,1639,1037,-1,198,1177,202,-1,198,1399,1177,-1,1634,1169,1627,-1,1634,173,1169,-1,1436,1177,1399,-1,1435,1177,1436,-1,1400,173,1634,-1,173,1400,204,-1,199,202,201,-1,198,202,199,-1,1400,1438,203,-1,1400,1397,1438,-1,1626,1396,1178,-1,1626,1440,1396,-1,1394,1393,1395,-1,1393,1394,1391,-1,203,1186,174,-1,203,1184,1186,-1,1485,1439,1625,-1,1439,1485,1441,-1,210,1637,1390,-1,1637,210,1072,-1,1445,222,221,-1,1445,1444,222,-1,1623,1167,1388,-1,1623,1447,1167,-1,1160,1249,220,-1,1250,1249,1160,-1,223,1451,1450,-1,223,224,1451,-1,1492,1455,1446,-1,1492,1454,1455,-1,1387,1165,1452,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getl5_Geo_5_181_coordIndex_11()
		{
			int[] value = {1165,1387,229,-1,1386,226,225,-1,1386,215,226,-1,1385,218,230,-1,218,1385,1496,-1,1482,235,1640,-1,235,1482,233,-1,237,1640,235,-1,1272,1640,237,-1,1251,1071,241,-1,1251,1481,1071,-1,372,1158,1641,-1,243,1158,372,-1,1456,1460,1641,-1,1458,1460,1456,-1,1618,1458,1457,-1,1458,1618,1461,-1,162,363,160,-1,1374,363,162,-1,418,327,1144,-1,327,418,417,-1,262,1381,267,-1,1381,262,1462,-1,1380,1464,164,-1,1380,1463,1464,-1,1261,1077,1470,-1,1077,1261,353,-1,134,133,279,-1,134,131,133,-1,1050,283,338,-1,1050,1379,283,-1,17,1266,1102,-1,17,1228,1266,-1,1466,339,1098,-1,339,1466,1478,-1,1137,34,211,-1,34,1137,35,-1,211,1136,1137,-1,211,296,1136,-1,1052,1469,1467,-1,1477,1469,1052,-1,421,94,299,-1,94,421,95,-1,356,1472,1471,-1,356,1263,1472,-1,1474,1260,1120,-1,1122,1260,1474,-1,351,309,56,-1,351,310,309,-1,1215,349,351,-1,1215,1214,349,-1,1214,1117,349,-1,1214,1232,1117,-1,164,1125,304,-1,164,1464,1125,-1,264,317,1378,-1,318,317,264,-1,1642,1197,1110,-1,1642,1199,1197,-1,1267,1155,340,-1,1267,1221,1155,-1,1221,1267,1220,-1,1377,1412,329,-1,1412,1377,1621,-1,1476,1095,1181,-1,1643,1095,1476,-1,1469,1643,1468,-1,1469,1095,1643,-1,286,338,337,-1,1050,338,286,-1,1471,1375,356,-1,1480,1375,1471,-1,1044,362,361,-1,1044,1107,362,-1,209,1457,210,-1,1618,1457,209,-1,366,1153,367,-1,366,161,1153,-1,1640,1462,1482,-1,1640,1381,1462,-1,1424,238,244,-1,1424,1372,238,-1,1484,1441,1485,-1,1484,1577,1441,-1,1186,1580,174,-1,1487,1580,1186,-1,1417,209,208,-1,1417,1583,209,-1,1586,1459,1489,-1,1586,1275,1459,-1,1493,1234,1454,-1,1493,1210,1234,-1,1497,1453,1495,-1,1497,1588,1453,-1,57,1148,1150,-1,1060,1148,57,-1,391,1631,1194,-1,1631,391,1568,-1,1591,393,385,-1,393,1591,800,-1,333,1089,882,-1,1089,333,1224,-1,1593,399,398,-1,1593,1265,399,-1,281,1142,272,-1,1142,281,1379,-1,1141,413,1413,-1,413,1141,405,-1,1139,416,418,-1,1138,416,1139,-1,100,299,1405,-1,299,100,421,-1,426,97,298,-1,97,426,39,-1,139,1055,1057,-1,1055,139,170,-1,684,437,433,-1,684,683,437,-1,762,832,1501,-1,832,762,761,-1,440,1025,577,-1,440,448,1025,-1,738,664,663,-1,738,895,664,-1,1570,452,1329,-1,452,1570,453,-1,1029,1504,892,-1,1029,1028,1504,-1,1505,463,755,-1,1505,1365,463,-1,823,935,577,-1,823,822,935,-1,587,868,1019,-1,868,587,586,-1,1292,1320,444,-1,1318,1320,1292,-1,467,470,468,-1,467,471,470,-1,1609,672,483,-1,1609,674,672,-1,1508,1512,1339,-1,1508,1507,1512,-1,943,622,944,-1,943,623,622,-1,483,1353,1609,-1,483,1015,1353,-1,1613,1352,1351,-1,1352,1613,1354,-1,778,511,857,-1,778,512,511,-1,1332,1644,1576,-1,1332,1514,1644,-1,1517,1596,1585,-1,1517,642,1596,-1,855,512,778,-1,855,1289,512,-1,513,503,514,-1,513,1359,503,-1,1360,1524,495,-1,1524,1360,1519,-1,499,503,502,-1,503,499,498,-1,1006,1360,497,-1,1360,1006,1518,-1,511,1005,486,-1,1005,511,510,-1,1358,520,522,-1,520,1358,521,-1,828,451,527,-1,451,828,1645,-1,907,995,906,-1,907,996,995,-1,547,1357,541,-1,446,1357,547,-1,2,1356,1615,-1,2,746,1356,-1,563,1293,562,-1,1293,563,993,-1,833,821,820,-1,833,834,821,-1,567,821,544,-1,567,569,821,-1,1355,573,570,-1,1525,573,1355,-1,1646,571,1033,-1,572,571,1646,-1,1612,572,1646,-1,1612,1355,572,-1,1526,1355,1612,-1,1526,1525,1355,-1,589,593,592,-1,589,591,593,-1,1328,797,1324,-1,1328,1503,797,-1,1297,1613,1513,-1,1297,597,1613,-1,973,1528,620,-1,1528,973,1527,-1,597,1354,1613,-1,596,1354,597,-1,621,618,622,-1,618,621,619,-1,1530,1354,628,-1,1530,1352,1354,-1,625,1608,972,-1,625,1647,1608,-1,1348,624,626,-1,1350,624,1348,-1,980,628,627,-1,980,982,628,-1,1532,1607,1606,-1,1531,1607,1532,-1,1508,1346,634,-1,860,1346,1508,-1,1644,1535,646,-1,1535,1644,1514,-1,1596,641,1595,-1,1596,642,641,-1,1540,1534,780,-1,1540,1603,1534,-1,644,1344,645,-1,644,1538,1344,-1,1013,1342,1540,-1,647,1342,1013,-1,963,651,648,-1,963,640,651,-1,1345,1542,953,-1,1594,1542,1345,-1,652,1572,950,-1,774,1572,652,-1,946,652,656,-1,946,659,652,-1,949,658,661,-1,949,1340,658,-1,861,948,1544,-1,861,949,948,-1,1584,1547,1545,-1,1584,1648,1547,-1,666,1510,773,-1,665,1510,666,-1,582,939,975,-1,582,581,939,-1,935,457,578,-1,935,455,457,-1,752,810,873,-1,900,810,752,-1,729,474,685,-1,729,475,474,-1,866,904,1562,-1,1321,904,866,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getl5_Geo_5_181_coordIndex_12()
		{
			int[] value = {690,929,689,-1,929,690,563,-1,1552,606,976,-1,1552,1325,606,-1,892,898,1029,-1,892,742,898,-1,1555,1551,743,-1,1555,1554,1551,-1,707,635,926,-1,707,636,635,-1,1559,709,1557,-1,709,1559,710,-1,917,1560,920,-1,1560,917,1309,-1,913,1564,910,-1,1564,913,718,-1,472,756,1020,-1,472,909,756,-1,758,1017,756,-1,758,1018,1017,-1,681,1565,919,-1,681,723,1565,-1,539,533,734,-1,534,533,539,-1,1563,768,767,-1,768,1563,1562,-1,901,662,900,-1,663,662,901,-1,896,928,877,-1,740,928,896,-1,1566,881,930,-1,1566,1599,881,-1,1336,1567,698,-1,1336,750,1567,-1,711,1314,1305,-1,1314,711,710,-1,551,562,991,-1,551,553,562,-1,551,554,553,-1,1599,749,1553,-1,749,1599,750,-1,754,1365,1505,-1,1365,754,1335,-1,726,1287,987,-1,726,985,1287,-1,762,1561,763,-1,1561,762,1500,-1,768,1326,1036,-1,768,903,1326,-1,1571,632,1346,-1,632,1571,1582,-1,945,654,1300,-1,945,584,654,-1,1303,950,1572,-1,1303,933,950,-1,1545,1585,1584,-1,1545,1517,1585,-1,655,1576,1573,-1,655,1332,1576,-1,1531,1484,1607,-1,1531,1577,1484,-1,1580,980,627,-1,980,1580,1487,-1,632,1417,633,-1,632,1583,1417,-1,1648,1586,1489,-1,1648,1584,1586,-1,1009,1493,1604,-1,1009,1210,1493,-1,1341,1497,1602,-1,1341,1588,1497,-1,1569,391,693,-1,1568,391,1569,-1,795,1591,796,-1,800,1591,795,-1,1315,1592,882,-1,1600,1592,1315,-1,400,709,924,-1,709,400,1277,-1,1590,802,1323,-1,1616,802,1590,-1,607,794,925,-1,607,436,794,-1,1282,806,1034,-1,1331,806,1282,-1,808,927,810,-1,927,808,831,-1,826,814,1002,-1,1329,814,826,-1,448,1611,1503,-1,448,447,1611,-1,520,704,712,-1,520,1327,704,-1,828,528,829,-1,828,527,528,-1,830,891,831,-1,891,830,1502,-1,942,835,975,-1,836,835,942,-1,838,433,1325,-1,838,840,433,-1,1593,802,1616,-1,1593,887,802,-1,395,844,1558,-1,844,395,845,-1,447,884,1611,-1,447,1315,884,-1,610,824,984,-1,610,819,824,-1,1422,638,1322,-1,1276,638,1422,-1,1602,1494,1594,-1,1602,1497,1494,-1,1604,1491,1595,-1,1604,1493,1491,-1,1597,1489,1490,-1,1597,1648,1489,-1,1418,965,1614,-1,965,1418,1488,-1,980,1486,981,-1,980,1487,1486,-1,1484,630,1607,-1,630,1484,851,-1,1517,1546,1516,-1,1545,1546,1517,-1,790,958,485,-1,789,958,790,-1,657,933,859,-1,933,657,950,-1,666,949,667,-1,666,1340,949,-1,903,834,1326,-1,903,530,834,-1,1500,866,1561,-1,866,1500,867,-1,868,988,1019,-1,868,720,988,-1,870,721,473,-1,757,721,870,-1,1319,872,759,-1,1318,872,1319,-1,1316,1599,1553,-1,1316,881,1599,-1,978,710,1559,-1,978,1314,710,-1,1592,889,1281,-1,1592,745,889,-1,749,1552,1554,-1,748,1552,749,-1,1316,1555,1598,-1,1553,1555,1316,-1,877,1313,896,-1,877,1317,1313,-1,874,899,928,-1,874,1301,899,-1,902,767,863,-1,767,902,1563,-1,1016,1309,1310,-1,1560,1309,1016,-1,909,471,719,-1,909,472,471,-1,910,1565,913,-1,910,912,1565,-1,1565,914,913,-1,1565,723,914,-1,916,1309,917,-1,1309,916,1307,-1,902,1334,763,-1,902,764,1334,-1,887,803,802,-1,886,803,887,-1,1567,927,890,-1,1567,1566,927,-1,453,879,893,-1,453,1570,879,-1,1367,1313,449,-1,1313,1367,894,-1,819,964,708,-1,819,610,964,-1,977,607,1314,-1,608,607,977,-1,1330,689,1331,-1,689,1330,442,-1,1598,688,1316,-1,688,1598,686,-1,1321,905,904,-1,735,905,1321,-1,1311,475,729,-1,1311,1363,475,-1,682,859,933,-1,682,918,859,-1,1301,876,1032,-1,1301,874,876,-1,457,897,677,-1,457,456,897,-1,783,489,673,-1,489,783,490,-1,945,837,836,-1,944,837,945,-1,1648,1601,1547,-1,1648,1597,1601,-1,1571,1544,1601,-1,861,1544,1571,-1,1575,946,1573,-1,1575,947,946,-1,1604,1539,1009,-1,1539,1604,1537,-1,1594,650,1602,-1,1594,1345,650,-1,1298,957,952,-1,957,1298,1299,-1,955,1540,1342,-1,955,1603,1540,-1,1535,1603,1541,-1,1603,1535,1534,-1,1342,956,955,-1,1342,649,956,-1,961,1536,962,-1,1539,961,954,-1,961,1539,1536,-1,646,1605,1644,-1,646,645,1605,-1,860,1339,667,-1,860,1508,1339,-1,1347,1608,1606,-1,1608,1347,1527,-1,1532,625,624,-1,1532,1647,625,-1,1647,1606,1608,-1,1647,1532,1606,-1,967,974,1296,-1,967,972,974,-1,1297,1614,965,-1,1509,1614,1297,-1,1609,629,674,-1,1528,629,1609,-1,601,1610,782,-1,601,600,1610,-1,1503,1589,797,-1,1503,1611,1589,-1,720,986,988,-1,986,720,719,-1,576,571,570,-1,576,677,571,-1,989,1646,1033,-1,1646,989,1612,-1,549,563,690,-1,993,563,549,-1,560,885,992,-1,552,885,560,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getl5_Geo_5_181_coordIndex_13()
		{
			int[] value = {828,1366,1645,-1,1027,828,459,-1,828,1027,1366,-1,1002,521,1358,-1,521,1002,814,-1,926,518,706,-1,516,518,926,-1,1523,515,1522,-1,515,1523,513,-1,1004,777,776,-1,505,777,1004,-1,510,497,1005,-1,497,510,1006,-1,1524,1008,495,-1,1522,1008,1524,-1,1359,1523,1521,-1,1523,1359,513,-1,491,1012,68,-1,491,669,1012,-1,490,670,488,-1,490,938,670,-1,1427,1596,1428,-1,1596,1427,1585,-1,1605,1576,1644,-1,1574,1576,1605,-1,1289,856,1361,-1,855,856,1289,-1,792,849,790,-1,792,791,849,-1,1422,1548,1423,-1,1422,1322,1548,-1,944,618,837,-1,944,622,618,-1,1339,1529,665,-1,1339,1512,1529,-1,1417,1614,633,-1,1417,1418,1614,-1,1318,476,872,-1,1318,1292,476,-1,868,474,473,-1,868,586,474,-1,1023,825,815,-1,825,1023,1504,-1,1367,1645,1366,-1,1367,451,1645,-1,826,1570,1329,-1,826,1031,1570,-1,456,1030,1029,-1,456,455,1030,-1,1284,571,677,-1,1284,1033,571,-1,832,1035,807,-1,832,761,1035,-1,442,841,443,-1,1368,841,442,-1,686,1337,1600,-1,686,1598,1337,-1,469,1022,1280,-1,493,1022,469,-1,1498,14,1639,-1,1498,15,14,-1,298,1405,299,-1,298,97,1405,-1,1141,1278,1042,-1,1413,1278,1141,-1,1044,1092,1045,-1,1044,361,1092,-1,160,192,1151,-1,160,363,192,-1,1050,1142,1379,-1,276,1142,1050,-1,402,1593,1616,-1,402,1265,1593,-1,1369,333,882,-1,333,1369,332,-1,385,1590,1591,-1,385,403,1590,-1,1194,1617,279,-1,1194,1631,1617,-1,1453,1063,217,-1,1588,1063,1453,-1,232,1587,1385,-1,1011,1587,232,-1,1275,1427,1274,-1,1586,1427,1275,-1,209,1581,1618,-1,1583,1581,209,-1,174,1579,175,-1,1580,1579,174,-1,1577,1442,1441,-1,1577,1578,1442,-1,205,184,183,-1,205,60,184,-1,61,60,205,-1,782,378,377,-1,782,1183,378,-1,64,371,236,-1,64,63,371,-1,1163,382,1233,-1,382,1163,383,-1,1381,1272,265,-1,1640,1272,1381,-1,366,162,161,-1,366,233,162,-1,1457,1072,210,-1,1457,1271,1072,-1,1074,1262,1075,-1,1074,12,1262,-1,1074,13,12,-1,1619,33,95,-1,33,1619,1411,-1,1242,1079,1217,-1,1242,313,1079,-1,312,1268,1078,-1,1268,312,350,-1,51,1083,1085,-1,1083,51,1084,-1,107,1619,422,-1,107,1230,1619,-1,148,1086,1144,-1,148,347,1086,-1,1228,291,1266,-1,292,291,1228,-1,1568,1090,1631,-1,1090,1568,883,-1,1133,1132,399,-1,1132,1133,1135,-1,1468,331,1094,-1,1468,1643,331,-1,284,1376,1475,-1,1376,284,337,-1,1621,1087,1412,-1,1087,1621,1479,-1,289,1101,1140,-1,289,1100,1101,-1,1219,259,1105,-1,1219,260,259,-1,1107,1470,362,-1,1261,1470,1107,-1,113,1642,120,-1,1642,113,1199,-1,1109,1642,1110,-1,1403,1642,1109,-1,1125,1111,1112,-1,1464,1111,1125,-1,1116,1216,55,-1,1216,1116,1129,-1,47,1243,1080,-1,47,46,1243,-1,1124,1122,1474,-1,1123,1122,1124,-1,1121,1112,314,-1,1121,1125,1112,-1,355,1263,356,-1,355,359,1263,-1,1051,1477,1052,-1,1051,1132,1477,-1,1135,186,1096,-1,1135,1134,186,-1,1475,1479,1621,-1,1475,1376,1479,-1,1102,18,17,-1,1264,18,1102,-1,1042,281,1141,-1,281,1042,282,-1,272,11,274,-1,9,11,272,-1,1377,1643,1476,-1,1643,1377,331,-1,118,1642,1403,-1,1642,118,120,-1,1227,1106,24,-1,1227,1267,1106,-1,1149,1421,257,-1,1149,1256,1421,-1,368,1154,1622,-1,368,367,1154,-1,1641,373,372,-1,1641,1460,373,-1,1641,1157,1456,-1,1158,1157,1641,-1,234,1251,235,-1,1481,1251,234,-1,219,1496,1495,-1,219,218,1496,-1,230,220,1249,-1,218,220,230,-1,1162,224,1166,-1,224,1162,1451,-1,229,1163,1165,-1,1163,229,1164,-1,1446,1623,1444,-1,1446,1455,1623,-1,1452,1068,1066,-1,1068,1452,1165,-1,1455,1447,1623,-1,1455,1448,1447,-1,1388,1166,224,-1,1388,1167,1166,-1,1248,1624,1450,-1,1624,1248,1168,-1,380,226,215,-1,381,226,380,-1,250,1072,248,-1,250,1637,1072,-1,1626,206,1625,-1,1435,206,1626,-1,1625,1440,1626,-1,1625,1439,1440,-1,1176,1171,1245,-1,1176,1178,1171,-1,1416,1169,1247,-1,1169,1416,1628,-1,207,1630,1383,-1,1630,207,1436,-1,1610,180,782,-1,1610,181,180,-1,1617,1639,387,-1,1617,1498,1639,-1,1243,313,1242,-1,311,313,1243,-1,146,153,147,-1,146,258,153,-1,1638,1191,1223,-1,1632,1191,1638,-1,137,123,273,-1,123,137,1196,-1,278,134,279,-1,134,278,125,-1,1241,1198,1146,-1,1241,1240,1198,-1,25,1039,1414,-1,1039,27,30,-1,25,27,1039,-1,96,1201,1404,-1,424,1201,96,-1,94,1137,300,-1,1137,94,35,-1,91,1432,1408,-1,93,1432,91,-1,1410,89,88,-1,1410,1212,89,-1,1203,1205,1204,-1,79,1205,1203,-1,1206,1633,82,-1,1633,1206,1429,-1,77,1407,76,-1,1407,77,1408,-1,1432,1431,1633,-1,93,1431,1432,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getl5_Geo_5_181_coordIndex_14()
		{
			int[] value = {1233,1069,1163,-1,1233,1273,1069,-1,1443,1373,374,-1,1443,1445,1373,-1,1624,1065,1372,-1,1624,1168,1065,-1,1410,1273,1233,-1,1410,86,1273,-1,1256,1213,379,-1,1256,1148,1213,-1,1437,1629,1420,-1,1627,1629,1437,-1,254,61,1383,-1,61,254,62,-1,1173,1622,1154,-1,1173,1244,1622,-1,1629,1390,1637,-1,1629,1628,1390,-1,1078,1463,1380,-1,1463,1078,1465,-1,1239,1084,51,-1,1239,1241,1084,-1,1380,1079,1078,-1,1380,163,1079,-1,1279,1635,425,-1,1636,1635,1279,-1,152,1055,172,-1,152,1056,1055,-1,348,1108,271,-1,348,1620,1108,-1,1620,106,1108,-1,1620,1230,106,-1,1099,1635,1636,-1,1099,290,1635,-1,26,1104,247,-1,26,1264,1104,-1,326,1227,343,-1,1220,1227,326,-1,1639,172,1037,-1,172,1639,14,-1,1278,1480,1040,-1,1375,1480,1278,-1,412,1074,358,-1,1074,412,411,-1,1093,397,1094,-1,1054,397,1093,-1,63,369,371,-1,63,1236,369,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl5_Geo_5_181_normalIndex_1()
		{
			int[] value = {906,662,814,-1,132,383,209,-1,618,582,245,-1,1576,1336,1424,-1,603,539,1336,-1,618,1478,1459,-1,1154,1548,1575,-1,1458,1492,1338,-1,1320,1437,1403,-1,1392,1560,1332,-1,504,264,856,-1,2,15,16,-1,46,54,28,-1,773,780,1274,-1,1603,1545,1511,-1,1606,1570,1603,-1,521,883,916,-1,944,548,650,-1,431,935,1164,-1,664,549,728,-1,1447,1356,1604,-1,999,936,898,-1,41,18,99,-1,656,849,848,-1,656,464,698,-1,298,322,59,-1,165,542,681,-1,1176,1032,1130,-1,497,398,468,-1,542,608,1032,-1,608,520,515,-1,398,323,305,-1,231,1316,461,-1,599,956,564,-1,89,69,54,-1,699,704,780,-1,482,394,778,-1,394,482,439,-1,15,112,105,-1,1293,527,1154,-1,200,208,489,-1,357,123,216,-1,98,222,381,-1,1217,1135,934,-1,1119,1037,484,-1,1217,934,1090,-1,1442,1462,1357,-1,1229,1517,1220,-1,1423,1309,1259,-1,1531,1538,1527,-1,1531,1446,1421,-1,1446,1229,1421,-1,635,1517,1442,-1,1415,1259,1268,-1,1319,1243,1267,-1,1208,1215,1321,-1,975,729,375,-1,1235,1295,598,-1,1280,1301,1010,-1,1532,800,1481,-1,286,304,405,-1,648,243,443,-1,669,640,661,-1,1356,939,1324,-1,1321,1533,1563,-1,1428,1366,1505,-1,1089,982,990,-1,1036,1081,770,-1,1189,1028,992,-1,1036,1233,1081,-1,1027,1145,1233,-1,34,3,61,-1,934,526,685,-1,1476,1296,1532,-1,1239,1330,703,-1,1093,719,708,-1,1121,500,512,-1,372,1009,708,-1,1156,982,1186,-1,911,690,626,-1,670,632,467,-1,136,220,341,-1,1059,899,869,-1,899,710,869,-1,572,571,712,-1,259,460,401,-1,401,460,758,-1,731,711,1006,-1,989,731,965,-1,712,731,989,-1,677,940,774,-1,56,144,108,-1,29,101,63,-1,108,111,113,-1,111,67,113,-1,163,244,197,-1,1318,1181,1555,-1,193,127,236,-1,404,648,303,-1,487,583,432,-1,936,911,626,-1,676,755,656,-1,1079,1199,1345,-1,1205,1280,1079,-1,364,299,479,-1,60,131,182,-1,182,354,364,-1,307,212,94,-1,1448,1573,1576,-1,1355,1226,1448,-1,1423,1314,1195,-1,1466,1432,1374,-1,1231,1169,793,-1,143,232,410,-1,1296,772,534,-1,1379,1458,1430,-1,1629,1507,1492,-1,28,54,69,-1,261,488,457,-1,534,253,801,-1,423,276,159,-1,105,220,136,-1,341,402,520,-1,192,131,60,-1,202,436,350,-1,48,178,181,-1,985,1086,1114,-1,1086,949,1078,-1,417,299,354,-1,266,267,48,-1,640,436,661,-1,858,414,536,-1,1224,1217,858,-1,214,87,123,-1,239,307,94,-1,20,87,98,-1,115,216,123,-1,1494,1418,1438,-1,158,91,93,-1,277,91,359,-1,1460,1284,1386,-1,1517,1229,1466,-1,1460,1538,1531,-1,255,473,555,-1,1487,1634,1580,-1,1468,1453,1494,-1,325,273,388,-1,35,112,2,-1,498,556,905,-1,109,24,20,-1,33,70,22,-1,174,241,102,-1,611,871,269,-1,1053,645,1031,-1,17,7,64,-1,271,317,66,-1,334,446,481,-1,705,609,854,-1,705,854,900,-1,1020,882,1059,-1,551,458,537,-1,6,206,12,-1,1374,1387,1372,-1,1315,820,821,-1,662,789,814,-1,132,184,775,-1,830,156,172,-1,841,176,833,-1,4,161,207,-1,4,6,12,-1,47,209,61,-1,1168,1231,1448,-1,1057,1282,1031,-1,927,1198,1047,-1,925,1355,1424,-1,594,485,1226,-1,76,378,109,-1,584,1261,1167,-1,491,489,1012,-1,300,394,248,-1,795,368,773,-1,1452,1274,946,-1,772,1214,1210,-1,1208,1198,1288,-1,1472,1290,1449,-1,814,732,387,-1,1484,1577,1439,-1,1342,1039,1045,-1,130,74,55,-1,575,428,312,-1,185,175,1039,-1,100,475,356,-1,493,157,195,-1,72,302,177,-1,1144,797,1384,-1,1632,1633,1646,-1,1434,1254,1396,-1,761,1126,1099,-1,1103,733,637,-1,786,864,756,-1,691,425,660,-1,204,169,44,-1,1187,1221,1253,-1,1277,1304,1225,-1,1073,1222,1026,-1,848,849,1005,-1,1588,1323,1348,-1,962,1098,1486,-1,421,499,724,-1,529,451,343,-1,1035,1151,529,-1,724,1054,1174,-1,763,1134,1054,-1,1373,1334,1317,-1,1085,688,1044,-1,1593,1589,1559,-1,794,777,932,-1,874,1254,1162,-1,1209,1162,1254,-1,1549,1522,1633,-1,475,753,356,-1,1155,1434,1451,-1,1431,1524,1269,-1,1406,1440,1528,-1,709,514,400,-1,1180,544,525,-1,1071,367,553,-1,562,958,709,-1,575,312,374,-1,288,154,162,-1,434,130,422,-1,390,333,230,-1,121,133,117,-1,227,205,117,-1,227,422,205,-1,162,130,776,-1,396,390,235,-1,229,386,382,-1,326,437,440,-1,1276,913,667,-1,1046,355,413,-1,629,345,370,-1,169,853,118,-1,1222,1343,1378,-1,1207,1409,993,-1,971,902,980,-1,320,725,289,-1,86,114,326,-1,278,386,229,-1,680,474,570,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl5_Geo_5_181_normalIndex_2()
		{
			int[] value = {770,566,623,-1,651,616,462,-1,566,416,623,-1,416,502,617,-1,1587,1645,1614,-1,958,1118,709,-1,118,353,173,-1,943,316,408,-1,505,923,888,-1,1152,538,605,-1,649,1272,1380,-1,737,619,550,-1,474,643,490,-1,1049,931,734,-1,1024,995,1137,-1,1514,1397,1303,-1,783,933,749,-1,1055,1123,1265,-1,914,1190,1266,-1,697,910,654,-1,1077,910,977,-1,933,977,749,-1,1539,1499,1643,-1,1579,1535,1596,-1,1499,1539,1546,-1,1536,1537,1539,-1,1536,1583,1537,-1,330,134,92,-1,1519,1543,1467,-1,1409,1242,993,-1,1064,721,976,-1,1221,1062,1146,-1,734,1021,1049,-1,1005,861,674,-1,568,370,177,-1,1166,1346,1279,-1,1346,1292,1457,-1,789,1327,1070,-1,1004,864,971,-1,1471,1404,1369,-1,203,74,80,-1,335,390,230,-1,332,121,346,-1,506,766,700,-1,692,752,506,-1,1170,517,1160,-1,218,195,284,-1,1228,1393,1493,-1,1170,1160,1370,-1,1397,1370,1122,-1,1504,1623,1636,-1,1493,1362,1228,-1,1549,1601,1514,-1,1128,1245,1303,-1,1469,1298,1472,-1,1298,1204,1290,-1,563,588,678,-1,1292,1212,1249,-1,1599,1383,1382,-1,980,1201,1004,-1,1173,1212,885,-1,428,919,740,-1,1416,1578,1394,-1,1627,1551,1528,-1,629,1263,1342,-1,85,106,62,-1,247,415,284,-1,1542,1561,1556,-1,133,262,191,-1,133,191,333,-1,1408,1335,1095,-1,149,233,198,-1,1571,1434,1396,-1,1646,1522,1613,-1,743,1094,1149,-1,1377,1522,1549,-1,1627,1530,1551,-1,1615,1610,1625,-1,1547,1491,1410,-1,1385,1381,1061,-1,592,612,997,-1,1643,1499,1585,-1,1207,1598,1643,-1,1584,1328,1376,-1,1294,1159,1325,-1,735,846,854,-1,942,747,854,-1,622,586,764,-1,1097,1117,1192,-1,796,1082,285,-1,1626,1473,1444,-1,252,270,279,-1,821,332,346,-1,878,1473,1484,-1,833,1474,841,-1,1485,1644,1640,-1,1626,1640,1644,-1,1645,1587,1577,-1,1587,1439,1577,-1,478,424,203,-1,958,367,1071,-1,424,478,1157,-1,1551,1530,1052,-1,1285,1052,486,-1,1256,1144,1416,-1,1396,1254,1344,-1,493,867,1271,-1,199,517,701,-1,433,438,859,-1,369,453,440,-1,326,553,367,-1,148,187,281,-1,120,433,517,-1,891,1143,475,-1,1209,1155,1143,-1,797,862,1148,-1,1361,988,1052,-1,700,1412,1157,-1,463,279,754,-1,1269,754,1431,-1,1339,1402,1427,-1,1230,963,448,-1,1587,732,1439,-1,360,188,55,-1,1398,1477,827,-1,281,187,217,-1,775,1484,1327,-1,262,814,365,-1,369,279,463,-1,204,628,796,-1,1041,736,764,-1,783,586,622,-1,734,931,784,-1,734,770,623,-1,1630,1631,1635,-1,1368,1325,1550,-1,1262,1080,1159,-1,1564,1584,1596,-1,1340,1467,1375,-1,1015,1450,1385,-1,1491,1480,1347,-1,1617,1600,1530,-1,678,1094,743,-1,588,746,786,-1,1124,1094,1029,-1,1422,1522,1377,-1,1422,1270,660,-1,1404,1342,1369,-1,233,496,413,-1,211,110,194,-1,13,65,19,-1,1369,1111,1002,-1,808,811,246,-1,55,188,186,-1,1637,1482,1474,-1,1556,1602,1622,-1,506,567,895,-1,284,415,237,-1,65,247,129,-1,40,36,14,-1,442,430,380,-1,411,233,213,-1,1480,1521,1450,-1,1411,1526,1557,-1,1433,1269,1524,-1,1384,1148,1451,-1,1557,1544,1524,-1,1599,1472,1383,-1,1212,1346,1108,-1,678,743,532,-1,1133,983,1096,-1,1141,1183,1290,-1,1348,1191,1298,-1,1183,1173,1201,-1,1445,1038,1328,-1,1445,1523,1329,-1,1126,1191,1348,-1,1328,1038,959,-1,1245,1128,1161,-1,1245,1281,1303,-1,1549,1436,1281,-1,1362,1559,1589,-1,1636,1474,1552,-1,1648,1644,1637,-1,1160,1122,1370,-1,1593,1553,1601,-1,895,567,579,-1,129,284,195,-1,247,65,164,-1,701,1393,1228,-1,279,270,186,-1,387,732,448,-1,335,283,390,-1,1342,1045,345,-1,496,589,1002,-1,1234,1346,1166,-1,1551,1285,1528,-1,1394,1422,1180,-1,428,575,744,-1,1457,1292,1329,-1,1279,1457,1568,-1,779,740,1166,-1,370,345,39,-1,674,647,628,-1,1062,750,942,-1,721,981,976,-1,1353,1343,1001,-1,943,1073,941,-1,1273,1409,1402,-1,1611,1520,1518,-1,36,85,62,-1,1583,1488,1461,-1,1583,1558,1489,-1,1539,1537,1546,-1,1535,1539,1567,-1,929,910,1077,-1,673,1007,742,-1,540,587,552,-1,1058,1117,872,-1,910,697,765,-1,673,602,631,-1,930,872,1117,-1,1303,1397,938,-1,1122,433,859,-1,717,680,570,-1,444,407,419,-1,1380,1310,923,-1,593,888,1017,-1,391,465,362,-1,1253,1378,1333,-1,1581,1619,1590,-1,462,747,502,-1,566,651,447,-1,846,735,616,-1,769,897,706,-1,591,725,941,-1,314,382,114,-1,437,386,278,-1,980,1067,1382,-1,561,921,595,-1,1222,1378,1253,-1,1073,943,1343,-1,725,320,943,-1,725,591,204,-1,629,370,568,-1,1276,1046,1263,-1,189,219,198,-1,589,496,486,-1,288,162,776,-1,154,80,130,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl5_Geo_5_181_normalIndex_3()
		{
			int[] value = {776,707,396,-1,227,434,422,-1,346,121,215,-1,230,365,387,-1,707,130,434,-1,288,287,154,-1,1069,1391,1420,-1,514,476,312,-1,1365,1544,1528,-1,1256,1416,1406,-1,1578,1613,1422,-1,469,1256,330,-1,1618,1632,1589,-1,867,794,932,-1,1246,1143,1312,-1,1128,1134,1161,-1,1054,331,1174,-1,1151,860,451,-1,499,1054,724,-1,1098,1419,1486,-1,1311,1213,1035,-1,576,724,1098,-1,1588,1599,1382,-1,1588,1348,1469,-1,741,884,762,-1,721,941,1073,-1,721,1064,941,-1,854,848,1188,-1,739,1080,1058,-1,1192,1116,1082,-1,1116,1192,1277,-1,796,628,736,-1,1221,1339,1297,-1,44,169,118,-1,1147,1014,1120,-1,902,625,1067,-1,917,978,983,-1,1136,1323,1588,-1,137,199,376,-1,229,217,146,-1,92,83,319,-1,797,1144,469,-1,53,224,78,-1,106,149,110,-1,475,100,138,-1,106,85,213,-1,219,242,194,-1,219,189,384,-1,1019,1157,1475,-1,360,1061,908,-1,1484,1473,1626,-1,1383,1201,980,-1,1348,1323,1099,-1,1321,1563,1282,-1,1456,1505,1366,-1,1452,1113,1210,-1,1274,780,704,-1,527,489,439,-1,491,877,856,-1,306,738,889,-1,1355,925,594,-1,1264,611,603,-1,927,893,1367,-1,1047,357,216,-1,1090,1282,1057,-1,648,291,303,-1,221,308,352,-1,1314,716,410,-1,906,232,61,-1,833,104,155,-1,781,827,258,-1,1429,1465,1364,-1,132,775,789,-1,1284,814,1386,-1,1216,1372,1288,-1,1447,1363,857,-1,601,551,882,-1,986,1020,869,-1,816,869,710,-1,770,784,720,-1,1036,720,911,-1,9,18,63,-1,99,327,275,-1,494,558,361,-1,29,66,60,-1,166,193,293,-1,603,611,263,-1,241,313,170,-1,50,30,24,-1,905,556,949,-1,868,901,1078,-1,722,569,266,-1,495,310,342,-1,431,274,212,-1,388,273,546,-1,1453,1235,1418,-1,1629,1580,1634,-1,273,290,665,-1,808,1360,1405,-1,1592,1466,1454,-1,91,31,45,-1,58,26,27,-1,954,555,473,-1,1430,1390,1240,-1,1629,1414,1580,-1,1639,1638,1612,-1,1219,1199,1322,-1,115,240,216,-1,264,51,200,-1,123,87,20,-1,1135,1171,577,-1,638,536,450,-1,202,267,436,-1,577,257,574,-1,664,358,519,-1,498,363,297,-1,1086,905,949,-1,554,650,516,-1,350,477,452,-1,349,459,298,-1,350,436,509,-1,317,604,192,-1,358,348,131,-1,521,559,298,-1,298,459,521,-1,519,604,543,-1,402,483,520,-1,520,800,341,-1,251,220,105,-1,104,176,5,-1,11,0,23,-1,295,534,488,-1,96,295,261,-1,738,636,1066,-1,1525,1492,1458,-1,1487,1580,1414,-1,1219,1240,1390,-1,488,534,1210,-1,261,457,946,-1,1168,955,1231,-1,1367,1466,1374,-1,1423,1195,906,-1,1259,1415,1359,-1,325,1010,1301,-1,91,158,359,-1,1048,1139,546,-1,479,299,414,-1,98,378,76,-1,1037,212,307,-1,904,1087,1224,-1,348,182,131,-1,1606,1301,1280,-1,1280,1205,1566,-1,1011,970,1068,-1,487,705,583,-1,642,703,304,-1,703,939,676,-1,249,128,243,-1,37,7,128,-1,1586,1569,1612,-1,163,113,67,-1,67,90,190,-1,166,90,67,-1,571,731,712,-1,994,940,677,-1,1091,1088,1129,-1,537,557,1289,-1,494,907,558,-1,1063,1003,994,-1,99,119,327,-1,537,711,551,-1,801,253,341,-1,772,1210,534,-1,875,1089,990,-1,1232,1241,1206,-1,708,719,268,-1,1018,613,719,-1,1286,1184,1258,-1,286,441,427,-1,58,27,71,-1,1145,900,1189,-1,1203,992,1081,-1,1028,887,846,-1,937,751,879,-1,1184,1193,1009,-1,970,676,939,-1,1533,1243,1319,-1,1366,1267,1215,-1,661,267,266,-1,243,404,377,-1,487,286,405,-1,405,304,547,-1,1324,703,1330,-1,939,1356,1447,-1,1481,800,528,-1,1079,1280,1010,-1,388,598,375,-1,1453,1437,1463,-1,1167,1139,1048,-1,635,1442,1357,-1,1442,1517,1573,-1,1165,1268,973,-1,1229,1220,1421,-1,1432,1527,1300,-1,1248,1284,1423,-1,1220,1517,973,-1,1462,1358,1357,-1,228,257,577,-1,1326,1171,1135,-1,87,280,222,-1,239,223,381,-1,212,35,94,-1,1318,381,1181,-1,69,16,28,-1,699,780,773,-1,344,527,399,-1,483,515,520,-1,461,1316,608,-1,1200,792,497,-1,1032,866,1130,-1,165,231,542,-1,468,305,351,-1,1211,1200,1308,-1,681,542,1176,-1,511,722,59,-1,767,762,774,-1,547,676,656,-1,557,558,907,-1,578,528,458,-1,458,528,420,-1,857,601,912,-1,308,427,432,-1,1532,1481,1604,-1,524,627,501,-1,569,1016,641,-1,664,728,985,-1,59,322,511,-1,946,457,1113,-1,1181,504,856,-1,1570,1426,1603,-1,1541,1494,1540,-1,1548,1154,727,-1,1494,1438,1569,-1,1403,1437,1468,-1,1320,1237,1463,-1,174,485,594,-1,871,611,1454,-1,582,455,179,-1,184,132,47,-1,906,209,383,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getl5_Geo_5_181_normalIndex_4()
		{
			int[] value = {661,436,267,-1,559,322,298,-1,916,722,511,-1,258,31,277,-1,906,383,662,-1,47,12,184,-1,582,179,245,-1,301,50,109,-1,611,1264,1454,-1,241,174,594,-1,539,313,925,-1,1320,1463,1437,-1,1468,1464,1403,-1,1494,1569,1540,-1,1512,1548,727,-1,1438,1516,1569,-1,79,208,200,-1,856,1332,1181,-1,1505,1429,1428,-1,985,650,664,-1,569,903,1016,-1,393,524,501,-1,1532,1604,1476,-1,432,352,308,-1,912,1011,857,-1,420,371,458,-1,848,854,464,-1,774,922,767,-1,181,298,59,-1,266,48,59,-1,542,1032,1176,-1,1211,1130,1200,-1,468,398,305,-1,231,461,542,-1,1032,608,866,-1,497,1115,1200,-1,234,329,398,-1,1316,520,608,-1,261,159,96,-1,368,699,773,-1,439,482,399,-1,381,504,1181,-1,212,112,35,-1,87,222,98,-1,1326,1135,1217,-1,574,679,577,-1,685,1282,1090,-1,966,1247,1043,-1,1165,635,1357,-1,1309,1423,1460,-1,1284,1460,1423,-1,1309,1531,1421,-1,1165,973,635,-1,1442,1573,1462,-1,375,1010,388,-1,1214,772,1364,-1,528,1363,1481,-1,528,578,1363,-1,1447,1068,939,-1,703,1324,939,-1,304,703,547,-1,487,441,286,-1,1051,722,1092,-1,1476,1533,1319,-1,970,939,1068,-1,1027,1233,1036,-1,1189,900,887,-1,1203,1081,1233,-1,1189,1203,1145,-1,34,61,71,-1,1224,1326,1217,-1,427,303,286,-1,1184,1286,1193,-1,1018,719,1093,-1,719,340,268,-1,1283,1158,1286,-1,1232,1283,1241,-1,875,990,947,-1,341,800,801,-1,882,899,1059,-1,537,1006,711,-1,119,379,327,-1,994,950,1063,-1,1289,1006,537,-1,1129,1125,1091,-1,994,677,950,-1,712,989,1091,-1,103,111,108,-1,190,163,67,-1,1612,1638,1586,-1,128,125,37,-1,249,243,377,-1,676,547,703,-1,642,304,291,-1,666,597,1000,-1,705,898,583,-1,1011,996,970,-1,1566,1606,1280,-1,1320,1403,1322,-1,348,354,182,-1,1224,858,904,-1,307,484,1037,-1,98,381,378,-1,546,665,1048,-1,158,455,359,-1,1301,618,325,-1,1259,1359,1314,-1,906,1248,1423,-1,1367,1454,1466,-1,423,261,946,-1,488,1210,1113,-1,1219,1390,1426,-1,1487,1414,1287,-1,1458,1379,1525,-1,1066,1105,738,-1,11,4,0,-1,251,363,220,-1,341,363,402,-1,402,684,483,-1,604,684,543,-1,358,131,192,-1,192,66,317,-1,350,509,477,-1,298,181,349,-1,178,350,349,-1,477,492,452,-1,554,664,650,-1,549,664,519,-1,664,554,358,-1,536,299,450,-1,267,178,48,-1,123,20,115,-1,200,491,264,-1,123,357,214,-1,115,122,240,-1,201,124,170,-1,1438,1418,1261,-1,1322,1287,1219,-1,1612,1597,1639,-1,1629,1525,1414,-1,1240,1379,1430,-1,954,473,793,-1,45,93,91,-1,176,168,11,-1,1592,1517,1466,-1,1405,811,808,-1,665,546,273,-1,1629,1634,1647,-1,1464,1541,1441,-1,1235,1139,1418,-1,273,325,245,-1,935,431,212,-1,274,112,212,-1,615,556,523,-1,722,903,569,-1,1078,949,868,-1,297,310,498,-1,112,15,2,-1,109,50,24,-1,241,170,126,-1,603,263,201,-1,293,260,166,-1,60,68,29,-1,420,528,800,-1,558,385,361,-1,624,481,581,-1,481,446,581,-1,18,29,63,-1,666,464,597,-1,1027,1036,911,-1,1036,770,720,-1,816,826,869,-1,1020,1059,869,-1,882,912,601,-1,207,206,6,-1,1216,1367,1372,-1,383,132,789,-1,827,172,258,-1,829,833,155,-1,1592,1454,1264,-1,209,906,61,-1,1195,1314,410,-1,221,249,308,-1,1053,1282,1239,-1,1053,1031,1282,-1,216,927,1047,-1,927,1367,1216,-1,603,1336,1264,-1,594,1226,1355,-1,889,254,306,-1,264,491,856,-1,527,439,399,-1,527,1012,489,-1,1210,1534,1452,-1,1364,1465,1511,-1,1282,1047,1321,-1,1136,921,730,-1,1388,1622,1398,-1,1626,1577,1484,-1,1530,1600,1361,-1,908,188,360,-1,1019,1475,1410,-1,715,1347,1107,-1,219,384,324,-1,194,183,219,-1,106,213,149,-1,891,475,138,-1,85,134,213,-1,1451,1434,1571,-1,469,319,797,-1,469,92,319,-1,517,1170,701,-1,376,309,137,-1,983,637,917,-1,625,790,1067,-1,1147,1120,1255,-1,173,44,118,-1,1221,1187,1339,-1,796,736,1041,-1,1277,1225,1116,-1,1188,981,854,-1,981,1026,854,-1,1064,1005,941,-1,762,767,741,-1,1588,921,1136,-1,576,1098,962,-1,1311,1373,1213,-1,1098,1174,1419,-1,499,763,1054,-1,451,529,1151,-1,1213,1317,1417,-1,1054,1128,331,-1,1553,1493,1393,-1,867,932,1271,-1,1246,1162,1209,-1,469,1144,1256,-1,1613,1522,1422,-1,1528,1440,1365,-1,400,514,312,-1,1069,964,1072,-1,562,367,958,-1,634,374,691,-1,288,776,445,-1,191,230,333,-1,230,191,365,-1,227,117,333,-1,776,396,445,-1,154,130,162,-1,1263,629,1276,-1,281,859,438,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getl5_Geo_5_181_normalIndex_5()
		{
			int[] value = {169,1116,853,-1,204,289,725,-1,316,943,320,-1,1073,1343,1222,-1,1222,1253,1146,-1,1273,1242,1409,-1,1382,1383,980,-1,980,902,1067,-1,314,114,173,-1,591,941,674,-1,465,605,538,-1,623,416,617,-1,735,747,462,-1,416,566,447,-1,502,447,462,-1,1581,1587,1614,-1,400,312,428,-1,1253,1333,1187,-1,454,362,465,-1,593,1017,639,-1,1310,888,923,-1,362,505,366,-1,407,366,419,-1,717,570,745,-1,938,853,1303,-1,586,749,764,-1,1117,1097,930,-1,631,530,673,-1,1080,739,1159,-1,872,910,765,-1,872,765,1058,-1,552,508,540,-1,673,742,602,-1,587,654,929,-1,1535,1567,1596,-1,1461,1558,1583,-1,1583,1536,1488,-1,36,62,14,-1,1518,1642,1611,-1,1409,1518,1402,-1,941,725,943,-1,1343,943,1001,-1,1062,942,1146,-1,591,674,628,-1,328,242,324,-1,779,590,740,-1,1568,1490,1279,-1,1329,1523,1457,-1,744,919,428,-1,1422,544,1180,-1,1285,1256,1528,-1,1002,1111,496,-1,345,629,1342,-1,283,235,390,-1,448,230,387,-1,186,188,279,-1,418,700,478,-1,701,1170,1393,-1,164,380,247,-1,195,157,129,-1,579,988,895,-1,1393,1370,1553,-1,1553,1514,1601,-1,1637,1624,1648,-1,1589,1344,1362,-1,1549,1281,1399,-1,1303,853,1128,-1,1161,959,1245,-1,959,1161,1328,-1,1348,1099,1126,-1,1445,1329,1291,-1,1328,1584,1445,-1,1183,1201,1290,-1,1298,1469,1348,-1,1298,1290,1472,-1,1290,1204,1141,-1,983,978,1096,-1,1149,1349,1281,-1,1132,978,1101,-1,1072,1391,1069,-1,1201,1383,1449,-1,1212,1108,1056,-1,1069,476,514,-1,1557,1627,1544,-1,1451,1595,1384,-1,1431,1411,1557,-1,328,442,380,-1,14,10,40,-1,65,129,19,-1,237,218,284,-1,766,506,895,-1,1619,1620,1590,-1,1556,1561,1602,-1,186,130,55,-1,246,282,808,-1,1002,1354,1369,-1,19,1,13,-1,233,413,198,-1,1111,1369,1263,-1,1422,1377,1270,-1,1302,1337,1153,-1,786,678,588,-1,1149,1337,1349,-1,1646,1633,1522,-1,1628,1617,1530,-1,1491,1347,1410,-1,1385,1061,1015,-1,1467,1489,1375,-1,1584,1630,1596,-1,853,1116,1225,-1,1159,1294,1262,-1,1635,1579,1630,-1,981,1188,976,-1,734,623,617,-1,734,784,770,-1,783,622,658,-1,764,1097,1041,-1,796,285,204,-1,204,591,628,-1,1640,1444,1435,-1,369,265,279,-1,789,775,1327,-1,827,781,1398,-1,1587,1401,732,-1,963,335,448,-1,1297,1339,1427,-1,1333,1353,993,-1,590,367,562,-1,1269,553,754,-1,279,759,754,-1,1157,478,700,-1,1052,1530,1361,-1,797,1148,1384,-1,1246,1209,1143,-1,1155,753,1143,-1,891,1312,1143,-1,948,794,376,-1,517,199,120,-1,278,146,196,-1,367,86,326,-1,316,367,408,-1,376,199,701,-1,493,1271,890,-1,1254,874,1344,-1,486,411,1285,-1,1052,1285,1551,-1,424,1157,1019,-1,226,318,715,-1,553,453,754,-1,612,367,590,-1,203,418,478,-1,1644,1648,1626,-1,1435,1485,1640,-1,833,1552,1474,-1,775,878,1484,-1,814,789,1070,-1,821,820,332,-1,265,252,279,-1,1626,1444,1640,-1,1192,1041,1097,-1,764,736,622,-1,854,1026,942,-1,747,735,854,-1,1064,976,1188,-1,1594,1579,1635,-1,1294,1325,1368,-1,1409,1207,1643,-1,1585,1642,1643,-1,997,1106,592,-1,1381,908,1061,-1,1547,1410,1475,-1,1625,1582,1615,-1,1627,1628,1530,-1,1377,1549,1399,-1,1094,1337,1149,-1,1605,1571,1396,-1,1263,1369,1342,-1,149,198,183,-1,65,13,164,-1,1095,1175,1408,-1,117,133,333,-1,186,422,130,-1,262,365,191,-1,1542,1556,1495,-1,247,284,129,-1,213,233,149,-1,1524,1431,1557,-1,1528,1544,1627,-1,1394,1406,1416,-1,1524,1544,1433,-1,740,400,428,-1,1108,1234,919,-1,1212,1056,885,-1,1472,1449,1383,-1,1346,1234,1108,-1,1292,1346,1212,-1,743,1014,917,-1,678,532,563,-1,1469,1472,1599,-1,1290,1201,1449,-1,1134,1328,1161,-1,1436,1303,1281,-1,1514,1436,1549,-1,1281,1349,1399,-1,1493,1559,1362,-1,1636,1552,1504,-1,938,1397,1122,-1,1170,1370,1393,-1,1589,1593,1618,-1,506,418,692,-1,506,700,418,-1,270,215,186,-1,448,335,230,-1,203,424,318,-1,1578,1422,1394,-1,1279,1346,1457,-1,1279,779,1166,-1,1005,674,941,-1,734,686,1021,-1,1146,1253,1221,-1,1333,993,1242,-1,1413,1519,1467,-1,92,469,330,-1,1537,1583,1546,-1,1499,1546,1515,-1,1579,1596,1630,-1,1539,1643,1598,-1,933,998,977,-1,654,910,929,-1,697,654,585,-1,872,930,910,-1,886,914,1266,-1,1142,1055,1265,-1,929,1077,1075,-1,783,749,586,-1,1514,1303,1436,-1,1172,1024,1137,-1,1049,972,931,-1,522,535,768,-1,573,395,639,-1,1380,923,649,-1,1131,1152,605,-1,454,505,362,-1,505,888,593,-1,1001,943,408,-1,1187,1333,1339,-1,353,314,173,-1,958,1071,1118,-1,1581,1614,1619,-1,502,416,447,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getl5_Geo_5_181_normalIndex_6()
		{
			int[] value = {447,651,462,-1,462,616,735,-1,474,490,389,-1,680,643,474,-1,289,44,114,-1,229,146,278,-1,114,382,326,-1,980,1004,971,-1,1273,1333,1242,-1,1001,993,1353,-1,173,114,44,-1,169,204,285,-1,198,219,183,-1,413,1263,1046,-1,695,1276,667,-1,39,78,72,-1,314,229,382,-1,130,80,74,-1,130,707,776,-1,227,333,434,-1,332,250,121,-1,387,365,814,-1,288,445,287,-1,575,374,634,-1,562,709,400,-1,1269,1071,553,-1,1069,514,964,-1,544,425,691,-1,312,476,480,-1,709,964,514,-1,1544,1365,1420,-1,1528,1256,1406,-1,1451,1148,1155,-1,475,1143,753,-1,1633,1601,1549,-1,1162,1065,874,-1,794,948,777,-1,1174,331,1419,-1,1373,1317,1213,-1,1134,1128,1054,-1,724,1174,1098,-1,1035,1213,1151,-1,655,529,343,-1,421,724,576,-1,962,1486,1479,-1,1588,1382,921,-1,1588,1469,1599,-1,1550,1631,1609,-1,750,686,644,-1,44,289,204,-1,917,1101,978,-1,660,1270,691,-1,756,967,786,-1,983,1103,637,-1,730,761,1099,-1,39,148,116,-1,376,794,867,-1,1618,1593,1601,-1,1646,1641,1632,-1,1384,1416,1144,-1,319,83,256,-1,242,219,324,-1,309,493,195,-1,356,73,100,-1,175,1045,1039,-1,321,1107,1015,-1,226,321,74,-1,1342,1404,1039,-1,1439,1327,1484,-1,814,1070,732,-1,1388,1398,781,-1,781,785,1388,-1,1239,1282,1330,-1,946,1113,1452,-1,795,773,1182,-1,300,778,394,-1,491,1012,877,-1,223,504,381,-1,584,378,1261,-1,378,584,109,-1,485,1168,1226,-1,606,1282,685,-1,1448,1226,1168,-1,47,61,3,-1,12,0,4,-1,6,4,207,-1,176,104,833,-1,827,830,172,-1,184,878,775,-1,1300,1315,821,-1,1372,1367,1374,-1,206,184,12,-1,1363,578,857,-1,551,601,458,-1,1020,912,882,-1,464,666,698,-1,9,63,52,-1,481,337,334,-1,64,144,17,-1,1053,541,645,-1,611,269,263,-1,241,126,102,-1,22,38,33,-1,76,109,20,-1,498,310,556,-1,1453,1418,1494,-1,555,311,255,-1,1531,1309,1460,-1,1460,1386,1538,-1,277,31,91,-1,158,93,97,-1,1586,1540,1569,-1,325,388,1010,-1,98,76,20,-1,94,223,239,-1,1217,918,858,-1,267,202,178,-1,536,414,299,-1,417,450,299,-1,728,627,905,-1,1114,1086,1078,-1,944,985,1114,-1,350,452,349,-1,178,349,181,-1,66,192,60,-1,483,317,515,-1,363,341,220,-1,105,136,46,-1,251,297,363,-1,276,89,159,-1,534,295,253,-1,261,295,488,-1,159,261,423,-1,1492,1525,1629,-1,801,1296,534,-1,488,1113,457,-1,410,255,143,-1,798,1231,793,-1,1300,1527,1315,-1,1423,1259,1314,-1,273,245,179,-1,669,788,640,-1,662,383,789,-1,354,299,364,-1,182,81,60,-1,479,873,364,-1,1079,1345,1205,-1,676,970,755,-1,626,652,936,-1,487,432,441,-1,666,1000,698,-1,648,404,243,-1,193,107,127,-1,1555,1516,1318,-1,163,190,244,-1,103,67,111,-1,29,68,101,-1,56,17,144,-1,677,774,630,-1,663,731,571,-1,965,1060,989,-1,460,696,758,-1,180,259,401,-1,341,253,136,-1,503,670,467,-1,911,720,690,-1,880,1109,1127,-1,909,1100,1025,-1,1018,1251,1074,-1,708,268,372,-1,1013,1121,512,-1,1286,1158,1193,-1,1093,708,1158,-1,1239,703,642,-1,308,303,427,-1,1476,1319,1296,-1,526,606,685,-1,27,34,71,-1,1203,1233,1145,-1,1189,992,1203,-1,887,1028,1189,-1,1260,1156,1186,-1,1089,1186,982,-1,1533,1604,1356,-1,1428,1267,1366,-1,1321,1243,1533,-1,669,661,641,-1,404,303,377,-1,291,648,642,-1,1604,1533,1476,-1,1363,1447,1481,-1,1468,1437,1453,-1,598,388,1235,-1,975,375,951,-1,1566,1570,1606,-1,1267,1428,1319,-1,1576,1573,1517,-1,635,973,1517,-1,1220,1309,1421,-1,1527,1400,1315,-1,814,1284,1248,-1,1358,1165,1357,-1,934,685,1090,-1,679,1135,577,-1,966,1164,1037,-1,1163,1171,1326,-1,1135,679,934,-1,228,280,87,-1,222,239,381,-1,489,491,200,-1,1293,1012,527,-1,105,46,15,-1,778,580,482,-1,699,881,704,-1,403,961,1138,-1,398,329,323,-1,608,515,866,-1,542,461,608,-1,1115,497,468,-1,1176,1130,1211,-1,171,165,681,-1,722,266,59,-1,48,181,59,-1,656,848,464,-1,609,405,547,-1,420,339,371,-1,441,432,427,-1,1604,1481,1447,-1,1164,966,431,-1,985,944,650,-1,559,521,916,-1,1603,1511,1606,-1,248,394,208,-1,2,16,8,-1,504,223,264,-1,1205,1345,1566,-1,1492,1182,1338,-1,1293,1154,1575,-1,582,618,1459,-1,1326,1224,1087,-1,1592,1576,1517,-1,618,245,325,-1,209,47,132,-1,1248,906,814,-1,202,350,178,-1,511,559,916,-1,559,511,322,-1,785,258,277,-1,781,258,785,-1,158,179,455,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getl5_Geo_5_181_normalIndex_7()
		{
			int[] value = {158,151,179,-1,1264,1576,1592,-1,1576,1264,1336,-1,174,238,485,-1,174,33,238,-1,729,1320,1079,-1,729,1237,1320,-1,1570,1345,1426,-1,1570,1566,1345,-1,1507,727,795,-1,1507,1512,727,-1,1238,1575,1392,-1,1238,1293,1575,-1,1274,1182,773,-1,1338,1182,1274,-1,621,523,904,-1,621,615,523,-1,627,549,501,-1,627,728,549,-1,791,813,670,-1,791,825,813,-1,338,236,127,-1,338,429,236,-1,500,125,221,-1,500,372,125,-1,928,837,843,-1,928,986,837,-1,601,578,458,-1,601,857,578,-1,99,234,41,-1,234,99,275,-1,147,259,180,-1,259,147,210,-1,633,806,803,-1,624,806,633,-1,1000,609,547,-1,1000,597,609,-1,956,1211,1308,-1,599,1211,956,-1,403,336,171,-1,607,336,403,-1,1200,1076,1308,-1,1200,1115,1076,-1,165,305,231,-1,351,305,165,-1,271,792,317,-1,792,271,497,-1,607,1138,470,-1,607,403,1138,-1,574,214,526,-1,574,257,214,-1,966,1119,1247,-1,1037,1119,966,-1,1282,357,1047,-1,1282,606,357,-1,1295,1030,598,-1,1030,1295,1227,-1,1463,1235,1453,-1,1295,1235,1463,-1,1214,1511,1545,-1,1511,1214,1364,-1,1563,1330,1282,-1,1324,1330,1563,-1,1372,1366,1288,-1,1372,1456,1366,-1,1009,1158,708,-1,1009,1193,1158,-1,937,880,751,-1,937,1109,880,-1,626,957,714,-1,690,957,626,-1,1018,702,613,-1,1074,702,1018,-1,338,719,613,-1,719,338,340,-1,1158,1232,1093,-1,1283,1232,1158,-1,1206,1251,1232,-1,1251,1206,1257,-1,1109,1156,1257,-1,1109,937,1156,-1,1206,1100,1127,-1,1241,1100,1206,-1,1025,726,909,-1,1025,855,726,-1,718,909,726,-1,909,718,723,-1,513,518,406,-1,513,560,518,-1,974,994,1003,-1,994,969,940,-1,974,969,994,-1,1091,1060,1088,-1,1091,989,1060,-1,757,373,760,-1,379,373,757,-1,865,1088,1060,-1,865,757,1088,-1,1125,1063,950,-1,1129,1063,1125,-1,663,710,899,-1,663,646,710,-1,969,802,922,-1,782,802,969,-1,272,449,435,-1,449,272,260,-1,435,533,412,-1,435,531,533,-1,221,128,249,-1,128,221,125,-1,405,705,487,-1,609,705,405,-1,160,873,645,-1,160,364,873,-1,896,638,748,-1,896,675,638,-1,115,24,122,-1,24,115,20,-1,273,151,290,-1,179,151,273,-1,3,27,26,-1,27,3,34,-1,1240,1287,1414,-1,1287,1240,1219,-1,1066,954,1105,-1,1066,1033,954,-1,4,168,161,-1,168,4,11,-1,150,57,156,-1,43,57,150,-1,363,684,402,-1,363,543,684,-1,141,25,140,-1,25,141,30,-1,519,192,604,-1,358,192,519,-1,477,456,492,-1,477,417,456,-1,456,516,492,-1,456,554,516,-1,516,548,466,-1,516,650,548,-1,858,621,904,-1,536,621,858,-1,348,554,456,-1,554,348,358,-1,263,124,201,-1,140,124,263,-1,1287,1441,1487,-1,1287,1322,1441,-1,1639,1634,1638,-1,1639,1647,1634,-1,1167,1033,1066,-1,1167,1048,1033,-1,954,1169,1105,-1,954,793,1169,-1,71,139,88,-1,139,71,143,-1,21,58,43,-1,21,26,58,-1,657,290,292,-1,657,665,290,-1,495,556,310,-1,495,523,556,-1,1051,903,722,-1,903,1051,1016,-1,112,251,105,-1,251,112,274,-1,30,42,25,-1,50,42,30,-1,927,240,893,-1,927,216,240,-1,166,107,193,-1,166,135,107,-1,645,95,160,-1,541,95,645,-1,361,327,494,-1,275,327,361,-1,210,197,244,-1,210,147,197,-1,843,755,928,-1,843,847,755,-1,720,828,693,-1,784,828,720,-1,838,879,751,-1,838,840,879,-1,947,825,791,-1,832,825,947,-1,809,531,805,-1,809,533,531,-1,812,802,694,-1,812,819,802,-1,824,620,596,-1,824,822,620,-1,869,837,986,-1,837,869,826,-1,1364,1296,1319,-1,1364,772,1296,-1,1405,1459,1483,-1,1405,1360,1459,-1,829,150,831,-1,829,155,150,-1,906,410,232,-1,906,1195,410,-1,308,377,303,-1,377,308,249,-1,738,301,636,-1,306,301,738,-1,394,489,208,-1,439,489,394,-1,1376,1609,1584,-1,1376,1417,1609,-1,1477,1622,1602,-1,1622,1477,1398,-1,1347,1019,1410,-1,715,1019,1347,-1,1608,1395,1341,-1,1395,1608,1610,-1,146,153,196,-1,175,153,146,-1,194,149,183,-1,149,194,110,-1,36,83,92,-1,36,40,83,-1,137,237,77,-1,137,218,237,-1,1451,1616,1595,-1,1451,1571,1616,-1,1595,1613,1578,-1,1595,1616,1613,-1,217,345,146,-1,217,187,345,-1,116,78,39,-1,116,53,78,-1,493,376,867,-1,376,493,309,-1,1124,1022,744,-1,1124,1029,1022,-1,1101,1014,1147,-1,1101,917,1014,-1,1137,1140,1299,-1,1137,991,1140,-1,1574,1380,1611,-1,1574,1310,1380,-1,686,1062,1021,-1,750,1062,686,-1,1140,945,1223,-1,945,1140,876,-1,736,647,622,-1,736,628,647,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getl5_Geo_5_181_normalIndex_8()
		{
			int[] value = {1262,1304,1277,-1,1262,1334,1304,-1,1635,1498,1594,-1,1635,1529,1498,-1,1306,1123,1150,-1,1306,1265,1123,-1,1080,1277,1058,-1,1080,1262,1277,-1,421,688,343,-1,688,421,1044,-1,1307,1244,1479,-1,1244,1307,1034,-1,1177,1311,1035,-1,1307,1311,1177,-1,763,451,860,-1,451,763,499,-1,331,1304,1419,-1,331,1225,1304,-1,510,1034,1179,-1,510,1244,1034,-1,510,682,1244,-1,1433,1072,1118,-1,1433,1391,1072,-1,525,691,374,-1,691,525,544,-1,614,355,1046,-1,426,355,614,-1,413,189,198,-1,189,413,355,-1,148,438,116,-1,281,438,148,-1,316,86,367,-1,86,316,320,-1,278,265,369,-1,278,196,265,-1,505,649,923,-1,505,454,649,-1,768,706,897,-1,768,535,706,-1,687,1049,926,-1,1049,687,972,-1,945,639,1017,-1,639,945,573,-1,888,1305,1017,-1,1310,1305,888,-1,419,505,593,-1,505,419,366,-1,395,444,419,-1,392,444,395,-1,490,535,392,-1,490,706,535,-1,550,444,522,-1,444,550,407,-1,737,924,915,-1,920,924,737,-1,930,764,749,-1,764,930,1097,-1,1498,1275,1278,-1,1529,1275,1498,-1,530,914,886,-1,530,631,914,-1,668,870,960,-1,668,671,870,-1,1159,787,1325,-1,739,787,1159,-1,960,1055,1142,-1,960,870,1055,-1,1058,697,739,-1,765,697,1058,-1,886,508,530,-1,892,508,886,-1,929,1007,673,-1,1007,929,1075,-1,979,742,1007,-1,979,884,742,-1,1558,1351,1371,-1,1351,1558,1461,-1,1196,1351,1313,-1,1196,1236,1351,-1,1611,1585,1574,-1,1611,1642,1585,-1,713,674,861,-1,713,647,674,-1,779,1490,997,-1,779,1279,1490,-1,1042,525,480,-1,1180,525,1042,-1,1565,1542,1562,-1,1561,1542,1565,-1,1401,1408,1230,-1,1502,1408,1401,-1,380,415,247,-1,430,415,380,-1,1352,1510,1506,-1,1352,1335,1510,-1,1645,1624,1620,-1,1645,1648,1624,-1,1591,1501,1496,-1,1501,1591,1607,-1,959,1281,1245,-1,959,1104,1281,-1,1621,1508,1509,-1,1617,1508,1621,-1,1584,1523,1445,-1,1564,1523,1584,-1,1212,1183,1249,-1,1212,1173,1183,-1,1204,1191,1185,-1,1191,1204,1298,-1,561,730,921,-1,561,761,730,-1,1103,1133,1185,-1,1103,983,1133,-1,1022,919,744,-1,919,1022,1108,-1,1096,1329,1194,-1,1291,1329,1096,-1,1042,476,1069,-1,476,1042,480,-1,1042,1440,1180,-1,1365,1440,1042,-1,1508,1411,1381,-1,1411,1508,1526,-1,442,224,430,-1,442,302,224,-1,610,486,579,-1,610,589,486,-1,506,689,567,-1,506,752,689,-1,1510,1581,1562,-1,1502,1581,1510,-1,1561,1591,1602,-1,1561,1565,1591,-1,1636,1637,1474,-1,1624,1637,1636,-1,246,815,296,-1,811,815,246,-1,19,138,1,-1,138,19,142,-1,1111,413,496,-1,1111,1263,413,-1,1094,1153,1337,-1,1094,1124,1153,-1,790,595,921,-1,625,595,790,-1,1632,1605,1589,-1,1641,1605,1632,-1,1450,1347,1480,-1,1015,1347,1450,-1,1015,1107,1347,-1,1340,1202,1172,-1,1340,1375,1202,-1,1554,997,1490,-1,997,1554,1106,-1,1584,1631,1630,-1,1584,1609,1631,-1,1455,1443,1407,-1,1455,1503,1443,-1,861,843,713,-1,861,847,843,-1,502,734,617,-1,644,734,502,-1,734,644,686,-1,920,834,924,-1,920,836,834,-1,839,643,680,-1,643,839,842,-1,804,1024,1084,-1,1024,804,807,-1,806,1083,1040,-1,1083,806,810,-1,823,884,979,-1,884,823,762,-1,816,998,933,-1,998,816,818,-1,225,346,215,-1,225,296,346,-1,844,1444,835,-1,844,1435,1444,-1,1252,785,808,-1,1388,785,1252,-1,1501,829,831,-1,1501,1504,829,-1,283,963,692,-1,963,283,335,-1,408,993,1001,-1,408,592,993,-1,188,759,279,-1,188,908,759,-1,1395,700,766,-1,700,1395,1412,-1,1155,1254,1434,-1,1254,1155,1209,-1,217,314,281,-1,229,314,217,-1,948,701,1228,-1,376,701,948,-1,1362,874,777,-1,1344,874,1362,-1,1285,330,1256,-1,411,330,1285,-1,766,1341,1395,-1,766,895,1341,-1,1061,321,1015,-1,360,321,1061,-1,592,367,612,-1,408,367,592,-1,283,418,203,-1,692,418,283,-1,1474,845,841,-1,1474,1482,845,-1,831,1496,1501,-1,1496,831,830,-1,252,215,270,-1,252,225,215,-1,353,853,938,-1,353,118,853,-1,783,816,933,-1,783,826,816,-1,823,1050,824,-1,979,1050,823,-1,952,803,1008,-1,952,812,803,-1,1084,805,804,-1,1084,1112,805,-1,717,839,680,-1,717,832,839,-1,836,897,838,-1,920,897,836,-1,942,502,747,-1,942,644,502,-1,644,942,750,-1,847,1005,849,-1,861,1005,847,-1,1306,1407,1443,-1,1313,1407,1306,-1,1225,1128,853,-1,1225,331,1128,-1,1598,1106,1554,-1,1207,1106,1598,-1,1515,1585,1499,-1,1543,1585,1515,-1,590,997,612,-1,997,590,779,-1,1615,1547,1475,-1,1582,1547,1615,-1,1589,1396,1344,-1,1605,1396,1589,-1,1377,1349,1337,-1,1377,1399,1349,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getl5_Geo_5_181_normalIndex_9()
		{
			int[] value = {1175,1230,1408,-1,1230,1175,963,-1,1565,1607,1591,-1,1565,1590,1607,-1,1590,1562,1581,-1,1562,1590,1565,-1,1500,1542,1495,-1,1506,1542,1500,-1,62,211,164,-1,106,211,62,-1,110,211,106,-1,1420,1042,1069,-1,1420,1365,1042,-1,919,1166,740,-1,1166,919,1234,-1,1173,1004,1201,-1,1173,885,1004,-1,1291,978,1132,-1,1291,1096,978,-1,1104,1255,1281,-1,1104,1147,1255,-1,1281,1120,1149,-1,1281,1255,1120,-1,761,563,733,-1,561,563,761,-1,1185,1126,1103,-1,1126,1185,1191,-1,1509,1625,1621,-1,1509,1521,1625,-1,1496,1602,1591,-1,1496,1477,1602,-1,1095,610,689,-1,987,610,1095,-1,1,100,10,-1,1,138,100,-1,1122,517,433,-1,517,1122,1160,-1,752,963,1175,-1,752,692,963,-1,121,205,215,-1,121,117,205,-1,1556,1197,1495,-1,1252,1197,1556,-1,1022,1056,1108,-1,1022,967,1056,-1,328,568,442,-1,324,568,328,-1,592,1207,993,-1,1207,592,1106,-1,1218,1084,1202,-1,1112,1084,1218,-1,1236,1371,1351,-1,1371,1236,1218,-1,1461,1313,1351,-1,1313,1461,1407,-1,1455,1535,1579,-1,1455,1488,1535,-1,742,741,671,-1,884,741,742,-1,1023,977,998,-1,1023,1077,977,-1,540,892,894,-1,540,508,892,-1,870,952,1055,-1,870,852,952,-1,892,1266,1278,-1,892,886,1266,-1,673,587,929,-1,587,673,552,-1,631,960,914,-1,631,668,960,-1,1190,1265,1389,-1,1190,1142,1265,-1,1275,1550,1325,-1,1275,1529,1550,-1,968,931,972,-1,953,931,968,-1,768,920,737,-1,897,920,768,-1,687,391,659,-1,391,687,465,-1,407,619,391,-1,407,550,619,-1,522,392,535,-1,444,392,522,-1,419,639,395,-1,593,639,419,-1,991,876,1140,-1,991,745,876,-1,605,1178,1131,-1,1178,605,926,-1,1223,1017,1305,-1,1223,945,1017,-1,740,562,400,-1,590,562,740,-1,850,566,770,-1,850,651,566,-1,538,454,465,-1,538,649,454,-1,167,296,225,-1,167,246,296,-1,369,437,278,-1,369,440,437,-1,169,1082,1116,-1,169,285,1082,-1,433,116,438,-1,120,116,433,-1,355,315,189,-1,315,355,426,-1,382,437,326,-1,382,386,437,-1,121,262,133,-1,250,262,121,-1,1118,1269,1433,-1,1118,1071,1269,-1,660,544,1422,-1,425,544,660,-1,1118,964,709,-1,1118,1072,964,-1,1065,1246,1312,-1,1246,1065,1162,-1,1417,1151,1213,-1,1417,1376,1151,-1,1134,860,1328,-1,860,1134,763,-1,1035,655,1177,-1,1035,529,655,-1,510,421,576,-1,1044,421,510,-1,1179,1307,1177,-1,1034,1307,1179,-1,1265,1443,1389,-1,1306,1443,1265,-1,1631,1529,1635,-1,1631,1550,1529,-1,658,647,713,-1,658,622,647,-1,876,573,945,-1,573,876,545,-1,1427,1131,1297,-1,1427,1152,1131,-1,1519,1310,1574,-1,1519,1305,1310,-1,995,991,1137,-1,995,863,991,-1,575,1124,744,-1,575,1153,1124,-1,1029,967,1022,-1,1029,786,967,-1,53,120,77,-1,116,120,53,-1,1632,1601,1633,-1,1632,1618,1601,-1,1578,1384,1595,-1,1384,1578,1416,-1,195,137,309,-1,137,195,218,-1,256,40,73,-1,40,256,83,-1,185,1197,282,-1,185,1039,1197,-1,1480,1547,1521,-1,1480,1491,1547,-1,1600,1341,1361,-1,1341,1600,1608,-1,1107,226,715,-1,226,1107,321,-1,1039,1471,1197,-1,1404,1471,1039,-1,332,817,250,-1,817,332,820,-1,368,727,344,-1,727,368,795,-1,1154,344,727,-1,1154,527,344,-1,1318,378,381,-1,378,1318,1261,-1,109,636,301,-1,109,584,636,-1,12,3,0,-1,12,47,3,-1,161,844,207,-1,844,161,851,-1,156,831,150,-1,830,831,156,-1,1432,1387,1374,-1,1432,1425,1387,-1,800,1296,801,-1,800,1532,1296,-1,596,823,824,-1,823,596,630,-1,803,694,633,-1,803,812,694,-1,805,565,804,-1,805,531,565,-1,839,947,990,-1,839,832,947,-1,751,836,838,-1,836,751,723,-1,1145,705,900,-1,999,705,1145,-1,898,705,999,-1,656,847,849,-1,847,656,755,-1,244,337,210,-1,337,244,334,-1,520,420,800,-1,520,1316,420,-1,541,56,95,-1,56,541,443,-1,64,135,144,-1,135,64,107,-1,645,1057,1031,-1,873,1057,645,-1,102,33,174,-1,33,102,70,-1,248,69,300,-1,69,248,49,-1,297,274,310,-1,297,251,274,-1,8,79,32,-1,49,79,8,-1,311,657,292,-1,555,657,311,-1,1268,1220,973,-1,1259,1220,1268,-1,1259,1309,1220,-1,26,5,23,-1,21,5,26,-1,1105,889,738,-1,1105,1169,889,-1,665,1033,1048,-1,665,657,1033,-1,1487,1638,1634,-1,1638,1487,1586,-1,1318,1438,1261,-1,1438,1318,1516,-1,269,140,263,-1,141,140,269,-1,239,484,307,-1,484,239,222,-1,456,354,348,-1,456,417,354,-1,393,543,363,-1,393,501,543,-1,1114,883,944,-1,883,1114,1092,-1,521,466,548,-1,459,466,521,-1,684,317,483,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getl5_Geo_5_181_normalIndex_10()
		{
			int[] value = {684,604,317,-1,45,156,57,-1,45,172,156,-1,88,145,97,-1,88,139,145,-1,61,143,71,-1,61,232,143,-1,1359,1573,1448,-1,1415,1573,1359,-1,638,621,536,-1,638,675,621,-1,873,918,1057,-1,479,918,873,-1,1079,1322,1199,-1,1322,1079,1320,-1,291,286,303,-1,291,304,286,-1,75,107,64,-1,107,75,127,-1,412,581,446,-1,412,533,581,-1,90,260,272,-1,90,166,260,-1,108,163,101,-1,108,113,163,-1,101,197,63,-1,101,163,197,-1,922,940,969,-1,940,922,774,-1,663,620,646,-1,663,571,620,-1,760,1088,757,-1,760,1129,1088,-1,1006,965,731,-1,1289,965,1006,-1,518,696,460,-1,518,683,696,-1,379,865,327,-1,379,757,865,-1,560,633,694,-1,560,513,633,-1,373,180,401,-1,152,180,373,-1,720,672,690,-1,672,720,693,-1,723,880,909,-1,880,723,751,-1,1258,957,984,-1,1184,957,1258,-1,1025,1241,1258,-1,1025,1100,1241,-1,1257,1127,1109,-1,1127,1257,1206,-1,1018,1232,1251,-1,1232,1018,1093,-1,771,653,507,-1,771,875,653,-1,471,1013,512,-1,714,1013,471,-1,613,429,338,-1,613,702,429,-1,1090,918,1217,-1,918,1090,1057,-1,1081,850,770,-1,1081,992,850,-1,1350,1483,1425,-1,1350,1405,1483,-1,1215,1288,1366,-1,1215,1208,1288,-1,1545,1210,1214,-1,1210,1545,1534,-1,1331,1295,1463,-1,1227,1295,1331,-1,1215,1243,1321,-1,1215,1267,1243,-1,1386,1527,1538,-1,1527,1386,1400,-1,357,526,214,-1,357,606,526,-1,1037,935,212,-1,935,1037,1164,-1,679,526,934,-1,679,574,526,-1,399,580,344,-1,482,580,399,-1,497,234,398,-1,497,271,234,-1,792,515,317,-1,866,515,792,-1,1076,468,472,-1,1076,1115,468,-1,961,171,681,-1,403,171,961,-1,1308,564,956,-1,1308,1076,564,-1,609,464,854,-1,609,597,464,-1,210,406,259,-1,406,210,337,-1,119,18,9,-1,119,99,18,-1,996,986,928,-1,996,1020,986,-1,1074,771,702,-1,1102,771,1074,-1,512,221,352,-1,512,500,221,-1,340,127,75,-1,340,338,127,-1,653,670,503,-1,653,791,670,-1,523,1087,904,-1,523,495,1087,-1,675,615,621,-1,675,868,615,-1,1274,1513,1338,-1,1513,1274,1452,-1,1606,1465,1301,-1,1606,1511,1465,-1,46,16,15,-1,46,28,16,-1,264,94,51,-1,223,94,264,-1,1513,1458,1338,-1,1430,1458,1513,-1,1597,1392,1575,-1,1560,1392,1597,-1,455,1459,1360,-1,455,582,1459,-1,102,170,124,-1,102,126,170,-1,306,50,301,-1,42,50,306,-1,1424,539,925,-1,1336,539,1424,-1,817,1315,1400,-1,820,1315,817,-1,238,38,254,-1,33,38,238,-1,1505,618,1301,-1,1505,1478,618,-1,1555,1569,1516,-1,1555,1612,1569,-1,1182,1507,795,-1,1492,1507,1182,-1,1572,1426,1390,-1,1572,1603,1426,-1,2,32,35,-1,2,8,32,-1,1560,1181,1332,-1,1560,1555,1181,-1,1534,1603,1572,-1,1603,1534,1545,-1,901,641,1016,-1,669,641,901,-1,495,1043,1087,-1,1043,495,342,-1,548,883,521,-1,548,944,883,-1,583,471,432,-1,583,652,471,-1,429,347,236,-1,429,507,347,-1,372,37,125,-1,372,268,37,-1,512,432,471,-1,512,352,432,-1,1251,1102,1074,-1,1260,1102,1251,-1,323,361,385,-1,323,329,361,-1,180,52,147,-1,180,152,52,-1,633,481,624,-1,633,513,481,-1,329,275,361,-1,329,234,275,-1,656,1000,547,-1,656,698,1000,-1,336,470,472,-1,470,336,607,-1,1211,1138,1176,-1,1138,1211,599,-1,171,351,165,-1,336,351,171,-1,231,323,339,-1,305,323,231,-1,881,580,778,-1,699,580,881,-1,1293,877,1012,-1,1238,877,1293,-1,257,87,214,-1,257,228,87,-1,1163,1247,1119,-1,1247,1163,1326,-1,1400,814,817,-1,1400,1386,814,-1,1165,1415,1268,-1,1358,1415,1165,-1,1198,1216,1288,-1,1198,927,1216,-1,1198,1321,1047,-1,1198,1208,1321,-1,598,951,375,-1,951,598,1030,-1,729,1250,1237,-1,1250,729,975,-1,975,1331,1250,-1,951,1331,975,-1,951,1227,1331,-1,951,1030,1227,-1,266,641,661,-1,266,569,641,-1,1533,1324,1563,-1,1533,1356,1324,-1,1387,1456,1372,-1,1387,1497,1456,-1,1121,1184,1009,-1,1121,1013,1184,-1,1102,875,771,-1,1102,1089,875,-1,714,1184,1013,-1,957,1184,714,-1,1260,1089,1102,-1,1089,1260,1186,-1,500,1009,372,-1,1121,1009,500,-1,1260,1257,1156,-1,1260,1251,1257,-1,984,1025,1258,-1,984,855,1025,-1,909,1127,1100,-1,1127,909,880,-1,1156,879,982,-1,1156,937,879,-1,693,726,672,-1,726,693,718,-1,467,347,503,-1,347,467,293,-1,406,460,259,-1,406,518,460,-1,683,1003,696,-1,683,974,1003,-1,1091,950,712,-1,1125,950,1091,-1,401,760,373,-1,401,758,760,-1,694,782,560,-1,694,802,782,-1,1060,907,865,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getl5_Geo_5_181_normalIndex_11()
		{
			int[] value = {907,1060,965,-1,663,711,731,-1,663,899,711,-1,630,572,677,-1,572,630,596,-1,95,108,82,-1,108,95,56,-1,101,82,108,-1,68,82,101,-1,103,166,67,-1,103,135,166,-1,334,190,294,-1,244,190,334,-1,272,412,294,-1,435,412,272,-1,565,435,449,-1,435,565,531,-1,443,1053,648,-1,541,1053,443,-1,1167,1418,1139,-1,1418,1167,1261,-1,364,81,182,-1,81,364,160,-1,788,748,640,-1,788,896,748,-1,122,30,141,-1,30,122,24,-1,1446,1527,1432,-1,1446,1531,1527,-1,716,793,473,-1,716,798,793,-1,1548,1647,1639,-1,1548,1512,1647,-1,1033,555,954,-1,555,1033,657,-1,96,46,136,-1,46,96,54,-1,136,295,96,-1,136,253,295,-1,155,43,150,-1,21,43,155,-1,300,89,276,-1,89,300,69,-1,22,140,25,-1,22,124,140,-1,466,492,516,-1,452,492,466,-1,905,985,728,-1,905,1086,985,-1,627,498,905,-1,627,524,498,-1,524,363,498,-1,524,393,363,-1,640,509,436,-1,640,748,509,-1,479,858,918,-1,414,858,479,-1,600,228,577,-1,600,280,228,-1,1441,1586,1487,-1,1441,1540,1586,-1,1540,1441,1541,-1,97,151,158,-1,151,97,145,-1,88,58,71,-1,84,58,88,-1,43,84,57,-1,43,58,84,-1,410,473,255,-1,716,473,410,-1,25,38,22,-1,42,38,25,-1,893,269,871,-1,893,240,269,-1,632,449,467,-1,565,449,632,-1,17,128,7,-1,17,243,128,-1,82,160,95,-1,82,81,160,-1,147,63,197,-1,147,52,63,-1,828,718,693,-1,828,834,718,-1,879,842,982,-1,840,842,879,-1,813,632,670,-1,813,807,632,-1,810,533,809,-1,810,581,533,-1,819,922,802,-1,819,767,922,-1,822,646,620,-1,822,818,646,-1,1447,1011,1068,-1,857,1011,1447,-1,821,1350,1300,-1,1350,821,815,-1,835,184,206,-1,184,835,878,-1,359,1360,808,-1,1360,359,455,-1,845,176,841,-1,845,168,176,-1,1231,1359,1448,-1,1359,1231,798,-1,955,485,238,-1,485,955,1168,-1,1066,584,1167,-1,636,584,1066,-1,778,276,881,-1,276,778,300,-1,946,704,423,-1,704,946,1274,-1,1319,1429,1364,-1,1429,1319,1428,-1,1070,1439,732,-1,1070,1327,1439,-1,1610,1412,1395,-1,1412,1610,1615,-1,1045,146,345,-1,1045,175,146,-1,85,92,134,-1,85,36,92,-1,142,493,890,-1,493,142,157,-1,224,77,237,-1,224,53,77,-1,1616,1646,1613,-1,1616,1641,1646,-1,187,39,345,-1,187,148,39,-1,902,746,625,-1,746,902,971,-1,634,1153,575,-1,1302,1153,634,-1,761,1103,1126,-1,761,733,1103,-1,1178,1062,1221,-1,1178,1021,1062,-1,1299,1223,1413,-1,1299,1140,1223,-1,1611,1272,1520,-1,1611,1380,1272,-1,1221,1131,1178,-1,1221,1297,1131,-1,545,395,573,-1,395,545,389,-1,1294,1334,1262,-1,1294,1317,1334,-1,1594,1470,1503,-1,1594,1498,1470,-1,1150,1008,1040,-1,1150,1123,1008,-1,1368,1317,1294,-1,1368,1417,1317,-1,1085,343,688,-1,1085,655,343,-1,1479,682,962,-1,682,1479,1244,-1,499,343,451,-1,343,499,421,-1,1311,1479,1486,-1,1479,1311,1307,-1,1334,1419,1304,-1,1419,1334,1373,-1,1065,777,874,-1,777,1065,932,-1,862,356,753,-1,356,862,409,-1,1544,1391,1433,-1,1544,1420,1391,-1,374,480,525,-1,312,480,374,-1,814,250,817,-1,814,262,250,-1,235,445,396,-1,445,235,287,-1,463,453,369,-1,463,754,453,-1,326,453,553,-1,326,440,453,-1,695,1046,1276,-1,614,1046,695,-1,397,913,384,-1,667,913,397,-1,315,667,397,-1,315,695,667,-1,426,695,315,-1,426,614,695,-1,320,114,86,-1,320,289,114,-1,196,252,265,-1,196,153,252,-1,745,545,876,-1,745,570,545,-1,465,926,605,-1,926,465,687,-1,570,389,545,-1,474,389,570,-1,649,1152,1272,-1,1152,649,538,-1,392,389,490,-1,392,395,389,-1,619,659,391,-1,619,799,659,-1,522,737,550,-1,768,737,522,-1,769,490,643,-1,769,706,490,-1,915,953,968,-1,924,953,915,-1,1299,1172,1137,-1,1340,1172,1299,-1,1470,1278,1266,-1,1278,1470,1498,-1,1008,1055,952,-1,1008,1123,1055,-1,787,1275,1325,-1,787,894,1275,-1,914,1142,1190,-1,914,960,1142,-1,739,585,787,-1,697,585,739,-1,930,977,910,-1,930,749,977,-1,1075,979,1007,-1,1050,979,1075,-1,1539,1554,1567,-1,1598,1554,1539,-1,1488,1539,1535,-1,1488,1536,1539,-1,1489,1546,1583,-1,1489,1515,1546,-1,1375,1558,1371,-1,1375,1489,1558,-1,1083,1236,1196,-1,1083,1110,1236,-1,1543,1574,1585,-1,1519,1574,1543,-1,1378,1353,1333,-1,1378,1343,1353,-1,39,177,370,-1,39,72,177,-1,233,486,496,-1,411,486,233,-1,885,864,1004,-1,885,756,864,-1,1617,1526,1508,-1,1628,1526,1617,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getl5_Geo_5_181_normalIndex_12()
		{
			int[] value = {80,283,203,-1,283,80,235,-1,1502,1587,1581,-1,1502,1401,1587,-1,237,430,224,-1,237,415,430,-1,1506,1562,1542,-1,1506,1510,1562,-1,1370,1514,1553,-1,1370,1397,1514,-1,1607,1504,1501,-1,1504,1607,1623,-1,1038,1104,959,-1,1104,1038,1132,-1,1141,1185,1133,-1,1185,1141,1204,-1,637,743,917,-1,637,532,743,-1,1149,1014,743,-1,1149,1120,1014,-1,1292,1194,1329,-1,1292,1249,1194,-1,1180,1406,1394,-1,1440,1406,1180,-1,1509,1381,1385,-1,1381,1509,1508,-1,213,330,411,-1,134,330,213,-1,14,164,13,-1,62,164,14,-1,610,1002,589,-1,610,987,1002,-1,1175,689,752,-1,1175,1095,689,-1,1636,1620,1624,-1,1620,1636,1623,-1,434,396,707,-1,434,390,396,-1,434,333,390,-1,987,1335,1352,-1,1335,987,1095,-1,1571,1641,1616,-1,1641,1571,1605,-1,1382,790,921,-1,1382,1067,790,-1,1610,1621,1625,-1,1621,1610,1608,-1,1381,759,908,-1,1381,1411,759,-1,1202,1024,1172,-1,1024,1202,1084,-1,1518,1643,1642,-1,1518,1409,1643,-1,1490,1567,1554,-1,1490,1568,1567,-1,1196,1040,1083,-1,1196,1150,1040,-1,1579,1503,1455,-1,1579,1594,1503,-1,924,828,953,-1,924,834,828,-1,842,769,643,-1,769,842,840,-1,1024,813,995,-1,1024,807,813,-1,1110,810,809,-1,1110,1083,810,-1,741,819,852,-1,741,767,819,-1,998,822,1023,-1,998,818,822,-1,296,821,346,-1,815,821,296,-1,1473,835,1444,-1,878,835,1473,-1,282,1252,808,-1,1197,1252,282,-1,833,1504,1552,-1,1504,833,829,-1,844,1485,1435,-1,851,1485,844,-1,1645,1626,1648,-1,1645,1577,1626,-1,715,424,1019,-1,318,424,715,-1,1052,579,486,-1,579,1052,988,-1,891,1271,1312,-1,890,1271,891,-1,175,167,153,-1,175,185,167,-1,777,1228,1362,-1,777,948,1228,-1,862,1155,1148,-1,862,753,1155,-1,1361,895,988,-1,895,1361,1341,-1,1273,1339,1333,-1,1402,1339,1273,-1,1230,732,1401,-1,1230,448,732,-1,845,1485,851,-1,845,1482,1485,-1,830,1477,1496,-1,1477,830,827,-1,185,246,167,-1,185,282,246,-1,353,281,314,-1,353,859,281,-1,837,783,658,-1,826,783,837,-1,1023,824,1050,-1,1023,822,824,-1,852,812,952,-1,852,819,812,-1,1112,809,805,-1,1112,1110,809,-1,825,717,863,-1,717,825,832,-1,769,838,897,-1,769,840,838,-1,828,931,953,-1,931,828,784,-1,1150,1313,1306,-1,1196,1313,1150,-1,1192,1058,1277,-1,1117,1058,1192,-1,1596,1568,1564,-1,1568,1596,1567,-1,1543,1489,1467,-1,1543,1515,1489,-1,1411,754,759,-1,1411,1431,754,-1,1608,1617,1621,-1,1617,1608,1600,-1,746,595,625,-1,746,588,595,-1,1029,678,786,-1,1094,678,1029,-1,1337,1270,1377,-1,1302,1270,1337,-1,1354,987,1352,-1,1354,1002,987,-1,1590,1623,1607,-1,1590,1620,1623,-1,1252,1622,1388,-1,1252,1556,1622,-1,1335,1502,1510,-1,1408,1502,1335,-1,1354,1506,1500,-1,1352,1506,1354,-1,13,10,14,-1,13,1,10,-1,211,380,164,-1,211,328,380,-1,1521,1385,1450,-1,1385,1521,1509,-1,1147,1132,1101,-1,1104,1132,1147,-1,532,733,563,-1,532,637,733,-1,1133,1194,1141,-1,1133,1096,1194,-1,1194,1183,1141,-1,1194,1249,1183,-1,1445,1132,1038,-1,1132,1445,1291,-1,1521,1582,1625,-1,1521,1547,1582,-1,1482,1644,1485,-1,1637,1644,1482,-1,689,579,567,-1,689,610,579,-1,157,19,129,-1,157,142,19,-1,73,10,100,-1,10,73,40,-1,859,938,1122,-1,859,353,938,-1,1619,1645,1620,-1,1614,1645,1619,-1,226,203,318,-1,203,226,74,-1,1500,1369,1354,-1,1369,1500,1471,-1,1628,1557,1526,-1,1627,1557,1628,-1,1056,756,885,-1,1056,967,756,-1,1457,1564,1568,-1,1457,1523,1564,-1,328,194,242,-1,328,211,194,-1,177,442,568,-1,177,302,442,-1,942,1222,1146,-1,1222,942,1026,-1,1518,1427,1402,-1,1520,1427,1518,-1,1110,1218,1236,-1,1110,1112,1218,-1,1202,1371,1218,-1,1375,1371,1202,-1,1407,1488,1455,-1,1407,1461,1488,-1,852,671,741,-1,671,852,870,-1,1050,1077,1023,-1,1050,1075,1077,-1,530,552,673,-1,552,530,508,-1,540,787,585,-1,540,894,787,-1,1278,894,892,-1,894,1278,1275,-1,585,587,540,-1,585,654,587,-1,602,668,631,-1,671,602,742,-1,602,671,668,-1,1266,1389,1470,-1,1266,1190,1389,-1,1340,1413,1467,-1,1340,1299,1413,-1,972,659,968,-1,659,972,687,-1,915,619,737,-1,915,799,619,-1,799,968,659,-1,799,915,968,-1,407,362,366,-1,407,391,362,-1,745,863,717,-1,991,863,745,-1,1178,1049,1021,-1,926,1049,1178,-1,616,850,846,-1,616,651,850,-1,153,225,252,-1,153,167,225,-1,588,561,595,-1,561,588,563,-1,629,913,1276,-1,629,568,913,-1,189,397,384,-1,397,189,315,-1,154,235,80,-1,287,235,154,-1,205,186,215,-1,422,186,205,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getl5_Geo_5_181_normalIndex_13()
		{
			int[] value = {862,256,409,-1,319,862,797,-1,862,319,256,-1,1312,932,1065,-1,932,1312,1271,-1,1553,1559,1493,-1,1593,1559,1553,-1,1179,1044,510,-1,1044,1179,1085,-1,860,1376,1328,-1,1151,1376,860,-1,1373,1486,1419,-1,1486,1373,1311,-1,682,576,962,-1,510,576,682,-1,655,1179,1177,-1,1179,655,1085,-1,1005,1188,848,-1,1005,1064,1188,-1,1026,721,1073,-1,1026,981,721,-1,806,1008,803,-1,1008,806,1040,-1,1389,1503,1470,-1,1443,1503,1389,-1,1417,1550,1609,-1,1368,1550,1417,-1,1082,1041,1192,-1,1082,796,1041,-1,837,713,843,-1,837,658,713,-1,1520,1152,1427,-1,1520,1272,1152,-1,1413,1305,1519,-1,1413,1223,1305,-1,813,863,995,-1,813,825,863,-1,1302,691,1270,-1,1302,634,691,-1,746,864,786,-1,746,971,864,-1,137,120,199,-1,120,137,77,-1,73,409,256,-1,73,356,409,-1,891,142,890,-1,891,138,142,-1,302,78,224,-1,302,72,78,-1,324,913,568,-1,324,384,913,-1,1412,1475,1157,-1,1412,1615,1475,-1,74,360,55,-1,321,360,74,-1,1471,1495,1197,-1,1471,1500,1495,-1,1099,1136,730,-1,1323,1136,1099,-1,1483,1478,1497,-1,1483,1459,1478,-1,423,881,276,-1,423,704,881,-1,955,254,889,-1,238,254,955,-1,893,1454,1367,-1,893,871,1454,-1,648,1239,642,-1,648,1053,1239,-1,716,1359,798,-1,1314,1359,716,-1,161,845,851,-1,161,168,845,-1,785,359,808,-1,359,785,277,-1,206,844,835,-1,206,207,844,-1,1300,1425,1432,-1,1300,1350,1425,-1,646,816,710,-1,818,816,646,-1,774,823,630,-1,762,823,774,-1,581,806,624,-1,810,806,581,-1,632,804,565,-1,807,804,632,-1,982,839,990,-1,842,839,982,-1,834,723,718,-1,834,836,723,-1,911,1145,1027,-1,911,999,1145,-1,936,999,911,-1,846,900,854,-1,846,887,900,-1,18,66,29,-1,18,41,66,-1,557,458,371,-1,458,557,537,-1,81,68,60,-1,82,68,81,-1,17,443,243,-1,17,56,443,-1,449,293,467,-1,449,260,293,-1,313,201,170,-1,313,603,201,-1,313,539,603,-1,49,16,69,-1,16,49,8,-1,1051,901,1016,-1,1051,1078,901,-1,949,615,868,-1,615,949,556,-1,431,310,274,-1,310,431,342,-1,208,49,248,-1,208,79,49,-1,1235,546,1139,-1,1235,388,546,-1,1512,1629,1647,-1,1507,1629,1512,-1,815,1405,1350,-1,1405,815,811,-1,11,5,176,-1,5,11,23,-1,57,93,45,-1,57,84,93,-1,143,311,139,-1,311,143,255,-1,145,290,151,-1,290,145,292,-1,1379,1414,1525,-1,1379,1240,1414,-1,1426,1199,1219,-1,1426,1345,1199,-1,240,141,269,-1,122,141,240,-1,222,600,484,-1,600,222,280,-1,1171,600,577,-1,1163,600,1171,-1,509,638,450,-1,748,638,509,-1,519,501,549,-1,501,519,543,-1,916,1092,722,-1,916,883,1092,-1,459,452,466,-1,349,452,459,-1,477,450,417,-1,477,509,450,-1,70,124,22,-1,70,102,124,-1,104,21,155,-1,104,5,21,-1,23,3,26,-1,23,0,3,-1,139,292,145,-1,139,311,292,-1,1639,1575,1548,-1,1597,1575,1639,-1,889,1231,955,-1,1231,889,1169,-1,1448,1424,1355,-1,1576,1424,1448,-1,97,84,88,-1,84,97,93,-1,1119,600,1163,-1,600,1119,484,-1,1464,1322,1403,-1,1464,1441,1322,-1,970,928,755,-1,970,996,928,-1,64,37,75,-1,64,7,37,-1,294,446,334,-1,294,412,446,-1,294,90,272,-1,190,90,294,-1,144,103,108,-1,135,103,144,-1,571,596,620,-1,571,572,596,-1,677,712,950,-1,572,712,677,-1,1129,758,1063,-1,758,1129,760,-1,965,557,907,-1,557,965,1289,-1,560,683,518,-1,560,782,683,-1,865,494,327,-1,494,865,907,-1,782,974,683,-1,782,969,974,-1,696,1063,758,-1,696,1003,1063,-1,379,152,373,-1,152,379,119,-1,882,711,899,-1,551,711,882,-1,236,293,193,-1,236,347,293,-1,984,690,672,-1,957,690,984,-1,672,855,984,-1,672,726,855,-1,1286,1241,1283,-1,1286,1258,1241,-1,791,875,947,-1,875,791,653,-1,626,471,652,-1,471,626,714,-1,850,1028,846,-1,850,992,1028,-1,1425,1497,1387,-1,1425,1483,1497,-1,1092,1078,1051,-1,1114,1078,1092,-1,729,1010,375,-1,729,1079,1010,-1,1250,1463,1237,-1,1331,1463,1250,-1,1415,1462,1573,-1,1462,1415,1358,-1,1466,1446,1432,-1,1446,1466,1229,-1,1043,1326,1087,-1,1043,1247,1326,-1,1392,877,1238,-1,877,1332,856,-1,1392,1332,877,-1,699,344,580,-1,368,344,699,-1,89,96,159,-1,96,89,54,-1,599,470,1138,-1,564,470,599,-1,339,1316,231,-1,339,420,1316,-1,1200,866,792,-1,1130,866,1200,-1,351,472,468,-1,472,351,336,-1,1176,961,681,-1,961,1176,1138,-1,470,1076,472,-1,564,1076,470,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getl5_Geo_5_181_normalIndex_14()
		{
			int[] value = {371,558,557,-1,371,385,558,-1,513,337,481,-1,513,406,337,-1,152,9,52,-1,152,119,9,-1,339,385,371,-1,339,323,385,-1,996,912,1020,-1,996,1011,912,-1,702,507,429,-1,771,507,702,-1,583,936,652,-1,936,583,898,-1,268,75,37,-1,268,340,75,-1,507,503,347,-1,507,653,503,-1,868,896,788,-1,896,868,675,-1,966,342,431,-1,966,1043,342,-1,788,901,868,-1,788,669,901,-1,1534,1513,1452,-1,1572,1513,1534,-1,1301,1429,1505,-1,1301,1465,1429,-1,35,51,94,-1,35,32,51,-1,32,200,51,-1,32,79,200,-1,1390,1513,1572,-1,1390,1430,1513,-1,1560,1612,1555,-1,1560,1597,1612,-1,1494,1464,1468,-1,1541,1464,1494,-1,1497,1505,1456,-1,1505,1497,1478,-1,254,42,306,-1,38,42,254,-1,594,313,241,-1,313,594,925,-1,31,172,45,-1,258,172,31,-1,41,271,66,-1,41,234,271,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getl5_Coord_6_181_point_1()
		{
			double[] value = {-0.1689,36.029,-2.6679,-0.0334,36.006,-2.6952,0.0,36.0662,-2.6488,-0.0156,35.9878,-2.8092,-0.0268,36.011,-2.7166,-0.1033,36.076,-2.7594,-0.2313,36.3596,-1.9715,-0.1818,36.3727,-2.0434,-0.2545,36.2761,-2.1104,-0.4633,35.68,-2.3563,-0.4733,35.6714,-2.3433,-0.4744,35.6659,-2.3657,-0.5328,35.6583,-2.3314,-0.5799,35.6138,-2.4268,-0.2222,36.3547,-1.9633,-0.1731,36.3647,-2.0404,-0.6744,36.7646,-2.2536,-0.6669,36.7602,-2.2493,-0.6889,36.6077,-2.3608,-0.5551,36.8301,-1.776,-0.6124,36.8556,-1.8611,-0.5567,36.8336,-1.7697,-0.4448,36.3287,-1.9798,-0.4623,36.3251,-1.9996,-0.4625,36.3315,-1.9946,-0.6907,36.5845,-2.3649,-0.6797,36.4999,-2.3304,-0.6885,36.504,-2.3454,-0.7415,36.4128,-2.3092,-0.8071,36.4931,-2.3433,-0.7437,36.4977,-2.3486,-0.8918,36.5824,-2.1151,-0.8731,36.6088,-2.0345,-0.8686,36.6865,-2.0303,-0.8525,36.6379,-1.9455,-0.8426,36.7152,-1.9467,-0.8583,36.701,-1.9858,-0.6483,36.8565,-1.8357,-0.669,36.8549,-1.8215,-0.5579,36.8278,-1.7321,-0.3743,36.5534,-1.825,-0.3951,36.5444,-1.7739,-0.3783,36.4586,-1.7962,-0.3412,36.4696,-1.8473,-0.3699,36.546,-1.8302,-1.685,36.3898,-1.9112,-1.6807,36.392,-1.9269,-1.7913,36.3879,-1.9623,-1.5689,36.4061,-1.883,-1.5742,36.4033,-1.8689,-1.4229,36.3961,-1.8123,-0.9538,36.3201,-2.1416,-0.938,36.3251,-2.1442,-0.9371,36.3207,-2.1404,-1.2221,36.3566,-1.7833,-1.2058,36.3616,-1.7833,-1.2191,36.3611,-1.8054,-0.5081,36.3836,-1.6369,-0.5544,36.2714,-1.6303,-0.5162,36.3855,-1.6656,-0.1397,35.6854,-1.7687,-0.2031,35.6708,-1.7704,-0.2046,35.6838,-1.7728,-0.9864,36.2356,-1.2288,-0.9844,36.2314,-1.2211,-0.9799,36.2443,-1.2172,-0.1687,36.1423,-1.6184,0.0,36.1252,-1.6262,0.0,36.0323,-1.6456,-0.1482,36.0139,-1.6015,-0.1846,36.0554,-1.5987,-1.8325,36.3655,-1.9428,-1.8394,36.381,-1.9731,-1.8732,36.3492,-1.9901,-0.7076,36.3315,-1.5375,-0.716,36.3501,-1.5662,-0.7367,36.3169,-1.5543,-0.7554,36.3217,-1.5464,-0.7372,36.364,-1.5668,-0.8104,36.3128,-1.5293,-0.8811,36.2915,-1.4332,-0.8686,36.296,-1.4051,-0.855,36.3013,-1.4291,-0.7291,36.3871,-1.5882,-0.7082,36.4082,-1.6306,-0.8275,36.3339,-1.5471,-0.8014,36.3231,-1.4402,-0.8039,36.3168,-1.447,-0.6873,36.3561,-1.5397,-0.6841,36.3911,-1.5892,-0.6943,36.3777,-1.5837,-0.7839,36.2755,-1.5363,-0.8083,36.2604,-1.5157,-0.8089,36.2607,-1.5118,-0.8183,36.7839,-1.9478,-0.8522,36.7583,-2.0275,-0.7092,36.8454,-1.9624,-0.6897,36.8534,-1.8072,-0.7433,36.76,-2.2082,-0.7834,36.7371,-2.2377,-0.7677,36.8196,-2.0953,-0.7587,36.7391,-2.2827,-0.8933,36.4429,-2.0534,-0.8898,36.5224,-1.9425,-0.6955,36.6137,-2.3695,-0.712,36.7617,-2.2521,-0.8193,36.5865,-2.3587,-0.8186,36.6495,-2.3053,-0.7642,36.6872,-2.3381,-0.7171,36.0411,-1.8757,-0.6871,36.1169,-1.9444,-0.6322,36.0159,-1.969,-0.7697,36.2727,-2.1499,-0.7898,36.2968,-2.1258,-0.7499,36.3149,-2.2232,-0.8996,36.093,-1.8771,-0.8518,36.1564,-1.8631,-0.8422,36.0935,-1.8623,-0.8851,36.2888,-2.0776,-0.8901,36.3203,-2.1168,-0.8225,36.3091,-2.1074,-0.9239,36.0441,-1.8424,-0.426,35.8844,-2.3587,-0.4317,35.8367,-2.4198,-0.4223,35.9006,-2.4331,-0.3412,35.9381,-2.2531,-0.4208,35.8868,-2.2931,-0.301,35.8922,-2.3817,-0.2046,35.9768,-2.5677,-0.2589,35.9201,-2.4303,-0.2737,35.9483,-2.5049,-0.1877,35.9994,-2.3923,-0.1671,36.027,-2.4554,-0.1658,36.0623,-2.4005,-0.2339,35.9944,-2.2984,-0.2442,35.9612,-2.3359,-0.3809,35.8947,-2.4224,-0.3765,35.8581,-2.4845,-0.3239,35.915,-2.4469,-0.4147,36.3536,-1.7285,-0.4962,36.2394,-1.7591,-0.4177,36.2138,-1.8072,-0.5183,36.0901,-1.8397,-0.4597,36.1568,-1.8245,-0.5798,36.1262,-1.7935,-0.4082,36.2576,-1.9853,-0.3972,36.2721,-1.9827,-0.3753,36.2347,-2.0005,-0.4579,36.193,-2.1097,-0.4356,36.2161,-2.035,-0.3909,36.2098,-2.0233,-0.3379,36.3798,-1.9298,-0.2977,36.3608,-1.8884,-0.3187,36.3273,-1.9862,-0.5197,36.4239,-1.6859,-0.576,36.4301,-1.6452,-0.5081,36.4211,-1.6603,-0.4225,35.8487,-1.5919,-0.4265,35.8805,-1.5772,-0.3521,35.8747,-1.6357,-0.6846,35.8533,-1.4511,-0.8499,35.6928,-1.3922,-0.8791,35.7739,-1.3932,-1.6375,36.1945,-2.0102,-1.6142,36.0879,-1.9166,-1.7033,36.1359,-1.9378,-0.4584,36.1841,-1.5924,-0.6074,36.1164,-1.5975,-0.5792,36.2809,-1.6769,-0.6569,36.1353,-1.6907,-0.3346,36.3519,-1.7963,-0.3429,36.192,-1.8626,-0.2603,36.3493,-1.87,-0.3842,35.1935,-0.9089,-0.2069,35.2666,-0.9238,-0.2195,35.1746,-0.8711,-0.0474,35.6339,-1.7187,-0.0337,35.6541,-1.7228,0.0,35.6374,-1.714,-0.0682,35.7238,-1.7457,-0.0336,35.7588,-1.735,-0.0306,35.711,-1.7339,-0.0682,35.6703,-1.7394,-0.0948,35.6304,-1.7234,-0.1024,35.6904,-1.7651,-0.1237,36.2154,-2.7633,-0.1085,36.1938,-2.8932,-0.1423,36.1447,-2.7641,-0.7853,36.105,-1.8672,-0.8545,36.0322,-1.8338,-0.5174,36.3865,-1.6993,-0.5163,36.4374,-1.7077,-0.6604,35.9613,-1.5647,-0.6339,36.0388,-1.5811,-0.5159,36.0246,-1.5573,-0.7412,35.3167,-1.2183,-0.8456,35.304,-1.2107,-0.8843,35.384,-1.3823,-0.7189,35.5319,-1.588,-0.7831,35.5378,-1.6009,-0.6395,35.6169,-1.6747,-0.8764,35.4786,-1.5121,-0.7881,35.4819,-1.5265,-0.3505,35.3304,-0.9978,-0.3643,35.2569,-0.9601,-0.1897,35.6234,-1.7327,-0.3907,35.6281,-1.6481,-0.393,35.6373,-1.7463,-0.2185,35.1572,-0.7125,-0.2065,35.2374,-0.6805,-0.4122,35.232,-0.7196,-0.8136,36.6036,-1.8616,-0.8625,36.5446,-1.8714,-0.7668,36.4892,-1.7956,-0.2824,36.4402,-1.5167,-0.2981,36.4177,-1.4601,-0.1569,36.4394,-1.5101,-0.1674,36.3973,-1.4379,-0.2837,36.2159,-1.0511,-0.284,36.2533,-1.1972,-0.4012,36.2171,-1.1528,-0.7378,36.1112,-0.634,-0.6959,36.1474,-0.6406,-0.8085,36.1895,-0.7719,-0.6875,36.2219,-0.8178,-0.4573,36.2758,-1.2979,-0.4317,36.3919,-1.4541,-0.5289,36.3458,-1.4148,-0.5438,36.2423,-1.2206,-0.6052,36.2949,-1.331,-0.3292,36.1941,-0.9524,-0.3163,36.1718,-0.766,-0.1791,36.1702,-0.7393,-0.9388,35.7666,-1.3306,-0.8459,35.6618,-1.2013,-0.8557,35.8194,-1.1963,-0.9783,36.1123,-1.2481,-0.8896,35.9282,-1.1566,-0.9386,36.0739,-1.0788,-0.7611,35.7434,-1.0481,-0.7672,35.8185,-1.0179,-0.7037,35.7182,-0.9704,-0.7805,35.8927,-0.965,-0.7036,36.0037,-0.7196,-0.8252,36.0323,-0.854,-0.6537,36.3315,-2.2208,-0.6852,36.4004,-2.3209,-0.6545,36.4149,-2.2847,-0.7629,35.3104,-0.9194,-0.8379,35.2664,-1.0597,-0.7315,35.2124,-0.9481,-0.6897,35.7604,-1.4251,-0.5659,35.7957,-1.5028,-0.363,35.7387,-1.7315,-0.3768,35.6705,-1.7769,-0.5005,35.6791,-1.733,-0.3481,36.1619,-1.5909,-0.159,36.2993,-1.6025,-0.4014,36.3472,-1.9539,-0.4079,36.4524,-1.9262,-0.3488,36.4829,-1.8871,-0.3465,36.4518,-1.8979,-1.0772,35.9214,-1.6028,-1.228,35.9929,-1.6583,-1.1475,35.9228,-1.7102,-1.0382,36.0707,-1.4321,-1.0883,36.0883,-1.5284,-1.0967,36.0019,-1.5587,-1.214,36.0633,-1.6176,-0.8398,36.3635,-2.1714,-0.8762,36.3796,-2.1532,-0.8184,36.4381,-2.243,-0.5007,35.7217,-2.5665,-0.4608,35.8042,-2.4298,-0.5493,35.6158,-2.4931,-0.5981,35.6158,-2.5818,-0.3199,35.8752,-2.5719,-0.2302,35.9628,-2.6211,-0.3734,35.9765,-2.2125,-0.2236,36.0969,-2.2412,-0.3145,36.0655,-2.1483,-0.5851,35.8569,-2.627,-0.6198,35.996,-2.5899,-0.5119,35.9903,-2.5688,-0.2088,36.1619,-2.5965,-0.2104,36.0772,-2.695,-0.28,36.0062,-2.6344,-0.4817,36.52,-1.7379,-0.6279,36.5977,-1.7551,-0.5438,36.6964,-1.8506,-0.4701,36.7337,-1.7744,-0.6491,36.747,-2.0069,-0.6441,36.8731,-1.9622,-0.7363,36.8036,-1.7705,-0.6287,36.665,-1.7507,-0.6111,36.7433,-1.7162,-0.7671,36.5832,-1.795,-0.5947,36.5106,-1.7205,-0.7104,36.8473,-1.7929,-0.7867,36.8471,-1.9512,-0.7543,36.8037,-1.8061,-0.8277,36.3931,-1.746,-1.0602,36.2033,-1.5301,-1.7115,36.1014,-1.8485,-1.6618,36.058,-1.8351,-1.6756,36.141,-1.7865,-1.8454,36.2734,-1.9569,-1.7826,36.2098,-1.8772,-1.8447,36.3385,-1.9472,-1.4199,36.4003,-1.8234,-1.4205,36.3563,-1.893,-1.5909,36.3538,-1.953,-1.3693,36.2637,-1.9496,-1.6055,36.271,-1.9985,-1.3568,36.0972,-1.6892,-1.8191,36.2402,-2.016,-1.7914,36.1455,-1.9525,-1.1344,36.0524,-1.9157,-1.2038,35.9732,-1.7782,-1.2867,36.0312,-1.8254,-1.0164,36.0979,-1.9703,-0.7288,36.1273,-1.8917,-0.7498,36.2384,-2.0637,-0.7948,36.3392,-2.1973,-0.7487,36.1652,-2.1362,-0.6788,36.0877,-2.0372,-0.5886,36.3682,-2.1318,-0.5409,36.2386,-2.1617,-0.6283,36.3649,-2.1867,-0.1411,36.4048,-2.2611,-0.0875,36.4699,-2.2837,-0.0924,36.4457,-2.4006,-0.0565,36.5655,-2.2422,-0.0686,36.4744,-2.2042,-0.1812,35.9971,-2.5102,-0.1193,36.0661,-2.5891,-0.1063,36.0727,-2.5452,-0.2727,36.0967,-2.5705,-0.3772,36.0198,-2.5663,-0.3948,36.0917,-2.4703,-0.6123,36.4583,-2.0305,-0.6541,36.5856,-2.0921,-0.6294,36.6021,-2.0083,-0.5327,36.3266,-2.0679,-0.4953,36.257,-2.1018,-0.2975,36.2793,-2.0512,-0.2893,36.2074,-2.1462,-0.365,36.2115,-2.0554,-0.8763,36.5224,-2.1699,-1.1636,36.3338,-1.9108,-1.2485,36.2354,-1.9831,-1.2834,36.3448,-1.8702,-0.7517,36.1706,-2.243,-0.7584,36.1184,-2.2191,-0.7938,35.8129,-2.6905,-0.7815,35.8339,-2.5831,-0.7953,35.9169,-2.5344,-0.7252,35.6765,-2.6694,-0.6513,35.599,-2.5308,-0.7376,35.772,-2.5399,-0.4987,35.7767,-2.2246,-0.5064,35.8401,-2.1259,-0.5871,35.8605,-2.1767,-0.7799,35.8997,-1.5235,-0.9761,35.8935,-1.5604,-0.8881,35.9222,-1.6254,-0.9242,35.6794,-1.2938,-0.9549,35.5226,-1.3154,-0.9207,35.4438,-1.1902,-0.9435,36.269,-1.3947,-0.9468,36.2595,-1.4636,-1.0154,36.1797,-1.3992,-0.576,35.9727,-0.6162,-0.3851,35.9305,-0.5466,-0.3885,36.0275,-0.4621,-0.2016,35.7733,-1.7451,-0.201,35.8839,-1.6576,0.0,35.9146,-1.6781,-0.1008,35.7856,-1.739,-0.2704,36.4477,-1.5662,-0.386,36.4735,-1.4982,-0.4622,36.4604,-1.4942,-0.5475,36.4301,-1.5683,-0.5368,36.4216,-1.4786,-0.109,36.0362,-3.0643,-0.0891,35.9761,-3.0611,-0.0779,36.0608,-2.9638,-0.2673,36.1063,-2.102,-0.364,36.0921,-1.9715,-0.091,36.144,-2.4136,0.0,36.1626,-2.4512,0.0,36.1922,-2.3536,0.0,36.0003,-2.7019,-0.0657,35.9659,-2.9444,0.0,35.9706,-2.7922,0.0,36.5669,-2.6018,-0.0407,36.5429,-2.5902,-0.0392,36.5754,-2.4282,0.0,36.443,-3.0996,-0.0743,36.4252,-3.083,0.0,36.4851,-3.0057,-0.1005,36.1939,-3.0594,-0.0833,36.1729,-3.1569,-0.0878,36.0305,-3.1273,-0.077,36.0777,-2.877,-0.6871,35.6889,-2.6825,-0.9628,35.9595,-1.7691,-0.7347,35.9897,-1.7046,-0.5794,36.005,-1.9283,-0.5602,36.0324,-1.8579,-0.6634,36.0129,-1.8279,-0.5821,35.6086,-2.4466,-0.6434,35.5946,-2.5375,-0.7179,35.6751,-2.6767,-0.7321,36.2109,-2.1737,-0.6919,36.2463,-2.2207,-0.6687,36.206,-2.2683,-0.6051,36.2629,-2.2172,-0.5635,36.1889,-2.2731,-0.7974,36.5697,-2.3721,-0.7291,36.6519,-2.3589,-0.8118,36.8195,-2.0829,-0.8298,36.7243,-2.2282,-0.6477,36.8752,-1.9615,-0.6752,36.8601,-1.964,-0.4812,36.7273,-1.7336,-0.5741,36.8125,-1.6992,-0.4328,36.5321,-1.728,-0.4501,36.6166,-1.7109,-0.4602,36.0586,-1.893,1.7826,36.2098,-1.8772,1.6756,36.141,-1.7865,1.7115,36.1014,-1.8485,0.1689,36.029,-2.6679,0.1258,36.0483,-2.6291,0.0156,35.9878,-2.8092,0.077,36.0777,-2.877,0.1033,36.076,-2.7594,0.2975,36.2793,-2.0512,0.1818,36.3727,-2.0434,0.2313,36.3596,-1.9715,0.4208,35.8868,-2.2931,0.4633,35.68,-2.3563,0.4099,35.7964,-2.2299,1.1144,36.1375,-2.0637,1.0164,36.0979,-1.9703,0.9359,36.1969,-1.9682,0.1731,36.3647,-2.0404,0.2222,36.3547,-1.9633,0.6669,36.7602,-2.2493,0.6744,36.7646,-2.2536,0.6955,36.6137,-2.3695,0.6162,36.8586,-1.8586,0.6124,36.8556,-1.8611,0.5551,36.8301,-1.776,0.3453,36.4831,-1.8814,0.3488,36.4829,-1.8871,0.3465,36.4518,-1.8979,0.7415,36.4128,-2.3092,0.7437,36.4977,-2.3486,0.8071,36.4931,-2.3433,0.8686,36.6865,-2.0303,0.8731,36.6088,-2.0345,0.8918,36.5824,-2.1151,0.8186,36.6495,-2.3053,0.7834,36.7371,-2.2377,0.8298,36.7243,-2.2282,1.6807,36.392,-1.9269,1.685,36.3898,-1.9112,1.7956,36.3881,-1.9516,1.5742,36.4033,-1.8689,1.5689,36.4061,-1.883,1.4199,36.4003,-1.8234,1.4341,36.1505,-2.0221,1.4449,36.141,-2.0197,1.4382,36.1412,-2.0189,0.9518,36.3089,-2.1395,0.9371,36.3207,-2.1404,0.938,36.3251,-2.1442,0.5081,36.3836,-1.6369,0.5081,36.4211,-1.6603,0.5162,36.3855,-1.6656,0.5344,35.7262,-1.6431,0.5005,35.6791,-1.733,0.4487,35.7325,-1.6873,0.657,36.375,-1.5408,0.668,36.3684,-1.546,0.6636,36.3765,-1.554,0.3484,35.9839,-1.6007,0.3521,35.8747,-1.6357,0.201,35.8839,-1.6576,0.1687,36.1423,-1.6184,1.8732,36.3492,-1.9901,1.8394,36.381,-1.9731,1.8325,36.3655,-1.9428,0.7367,36.3169,-1.5543,0.716,36.3501,-1.5662,0.7076,36.3315,-1.5375,0.7887,36.2957,-1.5357,0.8104,36.3128,-1.5293,0.7372,36.364,-1.5668,0.8659,36.2832,-1.4538,0.8557,36.2837,-1.4973,0.8314,36.2689,-1.5012,0.855,36.3013,-1.4291,0.8811,36.2915,-1.4332,0.7291,36.3871,-1.5882,0.6943,36.3777,-1.5837,0.8184,36.3261,-1.5389,0.8275,36.3339,-1.5471,0.8039,36.3168,-1.447,0.8014,36.3231,-1.4402,0.8844,36.2954,-1.3757,0.8089,36.2607,-1.5118,0.8083,36.2604,-1.5157,0.7839,36.2755,-1.5363,0.8426,36.7152,-1.9467,0.8522,36.7583,-2.0275,0.8183,36.7839,-1.9478,0.669,36.8549,-1.8215,0.7417,36.853,-1.9627,0.7092,36.8454,-1.9624,0.7677,36.8196,-2.0953,0.7433,36.76,-2.2082,0.7587,36.7391,-2.2827,0.8898,36.5224,-1.9425,0.8933,36.4429,-2.0534,0.7291,36.6519,-2.3589,0.7642,36.6872,-2.3381,0.8193,36.5865,-2.3587,0.6322,36.0159,-1.969,0.6871,36.1169,-1.9444,0.7171,36.0411,-1.8757,0.7948,36.3392,-2.1973,0.7898,36.2968,-2.1258,0.7697,36.2727,-2.1499,0.8422,36.0935,-1.8623,0.8518,36.1564,-1.8631,0.8996,36.093,-1.8771,0.8225,36.3091,-2.1074,0.8901,36.3203,-2.1168,0.8851,36.2888,-2.0776,0.7856,36.0312,-1.8449,0.7347,35.9897,-1.7046,0.6634,36.0129,-1.8279,0.9239,36.0441,-1.8424,0.8545,36.0322,-1.8338,0.95,36.2457,-2.0662,0.4223,35.9006,-2.4331,0.4317,35.8367,-2.4198,0.426,35.8844,-2.3587,0.301,35.8922,-2.3817,0.3412,35.9381,-2.2531,0.2737,35.9483,-2.5049,0.2589,35.9201,-2.4303,0.2046,35.9768,-2.5677,0.1658,36.0623,-2.4005,0.1671,36.027,-2.4554,0.1877,35.9994,-2.3923,0.2442,35.9612,-2.3359,0.2339,35.9944,-2.2984,0.3809,35.8947,-2.4224,0.3239,35.915,-2.4469,0.3765,35.8581,-2.4845,0.3346,36.3519,-1.7963,0.4177,36.2138,-1.8072,0.4962,36.2394,-1.7591,0.5798,36.1262,-1.7935,0.4597,36.1568,-1.8245,0.5183,36.0901,-1.8397,0.3753,36.2347,-2.0005,0.3972,36.2721,-1.9827,0.4082,36.2576,-1.9853,0.3909,36.2098,-2.0233,0.4356,36.2161,-2.035,0.4579,36.193,-2.1097,0.3187,36.3273,-1.9862,0.2977,36.3608,-1.8884,0.3379,36.3798,-1.9298,0.576,36.4301,-1.6452,0.5197,36.4239,-1.6859,0.4265,35.8805,-1.5772,0.4225,35.8487,-1.5919,0.8791,35.7739,-1.3932,0.8499,35.6928,-1.3922,0.6846,35.8533,-1.4511,1.6375,36.1945,-2.0102,1.7414,36.2048,-2.0172,1.7033,36.1359,-1.9378,0.6074,36.1164,-1.5975,0.4584,36.1841,-1.5924,0.5544,36.2714,-1.6303,0.6569,36.1353,-1.6907,0.5792,36.2809,-1.6769,0.3429,36.192,-1.8626,0.2195,35.1746,-0.8711,0.3643,35.2569,-0.9601,0.3842,35.1935,-0.9089,0.0337,35.6541,-1.7228,0.0474,35.6339,-1.7187,0.0306,35.711,-1.7339,0.0336,35.7588,-1.735,0.0682,35.7238,-1.7457,0.0682,35.6703,-1.7394,0.1024,35.6904,-1.7651,0.0948,35.6304,-1.7234,0.1423,36.1447,-2.7641,0.1085,36.1938,-2.8932,0.1237,36.2154,-2.7633,0.7853,36.105,-1.8672,0.5163,36.4374,-1.7077,0.5174,36.3865,-1.6993,0.5159,36.0246,-1.5573,0.6339,36.0388,-1.5811,0.6604,35.9613,-1.5647,0.7478,35.4047,-1.3504,0.8843,35.384,-1.3823,0.8456,35.304,-1.2107,0.7831,35.5378,-1.6009,0.7189,35.5319,-1.588,0.6225,35.5991,-1.6604,0.7881,35.4819,-1.5265,0.8764,35.4786,-1.5121,0.9454,35.4006,-1.3771,0.3078,35.5449,-1.2756,0.4243,35.5712,-1.3679,0.4216,35.5107,-1.2682,0.2069,35.2666,-0.9238,0.3505,35.3304,-0.9978,0.393,35.6373,-1.7463,0.2072,35.6015,-1.6369,0.1897,35.6234,-1.7327,0.2065,35.2374,-0.6805,0.2185,35.1572,-0.7125,0.3997,35.1549,-0.7618,0.8136,36.6036,-1.8616,0.7671,36.5832,-1.795,0.7668,36.4892,-1.7956,0.1569,36.4394,-1.5101,0.1674,36.3973,-1.4379,0.2981,36.4177,-1.4601,0.3868,36.0974,-0.4733,0.3885,36.0405,-0.459,0.5856,36.072,-0.5188,0.5866,36.2065,-0.6949,0.6959,36.1474,-0.6406,0.8085,36.1895,-0.7719,0.6052,36.2949,-1.331,0.4573,36.2758,-1.2979,0.5438,36.2423,-1.2206,0.284,36.2533,-1.1972,0.2794,36.3115,-1.3346,0.8557,35.8194,-1.1963,0.8459,35.6618,-1.2013,0.9242,35.6794,-1.2938,0.9386,36.0739,-1.0788,0.8896,35.9282,-1.1566,0.9651,35.9955,-1.3028,0.7628,35.6632,-1.0649,0.7672,35.8185,-1.0179,0.7611,35.7434,-1.0481,0.7037,35.7182,-0.9704,0.6537,36.3315,-2.2208,0.6323,36.3656,-2.1897,0.6545,36.4149,-2.2847,0.8379,35.2664,-1.0597,0.8467,35.3813,-1.0563,0.7629,35.3104,-0.9194,0.6897,35.7604,-1.4251,0.1846,36.0554,-1.5987,0.237,36.0015,-1.5916,0.1919,36.0065,-1.5793,0.3768,35.6705,-1.7769,0.363,35.7387,-1.7315,0.3773,35.6589,-1.7757,0.159,36.2993,-1.6025,0.3024,36.3165,-1.6065,0.4014,36.3472,-1.9539,1.1475,35.9228,-1.7102,1.228,35.9929,-1.6583,1.0772,35.9214,-1.6028,1.214,36.0633,-1.6176,1.0967,36.0019,-1.5587,0.0268,36.011,-2.7166,0.0334,36.006,-2.6952,1.6142,36.0879,-1.9166,0.2176,36.2954,-2.1393,0.2545,36.2761,-2.1104,0.2893,36.2074,-2.1462,0.5007,35.7217,-2.5665,0.4608,35.8042,-2.4298,0.3199,35.8752,-2.5719,0.091,36.144,-2.4136,0.1101,36.1782,-2.3325,0.6198,35.996,-2.5899,0.7106,36.0064,-2.6259,0.7216,35.8281,-2.7236,0.4879,35.92,-2.614,0.5119,35.9903,-2.5688,0.6111,36.7433,-1.7162,0.5074,36.7102,-1.7039,0.6287,36.665,-1.7507,0.4701,36.7337,-1.7744,0.5438,36.6964,-1.8506,0.7104,36.8473,-1.7929,0.7363,36.8036,-1.7705,0.7543,36.8037,-1.8061,0.756,36.7057,-1.7774,0.6279,36.5977,-1.7551,0.0476,36.4793,-2.8887,0.0565,36.4067,-2.8869,0.0518,36.4109,-2.9746,0.7867,36.8471,-1.9512,0.8525,36.6379,-1.9455,0.7082,36.4082,-1.6306,0.8277,36.3931,-1.746,1.8447,36.3385,-1.9472,1.7563,36.2763,-1.8703,1.6554,36.2365,-1.8082,1.5909,36.3538,-1.953,1.6055,36.271,-1.9985,1.3693,36.2637,-1.9496,1.3888,36.0304,-1.719,1.3568,36.0972,-1.6892,1.8454,36.2734,-1.9569,1.7914,36.1455,-1.9525,1.8191,36.2402,-2.016,1.6618,36.058,-1.8351,1.5392,36.0506,-1.7729,1.5019,36.0761,-1.8619,1.1344,36.0524,-1.9157,1.0659,35.9798,-1.8287,0.7977,36.4252,-2.2976,0.8184,36.4381,-2.243,0.8398,36.3635,-2.1714,0.7487,36.1652,-2.1362,0.7321,36.2109,-2.1737,0.365,36.2115,-2.0554,0.631,36.372,-2.1862,0.5883,36.3771,-2.1336,0.6167,36.4172,-2.1479,0.5706,36.5719,-1.9178,0.4868,36.6028,-1.8576,0.1256,36.3765,-2.3762,0.0924,36.4457,-2.4006,0.0875,36.4699,-2.2837,0.1063,36.0727,-2.5452,0.1812,35.9971,-2.5102,0.2727,36.0967,-2.5705,0.2847,36.1316,-2.4695,0.3948,36.0917,-2.4703,0.5886,36.3682,-2.1318,0.5409,36.2386,-2.1617,0.4953,36.257,-2.1018,0.8541,36.6227,-2.2831,0.8763,36.5224,-2.1699,1.2834,36.3448,-1.8702,1.2485,36.2354,-1.9831,1.1636,36.3338,-1.9108,0.9802,36.3836,-2.059,0.7517,36.1706,-2.243,0.7938,35.8129,-2.6905,0.7941,35.9749,-2.5988,0.7953,35.9169,-2.5344,0.7376,35.772,-2.5399,0.6725,35.7088,-2.478,0.6513,35.599,-2.5308,0.5959,35.7858,-2.2659,0.5871,35.8605,-2.1767,0.4987,35.7767,-2.2246,0.7799,35.8997,-1.5235,0.8881,35.9222,-1.6254,0.9761,35.8935,-1.5604,0.9207,35.4438,-1.1902,0.9388,35.7666,-1.3306,1.0154,36.1797,-1.3992,0.9468,36.2595,-1.4636,0.9435,36.269,-1.3947,0.8811,36.2999,-1.3639,0.8559,36.3172,-1.3426,0.9559,36.2759,-1.2153,0.0504,35.7917,-1.736,0.0,35.7978,-1.7329,0.2016,35.7733,-1.7451,0.1008,35.7856,-1.739,0.2704,36.4477,-1.5662,0.2824,36.4402,-1.5167,0.386,36.4735,-1.4982,0.4622,36.4604,-1.4942,0.5368,36.4216,-1.4786,0.5475,36.4301,-1.5683,0.4751,36.4478,-1.5903,0.5386,36.4319,-1.5841,0.4943,36.4321,-1.625,0.0779,36.0608,-2.9638,0.0657,35.9659,-2.9444,0.0891,35.9761,-3.0611,0.2673,36.1063,-2.102,0.3145,36.0655,-2.1483,0.4086,36.0353,-2.0248,0.0,35.9439,-2.9296,0.0743,36.4252,-3.083,0.0833,36.1729,-3.1569,0.1005,36.1939,-3.0594,0.109,36.0362,-3.0643,0.6871,35.6889,-2.6825,0.5981,35.6158,-2.5818,0.7179,35.6751,-2.6767,0.6687,36.206,-2.2683,0.6919,36.2463,-2.2207,0.5635,36.1889,-2.2731,0.7499,36.3149,-2.2232,0.8118,36.8195,-2.0829,0.6483,36.8565,-1.8357,0.6752,36.8601,-1.964,0.4812,36.7273,-1.7336,0.5741,36.8125,-1.6992,0.4501,36.6166,-1.7109,0.4328,36.5321,-1.728,0.4817,36.52,-1.7379,0.4602,36.0586,-1.893,0.5602,36.0324,-1.8579,0.3783,36.4586,-1.7962,0.3565,36.4042,-1.8168,0.4154,36.4476,-1.7452,0.4196,36.6288,-1.7559,0.6571,36.8446,-2.1244,0.712,36.7617,-2.2521,0.7446,36.5886,-2.371,0.7974,36.5697,-2.3721,0.7674,36.1651,-2.3541,0.6996,36.1813,-2.3692,0.7882,35.8154,-2.7009,0.4863,36.0319,-1.9511,0.5794,36.005,-1.9283,0.6501,35.6754,-1.6492,0.763,35.6282,-1.552,0.7881,35.5472,-1.6002,0.28,36.0062,-2.6344,0.383,35.9456,-2.6166,0.2302,35.9628,-2.6211,0.4283,35.7795,-2.22,0.4154,35.8967,-2.1372,0.0498,36.5853,-2.2867,0.0392,36.5754,-2.4282,0.0,36.5891,-2.4532,0.336,36.3994,-1.8066,0.1193,36.0661,-2.5891,0.3859,36.445,-1.5758,0.4719,36.4505,-1.5761,0.3851,36.4537,-1.5652,0.0,35.5927,-1.6145,0.9783,36.1123,-1.2481,0.9844,36.2314,-1.2211,0.9721,36.2064,-1.0655,0.943,36.278,-1.3067,0.9799,36.2443,-1.2172,0.7957,36.3283,-1.4312,0.7625,36.3443,-1.3891,1.0382,36.0707,-1.4321,0.605,35.2657,-0.8033,0.5644,35.499,-0.7749,0.5328,35.6583,-2.3314,0.605,35.7415,-2.3301,0.6492,35.7248,-2.4138,0.5908,35.6136,-2.4399,0.7717,36.0685,-2.332,0.7743,36.156,-2.3509,1.6347,36.2067,-2.0134,1.1449,36.1453,-2.0623,1.2917,36.1393,-2.0329,0.8762,36.3796,-2.1532,0.9538,36.3201,-2.1416,0.4794,36.1684,-2.2114,0.5671,36.3868,-2.0567,0.5847,36.3746,-2.1272,0.5311,36.335,-2.0661,0.6541,36.5856,-2.0921,0.6294,36.6021,-2.0083,0.6491,36.747,-2.0069,0.373,36.1679,-2.2026,0.3894,36.1624,-2.2613,0.0,36.4317,-2.1802,0.0,36.282,-2.2017,0.1109,36.2767,-2.1598,0.3734,35.9765,-2.2125,0.0919,36.3174,-3.0626,0.0815,36.3171,-3.1371,0.0543,36.5052,-2.3955,0.0641,36.5415,-2.2856,0.6378,36.0981,-2.4968,0.7328,36.1277,-2.488,0.4076,36.6371,-1.8114,0.5976,36.7032,-1.8996,0.675,36.5059,-2.32,0.651,36.4246,-2.2769,0.6499,36.5329,-2.1859,0.4079,36.4524,-1.9262,0.4496,36.5385,-1.8783,0.5362,36.4968,-1.9518,0.6051,36.2629,-2.2172,0.6283,36.3649,-2.1867,0.7111,35.8237,-2.4265,0.6045,35.9566,-2.0611,0.6905,36.033,-2.137,0.6788,36.0877,-2.0372,0.7288,36.1273,-1.8917,0.7498,36.2384,-2.0637,1.2867,36.0312,-1.8254,1.4205,36.3563,-1.893,1.4646,36.3109,-1.7816,1.4229,36.3961,-1.8123,1.2848,36.2948,-1.7222,1.5196,36.2331,-1.7614,1.5375,36.1305,-1.756,1.7299,36.3328,-1.888,1.0602,36.2033,-1.5301,0.9848,36.3358,-1.6185,1.0883,36.0883,-1.5284,1.1754,36.1398,-1.6143,0.9106,36.3578,-1.7206,0.866,36.3423,-1.6667,0.9646,36.4241,-1.8483,0.8625,36.5446,-1.8714,0.0543,36.4545,-2.9936,0.1104,36.203,-2.9914,0.7987,36.7319,-1.832,0.6055,36.1689,-2.3851,0.6123,36.4583,-2.0305,0.3951,35.8236,-2.5613,0.4869,36.1717,-2.2746,1.2038,35.9732,-1.7782,1.129,36.1228,-2.0585,1.0327,35.9614,-1.4686,1.0468,35.9248,-1.6706,0.3412,36.4696,-1.8473,0.2717,36.4401,-1.5754,0.2046,35.6838,-1.7728,0.197,35.9478,-1.6219,0.5009,35.8862,-1.5186,0.5666,35.941,-1.5037,0.3481,36.1619,-1.5909,0.724,35.6789,-1.4639,0.9523,35.409,-1.3731,0.882,35.4869,-1.51,0.8744,35.5548,-1.4438,0.7805,35.8927,-0.965,0.6755,35.8721,-0.8112,0.685,35.6886,-0.8968,0.7074,35.5283,-0.9282,0.9699,35.904,-1.346,0.4012,36.2171,-1.1528,0.4751,36.1783,-0.9699,0.3292,36.1941,-0.9524,0.3163,36.1718,-0.766,0.6629,36.2488,-1.0944,0.5504,36.2241,-1.1177,0.5388,36.1936,-1.0215,0.6479,36.3776,-1.4461,0.5289,36.3458,-1.4148,0.5712,36.3221,-1.368,0.4312,36.1919,-0.8272,0.5175,36.2013,-0.7577,0.4317,36.3919,-1.4541,0.5947,36.5106,-1.7205,0.2104,35.1537,-0.8056,0.4881,35.4299,-1.1826,0.5289,35.4988,-1.2816,0.6142,35.3539,-1.1973,0.9051,35.3119,-1.2106,0.7412,35.3167,-1.2183,0.752,35.2433,-1.0812,0.5398,35.58,-1.4523,0.5574,35.609,-1.599,0.635,35.5032,-1.4492,0.5659,35.7957,-1.5028,0.1562,36.2404,-2.6373,0.1092,36.2898,-2.7612,0.1018,36.3736,-2.6915,0.0611,35.7054,-1.7349,0.1916,35.3661,-1.0323,0.204,35.4564,-1.1337,0.2842,35.4181,-1.0773,0.4009,36.3436,-1.6275,0.4147,36.3536,-1.7285,1.7618,36.2189,-2.0291,1.6709,36.3409,-1.9782,1.8139,36.353,-2.0085,1.7038,36.2829,-2.0183,0.4519,36.2439,-2.0219,0.4623,36.3251,-1.9996,0.3578,35.8925,-2.4077,0.2236,36.0969,-2.2412,0.3839,35.8679,-2.4532,0.7868,36.1958,-1.8942,0.7504,36.1682,-1.8839,0.7622,36.2232,-1.9764,0.8677,36.2049,-1.9233,0.7747,36.2567,-2.0312,0.6852,36.4004,-2.3209};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getl5_Coord_6_181_point_2()
		{
			double[] value = {0.8583,36.701,-1.9858,0.7268,36.7532,-2.2473,0.6871,36.8281,-2.1118,0.6841,36.3911,-1.5892,0.8799,36.2874,-1.4956,0.6873,36.3561,-1.5397,0.8039,36.3045,-1.4592,0.8686,36.296,-1.4051,0.7554,36.3217,-1.5464,0.1809,36.1714,-0.5933,0.1791,36.1702,-0.7393,0.0,36.1727,-0.7186,0.1482,36.0139,-1.6015,0.7413,36.3214,-1.3477,0.5512,36.4307,-1.5827,0.6442,35.6272,-1.6735,1.0535,36.3864,-1.8464,1.0778,36.383,-1.853,1.0668,36.3832,-1.855,1.7386,36.2293,-2.0265,1.2191,36.3611,-1.8054,1.2221,36.3566,-1.7833,1.8373,36.3809,-1.9785,0.4683,36.7337,-1.7682,0.5579,36.8278,-1.7321,0.2603,36.3493,-1.87,0.6797,36.4999,-2.3304,0.6885,36.504,-2.3454,0.3743,36.5534,-1.825,0.376,36.5534,-1.8305,0.3699,36.546,-1.8302,0.654,36.843,-2.1241,0.4625,36.3315,-1.9946,0.4197,36.2779,-1.9869,0.6434,35.5946,-2.5375,0.7252,35.6765,-2.6694,0.5064,35.8401,-2.1259,-0.2909,36.2083,-1.9065,-0.5074,36.7102,-1.7039,-0.7446,36.5886,-2.371,-0.7923,36.1161,-2.4854,-0.7328,36.1277,-2.488,-0.7106,36.0064,-2.6259,-0.4283,35.7795,-2.22,-0.5413,35.9498,-2.0131,-0.4086,36.0353,-2.0248,-0.5009,35.8862,-1.5186,-0.7881,35.5472,-1.6002,-0.6501,35.6754,-1.6492,-0.6442,35.6272,-1.6735,-0.383,35.9456,-2.6166,-0.0543,36.4545,-2.9936,-0.0476,36.4793,-2.8887,0.0,36.5928,-2.284,-0.0498,36.5853,-2.2867,-0.336,36.3994,-1.8066,-0.3565,36.4042,-1.8168,-0.4154,36.4476,-1.7452,-0.4863,36.0319,-1.9511,-0.4943,36.4321,-1.625,-0.4751,36.4478,-1.5903,-0.4719,36.4505,-1.5761,-0.1617,36.4308,-1.55,0.0,36.4086,-1.4113,-0.2072,35.6015,-1.6369,-0.9721,36.2064,-1.0655,-0.9559,36.2759,-1.2153,-0.943,36.278,-1.3067,-0.8559,36.3172,-1.3426,-0.7625,36.3443,-1.3891,-0.8811,36.2999,-1.3639,-0.7074,35.5283,-0.9282,-0.605,35.2657,-0.8033,-0.5959,35.7858,-2.2659,-0.5908,35.6136,-2.4399,-0.6492,35.7248,-2.4138,-0.7743,36.156,-2.3509,-0.7717,36.0685,-2.332,-1.4341,36.1505,-2.0221,-1.6347,36.2067,-2.0134,-1.8139,36.353,-2.0085,-1.7618,36.2189,-2.0291,-1.1295,36.1528,-2.0656,-1.0982,36.2959,-2.0064,-1.0396,36.2457,-2.0979,-0.9802,36.3836,-2.059,-0.373,36.1679,-2.2026,-0.302,36.1915,-2.2527,-0.3894,36.1624,-2.2613,-0.1016,36.3957,-2.1172,-0.1109,36.2767,-2.1598,-0.4099,35.7964,-2.2299,-0.4154,35.8967,-2.1372,-0.0641,36.5415,-2.2856,-0.0543,36.5052,-2.3955,-0.1018,36.3736,-2.6915,-0.0795,36.3426,-2.8889,-0.1092,36.2898,-2.7612,-0.5104,36.0836,-2.4741,-0.4076,36.6371,-1.8114,-0.4868,36.6028,-1.8576,-0.5706,36.5719,-1.9178,-0.6566,36.6346,-2.2384,-0.6499,36.5329,-2.1859,-0.651,36.4246,-2.2769,-0.4496,36.5385,-1.8783,-0.5009,36.4129,-1.9816,-0.6045,35.9566,-2.0611,-0.8213,36.5046,-2.302,-0.8677,36.2049,-1.9233,-0.7868,36.1958,-1.8942,-1.4325,36.058,-1.8411,-1.3888,36.0304,-1.719,-0.7504,36.1682,-1.8839,-0.7839,36.1542,-1.8679,-1.1299,36.2387,-1.632,-1.0632,36.3534,-1.7111,-0.9646,36.4241,-1.8483,-1.0395,36.4019,-1.9133,-1.2848,36.2948,-1.7222,-1.4646,36.3109,-1.7816,-1.5375,36.1305,-1.756,-1.6554,36.2365,-1.8082,-1.7563,36.2763,-1.8703,-1.7299,36.3328,-1.888,-1.5392,36.0506,-1.7729,-0.9848,36.3358,-1.6185,-1.1754,36.1398,-1.6143,-1.7956,36.3881,-1.9516,-0.9981,36.388,-1.8074,-0.866,36.3423,-1.6667,-0.9845,36.4371,-1.9354,-0.0518,36.4109,-2.9746,-0.0919,36.3174,-3.0626,-0.1104,36.203,-2.9914,-0.0798,36.3171,-2.972,-0.756,36.7057,-1.7774,-0.7987,36.7319,-1.832,-0.6996,36.1813,-2.3692,-0.6055,36.1689,-2.3851,-0.5976,36.7032,-1.8996,-0.7216,35.8281,-2.7236,-0.3951,35.8236,-2.5613,-0.4869,36.1717,-2.2746,-0.4794,36.1684,-2.2114,-1.129,36.1228,-2.0585,-1.1144,36.1375,-2.0637,-0.3453,36.4831,-1.8814,-0.3859,36.445,-1.5758,-0.3024,36.3165,-1.6065,-0.4009,36.3436,-1.6275,-0.5666,35.941,-1.5037,-0.763,35.6282,-1.552,-0.8744,35.5548,-1.4438,-0.9523,35.409,-1.3731,-0.6167,36.4172,-2.1479,-0.631,36.372,-2.1862,-0.685,35.6886,-0.8968,-0.6755,35.8721,-0.8112,-0.4312,36.1919,-0.8272,-0.5504,36.2241,-1.1177,-0.6629,36.2488,-1.0944,-0.6292,36.2299,-0.9746,-0.6479,36.3776,-1.4461,-0.5712,36.3221,-1.368,-0.7413,36.3214,-1.3477,-0.5688,36.2161,-0.8709,-0.5175,36.2013,-0.7577,-0.9684,36.2187,-1.0643,-0.3961,35.1527,-0.8487,-0.6142,35.3539,-1.1973,-0.5289,35.4988,-1.2816,-0.4881,35.4299,-1.1826,-0.9454,35.4006,-1.3771,-0.6599,35.2471,-1.1027,-0.752,35.2433,-1.0812,-0.635,35.5032,-1.4492,-0.5574,35.609,-1.599,-0.5398,35.58,-1.4523,-0.4487,35.7325,-1.6873,-0.5344,35.7262,-1.6431,-0.1562,36.2404,-2.6373,-0.0611,35.7054,-1.7349,-0.0504,35.7917,-1.736,-0.2842,35.4181,-1.0773,-0.204,35.4564,-1.1337,-0.1916,35.3661,-1.0323,-0.7115,35.4925,-1.4878,-0.724,35.6789,-1.4639,-0.3484,35.9839,-1.6007,-0.5512,36.4307,-1.5827,-0.4519,36.2439,-2.0219,-0.368,35.8883,-2.4415,-0.3578,35.8925,-2.4077,-0.1101,36.1782,-2.3325,-0.1258,36.0483,-2.6291,-0.3839,35.8679,-2.4532,-0.7622,36.2232,-1.9764,-0.9359,36.1969,-1.9682,-0.7747,36.2567,-2.0312,-0.7977,36.4252,-2.2976,-0.6871,36.8281,-2.1118,-0.7268,36.7532,-2.2473,-0.8557,36.2837,-1.4973,-0.8799,36.2874,-1.4956,-0.8184,36.3261,-1.5389,-0.8039,36.3045,-1.4592,-0.7887,36.2957,-1.5357,-0.8314,36.2689,-1.5012,-1.8373,36.3809,-1.9785,0.0,36.1508,-0.6027,-0.5386,36.4319,-1.5841,-0.6636,36.3765,-1.554,-0.3851,36.4537,-1.5652,-1.0668,36.3832,-1.855,-1.0778,36.383,-1.853,-1.0535,36.3864,-1.8464,-1.7386,36.2293,-2.0265,-1.7414,36.2048,-2.0172,-0.376,36.5534,-1.8305,-0.5847,36.3746,-2.1272,-0.5883,36.3771,-2.1336,-0.6571,36.8446,-2.1244,-0.4197,36.2779,-1.9869,-0.1283,36.4214,-2.132,-0.2176,36.2954,-2.1393,-0.7674,36.1651,-2.3541,-0.5311,36.335,-2.0661,-0.654,36.843,-2.1241,-0.6323,36.3656,-2.1897,-0.8541,36.6227,-2.2831,-1.7539,36.2287,-2.0283,-1.0538,36.3889,-1.8513,-0.657,36.375,-1.5408,-0.1809,36.1714,-0.5933,-0.8659,36.2832,-1.4538,-0.9474,36.2708,-1.3226,-0.8844,36.2954,-1.3757,-0.8159,36.1494,-1.8657,-0.9518,36.3089,-2.1395,-0.95,36.2457,-2.0662,-1.0238,36.2304,-2.0972,-1.7038,36.2829,-2.0183,-1.6709,36.3409,-1.9782,-0.9051,35.3119,-1.2106,-0.6385,35.4242,-1.3195,-0.7478,35.4047,-1.3504,-0.2104,35.1537,-0.8056,-0.9373,36.2477,-1.0616,-0.4751,36.1783,-0.9699,-0.5388,36.1936,-1.0215,-0.7628,35.6632,-1.0649,-0.882,35.4869,-1.51,-0.1919,36.0065,-1.5793,-0.197,35.9478,-1.6219,-0.237,36.0015,-1.5916,-0.2717,36.4401,-1.5754,-0.5362,36.4968,-1.9518,-0.6378,36.0981,-2.4968,-0.9106,36.3578,-1.7206,-1.5196,36.2331,-1.7614,-0.6905,36.033,-2.137,-0.605,35.7415,-2.3301,-0.7111,35.8237,-2.4265,-0.675,36.5059,-2.32,-0.0815,36.3171,-3.1371,-0.6535,36.7276,-2.1235,-0.5671,36.3868,-2.0567,-1.2917,36.1393,-2.0329,-1.1449,36.1453,-2.0623,-0.6725,35.7088,-2.478,-0.5644,35.499,-0.7749,-0.9651,35.9955,-1.3028,-0.7957,36.3283,-1.4312,-0.2264,36.0159,-0.4315,-0.2087,35.8947,-0.5071,0.0,36.4429,-1.4985,0.0,36.4968,-2.9053,-0.7871,35.9821,-2.6062,-0.4196,36.6288,-1.7559,1.7913,36.3879,-1.9623,0.0565,36.5655,-2.2422,0.5821,35.6086,-2.4466,0.5799,35.6138,-2.4268,0.4448,36.3287,-1.9798,0.5327,36.3266,-2.0679,0.5567,36.8336,-1.7697,1.7539,36.2287,-2.0283,1.0538,36.3889,-1.8513,0.9474,36.2708,-1.3226,0.8159,36.1494,-1.8657,0.7839,36.1542,-1.8679,1.0238,36.2304,-2.0972,0.368,35.8883,-2.4415,0.7115,35.4925,-1.4878,0.6599,35.2471,-1.1027,0.6385,35.4242,-1.3195,0.3961,35.1527,-0.8487,0.5688,36.2161,-0.8709,0.6292,36.2299,-0.9746,0.9549,35.5226,-1.3154,0.5009,36.4129,-1.9816,0.9628,35.9595,-1.7691,1.0368,35.9035,-1.5052,0.5851,35.8569,-2.627,0.0798,36.3171,-2.972,0.9845,36.4371,-1.9354,1.1299,36.2387,-1.632,1.0395,36.4019,-1.9133,1.0632,36.3534,-1.7111,1.2058,36.3616,-1.7833,1.4325,36.058,-1.8411,0.8213,36.5046,-2.302,0.6566,36.6346,-2.2384,0.0795,36.3426,-2.8889,0.1016,36.3957,-2.1172,0.302,36.1915,-2.2527,0.6535,36.7276,-2.1235,1.0396,36.2457,-2.0979,1.0982,36.2959,-2.0064,1.1295,36.1528,-2.0656,0.7584,36.1184,-2.2191,0.1617,36.4308,-1.55,0.0878,36.0305,-3.1273,0.364,36.0921,-1.9715,0.2104,36.0772,-2.695,0.5413,35.9498,-2.0131,0.6897,36.8534,-1.8072,0.2909,36.2083,-1.9065,0.6477,36.8752,-1.9615,0.4744,35.6659,-2.3657,0.5493,35.6158,-2.4931,0.9386,36.159,-0.9144,0.9246,35.8281,-1.4538,0.7815,35.8339,-2.5831,0.8744,36.6742,-2.1803,0.3772,36.0198,-2.5663,0.1411,36.4048,-2.2611,0.2031,35.6708,-1.7704,0.7315,35.2124,-0.9481,0.7816,35.578,-1.0671,0.1534,36.3235,-1.3233,0.6477,36.2629,-1.2071,0.6875,36.2219,-0.8178,0.5582,36.1173,-0.5425,0.2837,36.2159,-1.0511,0.4122,35.232,-0.7196,0.3907,35.6281,-1.6481,0.373,35.4679,-1.1816,0.3223,35.4479,-1.1293,0.2676,35.4935,-1.1843,0.5956,35.2303,-1.0495,0.5137,35.3043,-1.099,0.6395,35.6169,-1.6747,0.4493,35.2724,-1.0236,0.4017,36.2333,-1.9996,0.1064,36.1015,-2.5091,0.8787,36.2395,-1.9804,0.7248,36.8122,-2.1015,0.8324,36.2694,-1.4947,0.7283,36.3005,-1.5397,0.9864,36.2356,-1.2288,0.1397,35.6854,-1.7687,1.4355,36.1407,-2.0186,0.3951,36.5444,-1.7739,0.8831,36.6283,-2.1477,0.6907,36.5845,-2.3649,0.6889,36.6077,-2.3608,0.4733,35.6714,-2.3433,0.0,36.5668,-2.2394,-0.6162,36.8586,-1.8586,-0.7856,36.0312,-1.8449,-0.9386,36.159,-0.9144,-0.5884,36.061,-0.5212,-0.9246,35.8281,-1.4538,-0.7941,35.9749,-2.5988,-0.2847,36.1316,-2.4695,-0.1256,36.3765,-2.3762,-1.0659,35.9798,-1.8287,-0.4879,35.92,-2.614,-1.4449,36.141,-2.0197,-1.0327,35.9614,-1.4686,-1.0468,35.9248,-1.6706,-0.3773,35.6589,-1.7757,-0.8467,35.3813,-1.0563,-0.1853,36.2029,-0.8845,-0.2794,36.3115,-1.3346,-0.6477,36.2629,-1.2071,-0.5866,36.2065,-0.6949,-0.8582,36.1352,-0.7701,-0.3997,35.1549,-0.7618,-0.2676,35.4935,-1.1843,-0.3223,35.4479,-1.1293,-0.373,35.4679,-1.1816,-0.3078,35.5449,-1.2756,-0.4216,35.5107,-1.2682,-0.4243,35.5712,-1.3679,-0.5137,35.3043,-1.099,-0.5956,35.2303,-1.0495,-0.6225,35.5991,-1.6604,-0.4493,35.2724,-1.0236,-0.4017,36.2333,-1.9996,-0.1064,36.1015,-2.5091,-0.8787,36.2395,-1.9804,-0.7248,36.8122,-2.1015,-0.7417,36.853,-1.9627,-0.7493,36.278,-1.5366,-0.7545,36.2881,-1.5456,-0.7677,36.289,-1.5403,-0.7283,36.3005,-1.5397,-0.668,36.3684,-1.546,-0.8831,36.6283,-2.1477,-0.2092,36.3118,-2.2751,-0.7882,35.8154,-2.7009,-0.6961,36.6072,-2.3707,-1.2929,36.118,-2.026,-0.2171,35.1506,-0.723,0.0,35.1722,-0.6966,0.0,35.1664,-0.7073,-0.8317,35.2592,-1.0669,-0.7261,35.2062,-0.9568,-0.1623,36.4221,-1.5598,0.0,36.4231,-1.5654,0.0,36.4138,-1.575,-0.8595,36.1235,-0.7717,-0.7396,36.0998,-0.6361,-0.2267,36.0293,-0.4298,0.0,36.0228,-0.4129,0.0,36.0362,-0.4124,-0.7898,36.2886,-1.4877,-0.7845,36.2712,-1.5068,-0.8324,36.2694,-1.4947,-0.8028,36.2728,-1.4968,-0.4064,36.2242,-2.0076,-0.4278,36.2252,-2.0146,-0.4843,35.6315,-1.6283,-0.4937,35.6448,-1.711,-0.6744,35.212,-1.0107,-0.4293,35.3783,-1.0934,-0.3466,35.596,-1.4404,-0.3939,35.5958,-1.4347,-0.2053,35.5674,-1.3813,-0.1923,35.5316,-1.273,-0.3885,36.0405,-0.459,-0.5582,36.1173,-0.5425,-0.5856,36.072,-0.5188,-0.3868,36.0974,-0.4733,-0.4309,36.193,-0.6781,-0.3303,36.174,-0.6396,-0.8143,36.2696,-1.075,-0.8909,36.2103,-0.9145,-0.7592,36.2498,-0.9367,-0.8135,36.2858,-1.229,-0.1534,36.3235,-1.3233,-0.2026,36.164,-0.5351,-0.3412,36.1702,-0.567,-0.523,35.6593,-0.7459,-0.4003,35.4515,-0.6896,-0.3592,35.6332,-0.6592,-0.2004,35.8068,-0.5526,-0.3733,35.8099,-0.6098,-0.1996,35.6434,-0.6091,-1.0368,35.9035,-1.5052,-1.4382,36.1412,-2.0189,-1.5019,36.0761,-1.8619,-1.4355,36.1407,-2.0186,-0.4883,36.1424,-2.3662,-0.0501,36.5101,-2.7439,-0.0636,36.4683,-2.5442,-0.0662,36.4365,-2.7198,-0.6887,35.9382,-2.2494,-0.7927,36.0141,-2.4308,-0.6986,35.8682,-2.3513,-1.3293,36.1784,-1.6969,-1.6206,36.3314,-1.8335,-0.2068,36.2189,-2.4745,-0.1501,36.3106,-2.5012,-0.0565,36.4067,-2.8869,-0.3922,36.1376,-2.3651,-0.2776,36.1632,-2.3688,-0.7992,36.108,-2.4816,-0.7816,35.578,-1.0671,-0.9838,35.8337,-1.3863,0.0,36.2992,-1.6128,0.0,35.5796,-1.4685,-0.2092,35.5899,-1.4955,0.0,35.4239,-1.0866,0.0,35.3597,-0.9966,0.0,35.1786,-0.7916,0.0,35.7835,-0.5249,0.0,35.6119,-0.5844,0.0,36.0816,-0.4331,-0.221,36.0957,-0.4505,0.0,36.1391,-0.5212,0.0,36.2477,-1.0158,-0.1641,36.2731,-1.1741,-0.1865,36.2367,-1.0403,0.0,36.2905,-1.1822,-0.167,36.2421,-2.0987,0.0,36.5394,-2.7346,0.7992,36.108,-2.4816,0.7871,35.9821,-2.6062,0.7923,36.1161,-2.4854,0.2205,36.2252,-2.0277,0.4054,36.637,-1.8062,0.8652,36.5725,-2.2265,1.2929,36.118,-2.026,0.6076,35.1671,-0.8695,0.6113,35.1728,-0.8594,0.3961,35.1488,-0.7725,0.9119,35.3192,-1.2046,0.6744,35.212,-1.0107,0.7261,35.2062,-0.9568,0.571,35.1739,-0.9238,0.9355,36.1707,-0.912,0.9684,36.2187,-1.0643,0.5884,36.061,-0.5212,0.3885,36.0275,-0.4621,0.7898,36.2886,-1.4877,0.7493,36.278,-1.5366,0.7845,36.2712,-1.5068,0.8194,36.2906,-1.4704,0.7677,36.289,-1.5403,0.8028,36.2728,-1.4968,0.7545,36.2881,-1.5456,0.4064,36.2242,-2.0076,0.4278,36.2252,-2.0146,0.4843,35.6315,-1.6283,0.4937,35.6448,-1.711,0.8317,35.2592,-1.0669,0.4293,35.3783,-1.0934,0.2053,35.5674,-1.3813,0.3466,35.596,-1.4404,0.1923,35.5316,-1.273,0.9373,36.2477,-1.0616,0.8909,36.2103,-0.9145,0.4309,36.193,-0.6781,0.3412,36.1702,-0.567,0.4903,36.1858,-0.6156,0.3303,36.174,-0.6396,0.8135,36.2858,-1.229,0.7592,36.2498,-0.9367,0.1853,36.2029,-0.8845,0.5355,35.8526,-0.6829,0.523,35.6593,-0.7459,0.3851,35.9305,-0.5466,0.576,35.9727,-0.6162,0.3733,35.8099,-0.6098,0.1623,36.4221,-1.5598,0.81,36.2611,-2.0039,0.0993,36.4059,-2.5393,0.1501,36.3106,-2.5012,0.2088,36.1619,-2.5965,0.2776,36.1632,-2.3688,0.2068,36.2189,-2.4745,0.1916,36.2826,-2.369,0.0636,36.4683,-2.5442,0.0501,36.5101,-2.7439,0.0407,36.5429,-2.5902,0.0662,36.4365,-2.7198,0.9981,36.388,-1.8074,0.7927,36.0141,-2.4308,0.6887,35.9382,-2.2494,0.6986,35.8682,-2.3513,1.6206,36.3314,-1.8335,1.3293,36.1784,-1.6969,0.4883,36.1424,-2.3662,0.5104,36.0836,-2.4741,0.0,36.2256,-2.2536,0.1062,36.2065,-2.2197,0.6441,36.8731,-1.9622,0.4003,35.4515,-0.6896,0.9838,35.8337,-1.3863,0.8252,36.0323,-0.854,0.7396,36.0998,-0.6361,0.7036,36.0037,-0.7196,0.8595,36.1235,-0.7717,0.0,35.5472,-1.3293,0.0,35.5226,-1.2659,0.0,35.199,-0.8603,0.0,35.2654,-0.9017,0.0,35.4349,-0.6266,0.2225,35.4491,-0.6464,0.0,35.257,-0.656,0.2087,35.8947,-0.5071,0.2264,36.0159,-0.4315,0.0,35.9049,-0.4787,0.0,36.2091,-0.842,0.0,36.3306,-1.3052,0.1886,36.1327,-2.1877,0.0,36.0368,-3.1697,0.0,35.9551,-3.0709,0.0686,36.4744,-2.2042,0.0,36.3145,-3.1767,0.1865,36.2367,-1.0403,0.221,36.0957,-0.4505,0.2267,36.0293,-0.4298,0.1996,35.6434,-0.6091,0.2092,36.3118,-2.2751,0.3922,36.1376,-2.3651,0.1283,36.4214,-2.132,0.3592,35.6332,-0.6592,0.1641,36.2731,-1.1741,0.8143,36.2696,-1.075,0.2026,36.164,-0.5351,0.7378,36.1112,-0.634,0.3586,35.6139,-1.5408,0.2092,35.5899,-1.4955,0.4619,35.6172,-1.5199,0.4953,35.67,-1.7353,0.0,35.7166,-1.7328,0.167,36.2421,-2.0987,0.4332,36.2345,-2.0102,0.5214,35.2109,-0.988,0.2171,35.1506,-0.723,0.0,36.1138,-2.5699,0.0,36.1667,-3.2055,-0.1886,36.1327,-2.1877,-0.2225,35.4491,-0.6464,-0.8744,36.6742,-2.1803,-0.8652,36.5725,-2.2265,-0.1916,36.2826,-2.369,-0.9119,35.3192,-1.2046,-0.4903,36.1858,-0.6156,-0.9355,36.1707,-0.912,-0.3586,35.6139,-1.5408,-0.4619,35.6172,-1.5199,-0.571,35.1739,-0.9238,-0.3961,35.1488,-0.7725,-0.6076,35.1671,-0.8695,-0.4953,35.67,-1.7353,-0.1062,36.2065,-2.2197,-0.4332,36.2345,-2.0102,-0.8194,36.2906,-1.4704,-0.5214,35.2109,-0.988,-0.4683,36.7337,-1.7682,-0.4054,36.637,-1.8062,-0.6113,35.1728,-0.8594,-0.4157,36.2596,-1.9867,-0.2205,36.2252,-2.0277,-0.9699,35.904,-1.346,-0.5355,35.8526,-0.6829,-0.81,36.2611,-2.0039,-0.0993,36.4059,-2.5393,0.8582,36.1352,-0.7701,0.6961,36.6072,-2.3707,0.4157,36.2596,-1.9867,0.3939,35.5958,-1.4347,0.2004,35.8068,-0.5526};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_182_vector_1()
		{
			double[] value = {-0.9995,-0.0091,-0.0316,-0.9984,0.0084,-0.0554,-0.9981,0.0531,-0.0325,-0.9945,-0.0013,-0.1051,-0.9931,-0.0075,-0.1173,-0.9915,0.1196,0.0505,-0.9911,-0.1333,0.0007,-0.9898,0.1261,-0.0659,-0.9887,0.1098,-0.1016,-0.9887,0.0146,0.1495,-0.9881,0.0324,-0.1507,-0.9872,0.1594,-0.0071,-0.9827,-0.1375,0.1238,-0.9825,0.123,-0.1399,-0.9824,0.1335,-0.1307,-0.9816,0.1136,0.1536,-0.9814,0.1461,0.1247,-0.9811,0.1474,0.1257,-0.978,0.0444,0.2038,-0.9761,0.0653,-0.2073,-0.9742,-0.1949,0.1135,-0.97,0.2339,-0.0671,-0.9675,-0.1792,0.1784,-0.9668,0.2527,0.0367,-0.9664,-0.1509,0.2079,-0.9611,-0.1657,0.2211,-0.9593,0.2623,-0.1048,-0.958,0.2147,-0.1898,-0.9553,0.1691,0.2424,-0.9545,-0.1665,0.2476,-0.9531,-0.1727,0.2486,-0.953,0.2944,-0.072,-0.9525,-0.1089,-0.2846,-0.9509,-0.2073,-0.2297,-0.9508,0.2212,-0.217,-0.9507,-0.1023,-0.2927,-0.9504,0.0349,-0.309,-0.9491,-0.1996,-0.2436,-0.9488,0.1765,-0.2618,-0.9478,0.1946,0.2526,-0.947,0.0355,-0.3194,-0.9425,0.3136,0.1152,-0.942,0.3068,-0.1359,-0.9418,0.3274,-0.0768,-0.9352,-0.2763,-0.2215,-0.9336,0.3454,-0.095,-0.9334,0.1607,0.3209,-0.9329,-0.3595,-0.0198,-0.9329,-0.2765,0.2308,-0.9317,0.3031,-0.2004,-0.9315,0.3547,0.0808,-0.9246,-0.2374,-0.298,-0.9245,-0.1753,0.3384,-0.9241,0.3671,0.1062,-0.9235,0.2268,0.3094,-0.9224,-0.3658,0.124,-0.9219,-0.3858,0.0363,-0.9179,0.3938,-0.0491,-0.9177,0.3736,-0.1349,-0.9156,0.2697,-0.2983,-0.9141,-0.0449,0.4029,-0.9126,-0.0428,-0.4066,-0.9107,0.277,-0.3066,-0.9088,-0.3643,0.2035,-0.9074,0.0676,0.4148,-0.907,0.1654,-0.3872,-0.9055,0.3653,0.2157,-0.904,-0.0984,0.416,-0.9034,-0.2059,0.3761,-0.9031,0.4226,0.076,-0.9024,-0.3597,0.2371,-0.9024,0.354,-0.2458,-0.8967,0.3434,-0.2792,-0.8953,0.0865,-0.437,-0.8951,-0.4433,-0.0469,-0.8946,-0.4144,0.1672,-0.8927,0.147,-0.4259,-0.892,0.4514,-0.0229,-0.8888,0.4581,0.0108,-0.8874,0.2163,-0.407,-0.8873,-0.4606,0.0236,-0.886,-0.2064,0.4151,-0.8855,-0.1544,0.4383,-0.8842,-0.0232,-0.4666,-0.8829,0.4627,-0.0796,-0.881,0.1051,-0.4612,-0.8796,-0.4737,0.0434,-0.8792,-0.4761,-0.0191,-0.8782,0.4597,-0.1318,-0.876,0.4183,0.2399,-0.8742,-0.0538,0.4826,-0.8723,0.4889,0.003,-0.8703,-0.1742,-0.4607,-0.8668,0.4886,-0.0994,-0.8646,-0.3001,-0.4031,-0.8635,-0.4934,0.105,-0.8634,0.177,0.4725,-0.8625,0.4743,-0.1763,-0.8615,-0.3853,-0.3307,-0.8614,0.5019,0.0776,-0.8572,0.3285,-0.3967,-0.8558,-0.3862,0.3443,-0.8548,-0.4095,0.3188,-0.8547,0.0519,0.5166,-0.8535,0.5196,-0.0396,-0.852,0.5235,-0.0075,-0.8494,0.1961,-0.4899,-0.8494,0.0912,0.5199,-0.8471,-0.236,0.4762,-0.8462,0.53,-0.0544,-0.8459,0.257,-0.4674,-0.8444,-0.1736,0.5068,-0.8436,0.4399,-0.3078,-0.8435,-0.3577,0.4006,-0.841,-0.5222,0.1416,-0.8406,-0.5105,0.1813,-0.8392,0.0935,0.5357,-0.8389,-0.5008,0.2133,-0.8383,0.5138,0.1821,-0.8361,0.4907,0.2454,-0.8352,0.2888,0.4681,-0.8313,-0.457,0.3164,-0.8306,-0.4388,0.3428,-0.8255,-0.483,-0.2921,-0.8205,-0.4141,0.3941,-0.8204,0.0847,-0.5655,-0.8203,-0.3901,0.4183,-0.8191,-0.4555,0.3487,-0.8182,0.3554,-0.4519,-0.8174,0.2351,-0.5259,-0.8172,-0.5743,-0.0485,-0.8161,0.0554,0.5753,-0.8158,-0.5336,0.2231,-0.8148,-0.5514,0.179,-0.8142,0.0944,-0.5728,-0.8132,0.237,0.5316,-0.8119,0.1466,0.5651,-0.8117,0.577,0.0909,-0.8111,0.5203,-0.2671,-0.8072,0.551,-0.2118,-0.8071,-0.4393,0.3944,-0.8071,-0.457,0.3739,-0.8063,0.5668,-0.1688,-0.8056,0.4909,-0.3318,-0.8042,0.123,0.5815,-0.8029,0.5431,-0.2456,-0.8019,0.3751,0.4649,-0.8004,-0.316,0.5094,-0.7993,0.0523,0.5986,-0.7992,0.1386,-0.5848,-0.7974,0.5904,-0.1247,-0.7969,0.5841,-0.1542,-0.7958,0.4315,0.4249,-0.7955,-0.4033,0.4523,-0.7954,-0.5144,0.3205,-0.7952,0.5957,-0.1129,-0.7949,0.5995,-0.0938,-0.7901,0.5534,-0.2636,-0.7896,0.6099,-0.0679,-0.7895,0.4884,0.3717,-0.7886,-0.6055,0.1073,-0.7884,-0.0074,-0.6151,-0.7869,-0.6148,-0.0532,-0.786,-0.4624,0.4104,-0.7845,0.426,-0.4507,-0.7812,0.6233,-0.0356,-0.7798,0.1239,0.6137,-0.771,-0.3755,0.5143,-0.7701,0.2236,-0.5975,-0.7678,0.5557,-0.319,-0.7663,-0.447,0.4615,-0.765,0.6308,0.1295,-0.7623,0.6392,-0.1012,-0.762,-0.0528,0.6454,-0.7617,-0.6172,-0.1973,-0.761,0.479,0.4375,-0.7579,0.5488,-0.3528,-0.7575,0.2705,-0.5942,-0.7542,-0.1346,0.6427,-0.754,0.6384,-0.1547,-0.753,0.3058,0.5826,-0.7499,0.0922,0.6551,-0.7454,-0.3019,0.5944,-0.7432,0.3447,-0.5734,-0.7422,-0.6553,0.1408,-0.7381,0.2607,0.6223,-0.7372,-0.5019,0.4523,-0.7364,0.6411,0.2162,-0.7345,-0.4314,0.5239,-0.7327,0.3985,-0.5517,-0.7313,-0.4017,0.5512,-0.7281,-0.6838,0.0472,-0.727,0.4563,0.5131,-0.7265,-0.0855,0.6818,-0.7248,0.2449,-0.644,-0.7248,0.5845,-0.3648,-0.7232,-0.4594,0.5157,-0.7228,-0.5726,0.3869,-0.7192,0.4638,-0.5174,-0.718,0.4114,0.5615,-0.7084,0.122,-0.6951,-0.7081,-0.5134,0.4847,-0.7076,-0.5358,0.4606,-0.7058,-0.4256,-0.5663,-0.6981,-0.1147,-0.7067,-0.6974,-0.4935,0.5198,-0.6908,-0.7017,-0.1745,-0.683,-0.3788,-0.6246,-0.6828,0.5186,-0.5146,-0.6819,-0.6189,-0.3898,-0.6818,-0.341,0.6472,-0.6815,0.5559,-0.476,-0.6764,-0.078,-0.7324,-0.6715,0.3169,-0.6698,-0.6644,-0.3192,-0.6758,-0.6621,-0.6609,0.3532,-0.661,-0.7498,0.0289,-0.6588,0.688,0.3042,-0.6578,0.5902,-0.468,-0.6575,0.4302,-0.6186,-0.6555,0.5801,0.4836,-0.6548,0.1547,-0.7398,-0.6536,-0.6922,-0.306,-0.6515,-0.5074,-0.564,-0.6507,0.5332,-0.5406,-0.6484,-0.7012,0.2966,-0.6481,-0.7616,-0.0014,-0.6441,-0.6847,0.341,-0.6441,-0.698,-0.3129,-0.6437,-0.107,0.7578,-0.6435,-0.7649,-0.0291,-0.6433,0.7655,-0.0156,-0.6425,-0.082,-0.7619,-0.6424,0.5604,-0.5228,-0.6417,0.7586,-0.1129,-0.639,-0.7288,0.2459,-0.6367,-0.6226,0.4549,-0.6367,0.4843,-0.6001,-0.6363,-0.0016,-0.7714,-0.6356,-0.6149,-0.4668,-0.6355,-0.6629,0.3958,-0.6325,-0.733,0.2505,-0.6313,0.4498,-0.6317,-0.6312,0.1851,-0.7532,-0.6304,-0.5899,0.5047,-0.6284,0.6495,-0.428,-0.6281,-0.3672,0.6861,-0.6274,0.3712,-0.6845,-0.6267,0.6125,-0.4818,-0.6243,0.6441,-0.442,-0.6201,-0.6936,0.3667,-0.6188,0.7778,-0.1099,-0.6166,-0.7152,0.329,-0.615,-0.0102,0.7885,-0.6089,0.4567,-0.6486,-0.6081,0.6095,-0.5087,-0.6077,-0.1347,-0.7827,-0.6075,-0.4583,-0.6488,-0.6036,0.7888,0.1158,-0.602,0.3123,0.7349,-0.6017,-0.0019,0.7988,-0.6007,0.3305,0.7279,-0.6,-0.7524,0.2718,-0.5998,-0.5661,0.5655,-0.5975,-0.372,-0.7103,-0.5966,-0.6962,0.3992,-0.5963,-0.3357,-0.7292,-0.5955,-0.7352,-0.3239,-0.5951,-0.6746,-0.4368,-0.5916,-0.6466,0.4816,-0.5849,-0.7586,0.2872,-0.5842,0.8092,-0.0619,-0.5806,-0.1444,0.8013,-0.5791,0.7793,-0.2395,-0.577,0.6579,-0.484,-0.5742,0.8135,-0.0918,-0.5741,0.8148,0.0807,-0.5699,0.6225,0.5363,-0.5677,-0.4932,0.6591,-0.5661,-0.7091,0.4204,-0.5631,-0.7758,-0.2847,-0.5624,0.1304,0.8165,-0.5573,0.246,0.793,-0.5567,-0.7044,-0.4403,-0.5564,0.3892,-0.7341,-0.5552,0.6483,-0.521,-0.5542,0.4551,-0.6969,-0.5533,-0.563,0.6139,-0.5526,-0.7112,0.4346,-0.552,-0.3196,-0.7702,-0.5476,0.8192,-0.1706,-0.5472,-0.1113,-0.8296,-0.5465,0.7925,-0.2709,-0.5454,-0.2051,0.8127,-0.5453,-0.42,0.7254,-0.5444,-0.0154,0.8387,-0.5435,-0.7075,0.4517,-0.5417,0.8384,-0.0606,-0.5409,0.4977,0.678,-0.5392,-0.6763,0.5019,-0.5388,0.8113,-0.2269,-0.5384,0.8376,-0.0925,-0.5367,0.4978,-0.6813,-0.5333,0.4401,-0.7224,-0.5317,0.1314,-0.8366,-0.5315,0.6749,-0.5119,-0.5293,0.7329,-0.4273,-0.5281,-0.5569,-0.6411,-0.5272,0.6176,-0.5837,-0.5256,0.8504,0.0226,-0.525,0.5858,-0.6174,-0.5228,0.8001,-0.2943,-0.5205,-0.6199,-0.5871,-0.5191,-0.7312,0.4426,-0.5176,-0.1676,0.839,-0.5153,0.4925,-0.7014,-0.515,-0.3421,-0.7859,-0.5144,0.8388,0.1784,-0.5141,-0.8434,-0.1561,-0.5137,-0.1786,-0.8392,-0.5119,-0.3437,-0.7873,-0.5097,-0.7746,0.3745,-0.5096,0.8482,0.1446,-0.5091,0.7961,-0.3273,-0.5084,0.3578,-0.7833,-0.5072,0.6976,-0.5061,-0.5071,-0.507,0.697,-0.507,0.8555,0.105,-0.5019,0.4159,-0.7583,-0.4996,0.8331,-0.2373,-0.4987,-0.1731,-0.8493,-0.4955,0.848,0.1881,-0.4948,-0.7976,0.3449,-0.494,-0.8624,-0.1102,-0.4926,-0.6094,0.6213,-0.4857,-0.8195,-0.304,-0.485,0.6046,-0.6319,-0.4841,-0.3952,0.7807,-0.4824,-0.8753,-0.0343,-0.4815,0.8501,0.2132,-0.4813,-0.8503,-0.2131,-0.4793,0.4193,0.771,-0.4789,0.1006,-0.8721,-0.4787,0.7574,0.444,-0.478,0.8405,-0.2551,-0.4765,0.8551,-0.2043,-0.4762,-0.8173,0.3243,-0.4757,-0.6705,0.5693,-0.4735,0.2434,0.8465,-0.47,0.284,0.8358,-0.469,-0.1161,0.8755,-0.4686,0.6635,-0.5832,-0.4682,0.143,-0.872,-0.4678,0.3554,0.8092,-0.4656,-0.0921,0.8802,-0.4642,0.7739,-0.4309,-0.461,0.2594,-0.8487,-0.4561,-0.6906,-0.5612,-0.4548,0.5272,0.7177,-0.4522,0.658,0.6021,-0.4521,-0.7033,0.5486,-0.4515,0.8764,-0.1674,-0.4497,-0.7974,-0.4024,-0.4482,0.7762,0.4434,-0.4462,-0.8652,0.2289,-0.4457,-0.8838,0.1425,-0.4442,-0.753,-0.4855,-0.4425,-0.85,-0.2858,-0.4412,0.8972,-0.0219,-0.4397,-0.735,0.5162,-0.4358,0.5922,-0.6778,-0.4356,0.894,0.1054,-0.4355,-0.5681,-0.6983,-0.4326,0.8256,0.3621,-0.4315,-0.7313,-0.5282,-0.4307,0.5733,-0.697,-0.4271,0.8236,0.3732,-0.4251,0.745,-0.514,-0.4242,0.2794,-0.8614,-0.4232,0.8669,0.2635,-0.4228,0.5156,-0.7453,-0.4225,-0.6016,-0.678,-0.4218,-0.4937,0.7605,-0.4167,-0.9006,-0.1237,-0.4165,0.2166,-0.883,-0.4126,0.9,-0.1403,-0.4123,-0.4247,0.806,-0.4116,-0.891,0.1914,-0.41,0.8406,-0.3539,-0.4047,-0.6301,-0.6627,-0.4046,-0.9139,-0.0325,-0.4042,-0.859,-0.3142,-0.404,-0.6503,-0.6433,-0.4032,0.9024,0.1518,-0.4029,0.7988,-0.4468,-0.4015,-0.6408,-0.6544,-0.4011,-0.9105,-0.1005,-0.4005,0.2522,-0.8809,-0.3985,0.9101,-0.114,-0.3975,0.9046,-0.154,-0.3973,-0.5127,-0.7611,-0.3973,0.7924,0.463,-0.397,0.7519,0.5264,-0.396,0.9016,0.1741,-0.3941,0.1327,-0.9094,-0.3931,0.4309,-0.8123,-0.393,0.2476,0.8856,-0.3922,-0.7602,-0.518,-0.392,-0.6623,-0.6385,-0.3898,0.0344,-0.9203,-0.3887,0.011,-0.9213,-0.3861,0.4638,-0.7974,-0.386,-0.3685,0.8457,-0.3858,0.8467,-0.3663,-0.3856,-0.8659,-0.3186,-0.3848,0.3981,-0.8327,-0.3848,-0.2483,-0.889,-0.3846,-0.0161,0.9229,-0.3846,0.0604,-0.9211,-0.3839,-0.6881,-0.6157,-0.3828,0.826,0.4138,-0.3826,0.1551,0.9108,-0.3824,-0.6583,0.6484,-0.3815,0.823,0.4208,-0.3814,-0.7714,-0.5094,-0.3807,-0.5444,-0.7475,-0.3796,0.7021,-0.6024,-0.3791,0.7561,-0.5335,-0.379,-0.6623,-0.6463,-0.3787,-0.9254,0.0104,-0.3774,0.5105,-0.7726,-0.3768,0.1656,-0.9114,-0.3765,0.4372,-0.8168,-0.3764,0.0453,0.9254,-0.3737,-0.9262,0.0496,-0.3728,-0.1845,0.9094,-0.3712,-0.9127,0.1708,-0.3694,-0.5075,0.7784,-0.3686,-0.1184,0.922,-0.3637,0.7834,-0.504,-0.3637,-0.5046,0.783,-0.3626,0.7106,-0.603,-0.3616,0.4174,-0.8337,-0.359,-0.5566,-0.7492,-0.3582,-0.6841,-0.6354,-0.3555,-0.7542,0.5521,-0.3534,-0.5559,0.7524,-0.3529,-0.2285,-0.9073,-0.3512,-0.7146,-0.605,-0.3478,-0.0892,0.9333,-0.3458,-0.7964,0.4962,-0.3446,0.7947,0.4996,-0.3418,0.3003,0.8905,-0.3401,-0.7499,0.5674,-0.3384,-0.8451,-0.4139,-0.3376,0.8596,0.3835,-0.3372,0.2586,0.9052,-0.3328,-0.1941,0.9228,-0.3282,0.9423,0.0661,-0.3282,0.4769,0.8154,-0.3267,0.7508,0.5741,-0.324,0.6054,0.727,-0.324,-0.012,-0.946,-0.3237,-0.9012,0.2882,-0.3214,0.126,-0.9385,-0.3184,-0.9188,-0.233,-0.317,0.4716,0.8229,-0.3118,-0.3032,0.9004,-0.3097,0.9284,-0.2053,-0.3079,-0.4811,-0.8208,-0.3064,0.7961,-0.5218,-0.3064,-0.3072,-0.901,-0.305,0.7766,-0.5513,-0.3035,0.633,-0.7122,-0.3019,-0.5677,-0.7659,-0.3004,0.7028,-0.6448,-0.2944,-0.7506,-0.5915,-0.2921,-0.0218,0.9561,-0.2893,-0.3893,-0.8745,-0.2875,-0.9506,-0.1166,-0.2845,-0.8211,-0.4949,-0.2838,-0.4382,0.8529,-0.2833,0.8846,-0.3704,-0.2811,0.9046,0.3203,-0.2797,-0.8335,-0.4765,-0.277,-0.6571,-0.701,-0.2758,0.8878,-0.3685,-0.2748,0.6026,-0.7492,-0.2745,-0.1525,0.9494,-0.2739,0.619,-0.7361,-0.2729,-0.6176,-0.7376,-0.2725,-0.0561,-0.9605,-0.2723,0.2542,0.928,-0.2721,0.9619,0.0285,-0.2718,0.962,0.0268,-0.2714,0.0629,-0.9604,-0.27,0.9422,-0.1985,-0.269,0.9548,-0.1261,-0.2669,0.79,-0.5519,-0.2656,0.4505,0.8524,-0.2656,-0.5238,-0.8094,-0.2646,0.9152,0.3039,-0.262,-0.1363,-0.9554,-0.2619,-0.7115,0.6521,-0.2613,-0.5403,-0.7999,-0.2595,-0.8369,-0.482,-0.2574,0.5671,-0.7824,-0.254,-0.9626,0.0947,-0.2539,0.9661,0.0465,-0.2529,-0.8406,0.479,-0.2505,0.4423,0.8612,-0.2475,0.8573,-0.4514,-0.2474,-0.3867,-0.8884,-0.2469,0.018,0.9689,-0.2458,-0.3828,-0.8905,-0.2452,0.8524,0.4619,-0.2442,0.4146,0.8766,-0.2429,0.0671,0.9677,-0.2427,0.679,0.6928,-0.2424,0.8667,0.4359,-0.2409,0.8808,0.4077,-0.2407,0.8499,0.4687,-0.2398,-0.7983,-0.5525,-0.2337,0.0319,-0.9718,-0.2289,0.9437,-0.2389,-0.226,-0.8135,-0.5358,-0.2251,-0.1599,-0.9611,-0.2247,0.8413,-0.4916,-0.2203,0.974,0.0531,-0.2187,0.9545,-0.2026,-0.2187,0.9757,0.0091,-0.2158,-0.2472,0.9446,-0.2154,0.7221,-0.6574,-0.215,-0.3824,0.8986,-0.2147,0.0634,0.9746,-0.2139,-0.7956,-0.5667,-0.2118,-0.9251,-0.315,-0.2106,0.8483,0.4859,-0.2105,-0.8389,-0.5019,-0.2101,-0.8703,0.4455,-0.2094,0.9696,0.1266,-0.2078,-0.8316,-0.5151,-0.2076,0.5943,0.777,-0.2075,0.9006,0.382,-0.2073,-0.6513,-0.73,-0.2056,-0.8209,-0.5327,-0.2048,0.973,-0.1067,-0.2044,0.1381,-0.9691,-0.203,0.8359,0.51,-0.2014,0.9264,0.3183,-0.2012,-0.8188,-0.5378,-0.1973,0.8684,0.455,-0.1966,0.9708,0.1373,-0.1965,-0.9748,0.1056,-0.1957,0.5345,0.8222,-0.1951,0.8502,-0.4891,-0.1939,0.5865,-0.7864,-0.1938,0.9285,0.3169,-0.1924,0.9562,0.2205,-0.1921,0.9261,0.3247,-0.1913,0.5397,0.8198,-0.1891,0.5855,-0.7883,-0.1875,-0.6759,-0.7127,-0.185,0.6256,-0.7579,-0.1848,0.9491,-0.2552,-0.1847,-0.1648,0.9689,-0.1835,-0.2441,-0.9522,-0.1824,0.7381,-0.6496,-0.1816,0.392,-0.9019,-0.1813,-0.4807,-0.8579,-0.1812,-0.7704,-0.6112,-0.181,0.9276,0.3268,-0.1801,0.9632,0.1994,-0.1792,-0.8442,-0.5051,-0.1792,-0.2636,-0.9478,-0.1787,-0.4556,-0.8721,-0.1758,0.2602,0.9494,-0.1748,-0.7546,-0.6324,-0.1738,0.9816,-0.0788,-0.1736,0.9015,-0.3965,-0.1734,0.9323,-0.3175,-0.1727,-0.507,0.8445,-0.1723,0.9616,0.2138,-0.1715,0.21,-0.9625,-0.1713,0.8546,-0.4902,-0.17,0.9584,0.2293,-0.17,0.9404,0.2947,-0.1683,0.9612,0.2185,-0.1678,0.3415,-0.9248,-0.1674,0.9749,-0.1468,-0.1658,-0.8563,-0.4891,-0.1624,0.1028,-0.9814,-0.1606,-0.8286,-0.5363,-0.1596,-0.8228,-0.5454,-0.1594,-0.982,-0.1015,-0.1583,0.2682,-0.9503,-0.158,0.961,0.2268,-0.156,0.5092,-0.8464,-0.1538,0.8878,-0.4338,-0.1531,0.751,0.6424,-0.1513,-0.8844,-0.4415,-0.1511,0.9778,-0.1455,-0.1499,0.9839,-0.0973,-0.1495,-0.8064,0.5721,-0.1477,0.8788,0.4537,-0.1472,-0.8278,-0.5413,-0.1467,-0.7399,-0.6565,-0.1453,0.9856,-0.0864,-0.1449,0.8145,0.5618,-0.1446,0.5301,-0.8355,-0.1438,0.9173,-0.3713,-0.1422,-0.6899,0.7098,-0.1413,-0.9325,-0.3324,-0.1412,-0.9394,-0.3125,-0.141,0.7047,-0.6954,-0.1405,0.1089,-0.9841,-0.1396,0.0218,-0.99,-0.138,-0.3721,-0.9179,-0.1378,0.988,-0.0693,-0.1371,-0.9077,-0.3965,-0.1367,0.9497,0.2816,-0.1362,-0.6797,-0.7207,-0.1361,0.9359,-0.3249,-0.1359,-0.9847,-0.1086,-0.1336,-0.3453,0.9289,-0.1324,-0.1111,-0.985,-0.1309,-0.8924,-0.4318,-0.1302,0.9547,-0.2677,-0.1279,0.5962,-0.7926,-0.1276,0.7383,-0.6623,-0.1262,0.969,0.2122,-0.1262,0.9916,0.0281,-0.1259,-0.2635,0.9564,-0.1255,0.079,0.9889,-0.1245,-0.4909,-0.8623,-0.1238,-0.9911,0.0495,-0.1237,0.9557,-0.2672,-0.123,0.9915,-0.043,-0.1224,-0.9424,-0.3111,-0.1215,-0.8468,-0.5178,-0.12,-0.8543,-0.5057,-0.1188,-0.6617,-0.7403,-0.1186,-0.4634,-0.8781,-0.1184,-0.6112,-0.7826,-0.1157,-0.1649,-0.9795,-0.1152,-0.9453,-0.3052,-0.1152,0.8905,0.4402,-0.115,0.519,-0.847,-0.1136,-0.4673,-0.8768,-0.112,-0.8483,-0.5175,-0.1113,0.7552,0.6459,-0.1105,-0.1446,-0.9833,-0.1105,-0.4807,-0.8699,-0.1102,-0.9721,0.2069,-0.1085,0.9487,0.2971,-0.1076,0.9492,-0.2958,-0.1068,0.0141,-0.9942,-0.1064,0.9454,-0.3081,-0.1057,0.889,-0.4455,-0.105,-0.9736,-0.2026,-0.1047,-0.2897,-0.9514,-0.1016,-0.7508,-0.6527,-0.1007,-0.9485,0.3002,-0.0989,0.8603,0.5,-0.097,0.8699,0.4836,-0.0962,0.9804,-0.1722,-0.0956,0.1192,-0.9883,-0.0954,0.3285,-0.9397,-0.0948,0.9932,0.0676,-0.0938,-0.4888,-0.8674,-0.0937,-0.6382,0.7641,-0.093,0.9951,0.0337,-0.0928,-0.9871,-0.1306,-0.0921,0.9938,0.0628,-0.0908,0.1143,-0.9893,-0.0906,-0.6789,-0.7286,-0.0888,-0.0333,-0.9955,-0.0886,0.9889,0.119,-0.0877,0.5744,-0.8138,-0.0866,-0.2309,-0.9691,-0.0859,-0.8064,-0.5851,-0.0852,0.3066,0.948,-0.0848,0.4459,0.8911,-0.0847,0.9208,0.3807,-0.0836,0.9106,0.4047,-0.0836,-0.7949,-0.6009,-0.0833,-0.4081,-0.9091,-0.0827,-0.9842,-0.1567,-0.0825,0.8774,0.4725,-0.079,0.7944,-0.6023,-0.0785,-0.9909,-0.1093,-0.0785,-0.4762,-0.8758,-0.0784,0.1152,-0.9903,-0.0781,-0.9875,-0.1367,-0.0777,0.5753,0.8142,-0.0776,0.5866,-0.8061,-0.0769,0.9558,0.2838,-0.0761,0.8836,0.462,-0.0761,-0.2445,-0.9667,-0.0755,0.9909,-0.1117,-0.0754,0.1223,-0.9896,-0.0754,0.4803,0.8738,-0.0753,-0.9471,-0.3121,-0.0748,-0.2379,-0.9684,-0.0742,0.9824,0.1713,-0.0737,0.4556,-0.8871,-0.0704,-0.7557,-0.6511,-0.0697,-0.9738,-0.2166,-0.0688,-0.87,-0.4882,-0.0686,-0.2623,-0.9625,-0.0681,0.8369,0.543,-0.0676,0.6555,0.7522,-0.0667,0.9578,0.2797,-0.064,0.5405,-0.8389,-0.0631,-0.8781,-0.4742,-0.0628,-0.9809,0.184,-0.0626,0.0182,-0.9979,-0.0622,-0.9806,-0.1857,-0.0621,-0.9661,-0.2507,-0.0617,-0.9175,-0.393,-0.0616,-0.9828,-0.1738,-0.061,0.2239,-0.9727,-0.0609,0.4581,-0.8868,-0.0599,-0.9172,-0.3939,-0.0576,0.552,0.8319,-0.0559,-0.2195,-0.974,-0.0537,-0.9718,-0.2297,-0.0514,0.9295,-0.3653,-0.0514,0.9987,0.0067,-0.0498,0.2685,-0.962,-0.0497,0.928,-0.3692,-0.0493,0.8811,0.4704,-0.049,-0.838,-0.5435,-0.0488,0.9679,-0.2465,-0.0485,-0.8336,-0.5502,-0.0485,0.2514,-0.9667,-0.0474,0.8908,-0.452,-0.0457,-0.903,-0.4271,-0.0436,0.8456,-0.532,-0.0429,0.9074,0.418,-0.0428,-0.8423,-0.5373,-0.0427,0.9948,0.0925,-0.0422,0.9979,0.0495,-0.0422,0.8235,-0.5657,-0.0421,-0.6383,-0.7686,-0.0419,-0.9589,-0.2805,-0.0414,-0.0463,-0.9981,-0.0399,0.3203,-0.9465,-0.0396,-0.9386,-0.3428,-0.0393,0.8005,0.5981,-0.039,0.0647,-0.9971,-0.0379,-0.8216,-0.5688,-0.0375,0.6373,-0.7697,-0.037,0.4358,-0.8993,-0.037,-0.9522,0.3033,-0.0368,0.1891,-0.9813,-0.036,-0.6805,-0.7318,-0.0338,0.9885,0.1471,-0.0338,0.9739,0.2245,-0.0333,-0.7797,0.6253,-0.0317,0.981,0.1913,-0.0297,0.9465,-0.3212,-0.0267,0.9774,0.2096,-0.0248,0.6651,0.7464,-0.0245,0.9317,0.3625,-0.0237,0.8373,0.5462,-0.0236,0.6098,-0.7922,-0.0234,0.9894,0.1434,-0.0227,-0.8542,-0.5194,-0.022,-0.7365,-0.6761,-0.0218,-0.6567,-0.7538,-0.0197,-0.9551,-0.2957,-0.0192,0.0058,0.9998,-0.0192,0.9919,0.1253,-0.0182,0.9931,0.1161,-0.018,-0.9635,0.2669,-0.0174,-0.9998,0.0128,-0.0169,0.9908,-0.134,-0.0163,0.9329,-0.3599,-0.0163,-0.9753,-0.2202,-0.016,0.9961,0.0864,-0.0156,0.9709,0.2389,-0.0156,0.9336,0.3579,-0.0152,0.9894,0.1447,-0.0149,-0.9736,-0.2278,-0.0145,0.6706,0.7417,-0.0143,0.0786,-0.9968,-0.0125,0.9744,0.2245,-0.0123,-0.6263,-0.7795,-0.0099,-0.9152,0.4028,-0.0097,0.0808,-0.9967,-0.0093,-0.9626,0.2708,-0.0069,0.911,0.4123,-0.0054,0.5851,-0.8109,-0.0053,0.9951,0.0987,-0.0052,0.9991,-0.0426,-0.0031,0.872,-0.4895,-0.0027,-0.3145,-0.9492,-0.0025,0.1457,-0.9893,-0.0021,-0.9586,-0.2848,-0.0019,0.9342,0.3567,-0.0016,0.498,0.8672,-0.0012,0.92,0.392,0.0,0.1836,0.983,0.0,-0.1976,0.9803,0.0,-0.2616,0.9652,0.0,-0.2755,0.9613,0.0,-0.29,0.957,0.0,0.2988,0.9543,0.0,-0.3412,0.94,0.0,-0.4422,0.8969,0.0,-0.4499,0.8931,0.0,0.6273,0.7788,0.0,-0.6688,0.7435,0.0,-0.8125,0.583,0.0,-0.8481,0.5299,0.0,0.8671,0.4981,0.0,-0.8859,0.4638,0.0,0.8934,0.4492,0.0,0.9295,0.3688,0.0,-0.939,0.3439,0.0,-0.9476,0.3196,0.0,0.9593,0.2825,0.0,0.971,0.2392,0.0,0.9728,0.2316,0.0,-0.9792,0.203,0.0,0.9983,0.0585,0.0,0.9923,-0.1237,0.0,-0.9876,-0.1572,0.0,0.9871,-0.1603,0.0,0.981,-0.1938,0.0,0.9784,-0.2068,0.0,-0.9771,-0.2127,0.0,0.9719,-0.2352,0.0,-0.9549,-0.297,0.0,-0.9306,-0.366,0.0,-0.906,-0.4233,0.0,0.8588,-0.5122,0.0,-0.8283,-0.5603,0.0,-0.7866,-0.6175,0.0,-0.759,-0.6511,0.0,0.747,-0.6648,0.0,-0.6265,-0.7794,0.0,0.5219,-0.853,0.0,-0.4765,-0.8792,0.0,0.312,-0.9501,0.0,0.2353,-0.9719,0.0,0.202,-0.9794,0.0,0.1536,-0.9881,0.0,0.1454,-0.9894,0.0,-0.0998,-0.995,0.0,-0.0438,-0.999,0.0012,0.92,0.392,0.0019,0.9342,0.3567,0.0021,0.4267,-0.9044,0.0021,-0.9586,-0.2848,0.0027,-0.3145,-0.9492,0.0031,0.872,-0.4895,0.0032,-0.8632,-0.5048,0.0035,0.0099,0.9999,0.0069,0.911,0.4123,0.0085,0.2114,-0.9774,0.0085,0.0138,-0.9999,0.0093,-0.9626,0.2708,0.0123,-0.6263,-0.7795,0.0125,0.9744,0.2245,0.0134,0.6653,0.7464,0.0137,0.9944,0.1049,0.0143,0.0786,-0.9968,0.0152,0.9894,0.1447,0.0156,0.9336,0.3579,0.0157,-0.7843,0.6202,0.0161,0.7809,0.6244,0.0163,-0.9753,-0.2202,0.0163,0.9329,-0.3599,0.019,-0.9627,-0.27,0.0197,-0.9551,-0.2957,0.0198,-0.0185,-0.9996,0.0207,-0.9949,0.0992,0.022,-0.7365,-0.6761,0.0227,-0.8542,-0.5194,0.0242,0.9916,-0.1271,0.0245,0.9317,0.3625,0.0249,0.9471,-0.3201,0.0252,0.9935,0.1112,0.0264,-0.9474,-0.3189,0.0264,0.9821,0.1867,0.0273,0.4073,-0.9129,0.0291,-0.914,-0.4046,0.0291,0.5834,-0.8117,0.0303,0.9995,0.0097,0.0309,0.9409,-0.3373,0.0317,0.981,0.1913,0.0333,-0.7797,0.6253,0.0338,0.9885,0.1471,0.0348,0.8401,-0.5413,0.036,-0.6805,-0.7318,0.0379,-0.8216,-0.5688,0.039,0.0647,-0.9971,0.0393,0.8005,0.5981,0.0399,0.3203,-0.9465,0.0414,-0.0463,-0.9981,0.0416,-0.6382,-0.7687,0.0419,0.0765,-0.9962,0.0421,-0.6383,-0.7686,0.0422,0.8235,-0.5657,0.0422,-0.8566,-0.5143,0.0429,0.9074,0.418,0.0442,-0.7477,0.6626,0.0457,-0.903,-0.4271,0.0463,0.8801,0.4725,0.0465,-0.846,-0.5312,0.0474,0.8908,-0.452,0.0498,0.2685,-0.962,0.0536,0.9558,0.289,0.0537,-0.9718,-0.2297,0.0539,0.9298,-0.3641,0.0541,0.9985,0.0081,0.0543,-0.8153,-0.5765,0.0551,-0.8561,-0.5138,0.0599,-0.9172,-0.3939,0.0607,0.4574,-0.8872,0.0611,0.9953,0.0756,0.0616,-0.8536,-0.5172,0.0621,-0.9661,-0.2507,0.063,-0.9777,0.2002,0.0631,-0.8781,-0.4742,0.0637,-0.9528,0.2968,0.064,0.5405,-0.8389,0.0667,0.9578,0.2797,0.0676,0.6555,0.7522,0.0678,-0.9867,-0.1477,0.0678,0.9894,-0.1287,0.0681,0.8369,0.543,0.0686,-0.2623,-0.9625,0.0689,-0.3434,-0.9366,0.0694,-0.4199,-0.9049,0.0704,-0.7557,-0.6511,0.0716,0.4585,0.8858,0.0726,-0.2087,-0.9753,0.0727,0.9961,0.0505,0.0737,-0.0953,-0.9927,0.0737,0.4556,-0.8871,0.0748,-0.2379,-0.9684,0.0753,0.9635,-0.2571,0.0753,-0.9471,-0.3121,0.0754,0.4803,0.8738,0.0755,-0.982,-0.1733,0.0766,0.9799,0.1843,0.0767,0.5794,-0.8114,0.0772,0.9966,0.0288,0.0776,0.5866,-0.8061,0.0777,0.5753,0.8142,0.0781,-0.9875,-0.1367,0.079,0.7944,-0.6023,0.0806,0.1294,-0.9883,0.0825,0.8774,0.4725,0.0827,-0.9842,-0.1567,0.0836,-0.7949,-0.6009,0.0836,0.9106,0.4047,0.0847,0.9208,0.3807,0.0848,0.4459,0.8911,0.0852,0.3066,0.948,0.0865,0.0194,-0.9961,0.0866,-0.2309,-0.9691,0.0885,0.8859,0.4553,0.0905,-0.456,-0.8854,0.0906,-0.6789,-0.7286,0.0928,-0.9871,-0.1306,0.093,0.9951,0.0337,0.0932,0.0672,-0.9934,0.0938,-0.4888,-0.8674,0.0939,-0.9908,-0.0972,0.0942,-0.9907,-0.0978,0.0948,0.9932,0.0676,0.0954,0.3285,-0.9397,0.0956,0.1192,-0.9883,0.0989,0.8603,0.5,0.0991,0.8707,0.4817,0.0998,0.976,0.1938,0.1011,-0.7515,-0.652,0.1015,0.4957,-0.8625,0.1024,-0.6206,-0.7774,0.1032,0.755,0.6476,0.105,-0.9736,-0.2026,0.105,0.993,-0.0549,0.1057,0.889,-0.4455,0.1064,0.9454,-0.3081,0.1075,0.9497,-0.294,0.1085,0.9487,0.2971,0.1094,-0.7818,-0.6138,0.1102,-0.9721,0.2069,0.1105,-0.1446,-0.9833,0.1136,-0.4673,-0.8768,0.1141,0.9935,-0.0034,0.1143,-0.6258,0.7715,0.115,0.519,-0.847,0.1152,-0.9453,-0.3052,0.1152,0.8905,0.4402,0.1157,-0.1649,-0.9795};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_182_vector_2()
		{
			double[] value = {0.1171,0.1314,-0.9844,0.1186,-0.4634,-0.8781,0.119,0.9816,-0.1492,0.1199,0.9912,0.0555,0.12,-0.8543,-0.5057,0.1221,-0.0334,-0.992,0.1232,0.7378,0.6637,0.1254,0.9818,0.1428,0.1255,0.079,0.9889,0.1274,-0.8424,-0.5236,0.1276,0.7383,-0.6623,0.1279,0.5962,-0.7926,0.1287,0.4682,-0.8742,0.1289,-0.8309,-0.5413,0.1302,0.9547,-0.2677,0.1312,-0.7974,0.589,0.1324,-0.1111,-0.985,0.1328,-0.9313,-0.3392,0.1342,-0.8487,-0.5115,0.1354,-0.986,-0.0972,0.1361,0.9359,-0.3249,0.1361,-0.456,-0.8795,0.1362,-0.6797,-0.7207,0.1367,0.9497,0.2816,0.137,-0.2716,0.9526,0.1371,-0.9077,-0.3965,0.1378,0.5379,-0.8317,0.138,-0.3721,-0.9179,0.1396,0.0218,-0.99,0.1405,0.1089,-0.9841,0.141,0.7047,-0.6954,0.1413,-0.9325,-0.3324,0.1415,0.5647,0.8131,0.1438,0.9173,-0.3713,0.1453,0.9856,-0.0864,0.1461,0.9854,-0.0875,0.1474,-0.7584,-0.635,0.1475,-0.6944,-0.7043,0.1477,0.8788,0.4537,0.1485,0.971,0.1876,0.1494,-0.359,0.9213,0.1511,0.9778,-0.1455,0.1513,-0.8844,-0.4415,0.1516,-0.5424,-0.8263,0.1531,0.751,0.6424,0.1536,0.9871,-0.0442,0.1538,0.8878,-0.4338,0.156,-0.9778,0.1397,0.1562,0.9752,-0.1565,0.1577,-0.8873,-0.4334,0.158,0.961,0.2268,0.1583,0.2682,-0.9503,0.1589,0.9051,-0.3944,0.1606,-0.8286,-0.5363,0.1624,0.8309,0.5322,0.1629,0.5528,0.8172,0.1644,-0.9478,-0.2732,0.1658,-0.8563,-0.4891,0.166,0.9307,0.326,0.17,0.9404,0.2947,0.17,0.9584,0.2293,0.171,-0.7528,0.6357,0.1715,0.21,-0.9625,0.1718,0.9851,-0.001,0.1726,-0.1914,-0.9662,0.1734,0.9323,-0.3175,0.1736,0.9015,-0.3965,0.1738,-0.4012,-0.8993,0.1745,0.0794,-0.9814,0.1748,-0.7546,-0.6324,0.1769,-0.9534,0.2446,0.1772,-0.7291,-0.6611,0.1792,-0.2636,-0.9478,0.1792,0.1658,-0.9697,0.1792,-0.8442,-0.5051,0.1801,0.9632,0.1994,0.1805,0.945,-0.2728,0.181,0.9276,0.3268,0.1812,0.3506,-0.9188,0.1819,0.3932,-0.9013,0.1822,0.9581,0.221,0.1834,-0.2441,-0.9522,0.1841,0.9765,-0.1125,0.1843,-0.4969,0.848,0.1847,-0.1648,0.9689,0.1848,0.9491,-0.2552,0.1848,0.719,-0.67,0.1857,-0.4518,-0.8726,0.1862,0.976,0.1125,0.1873,-0.752,-0.6319,0.1875,-0.6759,-0.7127,0.1879,0.9636,0.1902,0.1891,0.5855,-0.7883,0.1927,-0.8138,-0.5483,0.1939,0.5865,-0.7864,0.1951,0.8502,-0.4891,0.1957,0.5345,0.8222,0.1973,0.8684,0.455,0.1975,0.5534,0.8091,0.1983,0.9245,0.3257,0.2012,-0.8188,-0.5378,0.2014,0.9264,0.3183,0.2056,-0.8209,-0.5327,0.2068,0.8347,0.5103,0.2075,0.9006,0.382,0.2075,0.7521,-0.6255,0.2078,-0.8316,-0.5151,0.2101,-0.8703,0.4455,0.2118,-0.9251,-0.315,0.2139,-0.7956,-0.5667,0.215,-0.3824,0.8986,0.2154,0.9697,-0.1149,0.2158,-0.2472,0.9446,0.2168,0.0565,0.9746,0.2181,0.6102,-0.7616,0.2182,0.9549,-0.2015,0.2184,0.9744,0.0531,0.2242,0.8324,0.5068,0.2251,-0.1599,-0.9611,0.226,-0.8135,-0.5358,0.2289,0.9437,-0.2389,0.2301,-0.8471,-0.4791,0.2315,0.0538,0.9713,0.2317,0.0046,0.9728,0.2337,0.0319,-0.9718,0.237,0.9583,0.1599,0.2378,0.849,0.4718,0.2398,-0.7983,-0.5525,0.2409,0.8808,0.4077,0.2421,0.9676,0.0719,0.2421,0.4228,0.8733,0.2423,-0.3738,-0.8953,0.2424,0.8667,0.4359,0.2442,0.4146,0.8766,0.2452,0.8524,0.4619,0.2458,-0.3828,-0.8905,0.2475,0.8573,-0.4514,0.2502,-0.7041,0.6646,0.2505,0.4423,0.8612,0.253,0.95,-0.183,0.254,-0.9626,0.0947,0.2547,0.2668,0.9295,0.2575,0.6959,0.6704,0.2594,0.8388,-0.4786,0.2613,-0.5403,-0.7999,0.262,-0.1363,-0.9554,0.2643,0.5907,-0.7624,0.2646,0.9152,0.3039,0.2667,-0.0489,-0.9625,0.2669,0.79,-0.5519,0.2678,-0.454,0.8498,0.269,0.9548,-0.1261,0.2692,-0.5242,-0.8079,0.2714,0.0629,-0.9604,0.2715,0.7126,-0.6469,0.2726,0.6114,-0.7429,0.2729,-0.6176,-0.7376,0.277,-0.6571,-0.701,0.2781,-0.8219,-0.4971,0.2787,0.9586,0.0586,0.2789,-0.1751,0.9442,0.2811,0.9046,0.3203,0.2833,0.8846,-0.3704,0.2845,-0.8211,-0.4949,0.2846,-0.5371,-0.794,0.287,-0.8741,0.3918,0.2875,-0.9506,-0.1166,0.2877,0.8818,-0.3738,0.2893,-0.3893,-0.8745,0.2907,0.5121,-0.8083,0.2916,-0.1768,0.9401,0.2944,-0.7506,-0.5915,0.2981,-0.3139,0.9014,0.2983,-0.8247,0.4806,0.2997,0.6189,0.7261,0.3035,0.633,-0.7122,0.3049,0.1777,0.9357,0.305,0.7766,-0.5513,0.3064,-0.3072,-0.901,0.3064,0.7961,-0.5218,0.3089,-0.8096,-0.4991,0.3107,-0.477,-0.8221,0.3109,0.949,0.0515,0.3137,-0.0731,0.9467,0.3169,-0.9195,-0.2325,0.317,0.4716,0.8229,0.3191,-0.5816,-0.7483,0.3195,0.8054,-0.4993,0.3204,0.1156,-0.9402,0.324,-0.012,-0.946,0.328,0.7317,0.5975,0.3282,0.4769,0.8154,0.3326,0.9409,0.0643,0.335,-0.837,-0.4326,0.3372,0.2586,0.9052,0.3384,-0.7165,-0.61,0.339,-0.5474,0.7651,0.3401,0.8531,0.3957,0.3401,-0.7499,0.5674,0.3467,0.4246,-0.8364,0.347,0.8,0.4896,0.3471,-0.9127,0.2154,0.3478,-0.0892,0.9333,0.3529,-0.2285,-0.9073,0.3578,0.3196,0.8774,0.3579,0.3779,-0.8539,0.3582,-0.6841,-0.6354,0.359,-0.5566,-0.7492,0.3637,-0.5046,0.783,0.3637,0.7834,-0.504,0.365,0.028,0.9306,0.3674,0.1054,0.9241,0.3675,-0.7978,0.478,0.3682,0.9236,-0.1063,0.3686,-0.1184,0.922,0.3694,-0.5075,0.7784,0.3706,-0.8819,0.2913,0.3722,-0.5207,-0.7683,0.3728,-0.1845,0.9094,0.3731,0.4974,-0.7832,0.3737,-0.9262,0.0496,0.3765,0.4372,-0.8168,0.3769,0.4516,-0.8087,0.3787,-0.9254,0.0104,0.3788,-0.7258,-0.5742,0.3789,0.8272,0.415,0.3795,-0.7628,-0.5236,0.3796,0.7021,-0.6024,0.3815,0.823,0.4208,0.3824,-0.6583,0.6484,0.3827,0.0398,-0.923,0.3839,0.0996,-0.918,0.3839,-0.6881,-0.6157,0.3848,-0.2483,-0.889,0.3856,-0.8659,-0.3186,0.3858,0.8467,-0.3663,0.386,-0.3685,0.8457,0.3893,0.2284,-0.8924,0.3898,0.0344,-0.9203,0.392,-0.6623,-0.6385,0.3922,0.4382,-0.8088,0.3922,-0.7602,-0.518,0.3941,0.1327,-0.9094,0.3946,-0.5065,0.7667,0.396,0.9016,0.1741,0.397,0.7519,0.5264,0.3975,0.9046,-0.154,0.3984,-0.7601,-0.5134,0.3998,-0.8966,0.1904,0.4004,0.0129,0.9162,0.4005,0.2522,-0.8809,0.4015,-0.6408,-0.6544,0.4026,0.6909,0.6005,0.4027,0.7093,-0.5785,0.4029,0.7988,-0.4468,0.4032,0.9024,0.1518,0.404,-0.5945,-0.6953,0.404,-0.6503,-0.6433,0.4042,-0.859,-0.3142,0.4046,-0.9139,-0.0325,0.4047,-0.6301,-0.6627,0.4059,0.491,-0.7708,0.4088,0.8995,-0.154,0.41,0.8406,-0.3539,0.4107,-0.6579,0.6313,0.4115,0.2387,0.8796,0.4156,0.7877,0.4548,0.4178,-0.4594,0.7838,0.4196,-0.901,-0.1099,0.42,-0.673,-0.6088,0.4218,0.1833,-0.888,0.4229,0.9062,0.0008,0.4237,-0.5966,-0.6816,0.4251,0.745,-0.514,0.4271,0.8236,0.3732,0.4301,0.866,0.255,0.4307,0.5733,-0.697,0.4324,0.896,0.101,0.4326,0.8256,0.3621,0.4339,-0.8719,0.2271,0.4361,0.5905,-0.6791,0.4408,0.7888,0.4283,0.4428,-0.8474,-0.2931,0.4442,-0.753,-0.4855,0.4457,-0.8838,0.1425,0.4492,0.112,-0.8864,0.4497,-0.7974,-0.4024,0.4518,0.502,-0.7375,0.4524,-0.7449,0.4903,0.455,0.4505,0.7681,0.4568,-0.162,0.8747,0.4584,0.5534,0.6954,0.4612,-0.0647,0.8849,0.4627,0.2759,-0.8425,0.4637,0.8702,-0.1664,0.4642,0.7739,-0.4309,0.4643,0.3658,0.8066,0.4682,0.143,-0.872,0.47,0.284,0.8358,0.4757,-0.6705,0.5693,0.4762,-0.8173,0.3243,0.4765,0.8551,-0.2043,0.4789,0.1006,-0.8721,0.4793,0.4193,0.771,0.4815,0.8501,0.2132,0.4824,-0.8753,-0.0343,0.4841,-0.3952,0.7807,0.485,0.6046,-0.6319,0.4857,0.7705,0.4128,0.4871,-0.8666,-0.1086,0.488,-0.8504,-0.1968,0.4891,0.6713,-0.5569,0.4893,0.8425,-0.2254,0.4926,-0.6094,0.6213,0.4947,-0.8079,-0.3203,0.4948,-0.7977,0.3449,0.4955,0.848,0.1881,0.4984,0.8334,-0.2386,0.4987,-0.1731,-0.8493,0.5005,-0.1253,0.8566,0.5014,0.3285,-0.8004,0.5071,-0.507,0.697,0.5076,0.4325,-0.7452,0.5096,0.8482,0.1446,0.5119,-0.3437,-0.7873,0.5124,0.8511,0.1149,0.5125,-0.6175,-0.5967,0.5128,-0.8558,-0.0674,0.5144,0.8388,0.1784,0.5149,0.2239,0.8275,0.515,-0.3421,-0.7859,0.5153,0.4925,-0.7014,0.5178,-0.1862,-0.835,0.5207,0.4357,-0.7342,0.5217,0.7881,-0.3267,0.5228,0.8001,-0.2943,0.5231,-0.783,0.3366,0.525,0.5858,-0.6174,0.5259,0.8502,0.0242,0.5272,0.6176,-0.5837,0.5278,-0.231,0.8174,0.5293,0.7329,-0.4273,0.5316,0.682,-0.5024,0.5317,0.1314,-0.8366,0.5333,0.8107,-0.2414,0.5345,0.4913,-0.6877,0.535,-0.6957,0.4793,0.5374,-0.722,0.4358,0.5409,0.4977,0.678,0.5417,0.8384,-0.0606,0.5435,-0.7075,0.4517,0.5453,-0.42,0.7254,0.5465,0.7925,-0.2709,0.5472,-0.1113,-0.8296,0.5476,0.8192,-0.1706,0.5484,-0.8232,-0.1472,0.552,-0.3196,-0.7702,0.5526,-0.7112,0.4346,0.5533,-0.563,0.6139,0.5567,-0.7044,-0.4403,0.5573,0.246,0.7931,0.5581,0.8224,-0.1103,0.5585,0.8242,0.0941,0.5613,0.6459,-0.5175,0.5624,0.1304,0.8165,0.5656,-0.7772,-0.2759,0.5677,-0.4932,0.6591,0.5733,-0.6887,0.4438,0.5742,0.8135,-0.0918,0.5791,0.7793,-0.2395,0.5798,-0.037,0.8139,0.5806,-0.1444,0.8013,0.5806,-0.7156,0.3883,0.5807,0.6415,-0.5013,0.5827,-0.7535,0.3045,0.5827,0.015,0.8125,0.5842,0.8092,-0.0619,0.5857,0.6414,-0.4956,0.5857,0.4456,-0.677,0.588,0.3737,-0.7174,0.5901,-0.668,-0.4534,0.5916,-0.6466,0.4816,0.5929,-0.3305,-0.7343,0.5955,-0.7352,-0.3239,0.5975,-0.372,-0.7103,0.5998,-0.5661,0.5655,0.5999,-0.7525,0.2718,0.601,-0.7259,0.3344,0.6018,0.5856,0.543,0.602,0.3123,0.7349,0.6037,0.5064,-0.6157,0.6075,-0.4583,-0.6488,0.6077,-0.1347,-0.7827,0.6079,0.3568,0.7093,0.6079,-0.6004,-0.5195,0.6089,0.4567,-0.6486,0.613,0.6335,-0.472,0.615,-0.0102,0.7885,0.6153,0.783,0.0909,0.6199,0.7816,-0.0692,0.6201,-0.6936,0.3667,0.6242,-0.0827,-0.7769,0.6243,0.6441,-0.442,0.6272,0.4471,-0.6377,0.6279,0.6389,-0.4445,0.6281,-0.3672,0.6861,0.6301,-0.6212,-0.466,0.6304,-0.5899,0.5047,0.631,0.6147,-0.4733,0.6312,0.1851,-0.7532,0.6338,-0.7273,0.2634,0.6355,-0.6629,0.3958,0.6363,-0.0016,-0.7714,0.6367,-0.6226,0.4549,0.6388,0.3587,-0.6806,0.639,-0.7288,0.2459,0.6399,-0.4943,-0.5884,0.6417,0.7586,-0.1129,0.6424,0.5604,-0.5228,0.6433,0.7655,-0.0156,0.6441,-0.698,-0.3129,0.6441,-0.6847,0.341,0.6456,-0.1834,-0.7414,0.6477,-0.7605,-0.0456,0.6481,-0.7616,-0.0014,0.6484,-0.7012,0.2966,0.6507,0.5332,-0.5406,0.6548,0.1547,-0.7398,0.6587,-0.0941,0.7465,0.6588,0.688,0.3042,0.6594,0.5682,-0.4923,0.6599,-0.7488,0.0626,0.6621,-0.6609,0.3532,0.6644,-0.3192,-0.6758,0.6647,0.514,-0.5423,0.6675,-0.3972,-0.6299,0.6704,0.5691,0.4762,0.6719,0.4166,-0.6124,0.6782,0.3288,-0.6572,0.6785,-0.6291,-0.3793,0.6814,-0.679,-0.2733,0.6815,0.5559,-0.476,0.6817,-0.7315,-0.0129,0.6818,-0.341,0.6472,0.6908,-0.7017,-0.1745,0.6937,0.4948,0.5234,0.6974,-0.4935,0.5198,0.6981,-0.1147,-0.7067,0.7058,-0.4256,-0.5663,0.7076,-0.5358,0.4606,0.7081,-0.5134,0.4847,0.7084,0.122,-0.6951,0.7142,0.4311,0.5514,0.7192,0.4638,-0.5174,0.7211,-0.463,0.5153,0.7228,-0.5726,0.3869,0.7232,-0.4594,0.5157,0.7274,-0.2925,0.6208,0.7275,0.5816,-0.364,0.7281,0.2653,0.632,0.731,-0.6819,0.0264,0.7313,-0.4017,0.5512,0.7318,-0.5292,0.4293,0.7329,0.4043,-0.5472,0.733,0.2363,-0.6378,0.7364,0.6411,0.2162,0.7372,-0.5019,0.4523,0.7449,-0.1053,0.6588,0.747,0.3478,-0.5666,0.7499,0.0922,0.6551,0.753,0.3058,0.5826,0.754,0.6384,-0.1547,0.7542,-0.1346,0.6427,0.7562,-0.622,0.2031,0.7579,0.5487,-0.3528,0.7617,-0.6172,-0.1973,0.762,-0.0528,0.6454,0.7624,0.6391,-0.1012,0.7644,0.4848,0.4252,0.765,0.6308,0.1295,0.7658,-0.4625,0.4469,0.7676,0.5547,-0.3211,0.7701,0.2236,-0.5974,0.771,-0.3755,0.5143,0.7763,-0.6227,0.0982,0.7808,0.0038,-0.6248,0.7812,0.6233,-0.0356,0.7845,0.426,-0.4507,0.786,-0.4624,0.4104,0.7885,0.1496,0.5966,0.7886,-0.6055,0.1073,0.7888,-0.4268,0.4422,0.7894,0.5526,-0.2672,0.7895,0.4884,0.3717,0.7916,0.1448,-0.5937,0.7925,0.6004,-0.1067,0.7949,0.5994,-0.0938,0.7955,-0.4033,0.4523,0.7958,0.4315,0.4249,0.7961,0.1076,0.5955,0.7969,0.5841,-0.1542,0.7975,0.5903,-0.1247,0.7983,0.5058,-0.327,0.8004,-0.316,0.5094,0.8005,0.5864,-0.1242,0.8019,0.3751,0.4649,0.8029,0.5431,-0.2456,0.8063,0.5668,-0.1688,0.8071,-0.457,0.3739,0.8071,-0.4393,0.3944,0.8072,0.551,-0.2118,0.8075,0.0855,0.5837,0.8093,0.5202,-0.2729,0.8117,0.577,0.0909,0.8119,0.1466,0.5651,0.8132,0.237,0.5316,0.8142,0.0944,-0.5728,0.8146,-0.577,-0.0591,0.8182,0.3554,-0.4519,0.8191,-0.4555,0.3487,0.8204,0.0847,-0.5655,0.8205,-0.4141,0.3941,0.8223,0.4481,-0.3509,0.8224,0.0127,0.5688,0.8233,-0.473,-0.3137,0.8265,0.2539,-0.5024,0.8306,-0.4388,0.3428,0.8313,-0.457,0.3164,0.8323,-0.4544,-0.3176,0.8339,0.4982,0.2373,0.8361,0.5475,-0.0352,0.8374,-0.4912,0.2397,0.8383,0.5138,0.1821,0.841,-0.5222,0.1416,0.8419,0.2823,0.4599,0.8426,-0.4079,0.3517,0.8435,-0.3577,0.4006,0.8444,-0.1736,0.5068,0.8447,-0.5055,0.1758,0.8449,-0.2243,0.4856,0.845,0.1868,-0.5011,0.8459,0.257,-0.4674,0.8491,0.5056,-0.1526,0.8494,0.0912,0.5199,0.8503,-0.5262,-0.0112,0.8536,0.077,0.5152,0.8547,0.0519,0.5166,0.8548,-0.4095,0.3188,0.8549,0.3283,-0.4018,0.8572,0.5136,0.038,0.8574,0.507,0.0879,0.8575,0.1436,-0.4941,0.8584,0.5127,-0.0186,0.8634,0.177,0.4725,0.8635,-0.4934,0.105,0.869,-0.1722,-0.464,0.8715,0.4894,-0.0312,0.8722,-0.4501,0.1914,0.8742,-0.0538,0.4826,0.8754,0.3942,0.2797,0.8756,-0.0523,-0.4801,0.876,0.4768,-0.0721,0.8782,0.4597,-0.1318,0.8796,-0.4737,0.0434,0.8813,-0.0553,0.4693,0.8829,0.4627,-0.0796,0.8848,0.3719,-0.2808,0.8855,-0.1544,0.4383,0.886,-0.2064,0.4151,0.8877,0.0976,-0.4499,0.8888,0.4581,0.0108,0.8916,0.1712,-0.4192,0.892,0.4514,-0.0229,0.8941,-0.4466,0.035,0.8946,-0.4144,0.1672,0.8949,0.0918,-0.4367,0.8951,-0.4433,-0.0469,0.8957,-0.4402,-0.0622,0.8973,-0.1926,-0.3971,0.8986,-0.3696,0.2366,0.8995,0.1448,-0.4122,0.9024,0.354,-0.2458,0.9024,-0.3597,0.2371,0.904,-0.0984,0.416,0.9058,0.3373,0.2564,0.9074,0.0676,0.4148,0.9107,0.277,-0.3066,0.9126,-0.0428,-0.4066,0.9156,0.2697,-0.2983,0.9163,0.3951,0.065,0.9177,0.3736,-0.1349,0.9179,0.3938,-0.0491,0.9224,-0.3658,0.124,0.9235,0.2268,0.3094,0.9245,-0.1753,0.3384,0.9246,-0.2374,-0.298,0.9255,-0.1818,0.3322,0.9297,0.0339,-0.3668,0.9298,-0.368,0.0106,0.9329,-0.2765,0.2308,0.9329,0.3463,0.0985,0.9334,0.1607,0.3209,0.9336,0.3454,-0.095,0.9347,0.3311,0.1293,0.9352,-0.2763,-0.2215,0.9354,0.3017,-0.1847,0.9358,0.2115,0.282,0.9418,0.3274,-0.0768,0.942,0.3068,-0.1359,0.9425,0.3136,0.1152,0.9488,0.1765,-0.2618,0.9491,-0.1996,-0.2436,0.9503,0.015,-0.3109,0.9507,-0.1023,-0.2927,0.9508,0.2212,-0.217,0.9509,-0.2073,-0.2297,0.9525,-0.1089,-0.2846,0.9531,-0.1592,0.2573,0.9553,0.1691,0.2424,0.958,0.2147,-0.1898,0.9593,0.2623,-0.1048,0.9611,-0.1657,0.2211,0.963,0.2681,-0.0261,0.9661,0.2449,-0.0811,0.9668,0.2527,0.0367,0.9675,-0.1792,0.1784,0.9686,-0.1714,0.18,0.9695,-0.1957,0.1476,0.9729,-0.1422,0.1823,0.9738,0.0763,-0.2142,0.9738,-0.1597,0.1617,0.9802,0.069,0.1854,0.9814,0.1461,0.1247,0.9816,0.1136,0.1536,0.9825,0.123,-0.1399,0.9843,0.0317,0.1736,0.9849,0.1541,0.0783,0.9872,0.1594,-0.0071,0.9874,0.1319,-0.0879,0.9877,0.0468,-0.1493,0.9885,-0.1501,0.017,0.9887,0.1098,-0.1016,0.9898,0.1261,-0.0659,0.9922,0.0854,0.0903,0.9939,0.0021,-0.1106,0.9945,-0.0013,-0.1051,0.9981,0.0531,-0.0325,0.9984,0.0084,-0.0554,0.9995,-0.0091,-0.0316};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl5disc_Geo_5_187_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,8,-1,11,12,13,-1,14,15,16,-1,17,18,19,-1,20,21,22,-1,23,16,15,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,12,33,13,-1,34,35,36,-1,37,33,12,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,53,50,54,-1,55,56,57,-1,55,58,56,-1,59,60,61,-1,58,61,56,-1,62,63,64,-1,60,65,66,-1,67,68,69,-1,70,71,72,-1,73,74,75,-1,76,77,78,-1,79,80,81,-1,82,83,84,-1,85,86,87,-1,88,89,90,-1,91,92,93,-1,94,95,96,-1,95,97,96,-1,98,53,99,-1,92,100,101,-1,102,85,103,-1,81,104,102,-1,105,106,107,-1,108,107,109,-1,110,111,112,-1,113,114,115,-1,114,61,58,-1,116,117,65,-1,67,116,59,-1,118,119,120,-1,98,121,50,-1,122,123,124,-1,54,52,125,-1,48,47,126,-1,127,95,94,-1,128,117,129,-1,42,130,131,-1,39,132,133,-1,134,135,136,-1,34,37,12,-1,137,35,11,-1,138,139,106,-1,140,141,142,-1,143,144,145,-1,26,146,21,-1,23,25,16,-1,147,148,149,-1,141,31,30,-1,7,150,151,-1,152,153,154,-1,155,156,10,-1,157,5,4,-1,158,138,159,-1,160,161,162,-1,163,146,164,-1,165,157,4,-1,156,8,10,-1,166,152,154,-1,151,8,7,-1,141,30,142,-1,30,32,167,-1,168,14,169,-1,147,22,148,-1,25,24,16,-1,146,22,21,-1,169,20,170,-1,144,170,145,-1,140,142,171,-1,39,38,172,-1,137,11,13,-1,34,12,11,-1,130,3,131,-1,173,174,175,-1,176,109,78,-1,127,47,95,-1,48,126,177,-1,54,50,52,-1,122,124,178,-1,98,179,121,-1,118,120,111,-1,180,181,119,-1,58,55,182,-1,67,183,116,-1,60,116,65,-1,113,115,184,-1,110,118,111,-1,108,105,107,-1,185,90,89,-1,102,84,81,-1,102,103,82,-1,98,99,186,-1,95,49,97,-1,94,96,187,-1,90,188,88,-1,85,87,103,-1,84,102,82,-1,104,86,85,-1,189,76,78,-1,181,120,119,-1,66,57,60,-1,63,190,64,-1,59,116,60,-1,191,192,193,-1,104,85,102,-1,53,98,50,-1,50,121,51,-1,47,49,95,-1,194,195,196,-1,42,131,43,-1,133,136,197,-1,38,40,198,-1,37,199,33,-1,34,11,35,-1,137,200,132,-1,158,201,202,-1,202,203,139,-1,204,205,206,-1,207,208,149,-1,26,21,24,-1,209,23,15,-1,210,20,169,-1,20,22,147,-1,210,169,14,-1,8,151,9,-1,156,6,8,-1,5,131,3,-1,211,212,213,-1,152,135,134,-1,135,152,166,-1,214,215,216,-1,214,217,215,-1,218,219,220,-1,218,221,219,-1,2,146,163,-1,2,1,146,-1,23,41,222,-1,41,23,209,-1,223,130,42,-1,130,223,201,-1,213,224,225,-1,213,212,224,-1,226,227,228,-1,226,43,227,-1,212,229,224,-1,212,230,229,-1,231,5,157,-1,231,227,5,-1,154,232,166,-1,232,154,233,-1,234,162,235,-1,162,234,236,-1,237,7,233,-1,7,237,150,-1,238,239,240,-1,238,236,239,-1,241,208,207,-1,208,241,167,-1,242,202,243,-1,202,242,203,-1,244,149,148,-1,149,244,207,-1,22,1,148,-1,146,1,22,-1,145,20,147,-1,20,145,170,-1,208,143,145,-1,245,143,208,-1,32,205,245,-1,32,19,205,-1,29,143,204,-1,143,29,144,-1,27,246,247,-1,248,246,27,-1,139,158,202,-1,158,139,138,-1,249,139,250,-1,139,249,106,-1,17,251,18,-1,17,252,251,-1,253,140,221,-1,140,253,254,-1,255,256,13,-1,255,257,256,-1,258,259,214,-1,258,260,259,-1,261,262,263,-1,262,261,264,-1,265,257,261,-1,256,257,265,-1,133,266,136,-1,133,267,266,-1,268,267,133,-1,269,267,268,-1,39,36,35,-1,36,39,172,-1,2,237,270,-1,2,163,237,-1,226,271,222,-1,271,226,9,-1,272,273,220,-1,272,239,273,-1,274,188,51,-1,274,275,188,-1,276,174,173,-1,276,277,174,-1,185,278,125,-1,278,185,83,-1,279,280,281,-1,279,282,280,-1,99,65,186,-1,66,65,99,-1,82,126,283,-1,126,82,103,-1,103,177,126,-1,177,103,87,-1,284,105,108,-1,105,284,285,-1,286,287,288,-1,289,287,286,-1,289,177,46,-1,289,48,177,-1,54,278,290,-1,54,125,278,-1,124,291,175,-1,123,291,124,-1,292,293,215,-1,294,293,292,-1,122,295,123,-1,296,295,122,-1,297,298,294,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl5disc_Geo_5_187_coordIndex_2()
		{
			int[] value = {299,298,297,-1,69,300,301,-1,302,300,69,-1,302,110,300,-1,302,118,110,-1,76,303,77,-1,303,76,304,-1,305,110,112,-1,110,305,306,-1,58,115,114,-1,58,182,115,-1,307,308,309,-1,307,310,308,-1,309,189,307,-1,311,189,309,-1,78,107,189,-1,78,109,107,-1,312,313,314,-1,312,315,313,-1,120,316,111,-1,317,316,120,-1,318,319,320,-1,318,321,319,-1,225,321,318,-1,321,225,44,-1,322,101,174,-1,322,92,101,-1,323,324,325,-1,326,324,323,-1,327,328,323,-1,327,329,328,-1,275,88,188,-1,275,91,88,-1,295,281,330,-1,295,196,281,-1,128,98,186,-1,179,98,128,-1,176,49,286,-1,49,176,97,-1,331,298,299,-1,298,331,332,-1,333,284,288,-1,333,285,284,-1,179,129,334,-1,179,128,129,-1,280,330,281,-1,335,330,280,-1,100,91,275,-1,100,92,91,-1,336,79,93,-1,336,80,79,-1,337,329,327,-1,80,329,337,-1,80,336,329,-1,338,325,324,-1,262,325,338,-1,339,338,324,-1,339,217,338,-1,321,104,319,-1,321,86,104,-1,80,104,81,-1,80,337,104,-1,316,112,111,-1,316,254,112,-1,192,315,251,-1,315,192,313,-1,340,310,307,-1,310,340,314,-1,181,193,120,-1,181,191,193,-1,70,75,71,-1,75,70,73,-1,309,72,182,-1,309,308,72,-1,180,341,181,-1,180,68,341,-1,190,57,66,-1,63,57,190,-1,180,118,302,-1,118,180,119,-1,304,55,62,-1,311,55,304,-1,191,73,192,-1,191,74,73,-1,57,61,60,-1,57,56,61,-1,176,288,284,-1,286,288,176,-1,342,299,297,-1,335,299,342,-1,343,296,122,-1,334,296,343,-1,276,294,292,-1,297,294,276,-1,51,343,274,-1,121,343,51,-1,289,45,287,-1,289,46,45,-1,286,48,289,-1,48,286,49,-1,176,108,109,-1,176,284,108,-1,78,97,176,-1,78,77,97,-1,83,283,278,-1,283,83,82,-1,117,186,65,-1,117,128,186,-1,282,331,280,-1,282,306,331,-1,90,125,52,-1,125,90,185,-1,101,175,174,-1,124,175,101,-1,51,90,52,-1,51,188,90,-1,344,333,345,-1,344,285,333,-1,9,346,271,-1,346,9,151,-1,0,270,347,-1,0,2,270,-1,197,135,348,-1,197,136,135,-1,132,268,133,-1,132,200,268,-1,269,256,265,-1,269,200,256,-1,269,268,200,-1,263,338,259,-1,338,263,262,-1,338,214,259,-1,338,217,214,-1,13,349,255,-1,13,33,349,-1,13,200,137,-1,13,256,200,-1,140,316,141,-1,140,254,316,-1,315,18,251,-1,248,18,315,-1,350,139,203,-1,250,139,350,-1,206,248,27,-1,18,248,206,-1,242,168,351,-1,168,242,14,-1,144,28,168,-1,144,29,28,-1,204,245,205,-1,143,245,204,-1,145,149,208,-1,147,149,145,-1,219,352,353,-1,219,171,352,-1,142,167,241,-1,30,167,142,-1,14,243,15,-1,243,14,242,-1,206,19,18,-1,206,205,19,-1,20,24,21,-1,20,210,24,-1,345,159,344,-1,159,345,354,-1,273,236,234,-1,236,273,239,-1,270,233,154,-1,233,270,237,-1,355,235,216,-1,235,355,234,-1,233,6,232,-1,6,233,7,-1,212,356,230,-1,212,211,356,-1,4,354,356,-1,3,354,4,-1,199,211,213,-1,199,165,211,-1,42,209,223,-1,42,41,209,-1,25,222,271,-1,222,25,23,-1,357,1,0,-1,357,358,1,-1,359,221,218,-1,359,253,221,-1,258,216,235,-1,258,214,216,-1,348,166,232,-1,348,135,166,-1,38,6,156,-1,38,198,6,-1,160,134,161,-1,134,160,152,-1,155,38,156,-1,172,38,155,-1,220,353,272,-1,220,219,353,-1,346,146,26,-1,346,164,146,-1,231,36,360,-1,34,36,231,-1,130,158,159,-1,130,201,158,-1,361,159,138,-1,361,344,159,-1,227,131,5,-1,43,131,227,-1,230,333,229,-1,345,333,230,-1,231,228,227,-1,231,360,228,-1,160,236,238,-1,160,162,236,-1,228,9,226,-1,228,10,9,-1,240,153,238,-1,153,240,347,-1,362,355,293,-1,355,362,363,-1,353,244,358,-1,244,353,352,-1,358,148,1,-1,358,244,148,-1,15,223,209,-1,223,15,243,-1,245,167,32,-1,245,208,167,-1,28,351,168,-1,28,364,351,-1,204,27,29,-1,206,27,204,-1,17,32,31,-1,17,19,32,-1,247,250,350,-1,246,250,247,-1,106,361,138,-1,106,105,361,-1,246,249,250,-1,246,312,249,-1,317,17,31,-1,17,317,252,-1,257,320,365,-1,320,257,255,-1,213,33,199,-1,213,349,33,-1,161,260,258,-1,161,266,260,-1,257,264,261,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl5disc_Geo_5_187_coordIndex_3()
		{
			int[] value = {257,365,264,-1,366,261,263,-1,261,366,265,-1,266,366,260,-1,266,267,366,-1,35,132,39,-1,35,137,132,-1,197,39,133,-1,39,197,40,-1,240,272,357,-1,272,240,239,-1,163,150,237,-1,163,164,150,-1,222,43,226,-1,222,41,43,-1,218,362,359,-1,363,362,218,-1,178,275,274,-1,178,100,275,-1,292,277,276,-1,292,339,277,-1,305,359,332,-1,305,253,359,-1,195,281,196,-1,195,279,281,-1,367,66,99,-1,190,66,367,-1,64,96,303,-1,64,187,96,-1,46,87,44,-1,46,177,87,-1,333,287,229,-1,287,333,288,-1,290,283,127,-1,290,278,283,-1,342,175,291,-1,342,173,175,-1,53,290,368,-1,53,54,290,-1,123,330,291,-1,295,330,123,-1,294,362,293,-1,298,362,294,-1,301,282,279,-1,300,282,301,-1,183,279,195,-1,183,301,279,-1,303,62,64,-1,304,62,303,-1,300,306,282,-1,300,110,306,-1,67,113,68,-1,113,67,59,-1,341,75,74,-1,75,341,184,-1,72,115,182,-1,72,71,115,-1,182,311,309,-1,55,311,182,-1,313,73,70,-1,73,313,192,-1,107,307,189,-1,307,107,340,-1,249,314,340,-1,249,312,314,-1,193,317,120,-1,252,317,193,-1,320,369,365,-1,319,369,320,-1,86,44,87,-1,86,321,44,-1,326,174,277,-1,326,322,174,-1,264,369,370,-1,264,365,369,-1,370,323,325,-1,327,323,370,-1,323,322,326,-1,323,328,322,-1,79,84,89,-1,79,81,84,-1,79,91,93,-1,89,91,79,-1,88,91,89,-1,296,196,295,-1,296,194,196,-1,94,367,368,-1,94,187,367,-1,362,332,359,-1,332,362,298,-1,299,280,331,-1,299,335,280,-1,99,368,367,-1,53,368,99,-1,334,194,296,-1,334,129,194,-1,83,89,84,-1,185,89,83,-1,328,336,93,-1,336,328,329,-1,322,93,92,-1,322,328,93,-1,369,327,370,-1,327,369,337,-1,262,370,325,-1,264,370,262,-1,324,277,339,-1,324,326,277,-1,337,319,104,-1,337,369,319,-1,112,253,305,-1,254,253,112,-1,251,193,192,-1,251,252,193,-1,107,249,340,-1,106,249,107,-1,314,70,310,-1,70,314,313,-1,72,310,70,-1,72,308,310,-1,184,71,75,-1,115,71,184,-1,74,181,341,-1,74,191,181,-1,184,68,113,-1,68,184,341,-1,61,113,59,-1,114,113,61,-1,195,116,183,-1,116,195,117,-1,67,301,183,-1,69,301,67,-1,76,311,304,-1,189,311,76,-1,63,55,57,-1,63,62,55,-1,68,302,69,-1,180,302,68,-1,335,291,330,-1,335,342,291,-1,121,334,343,-1,179,334,121,-1,173,297,276,-1,342,297,173,-1,274,122,178,-1,343,122,274,-1,47,283,126,-1,47,127,283,-1,229,45,224,-1,229,287,45,-1,127,368,290,-1,127,94,368,-1,224,44,225,-1,224,45,44,-1,97,303,96,-1,77,303,97,-1,187,190,367,-1,64,190,187,-1,117,194,129,-1,117,195,194,-1,306,332,331,-1,306,305,332,-1,215,339,292,-1,215,217,339,-1,100,124,101,-1,178,124,100,-1,363,220,273,-1,218,220,363,-1,3,159,354,-1,130,159,3,-1,151,164,346,-1,164,151,150,-1,357,347,240,-1,357,0,347,-1,40,348,198,-1,40,197,348,-1,267,265,366,-1,267,269,265,-1,259,366,263,-1,366,259,260,-1,134,266,161,-1,134,136,266,-1,349,225,318,-1,213,225,349,-1,255,318,320,-1,255,349,318,-1,316,31,141,-1,31,316,317,-1,248,312,246,-1,248,315,312,-1,203,351,350,-1,351,203,242,-1,247,28,27,-1,247,364,28,-1,364,350,351,-1,364,247,350,-1,144,169,170,-1,144,168,169,-1,171,221,140,-1,219,221,171,-1,223,202,201,-1,243,202,223,-1,171,241,352,-1,171,142,241,-1,16,210,14,-1,16,24,210,-1,352,207,244,-1,207,352,241,-1,363,234,355,-1,234,363,273,-1,347,154,153,-1,154,347,270,-1,293,216,215,-1,216,293,355,-1,238,152,160,-1,152,238,153,-1,360,10,228,-1,360,155,10,-1,165,356,211,-1,165,4,356,-1,230,354,345,-1,354,230,356,-1,105,344,361,-1,285,344,105,-1,165,37,157,-1,199,37,165,-1,157,34,231,-1,37,34,157,-1,26,271,346,-1,271,26,25,-1,272,358,357,-1,272,353,358,-1,360,172,155,-1,36,172,360,-1,161,235,162,-1,161,258,235,-1,198,232,6,-1,198,348,232,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getl5disc_Geo_5_187_normalIndex_1()
		{
			int[] value = {22,81,17,-1,220,234,100,-1,12,2,5,-1,10,13,5,-1,70,159,118,-1,55,99,77,-1,165,211,132,-1,62,232,208,-1,58,77,99,-1,120,56,63,-1,151,104,79,-1,57,111,60,-1,159,148,118,-1,80,65,67,-1,163,148,159,-1,69,113,212,-1,37,68,35,-1,239,146,201,-1,271,136,150,-1,365,358,350,-1,360,365,357,-1,315,318,262,-1,315,332,318,-1,291,133,310,-1,332,310,318,-1,264,300,283,-1,133,304,313,-1,266,326,285,-1,219,292,268,-1,207,297,305,-1,97,112,107,-1,314,298,308,-1,287,303,306,-1,255,213,222,-1,156,259,301,-1,147,116,288,-1,335,307,302,-1,307,154,302,-1,369,360,353,-1,116,265,278,-1,295,255,226,-1,308,249,295,-1,166,170,140,-1,231,140,162,-1,203,257,242,-1,324,330,325,-1,330,310,332,-1,143,312,304,-1,266,143,291,-1,289,316,251,-1,369,368,365,-1,363,355,349,-1,357,350,340,-1,136,271,221,-1,331,307,335,-1,361,312,359,-1,68,215,64,-1,113,54,75,-1,90,105,252,-1,80,163,159,-1,61,65,70,-1,218,237,170,-1,137,122,82,-1,49,45,46,-1,63,59,232,-1,58,56,77,-1,93,267,110,-1,122,111,57,-1,2,0,1,-1,21,16,7,-1,30,20,13,-1,149,100,234,-1,256,218,248,-1,27,83,34,-1,11,59,9,-1,202,149,234,-1,20,5,13,-1,19,21,7,-1,1,5,2,-1,122,57,82,-1,57,60,41,-1,42,55,38,-1,93,208,267,-1,56,120,77,-1,59,208,232,-1,38,62,40,-1,45,40,46,-1,137,82,157,-1,113,69,76,-1,61,70,118,-1,80,159,70,-1,215,220,64,-1,336,286,343,-1,119,162,107,-1,331,271,307,-1,136,221,169,-1,357,365,350,-1,363,349,351,-1,369,370,368,-1,289,251,257,-1,329,309,316,-1,332,315,328,-1,266,101,143,-1,133,143,304,-1,324,325,321,-1,203,289,257,-1,231,166,140,-1,294,301,259,-1,295,306,308,-1,295,226,287,-1,369,353,364,-1,307,150,154,-1,335,302,333,-1,301,276,156,-1,255,222,226,-1,306,295,287,-1,249,213,255,-1,125,97,107,-1,309,251,316,-1,313,262,133,-1,300,311,283,-1,291,143,133,-1,238,158,206,-1,249,255,295,-1,360,369,365,-1,365,368,358,-1,271,150,307,-1,354,290,348,-1,68,64,35,-1,75,252,229,-1,69,212,92,-1,163,129,148,-1,80,70,65,-1,61,72,54,-1,256,258,279,-1,279,247,237,-1,66,73,164,-1,84,44,110,-1,63,232,120,-1,86,58,99,-1,51,62,38,-1,62,208,93,-1,51,38,55,-1,5,1,10,-1,20,12,5,-1,100,64,220,-1,171,223,130,-1,21,105,90,-1,105,21,19,-1,128,182,95,-1,128,187,182,-1,87,96,53,-1,87,109,96,-1,17,59,11,-1,17,81,59,-1,58,37,28,-1,37,58,86,-1,210,215,68,-1,215,210,258,-1,130,198,195,-1,130,223,198,-1,25,39,26,-1,25,35,39,-1,223,197,198,-1,223,253,197,-1,50,100,149,-1,50,39,100,-1,7,18,19,-1,18,7,3,-1,48,34,47,-1,34,48,32,-1,4,2,3,-1,2,4,0,-1,23,33,24,-1,23,32,33,-1,78,44,84,-1,44,78,41,-1,124,279,228,-1,279,124,247,-1,241,110,267,-1,110,241,84,-1,208,81,267,-1,59,81,208,-1,46,62,93,-1,62,46,40,-1,44,49,46,-1,43,49,44,-1,60,73,43,-1,60,132,73,-1,79,49,66,-1,49,79,45,-1,151,233,225,-1,230,233,151,-1,237,256,279,-1,256,237,218,-1,186,237,243,-1,237,186,170,-1,165,181,211,-1,165,178,181,-1,180,137,109,-1,137,180,185,-1,152,108,118,-1,152,142,108,-1,98,153,128,-1,98,161,153,-1,155,192,145,-1,192,155,190,-1,88,142,155,-1,108,142,88,-1,75,200,252,-1,75,74,200,-1,71,74,75,-1,85,74,71,-1,113,67,65,-1,67,113,76,-1,17,4,8,-1,17,11,4,-1,25,14,28,-1,14,25,10,-1,36,52,53,-1,36,33,52,-1,352,276,358,-1,352,263,276,-1,323,286,336,-1,323,272,286,-1,294,339,340,-1,339,294,303,-1,277,334,341,-1,277,280,334,-1,353,304,364,-1,313,304,353,-1,287,221,320,-1,221,287,226,-1,226,169,221,-1,169,226,222,-1,168,166,231,-1,166,168,189,-1,117,115,123,-1,135,115,117,-1,135,169,201,-1,135,136,169,-1,357,339,344,-1,357,340,339,-1,349,347,343,-1,355,347,349,-1,274,176,182,-1,270,176,274,-1,363,356,355,-1,362,356,363,-1,322,269,270,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getl5disc_Geo_5_187_normalIndex_2()
		{
			int[] value = {319,269,322,-1,285,167,127,-1,293,167,285,-1,293,203,167,-1,293,289,203,-1,97,160,112,-1,160,97,141,-1,260,203,242,-1,203,260,273,-1,332,325,330,-1,332,328,325,-1,121,199,254,-1,121,144,199,-1,254,125,121,-1,244,125,254,-1,107,140,125,-1,107,162,140,-1,184,139,138,-1,184,183,139,-1,251,179,257,-1,177,179,251,-1,193,217,191,-1,193,236,217,-1,195,236,193,-1,236,195,239,-1,172,278,286,-1,172,116,278,-1,275,216,224,-1,209,216,275,-1,281,296,275,-1,281,284,296,-1,263,156,276,-1,263,147,156,-1,356,341,346,-1,356,348,341,-1,361,369,364,-1,370,369,361,-1,119,150,117,-1,150,119,154,-1,317,269,319,-1,269,317,282,-1,196,168,123,-1,196,189,168,-1,370,359,366,-1,370,361,359,-1,334,346,341,-1,337,346,334,-1,265,147,263,-1,265,116,147,-1,299,314,288,-1,299,298,314,-1,261,284,281,-1,298,284,261,-1,298,299,284,-1,194,224,216,-1,192,224,194,-1,240,194,216,-1,240,187,194,-1,236,249,217,-1,236,213,249,-1,298,249,308,-1,298,261,249,-1,179,242,257,-1,179,185,242,-1,158,183,181,-1,183,158,139,-1,126,144,121,-1,144,126,138,-1,309,206,251,-1,309,238,206,-1,219,305,292,-1,305,219,207,-1,254,268,328,-1,254,199,268,-1,329,327,309,-1,329,326,327,-1,311,262,313,-1,300,262,311,-1,329,289,293,-1,289,329,316,-1,141,315,264,-1,244,315,141,-1,238,207,158,-1,238,297,207,-1,262,310,133,-1,262,318,310,-1,119,123,168,-1,117,123,119,-1,338,319,322,-1,337,319,338,-1,367,362,363,-1,366,362,367,-1,323,270,274,-1,322,270,323,-1,358,367,352,-1,368,367,358,-1,135,146,115,-1,135,201,146,-1,117,136,135,-1,136,117,150,-1,119,231,162,-1,119,168,231,-1,107,154,119,-1,107,112,154,-1,303,320,339,-1,320,303,287,-1,312,364,304,-1,312,361,364,-1,280,317,334,-1,280,273,317,-1,301,340,350,-1,340,301,294,-1,278,343,286,-1,349,343,278,-1,358,301,350,-1,358,276,301,-1,204,196,245,-1,204,189,196,-1,10,6,14,-1,6,10,1,-1,22,8,15,-1,22,17,8,-1,229,105,106,-1,229,252,105,-1,54,71,75,-1,54,72,71,-1,85,108,88,-1,85,72,108,-1,85,71,72,-1,145,194,153,-1,194,145,192,-1,194,128,153,-1,194,187,128,-1,118,134,152,-1,118,148,134,-1,118,72,61,-1,118,108,72,-1,137,179,122,-1,137,185,179,-1,183,211,181,-1,230,211,183,-1,246,237,247,-1,243,237,246,-1,164,230,151,-1,211,230,164,-1,124,42,114,-1,42,124,55,-1,45,104,42,-1,45,79,104,-1,66,43,73,-1,49,43,66,-1,46,110,44,-1,93,110,46,-1,96,205,89,-1,96,157,205,-1,82,41,78,-1,57,41,82,-1,55,228,99,-1,228,55,124,-1,164,132,211,-1,164,73,132,-1,62,120,232,-1,62,51,120,-1,245,248,204,-1,248,245,250,-1,52,32,48,-1,32,52,33,-1,8,3,7,-1,3,8,4,-1,102,47,95,-1,47,102,48,-1,3,12,18,-1,12,3,2,-1,223,235,253,-1,223,171,235,-1,234,250,235,-1,220,250,234,-1,129,171,130,-1,129,202,171,-1,68,86,210,-1,68,37,86,-1,56,28,14,-1,28,56,58,-1,29,81,22,-1,29,91,81,-1,174,109,87,-1,174,180,109,-1,98,95,47,-1,98,128,95,-1,106,19,18,-1,106,105,19,-1,69,12,20,-1,69,92,12,-1,27,90,83,-1,90,27,21,-1,30,69,20,-1,76,69,30,-1,53,89,36,-1,53,96,89,-1,6,59,63,-1,6,9,59,-1,50,67,31,-1,80,67,50,-1,215,256,248,-1,215,258,256,-1,131,248,218,-1,131,204,248,-1,39,64,100,-1,35,64,39,-1,253,196,197,-1,245,196,253,-1,50,26,39,-1,50,31,26,-1,27,32,23,-1,27,34,32,-1,26,10,25,-1,26,13,10,-1,24,16,23,-1,16,24,15,-1,175,102,176,-1,102,175,103,-1,89,241,91,-1,241,89,205,-1,91,267,81,-1,91,241,267,-1,99,210,86,-1,210,99,228,-1,43,41,60,-1,43,44,41,-1,104,114,42,-1,104,173,114,-1,66,151,79,-1,164,151,66,-1,165,60,111,-1,165,132,60,-1,225,243,246,-1,233,243,225,-1,170,131,218,-1,170,166,131,-1,233,186,243,-1,233,184,186,-1,177,165,111,-1,165,177,178,-1,142,191,188,-1,191,142,152,-1,130,148,129,-1,130,134,148,-1,83,161,98,-1,83,200,161,-1,142,190,155,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getl5disc_Geo_5_187_normalIndex_3()
		{
			int[] value = {142,188,190,-1,94,155,145,-1,155,94,88,-1,200,94,161,-1,200,74,94,-1,65,54,113,-1,65,61,54,-1,229,113,75,-1,113,229,212,-1,24,36,29,-1,36,24,33,-1,11,0,4,-1,11,9,0,-1,28,35,25,-1,28,37,35,-1,87,175,174,-1,103,175,87,-1,351,263,352,-1,351,265,263,-1,274,272,323,-1,274,240,272,-1,260,174,282,-1,260,180,174,-1,290,341,348,-1,290,277,341,-1,342,313,353,-1,311,313,342,-1,283,302,160,-1,283,333,302,-1,201,222,239,-1,201,169,222,-1,196,115,197,-1,115,196,123,-1,344,320,331,-1,344,339,320,-1,338,343,347,-1,338,336,343,-1,360,344,345,-1,360,357,344,-1,355,346,347,-1,356,346,355,-1,270,175,176,-1,269,175,270,-1,127,280,277,-1,167,280,127,-1,101,277,290,-1,101,127,277,-1,160,264,283,-1,141,264,160,-1,167,273,280,-1,167,203,273,-1,266,324,326,-1,324,266,291,-1,327,305,297,-1,305,327,321,-1,268,325,328,-1,268,292,325,-1,328,244,254,-1,315,244,328,-1,139,207,219,-1,207,139,158,-1,140,121,125,-1,121,140,126,-1,186,138,126,-1,186,184,138,-1,206,177,251,-1,178,177,206,-1,191,227,188,-1,217,227,191,-1,213,239,222,-1,213,236,239,-1,209,286,272,-1,209,172,286,-1,190,227,214,-1,190,188,227,-1,214,275,224,-1,281,275,214,-1,275,172,209,-1,275,296,172,-1,314,306,259,-1,314,308,306,-1,314,147,288,-1,259,147,314,-1,156,147,259,-1,362,348,356,-1,362,354,348,-1,335,342,345,-1,335,333,342,-1,175,282,174,-1,282,175,269,-1,319,334,317,-1,319,337,334,-1,353,345,342,-1,360,345,353,-1,366,354,362,-1,366,359,354,-1,303,259,306,-1,294,259,303,-1,296,299,288,-1,299,296,284,-1,172,288,116,-1,172,296,288,-1,227,281,214,-1,281,227,261,-1,192,214,224,-1,190,214,192,-1,216,272,240,-1,216,209,272,-1,261,217,249,-1,261,227,217,-1,242,180,260,-1,185,180,242,-1,181,206,158,-1,181,178,206,-1,140,186,126,-1,170,186,140,-1,138,219,144,-1,219,138,139,-1,268,144,219,-1,268,199,144,-1,321,292,305,-1,325,292,321,-1,297,309,327,-1,297,238,309,-1,321,326,324,-1,326,321,327,-1,310,324,291,-1,330,324,310,-1,290,143,101,-1,143,290,312,-1,266,127,101,-1,285,127,266,-1,97,244,141,-1,125,244,97,-1,300,315,262,-1,300,264,315,-1,326,293,285,-1,329,293,326,-1,337,347,346,-1,337,338,347,-1,368,366,367,-1,370,366,368,-1,336,322,323,-1,338,322,336,-1,352,363,351,-1,367,363,352,-1,271,320,221,-1,271,331,320,-1,197,146,198,-1,197,115,146,-1,331,345,344,-1,331,335,345,-1,198,239,195,-1,198,146,239,-1,154,160,302,-1,112,160,154,-1,333,311,342,-1,283,311,333,-1,312,354,359,-1,312,290,354,-1,273,282,317,-1,273,260,282,-1,182,240,274,-1,182,187,240,-1,265,349,278,-1,351,349,265,-1,103,53,52,-1,87,53,103,-1,220,248,250,-1,215,248,220,-1,1,9,6,-1,9,1,0,-1,29,15,24,-1,29,22,15,-1,212,106,92,-1,212,229,106,-1,74,88,94,-1,74,85,88,-1,153,94,145,-1,94,153,161,-1,90,200,83,-1,90,252,200,-1,134,195,193,-1,130,195,134,-1,152,193,191,-1,152,134,193,-1,179,111,122,-1,111,179,177,-1,230,184,233,-1,230,183,184,-1,247,114,246,-1,114,247,124,-1,225,104,151,-1,225,173,104,-1,173,246,114,-1,173,225,246,-1,45,38,40,-1,45,42,38,-1,157,109,137,-1,96,109,157,-1,210,279,258,-1,228,279,210,-1,157,78,205,-1,157,82,78,-1,77,51,55,-1,77,120,51,-1,205,84,241,-1,84,205,78,-1,103,48,102,-1,48,103,52,-1,15,7,16,-1,7,15,8,-1,176,95,182,-1,95,176,102,-1,23,21,27,-1,21,23,16,-1,31,13,26,-1,31,30,13,-1,202,235,171,-1,202,234,235,-1,253,250,245,-1,250,253,235,-1,166,204,131,-1,189,204,166,-1,202,163,149,-1,129,163,202,-1,149,80,50,-1,163,80,149,-1,63,14,6,-1,14,63,56,-1,36,91,29,-1,36,89,91,-1,31,76,30,-1,67,76,31,-1,83,47,34,-1,83,98,47,-1,92,18,12,-1,92,106,18,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlacl_Geo_5_193_coordIndex_2()
		{
			int[] value = {193,53,151,-1,193,199,53,-1,143,122,176,-1,182,122,143,-1,179,182,143,-1,179,47,182,-1,9,120,10,-1,9,171,120,-1,67,115,114,-1,115,67,119,-1,129,103,128,-1,129,101,103,-1,99,97,117,-1,99,98,97,-1,186,183,111,-1,183,186,153,-1,102,186,105,-1,186,102,101,-1,192,115,61,-1,192,87,115,-1,101,153,186,-1,129,153,101,-1,172,3,120,-1,3,172,91,-1,200,178,155,-1,178,200,35,-1,88,25,173,-1,88,21,25,-1,95,91,172,-1,93,91,95,-1,197,39,194,-1,39,197,199,-1,179,121,48,-1,121,179,201,-1,135,60,198,-1,135,146,60,-1,130,36,134,-1,130,180,36,-1,75,177,112,-1,177,75,174,-1,196,54,53,-1,196,97,54,-1,55,71,188,-1,55,57,71,-1,193,125,50,-1,193,151,125,-1,44,42,43,-1,163,42,44,-1,155,51,200,-1,155,10,51,-1,14,176,122,-1,14,123,176,-1,34,156,159,-1,34,158,156,-1,110,195,23,-1,195,110,8,-1,165,195,29,-1,165,185,195,-1,162,11,94,-1,162,9,11,-1,0,93,95,-1,0,2,93,-1,168,28,69,-1,79,28,168,-1,19,106,166,-1,19,18,106,-1,129,125,153,-1,129,126,125,-1,164,167,70,-1,201,167,164,-1,81,59,58,-1,59,81,190,-1,191,187,157,-1,191,160,187,-1,84,59,190,-1,131,59,84,-1,139,149,181,-1,139,150,149,-1,56,137,144,-1,137,56,138,-1,13,87,192,-1,13,85,87,-1,5,58,68,-1,58,5,4,-1,49,199,193,-1,49,39,199,-1,33,160,191,-1,33,161,160,-1,201,22,121,-1,201,164,22,-1,64,5,68,-1,64,194,5,-1,184,54,96,-1,54,184,52,-1,104,128,103,-1,128,104,187,-1,23,185,107,-1,23,195,185,-1,100,184,96,-1,184,100,16,-1,52,183,152,-1,183,52,184,-1,39,120,3,-1,39,49,120,-1,63,194,64,-1,63,197,194,-1,37,169,142,-1,169,37,180,-1,73,124,71,-1,73,123,124,-1,200,50,161,-1,50,200,51,-1,35,161,33,-1,35,200,161,-1,133,145,136,-1,133,132,145,-1,137,181,136,-1,137,139,181,-1,181,146,135,-1,181,149,146,-1,190,189,84,-1,190,82,189,-1,140,189,31,-1,189,140,80,-1,116,85,12,-1,116,86,85,-1,196,199,197,-1,53,199,196,-1,55,139,138,-1,55,148,139,-1,149,147,146,-1,148,147,149,-1,46,159,45,-1,46,34,159,-1,43,177,173,-1,45,177,43,-1,128,160,126,-1,128,187,160,-1,38,123,73,-1,123,38,176,-1,2,30,127,-1,30,2,7,-1,164,6,110,-1,70,6,164,-1,95,165,29,-1,175,165,95,-1,167,179,143,-1,167,201,179,-1,127,89,92,-1,127,170,89,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlacl_Geo_5_193_normalIndex_2()
		{
			int[] value = {12,28,21,-1,12,15,28,-1,142,177,122,-1,150,177,142,-1,164,150,142,-1,164,182,150,-1,51,8,14,-1,51,46,8,-1,111,172,199,-1,172,111,106,-1,91,149,93,-1,91,145,149,-1,151,103,104,-1,151,146,103,-1,156,188,137,-1,188,156,89,-1,118,156,114,-1,156,118,145,-1,129,172,88,-1,129,181,172,-1,145,89,156,-1,91,89,145,-1,39,7,8,-1,7,39,29,-1,19,57,23,-1,57,19,47,-1,193,196,192,-1,193,187,196,-1,70,29,39,-1,60,29,70,-1,20,5,2,-1,5,20,15,-1,164,170,186,-1,170,164,161,-1,155,159,166,-1,155,138,159,-1,165,120,152,-1,165,134,120,-1,130,194,168,-1,194,130,195,-1,36,97,28,-1,36,103,97,-1,56,45,78,-1,56,30,45,-1,12,16,0,-1,12,21,16,-1,96,79,135,-1,75,79,96,-1,23,3,19,-1,23,14,3,-1,200,122,177,-1,200,121,122,-1,84,101,124,-1,84,69,101,-1,99,31,107,-1,31,99,22,-1,52,31,54,-1,52,35,31,-1,50,53,34,-1,50,51,53,-1,68,60,70,-1,68,71,60,-1,127,139,158,-1,126,139,127,-1,11,73,33,-1,11,66,73,-1,91,16,89,-1,91,17,16,-1,201,148,178,-1,161,148,201,-1,82,171,65,-1,171,82,169,-1,27,87,42,-1,27,1,87,-1,184,171,169,-1,157,171,184,-1,113,80,154,-1,113,76,80,-1,105,180,108,-1,180,105,112,-1,92,181,129,-1,92,132,181,-1,10,65,62,-1,65,10,13,-1,4,15,12,-1,4,5,15,-1,43,1,27,-1,43,26,1,-1,161,185,170,-1,161,201,185,-1,18,10,62,-1,18,2,10,-1,162,97,143,-1,97,162,95,-1,136,93,149,-1,93,136,87,-1,107,35,131,-1,107,31,35,-1,160,162,143,-1,162,160,141,-1,95,188,100,-1,188,95,162,-1,5,8,7,-1,5,4,8,-1,37,2,18,-1,37,20,2,-1,115,128,147,-1,128,115,134,-1,81,86,45,-1,81,121,86,-1,19,0,26,-1,0,19,3,-1,47,26,43,-1,47,19,26,-1,174,109,176,-1,174,133,109,-1,180,154,176,-1,180,113,154,-1,154,138,155,-1,154,80,138,-1,169,173,184,-1,169,153,173,-1,110,173,98,-1,173,110,190,-1,189,132,144,-1,189,175,132,-1,36,15,20,-1,28,15,36,-1,56,113,112,-1,56,55,113,-1,80,77,138,-1,55,77,80,-1,85,124,140,-1,85,84,124,-1,135,194,192,-1,140,194,135,-1,93,1,17,-1,93,87,1,-1,90,121,81,-1,121,90,122,-1,71,40,63,-1,40,71,9,-1,201,83,99,-1,178,83,201,-1,70,52,54,-1,74,52,70,-1,148,164,142,-1,148,161,164,-1,63,25,58,-1,63,64,25,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlacr_Geo_5_199_coordIndex_2()
		{
			int[] value = {142,158,168,-1,145,158,142,-1,43,44,68,-1,43,189,44,-1,127,42,5,-1,127,57,42,-1,122,60,180,-1,181,60,122,-1,108,178,179,-1,108,110,178,-1,196,124,69,-1,196,104,124,-1,119,21,118,-1,119,194,21,-1,113,109,114,-1,110,109,113,-1,103,66,67,-1,103,90,66,-1,121,110,113,-1,110,121,178,-1,5,166,127,-1,96,166,5,-1,153,198,154,-1,191,198,153,-1,24,94,99,-1,24,23,94,-1,96,183,166,-1,183,96,97,-1,42,189,43,-1,195,189,42,-1,90,13,66,-1,90,92,13,-1,175,62,136,-1,64,62,175,-1,199,65,140,-1,199,200,65,-1,185,88,86,-1,88,185,137,-1,58,45,187,-1,58,196,45,-1,155,126,67,-1,70,126,155,-1,185,85,171,-1,86,85,185,-1,76,63,184,-1,76,61,63,-1,121,59,133,-1,121,180,59,-1,133,178,121,-1,133,132,178,-1,194,182,21,-1,6,182,194,-1,194,164,29,-1,194,119,164,-1,9,160,35,-1,9,11,160,-1,97,2,183,-1,97,0,2,-1,27,165,71,-1,165,27,83,-1,117,19,161,-1,117,20,19,-1,22,182,201,-1,182,22,21,-1,36,192,37,-1,36,170,192,-1,159,12,129,-1,159,131,12,-1,55,154,198,-1,55,10,154,-1,191,51,192,-1,191,153,51,-1,48,49,50,-1,49,48,47,-1,133,188,56,-1,133,59,188,-1,72,201,73,-1,201,72,135,-1,199,65,200,-1,199,186,65,-1,169,77,38,-1,98,77,169,-1,39,138,177,-1,39,145,138,-1,150,139,197,-1,150,149,139,-1,171,190,173,-1,3,190,171,-1,195,57,188,-1,195,42,57,-1,148,193,174,-1,148,156,193,-1,22,135,93,-1,22,201,135,-1,190,68,173,-1,190,43,68,-1,58,181,107,-1,60,181,58,-1,179,111,108,-1,147,111,179,-1,181,80,107,-1,16,80,181,-1,107,196,58,-1,196,107,104,-1,103,125,123,-1,126,125,103,-1,127,11,10,-1,127,167,11,-1,128,152,157,-1,128,54,152,-1,129,157,159,-1,157,129,128,-1,187,188,59,-1,187,195,188,-1,144,141,176,-1,144,143,141,-1,140,175,176,-1,140,65,175,-1,149,140,139,-1,149,199,140,-1,87,86,88,-1,87,172,86,-1,87,33,32,-1,82,33,87,-1,92,106,14,-1,92,91,106,-1,173,13,130,-1,173,68,13,-1,151,199,149,-1,199,151,186,-1,37,51,52,-1,37,192,51,-1,169,50,99,-1,50,169,52,-1,51,101,48,-1,101,51,153,-1,174,192,170,-1,174,193,192,-1,160,167,163,-1,167,160,11,-1,8,201,182,-1,201,8,73,-1,164,183,29,-1,183,164,163,-1,152,72,157,-1,152,135,72,-1,163,166,183,-1,166,163,167,-1,95,30,134,-1,95,162,30,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlacr_Geo_5_199_normalIndex_2()
		{
			int[] value = {69,85,55,-1,65,85,69,-1,198,160,183,-1,198,179,160,-1,192,196,193,-1,192,197,196,-1,16,101,102,-1,38,101,16,-1,52,112,109,-1,52,53,112,-1,97,39,98,-1,97,57,39,-1,166,93,71,-1,166,171,93,-1,46,81,86,-1,53,81,46,-1,29,73,114,-1,29,15,73,-1,113,53,46,-1,53,113,112,-1,193,161,192,-1,173,161,193,-1,143,182,178,-1,156,182,143,-1,5,12,9,-1,5,14,12,-1,173,133,161,-1,133,173,145,-1,196,179,198,-1,186,179,196,-1,15,111,73,-1,15,72,111,-1,19,95,92,-1,88,95,19,-1,123,87,47,-1,123,107,87,-1,34,18,33,-1,18,34,42,-1,104,163,174,-1,104,97,163,-1,150,94,114,-1,169,94,150,-1,34,122,138,-1,33,122,34,-1,154,144,124,-1,154,172,144,-1,113,176,187,-1,113,102,176,-1,187,112,113,-1,187,185,112,-1,171,100,93,-1,180,100,171,-1,171,151,146,-1,171,166,151,-1,149,153,168,-1,149,152,153,-1,145,134,133,-1,145,130,134,-1,60,70,45,-1,70,60,74,-1,128,190,170,-1,128,137,190,-1,13,100,0,-1,100,13,93,-1,99,118,76,-1,99,131,118,-1,78,1,25,-1,78,79,1,-1,199,178,182,-1,199,188,178,-1,156,117,118,-1,156,143,117,-1,121,106,66,-1,106,121,126,-1,187,189,201,-1,187,176,189,-1,56,0,23,-1,0,56,41,-1,123,87,107,-1,123,147,87,-1,8,68,35,-1,6,68,8,-1,80,44,49,-1,80,65,44,-1,43,48,37,-1,43,105,48,-1,138,191,141,-1,184,191,138,-1,186,197,189,-1,186,196,197,-1,200,159,167,-1,200,175,159,-1,13,41,30,-1,13,0,41,-1,191,183,141,-1,191,198,183,-1,104,38,54,-1,101,38,104,-1,109,64,52,-1,115,64,109,-1,38,32,54,-1,58,32,38,-1,54,97,104,-1,97,54,57,-1,29,89,2,-1,94,89,29,-1,192,152,188,-1,192,155,152,-1,51,40,59,-1,51,17,40,-1,25,59,78,-1,59,25,51,-1,174,189,176,-1,174,186,189,-1,91,31,22,-1,91,67,31,-1,47,19,22,-1,47,87,19,-1,105,47,48,-1,105,123,47,-1,28,33,18,-1,28,50,33,-1,28,90,103,-1,10,90,28,-1,72,7,62,-1,72,20,7,-1,141,111,116,-1,141,183,111,-1,125,123,105,-1,123,125,147,-1,76,117,61,-1,76,118,117,-1,8,66,9,-1,66,8,61,-1,117,164,121,-1,164,117,143,-1,167,118,131,-1,167,159,118,-1,153,155,129,-1,155,153,152,-1,120,0,100,-1,0,120,23,-1,151,133,146,-1,133,151,129,-1,40,56,59,-1,40,41,56,-1,129,161,133,-1,161,129,155,-1,177,136,132,-1,177,139,136,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcalc_Geo_5_205_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,10,11,12,-1,13,14,15,-1,13,16,14,-1,17,18,19,-1,20,21,22,-1,20,23,21,-1,24,25,26,-1,26,27,24,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,35,37,36,-1,35,38,37,-1,39,40,41,-1,41,42,39,-1,43,44,45,-1,44,46,45,-1,47,48,49,-1,50,51,52,-1,53,54,55,-1,55,56,53,-1,57,58,59,-1,57,60,58,-1,61,47,62,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,69,72,70,-1,62,47,73,-1,73,74,62,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,86,87,84,-1,77,88,89,-1,89,90,77,-1,91,92,93,-1,91,94,92,-1,95,96,83,-1,83,82,95,-1,97,98,99,-1,100,101,102,-1,103,104,105,-1,106,107,108,-1,107,109,108,-1,110,111,112,-1,112,113,110,-1,114,115,116,-1,116,117,114,-1,118,119,120,-1,121,19,122,-1,121,21,19,-1,123,124,125,-1,16,13,126,-1,126,127,16,-1,128,129,130,-1,29,28,131,-1,132,133,134,-1,135,136,137,-1,135,138,136,-1,139,14,1,-1,14,140,1,-1,129,141,142,-1,141,143,142,-1,144,145,146,-1,145,147,146,-1,148,149,127,-1,149,16,127,-1,150,24,151,-1,150,152,24,-1,153,154,155,-1,156,157,158,-1,157,159,158,-1,160,161,162,-1,160,163,161,-1,164,41,120,-1,165,166,167,-1,74,64,63,-1,168,169,170,-1,171,172,173,-1,171,174,172,-1,175,176,177,-1,175,178,176,-1,175,179,178,-1,118,38,52,-1,118,40,38,-1,62,180,181,-1,181,182,62,-1,183,184,185,-1,186,187,188,-1,189,188,190,-1,87,191,192,-1,192,193,87,-1,184,194,195,-1,90,196,197,-1,197,77,90,-1,51,61,52,-1,51,47,61,-1,198,199,200,-1,201,104,202,-1,104,103,202,-1,203,204,205,-1,206,207,208,-1,209,210,211,-1,209,212,210,-1,26,213,30,-1,26,214,213,-1,107,215,113,-1,107,216,215,-1,217,218,219,-1,220,221,222,-1,222,223,220,-1,224,43,45,-1,45,225,224,-1,226,227,228,-1,228,221,226,-1,229,230,231,-1,231,232,229,-1,233,234,235,-1,236,99,237,-1,237,238,236,-1,239,240,241,-1,239,242,240,-1,242,237,243,-1,237,244,243,-1,245,246,247,-1,245,248,246,-1,249,250,251,-1,252,250,253,-1,244,237,99,-1,7,9,97,-1,97,78,7,-1,254,255,256,-1,256,257,254,-1,258,259,260,-1,258,261,259,-1,262,263,264,-1,264,265,262,-1,262,265,266,-1,266,267,262,-1,268,269,270,-1,270,271,268,-1,45,272,273,-1,273,225,45,-1,274,275,276,-1,275,277,276,-1,260,188,258,-1,260,186,188,-1,278,273,279,-1,273,274,279,-1,280,187,281,-1,280,282,187,-1,283,279,284,-1,279,285,284,-1,8,7,191,-1,7,192,191,-1,286,287,288,-1,286,289,287,-1,290,291,218,-1,218,292,290,-1,293,89,294,-1,293,295,89,-1,296,288,287,-1,297,298,193,-1,185,288,183,-1,185,299,288,-1,300,301,302,-1,300,303,301,-1,304,305,306,-1,304,307,305,-1,184,308,309,-1,310,100,311,-1,312,313,314,-1,313,205,314,-1,315,316,317,-1,317,318,319,-1,317,316,318,-1,171,320,321,-1,174,171,322,-1,323,162,161,-1,324,325,124,-1,124,0,324,-1,326,327,125,-1,328,329,327,-1,329,330,327,-1,331,0,123,-1,331,332,0,-1,333,334,335,-1,336,337,338,-1,336,339,337,-1,0,2,340,-1,340,324,0,-1,19,15,122,-1,341,342,343,-1,344,345,156,-1,346,158,347,-1,347,348,346,-1,349,350,351,-1,352,213,353,-1,353,354,352,-1,355,24,27,-1,355,151,24,-1,214,199,198,-1,214,356,199,-1,357,109,112,-1,357,358,109,-1,358,359,360,-1,358,361,359,-1,347,362,363,-1,363,359,347,-1,364,365,360,-1,365,108,360,-1,366,367,368,-1,367,177,368,-1,369,370,371,-1,372,55,373,-1,372,371,55,-1,374,375,376,-1,374,377,375,-1,378,379,380,-1,378,252,379,-1,373,55,54,-1,105,381,382,-1,381,383,382,-1,73,49,384,-1,385,386,387,-1,200,388,198,-1,200,389,388,-1,390,391,392,-1,392,393,390,-1,394,395,396,-1,396,136,394,-1,397,398,399,-1,400,401,402,-1,228,403,404,-1,404,405,228,-1,141,129,406,-1,32,407,33,-1,61,62,182,-1,134,393,132,-1,393,392,132,-1,408,409,132,-1,408,410,409,-1,72,48,47,-1,47,51,72,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcalc_Geo_5_205_coordIndex_2()
		{
			int[] value = {411,410,167,-1,411,409,410,-1,412,413,414,-1,415,416,417,-1,415,418,416,-1,67,416,412,-1,412,414,67,-1,66,165,419,-1,66,68,165,-1,420,421,422,-1,421,423,422,-1,424,425,110,-1,426,169,427,-1,426,170,169,-1,428,429,430,-1,431,432,433,-1,431,178,432,-1,179,434,435,-1,179,175,434,-1,436,437,438,-1,439,440,441,-1,439,442,440,-1,443,444,441,-1,179,445,446,-1,445,447,446,-1,434,448,449,-1,449,435,434,-1,433,450,106,-1,433,432,450,-1,451,452,453,-1,427,430,429,-1,427,169,430,-1,170,454,168,-1,423,408,455,-1,408,456,455,-1,419,457,421,-1,419,165,457,-1,458,420,201,-1,420,116,201,-1,116,420,117,-1,420,422,117,-1,202,458,201,-1,416,66,459,-1,416,67,66,-1,410,457,167,-1,457,165,167,-1,460,418,415,-1,415,461,460,-1,462,463,464,-1,392,456,408,-1,408,132,392,-1,395,394,465,-1,394,466,465,-1,467,468,42,-1,467,469,468,-1,467,143,469,-1,467,46,143,-1,401,470,471,-1,471,402,401,-1,472,397,473,-1,398,474,475,-1,354,476,135,-1,354,353,476,-1,477,137,136,-1,136,396,477,-1,394,390,393,-1,394,138,390,-1,388,391,390,-1,390,476,388,-1,385,387,389,-1,389,200,385,-1,478,387,386,-1,478,479,387,-1,111,478,386,-1,73,480,481,-1,73,384,480,-1,63,482,483,-1,484,485,482,-1,484,486,485,-1,63,65,487,-1,487,482,63,-1,382,59,488,-1,382,383,59,-1,489,490,252,-1,252,378,489,-1,491,376,492,-1,376,375,492,-1,175,493,434,-1,175,494,493,-1,363,364,359,-1,364,360,359,-1,112,386,357,-1,112,111,386,-1,385,357,386,-1,385,495,357,-1,496,347,359,-1,359,361,496,-1,26,25,214,-1,25,356,214,-1,352,28,30,-1,30,213,352,-1,497,351,498,-1,497,349,351,-1,126,350,127,-1,350,349,127,-1,496,348,347,-1,348,25,346,-1,348,356,25,-1,499,343,342,-1,23,151,355,-1,355,17,23,-1,14,139,15,-1,139,122,15,-1,332,122,139,-1,139,0,332,-1,500,501,502,-1,500,337,501,-1,333,335,157,-1,503,362,159,-1,159,102,503,-1,0,124,123,-1,504,505,506,-1,506,507,504,-1,508,321,509,-1,321,310,509,-1,510,511,318,-1,510,512,511,-1,205,513,314,-1,205,204,513,-1,514,316,315,-1,515,173,172,-1,172,516,515,-1,366,517,173,-1,173,515,366,-1,518,519,307,-1,518,520,519,-1,75,77,197,-1,197,521,75,-1,296,297,522,-1,522,308,296,-1,523,79,94,-1,523,303,79,-1,296,287,297,-1,287,298,297,-1,524,525,526,-1,524,527,525,-1,528,529,530,-1,529,531,530,-1,218,291,219,-1,291,529,219,-1,288,299,286,-1,299,532,286,-1,266,191,86,-1,266,265,191,-1,271,533,267,-1,271,534,533,-1,535,279,283,-1,535,278,279,-1,266,86,85,-1,85,268,266,-1,536,537,485,-1,277,182,538,-1,277,61,182,-1,533,262,267,-1,533,539,262,-1,186,540,541,-1,186,260,540,-1,260,542,540,-1,260,259,542,-1,256,261,258,-1,258,536,256,-1,248,543,246,-1,248,544,543,-1,249,253,250,-1,249,545,253,-1,247,246,545,-1,546,248,245,-1,245,243,546,-1,241,547,93,-1,241,548,547,-1,234,549,548,-1,548,251,234,-1,252,235,250,-1,252,490,235,-1,550,511,551,-1,551,511,512,-1,211,210,552,-1,224,553,554,-1,224,225,553,-1,219,555,217,-1,219,556,555,-1,190,181,537,-1,537,189,190,-1,557,558,559,-1,98,560,561,-1,562,97,9,-1,562,98,97,-1,563,564,565,-1,565,88,563,-1,238,566,236,-1,312,314,567,-1,521,568,569,-1,561,243,244,-1,561,546,243,-1,468,570,42,-1,570,39,42,-1,90,571,196,-1,90,572,571,-1,573,574,95,-1,574,96,95,-1,183,288,296,-1,188,189,536,-1,536,258,188,-1,35,50,52,-1,52,38,35,-1,451,442,447,-1,320,171,517,-1,171,173,517,-1,322,575,174,-1,576,551,512,-1,512,577,576,-1,434,369,448,-1,578,579,580,-1,579,581,580,-1,408,457,410,-1,156,346,344,-1,156,158,346,-1,582,160,583,-1,583,121,582,-1,161,154,323,-1,154,153,323,-1,472,584,397,-1,465,144,146,-1,585,130,142,-1,130,129,142,-1,586,587,578,-1,586,325,587,-1,497,588,349,-1,588,589,349,-1,13,131,126,-1,13,18,131,-1,570,590,147,-1,147,145,570,-1,468,469,33,-1,469,31,33,-1,148,127,349,-1,349,589,148,-1,5,477,396,-1,396,3,5,-1,395,465,591,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcalc_Geo_5_205_coordIndex_3()
		{
			int[] value = {394,136,138,-1,32,31,141,-1,128,130,592,-1,0,139,1,-1,11,401,340,-1,111,110,425,-1,425,593,111,-1,503,102,368,-1,368,362,503,-1,102,101,368,-1,112,109,113,-1,109,107,113,-1,436,438,594,-1,179,435,445,-1,347,159,362,-1,347,158,159,-1,88,77,76,-1,76,563,88,-1,527,232,231,-1,527,524,232,-1,76,231,563,-1,76,527,231,-1,530,595,596,-1,595,209,596,-1,191,87,86,-1,208,91,206,-1,166,464,167,-1,166,414,464,-1,481,65,64,-1,481,461,65,-1,73,481,74,-1,481,64,74,-1,105,382,597,-1,73,47,49,-1,74,180,62,-1,56,55,371,-1,371,370,56,-1,418,412,416,-1,165,68,166,-1,598,43,599,-1,598,44,43,-1,403,581,600,-1,600,404,403,-1,39,38,40,-1,39,37,38,-1,580,581,403,-1,146,591,465,-1,537,536,189,-1,152,346,25,-1,25,24,152,-1,341,20,601,-1,20,22,601,-1,18,15,19,-1,18,13,15,-1,16,140,14,-1,16,149,140,-1,125,327,123,-1,256,255,261,-1,591,6,3,-1,602,589,588,-1,602,603,589,-1,10,148,604,-1,148,10,149,-1,140,2,1,-1,140,12,2,-1,542,605,606,-1,542,259,605,-1,263,607,608,-1,263,609,607,-1,562,8,264,-1,562,9,8,-1,601,342,341,-1,342,601,501,-1,344,152,499,-1,152,344,346,-1,45,467,164,-1,46,467,45,-1,600,599,404,-1,600,598,599,-1,460,412,418,-1,460,413,412,-1,610,49,48,-1,610,384,49,-1,463,167,464,-1,463,411,167,-1,597,488,417,-1,597,382,488,-1,166,67,414,-1,68,67,166,-1,528,596,611,-1,528,530,596,-1,555,612,613,-1,612,555,556,-1,286,614,289,-1,286,615,614,-1,82,532,95,-1,532,82,616,-1,295,617,572,-1,617,295,212,-1,99,78,97,-1,78,99,236,-1,232,618,619,-1,524,618,232,-1,78,566,79,-1,566,78,236,-1,433,364,431,-1,433,365,364,-1,452,435,449,-1,452,445,435,-1,620,374,376,-1,620,453,374,-1,429,491,381,-1,429,428,491,-1,116,621,201,-1,116,115,621,-1,622,362,368,-1,363,362,622,-1,201,426,104,-1,426,201,621,-1,623,624,11,-1,399,624,623,-1,498,352,354,-1,352,498,351,-1,3,395,591,-1,3,396,395,-1,5,497,477,-1,5,588,497,-1,587,579,578,-1,579,587,625,-1,590,468,33,-1,570,468,590,-1,626,134,133,-1,626,466,134,-1,126,28,350,-1,126,131,28,-1,592,585,627,-1,585,592,130,-1,143,31,469,-1,143,141,31,-1,584,602,4,-1,584,472,602,-1,121,22,21,-1,583,22,121,-1,628,501,601,-1,628,502,501,-1,629,336,630,-1,334,336,629,-1,338,631,632,-1,338,633,631,-1,154,163,634,-1,163,154,161,-1,20,343,150,-1,20,341,343,-1,335,629,311,-1,335,334,629,-1,224,599,43,-1,599,224,635,-1,600,579,627,-1,579,600,581,-1,377,369,371,-1,377,448,369,-1,551,636,550,-1,576,636,551,-1,321,322,171,-1,321,508,322,-1,637,441,440,-1,637,443,441,-1,454,638,168,-1,454,639,638,-1,629,310,311,-1,629,509,310,-1,100,517,101,-1,100,320,517,-1,447,439,446,-1,442,439,447,-1,561,99,98,-1,99,561,244,-1,521,640,568,-1,640,521,197,-1,309,194,184,-1,309,641,194,-1,582,331,642,-1,331,582,332,-1,494,643,493,-1,643,494,567,-1,566,239,92,-1,566,238,239,-1,550,564,230,-1,564,550,636,-1,8,265,264,-1,265,8,191,-1,548,240,644,-1,241,240,548,-1,79,300,80,-1,303,300,79,-1,523,207,645,-1,208,207,523,-1,559,646,647,-1,558,646,559,-1,388,353,198,-1,353,388,476,-1,230,233,550,-1,229,233,230,-1,211,596,209,-1,596,211,648,-1,649,405,635,-1,405,649,222,-1,223,650,648,-1,223,651,650,-1,650,612,611,-1,612,650,652,-1,649,653,651,-1,554,653,649,-1,554,654,653,-1,554,553,654,-1,652,613,612,-1,652,655,613,-1,646,293,294,-1,646,656,293,-1,559,577,557,-1,559,576,577,-1,558,656,646,-1,656,558,657,-1,658,659,660,-1,658,557,659,-1,657,552,656,-1,552,657,661,-1,660,226,658,-1,226,660,227,-1,661,211,552,-1,211,661,220,-1,230,563,231,-1,563,230,564,-1,619,229,232,-1,549,229,619,-1,235,251,250,-1,235,234,251,-1,547,549,619,-1,549,547,548,-1,545,644,247,-1,545,249,644,-1,546,544,248,-1,546,662,544,-1,246,254,545,-1,246,543,254,-1,662,608,607,-1,560,608,662,-1,544,605,543,-1,544,606,605,-1,486,536,485,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlcalc_Geo_5_205_coordIndex_4()
		{
			int[] value = {486,256,536,-1,539,542,609,-1,540,542,539,-1,533,540,539,-1,541,540,533,-1,275,61,277,-1,119,61,275,-1,538,181,190,-1,182,181,538,-1,292,217,574,-1,218,217,292,-1,573,532,299,-1,573,95,532,-1,655,83,613,-1,655,663,83,-1,81,664,665,-1,666,664,81,-1,665,667,668,-1,664,667,665,-1,668,614,615,-1,668,269,614,-1,267,268,271,-1,267,266,268,-1,190,669,538,-1,669,190,282,-1,669,285,276,-1,285,669,670,-1,535,553,278,-1,654,553,535,-1,671,280,672,-1,671,670,280,-1,534,541,533,-1,534,281,541,-1,535,666,663,-1,535,283,666,-1,664,671,667,-1,664,284,671,-1,270,534,271,-1,270,672,534,-1,193,84,87,-1,193,298,84,-1,291,306,305,-1,306,291,290,-1,299,673,573,-1,299,185,673,-1,531,291,305,-1,291,531,529,-1,531,595,530,-1,531,519,595,-1,572,520,571,-1,572,617,520,-1,564,647,565,-1,636,647,564,-1,569,674,675,-1,569,568,674,-1,76,525,527,-1,75,525,76,-1,676,524,526,-1,618,524,676,-1,78,677,7,-1,78,80,677,-1,678,80,300,-1,677,80,678,-1,522,679,680,-1,297,679,522,-1,645,676,681,-1,645,207,676,-1,682,678,683,-1,678,682,680,-1,309,522,684,-1,522,309,308,-1,197,685,640,-1,685,197,196,-1,571,518,686,-1,571,520,518,-1,519,305,307,-1,519,531,305,-1,687,640,685,-1,688,640,687,-1,686,689,690,-1,686,518,689,-1,691,674,688,-1,692,674,691,-1,693,690,694,-1,693,687,690,-1,641,689,304,-1,695,689,641,-1,301,681,692,-1,645,681,301,-1,693,302,691,-1,302,693,683,-1,694,684,682,-1,694,695,684,-1,313,515,516,-1,312,515,313,-1,696,643,513,-1,696,697,643,-1,512,204,203,-1,510,204,512,-1,510,513,204,-1,510,696,513,-1,318,696,510,-1,316,696,318,-1,320,310,321,-1,320,100,310,-1,698,329,699,-1,329,698,700,-1,630,701,702,-1,630,632,701,-1,631,700,698,-1,700,631,703,-1,704,516,705,-1,516,704,313,-1,706,702,701,-1,707,702,706,-1,708,706,699,-1,708,709,706,-1,506,710,507,-1,710,506,711,-1,705,712,704,-1,705,713,712,-1,330,642,331,-1,642,330,714,-1,700,330,329,-1,714,330,700,-1,504,708,328,-1,708,504,507,-1,715,506,505,-1,506,715,713,-1,712,659,716,-1,712,717,659,-1,718,715,719,-1,715,718,717,-1,326,586,720,-1,326,125,586,-1,720,578,719,-1,578,720,586,-1,580,719,578,-1,719,580,718,-1,101,366,368,-1,517,366,101,-1,157,345,333,-1,157,156,345,-1,342,333,345,-1,339,333,342,-1,323,500,502,-1,153,500,323,-1,162,502,628,-1,162,323,502,-1,121,332,582,-1,121,122,332,-1,12,340,2,-1,340,12,11,-1,356,496,199,-1,356,348,496,-1,200,495,385,-1,200,199,495,-1,358,495,361,-1,358,357,495,-1,176,431,622,-1,431,176,178,-1,697,493,643,-1,493,697,721,-1,722,315,723,-1,315,722,514,-1,434,721,369,-1,434,493,721,-1,375,57,492,-1,375,372,57,-1,490,319,724,-1,319,490,489,-1,725,319,489,-1,317,319,725,-1,380,53,378,-1,53,380,54,-1,723,317,725,-1,315,317,723,-1,381,492,383,-1,381,491,492,-1,58,488,59,-1,58,726,488,-1,60,487,58,-1,60,727,487,-1,727,482,487,-1,727,484,482,-1,482,537,483,-1,482,485,537,-1,481,460,461,-1,460,481,480,-1,180,63,483,-1,180,74,63,-1,728,392,391,-1,728,456,392,-1,387,728,389,-1,728,387,479,-1,729,479,478,-1,729,455,479,-1,138,476,390,-1,138,135,476,-1,603,623,604,-1,603,473,623,-1,470,11,624,-1,470,401,11,-1,399,475,624,-1,399,398,475,-1,32,474,407,-1,32,730,474,-1,407,731,732,-1,407,474,731,-1,731,584,733,-1,731,397,584,-1,6,734,733,-1,591,734,6,-1,472,603,602,-1,473,603,472,-1,470,735,471,-1,470,736,735,-1,141,730,32,-1,141,406,730,-1,128,471,735,-1,128,592,471,-1,44,585,142,-1,44,598,585,-1,33,732,590,-1,407,732,33,-1,590,734,147,-1,590,732,734,-1,591,147,734,-1,147,591,146,-1,39,145,37,-1,39,570,145,-1,36,626,34,-1,36,144,626,-1,70,737,71,-1,737,70,34,-1,610,463,462,-1,610,69,463,-1,597,103,105,-1,597,459,103,-1,103,66,202,-1,459,66,103,-1,117,729,593,-1,729,117,422,-1,437,115,114,-1,437,639,115,-1,421,408,423,-1,421,457,408,-1,419,202,66,-1,202,419,458,-1,594,424,110,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlcalc_Geo_5_205_coordIndex_5()
		{
			int[] value = {594,438,424,-1,436,639,437,-1,436,638,639,-1,738,453,620,-1,453,738,451,-1,107,450,216,-1,106,450,107,-1,440,451,738,-1,442,451,440,-1,169,637,430,-1,637,169,168,-1,444,638,436,-1,444,443,638,-1,216,439,441,-1,450,439,216,-1,436,215,444,-1,215,436,594,-1,216,444,215,-1,216,441,444,-1,446,450,432,-1,446,439,450,-1,440,430,637,-1,440,738,430,-1,215,110,113,-1,110,215,594,-1,432,179,446,-1,432,178,179,-1,738,428,430,-1,428,738,620,-1,425,437,114,-1,425,438,437,-1,424,438,425,-1,422,455,729,-1,422,423,455,-1,458,421,420,-1,458,419,421,-1,597,416,459,-1,417,416,597,-1,71,409,411,-1,71,737,409,-1,69,48,72,-1,610,48,69,-1,50,34,70,-1,35,34,50,-1,737,132,409,-1,133,132,737,-1,133,34,626,-1,34,133,737,-1,37,144,36,-1,37,145,144,-1,394,134,466,-1,394,393,134,-1,118,61,119,-1,61,118,52,-1,120,275,272,-1,275,120,119,-1,142,46,44,-1,143,46,142,-1,627,598,600,-1,598,627,585,-1,228,580,403,-1,228,227,580,-1,402,592,625,-1,471,592,402,-1,129,735,406,-1,735,129,128,-1,406,736,730,-1,735,736,406,-1,4,733,584,-1,6,733,4,-1,732,733,734,-1,732,731,733,-1,474,397,731,-1,474,398,397,-1,475,730,736,-1,730,475,474,-1,624,736,470,-1,475,736,624,-1,11,604,623,-1,10,604,11,-1,728,455,456,-1,455,728,479,-1,389,391,388,-1,391,389,728,-1,483,181,180,-1,483,537,181,-1,65,58,487,-1,65,726,58,-1,59,492,57,-1,59,383,492,-1,373,727,60,-1,373,54,727,-1,725,56,723,-1,725,53,56,-1,484,54,380,-1,54,484,727,-1,489,53,725,-1,489,378,53,-1,486,380,379,-1,380,486,484,-1,60,372,373,-1,57,372,60,-1,371,375,377,-1,371,372,375,-1,723,370,722,-1,370,723,56,-1,377,449,448,-1,374,449,377,-1,369,722,370,-1,722,369,721,-1,514,721,697,-1,514,722,721,-1,367,175,177,-1,367,494,175,-1,567,367,312,-1,367,567,494,-1,108,358,360,-1,358,108,109,-1,199,361,495,-1,199,496,361,-1,340,400,324,-1,401,400,340,-1,153,633,500,-1,633,153,155,-1,500,338,337,-1,338,500,633,-1,501,339,342,-1,501,337,339,-1,339,334,333,-1,336,334,339,-1,718,227,660,-1,227,718,580,-1,324,587,325,-1,324,400,587,-1,400,625,587,-1,400,402,625,-1,331,327,330,-1,327,331,123,-1,327,504,328,-1,327,326,504,-1,504,720,505,-1,504,326,720,-1,717,660,659,-1,717,718,660,-1,505,719,715,-1,505,720,719,-1,713,717,712,-1,713,715,717,-1,699,328,708,-1,699,329,328,-1,703,714,700,-1,703,634,714,-1,634,642,714,-1,642,634,163,-1,704,716,203,-1,704,712,716,-1,711,713,705,-1,711,506,713,-1,507,709,708,-1,710,709,507,-1,701,699,706,-1,701,698,699,-1,711,174,710,-1,172,174,711,-1,705,172,711,-1,172,705,516,-1,632,698,701,-1,698,632,631,-1,630,509,629,-1,509,630,702,-1,509,707,508,-1,707,509,702,-1,709,707,706,-1,709,575,707,-1,511,319,318,-1,319,511,724,-1,514,696,316,-1,514,697,696,-1,203,313,704,-1,205,313,203,-1,314,643,567,-1,643,314,513,-1,710,575,709,-1,710,174,575,-1,684,641,309,-1,684,695,641,-1,694,683,693,-1,683,694,682,-1,302,692,691,-1,301,692,302,-1,304,194,641,-1,304,306,194,-1,689,694,690,-1,694,689,695,-1,691,687,693,-1,691,688,687,-1,692,675,674,-1,681,675,692,-1,304,518,307,-1,689,518,304,-1,690,685,686,-1,687,685,690,-1,688,568,640,-1,674,568,688,-1,686,196,571,-1,685,196,686,-1,684,680,682,-1,680,684,522,-1,300,683,678,-1,300,302,683,-1,523,301,303,-1,523,645,301,-1,526,681,676,-1,526,675,681,-1,680,677,678,-1,679,677,680,-1,679,7,677,-1,192,7,679,-1,207,618,676,-1,206,618,207,-1,525,675,526,-1,525,569,675,-1,521,525,75,-1,525,521,569,-1,565,89,88,-1,294,89,565,-1,293,212,295,-1,293,210,212,-1,519,617,595,-1,519,520,617,-1,292,195,290,-1,673,195,292,-1,290,194,306,-1,195,194,290,-1,298,289,84,-1,289,298,287,-1,672,667,671,-1,667,672,270,-1,666,284,664,-1,666,283,284,-1,663,654,535,-1,655,654,663,-1,281,672,280,-1,672,281,534,-1,284,670,671,-1,284,285,670,-1,281,186,541,-1,281,187,186,-1,670,282,280,-1,670,669,282,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlcalc_Geo_5_205_coordIndex_6()
		{
			int[] value = {279,276,285,-1,279,274,276,-1,225,278,553,-1,225,273,278,-1,188,282,190,-1,282,188,187,-1,538,276,277,-1,276,538,669,-1,272,274,273,-1,272,275,274,-1,614,268,85,-1,614,269,268,-1,668,270,269,-1,667,270,668,-1,615,665,668,-1,665,615,616,-1,616,81,665,-1,82,81,616,-1,81,663,666,-1,83,663,81,-1,555,574,217,-1,555,96,574,-1,573,292,574,-1,292,573,673,-1,164,272,45,-1,164,120,272,-1,539,263,262,-1,539,609,263,-1,486,257,256,-1,379,257,486,-1,255,543,605,-1,543,255,254,-1,607,544,662,-1,607,606,544,-1,560,562,608,-1,98,562,560,-1,257,545,254,-1,545,257,253,-1,546,560,662,-1,561,560,546,-1,253,379,252,-1,379,253,257,-1,644,251,548,-1,644,249,251,-1,242,245,240,-1,242,243,245,-1,247,240,245,-1,247,644,240,-1,229,234,233,-1,234,229,549,-1,233,490,724,-1,490,233,235,-1,226,220,661,-1,220,226,221,-1,658,661,657,-1,661,658,226,-1,656,210,293,-1,210,656,552,-1,557,657,558,-1,657,557,658,-1,716,557,577,-1,557,716,659,-1,647,576,559,-1,647,636,576,-1,577,203,716,-1,203,577,512,-1,655,653,654,-1,653,655,652,-1,554,635,224,-1,635,554,649,-1,651,652,650,-1,652,651,653,-1,611,648,650,-1,596,648,611,-1,651,222,649,-1,222,651,223,-1,228,222,221,-1,222,228,405,-1,220,648,211,-1,648,220,223,-1,724,550,233,-1,724,511,550,-1,498,477,497,-1,498,137,477,-1,198,213,214,-1,198,353,213,-1,27,131,355,-1,27,29,131,-1,294,647,646,-1,294,565,647,-1,91,523,94,-1,91,208,523,-1,238,242,239,-1,242,238,237,-1,92,241,93,-1,92,239,241,-1,642,160,582,-1,642,163,160,-1,528,219,529,-1,528,556,219,-1,447,452,451,-1,447,445,452,-1,593,478,111,-1,593,729,478,-1,193,679,297,-1,192,679,193,-1,185,195,673,-1,184,195,185,-1,308,183,296,-1,308,184,183,-1,621,170,426,-1,621,454,170,-1,177,622,368,-1,177,176,622,-1,366,312,367,-1,366,515,312,-1,102,311,100,-1,311,102,159,-1,575,508,707,-1,322,508,575,-1,621,639,454,-1,621,115,639,-1,168,443,637,-1,168,638,443,-1,414,462,464,-1,414,413,462,-1,635,404,599,-1,404,635,405,-1,41,118,120,-1,41,40,118,-1,628,160,162,-1,160,628,583,-1,583,601,22,-1,583,628,601,-1,155,634,703,-1,155,154,634,-1,633,703,631,-1,633,155,703,-1,336,632,630,-1,336,338,632,-1,159,335,311,-1,157,335,159,-1,150,499,152,-1,343,499,150,-1,23,150,151,-1,23,20,150,-1,144,466,626,-1,144,465,466,-1,625,627,579,-1,627,625,592,-1,125,325,586,-1,125,124,325,-1,137,354,135,-1,354,137,498,-1,352,350,28,-1,352,351,350,-1,18,355,131,-1,355,18,17,-1,399,473,397,-1,623,473,399,-1,426,105,104,-1,426,427,105,-1,593,114,117,-1,425,114,593,-1,429,105,427,-1,429,381,105,-1,428,376,491,-1,428,620,376,-1,453,449,374,-1,453,452,449,-1,363,431,364,-1,622,431,363,-1,106,365,433,-1,106,108,365,-1,547,91,93,-1,547,206,91,-1,92,79,566,-1,92,94,79,-1,206,619,618,-1,206,547,619,-1,572,89,295,-1,572,90,89,-1,212,595,617,-1,595,212,209,-1,532,615,286,-1,532,616,615,-1,289,85,84,-1,289,614,85,-1,96,613,83,-1,613,96,555,-1,556,611,612,-1,611,556,528,-1,415,65,461,-1,65,415,726,-1,70,51,50,-1,72,51,70,-1,411,69,71,-1,411,463,69,-1,488,415,417,-1,415,488,726,-1,480,413,460,-1,413,480,462,-1,462,384,610,-1,462,480,384,-1,42,164,467,-1,42,41,164,-1,26,29,27,-1,29,26,30,-1,345,499,342,-1,499,345,344,-1,19,23,17,-1,23,19,21,-1,608,264,263,-1,562,264,608,-1,606,609,542,-1,607,609,606,-1,259,255,605,-1,259,261,255,-1,149,12,140,-1,12,149,10,-1,604,589,603,-1,589,604,148,-1,5,602,588,-1,5,4,602,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcalc_Geo_5_205_normalIndex_1()
		{
			int[] value = {368,205,254,-1,411,318,339,-1,411,340,318,-1,526,547,483,-1,312,313,301,-1,466,358,470,-1,466,332,358,-1,533,516,510,-1,553,512,501,-1,553,558,512,-1,559,530,491,-1,491,538,559,-1,419,506,448,-1,417,263,385,-1,673,692,712,-1,692,696,712,-1,692,715,696,-1,624,630,549,-1,549,551,624,-1,337,282,451,-1,282,492,451,-1,716,678,689,-1,664,658,668,-1,495,567,469,-1,469,427,495,-1,599,612,625,-1,599,593,612,-1,667,716,731,-1,672,657,606,-1,727,721,720,-1,663,649,699,-1,663,639,649,-1,731,716,650,-1,650,733,731,-1,33,52,12,-1,531,555,524,-1,585,572,465,-1,623,695,636,-1,636,603,623,-1,12,20,1,-1,1,3,12,-1,582,598,591,-1,582,579,598,-1,528,438,465,-1,465,572,528,-1,468,344,437,-1,349,388,433,-1,686,632,637,-1,210,201,140,-1,201,152,140,-1,234,202,141,-1,141,180,234,-1,543,541,614,-1,614,580,543,-1,620,605,529,-1,519,510,518,-1,519,512,510,-1,236,245,185,-1,332,466,430,-1,430,293,332,-1,156,229,147,-1,506,419,500,-1,563,634,420,-1,355,362,350,-1,355,371,362,-1,316,358,205,-1,358,296,205,-1,229,346,281,-1,346,464,281,-1,621,628,481,-1,628,502,481,-1,285,292,293,-1,292,332,293,-1,573,559,554,-1,573,575,559,-1,377,220,179,-1,462,422,485,-1,422,443,485,-1,445,341,435,-1,445,283,341,-1,489,549,529,-1,722,709,737,-1,733,657,672,-1,334,444,423,-1,294,238,257,-1,294,299,238,-1,103,72,86,-1,103,133,72,-1,103,148,133,-1,620,715,668,-1,620,630,715,-1,731,736,735,-1,735,698,731,-1,460,416,412,-1,697,661,734,-1,738,734,702,-1,603,586,571,-1,571,584,603,-1,416,387,403,-1,3,19,9,-1,9,12,3,-1,658,667,668,-1,658,716,667,-1,455,323,390,-1,648,632,724,-1,632,686,724,-1,43,69,65,-1,535,503,548,-1,28,15,35,-1,28,5,15,-1,491,456,448,-1,491,479,456,-1,201,295,180,-1,201,315,295,-1,203,194,165,-1,31,38,81,-1,81,62,31,-1,224,337,451,-1,451,372,224,-1,2,25,48,-1,48,38,2,-1,243,110,129,-1,129,289,243,-1,204,409,410,-1,561,437,496,-1,496,608,561,-1,609,517,595,-1,609,521,517,-1,521,496,246,-1,496,258,246,-1,256,261,262,-1,256,250,261,-1,508,490,522,-1,461,490,441,-1,258,496,437,-1,526,483,468,-1,468,531,526,-1,428,497,564,-1,564,473,428,-1,652,616,719,-1,652,581,616,-1,675,653,588,-1,588,610,675,-1,675,610,645,-1,645,642,675,-1,711,718,707,-1,707,681,711,-1,451,507,493,-1,493,372,451,-1,574,589,640,-1,589,666,640,-1,719,734,652,-1,719,697,734,-1,511,493,592,-1,493,574,592,-1,701,661,669,-1,701,683,661,-1,601,592,660,-1,592,635,660,-1,547,526,586,-1,526,571,586,-1,611,597,546,-1,611,633,597,-1,357,215,194,-1,194,364,357,-1,10,1,24,-1,10,0,1,-1,523,546,597,-1,545,602,584,-1,412,546,460,-1,412,477,546,-1,482,449,421,-1,482,509,449,-1,259,195,322,-1,259,158,195,-1,416,424,393,-1,196,349,303,-1,100,74,77,-1,74,65,77,-1,206,126,223,-1,223,121,199,-1,223,126,121,-1,294,343,178,-1,299,294,244,-1,407,435,341,-1,252,186,245,-1,245,368,252,-1,177,161,185,-1,155,45,161,-1,45,115,161,-1,279,368,236,-1,279,480,368,-1,306,187,278,-1,162,348,181,-1,162,300,348,-1,368,254,272,-1,272,252,368,-1,510,470,518,-1,463,307,504,-1,527,302,462,-1,570,485,280,-1,280,418,570,-1,319,342,392,-1,414,456,450,-1,450,408,414,-1,532,559,538,-1,532,554,559,-1,479,323,455,-1,479,431,323,-1,213,152,141,-1,213,173,152,-1,173,163,153,-1,173,191,163,-1,280,183,73,-1,73,163,280,-1,108,125,153,-1,125,140,153,-1,232,119,169,-1,119,86,169,-1,174,317,305,-1,499,469,539,-1,499,305,469,-1,237,484,498,-1,237,209,484,-1,478,513,557,-1,478,461,513,-1,539,469,567,-1,637,646,670,-1,646,654,670,-1,650,689,710,-1,335,189,266,-1,390,365,455,-1,390,366,365,-1,273,221,222,-1,222,190,273,-1,248,380,402,-1,402,362,248,-1,351,331,336,-1,170,247,132,-1,48,59,93,-1,93,88,48,-1,346,229,235,-1,263,291,385,-1,667,731,698,-1,420,190,563,-1,190,222,563,-1,550,688,563,-1,550,655,688,-1,639,678,716,-1,716,658,639,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcalc_Geo_5_205_normalIndex_2()
		{
			int[] value = {730,655,737,-1,730,688,655,-1,680,690,651,-1,615,708,638,-1,615,629,708,-1,721,708,680,-1,680,651,721,-1,727,722,723,-1,727,720,722,-1,679,705,583,-1,705,568,583,-1,457,459,234,-1,556,444,562,-1,556,423,444,-1,454,534,379,-1,87,214,172,-1,87,133,214,-1,148,138,101,-1,148,103,138,-1,386,452,447,-1,297,275,328,-1,297,239,275,-1,304,327,328,-1,148,160,216,-1,160,226,216,-1,138,117,118,-1,118,101,138,-1,172,288,210,-1,172,214,288,-1,228,154,240,-1,562,379,534,-1,562,444,379,-1,423,406,334,-1,568,550,367,-1,550,277,367,-1,723,726,705,-1,723,722,726,-1,717,679,648,-1,679,614,648,-1,614,679,580,-1,679,583,580,-1,724,717,648,-1,708,727,694,-1,708,721,727,-1,655,726,737,-1,726,722,737,-1,631,629,615,-1,615,587,631,-1,729,713,714,-1,222,277,550,-1,550,563,222,-1,380,248,440,-1,248,378,440,-1,536,494,551,-1,536,525,494,-1,536,464,525,-1,536,492,464,-1,247,242,157,-1,157,132,247,-1,375,351,383,-1,331,284,271,-1,408,405,355,-1,408,450,405,-1,354,350,362,-1,362,402,354,-1,248,273,190,-1,248,371,273,-1,365,221,273,-1,273,405,365,-1,335,266,366,-1,366,390,335,-1,219,266,189,-1,219,230,266,-1,202,219,189,-1,650,662,613,-1,650,710,662,-1,672,627,693,-1,596,619,627,-1,596,576,619,-1,672,606,607,-1,607,627,672,-1,670,625,626,-1,670,654,625,-1,399,413,461,-1,461,478,399,-1,577,498,604,-1,498,484,604,-1,103,168,138,-1,103,102,168,-1,73,108,163,-1,108,153,163,-1,141,189,213,-1,141,202,189,-1,335,213,189,-1,335,255,213,-1,269,280,163,-1,163,191,269,-1,491,530,479,-1,530,431,479,-1,414,419,448,-1,448,456,414,-1,363,392,389,-1,363,319,392,-1,430,342,293,-1,342,319,293,-1,269,418,280,-1,418,530,570,-1,418,431,530,-1,486,504,307,-1,558,554,532,-1,532,533,558,-1,358,316,470,-1,316,518,470,-1,480,518,316,-1,316,368,480,-1,396,329,391,-1,396,348,329,-1,306,278,422,-1,398,183,443,-1,443,433,398,-1,368,245,236,-1,200,151,167,-1,167,274,200,-1,137,178,124,-1,178,196,124,-1,75,98,121,-1,75,54,98,-1,65,71,77,-1,65,69,71,-1,164,126,206,-1,144,257,238,-1,238,128,144,-1,232,359,257,-1,257,144,232,-1,112,85,158,-1,112,44,85,-1,33,12,9,-1,9,49,33,-1,523,545,446,-1,446,424,523,-1,542,555,579,-1,542,509,555,-1,523,597,545,-1,597,602,545,-1,260,127,265,-1,260,130,127,-1,120,166,78,-1,166,136,78,-1,194,215,165,-1,215,166,165,-1,546,477,611,-1,477,569,611,-1,645,586,636,-1,645,610,586,-1,681,656,642,-1,681,671,656,-1,474,592,601,-1,474,511,592,-1,645,636,695,-1,695,711,645,-1,647,725,619,-1,666,698,685,-1,666,667,698,-1,656,675,642,-1,656,728,675,-1,697,732,676,-1,697,719,732,-1,719,665,732,-1,719,616,665,-1,564,581,652,-1,652,647,564,-1,250,384,261,-1,250,381,384,-1,508,441,490,-1,508,401,441,-1,262,261,401,-1,217,250,256,-1,256,246,217,-1,595,565,591,-1,595,566,565,-1,409,458,566,-1,566,522,409,-1,461,410,490,-1,461,413,410,-1,106,98,70,-1,70,98,54,-1,35,15,17,-1,224,298,171,-1,224,372,298,-1,165,270,203,-1,165,188,270,-1,702,735,725,-1,725,738,702,-1,18,22,23,-1,344,360,218,-1,514,468,483,-1,514,344,468,-1,60,64,36,-1,36,20,60,-1,608,590,561,-1,100,77,89,-1,49,111,139,-1,218,246,258,-1,218,217,246,-1,494,578,551,-1,578,624,551,-1,3,30,19,-1,3,7,30,-1,434,394,528,-1,394,438,528,-1,460,546,523,-1,734,738,647,-1,647,652,734,-1,692,664,668,-1,668,715,692,-1,228,239,226,-1,343,294,359,-1,294,257,359,-1,244,233,299,-1,39,70,54,-1,54,27,39,-1,138,174,117,-1,83,76,40,-1,76,61,40,-1,550,726,655,-1,462,570,527,-1,462,485,570,-1,467,445,487,-1,487,519,467,-1,341,220,407,-1,220,377,407,-1,375,330,351,-1,440,621,481,-1,150,147,281,-1,147,229,281,-1,142,123,83,-1,142,186,123,-1,363,268,319,-1,268,333,319,-1,466,500,430,-1,466,516,500,-1,578,442,502,-1,502,628,578,-1,494,525,385,-1,525,417,385,-1,285,293,319,-1,319,333,285,-1,339,354,402,-1,402,411,339,-1,380,440,395,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcalc_Geo_5_205_normalIndex_3()
		{
			int[] value = {248,362,371,-1,263,417,346,-1,156,147,113,-1,368,316,205,-1,313,247,272,-1,202,234,459,-1,459,432,202,-1,398,433,169,-1,169,183,398,-1,433,388,169,-1,141,152,180,-1,152,201,180,-1,386,447,382,-1,148,101,160,-1,280,443,183,-1,280,485,443,-1,20,12,52,-1,52,60,20,-1,130,289,129,-1,130,260,289,-1,52,129,60,-1,52,130,129,-1,78,34,47,-1,34,28,47,-1,586,603,636,-1,548,582,535,-1,709,714,737,-1,709,651,714,-1,613,606,657,-1,613,587,606,-1,650,613,733,-1,613,657,733,-1,637,670,643,-1,650,716,689,-1,733,736,731,-1,427,469,305,-1,305,317,427,-1,629,680,708,-1,722,720,709,-1,149,337,146,-1,149,282,337,-1,59,61,104,-1,104,93,59,-1,624,715,630,-1,624,696,715,-1,40,61,59,-1,481,395,440,-1,725,647,738,-1,575,570,530,-1,530,559,575,-1,463,553,429,-1,553,501,429,-1,516,470,510,-1,516,466,470,-1,332,296,358,-1,332,292,296,-1,185,161,236,-1,564,497,581,-1,395,340,411,-1,324,333,268,-1,324,374,333,-1,312,285,345,-1,285,312,292,-1,296,254,205,-1,296,301,254,-1,665,520,540,-1,665,616,520,-1,653,560,552,-1,653,691,560,-1,514,547,588,-1,514,483,547,-1,429,307,463,-1,307,429,329,-1,527,575,486,-1,575,527,570,-1,451,536,489,-1,492,536,451,-1,104,146,93,-1,104,149,146,-1,631,680,629,-1,631,690,680,-1,706,689,678,-1,706,710,689,-1,713,737,714,-1,713,730,737,-1,643,626,638,-1,643,670,626,-1,709,721,651,-1,720,721,709,-1,120,47,94,-1,120,78,47,-1,270,176,290,-1,176,270,188,-1,611,674,633,-1,611,641,674,-1,572,569,528,-1,569,572,617,-1,0,13,7,-1,13,0,5,-1,437,531,468,-1,531,437,561,-1,289,453,488,-1,260,453,289,-1,531,590,555,-1,590,531,561,-1,172,108,87,-1,172,125,108,-1,154,101,118,-1,154,160,101,-1,373,237,498,-1,373,240,237,-1,534,577,646,-1,534,454,577,-1,614,544,648,-1,614,541,544,-1,55,183,169,-1,73,183,55,-1,648,556,632,-1,556,648,544,-1,361,276,313,-1,336,276,361,-1,389,414,408,-1,414,389,392,-1,411,380,395,-1,411,402,380,-1,339,363,354,-1,339,268,363,-1,123,76,83,-1,76,123,92,-1,442,494,385,-1,578,494,442,-1,622,420,634,-1,622,378,420,-1,430,419,342,-1,430,500,419,-1,113,150,107,-1,150,113,147,-1,464,417,525,-1,464,346,417,-1,330,324,318,-1,330,375,324,-1,519,501,512,-1,487,501,519,-1,439,329,429,-1,439,391,329,-1,145,162,95,-1,187,162,145,-1,181,50,63,-1,181,192,50,-1,220,283,131,-1,283,220,341,-1,553,504,573,-1,553,463,504,-1,278,145,303,-1,278,187,145,-1,224,146,337,-1,146,224,135,-1,104,76,107,-1,76,104,61,-1,209,174,305,-1,209,117,174,-1,70,58,106,-1,39,58,70,-1,178,244,294,-1,178,137,244,-1,311,328,275,-1,311,304,328,-1,406,352,334,-1,406,436,352,-1,145,196,303,-1,145,124,196,-1,349,359,388,-1,349,343,359,-1,226,297,216,-1,239,297,226,-1,218,437,344,-1,437,218,258,-1,49,68,111,-1,68,49,9,-1,393,387,416,-1,393,370,387,-1,467,279,253,-1,279,467,480,-1,102,99,168,-1,99,102,89,-1,590,609,598,-1,590,608,609,-1,106,64,110,-1,64,106,58,-1,547,610,588,-1,610,547,586,-1,566,517,505,-1,595,517,566,-1,555,482,524,-1,509,482,555,-1,542,503,471,-1,548,503,542,-1,23,26,37,-1,22,26,23,-1,365,450,455,-1,450,365,405,-1,110,204,106,-1,243,204,110,-1,35,47,28,-1,47,35,57,-1,122,88,135,-1,88,122,81,-1,62,109,57,-1,62,114,109,-1,109,176,94,-1,176,109,175,-1,122,159,114,-1,171,159,122,-1,171,267,159,-1,171,298,267,-1,175,290,176,-1,175,286,290,-1,26,10,24,-1,26,16,10,-1,23,27,18,-1,23,39,27,-1,22,16,26,-1,16,22,8,-1,11,29,21,-1,11,18,29,-1,8,17,16,-1,17,8,4,-1,21,2,11,-1,2,21,25,-1,4,35,17,-1,35,4,31,-1,110,60,129,-1,60,110,64,-1,488,243,289,-1,458,243,488,-1,410,522,490,-1,410,409,522,-1,565,458,488,-1,458,565,566,-1,401,505,262,-1,401,508,505,-1,217,381,250,-1,217,397,381,-1,261,428,401,-1,261,384,428,-1,397,552,560,-1,360,552,397,-1,381,520,384,-1,381,540,520,-1,576,647,619,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlcalc_Geo_5_205_normalIndex_4()
		{
			int[] value = {576,564,647,-1,728,665,691,-1,732,665,728,-1,656,732,728,-1,676,732,656,-1,589,667,666,-1,605,667,589,-1,685,735,702,-1,698,735,685,-1,364,203,394,-1,194,203,364,-1,434,569,477,-1,434,528,569,-1,286,465,290,-1,286,475,465,-1,585,659,644,-1,594,659,585,-1,644,704,687,-1,659,704,644,-1,687,674,641,-1,687,718,674,-1,642,711,681,-1,642,645,711,-1,702,677,685,-1,677,702,683,-1,677,635,640,-1,635,677,684,-1,474,298,511,-1,267,298,474,-1,700,701,703,-1,700,684,701,-1,671,676,656,-1,671,669,676,-1,474,594,475,-1,474,601,594,-1,659,700,704,-1,659,660,700,-1,707,671,681,-1,707,703,671,-1,584,623,603,-1,584,602,623,-1,215,322,195,-1,322,215,357,-1,477,353,434,-1,477,412,353,-1,136,215,195,-1,215,136,166,-1,136,34,78,-1,136,85,34,-1,7,44,30,-1,7,13,44,-1,64,37,36,-1,58,37,64,-1,139,225,251,-1,139,111,225,-1,52,127,130,-1,33,127,52,-1,425,260,265,-1,453,260,425,-1,531,515,526,-1,531,524,515,-1,472,524,482,-1,515,524,472,-1,446,537,476,-1,545,537,446,-1,471,425,376,-1,471,503,425,-1,415,472,404,-1,472,415,476,-1,393,446,400,-1,446,393,424,-1,9,67,68,-1,67,9,19,-1,30,112,79,-1,30,44,112,-1,85,195,158,-1,85,136,195,-1,207,68,67,-1,208,68,207,-1,79,211,198,-1,79,112,211,-1,347,225,208,-1,356,225,347,-1,320,198,310,-1,320,207,198,-1,370,211,259,-1,321,211,370,-1,449,376,356,-1,471,376,449,-1,320,421,347,-1,421,320,404,-1,310,400,415,-1,310,321,400,-1,74,144,128,-1,100,144,74,-1,82,99,71,-1,82,134,99,-1,54,69,43,-1,75,69,54,-1,75,71,69,-1,75,82,71,-1,121,82,75,-1,126,82,121,-1,343,196,178,-1,343,349,196,-1,14,45,66,-1,45,14,6,-1,95,41,84,-1,95,63,41,-1,50,6,14,-1,6,50,46,-1,56,128,105,-1,128,56,74,-1,80,84,41,-1,116,84,80,-1,193,80,66,-1,193,227,80,-1,167,309,274,-1,309,167,197,-1,105,51,56,-1,105,91,51,-1,115,253,279,-1,253,115,97,-1,6,115,45,-1,97,115,6,-1,200,193,155,-1,193,200,274,-1,96,167,151,-1,167,96,91,-1,51,29,32,-1,51,53,29,-1,42,96,90,-1,96,42,53,-1,177,142,143,-1,177,185,142,-1,143,83,90,-1,83,143,142,-1,40,90,83,-1,90,40,42,-1,388,232,169,-1,359,232,388,-1,422,302,306,-1,422,462,302,-1,307,306,302,-1,300,306,307,-1,407,396,391,-1,377,396,407,-1,435,391,439,-1,435,407,391,-1,519,480,467,-1,519,518,480,-1,301,272,254,-1,272,301,313,-1,431,269,323,-1,431,418,269,-1,390,255,335,-1,390,323,255,-1,173,255,191,-1,173,213,255,-1,72,87,55,-1,87,72,133,-1,134,168,99,-1,168,134,231,-1,264,206,325,-1,206,264,164,-1,138,231,174,-1,138,168,231,-1,484,599,604,-1,484,499,599,-1,413,199,182,-1,199,413,399,-1,369,199,399,-1,223,199,369,-1,557,495,478,-1,495,557,567,-1,325,223,369,-1,206,223,325,-1,646,604,654,-1,646,577,604,-1,612,626,625,-1,612,618,626,-1,593,607,612,-1,593,600,607,-1,600,627,607,-1,600,596,627,-1,627,725,693,-1,627,619,725,-1,613,631,587,-1,631,613,662,-1,736,672,693,-1,736,733,672,-1,212,222,221,-1,212,277,222,-1,266,212,366,-1,212,266,230,-1,426,230,219,-1,426,367,230,-1,371,405,273,-1,371,355,405,-1,374,361,345,-1,374,383,361,-1,242,313,276,-1,242,247,313,-1,336,271,276,-1,336,331,271,-1,263,284,291,-1,263,249,284,-1,291,308,326,-1,291,284,308,-1,308,330,314,-1,308,351,330,-1,340,338,314,-1,395,338,340,-1,375,374,324,-1,383,374,375,-1,242,184,157,-1,242,241,184,-1,346,249,263,-1,346,235,249,-1,156,157,184,-1,156,113,157,-1,282,150,281,-1,282,149,150,-1,385,326,442,-1,291,326,385,-1,442,338,502,-1,442,326,338,-1,395,502,338,-1,502,395,481,-1,624,628,696,-1,624,578,628,-1,712,622,673,-1,712,621,622,-1,649,682,699,-1,682,649,673,-1,706,713,729,-1,706,663,713,-1,643,686,637,-1,643,694,686,-1,686,727,724,-1,694,727,686,-1,580,426,432,-1,426,580,583,-1,452,541,543,-1,452,436,541,-1,705,550,568,-1,705,726,550,-1,723,724,727,-1,724,723,717,-1,382,457,234,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlcalc_Geo_5_205_normalIndex_5()
		{
			int[] value = {382,447,457,-1,386,436,452,-1,386,352,436,-1,287,240,373,-1,240,287,228,-1,201,288,315,-1,210,288,201,-1,275,228,287,-1,239,228,275,-1,444,311,379,-1,311,444,334,-1,327,352,386,-1,327,304,352,-1,315,297,328,-1,288,297,315,-1,386,295,327,-1,295,386,382,-1,315,327,295,-1,315,328,327,-1,216,288,214,-1,216,297,288,-1,275,379,311,-1,275,287,379,-1,295,234,180,-1,234,295,382,-1,214,148,216,-1,214,133,148,-1,287,454,379,-1,454,287,373,-1,459,452,543,-1,459,447,452,-1,457,447,459,-1,583,367,426,-1,583,568,367,-1,717,705,679,-1,717,723,705,-1,643,708,694,-1,638,708,643,-1,699,688,730,-1,699,682,688,-1,663,678,639,-1,706,678,663,-1,664,673,649,-1,692,673,664,-1,682,563,688,-1,634,563,682,-1,634,673,622,-1,673,634,682,-1,696,621,712,-1,696,628,621,-1,248,420,378,-1,248,190,420,-1,620,667,605,-1,667,620,668,-1,529,589,507,-1,589,529,605,-1,281,492,282,-1,464,492,281,-1,107,149,104,-1,149,107,150,-1,48,40,59,-1,48,25,40,-1,132,113,92,-1,157,113,132,-1,229,184,235,-1,184,229,156,-1,235,241,249,-1,184,241,235,-1,318,314,330,-1,340,314,318,-1,326,314,338,-1,326,308,314,-1,284,351,308,-1,284,331,351,-1,271,249,241,-1,249,271,284,-1,276,241,242,-1,271,241,276,-1,313,345,361,-1,312,345,313,-1,212,367,277,-1,367,212,230,-1,366,221,365,-1,221,366,212,-1,693,735,736,-1,693,725,735,-1,606,612,607,-1,606,618,612,-1,625,604,599,-1,625,654,604,-1,539,600,593,-1,539,567,600,-1,369,427,325,-1,369,495,427,-1,596,567,557,-1,567,596,600,-1,399,495,369,-1,399,478,495,-1,576,557,513,-1,557,576,596,-1,593,499,539,-1,599,499,593,-1,305,484,209,-1,305,499,484,-1,325,317,264,-1,317,325,427,-1,209,118,117,-1,237,118,209,-1,174,264,317,-1,264,174,231,-1,164,231,134,-1,164,264,231,-1,119,103,86,-1,119,102,103,-1,89,119,100,-1,119,89,102,-1,140,173,153,-1,173,140,152,-1,323,191,255,-1,323,269,191,-1,272,170,252,-1,247,170,272,-1,377,192,396,-1,192,377,179,-1,396,181,348,-1,181,396,192,-1,329,300,307,-1,329,348,300,-1,300,187,306,-1,162,187,300,-1,42,25,21,-1,25,42,40,-1,252,123,186,-1,252,170,123,-1,170,92,123,-1,170,132,92,-1,279,161,115,-1,161,279,236,-1,161,200,155,-1,161,177,200,-1,200,143,151,-1,200,177,143,-1,53,21,29,-1,53,42,21,-1,151,90,96,-1,151,143,90,-1,91,53,51,-1,91,96,53,-1,66,155,193,-1,66,45,155,-1,46,97,6,-1,46,131,97,-1,131,253,97,-1,253,131,283,-1,56,32,43,-1,56,51,32,-1,197,91,105,-1,197,167,91,-1,274,227,193,-1,309,227,274,-1,41,66,80,-1,41,14,66,-1,197,299,309,-1,238,299,197,-1,105,238,197,-1,238,105,128,-1,63,14,41,-1,14,63,50,-1,95,124,145,-1,124,95,84,-1,124,116,137,-1,116,124,84,-1,227,116,80,-1,227,233,116,-1,98,199,121,-1,199,98,182,-1,164,82,126,-1,164,134,82,-1,43,74,56,-1,65,74,43,-1,77,99,89,-1,99,77,71,-1,309,233,227,-1,309,299,233,-1,400,370,393,-1,400,321,370,-1,310,404,320,-1,404,310,415,-1,421,356,347,-1,449,356,421,-1,259,387,370,-1,259,322,387,-1,211,310,198,-1,310,211,321,-1,347,207,320,-1,347,208,207,-1,356,251,225,-1,376,251,356,-1,259,112,158,-1,211,112,259,-1,198,67,79,-1,207,67,198,-1,208,111,68,-1,225,111,208,-1,79,19,30,-1,67,19,79,-1,400,476,415,-1,476,400,446,-1,482,404,472,-1,482,421,404,-1,542,449,509,-1,542,471,449,-1,265,376,425,-1,265,251,376,-1,476,515,472,-1,537,515,476,-1,537,526,515,-1,571,526,537,-1,503,453,425,-1,535,453,503,-1,127,251,265,-1,127,139,251,-1,49,127,33,-1,127,49,139,-1,36,1,20,-1,24,1,36,-1,10,5,0,-1,10,15,5,-1,85,13,34,-1,85,44,13,-1,364,403,357,-1,353,403,364,-1,357,387,322,-1,403,387,357,-1,602,633,623,-1,633,602,597,-1,703,704,700,-1,704,703,707,-1,594,660,659,-1,594,601,660,-1,475,267,474,-1,286,267,475,-1,669,703,701,-1,703,669,671,-1,660,684,700,-1,660,635,684,-1,669,697,676,-1,669,661,697,-1,684,683,701,-1,684,677,683,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlcalc_Geo_5_205_normalIndex_6()
		{
			int[] value = {592,640,635,-1,592,574,640,-1,372,511,298,-1,372,493,511,-1,734,683,702,-1,683,734,661,-1,685,640,666,-1,640,685,677,-1,507,574,493,-1,507,589,574,-1,674,711,695,-1,674,718,711,-1,687,707,718,-1,704,707,687,-1,641,644,687,-1,644,641,617,-1,617,585,644,-1,572,585,617,-1,585,475,594,-1,465,475,585,-1,270,394,203,-1,270,438,394,-1,434,364,394,-1,364,434,353,-1,489,507,451,-1,489,529,507,-1,728,653,675,-1,728,691,653,-1,576,473,564,-1,513,473,576,-1,497,384,520,-1,384,497,428,-1,560,381,397,-1,560,540,381,-1,360,514,552,-1,344,514,360,-1,473,401,428,-1,401,473,441,-1,217,360,397,-1,218,360,217,-1,441,513,461,-1,513,441,473,-1,505,522,566,-1,505,508,522,-1,521,256,517,-1,521,246,256,-1,262,517,256,-1,262,505,517,-1,243,409,204,-1,409,243,458,-1,204,413,182,-1,413,204,410,-1,2,31,4,-1,31,2,38,-1,11,4,8,-1,4,11,2,-1,16,15,10,-1,15,16,17,-1,18,8,22,-1,8,18,11,-1,32,18,27,-1,18,32,29,-1,37,39,23,-1,37,58,39,-1,27,43,32,-1,43,27,54,-1,286,159,267,-1,159,286,175,-1,171,135,224,-1,135,171,122,-1,114,175,109,-1,175,114,159,-1,94,57,109,-1,47,57,94,-1,114,81,122,-1,81,114,62,-1,48,81,38,-1,81,48,88,-1,31,57,35,-1,57,31,62,-1,182,106,204,-1,182,98,106,-1,389,354,363,-1,389,350,354,-1,455,456,479,-1,455,450,456,-1,538,500,532,-1,538,506,500,-1,24,37,26,-1,24,36,37,-1,582,542,579,-1,582,548,542,-1,608,521,609,-1,521,608,496,-1,598,595,591,-1,598,609,595,-1,253,445,467,-1,253,283,445,-1,120,165,166,-1,120,188,165,-1,226,154,228,-1,226,160,154,-1,432,219,202,-1,432,426,219,-1,584,537,545,-1,571,537,584,-1,412,403,353,-1,416,403,412,-1,424,460,523,-1,424,416,460,-1,544,423,556,-1,544,406,423,-1,86,55,169,-1,86,72,55,-1,232,100,119,-1,232,144,100,-1,433,303,349,-1,303,433,443,-1,233,137,116,-1,244,137,233,-1,544,436,406,-1,544,541,436,-1,334,304,311,-1,334,352,304,-1,651,729,714,-1,651,690,729,-1,135,93,146,-1,93,135,88,-1,549,620,529,-1,549,630,620,-1,439,445,435,-1,445,439,487,-1,487,429,501,-1,487,439,429,-1,179,131,46,-1,179,220,131,-1,192,46,50,-1,192,179,46,-1,162,63,95,-1,162,181,63,-1,443,278,303,-1,422,278,443,-1,573,486,575,-1,504,486,573,-1,558,573,554,-1,558,553,573,-1,621,378,622,-1,621,440,378,-1,92,107,76,-1,107,92,113,-1,185,186,142,-1,185,245,186,-1,350,408,355,-1,408,350,389,-1,414,342,419,-1,414,392,342,-1,516,532,500,-1,532,516,533,-1,336,383,351,-1,361,383,336,-1,556,637,632,-1,556,562,637,-1,432,543,580,-1,459,543,432,-1,534,637,562,-1,534,646,637,-1,454,498,577,-1,454,373,498,-1,240,118,237,-1,240,154,118,-1,73,87,108,-1,55,87,73,-1,210,125,172,-1,210,140,125,-1,565,582,591,-1,565,535,582,-1,598,555,590,-1,598,579,555,-1,535,488,453,-1,535,565,488,-1,7,1,0,-1,7,3,1,-1,5,34,13,-1,34,5,28,-1,569,641,611,-1,569,617,641,-1,633,695,623,-1,633,674,695,-1,438,290,465,-1,290,438,270,-1,188,94,176,-1,94,188,120,-1,615,606,587,-1,606,615,618,-1,649,658,664,-1,639,658,649,-1,730,663,699,-1,730,713,663,-1,626,615,638,-1,615,626,618,-1,662,690,631,-1,690,662,729,-1,729,710,706,-1,729,662,710,-1,551,489,536,-1,551,549,489,-1,491,506,538,-1,506,491,448,-1,302,486,307,-1,486,302,527,-1,510,558,533,-1,558,510,512,-1,552,588,653,-1,514,588,552,-1,540,691,665,-1,560,691,540,-1,616,497,520,-1,616,581,497,-1,292,301,296,-1,301,292,312,-1,345,333,374,-1,333,345,285,-1,339,324,268,-1,339,318,324,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaninec_Geo_5_211_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,1,0,-1,7,8,9,-1,10,11,12,-1,13,14,15,-1,16,17,18,-1,16,19,17,-1,20,21,22,-1,23,24,25,-1,26,27,28,-1,29,30,31,-1,32,33,34,-1,32,35,36,-1,37,36,38,-1,39,40,41,-1,42,41,40,-1,43,15,44,-1,45,46,47,-1,47,48,49,-1,50,51,52,-1,53,54,49,-1,55,56,57,-1,58,59,60,-1,61,62,63,-1,64,65,66,-1,67,63,62,-1,66,68,58,-1,69,70,41,-1,21,71,72,-1,73,74,75,-1,76,77,78,-1,79,80,81,-1,79,82,83,-1,84,78,77,-1,85,67,86,-1,47,56,87,-1,88,89,5,-1,90,91,92,-1,61,66,65,-1,93,94,52,-1,56,47,49,-1,95,90,96,-1,97,98,99,-1,100,84,101,-1,102,103,104,-1,101,105,106,-1,25,107,108,-1,109,110,42,-1,111,16,112,-1,113,114,115,-1,18,112,16,-1,105,33,116,-1,24,23,117,-1,118,119,120,-1,121,122,123,-1,124,31,125,-1,126,127,112,-1,128,129,130,-1,131,132,133,-1,134,35,34,-1,125,31,30,-1,27,135,118,-1,30,136,137,-1,138,139,140,-1,141,142,121,-1,143,144,145,-1,118,146,27,-1,117,120,119,-1,107,33,105,-1,106,114,113,-1,90,92,96,-1,147,148,100,-1,1,149,150,-1,80,151,74,-1,73,97,99,-1,152,10,153,-1,154,155,156,-1,157,14,60,-1,158,159,48,-1,160,161,162,-1,71,163,164,-1,94,165,166,-1,41,42,69,-1,152,11,10,-1,167,99,98,-1,46,45,156,-1,168,155,154,-1,149,169,150,-1,75,170,171,-1,98,97,172,-1,120,117,92,-1,108,173,95,-1,174,21,72,-1,67,59,63,-1,110,109,65,-1,175,66,176,-1,109,61,65,-1,177,178,60,-1,179,180,181,-1,57,49,54,-1,161,49,50,-1,182,183,50,-1,46,48,47,-1,49,57,56,-1,93,184,174,-1,33,32,116,-1,185,145,174,-1,134,24,186,-1,36,35,38,-1,28,27,187,-1,1,188,2,-1,189,163,190,-1,191,13,15,-1,13,191,152,-1,192,169,149,-1,16,193,194,-1,71,164,195,-1,194,19,16,-1,192,196,169,-1,193,16,111,-1,197,81,74,-1,152,191,198,-1,87,56,177,-1,123,199,136,-1,38,200,37,-1,166,39,41,-1,185,174,72,-1,94,41,70,-1,174,165,93,-1,48,201,49,-1,52,162,50,-1,161,53,49,-1,180,175,181,-1,175,64,66,-1,146,86,62,-1,67,157,59,-1,41,94,166,-1,108,95,96,-1,12,197,73,-1,202,77,76,-1,81,11,79,-1,96,92,25,-1,73,75,171,-1,154,88,168,-1,156,158,46,-1,98,154,167,-1,21,184,22,-1,20,159,163,-1,160,203,161,-1,46,158,48,-1,60,59,157,-1,64,69,110,-1,156,167,154,-1,153,13,152,-1,73,99,12,-1,80,74,81,-1,172,188,150,-1,150,188,1,-1,108,107,101,-1,107,105,101,-1,146,61,109,-1,146,62,61,-1,106,116,114,-1,116,204,114,-1,107,34,33,-1,143,145,185,-1,199,123,122,-1,205,206,207,-1,27,124,135,-1,129,208,209,-1,132,127,126,-1,126,204,132,-1,111,112,210,-1,131,127,132,-1,211,111,212,-1,124,125,135,-1,213,214,215,-1,146,118,120,-1,117,186,24,-1,25,24,134,-1,105,116,106,-1,113,115,216,-1,110,69,42,-1,108,96,25,-1,106,100,101,-1,197,12,81,-1,173,108,77,-1,53,161,203,-1,22,159,20,-1,20,71,21,-1,93,52,51,-1,160,94,70,-1,61,68,66,-1,5,4,88,-1,86,217,85,-1,218,164,163,-1,79,83,80,-1,73,197,74,-1,94,93,165,-1,58,176,66,-1,86,67,62,-1,160,52,94,-1,64,110,65,-1,63,68,61,-1,60,178,58,-1,57,181,55,-1,14,177,60,-1,182,201,22,-1,162,161,50,-1,45,47,153,-1,12,219,10,-1,51,50,183,-1,43,191,15,-1,52,160,162,-1,208,220,209,-1,208,129,186,-1,200,38,128,-1,32,34,35,-1,28,187,221,-1,123,205,121,-1,26,124,27,-1,21,174,184,-1,114,222,115,-1,163,71,20,-1,11,81,12,-1,7,9,223,-1,6,192,1,-1,3,224,4,-1,225,226,227,-1,1,192,149,-1,228,227,229,-1,227,228,225,-1,230,19,231,-1,232,19,230,-1,233,234,235,-1,234,233,236,-1,237,238,239,-1,238,237,240,-1,218,241,164,-1,218,242,241,-1,13,177,14,-1,13,87,177,-1,168,190,155,-1,168,189,190,-1,31,26,29,-1,31,124,26,-1,35,186,38,-1,35,134,186,-1,223,72,7,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaninec_Geo_5_211_coordIndex_2()
		{
			int[] value = {223,185,72,-1,40,243,42,-1,40,139,243,-1,51,184,93,-1,51,183,184,-1,54,181,57,-1,54,179,181,-1,55,58,178,-1,55,176,58,-1,244,75,245,-1,75,244,170,-1,169,89,150,-1,169,5,89,-1,239,189,168,-1,239,238,189,-1,90,246,91,-1,246,90,247,-1,71,7,72,-1,71,195,7,-1,159,190,163,-1,159,158,190,-1,179,160,180,-1,179,203,160,-1,64,180,69,-1,175,180,64,-1,219,156,45,-1,219,167,156,-1,248,82,249,-1,248,83,82,-1,250,172,171,-1,188,172,250,-1,188,103,2,-1,250,103,188,-1,104,113,216,-1,147,113,104,-1,234,213,215,-1,251,213,234,-1,134,107,25,-1,134,34,107,-1,223,143,185,-1,223,235,143,-1,142,145,144,-1,145,142,252,-1,253,243,254,-1,253,221,243,-1,136,255,137,-1,199,255,136,-1,256,255,199,-1,137,257,258,-1,255,257,137,-1,259,135,125,-1,259,260,135,-1,261,262,263,-1,264,262,261,-1,265,262,212,-1,262,265,266,-1,130,267,133,-1,267,130,268,-1,127,210,112,-1,210,127,131,-1,210,212,111,-1,210,265,212,-1,268,129,209,-1,268,130,129,-1,211,262,264,-1,211,212,262,-1,259,268,260,-1,259,267,268,-1,125,269,259,-1,258,269,125,-1,255,263,257,-1,214,263,255,-1,252,141,270,-1,252,142,141,-1,215,235,234,-1,235,215,143,-1,18,126,112,-1,222,126,18,-1,261,251,226,-1,261,213,251,-1,106,147,100,-1,106,113,147,-1,102,2,103,-1,0,2,102,-1,171,271,250,-1,171,170,271,-1,77,101,84,-1,77,108,101,-1,249,272,247,-1,249,82,272,-1,157,85,44,-1,157,67,85,-1,91,85,217,-1,91,246,85,-1,54,203,179,-1,53,203,54,-1,189,218,163,-1,238,218,189,-1,202,83,248,-1,202,80,83,-1,151,78,245,-1,151,76,78,-1,181,176,55,-1,176,181,175,-1,139,254,243,-1,139,138,254,-1,140,166,270,-1,140,39,166,-1,200,130,133,-1,200,128,130,-1,221,26,28,-1,253,26,221,-1,29,205,123,-1,205,29,206,-1,264,273,211,-1,228,273,264,-1,122,142,144,-1,122,121,142,-1,164,274,195,-1,164,241,274,-1,194,231,19,-1,231,194,275,-1,242,238,240,-1,218,238,242,-1,251,236,276,-1,251,234,236,-1,232,6,0,-1,232,230,6,-1,277,193,273,-1,193,277,278,-1,233,223,9,-1,235,223,233,-1,239,224,237,-1,239,4,224,-1,276,226,251,-1,276,227,226,-1,17,222,18,-1,222,17,115,-1,184,182,22,-1,184,183,182,-1,220,186,117,-1,220,208,186,-1,29,253,206,-1,29,26,253,-1,32,37,132,-1,32,36,37,-1,186,128,38,-1,129,128,186,-1,165,270,166,-1,252,270,165,-1,44,14,157,-1,14,44,15,-1,10,45,153,-1,219,45,10,-1,47,13,153,-1,87,13,47,-1,178,56,55,-1,56,178,177,-1,59,68,63,-1,58,68,59,-1,245,84,244,-1,245,78,84,-1,4,168,88,-1,4,239,168,-1,43,247,272,-1,43,246,247,-1,260,209,119,-1,260,268,209,-1,180,70,69,-1,180,160,70,-1,95,247,90,-1,95,249,247,-1,80,76,151,-1,76,80,202,-1,173,249,95,-1,173,248,249,-1,244,100,148,-1,244,84,100,-1,250,104,103,-1,104,250,271,-1,216,102,104,-1,216,279,102,-1,279,115,17,-1,216,115,279,-1,119,220,117,-1,119,209,220,-1,109,27,146,-1,109,187,27,-1,42,187,109,-1,221,42,243,-1,42,221,187,-1,205,141,121,-1,205,207,141,-1,256,214,255,-1,215,214,256,-1,30,258,125,-1,30,137,258,-1,118,260,119,-1,135,260,118,-1,266,263,262,-1,263,266,257,-1,266,280,269,-1,266,265,280,-1,280,133,267,-1,280,131,133,-1,132,200,133,-1,132,37,200,-1,32,204,116,-1,32,132,204,-1,131,265,210,-1,265,131,280,-1,267,269,280,-1,269,267,259,-1,257,269,258,-1,257,266,269,-1,263,213,261,-1,263,214,213,-1,206,254,207,-1,206,253,254,-1,141,254,138,-1,254,141,207,-1,256,143,215,-1,256,144,143,-1,138,270,141,-1,270,138,140,-1,222,204,126,-1,114,204,222,-1,232,17,19,-1,17,232,279,-1,226,264,261,-1,226,228,264,-1,225,228,226,-1,120,86,146,-1,120,217,86,-1,279,0,102,-1,232,0,279,-1,271,147,104,-1,271,148,147,-1,98,150,89,-1,150,98,172,-1,148,170,244,-1,271,170,148,-1,198,82,79,-1,82,198,272,-1,44,246,43,-1,246,44,85,-1,92,217,120,-1,217,92,91,-1,272,191,43,-1,191,272,198,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcaninec_Geo_5_211_coordIndex_3()
		{
			int[] value = {99,219,12,-1,167,219,99,-1,158,155,190,-1,158,156,155,-1,89,154,98,-1,89,88,154,-1,22,48,159,-1,22,201,48,-1,97,171,172,-1,73,171,97,-1,92,23,25,-1,117,23,92,-1,77,248,173,-1,248,77,202,-1,245,74,151,-1,74,245,75,-1,201,50,49,-1,201,182,50,-1,252,174,145,-1,252,165,174,-1,39,139,40,-1,140,139,39,-1,123,30,29,-1,123,136,30,-1,211,193,111,-1,273,193,211,-1,152,79,11,-1,152,198,79,-1,256,122,144,-1,199,122,256,-1,193,275,194,-1,193,278,275,-1,195,8,7,-1,195,274,8,-1,229,273,228,-1,273,229,277,-1,169,3,5,-1,169,196,3,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaninec_Geo_5_211_normalIndex_1()
		{
			int[] value = {26,20,16,-1,10,45,12,-1,27,20,26,-1,209,210,219,-1,97,84,88,-1,80,96,72,-1,142,73,123,-1,142,78,73,-1,150,181,153,-1,188,192,179,-1,258,227,230,-1,272,274,276,-1,156,160,180,-1,156,158,157,-1,184,157,176,-1,207,200,135,-1,172,135,200,-1,30,72,62,-1,112,114,110,-1,110,127,121,-1,161,148,141,-1,124,86,121,-1,91,115,94,-1,118,139,98,-1,92,122,147,-1,31,82,71,-1,149,147,122,-1,71,120,118,-1,79,138,135,-1,181,189,208,-1,34,99,51,-1,87,44,54,-1,47,60,95,-1,47,55,56,-1,15,54,44,-1,83,149,116,-1,110,115,113,-1,49,8,12,-1,59,81,129,-1,92,71,82,-1,136,133,141,-1,115,110,121,-1,53,59,128,-1,21,17,43,-1,23,15,52,-1,22,13,18,-1,52,126,74,-1,179,167,105,-1,174,61,172,-1,197,142,169,-1,39,111,64,-1,123,169,142,-1,126,160,132,-1,192,188,177,-1,221,202,166,-1,260,263,278,-1,257,276,248,-1,168,186,169,-1,187,165,195,-1,203,175,206,-1,173,158,180,-1,248,276,274,-1,227,235,221,-1,274,270,275,-1,271,241,240,-1,266,252,260,-1,234,247,232,-1,221,183,227,-1,177,166,202,-1,167,160,126,-1,74,111,39,-1,59,129,128,-1,19,6,23,-1,20,25,1,-1,60,70,99,-1,34,21,43,-1,77,97,102,-1,38,63,101,-1,130,96,98,-1,131,140,127,-1,134,164,170,-1,189,151,178,-1,133,190,193,-1,135,172,79,-1,77,84,97,-1,76,43,17,-1,114,112,101,-1,67,63,38,-1,25,2,1,-1,51,5,4,-1,17,21,0,-1,166,177,129,-1,105,42,53,-1,204,181,208,-1,149,139,147,-1,61,174,82,-1,58,71,104,-1,174,92,82,-1,106,100,98,-1,85,75,65,-1,94,121,86,-1,164,121,161,-1,159,154,161,-1,114,127,110,-1,121,94,115,-1,136,162,204,-1,160,156,132,-1,223,232,204,-1,173,192,163,-1,157,158,176,-1,230,227,215,-1,20,14,16,-1,109,151,117,-1,50,80,72,-1,80,50,77,-1,24,2,25,-1,142,191,137,-1,189,178,199,-1,137,78,142,-1,24,3,2,-1,191,142,197,-1,90,95,99,-1,77,50,57,-1,113,115,106,-1,278,265,270,-1,176,196,184,-1,193,207,135,-1,223,204,208,-1,133,135,138,-1,204,190,136,-1,127,146,121,-1,141,170,161,-1,164,124,121,-1,75,58,65,-1,58,31,71,-1,183,116,122,-1,149,130,139,-1,135,133,193,-1,105,53,128,-1,88,90,34,-1,69,44,87,-1,95,84,47,-1,128,129,179,-1,34,51,4,-1,38,49,67,-1,101,131,114,-1,17,38,76,-1,181,162,153,-1,150,140,151,-1,134,119,164,-1,114,131,127,-1,98,139,130,-1,31,79,61,-1,101,76,38,-1,102,80,77,-1,34,43,88,-1,60,99,95,-1,0,14,1,-1,1,14,20,-1,105,167,52,-1,167,126,52,-1,183,92,174,-1,183,122,92,-1,74,132,111,-1,132,152,111,-1,167,180,160,-1,234,232,223,-1,265,278,263,-1,255,254,250,-1,227,257,235,-1,165,155,185,-1,175,186,168,-1,168,152,175,-1,197,169,201,-1,203,186,175,-1,217,197,220,-1,257,248,235,-1,277,280,251,-1,183,221,166,-1,177,163,192,-1,179,192,173,-1,126,132,74,-1,39,64,29,-1,61,79,172,-1,105,128,179,-1,74,23,52,-1,90,88,95,-1,42,105,44,-1,124,164,119,-1,153,140,150,-1,150,189,181,-1,136,141,148,-1,134,133,138,-1,92,120,71,-1,12,45,49,-1,116,103,83,-1,144,178,151,-1,47,56,60,-1,34,90,99,-1,133,136,190,-1,118,104,71,-1,116,149,122,-1,134,141,133,-1,31,61,82,-1,147,120,92,-1,98,100,118,-1,94,65,91,-1,96,106,98,-1,159,146,153,-1,170,164,161,-1,112,110,102,-1,88,93,97,-1,148,161,154,-1,30,50,72,-1,141,134,170,-1,155,171,185,-1,155,165,163,-1,196,176,187,-1,156,180,158,-1,230,215,225,-1,278,255,260,-1,258,257,227,-1,181,204,162,-1,111,125,64,-1,151,189,150,-1,84,95,88,-1,209,219,222,-1,27,24,20,-1,10,41,45,-1,244,268,261,-1,20,24,25,-1,239,261,237,-1,261,239,244,-1,28,78,89,-1,33,78,28,-1,228,249,229,-1,249,228,245,-1,66,108,68,-1,108,66,107,-1,144,182,178,-1,144,145,182,-1,80,106,96,-1,80,113,106,-1,67,117,63,-1,67,109,117,-1,276,258,272,-1,276,257,258,-1,158,163,176,-1,158,173,163,-1,222,208,209,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaninec_Geo_5_211_normalIndex_2()
		{
			int[] value = {222,223,208,-1,200,231,172,-1,200,241,231,-1,148,162,136,-1,148,154,162,-1,86,65,94,-1,86,85,65,-1,91,118,100,-1,91,104,118,-1,7,51,40,-1,51,7,5,-1,2,8,1,-1,2,12,8,-1,68,109,67,-1,68,108,109,-1,59,35,81,-1,35,59,36,-1,189,209,208,-1,189,199,209,-1,140,117,151,-1,140,131,117,-1,85,134,75,-1,85,119,134,-1,31,75,79,-1,58,75,31,-1,93,101,112,-1,93,76,101,-1,48,55,46,-1,48,56,55,-1,11,0,4,-1,14,0,11,-1,14,13,16,-1,11,13,14,-1,18,39,29,-1,19,39,18,-1,249,277,251,-1,273,277,249,-1,173,167,179,-1,173,180,167,-1,222,234,223,-1,222,229,234,-1,252,232,247,-1,232,252,233,-1,246,231,253,-1,246,225,231,-1,270,279,275,-1,265,279,270,-1,259,279,265,-1,275,262,256,-1,279,262,275,-1,224,235,248,-1,224,214,235,-1,269,242,264,-1,243,242,269,-1,218,242,220,-1,242,218,236,-1,195,211,206,-1,211,195,205,-1,186,201,169,-1,201,186,203,-1,201,220,197,-1,201,218,220,-1,205,165,185,-1,205,195,165,-1,217,242,243,-1,217,220,242,-1,224,205,214,-1,224,211,205,-1,248,226,224,-1,256,226,248,-1,279,264,262,-1,280,264,279,-1,233,266,238,-1,233,252,266,-1,251,229,249,-1,229,251,234,-1,123,168,169,-1,125,168,123,-1,269,273,268,-1,269,277,273,-1,74,19,23,-1,74,39,19,-1,22,16,13,-1,26,16,22,-1,4,9,11,-1,4,5,9,-1,44,52,15,-1,44,105,52,-1,46,37,36,-1,46,55,37,-1,130,83,62,-1,130,149,83,-1,81,83,103,-1,81,35,83,-1,86,119,85,-1,124,119,86,-1,109,144,151,-1,108,144,109,-1,69,56,48,-1,69,60,56,-1,70,54,40,-1,70,87,54,-1,65,104,91,-1,104,65,58,-1,241,253,231,-1,241,271,253,-1,240,193,238,-1,240,207,193,-1,196,195,206,-1,196,187,195,-1,225,258,230,-1,246,258,225,-1,272,255,278,-1,255,272,254,-1,243,213,217,-1,239,213,243,-1,263,252,247,-1,263,260,252,-1,178,198,199,-1,178,182,198,-1,137,89,78,-1,89,137,143,-1,145,108,107,-1,144,108,145,-1,273,245,267,-1,273,249,245,-1,33,27,26,-1,33,28,27,-1,212,191,213,-1,191,212,194,-1,228,222,219,-1,229,222,228,-1,68,41,66,-1,68,45,41,-1,267,268,273,-1,267,261,268,-1,73,125,123,-1,125,73,64,-1,162,159,153,-1,162,154,159,-1,171,163,177,-1,171,155,163,-1,272,246,254,-1,272,258,246,-1,156,184,175,-1,156,157,184,-1,163,187,176,-1,165,187,163,-1,190,238,193,-1,233,238,190,-1,62,96,130,-1,96,62,72,-1,97,112,102,-1,93,112,97,-1,110,80,102,-1,113,80,110,-1,100,115,91,-1,115,100,106,-1,139,120,147,-1,118,120,139,-1,40,15,7,-1,40,54,15,-1,45,67,49,-1,45,68,67,-1,30,36,37,-1,30,35,36,-1,214,185,202,-1,214,205,185,-1,75,138,79,-1,75,134,138,-1,53,36,59,-1,53,46,36,-1,60,87,70,-1,87,60,69,-1,42,46,53,-1,42,48,46,-1,7,23,6,-1,7,15,23,-1,11,18,13,-1,18,11,9,-1,29,22,18,-1,29,32,22,-1,32,64,73,-1,29,64,32,-1,202,171,177,-1,202,185,171,-1,174,227,183,-1,174,215,227,-1,172,215,174,-1,225,172,231,-1,172,225,215,-1,255,266,260,-1,255,250,266,-1,259,280,279,-1,251,280,259,-1,274,256,248,-1,274,275,256,-1,221,214,202,-1,235,214,221,-1,236,264,242,-1,264,236,262,-1,236,216,226,-1,236,218,216,-1,216,206,211,-1,216,203,206,-1,175,196,206,-1,175,184,196,-1,156,152,132,-1,156,175,152,-1,203,218,201,-1,218,203,216,-1,211,226,216,-1,226,211,224,-1,262,226,256,-1,262,236,226,-1,264,277,269,-1,264,280,277,-1,254,253,250,-1,254,246,253,-1,266,253,271,-1,253,266,250,-1,259,234,251,-1,259,247,234,-1,271,238,266,-1,238,271,240,-1,125,152,168,-1,111,152,125,-1,33,73,78,-1,73,33,32,-1,268,243,269,-1,268,239,243,-1,244,239,268,-1,166,116,183,-1,166,103,116,-1,32,26,22,-1,33,26,32,-1,9,19,18,-1,9,6,19,-1,17,1,8,-1,1,17,0,-1,6,5,7,-1,9,5,6,-1,57,55,47,-1,55,57,37,-1,62,35,30,-1,35,62,83,-1,129,103,166,-1,103,129,81,-1,37,50,30,-1,50,37,57,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcaninec_Geo_5_211_normalIndex_3()
		{
			int[] value = {43,93,88,-1,76,93,43,-1,131,63,117,-1,131,101,63,-1,8,38,17,-1,8,49,38,-1,153,127,140,-1,153,146,127,-1,21,4,0,-1,34,4,21,-1,129,188,179,-1,177,188,129,-1,44,48,42,-1,48,44,69,-1,40,99,70,-1,99,40,51,-1,146,161,121,-1,146,159,161,-1,233,204,232,-1,233,190,204,-1,207,241,200,-1,240,241,207,-1,278,274,272,-1,278,270,274,-1,217,191,197,-1,213,191,217,-1,77,47,84,-1,77,57,47,-1,259,263,247,-1,265,263,259,-1,191,143,137,-1,191,194,143,-1,199,210,209,-1,199,198,210,-1,237,213,239,-1,213,237,212,-1,2,10,12,-1,2,3,10,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaniner_Geo_5_217_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,9,21,22,-1,23,24,25,-1,26,16,27,-1,28,29,30,-1,28,31,29,-1,32,33,34,-1,35,36,37,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,50,10,9,-1,51,52,53,-1,54,55,56,-1,57,58,17,-1,59,60,61,-1,62,33,32,-1,63,64,65,-1,63,66,64,-1,67,68,69,-1,70,68,67,-1,71,72,73,-1,68,74,75,-1,76,77,78,-1,79,80,81,-1,82,48,47,-1,83,54,56,-1,60,84,85,-1,33,61,86,-1,87,32,88,-1,89,90,43,-1,50,91,88,-1,92,34,86,-1,93,94,95,-1,96,92,24,-1,97,25,98,-1,99,10,100,-1,82,101,102,-1,103,28,104,-1,18,53,52,-1,105,17,58,-1,106,11,10,-1,21,107,108,-1,109,110,111,-1,7,112,8,-1,113,114,115,-1,116,117,118,-1,119,120,121,-1,122,123,124,-1,125,124,126,-1,121,127,119,-1,119,128,120,-1,116,118,129,-1,115,130,113,-1,7,131,112,-1,109,132,110,-1,10,99,106,-1,15,27,16,-1,19,133,134,-1,103,62,28,-1,82,102,135,-1,99,100,92,-1,97,23,25,-1,96,99,92,-1,95,40,93,-1,92,100,34,-1,50,22,91,-1,89,136,90,-1,87,88,91,-1,33,86,34,-1,60,35,84,-1,11,106,16,-1,83,56,137,-1,138,139,140,-1,82,141,48,-1,79,142,80,-1,76,143,77,-1,75,69,68,-1,71,67,72,-1,70,127,68,-1,69,72,67,-1,144,145,146,-1,144,147,145,-1,62,103,33,-1,59,36,60,-1,148,57,17,-1,149,150,151,-1,51,107,52,-1,50,100,10,-1,47,49,152,-1,44,46,153,-1,41,43,90,-1,38,154,39,-1,35,60,36,-1,32,34,88,-1,26,11,16,-1,23,96,24,-1,9,22,50,-1,18,20,53,-1,19,134,20,-1,105,15,17,-1,11,26,9,-1,6,8,155,-1,156,157,158,-1,156,159,157,-1,5,160,3,-1,160,5,161,-1,162,163,164,-1,128,165,120,-1,128,166,165,-1,117,167,118,-1,117,168,167,-1,169,113,170,-1,113,169,114,-1,112,171,172,-1,131,171,112,-1,109,173,174,-1,109,111,173,-1,175,176,177,-1,175,178,176,-1,179,149,55,-1,149,179,180,-1,107,181,108,-1,107,51,181,-1,182,183,184,-1,182,185,183,-1,186,138,187,-1,139,138,186,-1,97,57,23,-1,188,57,97,-1,52,15,18,-1,15,52,27,-1,189,133,19,-1,189,190,133,-1,137,191,140,-1,192,191,137,-1,193,194,195,-1,196,194,193,-1,103,197,59,-1,103,104,197,-1,135,141,82,-1,141,135,198,-1,199,200,201,-1,199,202,200,-1,203,204,205,-1,204,203,206,-1,207,208,39,-1,209,208,207,-1,97,210,211,-1,97,98,210,-1,212,213,214,-1,213,212,215,-1,216,217,218,-1,216,180,217,-1,39,93,40,-1,208,93,39,-1,219,25,84,-1,98,25,219,-1,100,88,34,-1,100,50,88,-1,220,46,152,-1,220,215,46,-1,221,222,218,-1,222,221,223,-1,136,207,90,-1,136,209,207,-1,60,86,61,-1,60,85,86,-1,196,224,194,-1,225,224,196,-1,226,227,225,-1,226,95,227,-1,228,221,229,-1,228,230,221,-1,135,231,232,-1,135,102,231,-1,41,233,234,-1,233,41,235,-1,236,237,238,-1,237,236,230,-1,133,185,182,-1,185,133,190,-1,138,14,239,-1,138,140,14,-1,240,80,195,-1,81,80,240,-1,47,101,82,-1,101,47,45,-1,241,242,243,-1,241,244,242,-1,245,246,247,-1,245,65,246,-1,248,193,249,-1,248,250,193,-1,251,80,142,-1,251,249,80,-1,252,76,78,-1,253,76,252,-1,254,255,256,-1,255,254,232,-1,257,258,259,-1,258,257,244,-1,63,260,177,-1,260,63,261,-1,251,173,262,-1,263,173,251,-1,76,112,143,-1,8,112,76,-1,169,264,256,-1,169,158,264,-1,167,265,259,-1,167,266,265,-1,176,267,66,-1,176,268,267,-1,269,160,270,-1,269,3,160,-1,271,156,170,-1,271,272,156,-1,117,75,273,-1,75,117,116,-1,73,274,275,-1,73,175,274,-1,276,277,278,-1,276,174,277,-1,7,279,131,-1,280,279,7,-1,125,122,124,-1,281,122,125,-1,282,283,284,-1,282,285,283,-1,286,287,273,-1,286,288,287,-1,289,122,290,-1,123,122,289,-1,291,278,281,-1,291,276,278,-1,127,74,68,-1,127,121,74,-1,270,292,269,-1,270,293,292,-1,294,295,71,-1,161,295,294,-1,294,293,270,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaniner_Geo_5_217_coordIndex_2()
		{
			int[] value = {294,275,293,-1,276,269,292,-1,291,269,276,-1,288,120,165,-1,286,120,288,-1,296,165,0,-1,296,288,165,-1,279,297,298,-1,280,297,279,-1,2,284,283,-1,284,2,299,-1,272,159,156,-1,272,300,159,-1,289,131,279,-1,289,171,131,-1,292,174,276,-1,292,109,174,-1,178,73,72,-1,73,178,175,-1,168,273,287,-1,273,168,117,-1,283,0,2,-1,296,0,283,-1,3,291,301,-1,269,291,3,-1,163,284,299,-1,284,163,162,-1,177,66,63,-1,177,176,66,-1,259,118,167,-1,118,259,258,-1,114,256,255,-1,114,169,256,-1,8,253,155,-1,8,76,253,-1,142,263,251,-1,302,263,142,-1,110,261,303,-1,110,260,261,-1,261,65,245,-1,261,63,65,-1,244,304,258,-1,304,244,241,-1,232,305,255,-1,305,232,231,-1,306,252,30,-1,306,253,252,-1,249,195,80,-1,249,193,195,-1,247,147,245,-1,147,247,145,-1,307,243,206,-1,307,241,243,-1,45,199,101,-1,199,45,44,-1,103,61,33,-1,103,59,61,-1,17,106,148,-1,106,17,16,-1,239,13,308,-1,239,14,13,-1,55,151,56,-1,55,149,151,-1,134,182,309,-1,182,134,133,-1,27,107,26,-1,107,27,52,-1,230,204,237,-1,204,230,228,-1,235,310,233,-1,310,235,154,-1,198,232,254,-1,198,135,232,-1,153,311,44,-1,311,153,312,-1,229,42,228,-1,42,229,43,-1,311,238,202,-1,238,311,236,-1,219,225,227,-1,224,225,219,-1,313,225,196,-1,226,225,313,-1,31,254,29,-1,31,198,254,-1,77,197,78,-1,314,197,77,-1,315,223,312,-1,315,222,223,-1,152,316,220,-1,316,152,49,-1,227,98,219,-1,210,98,227,-1,180,89,217,-1,180,179,89,-1,315,214,184,-1,214,315,212,-1,21,316,22,-1,21,108,316,-1,208,187,93,-1,186,187,208,-1,205,246,203,-1,205,234,246,-1,202,242,200,-1,202,238,242,-1,317,198,31,-1,317,141,198,-1,195,37,240,-1,194,37,195,-1,145,318,146,-1,310,318,145,-1,151,189,319,-1,151,190,189,-1,140,12,14,-1,191,12,140,-1,211,188,97,-1,308,188,211,-1,320,139,186,-1,83,139,320,-1,309,184,214,-1,309,182,184,-1,26,21,9,-1,26,107,21,-1,274,177,260,-1,274,175,177,-1,172,321,302,-1,171,321,172,-1,170,158,169,-1,170,156,158,-1,166,0,165,-1,166,1,0,-1,168,266,167,-1,168,322,266,-1,157,6,155,-1,159,6,157,-1,263,174,173,-1,277,174,263,-1,178,268,176,-1,178,323,268,-1,55,324,179,-1,55,54,324,-1,213,51,325,-1,51,213,181,-1,185,216,183,-1,185,150,216,-1,187,239,326,-1,138,239,187,-1,148,23,57,-1,148,96,23,-1,13,327,328,-1,12,327,13,-1,329,137,56,-1,329,192,137,-1,250,196,193,-1,313,196,250,-1,314,59,197,-1,36,59,314,-1,101,201,102,-1,101,199,201,-1,237,206,243,-1,237,204,206,-1,209,186,208,-1,320,186,209,-1,94,211,210,-1,326,211,94,-1,181,215,220,-1,181,213,215,-1,218,183,216,-1,183,218,222,-1,324,209,136,-1,324,320,209,-1,24,84,25,-1,24,85,84,-1,153,215,212,-1,215,153,46,-1,218,229,221,-1,218,217,229,-1,104,30,252,-1,104,28,30,-1,38,310,154,-1,38,318,310,-1,194,35,37,-1,224,35,194,-1,38,95,226,-1,38,40,95,-1,235,90,207,-1,235,41,90,-1,230,223,221,-1,230,236,223,-1,45,152,46,-1,45,47,152,-1,102,330,231,-1,102,201,330,-1,234,42,41,-1,234,205,42,-1,53,325,51,-1,325,53,20,-1,190,150,185,-1,150,190,151,-1,57,328,58,-1,57,188,328,-1,314,81,240,-1,77,81,314,-1,317,32,87,-1,317,62,32,-1,244,200,242,-1,244,257,200,-1,203,65,64,-1,65,203,246,-1,144,250,248,-1,144,146,250,-1,262,249,251,-1,262,248,249,-1,29,256,264,-1,256,29,254,-1,330,259,265,-1,259,330,257,-1,307,66,267,-1,66,307,64,-1,144,303,147,-1,331,303,144,-1,111,262,173,-1,111,331,262,-1,143,172,79,-1,112,172,143,-1,306,158,157,-1,158,306,264,-1,305,266,115,-1,266,305,265,-1,304,268,129,-1,268,304,267,-1,170,282,271,-1,113,282,170,-1,161,270,160,-1,294,270,161,-1,332,130,322,-1,332,285,130,-1,113,285,282,-1,113,130,285,-1,69,116,323,-1,69,75,116,-1,275,132,293,-1,275,274,132,-1,278,321,290,-1,278,277,321,-1,333,7,6,-1,333,280,7,-1,281,301,291,-1,301,281,125,-1,334,333,300,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcaniner_Geo_5_217_coordIndex_3()
		{
			int[] value = {334,335,333,-1,164,271,162,-1,164,272,271,-1,74,273,75,-1,74,286,273,-1,279,123,289,-1,279,298,123,-1,125,336,301,-1,125,126,336,-1,286,121,120,-1,74,121,286,-1,4,301,336,-1,4,3,301,-1,295,67,71,-1,295,70,67,-1,71,275,294,-1,71,73,275,-1,281,290,122,-1,281,278,290,-1,280,335,297,-1,335,280,333,-1,332,288,296,-1,288,332,287,-1,164,300,272,-1,164,334,300,-1,6,300,333,-1,300,6,159,-1,171,290,321,-1,289,290,171,-1,293,109,292,-1,293,132,109,-1,72,323,178,-1,72,69,323,-1,287,322,168,-1,332,322,287,-1,285,296,283,-1,332,296,285,-1,284,271,282,-1,284,162,271,-1,129,258,304,-1,129,118,258,-1,255,115,114,-1,115,255,305,-1,253,157,155,-1,157,253,306,-1,302,79,172,-1,302,142,79,-1,303,111,110,-1,111,303,331,-1,245,303,261,-1,303,245,147,-1,267,241,307,-1,267,304,241,-1,231,265,305,-1,265,231,330,-1,264,30,29,-1,264,306,30,-1,79,77,143,-1,79,81,77,-1,331,248,262,-1,331,144,248,-1,206,64,307,-1,64,206,203,-1,44,202,199,-1,202,44,311,-1,87,141,317,-1,141,87,48,-1,308,328,188,-1,308,13,328,-1,83,140,139,-1,83,137,140,-1,20,309,325,-1,309,20,134,-1,228,205,204,-1,205,228,42,-1,257,201,200,-1,201,257,330,-1,236,312,223,-1,236,311,312,-1,207,154,235,-1,154,207,39,-1,84,224,219,-1,35,224,84,-1,318,226,313,-1,38,226,318,-1,91,48,87,-1,48,91,49,-1,78,104,252,-1,197,104,78,-1,217,43,229,-1,217,89,43,-1,212,312,153,-1,212,315,312,-1,22,49,91,-1,22,316,49,-1,85,92,86,-1,24,92,85,-1,95,210,227,-1,94,210,95,-1,179,136,89,-1,179,324,136,-1,222,184,183,-1,184,222,315,-1,220,108,181,-1,108,220,316,-1,93,326,94,-1,187,326,93,-1,234,247,246,-1,234,233,247,-1,238,243,242,-1,238,237,243,-1,247,310,145,-1,233,310,247,-1,62,31,28,-1,62,317,31,-1,240,36,314,-1,37,36,240,-1,313,146,318,-1,313,250,146,-1,319,56,151,-1,56,319,329,-1,105,328,327,-1,105,58,328,-1,96,106,99,-1,148,106,96,-1,308,326,239,-1,308,211,326,-1,150,180,216,-1,150,149,180,-1,325,214,213,-1,325,309,214,-1,54,320,324,-1,54,83,320,-1,323,129,268,-1,323,116,129,-1,260,132,274,-1,132,260,110,-1,302,277,263,-1,321,277,302,-1,322,115,266,-1,322,130,115,-1,327,15,105,-1,12,15,327,-1,19,319,189,-1,19,329,319,-1,18,329,19,-1,18,192,329,-1,18,191,192,-1,15,191,18,-1,191,15,12,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaniner_Geo_5_217_normalIndex_1()
		{
			int[] value = {257,250,230,-1,109,98,141,-1,101,87,48,-1,140,114,102,-1,125,74,89,-1,143,122,95,-1,162,174,228,-1,140,179,159,-1,4,21,6,-1,150,122,142,-1,137,164,132,-1,137,170,164,-1,136,99,69,-1,7,2,10,-1,97,116,86,-1,213,253,227,-1,280,244,241,-1,219,197,196,-1,107,114,140,-1,229,177,206,-1,204,212,184,-1,15,65,95,-1,38,16,58,-1,139,99,136,-1,233,246,220,-1,233,264,246,-1,283,327,302,-1,295,327,283,-1,240,284,259,-1,327,335,333,-1,45,1,31,-1,11,35,8,-1,214,197,219,-1,160,204,184,-1,16,5,27,-1,99,58,47,-1,172,136,111,-1,231,198,227,-1,107,166,111,-1,61,69,47,-1,70,36,57,-1,73,61,21,-1,14,6,25,-1,110,114,78,-1,214,249,239,-1,100,137,81,-1,162,206,177,-1,124,95,65,-1,79,102,114,-1,179,190,209,-1,115,153,128,-1,87,12,48,-1,205,217,237,-1,330,313,311,-1,334,314,336,-1,46,19,44,-1,54,44,49,-1,336,332,334,-1,334,306,314,-1,330,311,321,-1,237,226,205,-1,87,26,12,-1,115,147,153,-1,114,110,79,-1,143,142,122,-1,174,263,258,-1,100,139,137,-1,214,239,207,-1,110,78,61,-1,14,4,6,-1,73,110,61,-1,57,86,70,-1,61,78,69,-1,107,159,166,-1,231,210,198,-1,172,111,166,-1,99,47,69,-1,16,7,5,-1,102,79,122,-1,160,184,149,-1,92,127,113,-1,214,189,197,-1,11,39,35,-1,45,9,1,-1,333,302,327,-1,240,283,284,-1,295,332,327,-1,302,284,283,-1,117,138,106,-1,117,146,138,-1,139,100,99,-1,38,2,16,-1,62,15,95,-1,211,251,221,-1,229,190,177,-1,107,78,114,-1,219,196,216,-1,280,241,266,-1,213,227,198,-1,97,133,116,-1,7,16,2,-1,136,69,111,-1,150,102,122,-1,4,73,21,-1,140,159,107,-1,162,228,206,-1,174,258,228,-1,124,143,95,-1,102,150,140,-1,101,48,85,-1,158,126,161,-1,158,131,126,-1,141,148,109,-1,148,141,185,-1,180,181,154,-1,306,274,314,-1,306,272,274,-1,313,288,311,-1,313,282,288,-1,200,205,183,-1,205,200,217,-1,12,17,13,-1,26,17,12,-1,115,96,93,-1,115,128,96,-1,252,265,236,-1,252,275,265,-1,224,211,212,-1,211,224,247,-1,190,232,209,-1,190,229,232,-1,309,328,312,-1,309,319,328,-1,123,92,72,-1,127,92,123,-1,14,15,4,-1,22,15,14,-1,177,143,162,-1,143,177,142,-1,176,263,174,-1,176,261,263,-1,149,134,113,-1,152,134,149,-1,53,28,23,-1,50,28,53,-1,100,32,38,-1,100,81,32,-1,207,189,214,-1,189,207,186,-1,271,293,270,-1,271,294,293,-1,243,285,256,-1,285,243,287,-1,163,121,116,-1,168,121,163,-1,14,34,37,-1,14,25,34,-1,281,255,292,-1,255,281,248,-1,301,254,304,-1,301,247,254,-1,116,70,86,-1,121,70,116,-1,18,6,5,-1,25,6,18,-1,78,111,69,-1,78,107,111,-1,223,241,216,-1,223,248,241,-1,310,331,304,-1,331,310,329,-1,210,163,198,-1,210,168,163,-1,16,47,58,-1,16,27,47,-1,50,24,28,-1,40,24,50,-1,67,33,40,-1,67,57,33,-1,278,310,273,-1,278,307,310,-1,207,242,215,-1,207,239,242,-1,213,173,225,-1,173,213,169,-1,324,305,315,-1,305,324,307,-1,263,319,309,-1,319,263,261,-1,92,89,59,-1,92,113,89,-1,3,35,23,-1,8,35,3,-1,219,249,214,-1,249,219,244,-1,320,318,316,-1,320,325,318,-1,182,222,175,-1,182,220,222,-1,88,53,56,-1,88,80,53,-1,55,35,39,-1,55,56,35,-1,90,45,31,-1,82,45,90,-1,192,218,194,-1,218,192,215,-1,297,322,291,-1,322,297,325,-1,233,188,236,-1,188,233,187,-1,55,96,94,-1,60,96,55,-1,45,12,9,-1,48,12,45,-1,200,156,194,-1,200,161,156,-1,288,276,291,-1,288,268,276,-1,265,296,264,-1,265,290,296,-1,108,148,144,-1,108,109,148,-1,178,158,183,-1,178,155,158,-1,313,333,323,-1,333,313,330,-1,259,195,193,-1,259,252,195,-1,84,68,66,-1,84,93,68,-1,87,29,26,-1,91,29,87,-1,54,46,44,-1,63,46,54,-1,199,235,201,-1,199,234,235,-1,317,286,323,-1,317,279,286,-1,20,46,52,-1,19,46,20,-1,77,66,63,-1,77,84,66,-1,332,335,327,-1,332,336,335,-1,144,112,108,-1,144,145,112,-1,191,238,240,-1,185,238,191,-1,191,145,144,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaniner_Geo_5_217_normalIndex_2()
		{
			int[] value = {191,193,145,-1,84,108,112,-1,77,108,84,-1,279,314,274,-1,317,314,279,-1,267,274,257,-1,267,279,274,-1,29,83,30,-1,91,83,29,-1,230,201,235,-1,201,230,203,-1,155,131,158,-1,155,130,131,-1,20,26,29,-1,20,17,26,-1,112,93,84,-1,112,115,93,-1,275,259,284,-1,259,275,252,-1,282,323,286,-1,323,282,313,-1,235,257,230,-1,267,257,235,-1,109,77,75,-1,108,77,109,-1,181,201,203,-1,201,181,180,-1,236,264,233,-1,236,265,264,-1,291,311,288,-1,311,291,322,-1,217,194,218,-1,217,200,194,-1,48,82,85,-1,48,45,82,-1,39,60,55,-1,42,60,39,-1,153,187,151,-1,153,188,187,-1,187,220,182,-1,187,233,220,-1,325,326,322,-1,326,325,320,-1,215,245,218,-1,245,215,242,-1,119,90,132,-1,119,82,90,-1,56,23,35,-1,56,53,23,-1,175,146,182,-1,146,175,138,-1,289,316,287,-1,289,320,316,-1,244,271,249,-1,271,244,280,-1,100,58,99,-1,100,38,58,-1,95,79,62,-1,79,95,122,-1,59,74,43,-1,59,89,74,-1,212,221,184,-1,212,211,221,-1,258,309,298,-1,309,258,263,-1,142,190,150,-1,190,142,177,-1,307,285,305,-1,285,307,278,-1,169,135,173,-1,135,169,133,-1,186,215,192,-1,186,207,215,-1,266,300,280,-1,300,266,303,-1,273,253,278,-1,253,273,227,-1,300,315,294,-1,315,300,324,-1,18,40,33,-1,24,40,18,-1,76,40,50,-1,67,40,76,-1,170,192,164,-1,170,186,192,-1,1,32,31,-1,0,32,1,-1,308,329,303,-1,308,331,329,-1,216,202,223,-1,202,216,196,-1,33,25,18,-1,34,25,33,-1,247,231,254,-1,247,224,231,-1,308,292,312,-1,292,308,281,-1,179,202,159,-1,179,209,202,-1,121,72,70,-1,123,72,121,-1,256,222,243,-1,256,225,222,-1,294,318,293,-1,294,315,318,-1,167,186,170,-1,167,189,186,-1,23,10,3,-1,28,10,23,-1,138,103,106,-1,135,103,138,-1,221,176,171,-1,221,261,176,-1,113,125,89,-1,134,125,113,-1,37,22,14,-1,43,22,37,-1,165,127,123,-1,160,127,165,-1,298,312,292,-1,298,309,312,-1,150,179,140,-1,150,190,179,-1,195,236,188,-1,195,252,236,-1,13,51,42,-1,17,51,13,-1,183,161,200,-1,183,158,161,-1,272,257,274,-1,272,250,257,-1,282,268,288,-1,282,262,268,-1,126,101,85,-1,131,101,126,-1,60,93,96,-1,68,93,60,-1,275,290,265,-1,275,299,290,-1,212,208,224,-1,212,204,208,-1,255,229,260,-1,229,255,232,-1,319,301,328,-1,319,251,301,-1,72,59,41,-1,92,59,72,-1,62,4,15,-1,62,73,4,-1,74,120,64,-1,125,120,74,-1,157,149,184,-1,157,152,149,-1,80,50,53,-1,76,50,80,-1,0,38,32,-1,2,38,0,-1,249,270,239,-1,249,271,270,-1,305,287,316,-1,305,285,287,-1,168,123,121,-1,165,123,168,-1,36,37,34,-1,41,37,36,-1,232,248,223,-1,232,255,248,-1,304,328,301,-1,328,304,331,-1,208,168,210,-1,208,165,168,-1,21,5,6,-1,21,27,5,-1,266,248,281,-1,248,266,241,-1,304,273,310,-1,304,254,273,-1,81,132,90,-1,81,137,132,-1,97,135,133,-1,97,103,135,-1,28,7,10,-1,24,7,28,-1,97,57,67,-1,97,86,57,-1,169,198,163,-1,169,213,198,-1,307,329,310,-1,307,324,329,-1,244,216,241,-1,244,219,216,-1,239,277,242,-1,239,270,277,-1,225,253,213,-1,225,256,253,-1,206,260,229,-1,260,206,228,-1,261,251,319,-1,251,261,221,-1,15,64,65,-1,15,22,64,-1,0,8,3,-1,1,8,0,-1,167,136,172,-1,167,139,136,-1,325,293,318,-1,325,297,293,-1,243,220,246,-1,220,243,222,-1,117,80,88,-1,117,106,80,-1,94,56,55,-1,94,88,56,-1,164,194,156,-1,194,164,192,-1,277,291,276,-1,291,277,297,-1,289,264,296,-1,264,289,246,-1,117,151,146,-1,118,151,117,-1,128,94,96,-1,128,118,94,-1,9,13,11,-1,12,13,9,-1,119,161,126,-1,161,119,156,-1,245,268,237,-1,268,245,276,-1,326,290,321,-1,290,326,296,-1,183,199,178,-1,205,199,183,-1,185,144,148,-1,191,144,185,-1,269,226,262,-1,269,234,226,-1,205,234,199,-1,205,226,234,-1,302,330,299,-1,302,333,330,-1,193,147,145,-1,193,195,147,-1,66,51,52,-1,66,68,51,-1,104,87,101,-1,104,91,87,-1,63,75,77,-1,75,63,54,-1,129,104,130,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcaniner_Geo_5_217_normalIndex_3()
		{
			int[] value = {129,105,104,-1,154,178,180,-1,154,155,178,-1,335,323,333,-1,335,317,323,-1,29,19,20,-1,29,30,19,-1,54,71,75,-1,54,49,71,-1,317,336,314,-1,335,336,317,-1,98,75,71,-1,98,109,75,-1,238,283,240,-1,238,295,283,-1,240,193,191,-1,240,259,193,-1,63,52,46,-1,63,66,52,-1,91,105,83,-1,105,91,104,-1,269,279,267,-1,279,269,286,-1,154,130,155,-1,154,129,130,-1,101,130,104,-1,130,101,131,-1,17,52,51,-1,20,52,17,-1,145,115,112,-1,145,147,115,-1,284,299,275,-1,284,302,299,-1,286,262,282,-1,269,262,286,-1,234,267,235,-1,269,267,234,-1,201,178,199,-1,201,180,178,-1,321,322,326,-1,321,311,322,-1,218,237,217,-1,237,218,245,-1,82,126,85,-1,126,82,119,-1,42,11,13,-1,42,39,11,-1,151,128,153,-1,128,151,118,-1,182,151,187,-1,151,182,146,-1,296,320,289,-1,296,326,320,-1,242,276,245,-1,276,242,277,-1,156,132,164,-1,156,119,132,-1,11,1,9,-1,11,8,1,-1,118,88,94,-1,118,117,88,-1,287,246,289,-1,246,287,243,-1,280,294,271,-1,294,280,300,-1,172,189,167,-1,189,172,197,-1,43,64,22,-1,43,74,64,-1,160,113,127,-1,160,149,113,-1,228,298,260,-1,298,228,258,-1,278,256,285,-1,256,278,253,-1,297,270,293,-1,270,297,277,-1,324,303,329,-1,324,300,303,-1,163,133,169,-1,133,163,116,-1,5,24,18,-1,7,24,5,-1,103,67,76,-1,97,67,103,-1,166,197,172,-1,197,166,196,-1,31,81,90,-1,32,81,31,-1,254,227,273,-1,254,231,227,-1,281,303,266,-1,281,308,303,-1,159,196,166,-1,159,202,196,-1,27,61,47,-1,21,61,27,-1,57,34,33,-1,36,34,57,-1,224,210,231,-1,224,208,210,-1,331,312,328,-1,312,331,308,-1,223,209,232,-1,209,223,202,-1,70,41,36,-1,72,41,70,-1,225,175,222,-1,225,173,175,-1,315,316,318,-1,315,305,316,-1,175,135,138,-1,173,135,175,-1,139,170,137,-1,139,167,170,-1,3,2,0,-1,10,2,3,-1,76,106,103,-1,76,80,106,-1,171,184,221,-1,184,171,157,-1,124,64,120,-1,124,65,64,-1,73,79,110,-1,62,79,73,-1,43,41,59,-1,43,37,41,-1,251,247,301,-1,251,211,247,-1,260,292,255,-1,260,298,292,-1,204,165,208,-1,204,160,165,-1,299,321,290,-1,299,330,321,-1,188,147,195,-1,147,188,153,-1,42,68,60,-1,51,68,42,-1,262,237,268,-1,262,226,237,-1,120,143,124,-1,125,143,120,-1,174,171,176,-1,174,157,171,-1,162,157,174,-1,162,152,157,-1,162,134,152,-1,143,134,162,-1,134,143,125,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaninlc_Geo_5_223_coordIndex_2()
		{
			int[] value = {60,147,24,-1,147,60,209,-1,203,84,83,-1,203,184,84,-1,206,65,144,-1,206,66,65,-1,26,142,139,-1,142,26,23,-1,186,69,182,-1,98,69,186,-1,181,124,19,-1,181,205,124,-1,120,123,197,-1,120,138,123,-1,139,187,27,-1,187,139,185,-1,111,145,117,-1,111,40,145,-1,111,38,40,-1,129,8,10,-1,177,8,129,-1,131,134,210,-1,134,131,0,-1,1,174,57,-1,130,174,1,-1,211,171,115,-1,171,211,169,-1,9,168,166,-1,212,168,9,-1,4,39,5,-1,163,39,4,-1,177,213,8,-1,177,176,213,-1,173,214,114,-1,175,214,173,-1,133,207,6,-1,133,215,207,-1,6,45,7,-1,207,45,6,-1,10,166,111,-1,9,166,10,-1,81,201,80,-1,81,71,201,-1,180,95,94,-1,12,95,180,-1,125,67,16,-1,125,68,67,-1,181,123,122,-1,181,64,123,-1,183,150,155,-1,79,150,183,-1,209,59,208,-1,209,60,59,-1,116,63,112,-1,116,61,63,-1,90,197,154,-1,120,197,90,-1,199,158,157,-1,158,199,89,-1,55,2,51,-1,35,2,55,-1,29,156,86,-1,153,156,29,-1,115,185,113,-1,185,115,171,-1,177,187,170,-1,129,187,177,-1,110,4,3,-1,110,167,4,-1,108,178,146,-1,108,41,178,-1,44,109,7,-1,46,109,44,-1,44,32,47,-1,44,45,32,-1,193,189,188,-1,216,189,193,-1,73,193,190,-1,73,216,193,-1,192,180,190,-1,180,192,179,-1,52,160,196,-1,52,56,160,-1,100,102,104,-1,143,102,100,-1,58,67,98,-1,58,17,67,-1,65,62,61,-1,65,20,62,-1,65,21,20,-1,102,50,49,-1,118,50,102,-1,216,72,93,-1,216,73,72,-1,107,76,108,-1,107,77,76,-1,126,149,159,-1,126,96,149,-1,121,120,184,-1,121,138,120,-1,92,200,82,-1,200,92,151,-1,87,151,80,-1,200,151,87,-1,201,164,88,-1,201,71,164,-1,28,91,75,-1,30,91,28,-1,202,184,203,-1,202,121,184,-1,202,165,121,-1,159,204,202,-1,159,149,204,-1,93,189,216,-1,189,93,198,-1,204,97,140,-1,149,97,204,-1,141,37,36,-1,141,148,37,-1,99,208,100,-1,208,99,209,-1,103,196,104,-1,103,52,196,-1,147,99,136,-1,209,99,147,-1,49,128,103,-1,49,48,128,-1,47,194,161,-1,194,47,105,-1,191,188,162,-1,193,188,191,-1,146,109,106,-1,146,110,109,-1,146,167,110,-1,146,178,167,-1,117,112,111,-1,117,116,112,-1,42,144,43,-1,42,206,144,-1,36,62,141,-1,36,63,62,-1,63,36,25,-1,157,83,199,-1,157,203,83,-1,66,154,197,-1,206,154,66,-1,208,98,186,-1,208,59,98,-1,122,205,181,-1,205,122,165,-1,68,127,78,-1,68,125,127,-1,78,158,150,-1,78,137,158,-1,185,170,187,-1,170,185,171,-1,217,33,218,-1,217,34,33,-1,210,34,217,-1,210,134,34,-1,114,211,115,-1,214,211,114,-1,212,8,213,-1,212,9,8,-1,207,218,33,-1,215,218,207,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaninlc_Geo_5_223_normalIndex_1()
		{
			int[] value = {204,185,202,-1,42,25,32,-1,42,71,85,-1,6,15,3,-1,209,218,217,-1,191,193,209,-1,105,89,114,-1,58,48,60,-1,121,88,111,-1,62,79,55,-1,94,104,56,-1,177,153,150,-1,177,172,203,-1,79,77,90,-1,22,14,17,-1,31,24,9,-1,134,85,122,-1,138,134,157,-1,212,206,214,-1,197,178,192,-1,210,201,197,-1,180,185,175,-1,96,119,118,-1,40,66,43,-1,68,36,39,-1,81,70,100,-1,198,214,207,-1,189,188,194,-1,83,73,125,-1,75,106,100,-1,173,191,187,-1,127,101,74,-1,67,104,112,-1,142,147,115,-1,45,29,56,-1,158,161,189,-1,173,193,191,-1,208,213,193,-1,116,114,97,-1,96,107,119,-1,144,154,156,-1,179,196,171,-1,192,178,196,-1,181,153,177,-1,108,120,64,-1,103,47,85,-1,42,85,47,-1,8,20,3,-1,62,77,79,-1,117,149,109,-1,9,2,5,-1,195,179,155,-1,37,45,67,-1,50,51,57,-1,58,44,48,-1,105,81,89,-1,87,102,99,-1,217,211,212,-1,187,191,198,-1,198,217,212,-1,4,3,20,-1,190,204,205,-1,38,82,71,-1,202,200,204,-1,38,71,42,-1,190,185,204,-1,20,35,4,-1,117,121,146,-1,198,209,217,-1,191,209,198,-1,87,116,102,-1,99,102,80,-1,57,46,50,-1,55,79,72,-1,66,69,76,-1,121,117,93,-1,179,152,155,-1,9,19,2,-1,117,146,149,-1,9,5,10,-1,64,49,108,-1,181,157,153,-1,202,203,200,-1,90,111,88,-1,133,146,121,-1,179,206,196,-1,90,86,96,-1,116,97,98,-1,193,194,208,-1,75,95,106,-1,158,189,174,-1,94,83,130,-1,130,128,94,-1,45,18,29,-1,147,124,115,-1,112,74,67,-1,74,112,127,-1,127,112,158,-1,112,136,158,-1,174,189,194,-1,92,91,84,-1,100,70,75,-1,125,130,83,-1,188,208,194,-1,207,187,198,-1,81,100,107,-1,68,60,36,-1,97,96,86,-1,175,167,180,-1,197,192,210,-1,197,180,178,-1,214,198,212,-1,201,181,177,-1,157,162,138,-1,139,103,138,-1,139,108,103,-1,17,14,21,-1,90,88,79,-1,172,200,203,-1,150,172,177,-1,94,128,104,-1,177,203,201,-1,170,195,155,-1,93,88,121,-1,62,55,35,-1,111,133,121,-1,51,50,41,-1,99,80,75,-1,217,218,211,-1,193,213,209,-1,209,213,218,-1,12,22,8,-1,21,25,26,-1,32,38,42,-1,14,12,13,-1,14,22,12,-1,54,23,53,-1,54,27,23,-1,164,176,163,-1,176,164,175,-1,0,23,27,-1,23,0,1,-1,28,21,26,-1,28,17,21,-1,17,28,10,-1,194,173,174,-1,193,173,194,-1,216,218,215,-1,216,211,218,-1,196,211,216,-1,105,116,87,-1,116,105,114,-1,68,58,60,-1,68,52,58,-1,129,106,131,-1,129,100,106,-1,19,40,2,-1,19,36,40,-1,61,67,74,-1,61,37,67,-1,95,115,124,-1,95,91,115,-1,62,20,43,-1,20,62,35,-1,117,72,93,-1,117,59,72,-1,152,129,155,-1,152,132,129,-1,185,197,202,-1,185,180,197,-1,55,4,35,-1,55,30,4,-1,31,73,24,-1,73,31,64,-1,125,145,143,-1,125,120,145,-1,208,183,215,-1,208,188,183,-1,183,160,186,-1,183,165,160,-1,184,216,186,-1,216,184,210,-1,159,168,167,-1,156,168,159,-1,159,149,146,-1,159,164,149,-1,171,156,154,-1,156,171,168,-1,97,89,96,-1,97,114,89,-1,155,131,170,-1,131,155,129,-1,83,24,73,-1,83,29,24,-1,68,33,57,-1,68,39,33,-1,80,84,91,-1,80,102,84,-1,158,140,161,-1,136,140,158,-1,170,124,147,-1,170,131,124,-1,140,128,130,-1,136,128,140,-1,110,127,141,-1,127,110,101,-1,115,141,142,-1,141,115,110,-1,173,147,142,-1,147,173,182,-1,92,65,78,-1,84,65,92,-1,41,63,34,-1,41,65,63,-1,11,29,18,-1,29,11,24,-1,143,130,125,-1,143,140,130,-1,207,195,170,-1,207,214,195,-1,34,69,44,-1,34,63,69,-1,69,86,76,-1,69,97,86,-1,118,90,96,-1,118,111,90,-1,159,175,164,-1,175,159,167,-1,146,156,159,-1,144,156,146,-1,210,196,216,-1,196,210,192,-1,184,201,210,-1,184,181,201,-1,186,162,184,-1,186,160,162,-1,162,139,138,-1,160,139,162,-1,120,139,145,-1,120,108,139,-1,10,31,9,-1,10,28,31,-1,122,150,153,-1,150,122,123,-1,67,56,104,-1,45,56,67,-1,137,152,154,-1,152,137,132,-1,48,69,66,-1,48,44,69,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaninlc_Geo_5_223_normalIndex_2()
		{
			int[] value = {118,133,111,-1,133,118,135,-1,78,74,101,-1,78,61,74,-1,11,36,19,-1,11,39,36,-1,79,93,72,-1,93,79,88,-1,132,100,129,-1,107,100,132,-1,52,44,58,-1,52,34,44,-1,37,57,33,-1,37,46,57,-1,72,30,55,-1,30,72,59,-1,8,10,5,-1,8,17,10,-1,8,22,17,-1,4,6,3,-1,1,6,4,-1,205,200,199,-1,200,205,204,-1,185,176,175,-1,190,176,185,-1,113,53,109,-1,53,113,54,-1,15,13,12,-1,16,13,15,-1,25,14,32,-1,21,14,25,-1,1,7,6,-1,1,0,7,-1,164,148,149,-1,163,148,164,-1,82,123,71,-1,82,126,123,-1,71,122,85,-1,123,122,71,-1,3,12,8,-1,15,12,3,-1,187,182,173,-1,187,207,182,-1,215,213,208,-1,218,213,215,-1,87,81,105,-1,87,70,81,-1,52,57,51,-1,52,68,57,-1,131,95,124,-1,106,95,131,-1,135,119,137,-1,135,118,119,-1,2,43,20,-1,2,40,43,-1,45,33,18,-1,37,33,45,-1,110,91,92,-1,91,110,115,-1,201,202,197,-1,203,202,201,-1,104,136,112,-1,128,136,104,-1,109,59,117,-1,59,109,53,-1,1,30,23,-1,4,30,1,-1,47,25,42,-1,47,26,25,-1,64,28,49,-1,64,31,28,-1,134,103,85,-1,138,103,134,-1,134,153,157,-1,134,122,153,-1,165,143,145,-1,166,143,165,-1,188,165,183,-1,188,166,165,-1,186,215,183,-1,215,186,216,-1,178,167,168,-1,178,180,167,-1,154,179,171,-1,152,179,154,-1,96,81,107,-1,96,89,81,-1,36,66,40,-1,36,48,66,-1,36,60,48,-1,179,214,206,-1,195,214,179,-1,166,189,161,-1,166,188,189,-1,120,73,64,-1,120,125,73,-1,102,98,84,-1,102,116,98,-1,50,37,61,-1,50,46,37,-1,158,141,127,-1,141,158,174,-1,142,174,173,-1,141,174,142,-1,182,170,147,-1,182,207,170,-1,94,29,83,-1,56,29,94,-1,65,61,78,-1,65,50,61,-1,65,41,50,-1,84,63,65,-1,84,98,63,-1,161,143,166,-1,143,161,140,-1,63,97,69,-1,98,97,63,-1,76,90,77,-1,76,86,90,-1,144,137,154,-1,137,144,135,-1,196,168,171,-1,196,178,168,-1,133,144,146,-1,135,144,133,-1,206,211,196,-1,206,212,211,-1,157,184,162,-1,184,157,181,-1,160,145,139,-1,165,145,160,-1,49,103,108,-1,49,47,103,-1,49,26,47,-1,49,28,26,-1,5,20,8,-1,5,2,20,-1,24,19,9,-1,24,11,19,-1,77,66,76,-1,77,43,66,-1,43,77,62,-1,92,101,110,-1,92,78,101,-1,39,18,33,-1,11,18,39,-1,137,107,132,-1,137,119,107,-1,51,34,52,-1,34,51,41,-1,70,99,75,-1,70,87,99,-1,75,91,95,-1,75,80,91,-1,59,23,30,-1,23,59,53,-1,169,150,151,-1,169,172,150,-1,199,172,169,-1,199,200,172,-1,149,113,109,-1,148,113,149,-1,16,6,7,-1,16,15,6,-1,123,151,150,-1,126,151,123,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaninlr_Geo_5_229_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,14,16,-1,17,18,19,-1,20,21,7,-1,22,6,9,-1,23,24,25,-1,26,27,28,-1,29,30,31,-1,32,33,34,-1,35,36,37,-1,38,39,40,-1,41,42,43,-1,44,45,39,-1,46,47,48,-1,49,32,50,-1,51,52,30,-1,53,54,55,-1,56,57,24,-1,55,28,58,-1,19,59,60,-1,14,11,61,-1,3,62,4,-1,17,63,2,-1,64,65,66,-1,63,67,2,-1,62,1,4,-1,14,15,11,-1,19,60,63,-1,55,26,28,-1,56,24,23,-1,53,55,68,-1,51,30,29,-1,49,50,69,-1,46,48,70,-1,45,40,39,-1,71,38,40,-1,72,42,41,-1,35,73,36,-1,74,75,76,-1,32,34,50,-1,29,31,77,-1,26,78,27,-1,23,25,79,-1,22,80,6,-1,20,81,21,-1,19,63,17,-1,16,82,15,-1,14,61,12,-1,15,9,11,-1,6,8,83,-1,21,3,5,-1,84,85,45,-1,10,86,11,-1,87,86,10,-1,88,5,4,-1,88,89,5,-1,90,91,92,-1,90,93,91,-1,94,95,96,-1,97,95,94,-1,98,99,100,-1,98,91,99,-1,60,67,63,-1,60,96,67,-1,101,13,102,-1,101,103,13,-1,25,100,104,-1,25,105,100,-1,106,3,107,-1,106,62,3,-1,82,28,22,-1,58,28,82,-1,108,101,109,-1,108,110,101,-1,111,19,112,-1,111,59,19,-1,81,113,107,-1,114,113,81,-1,114,115,116,-1,115,114,117,-1,118,119,120,-1,119,118,110,-1,121,57,122,-1,57,121,24,-1,123,124,112,-1,125,124,123,-1,77,126,127,-1,77,125,126,-1,128,78,129,-1,128,115,78,-1,130,68,120,-1,130,53,68,-1,131,132,133,-1,132,131,122,-1,132,134,135,-1,134,132,136,-1,137,138,127,-1,139,138,137,-1,140,50,129,-1,69,50,140,-1,130,141,142,-1,141,130,143,-1,144,141,145,-1,144,146,141,-1,147,134,148,-1,147,149,134,-1,51,138,150,-1,51,29,138,-1,48,49,69,-1,47,49,48,-1,47,151,152,-1,151,47,46,-1,144,153,154,-1,153,144,155,-1,156,157,158,-1,156,147,157,-1,159,160,161,-1,159,150,160,-1,49,162,32,-1,163,162,49,-1,164,165,166,-1,167,165,164,-1,152,44,39,-1,151,44,152,-1,36,161,37,-1,36,159,161,-1,168,163,38,-1,168,162,163,-1,154,169,170,-1,169,154,153,-1,171,158,172,-1,171,156,158,-1,173,174,175,-1,174,173,172,-1,44,84,45,-1,44,166,84,-1,176,177,178,-1,176,75,177,-1,179,64,43,-1,179,180,64,-1,181,168,182,-1,181,183,168,-1,178,42,176,-1,43,42,178,-1,176,72,184,-1,72,176,42,-1,170,178,177,-1,178,170,169,-1,182,38,71,-1,38,182,168,-1,172,65,171,-1,172,173,65,-1,185,171,180,-1,171,185,156,-1,167,170,165,-1,167,154,170,-1,162,183,186,-1,168,183,162,-1,187,36,73,-1,187,188,36,-1,49,152,163,-1,152,49,47,-1,189,161,160,-1,190,161,189,-1,158,52,191,-1,158,157,52,-1,192,155,193,-1,192,153,155,-1,164,46,194,-1,164,151,46,-1,189,34,33,-1,189,195,34,-1,147,196,157,-1,147,148,196,-1,145,155,144,-1,155,145,197,-1,145,143,198,-1,145,141,143,-1,69,54,48,-1,69,140,54,-1,139,199,195,-1,139,137,199,-1,196,31,30,-1,196,200,31,-1,201,202,200,-1,201,56,202,-1,203,133,198,-1,133,203,131,-1,129,26,140,-1,129,78,26,-1,127,204,137,-1,127,126,204,-1,205,125,123,-1,126,125,205,-1,206,122,131,-1,122,206,121,-1,207,120,68,-1,120,207,118,-1,204,114,116,-1,204,113,114,-1,107,205,106,-1,113,205,107,-1,23,59,111,-1,23,79,59,-1,206,109,208,-1,206,108,109,-1,16,58,82,-1,207,58,16,-1,15,22,9,-1,82,22,15,-1,21,107,3,-1,81,107,21,-1,79,104,209,-1,79,25,104,-1,109,102,210,-1,109,101,102,-1,211,13,12,-1,102,13,211,-1,5,7,21,-1,7,5,8,-1,100,212,104,-1,100,99,212,-1,213,88,0,-1,213,89,88,-1,95,89,213,-1,95,214,89,-1,97,214,95,-1,215,214,97,-1,215,216,214,-1,217,216,215,-1,217,87,216,-1,217,86,87,-1,93,86,217,-1,93,218,86,-1,90,218,93,-1,90,219,218,-1,90,220,219,-1,96,213,67,-1,95,213,96,-1,93,99,91,-1,93,217,99,-1,61,219,12,-1,218,219,61,-1,216,10,83,-1,216,87,10,-1,11,218,61,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaninlr_Geo_5_229_coordIndex_2()
		{
			int[] value = {86,218,11,-1,89,8,5,-1,89,214,8,-1,211,90,92,-1,220,90,211,-1,215,94,212,-1,215,97,94,-1,0,4,1,-1,0,88,4,-1,92,98,210,-1,98,92,91,-1,209,96,60,-1,209,94,96,-1,10,6,83,-1,9,6,10,-1,14,103,16,-1,103,14,13,-1,105,98,100,-1,105,208,98,-1,18,62,106,-1,18,17,62,-1,6,20,7,-1,80,20,6,-1,22,27,80,-1,28,27,22,-1,110,103,101,-1,110,118,103,-1,24,105,25,-1,24,121,105,-1,112,18,123,-1,112,19,18,-1,20,114,81,-1,117,114,20,-1,115,27,78,-1,115,117,27,-1,110,203,119,-1,203,110,108,-1,112,202,111,-1,124,202,112,-1,125,31,124,-1,77,31,125,-1,199,115,128,-1,199,116,115,-1,120,143,130,-1,143,120,119,-1,122,136,132,-1,136,122,57,-1,136,148,134,-1,148,136,201,-1,29,127,138,-1,29,77,127,-1,34,129,50,-1,34,128,129,-1,53,142,70,-1,142,53,130,-1,133,135,197,-1,135,133,132,-1,135,149,193,-1,149,135,134,-1,150,139,160,-1,150,138,139,-1,146,142,141,-1,146,194,142,-1,146,154,167,-1,154,146,144,-1,156,149,147,-1,156,185,149,-1,221,150,159,-1,221,51,150,-1,186,32,162,-1,186,33,32,-1,222,166,165,-1,222,84,166,-1,37,190,223,-1,37,161,190,-1,163,39,38,-1,39,163,152,-1,179,153,192,-1,179,169,153,-1,172,191,174,-1,172,158,191,-1,175,188,187,-1,188,175,174,-1,165,177,222,-1,165,170,177,-1,76,176,184,-1,76,75,176,-1,180,65,64,-1,180,171,65,-1,223,35,37,-1,224,35,223,-1,183,224,223,-1,181,224,183,-1,43,66,41,-1,43,64,66,-1,169,43,178,-1,43,169,179,-1,75,222,177,-1,75,225,222,-1,74,225,75,-1,174,221,188,-1,174,191,221,-1,192,180,179,-1,180,192,185,-1,166,151,164,-1,44,151,166,-1,223,186,183,-1,223,190,186,-1,159,188,221,-1,159,36,188,-1,85,222,225,-1,84,222,85,-1,190,33,186,-1,190,189,33,-1,191,51,221,-1,191,52,51,-1,185,193,149,-1,185,192,193,-1,194,167,164,-1,167,194,146,-1,194,70,142,-1,194,46,70,-1,160,195,189,-1,160,139,195,-1,157,30,52,-1,157,196,30,-1,193,197,135,-1,193,155,197,-1,197,198,133,-1,197,145,198,-1,53,48,54,-1,70,48,53,-1,195,128,34,-1,195,199,128,-1,201,196,148,-1,196,201,200,-1,57,201,136,-1,201,57,56,-1,119,198,143,-1,198,119,203,-1,55,140,26,-1,54,140,55,-1,137,116,199,-1,137,204,116,-1,124,200,202,-1,31,200,124,-1,111,56,23,-1,202,56,111,-1,131,108,206,-1,131,203,108,-1,68,58,207,-1,68,55,58,-1,126,113,204,-1,126,205,113,-1,123,106,205,-1,123,18,106,-1,121,208,105,-1,121,206,208,-1,16,118,207,-1,118,16,103,-1,80,117,20,-1,27,117,80,-1,79,60,59,-1,79,209,60,-1,208,210,98,-1,208,109,210,-1,62,2,1,-1,62,17,2,-1,104,94,209,-1,104,212,94,-1,92,102,211,-1,210,102,92,-1,67,0,2,-1,213,0,67,-1,217,212,99,-1,217,215,212,-1,220,12,219,-1,220,211,12,-1,214,83,8,-1,214,216,83,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaninlr_Geo_5_229_normalIndex_1()
		{
			int[] value = {113,147,143,-1,165,146,135,-1,142,148,122,-1,119,112,94,-1,27,62,63,-1,88,63,24,-1,169,200,185,-1,160,154,148,-1,128,142,119,-1,127,99,103,-1,131,150,126,-1,208,192,198,-1,152,178,167,-1,206,224,218,-1,129,93,97,-1,52,41,73,-1,34,44,93,-1,30,81,96,-1,125,152,153,-1,210,187,192,-1,36,100,79,-1,134,104,99,-1,79,126,90,-1,185,161,145,-1,63,94,60,-1,165,177,146,-1,169,149,143,-1,114,139,106,-1,149,124,143,-1,177,147,146,-1,63,88,94,-1,185,145,149,-1,79,131,126,-1,134,99,127,-1,36,79,13,-1,210,192,208,-1,125,153,130,-1,30,96,45,-1,44,97,93,-1,123,129,97,-1,47,41,52,-1,206,209,224,-1,39,35,38,-1,152,167,153,-1,208,198,215,-1,131,157,150,-1,127,103,133,-1,128,151,142,-1,160,174,154,-1,185,149,169,-1,24,84,88,-1,63,60,27,-1,88,119,94,-1,142,122,118,-1,154,165,135,-1,0,5,44,-1,112,71,94,-1,82,71,112,-1,111,135,146,-1,111,105,135,-1,54,66,57,-1,54,65,66,-1,117,98,120,-1,89,98,117,-1,70,76,92,-1,70,66,76,-1,145,124,149,-1,145,120,124,-1,26,62,67,-1,26,14,62,-1,103,92,109,-1,103,72,92,-1,201,165,195,-1,201,177,165,-1,84,126,128,-1,90,126,84,-1,19,26,31,-1,19,21,26,-1,166,185,199,-1,166,161,185,-1,174,202,195,-1,182,202,174,-1,182,162,184,-1,162,182,163,-1,8,16,6,-1,16,8,21,-1,74,104,77,-1,104,74,99,-1,213,197,199,-1,219,197,213,-1,215,221,220,-1,215,219,221,-1,164,157,155,-1,164,162,157,-1,3,13,6,-1,3,36,13,-1,53,85,51,-1,85,53,77,-1,85,110,80,-1,110,85,107,-1,205,217,220,-1,203,217,205,-1,137,153,155,-1,130,153,137,-1,3,9,1,-1,9,3,12,-1,33,9,29,-1,33,20,9,-1,138,110,136,-1,138,108,110,-1,210,217,223,-1,210,208,217,-1,96,125,130,-1,81,125,96,-1,81,37,91,-1,37,81,30,-1,33,56,17,-1,56,33,59,-1,144,173,172,-1,144,138,173,-1,225,207,212,-1,225,223,207,-1,125,156,152,-1,132,156,125,-1,7,11,4,-1,10,11,7,-1,91,34,93,-1,37,34,91,-1,224,212,218,-1,224,225,212,-1,158,132,129,-1,158,156,132,-1,17,58,23,-1,58,17,56,-1,141,172,171,-1,141,144,172,-1,176,190,189,-1,190,176,171,-1,34,0,44,-1,34,4,0,-1,40,28,48,-1,40,35,28,-1,86,114,73,-1,86,116,114,-1,181,158,159,-1,181,179,158,-1,48,41,40,-1,73,41,48,-1,40,47,42,-1,47,40,41,-1,23,48,28,-1,48,23,58,-1,159,129,123,-1,129,159,158,-1,171,139,141,-1,171,176,139,-1,115,141,116,-1,141,115,144,-1,10,23,11,-1,10,17,23,-1,156,179,180,-1,158,179,156,-1,216,224,209,-1,216,214,224,-1,125,91,132,-1,91,125,81,-1,188,212,207,-1,193,212,188,-1,172,187,191,-1,172,173,187,-1,83,59,75,-1,83,56,59,-1,7,30,2,-1,7,37,30,-1,188,167,178,-1,188,186,167,-1,138,170,173,-1,138,136,170,-1,29,59,33,-1,59,29,55,-1,29,12,22,-1,29,9,12,-1,130,100,96,-1,130,137,100,-1,203,183,186,-1,203,205,183,-1,170,198,192,-1,170,175,198,-1,140,168,175,-1,140,134,168,-1,25,51,22,-1,51,25,53,-1,155,131,137,-1,155,157,131,-1,220,204,205,-1,220,221,204,-1,211,219,213,-1,221,219,211,-1,50,77,53,-1,77,50,74,-1,15,6,13,-1,6,15,8,-1,204,182,184,-1,204,202,182,-1,195,211,201,-1,202,211,195,-1,127,161,166,-1,127,133,161,-1,50,31,61,-1,50,19,31,-1,24,90,84,-1,15,90,24,-1,88,128,119,-1,84,128,88,-1,154,195,165,-1,174,195,154,-1,133,109,121,-1,133,103,109,-1,31,67,68,-1,31,26,67,-1,43,62,27,-1,67,62,43,-1,135,148,154,-1,148,135,122,-1,92,101,109,-1,92,76,101,-1,102,111,113,-1,102,105,111,-1,98,105,102,-1,98,95,105,-1,89,95,98,-1,78,95,89,-1,78,87,95,-1,69,87,78,-1,69,82,87,-1,69,71,82,-1,65,71,69,-1,65,64,71,-1,54,64,65,-1,54,46,64,-1,54,49,46,-1,120,102,124,-1,98,102,120,-1,65,76,66,-1,65,69,76,-1,60,46,27,-1,64,46,60,-1,87,112,118,-1,87,82,112,-1,94,64,60,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaninlr_Geo_5_229_normalIndex_2()
		{
			int[] value = {71,64,94,-1,105,122,135,-1,105,95,122,-1,43,54,57,-1,49,54,43,-1,78,117,101,-1,78,89,117,-1,113,146,147,-1,113,111,146,-1,57,70,68,-1,70,57,66,-1,121,120,145,-1,121,117,120,-1,112,142,118,-1,119,142,112,-1,63,14,24,-1,14,63,62,-1,72,70,92,-1,72,61,70,-1,200,177,201,-1,200,169,177,-1,142,160,148,-1,151,160,142,-1,128,150,151,-1,126,150,128,-1,21,14,26,-1,21,8,14,-1,99,72,103,-1,99,74,72,-1,199,200,213,-1,199,185,200,-1,160,182,174,-1,163,182,160,-1,162,150,157,-1,162,163,150,-1,21,25,16,-1,25,21,19,-1,199,168,166,-1,197,168,199,-1,219,198,197,-1,215,198,219,-1,183,162,164,-1,183,184,162,-1,6,12,3,-1,12,6,16,-1,77,107,85,-1,107,77,104,-1,107,136,110,-1,136,107,140,-1,208,220,217,-1,208,215,220,-1,167,155,153,-1,167,164,155,-1,36,1,45,-1,1,36,3,-1,51,80,55,-1,80,51,85,-1,80,108,75,-1,108,80,110,-1,223,203,207,-1,223,217,203,-1,20,1,9,-1,20,2,1,-1,20,17,10,-1,17,20,33,-1,144,108,138,-1,144,115,108,-1,222,223,225,-1,222,210,223,-1,180,152,156,-1,180,178,152,-1,18,4,11,-1,18,0,4,-1,218,193,194,-1,218,212,193,-1,132,93,129,-1,93,132,91,-1,86,56,83,-1,86,58,56,-1,171,191,190,-1,171,172,191,-1,189,214,216,-1,214,189,190,-1,11,28,18,-1,11,23,28,-1,38,40,42,-1,38,35,40,-1,116,139,114,-1,116,141,139,-1,194,206,218,-1,196,206,194,-1,179,196,194,-1,181,196,179,-1,73,106,52,-1,73,114,106,-1,58,73,48,-1,73,58,86,-1,35,18,28,-1,35,32,18,-1,39,32,35,-1,190,222,214,-1,190,191,222,-1,83,116,86,-1,116,83,115,-1,4,37,7,-1,34,37,4,-1,194,180,179,-1,194,193,180,-1,225,214,222,-1,225,224,214,-1,5,18,32,-1,0,18,5,-1,193,178,180,-1,193,188,178,-1,191,210,222,-1,191,187,210,-1,115,75,108,-1,115,83,75,-1,2,10,7,-1,10,2,20,-1,2,45,1,-1,2,30,45,-1,207,186,188,-1,207,203,186,-1,173,192,187,-1,173,170,192,-1,75,55,80,-1,75,59,55,-1,55,22,51,-1,55,29,22,-1,36,96,100,-1,45,96,36,-1,186,164,167,-1,186,183,164,-1,140,170,136,-1,170,140,175,-1,104,140,107,-1,140,104,134,-1,16,22,12,-1,22,16,25,-1,79,137,131,-1,100,137,79,-1,205,184,183,-1,205,204,184,-1,197,175,168,-1,198,175,197,-1,166,134,127,-1,168,134,166,-1,53,19,50,-1,53,25,19,-1,13,90,15,-1,13,79,90,-1,221,202,204,-1,221,211,202,-1,213,201,211,-1,213,200,201,-1,74,61,72,-1,74,50,61,-1,24,8,15,-1,8,24,14,-1,151,163,160,-1,150,163,151,-1,133,145,161,-1,133,121,145,-1,61,68,70,-1,61,31,68,-1,177,143,147,-1,177,169,143,-1,109,117,121,-1,109,101,117,-1,57,67,43,-1,68,67,57,-1,124,113,143,-1,102,113,124,-1,69,101,76,-1,69,78,101,-1,49,27,46,-1,49,43,27,-1,95,118,122,-1,95,87,118,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaptate_Geo_5_235_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,5,6,3,-1,6,7,3,-1,8,9,10,-1,10,11,8,-1,12,13,14,-1,15,16,17,-1,18,14,13,-1,19,11,20,-1,19,21,11,-1,22,23,24,-1,24,25,22,-1,12,26,27,-1,26,28,27,-1,29,30,31,-1,31,32,29,-1,33,34,35,-1,34,36,35,-1,37,38,39,-1,40,41,42,-1,43,44,45,-1,44,46,45,-1,47,48,49,-1,47,50,48,-1,2,51,0,-1,52,53,54,-1,55,56,49,-1,57,58,59,-1,57,60,58,-1,61,62,63,-1,63,64,61,-1,42,65,40,-1,42,66,65,-1,67,68,62,-1,62,61,67,-1,69,70,71,-1,71,72,69,-1,69,73,74,-1,75,76,77,-1,78,79,80,-1,78,81,79,-1,82,83,84,-1,83,6,84,-1,85,86,87,-1,88,89,90,-1,88,91,89,-1,92,89,73,-1,73,93,92,-1,94,27,95,-1,30,29,96,-1,97,98,22,-1,99,100,101,-1,102,103,104,-1,102,34,103,-1,105,106,107,-1,107,108,105,-1,45,109,110,-1,111,101,112,-1,113,101,114,-1,25,115,33,-1,115,116,33,-1,117,118,54,-1,119,120,121,-1,122,123,124,-1,121,40,119,-1,7,125,126,-1,7,127,125,-1,52,128,129,-1,129,130,52,-1,131,132,133,-1,132,134,133,-1,135,136,67,-1,136,137,67,-1,138,139,140,-1,138,141,139,-1,142,63,140,-1,138,62,68,-1,131,143,144,-1,145,146,147,-1,148,149,150,-1,150,151,148,-1,152,153,154,-1,77,155,156,-1,157,155,158,-1,159,155,160,-1,161,155,162,-1,163,155,164,-1,57,165,166,-1,57,59,165,-1,167,46,44,-1,168,149,169,-1,110,53,170,-1,171,172,173,-1,174,175,176,-1,174,177,175,-1,178,143,179,-1,178,144,143,-1,180,181,58,-1,180,182,181,-1,183,184,185,-1,183,186,187,-1,183,181,186,-1,188,189,190,-1,190,191,188,-1,136,192,137,-1,122,124,193,-1,194,41,193,-1,194,195,41,-1,166,124,123,-1,47,196,197,-1,198,199,165,-1,200,201,202,-1,203,204,202,-1,203,205,204,-1,206,207,30,-1,208,209,210,-1,209,211,210,-1,212,97,36,-1,97,35,36,-1,97,22,35,-1,213,26,214,-1,95,215,94,-1,8,215,216,-1,215,95,217,-1,218,219,220,-1,221,216,32,-1,222,223,224,-1,224,225,222,-1,219,4,220,-1,226,85,84,-1,84,85,82,-1,227,3,228,-1,125,229,230,-1,125,231,229,-1,228,232,233,-1,233,227,228,-1,4,221,220,-1,234,9,233,-1,9,8,233,-1,11,235,8,-1,236,13,94,-1,237,20,10,-1,20,11,10,-1,238,239,70,-1,45,110,43,-1,240,241,242,-1,240,243,241,-1,124,244,107,-1,245,101,100,-1,124,246,247,-1,247,248,249,-1,169,149,250,-1,154,251,152,-1,252,25,253,-1,25,254,253,-1,255,18,256,-1,256,19,255,-1,195,194,249,-1,194,247,249,-1,141,257,139,-1,257,258,139,-1,255,19,259,-1,259,15,255,-1,154,14,260,-1,260,251,154,-1,152,261,262,-1,152,251,261,-1,24,154,153,-1,247,194,124,-1,246,124,106,-1,34,263,103,-1,107,264,108,-1,107,244,264,-1,244,124,197,-1,51,224,265,-1,266,63,142,-1,267,16,268,-1,88,90,64,-1,19,256,21,-1,10,9,239,-1,239,238,10,-1,233,216,221,-1,227,221,4,-1,227,233,221,-1,232,234,233,-1,126,125,269,-1,125,230,269,-1,3,232,228,-1,78,86,85,-1,85,226,81,-1,4,3,227,-1,265,224,223,-1,233,8,216,-1,96,29,200,-1,215,8,94,-1,27,13,12,-1,27,94,13,-1,12,14,154,-1,28,26,213,-1,211,207,210,-1,201,28,270,-1,200,202,204,-1,198,165,59,-1,165,197,124,-1,271,57,123,-1,57,166,123,-1,124,194,193,-1,272,271,123,-1,134,273,136,-1,273,192,136,-1,274,275,132,-1,276,277,278,-1,279,176,175,-1,175,182,279,-1,280,155,163,-1,180,58,281,-1,197,165,199,-1,87,82,85,-1,166,165,124,-1,60,282,281,-1,156,280,283,-1,283,284,156,-1,164,155,161,-1,162,155,159,-1,160,155,157,-1,158,155,77,-1,156,155,280,-1,150,149,168,-1,168,285,150,-1,66,148,151,-1,66,42,148,-1,286,257,141,-1,286,287,257,-1,133,189,131,-1,189,143,131,-1,67,190,135,-1,67,61,190,-1,140,63,62,-1,62,138,140,-1,140,139,142,-1,68,141,138,-1,68,286,141,-1,288,289,290,-1,122,41,291,-1,122,193,41,-1,281,58,60,-1,263,292,103,-1,263,293,292,-1,101,113,99,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaptate_Geo_5_235_coordIndex_2()
		{
			int[] value = {114,101,111,-1,112,101,245,-1,107,106,124,-1,294,295,296,-1,294,297,295,-1,34,33,263,-1,212,298,98,-1,98,97,212,-1,96,206,30,-1,96,299,206,-1,270,202,201,-1,270,203,202,-1,152,254,153,-1,126,232,7,-1,174,300,177,-1,301,71,70,-1,302,49,303,-1,49,56,303,-1,73,91,74,-1,73,89,91,-1,179,304,178,-1,220,31,218,-1,305,86,78,-1,78,80,305,-1,225,219,222,-1,219,218,222,-1,85,81,78,-1,196,306,197,-1,72,307,69,-1,70,69,74,-1,74,238,70,-1,63,88,64,-1,63,266,88,-1,41,121,291,-1,41,40,121,-1,198,185,184,-1,184,199,198,-1,149,148,249,-1,148,195,249,-1,308,309,289,-1,43,265,44,-1,242,306,229,-1,45,310,38,-1,38,109,45,-1,311,309,308,-1,207,211,218,-1,211,222,218,-1,214,26,12,-1,12,154,214,-1,45,46,310,-1,21,235,11,-1,256,236,235,-1,235,21,256,-1,142,17,16,-1,224,51,2,-1,2,305,224,-1,4,219,5,-1,219,79,5,-1,80,224,305,-1,80,225,224,-1,7,83,127,-1,7,6,83,-1,232,3,7,-1,1,83,2,-1,127,83,1,-1,80,219,225,-1,219,80,79,-1,15,268,16,-1,259,268,15,-1,18,236,256,-1,18,13,236,-1,312,102,313,-1,314,102,312,-1,223,315,167,-1,223,209,315,-1,33,22,25,-1,33,35,22,-1,28,95,27,-1,95,28,201,-1,31,207,218,-1,30,207,31,-1,196,229,306,-1,229,196,302,-1,240,1,0,-1,240,231,1,-1,117,53,110,-1,117,54,53,-1,289,173,290,-1,289,309,173,-1,248,172,250,-1,248,316,172,-1,38,317,109,-1,38,37,317,-1,290,172,316,-1,290,173,172,-1,195,42,41,-1,195,148,42,-1,318,319,320,-1,321,319,318,-1,49,184,55,-1,49,48,184,-1,291,120,272,-1,291,121,120,-1,192,286,137,-1,192,287,286,-1,72,318,320,-1,318,72,71,-1,185,59,58,-1,185,198,59,-1,322,88,266,-1,322,91,88,-1,146,323,324,-1,146,145,323,-1,87,305,2,-1,86,305,87,-1,81,5,79,-1,226,5,81,-1,325,326,92,-1,326,325,191,-1,327,179,188,-1,327,304,179,-1,178,277,276,-1,178,304,277,-1,328,327,325,-1,329,327,328,-1,322,10,238,-1,322,237,10,-1,56,330,303,-1,56,321,330,-1,71,331,318,-1,331,71,301,-1,69,93,73,-1,69,307,93,-1,177,332,333,-1,177,300,332,-1,334,320,319,-1,334,335,320,-1,336,126,269,-1,336,232,126,-1,24,254,25,-1,153,254,24,-1,98,270,337,-1,98,203,270,-1,204,96,200,-1,204,299,96,-1,297,206,299,-1,297,294,206,-1,338,208,296,-1,39,208,338,-1,212,295,298,-1,339,295,212,-1,116,263,33,-1,263,116,293,-1,314,338,339,-1,314,312,338,-1,128,288,129,-1,128,289,288,-1,38,315,39,-1,38,310,315,-1,111,340,341,-1,111,112,340,-1,292,114,311,-1,292,113,114,-1,245,116,115,-1,245,100,116,-1,341,252,342,-1,341,340,252,-1,103,311,308,-1,103,292,311,-1,243,0,170,-1,240,0,243,-1,342,173,309,-1,173,342,171,-1,135,189,133,-1,135,190,189,-1,343,40,65,-1,343,119,40,-1,168,262,285,-1,168,253,262,-1,158,76,344,-1,158,77,76,-1,345,157,346,-1,345,160,157,-1,347,159,348,-1,347,162,159,-1,164,349,350,-1,164,161,349,-1,283,163,351,-1,283,280,163,-1,323,284,352,-1,75,284,323,-1,346,274,144,-1,346,344,274,-1,276,345,178,-1,276,348,345,-1,349,353,174,-1,349,347,353,-1,351,176,279,-1,351,350,176,-1,352,283,354,-1,352,284,283,-1,244,241,264,-1,241,244,197,-1,281,354,180,-1,281,352,354,-1,279,180,354,-1,279,182,180,-1,355,276,278,-1,353,276,355,-1,147,274,145,-1,274,147,275,-1,182,186,181,-1,175,186,182,-1,300,356,332,-1,300,355,356,-1,357,277,329,-1,278,277,357,-1,132,273,134,-1,132,275,273,-1,186,334,187,-1,334,186,333,-1,332,358,335,-1,358,332,356,-1,72,359,307,-1,72,358,359,-1,359,329,328,-1,357,329,359,-1,273,65,192,-1,273,343,65,-1,324,282,120,-1,324,281,282,-1,297,298,295,-1,298,297,205,-1,23,213,214,-1,23,337,213,-1,301,336,331,-1,301,360,336,-1,230,302,303,-1,230,229,302,-1,237,266,267,-1,237,322,266,-1,267,142,16,-1,266,142,267,-1,197,242,241,-1,197,306,242,-1,130,108,264,-1,108,130,129,-1,39,312,37,-1,338,312,39,-1,246,105,316,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcaptate_Geo_5_235_coordIndex_3()
		{
			int[] value = {246,106,105,-1,169,172,171,-1,172,169,250,-1,150,361,258,-1,285,361,150,-1,17,251,260,-1,251,17,261,-1,139,361,142,-1,139,258,361,-1,267,20,237,-1,267,268,20,-1,64,326,61,-1,90,326,64,-1,258,151,150,-1,257,151,258,-1,17,361,261,-1,17,142,361,-1,285,261,361,-1,285,262,261,-1,169,253,168,-1,252,253,169,-1,169,342,252,-1,169,171,342,-1,248,246,316,-1,248,247,246,-1,105,290,316,-1,290,105,288,-1,362,118,104,-1,362,54,118,-1,43,170,0,-1,170,43,110,-1,235,94,8,-1,235,236,94,-1,234,239,9,-1,234,360,239,-1,232,360,234,-1,360,232,336,-1,269,303,330,-1,269,230,303,-1,223,44,265,-1,44,223,167,-1,31,221,32,-1,220,221,31,-1,217,216,215,-1,217,32,216,-1,337,28,213,-1,337,270,28,-1,296,210,294,-1,296,208,210,-1,298,203,98,-1,203,298,205,-1,299,205,297,-1,205,299,204,-1,257,66,151,-1,66,257,287,-1,191,61,326,-1,61,191,190,-1,328,307,359,-1,93,307,328,-1,357,358,356,-1,358,357,359,-1,360,70,239,-1,360,301,70,-1,358,320,335,-1,358,72,320,-1,187,319,55,-1,187,334,319,-1,55,183,187,-1,184,183,55,-1,183,58,181,-1,183,185,58,-1,275,343,273,-1,275,147,343,-1,143,188,179,-1,143,189,188,-1,356,278,357,-1,355,278,356,-1,175,333,186,-1,175,177,333,-1,324,352,281,-1,323,352,324,-1,174,355,300,-1,174,353,355,-1,264,243,130,-1,264,241,243,-1,317,118,117,-1,317,313,118,-1,354,351,279,-1,354,283,351,-1,350,174,176,-1,350,349,174,-1,353,348,276,-1,353,347,348,-1,178,346,144,-1,178,345,346,-1,344,145,274,-1,344,76,145,-1,163,350,351,-1,163,164,350,-1,161,347,349,-1,161,162,347,-1,348,160,345,-1,348,159,160,-1,157,344,346,-1,157,158,344,-1,75,156,284,-1,77,156,75,-1,152,253,254,-1,262,253,152,-1,343,146,119,-1,147,146,343,-1,133,136,135,-1,133,134,136,-1,132,144,274,-1,144,132,131,-1,170,130,243,-1,53,130,170,-1,53,52,130,-1,231,127,1,-1,125,127,231,-1,146,120,119,-1,146,324,120,-1,272,122,291,-1,272,123,122,-1,252,115,25,-1,252,340,115,-1,311,342,309,-1,311,341,342,-1,340,245,115,-1,340,112,245,-1,293,113,292,-1,99,113,293,-1,114,341,311,-1,114,111,341,-1,104,313,102,-1,104,118,313,-1,129,105,108,-1,129,288,105,-1,308,104,103,-1,104,308,362,-1,36,339,212,-1,36,314,339,-1,116,99,293,-1,116,100,99,-1,339,296,295,-1,338,296,339,-1,39,209,208,-1,315,209,39,-1,206,210,207,-1,206,294,210,-1,22,337,23,-1,22,98,337,-1,269,331,336,-1,331,269,330,-1,333,335,334,-1,333,332,335,-1,330,318,331,-1,330,321,318,-1,325,93,328,-1,325,92,93,-1,329,304,327,-1,277,304,329,-1,327,191,325,-1,191,327,188,-1,90,92,326,-1,90,89,92,-1,5,84,6,-1,84,5,226,-1,83,87,2,-1,87,83,82,-1,145,75,323,-1,145,76,75,-1,65,287,192,-1,65,66,287,-1,282,272,120,-1,282,271,272,-1,184,50,199,-1,184,48,50,-1,238,91,322,-1,91,238,74,-1,137,68,67,-1,137,286,68,-1,57,282,60,-1,271,282,57,-1,55,321,56,-1,55,319,321,-1,199,47,197,-1,199,50,47,-1,109,117,110,-1,109,317,117,-1,248,149,249,-1,149,248,250,-1,289,362,308,-1,289,128,362,-1,54,128,52,-1,362,128,54,-1,51,43,0,-1,51,265,43,-1,231,242,229,-1,242,231,240,-1,302,47,49,-1,302,196,47,-1,29,217,200,-1,32,217,29,-1,214,24,23,-1,154,24,214,-1,34,314,36,-1,34,102,314,-1,310,167,315,-1,167,310,46,-1,211,223,222,-1,211,209,223,-1,201,217,95,-1,201,200,217,-1,313,37,312,-1,317,37,313,-1,260,15,17,-1,255,15,260,-1,18,260,14,-1,255,260,18,-1,19,268,259,-1,268,19,20,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcaptate_Geo_5_235_normalIndex_1()
		{
			int[] value = {321,341,348,-1,280,274,312,-1,312,339,280,-1,339,283,280,-1,98,80,44,-1,44,60,98,-1,105,91,55,-1,0,4,33,-1,35,55,91,-1,21,60,23,-1,21,41,60,-1,203,164,125,-1,125,190,203,-1,105,141,159,-1,141,240,159,-1,178,205,214,-1,214,154,178,-1,217,175,209,-1,175,197,209,-1,202,186,220,-1,146,211,133,-1,267,351,305,-1,351,361,305,-1,337,354,352,-1,337,314,354,-1,348,357,321,-1,245,247,198,-1,345,344,352,-1,291,327,323,-1,291,304,327,-1,6,28,1,-1,1,5,6,-1,133,94,146,-1,133,89,94,-1,40,47,28,-1,28,6,40,-1,65,104,177,-1,177,158,65,-1,65,42,26,-1,123,108,99,-1,226,290,225,-1,226,270,290,-1,334,331,346,-1,331,339,346,-1,324,272,299,-1,15,31,19,-1,15,18,31,-1,32,31,42,-1,42,49,32,-1,145,159,139,-1,205,178,219,-1,172,208,203,-1,161,212,227,-1,216,157,218,-1,216,175,157,-1,234,282,311,-1,311,238,234,-1,305,137,166,-1,243,227,293,-1,149,227,165,-1,190,308,217,-1,308,199,217,-1,155,173,198,-1,150,223,222,-1,292,269,288,-1,222,146,150,-1,283,310,268,-1,283,319,310,-1,245,191,210,-1,210,258,245,-1,37,50,20,-1,50,46,20,-1,25,51,40,-1,51,53,40,-1,39,29,12,-1,39,48,29,-1,9,1,12,-1,39,28,47,-1,37,30,62,-1,113,130,75,-1,132,189,97,-1,97,67,132,-1,96,107,106,-1,99,102,120,-1,90,102,92,-1,95,102,86,-1,109,102,112,-1,119,102,114,-1,291,306,246,-1,291,323,306,-1,362,361,351,-1,156,189,249,-1,166,247,231,-1,233,254,207,-1,129,235,160,-1,129,188,235,-1,64,30,43,-1,64,62,30,-1,271,328,327,-1,271,273,328,-1,355,356,349,-1,355,300,338,-1,355,328,300,-1,13,7,2,-1,2,10,13,-1,51,70,53,-1,292,288,284,-1,296,211,284,-1,296,242,211,-1,246,288,269,-1,337,318,278,-1,340,320,306,-1,183,194,253,-1,261,236,253,-1,261,195,236,-1,184,224,205,-1,187,302,171,-1,302,286,171,-1,192,172,197,-1,172,209,197,-1,172,203,209,-1,200,141,142,-1,139,103,145,-1,98,103,76,-1,103,139,121,-1,309,336,298,-1,136,76,154,-1,350,360,347,-1,347,325,350,-1,336,274,298,-1,322,324,346,-1,346,324,334,-1,163,280,128,-1,310,358,333,-1,310,342,358,-1,128,201,77,-1,77,163,128,-1,274,136,298,-1,131,80,77,-1,80,98,77,-1,60,118,98,-1,116,91,145,-1,16,23,44,-1,23,60,44,-1,27,101,104,-1,305,166,267,-1,329,265,326,-1,329,266,265,-1,288,303,311,-1,287,227,212,-1,288,263,285,-1,285,279,297,-1,249,189,276,-1,106,71,96,-1,260,190,152,-1,190,122,152,-1,3,35,45,-1,45,21,3,-1,242,296,297,-1,296,285,297,-1,48,63,29,-1,63,66,29,-1,3,21,11,-1,11,0,3,-1,106,55,34,-1,34,71,106,-1,96,83,100,-1,96,71,83,-1,125,106,107,-1,285,296,288,-1,263,288,282,-1,175,153,157,-1,311,277,238,-1,311,303,277,-1,303,288,278,-1,357,347,353,-1,17,1,9,-1,24,4,22,-1,15,19,5,-1,21,45,41,-1,44,80,101,-1,101,27,44,-1,77,76,136,-1,163,136,274,-1,163,77,136,-1,201,131,77,-1,268,310,317,-1,310,333,317,-1,280,201,128,-1,226,272,324,-1,324,322,270,-1,274,280,163,-1,353,347,360,-1,77,98,76,-1,219,178,183,-1,103,98,145,-1,159,91,105,-1,159,145,91,-1,105,55,106,-1,240,141,200,-1,286,224,171,-1,194,240,301,-1,183,253,236,-1,340,306,323,-1,306,278,288,-1,264,291,269,-1,291,246,269,-1,288,296,284,-1,239,264,269,-1,46,59,51,-1,59,70,51,-1,79,58,50,-1,85,61,82,-1,185,160,235,-1,235,273,185,-1,124,102,119,-1,271,327,244,-1,278,306,320,-1,299,334,324,-1,246,306,288,-1,304,259,244,-1,120,124,138,-1,138,143,120,-1,114,102,109,-1,112,102,95,-1,86,102,90,-1,92,102,99,-1,120,102,124,-1,97,189,156,-1,156,93,97,-1,89,132,67,-1,89,133,132,-1,57,63,48,-1,57,74,63,-1,20,7,37,-1,7,30,37,-1,40,2,25,-1,40,6,2,-1,12,1,28,-1,28,39,12,-1,12,29,9,-1,47,48,39,-1,47,57,48,-1,221,193,228,-1,292,211,232,-1,292,284,211,-1,244,327,304,-1,153,115,157,-1,153,148,115,-1,227,149,161,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcaptate_Geo_5_235_normalIndex_2()
		{
			int[] value = {165,227,243,-1,293,227,287,-1,311,282,288,-1,180,215,230,-1,180,176,215,-1,175,217,153,-1,192,196,208,-1,208,172,192,-1,219,184,205,-1,219,206,184,-1,301,253,194,-1,301,261,253,-1,96,122,107,-1,268,201,283,-1,129,168,188,-1,181,177,104,-1,359,352,343,-1,352,344,343,-1,42,18,26,-1,42,31,18,-1,43,52,64,-1,298,214,309,-1,294,272,226,-1,226,225,294,-1,325,336,350,-1,336,309,350,-1,324,270,226,-1,318,313,278,-1,158,84,65,-1,104,65,26,-1,26,27,104,-1,1,15,5,-1,1,17,15,-1,211,222,232,-1,211,146,222,-1,340,349,356,-1,356,320,340,-1,189,132,297,-1,132,242,297,-1,162,169,193,-1,267,353,351,-1,326,313,358,-1,305,289,186,-1,186,137,305,-1,140,169,162,-1,224,286,309,-1,286,350,309,-1,142,141,105,-1,105,106,142,-1,305,361,289,-1,41,118,60,-1,45,116,118,-1,118,41,45,-1,9,33,4,-1,347,357,348,-1,348,294,347,-1,274,336,312,-1,336,290,312,-1,225,347,294,-1,225,325,347,-1,283,331,319,-1,283,339,331,-1,201,280,283,-1,341,331,348,-1,319,331,341,-1,225,336,325,-1,336,225,290,-1,0,22,4,-1,11,22,0,-1,35,116,45,-1,35,91,116,-1,241,216,174,-1,256,216,241,-1,360,315,362,-1,360,302,315,-1,217,203,190,-1,217,209,203,-1,240,139,159,-1,139,240,194,-1,214,224,309,-1,205,224,214,-1,318,358,313,-1,358,318,359,-1,329,341,321,-1,329,342,341,-1,155,247,166,-1,155,198,247,-1,193,207,228,-1,193,169,207,-1,279,254,276,-1,279,257,254,-1,186,151,137,-1,186,202,151,-1,228,254,257,-1,228,207,254,-1,242,133,211,-1,242,132,133,-1,295,332,275,-1,335,332,295,-1,352,356,345,-1,352,354,356,-1,232,223,239,-1,232,222,223,-1,70,57,53,-1,70,74,57,-1,158,295,275,-1,295,158,177,-1,349,323,327,-1,349,340,323,-1,14,15,17,-1,14,18,15,-1,130,144,182,-1,130,113,144,-1,299,294,348,-1,272,294,299,-1,270,312,290,-1,322,312,270,-1,36,8,32,-1,8,36,10,-1,38,43,13,-1,38,52,43,-1,64,61,85,-1,64,52,61,-1,56,38,36,-1,54,38,56,-1,14,44,27,-1,14,16,44,-1,344,330,343,-1,344,335,330,-1,177,281,295,-1,281,177,181,-1,65,49,42,-1,65,84,49,-1,188,213,250,-1,188,168,213,-1,316,275,332,-1,316,252,275,-1,262,268,317,-1,262,201,268,-1,125,122,190,-1,107,122,125,-1,208,301,251,-1,208,261,301,-1,236,219,183,-1,236,206,219,-1,176,184,206,-1,176,180,184,-1,255,187,230,-1,220,187,255,-1,192,215,196,-1,248,215,192,-1,199,153,217,-1,153,199,148,-1,256,255,248,-1,256,241,255,-1,191,221,210,-1,191,193,221,-1,186,315,220,-1,186,289,315,-1,243,307,237,-1,243,293,307,-1,115,165,140,-1,115,149,165,-1,287,199,308,-1,287,212,199,-1,237,260,229,-1,237,307,260,-1,157,140,162,-1,157,115,140,-1,266,321,231,-1,329,321,266,-1,229,207,169,-1,207,229,233,-1,25,7,20,-1,25,2,7,-1,78,146,94,-1,78,150,146,-1,156,100,93,-1,156,152,100,-1,92,108,81,-1,92,99,108,-1,69,90,68,-1,69,86,90,-1,111,95,88,-1,111,112,95,-1,114,117,126,-1,114,109,117,-1,138,119,135,-1,138,124,119,-1,144,143,167,-1,123,143,144,-1,68,79,62,-1,68,81,79,-1,85,69,64,-1,85,88,69,-1,117,110,129,-1,117,111,110,-1,135,160,185,-1,135,126,160,-1,167,138,170,-1,167,143,138,-1,303,265,277,-1,265,303,278,-1,244,170,271,-1,244,167,170,-1,185,271,170,-1,185,273,271,-1,127,85,82,-1,110,85,127,-1,75,79,113,-1,79,75,58,-1,273,300,328,-1,235,300,273,-1,168,134,213,-1,168,127,134,-1,73,61,54,-1,82,61,73,-1,50,59,46,-1,50,58,59,-1,300,316,338,-1,316,300,250,-1,213,147,252,-1,147,213,134,-1,158,87,84,-1,158,147,87,-1,87,54,56,-1,73,54,87,-1,59,94,70,-1,59,78,94,-1,182,259,223,-1,182,244,259,-1,176,196,215,-1,196,176,195,-1,164,200,142,-1,164,251,200,-1,181,262,281,-1,181,179,262,-1,333,359,343,-1,333,358,359,-1,16,17,24,-1,16,14,17,-1,24,9,4,-1,17,9,24,-1,278,326,265,-1,278,313,326,-1,258,238,277,-1,238,258,210,-1,220,241,202,-1,255,241,220,-1,263,234,257,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcaptate_Geo_5_235_normalIndex_3()
		{
			int[] value = {263,282,234,-1,249,254,233,-1,254,249,276,-1,97,72,66,-1,93,72,97,-1,33,71,34,-1,71,33,83,-1,29,72,9,-1,29,66,72,-1,24,23,16,-1,24,22,23,-1,5,8,6,-1,19,8,5,-1,66,67,97,-1,63,67,66,-1,33,72,83,-1,33,9,72,-1,93,83,72,-1,93,100,83,-1,249,152,156,-1,260,152,249,-1,249,229,260,-1,249,233,229,-1,279,263,257,-1,279,285,263,-1,234,228,257,-1,228,234,221,-1,204,173,218,-1,204,198,173,-1,267,231,321,-1,231,267,166,-1,118,145,98,-1,118,116,145,-1,131,101,80,-1,131,179,101,-1,201,179,131,-1,179,201,262,-1,317,343,330,-1,317,333,343,-1,360,351,353,-1,351,360,362,-1,214,136,154,-1,298,136,214,-1,121,76,103,-1,121,154,76,-1,251,240,200,-1,251,301,240,-1,230,171,180,-1,230,187,171,-1,196,261,208,-1,261,196,195,-1,206,195,176,-1,195,206,236,-1,63,89,67,-1,89,63,74,-1,10,6,8,-1,6,10,2,-1,56,84,87,-1,49,84,56,-1,73,147,134,-1,147,73,87,-1,179,104,101,-1,179,181,104,-1,147,275,252,-1,147,158,275,-1,338,332,345,-1,338,316,332,-1,345,355,338,-1,356,355,345,-1,355,327,328,-1,355,349,327,-1,58,78,59,-1,58,75,78,-1,30,13,43,-1,30,7,13,-1,134,82,73,-1,127,82,134,-1,235,250,300,-1,235,188,250,-1,182,167,244,-1,144,167,182,-1,129,127,168,-1,129,110,127,-1,277,266,258,-1,277,265,266,-1,151,173,155,-1,151,174,173,-1,170,135,185,-1,170,138,135,-1,126,129,160,-1,126,117,129,-1,110,88,85,-1,110,111,88,-1,64,68,62,-1,64,69,68,-1,81,113,79,-1,81,108,113,-1,119,126,135,-1,119,114,126,-1,109,111,117,-1,109,112,111,-1,88,86,69,-1,88,95,86,-1,90,81,68,-1,90,92,81,-1,123,120,143,-1,99,120,123,-1,96,152,122,-1,100,152,96,-1,78,130,150,-1,75,130,78,-1,20,51,25,-1,20,46,51,-1,50,62,79,-1,62,50,37,-1,231,258,266,-1,247,258,231,-1,247,245,258,-1,342,319,341,-1,310,319,342,-1,130,223,150,-1,130,182,223,-1,239,292,232,-1,239,269,292,-1,260,308,190,-1,260,307,308,-1,140,229,169,-1,140,237,229,-1,307,287,308,-1,307,293,287,-1,148,149,115,-1,161,149,148,-1,165,237,140,-1,165,243,237,-1,218,174,216,-1,218,173,174,-1,210,234,238,-1,210,221,234,-1,162,218,157,-1,218,162,204,-1,197,248,192,-1,197,256,248,-1,199,161,148,-1,199,212,161,-1,248,230,215,-1,255,230,248,-1,220,302,187,-1,315,302,220,-1,184,171,224,-1,184,180,171,-1,203,251,164,-1,203,208,251,-1,317,281,262,-1,281,317,330,-1,250,252,316,-1,250,213,252,-1,330,295,281,-1,330,335,295,-1,36,49,56,-1,36,32,49,-1,54,52,38,-1,61,52,54,-1,38,10,36,-1,10,38,13,-1,19,32,8,-1,19,31,32,-1,312,346,339,-1,346,312,322,-1,331,299,348,-1,299,331,334,-1,113,123,144,-1,113,108,123,-1,94,74,70,-1,94,89,74,-1,259,239,223,-1,259,264,239,-1,356,314,320,-1,356,354,314,-1,27,18,14,-1,18,27,26,-1,53,47,40,-1,53,57,47,-1,291,259,304,-1,264,259,291,-1,345,335,344,-1,345,332,335,-1,320,337,278,-1,320,314,337,-1,137,155,166,-1,137,151,155,-1,279,189,297,-1,189,279,276,-1,193,204,162,-1,193,191,204,-1,198,191,245,-1,204,191,198,-1,357,267,321,-1,357,353,267,-1,342,326,358,-1,326,342,329,-1,359,337,352,-1,359,318,337,-1,178,121,183,-1,154,121,178,-1,142,125,164,-1,106,125,142,-1,175,256,197,-1,175,216,256,-1,289,362,315,-1,362,289,361,-1,286,360,350,-1,286,302,360,-1,194,121,139,-1,194,183,121,-1,174,202,241,-1,151,202,174,-1,34,0,33,-1,3,0,34,-1,35,34,55,-1,3,34,35,-1,21,22,11,-1,22,21,23,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcartend_Geo_5_241_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,9,10,7,-1,11,12,13,-1,11,14,12,-1,15,16,17,-1,15,18,16,-1,19,20,21,-1,19,22,20,-1,9,23,10,-1,23,24,10,-1,9,25,12,-1,11,13,26,-1,13,27,26,-1,28,29,30,-1,28,31,29,-1,9,8,25,-1,3,32,33,-1,3,2,32,-1,34,35,36,-1,37,38,34,-1,38,39,34,-1,40,41,42,-1,40,43,41,-1,44,45,46,-1,45,47,46,-1,48,49,50,-1,48,51,49,-1,35,39,50,-1,39,52,50,-1,53,54,55,-1,54,52,55,-1,56,55,57,-1,56,53,55,-1,42,41,57,-1,41,58,57,-1,59,60,61,-1,60,58,61,-1,62,63,64,-1,63,65,64,-1,66,67,68,-1,66,69,67,-1,65,66,64,-1,65,70,66,-1,71,72,73,-1,71,74,72,-1,75,76,77,-1,78,79,80,-1,78,81,79,-1,82,83,84,-1,82,85,83,-1,86,84,87,-1,86,82,84,-1,88,89,90,-1,88,91,89,-1,92,93,94,-1,94,95,92,-1,88,96,97,-1,98,96,99,-1,87,96,86,-1,96,88,90,-1,96,87,95,-1,100,101,102,-1,102,103,100,-1,104,105,106,-1,107,100,103,-1,108,109,110,-1,111,112,113,-1,113,103,111,-1,103,113,107,-1,114,115,116,-1,116,117,114,-1,115,118,119,-1,119,116,115,-1,120,121,122,-1,120,123,121,-1,124,115,125,-1,115,114,125,-1,126,127,128,-1,128,129,126,-1,123,130,131,-1,123,132,130,-1,130,133,131,-1,134,135,133,-1,119,118,133,-1,136,121,123,-1,123,131,136,-1,134,133,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,144,147,145,-1,148,149,144,-1,148,150,149,-1,147,151,152,-1,153,154,155,-1,154,156,155,-1,157,158,159,-1,160,161,155,-1,162,163,164,-1,164,165,162,-1,145,147,166,-1,167,168,169,-1,170,171,172,-1,173,174,175,-1,173,176,174,-1,177,170,172,-1,178,179,180,-1,179,181,180,-1,182,183,184,-1,182,179,183,-1,180,163,162,-1,162,185,180,-1,142,186,143,-1,163,187,186,-1,163,188,187,-1,183,189,190,-1,186,142,164,-1,164,163,186,-1,191,192,193,-1,192,194,193,-1,195,196,197,-1,143,193,198,-1,143,148,141,-1,168,199,200,-1,200,201,168,-1,190,177,184,-1,189,178,175,-1,178,202,175,-1,159,203,157,-1,204,143,187,-1,143,198,150,-1,171,200,172,-1,172,184,177,-1,172,182,184,-1,202,205,173,-1,206,207,208,-1,207,209,208,-1,210,211,212,-1,211,213,212,-1,214,215,216,-1,216,217,214,-1,218,219,220,-1,218,213,219,-1,215,221,216,-1,215,222,221,-1,223,224,225,-1,223,226,224,-1,227,228,229,-1,230,231,232,-1,233,234,235,-1,229,236,237,-1,237,226,229,-1,238,236,239,-1,238,240,236,-1,241,242,243,-1,244,245,243,-1,246,247,243,-1,243,242,248,-1,249,231,250,-1,251,231,252,-1,231,230,252,-1,251,250,231,-1,253,254,255,-1,253,256,254,-1,257,258,259,-1,258,260,259,-1,261,262,256,-1,262,263,256,-1,264,265,262,-1,266,267,251,-1,266,268,267,-1,269,270,271,-1,265,259,260,-1,265,272,259,-1,270,273,252,-1,252,274,270,-1,269,266,273,-1,275,264,261,-1,272,265,264,-1,276,277,278,-1,278,279,276,-1,280,281,282,-1,280,283,281,-1,284,285,286,-1,284,287,285,-1,288,289,290,-1,288,291,289,-1,292,293,294,-1,292,295,293,-1,293,296,297,-1,298,299,300,-1,299,301,302,-1,299,298,301,-1,303,304,305,-1,304,306,305,-1,307,308,309,-1,308,301,309,-1,310,304,311,-1,310,312,304,-1,313,314,315,-1,314,316,315,-1,317,318,319,-1,318,283,319,-1,293,295,320,-1,320,296,293,-1,321,307,309,-1,321,316,307,-1,298,300,322,-1,323,324,325,-1,325,326,323,-1,325,327,326,-1,325,328,327,-1,329,330,276,-1,330,331,276,-1,332,333,334,-1,333,335,334,-1,336,337,338,-1,323,339,340,-1,323,341,339,-1,342,343,344,-1,332,345,333,-1,345,338,333,-1,342,346,347,-1,348,349,350,-1,350,351,348,-1,352,353,354,-1,354,355,352,-1,356,357,358,-1,356,359,357,-1,360,361,359,-1,359,356,360,-1,362,363,364,-1,348,365,366,-1,365,367,366,-1,368,369,370,-1,370,369,371,-1,371,372,370,-1,373,374,375,-1,374,376,375,-1,377,378,379,-1,379,380,377,-1,373,375,379,-1,379,378,373,-1,381,376,382,-1,376,383,382,-1,384,385,374,-1,374,386,384,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcartend_Geo_5_241_coordIndex_2()
		{
			int[] value = {387,368,352,-1,352,349,387,-1,348,366,387,-1,388,389,390,-1,391,392,393,-1,391,394,392,-1,395,396,397,-1,398,399,400,-1,399,401,400,-1,401,402,403,-1,401,399,402,-1,390,404,405,-1,390,406,404,-1,407,397,403,-1,397,401,403,-1,408,393,409,-1,408,391,393,-1,402,399,410,-1,399,411,410,-1,362,365,363,-1,365,412,363,-1,413,414,398,-1,398,415,413,-1,408,396,395,-1,389,388,416,-1,389,406,390,-1,417,418,419,-1,420,421,422,-1,421,423,422,-1,424,425,426,-1,425,427,426,-1,428,429,430,-1,428,361,429,-1,418,431,432,-1,432,419,418,-1,433,434,435,-1,433,436,434,-1,437,438,439,-1,439,421,437,-1,419,440,420,-1,419,432,440,-1,441,442,434,-1,442,431,434,-1,428,430,438,-1,438,437,428,-1,443,428,437,-1,437,440,443,-1,444,424,426,-1,426,436,444,-1,445,446,447,-1,446,448,447,-1,449,450,451,-1,451,452,449,-1,453,454,455,-1,453,456,454,-1,457,458,459,-1,457,460,458,-1,461,462,463,-1,463,464,461,-1,465,466,467,-1,465,468,466,-1,469,446,445,-1,469,470,446,-1,471,472,473,-1,474,475,476,-1,450,477,451,-1,450,478,477,-1,460,479,458,-1,460,480,479,-1,481,482,483,-1,481,484,482,-1,468,485,466,-1,468,486,485,-1,448,478,450,-1,448,487,478,-1,488,489,487,-1,490,491,489,-1,492,493,494,-1,479,492,495,-1,479,496,492,-1,497,494,493,-1,498,499,500,-1,501,502,503,-1,502,504,503,-1,505,506,507,-1,506,508,507,-1,505,507,509,-1,505,509,510,-1,511,512,513,-1,514,515,513,-1,516,517,518,-1,503,509,519,-1,519,501,503,-1,515,520,513,-1,472,471,521,-1,499,522,500,-1,523,524,525,-1,525,526,523,-1,513,512,514,-1,527,510,509,-1,509,503,527,-1,528,529,510,-1,510,527,528,-1,530,514,531,-1,530,515,514,-1,520,532,502,-1,502,501,520,-1,510,529,505,-1,529,506,505,-1,473,528,504,-1,504,471,473,-1,525,533,508,-1,508,534,525,-1,535,536,537,-1,538,522,499,-1,492,496,539,-1,539,493,492,-1,540,539,541,-1,539,496,541,-1,540,542,543,-1,486,543,485,-1,486,544,543,-1,494,545,546,-1,480,496,479,-1,480,541,496,-1,547,494,546,-1,493,548,497,-1,549,490,489,-1,550,488,487,-1,487,470,550,-1,466,485,551,-1,551,552,466,-1,486,483,482,-1,486,468,483,-1,546,545,462,-1,545,463,462,-1,458,495,553,-1,458,479,495,-1,492,547,495,-1,492,494,547,-1,525,534,526,-1,554,555,556,-1,464,463,481,-1,481,557,464,-1,558,468,465,-1,558,483,468,-1,467,552,559,-1,467,466,552,-1,432,431,560,-1,431,442,560,-1,424,444,561,-1,561,562,424,-1,417,444,433,-1,444,436,433,-1,563,564,565,-1,564,562,565,-1,562,564,425,-1,425,424,562,-1,566,389,567,-1,389,416,567,-1,395,391,408,-1,413,415,568,-1,568,569,413,-1,416,388,570,-1,388,571,570,-1,572,573,574,-1,573,367,574,-1,574,367,365,-1,365,362,574,-1,400,409,398,-1,409,415,398,-1,414,411,398,-1,411,399,398,-1,400,401,396,-1,401,397,396,-1,391,395,394,-1,406,389,572,-1,388,390,571,-1,390,405,571,-1,368,353,352,-1,370,403,402,-1,402,353,370,-1,348,387,349,-1,575,375,576,-1,575,379,375,-1,385,383,374,-1,383,376,374,-1,577,578,579,-1,579,580,577,-1,581,582,583,-1,582,584,583,-1,577,581,386,-1,386,578,577,-1,366,585,387,-1,353,368,370,-1,586,587,588,-1,589,590,591,-1,592,593,594,-1,353,402,410,-1,410,354,353,-1,412,348,351,-1,412,365,348,-1,338,345,336,-1,339,336,345,-1,342,344,346,-1,340,345,332,-1,340,339,345,-1,347,595,342,-1,326,327,344,-1,344,343,326,-1,339,341,336,-1,596,333,338,-1,338,337,596,-1,597,327,328,-1,328,598,597,-1,323,599,324,-1,323,340,599,-1,597,331,330,-1,597,598,331,-1,600,301,308,-1,601,602,320,-1,602,296,320,-1,603,601,320,-1,320,604,603,-1,605,316,314,-1,605,307,316,-1,300,606,607,-1,607,322,300,-1,608,609,610,-1,610,611,608,-1,603,604,612,-1,612,613,603,-1,311,304,303,-1,303,614,311,-1,609,608,315,-1,608,613,315,-1,600,317,615,-1,615,302,600,-1,616,312,617,-1,312,310,617,-1,302,301,600,-1,611,614,602,-1,618,619,620,-1,618,621,619,-1,290,289,295,-1,295,292,290,-1,286,285,291,-1,291,288,286,-1,282,287,284,-1,282,281,287,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcartend_Geo_5_241_coordIndex_3()
		{
			int[] value = {269,273,270,-1,253,261,256,-1,253,275,261,-1,273,266,251,-1,251,252,273,-1,274,622,270,-1,622,271,270,-1,266,269,268,-1,260,263,262,-1,262,265,260,-1,261,264,262,-1,622,623,624,-1,622,274,623,-1,625,626,267,-1,626,251,267,-1,626,250,251,-1,622,257,259,-1,622,624,257,-1,250,627,249,-1,626,627,250,-1,248,246,243,-1,245,241,243,-1,242,241,235,-1,235,628,242,-1,237,246,629,-1,246,248,629,-1,247,244,243,-1,630,240,238,-1,630,631,240,-1,226,629,224,-1,226,237,629,-1,239,236,229,-1,238,632,633,-1,227,226,223,-1,227,229,226,-1,634,222,215,-1,634,635,222,-1,636,637,638,-1,637,639,638,-1,640,212,641,-1,640,642,212,-1,208,215,214,-1,208,634,215,-1,643,644,642,-1,643,645,644,-1,212,213,641,-1,213,218,641,-1,646,173,205,-1,646,176,173,-1,170,177,203,-1,203,647,170,-1,199,648,200,-1,199,649,648,-1,191,143,650,-1,143,186,187,-1,157,651,158,-1,190,189,175,-1,652,650,143,-1,193,143,191,-1,649,199,167,-1,204,187,188,-1,188,649,204,-1,183,190,184,-1,653,143,204,-1,178,189,183,-1,183,179,178,-1,179,648,181,-1,179,182,648,-1,165,185,162,-1,165,654,185,-1,170,655,171,-1,170,647,655,-1,173,175,202,-1,205,202,185,-1,151,656,140,-1,151,149,656,-1,140,656,138,-1,656,194,138,-1,657,138,192,-1,138,194,192,-1,139,658,140,-1,167,653,204,-1,204,649,167,-1,199,168,167,-1,659,660,655,-1,655,647,659,-1,161,661,660,-1,157,174,651,-1,155,156,646,-1,156,176,646,-1,161,660,153,-1,153,155,161,-1,144,149,147,-1,149,151,147,-1,148,143,150,-1,169,168,201,-1,117,116,662,-1,116,663,662,-1,119,133,130,-1,136,133,135,-1,118,137,133,-1,115,124,118,-1,124,137,118,-1,127,126,134,-1,126,135,134,-1,131,133,136,-1,120,132,123,-1,120,664,132,-1,126,122,121,-1,126,129,122,-1,124,125,128,-1,128,127,124,-1,116,119,132,-1,119,130,132,-1,116,132,663,-1,132,664,663,-1,111,103,102,-1,105,665,106,-1,110,109,665,-1,665,105,110,-1,109,101,100,-1,109,108,101,-1,108,666,101,-1,108,667,666,-1,665,113,106,-1,665,107,113,-1,101,666,668,-1,668,102,101,-1,95,94,96,-1,98,86,96,-1,90,99,96,-1,669,97,96,-1,96,94,669,-1,80,91,88,-1,88,97,80,-1,98,82,86,-1,98,670,82,-1,89,671,672,-1,89,673,671,-1,84,674,92,-1,84,83,674,-1,93,81,78,-1,93,675,81,-1,80,676,91,-1,80,79,676,-1,69,677,67,-1,677,678,67,-1,679,680,75,-1,75,77,679,-1,68,67,75,-1,75,680,68,-1,62,64,681,-1,57,58,56,-1,58,60,56,-1,55,38,42,-1,42,57,55,-1,55,52,38,-1,52,39,38,-1,50,52,48,-1,52,54,48,-1,682,34,36,-1,40,42,37,-1,42,38,37,-1,35,34,39,-1,7,10,683,-1,9,14,23,-1,9,12,14,-1,1,684,32,-1,32,2,1,-1,7,683,685,-1,21,686,19,-1,686,687,19,-1,26,31,11,-1,31,28,11,-1,688,27,689,-1,27,13,689,-1,685,683,690,-1,691,692,17,-1,17,16,691,-1,693,6,3,-1,3,33,693,-1,22,4,694,-1,694,30,22,-1,13,25,689,-1,13,12,25,-1,4,6,694,-1,3,5,0,-1,0,2,3,-1,689,8,692,-1,689,25,8,-1,685,695,15,-1,685,690,695,-1,696,697,698,-1,696,684,697,-1,0,699,1,-1,699,0,687,-1,5,22,19,-1,5,4,22,-1,694,28,30,-1,694,700,28,-1,684,701,32,-1,701,684,696,-1,700,23,14,-1,700,693,23,-1,702,697,703,-1,698,697,702,-1,688,692,691,-1,692,688,689,-1,704,687,686,-1,699,687,704,-1,15,705,18,-1,695,705,15,-1,696,683,701,-1,696,690,683,-1,6,700,694,-1,6,693,700,-1,61,45,59,-1,45,61,47,-1,44,49,51,-1,44,46,49,-1,34,706,37,-1,34,682,706,-1,71,707,708,-1,71,73,707,-1,74,77,709,-1,679,77,74,-1,710,711,712,-1,72,711,710,-1,713,714,715,-1,714,713,70,-1,66,713,69,-1,66,70,713,-1,680,681,68,-1,681,680,62,-1,714,707,710,-1,707,714,708,-1,76,67,678,-1,76,75,67,-1,675,92,674,-1,675,93,92,-1,716,672,671,-1,716,670,672,-1,89,676,673,-1,91,676,89,-1,670,99,672,-1,99,670,98,-1,80,669,78,-1,669,80,97,-1,104,717,718,-1,112,717,104,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlcartend_Geo_5_241_coordIndex_4()
		{
			int[] value = {719,102,668,-1,719,111,102,-1,108,720,667,-1,110,720,108,-1,107,109,100,-1,107,665,109,-1,121,135,126,-1,121,136,135,-1,134,124,127,-1,124,134,137,-1,164,145,165,-1,164,146,145,-1,155,721,160,-1,155,646,721,-1,651,176,156,-1,651,174,176,-1,158,659,159,-1,659,158,154,-1,154,660,659,-1,154,153,660,-1,169,196,167,-1,169,197,196,-1,192,169,657,-1,197,169,192,-1,200,722,201,-1,200,171,722,-1,723,171,655,-1,171,723,722,-1,188,648,649,-1,188,181,648,-1,149,198,656,-1,198,149,150,-1,650,195,197,-1,650,652,195,-1,196,653,167,-1,195,653,196,-1,175,157,190,-1,174,157,175,-1,647,159,659,-1,647,203,159,-1,724,725,726,-1,724,727,725,-1,728,727,724,-1,728,729,727,-1,730,634,731,-1,634,730,635,-1,732,733,734,-1,726,733,732,-1,216,643,217,-1,216,645,643,-1,642,210,212,-1,642,644,210,-1,636,219,735,-1,219,636,736,-1,209,638,731,-1,737,638,209,-1,643,640,738,-1,643,642,640,-1,736,739,740,-1,736,737,739,-1,206,214,741,-1,206,208,214,-1,742,216,221,-1,216,742,645,-1,644,732,210,-1,644,743,732,-1,636,744,637,-1,735,744,636,-1,639,731,638,-1,639,730,731,-1,222,729,221,-1,727,729,222,-1,728,743,742,-1,743,728,724,-1,745,734,733,-1,745,744,734,-1,746,730,639,-1,730,746,747,-1,748,229,228,-1,748,239,229,-1,749,234,750,-1,749,751,234,-1,238,752,630,-1,752,238,633,-1,224,628,751,-1,224,629,628,-1,235,630,233,-1,235,631,630,-1,247,237,236,-1,247,246,237,-1,629,242,628,-1,629,248,242,-1,241,631,235,-1,241,245,631,-1,254,263,753,-1,263,254,256,-1,623,252,230,-1,623,274,252,-1,268,253,267,-1,268,275,253,-1,754,755,756,-1,754,319,755,-1,297,757,758,-1,297,305,757,-1,759,760,306,-1,760,759,761,-1,762,619,763,-1,620,619,762,-1,764,621,618,-1,764,765,621,-1,610,321,766,-1,610,609,321,-1,611,767,608,-1,611,768,767,-1,317,754,615,-1,317,319,754,-1,616,621,765,-1,621,616,607,-1,313,613,612,-1,315,613,313,-1,604,291,612,-1,604,289,291,-1,613,767,603,-1,608,767,613,-1,602,768,611,-1,602,601,768,-1,322,616,617,-1,322,607,616,-1,605,283,318,-1,281,283,605,-1,300,769,606,-1,300,299,769,-1,600,318,317,-1,318,600,308,-1,303,602,614,-1,296,602,303,-1,759,304,312,-1,759,306,304,-1,615,763,769,-1,754,763,615,-1,314,285,287,-1,285,314,313,-1,619,769,763,-1,619,606,769,-1,770,310,766,-1,310,770,617,-1,771,329,276,-1,329,771,596,-1,329,347,330,-1,329,595,347,-1,330,346,597,-1,330,347,346,-1,326,341,323,-1,326,343,341,-1,342,341,343,-1,342,336,341,-1,336,595,337,-1,342,595,336,-1,772,773,429,-1,774,773,772,-1,775,776,777,-1,775,427,776,-1,429,360,772,-1,429,361,360,-1,778,563,779,-1,778,564,563,-1,375,381,576,-1,375,376,381,-1,370,407,403,-1,372,407,370,-1,780,579,781,-1,780,580,579,-1,584,566,583,-1,566,584,573,-1,368,585,369,-1,368,387,585,-1,371,581,577,-1,581,371,582,-1,385,567,782,-1,567,385,384,-1,371,580,372,-1,580,371,577,-1,583,386,581,-1,583,384,386,-1,378,781,579,-1,377,781,378,-1,589,383,590,-1,589,382,383,-1,405,783,571,-1,405,588,783,-1,406,574,404,-1,406,572,574,-1,568,784,569,-1,568,785,784,-1,409,568,415,-1,409,393,568,-1,570,590,782,-1,570,591,590,-1,591,571,783,-1,570,571,591,-1,782,416,570,-1,416,782,567,-1,395,781,394,-1,781,395,780,-1,417,435,418,-1,417,433,435,-1,775,442,441,-1,775,594,442,-1,359,560,357,-1,560,359,443,-1,563,786,773,-1,565,786,563,-1,417,561,444,-1,561,417,422,-1,787,788,789,-1,788,787,423,-1,562,787,565,-1,562,561,787,-1,790,791,792,-1,790,553,791,-1,559,793,794,-1,559,552,793,-1,557,483,558,-1,557,481,483,-1,550,554,556,-1,554,550,795,-1,494,484,545,-1,484,494,497,-1,547,553,495,-1,547,791,553,-1,456,796,454,-1,456,797,796,-1,791,546,462,-1,546,791,547,-1,798,552,551,-1,552,798,793,-1,488,556,799,-1,556,488,550,-1,800,551,801,-1,798,551,800,-1,802,803,804,-1,805,803,802,-1,804,796,797,-1,796,804,806,-1,803,543,542,-1,803,801,543,-1,540,544,539,-1,540,543,544,-1,482,497,548,-1,482,484,497,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlcartend_Geo_5_241_coordIndex_5()
		{
			int[] value = {796,541,480,-1,796,806,541,-1,548,486,482,-1,548,544,486,-1,549,798,800,-1,549,799,798,-1,806,540,541,-1,542,540,806,-1,491,805,802,-1,490,805,491,-1,548,539,544,-1,493,539,548,-1,500,807,498,-1,500,808,807,-1,535,471,536,-1,535,521,471,-1,498,809,518,-1,498,531,809,-1,524,533,525,-1,524,810,533,-1,811,529,476,-1,811,506,529,-1,536,504,502,-1,536,471,504,-1,812,530,807,-1,812,532,530,-1,508,811,534,-1,508,506,811,-1,519,520,501,-1,519,513,520,-1,809,511,810,-1,511,809,512,-1,508,813,507,-1,508,533,813,-1,532,515,530,-1,515,532,520,-1,504,527,503,-1,527,504,528,-1,518,523,516,-1,524,523,518,-1,814,807,808,-1,807,814,812,-1,511,519,813,-1,511,513,519,-1,537,812,814,-1,537,536,812,-1,519,507,813,-1,519,509,507,-1,813,810,511,-1,813,533,810,-1,531,512,809,-1,531,514,512,-1,807,531,498,-1,807,530,531,-1,502,812,536,-1,812,502,532,-1,529,473,476,-1,473,529,528,-1,809,524,518,-1,524,809,810,-1,815,499,498,-1,499,815,538,-1,517,498,518,-1,517,815,498,-1,805,549,800,-1,805,490,549,-1,491,477,478,-1,491,802,477,-1,485,801,551,-1,543,801,485,-1,804,542,806,-1,804,803,542,-1,802,797,477,-1,802,804,797,-1,800,803,805,-1,800,801,803,-1,478,489,491,-1,489,478,487,-1,799,489,488,-1,549,489,799,-1,793,799,556,-1,793,798,799,-1,454,480,460,-1,454,796,480,-1,451,797,456,-1,451,477,797,-1,448,470,487,-1,470,448,446,-1,545,481,463,-1,481,545,484,-1,470,795,550,-1,795,470,469,-1,556,794,793,-1,794,556,555,-1,792,462,461,-1,792,791,462,-1,459,553,790,-1,459,458,553,-1,455,460,457,-1,455,454,460,-1,453,451,456,-1,452,451,453,-1,448,449,447,-1,448,450,449,-1,430,789,438,-1,789,430,786,-1,443,432,560,-1,440,432,443,-1,786,787,789,-1,787,786,565,-1,436,441,434,-1,436,426,441,-1,421,440,437,-1,440,421,420,-1,438,788,439,-1,438,789,788,-1,561,423,787,-1,561,422,423,-1,435,431,418,-1,435,434,431,-1,773,430,429,-1,773,786,430,-1,361,443,359,-1,443,361,428,-1,357,442,594,-1,442,357,560,-1,441,427,775,-1,426,427,441,-1,419,422,417,-1,422,419,420,-1,439,423,421,-1,439,788,423,-1,407,395,397,-1,407,780,395,-1,389,573,572,-1,573,389,566,-1,785,816,784,-1,785,380,816,-1,394,377,392,-1,394,781,377,-1,400,408,409,-1,396,408,400,-1,364,405,404,-1,405,364,588,-1,785,377,380,-1,392,377,785,-1,568,392,785,-1,393,392,568,-1,362,404,574,-1,404,362,364,-1,579,373,378,-1,579,578,373,-1,782,383,385,-1,782,590,383,-1,380,575,816,-1,575,380,379,-1,585,584,582,-1,585,366,584,-1,373,386,374,-1,373,578,386,-1,369,582,371,-1,582,369,585,-1,573,366,367,-1,573,584,366,-1,583,567,384,-1,583,566,567,-1,780,372,580,-1,780,407,372,-1,425,778,817,-1,778,425,564,-1,563,774,779,-1,563,773,774,-1,775,592,594,-1,592,775,777,-1,427,817,776,-1,427,425,817,-1,594,358,357,-1,358,594,593,-1,349,355,350,-1,349,352,355,-1,346,327,597,-1,346,344,327,-1,337,329,596,-1,337,595,329,-1,771,333,596,-1,771,335,333,-1,332,599,340,-1,332,334,599,-1,311,611,610,-1,311,614,611,-1,321,315,316,-1,315,321,609,-1,603,768,601,-1,767,768,603,-1,297,303,305,-1,296,303,297,-1,287,605,314,-1,287,281,605,-1,621,606,619,-1,607,606,621,-1,295,604,320,-1,295,289,604,-1,299,615,769,-1,615,299,302,-1,311,766,310,-1,311,610,766,-1,307,318,308,-1,605,318,307,-1,298,617,770,-1,298,322,617,-1,312,765,759,-1,312,616,765,-1,285,612,291,-1,313,612,285,-1,309,766,321,-1,766,309,770,-1,301,770,309,-1,301,298,770,-1,761,765,764,-1,761,759,765,-1,756,763,754,-1,762,763,756,-1,757,306,760,-1,757,305,306,-1,293,758,294,-1,293,297,758,-1,319,280,755,-1,319,283,280,-1,271,264,269,-1,271,272,264,-1,275,269,264,-1,275,268,269,-1,259,271,622,-1,259,272,271,-1,258,263,260,-1,753,263,258,-1,267,255,625,-1,253,255,267,-1,240,247,236,-1,244,247,240,-1,631,244,240,-1,631,245,244,-1,751,235,234,-1,751,628,235,-1,233,752,818,-1,233,630,752,-1,234,818,750,-1,234,233,818,-1,225,751,749,-1,225,224,751,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlcartend_Geo_5_241_coordIndex_6()
		{
			int[] value = {632,239,748,-1,632,238,239,-1,637,745,819,-1,637,744,745,-1,743,726,732,-1,743,724,726,-1,742,729,728,-1,742,221,729,-1,639,819,746,-1,639,637,819,-1,211,744,735,-1,211,734,744,-1,742,644,645,-1,742,743,644,-1,741,217,820,-1,741,214,217,-1,737,207,739,-1,737,209,207,-1,220,736,740,-1,220,219,736,-1,217,738,820,-1,217,643,738,-1,737,636,638,-1,736,636,737,-1,213,735,219,-1,213,211,735,-1,210,734,211,-1,732,734,210,-1,747,635,730,-1,635,747,725,-1,731,208,209,-1,208,731,634,-1,747,726,725,-1,747,733,726,-1,746,733,747,-1,733,819,745,-1,746,819,733,-1,156,158,651,-1,156,154,158,-1,205,654,821,-1,205,185,654,-1,200,182,172,-1,200,648,182,-1,203,190,157,-1,177,190,203,-1,653,652,143,-1,195,652,653,-1,192,650,197,-1,650,192,191,-1,656,193,194,-1,193,656,198,-1,141,144,146,-1,148,144,141,-1,181,163,180,-1,181,188,163,-1,178,185,202,-1,178,180,185,-1,821,646,205,-1,646,821,721,-1,723,660,661,-1,660,723,655,-1,165,166,654,-1,165,145,166,-1,146,142,141,-1,164,142,146,-1,104,113,112,-1,104,106,113,-1,822,104,718,-1,822,105,104,-1,717,111,719,-1,111,717,112,-1,110,822,720,-1,105,822,110,-1,78,94,93,-1,94,78,669,-1,672,90,89,-1,90,672,99,-1,95,84,92,-1,87,84,95,-1,85,670,716,-1,670,85,82,-1,71,679,74,-1,63,679,71,-1,710,73,72,-1,73,710,707,-1,70,708,714,-1,708,70,65,-1,681,66,68,-1,64,66,681,-1,679,62,680,-1,62,679,63,-1,715,710,712,-1,710,715,714,-1,72,709,711,-1,74,709,72,-1,63,708,65,-1,708,63,71,-1,41,61,58,-1,61,41,43,-1,35,49,36,-1,50,49,35,-1,46,36,49,-1,46,682,36,-1,706,46,47,-1,46,706,682,-1,43,47,61,-1,47,43,706,-1,43,37,706,-1,40,37,43,-1,701,10,24,-1,683,10,701,-1,695,702,705,-1,702,695,698,-1,29,22,30,-1,29,20,22,-1,699,703,697,-1,704,703,699,-1,33,23,693,-1,24,23,33,-1,32,24,33,-1,32,701,24,-1,15,7,685,-1,15,17,7,-1,687,5,19,-1,687,0,5,-1,697,1,699,-1,697,684,1,-1,690,698,695,-1,690,696,698,-1,692,7,17,-1,692,8,7,-1,700,11,28,-1,700,14,11,-1,140,152,151,-1,152,140,658,-1,635,727,222,-1,725,727,635,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcartend_Geo_5_241_normalIndex_1()
		{
			int[] value = {653,647,492,-1,488,594,617,-1,488,420,594,-1,815,632,561,-1,561,807,815,-1,802,557,712,-1,802,524,557,-1,490,352,435,-1,490,355,352,-1,696,585,503,-1,696,813,585,-1,561,547,807,-1,547,716,807,-1,561,536,557,-1,802,712,611,-1,712,529,611,-1,764,624,741,-1,764,704,624,-1,561,632,536,-1,488,646,635,-1,488,492,646,-1,551,349,432,-1,670,336,551,-1,336,348,551,-1,781,798,506,-1,781,772,798,-1,497,509,618,-1,509,692,618,-1,570,580,406,-1,570,591,580,-1,349,348,406,-1,348,413,406,-1,550,650,442,-1,650,413,442,-1,534,442,477,-1,534,550,442,-1,506,798,477,-1,798,729,477,-1,434,538,602,-1,538,729,602,-1,396,400,444,-1,400,513,444,-1,337,376,401,-1,337,301,376,-1,513,337,444,-1,513,378,337,-1,419,678,430,-1,419,619,678,-1,519,472,645,-1,382,429,345,-1,382,458,429,-1,448,402,559,-1,448,373,402,-1,687,559,720,-1,687,448,559,-1,331,370,369,-1,331,324,370,-1,414,404,394,-1,394,579,414,-1,331,466,340,-1,462,466,386,-1,720,466,687,-1,466,331,369,-1,466,720,579,-1,562,431,427,-1,427,357,562,-1,323,364,225,-1,389,562,357,-1,523,616,362,-1,393,330,285,-1,285,357,393,-1,357,285,389,-1,29,115,104,-1,104,44,29,-1,115,160,150,-1,150,104,115,-1,174,127,156,-1,174,14,127,-1,20,115,50,-1,115,29,50,-1,267,103,74,-1,74,304,267,-1,14,95,11,-1,14,170,95,-1,95,2,11,-1,135,158,2,-1,150,160,2,-1,85,127,14,-1,14,11,85,-1,135,2,97,-1,35,105,39,-1,262,286,172,-1,177,247,268,-1,177,192,247,-1,144,138,177,-1,144,42,138,-1,192,89,295,-1,232,288,227,-1,288,312,227,-1,17,193,168,-1,112,137,227,-1,220,228,278,-1,278,240,220,-1,247,192,243,-1,251,164,133,-1,252,84,166,-1,249,125,71,-1,249,309,125,-1,93,252,166,-1,80,78,184,-1,78,183,184,-1,178,8,47,-1,178,78,8,-1,184,228,220,-1,220,118,184,-1,286,265,172,-1,228,210,265,-1,228,179,210,-1,8,10,6,-1,265,286,278,-1,278,228,265,-1,101,149,5,-1,149,77,5,-1,353,246,190,-1,172,5,19,-1,172,144,262,-1,164,258,143,-1,143,92,164,-1,6,93,47,-1,10,80,71,-1,80,94,71,-1,168,142,17,-1,261,172,210,-1,172,19,42,-1,84,143,166,-1,166,47,93,-1,166,178,47,-1,94,124,249,-1,397,446,582,-1,446,652,582,-1,360,381,500,-1,381,540,500,-1,512,568,454,-1,454,498,512,-1,656,604,535,-1,656,540,604,-1,568,475,454,-1,568,659,475,-1,754,680,796,-1,754,801,680,-1,644,614,763,-1,215,223,290,-1,661,575,736,-1,763,791,797,-1,797,801,763,-1,722,791,780,-1,722,573,791,-1,403,601,623,-1,372,366,623,-1,705,571,623,-1,623,601,642,-1,199,223,213,-1,248,223,233,-1,223,215,233,-1,248,213,223,-1,24,116,43,-1,24,130,116,-1,7,54,157,-1,54,222,157,-1,48,153,130,-1,153,151,130,-1,21,188,153,-1,141,96,248,-1,141,121,96,-1,31,189,238,-1,188,157,222,-1,188,237,157,-1,189,257,233,-1,233,236,189,-1,31,141,257,-1,87,21,48,-1,237,188,21,-1,34,310,287,-1,287,273,34,-1,761,474,790,-1,761,533,474,-1,667,584,785,-1,667,450,584,-1,695,634,589,-1,695,542,634,-1,607,818,688,-1,607,750,818,-1,818,809,812,-1,412,599,480,-1,599,803,654,-1,599,412,803,-1,794,799,811,-1,799,776,811,-1,793,816,817,-1,816,803,817,-1,407,799,388,-1,407,810,799,-1,461,485,682,-1,485,711,682,-1,374,423,530,-1,423,533,530,-1,818,750,691,-1,691,809,818,-1,804,793,817,-1,804,711,793,-1,412,480,417,-1,27,67,75,-1,75,1,27,-1,75,165,1,-1,75,173,165,-1,111,182,34,-1,182,200,34,-1,171,186,136,-1,186,45,136,-1,25,224,231,-1,27,88,129,-1,27,63,88,-1,26,46,70,-1,171,139,186,-1,139,231,186,-1,26,122,131,-1,202,234,270,-1,270,314,202,-1,134,37,256,-1,256,219,134,-1,558,724,639,-1,558,760,724,-1,700,779,760,-1,760,558,700,-1,57,66,23,-1,202,49,300,-1,49,281,300,-1,55,274,242,-1,242,274,260,-1,260,279,242,-1,259,65,245,-1,65,303,245,-1,18,99,59,-1,59,206,18,-1,259,245,59,-1,59,99,259,-1,356,303,329,-1,303,284,329,-1,197,155,65,-1,65,163,197,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcartend_Geo_5_241_normalIndex_2()
		{
			int[] value = {72,55,134,-1,134,234,72,-1,202,300,72,-1,140,64,276,-1,69,91,126,-1,69,154,91,-1,16,217,292,-1,41,0,114,-1,0,161,114,-1,161,30,218,-1,161,0,30,-1,276,181,191,-1,276,318,181,-1,277,292,218,-1,292,161,218,-1,102,126,86,-1,102,69,126,-1,30,0,283,-1,0,15,283,-1,57,49,66,-1,49,298,66,-1,60,79,41,-1,41,106,60,-1,102,217,16,-1,64,140,209,-1,64,318,276,-1,565,636,641,-1,620,578,541,-1,578,478,541,-1,464,567,563,-1,567,621,563,-1,808,751,743,-1,808,779,751,-1,636,608,698,-1,698,641,636,-1,629,505,676,-1,629,433,505,-1,706,819,545,-1,545,578,706,-1,641,660,620,-1,641,698,660,-1,501,586,505,-1,586,608,505,-1,808,743,819,-1,819,706,808,-1,745,808,706,-1,706,660,745,-1,399,464,563,-1,563,433,399,-1,463,569,456,-1,569,555,456,-1,452,572,657,-1,657,484,452,-1,507,658,459,-1,507,694,658,-1,460,630,520,-1,460,643,630,-1,789,795,628,-1,628,733,789,-1,627,755,714,-1,627,721,755,-1,597,569,463,-1,597,719,569,-1,264,266,52,-1,332,332,180,-1,572,663,657,-1,572,666,663,-1,643,625,630,-1,643,685,625,-1,664,637,759,-1,664,612,637,-1,721,662,755,-1,721,668,662,-1,555,666,572,-1,555,684,666,-1,778,701,684,-1,738,517,701,-1,581,782,806,-1,625,581,673,-1,625,522,581,-1,699,806,782,-1,148,175,203,-1,207,113,205,-1,113,83,205,-1,271,282,322,-1,282,341,322,-1,271,322,110,-1,271,110,38,-1,350,367,216,-1,359,339,216,-1,13,58,61,-1,205,110,146,-1,146,207,205,-1,339,280,216,-1,266,264,342,-1,175,201,203,-1,32,28,119,-1,119,272,32,-1,216,367,359,-1,73,38,110,-1,110,205,73,-1,22,51,38,-1,38,73,22,-1,317,359,344,-1,317,339,359,-1,280,244,113,-1,113,207,280,-1,38,51,271,-1,51,282,271,-1,52,22,83,-1,83,264,52,-1,119,328,341,-1,341,326,119,-1,315,229,320,-1,169,201,175,-1,581,522,742,-1,742,782,581,-1,710,742,527,-1,742,522,527,-1,710,702,749,-1,668,749,662,-1,668,727,749,-1,806,554,595,-1,685,522,625,-1,685,527,522,-1,648,806,595,-1,782,707,699,-1,731,738,701,-1,770,778,684,-1,684,719,770,-1,755,662,756,-1,756,766,755,-1,668,759,637,-1,668,721,759,-1,595,554,795,-1,554,628,795,-1,630,673,638,-1,630,625,673,-1,581,648,673,-1,581,806,648,-1,119,326,272,-1,709,726,752,-1,733,628,664,-1,664,596,733,-1,560,721,627,-1,560,759,721,-1,714,766,758,-1,714,755,766,-1,698,608,703,-1,608,586,703,-1,464,399,439,-1,439,587,464,-1,565,399,629,-1,399,433,629,-1,600,566,606,-1,566,587,606,-1,587,566,567,-1,567,464,587,-1,132,64,159,-1,64,209,159,-1,16,69,102,-1,60,106,90,-1,90,239,60,-1,209,140,152,-1,140,293,152,-1,327,319,235,-1,319,281,235,-1,235,281,49,-1,49,57,235,-1,114,86,41,-1,86,106,41,-1,79,15,41,-1,15,0,41,-1,114,161,217,-1,161,292,217,-1,69,16,154,-1,318,64,327,-1,140,276,293,-1,276,191,293,-1,55,37,134,-1,242,218,30,-1,30,37,242,-1,202,72,234,-1,305,245,338,-1,305,59,245,-1,155,284,65,-1,284,303,65,-1,3,194,241,-1,241,33,3,-1,108,313,208,-1,313,321,208,-1,3,108,163,-1,163,194,3,-1,300,311,72,-1,37,55,242,-1,391,391,198,-1,291,254,299,-1,605,518,681,-1,37,30,283,-1,283,256,37,-1,298,202,314,-1,298,49,202,-1,231,139,25,-1,88,25,139,-1,26,70,122,-1,129,139,171,-1,129,88,139,-1,131,230,26,-1,1,165,70,-1,70,46,1,-1,88,63,25,-1,128,186,231,-1,231,224,128,-1,195,165,173,-1,173,221,195,-1,27,185,67,-1,27,129,185,-1,195,200,182,-1,195,221,200,-1,784,803,816,-1,470,368,691,-1,368,809,691,-1,476,470,691,-1,691,482,476,-1,447,711,485,-1,447,793,711,-1,480,528,744,-1,744,417,480,-1,543,631,409,-1,409,416,543,-1,476,482,471,-1,471,615,476,-1,388,799,794,-1,794,363,388,-1,631,543,682,-1,543,615,682,-1,784,374,380,-1,380,654,784,-1,786,810,421,-1,810,407,421,-1,654,803,784,-1,416,363,368,-1,672,564,487,-1,672,757,564,-1,589,634,750,-1,750,607,589,-1,785,584,542,-1,542,695,785,-1,790,450,667,-1,790,474,450,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcartend_Geo_5_241_normalIndex_3()
		{
			int[] value = {31,257,189,-1,24,48,130,-1,24,87,48,-1,257,141,248,-1,248,233,257,-1,236,147,189,-1,147,238,189,-1,141,31,121,-1,222,151,153,-1,153,188,222,-1,48,21,153,-1,147,167,36,-1,147,236,167,-1,82,98,96,-1,98,248,96,-1,98,213,248,-1,147,7,157,-1,147,36,7,-1,213,289,199,-1,98,289,213,-1,642,705,623,-1,366,403,623,-1,601,403,736,-1,736,610,601,-1,797,705,737,-1,705,642,737,-1,571,372,623,-1,775,573,722,-1,775,588,573,-1,801,737,680,-1,801,797,737,-1,780,791,763,-1,722,539,537,-1,644,801,754,-1,644,763,801,-1,732,659,568,-1,732,746,659,-1,723,762,814,-1,762,792,814,-1,765,500,649,-1,765,525,500,-1,582,568,512,-1,582,732,568,-1,686,354,525,-1,686,418,354,-1,500,540,649,-1,540,656,649,-1,214,249,124,-1,214,309,249,-1,252,93,142,-1,142,306,252,-1,258,255,143,-1,258,263,255,-1,101,172,212,-1,172,265,210,-1,17,162,193,-1,6,10,71,-1,226,212,172,-1,5,172,101,-1,263,258,251,-1,261,210,179,-1,179,263,261,-1,8,6,47,-1,297,172,261,-1,80,10,8,-1,8,78,80,-1,78,255,183,-1,78,178,255,-1,240,118,220,-1,240,120,118,-1,252,145,84,-1,252,306,145,-1,249,71,94,-1,124,94,118,-1,89,123,39,-1,89,138,123,-1,39,123,35,-1,123,77,35,-1,107,35,149,-1,35,77,149,-1,105,275,39,-1,251,297,261,-1,261,263,251,-1,258,164,251,-1,308,176,145,-1,145,306,308,-1,137,53,176,-1,17,125,162,-1,227,312,214,-1,312,309,214,-1,137,176,232,-1,232,227,137,-1,177,138,192,-1,138,89,192,-1,144,172,42,-1,133,164,92,-1,44,104,12,-1,104,81,12,-1,150,2,95,-1,85,2,158,-1,160,97,2,-1,115,20,160,-1,20,97,160,-1,103,267,135,-1,267,158,135,-1,11,2,85,-1,174,170,14,-1,174,109,170,-1,267,156,127,-1,267,304,156,-1,20,50,74,-1,74,103,20,-1,104,150,170,-1,150,95,170,-1,104,170,81,-1,170,109,81,-1,393,357,427,-1,364,358,225,-1,362,616,358,-1,358,364,362,-1,616,431,562,-1,616,523,431,-1,523,333,431,-1,523,334,333,-1,358,285,225,-1,358,389,285,-1,431,333,371,-1,371,427,431,-1,579,394,466,-1,462,687,466,-1,369,386,466,-1,351,340,466,-1,466,394,351,-1,345,324,331,-1,331,340,345,-1,462,448,687,-1,462,428,448,-1,370,473,445,-1,370,422,473,-1,559,395,414,-1,559,402,395,-1,404,458,382,-1,404,426,458,-1,345,392,324,-1,345,429,392,-1,301,325,376,-1,325,365,376,-1,592,436,519,-1,519,645,592,-1,401,376,519,-1,519,436,401,-1,396,444,408,-1,477,729,534,-1,729,538,534,-1,442,336,506,-1,506,477,442,-1,442,413,336,-1,413,348,336,-1,406,413,570,-1,413,650,570,-1,640,551,432,-1,781,506,670,-1,506,336,670,-1,349,551,348,-1,815,807,787,-1,561,524,547,-1,561,557,524,-1,647,677,646,-1,646,492,647,-1,815,787,800,-1,503,546,696,-1,546,675,696,-1,611,704,802,-1,704,764,802,-1,468,529,674,-1,529,712,674,-1,800,787,767,-1,443,549,435,-1,435,352,443,-1,508,420,488,-1,488,635,508,-1,813,594,495,-1,495,741,813,-1,712,536,674,-1,712,557,536,-1,594,420,495,-1,488,617,653,-1,653,492,488,-1,674,632,549,-1,674,536,632,-1,800,486,490,-1,800,767,486,-1,718,603,553,-1,718,677,603,-1,653,665,647,-1,665,653,675,-1,617,813,696,-1,617,594,813,-1,495,764,741,-1,495,496,764,-1,677,725,646,-1,725,677,718,-1,496,547,524,-1,496,508,547,-1,437,603,469,-1,553,603,437,-1,468,549,443,-1,549,468,674,-1,511,675,546,-1,665,675,511,-1,490,361,355,-1,486,361,490,-1,718,787,725,-1,718,767,787,-1,420,496,495,-1,420,508,496,-1,602,509,434,-1,509,602,692,-1,497,580,591,-1,497,618,580,-1,551,740,670,-1,551,640,740,-1,419,453,521,-1,419,430,453,-1,619,645,783,-1,592,645,619,-1,457,697,425,-1,678,697,457,-1,250,383,316,-1,383,250,378,-1,337,250,301,-1,337,378,250,-1,436,408,401,-1,408,436,396,-1,383,453,457,-1,453,383,521,-1,472,376,365,-1,472,519,376,-1,426,414,395,-1,426,404,414,-1,415,445,473,-1,415,428,445,-1,370,392,422,-1,324,392,370,-1,428,386,445,-1,386,428,462,-1,345,351,382,-1,351,345,340,-1,323,424,405,-1,330,424,323,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlcartend_Geo_5_241_normalIndex_4()
		{
			int[] value = {390,427,371,-1,390,393,427,-1,523,347,334,-1,362,347,523,-1,389,616,562,-1,389,358,616,-1,127,158,267,-1,127,85,158,-1,135,20,103,-1,20,135,97,-1,278,247,240,-1,278,268,247,-1,227,100,112,-1,227,214,100,-1,162,309,312,-1,162,125,309,-1,193,308,168,-1,308,193,288,-1,288,176,308,-1,288,232,176,-1,133,246,251,-1,133,190,246,-1,149,133,107,-1,190,133,149,-1,143,62,92,-1,143,84,62,-1,68,84,145,-1,84,68,62,-1,179,255,263,-1,179,183,255,-1,138,19,123,-1,19,138,42,-1,212,353,190,-1,212,226,353,-1,246,297,251,-1,353,297,246,-1,71,17,6,-1,125,17,71,-1,306,168,308,-1,306,142,168,-1,489,748,494,-1,489,690,748,-1,504,690,489,-1,504,548,690,-1,788,732,768,-1,732,788,746,-1,375,502,384,-1,494,502,375,-1,454,686,498,-1,454,418,686,-1,525,360,500,-1,525,354,360,-1,723,604,510,-1,604,723,598,-1,652,814,768,-1,576,814,652,-1,686,765,708,-1,686,525,765,-1,598,451,491,-1,598,576,451,-1,397,512,411,-1,397,582,512,-1,387,454,475,-1,454,387,418,-1,354,375,360,-1,354,377,375,-1,723,455,762,-1,510,455,723,-1,792,768,814,-1,792,788,768,-1,659,548,475,-1,690,548,659,-1,504,377,387,-1,377,504,489,-1,516,384,502,-1,516,455,384,-1,734,788,792,-1,788,734,735,-1,552,763,614,-1,552,780,763,-1,655,575,526,-1,655,633,575,-1,722,574,775,-1,574,722,537,-1,680,610,633,-1,680,737,610,-1,736,775,661,-1,736,588,775,-1,571,797,791,-1,571,705,797,-1,737,601,610,-1,737,642,601,-1,403,588,736,-1,403,366,588,-1,116,151,76,-1,151,116,130,-1,167,233,215,-1,167,236,233,-1,121,24,96,-1,121,87,24,-1,441,820,773,-1,441,530,820,-1,812,651,669,-1,812,811,651,-1,769,683,776,-1,683,769,689,-1,613,564,467,-1,487,564,613,-1,693,757,672,-1,693,771,757,-1,409,804,440,-1,409,631,804,-1,416,449,543,-1,416,379,449,-1,374,441,380,-1,374,530,441,-1,786,757,771,-1,757,786,744,-1,461,615,471,-1,682,615,461,-1,482,542,471,-1,482,634,542,-1,615,449,476,-1,543,449,615,-1,368,379,416,-1,368,470,379,-1,417,786,421,-1,417,744,786,-1,447,533,423,-1,474,533,447,-1,480,398,528,-1,480,599,398,-1,784,423,374,-1,423,784,816,-1,794,368,363,-1,809,368,794,-1,769,799,810,-1,769,776,799,-1,380,467,398,-1,441,467,380,-1,485,584,450,-1,584,485,461,-1,564,398,467,-1,564,528,398,-1,410,407,440,-1,407,410,421,-1,9,111,34,-1,111,9,128,-1,111,131,182,-1,111,230,131,-1,182,122,195,-1,182,131,122,-1,1,63,27,-1,1,46,63,-1,26,63,46,-1,26,25,63,-1,25,230,224,-1,26,230,25,-1,805,583,751,-1,593,583,805,-1,622,531,556,-1,622,621,531,-1,751,700,805,-1,751,779,700,-1,465,600,483,-1,465,566,600,-1,245,356,338,-1,245,303,356,-1,242,277,218,-1,279,277,242,-1,4,241,211,-1,4,33,241,-1,321,132,208,-1,132,321,319,-1,55,311,274,-1,55,72,311,-1,260,108,3,-1,108,260,313,-1,155,159,40,-1,159,155,197,-1,260,33,279,-1,33,260,3,-1,208,163,108,-1,208,197,163,-1,99,211,241,-1,18,211,99,-1,291,284,254,-1,291,329,284,-1,191,296,293,-1,191,198,296,-1,318,235,181,-1,318,327,235,-1,90,269,239,-1,90,187,269,-1,86,90,106,-1,86,126,90,-1,152,254,40,-1,152,299,254,-1,299,293,296,-1,152,293,299,-1,40,209,152,-1,209,40,159,-1,16,211,154,-1,211,16,4,-1,565,676,636,-1,565,629,676,-1,622,586,501,-1,622,681,586,-1,760,703,724,-1,703,760,745,-1,600,590,583,-1,606,590,600,-1,565,439,399,-1,439,565,541,-1,438,481,609,-1,481,438,478,-1,587,438,606,-1,587,439,438,-1,532,626,577,-1,532,638,626,-1,758,753,739,-1,758,766,753,-1,596,759,560,-1,596,664,759,-1,770,709,752,-1,709,770,671,-1,806,612,554,-1,612,806,699,-1,648,638,673,-1,648,626,638,-1,694,713,658,-1,694,679,713,-1,626,595,795,-1,595,626,648,-1,777,766,756,-1,766,777,753,-1,778,752,774,-1,752,778,770,-1,730,756,747,-1,777,756,730,-1,515,717,499,-1,715,717,515,-1,499,713,679,-1,713,499,514,-1,717,749,702,-1,717,747,749,-1,710,727,742,-1,710,749,727,-1,637,699,707,-1,637,612,699,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlcartend_Geo_5_241_normalIndex_5()
		{
			int[] value = {713,527,685,-1,713,514,527,-1,707,668,637,-1,707,727,668,-1,731,777,730,-1,731,774,777,-1,514,710,527,-1,702,710,514,-1,517,715,515,-1,738,715,517,-1,707,742,727,-1,782,742,707,-1,203,196,148,-1,203,253,196,-1,315,264,229,-1,315,342,264,-1,148,343,61,-1,148,344,343,-1,28,328,119,-1,28,335,328,-1,302,51,180,-1,302,282,51,-1,229,83,113,-1,229,264,83,-1,204,317,196,-1,204,244,317,-1,341,302,326,-1,341,282,302,-1,146,280,207,-1,146,216,280,-1,343,350,335,-1,350,343,367,-1,341,346,322,-1,341,328,346,-1,244,339,317,-1,339,244,280,-1,83,73,205,-1,73,83,22,-1,61,32,13,-1,28,32,61,-1,307,196,253,-1,196,307,204,-1,350,146,346,-1,350,216,146,-1,320,204,307,-1,320,229,204,-1,146,322,346,-1,146,110,322,-1,346,335,350,-1,346,328,335,-1,344,367,343,-1,344,359,367,-1,196,344,148,-1,196,317,344,-1,113,204,229,-1,204,113,244,-1,51,52,180,-1,52,51,22,-1,343,28,61,-1,28,343,335,-1,117,175,148,-1,175,117,169,-1,58,148,61,-1,58,117,148,-1,715,731,730,-1,715,738,731,-1,517,663,666,-1,517,515,663,-1,662,747,756,-1,749,747,662,-1,499,702,514,-1,499,717,702,-1,515,679,663,-1,515,499,679,-1,730,717,715,-1,730,747,717,-1,666,701,517,-1,701,666,684,-1,774,701,778,-1,731,701,774,-1,753,774,752,-1,753,777,774,-1,658,685,643,-1,658,713,685,-1,657,679,694,-1,657,663,679,-1,555,719,684,-1,719,555,569,-1,554,664,628,-1,664,554,612,-1,719,671,770,-1,671,719,597,-1,752,739,753,-1,739,752,726,-1,577,795,789,-1,577,626,795,-1,520,638,532,-1,520,630,638,-1,459,643,460,-1,459,658,643,-1,507,657,694,-1,484,657,507,-1,555,452,456,-1,555,572,452,-1,743,609,819,-1,609,743,590,-1,745,698,703,-1,660,698,745,-1,590,438,609,-1,438,590,606,-1,433,501,505,-1,433,563,501,-1,578,660,706,-1,660,578,620,-1,819,481,545,-1,819,609,481,-1,439,478,438,-1,439,541,478,-1,676,608,636,-1,676,505,608,-1,583,743,751,-1,583,590,743,-1,779,745,760,-1,745,779,808,-1,724,586,681,-1,586,724,703,-1,501,621,622,-1,563,621,501,-1,641,541,565,-1,541,641,620,-1,545,478,578,-1,545,481,478,-1,277,16,292,-1,277,4,16,-1,64,319,327,-1,319,64,132,-1,187,294,269,-1,187,206,294,-1,154,18,91,-1,154,211,18,-1,114,102,86,-1,217,102,114,-1,23,191,181,-1,191,23,198,-1,187,18,206,-1,91,18,187,-1,90,91,187,-1,126,91,90,-1,57,181,235,-1,181,57,23,-1,241,259,99,-1,241,194,259,-1,40,284,155,-1,40,254,284,-1,206,305,294,-1,305,206,59,-1,311,321,313,-1,311,300,321,-1,259,163,65,-1,259,194,163,-1,274,313,260,-1,313,274,311,-1,319,300,281,-1,319,321,300,-1,208,159,197,-1,208,132,159,-1,4,279,33,-1,4,277,279,-1,567,465,493,-1,465,567,566,-1,600,593,483,-1,600,583,593,-1,622,605,681,-1,605,622,556,-1,621,493,531,-1,621,567,493,-1,681,639,724,-1,639,681,518,-1,234,219,270,-1,234,134,219,-1,122,165,195,-1,122,70,165,-1,224,111,128,-1,224,230,111,-1,9,186,128,-1,9,45,186,-1,171,185,129,-1,171,136,185,-1,388,416,409,-1,388,363,416,-1,804,682,711,-1,682,804,631,-1,476,379,470,-1,449,379,476,-1,812,794,811,-1,809,794,812,-1,450,447,485,-1,450,474,447,-1,757,528,564,-1,744,528,757,-1,750,482,691,-1,750,634,482,-1,599,380,398,-1,380,599,654,-1,388,440,407,-1,388,409,440,-1,793,423,816,-1,447,423,793,-1,412,421,410,-1,412,417,421,-1,810,771,769,-1,810,786,771,-1,584,471,542,-1,461,471,584,-1,817,440,804,-1,440,817,410,-1,803,410,817,-1,803,412,410,-1,689,771,693,-1,689,769,771,-1,773,467,441,-1,613,467,773,-1,651,776,683,-1,651,811,776,-1,818,669,688,-1,818,812,669,-1,530,761,820,-1,530,533,761,-1,238,21,31,-1,238,237,21,-1,87,31,21,-1,87,121,31,-1,157,238,147,-1,157,237,238,-1,54,151,222,-1,76,151,54,-1,96,43,82,-1,24,43,96,-1,573,571,791,-1,372,571,573,-1,588,372,573,-1,588,366,372,-1,633,736,575,-1,633,610,736,-1,661,574,544,-1,661,775,574,-1,575,544,526,-1,575,661,544,-1,796,633,655,-1,796,680,633,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlcartend_Geo_5_241_normalIndex_6()
		{
			int[] value = {539,780,552,-1,539,722,780,-1,762,516,728,-1,762,455,516,-1,377,494,375,-1,377,489,494,-1,387,548,504,-1,387,475,548,-1,792,728,734,-1,792,762,728,-1,381,455,510,-1,381,384,455,-1,387,354,418,-1,387,377,354,-1,411,498,479,-1,411,512,498,-1,576,446,451,-1,576,652,446,-1,535,598,491,-1,535,604,598,-1,498,708,479,-1,498,686,708,-1,576,723,814,-1,598,723,576,-1,540,510,604,-1,540,381,510,-1,360,384,381,-1,375,384,360,-1,735,746,788,-1,746,735,748,-1,768,582,652,-1,582,768,732,-1,735,494,748,-1,735,502,494,-1,734,502,735,-1,502,728,516,-1,734,728,502,-1,312,193,162,-1,312,288,193,-1,124,120,56,-1,124,118,120,-1,143,178,166,-1,143,255,178,-1,142,6,17,-1,93,6,142,-1,297,226,172,-1,353,226,297,-1,149,212,190,-1,212,149,101,-1,123,5,77,-1,5,123,19,-1,262,177,268,-1,144,177,262,-1,183,228,184,-1,183,179,228,-1,80,118,94,-1,80,184,118,-1,56,214,124,-1,214,56,100,-1,68,176,53,-1,176,68,145,-1,240,243,120,-1,240,247,243,-1,268,286,262,-1,278,286,268,-1,323,285,330,-1,323,225,285,-1,385,323,405,-1,385,364,323,-1,424,393,390,-1,393,424,330,-1,362,385,347,-1,364,385,362,-1,382,394,404,-1,394,382,351,-1,445,369,370,-1,369,445,386,-1,579,559,414,-1,720,559,579,-1,373,428,415,-1,428,373,448,-1,419,592,619,-1,400,592,419,-1,457,430,678,-1,430,457,453,-1,378,521,383,-1,521,378,513,-1,408,337,401,-1,444,337,408,-1,592,396,436,-1,396,592,400,-1,316,457,425,-1,457,316,383,-1,678,783,697,-1,619,783,678,-1,400,521,513,-1,521,400,419,-1,798,602,729,-1,602,798,772,-1,349,580,432,-1,406,580,349,-1,618,432,580,-1,618,640,432,-1,740,618,692,-1,618,740,640,-1,772,692,602,-1,692,772,740,-1,772,670,740,-1,781,670,772,-1,725,807,716,-1,787,807,725,-1,486,437,361,-1,437,486,553,-1,624,813,741,-1,624,585,813,-1,665,469,603,-1,511,469,665,-1,635,547,508,-1,716,547,635,-1,646,716,635,-1,646,725,716,-1,490,815,800,-1,490,435,815,-1,675,617,696,-1,675,653,617,-1,603,647,665,-1,603,677,647,-1,767,553,486,-1,767,718,553,-1,549,815,435,-1,549,632,815,-1,496,802,764,-1,496,524,802,-1,39,295,89,-1,295,39,275,-1,746,690,659,-1,748,690,746,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcenincc_Geo_5_259_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,26,33,24,-1,34,35,36,-1,37,38,39,-1,40,41,42,-1,43,44,45,-1,46,47,48,-1,27,49,50,-1,51,52,53,-1,54,55,56,-1,57,31,30,-1,58,59,60,-1,61,62,63,-1,46,64,65,-1,33,26,66,-1,67,68,69,-1,70,71,72,-1,73,74,75,-1,76,77,73,-1,78,79,80,-1,81,82,62,-1,83,84,63,-1,85,32,86,-1,87,31,88,-1,71,89,72,-1,83,90,91,-1,92,93,67,-1,94,41,65,-1,65,6,94,-1,58,60,95,-1,95,96,58,-1,96,95,93,-1,97,98,36,-1,99,72,100,-1,36,98,101,-1,18,102,103,-1,48,104,105,-1,42,41,106,-1,107,103,108,-1,61,63,84,-1,73,109,110,-1,111,112,113,-1,13,114,115,-1,112,116,117,-1,118,119,115,-1,21,97,22,-1,120,77,76,-1,121,47,40,-1,122,38,123,-1,124,39,38,-1,125,126,99,-1,127,1,128,-1,129,130,6,-1,131,132,133,-1,131,134,132,-1,134,131,135,-1,127,128,136,-1,99,137,125,-1,124,38,122,-1,9,138,10,-1,12,139,13,-1,15,140,16,-1,21,23,113,-1,49,27,29,-1,112,111,116,-1,115,14,13,-1,115,24,14,-1,111,113,23,-1,73,75,109,-1,84,140,61,-1,2,127,141,-1,142,143,144,-1,39,145,146,-1,39,147,145,-1,107,11,103,-1,48,148,104,-1,18,149,102,-1,136,141,127,-1,99,100,4,-1,97,36,150,-1,151,67,93,-1,93,152,96,-1,90,63,62,-1,6,130,94,-1,91,153,83,-1,67,69,154,-1,89,73,110,-1,31,57,88,-1,85,155,32,-1,83,63,90,-1,156,81,89,-1,89,71,156,-1,157,158,82,-1,158,159,82,-1,78,7,79,-1,158,135,160,-1,161,162,163,-1,82,159,62,-1,72,126,70,-1,157,82,164,-1,67,151,68,-1,33,66,104,-1,46,65,41,-1,94,130,165,-1,61,166,62,-1,58,167,59,-1,30,117,57,-1,54,56,168,-1,51,53,155,-1,126,72,99,-1,49,169,50,-1,117,116,57,-1,48,105,46,-1,43,170,44,-1,106,41,94,-1,39,146,37,-1,36,138,34,-1,30,32,171,-1,117,30,112,-1,28,172,29,-1,118,152,119,-1,18,20,149,-1,120,76,166,-1,121,40,173,-1,170,121,173,-1,170,174,121,-1,122,123,175,-1,129,6,8,-1,3,5,176,-1,1,127,2,-1,143,177,2,-1,134,157,132,-1,165,129,178,-1,130,129,165,-1,179,178,180,-1,178,179,165,-1,70,181,182,-1,183,181,70,-1,132,184,133,-1,184,132,185,-1,186,177,143,-1,177,186,187,-1,124,188,189,-1,188,124,190,-1,191,138,9,-1,138,191,34,-1,170,192,174,-1,43,192,170,-1,14,193,12,-1,194,193,14,-1,15,61,140,-1,15,195,61,-1,196,101,98,-1,196,197,101,-1,149,198,114,-1,149,20,198,-1,115,92,24,-1,92,115,119,-1,22,111,23,-1,199,111,22,-1,109,86,87,-1,75,86,109,-1,104,200,105,-1,104,66,200,-1,201,202,203,-1,50,202,201,-1,175,144,204,-1,123,144,175,-1,123,142,144,-1,108,147,107,-1,147,108,145,-1,146,45,44,-1,146,145,45,-1,179,186,106,-1,179,187,186,-1,205,40,42,-1,205,173,40,-1,104,194,33,-1,148,194,104,-1,100,206,4,-1,100,207,206,-1,208,5,209,-1,141,5,208,-1,141,136,5,-1,57,49,29,-1,49,57,116,-1,114,102,149,-1,114,139,102,-1,114,13,139,-1,55,93,95,-1,55,151,93,-1,210,211,212,-1,210,213,211,-1,214,159,158,-1,214,91,159,-1,215,26,25,-1,215,66,26,-1,65,7,6,-1,65,79,7,-1,91,216,153,-1,216,91,214,-1,154,216,163,-1,216,154,69,-1,89,100,72,-1,110,100,89,-1,32,87,86,-1,32,31,87,-1,168,83,54,-1,84,83,168,-1,164,81,156,-1,164,82,81,-1,80,217,162,-1,217,80,79,-1,78,160,135,-1,78,80,160,-1,164,132,157,-1,185,132,164,-1,162,218,163,-1,162,217,218,-1,164,182,185,-1,164,156,182,-1,74,77,219,-1,77,74,73,-1,51,84,168,-1,16,84,51,-1,84,16,140,-1,151,54,68,-1,55,54,151,-1,153,69,68,-1,216,69,153,-1,64,79,65,-1,79,64,217,-1,159,90,62,-1,90,159,91,-1,112,213,113,-1,213,112,211,-1,60,55,95,-1,60,56,55,-1,32,53,171,-1,155,53,32,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcenincc_Geo_5_259_coordIndex_2()
		{
			int[] value = {209,4,206,-1,209,5,4,-1,209,201,208,-1,28,201,209,-1,88,29,172,-1,57,29,88,-1,101,138,36,-1,101,10,138,-1,139,220,102,-1,139,221,220,-1,222,106,186,-1,106,222,42,-1,220,145,108,-1,45,145,220,-1,142,37,222,-1,123,37,142,-1,38,37,123,-1,204,190,175,-1,190,204,203,-1,35,50,169,-1,35,202,50,-1,144,2,141,-1,144,143,2,-1,24,194,14,-1,194,24,33,-1,49,150,169,-1,49,199,150,-1,119,93,92,-1,93,119,152,-1,20,96,198,-1,20,58,96,-1,197,167,19,-1,197,210,167,-1,213,21,113,-1,21,213,196,-1,219,120,195,-1,219,77,120,-1,194,192,193,-1,194,148,192,-1,174,47,121,-1,174,48,47,-1,191,147,189,-1,191,107,147,-1,187,223,177,-1,187,224,223,-1,181,185,182,-1,181,184,185,-1,136,176,5,-1,136,128,176,-1,157,135,158,-1,135,157,134,-1,187,180,224,-1,180,187,179,-1,70,125,183,-1,125,70,126,-1,135,225,78,-1,135,131,225,-1,39,189,147,-1,189,39,124,-1,107,9,11,-1,9,107,191,-1,174,148,48,-1,192,148,174,-1,12,221,139,-1,193,221,12,-1,17,195,15,-1,17,219,195,-1,210,196,213,-1,196,210,197,-1,19,58,20,-1,19,167,58,-1,114,118,115,-1,118,114,198,-1,112,171,211,-1,112,30,171,-1,203,208,201,-1,203,204,208,-1,202,34,188,-1,34,202,35,-1,146,205,37,-1,205,146,44,-1,106,165,179,-1,106,94,165,-1,170,205,44,-1,170,173,205,-1,40,46,41,-1,47,46,40,-1,207,172,206,-1,207,88,172,-1,50,28,27,-1,28,50,201,-1,52,168,56,-1,168,52,51,-1,53,59,212,-1,59,53,52,-1,167,212,59,-1,167,210,212,-1,163,214,161,-1,163,216,214,-1,64,105,200,-1,105,64,46,-1,66,218,200,-1,218,66,215,-1,154,25,67,-1,215,25,154,-1,110,207,100,-1,109,207,110,-1,75,85,86,-1,75,74,85,-1,62,76,81,-1,62,166,76,-1,162,160,80,-1,160,162,161,-1,182,71,70,-1,182,156,71,-1,89,76,73,-1,89,81,76,-1,85,219,17,-1,219,85,74,-1,17,155,85,-1,17,51,155,-1,16,51,17,-1,88,109,87,-1,88,207,109,-1,83,68,54,-1,153,68,83,-1,163,215,154,-1,215,163,218,-1,217,200,218,-1,217,64,200,-1,158,161,214,-1,161,158,160,-1,52,60,59,-1,60,52,56,-1,212,171,53,-1,212,211,171,-1,206,28,209,-1,206,172,28,-1,11,18,103,-1,11,101,18,-1,101,11,10,-1,45,221,43,-1,221,45,220,-1,42,37,205,-1,42,222,37,-1,220,103,102,-1,220,108,103,-1,143,222,186,-1,142,222,143,-1,188,203,202,-1,188,190,203,-1,141,204,144,-1,208,204,141,-1,169,36,35,-1,150,36,169,-1,150,22,97,-1,199,22,150,-1,24,67,25,-1,24,92,67,-1,199,116,111,-1,199,49,116,-1,152,198,96,-1,152,118,198,-1,19,101,197,-1,101,19,18,-1,98,21,196,-1,97,21,98,-1,166,195,120,-1,61,195,166,-1,43,193,192,-1,221,193,43,-1,34,189,188,-1,34,191,189,-1,175,124,122,-1,190,124,175,-1,177,0,2,-1,0,177,223,-1,225,7,78,-1,7,225,8,-1,3,99,4,-1,3,137,99,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcenincc_Geo_5_259_normalIndex_1()
		{
			int[] value = {44,26,41,-1,5,9,12,-1,202,216,214,-1,118,109,136,-1,169,165,176,-1,76,74,89,-1,135,123,129,-1,43,19,18,-1,197,225,218,-1,2,0,1,-1,102,72,126,-1,218,185,197,-1,124,71,68,-1,131,116,80,-1,170,177,163,-1,148,166,151,-1,182,162,139,-1,2,6,32,-1,73,69,94,-1,47,62,49,-1,31,72,102,-1,95,82,70,-1,53,87,51,-1,182,209,199,-1,185,218,201,-1,207,141,195,-1,34,38,30,-1,125,113,117,-1,84,110,125,-1,215,217,213,-1,81,142,87,-1,60,48,51,-1,119,126,140,-1,52,72,22,-1,38,45,30,-1,60,111,161,-1,222,178,207,-1,181,177,199,-1,199,202,181,-1,95,70,86,-1,86,122,95,-1,122,86,178,-1,39,77,68,-1,15,30,23,-1,68,77,112,-1,135,145,137,-1,139,180,173,-1,163,177,164,-1,108,137,127,-1,53,51,48,-1,125,50,63,-1,11,42,37,-1,165,160,194,-1,42,10,40,-1,188,219,194,-1,43,39,19,-1,90,110,84,-1,172,162,170,-1,107,116,96,-1,97,80,116,-1,20,21,15,-1,24,26,16,-1,198,196,202,-1,206,192,190,-1,206,204,192,-1,204,206,205,-1,24,16,14,-1,15,7,20,-1,97,116,107,-1,118,93,109,-1,169,157,165,-1,76,66,74,-1,43,18,37,-1,6,2,1,-1,42,11,10,-1,194,176,165,-1,194,197,176,-1,11,37,18,-1,125,117,50,-1,48,66,53,-1,41,24,29,-1,91,65,54,-1,80,128,120,-1,80,88,128,-1,108,136,137,-1,139,156,180,-1,135,144,145,-1,14,29,24,-1,15,23,9,-1,39,68,35,-1,147,207,178,-1,178,187,122,-1,111,51,87,-1,202,196,181,-1,161,133,60,-1,207,195,221,-1,45,125,63,-1,72,31,22,-1,119,100,126,-1,60,51,111,-1,57,81,45,-1,45,38,57,-1,186,191,142,-1,191,158,142,-1,215,216,217,-1,191,205,203,-1,200,210,212,-1,142,158,87,-1,30,21,34,-1,186,142,150,-1,207,147,141,-1,185,201,180,-1,182,199,177,-1,181,196,184,-1,53,78,87,-1,95,99,82,-1,102,40,31,-1,47,49,46,-1,73,94,100,-1,21,30,15,-1,6,36,32,-1,40,10,31,-1,139,173,182,-1,148,168,166,-1,164,177,181,-1,80,120,131,-1,68,93,124,-1,102,126,103,-1,40,102,42,-1,0,4,1,-1,188,187,219,-1,135,129,144,-1,90,84,78,-1,172,170,179,-1,168,172,179,-1,168,154,172,-1,107,96,85,-1,198,202,214,-1,5,12,17,-1,26,24,41,-1,65,61,41,-1,204,186,192,-1,184,198,183,-1,196,198,184,-1,174,183,175,-1,183,174,184,-1,34,58,55,-1,33,58,34,-1,192,155,190,-1,155,192,153,-1,132,61,65,-1,61,132,134,-1,97,121,104,-1,121,97,114,-1,115,93,118,-1,93,115,124,-1,168,152,154,-1,148,152,168,-1,176,159,169,-1,171,159,176,-1,76,53,66,-1,76,75,53,-1,79,112,77,-1,79,106,112,-1,144,149,160,-1,144,129,149,-1,194,222,197,-1,222,194,219,-1,19,11,18,-1,13,11,19,-1,50,140,52,-1,117,140,50,-1,180,211,173,-1,180,201,211,-1,27,67,59,-1,32,67,27,-1,85,54,56,-1,96,54,85,-1,96,91,54,-1,127,88,108,-1,88,127,128,-1,120,151,166,-1,120,128,151,-1,174,132,164,-1,174,134,132,-1,167,170,163,-1,167,179,170,-1,180,171,185,-1,156,171,180,-1,23,8,9,-1,23,25,8,-1,28,12,3,-1,29,12,28,-1,29,14,12,-1,31,6,1,-1,6,31,10,-1,160,145,144,-1,160,157,145,-1,160,165,157,-1,62,178,86,-1,62,147,178,-1,105,92,101,-1,105,83,92,-1,193,158,191,-1,193,161,158,-1,224,218,225,-1,224,201,218,-1,199,216,202,-1,199,217,216,-1,161,189,133,-1,189,161,193,-1,221,189,212,-1,189,221,195,-1,45,23,30,-1,63,23,45,-1,126,52,140,-1,126,72,52,-1,46,60,47,-1,48,60,46,-1,150,81,57,-1,150,142,81,-1,213,220,210,-1,220,213,217,-1,215,203,205,-1,215,213,203,-1,150,192,186,-1,153,192,150,-1,210,223,212,-1,210,220,223,-1,150,55,153,-1,150,57,55,-1,113,110,98,-1,110,113,125,-1,73,48,46,-1,74,48,73,-1,48,74,66,-1,147,47,141,-1,62,47,147,-1,133,195,141,-1,189,195,133,-1,209,217,199,-1,217,209,220,-1,158,111,87,-1,111,158,161,-1,42,83,37,-1,83,42,92,-1,70,62,86,-1,70,49,62,-1,126,94,103,-1,100,94,126,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcenincc_Geo_5_259_normalIndex_2()
		{
			int[] value = {3,9,8,-1,3,12,9,-1,3,27,28,-1,0,27,3,-1,22,1,4,-1,31,1,22,-1,112,93,68,-1,112,109,93,-1,157,146,145,-1,157,143,146,-1,138,164,132,-1,164,138,163,-1,146,128,127,-1,151,128,146,-1,91,131,138,-1,96,131,91,-1,116,131,96,-1,56,114,85,-1,114,56,59,-1,71,32,36,-1,71,67,32,-1,54,41,29,-1,54,65,41,-1,197,171,176,-1,171,197,185,-1,6,35,36,-1,6,13,35,-1,219,178,222,-1,178,219,187,-1,129,122,149,-1,129,95,122,-1,106,99,123,-1,106,105,99,-1,83,43,37,-1,43,83,79,-1,98,90,75,-1,98,110,90,-1,171,152,159,-1,171,156,152,-1,154,162,172,-1,154,139,162,-1,115,88,104,-1,115,108,88,-1,134,64,61,-1,134,130,64,-1,58,153,55,-1,58,155,153,-1,14,17,12,-1,14,16,17,-1,186,205,191,-1,205,186,204,-1,134,175,130,-1,175,134,174,-1,34,20,33,-1,20,34,21,-1,205,208,215,-1,205,206,208,-1,80,104,88,-1,104,80,97,-1,108,118,136,-1,118,108,115,-1,154,156,139,-1,152,156,154,-1,169,143,157,-1,159,143,169,-1,89,75,76,-1,89,98,75,-1,105,79,83,-1,79,105,106,-1,123,95,129,-1,123,99,95,-1,160,188,194,-1,188,160,149,-1,42,103,92,-1,42,102,103,-1,59,28,27,-1,59,56,28,-1,67,124,121,-1,124,67,71,-1,120,167,131,-1,167,120,166,-1,164,184,174,-1,164,181,184,-1,168,167,166,-1,168,179,167,-1,170,182,177,-1,162,182,170,-1,25,4,8,-1,25,22,4,-1,32,0,2,-1,0,32,27,-1,69,46,49,-1,46,69,73,-1,94,82,101,-1,82,94,69,-1,99,101,82,-1,99,105,101,-1,212,193,200,-1,212,189,193,-1,209,173,211,-1,173,209,182,-1,201,223,211,-1,223,201,224,-1,221,225,207,-1,224,225,221,-1,63,25,23,-1,50,25,63,-1,117,119,140,-1,117,113,119,-1,87,84,81,-1,87,78,84,-1,210,203,213,-1,203,210,200,-1,55,38,34,-1,55,57,38,-1,45,84,125,-1,45,81,84,-1,119,98,89,-1,98,119,113,-1,89,100,119,-1,89,73,100,-1,74,73,89,-1,22,50,52,-1,22,25,50,-1,60,141,47,-1,133,141,60,-1,212,224,221,-1,224,212,223,-1,220,211,223,-1,220,209,211,-1,191,200,193,-1,200,191,203,-1,69,70,82,-1,70,69,49,-1,101,103,94,-1,101,92,103,-1,8,0,3,-1,8,4,0,-1,136,135,137,-1,136,112,135,-1,112,136,109,-1,151,143,148,-1,143,151,146,-1,163,131,167,-1,163,138,131,-1,146,137,145,-1,146,127,137,-1,65,138,132,-1,91,138,65,-1,121,59,67,-1,121,114,59,-1,29,56,54,-1,28,56,29,-1,36,68,71,-1,35,68,36,-1,35,19,39,-1,13,19,35,-1,197,207,225,-1,197,222,207,-1,13,10,11,-1,13,6,10,-1,187,149,122,-1,187,188,149,-1,123,112,106,-1,112,123,135,-1,77,43,79,-1,39,43,77,-1,78,75,90,-1,53,75,78,-1,148,159,152,-1,143,159,148,-1,124,104,121,-1,124,115,104,-1,85,97,107,-1,114,97,85,-1,61,44,41,-1,44,61,64,-1,208,216,215,-1,216,208,214,-1,5,15,9,-1,5,7,15,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcenincr_Geo_5_265_coordIndex_1()
		{
			int[] value = {0,1,2,-1,1,3,2,-1,4,5,6,-1,5,7,8,-1,9,10,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,17,16,24,-1,12,6,5,-1,25,26,27,-1,28,1,0,-1,29,30,20,-1,23,31,21,-1,32,33,34,-1,35,36,37,-1,21,38,39,-1,40,41,42,-1,43,12,5,-1,17,24,44,-1,21,39,22,-1,45,34,19,-1,18,45,19,-1,46,35,37,-1,37,47,46,-1,15,48,16,-1,12,14,6,-1,10,49,11,-1,5,4,7,-1,20,19,29,-1,2,50,0,-1,30,18,20,-1,18,30,51,-1,52,53,54,-1,52,55,53,-1,56,40,42,-1,57,40,56,-1,58,59,60,-1,59,58,61,-1,62,25,63,-1,62,26,25,-1,64,65,57,-1,66,65,64,-1,9,67,68,-1,67,9,52,-1,5,69,43,-1,69,5,8,-1,69,70,71,-1,70,69,72,-1,24,73,44,-1,24,63,73,-1,74,75,76,-1,74,66,75,-1,67,77,78,-1,77,67,79,-1,77,80,81,-1,80,77,82,-1,83,84,85,-1,84,83,71,-1,86,24,16,-1,86,87,24,-1,74,88,89,-1,90,88,74,-1,91,92,93,-1,92,91,78,-1,92,94,95,-1,94,92,81,-1,96,97,98,-1,97,96,85,-1,99,86,100,-1,99,101,86,-1,102,103,104,-1,102,90,103,-1,105,106,107,-1,105,104,106,-1,94,108,109,-1,108,94,110,-1,97,111,112,-1,111,97,113,-1,114,48,115,-1,114,100,48,-1,116,117,118,-1,116,115,117,-1,119,105,120,-1,119,121,105,-1,122,123,124,-1,123,122,109,-1,125,126,127,-1,126,125,112,-1,128,114,129,-1,128,130,114,-1,131,116,132,-1,131,129,116,-1,133,119,134,-1,133,135,119,-1,136,137,138,-1,137,136,124,-1,139,140,141,-1,140,139,127,-1,142,140,143,-1,142,144,140,-1,145,131,146,-1,145,147,131,-1,133,148,149,-1,150,148,133,-1,151,138,152,-1,151,153,138,-1,154,155,156,-1,155,154,141,-1,155,157,158,-1,157,155,144,-1,159,160,161,-1,160,159,145,-1,162,148,163,-1,162,164,148,-1,165,151,166,-1,165,167,151,-1,4,58,7,-1,168,58,4,-1,169,58,168,-1,53,58,169,-1,53,61,58,-1,55,61,53,-1,55,27,61,-1,11,27,55,-1,49,27,11,-1,170,27,49,-1,171,27,170,-1,171,42,27,-1,171,56,42,-1,166,33,165,-1,172,33,166,-1,2,173,174,-1,2,3,173,-1,31,175,176,-1,31,23,175,-1,162,47,177,-1,178,47,162,-1,51,179,18,-1,179,51,178,-1,39,50,22,-1,50,39,0,-1,180,18,179,-1,180,45,18,-1,178,163,179,-1,178,162,163,-1,176,181,31,-1,181,176,161,-1,174,50,2,-1,50,174,158,-1,182,172,166,-1,183,172,182,-1,179,184,180,-1,179,163,184,-1,185,173,186,-1,173,185,187,-1,188,167,165,-1,188,189,167,-1,177,164,162,-1,177,190,164,-1,191,161,176,-1,161,191,159,-1,156,158,174,-1,158,156,155,-1,192,156,187,-1,156,192,154,-1,167,153,151,-1,167,193,153,-1,164,149,148,-1,164,194,149,-1,195,145,159,-1,145,195,147,-1,196,195,197,-1,195,196,198,-1,199,141,154,-1,141,199,139,-1,136,153,200,-1,138,153,136,-1,149,135,133,-1,149,201,135,-1,129,147,128,-1,131,147,129,-1,202,128,198,-1,128,202,130,-1,127,203,125,-1,127,139,203,-1,204,124,136,-1,124,204,122,-1,135,121,119,-1,135,205,121,-1,206,207,208,-1,205,207,206,-1,130,100,114,-1,130,99,100,-1,112,98,97,-1,112,125,98,-1,95,109,122,-1,109,95,94,-1,121,104,105,-1,121,102,104,-1,206,90,102,-1,206,88,90,-1,100,16,48,-1,100,86,16,-1,85,113,97,-1,113,85,84,-1,81,110,94,-1,110,81,80,-1,78,81,92,-1,81,78,77,-1,90,76,103,-1,90,74,76,-1,101,87,86,-1,101,209,87,-1,85,210,83,-1,85,96,210,-1,13,210,211,-1,210,13,12,-1,68,78,91,-1,78,68,67,-1,66,89,65,-1,74,89,66,-1,87,63,24,-1,87,62,63,-1,43,71,83,-1,71,43,69,-1,212,13,213,-1,13,212,14,-1,214,9,68,-1,214,10,9,-1,215,57,65,-1,215,40,57,-1,216,26,62,-1,216,59,26,-1,56,64,57,-1,64,56,171,-1,11,52,9,-1,52,11,55,-1,168,6,14,-1,6,168,4,-1,7,60,8,-1,60,7,58,-1,54,169,212,-1,54,53,169,-1,170,10,217,-1,10,170,49,-1,61,26,59,-1,26,61,27,-1,63,41,73,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcenincr_Geo_5_265_coordIndex_2()
		{
			int[] value = {63,25,41,-1,66,217,75,-1,66,64,217,-1,52,79,67,-1,79,52,54,-1,8,72,69,-1,72,8,60,-1,72,209,70,-1,209,72,216,-1,44,215,218,-1,44,73,215,-1,76,214,219,-1,76,75,214,-1,79,82,77,-1,82,79,213,-1,82,220,80,-1,220,82,211,-1,71,221,84,-1,221,71,70,-1,89,222,218,-1,88,222,89,-1,223,91,93,-1,223,219,91,-1,93,95,224,-1,95,93,92,-1,98,220,96,-1,98,225,220,-1,221,99,226,-1,99,221,101,-1,15,222,208,-1,15,17,222,-1,223,104,103,-1,106,104,223,-1,107,224,204,-1,107,106,224,-1,110,203,108,-1,203,110,225,-1,113,202,111,-1,202,113,226,-1,115,15,117,-1,115,48,15,-1,118,207,201,-1,118,117,207,-1,107,120,105,-1,200,120,107,-1,109,199,123,-1,199,109,108,-1,112,196,126,-1,196,112,111,-1,129,115,116,-1,129,114,115,-1,132,118,194,-1,132,116,118,-1,134,120,193,-1,134,119,120,-1,124,192,137,-1,192,124,123,-1,143,127,126,-1,143,140,127,-1,191,143,197,-1,191,142,143,-1,146,132,190,-1,146,131,132,-1,150,134,189,-1,150,133,134,-1,138,185,152,-1,185,138,137,-1,141,144,155,-1,144,141,140,-1,144,175,157,-1,175,144,142,-1,160,146,227,-1,160,145,146,-1,163,150,184,-1,163,148,150,-1,166,152,182,-1,166,151,152,-1,36,227,37,-1,227,36,160,-1,165,32,188,-1,33,32,165,-1,3,186,173,-1,3,228,186,-1,157,23,22,-1,23,157,175,-1,37,177,47,-1,37,227,177,-1,46,178,51,-1,46,47,178,-1,45,32,34,-1,32,45,180,-1,36,161,160,-1,36,181,161,-1,158,22,50,-1,22,158,157,-1,228,182,186,-1,228,183,182,-1,188,180,184,-1,32,180,188,-1,152,186,182,-1,186,152,185,-1,184,189,188,-1,184,150,189,-1,227,190,177,-1,227,146,190,-1,142,176,175,-1,176,142,191,-1,187,174,173,-1,174,187,156,-1,137,187,185,-1,187,137,192,-1,189,193,167,-1,189,134,193,-1,190,194,164,-1,190,132,194,-1,197,159,191,-1,159,197,195,-1,126,197,143,-1,197,126,196,-1,123,154,192,-1,154,123,199,-1,200,193,120,-1,153,193,200,-1,194,201,149,-1,194,118,201,-1,198,147,195,-1,147,198,128,-1,111,198,196,-1,198,111,202,-1,108,139,199,-1,139,108,203,-1,200,204,136,-1,200,107,204,-1,201,205,135,-1,201,207,205,-1,117,208,207,-1,117,15,208,-1,226,130,202,-1,130,226,99,-1,225,125,203,-1,125,225,98,-1,224,122,204,-1,122,224,95,-1,102,205,206,-1,121,205,102,-1,208,88,206,-1,208,222,88,-1,226,84,221,-1,226,113,84,-1,80,225,110,-1,225,80,220,-1,106,93,224,-1,106,223,93,-1,103,219,223,-1,103,76,219,-1,17,218,222,-1,17,44,218,-1,101,70,209,-1,101,221,70,-1,211,96,220,-1,96,211,210,-1,213,211,82,-1,211,213,13,-1,219,68,91,-1,219,214,68,-1,65,218,215,-1,89,218,65,-1,209,62,87,-1,209,216,62,-1,12,83,210,-1,83,12,43,-1,54,213,79,-1,213,54,212,-1,75,10,214,-1,75,217,10,-1,40,73,41,-1,215,73,40,-1,60,216,72,-1,216,60,59,-1,25,42,41,-1,25,27,42,-1,171,217,64,-1,217,171,170,-1,212,168,14,-1,212,169,168,-1,38,0,39,-1,38,28,0,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcenincr_Geo_5_265_normalIndex_1()
		{
			int[] value = {217,199,203,-1,199,182,203,-1,127,163,170,-1,163,123,149,-1,94,73,98,-1,194,190,172,-1,61,103,72,-1,1,4,18,-1,213,224,207,-1,72,103,86,-1,194,170,163,-1,85,104,101,-1,215,199,217,-1,21,24,18,-1,207,175,213,-1,34,46,25,-1,119,134,115,-1,213,220,218,-1,49,71,76,-1,183,194,163,-1,72,86,62,-1,213,218,224,-1,0,25,4,-1,1,0,4,-1,74,119,115,-1,115,80,74,-1,61,88,103,-1,194,172,170,-1,73,79,98,-1,163,127,123,-1,18,4,21,-1,203,223,217,-1,24,1,18,-1,1,24,37,-1,129,121,158,-1,129,117,121,-1,75,49,76,-1,48,49,75,-1,116,118,137,-1,118,116,114,-1,107,85,81,-1,107,104,85,-1,50,22,48,-1,36,22,50,-1,94,136,95,-1,136,94,129,-1,163,159,183,-1,159,163,149,-1,159,148,160,-1,148,159,147,-1,86,56,62,-1,86,81,56,-1,35,47,40,-1,35,36,47,-1,136,171,139,-1,171,136,167,-1,171,187,174,-1,187,171,186,-1,185,164,191,-1,164,185,160,-1,105,86,103,-1,105,106,86,-1,35,14,17,-1,33,14,35,-1,89,138,87,-1,138,89,139,-1,138,176,140,-1,176,138,174,-1,209,189,210,-1,189,209,191,-1,125,105,108,-1,125,124,105,-1,30,38,44,-1,30,33,38,-1,39,66,60,-1,39,44,66,-1,176,192,177,-1,192,176,188,-1,189,161,193,-1,161,189,162,-1,109,88,97,-1,109,108,88,-1,92,68,59,-1,92,97,68,-1,27,39,41,-1,27,31,39,-1,141,178,142,-1,178,141,177,-1,214,196,219,-1,196,214,193,-1,131,109,110,-1,131,133,109,-1,111,92,83,-1,111,110,92,-1,2,27,28,-1,2,6,27,-1,93,144,99,-1,144,93,142,-1,216,222,221,-1,222,216,219,-1,205,222,200,-1,205,227,222,-1,132,111,112,-1,132,128,111,-1,2,10,12,-1,3,10,2,-1,64,99,96,-1,64,67,99,-1,198,225,201,-1,225,198,221,-1,225,228,226,-1,228,225,227,-1,155,135,156,-1,135,155,132,-1,53,10,13,-1,53,51,10,-1,45,64,69,-1,45,42,64,-1,127,116,123,-1,130,116,127,-1,126,116,130,-1,121,116,126,-1,121,114,116,-1,117,114,121,-1,117,101,114,-1,98,101,117,-1,79,101,98,-1,78,101,79,-1,77,101,78,-1,77,76,101,-1,77,75,76,-1,69,46,45,-1,65,46,69,-1,203,181,206,-1,203,182,181,-1,175,211,169,-1,175,207,211,-1,53,80,84,-1,55,80,53,-1,37,20,1,-1,20,37,55,-1,218,223,224,-1,223,218,217,-1,8,1,20,-1,8,0,1,-1,55,13,20,-1,55,53,13,-1,169,157,175,-1,157,169,156,-1,206,223,203,-1,223,206,226,-1,100,65,69,-1,102,65,100,-1,20,5,8,-1,20,13,5,-1,143,181,145,-1,181,143,180,-1,32,42,45,-1,32,29,42,-1,84,51,53,-1,84,82,51,-1,168,156,169,-1,156,168,155,-1,201,226,206,-1,226,201,225,-1,179,201,180,-1,201,179,198,-1,42,67,64,-1,42,43,67,-1,51,12,10,-1,51,52,12,-1,152,132,155,-1,132,152,128,-1,166,152,173,-1,152,166,151,-1,195,221,198,-1,221,195,216,-1,93,67,63,-1,99,67,93,-1,12,6,2,-1,12,11,6,-1,110,128,131,-1,111,128,110,-1,154,131,151,-1,131,154,133,-1,219,212,214,-1,219,216,212,-1,91,142,93,-1,142,91,141,-1,6,31,27,-1,6,7,31,-1,9,15,16,-1,7,15,9,-1,133,108,109,-1,133,125,108,-1,193,210,189,-1,193,214,210,-1,140,177,141,-1,177,140,176,-1,31,44,39,-1,31,30,44,-1,9,33,30,-1,9,14,33,-1,108,103,88,-1,108,105,103,-1,191,162,189,-1,162,191,164,-1,174,188,176,-1,188,174,187,-1,139,174,138,-1,174,139,171,-1,33,40,38,-1,33,35,40,-1,124,106,105,-1,124,122,106,-1,191,202,185,-1,191,209,202,-1,190,202,197,-1,202,190,194,-1,95,139,89,-1,139,95,136,-1,36,17,22,-1,35,17,36,-1,106,81,86,-1,106,107,81,-1,183,160,185,-1,160,183,159,-1,165,190,184,-1,190,165,172,-1,70,94,95,-1,70,73,94,-1,26,48,22,-1,26,49,48,-1,120,104,107,-1,120,118,104,-1,75,50,48,-1,50,75,77,-1,98,129,94,-1,129,98,117,-1,130,170,172,-1,170,130,127,-1,123,137,149,-1,137,123,116,-1,158,126,165,-1,158,121,126,-1,78,73,54,-1,73,78,79,-1,114,104,118,-1,104,114,101,-1,81,71,56,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcenincr_Geo_5_265_normalIndex_2()
		{
			int[] value = {81,85,71,-1,36,54,47,-1,36,50,54,-1,129,167,136,-1,167,129,158,-1,149,147,159,-1,147,149,137,-1,147,122,148,-1,122,147,120,-1,62,26,23,-1,62,56,26,-1,40,70,58,-1,40,47,70,-1,167,186,171,-1,186,167,184,-1,186,204,187,-1,204,186,197,-1,160,153,164,-1,153,160,148,-1,17,19,23,-1,14,19,17,-1,57,89,87,-1,57,58,89,-1,87,140,90,-1,140,87,138,-1,210,204,209,-1,210,208,204,-1,153,125,150,-1,125,153,124,-1,61,19,16,-1,61,72,19,-1,57,44,38,-1,66,44,57,-1,60,90,91,-1,60,66,90,-1,188,212,192,-1,212,188,208,-1,162,154,161,-1,154,162,150,-1,97,61,68,-1,97,88,61,-1,59,15,11,-1,59,68,15,-1,60,41,39,-1,63,41,60,-1,177,195,178,-1,195,177,192,-1,193,166,196,-1,166,193,161,-1,110,97,92,-1,110,109,97,-1,83,59,52,-1,83,92,59,-1,28,41,43,-1,28,27,41,-1,142,179,144,-1,179,142,178,-1,200,219,196,-1,200,222,219,-1,168,200,173,-1,168,205,200,-1,112,83,82,-1,112,111,83,-1,3,28,29,-1,3,2,28,-1,99,143,96,-1,143,99,144,-1,221,227,225,-1,227,221,222,-1,227,211,228,-1,211,227,205,-1,135,112,113,-1,135,132,112,-1,13,3,5,-1,13,10,3,-1,69,96,100,-1,69,64,96,-1,134,113,115,-1,113,134,135,-1,45,34,32,-1,46,34,45,-1,182,145,181,-1,182,146,145,-1,228,207,224,-1,207,228,211,-1,115,84,80,-1,115,113,84,-1,74,55,37,-1,74,80,55,-1,0,34,25,-1,34,0,8,-1,134,156,135,-1,134,157,156,-1,226,224,223,-1,224,226,228,-1,146,100,145,-1,146,102,100,-1,32,8,5,-1,34,8,32,-1,96,145,100,-1,145,96,143,-1,5,29,32,-1,5,3,29,-1,113,82,84,-1,113,112,82,-1,205,169,211,-1,169,205,168,-1,180,206,181,-1,206,180,201,-1,144,180,143,-1,180,144,179,-1,29,43,42,-1,29,28,43,-1,82,52,51,-1,82,83,52,-1,173,155,168,-1,155,173,152,-1,196,173,200,-1,173,196,166,-1,178,198,179,-1,198,178,195,-1,63,43,41,-1,67,43,63,-1,52,11,12,-1,52,59,11,-1,151,128,152,-1,128,151,131,-1,161,151,166,-1,151,161,154,-1,192,216,195,-1,216,192,212,-1,63,91,93,-1,63,60,91,-1,11,7,6,-1,11,15,7,-1,68,16,15,-1,68,61,16,-1,150,133,154,-1,133,150,125,-1,208,214,212,-1,214,208,210,-1,90,141,91,-1,141,90,140,-1,30,7,9,-1,31,7,30,-1,16,14,9,-1,16,19,14,-1,150,164,153,-1,150,162,164,-1,187,208,188,-1,208,187,204,-1,66,87,90,-1,66,57,87,-1,38,58,57,-1,38,40,58,-1,72,23,19,-1,72,62,23,-1,124,148,122,-1,124,153,148,-1,197,209,204,-1,209,197,202,-1,184,197,186,-1,197,184,190,-1,58,95,89,-1,58,70,95,-1,22,23,26,-1,17,23,22,-1,122,107,106,-1,122,120,107,-1,194,185,202,-1,185,194,183,-1,158,184,167,-1,184,158,165,-1,47,73,70,-1,47,54,73,-1,49,56,71,-1,26,56,49,-1,137,120,147,-1,120,137,118,-1,85,76,71,-1,85,101,76,-1,77,54,50,-1,54,77,78,-1,165,130,172,-1,165,126,130,-1,220,217,218,-1,220,215,217,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlceninlc_Geo_5_271_coordIndex_2()
		{
			int[] value = {5,114,26,-1,5,120,114,-1,66,152,111,-1,66,64,152,-1,98,1,25,-1,98,57,1,-1,111,136,133,-1,111,152,136,-1,133,16,111,-1,133,17,16,-1,133,157,17,-1,140,23,83,-1,23,140,24,-1,69,8,56,-1,69,93,8,-1,32,158,135,-1,32,79,158,-1,50,153,131,-1,153,50,3,-1,119,147,138,-1,34,147,119,-1,143,47,73,-1,145,47,143,-1,36,45,34,-1,71,45,36,-1,148,155,149,-1,148,156,155,-1,156,122,37,-1,142,122,156,-1,69,42,41,-1,42,69,68,-1,144,117,123,-1,118,117,144,-1,30,75,28,-1,108,75,30,-1,58,103,164,-1,58,60,103,-1,17,23,15,-1,17,157,23,-1,132,79,105,-1,158,79,132,-1,154,31,33,-1,31,154,86,-1,119,77,35,-1,75,77,119,-1,107,150,151,-1,107,106,150,-1,157,132,23,-1,158,132,157,-1,112,120,164,-1,120,112,113,-1,94,163,74,-1,163,94,96,-1,57,97,1,-1,88,97,57,-1,92,161,93,-1,161,92,165,-1,160,12,131,-1,12,160,90,-1,163,165,92,-1,162,165,163,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlceninlc_Geo_5_271_normalIndex_2()
		{
			int[] value = {33,86,32,-1,33,101,86,-1,56,69,48,-1,56,70,69,-1,109,38,42,-1,109,121,38,-1,48,67,60,-1,48,69,67,-1,60,54,48,-1,60,55,54,-1,60,63,55,-1,157,118,139,-1,118,157,128,-1,159,150,145,-1,159,162,150,-1,88,85,80,-1,88,93,85,-1,9,3,5,-1,3,9,1,-1,53,75,84,-1,49,75,53,-1,94,51,50,-1,98,51,94,-1,26,47,49,-1,30,47,26,-1,91,111,96,-1,91,113,111,-1,113,131,130,-1,120,131,113,-1,159,149,153,-1,149,159,163,-1,117,134,135,-1,115,134,117,-1,62,46,66,-1,52,46,62,-1,90,99,107,-1,90,76,99,-1,55,118,73,-1,55,63,118,-1,102,93,114,-1,85,93,102,-1,110,108,105,-1,108,110,112,-1,53,36,31,-1,46,36,53,-1,82,58,65,-1,82,74,58,-1,63,102,118,-1,85,102,63,-1,89,101,107,-1,101,89,72,-1,140,154,151,-1,154,140,137,-1,121,37,38,-1,116,37,121,-1,158,161,162,-1,161,158,160,-1,4,13,5,-1,13,4,6,-1,154,160,158,-1,152,160,154,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlceninlr_Geo_5_277_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,6,8,12,-1,13,14,15,-1,16,17,18,-1,19,20,21,-1,22,23,24,-1,18,25,26,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,26,46,-1,47,48,49,-1,50,22,51,-1,23,52,53,-1,54,19,21,-1,16,48,47,-1,55,56,57,-1,58,59,60,-1,61,62,63,-1,8,53,12,-1,7,24,53,-1,9,64,65,-1,7,66,67,-1,68,69,70,-1,71,72,73,-1,74,75,76,-1,77,9,65,-1,7,67,24,-1,8,7,53,-1,63,27,61,-1,60,78,58,-1,56,79,57,-1,16,47,17,-1,54,21,12,-1,23,53,24,-1,50,51,80,-1,47,49,65,-1,45,18,26,-1,81,82,83,-1,39,73,40,-1,83,84,68,-1,36,85,37,-1,33,86,34,-1,30,55,31,-1,27,87,28,-1,18,61,25,-1,22,24,51,-1,19,88,20,-1,45,16,18,-1,13,15,89,-1,90,52,56,-1,52,23,56,-1,6,12,21,-1,9,11,64,-1,73,39,91,-1,92,93,71,-1,94,95,96,-1,94,97,95,-1,11,98,99,-1,10,98,11,-1,21,100,6,-1,100,21,20,-1,101,7,6,-1,101,94,7,-1,101,102,94,-1,103,63,62,-1,103,104,63,-1,105,106,107,-1,105,108,106,-1,78,88,19,-1,60,88,78,-1,54,90,109,-1,54,52,90,-1,23,79,56,-1,23,22,79,-1,110,111,112,-1,110,50,111,-1,113,89,15,-1,89,113,114,-1,17,61,18,-1,17,62,61,-1,99,108,105,-1,108,99,115,-1,50,116,111,-1,50,80,116,-1,117,49,48,-1,117,118,49,-1,119,120,121,-1,122,120,119,-1,123,124,125,-1,123,126,124,-1,127,128,129,-1,128,127,130,-1,131,132,133,-1,132,131,134,-1,135,136,137,-1,135,138,136,-1,139,131,140,-1,139,141,131,-1,142,143,144,-1,142,145,143,-1,146,147,148,-1,147,146,141,-1,149,150,151,-1,149,152,150,-1,153,154,155,-1,153,122,154,-1,156,149,157,-1,158,149,156,-1,159,160,161,-1,159,162,160,-1,163,119,164,-1,165,119,163,-1,166,159,152,-1,167,159,166,-1,45,168,114,-1,45,46,168,-1,169,58,170,-1,58,169,171,-1,35,13,172,-1,173,13,35,-1,46,174,168,-1,175,174,46,-1,29,176,177,-1,176,29,28,-1,178,171,169,-1,178,179,171,-1,38,34,86,-1,180,34,38,-1,156,181,182,-1,156,183,181,-1,184,185,186,-1,185,184,187,-1,188,189,190,-1,188,191,189,-1,188,192,193,-1,192,188,194,-1,195,36,196,-1,195,85,36,-1,197,142,126,-1,142,197,198,-1,162,199,160,-1,162,200,199,-1,127,201,202,-1,201,127,138,-1,203,204,205,-1,204,203,133,-1,160,206,207,-1,199,206,160,-1,208,164,209,-1,208,163,164,-1,210,211,212,-1,210,213,211,-1,214,215,216,-1,214,41,215,-1,217,218,219,-1,218,217,220,-1,221,222,223,-1,222,221,224,-1,225,226,223,-1,69,226,225,-1,227,210,228,-1,227,229,210,-1,230,231,232,-1,231,230,228,-1,70,83,68,-1,70,81,83,-1,233,83,5,-1,83,233,84,-1,72,40,73,-1,72,234,40,-1,214,39,41,-1,75,39,214,-1,235,233,236,-1,219,233,235,-1,5,82,3,-1,83,82,5,-1,68,218,237,-1,84,218,68,-1,2,228,230,-1,228,2,227,-1,237,69,68,-1,226,69,237,-1,206,222,224,-1,43,222,206,-1,220,237,218,-1,237,220,205,-1,238,216,202,-1,238,214,216,-1,208,212,211,-1,234,212,208,-1,130,202,216,-1,202,130,127,-1,211,163,208,-1,211,239,163,-1,207,224,240,-1,206,224,207,-1,241,205,220,-1,205,241,203,-1,1,227,2,-1,1,42,227,-1,198,145,142,-1,145,198,191,-1,164,121,242,-1,164,119,121,-1,147,194,243,-1,147,192,194,-1,194,190,179,-1,194,188,190,-1,187,197,185,-1,197,187,177,-1,174,182,181,-1,244,182,174,-1,36,86,245,-1,36,38,86,-1,37,180,38,-1,37,31,180,-1,246,179,190,-1,179,246,171,-1,177,25,29,-1,177,187,25,-1,168,181,247,-1,174,181,168,-1,172,89,247,-1,13,89,172,-1,57,31,55,-1,57,180,31,-1,59,171,246,-1,59,58,171,-1,61,29,25,-1,61,27,29,-1,152,161,150,-1,159,161,152,-1,165,122,119,-1,165,154,122,-1,167,162,159,-1,167,248,162,-1,151,157,149,-1,151,245,157,-1,155,249,153,-1,155,244,249,-1,158,152,149,-1,158,166,152,-1,148,250,146,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlceninlr_Geo_5_277_coordIndex_2()
		{
			int[] value = {148,195,250,-1,145,251,143,-1,145,193,251,-1,141,134,131,-1,141,146,134,-1,137,144,143,-1,144,137,136,-1,140,133,203,-1,133,140,131,-1,129,138,127,-1,129,136,138,-1,144,126,142,-1,126,144,124,-1,120,128,121,-1,120,125,128,-1,252,118,117,-1,252,97,118,-1,115,88,108,-1,88,115,20,-1,103,65,64,-1,103,47,65,-1,48,113,117,-1,113,48,16,-1,14,252,15,-1,14,253,252,-1,57,110,254,-1,57,79,110,-1,109,30,170,-1,109,90,30,-1,59,106,60,-1,255,106,59,-1,87,63,107,-1,27,63,87,-1,115,100,20,-1,256,100,115,-1,101,65,49,-1,101,77,65,-1,51,257,80,-1,66,257,51,-1,258,232,259,-1,258,230,232,-1,91,71,73,-1,91,92,71,-1,74,236,4,-1,76,236,74,-1,80,260,116,-1,257,260,80,-1,97,102,118,-1,94,102,97,-1,256,99,98,-1,256,115,99,-1,173,34,254,-1,173,35,34,-1,255,107,106,-1,87,107,255,-1,78,170,58,-1,78,109,170,-1,90,55,30,-1,90,56,55,-1,253,112,111,-1,112,253,14,-1,15,117,113,-1,15,252,117,-1,47,62,17,-1,47,103,62,-1,105,11,99,-1,105,104,11,-1,111,95,253,-1,111,116,95,-1,261,249,186,-1,261,153,249,-1,122,261,120,-1,122,153,261,-1,124,136,129,-1,124,144,136,-1,134,240,132,-1,240,134,262,-1,137,241,135,-1,241,137,263,-1,140,251,139,-1,251,140,263,-1,264,262,250,-1,264,265,262,-1,192,141,139,-1,192,147,141,-1,264,151,150,-1,196,151,264,-1,266,155,154,-1,267,155,266,-1,182,158,156,-1,267,158,182,-1,161,207,265,-1,161,160,207,-1,239,165,163,-1,268,165,239,-1,266,167,166,-1,268,167,266,-1,247,114,168,-1,89,114,247,-1,269,87,255,-1,87,269,28,-1,170,32,169,-1,170,30,32,-1,254,112,173,-1,112,254,110,-1,33,172,183,-1,33,35,172,-1,26,175,46,-1,184,175,26,-1,189,28,269,-1,189,176,28,-1,169,270,178,-1,270,169,32,-1,270,85,271,-1,85,270,37,-1,183,157,33,-1,156,157,183,-1,175,186,249,-1,186,175,184,-1,191,176,189,-1,191,198,176,-1,178,271,243,-1,271,178,270,-1,148,85,195,-1,148,271,85,-1,126,185,197,-1,126,123,185,-1,200,44,199,-1,200,229,44,-1,138,217,201,-1,217,138,135,-1,133,221,204,-1,221,133,132,-1,248,200,162,-1,200,248,213,-1,209,242,215,-1,209,164,242,-1,213,229,200,-1,229,213,210,-1,40,215,41,-1,40,209,215,-1,219,201,217,-1,219,235,201,-1,204,223,226,-1,223,204,221,-1,272,223,222,-1,225,223,272,-1,212,228,210,-1,228,212,231,-1,232,72,71,-1,72,232,231,-1,219,84,233,-1,84,219,218,-1,236,238,235,-1,76,238,236,-1,71,259,232,-1,93,259,71,-1,214,76,75,-1,76,214,238,-1,5,236,233,-1,5,4,236,-1,42,273,43,-1,273,42,1,-1,234,231,212,-1,231,234,72,-1,272,43,273,-1,272,222,43,-1,199,43,206,-1,44,43,199,-1,226,205,204,-1,226,237,205,-1,202,235,238,-1,235,202,201,-1,234,209,40,-1,234,208,209,-1,242,216,215,-1,216,242,130,-1,239,213,248,-1,211,213,239,-1,132,224,221,-1,224,132,240,-1,220,135,241,-1,220,217,135,-1,42,229,227,-1,229,42,44,-1,191,193,145,-1,193,191,188,-1,121,130,242,-1,130,121,128,-1,243,148,147,-1,148,243,271,-1,179,243,194,-1,243,179,178,-1,198,177,176,-1,198,197,177,-1,175,244,174,-1,249,244,175,-1,245,33,157,-1,245,86,33,-1,32,37,270,-1,37,32,31,-1,269,190,189,-1,190,269,246,-1,26,187,184,-1,187,26,25,-1,247,183,172,-1,181,183,247,-1,254,180,57,-1,180,254,34,-1,246,255,59,-1,255,246,269,-1,150,265,264,-1,161,265,150,-1,268,154,165,-1,268,266,154,-1,248,268,239,-1,167,268,248,-1,196,245,151,-1,196,36,245,-1,267,244,155,-1,267,182,244,-1,267,166,158,-1,267,266,166,-1,250,196,264,-1,195,196,250,-1,193,139,251,-1,193,192,139,-1,146,262,134,-1,146,250,262,-1,143,263,137,-1,143,251,263,-1,203,263,140,-1,203,241,263,-1,265,240,262,-1,207,240,265,-1,125,129,128,-1,125,124,129,-1,261,125,120,-1,125,261,123,-1,186,123,261,-1,123,186,185,-1,253,97,252,-1,253,95,97,-1,12,52,54,-1,52,12,53,-1,104,64,11,-1,104,103,64,-1,16,114,113,-1,114,16,45,-1,14,173,112,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlceninlr_Geo_5_277_coordIndex_3()
		{
			int[] value = {173,14,13,-1,50,79,22,-1,79,50,110,-1,109,19,54,-1,78,19,109,-1,108,60,106,-1,108,88,60,-1,104,107,63,-1,104,105,107,-1,100,101,6,-1,256,101,100,-1,98,101,256,-1,10,101,98,-1,9,101,10,-1,9,77,101,-1,94,66,7,-1,96,66,94,-1,260,66,96,-1,260,257,66,-1,24,66,51,-1,67,66,24,-1,118,101,49,-1,102,101,118,-1,116,96,95,-1,260,96,116,-1,0,230,258,-1,0,2,230,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlceninlr_Geo_5_277_normalIndex_1()
		{
			int[] value = {223,178,214,-1,10,31,17,-1,156,167,164,-1,166,161,115,-1,156,164,117,-1,267,225,212,-1,211,153,154,-1,90,109,110,-1,165,132,162,-1,154,83,143,-1,62,43,59,-1,107,127,105,-1,217,182,239,-1,149,126,151,-1,147,194,134,-1,168,138,175,-1,232,143,210,-1,163,202,229,-1,183,165,180,-1,132,114,129,-1,103,90,110,-1,211,202,163,-1,128,131,157,-1,61,56,70,-1,92,108,77,-1,164,129,117,-1,167,162,129,-1,166,130,171,-1,167,179,169,-1,50,75,42,-1,230,247,187,-1,44,87,58,-1,185,166,171,-1,167,169,162,-1,164,167,129,-1,77,62,92,-1,70,78,61,-1,131,160,157,-1,211,163,153,-1,103,110,117,-1,132,129,162,-1,183,180,215,-1,163,229,171,-1,232,154,143,-1,24,9,12,-1,147,187,194,-1,12,7,50,-1,149,118,126,-1,217,170,182,-1,107,128,127,-1,62,60,43,-1,154,92,83,-1,165,162,180,-1,90,80,109,-1,232,211,154,-1,267,212,264,-1,112,114,131,-1,114,132,131,-1,156,117,110,-1,166,115,130,-1,187,147,186,-1,198,234,230,-1,203,228,197,-1,203,227,228,-1,115,159,113,-1,161,159,115,-1,110,152,156,-1,152,110,109,-1,196,167,156,-1,196,203,167,-1,196,209,203,-1,116,77,108,-1,116,106,77,-1,85,67,68,-1,85,82,67,-1,78,80,90,-1,70,80,78,-1,103,112,86,-1,103,114,112,-1,132,160,131,-1,132,165,160,-1,184,199,219,-1,184,183,199,-1,206,264,212,-1,264,206,262,-1,153,92,154,-1,153,108,92,-1,113,82,85,-1,82,113,111,-1,183,241,199,-1,183,215,241,-1,190,229,202,-1,190,231,229,-1,204,137,140,-1,205,137,204,-1,84,51,88,-1,84,45,51,-1,55,93,57,-1,93,55,89,-1,69,101,72,-1,101,69,98,-1,13,21,8,-1,13,30,21,-1,37,69,40,-1,37,66,69,-1,28,14,23,-1,28,18,14,-1,95,65,97,-1,65,95,66,-1,226,176,177,-1,226,222,176,-1,208,263,259,-1,208,205,263,-1,240,226,224,-1,252,226,240,-1,221,172,174,-1,221,218,172,-1,261,204,201,-1,258,204,261,-1,250,221,222,-1,246,221,250,-1,232,256,262,-1,232,210,256,-1,74,61,76,-1,61,74,47,-1,239,267,254,-1,253,267,239,-1,210,233,256,-1,207,233,210,-1,59,27,41,-1,27,59,43,-1,64,47,74,-1,64,39,47,-1,151,182,170,-1,158,182,151,-1,240,236,243,-1,240,235,236,-1,145,81,142,-1,81,145,79,-1,6,22,16,-1,6,20,22,-1,6,35,5,-1,35,6,33,-1,123,149,150,-1,123,118,149,-1,38,28,45,-1,28,38,25,-1,218,173,172,-1,218,220,173,-1,55,29,52,-1,29,55,30,-1,46,71,48,-1,71,46,72,-1,172,141,139,-1,173,141,172,-1,257,201,195,-1,257,261,201,-1,249,270,273,-1,249,244,270,-1,94,133,91,-1,94,134,133,-1,11,4,15,-1,4,11,0,-1,102,120,100,-1,120,102,121,-1,104,73,100,-1,75,73,104,-1,213,249,245,-1,213,216,249,-1,237,265,251,-1,265,237,245,-1,42,12,50,-1,42,24,12,-1,19,12,17,-1,12,19,7,-1,247,194,187,-1,247,255,194,-1,94,147,134,-1,87,147,94,-1,26,19,32,-1,15,19,26,-1,17,9,10,-1,12,9,17,-1,50,4,49,-1,7,4,50,-1,214,245,237,-1,245,214,213,-1,49,75,50,-1,73,75,49,-1,141,120,121,-1,138,120,141,-1,0,49,4,-1,49,0,48,-1,54,91,52,-1,54,94,91,-1,257,273,270,-1,255,273,257,-1,89,52,91,-1,52,89,55,-1,270,261,257,-1,270,269,261,-1,139,121,125,-1,141,121,139,-1,2,48,0,-1,48,2,46,-1,178,213,214,-1,178,168,213,-1,25,18,28,-1,18,25,20,-1,201,140,136,-1,201,204,140,-1,65,33,63,-1,65,35,33,-1,33,16,39,-1,33,6,16,-1,79,38,81,-1,38,79,41,-1,233,243,236,-1,238,243,233,-1,149,170,181,-1,149,151,170,-1,126,158,151,-1,126,127,158,-1,34,39,16,-1,39,34,47,-1,41,83,59,-1,41,79,83,-1,256,236,260,-1,233,236,256,-1,254,264,260,-1,267,264,254,-1,157,127,128,-1,157,158,127,-1,56,47,34,-1,56,61,47,-1,92,59,83,-1,92,62,59,-1,222,174,176,-1,221,174,222,-1,258,205,204,-1,258,263,205,-1,246,218,221,-1,246,248,218,-1,177,224,226,-1,177,181,224,-1,259,200,208,-1,259,238,200,-1,252,222,226,-1,252,250,222,-1,97,119,95,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlceninlr_Geo_5_277_normalIndex_2()
		{
			int[] value = {97,123,119,-1,18,3,14,-1,18,5,3,-1,66,98,69,-1,66,95,98,-1,8,23,14,-1,23,8,21,-1,40,72,46,-1,72,40,69,-1,57,30,55,-1,57,21,30,-1,23,45,28,-1,45,23,51,-1,137,93,140,-1,137,88,93,-1,189,231,190,-1,189,227,231,-1,111,80,82,-1,80,111,109,-1,116,171,130,-1,116,163,171,-1,202,206,190,-1,206,202,211,-1,225,189,212,-1,225,191,189,-1,157,184,192,-1,157,160,184,-1,86,107,76,-1,86,112,107,-1,56,67,70,-1,53,67,56,-1,60,77,68,-1,62,77,60,-1,111,152,109,-1,155,152,111,-1,196,171,229,-1,196,185,171,-1,180,188,215,-1,179,188,180,-1,242,251,266,-1,242,237,251,-1,186,230,187,-1,186,198,230,-1,44,32,31,-1,58,32,44,-1,215,193,241,-1,188,193,215,-1,227,209,231,-1,203,209,227,-1,155,113,159,-1,155,111,113,-1,253,182,192,-1,253,239,182,-1,53,68,67,-1,60,68,53,-1,78,76,61,-1,78,86,76,-1,112,128,107,-1,112,131,128,-1,191,219,199,-1,219,191,225,-1,212,190,206,-1,212,189,190,-1,163,108,153,-1,163,116,108,-1,85,115,113,-1,85,106,115,-1,199,228,191,-1,199,241,228,-1,144,200,142,-1,144,208,200,-1,205,144,137,-1,205,208,144,-1,51,21,57,-1,51,23,21,-1,98,125,101,-1,125,98,122,-1,8,2,13,-1,2,8,1,-1,40,3,37,-1,3,40,1,-1,148,122,119,-1,148,146,122,-1,35,66,37,-1,35,65,66,-1,148,177,176,-1,150,177,148,-1,271,259,263,-1,268,259,271,-1,243,252,240,-1,268,252,243,-1,174,139,146,-1,174,172,139,-1,269,258,261,-1,272,258,269,-1,271,246,250,-1,272,246,271,-1,260,262,256,-1,264,262,260,-1,36,60,53,-1,60,36,43,-1,76,105,74,-1,76,107,105,-1,192,219,253,-1,219,192,184,-1,217,254,235,-1,217,239,254,-1,143,207,210,-1,145,207,143,-1,22,43,36,-1,22,27,43,-1,74,96,64,-1,96,74,105,-1,96,118,99,-1,118,96,126,-1,235,224,217,-1,240,224,235,-1,207,142,200,-1,142,207,145,-1,20,27,22,-1,20,25,27,-1,64,99,63,-1,99,64,96,-1,97,118,123,-1,97,99,118,-1,45,81,38,-1,45,84,81,-1,220,175,173,-1,220,216,175,-1,30,11,29,-1,11,30,13,-1,72,102,71,-1,102,72,101,-1,248,220,218,-1,220,248,244,-1,195,136,133,-1,195,201,136,-1,244,216,220,-1,216,244,249,-1,194,133,134,-1,194,195,133,-1,15,29,11,-1,15,26,29,-1,71,100,73,-1,100,71,102,-1,124,100,120,-1,104,100,124,-1,273,245,249,-1,245,273,265,-1,251,247,230,-1,247,251,265,-1,15,7,19,-1,7,15,4,-1,32,54,26,-1,58,54,32,-1,230,266,251,-1,234,266,230,-1,94,58,87,-1,58,94,54,-1,17,32,19,-1,17,31,32,-1,168,135,138,-1,135,168,178,-1,255,265,273,-1,265,255,247,-1,124,138,135,-1,124,120,138,-1,173,138,141,-1,175,138,173,-1,73,48,71,-1,73,49,48,-1,52,26,54,-1,26,52,29,-1,255,195,194,-1,255,257,195,-1,136,91,133,-1,91,136,89,-1,269,244,248,-1,270,244,269,-1,101,121,102,-1,121,101,125,-1,0,13,2,-1,0,11,13,-1,168,216,213,-1,216,168,175,-1,20,5,18,-1,5,20,6,-1,140,89,136,-1,89,140,93,-1,63,97,65,-1,97,63,99,-1,39,63,33,-1,63,39,64,-1,25,41,27,-1,25,38,41,-1,207,238,233,-1,200,238,207,-1,181,217,224,-1,181,170,217,-1,105,126,96,-1,126,105,127,-1,36,16,22,-1,16,36,34,-1,143,79,145,-1,79,143,83,-1,260,235,254,-1,236,235,260,-1,192,158,157,-1,158,192,182,-1,34,53,56,-1,53,34,36,-1,176,146,148,-1,174,146,176,-1,272,263,258,-1,272,271,263,-1,248,272,269,-1,246,272,248,-1,150,181,177,-1,150,149,181,-1,268,238,259,-1,268,243,238,-1,268,250,252,-1,268,271,250,-1,119,150,148,-1,123,150,119,-1,5,37,3,-1,5,35,37,-1,95,122,98,-1,95,119,122,-1,14,1,8,-1,14,3,1,-1,46,1,40,-1,46,2,1,-1,146,125,122,-1,139,125,146,-1,88,57,93,-1,88,51,57,-1,144,88,137,-1,88,144,84,-1,142,84,144,-1,84,142,81,-1,191,227,189,-1,191,228,227,-1,117,114,103,-1,114,117,129,-1,106,130,115,-1,106,116,130,-1,211,262,206,-1,262,211,232,-1,225,253,219,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlceninlr_Geo_5_277_normalIndex_3()
		{
			int[] value = {253,225,267,-1,183,160,165,-1,160,183,184,-1,86,90,103,-1,78,90,86,-1,82,70,67,-1,82,80,70,-1,106,68,77,-1,106,85,68,-1,152,196,156,-1,155,196,152,-1,159,196,155,-1,161,196,159,-1,166,196,161,-1,166,185,196,-1,203,179,167,-1,197,179,203,-1,193,179,197,-1,193,188,179,-1,162,179,180,-1,169,179,162,-1,231,196,229,-1,209,196,231,-1,241,197,228,-1,193,197,241,-1,223,237,242,-1,223,214,237,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlclavcle_Geo_5_283_coordIndex_1()
		{
			int[] value = {0,1,2,-1,1,3,2,-1,4,5,6,-1,5,7,6,-1,8,9,10,-1,8,11,9,-1,12,13,8,-1,12,14,13,-1,1,11,15,-1,1,16,11,-1,17,18,19,-1,17,20,18,-1,21,22,23,-1,23,24,21,-1,22,25,23,-1,26,27,28,-1,26,29,27,-1,30,31,32,-1,30,33,31,-1,34,35,36,-1,34,37,35,-1,38,39,40,-1,39,41,40,-1,38,42,39,-1,43,44,45,-1,44,46,45,-1,43,47,44,-1,48,49,50,-1,50,51,48,-1,48,52,49,-1,53,54,55,-1,54,56,55,-1,57,58,59,-1,57,60,58,-1,60,61,58,-1,1,15,62,-1,62,3,1,-1,63,64,65,-1,63,66,64,-1,67,68,69,-1,68,70,69,-1,71,72,73,-1,73,74,71,-1,73,75,74,-1,76,77,78,-1,76,79,77,-1,80,81,82,-1,80,83,81,-1,80,84,83,-1,85,86,87,-1,87,88,85,-1,87,89,88,-1,90,91,92,-1,92,93,90,-1,94,95,96,-1,95,97,96,-1,98,4,6,-1,98,99,4,-1,100,101,102,-1,103,104,105,-1,105,14,103,-1,105,13,14,-1,106,107,108,-1,108,109,106,-1,110,111,112,-1,110,113,111,-1,114,115,116,-1,116,117,114,-1,118,119,120,-1,120,121,118,-1,122,123,124,-1,122,125,123,-1,126,127,128,-1,126,129,127,-1,130,131,132,-1,130,133,131,-1,134,135,136,-1,137,138,139,-1,139,140,137,-1,141,142,143,-1,141,144,142,-1,145,146,147,-1,148,149,150,-1,151,152,153,-1,151,154,152,-1,155,156,157,-1,157,158,155,-1,159,160,161,-1,159,162,160,-1,163,164,114,-1,163,165,164,-1,166,167,168,-1,166,169,167,-1,154,170,171,-1,170,172,171,-1,173,159,137,-1,159,56,137,-1,174,175,176,-1,176,52,174,-1,156,177,178,-1,177,179,178,-1,180,181,182,-1,180,183,181,-1,184,185,186,-1,184,187,185,-1,188,189,190,-1,188,191,189,-1,192,193,194,-1,192,195,193,-1,196,197,198,-1,146,199,144,-1,146,90,199,-1,200,201,148,-1,200,202,201,-1,203,204,205,-1,206,207,208,-1,206,209,207,-1,210,211,212,-1,212,213,210,-1,214,215,216,-1,217,71,76,-1,0,218,219,-1,219,16,0,-1,16,1,0,-1,115,220,221,-1,115,222,220,-1,126,223,224,-1,225,226,227,-1,228,135,131,-1,131,229,228,-1,230,231,232,-1,233,234,235,-1,236,237,238,-1,236,239,237,-1,240,125,241,-1,242,100,124,-1,242,243,100,-1,244,245,120,-1,120,246,244,-1,247,248,249,-1,248,250,249,-1,251,252,253,-1,252,254,253,-1,109,255,117,-1,117,256,109,-1,257,107,258,-1,258,259,257,-1,104,260,261,-1,260,262,261,-1,102,263,264,-1,102,265,263,-1,266,24,267,-1,268,269,85,-1,270,93,271,-1,271,84,270,-1,272,273,75,-1,272,274,273,-1,275,276,277,-1,278,72,279,-1,280,281,282,-1,283,284,285,-1,285,286,283,-1,287,288,289,-1,287,290,288,-1,291,292,44,-1,291,293,292,-1,67,294,295,-1,67,296,294,-1,297,298,299,-1,297,300,298,-1,301,57,302,-1,303,304,305,-1,303,58,304,-1,306,307,308,-1,309,29,310,-1,309,30,29,-1,311,312,313,-1,311,314,312,-1,42,37,315,-1,315,43,42,-1,316,39,45,-1,317,318,35,-1,35,38,317,-1,319,320,321,-1,322,28,323,-1,322,324,28,-1,25,325,326,-1,327,328,329,-1,330,331,332,-1,333,334,335,-1,335,336,333,-1,337,338,20,-1,337,339,338,-1,340,341,19,-1,340,342,341,-1,343,344,345,-1,345,346,343,-1,17,347,348,-1,17,349,347,-1,350,351,352,-1,351,353,352,-1,354,355,356,-1,354,357,355,-1,358,359,23,-1,360,361,362,-1,362,363,360,-1,364,32,365,-1,364,27,32,-1,366,367,368,-1,366,369,367,-1,370,40,371,-1,372,46,373,-1,33,374,50,-1,50,375,33,-1,376,377,22,-1,376,26,377,-1,378,379,380,-1,378,381,379,-1,382,383,384,-1,384,385,382,-1,386,387,388,-1,388,389,386,-1,390,391,69,-1,69,392,390,-1,393,394,395,-1,395,68,393,-1,396,397,398,-1,398,399,396,-1,400,401,402,-1,400,403,401,-1,404,405,406,-1,404,407,405,-1,408,409,410,-1,408,411,409,-1,412,73,413,-1,412,414,73,-1,415,416,417,-1,416,78,417,-1,418,419,77,-1,77,420,418,-1,421,422,82,-1,423,87,424,-1,423,425,87,-1,426,427,428,-1,80,429,430,-1,431,432,433,-1,433,434,431,-1,435,21,436,-1,53,437,97,-1,7,438,6,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlclavcle_Geo_5_283_coordIndex_2()
		{
			int[] value = {7,439,438,-1,440,441,442,-1,440,443,441,-1,444,445,446,-1,444,447,445,-1,448,449,450,-1,448,451,449,-1,452,453,454,-1,452,455,453,-1,456,457,103,-1,458,459,460,-1,460,461,458,-1,462,463,464,-1,464,121,462,-1,122,128,465,-1,122,466,128,-1,130,123,467,-1,130,468,123,-1,469,470,471,-1,469,472,470,-1,473,474,475,-1,476,477,478,-1,479,136,480,-1,479,119,136,-1,481,482,483,-1,481,133,482,-1,484,485,127,-1,485,486,127,-1,129,487,488,-1,487,489,488,-1,490,491,492,-1,490,493,491,-1,494,495,101,-1,496,497,498,-1,496,499,497,-1,500,501,143,-1,143,502,500,-1,503,504,505,-1,503,506,504,-1,149,507,508,-1,149,509,507,-1,142,510,511,-1,512,49,513,-1,512,514,49,-1,515,516,517,-1,517,518,515,-1,48,64,519,-1,520,521,522,-1,522,523,520,-1,160,524,155,-1,155,525,160,-1,526,527,528,-1,527,66,528,-1,529,530,531,-1,530,162,531,-1,138,54,95,-1,532,63,533,-1,532,534,63,-1,530,177,524,-1,530,175,177,-1,535,525,536,-1,536,523,535,-1,178,170,537,-1,178,526,170,-1,504,200,538,-1,203,505,539,-1,539,540,203,-1,539,541,540,-1,542,543,501,-1,542,544,543,-1,531,173,545,-1,545,546,531,-1,480,228,477,-1,227,483,471,-1,471,236,227,-1,486,241,465,-1,486,472,241,-1,256,547,548,-1,256,549,547,-1,11,16,9,-1,550,490,551,-1,490,443,551,-1,552,553,432,-1,553,554,432,-1,555,268,556,-1,556,216,555,-1,556,206,216,-1,269,427,557,-1,558,436,266,-1,217,416,279,-1,559,281,560,-1,511,429,422,-1,202,294,383,-1,202,506,294,-1,561,562,563,-1,561,169,562,-1,564,167,565,-1,564,566,167,-1,182,567,568,-1,567,218,568,-1,306,569,570,-1,309,571,374,-1,309,572,571,-1,573,574,575,-1,576,577,312,-1,576,578,577,-1,316,372,579,-1,324,360,325,-1,325,377,324,-1,417,419,267,-1,267,328,417,-1,328,580,417,-1,267,359,328,-1,276,581,355,-1,400,582,412,-1,583,318,339,-1,339,368,583,-1,323,584,347,-1,323,364,584,-1,322,349,341,-1,341,361,322,-1,343,335,332,-1,335,350,332,-1,585,327,362,-1,362,345,585,-1,362,342,345,-1,168,184,186,-1,186,166,168,-1,547,113,548,-1,113,110,548,-1,111,566,112,-1,566,564,112,-1,167,169,565,-1,169,561,565,-1,343,331,344,-1,332,331,343,-1,346,342,340,-1,342,346,345,-1,362,341,342,-1,362,361,341,-1,340,18,586,-1,18,340,19,-1,587,347,584,-1,587,348,347,-1,368,337,366,-1,368,339,337,-1,18,338,588,-1,18,20,338,-1,336,589,333,-1,336,586,589,-1,350,334,351,-1,350,335,334,-1,353,320,352,-1,321,320,353,-1,331,357,354,-1,357,331,330,-1,355,590,356,-1,581,590,355,-1,327,580,328,-1,585,580,327,-1,329,362,327,-1,363,362,329,-1,326,23,25,-1,326,358,23,-1,326,360,363,-1,360,326,325,-1,377,28,324,-1,377,26,28,-1,29,32,27,-1,29,30,32,-1,591,364,365,-1,591,584,364,-1,321,413,319,-1,412,413,321,-1,592,591,593,-1,592,594,591,-1,595,369,596,-1,595,367,369,-1,597,598,599,-1,597,600,598,-1,36,318,583,-1,35,318,36,-1,40,601,371,-1,41,601,40,-1,39,579,41,-1,39,316,579,-1,42,45,39,-1,42,43,45,-1,373,44,292,-1,44,373,46,-1,602,37,34,-1,602,315,37,-1,311,603,314,-1,311,604,603,-1,312,597,576,-1,597,312,314,-1,378,313,381,-1,378,311,313,-1,576,605,578,-1,605,576,606,-1,607,575,574,-1,607,608,575,-1,573,609,574,-1,609,573,610,-1,611,193,195,-1,193,611,612,-1,50,571,51,-1,571,50,374,-1,376,29,26,-1,376,310,29,-1,376,308,307,-1,308,376,22,-1,308,569,306,-1,613,569,308,-1,53,614,437,-1,53,55,614,-1,615,616,617,-1,615,618,616,-1,619,620,621,-1,622,620,619,-1,623,624,625,-1,624,623,626,-1,182,624,180,-1,182,568,624,-1,627,305,625,-1,303,305,627,-1,628,57,59,-1,302,57,628,-1,305,629,630,-1,629,305,304,-1,631,632,622,-1,632,631,633,-1,634,571,572,-1,635,571,634,-1,65,533,63,-1,533,65,635,-1,60,563,61,-1,563,60,561,-1,636,565,637,-1,636,564,565,-1,638,301,302,-1,638,639,301,-1,640,380,379,-1,640,641,380,-1,642,640,643,-1,642,644,640,-1,645,389,641,-1,386,389,645,-1,646,647,648,-1,647,646,649,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlclavcle_Geo_5_283_coordIndex_3()
		{
			int[] value = {647,650,651,-1,652,650,647,-1,385,653,382,-1,385,648,653,-1,383,296,384,-1,294,296,383,-1,654,390,655,-1,391,390,654,-1,387,656,388,-1,657,656,387,-1,300,658,298,-1,659,658,300,-1,660,44,47,-1,291,44,660,-1,661,398,662,-1,399,398,661,-1,69,663,392,-1,70,663,69,-1,67,393,68,-1,393,67,295,-1,395,284,283,-1,284,395,394,-1,409,664,665,-1,409,411,664,-1,397,288,290,-1,288,397,396,-1,405,292,293,-1,405,407,292,-1,402,582,400,-1,666,582,402,-1,667,668,669,-1,670,668,667,-1,404,280,282,-1,280,404,406,-1,287,671,672,-1,671,287,289,-1,408,673,674,-1,673,408,410,-1,286,675,676,-1,675,286,285,-1,677,422,421,-1,422,677,678,-1,679,680,681,-1,680,679,682,-1,560,423,424,-1,423,560,683,-1,282,559,670,-1,559,282,281,-1,668,684,666,-1,684,668,685,-1,582,414,412,-1,414,582,686,-1,413,72,278,-1,72,413,73,-1,590,416,415,-1,416,590,279,-1,416,76,78,-1,217,76,416,-1,79,71,74,-1,76,71,79,-1,687,688,689,-1,690,688,687,-1,420,433,418,-1,434,433,420,-1,82,429,80,-1,429,82,422,-1,691,83,692,-1,83,691,81,-1,87,693,89,-1,693,87,425,-1,557,85,269,-1,85,557,86,-1,274,428,427,-1,274,272,428,-1,510,429,511,-1,510,430,429,-1,199,93,270,-1,199,90,93,-1,83,271,694,-1,83,84,271,-1,693,695,696,-1,693,692,695,-1,88,697,698,-1,88,89,697,-1,206,699,209,-1,206,556,699,-1,269,555,700,-1,555,269,268,-1,701,702,690,-1,702,701,703,-1,688,431,434,-1,431,688,704,-1,433,554,558,-1,554,433,432,-1,97,705,96,-1,97,437,705,-1,436,24,266,-1,24,436,21,-1,181,567,182,-1,181,706,567,-1,707,7,708,-1,439,7,707,-1,709,439,710,-1,709,438,439,-1,443,711,551,-1,443,440,711,-1,492,443,490,-1,492,441,443,-1,102,440,442,-1,102,264,440,-1,450,265,448,-1,450,263,265,-1,12,712,713,-1,12,714,712,-1,715,103,14,-1,456,103,715,-1,716,447,717,-1,716,445,447,-1,446,718,444,-1,719,718,446,-1,720,494,721,-1,495,494,720,-1,722,451,723,-1,722,449,451,-1,724,725,726,-1,727,725,724,-1,104,728,105,-1,104,261,728,-1,104,457,260,-1,103,457,104,-1,262,259,261,-1,257,259,262,-1,454,729,452,-1,730,729,454,-1,250,731,727,-1,250,248,731,-1,725,732,730,-1,732,725,733,-1,729,107,257,-1,107,729,108,-1,259,734,735,-1,734,259,258,-1,736,112,737,-1,736,110,112,-1,109,548,106,-1,109,256,548,-1,117,163,114,-1,163,117,255,-1,221,116,115,-1,221,738,116,-1,739,547,549,-1,740,547,739,-1,741,111,113,-1,742,111,741,-1,743,167,566,-1,168,167,743,-1,252,222,254,-1,220,222,252,-1,251,744,745,-1,744,251,253,-1,247,460,248,-1,247,461,460,-1,746,250,747,-1,746,249,250,-1,246,748,244,-1,246,749,748,-1,245,121,120,-1,462,121,245,-1,463,242,464,-1,243,242,463,-1,494,100,243,-1,494,101,100,-1,242,123,468,-1,123,242,124,-1,127,465,128,-1,127,486,465,-1,750,237,745,-1,238,237,750,-1,750,474,473,-1,474,750,751,-1,240,123,125,-1,240,467,123,-1,240,472,469,-1,472,240,241,-1,471,239,236,-1,239,471,470,-1,239,752,237,-1,753,752,239,-1,233,474,234,-1,233,475,474,-1,754,235,234,-1,754,755,235,-1,756,476,757,-1,756,477,476,-1,755,758,757,-1,758,755,759,-1,232,480,230,-1,479,480,232,-1,228,136,135,-1,228,480,136,-1,131,481,229,-1,133,481,131,-1,485,760,753,-1,485,484,760,-1,488,127,129,-1,488,484,127,-1,489,492,491,-1,492,489,487,-1,115,164,222,-1,114,164,115,-1,761,762,763,-1,764,762,761,-1,765,766,767,-1,765,768,766,-1,769,770,771,-1,772,770,769,-1,773,184,774,-1,187,184,773,-1,775,776,777,-1,776,775,710,-1,553,778,779,-1,552,778,553,-1,139,95,94,-1,138,95,139,-1,778,213,212,-1,213,778,780,-1,781,496,498,-1,781,782,496,-1,781,207,783,-1,208,207,781,-1,213,784,210,-1,213,782,784,-1,785,211,786,-1,785,212,211,-1,545,137,140,-1,173,137,545,-1,500,542,501,-1,787,542,500,-1,511,143,142,-1,511,502,143,-1,145,788,789,-1,145,147,788,-1,542,541,544,-1,542,540,541,-1,790,791,792,-1,790,793,791,-1,200,150,538,-1,200,148,150,-1,794,203,540,-1,204,203,794,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlclavcle_Geo_5_283_coordIndex_4()
		{
			int[] value = {202,504,506,-1,202,200,504,-1,507,790,508,-1,795,790,507,-1,796,789,793,-1,797,789,796,-1,90,145,91,-1,90,146,145,-1,798,799,800,-1,799,798,652,-1,801,642,802,-1,642,801,803,-1,804,197,196,-1,197,804,643,-1,198,805,196,-1,198,806,805,-1,805,807,808,-1,807,805,809,-1,810,811,812,-1,811,810,813,-1,512,193,514,-1,512,194,193,-1,49,176,513,-1,52,176,49,-1,814,531,546,-1,529,531,814,-1,815,816,817,-1,818,816,815,-1,819,816,820,-1,819,821,816,-1,822,518,808,-1,515,518,822,-1,190,823,824,-1,823,190,189,-1,174,48,519,-1,174,52,48,-1,185,825,186,-1,826,825,185,-1,827,828,829,-1,830,828,827,-1,831,181,183,-1,831,830,181,-1,828,832,826,-1,832,828,833,-1,152,825,153,-1,152,834,825,-1,178,157,156,-1,178,537,157,-1,536,520,523,-1,520,536,835,-1,522,535,523,-1,615,535,522,-1,160,535,161,-1,160,525,535,-1,177,155,524,-1,177,156,155,-1,178,527,526,-1,527,178,179,-1,528,170,526,-1,172,170,528,-1,531,159,173,-1,159,531,162,-1,172,836,171,-1,837,836,172,-1,563,838,839,-1,563,562,838,-1,836,840,839,-1,836,841,840,-1,586,346,340,-1,586,336,346,-1,344,354,842,-1,331,354,344,-1,366,348,587,-1,366,337,348,-1,317,588,338,-1,317,370,588,-1,333,371,601,-1,371,333,589,-1,277,352,320,-1,277,330,352,-1,277,357,330,-1,415,356,590,-1,415,843,356,-1,363,358,326,-1,358,363,329,-1,613,22,21,-1,613,308,22,-1,594,596,369,-1,592,596,594,-1,298,315,602,-1,298,658,315,-1,806,381,313,-1,806,198,381,-1,605,608,607,-1,608,605,606,-1,610,195,609,-1,611,195,610,-1,310,307,844,-1,376,307,310,-1,617,55,56,-1,617,616,55,-1,845,622,619,-1,845,631,622,-1,625,630,623,-1,625,305,630,-1,0,303,627,-1,0,2,303,-1,532,633,846,-1,532,632,633,-1,637,639,636,-1,301,639,637,-1,297,641,389,-1,641,297,380,-1,847,386,645,-1,847,848,386,-1,648,849,646,-1,648,385,849,-1,509,382,653,-1,509,201,382,-1,384,391,654,-1,296,391,384,-1,657,655,390,-1,657,387,655,-1,662,291,660,-1,662,398,291,-1,283,665,395,-1,283,409,665,-1,396,411,288,-1,411,396,664,-1,669,666,402,-1,669,668,666,-1,672,406,287,-1,672,280,406,-1,410,676,673,-1,286,676,410,-1,421,682,677,-1,421,680,682,-1,681,683,679,-1,681,423,683,-1,685,426,684,-1,850,426,685,-1,273,690,687,-1,273,701,690,-1,430,199,270,-1,510,199,430,-1,698,515,822,-1,515,698,697,-1,209,851,852,-1,851,209,699,-1,704,853,431,-1,499,853,704,-1,710,707,776,-1,710,439,707,-1,440,854,711,-1,440,264,854,-1,102,466,100,-1,102,223,466,-1,102,442,223,-1,713,263,450,-1,713,712,263,-1,714,8,10,-1,12,8,714,-1,719,244,748,-1,244,719,446,-1,723,717,447,-1,723,451,717,-1,721,243,463,-1,494,243,721,-1,747,727,724,-1,747,250,727,-1,257,452,729,-1,452,257,262,-1,733,255,732,-1,163,255,733,-1,763,738,221,-1,763,762,738,-1,774,168,743,-1,774,184,168,-1,164,254,222,-1,164,459,254,-1,251,237,752,-1,251,745,237,-1,746,855,249,-1,746,231,855,-1,473,238,750,-1,473,225,238,-1,753,470,485,-1,753,239,470,-1,235,757,476,-1,755,757,235,-1,761,491,764,-1,491,761,489,-1,856,769,857,-1,856,772,769,-1,780,782,213,-1,496,782,780,-1,210,818,815,-1,818,210,784,-1,858,786,211,-1,858,859,786,-1,792,508,790,-1,860,508,792,-1,797,861,862,-1,861,797,796,-1,802,188,801,-1,802,517,188,-1,812,809,810,-1,812,807,809,-1,863,194,512,-1,863,864,194,-1,513,529,814,-1,176,529,513,-1,834,186,825,-1,834,166,186,-1,835,183,520,-1,835,831,183,-1,528,837,172,-1,534,837,528,-1,837,841,836,-1,841,837,846,-1,615,161,535,-1,615,617,161,-1,835,158,865,-1,158,835,536,-1,826,153,825,-1,826,832,153,-1,821,574,609,-1,607,821,819,-1,607,574,821,-1,851,808,807,-1,851,822,808,-1,818,820,816,-1,818,866,820,-1,863,546,859,-1,814,546,863,-1,643,802,642,-1,802,643,804,-1,861,652,798,-1,861,650,652,-1,793,795,796,-1,790,795,793,-1,539,150,860,-1,539,538,150,-1,788,141,543,-1,141,788,147,-1,552,780,778,-1,552,853,780,-1,867,868,857,-1,868,867,550,-1,772,774,770,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlclavcle_Geo_5_283_coordIndex_5()
		{
			int[] value = {772,773,774,-1,764,766,762,-1,764,767,766,-1,753,869,752,-1,753,760,869,-1,759,754,870,-1,754,759,755,-1,751,745,744,-1,750,745,751,-1,740,113,547,-1,740,741,113,-1,737,564,636,-1,737,112,564,-1,727,733,725,-1,727,731,733,-1,871,723,872,-1,871,722,723,-1,719,726,718,-1,719,724,726,-1,717,721,716,-1,717,720,721,-1,12,715,14,-1,12,713,715,-1,4,9,5,-1,4,10,9,-1,551,98,873,-1,98,551,711,-1,708,706,707,-1,567,706,708,-1,558,96,705,-1,558,554,96,-1,690,704,688,-1,690,702,704,-1,696,89,693,-1,696,697,89,-1,86,850,874,-1,86,557,850,-1,681,81,691,-1,81,681,680,-1,74,689,79,-1,74,687,689,-1,279,581,278,-1,279,590,581,-1,666,686,582,-1,666,684,686,-1,682,674,673,-1,682,679,674,-1,875,669,876,-1,669,875,667,-1,663,665,664,-1,70,665,663,-1,657,662,656,-1,662,657,661,-1,849,655,848,-1,849,654,655,-1,648,651,653,-1,648,647,651,-1,641,644,645,-1,641,640,644,-1,635,51,571,-1,51,635,65,-1,572,570,634,-1,570,572,844,-1,568,625,624,-1,625,568,627,-1,621,618,619,-1,616,618,621,-1,611,31,612,-1,611,877,31,-1,608,596,575,-1,608,595,596,-1,583,600,36,-1,583,598,600,-1,584,594,587,-1,584,591,594,-1,588,586,18,-1,588,589,586,-1,585,843,580,-1,585,842,843,-1,878,41,579,-1,878,601,41,-1,34,604,602,-1,34,603,604,-1,576,599,606,-1,576,597,599,-1,593,573,592,-1,573,593,610,-1,55,613,614,-1,569,613,55,-1,626,845,879,-1,845,626,623,-1,3,59,2,-1,3,628,59,-1,630,633,631,-1,630,629,633,-1,622,880,620,-1,622,632,880,-1,561,637,565,-1,561,60,637,-1,649,847,881,-1,847,649,646,-1,659,47,658,-1,659,660,47,-1,678,676,675,-1,678,677,676,-1,672,683,560,-1,671,683,672,-1,685,670,559,-1,670,685,668,-1,694,692,83,-1,694,695,692,-1,556,698,699,-1,88,698,556,-1,700,703,701,-1,700,555,703,-1,854,714,99,-1,854,712,714,-1,8,15,11,-1,8,13,15,-1,105,882,62,-1,105,728,882,-1,108,730,732,-1,108,729,730,-1,639,735,734,-1,639,638,735,-1,110,106,548,-1,110,736,106,-1,738,549,116,-1,738,739,549,-1,566,742,743,-1,111,742,566,-1,749,747,748,-1,746,747,749,-1,757,855,756,-1,757,758,855,-1,132,118,883,-1,132,134,118,-1,884,763,885,-1,884,761,763,-1,769,768,765,-1,768,769,771,-1,710,856,709,-1,775,856,710,-1,94,779,139,-1,94,553,779,-1,782,783,784,-1,781,783,782,-1,786,140,785,-1,786,545,140,-1,792,544,541,-1,791,544,792,-1,540,787,794,-1,542,787,540,-1,91,789,797,-1,789,91,145,-1,800,803,801,-1,800,799,803,-1,806,809,805,-1,806,577,809,-1,813,578,605,-1,810,578,813,-1,817,858,815,-1,864,858,817,-1,886,812,811,-1,886,852,812,-1,92,824,823,-1,824,92,862,-1,829,776,827,-1,829,777,776,-1,830,833,828,-1,830,831,833,-1,537,887,157,-1,151,887,537,-1,838,834,152,-1,838,562,834,-1,61,839,840,-1,563,839,61,-1,171,839,838,-1,836,839,171,-1,887,833,865,-1,887,832,833,-1,826,829,828,-1,829,826,185,-1,519,179,174,-1,527,179,519,-1,817,821,192,-1,817,816,821,-1,820,813,819,-1,820,811,813,-1,196,518,804,-1,196,808,518,-1,196,805,808,-1,800,824,798,-1,800,190,824,-1,793,788,791,-1,793,789,788,-1,783,886,866,-1,207,886,783,-1,498,208,781,-1,214,208,498,-1,779,212,785,-1,778,212,779,-1,775,187,773,-1,775,777,187,-1,867,767,493,-1,867,765,767,-1,484,884,760,-1,484,488,884,-1,230,477,756,-1,477,230,480,-1,229,226,475,-1,229,481,226,-1,475,478,229,-1,475,233,478,-1,467,469,482,-1,240,469,467,-1,751,234,474,-1,754,234,751,-1,468,464,242,-1,468,883,464,-1,479,749,246,-1,479,232,749,-1,247,759,461,-1,247,758,759,-1,869,220,252,-1,869,885,220,-1,870,253,458,-1,870,744,253,-1,771,742,741,-1,771,770,742,-1,766,740,739,-1,766,768,740,-1,737,258,736,-1,737,734,258,-1,248,165,731,-1,248,460,165,-1,260,871,455,-1,457,871,260,-1,261,735,728,-1,261,259,735,-1,730,726,725,-1,730,454,726,-1,453,444,718,-1,444,453,872,-1,445,462,245,-1,716,462,445,-1,449,456,715,-1,449,722,456,-1,448,495,720,-1,495,448,265,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlclavcle_Geo_5_283_coordIndex_6()
		{
			int[] value = {487,441,492,-1,487,224,441,-1,868,438,709,-1,868,873,438,-1,830,706,181,-1,830,827,706,-1,7,219,708,-1,7,5,219,-1,703,497,702,-1,215,497,703,-1,696,191,516,-1,191,696,695,-1,694,823,189,-1,823,694,271,-1,700,427,269,-1,700,274,427,-1,692,425,691,-1,692,693,425,-1,558,418,433,-1,266,418,558,-1,689,434,420,-1,688,434,689,-1,686,272,414,-1,428,272,686,-1,424,559,560,-1,424,874,559,-1,678,511,422,-1,678,502,511,-1,285,500,675,-1,787,500,285,-1,674,289,408,-1,674,671,289,-1,404,670,667,-1,404,282,670,-1,290,293,397,-1,290,405,293,-1,394,794,284,-1,204,794,394,-1,295,205,393,-1,503,205,295,-1,392,399,661,-1,392,663,399,-1,388,659,300,-1,656,659,388,-1,795,651,650,-1,795,507,651,-1,652,649,799,-1,652,647,649,-1,803,644,642,-1,803,881,644,-1,379,643,640,-1,197,643,379,-1,635,880,533,-1,880,635,634,-1,841,304,840,-1,841,629,304,-1,882,302,628,-1,882,638,302,-1,180,626,521,-1,180,624,626,-1,522,618,615,-1,522,879,618,-1,435,437,614,-1,435,705,437,-1,621,570,569,-1,621,620,570,-1,514,612,375,-1,514,193,612,-1,604,378,299,-1,311,378,604,-1,373,407,875,-1,292,407,373,-1,876,579,372,-1,876,401,579,-1,314,600,597,-1,314,603,600,-1,599,367,595,-1,599,598,367,-1,278,319,413,-1,319,278,275,-1,593,365,877,-1,593,591,365,-1,412,353,400,-1,412,321,353,-1,878,351,334,-1,878,403,351,-1,534,846,837,-1,534,532,846,-1,562,166,834,-1,169,166,562,-1,171,152,154,-1,838,152,171,-1,137,54,138,-1,54,137,56,-1,530,176,175,-1,530,529,176,-1,528,63,534,-1,63,528,66,-1,177,174,179,-1,175,174,177,-1,530,160,162,-1,530,524,160,-1,159,617,56,-1,159,161,617,-1,155,536,525,-1,155,158,536,-1,151,170,154,-1,170,151,537,-1,157,865,158,-1,865,157,887,-1,151,832,887,-1,151,153,832,-1,865,831,835,-1,865,833,831,-1,180,520,183,-1,521,520,180,-1,777,185,187,-1,777,829,185,-1,64,527,519,-1,66,527,64,-1,517,191,188,-1,191,517,516,-1,852,807,812,-1,851,807,852,-1,866,811,820,-1,886,811,866,-1,864,859,858,-1,864,863,859,-1,512,814,863,-1,814,512,513,-1,192,864,817,-1,864,192,194,-1,609,192,821,-1,609,195,192,-1,819,605,607,-1,819,813,605,-1,810,577,578,-1,810,809,577,-1,804,517,802,-1,518,517,804,-1,801,190,800,-1,188,190,801,-1,862,798,824,-1,862,861,798,-1,510,144,199,-1,510,142,144,-1,92,797,862,-1,92,91,797,-1,650,796,795,-1,650,861,796,-1,201,149,148,-1,509,149,201,-1,503,203,205,-1,503,505,203,-1,149,860,150,-1,149,508,860,-1,504,539,505,-1,504,538,539,-1,541,860,792,-1,539,860,541,-1,144,147,146,-1,144,141,147,-1,543,791,788,-1,544,791,543,-1,143,543,141,-1,543,143,501,-1,207,852,886,-1,852,207,209,-1,859,545,786,-1,859,546,545,-1,211,815,858,-1,815,211,210,-1,866,784,783,-1,866,818,784,-1,214,206,208,-1,206,214,216,-1,215,498,497,-1,215,214,498,-1,496,853,499,-1,496,780,853,-1,139,785,140,-1,785,139,779,-1,493,550,867,-1,493,490,550,-1,857,709,856,-1,857,868,709,-1,856,773,772,-1,856,775,773,-1,765,857,769,-1,867,857,765,-1,764,493,767,-1,491,493,764,-1,885,221,220,-1,885,763,221,-1,884,489,761,-1,884,488,489,-1,487,126,224,-1,487,129,126,-1,760,885,869,-1,884,885,760,-1,227,481,483,-1,481,227,226,-1,134,131,135,-1,134,132,131,-1,119,134,136,-1,118,134,119,-1,231,756,855,-1,231,230,756,-1,228,478,477,-1,228,229,478,-1,233,476,478,-1,476,233,235,-1,226,473,475,-1,226,225,473,-1,227,238,225,-1,227,236,238,-1,482,471,483,-1,482,469,471,-1,485,472,486,-1,485,470,472,-1,130,482,133,-1,482,130,467,-1,883,130,132,-1,883,468,130,-1,754,744,870,-1,754,751,744,-1,465,125,122,-1,241,125,465,-1,466,126,128,-1,223,126,466,-1,100,122,124,-1,466,122,100,-1,121,883,118,-1,883,121,464,-1,246,119,479,-1,119,246,120,-1,232,746,749,-1,232,231,746,-1,249,758,247,-1,855,758,249,-1,461,870,458,-1,759,870,461,-1,459,165,460,-1,164,165,459,-1,253,459,458,-1,459,253,254,-1,752,252,251,-1,752,869,252,-1,770,743,742,-1,770,774,743,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlclavcle_Geo_5_283_coordIndex_7()
		{
			int[] value = {768,741,740,-1,768,771,741,-1,762,739,738,-1,762,766,739,-1,116,256,117,-1,116,549,256,-1,734,636,639,-1,737,636,734,-1,107,736,258,-1,106,736,107,-1,732,109,108,-1,255,109,732,-1,731,163,733,-1,165,163,731,-1,457,722,871,-1,457,456,722,-1,455,872,453,-1,871,872,455,-1,262,455,452,-1,455,262,260,-1,728,638,882,-1,735,638,728,-1,718,454,453,-1,454,718,726,-1,748,724,719,-1,748,747,724,-1,716,463,462,-1,463,716,721,-1,451,720,717,-1,451,448,720,-1,245,446,445,-1,245,244,446,-1,872,447,444,-1,872,723,447,-1,715,450,449,-1,450,715,713,-1,62,13,105,-1,62,15,13,-1,5,16,219,-1,16,5,9,-1,10,99,714,-1,10,4,99,-1,263,854,264,-1,712,854,263,-1,265,101,495,-1,101,265,102,-1,224,442,441,-1,224,223,442,-1,711,99,98,-1,854,99,711,-1,550,873,868,-1,550,551,873,-1,873,6,438,-1,873,98,6,-1,218,708,219,-1,218,567,708,-1,827,707,706,-1,827,776,707,-1,54,97,95,-1,54,53,97,-1,436,705,435,-1,436,558,705,-1,94,554,553,-1,94,96,554,-1,552,431,853,-1,552,432,431,-1,499,702,497,-1,499,704,702,-1,703,216,215,-1,216,703,555,-1,85,556,268,-1,85,88,556,-1,699,822,851,-1,822,699,698,-1,697,516,515,-1,516,697,696,-1,695,189,191,-1,189,695,694,-1,271,92,823,-1,92,271,93,-1,84,430,270,-1,84,80,430,-1,274,701,273,-1,700,701,274,-1,557,426,850,-1,427,426,557,-1,874,87,86,-1,874,424,87,-1,423,691,425,-1,423,681,691,-1,680,82,81,-1,680,421,82,-1,419,266,267,-1,266,419,418,-1,79,420,77,-1,420,79,689,-1,75,687,74,-1,75,273,687,-1,419,78,77,-1,419,417,78,-1,276,278,581,-1,276,275,278,-1,217,72,71,-1,217,279,72,-1,414,75,73,-1,272,75,414,-1,684,428,686,-1,426,428,684,-1,559,850,685,-1,874,850,559,-1,280,560,281,-1,280,672,560,-1,671,679,683,-1,671,674,679,-1,673,677,682,-1,673,676,677,-1,675,502,678,-1,500,502,675,-1,285,794,787,-1,794,285,284,-1,409,286,410,-1,283,286,409,-1,408,288,411,-1,408,289,288,-1,405,287,406,-1,290,287,405,-1,407,667,875,-1,407,404,667,-1,876,402,401,-1,876,669,402,-1,398,293,291,-1,293,398,397,-1,399,664,396,-1,399,663,664,-1,395,70,68,-1,665,70,395,-1,393,204,394,-1,205,204,393,-1,294,503,295,-1,506,503,294,-1,296,69,391,-1,296,67,69,-1,390,661,657,-1,390,392,661,-1,656,660,659,-1,656,662,660,-1,389,300,297,-1,300,389,388,-1,848,387,386,-1,387,848,655,-1,385,654,849,-1,654,385,384,-1,202,382,201,-1,202,383,382,-1,653,507,509,-1,507,653,651,-1,848,646,849,-1,848,847,646,-1,799,881,803,-1,799,649,881,-1,881,645,644,-1,881,847,645,-1,380,299,378,-1,297,299,380,-1,197,381,198,-1,197,379,381,-1,301,60,57,-1,301,637,60,-1,48,65,64,-1,48,51,65,-1,632,533,880,-1,532,533,632,-1,620,634,570,-1,620,880,634,-1,629,846,633,-1,841,846,629,-1,840,58,61,-1,840,304,58,-1,58,2,59,-1,58,303,2,-1,62,628,3,-1,62,882,628,-1,627,218,0,-1,218,627,568,-1,623,631,845,-1,630,631,623,-1,879,521,626,-1,522,521,879,-1,879,619,618,-1,879,845,619,-1,616,569,55,-1,616,621,569,-1,21,614,613,-1,21,435,614,-1,306,844,307,-1,570,844,306,-1,844,309,310,-1,844,572,309,-1,375,49,514,-1,49,375,50,-1,33,309,374,-1,30,309,33,-1,375,31,33,-1,375,612,31,-1,611,593,877,-1,611,610,593,-1,575,592,573,-1,592,575,596,-1,606,595,608,-1,595,606,599,-1,577,313,312,-1,577,806,313,-1,299,602,604,-1,299,298,602,-1,658,43,315,-1,658,47,43,-1,875,372,373,-1,875,876,372,-1,372,45,46,-1,372,316,45,-1,403,579,401,-1,403,878,579,-1,37,38,35,-1,37,42,38,-1,317,40,370,-1,317,38,40,-1,603,36,600,-1,603,34,36,-1,598,368,367,-1,598,583,368,-1,369,587,594,-1,369,366,587,-1,417,843,415,-1,417,580,843,-1,275,320,319,-1,275,277,320,-1,877,32,31,-1,877,365,32,-1,28,364,323,-1,27,364,28,-1,360,322,361,-1,324,322,360,-1,377,25,22,-1,377,325,25,-1,24,359,267,-1,24,23,359,-1,359,329,328,-1,359,358,329,-1,842,356,843,-1,842,354,356,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlclavcle_Geo_5_283_coordIndex_8()
		{
			int[] value = {357,276,355,-1,277,276,357,-1,330,350,352,-1,330,332,350,-1,403,353,351,-1,403,400,353,-1,334,601,878,-1,601,334,333,-1,589,370,371,-1,370,589,588,-1,318,338,339,-1,318,317,338,-1,337,17,348,-1,337,20,17,-1,347,322,323,-1,322,347,349,-1,17,341,349,-1,17,19,341,-1,343,336,335,-1,336,343,346,-1,345,842,585,-1,842,345,344,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlclavcle_Geo_5_283_normalIndex_1()
		{
			int[] value = {250,261,198,-1,261,245,198,-1,443,441,507,-1,441,561,507,-1,371,351,409,-1,371,305,351,-1,433,344,371,-1,433,444,344,-1,261,305,332,-1,261,307,305,-1,140,164,131,-1,140,176,164,-1,304,178,161,-1,161,454,304,-1,178,117,161,-1,101,67,75,-1,101,79,67,-1,55,73,59,-1,55,60,73,-1,218,251,210,-1,218,238,251,-1,319,308,378,-1,308,377,378,-1,319,263,308,-1,290,286,345,-1,286,382,345,-1,290,240,286,-1,169,385,99,-1,99,56,169,-1,169,620,385,-1,448,695,458,-1,695,805,458,-1,237,174,190,-1,237,225,174,-1,225,175,174,-1,261,332,327,-1,327,245,261,-1,85,135,64,-1,85,158,135,-1,841,793,677,-1,793,381,677,-1,744,799,657,-1,657,554,744,-1,657,512,554,-1,675,639,669,-1,675,544,639,-1,369,191,360,-1,369,222,191,-1,369,230,222,-1,431,359,296,-1,296,435,431,-1,296,316,435,-1,800,830,670,-1,670,603,800,-1,812,820,564,-1,820,609,564,-1,523,443,507,-1,523,488,443,-1,547,678,665,-1,532,577,424,-1,424,444,532,-1,424,344,444,-1,626,693,732,-1,732,658,626,-1,446,490,416,-1,446,428,490,-1,223,148,257,-1,257,447,223,-1,134,94,162,-1,162,217,134,-1,188,121,294,-1,188,104,121,-1,373,112,181,-1,373,219,112,-1,62,15,70,-1,62,18,15,-1,66,40,51,-1,825,822,815,-1,815,813,825,-1,865,803,839,-1,865,840,803,-1,860,847,873,-1,881,877,886,-1,770,625,720,-1,770,650,625,-1,809,788,785,-1,785,794,809,-1,836,824,828,-1,836,826,824,-1,497,197,223,-1,497,434,197,-1,649,509,595,-1,649,514,509,-1,650,627,419,-1,627,329,419,-1,823,836,825,-1,836,805,825,-1,653,718,687,-1,687,620,653,-1,788,755,731,-1,755,683,731,-1,654,711,614,-1,654,745,711,-1,586,699,676,-1,586,624,699,-1,485,417,535,-1,485,362,417,-1,592,313,574,-1,592,364,313,-1,527,557,503,-1,847,734,840,-1,847,800,734,-1,875,866,881,-1,875,857,866,-1,871,848,856,-1,594,632,704,-1,594,534,632,-1,740,779,769,-1,769,729,740,-1,696,682,679,-1,782,744,675,-1,250,401,420,-1,420,307,250,-1,307,261,250,-1,148,130,159,-1,148,118,130,-1,373,566,493,-1,49,38,39,-1,14,40,15,-1,15,6,14,-1,33,20,44,-1,31,29,28,-1,42,21,45,-1,42,37,21,-1,52,104,71,-1,339,547,294,-1,339,623,547,-1,264,370,162,-1,162,97,264,-1,72,466,89,-1,466,438,89,-1,22,57,47,-1,57,128,47,-1,658,656,447,-1,447,468,658,-1,746,693,619,-1,619,673,746,-1,577,691,644,-1,691,756,644,-1,665,630,633,-1,665,664,630,-1,483,454,470,-1,457,414,431,-1,391,603,361,-1,361,230,391,-1,484,481,512,-1,484,442,481,-1,686,708,713,-1,738,799,742,-1,398,403,459,-1,410,651,715,-1,715,476,410,-1,306,295,267,-1,306,331,295,-1,279,347,286,-1,279,336,347,-1,841,858,863,-1,841,843,858,-1,423,269,330,-1,423,326,269,-1,253,237,233,-1,185,173,202,-1,185,174,173,-1,160,168,323,-1,63,79,92,-1,63,55,79,-1,335,376,500,-1,335,228,376,-1,263,238,243,-1,243,290,263,-1,354,308,345,-1,280,231,251,-1,251,319,280,-1,692,681,660,-1,84,75,91,-1,84,87,75,-1,117,100,103,-1,115,180,110,-1,808,596,612,-1,341,604,418,-1,418,177,341,-1,192,235,176,-1,192,254,235,-1,120,95,131,-1,120,82,95,-1,187,172,102,-1,102,133,187,-1,140,109,147,-1,140,107,109,-1,765,661,726,-1,661,618,726,-1,668,748,584,-1,668,804,748,-1,138,265,161,-1,74,80,77,-1,77,78,74,-1,90,59,93,-1,90,67,59,-1,184,200,229,-1,184,171,200,-1,301,378,343,-1,384,382,400,-1,60,54,99,-1,99,125,60,-1,150,122,178,-1,150,101,122,-1,396,552,516,-1,396,464,552,-1,850,854,844,-1,844,837,850,-1,667,589,422,-1,422,531,667,-1,685,821,677,-1,677,430,685,-1,851,786,559,-1,559,793,851,-1,292,346,302,-1,302,277,292,-1,478,425,366,-1,478,543,425,-1,421,353,402,-1,421,372,353,-1,234,239,256,-1,234,216,239,-1,601,657,760,-1,601,508,657,-1,467,637,456,-1,637,669,456,-1,540,645,639,-1,639,486,540,-1,395,622,360,-1,246,296,297,-1,246,247,296,-1,352,407,388,-1,369,598,472,-1,593,583,460,-1,460,475,593,-1,365,304,375,-1,448,368,609,-1,561,568,507,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlclavcle_Geo_5_283_normalIndex_2()
		{
			int[] value = {561,617,568,-1,580,529,631,-1,580,513,529,-1,749,606,629,-1,749,716,606,-1,642,610,588,-1,642,647,610,-1,764,787,766,-1,764,773,787,-1,511,621,532,-1,114,275,429,-1,429,65,114,-1,397,515,291,-1,291,217,397,-1,188,181,83,-1,188,496,181,-1,62,121,46,-1,62,142,121,-1,10,41,4,-1,10,48,41,-1,34,27,32,-1,30,25,26,-1,61,51,35,-1,61,94,51,-1,12,23,17,-1,12,18,23,-1,81,43,112,-1,43,68,112,-1,219,340,149,-1,340,201,149,-1,415,259,379,-1,415,325,259,-1,694,747,678,-1,735,737,719,-1,735,762,737,-1,831,855,839,-1,839,778,831,-1,849,864,869,-1,849,852,864,-1,877,859,874,-1,877,862,859,-1,803,690,697,-1,590,385,628,-1,590,321,385,-1,355,314,436,-1,436,462,355,-1,169,135,453,-1,751,684,741,-1,741,789,751,-1,824,807,809,-1,809,818,824,-1,558,469,215,-1,469,158,215,-1,767,795,816,-1,795,826,816,-1,822,695,820,-1,108,85,86,-1,108,124,85,-1,795,755,807,-1,795,718,755,-1,814,818,798,-1,798,789,814,-1,731,627,753,-1,731,558,627,-1,864,875,887,-1,871,869,885,-1,885,867,871,-1,885,879,867,-1,861,872,855,-1,861,880,872,-1,816,823,810,-1,810,791,816,-1,35,14,25,-1,39,17,4,-1,4,42,39,-1,68,71,83,-1,68,48,71,-1,468,358,501,-1,468,320,358,-1,305,307,351,-1,471,415,524,-1,415,513,524,-1,781,806,583,-1,806,576,583,-1,519,457,479,-1,479,679,519,-1,479,594,679,-1,414,407,386,-1,404,375,483,-1,782,637,742,-1,383,403,311,-1,697,598,622,-1,857,858,854,-1,857,852,858,-1,266,450,224,-1,266,514,450,-1,356,509,303,-1,356,539,509,-1,614,581,452,-1,581,401,452,-1,160,272,136,-1,63,58,54,-1,63,76,58,-1,195,473,236,-1,350,550,376,-1,350,555,550,-1,354,384,394,-1,87,74,100,-1,100,122,87,-1,456,645,470,-1,470,180,456,-1,180,186,456,-1,470,265,180,-1,708,680,748,-1,478,413,601,-1,211,231,254,-1,254,229,211,-1,91,111,109,-1,91,90,111,-1,84,107,95,-1,95,80,84,-1,187,418,612,-1,418,765,612,-1,123,115,77,-1,77,102,123,-1,77,82,102,-1,595,586,676,-1,676,649,595,-1,358,428,501,-1,428,446,501,-1,490,539,416,-1,539,356,416,-1,509,514,303,-1,514,266,303,-1,187,596,172,-1,612,596,187,-1,133,82,120,-1,82,133,102,-1,77,95,82,-1,77,80,95,-1,120,164,165,-1,164,120,131,-1,146,109,111,-1,146,147,109,-1,229,192,184,-1,229,254,192,-1,164,235,220,-1,164,176,235,-1,177,226,341,-1,177,165,226,-1,765,604,661,-1,765,418,604,-1,618,681,726,-1,660,681,618,-1,596,804,668,-1,804,596,808,-1,748,613,584,-1,680,613,748,-1,115,186,180,-1,123,186,115,-1,110,77,115,-1,78,77,110,-1,103,161,117,-1,103,138,161,-1,103,74,78,-1,74,103,100,-1,122,75,87,-1,122,101,75,-1,79,59,67,-1,79,55,59,-1,116,90,93,-1,116,111,90,-1,660,760,692,-1,601,760,660,-1,144,116,126,-1,144,143,116,-1,183,171,167,-1,183,200,171,-1,209,194,193,-1,209,203,194,-1,210,231,211,-1,251,231,210,-1,378,451,343,-1,377,451,378,-1,308,394,377,-1,308,354,394,-1,263,345,308,-1,263,290,345,-1,400,286,347,-1,286,400,382,-1,221,238,218,-1,221,243,238,-1,335,213,228,-1,335,241,213,-1,376,209,350,-1,209,376,228,-1,396,500,464,-1,396,335,500,-1,350,541,555,-1,541,350,310,-1,520,236,473,-1,520,284,236,-1,195,389,473,-1,389,195,166,-1,141,313,364,-1,313,141,129,-1,99,58,56,-1,58,99,54,-1,150,79,101,-1,150,92,79,-1,150,323,168,-1,323,150,178,-1,323,272,160,-1,328,272,323,-1,448,348,368,-1,448,458,348,-1,796,615,817,-1,796,578,615,-1,276,154,278,-1,157,154,276,-1,287,461,288,-1,461,287,506,-1,614,461,654,-1,614,452,461,-1,274,202,288,-1,185,202,274,-1,242,237,190,-1,233,237,242,-1,202,155,179,-1,155,202,173,-1,163,132,157,-1,132,163,139,-1,96,58,76,-1,69,58,96,-1,64,86,85,-1,86,64,69,-1,225,224,175,-1,224,225,266,-1,322,303,255,-1,322,356,303,-1,309,253,233,-1,309,318,253,-1,616,516,552,-1,616,602,516,-1,573,616,565,-1,573,663,616,-1,702,531,602,-1,667,531,702,-1,827,819,834,-1,819,827,792,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlclavcle_Geo_5_283_normalIndex_3()
		{
			int[] value = {819,777,835,-1,662,777,819,-1,837,846,850,-1,837,834,846,-1,854,843,844,-1,858,843,854,-1,833,685,780,-1,821,685,833,-1,589,317,422,-1,455,317,589,-1,326,244,269,-1,273,244,326,-1,248,286,240,-1,279,286,248,-1,338,302,285,-1,277,302,338,-1,677,298,430,-1,381,298,677,-1,841,851,793,-1,851,841,863,-1,559,651,410,-1,651,559,786,-1,239,212,281,-1,239,216,212,-1,346,295,331,-1,295,346,292,-1,353,347,336,-1,353,372,347,-1,366,413,478,-1,363,413,366,-1,406,387,390,-1,408,387,406,-1,421,398,459,-1,398,421,402,-1,306,262,300,-1,262,306,267,-1,234,282,232,-1,282,234,256,-1,476,724,499,-1,724,476,715,-1,489,622,395,-1,622,489,706,-1,214,206,204,-1,206,214,252,-1,311,246,297,-1,246,311,258,-1,459,383,408,-1,383,459,403,-1,387,342,363,-1,342,387,374,-1,413,508,601,-1,508,413,392,-1,760,799,738,-1,799,760,657,-1,613,637,467,-1,637,613,742,-1,637,675,669,-1,782,675,637,-1,544,744,554,-1,675,744,544,-1,487,491,495,-1,482,491,487,-1,486,460,540,-1,475,460,486,-1,360,598,369,-1,598,360,622,-1,196,222,227,-1,222,196,191,-1,296,268,316,-1,268,296,247,-1,386,431,414,-1,431,386,359,-1,442,388,407,-1,442,484,388,-1,690,598,697,-1,690,472,598,-1,734,603,391,-1,734,800,603,-1,222,361,299,-1,222,230,361,-1,268,289,283,-1,268,227,289,-1,435,315,412,-1,435,316,315,-1,594,477,534,-1,594,479,477,-1,414,519,439,-1,519,414,457,-1,463,579,482,-1,579,463,517,-1,491,593,475,-1,593,491,605,-1,460,576,404,-1,576,460,583,-1,609,380,564,-1,609,368,380,-1,375,454,483,-1,454,375,304,-1,711,581,614,-1,711,671,581,-1,640,561,571,-1,617,561,640,-1,553,617,599,-1,553,568,617,-1,513,542,524,-1,513,580,542,-1,379,513,415,-1,379,529,513,-1,665,580,631,-1,665,633,580,-1,588,664,642,-1,588,630,664,-1,433,545,528,-1,433,474,545,-1,492,532,444,-1,511,532,492,-1,582,716,638,-1,582,606,716,-1,629,759,749,-1,709,759,629,-1,666,694,585,-1,747,694,666,-1,659,647,703,-1,659,610,647,-1,710,712,752,-1,652,712,710,-1,577,465,424,-1,577,644,465,-1,577,621,691,-1,532,621,577,-1,756,673,644,-1,746,673,756,-1,766,758,764,-1,761,758,766,-1,438,569,652,-1,438,466,569,-1,712,727,761,-1,727,712,635,-1,758,693,746,-1,693,758,732,-1,673,449,440,-1,449,673,619,-1,525,416,427,-1,525,446,416,-1,658,501,626,-1,658,468,501,-1,447,497,223,-1,497,447,656,-1,159,257,148,-1,159,199,257,-1,260,358,320,-1,333,358,260,-1,437,490,428,-1,522,490,437,-1,607,509,539,-1,595,509,607,-1,57,118,128,-1,130,118,57,-1,22,3,8,-1,3,22,47,-1,72,429,466,-1,72,65,429,-1,88,438,334,-1,88,89,438,-1,97,293,264,-1,97,105,293,-1,370,217,162,-1,397,217,370,-1,515,339,291,-1,623,339,515,-1,694,547,623,-1,694,678,547,-1,339,121,142,-1,121,339,294,-1,112,83,181,-1,112,68,83,-1,16,21,8,-1,45,21,16,-1,16,27,34,-1,27,16,11,-1,52,121,104,-1,52,46,121,-1,52,48,10,-1,48,52,71,-1,4,37,42,-1,37,4,41,-1,37,24,21,-1,36,24,37,-1,31,27,29,-1,31,32,27,-1,9,28,29,-1,9,7,28,-1,19,30,13,-1,19,25,30,-1,7,2,13,-1,2,7,1,-1,44,35,33,-1,61,35,44,-1,14,51,40,-1,14,35,51,-1,15,12,6,-1,18,12,15,-1,43,53,36,-1,43,81,53,-1,149,112,219,-1,149,81,112,-1,201,379,259,-1,379,201,340,-1,148,197,118,-1,223,197,148,-1,152,182,156,-1,205,182,152,-1,357,249,271,-1,357,337,249,-1,445,521,426,-1,505,521,445,-1,546,586,562,-1,624,586,546,-1,560,655,646,-1,655,560,599,-1,806,771,811,-1,781,771,806,-1,815,820,812,-1,822,820,815,-1,771,729,769,-1,729,771,750,-1,689,735,719,-1,689,723,735,-1,689,632,674,-1,704,632,689,-1,729,714,740,-1,729,723,714,-1,802,779,790,-1,802,769,779,-1,810,825,813,-1,823,825,810,-1,831,861,855,-1,832,861,831,-1,697,839,803,-1,697,778,839,-1,860,882,868,-1,860,873,882,-1,861,879,880,-1,861,867,879,-1,876,884,883,-1,876,870,884,-1,875,886,887,-1,875,881,886,-1,838,871,867,-1,848,871,838,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlclavcle_Geo_5_283_normalIndex_4()
		{
			int[] value = {857,864,852,-1,857,875,864,-1,859,876,874,-1,853,876,859,-1,845,868,870,-1,842,868,845,-1,800,860,830,-1,800,847,860,-1,549,643,575,-1,643,549,662,-1,572,573,551,-1,573,572,636,-1,526,557,527,-1,557,526,565,-1,503,570,527,-1,503,538,570,-1,570,536,504,-1,536,570,567,-1,587,600,563,-1,600,587,597,-1,590,313,321,-1,590,574,313,-1,385,687,628,-1,620,687,385,-1,728,816,791,-1,767,816,728,-1,739,672,700,-1,707,672,739,-1,611,672,641,-1,611,608,672,-1,432,462,504,-1,355,462,432,-1,535,502,537,-1,502,535,417,-1,653,169,453,-1,653,620,169,-1,699,698,676,-1,725,698,699,-1,705,730,701,-1,733,730,705,-1,763,711,745,-1,763,733,711,-1,730,754,725,-1,754,730,757,-1,625,698,720,-1,625,634,698,-1,731,785,788,-1,731,753,785,-1,798,751,789,-1,751,798,772,-1,741,814,789,-1,796,814,741,-1,824,814,828,-1,824,818,814,-1,755,809,807,-1,755,788,809,-1,731,469,558,-1,469,731,683,-1,215,627,558,-1,329,627,215,-1,816,836,823,-1,836,816,826,-1,329,189,419,-1,151,189,329,-1,224,411,208,-1,224,450,411,-1,189,170,208,-1,189,153,170,-1,165,133,120,-1,165,177,133,-1,172,668,207,-1,596,668,172,-1,184,147,146,-1,184,192,147,-1,280,220,235,-1,280,301,220,-1,341,343,451,-1,343,341,226,-1,713,726,681,-1,713,808,726,-1,713,804,808,-1,467,584,613,-1,467,312,584,-1,78,138,103,-1,138,78,110,-1,328,178,304,-1,328,323,178,-1,143,167,171,-1,144,167,143,-1,269,243,221,-1,269,244,243,-1,538,464,500,-1,538,503,464,-1,541,284,520,-1,284,541,310,-1,166,364,389,-1,141,364,166,-1,92,168,106,-1,150,168,92,-1,817,458,805,-1,817,615,458,-1,270,157,276,-1,270,163,157,-1,288,179,287,-1,288,202,179,-1,250,185,274,-1,250,198,185,-1,108,139,137,-1,108,132,139,-1,255,318,322,-1,253,318,255,-1,423,602,531,-1,602,423,516,-1,797,667,702,-1,797,801,667,-1,834,829,827,-1,834,837,829,-1,862,850,846,-1,862,866,850,-1,844,821,833,-1,843,821,844,-1,455,780,685,-1,455,589,780,-1,285,279,248,-1,285,302,279,-1,410,281,559,-1,410,239,281,-1,292,216,295,-1,216,292,212,-1,390,363,366,-1,390,387,363,-1,300,402,306,-1,300,398,402,-1,256,499,282,-1,476,499,256,-1,395,252,489,-1,395,206,252,-1,204,258,214,-1,204,246,258,-1,374,352,342,-1,367,352,374,-1,481,482,487,-1,481,463,482,-1,472,734,391,-1,690,734,472,-1,412,355,432,-1,355,412,315,-1,534,498,530,-1,498,534,477,-1,605,776,593,-1,762,776,605,-1,599,640,655,-1,599,617,640,-1,580,556,542,-1,580,633,556,-1,665,496,547,-1,665,566,496,-1,665,631,566,-1,528,630,588,-1,528,545,630,-1,474,371,409,-1,433,371,474,-1,709,264,293,-1,264,709,629,-1,703,638,716,-1,703,647,638,-1,585,623,515,-1,694,623,585,-1,334,652,710,-1,334,438,652,-1,746,764,758,-1,764,746,756,-1,635,656,727,-1,497,656,635,-1,156,199,159,-1,156,182,199,-1,562,595,607,-1,562,586,595,-1,197,128,118,-1,197,275,128,-1,22,21,24,-1,22,8,21,-1,88,5,89,-1,88,20,5,-1,34,45,16,-1,34,49,45,-1,36,41,43,-1,36,37,41,-1,28,13,30,-1,7,13,28,-1,152,259,205,-1,259,152,201,-1,510,445,480,-1,510,505,445,-1,750,723,729,-1,735,723,750,-1,740,707,739,-1,707,740,714,-1,768,790,779,-1,768,783,790,-1,883,874,876,-1,878,874,883,-1,842,717,688,-1,717,842,845,-1,551,485,572,-1,551,436,485,-1,563,567,587,-1,563,536,567,-1,721,574,590,-1,721,722,574,-1,628,767,728,-1,687,767,628,-1,634,676,698,-1,634,649,676,-1,772,745,751,-1,772,763,745,-1,215,151,329,-1,124,151,215,-1,151,153,189,-1,153,151,137,-1,796,828,814,-1,796,817,828,-1,772,794,775,-1,794,772,798,-1,725,720,698,-1,725,754,720,-1,608,473,389,-1,520,608,611,-1,520,473,608,-1,498,504,536,-1,498,432,504,-1,707,641,672,-1,707,648,641,-1,721,791,783,-1,728,791,721,-1,565,551,573,-1,551,565,526,-1,717,662,549,-1,717,777,662,-1,870,853,845,-1,876,853,870,-1,885,886,878,-1,885,887,886,-1,882,865,872,-1,865,882,873,-1,781,750,771,-1,781,776,750,-1,399,518,480,-1,518,399,471,-1,505,562,521,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlclavcle_Geo_5_283_normalIndex_5()
		{
			int[] value = {505,546,562,-1,205,249,182,-1,205,271,249,-1,36,50,24,-1,36,53,50,-1,1,9,0,-1,9,1,7,-1,11,8,3,-1,16,8,11,-1,333,428,358,-1,333,437,428,-1,427,356,322,-1,427,416,356,-1,652,635,712,-1,652,569,635,-1,736,703,774,-1,736,659,703,-1,709,752,759,-1,709,710,752,-1,638,585,582,-1,638,666,585,-1,433,492,444,-1,433,528,492,-1,443,351,441,-1,443,409,351,-1,524,523,548,-1,523,524,542,-1,571,671,640,-1,581,671,571,-1,404,564,380,-1,404,576,564,-1,482,605,491,-1,482,579,605,-1,283,316,268,-1,283,315,316,-1,359,367,349,-1,359,386,367,-1,204,191,196,-1,191,204,206,-1,554,495,544,-1,554,487,495,-1,742,680,738,-1,742,613,680,-1,363,392,413,-1,363,342,392,-1,252,232,282,-1,252,214,232,-1,405,390,393,-1,390,405,406,-1,298,281,212,-1,381,281,298,-1,455,285,317,-1,285,455,338,-1,829,780,801,-1,829,833,780,-1,834,835,846,-1,834,819,835,-1,602,663,702,-1,602,616,663,-1,69,56,58,-1,56,69,64,-1,76,136,96,-1,136,76,106,-1,452,288,461,-1,288,452,274,-1,278,578,276,-1,615,578,278,-1,141,73,129,-1,141,98,73,-1,284,167,236,-1,284,183,167,-1,211,203,210,-1,211,194,203,-1,111,143,146,-1,111,116,143,-1,220,165,164,-1,220,226,165,-1,123,312,186,-1,123,207,312,-1,494,377,394,-1,494,451,377,-1,218,241,221,-1,218,213,241,-1,350,193,310,-1,350,209,193,-1,126,195,144,-1,195,126,166,-1,458,328,348,-1,272,328,458,-1,506,270,533,-1,270,506,287,-1,245,190,198,-1,245,242,190,-1,179,139,163,-1,179,155,139,-1,157,113,154,-1,157,132,113,-1,266,255,303,-1,266,225,255,-1,792,797,743,-1,797,792,827,-1,273,240,244,-1,273,248,240,-1,706,499,724,-1,706,489,499,-1,300,258,311,-1,262,258,300,-1,374,408,383,-1,408,374,387,-1,299,227,222,-1,299,289,227,-1,479,412,477,-1,435,412,479,-1,439,517,463,-1,439,519,517,-1,556,474,488,-1,556,545,474,-1,371,332,305,-1,371,344,332,-1,424,324,327,-1,424,465,324,-1,732,761,727,-1,732,758,761,-1,318,440,449,-1,318,309,440,-1,446,626,501,-1,446,525,626,-1,199,320,257,-1,199,260,320,-1,539,522,607,-1,490,522,539,-1,105,334,293,-1,88,334,105,-1,13,5,19,-1,13,2,5,-1,70,134,145,-1,70,66,134,-1,119,156,127,-1,119,152,156,-1,445,337,357,-1,337,445,426,-1,599,510,553,-1,560,510,599,-1,812,811,815,-1,812,806,811,-1,723,674,714,-1,689,674,723,-1,790,813,802,-1,790,810,813,-1,883,880,879,-1,884,880,883,-1,867,832,838,-1,861,832,867,-1,830,868,842,-1,868,830,860,-1,575,636,572,-1,575,643,636,-1,538,567,570,-1,538,550,567,-1,597,555,541,-1,587,555,597,-1,700,768,739,-1,722,768,700,-1,591,563,600,-1,591,530,563,-1,670,537,502,-1,537,670,688,-1,701,655,705,-1,701,646,655,-1,733,757,730,-1,733,763,757,-1,753,784,785,-1,770,784,753,-1,411,634,625,-1,411,450,634,-1,175,208,170,-1,224,208,175,-1,419,208,411,-1,189,208,419,-1,784,757,775,-1,784,754,757,-1,725,701,730,-1,701,725,699,-1,453,683,653,-1,469,683,453,-1,700,608,592,-1,700,672,608,-1,641,597,611,-1,641,600,597,-1,527,462,526,-1,527,504,462,-1,527,570,504,-1,575,537,549,-1,575,535,537,-1,870,882,884,-1,870,868,882,-1,674,591,648,-1,632,591,674,-1,719,704,689,-1,696,704,719,-1,811,769,802,-1,771,769,811,-1,560,624,546,-1,560,646,624,-1,399,271,325,-1,399,357,271,-1,81,119,53,-1,81,149,119,-1,33,25,19,-1,25,33,35,-1,6,38,32,-1,6,12,38,-1,32,26,6,-1,32,31,26,-1,46,10,23,-1,52,10,46,-1,11,29,27,-1,9,29,11,-1,142,291,339,-1,142,145,291,-1,61,105,97,-1,61,44,105,-1,72,1,65,-1,72,2,1,-1,50,130,57,-1,50,127,130,-1,0,47,114,-1,0,3,47,-1,426,522,437,-1,426,521,522,-1,249,333,260,-1,249,337,333,-1,427,619,525,-1,427,449,619,-1,466,434,569,-1,466,429,434,-1,691,736,773,-1,621,736,691,-1,644,440,465,-1,644,673,440,-1,761,752,712,-1,761,766,752,-1,787,749,759,-1,749,787,774,-1,606,397,370,-1,582,397,606,-1,610,511,492,-1,610,659,511,-1,642,747,666,-1,747,642,664,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlclavcle_Geo_5_283_normalIndex_6()
		{
			int[] value = {340,529,379,-1,340,493,529,-1,518,568,553,-1,518,548,568,-1,733,671,711,-1,733,705,671,-1,561,420,571,-1,561,441,420,-1,517,737,579,-1,682,737,517,-1,283,362,314,-1,362,283,289,-1,299,502,417,-1,502,299,361,-1,439,407,414,-1,439,442,407,-1,227,247,196,-1,227,268,247,-1,404,540,460,-1,483,540,404,-1,495,475,486,-1,491,475,495,-1,392,484,508,-1,388,484,392,-1,297,383,311,-1,297,349,383,-1,706,697,622,-1,706,778,697,-1,715,831,724,-1,832,831,715,-1,232,267,234,-1,232,262,267,-1,421,408,406,-1,421,459,408,-1,331,336,346,-1,331,353,336,-1,786,838,651,-1,848,838,786,-1,863,856,851,-1,849,856,863,-1,430,277,338,-1,430,298,277,-1,422,273,326,-1,317,273,422,-1,853,835,777,-1,853,859,835,-1,662,792,643,-1,662,819,792,-1,636,663,573,-1,636,743,663,-1,552,565,616,-1,557,565,552,-1,69,113,86,-1,113,69,96,-1,153,173,170,-1,153,155,173,-1,324,233,242,-1,324,309,233,-1,654,506,684,-1,654,461,506,-1,741,578,796,-1,741,533,578,-1,365,368,348,-1,365,380,368,-1,278,136,272,-1,278,154,136,-1,321,129,125,-1,321,313,129,-1,241,396,330,-1,335,396,241,-1,400,372,405,-1,347,372,400,-1,393,394,384,-1,393,425,394,-1,228,203,209,-1,228,213,203,-1,193,200,183,-1,193,194,200,-1,738,692,760,-1,692,738,686,-1,126,93,98,-1,126,116,93,-1,601,618,478,-1,601,660,618,-1,494,661,604,-1,494,543,661,-1,124,137,151,-1,124,108,137,-1,450,649,634,-1,514,649,450,-1,419,625,650,-1,411,625,419,-1,825,695,822,-1,695,825,805,-1,795,687,718,-1,795,767,687,-1,215,85,124,-1,85,215,158,-1,755,653,683,-1,718,653,755,-1,795,824,826,-1,795,807,824,-1,836,817,805,-1,836,828,817,-1,809,798,818,-1,809,794,798,-1,770,627,650,-1,627,770,753,-1,785,775,794,-1,775,785,784,-1,770,754,784,-1,770,720,754,-1,775,763,772,-1,775,757,763,-1,654,751,745,-1,684,751,654,-1,646,699,624,-1,646,701,699,-1,135,469,453,-1,158,469,135,-1,436,362,485,-1,362,436,314,-1,530,536,563,-1,498,536,530,-1,648,600,641,-1,591,600,648,-1,722,783,768,-1,722,721,783,-1,590,728,721,-1,728,590,628,-1,592,722,700,-1,722,592,574,-1,389,592,608,-1,389,364,592,-1,611,541,520,-1,611,597,541,-1,587,550,555,-1,587,567,550,-1,526,436,551,-1,462,436,526,-1,572,535,575,-1,485,535,572,-1,688,549,537,-1,688,717,549,-1,690,840,734,-1,690,803,840,-1,670,842,688,-1,670,830,842,-1,777,845,853,-1,777,717,845,-1,866,877,881,-1,862,877,866,-1,849,871,856,-1,849,869,871,-1,877,878,886,-1,877,874,878,-1,864,885,869,-1,864,887,885,-1,879,878,883,-1,885,878,879,-1,840,873,847,-1,840,865,873,-1,872,884,882,-1,880,884,872,-1,839,872,865,-1,872,839,855,-1,632,530,591,-1,530,632,534,-1,783,810,790,-1,783,791,810,-1,779,739,768,-1,739,779,740,-1,648,714,674,-1,648,707,714,-1,696,594,704,-1,594,696,679,-1,682,719,737,-1,682,696,719,-1,735,776,762,-1,735,750,776,-1,815,802,813,-1,802,815,811,-1,325,471,399,-1,325,415,471,-1,480,553,510,-1,480,518,553,-1,510,546,505,-1,510,560,546,-1,357,480,445,-1,399,480,357,-1,205,325,271,-1,259,325,205,-1,127,159,130,-1,127,156,159,-1,119,201,152,-1,119,149,201,-1,340,373,493,-1,340,219,373,-1,53,127,50,-1,119,127,53,-1,39,12,17,-1,12,39,38,-1,66,15,40,-1,66,70,15,-1,94,66,51,-1,134,66,94,-1,20,19,5,-1,20,33,19,-1,14,26,25,-1,14,6,26,-1,31,30,26,-1,30,31,28,-1,38,34,32,-1,38,49,34,-1,39,45,49,-1,39,42,45,-1,23,4,17,-1,23,10,4,-1,43,48,68,-1,43,41,48,-1,62,23,18,-1,23,62,46,-1,145,62,70,-1,145,142,62,-1,9,3,0,-1,9,11,3,-1,83,104,188,-1,71,104,83,-1,496,373,181,-1,566,373,496,-1,547,188,294,-1,496,188,547,-1,217,145,134,-1,145,217,291,-1,97,94,61,-1,94,97,162,-1,44,88,105,-1,44,20,88,-1,89,2,72,-1,5,2,89,-1,65,0,114,-1,1,0,65,-1,275,434,429,-1,197,434,275,-1,47,275,114,-1,275,47,128,-1,24,57,22,-1,24,50,57,-1,521,607,522,-1,521,562,607,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlclavcle_Geo_5_283_normalIndex_7()
		{
			int[] value = {337,437,333,-1,337,426,437,-1,182,260,199,-1,182,249,260,-1,257,468,447,-1,257,320,468,-1,449,322,318,-1,427,322,449,-1,693,525,619,-1,626,525,693,-1,727,658,732,-1,656,658,727,-1,569,497,635,-1,434,497,569,-1,621,659,736,-1,621,511,659,-1,773,774,787,-1,736,774,773,-1,756,773,764,-1,773,756,691,-1,465,309,324,-1,440,309,465,-1,759,766,787,-1,766,759,752,-1,293,710,709,-1,293,334,710,-1,582,515,397,-1,515,582,585,-1,647,666,638,-1,647,642,666,-1,370,629,606,-1,370,264,629,-1,774,716,749,-1,774,703,716,-1,492,588,610,-1,588,492,528,-1,327,344,424,-1,327,332,344,-1,441,307,420,-1,307,441,351,-1,409,488,474,-1,409,443,488,-1,630,556,633,-1,545,556,630,-1,664,678,747,-1,678,664,665,-1,493,631,529,-1,493,566,631,-1,542,488,523,-1,556,488,542,-1,471,548,518,-1,471,524,548,-1,548,507,568,-1,548,523,507,-1,401,571,420,-1,401,581,571,-1,705,640,671,-1,705,655,640,-1,695,609,820,-1,695,448,609,-1,375,380,365,-1,375,404,380,-1,812,576,806,-1,812,564,576,-1,781,593,776,-1,781,583,593,-1,762,579,737,-1,762,605,579,-1,517,679,682,-1,679,517,519,-1,431,479,457,-1,431,435,479,-1,477,432,498,-1,432,477,412,-1,315,314,355,-1,314,315,283,-1,289,417,362,-1,417,289,299,-1,361,670,502,-1,670,361,603,-1,230,472,391,-1,230,369,472,-1,442,463,481,-1,439,463,442,-1,386,352,367,-1,407,352,386,-1,349,296,359,-1,349,297,296,-1,246,196,247,-1,246,204,196,-1,206,360,191,-1,206,395,360,-1,645,483,470,-1,483,645,540,-1,544,486,639,-1,486,544,495,-1,512,487,554,-1,512,481,487,-1,645,669,639,-1,645,456,669,-1,708,738,680,-1,708,686,738,-1,782,799,744,-1,782,742,799,-1,508,512,657,-1,484,512,508,-1,342,388,392,-1,352,388,342,-1,383,367,374,-1,349,367,383,-1,398,311,403,-1,398,300,311,-1,262,214,258,-1,262,232,214,-1,282,489,252,-1,282,499,489,-1,724,778,706,-1,831,778,724,-1,715,838,832,-1,838,715,651,-1,239,476,256,-1,410,476,239,-1,234,295,216,-1,234,267,295,-1,353,306,402,-1,331,306,353,-1,372,406,405,-1,372,421,406,-1,393,366,425,-1,393,390,366,-1,302,336,279,-1,336,302,346,-1,277,212,292,-1,277,298,212,-1,559,381,793,-1,281,381,559,-1,851,848,786,-1,856,848,851,-1,858,849,863,-1,852,849,858,-1,843,677,821,-1,843,841,677,-1,685,338,455,-1,685,430,338,-1,317,248,273,-1,317,285,248,-1,531,326,423,-1,326,531,422,-1,801,589,667,-1,589,801,780,-1,837,833,829,-1,833,837,844,-1,857,850,866,-1,857,854,850,-1,846,859,862,-1,859,846,835,-1,801,827,829,-1,801,797,827,-1,643,743,636,-1,643,792,743,-1,743,702,663,-1,743,797,702,-1,516,330,396,-1,423,330,516,-1,557,464,503,-1,557,552,464,-1,253,225,237,-1,253,255,225,-1,169,64,135,-1,169,56,64,-1,132,86,113,-1,108,86,132,-1,154,96,136,-1,154,113,96,-1,155,137,139,-1,153,137,155,-1,170,174,175,-1,170,173,174,-1,174,198,190,-1,174,185,198,-1,327,242,245,-1,327,324,242,-1,274,401,250,-1,401,274,452,-1,287,163,270,-1,179,163,287,-1,533,684,506,-1,741,684,533,-1,533,276,578,-1,533,270,276,-1,615,272,458,-1,615,278,272,-1,304,348,328,-1,304,365,348,-1,160,106,168,-1,136,106,160,-1,106,63,92,-1,106,76,63,-1,125,385,321,-1,385,125,99,-1,60,63,54,-1,55,63,60,-1,125,73,60,-1,125,129,73,-1,141,126,98,-1,141,166,126,-1,236,144,195,-1,144,236,167,-1,310,183,284,-1,183,310,193,-1,550,500,376,-1,550,538,500,-1,330,221,241,-1,330,269,221,-1,244,290,243,-1,244,240,290,-1,405,384,400,-1,405,393,384,-1,384,345,382,-1,384,354,345,-1,543,394,425,-1,543,494,394,-1,238,319,251,-1,238,263,319,-1,280,378,301,-1,280,319,378,-1,213,210,203,-1,213,218,210,-1,194,229,200,-1,194,211,229,-1,171,146,143,-1,171,184,146,-1,456,312,467,-1,456,186,312,-1,686,681,692,-1,686,713,681,-1,98,59,73,-1,98,93,59,-1,75,90,91,-1,67,90,75,-1,74,84,80,-1,87,84,74,-1,122,117,178,-1,122,100,117,-1,454,265,470,-1,454,161,265,-1,265,110,180,-1,265,138,110,-1,207,584,312,-1,207,668,584,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlclavcle_Geo_5_283_normalIndex_8()
		{
			int[] value = {804,708,748,-1,713,708,804,-1,808,765,726,-1,808,612,765,-1,543,618,661,-1,543,478,618,-1,604,451,494,-1,451,604,341,-1,226,301,343,-1,301,226,220,-1,231,235,254,-1,231,280,235,-1,192,140,147,-1,192,176,140,-1,109,84,91,-1,84,109,107,-1,140,95,107,-1,140,131,95,-1,187,177,418,-1,177,187,133,-1,102,207,123,-1,207,102,172,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcoscart_Geo_5_289_coordIndex_1()
		{
			int[] value = {0,1,2,-1,1,3,2,-1,4,5,6,-1,7,5,8,-1,5,9,8,-1,10,9,5,-1,10,11,9,-1,12,13,14,-1,8,15,7,-1,15,16,7,-1,17,18,19,-1,18,20,19,-1,21,22,23,-1,22,24,23,-1,25,26,27,-1,25,28,26,-1,29,30,31,-1,32,33,34,-1,35,33,36,-1,35,37,33,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,51,53,52,-1,54,55,56,-1,57,58,59,-1,58,57,60,-1,60,61,58,-1,62,30,63,-1,64,65,66,-1,66,67,64,-1,64,67,68,-1,68,69,64,-1,68,70,13,-1,65,71,66,-1,65,72,71,-1,71,72,73,-1,14,74,75,-1,76,77,78,-1,46,75,74,-1,46,79,75,-1,80,81,82,-1,82,83,80,-1,84,82,85,-1,84,83,82,-1,86,85,87,-1,82,88,87,-1,87,85,82,-1,89,90,91,-1,90,92,91,-1,91,93,89,-1,93,94,89,-1,95,91,92,-1,96,97,98,-1,96,98,99,-1,97,100,101,-1,102,103,104,-1,105,106,103,-1,106,107,103,-1,108,105,109,-1,110,111,112,-1,113,114,115,-1,116,117,113,-1,118,119,120,-1,121,122,123,-1,124,125,126,-1,127,128,129,-1,129,130,127,-1,129,131,130,-1,121,132,133,-1,134,135,136,-1,137,138,134,-1,139,140,141,-1,139,137,140,-1,142,137,139,-1,142,138,137,-1,143,144,145,-1,146,147,148,-1,149,150,151,-1,149,152,150,-1,153,154,142,-1,154,138,142,-1,155,156,157,-1,157,158,155,-1,159,160,161,-1,160,162,161,-1,135,134,163,-1,134,164,163,-1,165,166,167,-1,168,169,170,-1,171,172,173,-1,173,174,171,-1,175,176,177,-1,178,179,180,-1,180,181,178,-1,182,183,184,-1,185,186,187,-1,188,189,190,-1,191,192,193,-1,194,195,196,-1,196,197,194,-1,195,194,198,-1,199,200,201,-1,202,203,204,-1,204,205,202,-1,206,190,203,-1,202,207,203,-1,208,209,210,-1,210,211,208,-1,212,213,210,-1,166,165,214,-1,215,216,217,-1,218,219,220,-1,221,222,223,-1,221,224,222,-1,223,225,226,-1,227,228,229,-1,230,231,232,-1,233,234,235,-1,233,236,234,-1,237,238,239,-1,240,241,242,-1,242,243,240,-1,244,245,246,-1,244,247,245,-1,60,248,249,-1,250,251,252,-1,253,252,251,-1,254,255,256,-1,255,257,256,-1,258,87,88,-1,30,259,260,-1,261,93,262,-1,92,90,263,-1,90,73,263,-1,51,264,53,-1,51,265,264,-1,77,266,267,-1,268,269,19,-1,19,20,268,-1,73,72,270,-1,271,272,83,-1,95,273,274,-1,275,97,276,-1,276,277,275,-1,278,279,280,-1,278,281,279,-1,282,98,283,-1,282,284,98,-1,285,286,287,-1,283,98,97,-1,108,288,289,-1,290,108,291,-1,290,292,108,-1,293,294,121,-1,5,295,10,-1,296,297,298,-1,296,299,297,-1,300,301,302,-1,300,303,301,-1,304,253,301,-1,305,306,307,-1,307,308,305,-1,309,145,124,-1,124,310,309,-1,311,312,247,-1,312,313,247,-1,158,133,132,-1,121,314,315,-1,316,156,317,-1,316,157,156,-1,318,319,320,-1,320,321,318,-1,161,162,150,-1,162,151,150,-1,322,323,119,-1,324,325,326,-1,324,327,325,-1,154,328,164,-1,329,330,331,-1,330,303,331,-1,332,333,334,-1,334,335,332,-1,336,337,295,-1,295,338,336,-1,339,340,341,-1,342,343,344,-1,345,346,347,-1,346,348,347,-1,349,350,351,-1,350,352,351,-1,353,354,355,-1,353,356,354,-1,357,358,359,-1,360,361,362,-1,361,363,362,-1,364,361,365,-1,365,327,364,-1,366,250,367,-1,368,360,362,-1,368,369,360,-1,313,131,370,-1,370,247,313,-1,231,230,237,-1,371,372,373,-1,374,375,376,-1,377,378,379,-1,378,380,379,-1,381,216,215,-1,381,382,216,-1,383,306,305,-1,308,384,381,-1,213,385,386,-1,387,199,388,-1,199,389,388,-1,390,391,206,-1,390,392,391,-1,213,393,211,-1,213,394,393,-1,56,59,58,-1,58,54,56,-1,395,396,397,-1,398,399,400,-1,398,401,399,-1,29,63,30,-1,402,403,187,-1,213,386,404,-1,205,405,202,-1,40,78,406,-1,407,408,79,-1,409,410,411,-1,69,412,64,-1,413,43,42,-1,414,415,416,-1,417,418,419,-1,417,412,418,-1,420,406,24,-1,406,23,24,-1,421,422,423,-1,421,424,422,-1,425,49,48,-1,401,49,426,-1,260,31,30,-1,37,427,34,-1,276,101,428,-1,429,430,431,-1,431,432,429,-1,433,434,175,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcoscart_Geo_5_289_coordIndex_2()
		{
			int[] value = {434,435,175,-1,436,170,169,-1,167,166,437,-1,438,190,189,-1,439,440,441,-1,440,442,441,-1,226,443,430,-1,226,225,443,-1,444,435,431,-1,218,220,445,-1,446,447,220,-1,220,448,446,-1,449,450,451,-1,451,452,449,-1,453,454,455,-1,454,456,455,-1,457,458,459,-1,176,435,444,-1,176,175,435,-1,460,461,462,-1,241,463,464,-1,463,197,464,-1,465,466,467,-1,468,469,296,-1,470,471,472,-1,471,473,472,-1,361,364,302,-1,364,300,302,-1,46,74,474,-1,474,44,46,-1,475,19,269,-1,476,249,248,-1,248,477,476,-1,164,478,163,-1,164,479,478,-1,164,480,479,-1,15,8,481,-1,482,8,9,-1,347,483,484,-1,347,348,483,-1,485,482,11,-1,482,9,11,-1,7,16,6,-1,86,486,84,-1,86,27,486,-1,259,88,260,-1,487,380,488,-1,488,375,487,-1,377,256,489,-1,489,378,377,-1,428,277,276,-1,428,490,277,-1,100,491,492,-1,493,255,494,-1,493,495,255,-1,496,497,498,-1,496,499,497,-1,500,501,502,-1,503,504,505,-1,503,506,504,-1,503,507,506,-1,508,509,510,-1,132,155,158,-1,511,160,159,-1,159,512,511,-1,114,513,514,-1,114,515,513,-1,237,516,231,-1,245,247,370,-1,311,517,518,-1,311,519,517,-1,146,520,147,-1,146,521,520,-1,110,522,116,-1,110,523,522,-1,114,117,524,-1,114,113,117,-1,525,526,527,-1,525,528,526,-1,529,405,530,-1,530,531,529,-1,392,532,533,-1,392,389,532,-1,451,359,447,-1,451,534,359,-1,535,536,537,-1,537,538,535,-1,359,358,445,-1,539,540,541,-1,541,542,539,-1,543,484,544,-1,543,545,484,-1,546,479,352,-1,546,478,479,-1,348,480,483,-1,348,351,480,-1,273,15,481,-1,273,28,15,-1,72,547,270,-1,72,65,547,-1,411,74,409,-1,411,474,74,-1,548,399,401,-1,73,17,263,-1,482,104,8,-1,481,106,273,-1,481,107,106,-1,549,550,274,-1,551,552,553,-1,553,554,551,-1,482,555,556,-1,557,290,291,-1,558,104,482,-1,559,560,561,-1,561,371,559,-1,552,1,320,-1,320,562,552,-1,119,563,322,-1,314,354,564,-1,314,355,354,-1,230,232,565,-1,566,567,568,-1,568,569,566,-1,570,571,572,-1,570,573,571,-1,574,575,565,-1,576,577,578,-1,578,579,576,-1,566,569,382,-1,382,580,566,-1,581,582,583,-1,581,584,582,-1,463,384,585,-1,463,586,384,-1,587,588,393,-1,393,394,587,-1,589,590,437,-1,437,591,589,-1,592,593,180,-1,593,583,180,-1,594,595,596,-1,594,597,595,-1,598,599,600,-1,598,601,599,-1,601,602,599,-1,601,603,602,-1,439,604,602,-1,439,605,604,-1,606,607,442,-1,442,440,606,-1,606,608,609,-1,606,610,608,-1,180,583,181,-1,583,582,181,-1,437,590,593,-1,593,592,437,-1,393,588,589,-1,589,591,393,-1,593,581,583,-1,593,611,581,-1,577,566,580,-1,580,578,577,-1,575,612,565,-1,613,614,573,-1,346,345,615,-1,615,616,346,-1,564,354,617,-1,553,552,562,-1,562,618,553,-1,555,619,563,-1,371,556,372,-1,371,561,556,-1,374,560,559,-1,374,620,560,-1,621,622,623,-1,620,624,557,-1,557,285,620,-1,554,553,485,-1,625,550,626,-1,274,550,627,-1,628,626,550,-1,550,549,628,-1,95,28,273,-1,95,26,28,-1,94,93,261,-1,629,630,261,-1,320,0,321,-1,320,1,0,-1,631,632,152,-1,632,153,152,-1,544,483,328,-1,544,484,483,-1,543,633,545,-1,633,344,545,-1,530,168,634,-1,530,405,168,-1,186,635,636,-1,198,637,636,-1,638,639,640,-1,638,641,639,-1,642,528,525,-1,642,235,528,-1,183,643,644,-1,644,645,183,-1,522,117,116,-1,646,245,370,-1,646,647,245,-1,140,112,513,-1,513,648,140,-1,649,160,511,-1,649,650,160,-1,508,157,316,-1,508,510,157,-1,651,652,653,-1,654,655,656,-1,366,657,658,-1,101,255,495,-1,101,257,255,-1,97,275,283,-1,99,492,491,-1,99,659,492,-1,378,660,661,-1,378,489,660,-1,662,256,377,-1,662,254,256,-1,663,621,664,-1,663,622,621,-1,280,30,665,-1,280,259,30,-1,48,47,50,-1,47,51,50,-1,666,667,668,-1,272,266,407,-1,407,264,272,-1,25,86,669,-1,25,27,86,-1,5,7,6,-1,670,554,11,-1,554,485,11,-1,671,672,673,-1,673,674,671,-1,675,163,478,-1,675,676,163,-1,677,421,423,-1,401,678,49,-1,194,197,585,-1,197,463,585,-1,360,365,361,-1,470,472,300,-1,300,364,470,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcoscart_Geo_5_289_coordIndex_3()
		{
			int[] value = {468,679,469,-1,468,2,679,-1,471,680,473,-1,471,681,680,-1,431,430,443,-1,446,452,447,-1,452,451,447,-1,177,448,682,-1,682,175,177,-1,683,224,221,-1,448,177,684,-1,684,446,448,-1,685,212,686,-1,685,687,212,-1,360,369,688,-1,688,365,360,-1,437,592,167,-1,689,167,690,-1,167,592,690,-1,432,431,435,-1,435,434,432,-1,691,226,430,-1,430,429,691,-1,606,692,607,-1,693,281,694,-1,281,695,694,-1,695,696,697,-1,696,698,697,-1,699,282,283,-1,700,272,264,-1,701,401,426,-1,701,548,401,-1,547,22,21,-1,39,38,12,-1,70,548,409,-1,548,701,409,-1,702,416,703,-1,39,78,40,-1,704,705,706,-1,212,707,213,-1,707,385,213,-1,708,709,402,-1,709,403,402,-1,585,307,710,-1,401,398,678,-1,711,696,665,-1,696,278,665,-1,208,393,591,-1,208,211,393,-1,712,200,713,-1,713,714,712,-1,715,716,717,-1,717,718,715,-1,709,387,403,-1,387,388,403,-1,719,390,206,-1,306,714,720,-1,306,717,714,-1,384,308,585,-1,308,307,585,-1,307,306,710,-1,306,720,710,-1,384,382,381,-1,384,580,382,-1,663,664,721,-1,664,722,721,-1,378,661,380,-1,661,488,380,-1,662,377,723,-1,377,379,723,-1,371,373,487,-1,487,559,371,-1,724,647,646,-1,646,725,724,-1,633,342,344,-1,503,131,507,-1,726,353,355,-1,355,294,726,-1,568,567,727,-1,567,728,727,-1,729,338,295,-1,5,729,295,-1,5,4,729,-1,339,341,337,-1,337,336,339,-1,730,731,732,-1,731,733,732,-1,330,301,303,-1,330,304,301,-1,483,480,328,-1,480,164,328,-1,112,140,110,-1,633,688,369,-1,633,543,688,-1,734,324,735,-1,324,326,735,-1,736,323,322,-1,737,319,132,-1,132,123,737,-1,319,318,132,-1,121,133,144,-1,144,293,121,-1,128,509,506,-1,129,507,131,-1,564,315,314,-1,564,118,315,-1,518,124,738,-1,518,310,124,-1,121,123,132,-1,136,135,739,-1,739,148,136,-1,146,145,309,-1,146,143,145,-1,635,740,636,-1,494,501,493,-1,494,502,501,-1,337,10,295,-1,337,670,10,-1,670,341,741,-1,670,337,341,-1,302,301,253,-1,347,484,545,-1,659,742,492,-1,284,99,98,-1,108,289,106,-1,557,286,285,-1,557,291,286,-1,628,106,289,-1,626,284,282,-1,626,288,284,-1,278,280,665,-1,743,275,744,-1,275,277,744,-1,745,746,747,-1,745,490,746,-1,95,274,627,-1,627,93,95,-1,748,749,750,-1,549,274,273,-1,272,700,80,-1,80,83,272,-1,398,73,751,-1,398,400,73,-1,266,271,267,-1,266,272,271,-1,752,753,265,-1,753,754,265,-1,90,751,73,-1,629,261,262,-1,259,280,279,-1,279,88,259,-1,88,279,755,-1,755,258,88,-1,258,747,669,-1,258,755,747,-1,648,513,756,-1,513,757,756,-1,758,759,760,-1,253,304,252,-1,367,252,304,-1,367,250,252,-1,57,397,248,-1,248,60,57,-1,575,574,761,-1,761,572,575,-1,239,238,762,-1,238,763,762,-1,522,764,117,-1,765,236,233,-1,765,521,236,-1,766,242,767,-1,768,769,770,-1,769,456,770,-1,771,772,773,-1,226,221,223,-1,443,604,605,-1,686,212,210,-1,213,211,210,-1,214,209,166,-1,209,208,166,-1,207,206,203,-1,436,204,774,-1,204,438,774,-1,170,774,173,-1,170,436,774,-1,637,775,708,-1,197,776,464,-1,197,196,776,-1,186,777,635,-1,186,185,777,-1,403,185,187,-1,403,719,185,-1,778,184,645,-1,184,183,645,-1,178,779,179,-1,650,156,780,-1,156,155,780,-1,133,124,145,-1,145,144,133,-1,138,154,164,-1,164,134,138,-1,152,153,150,-1,153,142,150,-1,143,739,676,-1,134,110,137,-1,110,140,137,-1,136,781,134,-1,781,110,134,-1,318,782,783,-1,155,132,318,-1,131,313,130,-1,738,124,126,-1,121,315,122,-1,119,323,120,-1,120,122,118,-1,122,315,118,-1,112,514,513,-1,114,514,115,-1,110,116,111,-1,106,105,108,-1,104,103,107,-1,276,97,101,-1,491,96,99,-1,100,96,491,-1,100,97,96,-1,93,91,95,-1,37,784,630,-1,37,35,784,-1,81,80,785,-1,785,786,81,-1,84,85,86,-1,83,84,271,-1,14,13,74,-1,76,408,77,-1,39,75,76,-1,76,78,39,-1,71,73,400,-1,68,13,69,-1,399,66,71,-1,71,400,399,-1,66,399,548,-1,548,67,66,-1,27,475,486,-1,668,787,666,-1,788,61,249,-1,61,60,249,-1,54,789,55,-1,789,698,55,-1,94,261,630,-1,787,790,666,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlcoscart_Geo_5_289_coordIndex_4()
		{
			int[] value = {791,45,677,-1,45,44,677,-1,792,678,398,-1,793,416,702,-1,704,415,414,-1,794,795,796,-1,786,785,31,-1,37,34,33,-1,753,785,754,-1,40,406,420,-1,670,11,10,-1,797,6,16,-1,619,485,553,-1,470,324,734,-1,734,471,470,-1,681,734,798,-1,734,681,471,-1,799,800,801,-1,799,802,800,-1,802,468,800,-1,802,803,468,-1,24,804,706,-1,804,24,22,-1,794,805,795,-1,794,806,805,-1,807,808,809,-1,807,43,808,-1,810,806,418,-1,806,810,805,-1,810,13,811,-1,810,69,13,-1,474,424,421,-1,474,411,424,-1,812,699,743,-1,813,699,812,-1,789,697,698,-1,789,814,697,-1,791,423,815,-1,677,423,791,-1,816,817,410,-1,818,817,816,-1,475,267,486,-1,475,269,267,-1,260,786,31,-1,260,81,786,-1,751,35,36,-1,751,784,35,-1,113,111,116,-1,115,111,113,-1,122,323,123,-1,122,120,323,-1,738,127,312,-1,126,127,738,-1,136,147,781,-1,147,136,148,-1,133,157,124,-1,133,158,157,-1,442,171,819,-1,607,171,442,-1,820,449,452,-1,449,820,174,-1,820,821,819,-1,684,821,820,-1,822,179,779,-1,179,822,690,-1,178,823,779,-1,178,824,823,-1,192,825,826,-1,825,192,191,-1,827,766,828,-1,766,827,829,-1,830,464,776,-1,464,830,767,-1,831,708,775,-1,831,709,708,-1,455,201,200,-1,455,832,201,-1,436,205,204,-1,169,205,436,-1,833,214,692,-1,833,209,214,-1,718,707,715,-1,707,718,385,-1,404,383,305,-1,386,383,404,-1,225,604,443,-1,225,834,604,-1,835,222,224,-1,600,222,835,-1,836,535,837,-1,535,836,539,-1,838,542,839,-1,838,536,542,-1,840,641,841,-1,639,641,840,-1,842,843,844,-1,842,845,843,-1,846,847,848,-1,357,847,846,-1,849,598,850,-1,849,851,598,-1,638,596,852,-1,638,594,596,-1,853,640,854,-1,640,853,855,-1,541,856,857,-1,541,540,856,-1,858,772,859,-1,772,858,773,-1,522,860,764,-1,522,523,860,-1,521,861,520,-1,861,521,765,-1,523,862,860,-1,862,523,863,-1,570,864,865,-1,866,864,570,-1,572,612,575,-1,571,612,572,-1,528,519,526,-1,519,528,517,-1,724,867,647,-1,867,724,868,-1,613,465,467,-1,613,573,465,-1,193,465,191,-1,466,465,193,-1,869,870,871,-1,869,872,870,-1,338,493,501,-1,338,729,493,-1,332,873,329,-1,874,873,332,-1,335,497,499,-1,497,335,875,-1,876,877,654,-1,876,878,877,-1,730,655,731,-1,651,655,730,-1,304,879,367,-1,330,879,304,-1,501,336,338,-1,880,336,501,-1,101,4,6,-1,4,101,495,-1,366,881,657,-1,881,366,882,-1,648,496,883,-1,648,756,496,-1,884,512,498,-1,884,511,512,-1,502,505,504,-1,494,505,502,-1,885,489,886,-1,489,885,660,-1,760,887,888,-1,887,760,759,-1,515,757,513,-1,515,889,757,-1,653,649,656,-1,653,317,649,-1,316,500,508,-1,316,890,500,-1,87,669,86,-1,258,669,87,-1,748,629,262,-1,427,629,748,-1,265,47,752,-1,47,265,51,-1,785,792,36,-1,753,792,785,-1,36,398,751,-1,792,398,36,-1,106,549,273,-1,628,549,106,-1,891,748,262,-1,748,891,749,-1,627,262,93,-1,891,262,627,-1,755,745,747,-1,693,745,755,-1,743,694,812,-1,744,694,743,-1,628,288,626,-1,628,289,288,-1,282,625,626,-1,625,282,892,-1,674,742,659,-1,742,674,673,-1,341,893,741,-1,341,340,893,-1,732,469,679,-1,732,733,469,-1,894,680,895,-1,894,334,680,-1,333,472,473,-1,333,331,472,-1,402,186,636,-1,186,402,187,-1,739,146,148,-1,739,143,146,-1,118,617,119,-1,118,564,617,-1,129,506,507,-1,128,506,129,-1,125,509,128,-1,125,510,509,-1,780,318,783,-1,780,155,318,-1,323,737,123,-1,323,736,737,-1,543,325,688,-1,543,544,325,-1,512,141,883,-1,512,159,141,-1,878,894,297,-1,878,875,894,-1,733,877,299,-1,731,877,733,-1,730,340,339,-1,730,732,340,-1,568,546,896,-1,568,727,546,-1,567,294,728,-1,567,726,294,-1,897,231,617,-1,897,232,231,-1,801,298,895,-1,801,800,298,-1,634,898,644,-1,898,634,168,-1,763,899,900,-1,763,238,899,-1,487,374,559,-1,374,487,375,-1,503,723,131,-1,503,662,723,-1,664,901,722,-1,664,902,901,-1,580,586,578,-1,384,586,580,-1,306,718,717,-1,383,718,306,-1,403,390,719,-1,403,388,390,-1,831,714,713,-1,831,720,714,-1,714,716,712,-1,717,716,714,-1,750,903,34,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlcoscart_Geo_5_289_coordIndex_5()
		{
			int[] value = {750,904,903,-1,55,696,711,-1,55,698,696,-1,62,665,30,-1,62,905,665,-1,710,831,775,-1,710,720,831,-1,906,38,40,-1,809,38,906,-1,416,807,414,-1,793,807,416,-1,796,42,907,-1,42,796,795,-1,811,805,810,-1,811,413,805,-1,701,410,409,-1,816,410,701,-1,418,908,419,-1,806,908,418,-1,706,909,704,-1,706,804,909,-1,910,911,912,-1,910,913,911,-1,914,416,415,-1,416,914,703,-1,915,42,41,-1,42,915,907,-1,908,912,909,-1,908,910,912,-1,706,420,24,-1,420,706,705,-1,64,417,65,-1,64,412,417,-1,22,65,417,-1,547,65,22,-1,74,70,409,-1,74,13,70,-1,410,424,411,-1,424,410,817,-1,49,916,426,-1,916,49,425,-1,678,753,752,-1,753,678,792,-1,917,53,918,-1,917,52,53,-1,754,264,265,-1,700,264,754,-1,745,277,490,-1,745,744,277,-1,797,25,746,-1,25,797,16,-1,278,695,281,-1,278,696,695,-1,56,711,919,-1,56,55,711,-1,814,892,813,-1,814,788,892,-1,405,169,168,-1,169,405,205,-1,833,606,609,-1,606,833,692,-1,226,920,221,-1,691,920,226,-1,219,921,682,-1,922,921,219,-1,923,218,924,-1,923,925,218,-1,609,686,833,-1,686,609,685,-1,687,707,212,-1,687,926,707,-1,716,927,928,-1,927,716,715,-1,453,200,712,-1,455,200,453,-1,821,444,441,-1,444,821,176,-1,684,452,446,-1,452,684,820,-1,358,846,683,-1,846,358,357,-1,929,538,930,-1,931,538,929,-1,537,533,532,-1,537,932,533,-1,188,933,189,-1,188,934,933,-1,769,929,832,-1,769,935,929,-1,228,771,773,-1,227,771,228,-1,936,772,771,-1,937,772,936,-1,462,458,460,-1,462,459,458,-1,456,938,770,-1,938,456,454,-1,939,940,941,-1,935,940,939,-1,242,829,864,-1,242,766,829,-1,681,895,680,-1,895,681,801,-1,679,3,893,-1,2,3,679,-1,29,942,63,-1,32,942,29,-1,61,814,789,-1,61,788,814,-1,45,918,46,-1,45,917,918,-1,646,237,239,-1,370,237,646,-1,143,675,943,-1,143,676,675,-1,58,789,54,-1,58,61,789,-1,292,674,659,-1,674,292,944,-1,670,551,554,-1,741,551,670,-1,267,84,486,-1,84,267,271,-1,266,408,407,-1,77,408,266,-1,791,917,45,-1,791,945,917,-1,946,790,945,-1,946,666,790,-1,668,50,787,-1,48,50,668,-1,695,812,694,-1,695,697,812,-1,947,664,621,-1,947,902,664,-1,948,901,949,-1,901,948,722,-1,372,379,373,-1,723,379,372,-1,887,661,660,-1,661,887,949,-1,758,948,759,-1,950,948,758,-1,888,673,760,-1,673,888,742,-1,813,282,699,-1,892,282,813,-1,257,100,886,-1,100,257,101,-1,367,889,366,-1,367,879,889,-1,874,757,873,-1,757,874,756,-1,884,654,656,-1,884,876,654,-1,656,651,653,-1,656,655,651,-1,890,652,880,-1,653,652,890,-1,182,882,951,-1,882,182,881,-1,146,236,521,-1,146,309,236,-1,951,183,182,-1,951,643,183,-1,524,644,643,-1,644,524,634,-1,764,530,117,-1,531,530,764,-1,777,860,862,-1,952,860,777,-1,861,740,635,-1,861,765,740,-1,235,953,233,-1,953,235,642,-1,954,192,869,-1,193,192,954,-1,869,826,872,-1,869,192,826,-1,872,827,955,-1,872,826,827,-1,956,527,526,-1,956,955,527,-1,525,776,642,-1,525,830,776,-1,740,196,195,-1,740,953,196,-1,585,775,194,-1,585,710,775,-1,195,636,740,-1,195,198,636,-1,185,952,777,-1,185,957,952,-1,168,822,898,-1,168,170,822,-1,774,189,449,-1,189,774,438,-1,832,930,201,-1,832,929,930,-1,958,959,960,-1,959,958,934,-1,933,961,450,-1,933,962,961,-1,939,837,931,-1,939,229,837,-1,932,840,960,-1,932,838,840,-1,842,958,841,-1,958,842,962,-1,847,961,844,-1,961,847,534,-1,640,839,854,-1,839,640,639,-1,849,845,852,-1,845,849,843,-1,835,848,850,-1,848,835,846,-1,0,963,321,-1,0,803,963,-1,631,798,632,-1,631,799,798,-1,154,326,328,-1,154,735,326,-1,327,688,325,-1,327,365,688,-1,149,631,152,-1,964,631,149,-1,321,782,318,-1,963,782,321,-1,965,668,667,-1,965,966,668,-1,95,263,26,-1,92,263,95,-1,891,550,476,-1,627,550,891,-1,477,750,749,-1,750,477,396,-1,625,476,550,-1,249,476,625,-1,944,671,674,-1,671,944,967,-1,287,109,102,-1,286,109,287,-1,560,285,287,-1,560,620,285,-1,624,290,557,-1,624,968,290,-1,969,967,944,-1,969,970,967,-1,621,968,947,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlcoscart_Geo_5_289_coordIndex_6()
		{
			int[] value = {621,623,968,-1,374,624,620,-1,374,376,624,-1,556,563,372,-1,556,555,563,-1,618,619,553,-1,563,619,618,-1,736,562,737,-1,618,562,736,-1,675,546,727,-1,546,675,478,-1,293,728,294,-1,943,728,293,-1,617,516,119,-1,617,231,516,-1,897,971,574,-1,897,356,971,-1,353,577,576,-1,353,726,577,-1,972,350,973,-1,972,896,350,-1,346,974,349,-1,974,346,616,-1,611,345,975,-1,615,345,611,-1,584,343,342,-1,584,581,343,-1,571,976,612,-1,976,571,977,-1,243,761,978,-1,243,866,761,-1,978,240,243,-1,978,579,240,-1,973,216,972,-1,216,973,587,-1,588,616,589,-1,588,974,616,-1,615,593,590,-1,615,611,593,-1,979,461,980,-1,462,461,979,-1,928,981,979,-1,981,928,982,-1,983,927,926,-1,984,927,983,-1,985,687,685,-1,986,687,985,-1,608,597,985,-1,608,595,597,-1,987,983,986,-1,987,988,983,-1,984,989,982,-1,984,990,989,-1,981,937,459,-1,981,991,937,-1,857,989,990,-1,856,989,857,-1,988,855,853,-1,988,987,855,-1,610,595,608,-1,992,595,610,-1,437,208,591,-1,208,437,166,-1,603,606,440,-1,610,606,603,-1,180,690,592,-1,690,180,179,-1,992,603,601,-1,992,610,603,-1,604,599,602,-1,599,604,834,-1,601,851,992,-1,601,598,851,-1,603,439,602,-1,603,440,439,-1,992,596,595,-1,851,596,992,-1,855,597,594,-1,987,597,855,-1,990,853,857,-1,990,988,853,-1,991,856,859,-1,991,989,856,-1,982,991,981,-1,982,989,991,-1,988,984,983,-1,988,990,984,-1,986,597,987,-1,985,597,986,-1,608,685,609,-1,985,685,608,-1,986,926,687,-1,983,926,986,-1,982,927,984,-1,982,928,927,-1,979,459,462,-1,459,979,981,-1,404,394,213,-1,394,404,217,-1,578,240,579,-1,240,578,586,-1,615,589,616,-1,589,615,590,-1,587,974,588,-1,973,974,587,-1,972,382,569,-1,382,972,216,-1,579,971,576,-1,978,971,579,-1,978,574,971,-1,761,574,978,-1,572,866,570,-1,572,761,866,-1,900,612,976,-1,900,899,612,-1,581,975,343,-1,975,581,611,-1,349,973,350,-1,973,349,974,-1,896,569,568,-1,569,896,972,-1,577,567,566,-1,577,726,567,-1,576,356,353,-1,971,356,576,-1,574,232,897,-1,565,232,574,-1,899,565,612,-1,899,230,565,-1,314,294,355,-1,121,294,314,-1,943,727,728,-1,675,727,943,-1,119,372,563,-1,372,119,516,-1,618,322,563,-1,618,736,322,-1,320,737,562,-1,319,737,320,-1,624,947,968,-1,947,624,376,-1,290,623,969,-1,290,968,623,-1,558,556,561,-1,482,556,558,-1,102,558,287,-1,102,104,558,-1,109,291,108,-1,109,286,291,-1,290,944,292,-1,969,944,290,-1,485,555,482,-1,485,619,555,-1,248,396,477,-1,248,397,396,-1,476,749,891,-1,476,477,749,-1,104,481,8,-1,104,107,481,-1,993,425,966,-1,425,993,916,-1,993,994,818,-1,993,995,994,-1,424,996,422,-1,996,424,817,-1,270,21,18,-1,270,547,21,-1,963,149,782,-1,963,964,149,-1,352,480,351,-1,352,479,480,-1,328,325,544,-1,328,326,325,-1,632,734,735,-1,632,798,734,-1,802,631,964,-1,802,799,631,-1,964,803,802,-1,964,963,803,-1,843,850,848,-1,843,849,850,-1,852,641,638,-1,641,852,845,-1,541,839,542,-1,541,854,839,-1,540,836,858,-1,836,540,539,-1,534,357,359,-1,534,847,357,-1,962,844,961,-1,962,842,844,-1,841,960,840,-1,960,841,958,-1,537,838,932,-1,537,536,838,-1,535,931,837,-1,931,535,538,-1,220,359,445,-1,220,447,359,-1,451,961,534,-1,450,961,451,-1,962,934,958,-1,934,962,933,-1,392,959,391,-1,392,533,959,-1,532,201,930,-1,532,199,201,-1,532,389,199,-1,931,935,939,-1,935,931,929,-1,779,898,822,-1,898,779,823,-1,957,531,952,-1,957,529,531,-1,642,196,953,-1,642,776,196,-1,527,830,525,-1,830,527,828,-1,955,828,527,-1,827,828,955,-1,870,955,956,-1,870,872,955,-1,867,870,246,-1,867,871,870,-1,868,871,867,-1,868,997,871,-1,765,953,740,-1,765,233,953,-1,635,862,861,-1,777,862,635,-1,952,764,860,-1,531,764,952,-1,530,524,117,-1,634,524,530,-1,643,114,524,-1,114,643,951,-1,781,520,863,-1,781,147,520,-1,236,310,234,-1,310,236,309,-1,518,234,310,-1,518,517,234,-1,519,247,244,-1,247,519,311,-1,516,723,372,-1,131,723,516,-1,951,515,114,-1,515,951,882,-1,506,508,504,-1,506,509,508,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlcoscart_Geo_5_289_coordIndex_7()
		{
			int[] value = {254,503,505,-1,254,662,503,-1,161,142,139,-1,161,150,142,-1,500,880,501,-1,890,880,500,-1,497,884,498,-1,497,876,884,-1,496,874,499,-1,756,874,496,-1,889,873,757,-1,889,879,873,-1,492,886,100,-1,492,885,886,-1,742,885,492,-1,742,888,885,-1,760,672,758,-1,672,760,673,-1,949,759,948,-1,949,887,759,-1,721,948,950,-1,948,721,722,-1,949,488,661,-1,488,949,901,-1,487,379,380,-1,373,379,487,-1,815,945,791,-1,815,946,945,-1,407,46,918,-1,407,79,46,-1,228,858,836,-1,773,858,228,-1,561,287,558,-1,561,560,287,-1,156,649,317,-1,650,649,156,-1,292,99,108,-1,99,292,659,-1,144,943,293,-1,144,143,943,-1,153,735,154,-1,735,153,632,-1,846,224,683,-1,224,846,835,-1,239,725,646,-1,762,725,239,-1,406,77,268,-1,78,77,406,-1,268,23,406,-1,268,20,23,-1,741,3,551,-1,741,893,3,-1,296,800,468,-1,800,296,298,-1,191,865,825,-1,465,865,191,-1,241,767,242,-1,241,464,767,-1,864,825,865,-1,825,864,829,-1,358,221,924,-1,358,683,221,-1,682,220,219,-1,220,682,448,-1,941,229,939,-1,227,229,941,-1,935,768,940,-1,935,769,768,-1,461,938,454,-1,460,938,461,-1,937,457,459,-1,937,936,457,-1,937,859,772,-1,859,937,991,-1,461,453,980,-1,461,454,453,-1,959,188,391,-1,188,959,934,-1,450,189,933,-1,449,189,450,-1,533,960,959,-1,932,960,533,-1,930,537,532,-1,538,537,930,-1,980,712,716,-1,980,453,712,-1,218,358,924,-1,358,218,445,-1,605,441,444,-1,605,439,441,-1,441,819,821,-1,441,442,819,-1,637,402,636,-1,637,708,402,-1,529,202,405,-1,529,207,202,-1,928,980,716,-1,928,979,980,-1,926,715,707,-1,926,927,715,-1,218,922,219,-1,925,922,218,-1,433,682,921,-1,433,175,682,-1,924,920,923,-1,920,924,221,-1,970,623,622,-1,970,969,623,-1,905,711,665,-1,919,711,905,-1,693,744,745,-1,694,744,693,-1,669,746,25,-1,669,747,746,-1,427,750,34,-1,427,748,750,-1,945,52,917,-1,945,790,52,-1,264,918,53,-1,918,264,407,-1,966,48,668,-1,966,425,48,-1,427,630,629,-1,427,37,630,-1,916,818,816,-1,818,916,993,-1,44,421,677,-1,44,474,421,-1,816,426,916,-1,426,816,701,-1,966,995,993,-1,965,995,966,-1,417,804,22,-1,417,419,804,-1,811,12,808,-1,13,12,811,-1,794,913,910,-1,794,796,913,-1,704,912,415,-1,704,909,912,-1,413,808,43,-1,413,811,808,-1,702,41,793,-1,702,915,41,-1,415,911,914,-1,415,912,911,-1,909,419,908,-1,909,804,419,-1,704,906,705,-1,414,906,704,-1,910,806,794,-1,908,806,910,-1,43,793,41,-1,807,793,43,-1,418,69,810,-1,69,418,412,-1,795,413,42,-1,413,795,805,-1,414,809,906,-1,807,809,414,-1,719,957,185,-1,206,957,719,-1,207,957,206,-1,957,207,529,-1,903,32,34,-1,903,942,32,-1,396,904,750,-1,396,395,904,-1,395,57,59,-1,57,395,397,-1,391,190,206,-1,391,188,190,-1,392,388,389,-1,388,392,390,-1,215,308,381,-1,215,305,308,-1,587,217,216,-1,217,587,394,-1,488,902,375,-1,902,488,901,-1,376,902,947,-1,376,375,902,-1,230,238,237,-1,230,899,238,-1,370,516,237,-1,370,131,516,-1,363,302,253,-1,363,361,302,-1,327,470,364,-1,324,470,327,-1,658,250,366,-1,658,251,250,-1,633,368,342,-1,369,368,633,-1,823,644,898,-1,823,645,644,-1,975,347,545,-1,975,345,347,-1,356,617,354,-1,356,897,617,-1,896,352,350,-1,896,546,352,-1,349,348,346,-1,349,351,348,-1,343,545,344,-1,343,975,545,-1,878,299,877,-1,878,297,299,-1,334,875,335,-1,875,334,894,-1,331,332,329,-1,332,331,333,-1,780,151,162,-1,780,783,151,-1,510,124,157,-1,124,510,125,-1,311,738,312,-1,518,738,311,-1,331,300,472,-1,331,303,300,-1,473,334,333,-1,680,334,473,-1,895,297,894,-1,298,297,895,-1,469,299,296,-1,469,733,299,-1,732,893,340,-1,893,732,679,-1,99,288,108,-1,99,284,288,-1,279,693,755,-1,281,693,279,-1,746,428,797,-1,490,428,746,-1,31,32,29,-1,31,33,32,-1,18,73,270,-1,18,17,73,-1,267,268,77,-1,268,267,269,-1,49,752,47,-1,752,49,678,-1,754,80,700,-1,785,80,754,-1,508,502,504,-1,508,500,502,-1,890,317,653,-1,890,316,317,-1,882,889,515,-1,366,889,882,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlcoscart_Geo_5_289_coordIndex_8()
		{
			int[] value = {888,660,885,-1,660,888,887,-1,886,256,257,-1,256,886,489,-1,255,505,494,-1,255,254,505,-1,656,511,884,-1,656,649,511,-1,498,883,496,-1,883,498,512,-1,101,797,428,-1,6,797,101,-1,493,4,495,-1,729,4,493,-1,652,336,880,-1,336,652,339,-1,339,651,730,-1,652,651,339,-1,731,654,877,-1,655,654,731,-1,876,875,878,-1,876,497,875,-1,332,499,874,-1,499,332,335,-1,330,873,879,-1,873,330,329,-1,871,954,869,-1,954,871,997,-1,865,573,570,-1,865,465,573,-1,246,956,244,-1,246,870,956,-1,647,246,245,-1,246,647,867,-1,244,526,519,-1,244,956,526,-1,517,235,234,-1,517,528,235,-1,242,866,243,-1,242,864,866,-1,241,586,463,-1,586,241,240,-1,862,520,861,-1,862,863,520,-1,540,859,856,-1,540,858,859,-1,857,854,541,-1,854,857,853,-1,594,640,855,-1,638,640,594,-1,852,851,849,-1,852,596,851,-1,600,850,598,-1,835,850,600,-1,844,848,847,-1,844,843,848,-1,841,845,842,-1,841,641,845,-1,839,840,838,-1,840,839,639,-1,539,536,535,-1,536,539,542,-1,837,228,836,-1,228,837,229,-1,599,222,600,-1,222,599,834,-1,225,222,834,-1,225,223,222,-1,605,431,443,-1,605,444,431,-1,305,217,404,-1,305,215,217,-1,383,385,718,-1,385,383,386,-1,692,165,607,-1,165,692,214,-1,210,833,686,-1,210,209,833,-1,190,204,203,-1,204,190,438,-1,456,832,455,-1,832,456,769,-1,709,713,387,-1,709,831,713,-1,637,194,775,-1,637,198,194,-1,828,767,830,-1,767,828,766,-1,826,829,827,-1,829,826,825,-1,199,713,200,-1,199,387,713,-1,573,977,571,-1,614,977,573,-1,778,823,824,-1,778,645,823,-1,170,172,689,-1,170,173,172,-1,170,690,822,-1,170,689,690,-1,176,684,177,-1,176,821,684,-1,172,607,165,-1,172,171,607,-1,819,174,820,-1,171,174,819,-1,174,774,449,-1,174,173,774,-1,689,165,167,-1,172,165,689,-1,159,139,141,-1,161,139,159,-1,650,162,160,-1,650,780,162,-1,163,739,135,-1,163,676,739,-1,783,149,151,-1,782,149,783,-1,883,140,648,-1,140,883,141,-1,110,863,523,-1,863,110,781,-1,313,127,130,-1,127,313,312,-1,127,125,128,-1,125,127,126,-1,115,112,111,-1,115,514,112,-1,102,105,103,-1,109,105,102,-1,90,784,751,-1,784,90,89,-1,94,784,89,-1,630,784,94,-1,88,81,260,-1,81,88,82,-1,75,408,76,-1,79,408,75,-1,68,548,70,-1,548,68,67,-1,818,996,817,-1,994,996,818,-1,892,249,625,-1,892,788,249,-1,697,813,812,-1,697,814,813,-1,283,743,699,-1,283,275,743,-1,790,50,52,-1,787,50,790,-1,705,40,420,-1,705,906,40,-1,809,12,38,-1,809,808,12,-1,36,31,785,-1,33,31,36,-1,475,17,19,-1,17,475,263,-1,28,16,15,-1,16,28,25,-1,20,21,23,-1,18,21,20,-1,26,475,27,-1,26,263,475,-1,75,12,14,-1,39,12,75,-1,551,1,552,-1,1,551,3,-1,2,803,0,-1,803,2,468,-1,801,798,799,-1,798,801,681,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcoscart_Geo_5_289_normalIndex_1()
		{
			int[] value = {348,288,133,-1,288,122,133,-1,507,127,375,-1,8,127,60,-1,127,16,60,-1,232,16,127,-1,232,68,16,-1,941,993,795,-1,60,11,8,-1,11,91,8,-1,24,45,22,-1,45,63,22,-1,62,170,71,-1,170,66,71,-1,209,76,165,-1,209,40,76,-1,915,942,883,-1,657,714,295,-1,289,714,873,-1,289,282,714,-1,685,651,441,-1,974,933,794,-1,807,885,727,-1,574,506,424,-1,709,686,824,-1,686,772,824,-1,342,501,458,-1,154,174,140,-1,174,154,166,-1,166,253,174,-1,978,942,977,-1,440,383,370,-1,370,504,440,-1,440,504,898,-1,898,786,440,-1,898,697,993,-1,383,366,370,-1,383,346,366,-1,366,346,274,-1,795,698,648,-1,598,496,513,-1,727,648,698,-1,727,603,648,-1,916,804,752,-1,752,746,916,-1,520,752,583,-1,520,746,752,-1,531,583,683,-1,752,595,683,-1,683,583,752,-1,347,354,351,-1,354,306,351,-1,351,349,347,-1,349,362,347,-1,308,351,306,-1,856,840,881,-1,856,881,967,-1,840,743,673,-1,70,139,226,-1,100,181,139,-1,181,280,139,-1,560,100,115,-1,465,629,904,-1,431,579,634,-1,414,345,431,-1,65,129,96,-1,3,95,171,-1,457,725,675,-1,720,799,926,-1,926,859,720,-1,926,982,859,-1,3,326,13,-1,567,59,106,-1,997,970,567,-1,988,962,987,-1,988,997,962,-1,949,997,988,-1,949,970,997,-1,36,34,164,-1,277,179,97,-1,817,953,929,-1,817,815,953,-1,569,591,949,-1,591,970,949,-1,646,793,620,-1,620,343,646,-1,990,968,986,-1,968,975,986,-1,59,567,64,-1,567,329,64,-1,19,809,341,-1,585,300,283,-1,1,2,7,-1,7,0,1,-1,53,136,121,-1,944,961,889,-1,889,784,944,-1,575,515,510,-1,658,619,485,-1,417,305,311,-1,783,803,736,-1,989,925,893,-1,893,948,989,-1,925,989,951,-1,846,851,755,-1,763,489,400,-1,400,682,763,-1,397,311,489,-1,763,630,489,-1,950,728,693,-1,693,959,950,-1,433,676,693,-1,809,19,581,-1,617,589,587,-1,153,42,182,-1,741,943,738,-1,741,981,943,-1,738,681,385,-1,359,284,538,-1,338,434,350,-1,459,529,582,-1,459,437,529,-1,737,238,584,-1,639,895,833,-1,833,481,639,-1,789,822,837,-1,789,818,822,-1,166,201,193,-1,490,533,516,-1,432,516,533,-1,718,700,687,-1,700,663,687,-1,548,683,595,-1,942,745,713,-1,310,349,307,-1,306,354,56,-1,354,274,56,-1,686,936,772,-1,686,838,936,-1,496,688,470,-1,318,251,22,-1,22,63,318,-1,274,346,213,-1,625,884,746,-1,308,194,299,-1,828,840,905,-1,905,761,828,-1,797,668,819,-1,797,694,668,-1,666,881,875,-1,666,984,881,-1,148,123,88,-1,875,881,840,-1,560,773,298,-1,372,560,249,-1,372,710,560,-1,29,101,3,-1,127,498,232,-1,28,81,18,-1,28,98,81,-1,51,323,222,-1,51,49,323,-1,340,432,323,-1,610,605,928,-1,928,781,610,-1,399,164,457,-1,457,552,399,-1,628,702,818,-1,702,861,818,-1,343,13,326,-1,3,54,48,-1,729,793,684,-1,729,620,793,-1,555,407,412,-1,412,556,555,-1,986,975,953,-1,975,929,953,-1,90,156,129,-1,409,523,461,-1,409,512,523,-1,591,422,329,-1,138,150,43,-1,150,49,43,-1,112,20,30,-1,30,187,112,-1,530,380,498,-1,498,653,530,-1,428,231,241,-1,564,443,435,-1,391,445,379,-1,445,186,379,-1,460,473,248,-1,473,247,248,-1,367,102,116,-1,367,281,102,-1,886,774,541,-1,273,141,107,-1,141,219,107,-1,191,141,364,-1,364,512,191,-1,450,490,360,-1,717,273,107,-1,717,669,273,-1,861,982,878,-1,878,818,861,-1,434,338,737,-1,427,787,813,-1,216,256,228,-1,659,708,791,-1,708,568,791,-1,716,589,617,-1,716,671,589,-1,479,605,610,-1,781,937,716,-1,676,488,544,-1,830,846,594,-1,846,638,594,-1,521,413,397,-1,521,549,413,-1,676,946,959,-1,676,593,946,-1,458,140,174,-1,174,342,458,-1,125,169,176,-1,376,394,336,-1,376,373,394,-1,915,977,942,-1,624,611,485,-1,676,544,633,-1,682,834,763,-1,441,513,334,-1,734,586,603,-1,466,301,467,-1,786,499,440,-1,642,794,933,-1,592,357,812,-1,381,478,396,-1,381,499,478,-1,261,334,66,-1,334,71,66,-1,627,491,871,-1,627,365,491,-1,303,424,506,-1,373,424,230,-1,713,883,942,-1,282,275,295,-1,905,673,823,-1,9,92,144,-1,144,26,9,-1,12,23,53,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcoscart_Geo_5_289_normalIndex_2()
		{
			int[] value = {23,72,53,-1,27,283,300,-1,341,809,665,-1,185,311,305,-1,453,508,195,-1,508,196,195,-1,385,484,92,-1,385,681,484,-1,200,72,144,-1,153,182,452,-1,104,234,182,-1,182,137,104,-1,119,449,337,-1,337,57,119,-1,609,768,731,-1,768,909,731,-1,111,155,178,-1,136,72,200,-1,136,53,72,-1,389,388,175,-1,895,965,903,-1,965,948,903,-1,542,570,320,-1,99,82,28,-1,214,89,38,-1,89,17,38,-1,141,191,222,-1,191,51,222,-1,727,698,664,-1,664,807,727,-1,86,22,251,-1,278,193,201,-1,201,233,278,-1,329,84,64,-1,329,134,84,-1,329,177,134,-1,11,60,161,-1,77,60,16,-1,379,255,446,-1,379,186,255,-1,87,77,68,-1,77,16,68,-1,8,91,375,-1,531,448,520,-1,531,165,448,-1,745,595,713,-1,398,568,429,-1,429,256,398,-1,659,687,695,-1,695,708,659,-1,823,761,905,-1,823,748,761,-1,743,740,744,-1,754,700,845,-1,754,640,700,-1,572,447,739,-1,572,328,447,-1,775,742,842,-1,908,917,890,-1,908,872,917,-1,908,932,872,-1,792,760,735,-1,326,646,343,-1,910,968,990,-1,990,973,910,-1,579,747,866,-1,579,535,747,-1,737,661,434,-1,822,818,878,-1,628,573,562,-1,628,689,573,-1,277,352,179,-1,277,469,352,-1,465,292,414,-1,465,225,292,-1,579,345,436,-1,579,431,345,-1,850,758,879,-1,850,674,758,-1,820,834,540,-1,540,602,820,-1,549,706,615,-1,549,638,706,-1,337,541,234,-1,337,607,541,-1,726,847,811,-1,811,788,726,-1,541,774,452,-1,580,290,444,-1,444,631,580,-1,442,446,480,-1,442,425,446,-1,211,134,247,-1,211,84,134,-1,186,177,255,-1,186,248,177,-1,194,11,161,-1,194,40,11,-1,346,319,213,-1,346,383,319,-1,467,698,466,-1,467,664,698,-1,451,394,373,-1,274,24,56,-1,77,226,60,-1,161,181,194,-1,161,280,181,-1,257,322,299,-1,135,250,113,-1,113,75,135,-1,77,215,208,-1,189,372,249,-1,152,226,77,-1,294,160,197,-1,197,427,294,-1,250,288,412,-1,412,264,250,-1,129,157,90,-1,54,102,46,-1,54,116,102,-1,338,350,262,-1,474,296,405,-1,405,563,474,-1,245,83,143,-1,245,105,83,-1,236,205,262,-1,411,472,616,-1,616,455,411,-1,474,563,671,-1,671,703,474,-1,503,561,632,-1,503,464,561,-1,965,937,991,-1,965,867,937,-1,652,892,946,-1,946,593,652,-1,798,543,665,-1,665,940,798,-1,678,565,889,-1,565,632,889,-1,712,667,829,-1,712,571,667,-1,921,848,963,-1,921,802,848,-1,802,672,848,-1,802,691,672,-1,453,623,672,-1,453,361,623,-1,439,73,196,-1,196,508,439,-1,439,559,463,-1,439,606,559,-1,889,632,784,-1,632,561,784,-1,665,543,565,-1,565,678,665,-1,946,892,798,-1,798,940,946,-1,565,503,632,-1,565,477,503,-1,472,474,703,-1,703,616,472,-1,205,118,262,-1,131,55,105,-1,445,391,494,-1,494,604,445,-1,46,102,172,-1,113,250,264,-1,264,183,113,-1,215,207,157,-1,427,208,787,-1,427,197,208,-1,216,160,294,-1,216,202,160,-1,173,198,237,-1,202,242,189,-1,189,148,202,-1,75,113,87,-1,327,322,545,-1,299,322,304,-1,384,545,322,-1,322,257,384,-1,308,40,194,-1,308,76,40,-1,362,349,310,-1,265,218,310,-1,412,348,556,-1,412,288,348,-1,519,390,815,-1,390,569,815,-1,480,255,422,-1,480,446,255,-1,442,551,425,-1,551,435,425,-1,540,585,418,-1,540,834,585,-1,619,680,732,-1,951,954,732,-1,796,751,677,-1,796,790,751,-1,770,674,850,-1,770,582,674,-1,515,509,462,-1,462,483,515,-1,292,345,414,-1,841,822,878,-1,841,870,822,-1,962,904,747,-1,747,897,962,-1,785,968,910,-1,785,914,968,-1,792,620,729,-1,792,735,620,-1,546,539,636,-1,514,497,654,-1,450,517,526,-1,673,700,640,-1,673,663,700,-1,840,828,875,-1,967,744,740,-1,967,832,744,-1,708,723,711,-1,708,695,723,-1,679,687,659,-1,679,718,687,-1,114,173,120,-1,114,198,173,-1,819,942,934,-1,819,745,942,-1,506,574,709,-1,574,686,709,-1,612,315,369,-1,884,688,734,-1,734,936,884,-1,209,531,588,-1,209,165,531,-1,127,8,375,-1,192,75,68,-1,75,87,68,-1,960,939,920,-1,920,927,960,-1,41,64,84,-1,41,21,64,-1,865,627,871,-1,373,558,424,-1,989,948,991,-1,948,965,991,-1,273,364,141,-1,214,38,51,-1,51,191,214,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcoscart_Geo_5_289_normalIndex_3()
		{
			int[] value = {99,124,82,-1,99,133,124,-1,89,5,17,-1,89,44,5,-1,144,92,484,-1,104,57,234,-1,57,337,234,-1,121,137,52,-1,52,53,121,-1,952,981,741,-1,137,121,50,-1,50,104,137,-1,403,433,297,-1,403,410,433,-1,273,669,527,-1,527,364,273,-1,665,678,341,-1,316,341,876,-1,341,678,876,-1,26,144,72,-1,72,23,26,-1,145,385,92,-1,92,9,145,-1,439,271,73,-1,597,694,596,-1,694,614,596,-1,614,670,492,-1,670,487,492,-1,719,666,875,-1,958,884,936,-1,331,373,230,-1,331,451,373,-1,319,170,62,-1,651,685,941,-1,697,451,466,-1,451,331,466,-1,972,812,801,-1,651,513,441,-1,344,321,180,-1,433,430,676,-1,430,488,676,-1,957,924,624,-1,924,611,624,-1,991,928,996,-1,373,376,558,-1,810,670,934,-1,670,797,934,-1,950,946,940,-1,950,959,946,-1,821,851,980,-1,980,969,821,-1,356,395,601,-1,601,426,356,-1,924,830,611,-1,830,594,611,-1,495,521,397,-1,605,969,979,-1,605,601,969,-1,937,781,991,-1,781,928,991,-1,928,605,996,-1,605,979,996,-1,937,671,716,-1,937,703,671,-1,114,120,330,-1,120,212,330,-1,708,711,568,-1,711,429,568,-1,679,659,955,-1,659,791,955,-1,427,813,398,-1,398,294,427,-1,906,870,841,-1,841,843,906,-1,551,564,435,-1,908,982,932,-1,324,367,116,-1,116,101,324,-1,405,296,168,-1,296,94,168,-1,618,653,498,-1,127,618,498,-1,127,507,618,-1,428,241,380,-1,380,530,428,-1,419,339,243,-1,339,147,243,-1,150,323,49,-1,150,340,323,-1,255,177,422,-1,177,329,422,-1,904,962,465,-1,551,527,669,-1,551,442,527,-1,309,409,420,-1,409,461,420,-1,206,156,90,-1,244,407,326,-1,326,171,244,-1,407,555,326,-1,3,13,34,-1,34,29,3,-1,799,760,872,-1,926,932,982,-1,46,48,54,-1,46,65,48,-1,562,457,608,-1,562,552,457,-1,3,171,326,-1,106,59,33,-1,33,97,106,-1,277,164,399,-1,277,36,164,-1,680,644,732,-1,845,742,754,-1,845,842,742,-1,380,232,498,-1,380,192,232,-1,192,241,126,-1,192,380,241,-1,222,323,432,-1,379,446,425,-1,832,854,744,-1,984,967,881,-1,560,298,181,-1,189,123,148,-1,189,249,123,-1,384,181,298,-1,545,984,666,-1,545,773,984,-1,797,819,934,-1,759,828,696,-1,828,761,696,-1,621,599,550,-1,621,748,599,-1,308,299,304,-1,304,349,308,-1,266,240,199,-1,257,299,194,-1,884,958,916,-1,916,746,884,-1,376,274,260,-1,376,336,274,-1,688,625,470,-1,688,884,625,-1,938,992,838,-1,992,964,838,-1,354,260,274,-1,265,310,307,-1,745,819,668,-1,668,595,745,-1,595,668,518,-1,518,548,595,-1,548,550,588,-1,548,518,550,-1,897,747,522,-1,747,456,522,-1,869,767,836,-1,432,340,516,-1,360,516,340,-1,360,490,516,-1,154,176,201,-1,201,166,154,-1,205,236,210,-1,210,143,205,-1,584,238,401,-1,238,158,401,-1,292,335,345,-1,502,437,459,-1,502,469,437,-1,922,833,907,-1,919,911,930,-1,911,909,930,-1,37,61,74,-1,385,741,738,-1,484,623,361,-1,297,433,693,-1,676,959,693,-1,581,728,809,-1,728,950,809,-1,630,397,489,-1,27,400,4,-1,400,185,4,-1,283,4,7,-1,283,27,4,-1,954,994,957,-1,948,900,903,-1,948,893,900,-1,619,637,680,-1,619,658,637,-1,611,658,485,-1,611,495,658,-1,493,510,483,-1,510,515,483,-1,944,913,961,-1,914,793,899,-1,793,646,899,-1,13,457,164,-1,164,34,13,-1,970,591,329,-1,329,567,970,-1,815,569,953,-1,569,949,953,-1,36,33,21,-1,567,465,997,-1,465,962,997,-1,106,167,567,-1,167,465,567,-1,555,707,762,-1,646,326,555,-1,982,861,859,-1,608,457,675,-1,3,48,95,-1,129,156,96,-1,96,95,65,-1,95,48,65,-1,904,866,747,-1,579,866,634,-1,465,414,629,-1,181,100,560,-1,226,139,280,-1,905,840,673,-1,740,856,967,-1,743,856,740,-1,743,840,856,-1,349,351,308,-1,282,220,218,-1,282,289,220,-1,804,916,976,-1,976,730,804,-1,520,583,531,-1,746,520,625,-1,795,993,698,-1,598,586,496,-1,651,648,598,-1,598,513,651,-1,366,274,336,-1,898,993,786,-1,394,370,366,-1,366,336,394,-1,370,394,451,-1,451,504,370,-1,165,86,448,-1,369,577,612,-1,286,253,193,-1,253,166,193,-1,342,377,501,-1,377,487,501,-1,362,310,218,-1,577,777,612,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlcoscart_Geo_5_289_normalIndex_4()
		{
			int[] value = {931,885,865,-1,885,807,865,-1,882,558,376,-1,956,812,972,-1,344,357,592,-1,258,468,353,-1,730,976,883,-1,282,295,714,-1,992,976,964,-1,441,334,261,-1,192,68,232,-1,528,375,91,-1,207,87,113,-1,214,409,309,-1,309,89,214,-1,44,309,221,-1,309,44,89,-1,190,39,35,-1,190,204,39,-1,204,99,39,-1,204,291,99,-1,66,263,180,-1,263,66,170,-1,258,500,468,-1,258,386,500,-1,766,814,656,-1,766,794,814,-1,635,386,478,-1,386,635,500,-1,635,993,831,-1,635,786,993,-1,664,365,627,-1,664,467,365,-1,547,719,759,-1,482,719,547,-1,377,492,487,-1,377,393,492,-1,931,871,935,-1,865,871,931,-1,246,188,301,-1,117,188,246,-1,86,470,448,-1,86,251,470,-1,713,730,883,-1,713,804,730,-1,260,289,873,-1,260,220,289,-1,431,629,414,-1,634,629,431,-1,95,156,171,-1,95,96,156,-1,608,720,702,-1,675,720,608,-1,106,179,167,-1,179,106,97,-1,13,620,457,-1,13,343,620,-1,196,1,108,-1,73,1,196,-1,93,119,57,-1,119,93,0,-1,93,85,108,-1,50,85,93,-1,808,961,913,-1,961,808,876,-1,944,645,913,-1,944,690,645,-1,803,863,853,-1,863,803,783,-1,888,922,912,-1,922,888,901,-1,894,903,900,-1,903,894,907,-1,995,957,994,-1,995,924,957,-1,731,755,851,-1,731,805,755,-1,27,682,400,-1,300,682,27,-1,374,581,271,-1,374,728,581,-1,426,430,356,-1,430,426,488,-1,633,479,610,-1,544,479,633,-1,681,623,484,-1,681,753,623,-1,971,943,981,-1,963,943,971,-1,415,726,590,-1,726,415,580,-1,757,631,622,-1,757,847,631,-1,764,790,756,-1,751,790,764,-1,769,849,800,-1,769,827,849,-1,947,826,896,-1,886,826,947,-1,902,921,923,-1,902,891,921,-1,796,829,862,-1,796,712,829,-1,423,677,486,-1,677,423,566,-1,444,224,332,-1,444,290,224,-1,163,61,142,-1,61,163,74,-1,292,355,335,-1,292,225,355,-1,469,475,352,-1,475,469,502,-1,225,404,355,-1,404,225,270,-1,245,782,626,-1,387,782,245,-1,143,118,205,-1,83,118,143,-1,674,689,758,-1,689,674,573,-1,906,868,870,-1,868,906,874,-1,131,542,320,-1,131,105,542,-1,736,542,783,-1,570,542,736,-1,835,864,852,-1,835,855,864,-1,653,754,742,-1,653,618,754,-1,112,285,138,-1,267,285,112,-1,187,447,328,-1,447,187,259,-1,471,302,514,-1,471,279,302,-1,419,497,339,-1,546,497,419,-1,340,272,360,-1,150,272,340,-1,742,530,653,-1,641,530,742,-1,673,507,375,-1,507,673,640,-1,450,554,517,-1,554,450,532,-1,897,572,945,-1,897,522,572,-1,705,973,739,-1,705,910,973,-1,842,890,917,-1,845,890,842,-1,715,695,721,-1,695,715,723,-1,836,722,771,-1,722,836,767,-1,535,456,747,-1,535,402,456,-1,636,785,654,-1,636,684,785,-1,729,775,792,-1,729,650,775,-1,683,588,531,-1,548,588,683,-1,266,265,307,-1,275,265,266,-1,838,574,938,-1,574,838,686,-1,976,882,873,-1,992,882,976,-1,873,376,260,-1,882,376,873,-1,181,257,194,-1,384,257,181,-1,313,266,307,-1,266,313,240,-1,304,307,349,-1,313,307,304,-1,518,621,550,-1,597,621,518,-1,759,596,547,-1,696,596,759,-1,384,773,545,-1,384,298,773,-1,666,327,545,-1,327,666,363,-1,927,854,832,-1,854,927,920,-1,241,110,126,-1,241,231,110,-1,243,82,124,-1,243,147,82,-1,47,5,6,-1,47,30,5,-1,20,38,17,-1,20,43,38,-1,624,619,732,-1,619,624,485,-1,33,277,97,-1,33,36,277,-1,65,172,129,-1,65,46,172,-1,926,872,932,-1,799,872,926,-1,725,760,799,-1,725,735,760,-1,899,555,762,-1,899,646,555,-1,156,244,171,-1,156,206,244,-1,442,523,527,-1,442,480,523,-1,973,987,945,-1,973,990,987,-1,279,47,81,-1,279,259,47,-1,147,302,98,-1,339,302,147,-1,419,231,428,-1,419,243,231,-1,405,211,454,-1,405,168,211,-1,296,101,94,-1,296,324,101,-1,235,434,172,-1,235,350,434,-1,35,18,6,-1,35,39,18,-1,418,600,462,-1,600,418,585,-1,158,159,103,-1,158,238,159,-1,398,216,294,-1,216,398,256,-1,908,955,982,-1,908,679,955,-1,120,269,212,-1,120,184,269,-1,703,867,616,-1,937,867,703,-1,605,426,601,-1,479,426,605,-1,611,521,495,-1,611,594,521,-1,995,969,980,-1,995,979,969,-1,969,395,821,-1,601,395,969,-1,199,276,295,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlcoscart_Geo_5_289_normalIndex_5()
		{
			int[] value = {199,149,276,-1,501,670,810,-1,501,487,670,-1,978,934,942,-1,978,966,934,-1,996,995,994,-1,996,979,995,-1,505,685,441,-1,656,685,505,-1,812,766,592,-1,956,766,812,-1,353,933,983,-1,933,353,468,-1,831,500,635,-1,831,642,500,-1,331,301,466,-1,246,301,331,-1,478,358,396,-1,386,358,478,-1,180,314,344,-1,180,263,314,-1,146,10,79,-1,146,32,10,-1,392,812,357,-1,812,392,801,-1,985,933,974,-1,933,985,983,-1,358,79,314,-1,358,146,79,-1,180,261,66,-1,261,180,321,-1,440,381,383,-1,440,499,381,-1,170,383,381,-1,319,383,170,-1,698,697,466,-1,698,993,697,-1,301,365,467,-1,365,301,188,-1,424,217,230,-1,217,424,303,-1,558,992,938,-1,992,558,882,-1,887,772,776,-1,887,824,772,-1,964,936,838,-1,958,936,964,-1,621,761,748,-1,621,696,761,-1,528,209,599,-1,209,528,91,-1,797,614,694,-1,797,670,614,-1,458,810,844,-1,458,501,810,-1,393,363,482,-1,393,286,363,-1,834,300,585,-1,300,834,682,-1,374,439,463,-1,439,374,271,-1,385,333,741,-1,145,333,385,-1,42,14,52,-1,25,14,42,-1,130,153,408,-1,130,15,153,-1,463,297,374,-1,297,463,403,-1,410,430,433,-1,410,378,430,-1,395,325,254,-1,325,395,356,-1,609,851,821,-1,731,851,609,-1,85,200,195,-1,200,85,136,-1,50,57,104,-1,57,50,93,-1,774,947,952,-1,947,774,886,-1,806,788,765,-1,749,788,806,-1,811,615,706,-1,811,750,615,-1,417,511,305,-1,417,525,511,-1,911,806,805,-1,911,858,806,-1,284,37,74,-1,359,37,284,-1,67,61,37,-1,128,61,67,-1,175,155,389,-1,175,178,155,-1,909,816,930,-1,816,909,768,-1,724,857,699,-1,858,857,724,-1,833,901,782,-1,833,922,901,-1,44,6,5,-1,6,44,35,-1,124,122,110,-1,133,122,124,-1,915,780,977,-1,657,780,915,-1,253,393,377,-1,253,286,393,-1,885,776,727,-1,885,887,776,-1,841,737,584,-1,878,737,841,-1,36,41,31,-1,36,21,41,-1,174,377,342,-1,174,253,377,-1,710,927,832,-1,927,710,779,-1,192,135,75,-1,126,135,192,-1,470,520,448,-1,520,470,625,-1,688,586,734,-1,496,586,688,-1,931,887,885,-1,931,918,887,-1,880,777,918,-1,880,612,777,-1,369,709,577,-1,506,709,369,-1,614,547,596,-1,614,492,547,-1,223,120,173,-1,223,184,120,-1,537,269,576,-1,269,537,212,-1,787,791,813,-1,955,791,787,-1,722,711,723,-1,711,722,576,-1,869,537,767,-1,692,537,869,-1,771,920,836,-1,920,771,854,-1,482,666,719,-1,363,666,482,-1,663,743,721,-1,743,663,673,-1,360,402,450,-1,360,272,402,-1,267,456,285,-1,456,267,522,-1,705,514,654,-1,705,471,514,-1,654,546,636,-1,654,497,546,-1,650,539,641,-1,636,539,650,-1,575,532,557,-1,532,575,554,-1,277,437,469,-1,277,399,437,-1,557,515,575,-1,557,509,515,-1,436,462,509,-1,462,436,418,-1,335,540,345,-1,602,540,335,-1,637,355,404,-1,613,355,637,-1,475,644,680,-1,475,502,644,-1,582,643,459,-1,643,582,770,-1,778,803,835,-1,736,803,778,-1,835,853,855,-1,835,803,853,-1,855,888,877,-1,855,853,888,-1,839,879,758,-1,839,877,879,-1,850,900,770,-1,850,894,900,-1,644,893,925,-1,644,643,893,-1,991,994,989,-1,991,996,994,-1,925,732,644,-1,925,951,732,-1,658,613,637,-1,658,649,613,-1,585,808,600,-1,585,283,808,-1,4,305,119,-1,305,4,185,-1,805,765,755,-1,805,806,765,-1,662,553,704,-1,553,662,525,-1,511,655,449,-1,511,647,655,-1,724,590,749,-1,724,538,590,-1,750,764,704,-1,750,757,764,-1,769,662,756,-1,662,769,647,-1,826,655,800,-1,655,826,607,-1,677,622,486,-1,622,677,751,-1,902,827,862,-1,827,902,849,-1,971,896,923,-1,896,971,947,-1,348,536,556,-1,348,291,536,-1,519,221,390,-1,519,190,221,-1,591,461,422,-1,591,420,461,-1,512,527,523,-1,512,364,527,-1,817,519,815,-1,534,519,817,-1,556,707,555,-1,536,707,556,-1,132,369,315,-1,132,162,369,-1,308,56,76,-1,306,56,308,-1,313,322,278,-1,304,322,313,-1,233,199,240,-1,199,233,169,-1,327,278,322,-1,193,278,327,-1,779,960,927,-1,960,779,860,-1,88,115,70,-1,123,115,88,-1,160,148,88,-1,160,202,148,-1,242,372,189,-1,242,268,372,-1,421,860,779,-1,421,371,860,-1,173,268,223,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlcoscart_Geo_5_289_normalIndex_6()
		{
			int[] value = {173,237,268,-1,216,242,202,-1,216,228,242,-1,208,157,787,-1,208,215,157,-1,183,207,113,-1,157,207,183,-1,206,264,244,-1,183,264,206,-1,41,211,168,-1,211,41,84,-1,29,94,101,-1,31,94,29,-1,172,661,129,-1,172,434,661,-1,235,287,236,-1,235,281,287,-1,367,472,411,-1,367,324,472,-1,578,473,660,-1,578,454,473,-1,445,701,460,-1,701,445,604,-1,477,391,438,-1,494,391,477,-1,464,443,564,-1,464,503,443,-1,83,69,118,-1,69,83,58,-1,481,210,317,-1,481,387,210,-1,317,639,481,-1,317,455,639,-1,660,589,578,-1,589,660,652,-1,892,604,798,-1,892,701,604,-1,494,565,543,-1,494,477,565,-1,229,388,368,-1,175,388,229,-1,254,227,229,-1,227,254,252,-1,382,325,378,-1,312,325,382,-1,524,410,403,-1,416,410,524,-1,559,571,524,-1,559,667,571,-1,476,382,416,-1,476,406,382,-1,312,239,252,-1,312,293,239,-1,227,128,178,-1,227,203,128,-1,332,239,293,-1,224,239,332,-1,406,566,423,-1,406,476,566,-1,606,667,559,-1,733,667,606,-1,665,950,940,-1,950,665,809,-1,691,439,508,-1,606,439,691,-1,889,876,678,-1,876,889,961,-1,733,691,802,-1,733,606,691,-1,623,848,672,-1,848,623,753,-1,802,891,733,-1,802,921,891,-1,691,453,672,-1,691,508,453,-1,733,829,667,-1,891,829,733,-1,566,571,712,-1,476,571,566,-1,293,423,332,-1,293,406,423,-1,203,224,142,-1,203,239,224,-1,252,203,227,-1,252,239,203,-1,406,312,382,-1,406,293,312,-1,416,571,476,-1,524,571,416,-1,559,403,463,-1,524,403,559,-1,416,378,410,-1,382,378,416,-1,252,325,312,-1,252,254,325,-1,229,178,175,-1,178,229,227,-1,633,593,676,-1,593,633,587,-1,616,639,455,-1,639,616,867,-1,494,798,604,-1,798,494,543,-1,652,701,892,-1,660,701,652,-1,578,671,563,-1,671,578,589,-1,455,287,411,-1,317,287,455,-1,317,236,287,-1,210,236,317,-1,143,387,245,-1,143,210,387,-1,103,118,69,-1,103,159,118,-1,503,438,443,-1,438,503,477,-1,460,660,473,-1,660,460,701,-1,454,563,405,-1,563,454,578,-1,472,296,474,-1,472,324,296,-1,411,281,367,-1,287,281,411,-1,236,350,235,-1,262,350,236,-1,159,262,118,-1,159,338,262,-1,54,101,116,-1,3,101,54,-1,31,168,94,-1,41,168,31,-1,129,787,157,-1,787,129,661,-1,183,90,157,-1,183,206,90,-1,412,244,264,-1,407,244,412,-1,242,223,268,-1,223,242,228,-1,372,237,421,-1,372,268,237,-1,152,208,197,-1,77,208,152,-1,70,152,88,-1,70,226,152,-1,115,249,560,-1,115,123,249,-1,372,779,710,-1,421,779,372,-1,87,215,77,-1,87,207,215,-1,201,169,233,-1,201,176,169,-1,278,240,313,-1,278,233,240,-1,226,161,60,-1,226,280,161,-1,109,303,162,-1,303,109,217,-1,109,80,117,-1,109,78,80,-1,365,151,491,-1,151,365,188,-1,213,62,45,-1,213,319,62,-1,536,817,707,-1,536,534,817,-1,247,177,248,-1,247,134,177,-1,422,523,480,-1,422,461,523,-1,390,309,420,-1,390,221,309,-1,204,519,534,-1,204,190,519,-1,534,291,204,-1,534,536,291,-1,849,923,896,-1,849,902,923,-1,862,790,796,-1,790,862,827,-1,444,622,631,-1,444,486,622,-1,290,415,163,-1,415,290,580,-1,607,886,541,-1,607,826,886,-1,647,800,655,-1,647,769,800,-1,756,704,764,-1,704,756,662,-1,811,757,750,-1,811,847,757,-1,726,749,590,-1,749,726,788,-1,182,541,452,-1,182,234,541,-1,337,655,607,-1,449,655,337,-1,647,525,662,-1,525,647,511,-1,549,553,413,-1,549,615,553,-1,706,755,765,-1,706,846,755,-1,706,638,846,-1,749,858,724,-1,858,749,806,-1,913,600,808,-1,600,913,645,-1,649,602,613,-1,649,820,602,-1,770,893,643,-1,770,900,893,-1,879,894,850,-1,894,879,912,-1,877,912,879,-1,888,912,877,-1,864,877,839,-1,864,855,877,-1,868,864,837,-1,868,852,864,-1,874,852,868,-1,874,825,852,-1,502,643,644,-1,502,459,643,-1,680,404,475,-1,637,404,680,-1,613,335,355,-1,602,335,613,-1,540,436,345,-1,418,436,540,-1,509,579,436,-1,579,509,557,-1,167,352,270,-1,167,179,352,-1,437,552,529,-1,552,437,399,-1,562,529,552,-1,562,573,529,-1,689,818,789,-1,818,689,628,-1,661,955,787,-1,982,955,661,-1,557,535,579,-1,535,557,532,-1,872,792,917,-1,872,760,792,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlcoscart_Geo_5_289_normalIndex_7()
		{
			int[] value = {718,908,890,-1,718,679,908,-1,986,949,988,-1,986,953,949,-1,775,641,742,-1,650,641,775,-1,447,705,739,-1,447,471,705,-1,572,267,328,-1,522,267,572,-1,402,285,456,-1,402,272,285,-1,744,721,743,-1,744,715,721,-1,854,715,744,-1,854,771,715,-1,836,939,869,-1,939,836,920,-1,576,767,537,-1,576,722,767,-1,330,537,692,-1,537,330,212,-1,576,429,711,-1,429,576,269,-1,398,791,568,-1,813,791,398,-1,935,918,931,-1,935,880,918,-1,734,727,776,-1,734,603,727,-1,284,163,415,-1,74,163,284,-1,197,88,152,-1,197,160,88,-1,793,785,684,-1,914,785,793,-1,710,967,560,-1,967,710,832,-1,34,31,29,-1,34,36,31,-1,569,420,591,-1,420,569,390,-1,947,981,952,-1,981,947,971,-1,584,843,841,-1,401,843,584,-1,334,496,318,-1,513,496,334,-1,318,71,334,-1,318,63,71,-1,126,122,135,-1,126,110,122,-1,28,39,99,-1,39,28,18,-1,783,626,863,-1,542,626,783,-1,895,907,833,-1,895,903,907,-1,782,863,626,-1,863,782,901,-1,774,741,408,-1,774,952,741,-1,52,182,42,-1,182,52,137,-1,699,538,724,-1,359,538,699,-1,858,919,857,-1,858,911,919,-1,388,816,768,-1,389,816,388,-1,128,111,178,-1,128,67,111,-1,128,142,61,-1,142,128,203,-1,388,609,368,-1,388,768,609,-1,553,417,413,-1,417,553,525,-1,449,305,511,-1,119,305,449,-1,615,704,553,-1,750,704,615,-1,765,811,706,-1,788,811,765,-1,368,821,395,-1,368,609,821,-1,153,774,408,-1,774,153,452,-1,361,195,200,-1,361,453,195,-1,195,108,85,-1,195,196,108,-1,954,624,732,-1,954,957,624,-1,820,763,834,-1,820,630,763,-1,254,368,395,-1,254,229,368,-1,378,356,430,-1,378,325,356,-1,153,25,42,-1,15,25,153,-1,12,52,14,-1,12,53,52,-1,408,333,130,-1,333,408,741,-1,371,237,198,-1,371,421,237,-1,966,810,934,-1,844,810,966,-1,597,696,621,-1,596,696,597,-1,588,599,209,-1,588,550,599,-1,275,199,295,-1,275,266,199,-1,918,824,887,-1,918,777,824,-1,936,776,772,-1,776,936,734,-1,162,506,369,-1,162,303,506,-1,275,218,265,-1,275,282,218,-1,217,117,246,-1,117,217,109,-1,807,627,865,-1,807,664,627,-1,246,230,217,-1,230,246,331,-1,162,78,109,-1,132,78,162,-1,381,263,170,-1,381,396,263,-1,831,941,814,-1,993,941,831,-1,258,32,146,-1,258,353,32,-1,344,79,357,-1,344,314,79,-1,642,814,794,-1,642,831,814,-1,972,974,956,-1,972,985,974,-1,357,10,392,-1,357,79,10,-1,314,396,358,-1,314,263,396,-1,344,505,321,-1,592,505,344,-1,146,386,258,-1,358,386,146,-1,794,956,974,-1,766,956,794,-1,478,786,635,-1,786,478,499,-1,468,642,933,-1,642,468,500,-1,592,656,505,-1,766,656,592,-1,495,649,658,-1,397,649,495,-1,630,649,397,-1,649,630,820,-1,276,657,295,-1,276,780,657,-1,169,149,199,-1,169,125,149,-1,125,154,140,-1,154,125,176,-1,413,311,397,-1,413,417,311,-1,549,594,638,-1,594,549,521,-1,617,781,716,-1,617,610,781,-1,652,587,589,-1,587,652,593,-1,429,184,256,-1,184,429,269,-1,228,184,223,-1,228,256,184,-1,338,238,737,-1,338,159,238,-1,878,661,737,-1,878,982,661,-1,219,222,432,-1,219,141,222,-1,512,214,191,-1,409,214,512,-1,526,490,450,-1,526,533,490,-1,551,717,564,-1,669,717,551,-1,645,462,600,-1,645,483,462,-1,438,379,425,-1,438,391,379,-1,281,172,102,-1,281,235,172,-1,454,247,473,-1,454,211,247,-1,460,186,445,-1,460,248,186,-1,443,425,435,-1,443,438,425,-1,279,98,302,-1,279,81,98,-1,30,259,187,-1,259,30,47,-1,43,112,138,-1,112,43,20,-1,899,929,975,-1,899,762,929,-1,735,457,620,-1,457,735,725,-1,628,608,702,-1,562,608,628,-1,43,51,38,-1,43,49,51,-1,17,30,20,-1,5,30,17,-1,6,81,47,-1,18,81,6,-1,82,98,28,-1,82,147,98,-1,243,110,231,-1,110,243,124,-1,967,773,560,-1,967,984,773,-1,668,597,518,-1,694,597,668,-1,599,823,528,-1,748,823,599,-1,883,657,915,-1,883,714,657,-1,45,274,213,-1,45,24,274,-1,470,318,496,-1,318,470,251,-1,424,938,574,-1,938,424,558,-1,964,916,958,-1,976,916,964,-1,792,842,917,-1,792,775,842,-1,650,684,636,-1,650,729,684,-1,532,402,535,-1,450,402,532,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlcoscart_Geo_5_289_normalIndex_8()
		{
			int[] value = {771,723,715,-1,723,771,722,-1,721,687,663,-1,687,721,695,-1,700,890,845,-1,700,718,890,-1,654,910,705,-1,654,785,910,-1,739,945,572,-1,945,739,973,-1,673,528,823,-1,375,528,673,-1,754,507,640,-1,618,507,754,-1,539,530,641,-1,530,539,428,-1,428,546,419,-1,539,546,428,-1,339,514,302,-1,497,514,339,-1,471,259,279,-1,471,447,259,-1,112,328,267,-1,328,112,187,-1,150,285,272,-1,285,150,138,-1,852,778,835,-1,778,852,825,-1,626,105,245,-1,626,542,105,-1,837,839,789,-1,837,864,839,-1,870,837,822,-1,837,870,868,-1,789,758,689,-1,789,839,758,-1,573,582,529,-1,573,674,582,-1,833,387,481,-1,833,782,387,-1,895,867,965,-1,867,895,639,-1,404,352,475,-1,404,270,352,-1,290,142,224,-1,290,163,142,-1,332,486,444,-1,486,332,423,-1,712,677,566,-1,796,677,712,-1,862,891,902,-1,862,829,891,-1,963,923,921,-1,971,923,963,-1,800,896,826,-1,800,849,896,-1,756,827,769,-1,756,790,827,-1,622,764,757,-1,764,622,751,-1,580,847,726,-1,847,580,631,-1,590,284,415,-1,284,590,538,-1,848,943,963,-1,943,848,753,-1,681,943,753,-1,681,738,943,-1,361,144,484,-1,361,200,144,-1,610,587,633,-1,610,617,587,-1,479,488,426,-1,488,479,544,-1,271,19,73,-1,19,271,581,-1,693,374,297,-1,693,728,374,-1,311,400,489,-1,400,311,185,-1,909,805,731,-1,805,909,911,-1,924,980,830,-1,924,995,980,-1,954,989,994,-1,954,951,989,-1,912,907,894,-1,907,912,922,-1,853,901,888,-1,901,853,863,-1,846,980,851,-1,846,830,980,-1,105,58,83,-1,55,58,105,-1,493,645,690,-1,493,483,645,-1,283,2,316,-1,283,7,2,-1,283,876,808,-1,283,316,876,-1,136,50,121,-1,136,85,50,-1,2,73,19,-1,2,1,73,-1,108,0,93,-1,1,0,108,-1,0,4,119,-1,0,7,4,-1,316,19,341,-1,2,19,316,-1,990,988,987,-1,986,988,990,-1,914,975,968,-1,914,899,975,-1,64,33,59,-1,64,21,33,-1,762,817,929,-1,707,817,762,-1,945,962,897,-1,962,945,987,-1,465,270,225,-1,270,465,167,-1,861,720,859,-1,720,861,702,-1,720,725,799,-1,725,720,675,-1,634,904,629,-1,634,866,904,-1,70,100,139,-1,115,100,70,-1,354,220,260,-1,220,354,347,-1,362,220,347,-1,218,220,362,-1,595,804,713,-1,804,595,752,-1,648,586,598,-1,603,586,648,-1,898,451,697,-1,451,898,504,-1,117,151,188,-1,80,151,117,-1,363,193,327,-1,363,286,193,-1,492,482,547,-1,492,393,482,-1,875,759,719,-1,875,828,759,-1,777,709,824,-1,577,709,777,-1,321,441,261,-1,321,505,441,-1,656,941,685,-1,656,814,941,-1,873,883,976,-1,714,883,873,-1,86,24,22,-1,24,86,56,-1,40,91,11,-1,91,40,209,-1,63,62,71,-1,45,62,63,-1,76,86,165,-1,76,56,86,-1,648,941,795,-1,651,941,648,-1,135,288,250,-1,288,135,122,-1,133,291,348,-1,291,133,99,-1,35,221,190,-1,221,35,44,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcuboid_Geo_5_295_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,1,0,-1,4,5,6,-1,7,8,9,-1,9,10,7,-1,2,1,11,-1,12,13,14,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,22,24,23,-1,25,26,27,-1,27,28,25,-1,29,30,31,-1,32,33,34,-1,32,35,33,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,8,46,-1,47,48,49,-1,50,51,52,-1,53,54,55,-1,56,57,58,-1,59,60,61,-1,62,63,64,-1,64,65,62,-1,66,67,68,-1,69,70,71,-1,25,72,73,-1,25,28,72,-1,43,74,75,-1,76,77,78,-1,76,40,77,-1,79,80,81,-1,79,82,80,-1,83,80,84,-1,84,85,83,-1,86,87,88,-1,86,89,87,-1,90,91,92,-1,91,93,92,-1,94,95,2,-1,94,96,95,-1,97,98,99,-1,99,100,97,-1,101,102,103,-1,103,104,101,-1,105,106,107,-1,108,109,110,-1,111,48,47,-1,112,69,71,-1,113,96,114,-1,115,116,117,-1,70,69,118,-1,119,117,116,-1,119,120,117,-1,121,122,123,-1,124,125,126,-1,125,48,126,-1,127,128,129,-1,129,130,127,-1,131,132,133,-1,134,135,121,-1,136,137,138,-1,138,139,136,-1,137,136,140,-1,141,142,143,-1,142,144,143,-1,145,146,147,-1,145,148,146,-1,38,51,149,-1,38,52,51,-1,150,151,1,-1,152,153,154,-1,118,123,153,-1,155,156,157,-1,156,158,157,-1,18,159,160,-1,161,162,163,-1,163,164,161,-1,165,163,16,-1,16,15,165,-1,166,160,167,-1,167,168,166,-1,169,170,32,-1,170,171,32,-1,41,172,39,-1,173,174,175,-1,176,177,169,-1,177,170,169,-1,178,175,179,-1,178,180,175,-1,181,182,183,-1,182,184,183,-1,185,186,187,-1,0,2,85,-1,2,83,85,-1,188,189,190,-1,188,191,189,-1,192,193,194,-1,194,195,192,-1,196,197,198,-1,197,199,198,-1,200,201,202,-1,15,17,203,-1,204,205,206,-1,207,148,208,-1,207,146,148,-1,145,209,143,-1,145,210,209,-1,114,211,212,-1,114,213,211,-1,214,215,216,-1,215,217,216,-1,79,117,218,-1,11,219,213,-1,213,94,11,-1,220,80,83,-1,220,81,80,-1,3,221,222,-1,222,223,3,-1,224,225,226,-1,225,227,226,-1,228,229,230,-1,231,232,233,-1,233,234,231,-1,235,236,76,-1,235,237,236,-1,40,39,77,-1,238,45,46,-1,46,239,238,-1,240,241,10,-1,122,130,242,-1,122,121,130,-1,125,127,135,-1,135,243,125,-1,38,58,57,-1,38,37,52,-1,184,244,183,-1,65,245,62,-1,246,247,248,-1,248,249,246,-1,184,182,246,-1,244,184,171,-1,250,251,174,-1,174,169,250,-1,252,176,173,-1,252,228,176,-1,177,253,254,-1,255,256,257,-1,152,258,153,-1,152,158,258,-1,69,259,260,-1,69,112,259,-1,118,153,258,-1,258,70,118,-1,261,262,263,-1,262,110,263,-1,264,265,266,-1,259,136,260,-1,267,268,269,-1,267,270,268,-1,133,271,244,-1,244,254,133,-1,224,226,272,-1,35,32,273,-1,273,184,246,-1,246,249,273,-1,248,274,249,-1,275,276,277,-1,277,245,275,-1,62,277,278,-1,62,245,277,-1,62,279,63,-1,280,281,282,-1,283,284,285,-1,284,286,285,-1,280,282,54,-1,111,287,149,-1,49,125,243,-1,49,48,125,-1,288,129,289,-1,55,256,255,-1,255,290,55,-1,291,154,292,-1,154,122,292,-1,45,293,240,-1,240,9,45,-1,40,76,236,-1,237,235,263,-1,263,110,237,-1,294,231,234,-1,234,295,294,-1,296,297,298,-1,90,299,142,-1,299,144,142,-1,300,301,188,-1,191,302,189,-1,303,304,305,-1,303,306,304,-1,307,308,309,-1,221,3,0,-1,11,1,310,-1,1,151,310,-1,311,81,220,-1,311,115,81,-1,312,313,116,-1,314,145,147,-1,315,316,317,-1,315,318,316,-1,14,319,12,-1,201,320,321,-1,322,200,202,-1,323,324,22,-1,160,325,19,-1,326,92,327,-1,16,328,17,-1,104,329,330,-1,330,101,104,-1,331,194,332,-1,331,195,194,-1,333,334,335,-1,333,336,334,-1,102,337,338,-1,339,275,340,-1,339,276,275,-1,277,341,278,-1,332,342,343,-1,344,266,119,-1,266,120,119,-1,173,176,174,-1,176,169,174,-1,233,257,132,-1,233,345,257,-1,250,68,251,-1,250,34,68,-1,175,174,251,-1,167,93,168,-1,93,91,168,-1,98,24,324,-1,24,22,324,-1,320,201,346,-1,201,347,346,-1,167,160,348,-1,349,319,14,-1,156,106,158,-1,350,4,351,-1,351,352,350,-1,242,292,122,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcuboid_Geo_5_295_coordIndex_2()
		{
			int[] value = {4,350,232,-1,353,303,354,-1,353,355,303,-1,356,216,217,-1,248,247,357,-1,358,37,357,-1,357,247,358,-1,215,359,217,-1,171,170,244,-1,143,144,145,-1,144,148,145,-1,346,347,329,-1,347,330,329,-1,47,49,360,-1,47,360,138,-1,360,139,138,-1,219,310,361,-1,219,11,310,-1,301,191,188,-1,301,304,191,-1,129,288,130,-1,288,242,130,-1,256,271,133,-1,133,257,256,-1,133,132,257,-1,362,117,120,-1,314,210,145,-1,363,364,365,-1,365,218,363,-1,265,137,140,-1,265,366,137,-1,333,367,368,-1,367,369,368,-1,370,371,372,-1,372,373,370,-1,374,99,166,-1,374,100,99,-1,335,334,375,-1,334,376,375,-1,11,94,2,-1,93,327,92,-1,93,377,327,-1,315,378,379,-1,379,318,315,-1,143,212,141,-1,220,2,95,-1,220,83,2,-1,117,81,115,-1,117,79,81,-1,263,380,381,-1,381,261,263,-1,235,76,382,-1,76,78,382,-1,355,353,383,-1,217,359,384,-1,385,386,387,-1,388,53,389,-1,390,283,285,-1,391,64,178,-1,391,65,64,-1,65,391,275,-1,275,245,65,-1,283,126,48,-1,256,282,271,-1,183,286,181,-1,282,256,55,-1,55,54,282,-1,283,48,284,-1,48,51,284,-1,392,42,172,-1,42,39,172,-1,240,10,9,-1,77,39,307,-1,39,44,307,-1,51,50,284,-1,31,27,393,-1,394,395,396,-1,342,332,397,-1,30,27,31,-1,30,28,27,-1,398,300,369,-1,369,367,398,-1,399,22,21,-1,400,401,15,-1,19,18,160,-1,188,369,300,-1,45,9,8,-1,0,85,221,-1,1,3,150,-1,44,39,42,-1,399,323,22,-1,402,323,399,-1,367,403,398,-1,404,403,367,-1,405,187,394,-1,185,187,405,-1,342,396,395,-1,342,397,396,-1,406,394,396,-1,405,394,406,-1,26,393,27,-1,26,407,393,-1,274,29,249,-1,274,30,29,-1,183,281,286,-1,183,244,281,-1,54,388,390,-1,53,388,54,-1,271,281,244,-1,281,271,282,-1,408,409,410,-1,408,411,409,-1,264,366,265,-1,264,412,366,-1,226,297,296,-1,297,226,227,-1,297,413,414,-1,413,297,415,-1,416,417,418,-1,239,417,416,-1,419,238,420,-1,421,238,419,-1,178,422,391,-1,422,178,179,-1,390,280,54,-1,390,285,280,-1,389,290,423,-1,389,55,290,-1,389,53,55,-1,289,267,288,-1,289,270,267,-1,340,424,339,-1,425,424,340,-1,426,427,428,-1,426,429,427,-1,430,73,429,-1,186,73,430,-1,431,107,108,-1,105,107,431,-1,355,432,433,-1,355,383,432,-1,434,43,435,-1,43,434,74,-1,235,380,263,-1,235,382,380,-1,84,261,381,-1,436,261,84,-1,380,221,381,-1,222,221,380,-1,437,78,309,-1,437,382,78,-1,438,394,187,-1,394,438,395,-1,439,89,440,-1,89,439,87,-1,95,311,220,-1,311,95,441,-1,409,442,443,-1,444,442,409,-1,141,211,411,-1,212,211,141,-1,378,203,17,-1,315,203,378,-1,377,379,327,-1,377,318,379,-1,210,445,446,-1,445,210,314,-1,338,447,448,-1,338,337,447,-1,449,450,451,-1,450,449,452,-1,453,454,455,-1,454,453,456,-1,343,395,438,-1,342,395,343,-1,88,204,457,-1,204,88,87,-1,439,359,205,-1,359,439,458,-1,384,459,460,-1,384,461,459,-1,462,113,463,-1,113,462,441,-1,334,347,376,-1,334,330,347,-1,404,375,23,-1,404,335,375,-1,443,371,370,-1,443,442,371,-1,373,300,398,-1,373,372,300,-1,368,336,333,-1,336,368,337,-1,364,464,465,-1,466,464,364,-1,467,431,262,-1,465,431,467,-1,138,366,287,-1,366,138,137,-1,265,468,362,-1,265,140,468,-1,82,467,436,-1,82,365,467,-1,363,117,362,-1,363,218,117,-1,469,470,313,-1,469,471,470,-1,269,345,350,-1,269,268,345,-1,267,350,352,-1,267,269,350,-1,304,472,305,-1,304,301,472,-1,473,361,310,-1,361,473,474,-1,243,360,49,-1,243,475,360,-1,468,112,476,-1,468,259,112,-1,195,477,198,-1,195,331,477,-1,478,199,479,-1,478,192,199,-1,161,480,481,-1,161,164,480,-1,411,142,141,-1,411,408,142,-1,209,212,143,-1,114,212,209,-1,205,215,206,-1,205,359,215,-1,37,50,52,-1,50,37,358,-1,58,149,412,-1,58,38,149,-1,482,429,426,-1,482,430,429,-1,384,356,217,-1,356,384,460,-1,386,344,387,-1,386,266,344,-1,457,206,483,-1,457,204,206,-1,484,387,344,-1,485,387,484,-1,383,308,432,-1,383,486,308,-1,44,75,307,-1,43,75,44,-1,242,351,292,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcuboid_Geo_5_295_coordIndex_3()
		{
			int[] value = {352,351,242,-1,110,487,237,-1,110,109,487,-1,41,236,488,-1,236,41,40,-1,489,319,349,-1,489,490,319,-1,491,14,13,-1,491,197,14,-1,346,13,320,-1,346,491,13,-1,375,21,23,-1,375,322,21,-1,160,99,325,-1,99,160,166,-1,207,492,493,-1,208,492,207,-1,328,163,162,-1,328,16,163,-1,200,375,376,-1,200,322,375,-1,299,492,208,-1,299,326,492,-1,68,175,251,-1,68,179,175,-1,417,46,494,-1,46,417,239,-1,495,7,294,-1,7,495,8,-1,350,233,232,-1,345,233,350,-1,496,63,272,-1,496,64,63,-1,5,294,7,-1,231,294,5,-1,497,302,435,-1,497,225,302,-1,471,484,470,-1,471,459,484,-1,498,461,458,-1,498,485,461,-1,57,386,385,-1,56,386,57,-1,481,483,214,-1,480,483,481,-1,214,147,481,-1,147,214,216,-1,499,277,276,-1,499,341,277,-1,500,339,424,-1,500,501,339,-1,456,501,500,-1,501,456,453,-1,499,453,452,-1,499,501,453,-1,279,278,502,-1,62,278,279,-1,194,455,454,-1,455,194,193,-1,451,503,103,-1,451,450,503,-1,278,449,448,-1,341,449,278,-1,337,190,447,-1,337,368,190,-1,336,330,334,-1,336,101,330,-1,478,103,503,-1,478,104,103,-1,477,163,165,-1,163,477,164,-1,329,491,346,-1,479,491,329,-1,328,378,17,-1,328,493,378,-1,326,379,492,-1,379,326,327,-1,377,167,348,-1,167,377,93,-1,159,348,160,-1,159,316,348,-1,19,324,323,-1,325,324,19,-1,399,322,202,-1,399,21,322,-1,12,320,13,-1,320,12,321,-1,504,201,321,-1,201,504,202,-1,490,12,319,-1,12,490,505,-1,315,506,203,-1,315,317,506,-1,20,504,505,-1,504,20,402,-1,316,489,317,-1,489,316,159,-1,86,186,430,-1,86,187,186,-1,161,207,162,-1,207,161,146,-1,313,462,469,-1,313,312,462,-1,114,94,213,-1,114,96,94,-1,168,374,166,-1,410,374,168,-1,354,310,151,-1,354,473,310,-1,370,374,443,-1,370,100,374,-1,472,371,474,-1,371,472,372,-1,309,486,437,-1,308,486,309,-1,191,435,302,-1,191,434,435,-1,303,433,306,-1,433,303,355,-1,372,301,300,-1,372,472,301,-1,304,434,191,-1,306,434,304,-1,368,188,190,-1,368,369,188,-1,335,367,333,-1,367,335,404,-1,507,42,392,-1,497,42,507,-1,227,415,297,-1,227,507,415,-1,508,509,252,-1,508,414,509,-1,494,413,417,-1,413,494,510,-1,509,511,229,-1,509,510,511,-1,511,294,295,-1,511,495,294,-1,230,234,131,-1,230,295,234,-1,512,513,241,-1,513,512,291,-1,512,158,152,-1,512,157,158,-1,109,61,487,-1,61,109,59,-1,60,293,421,-1,60,155,293,-1,488,420,41,-1,420,488,419,-1,513,292,351,-1,291,292,513,-1,268,290,255,-1,290,268,270,-1,289,128,423,-1,129,128,289,-1,514,121,123,-1,514,134,121,-1,475,139,360,-1,139,475,515,-1,48,149,51,-1,48,111,149,-1,388,124,126,-1,388,389,124,-1,286,280,285,-1,286,281,280,-1,502,448,447,-1,502,278,448,-1,391,340,275,-1,391,422,340,-1,67,393,425,-1,67,66,393,-1,516,426,517,-1,426,516,482,-1,427,274,248,-1,427,72,274,-1,186,25,73,-1,185,25,186,-1,30,72,28,-1,72,30,274,-1,29,273,249,-1,29,35,273,-1,496,298,180,-1,296,298,496,-1,6,351,4,-1,6,513,351,-1,139,260,136,-1,139,515,260,-1,287,412,149,-1,287,366,412,-1,120,265,362,-1,265,120,266,-1,112,466,476,-1,466,112,71,-1,436,262,261,-1,467,262,436,-1,485,385,387,-1,498,385,485,-1,344,470,484,-1,344,119,470,-1,447,189,502,-1,189,447,190,-1,158,105,258,-1,158,106,105,-1,258,464,70,-1,464,258,105,-1,123,69,514,-1,118,69,123,-1,476,362,468,-1,476,363,362,-1,514,260,515,-1,260,514,69,-1,154,123,122,-1,154,153,123,-1,132,234,233,-1,132,131,234,-1,228,177,176,-1,177,228,253,-1,180,508,175,-1,180,298,508,-1,171,273,32,-1,273,171,184,-1,247,182,358,-1,247,246,182,-1,407,425,393,-1,407,424,425,-1,500,396,456,-1,500,406,396,-1,36,357,37,-1,36,428,357,-1,66,31,393,-1,66,33,31,-1,181,358,182,-1,358,181,50,-1,36,57,517,-1,36,38,57,-1,134,515,475,-1,134,514,515,-1,130,135,127,-1,130,121,135,-1,124,423,128,-1,389,423,124,-1,241,6,10,-1,241,513,6,-1,41,416,172,-1,41,420,416,-1,421,45,238,-1,45,421,293,-1,487,419,488,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlcuboid_Geo_5_295_coordIndex_4()
		{
			int[] value = {487,61,419,-1,59,155,60,-1,156,155,59,-1,152,291,512,-1,154,291,152,-1,241,157,512,-1,157,241,240,-1,131,254,253,-1,254,131,133,-1,295,229,511,-1,229,295,230,-1,510,495,511,-1,510,494,495,-1,229,252,509,-1,252,229,228,-1,414,510,509,-1,414,413,510,-1,507,418,415,-1,507,392,418,-1,225,507,227,-1,225,497,507,-1,398,97,373,-1,403,97,398,-1,306,74,434,-1,306,433,74,-1,437,223,222,-1,486,223,437,-1,473,303,305,-1,354,303,473,-1,373,100,370,-1,373,97,100,-1,474,442,361,-1,474,371,442,-1,444,361,442,-1,361,444,219,-1,211,219,444,-1,211,213,219,-1,82,218,365,-1,82,79,218,-1,446,209,210,-1,463,209,446,-1,498,516,385,-1,498,440,516,-1,147,356,314,-1,147,216,356,-1,299,148,144,-1,208,148,299,-1,440,482,516,-1,89,482,440,-1,343,483,332,-1,343,457,483,-1,20,490,18,-1,505,490,20,-1,202,402,399,-1,202,504,402,-1,349,317,489,-1,349,506,317,-1,321,505,504,-1,321,12,505,-1,506,14,400,-1,506,349,14,-1,348,318,377,-1,348,316,318,-1,378,492,379,-1,493,492,378,-1,197,479,199,-1,197,491,479,-1,198,165,196,-1,165,198,477,-1,192,503,193,-1,192,478,503,-1,338,103,102,-1,103,338,451,-1,341,452,449,-1,341,499,452,-1,454,332,194,-1,397,332,454,-1,279,189,302,-1,279,502,189,-1,193,450,455,-1,193,503,450,-1,424,406,500,-1,407,406,424,-1,276,501,499,-1,339,501,276,-1,214,206,215,-1,206,214,483,-1,480,332,483,-1,480,331,332,-1,508,173,175,-1,173,508,252,-1,385,517,57,-1,385,516,517,-1,445,459,471,-1,445,460,459,-1,250,32,34,-1,250,169,32,-1,302,224,279,-1,225,224,302,-1,177,244,170,-1,177,254,244,-1,279,272,63,-1,272,279,224,-1,180,64,496,-1,180,178,64,-1,231,4,232,-1,4,231,5,-1,46,495,494,-1,8,495,46,-1,172,418,392,-1,416,418,172,-1,435,42,497,-1,435,43,42,-1,162,493,328,-1,207,493,162,-1,90,326,299,-1,90,92,326,-1,325,98,324,-1,98,325,99,-1,201,376,347,-1,200,376,201,-1,197,400,14,-1,197,196,400,-1,15,196,165,-1,401,196,15,-1,400,196,401,-1,159,490,489,-1,159,18,490,-1,155,240,293,-1,157,240,155,-1,237,488,236,-1,488,237,487,-1,486,353,223,-1,383,353,486,-1,307,432,308,-1,432,307,75,-1,223,150,3,-1,223,353,150,-1,386,264,266,-1,386,56,264,-1,461,484,459,-1,461,485,484,-1,89,430,482,-1,89,86,430,-1,248,428,427,-1,248,357,428,-1,331,164,477,-1,331,480,164,-1,410,91,408,-1,410,168,91,-1,161,147,146,-1,147,161,481,-1,479,104,478,-1,329,104,479,-1,192,198,199,-1,192,195,198,-1,140,259,468,-1,140,136,259,-1,475,135,134,-1,475,243,135,-1,474,305,472,-1,305,474,473,-1,128,125,124,-1,125,128,127,-1,288,352,242,-1,288,267,352,-1,255,345,268,-1,345,255,257,-1,312,115,311,-1,115,312,116,-1,313,119,116,-1,313,470,119,-1,446,471,469,-1,471,446,445,-1,463,114,209,-1,114,463,113,-1,70,466,71,-1,464,466,70,-1,230,253,228,-1,230,131,253,-1,287,47,138,-1,287,111,47,-1,365,465,467,-1,364,465,365,-1,262,108,110,-1,431,108,262,-1,476,364,363,-1,476,466,364,-1,465,105,431,-1,464,105,465,-1,107,156,59,-1,106,156,107,-1,337,101,336,-1,101,337,102,-1,98,403,24,-1,97,403,98,-1,95,113,441,-1,96,113,95,-1,469,463,446,-1,463,469,462,-1,384,458,461,-1,384,359,458,-1,205,87,439,-1,205,204,87,-1,438,457,343,-1,457,438,88,-1,456,397,454,-1,397,456,396,-1,452,455,450,-1,455,452,453,-1,448,451,338,-1,451,448,449,-1,460,314,356,-1,460,445,314,-1,408,90,142,-1,408,91,90,-1,444,411,211,-1,444,409,411,-1,441,312,311,-1,312,441,462,-1,458,440,498,-1,440,458,439,-1,88,187,86,-1,187,88,438,-1,309,77,307,-1,309,78,77,-1,222,382,437,-1,222,380,382,-1,85,381,221,-1,85,84,381,-1,80,436,84,-1,82,436,80,-1,353,151,150,-1,354,151,353,-1,433,75,74,-1,433,432,75,-1,108,59,109,-1,107,59,108,-1,428,517,426,-1,517,428,36,-1,72,429,73,-1,72,427,429,-1,425,422,67,-1,425,340,422,-1,270,423,290,-1,289,423,270,-1,33,68,34,-1,33,66,68,-1,67,179,68,-1,67,422,179,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlcuboid_Geo_5_295_coordIndex_5()
		{
			int[] value = {61,421,419,-1,60,421,61,-1,420,239,416,-1,238,239,420,-1,417,415,418,-1,417,413,415,-1,298,414,508,-1,414,298,297,-1,272,296,496,-1,296,272,226,-1,412,56,58,-1,264,56,412,-1,410,443,374,-1,410,409,443,-1,126,390,388,-1,126,283,390,-1,286,50,181,-1,50,286,284,-1,405,407,26,-1,405,406,407,-1,33,29,31,-1,35,29,33,-1,26,185,405,-1,25,185,26,-1,24,404,23,-1,24,403,404,-1,323,20,19,-1,20,323,402,-1,203,400,15,-1,203,506,400,-1,10,5,7,-1,6,5,10,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlcuboid_Geo_5_295_normalIndex_1()
		{
			int[] value = {228,290,173,-1,304,290,228,-1,205,303,273,-1,341,287,292,-1,292,357,341,-1,173,290,264,-1,480,510,503,-1,415,339,376,-1,444,464,470,-1,477,422,373,-1,422,301,373,-1,362,388,366,-1,366,337,362,-1,342,344,354,-1,261,346,324,-1,261,323,346,-1,132,34,24,-1,267,157,175,-1,361,424,348,-1,249,287,246,-1,58,69,74,-1,5,9,0,-1,48,128,39,-1,12,107,20,-1,224,206,190,-1,492,471,461,-1,461,490,492,-1,398,457,409,-1,194,200,259,-1,362,325,343,-1,362,337,325,-1,424,473,413,-1,112,218,214,-1,112,157,218,-1,56,53,30,-1,56,59,53,-1,95,53,111,-1,111,176,95,-1,312,229,308,-1,312,236,229,-1,89,101,265,-1,101,258,265,-1,208,77,173,-1,208,93,77,-1,159,225,271,-1,271,213,159,-1,514,516,500,-1,500,485,514,-1,152,217,216,-1,211,181,180,-1,55,69,58,-1,280,194,259,-1,75,93,86,-1,21,29,41,-1,200,194,146,-1,72,41,29,-1,72,60,41,-1,31,85,45,-1,81,137,108,-1,137,69,108,-1,83,27,2,-1,2,16,83,-1,266,278,220,-1,13,22,31,-1,235,148,114,-1,114,171,235,-1,148,235,136,-1,52,23,28,-1,23,4,28,-1,35,42,47,-1,35,38,42,-1,24,9,19,-1,24,0,9,-1,349,358,290,-1,260,153,174,-1,146,45,153,-1,241,253,305,-1,253,277,305,-1,444,411,379,-1,50,97,250,-1,250,219,50,-1,387,250,339,-1,339,415,387,-1,262,379,300,-1,300,184,262,-1,268,202,261,-1,202,186,261,-1,175,247,267,-1,309,332,381,-1,284,215,268,-1,215,202,268,-1,493,381,486,-1,493,369,381,-1,10,80,64,-1,80,203,64,-1,384,365,363,-1,228,173,176,-1,173,95,176,-1,416,482,465,-1,416,466,482,-1,454,478,462,-1,462,438,454,-1,474,499,419,-1,499,427,419,-1,501,508,432,-1,415,376,407,-1,233,154,237,-1,139,38,67,-1,139,42,38,-1,35,70,28,-1,35,71,70,-1,86,168,46,-1,86,198,168,-1,189,210,113,-1,210,158,113,-1,56,41,87,-1,264,242,198,-1,198,208,264,-1,54,53,95,-1,54,30,53,-1,304,238,282,-1,282,347,304,-1,421,390,355,-1,390,333,355,-1,269,299,291,-1,345,244,223,-1,223,329,345,-1,131,121,112,-1,131,143,121,-1,157,267,218,-1,193,249,246,-1,246,188,193,-1,314,353,357,-1,85,16,88,-1,85,31,16,-1,137,83,22,-1,22,65,137,-1,24,20,107,-1,24,34,0,-1,203,122,64,-1,490,495,492,-1,231,164,270,-1,270,328,231,-1,203,80,231,-1,122,203,186,-1,306,383,332,-1,332,268,306,-1,307,284,309,-1,307,269,284,-1,215,239,161,-1,36,169,183,-1,260,187,153,-1,260,277,187,-1,194,274,256,-1,194,280,274,-1,146,153,187,-1,187,200,146,-1,141,140,160,-1,140,180,160,-1,43,82,109,-1,274,235,256,-1,33,7,63,-1,33,1,7,-1,220,182,122,-1,122,161,220,-1,421,355,394,-1,323,261,279,-1,279,203,231,-1,231,328,279,-1,270,340,328,-1,472,435,456,-1,456,495,472,-1,492,456,487,-1,492,495,456,-1,492,458,471,-1,51,32,142,-1,68,11,61,-1,11,15,61,-1,51,142,128,-1,55,84,19,-1,74,137,65,-1,74,69,137,-1,37,2,3,-1,39,169,36,-1,36,6,39,-1,240,174,130,-1,174,85,130,-1,249,248,314,-1,314,292,249,-1,157,112,121,-1,143,131,160,-1,160,180,143,-1,352,345,329,-1,329,319,352,-1,322,320,318,-1,89,17,23,-1,17,4,23,-1,275,331,416,-1,466,467,482,-1,414,402,377,-1,414,434,402,-1,335,360,297,-1,238,304,228,-1,264,290,336,-1,290,358,336,-1,26,30,54,-1,26,21,30,-1,40,78,29,-1,66,35,47,-1,392,385,401,-1,392,370,385,-1,503,496,480,-1,508,513,446,-1,507,501,432,-1,449,393,422,-1,379,404,464,-1,252,265,356,-1,339,263,376,-1,485,429,506,-1,506,514,485,-1,396,462,399,-1,396,438,462,-1,412,494,382,-1,412,505,494,-1,516,511,512,-1,468,472,469,-1,468,435,472,-1,456,450,487,-1,399,408,378,-1,166,109,72,-1,109,60,72,-1,309,284,332,-1,284,268,332,-1,223,183,278,-1,223,94,183,-1,306,409,383,-1,306,324,409,-1,381,332,383,-1,300,258,184,-1,258,101,184,-1,225,301,393,-1,301,422,393,-1,513,508,502,-1,508,517,502,-1,300,379,364,-1,436,496,503,-1,253,217,277,-1,138,205,144,-1,144,90,138,-1,88,130,85,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlcuboid_Geo_5_295_normalIndex_2()
		{
			int[] value = {205,138,244,-1,380,414,389,-1,380,428,414,-1,98,113,158,-1,270,164,167,-1,25,34,167,-1,167,164,25,-1,210,116,158,-1,186,202,122,-1,28,4,35,-1,4,38,35,-1,502,517,429,-1,517,506,429,-1,58,74,104,-1,58,104,114,-1,104,171,114,-1,242,336,272,-1,242,264,336,-1,331,466,416,-1,331,402,466,-1,2,37,16,-1,37,88,16,-1,169,182,220,-1,220,183,169,-1,220,278,183,-1,79,41,60,-1,66,71,35,-1,156,185,117,-1,117,87,156,-1,82,148,136,-1,82,110,148,-1,412,294,433,-1,294,359,433,-1,230,251,226,-1,226,207,230,-1,209,271,262,-1,209,213,271,-1,382,494,426,-1,494,515,426,-1,264,208,173,-1,258,356,265,-1,258,351,356,-1,392,375,367,-1,367,370,392,-1,28,46,52,-1,54,173,77,-1,54,95,173,-1,41,30,21,-1,41,56,30,-1,160,197,162,-1,162,141,160,-1,131,112,204,-1,112,214,204,-1,428,380,397,-1,158,116,133,-1,126,125,151,-1,62,48,18,-1,129,68,61,-1,491,461,493,-1,491,490,461,-1,490,491,472,-1,472,495,490,-1,68,108,69,-1,169,142,182,-1,64,15,10,-1,142,169,39,-1,39,128,142,-1,68,69,11,-1,69,9,11,-1,302,361,247,-1,361,267,247,-1,314,357,292,-1,218,267,335,-1,267,348,335,-1,9,5,11,-1,354,366,403,-1,395,400,417,-1,408,399,423,-1,344,366,354,-1,344,337,366,-1,243,275,359,-1,359,294,243,-1,459,422,477,-1,488,448,415,-1,464,444,379,-1,416,359,275,-1,249,292,287,-1,228,176,238,-1,290,304,349,-1,348,267,361,-1,459,449,422,-1,439,449,459,-1,294,192,243,-1,281,192,294,-1,391,363,395,-1,384,363,391,-1,408,417,400,-1,408,423,417,-1,406,395,417,-1,391,395,406,-1,388,403,366,-1,388,405,403,-1,340,342,328,-1,340,344,342,-1,64,32,15,-1,64,122,32,-1,128,62,129,-1,48,62,128,-1,182,32,122,-1,32,182,142,-1,91,201,155,-1,91,165,201,-1,43,110,82,-1,43,14,110,-1,355,320,322,-1,320,355,333,-1,320,334,317,-1,334,320,330,-1,191,288,285,-1,188,288,191,-1,199,193,172,-1,212,193,199,-1,493,489,491,-1,489,493,486,-1,129,51,128,-1,129,61,51,-1,18,6,8,-1,18,39,6,-1,18,48,39,-1,3,33,37,-1,3,1,33,-1,469,440,468,-1,430,440,469,-1,196,289,195,-1,196,286,289,-1,311,343,286,-1,365,343,311,-1,147,216,211,-1,152,216,147,-1,428,410,445,-1,428,397,410,-1,484,424,463,-1,424,484,473,-1,131,197,160,-1,131,204,197,-1,111,141,162,-1,76,141,111,-1,197,238,162,-1,282,238,197,-1,276,214,297,-1,276,204,214,-1,374,395,363,-1,395,374,400,-1,149,236,150,-1,236,149,229,-1,77,26,54,-1,26,77,49,-1,201,245,234,-1,221,245,201,-1,52,168,165,-1,46,168,52,-1,375,407,376,-1,392,407,375,-1,351,367,356,-1,351,370,367,-1,71,103,105,-1,103,71,66,-1,512,504,509,-1,512,511,504,-1,479,476,497,-1,476,479,441,-1,437,447,455,-1,447,437,442,-1,378,400,374,-1,408,400,378,-1,308,233,315,-1,233,308,229,-1,149,116,154,-1,116,149,118,-1,133,124,119,-1,133,127,124,-1,73,75,96,-1,75,73,49,-1,494,517,515,-1,494,506,517,-1,281,426,373,-1,281,382,426,-1,234,251,230,-1,234,245,251,-1,207,275,243,-1,207,226,275,-1,433,505,412,-1,505,433,511,-1,185,170,163,-1,222,170,185,-1,115,147,140,-1,163,147,115,-1,114,110,84,-1,110,114,148,-1,82,177,79,-1,82,136,177,-1,59,115,76,-1,59,117,115,-1,156,41,79,-1,156,87,41,-1,100,92,78,-1,100,99,92,-1,63,94,138,-1,63,7,94,-1,33,138,90,-1,33,63,138,-1,402,295,377,-1,402,331,295,-1,368,272,336,-1,272,368,293,-1,65,104,74,-1,65,57,104,-1,177,280,232,-1,177,274,280,-1,438,372,419,-1,438,396,372,-1,452,427,425,-1,452,454,427,-1,50,254,102,-1,50,219,254,-1,165,23,52,-1,165,91,23,-1,70,46,28,-1,86,46,70,-1,154,210,237,-1,154,116,210,-1,34,5,0,-1,5,34,25,-1,20,19,14,-1,20,24,19,-1,227,286,196,-1,227,311,286,-1,133,98,158,-1,98,133,119,-1,125,166,151,-1,125,109,166,-1,315,237,283,-1,315,233,237,-1,135,151,166,-1,120,151,135,-1,397,360,410,-1,397,350,360,-1,348,413,335,-1,424,413,348,-1,88,144,130,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlcuboid_Geo_5_295_normalIndex_3()
		{
			int[] value = {90,144,88,-1,180,179,143,-1,180,181,179,-1,175,121,178,-1,121,175,157,-1,420,496,436,-1,420,460,496,-1,498,503,510,-1,498,499,503,-1,502,510,513,-1,502,498,510,-1,426,477,373,-1,426,507,477,-1,379,271,404,-1,271,379,262,-1,139,257,296,-1,67,257,139,-1,263,250,97,-1,263,339,250,-1,501,426,515,-1,501,507,426,-1,17,257,67,-1,17,252,257,-1,409,381,383,-1,409,486,381,-1,288,246,298,-1,246,288,188,-1,321,341,352,-1,341,321,287,-1,138,223,244,-1,94,223,138,-1,371,471,394,-1,371,461,471,-1,303,352,341,-1,345,352,303,-1,386,467,463,-1,386,390,467,-1,99,135,92,-1,99,124,135,-1,123,127,118,-1,123,120,127,-1,107,125,126,-1,12,125,107,-1,102,283,189,-1,254,283,102,-1,189,47,102,-1,47,189,113,-1,431,456,435,-1,431,450,456,-1,451,468,440,-1,451,443,468,-1,442,443,451,-1,443,442,437,-1,431,437,441,-1,431,443,437,-1,458,487,481,-1,492,487,458,-1,462,455,447,-1,455,462,478,-1,497,483,500,-1,497,476,483,-1,487,479,509,-1,450,479,487,-1,511,465,504,-1,511,433,465,-1,505,506,494,-1,505,514,506,-1,452,500,483,-1,452,485,500,-1,372,250,387,-1,250,372,219,-1,429,498,502,-1,425,498,429,-1,263,375,376,-1,263,296,375,-1,252,367,257,-1,367,252,356,-1,351,300,364,-1,300,351,258,-1,411,364,379,-1,411,385,364,-1,464,393,449,-1,404,393,464,-1,459,507,432,-1,459,477,507,-1,480,513,510,-1,513,480,446,-1,453,508,446,-1,508,453,432,-1,460,480,496,-1,480,460,475,-1,392,418,407,-1,392,401,418,-1,470,453,475,-1,453,470,439,-1,385,420,401,-1,420,385,411,-1,312,365,311,-1,312,363,365,-1,50,139,97,-1,139,50,42,-1,78,73,100,-1,78,40,73,-1,86,208,198,-1,86,93,208,-1,184,209,262,-1,155,209,184,-1,389,336,358,-1,389,368,336,-1,230,209,234,-1,230,213,209,-1,295,251,293,-1,251,295,226,-1,297,350,276,-1,360,350,297,-1,466,463,467,-1,466,484,463,-1,414,445,434,-1,445,414,428,-1,226,331,275,-1,226,295,331,-1,402,484,466,-1,434,484,402,-1,433,416,465,-1,433,359,416,-1,382,294,412,-1,294,382,281,-1,338,361,302,-1,386,361,338,-1,333,330,320,-1,333,338,330,-1,316,310,307,-1,316,317,310,-1,298,334,288,-1,334,298,326,-1,310,327,299,-1,310,326,327,-1,327,352,319,-1,327,321,352,-1,291,329,266,-1,291,319,329,-1,313,255,353,-1,255,313,240,-1,313,277,260,-1,313,305,277,-1,181,190,179,-1,190,181,224,-1,206,248,212,-1,206,241,248,-1,178,172,175,-1,172,178,199,-1,255,130,144,-1,240,130,255,-1,7,6,36,-1,6,7,1,-1,3,27,8,-1,2,27,3,-1,44,31,45,-1,44,13,31,-1,57,171,104,-1,171,57,106,-1,69,19,9,-1,69,55,19,-1,62,81,108,-1,62,18,81,-1,15,51,61,-1,15,32,51,-1,481,509,504,-1,481,487,509,-1,491,469,472,-1,491,489,469,-1,457,403,430,-1,457,398,403,-1,145,196,134,-1,196,145,227,-1,289,340,270,-1,289,325,340,-1,365,362,343,-1,384,362,365,-1,344,325,337,-1,325,344,340,-1,342,279,328,-1,342,323,279,-1,371,318,369,-1,322,318,371,-1,273,144,205,-1,273,255,144,-1,171,256,235,-1,171,106,256,-1,84,14,19,-1,84,110,14,-1,60,82,79,-1,82,60,109,-1,280,222,232,-1,222,280,259,-1,76,140,141,-1,115,140,76,-1,120,126,151,-1,123,126,120,-1,166,92,135,-1,166,72,92,-1,504,482,481,-1,482,504,465,-1,277,152,187,-1,277,217,152,-1,187,170,200,-1,170,187,152,-1,45,194,44,-1,146,194,45,-1,232,79,177,-1,232,156,79,-1,44,256,106,-1,256,44,194,-1,174,45,85,-1,174,153,45,-1,278,329,223,-1,278,266,329,-1,269,215,284,-1,215,269,239,-1,369,316,381,-1,369,318,316,-1,186,279,261,-1,279,186,203,-1,164,80,25,-1,164,231,80,-1,405,430,403,-1,405,440,430,-1,451,417,442,-1,451,406,417,-1,132,167,34,-1,132,195,167,-1,398,354,403,-1,398,346,354,-1,10,25,80,-1,25,10,5,-1,132,107,134,-1,132,24,107,-1,13,106,57,-1,13,44,106,-1,16,22,83,-1,16,31,22,-1,81,8,27,-1,18,8,81,-1,353,273,357,-1,353,255,273,-1,175,191,247,-1,175,172,191,-1,212,249,193,-1,249,212,248,-1,179,199,178,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlcuboid_Geo_5_295_normalIndex_4()
		{
			int[] value = {179,190,199,-1,224,241,206,-1,253,241,224,-1,260,240,313,-1,174,240,260,-1,353,305,313,-1,305,353,314,-1,266,161,239,-1,161,266,220,-1,319,299,327,-1,299,319,291,-1,326,321,327,-1,326,298,321,-1,299,307,310,-1,307,299,269,-1,317,326,310,-1,317,334,326,-1,338,285,330,-1,338,302,285,-1,390,338,333,-1,390,386,338,-1,243,159,207,-1,192,159,243,-1,434,473,484,-1,434,445,473,-1,276,347,282,-1,350,347,276,-1,368,414,377,-1,389,414,368,-1,207,213,230,-1,207,159,213,-1,293,245,272,-1,293,251,245,-1,221,272,245,-1,272,221,242,-1,168,242,221,-1,168,198,242,-1,59,87,117,-1,59,56,87,-1,105,70,71,-1,96,70,105,-1,123,145,126,-1,123,150,145,-1,47,98,66,-1,47,113,98,-1,17,38,4,-1,67,38,17,-1,150,227,145,-1,236,227,150,-1,378,283,399,-1,378,315,283,-1,470,460,444,-1,475,460,470,-1,432,439,459,-1,432,453,439,-1,436,401,420,-1,436,418,401,-1,446,475,453,-1,446,480,475,-1,418,503,488,-1,418,436,503,-1,364,370,351,-1,364,385,370,-1,375,257,367,-1,296,257,375,-1,499,425,427,-1,499,498,425,-1,419,387,474,-1,387,419,372,-1,454,483,478,-1,454,452,483,-1,512,500,516,-1,500,512,497,-1,450,441,479,-1,450,431,441,-1,447,399,462,-1,423,399,447,-1,458,482,467,-1,458,481,482,-1,478,476,455,-1,478,483,476,-1,440,406,451,-1,405,406,440,-1,435,443,431,-1,468,443,435,-1,189,237,210,-1,237,189,283,-1,254,399,283,-1,254,396,399,-1,316,309,381,-1,309,316,307,-1,126,134,107,-1,126,145,134,-1,103,124,99,-1,103,119,124,-1,306,261,324,-1,306,268,261,-1,467,421,458,-1,390,421,467,-1,215,122,202,-1,215,161,122,-1,458,394,471,-1,394,458,421,-1,369,461,371,-1,369,493,461,-1,345,205,244,-1,205,345,303,-1,246,321,298,-1,287,321,246,-1,247,285,302,-1,191,285,247,-1,463,361,386,-1,463,424,361,-1,97,296,263,-1,139,296,97,-1,89,252,17,-1,89,265,252,-1,404,225,393,-1,225,404,271,-1,508,515,517,-1,501,515,508,-1,499,488,503,-1,499,474,488,-1,415,474,387,-1,448,474,415,-1,488,474,448,-1,411,460,420,-1,411,444,460,-1,241,314,248,-1,305,314,241,-1,143,178,121,-1,178,143,179,-1,350,380,347,-1,397,380,350,-1,335,410,360,-1,410,335,413,-1,347,349,304,-1,347,380,349,-1,125,43,109,-1,125,12,43,-1,127,135,124,-1,127,120,135,-1,236,311,227,-1,236,312,311,-1,270,195,289,-1,270,167,195,-1,396,219,372,-1,396,254,219,-1,155,101,91,-1,155,184,101,-1,50,47,42,-1,47,50,102,-1,425,485,452,-1,429,485,425,-1,454,419,427,-1,454,438,419,-1,136,274,177,-1,136,235,274,-1,57,22,13,-1,57,65,22,-1,293,377,295,-1,377,293,368,-1,27,137,81,-1,137,27,83,-1,37,90,88,-1,37,33,90,-1,36,94,7,-1,94,36,183,-1,40,21,26,-1,21,40,29,-1,78,72,29,-1,78,92,72,-1,105,99,100,-1,99,105,103,-1,96,86,70,-1,86,96,75,-1,200,222,259,-1,170,222,200,-1,291,239,269,-1,291,266,239,-1,84,58,114,-1,84,55,58,-1,117,163,115,-1,185,163,117,-1,140,211,180,-1,147,211,140,-1,232,185,156,-1,232,222,185,-1,163,152,147,-1,170,152,163,-1,216,253,224,-1,217,253,216,-1,511,514,505,-1,514,511,516,-1,225,192,301,-1,159,192,225,-1,77,75,49,-1,93,75,77,-1,100,96,105,-1,96,100,73,-1,133,118,127,-1,133,116,118,-1,154,229,149,-1,154,233,229,-1,374,315,378,-1,315,374,308,-1,442,423,447,-1,423,442,417,-1,441,455,476,-1,455,441,437,-1,509,497,512,-1,497,509,479,-1,119,66,98,-1,119,103,66,-1,91,89,23,-1,91,101,89,-1,221,165,168,-1,221,201,165,-1,49,40,26,-1,40,49,73,-1,118,150,123,-1,150,118,149,-1,308,363,312,-1,363,308,374,-1,297,218,335,-1,297,214,218,-1,282,204,276,-1,282,197,204,-1,176,162,238,-1,176,111,162,-1,53,76,111,-1,59,76,53,-1,380,358,349,-1,389,358,380,-1,445,413,473,-1,445,410,413,-1,211,224,181,-1,216,224,211,-1,195,134,196,-1,134,195,132,-1,325,286,343,-1,325,289,286,-1,430,489,457,-1,430,469,489,-1,1,8,6,-1,3,8,1,-1,346,409,324,-1,346,398,409,-1,457,486,409,-1,457,489,486,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlcuboid_Geo_5_295_normalIndex_5()
		{
			int[] value = {190,212,199,-1,206,212,190,-1,172,188,191,-1,193,188,172,-1,288,330,285,-1,288,334,330,-1,318,317,316,-1,317,318,320,-1,394,322,371,-1,322,394,355,-1,14,12,20,-1,43,12,14,-1,155,234,209,-1,155,201,234,-1,108,129,62,-1,108,68,129,-1,15,5,10,-1,5,15,11,-1,391,405,388,-1,391,406,405,-1,346,342,354,-1,323,342,346,-1,388,384,391,-1,362,384,388,-1,301,281,373,-1,301,192,281,-1,449,470,464,-1,470,449,439,-1,407,488,415,-1,407,418,488,-1,357,303,341,-1,273,303,357,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal_Geo_5_301_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,9,12,10,-1,13,14,15,-1,13,16,14,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,24,26,25,-1,27,21,28,-1,29,30,31,-1,31,32,29,-1,33,34,35,-1,34,36,35,-1,37,21,38,-1,39,21,40,-1,41,42,43,-1,42,44,43,-1,45,46,47,-1,45,0,46,-1,48,49,50,-1,48,51,49,-1,52,53,54,-1,52,55,53,-1,56,7,0,-1,7,6,0,-1,57,58,59,-1,59,60,57,-1,0,2,56,-1,61,62,63,-1,61,64,62,-1,65,66,67,-1,68,69,70,-1,68,71,69,-1,72,73,74,-1,75,76,77,-1,75,78,76,-1,69,79,80,-1,69,71,79,-1,76,81,82,-1,76,78,81,-1,83,61,84,-1,85,86,87,-1,86,88,87,-1,47,89,45,-1,47,90,89,-1,91,92,93,-1,93,73,91,-1,94,73,72,-1,95,73,43,-1,52,96,97,-1,97,50,52,-1,98,21,99,-1,40,21,100,-1,101,102,103,-1,102,104,103,-1,88,67,105,-1,67,106,105,-1,107,24,108,-1,107,26,24,-1,109,21,110,-1,38,21,27,-1,91,111,112,-1,91,113,111,-1,84,70,83,-1,70,114,83,-1,115,21,37,-1,22,21,109,-1,23,14,16,-1,23,25,14,-1,116,8,117,-1,117,118,116,-1,86,67,88,-1,86,65,67,-1,119,120,121,-1,101,122,123,-1,101,103,122,-1,124,125,126,-1,124,127,125,-1,28,21,39,-1,80,56,3,-1,56,2,3,-1,41,73,93,-1,74,73,95,-1,128,89,90,-1,128,129,89,-1,130,87,88,-1,88,105,130,-1,131,132,31,-1,31,133,131,-1,24,134,135,-1,135,108,24,-1,86,85,136,-1,136,137,86,-1,80,7,56,-1,80,79,7,-1,48,10,12,-1,12,82,48,-1,76,138,139,-1,73,41,43,-1,67,66,106,-1,66,140,106,-1,85,121,136,-1,85,104,121,-1,130,122,87,-1,122,103,87,-1,83,64,61,-1,89,111,45,-1,89,112,111,-1,8,116,141,-1,141,6,8,-1,99,21,20,-1,50,49,55,-1,55,52,50,-1,110,21,115,-1,74,142,72,-1,74,143,142,-1,100,21,98,-1,101,144,102,-1,145,14,25,-1,25,146,145,-1,147,148,149,-1,147,150,148,-1,35,151,152,-1,35,36,151,-1,153,131,154,-1,155,132,156,-1,157,158,159,-1,160,139,123,-1,97,11,10,-1,161,162,81,-1,49,51,163,-1,5,164,3,-1,5,142,164,-1,162,51,81,-1,162,163,51,-1,44,78,75,-1,44,42,78,-1,114,165,83,-1,114,143,165,-1,140,79,71,-1,117,79,140,-1,68,105,106,-1,166,105,68,-1,63,122,130,-1,62,122,63,-1,123,62,160,-1,123,122,62,-1,158,17,159,-1,18,17,158,-1,167,168,169,-1,168,167,170,-1,171,172,173,-1,172,171,174,-1,175,176,177,-1,176,175,178,-1,179,180,145,-1,180,179,181,-1,182,183,184,-1,182,185,183,-1,186,20,187,-1,20,186,99,-1,188,98,189,-1,98,188,100,-1,39,190,191,-1,40,190,39,-1,27,192,193,-1,28,192,27,-1,194,38,195,-1,38,194,37,-1,196,115,197,-1,115,196,110,-1,198,178,159,-1,199,178,198,-1,168,187,17,-1,187,168,186,-1,172,189,170,-1,189,172,188,-1,191,174,185,-1,190,174,191,-1,193,182,13,-1,192,182,193,-1,180,195,15,-1,195,180,194,-1,176,197,181,-1,197,176,196,-1,200,154,131,-1,154,200,201,-1,202,203,146,-1,202,204,203,-1,205,155,206,-1,205,132,155,-1,153,132,131,-1,156,132,153,-1,207,208,209,-1,208,207,210,-1,211,212,213,-1,214,212,211,-1,215,216,217,-1,215,134,216,-1,201,18,154,-1,201,19,18,-1,148,218,219,-1,148,220,218,-1,53,221,54,-1,221,53,222,-1,222,223,224,-1,222,53,223,-1,152,58,135,-1,152,151,58,-1,57,107,108,-1,57,149,107,-1,119,225,120,-1,119,226,225,-1,227,228,229,-1,227,137,228,-1,150,230,231,-1,230,150,147,-1,107,202,26,-1,219,202,107,-1,102,226,119,-1,102,144,226,-1,183,211,217,-1,183,171,211,-1,53,128,223,-1,53,55,128,-1,49,232,129,-1,49,163,232,-1,92,161,93,-1,92,162,161,-1,143,95,165,-1,95,143,74,-1,94,142,5,-1,72,142,94,-1,111,4,1,-1,113,4,111,-1,213,152,215,-1,152,213,35,-1,203,177,179,-1,206,177,203,-1,19,208,169,-1,208,19,201,-1,34,47,36,-1,34,90,47,-1,233,52,54,-1,233,96,52,-1,126,30,29,-1,125,30,126,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal_Geo_5_301_coordIndex_2()
		{
			int[] value = {220,150,234,-1,220,148,150,-1,230,116,229,-1,141,116,230,-1,124,235,120,-1,236,235,124,-1,127,11,97,-1,127,225,11,-1,129,112,89,-1,232,112,129,-1,104,87,103,-1,87,104,85,-1,136,120,235,-1,136,121,120,-1,237,101,123,-1,237,144,101,-1,12,76,82,-1,12,138,76,-1,84,63,166,-1,63,84,61,-1,69,3,164,-1,3,69,80,-1,66,227,118,-1,66,65,227,-1,119,104,102,-1,119,121,104,-1,216,16,184,-1,23,16,216,-1,6,46,0,-1,6,59,46,-1,137,235,228,-1,136,235,137,-1,212,35,213,-1,35,212,33,-1,171,214,211,-1,171,173,214,-1,81,48,82,-1,81,51,48,-1,217,184,183,-1,217,216,184,-1,147,141,230,-1,147,60,141,-1,141,59,6,-1,60,59,141,-1,11,226,9,-1,11,225,226,-1,118,229,116,-1,227,229,118,-1,132,32,31,-1,132,205,32,-1,146,179,145,-1,146,203,179,-1,155,157,175,-1,155,156,157,-1,83,77,64,-1,75,77,83,-1,175,206,155,-1,206,175,177,-1,219,204,202,-1,219,218,204,-1,127,96,125,-1,96,127,97,-1,158,154,18,-1,154,158,153,-1,20,198,187,-1,20,22,198,-1,131,221,200,-1,221,131,133,-1,94,91,73,-1,91,94,113,-1,215,135,134,-1,215,152,135,-1,214,167,210,-1,214,173,167,-1,207,33,212,-1,33,207,224,-1,234,231,236,-1,231,234,150,-1,91,232,92,-1,91,112,232,-1,9,144,237,-1,9,226,144,-1,118,140,66,-1,117,140,118,-1,166,70,84,-1,166,68,70,-1,64,160,62,-1,160,64,77,-1,164,70,69,-1,70,164,114,-1,126,236,124,-1,236,126,234,-1,97,48,50,-1,97,10,48,-1,120,127,124,-1,120,225,127,-1,236,228,235,-1,231,228,236,-1,149,60,147,-1,149,57,60,-1,234,29,220,-1,126,29,234,-1,30,96,233,-1,96,30,125,-1,223,90,34,-1,90,223,128,-1,151,59,58,-1,59,151,46,-1,222,200,221,-1,222,209,200,-1,204,32,205,-1,32,204,218,-1,36,46,151,-1,47,46,36,-1,1,45,111,-1,1,0,45,-1,5,113,94,-1,5,4,113,-1,95,44,165,-1,43,44,95,-1,42,93,161,-1,93,42,41,-1,92,163,162,-1,232,163,92,-1,129,55,49,-1,128,55,129,-1,209,224,207,-1,209,222,224,-1,210,169,208,-1,167,169,210,-1,231,229,228,-1,229,231,230,-1,65,137,227,-1,65,86,137,-1,149,219,107,-1,149,148,219,-1,135,57,108,-1,135,58,57,-1,224,34,33,-1,224,223,34,-1,31,233,133,-1,31,30,233,-1,220,32,218,-1,220,29,32,-1,54,133,233,-1,133,54,221,-1,139,77,76,-1,139,160,77,-1,158,156,153,-1,158,157,156,-1,134,23,216,-1,134,24,23,-1,217,213,215,-1,211,213,217,-1,212,210,207,-1,210,212,214,-1,204,206,203,-1,204,205,206,-1,146,26,202,-1,25,26,146,-1,201,209,208,-1,201,200,209,-1,178,196,176,-1,196,178,199,-1,181,194,180,-1,194,181,197,-1,195,13,15,-1,193,13,195,-1,192,185,182,-1,191,185,192,-1,174,188,172,-1,188,174,190,-1,170,186,168,-1,186,170,189,-1,187,159,17,-1,198,159,187,-1,109,196,199,-1,110,196,109,-1,197,37,194,-1,37,197,115,-1,38,193,195,-1,27,193,38,-1,28,191,192,-1,39,191,28,-1,190,100,188,-1,100,190,40,-1,189,99,186,-1,99,189,98,-1,22,199,198,-1,22,109,199,-1,183,174,171,-1,174,183,185,-1,13,184,16,-1,13,182,184,-1,145,15,14,-1,15,145,180,-1,177,181,179,-1,181,177,176,-1,175,159,178,-1,175,157,159,-1,170,173,172,-1,170,167,173,-1,169,17,19,-1,169,168,17,-1,12,237,138,-1,237,12,9,-1,139,237,123,-1,138,237,139,-1,166,130,105,-1,63,130,166,-1,106,71,68,-1,106,140,71,-1,79,8,7,-1,8,79,117,-1,165,75,83,-1,165,44,75,-1,78,161,81,-1,78,42,161,-1,164,143,114,-1,164,142,143,-1,1,3,2,-1,4,3,1,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal_Geo_5_301_normalIndex_1()
		{
			int[] value = {126,91,111,-1,130,93,94,-1,208,228,231,-1,27,21,41,-1,27,10,21,-1,196,236,210,-1,196,219,236,-1,77,34,17,-1,136,151,123,-1,225,224,229,-1,224,213,229,-1,174,151,176,-1,128,81,90,-1,90,129,128,-1,74,79,92,-1,79,99,92,-1,149,151,159,-1,175,151,169,-1,32,26,54,-1,26,50,54,-1,83,132,101,-1,83,126,132,-1,2,11,1,-1,2,14,11,-1,5,24,9,-1,5,19,24,-1,198,228,126,-1,228,208,126,-1,205,152,195,-1,195,215,205,-1,126,111,198,-1,120,86,160,-1,120,60,86,-1,218,234,226,-1,212,193,165,-1,212,227,193,-1,69,52,59,-1,46,6,38,-1,46,22,6,-1,193,222,185,-1,193,227,222,-1,6,16,3,-1,6,22,16,-1,95,120,166,-1,190,209,163,-1,209,216,163,-1,101,58,83,-1,101,85,58,-1,49,43,40,-1,40,52,49,-1,70,52,69,-1,66,52,54,-1,5,36,29,-1,29,1,5,-1,146,151,139,-1,169,151,156,-1,98,115,117,-1,115,113,117,-1,216,226,220,-1,226,230,220,-1,207,224,211,-1,207,213,224,-1,119,151,144,-1,159,151,174,-1,49,64,47,-1,49,67,64,-1,166,165,95,-1,165,122,95,-1,153,151,149,-1,123,151,119,-1,225,236,219,-1,225,229,236,-1,232,231,237,-1,237,233,232,-1,209,226,216,-1,209,218,226,-1,114,145,135,-1,98,102,42,-1,98,117,102,-1,140,73,127,-1,140,76,73,-1,176,151,175,-1,185,198,130,-1,198,111,130,-1,32,52,40,-1,59,52,66,-1,65,58,85,-1,65,45,58,-1,181,163,216,-1,216,220,181,-1,37,96,90,-1,90,39,37,-1,224,167,142,-1,142,211,224,-1,209,190,189,-1,189,194,209,-1,185,228,198,-1,185,222,228,-1,2,21,10,-1,10,3,2,-1,6,8,12,-1,52,32,54,-1,226,234,230,-1,234,235,230,-1,190,135,189,-1,190,113,135,-1,181,102,163,-1,102,117,163,-1,95,60,120,-1,58,64,83,-1,58,47,64,-1,231,232,221,-1,221,208,231,-1,139,151,136,-1,1,11,19,-1,19,5,1,-1,144,151,153,-1,59,97,69,-1,59,89,97,-1,156,151,146,-1,98,63,115,-1,223,236,229,-1,229,204,223,-1,199,184,200,-1,199,179,184,-1,92,108,105,-1,92,99,108,-1,53,37,23,-1,104,96,75,-1,71,57,100,-1,28,12,42,-1,29,41,21,-1,31,35,16,-1,11,14,20,-1,94,124,130,-1,94,97,124,-1,35,14,16,-1,35,20,14,-1,50,22,46,-1,50,26,22,-1,122,78,95,-1,122,89,78,-1,235,222,227,-1,237,222,235,-1,212,220,230,-1,202,220,212,-1,160,102,181,-1,86,102,160,-1,42,86,28,-1,42,102,86,-1,57,77,100,-1,34,77,57,-1,61,87,33,-1,87,61,109,-1,103,125,82,-1,125,103,147,-1,106,161,158,-1,161,106,112,-1,203,201,223,-1,201,203,191,-1,180,121,178,-1,180,154,121,-1,134,136,131,-1,136,134,139,-1,157,146,138,-1,146,157,156,-1,175,171,177,-1,169,171,175,-1,174,172,164,-1,176,172,174,-1,143,159,150,-1,159,143,149,-1,141,153,148,-1,153,141,144,-1,116,112,100,-1,118,112,116,-1,87,131,77,-1,131,87,134,-1,125,138,109,-1,138,125,157,-1,177,147,154,-1,171,147,177,-1,164,180,196,-1,172,180,164,-1,201,150,210,-1,150,201,143,-1,161,148,191,-1,148,161,141,-1,0,23,37,-1,23,0,7,-1,197,183,204,-1,197,173,183,-1,133,104,137,-1,133,96,104,-1,53,96,37,-1,75,96,53,-1,51,15,13,-1,15,51,48,-1,84,68,88,-1,62,68,84,-1,110,170,107,-1,110,167,170,-1,7,34,23,-1,7,17,34,-1,184,155,182,-1,184,162,155,-1,24,4,9,-1,4,24,18,-1,18,56,55,-1,18,24,56,-1,105,152,142,-1,105,108,152,-1,205,207,211,-1,205,200,207,-1,114,80,145,-1,114,72,80,-1,217,192,214,-1,217,194,192,-1,179,206,186,-1,206,179,199,-1,207,197,213,-1,182,197,207,-1,115,72,114,-1,115,63,72,-1,121,84,107,-1,121,103,84,-1,24,65,56,-1,24,19,65,-1,11,30,45,-1,11,20,30,-1,43,31,40,-1,43,35,31,-1,89,66,78,-1,66,89,59,-1,70,97,94,-1,69,97,70,-1,64,93,91,-1,67,93,64,-1,88,105,110,-1,105,88,92,-1,183,158,203,-1,137,158,183,-1,17,15,33,-1,15,17,7,-1,79,101,99,-1,79,85,101,-1,44,5,9,-1,44,36,5,-1,127,81,128,-1,73,81,127,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal_Geo_5_301_normalIndex_2()
		{
			int[] value = {162,179,168,-1,162,184,179,-1,206,232,214,-1,221,232,206,-1,140,187,145,-1,188,187,140,-1,76,41,29,-1,76,80,41,-1,45,47,58,-1,30,47,45,-1,113,163,117,-1,163,113,190,-1,189,145,187,-1,189,135,145,-1,25,98,42,-1,25,63,98,-1,10,6,3,-1,10,8,6,-1,166,160,202,-1,160,166,120,-1,193,130,124,-1,130,193,185,-1,234,217,233,-1,234,218,217,-1,114,113,115,-1,114,135,113,-1,170,219,178,-1,225,219,170,-1,208,132,126,-1,208,195,132,-1,194,187,192,-1,189,187,194,-1,68,92,88,-1,92,68,74,-1,103,62,84,-1,103,82,62,-1,16,2,3,-1,16,14,2,-1,107,178,121,-1,107,170,178,-1,199,221,206,-1,199,215,221,-1,221,195,208,-1,215,195,221,-1,41,72,27,-1,41,80,72,-1,233,214,232,-1,217,214,233,-1,96,129,90,-1,96,133,129,-1,204,203,223,-1,204,183,203,-1,104,71,106,-1,104,75,71,-1,95,38,60,-1,46,38,95,-1,106,137,104,-1,137,106,158,-1,182,173,197,-1,182,155,173,-1,76,36,73,-1,36,76,29,-1,57,23,34,-1,23,57,53,-1,136,116,131,-1,136,123,116,-1,37,4,0,-1,4,37,39,-1,70,49,52,-1,49,70,67,-1,110,142,167,-1,110,105,142,-1,62,61,48,-1,62,82,61,-1,51,74,68,-1,74,51,55,-1,168,186,188,-1,186,168,179,-1,49,30,43,-1,49,47,30,-1,27,63,25,-1,27,72,63,-1,233,235,234,-1,237,235,233,-1,202,165,166,-1,202,212,165,-1,60,28,86,-1,28,60,38,-1,124,165,193,-1,165,124,122,-1,127,188,140,-1,188,127,168,-1,29,2,1,-1,29,21,2,-1,145,76,140,-1,145,80,76,-1,188,192,187,-1,186,192,188,-1,200,215,199,-1,200,205,215,-1,168,128,162,-1,127,128,168,-1,81,36,44,-1,36,81,73,-1,56,85,79,-1,85,56,65,-1,108,195,152,-1,195,108,132,-1,18,0,4,-1,18,13,0,-1,173,129,133,-1,129,173,155,-1,99,132,108,-1,101,132,99,-1,91,83,64,-1,91,126,83,-1,94,67,70,-1,94,93,67,-1,66,50,78,-1,54,50,66,-1,26,40,31,-1,40,26,32,-1,43,20,35,-1,30,20,43,-1,45,19,11,-1,65,19,45,-1,13,55,51,-1,13,18,55,-1,48,33,15,-1,61,33,48,-1,186,214,192,-1,214,186,206,-1,218,194,217,-1,218,209,194,-1,200,182,207,-1,200,184,182,-1,142,205,211,-1,142,152,205,-1,55,79,74,-1,55,56,79,-1,90,44,39,-1,90,81,44,-1,162,129,155,-1,162,128,129,-1,9,39,44,-1,39,9,4,-1,12,38,6,-1,12,28,38,-1,57,75,53,-1,57,71,75,-1,167,225,170,-1,167,224,225,-1,107,88,110,-1,84,88,107,-1,68,48,51,-1,48,68,62,-1,173,137,183,-1,173,133,137,-1,204,213,197,-1,229,213,204,-1,7,13,15,-1,7,0,13,-1,112,141,161,-1,141,112,118,-1,191,143,201,-1,143,191,148,-1,150,196,210,-1,164,196,150,-1,172,154,180,-1,177,154,172,-1,147,157,125,-1,157,147,171,-1,109,134,87,-1,134,109,138,-1,131,100,77,-1,116,100,131,-1,119,141,118,-1,144,141,119,-1,148,149,143,-1,149,148,153,-1,159,164,150,-1,174,164,159,-1,176,177,172,-1,175,177,176,-1,171,156,157,-1,156,171,169,-1,138,139,134,-1,139,138,146,-1,123,118,116,-1,123,119,118,-1,121,147,103,-1,147,121,154,-1,196,178,219,-1,196,180,178,-1,223,210,236,-1,210,223,201,-1,158,191,203,-1,191,158,161,-1,106,100,112,-1,106,71,100,-1,109,82,125,-1,109,61,82,-1,33,77,17,-1,33,87,77,-1,10,25,8,-1,25,10,27,-1,12,25,42,-1,8,25,12,-1,202,181,220,-1,160,181,202,-1,230,227,212,-1,230,235,227,-1,222,231,228,-1,231,222,237,-1,78,46,95,-1,78,50,46,-1,22,31,16,-1,22,26,31,-1,124,89,122,-1,124,97,89,-1,91,130,111,-1,93,130,91,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal2_Geo_5_307_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,10,12,11,-1,13,14,15,-1,13,16,14,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,23,26,24,-1,27,21,28,-1,29,21,30,-1,31,21,32,-1,33,34,35,-1,33,36,34,-1,37,38,39,-1,37,40,38,-1,2,7,41,-1,2,8,7,-1,42,43,44,-1,44,45,42,-1,46,47,48,-1,47,49,48,-1,41,0,2,-1,50,51,52,-1,53,54,55,-1,54,56,55,-1,57,58,59,-1,60,61,62,-1,61,63,62,-1,64,65,66,-1,64,67,65,-1,68,56,54,-1,54,69,68,-1,70,71,61,-1,71,63,61,-1,67,64,72,-1,73,74,75,-1,73,76,74,-1,77,78,58,-1,77,79,78,-1,59,58,80,-1,33,58,81,-1,82,21,83,-1,84,21,31,-1,85,86,87,-1,85,88,86,-1,89,24,90,-1,24,26,90,-1,91,21,92,-1,28,21,29,-1,93,94,78,-1,94,95,78,-1,30,21,96,-1,92,21,20,-1,16,23,25,-1,25,14,16,-1,97,6,98,-1,98,99,97,-1,76,50,52,-1,52,74,76,-1,100,47,101,-1,102,103,87,-1,103,85,87,-1,32,21,27,-1,77,58,35,-1,81,58,57,-1,104,105,106,-1,104,107,105,-1,76,73,108,-1,73,109,108,-1,110,111,112,-1,112,113,110,-1,107,24,89,-1,107,104,24,-1,114,74,115,-1,114,75,74,-1,70,10,39,-1,70,12,10,-1,116,117,61,-1,33,35,58,-1,118,51,50,-1,118,119,51,-1,114,100,75,-1,100,88,75,-1,73,103,109,-1,73,85,103,-1,64,120,72,-1,121,94,122,-1,94,93,122,-1,123,47,46,-1,46,124,123,-1,48,125,126,-1,48,49,125,-1,127,128,129,-1,129,130,127,-1,22,21,82,-1,96,21,91,-1,131,132,133,-1,133,134,131,-1,59,135,57,-1,135,136,57,-1,79,137,138,-1,137,139,138,-1,83,21,84,-1,86,140,87,-1,23,141,142,-1,23,16,141,-1,143,144,145,-1,144,146,145,-1,147,125,148,-1,147,126,125,-1,149,112,150,-1,151,111,152,-1,142,153,23,-1,153,26,23,-1,154,155,156,-1,102,116,157,-1,56,118,55,-1,56,119,118,-1,10,9,158,-1,71,137,159,-1,139,38,40,-1,135,5,160,-1,135,3,5,-1,139,71,38,-1,139,137,71,-1,34,62,63,-1,34,36,62,-1,161,162,72,-1,161,136,162,-1,68,119,56,-1,119,68,97,-1,118,65,55,-1,118,108,65,-1,163,109,103,-1,66,109,163,-1,163,102,157,-1,163,103,102,-1,155,19,18,-1,155,154,19,-1,164,165,166,-1,167,165,164,-1,168,169,170,-1,171,169,168,-1,172,173,174,-1,175,173,172,-1,176,177,141,-1,178,177,176,-1,179,180,181,-1,179,182,180,-1,183,82,184,-1,82,183,22,-1,83,185,186,-1,84,185,83,-1,31,187,188,-1,32,187,31,-1,189,28,190,-1,28,189,27,-1,191,30,192,-1,30,191,29,-1,96,193,194,-1,91,193,96,-1,175,195,154,-1,195,175,196,-1,19,184,164,-1,184,19,183,-1,186,168,167,-1,185,168,186,-1,188,179,171,-1,187,179,188,-1,182,190,15,-1,190,182,189,-1,13,192,176,-1,192,13,191,-1,194,172,178,-1,193,172,194,-1,112,197,198,-1,197,112,149,-1,131,142,199,-1,131,153,142,-1,111,200,152,-1,111,132,200,-1,111,150,112,-1,150,111,151,-1,201,202,203,-1,201,204,202,-1,205,206,207,-1,205,208,206,-1,104,209,210,-1,104,106,209,-1,149,17,197,-1,149,18,17,-1,127,211,134,-1,127,144,211,-1,212,213,214,-1,215,213,212,-1,128,110,216,-1,110,128,133,-1,213,217,218,-1,217,213,215,-1,219,220,221,-1,219,222,220,-1,42,105,107,-1,42,223,105,-1,143,89,90,-1,143,43,89,-1,224,47,123,-1,47,224,101,-1,148,115,225,-1,148,125,115,-1,126,145,146,-1,145,126,147,-1,211,26,153,-1,90,26,211,-1,140,101,224,-1,101,140,86,-1,181,205,169,-1,205,181,209,-1,226,218,227,-1,226,213,218,-1,139,228,138,-1,139,40,228,-1,159,79,77,-1,159,137,79,-1,161,57,136,-1,57,161,81,-1,59,3,135,-1,80,3,59,-1,95,1,4,-1,94,1,95,-1,229,121,230,-1,229,2,121,-1,106,219,208,-1,219,106,105,-1,200,177,174,-1,199,177,200,-1,226,214,213,-1,214,226,231,-1,166,197,17,-1,197,166,203,-1,222,232,220,-1,230,232,222,-1,231,233,214,-1,231,234,233,-1,216,129,128,-1,129,216,235,-1,130,144,127,-1,146,144,130,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal2_Geo_5_307_coordIndex_2()
		{
			int[] value = {236,148,98,-1,147,148,236,-1,158,123,124,-1,158,9,123,-1,138,122,93,-1,228,122,138,-1,163,64,66,-1,163,120,64,-1,75,85,73,-1,75,88,85,-1,100,49,47,-1,49,100,114,-1,102,140,237,-1,87,140,102,-1,117,70,61,-1,117,12,70,-1,160,69,54,-1,69,160,5,-1,99,52,51,-1,225,52,99,-1,100,86,88,-1,86,100,101,-1,180,25,210,-1,180,14,25,-1,229,8,2,-1,229,45,8,-1,125,114,115,-1,125,49,114,-1,208,221,206,-1,221,208,219,-1,169,207,170,-1,207,169,205,-1,230,122,232,-1,121,122,230,-1,38,70,39,-1,38,71,70,-1,158,231,37,-1,158,234,231,-1,210,181,180,-1,181,210,209,-1,147,44,145,-1,147,236,44,-1,45,236,8,-1,236,45,44,-1,224,9,11,-1,224,123,9,-1,98,225,99,-1,98,148,225,-1,50,108,118,-1,108,50,76,-1,133,111,110,-1,133,132,111,-1,199,141,177,-1,141,199,142,-1,151,173,156,-1,151,152,173,-1,60,72,120,-1,72,60,62,-1,72,53,67,-1,72,162,53,-1,173,200,174,-1,173,152,200,-1,134,153,131,-1,134,211,153,-1,234,124,235,-1,158,124,234,-1,235,46,129,-1,235,124,46,-1,18,150,155,-1,150,18,149,-1,195,22,183,-1,195,20,22,-1,198,113,112,-1,113,198,212,-1,5,41,69,-1,5,0,41,-1,95,58,78,-1,95,80,58,-1,201,170,207,-1,165,170,201,-1,206,217,204,-1,217,206,221,-1,228,232,122,-1,232,228,227,-1,48,146,130,-1,146,48,126,-1,93,79,138,-1,93,78,79,-1,11,140,224,-1,237,140,11,-1,51,97,99,-1,51,119,97,-1,69,7,68,-1,41,7,69,-1,67,55,65,-1,53,55,67,-1,157,120,163,-1,60,120,157,-1,54,162,160,-1,162,54,53,-1,46,130,129,-1,130,46,48,-1,37,10,158,-1,37,39,10,-1,98,8,236,-1,98,6,8,-1,145,43,143,-1,145,44,43,-1,233,235,216,-1,235,233,234,-1,220,227,218,-1,227,220,232,-1,42,229,223,-1,229,42,45,-1,202,212,198,-1,212,202,215,-1,37,226,40,-1,231,226,37,-1,223,230,222,-1,223,229,230,-1,2,94,121,-1,2,1,94,-1,4,80,95,-1,4,3,80,-1,36,81,161,-1,81,36,33,-1,77,34,159,-1,35,34,77,-1,40,227,228,-1,40,226,227,-1,215,204,217,-1,215,202,204,-1,165,203,166,-1,201,203,165,-1,225,74,52,-1,225,115,74,-1,144,90,211,-1,144,143,90,-1,43,107,89,-1,43,42,107,-1,105,222,219,-1,105,223,222,-1,221,218,217,-1,221,220,218,-1,113,216,110,-1,113,233,216,-1,128,134,133,-1,128,127,134,-1,113,214,233,-1,212,214,113,-1,60,116,61,-1,60,157,116,-1,151,155,150,-1,151,156,155,-1,210,24,104,-1,25,24,210,-1,208,209,106,-1,209,208,205,-1,204,207,206,-1,207,204,201,-1,132,199,200,-1,132,131,199,-1,203,198,197,-1,203,202,198,-1,193,175,172,-1,196,175,193,-1,192,178,176,-1,194,178,192,-1,15,191,13,-1,191,15,190,-1,179,189,182,-1,189,179,187,-1,185,171,168,-1,188,171,185,-1,184,167,164,-1,186,167,184,-1,154,183,19,-1,183,154,195,-1,91,196,193,-1,92,196,91,-1,30,194,192,-1,96,194,30,-1,190,29,191,-1,29,190,28,-1,187,27,189,-1,27,187,32,-1,84,188,185,-1,31,188,84,-1,82,186,184,-1,83,186,82,-1,196,20,195,-1,196,92,20,-1,171,181,169,-1,179,181,171,-1,182,14,180,-1,182,15,14,-1,13,141,16,-1,176,141,13,-1,178,174,177,-1,172,174,178,-1,156,175,154,-1,156,173,175,-1,170,167,168,-1,170,165,167,-1,17,164,166,-1,17,19,164,-1,237,12,117,-1,11,12,237,-1,237,116,102,-1,116,237,117,-1,66,108,109,-1,65,108,66,-1,7,97,68,-1,97,7,6,-1,62,161,72,-1,62,36,161,-1,159,63,71,-1,159,34,63,-1,136,160,162,-1,136,135,160,-1,4,0,5,-1,1,0,4,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal2_Geo_5_307_normalIndex_1()
		{
			int[] value = {75,89,54,-1,52,76,51,-1,58,61,30,-1,212,203,227,-1,203,206,227,-1,155,91,170,-1,155,66,91,-1,222,230,237,-1,219,208,228,-1,21,15,44,-1,21,16,15,-1,201,208,200,-1,189,208,184,-1,204,208,202,-1,37,73,79,-1,37,31,73,-1,163,161,182,-1,163,136,161,-1,54,61,63,-1,54,30,61,-1,7,4,20,-1,20,19,7,-1,119,149,87,-1,149,133,87,-1,63,75,54,-1,94,78,128,-1,0,8,5,-1,8,22,5,-1,28,60,40,-1,42,108,35,-1,108,77,35,-1,10,6,17,-1,10,1,6,-1,53,22,8,-1,8,50,53,-1,171,140,108,-1,140,77,108,-1,1,10,11,-1,139,146,160,-1,139,116,146,-1,97,115,60,-1,97,127,115,-1,40,60,67,-1,37,60,24,-1,229,208,225,-1,216,208,204,-1,167,192,185,-1,167,177,192,-1,2,15,18,-1,15,16,18,-1,193,208,205,-1,200,208,189,-1,129,103,115,-1,103,92,115,-1,184,208,190,-1,205,208,219,-1,66,21,44,-1,44,91,66,-1,65,58,64,-1,64,84,65,-1,116,94,128,-1,128,146,116,-1,173,149,180,-1,135,107,185,-1,107,167,185,-1,202,208,201,-1,97,60,79,-1,24,60,28,-1,39,41,80,-1,39,9,41,-1,116,139,36,-1,139,56,36,-1,86,145,138,-1,138,93,86,-1,9,15,2,-1,9,39,15,-1,156,146,143,-1,156,160,146,-1,171,203,182,-1,171,206,203,-1,117,162,108,-1,37,79,60,-1,33,78,94,-1,33,48,78,-1,156,173,160,-1,173,177,160,-1,139,107,56,-1,139,167,107,-1,10,26,11,-1,88,103,104,-1,103,129,104,-1,199,149,119,-1,119,164,199,-1,87,130,90,-1,87,133,130,-1,45,70,96,-1,96,59,45,-1,228,208,229,-1,190,208,193,-1,81,122,68,-1,68,47,81,-1,40,23,28,-1,23,12,28,-1,127,132,137,-1,132,150,137,-1,225,208,216,-1,192,210,185,-1,21,109,57,-1,21,66,109,-1,25,34,49,-1,34,62,49,-1,71,130,105,-1,71,90,130,-1,174,138,176,-1,178,145,179,-1,57,43,21,-1,43,16,21,-1,236,234,233,-1,135,117,74,-1,22,33,5,-1,22,48,33,-1,203,212,169,-1,140,132,110,-1,150,161,136,-1,23,51,13,-1,23,52,51,-1,150,140,161,-1,150,132,140,-1,73,35,77,-1,73,31,35,-1,14,3,11,-1,14,12,3,-1,53,48,22,-1,48,53,65,-1,33,6,5,-1,33,36,6,-1,46,56,107,-1,17,56,46,-1,46,135,74,-1,46,107,135,-1,234,237,230,-1,234,236,237,-1,232,172,191,-1,223,172,232,-1,215,158,168,-1,197,158,215,-1,220,235,198,-1,231,235,220,-1,166,154,109,-1,196,154,166,-1,181,114,131,-1,181,175,114,-1,221,229,226,-1,229,221,228,-1,225,218,224,-1,216,218,225,-1,204,209,207,-1,202,209,204,-1,213,200,214,-1,200,213,201,-1,195,184,187,-1,184,195,189,-1,190,183,188,-1,193,183,190,-1,231,211,236,-1,211,231,194,-1,237,226,232,-1,226,237,221,-1,224,215,223,-1,218,215,224,-1,207,181,197,-1,209,181,207,-1,175,214,170,-1,214,175,213,-1,155,187,166,-1,187,155,195,-1,188,220,196,-1,183,220,188,-1,138,165,147,-1,165,138,174,-1,81,57,99,-1,81,43,57,-1,145,152,179,-1,145,122,152,-1,145,176,138,-1,176,145,178,-1,148,142,157,-1,148,144,142,-1,126,134,141,-1,126,118,134,-1,39,95,72,-1,39,80,95,-1,174,222,165,-1,174,230,222,-1,45,29,47,-1,45,34,29,-1,102,101,111,-1,113,101,102,-1,70,86,106,-1,86,70,68,-1,101,125,100,-1,125,101,113,-1,85,82,112,-1,85,55,82,-1,7,41,9,-1,7,27,41,-1,25,2,18,-1,25,4,2,-1,217,149,199,-1,149,217,180,-1,105,143,124,-1,105,130,143,-1,90,49,62,-1,49,90,71,-1,29,16,43,-1,18,16,29,-1,210,180,217,-1,180,210,192,-1,131,126,158,-1,126,131,95,-1,123,100,98,-1,123,101,100,-1,150,121,137,-1,150,136,121,-1,110,127,97,-1,110,132,127,-1,14,28,12,-1,28,14,24,-1,40,52,23,-1,67,52,40,-1,92,89,76,-1,103,89,92,-1,38,88,69,-1,38,54,88,-1,80,85,118,-1,85,80,41,-1,152,154,198,-1,99,154,152,-1,123,111,101,-1,111,123,151,-1,191,165,222,-1,165,191,157,-1,55,83,82,-1,69,83,55,-1,151,120,111,-1,151,159,120,-1,106,96,70,-1,96,106,153,-1,59,34,45,-1,62,34,59,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal2_Geo_5_307_normalIndex_2()
		{
			int[] value = {32,105,64,-1,71,105,32,-1,169,199,164,-1,169,212,199,-1,137,104,129,-1,121,104,137,-1,46,10,17,-1,46,26,10,-1,160,167,139,-1,160,177,167,-1,173,133,149,-1,133,173,156,-1,135,210,186,-1,185,210,135,-1,162,171,108,-1,162,206,171,-1,13,50,8,-1,50,13,51,-1,84,128,78,-1,124,128,84,-1,173,192,177,-1,192,173,180,-1,114,44,72,-1,114,91,44,-1,38,30,54,-1,38,19,30,-1,130,156,143,-1,130,133,156,-1,118,112,134,-1,112,118,85,-1,158,141,168,-1,141,158,126,-1,69,104,83,-1,88,104,69,-1,161,171,182,-1,161,140,171,-1,169,151,163,-1,169,159,151,-1,72,131,114,-1,131,72,95,-1,71,20,49,-1,71,32,20,-1,19,32,30,-1,32,19,20,-1,217,212,227,-1,217,199,212,-1,64,124,84,-1,64,105,124,-1,94,36,33,-1,36,94,116,-1,68,145,86,-1,68,122,145,-1,99,109,154,-1,109,99,57,-1,178,235,233,-1,178,179,235,-1,42,11,26,-1,11,42,35,-1,11,0,1,-1,11,3,0,-1,235,152,198,-1,235,179,152,-1,47,43,81,-1,47,29,43,-1,159,164,153,-1,169,164,159,-1,153,119,96,-1,153,164,119,-1,230,176,234,-1,176,230,174,-1,211,228,221,-1,211,219,228,-1,147,93,138,-1,93,147,102,-1,51,63,50,-1,51,75,63,-1,92,60,115,-1,92,67,60,-1,148,168,141,-1,172,168,148,-1,134,125,144,-1,125,134,112,-1,121,83,104,-1,83,121,98,-1,87,62,59,-1,62,87,90,-1,129,127,137,-1,129,115,127,-1,227,210,217,-1,186,210,227,-1,78,65,84,-1,78,48,65,-1,50,61,53,-1,63,61,50,-1,1,5,6,-1,0,5,1,-1,74,26,46,-1,42,26,74,-1,8,3,13,-1,3,8,0,-1,119,59,96,-1,59,119,87,-1,163,203,169,-1,163,182,203,-1,64,30,32,-1,64,58,30,-1,49,4,25,-1,49,20,4,-1,120,153,106,-1,153,120,159,-1,82,98,100,-1,98,82,83,-1,7,38,27,-1,38,7,19,-1,142,102,147,-1,102,142,113,-1,163,123,136,-1,151,123,163,-1,27,69,55,-1,27,38,69,-1,54,103,88,-1,54,89,103,-1,76,67,92,-1,76,52,67,-1,31,24,14,-1,24,31,37,-1,97,73,110,-1,79,73,97,-1,136,98,121,-1,136,123,98,-1,113,144,125,-1,113,142,144,-1,172,157,191,-1,148,157,172,-1,124,146,128,-1,124,143,146,-1,34,18,29,-1,34,25,18,-1,4,9,2,-1,4,7,9,-1,41,55,85,-1,41,27,55,-1,112,100,125,-1,112,82,100,-1,93,106,86,-1,93,120,106,-1,70,47,68,-1,70,45,47,-1,93,111,120,-1,102,111,93,-1,42,117,108,-1,42,74,117,-1,178,234,176,-1,178,233,234,-1,72,15,39,-1,44,15,72,-1,118,95,80,-1,95,118,126,-1,144,141,134,-1,141,144,148,-1,122,99,152,-1,122,81,99,-1,157,147,165,-1,157,142,147,-1,183,231,220,-1,194,231,183,-1,187,196,166,-1,188,196,187,-1,170,195,155,-1,195,170,214,-1,181,213,175,-1,213,181,209,-1,218,197,215,-1,207,197,218,-1,226,223,232,-1,224,223,226,-1,236,221,237,-1,221,236,211,-1,193,194,183,-1,205,194,193,-1,184,188,187,-1,190,188,184,-1,214,189,195,-1,189,214,200,-1,209,201,213,-1,201,209,202,-1,216,207,218,-1,204,207,216,-1,229,224,226,-1,225,224,229,-1,194,219,211,-1,194,205,219,-1,197,131,158,-1,181,131,197,-1,175,91,114,-1,175,170,91,-1,155,109,66,-1,166,109,155,-1,196,198,154,-1,220,198,196,-1,233,231,236,-1,233,235,231,-1,168,223,215,-1,168,172,223,-1,222,232,191,-1,222,237,232,-1,186,206,162,-1,227,206,186,-1,186,117,135,-1,117,186,162,-1,17,36,56,-1,6,36,17,-1,61,65,53,-1,65,61,58,-1,35,14,11,-1,35,31,14,-1,110,77,140,-1,110,73,77,-1,12,13,3,-1,12,23,13,-1,76,75,51,-1,89,75,76,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal3_Geo_5_313_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,10,12,11,-1,13,14,15,-1,13,16,14,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,23,26,24,-1,27,21,28,-1,29,21,30,-1,31,21,32,-1,33,34,35,-1,33,36,34,-1,37,38,39,-1,37,40,38,-1,2,7,41,-1,2,8,7,-1,42,43,44,-1,43,45,44,-1,41,0,2,-1,46,47,48,-1,49,50,51,-1,50,52,51,-1,53,54,55,-1,56,57,58,-1,57,59,58,-1,60,61,62,-1,60,63,61,-1,64,65,57,-1,65,59,57,-1,63,60,66,-1,67,68,69,-1,67,70,68,-1,71,72,54,-1,71,73,72,-1,55,54,74,-1,33,54,75,-1,76,21,77,-1,78,21,31,-1,79,80,81,-1,79,82,80,-1,83,24,84,-1,24,26,84,-1,85,21,86,-1,28,21,29,-1,87,88,72,-1,88,89,72,-1,30,21,90,-1,86,21,20,-1,16,23,25,-1,25,14,16,-1,91,6,92,-1,92,93,91,-1,70,46,48,-1,48,68,70,-1,94,43,95,-1,96,97,81,-1,97,79,81,-1,32,21,27,-1,71,54,35,-1,75,54,53,-1,98,99,100,-1,98,101,99,-1,70,67,102,-1,67,103,102,-1,104,105,106,-1,106,107,104,-1,101,24,83,-1,101,98,24,-1,108,68,109,-1,108,69,68,-1,64,10,39,-1,64,12,10,-1,110,111,57,-1,33,35,54,-1,112,47,46,-1,112,113,47,-1,108,94,69,-1,94,82,69,-1,67,97,103,-1,67,79,97,-1,60,114,66,-1,115,88,116,-1,88,87,116,-1,117,43,42,-1,42,118,117,-1,44,119,120,-1,44,45,119,-1,121,122,123,-1,123,124,121,-1,22,21,76,-1,90,21,85,-1,125,126,127,-1,127,128,125,-1,55,129,53,-1,129,130,53,-1,73,131,132,-1,131,133,132,-1,77,21,78,-1,80,134,81,-1,23,135,136,-1,23,16,135,-1,137,138,139,-1,138,140,139,-1,141,119,142,-1,141,120,119,-1,143,106,144,-1,145,105,146,-1,136,147,23,-1,147,26,23,-1,148,149,150,-1,96,110,151,-1,52,112,51,-1,52,113,112,-1,10,9,152,-1,65,131,153,-1,133,38,40,-1,129,5,154,-1,129,3,5,-1,133,65,38,-1,133,131,65,-1,59,36,58,-1,59,34,36,-1,155,156,66,-1,155,130,156,-1,91,52,157,-1,113,52,91,-1,112,61,51,-1,112,102,61,-1,103,158,62,-1,103,97,158,-1,158,96,151,-1,158,97,96,-1,148,18,149,-1,148,19,18,-1,159,160,161,-1,160,159,162,-1,163,164,165,-1,164,163,166,-1,167,168,169,-1,170,168,167,-1,171,172,135,-1,173,172,171,-1,174,175,176,-1,174,177,175,-1,178,76,179,-1,76,178,22,-1,77,180,181,-1,78,180,77,-1,31,182,183,-1,32,182,31,-1,184,28,185,-1,28,184,27,-1,186,30,187,-1,30,186,29,-1,90,188,189,-1,85,188,90,-1,190,148,170,-1,191,148,190,-1,19,179,162,-1,179,19,178,-1,181,166,160,-1,180,166,181,-1,183,174,164,-1,182,174,183,-1,177,185,15,-1,185,177,184,-1,13,187,171,-1,187,13,186,-1,189,167,173,-1,188,167,189,-1,143,192,106,-1,193,192,143,-1,136,125,147,-1,194,125,136,-1,105,195,146,-1,105,126,195,-1,105,144,106,-1,144,105,145,-1,196,197,198,-1,196,199,197,-1,200,201,202,-1,200,203,201,-1,204,100,205,-1,204,98,100,-1,18,193,143,-1,18,17,193,-1,121,206,128,-1,121,138,206,-1,207,208,209,-1,210,208,207,-1,122,104,211,-1,104,122,127,-1,208,212,213,-1,212,208,210,-1,214,215,216,-1,214,217,215,-1,101,218,99,-1,101,219,218,-1,137,83,84,-1,137,220,83,-1,43,221,95,-1,43,117,221,-1,142,109,222,-1,142,119,109,-1,139,120,141,-1,139,140,120,-1,206,26,147,-1,84,26,206,-1,134,95,221,-1,95,134,80,-1,200,176,205,-1,200,165,176,-1,213,223,208,-1,224,223,213,-1,133,225,132,-1,133,40,225,-1,153,73,71,-1,153,131,73,-1,75,130,155,-1,53,130,75,-1,55,3,129,-1,74,3,55,-1,89,1,4,-1,88,1,89,-1,226,115,227,-1,226,2,115,-1,100,214,203,-1,214,100,99,-1,195,172,169,-1,194,172,195,-1,223,209,208,-1,209,223,228,-1,159,193,17,-1,193,159,198,-1,229,217,227,-1,229,215,217,-1,228,230,209,-1,228,231,230,-1,211,123,122,-1,123,211,232,-1,124,138,121,-1,140,138,124,-1,220,233,219,-1,233,220,234,-1,142,235,141,-1,142,92,235,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal3_Geo_5_313_coordIndex_2()
		{
			int[] value = {9,118,152,-1,9,117,118,-1,132,116,87,-1,225,116,132,-1,62,114,60,-1,62,158,114,-1,79,69,82,-1,69,79,67,-1,45,94,108,-1,45,43,94,-1,96,134,236,-1,81,134,96,-1,111,64,57,-1,111,12,64,-1,157,50,237,-1,157,52,50,-1,154,237,50,-1,237,154,5,-1,93,48,47,-1,222,48,93,-1,94,80,82,-1,80,94,95,-1,175,25,204,-1,175,14,25,-1,233,2,226,-1,233,8,2,-1,108,119,45,-1,109,119,108,-1,203,216,201,-1,216,203,214,-1,165,202,163,-1,202,165,200,-1,116,227,115,-1,116,229,227,-1,64,38,65,-1,39,38,64,-1,37,231,228,-1,152,231,37,-1,175,205,176,-1,175,204,205,-1,141,234,139,-1,141,235,234,-1,233,235,8,-1,235,233,234,-1,221,9,11,-1,221,117,9,-1,92,222,93,-1,92,142,222,-1,46,102,112,-1,102,46,70,-1,127,105,104,-1,127,126,105,-1,194,135,172,-1,135,194,136,-1,145,168,150,-1,145,146,168,-1,56,66,114,-1,66,56,58,-1,66,49,63,-1,66,156,49,-1,146,169,168,-1,169,146,195,-1,128,147,125,-1,128,206,147,-1,231,118,232,-1,152,118,231,-1,232,42,123,-1,232,118,42,-1,143,149,18,-1,144,149,143,-1,191,22,178,-1,191,20,22,-1,192,107,106,-1,107,192,207,-1,41,5,0,-1,5,41,237,-1,72,74,54,-1,89,74,72,-1,196,163,202,-1,161,163,196,-1,201,212,199,-1,212,201,216,-1,225,229,116,-1,229,225,224,-1,140,44,120,-1,140,124,44,-1,87,73,132,-1,87,72,73,-1,236,221,11,-1,236,134,221,-1,47,91,93,-1,47,113,91,-1,237,7,157,-1,41,7,237,-1,63,51,61,-1,49,51,63,-1,151,114,158,-1,56,114,151,-1,156,50,49,-1,156,154,50,-1,124,42,44,-1,124,123,42,-1,10,37,39,-1,37,10,152,-1,92,8,235,-1,92,6,8,-1,139,220,137,-1,139,234,220,-1,230,232,211,-1,232,230,231,-1,215,224,213,-1,224,215,229,-1,219,226,218,-1,226,219,233,-1,197,207,192,-1,207,197,210,-1,40,228,223,-1,228,40,37,-1,227,218,226,-1,217,218,227,-1,2,88,115,-1,2,1,88,-1,4,74,89,-1,4,3,74,-1,36,75,155,-1,75,36,33,-1,71,34,153,-1,35,34,71,-1,224,40,223,-1,225,40,224,-1,210,199,212,-1,210,197,199,-1,161,198,159,-1,196,198,161,-1,68,222,109,-1,222,68,48,-1,138,84,206,-1,138,137,84,-1,220,101,83,-1,220,219,101,-1,99,217,214,-1,99,218,217,-1,216,213,212,-1,216,215,213,-1,107,211,104,-1,107,230,211,-1,122,128,127,-1,122,121,128,-1,107,209,230,-1,207,209,107,-1,56,110,57,-1,56,151,110,-1,145,149,144,-1,145,150,149,-1,204,24,98,-1,25,24,204,-1,203,205,100,-1,205,203,200,-1,202,199,196,-1,202,201,199,-1,126,194,195,-1,126,125,194,-1,198,192,193,-1,198,197,192,-1,188,170,167,-1,190,170,188,-1,171,189,173,-1,189,171,187,-1,15,186,13,-1,186,15,185,-1,182,177,174,-1,184,177,182,-1,180,164,166,-1,183,164,180,-1,179,160,162,-1,181,160,179,-1,148,178,19,-1,178,148,191,-1,85,190,188,-1,86,190,85,-1,187,90,189,-1,90,187,30,-1,185,29,186,-1,29,185,28,-1,32,184,182,-1,27,184,32,-1,78,183,180,-1,31,183,78,-1,76,181,179,-1,77,181,76,-1,86,191,190,-1,86,20,191,-1,165,174,176,-1,174,165,164,-1,177,14,175,-1,177,15,14,-1,13,135,16,-1,171,135,13,-1,173,169,172,-1,167,169,173,-1,150,170,148,-1,150,168,170,-1,161,166,163,-1,166,161,160,-1,17,162,159,-1,17,19,162,-1,111,11,12,-1,11,111,236,-1,236,110,96,-1,110,236,111,-1,62,102,103,-1,61,102,62,-1,7,91,157,-1,91,7,6,-1,58,155,66,-1,58,36,155,-1,153,59,65,-1,153,34,59,-1,130,154,156,-1,130,129,154,-1,4,0,5,-1,1,0,4,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal3_Geo_5_313_normalIndex_1()
		{
			int[] value = {91,105,68,-1,53,76,63,-1,79,86,44,-1,182,175,189,-1,175,180,189,-1,179,122,192,-1,179,92,122,-1,191,195,237,-1,223,217,232,-1,30,29,65,-1,30,18,29,-1,213,217,212,-1,204,217,197,-1,216,217,215,-1,27,52,59,-1,27,20,52,-1,150,155,171,-1,150,126,155,-1,68,86,87,-1,68,44,86,-1,111,153,89,-1,153,140,89,-1,87,91,68,-1,117,104,149,-1,1,16,9,-1,16,37,9,-1,21,47,34,-1,24,81,22,-1,81,55,22,-1,3,7,10,-1,3,0,7,-1,163,135,81,-1,135,55,81,-1,0,3,4,-1,148,162,168,-1,148,124,162,-1,82,114,47,-1,82,123,114,-1,34,47,61,-1,27,47,13,-1,233,217,231,-1,224,217,216,-1,170,186,178,-1,170,176,186,-1,8,29,19,-1,29,18,19,-1,206,217,210,-1,212,217,204,-1,128,112,114,-1,112,98,114,-1,197,217,205,-1,210,217,223,-1,92,30,65,-1,65,122,92,-1,94,79,80,-1,80,109,94,-1,124,117,149,-1,149,162,124,-1,174,153,177,-1,115,90,178,-1,90,170,178,-1,215,217,213,-1,82,47,59,-1,13,47,21,-1,54,50,101,-1,54,15,50,-1,124,148,40,-1,148,45,40,-1,62,129,119,-1,119,67,62,-1,15,29,8,-1,15,54,29,-1,165,162,158,-1,165,168,162,-1,163,175,171,-1,163,180,175,-1,77,143,81,-1,27,59,47,-1,41,104,117,-1,41,64,104,-1,165,174,168,-1,174,176,168,-1,148,90,45,-1,148,170,90,-1,3,11,4,-1,96,112,107,-1,112,128,107,-1,181,153,111,-1,111,156,181,-1,89,139,95,-1,89,140,139,-1,38,51,83,-1,83,57,38,-1,232,217,233,-1,205,217,206,-1,69,110,48,-1,48,36,69,-1,34,23,21,-1,23,5,21,-1,123,130,136,-1,130,145,136,-1,231,217,224,-1,186,185,178,-1,30,132,56,-1,30,92,132,-1,28,32,49,-1,32,60,49,-1,73,139,121,-1,73,95,139,-1,161,119,164,-1,167,129,172,-1,56,39,30,-1,39,18,30,-1,236,202,203,-1,115,77,42,-1,37,41,9,-1,37,64,41,-1,175,182,159,-1,135,130,106,-1,145,155,126,-1,23,63,14,-1,23,53,63,-1,145,135,155,-1,145,130,135,-1,55,20,22,-1,55,52,20,-1,6,2,4,-1,6,5,2,-1,94,37,74,-1,64,37,94,-1,41,7,9,-1,41,40,7,-1,45,26,10,-1,45,90,26,-1,26,115,42,-1,26,90,115,-1,236,195,202,-1,236,237,195,-1,187,228,184,-1,228,187,234,-1,183,208,173,-1,208,183,220,-1,226,211,193,-1,235,211,226,-1,190,166,132,-1,209,166,190,-1,200,142,160,-1,200,194,142,-1,227,233,230,-1,233,227,232,-1,231,225,229,-1,224,225,231,-1,216,219,218,-1,215,219,216,-1,222,212,221,-1,212,222,213,-1,207,197,198,-1,197,207,204,-1,205,196,199,-1,206,196,205,-1,201,236,235,-1,214,236,201,-1,237,230,234,-1,230,237,227,-1,229,220,228,-1,225,220,229,-1,218,200,208,-1,219,200,218,-1,194,221,192,-1,221,194,222,-1,179,198,190,-1,198,179,207,-1,199,226,209,-1,196,226,199,-1,161,125,119,-1,154,125,161,-1,56,69,39,-1,103,69,56,-1,129,146,172,-1,129,110,146,-1,129,164,119,-1,164,129,167,-1,152,133,151,-1,152,147,133,-1,141,144,157,-1,141,131,144,-1,97,101,118,-1,97,54,101,-1,195,154,161,-1,195,191,154,-1,38,25,36,-1,38,32,25,-1,75,78,85,-1,100,78,75,-1,51,62,84,-1,62,51,48,-1,78,120,93,-1,120,78,100,-1,102,72,116,-1,102,58,72,-1,15,35,50,-1,15,17,35,-1,28,8,19,-1,28,12,8,-1,153,188,177,-1,153,181,188,-1,121,158,137,-1,121,139,158,-1,49,95,73,-1,49,60,95,-1,25,18,39,-1,19,18,25,-1,185,177,188,-1,177,185,186,-1,141,160,118,-1,141,173,160,-1,93,108,78,-1,88,108,93,-1,145,113,136,-1,145,126,113,-1,106,123,82,-1,106,130,123,-1,13,5,6,-1,21,5,13,-1,34,53,23,-1,61,53,34,-1,98,105,76,-1,112,105,98,-1,46,96,70,-1,46,68,96,-1,101,102,131,-1,102,101,50,-1,146,166,193,-1,103,166,146,-1,108,85,78,-1,85,108,127,-1,187,154,191,-1,154,187,151,-1,71,58,70,-1,71,72,58,-1,127,99,85,-1,127,138,99,-1,84,83,51,-1,83,84,134,-1,57,32,38,-1,60,32,57,-1,12,33,17,-1,33,12,31,-1,121,43,73,-1,121,80,43,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal3_Geo_5_313_normalIndex_2()
		{
			int[] value = {182,156,159,-1,182,181,156,-1,136,107,128,-1,113,107,136,-1,10,11,3,-1,10,26,11,-1,170,168,176,-1,168,170,148,-1,140,174,165,-1,140,153,174,-1,115,185,169,-1,178,185,115,-1,143,163,81,-1,143,180,163,-1,74,16,66,-1,74,37,16,-1,14,66,16,-1,66,14,63,-1,109,149,104,-1,137,149,109,-1,174,186,176,-1,186,174,177,-1,142,65,97,-1,142,122,65,-1,33,68,46,-1,33,44,68,-1,165,139,140,-1,158,139,165,-1,131,116,144,-1,116,131,102,-1,173,157,183,-1,157,173,141,-1,107,70,96,-1,107,71,70,-1,163,155,135,-1,171,155,163,-1,150,138,127,-1,159,138,150,-1,142,118,160,-1,142,97,118,-1,73,31,49,-1,73,43,31,-1,33,43,44,-1,43,33,31,-1,188,182,189,-1,188,181,182,-1,80,137,109,-1,80,121,137,-1,117,40,41,-1,40,117,124,-1,48,129,62,-1,48,110,129,-1,103,132,166,-1,132,103,56,-1,167,211,203,-1,167,172,211,-1,24,4,11,-1,4,24,22,-1,4,1,0,-1,4,2,1,-1,172,193,211,-1,193,172,146,-1,36,39,69,-1,36,25,39,-1,138,156,134,-1,159,156,138,-1,134,111,83,-1,134,156,111,-1,161,202,195,-1,164,202,161,-1,214,232,227,-1,214,223,232,-1,125,67,119,-1,67,125,75,-1,87,63,91,-1,63,87,66,-1,114,61,47,-1,98,61,114,-1,152,183,157,-1,184,183,152,-1,144,120,147,-1,120,144,116,-1,113,71,107,-1,71,113,88,-1,60,89,95,-1,60,57,89,-1,128,123,136,-1,128,114,123,-1,169,188,189,-1,169,185,188,-1,104,94,109,-1,104,64,94,-1,66,86,74,-1,87,86,66,-1,0,9,7,-1,1,9,0,-1,42,11,26,-1,24,11,42,-1,2,16,1,-1,2,14,16,-1,57,111,89,-1,57,83,111,-1,175,150,171,-1,150,175,159,-1,80,44,43,-1,80,79,44,-1,49,12,28,-1,49,31,12,-1,99,134,84,-1,134,99,138,-1,72,88,93,-1,88,72,71,-1,17,46,35,-1,46,17,33,-1,133,75,125,-1,75,133,100,-1,126,127,108,-1,127,126,150,-1,70,35,46,-1,58,35,70,-1,68,112,96,-1,68,105,112,-1,76,61,98,-1,76,53,61,-1,20,13,6,-1,13,20,27,-1,82,52,106,-1,59,52,82,-1,88,126,108,-1,113,126,88,-1,100,147,120,-1,100,133,147,-1,184,151,187,-1,152,151,184,-1,162,137,158,-1,137,162,149,-1,32,19,25,-1,32,28,19,-1,12,15,8,-1,12,17,15,-1,50,58,102,-1,50,35,58,-1,116,93,120,-1,116,72,93,-1,67,84,62,-1,67,99,84,-1,51,36,48,-1,51,38,36,-1,67,85,99,-1,75,85,67,-1,24,77,81,-1,24,42,77,-1,167,202,164,-1,167,203,202,-1,97,29,54,-1,65,29,97,-1,131,118,101,-1,118,131,141,-1,157,147,152,-1,157,144,147,-1,110,103,146,-1,110,69,103,-1,151,125,154,-1,151,133,125,-1,196,235,226,-1,201,235,196,-1,190,199,209,-1,199,190,198,-1,192,207,179,-1,207,192,221,-1,219,194,200,-1,222,194,219,-1,225,208,220,-1,218,208,225,-1,230,228,234,-1,229,228,230,-1,236,227,237,-1,227,236,214,-1,206,201,196,-1,210,201,206,-1,198,205,199,-1,205,198,197,-1,221,204,207,-1,204,221,212,-1,215,222,219,-1,213,222,215,-1,224,218,225,-1,216,218,224,-1,233,229,230,-1,231,229,233,-1,210,214,201,-1,210,223,214,-1,173,200,160,-1,200,173,208,-1,194,122,142,-1,194,192,122,-1,179,132,92,-1,190,132,179,-1,209,193,166,-1,226,193,209,-1,203,235,236,-1,203,211,235,-1,184,220,183,-1,220,184,228,-1,191,234,187,-1,191,237,234,-1,143,189,180,-1,189,143,169,-1,169,77,115,-1,77,169,143,-1,10,40,45,-1,7,40,10,-1,86,94,74,-1,94,86,79,-1,22,6,4,-1,22,20,6,-1,106,55,135,-1,106,52,55,-1,5,14,2,-1,5,23,14,-1,76,91,63,-1,105,91,76,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal4_Geo_5_319_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,10,12,11,-1,13,14,15,-1,13,16,14,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,23,26,24,-1,27,21,28,-1,29,21,30,-1,31,21,32,-1,33,34,35,-1,33,36,34,-1,37,38,39,-1,37,40,38,-1,2,7,41,-1,2,8,7,-1,42,43,44,-1,43,45,44,-1,41,0,2,-1,46,47,48,-1,49,50,51,-1,50,52,51,-1,53,54,55,-1,56,57,58,-1,57,59,58,-1,60,61,62,-1,60,63,61,-1,64,65,57,-1,65,59,57,-1,63,60,66,-1,67,68,69,-1,67,70,68,-1,71,72,54,-1,71,73,72,-1,55,54,74,-1,33,54,75,-1,76,21,77,-1,78,21,31,-1,79,80,81,-1,79,82,80,-1,83,24,84,-1,24,26,84,-1,85,21,86,-1,28,21,29,-1,87,88,72,-1,88,89,72,-1,30,21,90,-1,86,21,20,-1,16,23,25,-1,25,14,16,-1,91,6,92,-1,92,93,91,-1,70,46,48,-1,48,68,70,-1,94,43,95,-1,96,97,81,-1,97,79,81,-1,32,21,27,-1,71,54,35,-1,75,54,53,-1,98,99,100,-1,98,101,99,-1,70,67,102,-1,67,103,102,-1,104,105,106,-1,106,107,104,-1,101,24,83,-1,101,98,24,-1,108,68,109,-1,108,69,68,-1,64,10,39,-1,64,12,10,-1,110,111,57,-1,33,35,54,-1,112,47,46,-1,112,113,47,-1,108,94,69,-1,94,82,69,-1,67,97,103,-1,67,79,97,-1,60,114,66,-1,115,88,116,-1,88,87,116,-1,117,43,42,-1,42,118,117,-1,44,119,120,-1,44,45,119,-1,121,122,123,-1,123,124,121,-1,22,21,76,-1,90,21,85,-1,125,126,127,-1,127,128,125,-1,55,129,53,-1,129,130,53,-1,73,131,132,-1,131,133,132,-1,77,21,78,-1,80,134,81,-1,23,135,136,-1,23,16,135,-1,137,138,139,-1,138,140,139,-1,141,119,142,-1,141,120,119,-1,143,106,144,-1,145,105,146,-1,136,147,23,-1,147,26,23,-1,148,149,150,-1,96,110,151,-1,52,112,51,-1,52,113,112,-1,10,9,152,-1,65,131,153,-1,133,38,40,-1,129,5,154,-1,129,3,5,-1,133,65,38,-1,133,131,65,-1,59,36,58,-1,59,34,36,-1,155,156,66,-1,155,130,156,-1,91,52,157,-1,113,52,91,-1,112,61,51,-1,112,102,61,-1,103,158,62,-1,103,97,158,-1,158,96,151,-1,158,97,96,-1,148,18,149,-1,148,19,18,-1,159,160,161,-1,160,159,162,-1,163,164,165,-1,164,163,166,-1,167,168,169,-1,167,170,168,-1,135,171,172,-1,171,135,173,-1,174,175,176,-1,174,177,175,-1,178,76,179,-1,76,178,22,-1,180,78,181,-1,78,180,77,-1,31,182,183,-1,32,182,31,-1,27,184,185,-1,28,184,27,-1,186,30,187,-1,30,186,29,-1,90,188,189,-1,85,188,90,-1,190,148,169,-1,191,148,190,-1,19,179,162,-1,179,19,178,-1,160,181,166,-1,181,160,180,-1,183,174,164,-1,182,174,183,-1,185,15,177,-1,184,15,185,-1,13,187,173,-1,187,13,186,-1,189,168,171,-1,188,168,189,-1,143,192,106,-1,193,192,143,-1,136,125,147,-1,194,125,136,-1,105,195,146,-1,105,126,195,-1,105,144,106,-1,144,105,145,-1,196,197,198,-1,196,199,197,-1,200,201,202,-1,200,203,201,-1,204,98,100,-1,205,98,204,-1,18,193,143,-1,18,17,193,-1,206,121,138,-1,128,121,206,-1,207,208,209,-1,210,208,207,-1,122,104,211,-1,104,122,127,-1,212,210,213,-1,212,208,210,-1,214,215,216,-1,214,217,215,-1,101,218,99,-1,101,219,218,-1,137,83,84,-1,137,220,83,-1,43,221,95,-1,43,117,221,-1,142,109,222,-1,142,119,109,-1,120,139,140,-1,139,120,141,-1,206,26,147,-1,84,26,206,-1,134,95,221,-1,95,134,80,-1,200,176,204,-1,200,165,176,-1,208,223,224,-1,223,208,212,-1,133,225,132,-1,133,40,225,-1,153,73,71,-1,153,131,73,-1,75,130,155,-1,53,130,75,-1,129,74,3,-1,74,129,55,-1,89,1,4,-1,88,1,89,-1,115,226,2,-1,227,226,115,-1,100,214,203,-1,214,100,99,-1,195,172,170,-1,194,172,195,-1,224,209,208,-1,209,224,228,-1,159,193,17,-1,193,159,198,-1,229,217,227,-1,229,215,217,-1,228,230,209,-1,228,231,230,-1,211,123,122,-1,123,211,232,-1,124,138,121,-1,140,138,124,-1,220,233,219,-1,233,220,234,-1,142,235,141,-1,142,92,235,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal4_Geo_5_319_coordIndex_2()
		{
			int[] value = {9,118,152,-1,9,117,118,-1,132,116,87,-1,225,116,132,-1,62,114,60,-1,62,158,114,-1,79,69,82,-1,69,79,67,-1,45,94,108,-1,45,43,94,-1,96,134,236,-1,81,134,96,-1,57,12,64,-1,57,111,12,-1,157,50,237,-1,157,52,50,-1,154,237,50,-1,237,154,5,-1,93,48,47,-1,222,48,93,-1,94,80,82,-1,80,94,95,-1,175,25,205,-1,175,14,25,-1,233,2,226,-1,233,8,2,-1,108,119,45,-1,109,119,108,-1,203,216,201,-1,216,203,214,-1,165,202,163,-1,202,165,200,-1,116,227,115,-1,116,229,227,-1,64,38,65,-1,39,38,64,-1,37,231,228,-1,152,231,37,-1,175,204,176,-1,175,205,204,-1,141,234,139,-1,141,235,234,-1,233,235,8,-1,235,233,234,-1,11,117,9,-1,11,221,117,-1,142,93,92,-1,93,142,222,-1,46,102,112,-1,102,46,70,-1,127,105,104,-1,127,126,105,-1,135,194,136,-1,135,172,194,-1,145,167,150,-1,145,146,167,-1,56,66,114,-1,66,56,58,-1,66,49,63,-1,66,156,49,-1,146,170,167,-1,170,146,195,-1,147,128,206,-1,125,128,147,-1,231,118,232,-1,152,118,231,-1,232,42,123,-1,232,118,42,-1,143,149,18,-1,144,149,143,-1,191,22,178,-1,191,20,22,-1,192,107,106,-1,107,192,207,-1,0,237,5,-1,0,41,237,-1,89,54,72,-1,89,74,54,-1,163,196,161,-1,163,202,196,-1,201,213,199,-1,213,201,216,-1,116,223,229,-1,116,225,223,-1,140,44,120,-1,140,124,44,-1,87,73,132,-1,87,72,73,-1,236,221,11,-1,236,134,221,-1,93,113,91,-1,93,47,113,-1,237,7,157,-1,41,7,237,-1,63,51,61,-1,49,51,63,-1,151,114,158,-1,56,114,151,-1,156,50,49,-1,156,154,50,-1,42,124,123,-1,124,42,44,-1,10,37,39,-1,37,10,152,-1,235,6,8,-1,235,92,6,-1,139,220,137,-1,139,234,220,-1,230,232,211,-1,232,230,231,-1,212,229,223,-1,212,215,229,-1,219,226,218,-1,226,219,233,-1,197,207,192,-1,207,197,210,-1,40,228,224,-1,228,40,37,-1,227,218,226,-1,217,218,227,-1,2,88,115,-1,2,1,88,-1,89,3,74,-1,89,4,3,-1,75,36,33,-1,75,155,36,-1,71,34,153,-1,35,34,71,-1,225,224,223,-1,225,40,224,-1,213,197,199,-1,213,210,197,-1,161,198,159,-1,196,198,161,-1,222,68,48,-1,222,109,68,-1,138,84,206,-1,138,137,84,-1,220,101,83,-1,220,219,101,-1,99,217,214,-1,99,218,217,-1,216,212,213,-1,216,215,212,-1,107,211,104,-1,107,230,211,-1,128,122,121,-1,127,122,128,-1,107,209,230,-1,207,209,107,-1,56,110,57,-1,56,151,110,-1,145,149,144,-1,145,150,149,-1,205,24,98,-1,25,24,205,-1,203,204,100,-1,204,203,200,-1,202,199,196,-1,202,201,199,-1,126,194,195,-1,126,125,194,-1,198,192,193,-1,198,197,192,-1,188,169,168,-1,190,169,188,-1,173,189,171,-1,189,173,187,-1,15,186,13,-1,186,15,184,-1,182,177,174,-1,185,177,182,-1,181,164,166,-1,183,164,181,-1,162,180,160,-1,180,162,179,-1,148,178,19,-1,178,148,191,-1,85,190,188,-1,86,190,85,-1,187,90,189,-1,90,187,30,-1,184,29,186,-1,29,184,28,-1,32,185,182,-1,27,185,32,-1,78,183,181,-1,31,183,78,-1,179,77,180,-1,77,179,76,-1,86,191,190,-1,86,20,191,-1,164,176,165,-1,174,176,164,-1,177,14,175,-1,177,15,14,-1,16,173,135,-1,173,16,13,-1,171,170,172,-1,168,170,171,-1,150,169,148,-1,150,167,169,-1,161,166,163,-1,166,161,160,-1,17,162,159,-1,17,19,162,-1,111,11,12,-1,11,111,236,-1,236,110,96,-1,110,236,111,-1,62,102,103,-1,61,102,62,-1,7,91,157,-1,91,7,6,-1,58,155,66,-1,58,36,155,-1,153,59,65,-1,153,34,59,-1,154,130,129,-1,156,130,154,-1,4,0,5,-1,1,0,4,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal4_Geo_5_319_normalIndex_1()
		{
			int[] value = {77,80,60,-1,31,56,55,-1,128,125,74,-1,166,156,174,-1,156,154,174,-1,184,146,200,-1,184,137,146,-1,165,177,230,-1,210,212,234,-1,69,51,101,-1,69,40,51,-1,218,212,215,-1,205,212,197,-1,219,212,220,-1,11,20,27,-1,11,5,20,-1,123,115,140,-1,123,85,115,-1,60,125,103,-1,60,74,125,-1,145,171,136,-1,171,169,136,-1,103,77,60,-1,157,147,175,-1,8,19,28,-1,19,70,28,-1,6,21,16,-1,15,46,9,-1,46,24,9,-1,7,23,22,-1,7,10,23,-1,130,94,46,-1,94,24,46,-1,10,7,3,-1,173,182,188,-1,173,164,182,-1,41,73,21,-1,41,87,73,-1,16,21,33,-1,11,21,4,-1,235,212,233,-1,226,212,219,-1,180,199,181,-1,180,189,199,-1,25,51,42,-1,51,40,42,-1,201,212,198,-1,215,212,205,-1,91,82,73,-1,82,57,73,-1,197,212,202,-1,198,212,210,-1,137,69,101,-1,101,146,137,-1,134,128,133,-1,133,150,134,-1,164,157,175,-1,175,182,164,-1,192,171,186,-1,116,120,181,-1,120,180,181,-1,220,212,218,-1,41,21,27,-1,4,21,6,-1,65,38,90,-1,65,17,38,-1,164,173,89,-1,173,95,89,-1,75,141,104,-1,104,52,75,-1,17,51,25,-1,17,65,51,-1,183,182,178,-1,183,188,182,-1,130,156,140,-1,130,154,156,-1,61,122,46,-1,11,27,21,-1,93,147,157,-1,93,121,147,-1,183,192,188,-1,192,189,188,-1,173,120,95,-1,173,180,120,-1,7,12,3,-1,63,82,62,-1,82,91,62,-1,176,171,145,-1,145,153,176,-1,136,168,144,-1,136,169,168,-1,72,84,126,-1,126,110,72,-1,234,212,235,-1,202,212,201,-1,118,135,78,-1,78,64,118,-1,16,14,6,-1,14,2,6,-1,87,88,97,-1,88,102,97,-1,233,212,226,-1,199,179,181,-1,69,167,112,-1,69,137,167,-1,59,66,105,-1,66,114,105,-1,132,168,160,-1,132,144,168,-1,143,104,152,-1,161,141,170,-1,112,83,69,-1,83,40,69,-1,228,190,193,-1,116,61,32,-1,70,93,28,-1,70,121,93,-1,156,166,138,-1,94,88,54,-1,102,115,85,-1,14,55,13,-1,14,31,55,-1,102,94,115,-1,102,88,94,-1,24,5,9,-1,24,20,5,-1,1,0,3,-1,1,2,0,-1,134,70,107,-1,121,70,134,-1,93,23,28,-1,93,89,23,-1,95,29,22,-1,95,120,29,-1,29,116,32,-1,29,120,116,-1,228,177,190,-1,228,230,177,-1,155,217,158,-1,217,155,216,-1,162,209,159,-1,209,162,214,-1,211,229,221,-1,211,213,229,-1,167,222,185,-1,222,167,203,-1,206,148,149,-1,206,204,148,-1,231,235,237,-1,235,231,234,-1,236,226,232,-1,226,236,233,-1,219,227,225,-1,220,227,219,-1,218,223,224,-1,215,223,218,-1,207,197,195,-1,197,207,205,-1,202,194,196,-1,201,194,202,-1,191,228,221,-1,208,228,191,-1,230,237,216,-1,237,230,231,-1,217,232,214,-1,232,217,236,-1,225,206,209,-1,227,206,225,-1,224,200,204,-1,223,200,224,-1,184,195,203,-1,195,184,207,-1,196,229,222,-1,194,229,196,-1,143,96,104,-1,124,96,143,-1,112,118,83,-1,142,118,112,-1,141,163,170,-1,141,135,163,-1,141,152,104,-1,152,141,161,-1,119,92,109,-1,119,108,92,-1,127,117,131,-1,127,113,117,-1,111,65,90,-1,106,65,111,-1,177,124,143,-1,177,165,124,-1,50,72,66,-1,64,72,50,-1,47,35,53,-1,49,35,47,-1,84,75,98,-1,75,84,78,-1,44,49,79,-1,44,35,49,-1,71,37,81,-1,71,34,37,-1,17,26,38,-1,17,18,26,-1,59,25,42,-1,59,30,25,-1,171,187,186,-1,171,176,187,-1,160,178,172,-1,160,168,178,-1,144,105,114,-1,105,144,132,-1,50,40,83,-1,42,40,50,-1,179,186,187,-1,186,179,199,-1,127,149,111,-1,127,159,149,-1,35,48,58,-1,48,35,44,-1,102,67,97,-1,102,85,67,-1,54,87,41,-1,54,88,87,-1,4,2,1,-1,6,2,4,-1,14,33,31,-1,33,14,16,-1,57,80,56,-1,82,80,57,-1,63,39,60,-1,43,39,63,-1,90,71,113,-1,71,90,38,-1,163,185,213,-1,142,185,163,-1,58,53,35,-1,53,58,100,-1,155,124,165,-1,124,155,109,-1,36,34,43,-1,36,37,34,-1,100,86,53,-1,100,129,86,-1,98,126,84,-1,126,98,139,-1,110,66,72,-1,114,66,110,-1,30,45,18,-1,45,30,68,-1,160,99,132,-1,160,133,99,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal4_Geo_5_319_normalIndex_2()
		{
			int[] value = {166,153,138,-1,166,176,153,-1,97,62,91,-1,67,62,97,-1,22,12,7,-1,22,29,12,-1,180,188,189,-1,188,180,173,-1,169,192,183,-1,169,171,192,-1,116,179,151,-1,181,179,116,-1,46,154,130,-1,46,122,154,-1,107,19,76,-1,107,70,19,-1,13,76,19,-1,76,13,55,-1,150,175,147,-1,172,175,150,-1,192,199,189,-1,199,192,186,-1,148,101,106,-1,148,146,101,-1,45,60,39,-1,45,74,60,-1,183,168,169,-1,178,168,183,-1,113,81,117,-1,81,113,71,-1,159,131,162,-1,131,159,127,-1,62,43,63,-1,62,36,43,-1,130,115,94,-1,140,115,130,-1,123,129,100,-1,138,129,123,-1,148,111,149,-1,148,106,111,-1,132,68,105,-1,132,99,68,-1,45,99,74,-1,99,45,68,-1,174,176,166,-1,174,187,176,-1,160,150,133,-1,150,160,172,-1,157,89,93,-1,89,157,164,-1,78,141,75,-1,78,135,141,-1,167,142,112,-1,167,185,142,-1,161,211,193,-1,161,170,211,-1,15,3,12,-1,3,15,9,-1,3,8,10,-1,3,0,8,-1,170,213,211,-1,213,170,163,-1,83,64,50,-1,118,64,83,-1,129,153,139,-1,138,153,129,-1,139,145,126,-1,139,153,145,-1,143,190,177,-1,152,190,143,-1,208,234,231,-1,208,210,234,-1,96,52,104,-1,52,96,47,-1,77,76,55,-1,77,103,76,-1,57,21,73,-1,57,33,21,-1,162,119,158,-1,162,131,119,-1,117,79,108,-1,79,117,81,-1,62,48,36,-1,62,67,48,-1,114,136,144,-1,114,110,136,-1,91,87,97,-1,91,73,87,-1,151,187,174,-1,151,179,187,-1,150,121,134,-1,150,147,121,-1,76,125,107,-1,103,125,76,-1,10,28,23,-1,8,28,10,-1,32,12,29,-1,15,12,32,-1,0,19,8,-1,0,13,19,-1,145,110,126,-1,110,145,136,-1,156,123,140,-1,123,156,138,-1,99,128,74,-1,99,133,128,-1,105,30,59,-1,105,68,30,-1,86,139,98,-1,139,86,129,-1,44,36,48,-1,44,37,36,-1,18,39,26,-1,39,18,45,-1,92,47,96,-1,47,92,49,-1,85,100,58,-1,100,85,123,-1,43,26,39,-1,34,26,43,-1,60,82,63,-1,60,80,82,-1,57,31,33,-1,57,56,31,-1,4,5,11,-1,4,1,5,-1,41,20,54,-1,27,20,41,-1,67,58,48,-1,67,85,58,-1,79,92,108,-1,79,49,92,-1,158,109,155,-1,119,109,158,-1,172,182,175,-1,172,178,182,-1,66,42,50,-1,66,59,42,-1,30,17,25,-1,30,18,17,-1,38,34,71,-1,38,26,34,-1,81,44,79,-1,81,37,44,-1,52,98,75,-1,52,86,98,-1,64,84,72,-1,78,84,64,-1,52,53,86,-1,47,53,52,-1,15,61,46,-1,15,32,61,-1,161,190,152,-1,161,193,190,-1,106,51,65,-1,101,51,106,-1,113,111,90,-1,111,113,127,-1,131,108,119,-1,131,117,108,-1,135,142,163,-1,135,118,142,-1,109,96,124,-1,109,92,96,-1,194,221,229,-1,191,221,194,-1,203,196,222,-1,196,203,195,-1,200,207,184,-1,207,200,223,-1,227,204,206,-1,224,204,227,-1,232,209,214,-1,225,209,232,-1,216,236,217,-1,236,216,237,-1,228,231,230,-1,231,228,208,-1,201,191,194,-1,198,191,201,-1,195,202,196,-1,202,195,197,-1,223,205,207,-1,205,223,215,-1,220,224,227,-1,218,224,220,-1,226,225,232,-1,219,225,226,-1,237,233,236,-1,233,237,235,-1,198,208,191,-1,198,210,208,-1,209,149,159,-1,206,149,209,-1,204,146,148,-1,204,200,146,-1,137,203,167,-1,203,137,184,-1,222,213,185,-1,229,213,222,-1,193,221,228,-1,193,211,221,-1,158,214,162,-1,214,158,217,-1,165,216,155,-1,165,230,216,-1,122,174,154,-1,174,122,151,-1,151,61,116,-1,61,151,122,-1,22,89,95,-1,23,89,22,-1,125,134,107,-1,134,125,128,-1,9,1,3,-1,9,5,1,-1,54,24,94,-1,54,20,24,-1,13,2,14,-1,0,2,13,-1,56,77,55,-1,80,77,56,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal5_Geo_5_325_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,4,6,5,-1,7,8,9,-1,10,11,12,-1,13,14,15,-1,15,16,13,-1,17,18,19,-1,17,20,18,-1,21,22,23,-1,21,24,22,-1,25,19,18,-1,26,27,28,-1,29,30,31,-1,29,32,30,-1,33,34,35,-1,33,36,34,-1,37,27,38,-1,39,40,41,-1,39,42,40,-1,43,44,45,-1,43,46,44,-1,47,48,49,-1,48,50,49,-1,51,27,52,-1,53,27,54,-1,55,56,57,-1,55,58,56,-1,59,3,60,-1,59,61,3,-1,2,11,62,-1,2,12,11,-1,46,63,64,-1,64,65,46,-1,66,67,68,-1,67,69,68,-1,62,0,2,-1,70,71,72,-1,71,73,72,-1,74,75,76,-1,77,78,79,-1,78,80,79,-1,81,82,83,-1,84,85,86,-1,85,87,86,-1,72,88,70,-1,72,89,88,-1,90,91,78,-1,91,80,78,-1,92,5,85,-1,5,87,85,-1,89,72,93,-1,94,95,96,-1,94,97,95,-1,98,99,82,-1,98,100,99,-1,83,82,101,-1,55,82,102,-1,103,27,104,-1,105,27,53,-1,106,65,64,-1,106,12,65,-1,107,108,109,-1,107,110,108,-1,111,74,97,-1,111,112,74,-1,113,30,114,-1,30,32,114,-1,115,27,116,-1,38,27,51,-1,117,118,99,-1,118,119,99,-1,52,27,120,-1,116,27,26,-1,24,29,31,-1,31,22,24,-1,121,122,123,-1,121,10,122,-1,97,74,95,-1,74,76,95,-1,124,67,125,-1,126,127,109,-1,127,107,109,-1,128,129,130,-1,128,131,129,-1,54,27,37,-1,9,62,90,-1,9,0,62,-1,98,82,57,-1,102,82,81,-1,132,45,133,-1,132,43,45,-1,97,94,111,-1,94,134,111,-1,48,68,50,-1,48,135,68,-1,136,137,138,-1,138,139,136,-1,43,30,113,-1,43,132,30,-1,140,95,141,-1,140,96,95,-1,15,14,60,-1,60,92,15,-1,142,143,85,-1,55,57,82,-1,112,75,74,-1,112,144,75,-1,135,145,66,-1,66,68,135,-1,140,124,96,-1,124,110,96,-1,94,127,134,-1,94,107,127,-1,72,73,93,-1,146,118,147,-1,118,117,147,-1,68,148,50,-1,68,69,148,-1,122,10,12,-1,12,106,122,-1,149,150,130,-1,130,129,149,-1,44,46,65,-1,65,151,44,-1,28,27,103,-1,120,27,115,-1,152,153,154,-1,152,155,153,-1,83,156,81,-1,156,157,81,-1,100,6,158,-1,6,4,158,-1,33,159,160,-1,33,35,159,-1,104,27,105,-1,108,161,109,-1,29,24,162,-1,162,163,29,-1,164,165,47,-1,165,48,47,-1,49,148,166,-1,49,50,148,-1,45,44,42,-1,42,39,45,-1,167,168,169,-1,167,133,168,-1,170,138,171,-1,172,137,173,-1,174,32,29,-1,29,163,174,-1,20,17,175,-1,126,142,176,-1,80,112,79,-1,80,144,112,-1,14,13,128,-1,5,6,177,-1,4,3,61,-1,156,9,178,-1,156,7,9,-1,87,58,86,-1,87,56,58,-1,179,180,93,-1,179,157,180,-1,121,80,91,-1,144,80,121,-1,112,88,79,-1,112,111,88,-1,134,71,70,-1,134,127,71,-1,71,126,176,-1,71,127,126,-1,159,181,160,-1,181,159,182,-1,183,184,185,-1,184,183,186,-1,187,188,189,-1,190,188,187,-1,162,191,192,-1,191,162,193,-1,194,195,196,-1,194,197,195,-1,198,103,199,-1,103,198,28,-1,200,105,201,-1,105,200,104,-1,202,54,203,-1,54,202,53,-1,37,204,205,-1,38,204,37,-1,206,52,207,-1,52,206,51,-1,208,115,209,-1,115,208,120,-1,210,20,190,-1,211,20,210,-1,18,199,182,-1,199,18,198,-1,181,201,186,-1,201,181,200,-1,184,203,194,-1,203,184,202,-1,205,23,197,-1,204,23,205,-1,21,207,193,-1,207,21,206,-1,191,209,187,-1,209,191,208,-1,170,212,138,-1,213,212,170,-1,155,163,214,-1,155,174,163,-1,137,215,173,-1,137,153,215,-1,137,171,138,-1,171,137,172,-1,169,216,217,-1,169,168,216,-1,218,133,167,-1,218,132,133,-1,19,213,170,-1,19,25,213,-1,219,220,152,-1,219,165,220,-1,221,222,223,-1,221,224,222,-1,225,136,149,-1,136,225,154,-1,224,226,227,-1,226,224,221,-1,164,113,114,-1,164,63,113,-1,228,67,229,-1,67,228,125,-1,166,141,230,-1,166,148,141,-1,220,32,174,-1,114,32,220,-1,161,125,228,-1,125,161,108,-1,196,169,185,-1,169,196,167,-1,224,231,232,-1,231,224,227,-1,4,233,158,-1,4,61,233,-1,177,100,98,-1,177,6,100,-1,102,157,179,-1,81,157,102,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal5_Geo_5_325_coordIndex_2()
		{
			int[] value = {156,101,7,-1,101,156,83,-1,119,1,8,-1,118,1,119,-1,151,146,234,-1,151,2,146,-1,133,39,168,-1,39,133,45,-1,215,192,189,-1,214,192,215,-1,232,222,224,-1,222,232,235,-1,159,213,25,-1,213,159,35,-1,236,42,234,-1,236,40,42,-1,235,150,222,-1,235,130,150,-1,145,149,129,-1,145,225,149,-1,135,165,219,-1,48,165,135,-1,166,106,49,-1,166,122,106,-1,13,131,128,-1,13,229,131,-1,158,147,117,-1,233,147,158,-1,107,96,110,-1,96,107,94,-1,69,124,140,-1,69,67,124,-1,126,161,237,-1,109,161,126,-1,85,15,92,-1,85,143,15,-1,178,90,78,-1,90,178,9,-1,123,76,75,-1,230,76,123,-1,124,108,110,-1,108,124,125,-1,195,31,218,-1,195,22,31,-1,65,2,151,-1,65,12,2,-1,140,148,69,-1,141,148,140,-1,168,41,216,-1,41,168,39,-1,185,217,183,-1,217,185,169,-1,234,147,236,-1,146,147,234,-1,92,3,5,-1,60,3,92,-1,59,130,235,-1,128,130,59,-1,195,167,196,-1,195,218,167,-1,49,64,47,-1,49,106,64,-1,228,13,16,-1,228,229,13,-1,166,123,122,-1,123,166,230,-1,154,137,136,-1,154,153,137,-1,162,214,163,-1,162,192,214,-1,172,188,175,-1,172,173,188,-1,84,93,73,-1,93,84,86,-1,93,77,89,-1,93,180,77,-1,173,189,188,-1,189,173,215,-1,152,174,155,-1,152,220,174,-1,129,66,145,-1,129,131,66,-1,170,17,19,-1,171,17,170,-1,211,28,198,-1,211,26,28,-1,212,139,138,-1,139,212,223,-1,119,82,99,-1,119,101,82,-1,183,33,160,-1,183,217,33,-1,216,226,36,-1,226,216,41,-1,147,231,236,-1,147,233,231,-1,117,100,158,-1,117,99,100,-1,237,228,16,-1,237,161,228,-1,123,144,121,-1,123,75,144,-1,90,11,91,-1,62,11,90,-1,89,79,88,-1,77,79,89,-1,176,73,71,-1,84,73,176,-1,180,78,77,-1,180,178,78,-1,14,59,60,-1,59,14,128,-1,131,67,66,-1,131,229,67,-1,47,63,164,-1,47,64,63,-1,145,219,225,-1,135,219,145,-1,227,236,231,-1,227,40,236,-1,34,223,212,-1,223,34,221,-1,61,235,232,-1,235,61,59,-1,234,44,151,-1,42,44,234,-1,2,118,146,-1,2,1,118,-1,119,7,101,-1,119,8,7,-1,102,58,55,-1,102,179,58,-1,98,56,177,-1,57,56,98,-1,233,232,231,-1,233,61,232,-1,221,36,226,-1,221,34,36,-1,230,95,76,-1,230,141,95,-1,165,114,220,-1,165,164,114,-1,113,46,43,-1,113,63,46,-1,41,227,226,-1,41,40,227,-1,139,149,136,-1,139,150,149,-1,152,225,219,-1,154,225,152,-1,223,150,139,-1,223,222,150,-1,84,142,85,-1,84,176,142,-1,172,17,171,-1,172,175,17,-1,218,30,132,-1,31,30,218,-1,217,36,33,-1,217,216,36,-1,153,214,215,-1,153,155,214,-1,35,212,213,-1,35,34,212,-1,209,190,187,-1,210,190,209,-1,193,208,191,-1,208,193,207,-1,23,206,21,-1,206,23,204,-1,203,197,194,-1,205,197,203,-1,186,202,184,-1,202,186,201,-1,182,200,181,-1,200,182,199,-1,20,198,18,-1,198,20,211,-1,115,210,209,-1,116,210,115,-1,207,120,208,-1,120,207,52,-1,204,51,206,-1,51,204,38,-1,54,205,203,-1,37,205,54,-1,201,53,202,-1,53,201,105,-1,199,104,200,-1,104,199,103,-1,116,211,210,-1,116,26,211,-1,185,194,196,-1,194,185,184,-1,197,22,195,-1,197,23,22,-1,24,193,162,-1,193,24,21,-1,191,189,192,-1,187,189,191,-1,175,190,20,-1,175,188,190,-1,160,186,183,-1,186,160,181,-1,25,182,159,-1,25,18,182,-1,143,16,15,-1,16,143,237,-1,237,142,126,-1,142,237,143,-1,70,111,134,-1,88,111,70,-1,11,121,91,-1,121,11,10,-1,86,179,93,-1,86,58,179,-1,177,87,5,-1,177,56,87,-1,178,157,156,-1,180,157,178,-1,8,0,9,-1,1,0,8,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getldphal5_Geo_5_325_normalIndex_1()
		{
			int[] value = {114,109,96,-1,117,111,101,-1,111,105,101,-1,49,82,78,-1,146,145,106,-1,150,144,151,-1,151,169,150,-1,191,235,179,-1,191,237,235,-1,193,157,195,-1,193,137,157,-1,171,179,235,-1,220,216,233,-1,50,52,119,-1,50,25,52,-1,136,92,121,-1,136,131,92,-1,214,216,213,-1,100,60,107,-1,100,59,60,-1,21,37,63,-1,21,23,37,-1,97,94,130,-1,94,133,130,-1,205,216,200,-1,217,216,215,-1,13,30,35,-1,13,9,30,-1,89,117,134,-1,89,71,117,-1,96,145,135,-1,96,106,145,-1,23,19,72,-1,72,74,23,-1,120,161,125,-1,161,162,125,-1,135,114,96,-1,17,20,4,-1,20,8,4,-1,158,143,172,-1,6,27,24,-1,27,69,24,-1,11,32,22,-1,12,47,10,-1,47,31,10,-1,4,18,17,-1,4,5,18,-1,98,126,27,-1,126,69,27,-1,128,101,47,-1,101,31,47,-1,5,4,0,-1,160,178,187,-1,160,155,178,-1,62,90,32,-1,62,99,90,-1,22,32,48,-1,13,32,7,-1,234,216,229,-1,225,216,217,-1,110,74,72,-1,110,106,74,-1,174,190,176,-1,174,185,190,-1,68,158,155,-1,68,80,158,-1,16,52,26,-1,52,25,26,-1,208,216,209,-1,213,216,205,-1,102,103,90,-1,103,81,90,-1,200,216,206,-1,209,216,220,-1,137,50,119,-1,119,157,137,-1,142,148,156,-1,142,146,148,-1,155,158,178,-1,158,172,178,-1,189,161,182,-1,95,93,176,-1,93,174,176,-1,112,108,85,-1,112,127,108,-1,215,216,214,-1,78,135,98,-1,78,114,135,-1,62,32,35,-1,7,32,11,-1,86,63,123,-1,86,21,63,-1,155,160,68,-1,160,66,68,-1,94,125,133,-1,94,83,125,-1,42,122,77,-1,77,33,42,-1,21,52,16,-1,21,86,52,-1,188,178,177,-1,188,187,178,-1,151,144,134,-1,134,128,151,-1,55,116,47,-1,13,35,32,-1,80,143,158,-1,80,118,143,-1,83,88,120,-1,120,125,83,-1,188,189,187,-1,189,185,187,-1,160,93,66,-1,160,174,93,-1,4,8,0,-1,87,103,76,-1,103,102,76,-1,125,165,133,-1,125,162,165,-1,148,146,106,-1,106,110,148,-1,61,45,85,-1,85,108,61,-1,37,23,74,-1,74,70,37,-1,233,216,234,-1,206,216,208,-1,36,115,44,-1,36,79,115,-1,22,15,11,-1,15,3,11,-1,99,105,104,-1,105,111,104,-1,136,173,183,-1,136,121,173,-1,229,216,225,-1,190,175,176,-1,50,137,159,-1,159,84,50,-1,43,40,97,-1,40,94,97,-1,130,165,163,-1,130,133,165,-1,63,37,59,-1,59,100,63,-1,138,141,149,-1,138,123,141,-1,129,77,139,-1,154,122,166,-1,51,25,50,-1,50,84,51,-1,237,191,192,-1,95,55,29,-1,69,80,24,-1,69,118,80,-1,144,150,112,-1,101,105,67,-1,111,117,71,-1,15,78,14,-1,15,49,78,-1,31,9,10,-1,31,30,9,-1,2,1,0,-1,2,3,1,-1,142,69,126,-1,118,69,142,-1,80,18,24,-1,80,68,18,-1,66,20,17,-1,66,93,20,-1,20,95,29,-1,20,93,95,-1,173,224,183,-1,224,173,226,-1,186,210,180,-1,210,186,218,-1,228,197,194,-1,230,197,228,-1,159,212,181,-1,212,159,196,-1,203,164,168,-1,203,198,164,-1,231,234,236,-1,234,231,233,-1,232,225,227,-1,225,232,229,-1,222,215,221,-1,215,222,217,-1,214,219,223,-1,213,219,214,-1,207,200,199,-1,200,207,205,-1,204,208,201,-1,208,204,206,-1,202,237,230,-1,211,237,202,-1,235,236,226,-1,236,235,231,-1,224,227,218,-1,227,224,232,-1,210,221,203,-1,221,210,222,-1,223,195,198,-1,219,195,223,-1,193,199,196,-1,199,193,207,-1,212,201,228,-1,201,212,204,-1,129,75,77,-1,113,75,129,-1,79,84,124,-1,79,51,84,-1,122,153,166,-1,122,115,153,-1,122,139,77,-1,139,122,154,-1,149,140,152,-1,149,141,140,-1,132,123,138,-1,132,86,123,-1,179,113,129,-1,179,171,113,-1,41,28,36,-1,41,40,28,-1,53,38,34,-1,53,39,38,-1,46,42,61,-1,42,46,44,-1,39,91,58,-1,91,39,53,-1,43,16,26,-1,43,19,16,-1,184,161,167,-1,161,184,182,-1,163,177,170,-1,163,165,177,-1,28,25,51,-1,26,25,28,-1,175,182,184,-1,182,175,190,-1,168,149,180,-1,149,168,138,-1,39,57,56,-1,57,39,58,-1,111,73,104,-1,111,71,73,-1,67,99,62,-1,67,105,99,-1,7,3,2,-1,11,3,7,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getldphal5_Geo_5_325_normalIndex_2()
		{
			int[] value = {15,48,49,-1,48,15,22,-1,81,109,82,-1,103,109,81,-1,70,87,64,-1,70,96,87,-1,123,100,141,-1,100,123,63,-1,153,181,194,-1,124,181,153,-1,56,38,39,-1,38,56,65,-1,173,113,171,-1,113,173,121,-1,54,59,64,-1,54,60,59,-1,65,45,38,-1,65,85,45,-1,88,61,108,-1,88,46,61,-1,83,40,41,-1,94,40,83,-1,163,110,130,-1,163,148,110,-1,150,127,112,-1,150,167,127,-1,104,76,102,-1,73,76,104,-1,174,187,185,-1,187,174,160,-1,162,189,188,-1,162,161,189,-1,95,175,147,-1,176,175,95,-1,47,151,128,-1,47,116,151,-1,14,98,27,-1,98,14,78,-1,156,172,143,-1,170,172,156,-1,189,190,185,-1,190,189,182,-1,164,119,132,-1,164,157,119,-1,74,96,70,-1,74,106,96,-1,188,165,162,-1,177,165,188,-1,141,107,140,-1,107,141,100,-1,180,152,186,-1,152,180,149,-1,64,76,54,-1,87,76,64,-1,128,117,101,-1,134,117,128,-1,89,85,65,-1,112,85,89,-1,164,138,168,-1,164,132,138,-1,130,72,97,-1,130,110,72,-1,184,150,169,-1,184,167,150,-1,163,156,148,-1,156,163,170,-1,44,122,42,-1,44,115,122,-1,159,124,84,-1,159,181,124,-1,154,197,192,-1,154,166,197,-1,12,0,8,-1,0,12,10,-1,0,6,5,-1,0,1,6,-1,166,194,197,-1,194,166,153,-1,36,51,79,-1,36,28,51,-1,108,120,88,-1,108,127,120,-1,129,191,179,-1,139,191,129,-1,211,233,231,-1,211,220,233,-1,75,33,77,-1,33,75,34,-1,81,32,90,-1,81,48,32,-1,186,136,183,-1,186,152,136,-1,140,91,131,-1,91,140,107,-1,76,57,54,-1,76,73,57,-1,102,99,104,-1,102,90,99,-1,147,184,169,-1,147,175,184,-1,156,118,142,-1,156,143,118,-1,98,145,126,-1,135,145,98,-1,5,24,18,-1,6,24,5,-1,29,8,20,-1,12,8,29,-1,1,27,6,-1,1,14,27,-1,144,89,134,-1,89,144,112,-1,127,161,120,-1,127,167,161,-1,97,19,43,-1,97,72,19,-1,88,41,46,-1,83,41,88,-1,58,54,57,-1,58,60,54,-1,92,34,75,-1,34,92,53,-1,71,65,56,-1,65,71,89,-1,64,37,70,-1,59,37,64,-1,96,103,87,-1,96,109,103,-1,81,49,48,-1,81,82,49,-1,7,9,13,-1,7,2,9,-1,62,30,67,-1,35,30,62,-1,73,56,57,-1,73,71,56,-1,53,131,91,-1,53,92,131,-1,170,178,172,-1,170,177,178,-1,40,26,28,-1,40,43,26,-1,16,23,21,-1,16,19,23,-1,107,58,91,-1,107,60,58,-1,33,61,42,-1,33,45,61,-1,36,46,41,-1,44,46,36,-1,34,45,33,-1,34,38,45,-1,12,55,47,-1,12,29,55,-1,154,191,139,-1,154,192,191,-1,132,52,86,-1,119,52,132,-1,152,131,136,-1,152,140,131,-1,115,124,153,-1,115,79,124,-1,121,75,113,-1,121,92,75,-1,201,230,228,-1,202,230,201,-1,196,204,212,-1,204,196,199,-1,195,207,193,-1,207,195,219,-1,221,198,203,-1,223,198,221,-1,218,222,210,-1,222,218,227,-1,226,232,224,-1,232,226,236,-1,237,231,235,-1,231,237,211,-1,208,202,201,-1,209,202,208,-1,199,206,204,-1,206,199,200,-1,219,205,207,-1,205,219,213,-1,215,223,221,-1,214,223,215,-1,227,217,222,-1,217,227,225,-1,236,229,232,-1,229,236,234,-1,209,211,202,-1,209,220,211,-1,180,203,168,-1,203,180,210,-1,198,157,164,-1,198,195,157,-1,137,196,159,-1,196,137,193,-1,212,194,181,-1,228,194,212,-1,192,230,237,-1,192,197,230,-1,183,218,186,-1,218,183,224,-1,171,226,173,-1,171,235,226,-1,116,169,151,-1,169,116,147,-1,147,55,95,-1,55,147,116,-1,17,68,66,-1,18,68,17,-1,145,142,126,-1,142,145,146,-1,10,2,0,-1,10,9,2,-1,67,31,101,-1,67,30,31,-1,14,3,15,-1,1,3,14,-1,82,114,78,-1,109,114,82,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfdphal_Geo_5_331_coordIndex_2()
		{
			int[] value = {66,61,60,-1,66,174,61,-1,162,53,91,-1,53,162,69,-1,158,193,74,-1,194,193,158,-1,162,161,72,-1,162,164,161,-1,159,74,73,-1,74,159,158,-1,114,155,154,-1,155,114,113,-1,189,121,155,-1,189,156,121,-1,195,14,13,-1,15,14,195,-1,28,95,29,-1,28,185,95,-1,195,171,124,-1,171,195,127,-1,84,183,85,-1,84,187,183,-1,10,26,80,-1,10,131,26,-1,150,48,71,-1,150,87,48,-1,3,135,137,-1,71,135,3,-1,149,151,148,-1,151,149,146,-1,152,179,153,-1,180,179,152,-1,152,146,149,-1,152,141,146,-1,16,141,152,-1,16,139,141,-1,149,180,152,-1,149,147,180,-1,77,71,70,-1,77,135,71,-1,131,24,26,-1,131,133,24,-1,150,81,87,-1,81,150,82,-1,21,127,126,-1,21,171,127,-1,128,85,183,-1,85,128,125,-1,127,13,125,-1,127,195,13,-1,181,185,28,-1,181,184,185,-1,184,23,22,-1,184,181,23,-1,124,15,195,-1,15,124,123,-1,191,118,117,-1,191,119,118,-1,177,155,113,-1,177,189,155,-1,113,157,177,-1,111,157,113,-1,0,109,160,-1,0,110,109,-1,107,2,104,-1,107,110,2,-1,109,194,158,-1,194,109,106,-1,194,165,193,-1,75,165,194,-1,63,103,62,-1,63,78,103,-1,37,172,38,-1,37,167,172,-1,43,175,176,-1,43,42,175,-1,94,34,93,-1,33,34,94,-1,190,50,93,-1,190,192,50,-1,163,50,192,-1,163,91,50,-1,84,172,173,-1,172,84,83,-1,30,80,79,-1,30,82,80,-1,106,75,194,-1,106,78,75,-1,74,108,72,-1,74,193,108,-1,175,46,96,-1,42,46,175,-1,67,102,68,-1,112,102,67,-1,116,161,164,-1,161,116,115,-1,192,117,163,-1,192,191,117,-1,120,190,176,-1,190,120,119,-1,157,1,0,-1,1,157,67,-1,189,73,156,-1,159,73,189,-1,170,51,188,-1,51,170,52,-1,102,98,167,-1,98,102,99,-1,186,168,182,-1,168,186,173,-1,105,40,41,-1,105,101,40,-1,182,35,186,-1,182,31,35,-1,185,187,95,-1,185,183,187,-1,22,128,184,-1,22,126,128,-1,182,97,45,-1,182,168,97,-1,28,79,181,-1,30,79,28,-1,178,19,20,-1,19,178,17,-1,178,23,25,-1,178,20,23,-1,20,129,21,-1,19,129,20,-1,144,130,129,-1,144,145,130,-1,16,123,139,-1,123,16,15,-1,180,9,179,-1,9,180,136,-1,27,151,142,-1,132,151,27,-1,134,4,148,-1,5,4,134,-1};
			return value;
		}

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

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfdphal2_Geo_5_337_coordIndex_2()
		{
			int[] value = {24,113,25,-1,24,65,113,-1,118,49,139,-1,118,50,49,-1,28,58,29,-1,28,61,58,-1,155,56,44,-1,155,152,56,-1,128,54,53,-1,128,4,54,-1,154,15,126,-1,15,154,55,-1,53,129,128,-1,53,150,129,-1,157,44,17,-1,155,44,157,-1,98,81,149,-1,98,97,81,-1,146,154,153,-1,146,145,154,-1,152,156,151,-1,156,152,155,-1,157,149,148,-1,98,149,157,-1,78,119,130,-1,119,78,77,-1,80,146,91,-1,80,79,146,-1,46,147,45,-1,147,46,145,-1,68,88,66,-1,68,21,88,-1,39,101,40,-1,127,101,39,-1,111,59,61,-1,115,59,111,-1,30,142,31,-1,142,30,36,-1,142,143,116,-1,142,140,143,-1,115,36,37,-1,115,141,36,-1,29,137,122,-1,29,58,137,-1,67,35,74,-1,35,67,64,-1,119,49,51,-1,77,49,119,-1,60,87,136,-1,95,87,60,-1,158,135,159,-1,84,135,158,-1,134,130,132,-1,131,130,134,-1,78,89,76,-1,89,78,90,-1,41,21,68,-1,22,21,41,-1,20,159,23,-1,158,159,20,-1,107,125,108,-1,107,47,125,-1,0,13,126,-1,14,13,0,-1,2,7,9,-1,8,7,2,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfdphal2_Geo_5_337_normalIndex_2()
		{
			int[] value = {90,67,73,-1,90,88,67,-1,83,92,47,-1,83,82,92,-1,79,97,106,-1,79,87,97,-1,136,113,145,-1,136,105,113,-1,25,93,55,-1,25,50,93,-1,13,8,6,-1,8,13,12,-1,55,30,25,-1,55,51,30,-1,156,145,157,-1,136,145,156,-1,148,139,153,-1,148,137,139,-1,91,13,28,-1,91,85,13,-1,105,143,112,-1,143,105,136,-1,156,153,159,-1,148,153,156,-1,104,119,123,-1,119,104,102,-1,121,91,96,-1,121,127,91,-1,66,124,122,-1,124,66,85,-1,23,4,1,-1,23,20,4,-1,29,18,32,-1,7,18,29,-1,86,68,87,-1,71,68,86,-1,56,59,58,-1,59,56,60,-1,59,74,64,-1,59,72,74,-1,71,60,53,-1,71,77,60,-1,106,110,130,-1,106,97,110,-1,11,33,24,-1,33,11,16,-1,119,92,109,-1,102,92,119,-1,52,26,61,-1,31,26,52,-1,101,117,94,-1,120,117,101,-1,131,123,135,-1,118,123,131,-1,104,70,65,-1,70,104,103,-1,38,20,23,-1,36,20,38,-1,49,94,44,-1,101,94,49,-1,115,128,126,-1,115,125,128,-1,17,15,6,-1,14,15,17,-1,35,21,3,-1,45,21,35,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfdphal3_Geo_5_343_coordIndex_2()
		{
			int[] value = {151,57,33,-1,151,45,57,-1,120,42,44,-1,120,5,42,-1,44,117,120,-1,117,44,47,-1,153,33,9,-1,153,151,33,-1,74,49,75,-1,74,95,49,-1,98,93,150,-1,93,98,147,-1,115,0,6,-1,115,1,0,-1,45,152,46,-1,151,152,45,-1,74,153,95,-1,153,74,149,-1,77,114,148,-1,77,129,114,-1,127,110,128,-1,16,110,127,-1,36,50,37,-1,147,50,36,-1,67,138,70,-1,67,122,138,-1,96,146,6,-1,146,96,65,-1,7,119,118,-1,7,116,119,-1,103,104,102,-1,103,105,104,-1,144,143,145,-1,144,62,143,-1,25,30,139,-1,30,25,24,-1,106,140,141,-1,106,139,140,-1,61,70,23,-1,70,61,68,-1,40,137,110,-1,40,60,137,-1,20,135,80,-1,20,134,135,-1,68,26,72,-1,61,26,68,-1,154,133,157,-1,154,86,133,-1,132,128,130,-1,132,126,128,-1,127,90,73,-1,91,90,127,-1,71,124,69,-1,125,124,71,-1,123,122,67,-1,123,66,122,-1,64,157,121,-1,64,154,157,-1,99,56,100,-1,56,99,38,-1,120,118,119,-1,120,117,118,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfdphal3_Geo_5_343_normalIndex_2()
		{
			int[] value = {133,110,138,-1,133,106,110,-1,35,85,66,-1,35,49,85,-1,66,31,35,-1,31,66,54,-1,136,138,145,-1,136,133,138,-1,153,128,137,-1,153,132,128,-1,75,19,25,-1,19,75,65,-1,12,2,13,-1,12,4,2,-1,106,148,114,-1,133,148,106,-1,153,136,132,-1,136,153,155,-1,152,151,157,-1,152,140,151,-1,91,116,118,-1,88,116,91,-1,62,120,112,-1,65,120,62,-1,14,7,3,-1,14,11,7,-1,26,23,13,-1,23,26,33,-1,0,5,9,-1,0,1,5,-1,58,73,56,-1,58,72,73,-1,51,68,59,-1,51,61,68,-1,99,103,104,-1,103,99,94,-1,101,87,86,-1,101,104,87,-1,15,3,32,-1,3,15,8,-1,100,129,116,-1,100,105,129,-1,102,108,130,-1,102,84,108,-1,8,41,18,-1,15,41,8,-1,98,122,92,-1,98,124,122,-1,131,118,135,-1,131,117,118,-1,91,50,52,-1,89,50,91,-1,34,29,30,-1,40,29,34,-1,21,11,14,-1,21,20,11,-1,46,92,45,-1,46,98,92,-1,111,127,125,-1,127,111,121,-1,35,9,5,-1,35,31,9,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfdphal4_Geo_5_349_coordIndex_2()
		{
			int[] value = {149,128,151,-1,149,129,128,-1,132,55,133,-1,123,55,132,-1,133,24,23,-1,24,133,55,-1,35,80,33,-1,80,35,82,-1,58,78,77,-1,57,78,58,-1,117,77,48,-1,117,63,77,-1,141,56,58,-1,141,5,56,-1,58,60,141,-1,60,58,61,-1,156,48,9,-1,156,117,48,-1,116,98,155,-1,98,116,71,-1,124,67,68,-1,67,124,153,-1,156,155,154,-1,156,116,155,-1,97,157,143,-1,26,157,97,-1,153,52,51,-1,153,70,52,-1,57,125,78,-1,57,13,125,-1,86,30,89,-1,86,17,30,-1,6,46,47,-1,6,59,46,-1,140,7,138,-1,7,140,139,-1,127,81,82,-1,127,130,81,-1,37,150,38,-1,43,150,37,-1,150,151,131,-1,150,149,151,-1,54,21,157,-1,54,19,21,-1,33,148,102,-1,33,80,148,-1,157,24,54,-1,157,26,24,-1,83,102,104,-1,83,33,102,-1,136,147,137,-1,136,108,147,-1,146,143,144,-1,146,142,143,-1,97,112,96,-1,113,112,97,-1,45,17,86,-1,45,18,17,-1,13,76,125,-1,76,13,12,-1,141,139,140,-1,141,60,139,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfdphal4_Geo_5_349_normalIndex_2()
		{
			int[] value = {81,90,87,-1,81,78,90,-1,89,95,97,-1,94,95,89,-1,97,88,53,-1,88,97,95,-1,51,85,100,-1,85,51,54,-1,73,116,122,-1,99,116,73,-1,147,122,153,-1,147,120,122,-1,33,91,73,-1,33,50,91,-1,73,42,33,-1,42,73,69,-1,156,153,157,-1,156,147,153,-1,141,130,143,-1,130,141,133,-1,52,13,20,-1,13,52,48,-1,156,143,154,-1,156,141,143,-1,74,112,110,-1,79,112,74,-1,48,104,45,-1,48,115,104,-1,99,117,116,-1,99,111,117,-1,24,21,15,-1,24,26,21,-1,11,39,25,-1,11,29,39,-1,12,6,4,-1,6,12,18,-1,58,57,54,-1,58,60,57,-1,66,77,76,-1,68,77,66,-1,77,87,86,-1,77,81,87,-1,107,128,112,-1,107,103,128,-1,100,121,140,-1,100,85,121,-1,112,88,107,-1,112,79,88,-1,118,140,152,-1,118,100,140,-1,113,131,106,-1,113,132,131,-1,124,110,129,-1,124,101,110,-1,74,49,46,-1,71,49,74,-1,37,26,24,-1,37,40,26,-1,111,119,117,-1,119,111,109,-1,33,18,12,-1,33,42,18,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfemur_Geo_5_355_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,12,15,13,-1,16,17,18,-1,18,8,16,-1,19,20,21,-1,22,23,24,-1,24,25,22,-1,26,27,28,-1,29,30,31,-1,32,33,34,-1,35,36,37,-1,38,39,26,-1,26,40,38,-1,41,42,43,-1,43,44,41,-1,45,46,47,-1,48,49,50,-1,49,51,52,-1,53,54,55,-1,53,56,54,-1,57,58,59,-1,60,53,55,-1,61,62,63,-1,61,64,62,-1,65,66,67,-1,68,69,70,-1,71,70,69,-1,72,73,74,-1,73,66,75,-1,75,76,73,-1,68,77,69,-1,68,78,77,-1,74,79,72,-1,78,80,81,-1,82,65,67,-1,83,84,85,-1,83,86,84,-1,87,88,89,-1,87,90,88,-1,84,91,85,-1,88,92,93,-1,93,89,88,-1,94,95,96,-1,97,98,99,-1,53,60,100,-1,101,102,103,-1,104,105,106,-1,101,107,102,-1,107,108,102,-1,82,109,110,-1,110,65,82,-1,111,112,113,-1,111,114,112,-1,115,108,107,-1,115,116,108,-1,117,118,104,-1,117,119,118,-1,120,121,99,-1,120,122,121,-1,123,124,125,-1,123,126,124,-1,127,128,129,-1,130,131,132,-1,131,126,133,-1,133,134,131,-1,135,136,137,-1,136,138,137,-1,139,140,141,-1,142,143,144,-1,142,145,143,-1,146,147,148,-1,149,150,151,-1,151,152,149,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,161,162,159,-1,163,164,165,-1,163,166,164,-1,160,167,168,-1,160,159,167,-1,169,40,26,-1,26,170,169,-1,171,40,169,-1,170,28,172,-1,170,26,28,-1,29,173,174,-1,175,47,46,-1,46,176,175,-1,177,175,176,-1,177,178,175,-1,45,47,179,-1,43,180,181,-1,182,183,184,-1,185,186,187,-1,185,188,186,-1,189,3,190,-1,189,191,3,-1,192,193,194,-1,2,195,196,-1,17,197,198,-1,198,18,17,-1,199,200,201,-1,199,202,200,-1,203,204,205,-1,204,206,205,-1,207,208,209,-1,210,211,212,-1,210,213,211,-1,214,215,216,-1,103,217,101,-1,103,218,217,-1,219,220,221,-1,219,222,220,-1,223,224,225,-1,223,122,224,-1,226,142,227,-1,142,148,227,-1,228,229,230,-1,231,232,233,-1,234,232,235,-1,236,237,238,-1,239,240,241,-1,241,242,239,-1,243,244,245,-1,245,211,243,-1,9,246,247,-1,9,248,246,-1,249,193,192,-1,151,205,206,-1,206,152,151,-1,145,142,226,-1,250,251,252,-1,253,254,255,-1,256,253,255,-1,256,257,253,-1,258,259,260,-1,258,153,259,-1,62,64,261,-1,262,263,264,-1,263,265,264,-1,266,267,268,-1,268,269,266,-1,270,271,272,-1,272,250,270,-1,273,274,275,-1,273,276,274,-1,277,278,279,-1,277,31,278,-1,280,281,282,-1,280,283,281,-1,284,285,286,-1,285,287,286,-1,288,289,290,-1,288,291,289,-1,274,268,275,-1,268,267,275,-1,292,293,294,-1,292,295,293,-1,296,297,298,-1,299,300,301,-1,301,302,299,-1,303,304,305,-1,303,306,304,-1,307,308,309,-1,308,310,309,-1,311,312,313,-1,313,309,311,-1,314,315,316,-1,314,317,315,-1,318,319,320,-1,318,312,319,-1,321,322,323,-1,322,324,323,-1,288,325,326,-1,327,328,329,-1,327,330,328,-1,331,332,333,-1,332,334,333,-1,335,336,337,-1,335,338,336,-1,339,340,341,-1,339,342,340,-1,343,344,345,-1,346,347,244,-1,244,243,346,-1,348,349,350,-1,348,351,349,-1,352,353,354,-1,352,355,353,-1,356,324,357,-1,324,322,357,-1,358,359,360,-1,360,361,358,-1,362,363,364,-1,362,365,363,-1,366,367,368,-1,368,369,366,-1,370,371,149,-1,149,372,370,-1,148,150,227,-1,373,226,227,-1,374,375,235,-1,376,377,378,-1,376,379,377,-1,380,381,382,-1,382,383,380,-1,384,385,386,-1,387,384,388,-1,379,385,389,-1,379,386,385,-1,377,379,390,-1,379,389,390,-1,391,392,143,-1,392,144,143,-1,393,394,395,-1,393,396,394,-1,397,398,399,-1,397,400,398,-1,401,402,403,-1,403,404,401,-1,405,406,407,-1,406,408,407,-1,409,410,411,-1,409,412,410,-1,413,410,414,-1,410,415,414,-1,416,417,418,-1,416,419,417,-1,24,420,421,-1,24,23,420,-1,422,423,424,-1,425,426,427,-1,425,428,426,-1,429,430,431,-1,429,432,430,-1,134,433,132,-1,132,131,134,-1,434,435,436,-1,434,437,435,-1,125,438,123,-1,125,434,438,-1,131,130,439,-1,384,440,441,-1,384,386,440,-1,383,386,380,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfemur_Geo_5_355_coordIndex_2()
		{
			int[] value = {383,440,386,-1,442,443,441,-1,442,444,443,-1,124,439,445,-1,445,446,124,-1,434,447,448,-1,448,437,434,-1,224,445,225,-1,224,446,445,-1,449,450,451,-1,452,453,454,-1,455,456,121,-1,455,457,456,-1,97,100,458,-1,459,460,461,-1,459,462,460,-1,460,463,461,-1,464,465,466,-1,464,467,465,-1,302,468,469,-1,302,470,468,-1,305,471,299,-1,305,472,471,-1,473,474,46,-1,46,45,473,-1,475,472,476,-1,472,477,476,-1,471,472,478,-1,478,479,471,-1,480,178,481,-1,480,175,178,-1,178,482,483,-1,483,481,178,-1,484,485,486,-1,485,487,486,-1,488,489,320,-1,313,490,307,-1,313,491,490,-1,492,493,494,-1,495,362,358,-1,34,365,496,-1,496,497,34,-1,498,497,496,-1,496,499,498,-1,500,174,361,-1,361,501,500,-1,27,26,502,-1,298,35,38,-1,38,503,298,-1,504,505,506,-1,505,507,506,-1,283,154,153,-1,508,493,509,-1,509,369,508,-1,510,511,512,-1,510,366,511,-1,157,156,513,-1,513,514,157,-1,515,516,517,-1,515,518,516,-1,515,517,519,-1,519,520,515,-1,521,297,296,-1,296,519,521,-1,522,523,171,-1,523,503,171,-1,524,525,526,-1,526,527,524,-1,526,525,259,-1,259,153,526,-1,528,529,530,-1,530,531,528,-1,532,533,534,-1,534,535,532,-1,536,534,537,-1,534,520,537,-1,538,539,529,-1,538,540,539,-1,541,542,260,-1,542,528,260,-1,543,544,545,-1,546,518,547,-1,547,545,546,-1,548,549,550,-1,548,551,549,-1,552,553,554,-1,554,555,552,-1,556,557,544,-1,556,558,557,-1,559,560,561,-1,560,556,561,-1,560,559,188,-1,188,562,560,-1,563,542,564,-1,563,538,542,-1,565,183,566,-1,183,182,566,-1,567,568,566,-1,566,569,567,-1,504,570,571,-1,570,572,571,-1,573,567,569,-1,573,574,567,-1,575,576,577,-1,577,578,575,-1,576,579,580,-1,580,577,576,-1,581,582,295,-1,583,584,573,-1,584,585,586,-1,584,583,585,-1,587,294,293,-1,293,588,587,-1,589,590,591,-1,591,592,589,-1,593,594,595,-1,593,596,594,-1,597,598,599,-1,599,600,597,-1,601,590,589,-1,601,602,590,-1,603,580,579,-1,604,588,605,-1,604,606,588,-1,607,608,609,-1,607,603,610,-1,607,611,612,-1,607,613,614,-1,607,605,615,-1,607,616,604,-1,617,618,619,-1,619,339,617,-1,339,345,342,-1,339,619,345,-1,620,621,343,-1,620,622,621,-1,623,624,625,-1,626,627,628,-1,626,629,627,-1,630,631,197,-1,18,6,8,-1,18,632,6,-1,633,634,635,-1,633,636,634,-1,637,638,639,-1,638,640,639,-1,641,642,643,-1,642,644,643,-1,645,646,647,-1,645,648,646,-1,645,649,648,-1,648,650,643,-1,651,652,649,-1,653,194,654,-1,654,655,653,-1,21,20,656,-1,20,657,656,-1,337,21,335,-1,337,19,21,-1,336,351,658,-1,351,348,658,-1,659,660,661,-1,661,662,659,-1,663,659,218,-1,659,662,218,-1,5,207,3,-1,662,664,218,-1,664,217,218,-1,650,209,665,-1,650,652,209,-1,666,641,667,-1,666,668,641,-1,669,670,671,-1,669,672,670,-1,673,674,675,-1,676,670,672,-1,676,677,670,-1,217,664,678,-1,658,348,679,-1,679,680,658,-1,681,682,683,-1,683,684,681,-1,685,686,687,-1,685,688,686,-1,106,689,104,-1,106,690,689,-1,685,222,688,-1,222,219,688,-1,691,692,693,-1,691,694,692,-1,695,696,697,-1,221,692,219,-1,221,698,692,-1,699,700,701,-1,699,702,700,-1,703,54,56,-1,704,82,705,-1,704,59,82,-1,702,706,707,-1,702,699,706,-1,708,709,710,-1,708,711,709,-1,712,713,714,-1,712,715,713,-1,716,717,718,-1,716,719,717,-1,720,721,722,-1,720,723,721,-1,724,725,726,-1,726,727,724,-1,91,93,468,-1,468,470,91,-1,728,162,291,-1,728,159,162,-1,61,63,729,-1,729,730,61,-1,731,732,733,-1,731,508,732,-1,272,271,263,-1,734,252,735,-1,734,736,252,-1,737,738,739,-1,739,33,737,-1,740,741,742,-1,743,744,745,-1,83,746,86,-1,83,747,746,-1,748,749,750,-1,750,751,748,-1,752,753,754,-1,52,755,756,-1,52,51,755,-1,757,322,321,-1,757,758,322,-1,759,760,761,-1,761,762,759,-1,763,764,765,-1,765,766,763,-1,767,768,769,-1,769,770,767,-1,771,364,772,-1,364,363,772,-1,773,739,738,-1,773,766,739,-1,740,763,741,-1,740,762,763,-1,774,775,256,-1,768,776,757,-1,776,758,757,-1,761,777,778,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfemur_Geo_5_355_coordIndex_3()
		{
			int[] value = {778,764,761,-1,760,777,761,-1,760,779,777,-1,776,777,779,-1,756,780,781,-1,756,755,780,-1,266,253,782,-1,253,257,782,-1,271,738,737,-1,783,784,274,-1,250,252,736,-1,736,270,250,-1,272,731,250,-1,729,63,783,-1,783,785,729,-1,786,787,788,-1,64,789,261,-1,725,790,791,-1,725,724,790,-1,792,793,794,-1,792,795,793,-1,717,795,718,-1,717,90,795,-1,796,797,798,-1,796,799,797,-1,723,718,721,-1,723,716,718,-1,800,801,94,-1,94,802,800,-1,723,714,713,-1,723,720,714,-1,797,803,804,-1,797,805,803,-1,113,112,110,-1,112,806,110,-1,56,807,109,-1,56,53,807,-1,222,118,119,-1,119,220,222,-1,692,698,693,-1,808,687,116,-1,808,685,687,-1,809,108,116,-1,116,687,809,-1,810,811,658,-1,658,680,810,-1,812,672,813,-1,812,676,672,-1,353,814,815,-1,815,816,353,-1,817,14,818,-1,818,819,817,-1,820,821,822,-1,820,823,821,-1,824,822,825,-1,824,675,822,-1,666,667,813,-1,667,826,813,-1,667,827,826,-1,826,827,103,-1,103,102,826,-1,103,208,218,-1,103,665,208,-1,208,663,218,-1,19,661,660,-1,19,337,661,-1,335,21,341,-1,21,656,341,-1,651,649,645,-1,645,828,651,-1,646,829,647,-1,646,644,829,-1,830,831,832,-1,830,833,831,-1,834,831,829,-1,834,835,831,-1,836,837,835,-1,835,838,836,-1,638,839,640,-1,638,840,839,-1,633,841,842,-1,633,635,841,-1,634,636,6,-1,6,632,634,-1,843,844,7,-1,845,846,847,-1,845,848,846,-1,847,849,850,-1,849,851,852,-1,851,627,852,-1,853,239,854,-1,625,855,856,-1,856,623,625,-1,857,856,629,-1,857,623,856,-1,858,859,249,-1,858,860,859,-1,861,858,249,-1,249,192,861,-1,607,604,605,-1,607,615,613,-1,607,614,611,-1,607,612,603,-1,607,610,608,-1,607,609,616,-1,611,862,863,-1,864,580,612,-1,580,603,612,-1,606,865,866,-1,598,602,601,-1,598,597,602,-1,595,594,599,-1,594,600,599,-1,592,591,596,-1,596,593,592,-1,584,587,588,-1,584,586,587,-1,581,867,868,-1,869,870,862,-1,870,863,862,-1,871,870,571,-1,571,572,871,-1,871,578,577,-1,871,572,578,-1,563,540,538,-1,563,872,540,-1,873,188,185,-1,873,562,188,-1,186,874,875,-1,186,876,874,-1,543,556,544,-1,557,546,545,-1,545,544,557,-1,877,551,548,-1,877,878,551,-1,538,529,528,-1,528,542,538,-1,525,524,560,-1,560,562,525,-1,539,530,529,-1,518,533,547,-1,518,515,533,-1,533,515,520,-1,520,534,533,-1,528,531,260,-1,531,258,260,-1,513,524,527,-1,513,558,524,-1,158,879,880,-1,880,156,158,-1,881,537,523,-1,537,296,523,-1,879,158,512,-1,512,511,879,-1,882,511,509,-1,882,879,511,-1,307,309,313,-1,171,38,40,-1,171,503,38,-1,278,31,883,-1,883,884,278,-1,885,886,170,-1,170,172,885,-1,496,495,173,-1,173,499,496,-1,886,887,310,-1,310,169,886,-1,319,888,889,-1,888,331,889,-1,356,890,891,-1,489,892,320,-1,892,486,320,-1,312,483,313,-1,312,318,483,-1,893,181,894,-1,300,895,488,-1,895,489,488,-1,299,471,895,-1,895,300,299,-1,302,301,896,-1,154,897,898,-1,154,283,897,-1,305,469,303,-1,305,299,469,-1,899,306,900,-1,899,304,306,-1,306,901,902,-1,306,303,901,-1,903,904,905,-1,903,906,904,-1,907,908,909,-1,910,911,912,-1,910,111,911,-1,913,914,915,-1,913,916,914,-1,915,917,918,-1,915,914,917,-1,917,919,920,-1,917,921,919,-1,317,456,457,-1,317,314,456,-1,922,100,60,-1,922,458,100,-1,923,924,925,-1,450,926,927,-1,450,453,926,-1,928,929,930,-1,931,932,933,-1,934,452,454,-1,934,935,452,-1,934,936,937,-1,934,938,936,-1,434,939,447,-1,434,125,939,-1,940,941,942,-1,438,434,436,-1,943,944,945,-1,943,946,944,-1,947,948,435,-1,948,436,435,-1,949,431,950,-1,425,951,952,-1,425,427,951,-1,953,954,955,-1,956,426,957,-1,958,423,422,-1,958,959,423,-1,423,960,961,-1,423,962,960,-1,413,411,410,-1,415,401,408,-1,415,963,401,-1,138,964,965,-1,964,966,967,-1,964,968,966,-1,400,195,2,-1,400,397,195,-1,398,969,970,-1,394,396,971,-1,236,972,973,-1,973,974,236,-1,975,391,143,-1,976,389,385,-1,976,977,389,-1,380,386,379,-1,379,376,380,-1,978,381,979,-1,978,980,381,-1,199,981,377,-1,981,378,377,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlfemur_Geo_5_355_coordIndex_4()
		{
			int[] value = {982,234,983,-1,982,984,234,-1,985,986,987,-1,987,417,985,-1,243,373,346,-1,243,226,373,-1,144,988,146,-1,144,392,988,-1,371,227,150,-1,150,149,371,-1,989,987,370,-1,990,290,289,-1,289,285,990,-1,369,511,366,-1,369,509,511,-1,368,367,729,-1,367,730,729,-1,265,737,33,-1,33,32,265,-1,360,991,361,-1,991,501,361,-1,992,679,993,-1,994,995,996,-1,994,997,995,-1,14,978,12,-1,14,817,978,-1,998,999,1000,-1,998,1001,999,-1,1002,1003,1004,-1,1004,1005,1002,-1,928,1003,1006,-1,928,1007,1003,-1,619,343,345,-1,619,620,343,-1,853,854,1008,-1,1,400,2,-1,333,889,331,-1,333,1009,889,-1,1010,161,160,-1,160,1011,1010,-1,262,493,1012,-1,262,494,493,-1,767,770,1013,-1,301,488,1014,-1,301,300,488,-1,896,1014,751,-1,896,301,1014,-1,307,530,308,-1,530,1015,308,-1,888,332,331,-1,888,1016,332,-1,305,304,477,-1,477,472,305,-1,473,1017,474,-1,275,267,1018,-1,1018,251,275,-1,475,478,472,-1,285,1019,990,-1,285,284,1019,-1,278,27,502,-1,502,279,278,-1,262,264,494,-1,738,271,270,-1,502,26,39,-1,744,742,734,-1,744,740,742,-1,273,733,276,-1,731,272,1012,-1,254,253,266,-1,266,269,254,-1,272,263,262,-1,262,1012,272,-1,1020,1021,1022,-1,1020,1023,1021,-1,166,1024,164,-1,277,37,36,-1,277,279,37,-1,1020,790,1023,-1,735,252,251,-1,251,1018,735,-1,736,734,742,-1,147,205,151,-1,147,1025,205,-1,1026,1027,1028,-1,1028,1029,1026,-1,1030,1031,1032,-1,398,400,1033,-1,1034,193,249,-1,249,859,1034,-1,618,620,619,-1,628,1035,240,-1,240,239,628,-1,975,145,213,-1,984,238,233,-1,1036,1037,374,-1,447,932,448,-1,447,933,932,-1,1038,455,122,-1,122,223,1038,-1,827,665,103,-1,101,678,107,-1,101,217,678,-1,1039,940,444,-1,975,195,391,-1,975,196,195,-1,981,1037,1036,-1,1036,1040,981,-1,3,209,190,-1,3,207,209,-1,621,1041,1008,-1,1008,1042,621,-1,1043,1044,20,-1,20,19,1043,-1,630,197,17,-1,17,10,630,-1,1045,1046,988,-1,1046,1025,988,-1,195,1047,392,-1,392,391,195,-1,216,1048,214,-1,1048,1049,214,-1,1050,1051,409,-1,1051,1052,409,-1,1053,1054,972,-1,1054,973,972,-1,1055,1056,200,-1,200,202,1055,-1,832,1057,1058,-1,1058,830,832,-1,632,850,1059,-1,1059,634,632,-1,145,211,213,-1,1060,652,651,-1,665,209,208,-1,561,506,507,-1,561,1061,506,-1,1062,554,1063,-1,893,894,1064,-1,479,1065,1066,-1,479,478,1065,-1,883,500,1067,-1,883,30,500,-1,174,500,30,-1,30,29,174,-1,883,1067,1068,-1,1068,884,883,-1,886,169,170,-1,768,757,769,-1,1069,1070,287,-1,287,1071,1069,-1,161,1069,1071,-1,1071,162,161,-1,167,510,168,-1,510,1072,168,-1,512,158,1073,-1,158,157,1073,-1,513,1074,514,-1,283,280,897,-1,150,147,151,-1,150,148,147,-1,975,143,145,-1,1050,1075,421,-1,1075,960,421,-1,136,968,138,-1,968,964,138,-1,133,428,425,-1,425,134,133,-1,123,426,428,-1,595,586,585,-1,595,599,586,-1,950,1076,439,-1,439,130,950,-1,956,958,1077,-1,956,959,958,-1,1078,1079,1080,-1,1079,1081,1080,-1,1082,1083,1084,-1,456,99,121,-1,456,97,99,-1,104,808,105,-1,104,118,808,-1,911,113,807,-1,911,111,113,-1,800,802,719,-1,802,717,719,-1,99,931,120,-1,115,107,678,-1,121,122,455,-1,117,104,689,-1,299,302,469,-1,88,802,92,-1,88,717,802,-1,89,93,91,-1,91,84,89,-1,717,88,90,-1,86,89,84,-1,86,87,89,-1,75,65,1085,-1,73,76,1086,-1,1086,74,73,-1,1087,1088,1089,-1,1087,81,1088,-1,72,67,66,-1,66,73,72,-1,77,1090,69,-1,77,1091,1090,-1,77,78,81,-1,1090,75,1085,-1,82,67,68,-1,75,66,65,-1,789,64,61,-1,61,1092,789,-1,788,787,1093,-1,1093,1094,788,-1,49,48,747,-1,722,798,720,-1,722,796,798,-1,898,165,164,-1,164,1095,898,-1,482,178,1096,-1,44,181,893,-1,44,43,181,-1,35,498,36,-1,29,31,277,-1,30,883,31,-1,1016,885,891,-1,14,13,1097,-1,1097,818,14,-1,11,17,16,-1,11,10,17,-1,8,844,16,-1,8,7,844,-1,853,628,239,-1,853,626,628,-1,247,1097,1098,-1,818,1097,247,-1,990,899,1099,-1,899,990,1019,-1,905,306,902,-1,905,900,306,-1,891,172,356,-1,891,885,172,-1,418,1100,416,-1,418,1029,1100,-1,372,989,370,-1,372,1026,989,-1,1101,498,35,-1,1101,497,498,-1,1064,480,485,-1,179,480,1064,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlfemur_Geo_5_355_coordIndex_5()
		{
			int[] value = {485,481,487,-1,485,480,481,-1,482,282,491,-1,482,1096,282,-1,1095,1024,1102,-1,1095,164,1024,-1,727,1103,724,-1,1103,727,1104,-1,796,1105,1106,-1,1105,796,722,-1,781,1107,756,-1,781,774,1107,-1,50,52,1108,-1,52,50,49,-1,165,897,1070,-1,165,898,897,-1,67,78,68,-1,67,72,78,-1,80,1088,81,-1,80,1109,1088,-1,1089,1086,1087,-1,1086,1089,1110,-1,74,1111,79,-1,74,1112,1111,-1,1087,76,1091,-1,76,1087,1086,-1,1088,1110,1089,-1,1112,1109,1111,-1,1109,1110,1088,-1,1109,1112,1110,-1,58,117,703,-1,117,58,119,-1,800,1085,806,-1,719,1085,800,-1,94,1113,1114,-1,1113,94,801,-1,316,807,53,-1,316,911,807,-1,224,939,446,-1,1115,939,224,-1,1114,95,94,-1,1114,901,95,-1,314,97,456,-1,100,97,314,-1,1116,1084,230,-1,1116,1082,1084,-1,1081,229,1080,-1,1081,1117,229,-1,1078,958,1079,-1,1077,958,1078,-1,433,425,952,-1,433,134,425,-1,432,955,954,-1,432,429,955,-1,950,132,949,-1,132,950,130,-1,593,585,1118,-1,593,595,585,-1,586,598,587,-1,599,598,586,-1,601,292,294,-1,601,589,292,-1,428,126,123,-1,126,428,133,-1,1119,1120,1121,-1,1120,1119,1122,-1,1123,960,1075,-1,1123,961,960,-1,1050,420,1051,-1,1050,421,420,-1,1028,215,1124,-1,216,215,1028,-1,1026,1125,1027,-1,1026,372,1125,-1,510,1073,1072,-1,510,512,1073,-1,1070,280,287,-1,1070,897,280,-1,1093,1011,1126,-1,1093,787,1011,-1,1011,786,1010,-1,786,1011,787,-1,172,884,1068,-1,28,884,172,-1,769,321,991,-1,769,757,321,-1,500,323,1067,-1,500,501,323,-1,484,1064,485,-1,893,1064,484,-1,1127,1017,1065,-1,1127,474,1017,-1,180,42,1066,-1,180,43,42,-1,475,1065,478,-1,475,1127,1065,-1,565,564,183,-1,565,563,564,-1,559,507,876,-1,507,559,561,-1,506,1128,1129,-1,506,1061,1128,-1,878,532,551,-1,1130,532,878,-1,328,1131,1063,-1,1131,328,330,-1,1132,549,535,-1,553,549,1132,-1,183,1133,184,-1,183,564,1133,-1,1040,378,981,-1,1040,1134,378,-1,1098,630,10,-1,1135,630,1098,-1,13,1136,1097,-1,13,1137,1136,-1,663,1138,659,-1,663,5,1138,-1,660,1043,19,-1,660,1139,1043,-1,211,1140,212,-1,211,245,1140,-1,1034,621,622,-1,1034,1041,621,-1,654,20,1044,-1,657,20,654,-1,191,1141,1142,-1,191,189,1141,-1,855,634,1059,-1,635,634,855,-1,624,841,625,-1,836,841,624,-1,1057,837,1143,-1,832,837,1057,-1,1142,830,1058,-1,1142,1141,830,-1,1055,972,1056,-1,1055,1053,972,-1,966,973,1054,-1,1144,973,966,-1,968,1145,1146,-1,1145,968,136,-1,135,1147,1148,-1,1147,135,1121,-1,1120,406,405,-1,1120,140,406,-1,1123,414,139,-1,1123,413,414,-1,1050,411,1075,-1,1050,409,411,-1,1052,215,214,-1,1051,215,1052,-1,1149,1048,1150,-1,1149,1049,1048,-1,1045,392,1047,-1,1045,988,392,-1,203,1025,1046,-1,203,205,1025,-1,1151,194,193,-1,1151,1152,194,-1,632,198,850,-1,18,198,632,-1,833,829,831,-1,833,647,829,-1,1153,220,57,-1,221,220,1153,-1,455,919,457,-1,1038,919,455,-1,210,1154,0,-1,210,212,1154,-1,1134,376,378,-1,1134,979,376,-1,234,233,232,-1,233,234,984,-1,1155,212,1140,-1,1155,1154,212,-1,620,1151,622,-1,620,618,1151,-1,400,1156,1033,-1,1156,400,1,-1,1157,1031,970,-1,1157,1032,1031,-1,216,1027,1048,-1,216,1028,1027,-1,1150,1027,1125,-1,1150,1048,1027,-1,1023,724,1103,-1,724,1023,790,-1,1158,1022,1159,-1,1158,1020,1022,-1,286,280,282,-1,286,287,280,-1,1102,155,1095,-1,1102,1160,155,-1,276,732,785,-1,732,276,733,-1,740,743,775,-1,743,740,744,-1,772,33,739,-1,363,33,772,-1,737,263,271,-1,265,263,737,-1,1161,1162,923,-1,1162,1161,918,-1,463,1163,994,-1,460,1163,463,-1,735,744,734,-1,744,735,745,-1,895,892,489,-1,895,1164,892,-1,888,887,1016,-1,311,887,888,-1,1165,1166,1167,-1,1168,1166,1165,-1,1169,749,748,-1,749,1169,1170,-1,1009,751,1014,-1,751,1009,748,-1,1014,889,1009,-1,1014,488,889,-1,324,1067,323,-1,1068,1067,324,-1,33,365,34,-1,365,33,363,-1,728,1092,1171,-1,326,1092,728,-1,1172,1173,1174,-1,1172,1175,1173,-1,785,368,729,-1,785,732,368,-1,159,1171,167,-1,159,728,1171,-1,168,1011,160,-1,1072,1011,168,-1,730,167,1171,-1,367,167,730,-1,1071,291,162,-1,291,1071,289,-1,332,1176,334,-1,332,890,1176,-1,244,1042,245,-1,244,344,1042,-1,346,1177,347,-1,1177,346,1178,-1,1179,1180,1181,-1,1180,1179,1182,-1,929,1006,1183,-1,929,928,1006,-1,689,1005,117,-1,1005,689,1002,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlfemur_Geo_5_355_coordIndex_6()
		{
			int[] value = {1184,1185,1186,-1,1187,1185,1184,-1,1188,1001,998,-1,1188,1189,1001,-1,1190,999,1137,-1,1000,999,1190,-1,817,980,978,-1,817,1191,980,-1,816,1192,1193,-1,816,1194,1192,-1,1163,997,994,-1,1163,1195,997,-1,995,909,996,-1,995,1196,909,-1,1197,1198,907,-1,1197,1199,1198,-1,1200,1172,1201,-1,1200,1175,1172,-1,1186,1202,1184,-1,1186,1203,1202,-1,1155,239,242,-1,854,239,1155,-1,369,732,508,-1,368,732,369,-1,367,510,167,-1,367,366,510,-1,568,1131,1204,-1,568,1205,1131,-1,408,414,415,-1,408,406,414,-1,987,418,417,-1,418,987,989,-1,370,1206,371,-1,1206,370,1207,-1,226,211,145,-1,226,243,211,-1,1206,346,373,-1,1206,1178,346,-1,1179,986,1182,-1,1179,1207,986,-1,985,1182,986,-1,1182,985,349,-1,374,998,1000,-1,998,374,235,-1,201,983,375,-1,201,200,983,-1,979,12,978,-1,12,979,1134,-1,380,979,381,-1,380,376,979,-1,242,1154,1155,-1,242,1208,1154,-1,1,231,1156,-1,1208,231,1,-1,1156,233,238,-1,1156,231,233,-1,969,236,974,-1,236,969,237,-1,982,200,1056,-1,982,983,200,-1,1056,236,982,-1,1056,972,236,-1,1209,1053,1210,-1,1209,1054,1053,-1,1211,1212,977,-1,1210,1212,1211,-1,393,1211,1213,-1,393,1214,1211,-1,387,1215,1216,-1,387,388,1215,-1,1216,1217,396,-1,1216,1215,1217,-1,1213,396,393,-1,1213,1216,396,-1,967,1054,1209,-1,1054,967,966,-1,970,974,1157,-1,970,969,974,-1,398,237,969,-1,1033,237,398,-1,1157,1146,1032,-1,1144,1146,1157,-1,1083,967,1218,-1,1083,964,967,-1,1218,954,1083,-1,1218,395,954,-1,1082,964,1083,-1,1082,965,964,-1,1032,1145,1030,-1,1146,1145,1032,-1,399,1219,397,-1,399,1220,1219,-1,1221,1047,1219,-1,1221,1045,1047,-1,1220,1222,1223,-1,1222,1220,1030,-1,965,137,138,-1,965,1224,137,-1,953,230,1084,-1,228,230,953,-1,1045,1225,1046,-1,1225,1045,1221,-1,404,1225,1226,-1,404,403,1225,-1,1226,407,404,-1,1226,1227,407,-1,1224,1119,137,-1,1224,1228,1119,-1,1229,1230,1122,-1,1231,1230,1229,-1,1229,1117,1081,-1,1117,1229,1228,-1,401,1232,402,-1,401,963,1232,-1,412,415,410,-1,415,412,963,-1,1049,1232,1233,-1,1049,1149,1232,-1,1079,422,1231,-1,958,422,1079,-1,962,25,24,-1,1234,25,962,-1,959,957,1234,-1,956,957,959,-1,947,25,948,-1,25,947,22,-1,1234,423,959,-1,962,423,1234,-1,951,1077,1078,-1,427,1077,951,-1,1080,228,1235,-1,229,228,1080,-1,395,432,954,-1,395,394,432,-1,228,955,129,-1,228,953,955,-1,951,128,952,-1,951,1235,128,-1,431,1236,950,-1,1236,431,430,-1,438,948,957,-1,948,438,436,-1,947,1237,419,-1,947,435,1237,-1,945,985,417,-1,985,945,944,-1,993,944,946,-1,993,350,944,-1,945,1238,943,-1,1238,945,1237,-1,1236,1239,1240,-1,1241,1239,1236,-1,941,1215,942,-1,941,1217,1215,-1,382,937,383,-1,1242,937,382,-1,442,440,936,-1,440,442,441,-1,1243,941,940,-1,1239,941,1243,-1,1076,1244,1245,-1,1076,1240,1244,-1,1246,943,1238,-1,943,1246,1247,-1,1248,993,946,-1,993,1248,992,-1,1248,1249,930,-1,1249,1248,1247,-1,1246,932,1250,-1,932,1246,448,-1,1245,1251,1252,-1,1251,1245,1244,-1,1243,1039,1253,-1,1039,1243,940,-1,1254,936,938,-1,1254,442,936,-1,1242,934,937,-1,935,934,1242,-1,452,1193,1192,-1,935,1193,452,-1,938,454,449,-1,938,934,454,-1,451,1039,1254,-1,1039,451,1255,-1,1251,1256,1257,-1,1251,1253,1256,-1,1258,225,1252,-1,223,225,1258,-1,931,1250,932,-1,1250,931,1259,-1,930,1260,928,-1,930,1249,1260,-1,1261,928,1260,-1,1261,1007,928,-1,99,1259,931,-1,99,98,1259,-1,1262,1258,1257,-1,1263,1258,1262,-1,925,1256,1255,-1,925,924,1256,-1,1184,453,1187,-1,453,1184,926,-1,927,925,450,-1,925,927,923,-1,1263,1162,920,-1,1263,1262,1162,-1,458,1007,1261,-1,1007,458,922,-1,921,457,919,-1,921,317,457,-1,920,918,917,-1,918,920,1162,-1,927,462,459,-1,462,927,926,-1,1264,918,1161,-1,1264,915,918,-1,914,921,917,-1,914,1265,921,-1,315,911,316,-1,912,911,315,-1,916,1265,914,-1,916,1266,1265,-1,915,1267,913,-1,1267,915,1264,-1,1268,1267,463,-1,1267,1268,1269,-1,466,913,1270,-1,913,466,916,-1,910,1266,465,-1,912,1266,910,-1,114,910,1271,-1,114,111,910,-1,1272,1270,1269,-1,1272,1273,1270,-1,908,996,909,-1,908,1268,996,-1,1274,908,907,-1,1272,908,1274,-1,1273,1275,464,-1,1273,1276,1275,-1,1277,467,1278,-1,1271,467,1277,-1,1114,1277,1279,-1,1114,1113,1277,-1,1275,903,1278,-1,906,903,1275,-1,1276,1280,1281,-1,1280,1276,1274,-1,1198,1282,1280,-1,1198,1201,1282,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlfemur_Geo_5_355_coordIndex_7()
		{
			int[] value = {1281,904,906,-1,1281,1283,904,-1,1279,901,1114,-1,902,901,1279,-1,469,901,303,-1,901,469,95,-1,905,1284,900,-1,1284,905,904,-1,1285,1282,1286,-1,1285,1283,1282,-1,1286,1174,1287,-1,1172,1174,1286,-1,1288,1284,1285,-1,1284,1288,1099,-1,1099,290,990,-1,1288,290,1099,-1,290,1287,288,-1,1287,290,1288,-1,1094,1160,1102,-1,1094,1289,1160,-1,163,161,1010,-1,1069,161,163,-1,282,1290,286,-1,282,1096,1290,-1,479,42,1164,-1,479,1066,42,-1,42,892,1164,-1,42,41,892,-1,41,486,892,-1,41,484,486,-1,486,318,320,-1,487,318,486,-1,508,1012,493,-1,508,731,1012,-1,1073,514,1126,-1,1073,157,514,-1,281,491,282,-1,491,281,490,-1,319,311,888,-1,319,312,311,-1,890,1016,891,-1,890,332,1016,-1,297,264,1101,-1,297,521,264,-1,28,278,884,-1,28,27,278,-1,531,307,490,-1,531,530,307,-1,308,169,310,-1,308,171,169,-1,523,298,503,-1,298,523,296,-1,523,1291,881,-1,1291,523,522,-1,882,880,879,-1,882,516,880,-1,880,557,156,-1,880,546,557,-1,535,536,1132,-1,535,534,536,-1,1292,328,1293,-1,328,1292,329,-1,1291,327,329,-1,1291,1294,327,-1,539,1015,530,-1,539,1294,1015,-1,524,556,560,-1,524,558,556,-1,259,562,873,-1,259,525,562,-1,1130,533,532,-1,547,533,1130,-1,504,1129,570,-1,506,1129,504,-1,1295,186,875,-1,1295,187,186,-1,873,1133,541,-1,873,185,1133,-1,1205,1063,1131,-1,1063,1205,1062,-1,1296,1062,1205,-1,1296,1297,1062,-1,182,1298,1299,-1,1298,182,184,-1,578,548,575,-1,578,877,548,-1,1300,505,1301,-1,505,1300,874,-1,875,868,1295,-1,875,1302,868,-1,575,550,1303,-1,575,548,550,-1,555,1304,552,-1,1304,555,1305,-1,1306,1297,1296,-1,1307,1297,1306,-1,583,569,1299,-1,573,569,583,-1,1308,1304,1309,-1,1308,1303,1304,-1,1307,1310,1305,-1,1310,1307,1311,-1,1309,1312,1308,-1,1312,1309,1313,-1,863,871,864,-1,870,871,863,-1,571,869,1301,-1,869,571,870,-1,869,1314,1315,-1,869,862,1314,-1,1300,582,1302,-1,582,1300,1315,-1,581,1302,582,-1,1302,581,868,-1,581,1118,867,-1,581,1316,1118,-1,1317,596,591,-1,1318,596,1317,-1,594,1319,600,-1,1319,594,1320,-1,597,1321,602,-1,1321,597,1322,-1,865,1307,1306,-1,1311,1307,865,-1,1323,865,606,-1,1323,1311,865,-1,1311,1324,1310,-1,1323,1324,1311,-1,610,1313,608,-1,1312,1313,610,-1,864,611,863,-1,864,612,611,-1,862,614,1314,-1,862,611,614,-1,615,295,613,-1,293,295,615,-1,1323,609,1324,-1,609,1323,616,-1,657,617,656,-1,657,1152,617,-1,1181,342,1177,-1,340,342,1181,-1,1057,1325,1058,-1,1057,1326,1325,-1,192,653,861,-1,653,192,194,-1,858,1327,1328,-1,1327,858,861,-1,1329,859,860,-1,859,1329,1330,-1,1331,858,1328,-1,858,1331,860,-1,1331,623,857,-1,1331,1332,623,-1,1329,629,626,-1,857,629,1329,-1,1328,1332,1331,-1,1332,1328,1326,-1,856,1059,852,-1,856,855,1059,-1,628,851,1035,-1,851,628,627,-1,849,1059,850,-1,852,1059,849,-1,851,847,846,-1,849,847,851,-1,240,1333,1189,-1,240,1035,1333,-1,848,1333,846,-1,848,1334,1333,-1,847,198,845,-1,198,847,850,-1,848,631,1335,-1,631,848,845,-1,1001,1336,999,-1,1001,1334,1336,-1,1135,1336,1335,-1,1135,1136,1336,-1,1337,844,843,-1,1338,844,1337,-1,1339,1340,840,-1,1339,1341,1340,-1,1340,7,1342,-1,7,1340,843,-1,1342,6,636,-1,1342,7,6,-1,838,841,836,-1,842,841,838,-1,640,633,842,-1,633,640,839,-1,835,639,838,-1,639,835,834,-1,832,835,837,-1,835,832,831,-1,829,642,834,-1,642,829,644,-1,668,638,637,-1,1343,638,668,-1,828,647,833,-1,828,645,647,-1,1141,833,830,-1,828,833,1141,-1,1344,1058,1325,-1,1058,1344,1142,-1,1345,1346,1344,-1,1345,1347,1346,-1,653,1347,1345,-1,1347,653,655,-1,1347,1348,1349,-1,1348,1347,655,-1,1180,340,1181,-1,1180,338,340,-1,1349,5,4,-1,5,1349,1138,-1,811,661,337,-1,811,1350,661,-1,667,643,827,-1,667,641,643,-1,672,666,813,-1,672,669,666,-1,671,1341,1339,-1,823,1341,671,-1,822,1351,825,-1,822,821,1351,-1,823,1337,1341,-1,1337,823,820,-1,674,248,1338,-1,673,248,674,-1,246,818,247,-1,246,819,818,-1,819,1191,817,-1,1352,1191,819,-1,673,246,248,-1,1353,246,673,-1,1354,1352,1353,-1,1354,1355,1352,-1,353,1355,814,-1,353,355,1355,-1,824,1354,675,-1,824,1356,1354,-1,826,812,813,-1,826,809,812,-1,810,1350,811,-1,810,1357,1350,-1,1358,810,680,-1,810,1358,1359,-1,1360,678,1357,-1,1360,115,678,-1,809,686,812,-1,809,687,686,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlfemur_Geo_5_355_coordIndex_8()
		{
			int[] value = {1361,676,1362,-1,677,676,1361,-1,1363,1351,1364,-1,825,1351,1363,-1,683,1356,824,-1,1356,683,682,-1,815,1194,816,-1,1365,1194,815,-1,1364,1366,1363,-1,1367,1366,1364,-1,1362,691,1361,-1,694,691,1362,-1,1360,105,115,-1,106,105,1360,-1,690,1358,1368,-1,690,1359,1358,-1,1003,1368,1006,-1,1368,1003,1002,-1,1369,1367,1370,-1,1366,1367,1369,-1,684,695,681,-1,684,1371,695,-1,1185,1365,697,-1,1194,1365,1185,-1,1372,1369,1373,-1,1372,1371,1369,-1,1374,693,698,-1,1374,1370,693,-1,54,117,1005,-1,117,54,703,-1,701,221,1153,-1,698,221,701,-1,1374,1375,1373,-1,1374,700,1375,-1,1372,1376,696,-1,1372,1377,1376,-1,1203,1378,1195,-1,1378,1203,1376,-1,1375,708,1377,-1,711,708,1375,-1,1379,1195,1378,-1,1195,1379,997,-1,1380,710,1381,-1,1380,1379,710,-1,712,709,707,-1,712,1382,709,-1,705,715,706,-1,70,715,705,-1,113,109,807,-1,110,109,113,-1,1090,71,69,-1,1090,1085,71,-1,1381,1383,804,-1,1382,1383,1381,-1,803,995,1380,-1,1196,995,803,-1,1196,805,1197,-1,805,1196,803,-1,798,804,1383,-1,798,797,804,-1,713,716,723,-1,716,713,71,-1,800,112,801,-1,800,806,112,-1,799,805,797,-1,805,799,1384,-1,1200,1384,1385,-1,1200,1199,1384,-1,799,1106,1386,-1,1106,799,796,-1,795,721,718,-1,795,792,721,-1,92,94,96,-1,92,802,94,-1,90,793,795,-1,90,87,793,-1,794,1105,792,-1,794,1104,1105,-1,1385,726,1387,-1,1385,1386,726,-1,1173,1387,1388,-1,1173,1175,1387,-1,1389,793,746,-1,1389,794,793,-1,261,725,791,-1,1388,725,261,-1,791,1020,1158,-1,1020,791,790,-1,273,251,250,-1,273,275,251,-1,784,63,62,-1,63,784,783,-1,254,1022,1021,-1,254,269,1022,-1,270,773,738,-1,736,773,270,-1,1023,1389,48,-1,1023,1103,1389,-1,1023,50,1021,-1,50,1023,48,-1,750,85,1390,-1,752,85,750,-1,749,51,753,-1,749,1170,51,-1,1107,254,1108,-1,255,254,1107,-1,759,780,760,-1,759,781,780,-1,780,1168,1165,-1,780,755,1168,-1,333,1166,1169,-1,1166,333,334,-1,1176,1391,1167,-1,1391,1176,357,-1,1391,776,779,-1,758,776,1391,-1,776,778,777,-1,778,776,768,-1,778,765,764,-1,765,778,1392,-1,770,359,1013,-1,770,360,359,-1,772,1392,771,-1,765,1392,772,-1,759,740,775,-1,759,762,740,-1,773,763,766,-1,763,773,741,-1,739,765,772,-1,766,765,739,-1,767,771,1392,-1,767,1013,771,-1,364,1013,359,-1,364,771,1013,-1,991,770,769,-1,770,991,360,-1,1392,768,767,-1,778,768,1392,-1,763,761,764,-1,763,762,761,-1,357,758,1391,-1,758,357,322,-1,1167,334,1176,-1,1167,1166,334,-1,755,1170,1168,-1,755,51,1170,-1,760,1165,779,-1,760,780,1165,-1,774,255,1107,-1,256,255,774,-1,1108,1021,50,-1,254,1021,1108,-1,749,752,750,-1,752,749,753,-1,1169,1009,333,-1,748,1009,1169,-1,751,1390,896,-1,1390,751,750,-1,1390,91,470,-1,85,91,1390,-1,747,754,49,-1,747,83,754,-1,48,746,747,-1,48,1389,746,-1,743,782,257,-1,782,743,745,-1,736,741,773,-1,741,736,742,-1,782,267,266,-1,782,1018,267,-1,1159,62,1158,-1,784,62,1159,-1,731,273,250,-1,731,733,273,-1,261,1158,62,-1,791,1158,261,-1,789,1388,261,-1,1173,1388,789,-1,746,87,86,-1,746,793,87,-1,1103,794,1389,-1,1103,1104,794,-1,725,1387,726,-1,725,1388,1387,-1,1387,1200,1385,-1,1200,1387,1175,-1,727,1386,1106,-1,726,1386,727,-1,96,93,92,-1,96,468,93,-1,792,722,721,-1,792,1105,722,-1,1384,1386,1385,-1,1386,1384,799,-1,1384,1197,805,-1,1197,1384,1199,-1,71,719,716,-1,71,1085,719,-1,720,1383,714,-1,720,798,1383,-1,1381,803,1380,-1,803,1381,804,-1,1382,714,1383,-1,1382,712,714,-1,70,713,715,-1,70,71,713,-1,705,68,70,-1,82,68,705,-1,707,715,712,-1,715,707,706,-1,710,1382,1381,-1,1382,710,709,-1,1380,997,1379,-1,1380,995,997,-1,710,1378,708,-1,1378,710,1379,-1,711,707,709,-1,711,702,707,-1,706,704,705,-1,699,704,706,-1,1153,699,701,-1,704,699,1153,-1,711,700,702,-1,711,1375,700,-1,1377,1378,1376,-1,708,1378,1377,-1,696,1203,1186,-1,696,1376,1203,-1,1373,1377,1372,-1,1373,1375,1377,-1,698,700,1374,-1,698,701,700,-1,57,119,58,-1,220,119,57,-1,1370,1373,1369,-1,1374,1373,1370,-1,696,1371,1372,-1,696,695,1371,-1,1186,697,696,-1,1186,1185,697,-1,681,697,1365,-1,681,695,697,-1,1366,1371,684,-1,1366,1369,1371,-1,691,1370,1367,-1,691,693,1370,-1,692,688,219,-1,692,694,688,-1,808,222,685,-1,808,118,222,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getlfemur_Geo_5_355_coordIndex_9()
		{
			int[] value = {690,1002,689,-1,690,1368,1002,-1,1358,1006,1368,-1,1358,1183,1006,-1,1360,690,106,-1,690,1360,1359,-1,686,694,1362,-1,688,694,686,-1,1367,1361,691,-1,1367,1364,1361,-1,1363,684,683,-1,1366,684,1363,-1,682,1365,815,-1,681,1365,682,-1,815,1356,682,-1,814,1356,815,-1,683,825,1363,-1,824,825,683,-1,1364,677,1361,-1,1351,677,1364,-1,1362,812,686,-1,676,812,1362,-1,1357,1359,1360,-1,1357,810,1359,-1,1183,680,679,-1,680,1183,1358,-1,1357,664,1350,-1,664,1357,678,-1,809,102,108,-1,809,826,102,-1,670,1351,821,-1,677,1351,670,-1,1354,814,1355,-1,1356,814,1354,-1,1354,673,675,-1,1353,673,1354,-1,819,1353,1352,-1,1353,819,246,-1,355,1352,1355,-1,355,1191,1352,-1,674,822,675,-1,674,820,822,-1,821,671,670,-1,823,671,821,-1,1339,669,671,-1,1343,669,1339,-1,666,1343,668,-1,1343,666,669,-1,650,827,643,-1,665,827,650,-1,661,664,662,-1,661,1350,664,-1,337,658,811,-1,337,336,658,-1,1138,1348,1139,-1,1138,1349,1348,-1,1348,1043,1139,-1,1348,1044,1043,-1,1180,336,338,-1,1180,351,336,-1,655,1044,1348,-1,655,654,1044,-1,1346,3,191,-1,4,3,1346,-1,861,1345,1327,-1,1345,861,653,-1,1347,4,1346,-1,1347,1349,4,-1,191,1344,1346,-1,191,1142,1344,-1,1325,1345,1344,-1,1325,1327,1345,-1,189,828,1141,-1,189,651,828,-1,650,649,652,-1,650,648,649,-1,646,643,644,-1,646,648,643,-1,642,668,637,-1,668,642,641,-1,840,1343,1339,-1,840,638,1343,-1,637,834,642,-1,637,639,834,-1,838,640,842,-1,838,639,640,-1,839,636,633,-1,839,1342,636,-1,1340,1337,843,-1,1341,1337,1340,-1,840,1342,839,-1,1340,1342,840,-1,16,1338,11,-1,1338,16,844,-1,1335,630,1135,-1,1335,631,630,-1,1136,999,1336,-1,1136,1137,999,-1,1335,1334,848,-1,1335,1336,1334,-1,197,845,198,-1,197,631,845,-1,1334,1189,1333,-1,1001,1189,1334,-1,846,1035,851,-1,846,1333,1035,-1,852,629,856,-1,629,852,627,-1,1332,624,623,-1,624,1332,1143,-1,1143,1326,1057,-1,1143,1332,1326,-1,860,857,1329,-1,860,1331,857,-1,1330,626,853,-1,626,1330,1329,-1,1326,1327,1325,-1,1326,1328,1327,-1,1034,1330,1041,-1,1330,1034,859,-1,1041,853,1008,-1,853,1041,1330,-1,347,342,345,-1,347,1177,342,-1,618,1152,1151,-1,617,1152,618,-1,339,656,617,-1,341,656,339,-1,343,1042,344,-1,343,621,1042,-1,606,616,1323,-1,616,606,604,-1,615,588,293,-1,605,588,615,-1,613,1314,614,-1,295,1314,613,-1,610,579,1312,-1,579,610,603,-1,608,1324,609,-1,1313,1324,608,-1,866,1306,574,-1,865,1306,866,-1,588,866,584,-1,606,866,588,-1,590,1321,1393,-1,602,1321,590,-1,600,1322,597,-1,1322,600,1319,-1,594,1318,1320,-1,594,596,1318,-1,1393,591,590,-1,1317,591,1393,-1,1118,583,867,-1,583,1118,585,-1,584,574,573,-1,866,574,584,-1,295,1316,581,-1,295,292,1316,-1,1315,295,582,-1,1315,1314,295,-1,1301,1315,1300,-1,1301,869,1315,-1,577,864,871,-1,577,580,864,-1,1312,576,1308,-1,576,1312,579,-1,1310,1313,1309,-1,1313,1310,1324,-1,1305,1309,1304,-1,1309,1305,1310,-1,575,1308,576,-1,1308,575,1303,-1,867,1299,1298,-1,867,583,1299,-1,574,1296,567,-1,574,1306,1296,-1,1307,555,1297,-1,1305,555,1307,-1,550,1304,1303,-1,550,552,1304,-1,868,1298,1295,-1,868,867,1298,-1,874,1302,875,-1,874,1300,1302,-1,504,1301,505,-1,504,571,1301,-1,877,572,570,-1,877,578,572,-1,184,1295,1298,-1,184,187,1295,-1,566,1299,569,-1,1299,566,182,-1,1205,567,1296,-1,567,1205,568,-1,1297,554,1062,-1,1297,555,554,-1,1204,566,568,-1,1204,565,566,-1,564,541,1133,-1,542,541,564,-1,874,507,505,-1,876,507,874,-1,543,561,556,-1,543,1061,561,-1,553,550,549,-1,550,553,552,-1,570,878,877,-1,1129,878,570,-1,547,1128,545,-1,1128,547,1130,-1,1061,545,1128,-1,543,545,1061,-1,541,259,873,-1,259,541,260,-1,540,1294,539,-1,327,1294,540,-1,881,329,1292,-1,329,881,1291,-1,537,1292,536,-1,1292,537,881,-1,1293,536,1292,-1,1293,1132,536,-1,156,558,513,-1,156,557,558,-1,1294,522,1015,-1,1294,1291,522,-1,1015,171,308,-1,171,1015,522,-1,296,520,519,-1,537,520,296,-1,492,519,517,-1,519,492,521,-1,516,546,880,-1,518,546,516,-1,492,516,882,-1,516,492,517,-1,882,493,492,-1,493,882,509,-1,258,490,281,-1,258,531,490,-1,1074,527,1289,-1,513,527,1074,-1,279,39,37,-1,279,502,39,-1,35,297,1101,-1,298,297,35,-1,265,1101,264,-1,1101,265,32,-1,495,365,362,-1,496,365,495,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getlfemur_Geo_5_355_coordIndex_10()
		{
			int[] value = {361,495,358,-1,361,173,495,-1,361,174,173,-1,521,494,264,-1,521,492,494,-1,483,491,313,-1,483,482,491,-1,1093,1289,1094,-1,1093,1074,1289,-1,1072,1126,1011,-1,1126,1072,1073,-1,487,483,318,-1,487,481,483,-1,1290,178,177,-1,178,1290,1096,-1,1017,181,180,-1,473,181,1017,-1,476,177,475,-1,476,1290,177,-1,476,286,1290,-1,286,476,284,-1,1019,304,899,-1,1019,477,304,-1,163,1070,1069,-1,163,165,1070,-1,1024,786,788,-1,166,786,1024,-1,288,1174,325,-1,288,1287,1174,-1,1286,1288,1285,-1,1288,1286,1287,-1,1201,1286,1282,-1,1286,1201,1172,-1,904,1285,1284,-1,1285,904,1283,-1,468,95,469,-1,468,96,95,-1,1282,1281,1280,-1,1281,1282,1283,-1,1280,907,1198,-1,1280,1274,907,-1,1276,906,1275,-1,1281,906,1276,-1,1278,1279,1277,-1,903,1279,1278,-1,1271,1113,114,-1,1277,1113,1271,-1,1278,464,1275,-1,467,464,1278,-1,1276,1272,1274,-1,1273,1272,1276,-1,908,1269,1268,-1,908,1272,1269,-1,464,1270,1273,-1,464,466,1270,-1,465,1271,910,-1,467,1271,465,-1,1266,466,465,-1,1266,916,466,-1,1269,913,1267,-1,913,1269,1270,-1,994,1268,463,-1,994,996,1268,-1,463,1264,461,-1,463,1267,1264,-1,1266,315,1265,-1,1266,912,315,-1,317,1265,315,-1,1265,317,921,-1,1161,461,1264,-1,1161,459,461,-1,926,1202,462,-1,1202,926,1184,-1,923,459,1161,-1,459,923,927,-1,1261,97,458,-1,1261,98,97,-1,920,1038,1263,-1,919,1038,920,-1,1192,453,452,-1,453,1192,1187,-1,453,449,454,-1,453,450,449,-1,1255,450,925,-1,450,1255,451,-1,924,1257,1256,-1,924,1262,1257,-1,1263,223,1258,-1,223,1263,1038,-1,98,1260,1259,-1,98,1261,1260,-1,1259,1249,1250,-1,1249,1259,1260,-1,1257,1252,1251,-1,1252,1257,1258,-1,1255,1253,1039,-1,1253,1255,1256,-1,938,451,1254,-1,938,449,451,-1,354,935,1242,-1,1193,935,354,-1,444,1254,1039,-1,1254,444,442,-1,1253,1244,1243,-1,1253,1251,1244,-1,1252,445,1245,-1,225,445,1252,-1,1115,447,939,-1,447,1115,933,-1,1247,1250,1249,-1,1250,1247,1246,-1,1248,929,992,-1,930,929,1248,-1,1247,946,943,-1,946,1247,1248,-1,1238,448,1246,-1,1238,437,448,-1,1245,439,1076,-1,1245,445,439,-1,1243,1240,1239,-1,1240,1243,1244,-1,443,940,942,-1,940,443,444,-1,383,936,440,-1,383,937,936,-1,1242,352,354,-1,352,1242,382,-1,443,384,441,-1,388,384,443,-1,942,388,443,-1,942,1215,388,-1,1241,941,1239,-1,941,1241,1217,-1,950,1240,1076,-1,1240,950,1236,-1,439,126,131,-1,439,124,126,-1,435,1238,1237,-1,437,1238,435,-1,944,349,985,-1,944,350,349,-1,419,945,417,-1,419,1237,945,-1,957,123,438,-1,957,426,123,-1,1241,430,971,-1,1241,1236,430,-1,431,127,429,-1,431,949,127,-1,432,971,430,-1,432,394,971,-1,1235,1078,1080,-1,1235,951,1078,-1,427,956,1077,-1,427,426,956,-1,948,1234,957,-1,948,25,1234,-1,24,960,962,-1,24,421,960,-1,420,1100,1124,-1,23,1100,420,-1,419,22,947,-1,22,419,416,-1,1081,1231,1229,-1,1081,1079,1231,-1,412,1052,1233,-1,409,1052,412,-1,1233,963,412,-1,1233,1232,963,-1,1149,402,1232,-1,1149,204,402,-1,1228,1116,1117,-1,1228,1224,1116,-1,1228,1122,1119,-1,1122,1228,1229,-1,1148,1227,1222,-1,1227,1148,1147,-1,405,1227,1147,-1,405,407,1227,-1,408,404,407,-1,408,401,404,-1,1223,1227,1226,-1,1223,1222,1227,-1,402,203,403,-1,402,204,203,-1,403,1046,1225,-1,403,203,1046,-1,1226,1221,1223,-1,1226,1225,1221,-1,1224,1082,1116,-1,1224,965,1082,-1,1145,1222,1030,-1,1148,1222,1145,-1,1223,1219,1220,-1,1223,1221,1219,-1,1047,397,1219,-1,1047,195,397,-1,1220,1031,1030,-1,1031,1220,399,-1,954,1084,1083,-1,954,953,1084,-1,1209,1218,967,-1,1218,1209,1214,-1,970,399,398,-1,970,1031,399,-1,973,1157,974,-1,973,1144,1157,-1,1214,395,1218,-1,1214,393,395,-1,976,1216,1213,-1,976,387,1216,-1,1217,971,396,-1,1241,971,1217,-1,977,1213,1211,-1,976,1213,977,-1,1210,1214,1209,-1,1210,1211,1214,-1,1210,1055,1212,-1,1053,1055,1210,-1,1212,202,390,-1,202,1212,1055,-1,238,1033,1156,-1,238,237,1033,-1,238,982,236,-1,984,982,238,-1,231,1188,232,-1,231,241,1188,-1,196,0,2,-1,210,0,196,-1,199,390,202,-1,199,377,390,-1,390,977,1212,-1,977,390,389,-1,387,385,384,-1,976,385,387,-1,980,382,381,-1,382,980,352,-1,375,1037,201,-1,374,1037,375,-1,1036,1000,1190,-1,1036,374,1000,-1,998,232,1188,-1,232,998,235,-1,1207,1178,1206,-1,1178,1207,1179,-1,987,1207,370,-1,1207,987,986,-1,373,371,1206,-1,371,373,227,-1,1004,1007,922,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getlfemur_Geo_5_355_coordIndex_11()
		{
			int[] value = {1004,1003,1007,-1,1338,820,674,-1,1338,1337,820,-1,359,362,364,-1,359,358,362,-1,1176,356,357,-1,890,356,1176,-1,1203,1163,1202,-1,1203,1195,1163,-1,1201,1199,1200,-1,1198,1199,1201,-1,907,1196,1197,-1,909,1196,907,-1,1187,1194,1185,-1,1192,1194,1187,-1,353,1193,354,-1,353,816,1193,-1,1191,352,980,-1,1191,355,352,-1,1189,241,240,-1,241,1189,1188,-1,992,1183,679,-1,992,929,1183,-1,348,993,679,-1,350,993,348,-1,1182,351,1180,-1,1182,349,351,-1,1178,1181,1177,-1,1178,1179,1181,-1,347,344,244,-1,347,345,344,-1,340,335,341,-1,340,338,335,-1,872,327,540,-1,872,330,327,-1,477,284,476,-1,284,477,1019,-1,1171,61,730,-1,1171,1092,61,-1,291,326,728,-1,288,326,291,-1,1289,526,1160,-1,1289,527,526,-1,785,274,276,-1,783,274,785,-1,1174,789,325,-1,1173,789,1174,-1,326,789,1092,-1,789,326,325,-1,356,1068,324,-1,356,172,1068,-1,886,1016,887,-1,1016,886,885,-1,896,470,302,-1,470,896,1390,-1,1168,1169,1166,-1,1170,1169,1168,-1,779,1167,1391,-1,1165,1167,779,-1,488,319,889,-1,319,488,320,-1,310,311,309,-1,310,887,311,-1,471,1164,895,-1,471,479,1164,-1,1317,1320,1318,-1,1393,1320,1317,-1,1393,1319,1320,-1,1393,1322,1319,-1,1322,1393,1321,-1,745,1018,782,-1,745,735,1018,-1,460,1202,1163,-1,462,1202,460,-1,1262,923,1162,-1,1262,924,923,-1,285,1071,287,-1,285,289,1071,-1,1160,153,155,-1,1160,526,153,-1,153,281,283,-1,281,153,258,-1,1159,269,268,-1,1159,1022,269,-1,257,775,743,-1,257,256,775,-1,1125,206,1150,-1,152,206,1125,-1,214,1233,1052,-1,214,1049,1233,-1,248,11,1338,-1,248,9,11,-1,1208,241,231,-1,1208,242,241,-1,1140,854,1155,-1,854,1140,1008,-1,234,375,983,-1,375,234,235,-1,1025,146,988,-1,1025,147,146,-1,129,1235,228,-1,1235,129,128,-1,424,1231,422,-1,424,1230,1231,-1,704,57,59,-1,1153,57,704,-1,1150,204,1149,-1,204,1150,206,-1,1075,413,1123,-1,1075,411,413,-1,406,139,414,-1,406,140,139,-1,1121,405,1147,-1,1121,1120,405,-1,136,1148,1145,-1,136,135,1148,-1,968,1144,966,-1,968,1146,1144,-1,199,1037,981,-1,201,1037,199,-1,836,1143,837,-1,836,624,1143,-1,841,855,625,-1,841,635,855,-1,194,657,654,-1,194,1152,657,-1,622,193,1034,-1,193,622,1151,-1,1008,245,1042,-1,245,1008,1140,-1,975,210,196,-1,210,975,213,-1,659,1139,660,-1,659,1138,1139,-1,5,208,207,-1,5,663,208,-1,15,1137,13,-1,15,1190,1137,-1,1135,1097,1136,-1,1098,1097,1135,-1,1040,1190,15,-1,1040,1036,1190,-1,190,651,189,-1,190,1060,651,-1,1293,1063,554,-1,1293,328,1063,-1,1132,554,553,-1,554,1132,1293,-1,551,535,549,-1,551,532,535,-1,1204,330,872,-1,1204,1131,330,-1,1129,1130,878,-1,1129,1128,1130,-1,188,876,186,-1,876,188,559,-1,1133,187,184,-1,187,1133,185,-1,1204,563,565,-1,1204,872,563,-1,177,1127,475,-1,177,176,1127,-1,41,893,484,-1,44,893,41,-1,1065,180,1066,-1,1065,1017,180,-1,176,474,1127,-1,176,46,474,-1,179,175,480,-1,179,47,175,-1,499,29,277,-1,499,173,29,-1,321,501,991,-1,501,321,323,-1,498,277,36,-1,498,499,277,-1,1126,1074,1093,-1,1074,1126,514,-1,1010,166,163,-1,1010,786,166,-1,1095,154,898,-1,154,1095,155,-1,372,152,1125,-1,372,149,152,-1,142,146,148,-1,142,144,146,-1,1051,1124,215,-1,1051,420,1124,-1,139,961,1123,-1,139,141,961,-1,1122,140,1120,-1,140,1122,1230,-1,137,1121,135,-1,1121,137,1119,-1,589,1316,292,-1,589,592,1316,-1,294,598,601,-1,598,294,587,-1,1316,593,1118,-1,592,593,1316,-1,949,433,127,-1,433,949,132,-1,129,429,127,-1,955,429,129,-1,952,127,433,-1,128,127,952,-1,230,1117,1116,-1,229,1117,230,-1,933,120,931,-1,933,1115,120,-1,316,100,314,-1,316,53,100,-1,703,59,58,-1,56,59,703,-1,446,125,124,-1,446,939,125,-1,1115,122,120,-1,224,122,1115,-1,114,801,112,-1,114,1113,801,-1,65,806,1085,-1,110,806,65,-1,59,109,82,-1,56,109,59,-1,115,808,116,-1,808,115,105,-1,83,752,754,-1,83,85,752,-1,81,1091,77,-1,1091,81,1087,-1,72,80,78,-1,72,79,80,-1,74,1110,1112,-1,74,1086,1110,-1,79,1109,80,-1,79,1111,1109,-1,1091,75,1090,-1,1091,76,75,-1,268,784,1159,-1,268,274,784,-1,922,55,1004,-1,922,60,55,-1,55,1005,1004,-1,55,54,1005,-1,49,753,51,-1,49,754,753,-1,1108,756,1107,-1,756,1108,52,-1,775,781,759,-1,775,774,781,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getlfemur_Geo_5_355_coordIndex_12()
		{
			int[] value = {1104,1106,1105,-1,1104,727,1106,-1,788,1102,1024,-1,1094,1102,788,-1,1064,45,179,-1,1064,894,45,-1,473,894,181,-1,473,45,894,-1,38,37,39,-1,38,35,37,-1,497,32,34,-1,1101,32,497,-1,1029,1124,1100,-1,1028,1124,1029,-1,1026,418,989,-1,1026,1029,418,-1,416,23,22,-1,416,1100,23,-1,903,902,1279,-1,903,905,902,-1,900,1099,899,-1,900,1284,1099,-1,1230,141,140,-1,1230,424,141,-1,652,190,209,-1,652,1060,190,-1,1134,15,12,-1,1134,1040,15,-1,1098,9,247,-1,1098,10,9,-1,424,961,141,-1,423,961,424,-1,0,1208,1,-1,1154,1208,0,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfemur_Geo_5_355_normalIndex_1()
		{
			int[] value = {1051,1002,1147,-1,1122,935,927,-1,1209,1221,1190,-1,744,755,947,-1,513,404,401,-1,513,531,404,-1,1052,1063,1120,-1,1120,1190,1052,-1,370,122,231,-1,926,849,769,-1,769,895,926,-1,521,454,452,-1,161,243,208,-1,556,644,503,-1,499,355,316,-1,712,552,521,-1,521,800,712,-1,684,694,419,-1,419,385,684,-1,263,58,202,-1,1372,1263,1316,-1,1263,1102,1183,-1,743,691,707,-1,743,910,691,-1,1224,1139,1088,-1,721,743,707,-1,772,780,856,-1,772,796,780,-1,1189,1329,1204,-1,1198,1148,1262,-1,1233,1262,1148,-1,1268,1284,1071,-1,1284,1329,1202,-1,1202,1105,1284,-1,1198,901,1148,-1,1198,1165,901,-1,1071,1336,1268,-1,1165,1050,623,-1,1115,1189,1204,-1,1161,1124,1085,-1,1161,1126,1124,-1,1097,1000,1069,-1,1097,1036,1000,-1,1124,1032,1085,-1,1000,810,883,-1,883,1069,1000,-1,586,511,645,-1,753,848,679,-1,743,721,701,-1,1065,1217,1135,-1,757,958,812,-1,1065,966,1217,-1,966,1193,1217,-1,1115,865,1010,-1,1010,1189,1115,-1,298,661,487,-1,298,371,661,-1,969,1193,966,-1,969,1141,1193,-1,866,1053,757,-1,866,1133,1053,-1,557,388,679,-1,557,276,388,-1,889,464,685,-1,889,675,464,-1,45,96,55,-1,299,373,262,-1,373,675,537,-1,537,318,373,-1,83,141,49,-1,141,68,49,-1,237,320,229,-1,1341,1245,1351,-1,1341,1203,1245,-1,1362,1375,1382,-1,1359,1385,1334,-1,1334,1244,1359,-1,107,248,265,-1,642,558,582,-1,842,771,442,-1,442,514,842,-1,167,300,218,-1,167,215,300,-1,771,788,774,-1,771,842,788,-1,710,800,521,-1,521,336,710,-1,973,800,710,-1,336,452,114,-1,336,521,452,-1,161,6,1,-1,154,202,58,-1,58,22,154,-1,129,154,22,-1,129,115,154,-1,263,202,310,-1,419,297,281,-1,315,598,415,-1,765,576,551,-1,765,641,576,-1,1290,1122,1328,-1,1290,1247,1122,-1,423,207,283,-1,1147,1144,1157,-1,1063,952,847,-1,847,1120,1063,-1,339,494,365,-1,339,292,494,-1,1289,1269,1326,-1,1269,1344,1326,-1,1072,1028,1168,-1,1073,1114,1054,-1,1073,1138,1114,-1,1121,1016,1182,-1,1135,1003,1065,-1,1135,1026,1003,-1,1350,1234,1287,-1,1350,1211,1234,-1,183,368,242,-1,183,276,368,-1,1146,1341,1205,-1,1341,1382,1205,-1,30,61,34,-1,880,877,891,-1,860,877,817,-1,709,785,873,-1,627,573,776,-1,776,857,627,-1,1077,887,970,-1,970,1114,1077,-1,744,479,474,-1,744,806,479,-1,433,207,423,-1,1334,1326,1344,-1,1344,1244,1334,-1,1203,1341,1146,-1,1020,1080,1041,-1,1129,1140,1213,-1,1321,1129,1213,-1,1321,1134,1129,-1,163,282,349,-1,163,107,282,-1,780,796,809,-1,571,654,672,-1,654,653,672,-1,1045,1042,683,-1,683,939,1045,-1,1043,879,874,-1,874,1020,1043,-1,1047,727,882,-1,1047,1006,727,-1,91,225,67,-1,91,208,225,-1,11,69,3,-1,11,50,69,-1,158,81,26,-1,81,15,26,-1,351,113,93,-1,351,418,113,-1,727,683,882,-1,683,1042,882,-1,47,128,25,-1,47,160,128,-1,1112,931,1017,-1,416,1034,940,-1,940,749,416,-1,366,65,108,-1,366,252,65,-1,524,787,548,-1,787,639,548,-1,420,439,426,-1,426,548,420,-1,611,428,578,-1,611,481,428,-1,497,587,703,-1,497,439,587,-1,620,652,258,-1,652,285,258,-1,351,438,564,-1,1125,1239,1232,-1,1125,1137,1239,-1,650,490,739,-1,490,680,739,-1,267,638,502,-1,267,608,638,-1,205,543,251,-1,205,498,543,-1,109,409,406,-1,994,843,887,-1,887,1077,994,-1,954,962,990,-1,954,905,962,-1,472,445,512,-1,472,397,445,-1,343,285,681,-1,285,652,681,-1,307,696,658,-1,658,191,307,-1,457,612,731,-1,457,393,612,-1,662,717,635,-1,635,504,662,-1,1208,1219,1359,-1,1359,1354,1208,-1,1382,1385,1205,-1,1062,1146,1205,-1,722,733,817,-1,597,431,563,-1,597,567,431,-1,663,507,540,-1,540,648,663,-1,436,455,673,-1,290,436,294,-1,567,455,354,-1,567,673,455,-1,431,567,328,-1,567,354,328,-1,1295,1392,1245,-1,1392,1351,1245,-1,121,77,62,-1,121,180,77,-1,950,886,816,-1,950,1074,886,-1,953,1092,1027,-1,1027,871,953,-1,510,659,754,-1,659,837,754,-1,802,773,594,-1,802,938,773,-1,468,773,553,-1,773,862,553,-1,1049,993,1176,-1,1049,1019,993,-1,769,791,625,-1,769,849,791,-1,533,706,367,-1,446,863,451,-1,446,766,863,-1,27,145,190,-1,27,32,145,-1,318,165,262,-1,262,373,318,-1,841,957,1018,-1,841,894,957,-1,685,977,889,-1,685,841,977,-1,373,299,287,-1,436,555,387,-1,436,673,555,-1,648,673,663,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfemur_Geo_5_355_normalIndex_2()
		{
			int[] value = {648,555,673,-1,347,286,387,-1,347,247,286,-1,464,287,273,-1,273,460,464,-1,841,714,835,-1,835,894,841,-1,368,273,242,-1,368,460,273,-1,399,319,303,-1,501,456,427,-1,327,519,388,-1,327,360,519,-1,753,701,846,-1,232,324,203,-1,232,381,324,-1,324,278,203,-1,102,284,90,-1,102,321,284,-1,749,723,565,-1,749,881,723,-1,108,459,416,-1,108,156,459,-1,189,57,58,-1,58,263,189,-1,235,156,98,-1,156,39,98,-1,459,156,269,-1,269,579,459,-1,470,115,529,-1,470,154,115,-1,115,131,414,-1,414,529,115,-1,610,666,745,-1,666,725,745,-1,898,1005,703,-1,426,204,524,-1,426,168,204,-1,805,596,726,-1,127,457,307,-1,503,393,177,-1,177,335,503,-1,305,335,177,-1,177,105,305,-1,18,1,191,-1,191,230,18,-1,454,521,334,-1,1017,499,712,-1,712,1056,1017,-1,735,618,888,-1,618,838,888,-1,50,248,107,-1,572,596,546,-1,546,504,572,-1,689,632,604,-1,689,662,632,-1,558,642,471,-1,471,341,558,-1,1131,819,937,-1,1131,1025,819,-1,1131,937,1104,-1,1104,1240,1131,-1,908,931,1112,-1,1112,1104,908,-1,1094,1119,973,-1,1119,1056,973,-1,607,389,238,-1,238,308,607,-1,238,389,282,-1,282,107,238,-1,631,759,646,-1,646,332,631,-1,1298,1254,1391,-1,1391,1363,1298,-1,1366,1391,1277,-1,1391,1240,1277,-1,855,878,759,-1,855,1022,878,-1,614,718,349,-1,718,631,349,-1,918,932,1023,-1,904,1025,1110,-1,1110,1023,904,-1,1116,1332,1142,-1,1116,1235,1332,-1,1167,1353,1214,-1,1214,1084,1167,-1,798,741,932,-1,798,686,741,-1,705,657,826,-1,657,798,826,-1,657,705,641,-1,641,449,657,-1,861,718,782,-1,861,855,718,-1,768,598,535,-1,598,315,535,-1,630,783,535,-1,535,361,630,-1,735,853,613,-1,853,737,613,-1,309,630,361,-1,309,437,630,-1,960,761,688,-1,688,830,960,-1,761,615,542,-1,542,688,761,-1,12,75,160,-1,159,209,309,-1,209,79,52,-1,209,159,79,-1,104,25,128,-1,128,244,104,-1,133,491,482,-1,482,306,133,-1,214,228,88,-1,214,407,228,-1,24,0,21,-1,21,110,24,-1,42,491,133,-1,42,137,491,-1,453,542,615,-1,311,244,289,-1,311,329,244,-1,345,450,429,-1,345,453,465,-1,345,322,380,-1,345,274,254,-1,345,289,249,-1,345,372,311,-1,164,148,143,-1,143,205,164,-1,205,406,498,-1,205,143,406,-1,94,85,109,-1,94,86,85,-1,825,1079,1078,-1,483,621,515,-1,483,636,621,-1,704,536,952,-1,1120,1209,1190,-1,1120,1155,1209,-1,1212,1241,1172,-1,1212,1280,1241,-1,1174,1184,1199,-1,1184,1218,1199,-1,1252,1285,1380,-1,1285,1358,1380,-1,1370,1376,1367,-1,1370,1381,1376,-1,1370,1377,1381,-1,1381,1357,1380,-1,1302,1379,1377,-1,649,283,331,-1,331,692,649,-1,231,122,175,-1,122,73,175,-1,502,231,267,-1,502,370,231,-1,638,905,752,-1,905,954,752,-1,786,570,637,-1,637,852,786,-1,934,786,1026,-1,786,852,1026,-1,927,1072,1122,-1,852,875,1026,-1,875,1003,1026,-1,1357,1168,1238,-1,1357,1379,1168,-1,1192,1252,1258,-1,1192,1169,1252,-1,1185,1279,1225,-1,1185,1266,1279,-1,801,1095,974,-1,1343,1279,1266,-1,1343,1313,1279,-1,1003,875,832,-1,752,954,868,-1,868,804,752,-1,676,601,907,-1,907,991,676,-1,1265,1386,1331,-1,1265,1361,1386,-1,812,700,757,-1,812,775,700,-1,1265,1211,1361,-1,1211,1350,1361,-1,1325,1393,1365,-1,1325,1373,1393,-1,697,716,562,-1,1287,1393,1350,-1,1287,1390,1393,-1,1369,1309,1387,-1,1369,1347,1309,-1,829,691,910,-1,1261,1115,1293,-1,1261,1088,1115,-1,1347,1388,1333,-1,1347,1369,1388,-1,1014,1160,955,-1,1014,1164,1160,-1,1327,1352,1356,-1,1327,1384,1352,-1,1220,1098,1236,-1,1220,1179,1098,-1,1322,1371,1306,-1,1322,1378,1371,-1,1070,912,1061,-1,1061,1177,1070,-1,1032,883,723,-1,723,881,1032,-1,690,514,418,-1,690,842,514,-1,772,856,827,-1,827,719,772,-1,784,770,1007,-1,784,572,770,-1,874,879,654,-1,1012,1041,1100,-1,1012,1076,1041,-1,736,1013,1066,-1,1066,644,736,-1,1283,1281,1086,-1,1090,1015,1099,-1,1161,1320,1126,-1,1161,1338,1320,-1,850,985,922,-1,922,828,850,-1,1108,1101,1186,-1,1183,1106,1178,-1,1183,1102,1106,-1,1008,652,620,-1,1008,933,652,-1,1317,1180,1303,-1,1303,1339,1317,-1,1335,1345,1291,-1,1291,1275,1335,-1,1153,1156,1035,-1,1035,998,1153,-1,1055,731,1030,-1,731,612,1030,-1,1206,1066,1013,-1,1206,1275,1066,-1,1283,1335,1281,-1,1283,1339,1335,-1,1330,1337,1321,-1,1156,1128,1008,-1,1128,933,1008,-1,1303,1194,1264,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfemur_Geo_5_355_normalIndex_3()
		{
			int[] value = {1264,1345,1303,-1,1180,1194,1303,-1,1180,1117,1194,-1,1128,1194,1117,-1,1178,1132,1255,-1,1178,1106,1132,-1,1045,1129,1173,-1,1129,1134,1173,-1,879,1013,736,-1,854,702,727,-1,1020,1041,1076,-1,1076,1043,1020,-1,874,784,1020,-1,827,856,854,-1,854,897,827,-1,118,195,224,-1,796,602,809,-1,912,1089,943,-1,912,1070,1089,-1,1383,1299,1346,-1,1383,1191,1299,-1,1098,1191,1236,-1,1098,1036,1191,-1,1166,1044,1158,-1,1166,1075,1044,-1,1378,1236,1371,-1,1378,1220,1236,-1,1091,708,586,-1,586,919,1091,-1,1378,1356,1352,-1,1378,1322,1356,-1,1044,730,988,-1,1044,824,730,-1,487,661,1010,-1,661,1083,1010,-1,910,660,865,-1,910,743,660,-1,1211,1053,1133,-1,1133,1234,1211,-1,1393,1390,1365,-1,1111,1331,1141,-1,1111,1265,1331,-1,1342,1193,1141,-1,1141,1331,1342,-1,756,617,752,-1,752,804,756,-1,1360,1266,1288,-1,1360,1343,1266,-1,445,390,475,-1,475,486,445,-1,405,401,375,-1,375,374,405,-1,1246,1271,1188,-1,1246,1305,1271,-1,941,1188,1159,-1,941,974,1188,-1,1192,1258,1288,-1,1258,1294,1288,-1,1258,1292,1294,-1,1294,1292,1135,-1,1135,1217,1294,-1,1135,1028,1026,-1,1135,1238,1028,-1,1028,934,1026,-1,370,637,570,-1,370,502,637,-1,267,231,251,-1,231,175,251,-1,1302,1377,1370,-1,1370,1311,1302,-1,1376,1355,1367,-1,1376,1358,1355,-1,1323,1318,1297,-1,1323,1300,1318,-1,1267,1318,1355,-1,1267,1250,1318,-1,1181,1231,1250,-1,1250,1226,1181,-1,1184,1243,1218,-1,1184,1230,1243,-1,1212,1175,1210,-1,1212,1172,1175,-1,1241,1280,1209,-1,1209,1155,1241,-1,1315,1154,1221,-1,575,500,665,-1,575,410,500,-1,665,724,984,-1,724,568,821,-1,568,621,821,-1,422,627,640,-1,1078,1123,864,-1,864,825,1078,-1,634,864,636,-1,634,825,864,-1,595,448,433,-1,595,549,448,-1,629,595,433,-1,433,423,629,-1,345,311,289,-1,345,249,274,-1,345,254,322,-1,345,380,453,-1,345,465,450,-1,345,429,372,-1,322,288,379,-1,440,542,380,-1,542,453,380,-1,329,463,353,-1,0,137,42,-1,0,24,137,-1,88,228,21,-1,228,110,21,-1,306,482,407,-1,407,214,306,-1,209,104,244,-1,209,52,104,-1,12,51,31,-1,325,413,288,-1,413,379,288,-1,603,413,613,-1,613,737,603,-1,603,830,688,-1,603,737,830,-1,861,1022,855,-1,861,1029,1022,-1,530,641,765,-1,530,449,641,-1,576,458,301,-1,576,728,458,-1,918,798,932,-1,741,904,1023,-1,1023,932,741,-1,999,1235,1116,-1,999,1113,1235,-1,855,759,631,-1,631,718,855,-1,389,607,657,-1,657,449,389,-1,878,646,759,-1,1025,1254,1110,-1,1025,1131,1254,-1,1254,1131,1240,-1,1240,1391,1254,-1,631,332,349,-1,332,163,349,-1,471,607,308,-1,471,686,607,-1,582,633,740,-1,740,642,582,-1,1229,1277,1119,-1,1277,1112,1119,-1,633,582,604,-1,604,632,633,-1,687,632,546,-1,687,633,632,-1,524,548,426,-1,973,712,800,-1,973,1056,712,-1,225,208,151,-1,151,302,225,-1,220,364,336,-1,336,114,220,-1,177,127,6,-1,6,105,177,-1,364,425,639,-1,639,710,364,-1,587,477,758,-1,477,650,758,-1,343,478,245,-1,1005,890,703,-1,890,745,703,-1,439,414,426,-1,439,497,414,-1,348,281,291,-1,1034,972,898,-1,972,1005,898,-1,416,459,972,-1,972,1034,416,-1,749,940,872,-1,248,4,153,-1,248,50,4,-1,108,565,366,-1,108,416,565,-1,54,252,124,-1,54,65,252,-1,252,434,447,-1,252,366,434,-1,342,36,271,-1,342,66,36,-1,357,280,467,-1,330,488,363,-1,330,298,488,-1,16,78,29,-1,16,125,78,-1,29,140,33,-1,29,78,140,-1,140,312,186,-1,140,293,312,-1,481,519,360,-1,481,611,519,-1,820,701,721,-1,820,846,701,-1,84,48,147,-1,319,408,259,-1,319,456,408,-1,924,949,967,-1,748,746,695,-1,492,501,427,-1,492,534,501,-1,492,508,605,-1,492,392,508,-1,841,583,714,-1,841,685,583,-1,221,233,261,-1,977,841,1018,-1,981,930,909,-1,981,979,930,-1,975,987,957,-1,987,1018,957,-1,210,190,257,-1,446,172,217,-1,446,451,172,-1,7,10,2,-1,833,863,989,-1,539,706,533,-1,539,906,706,-1,706,588,473,-1,706,803,588,-1,468,594,773,-1,862,953,837,-1,862,992,953,-1,68,95,162,-1,95,146,71,-1,95,187,146,-1,1074,1144,1147,-1,1074,950,1144,-1,886,693,678,-1,77,180,170,-1,709,525,402,-1,402,559,709,-1,1201,1295,1245,-1,266,354,455,-1,266,250,354,-1,663,673,567,-1,567,597,663,-1,480,507,544,-1,480,444,507,-1,339,517,431,-1,517,563,431,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlfemur_Geo_5_355_normalIndex_4()
		{
			int[] value = {795,860,751,-1,795,851,860,-1,925,1004,1103,-1,1103,993,925,-1,1077,1062,994,-1,1077,1146,1062,-1,1351,1374,1362,-1,1351,1392,1374,-1,1219,1205,1385,-1,1385,1359,1219,-1,1273,1103,1208,-1,74,93,113,-1,113,81,74,-1,504,632,662,-1,504,546,632,-1,635,717,827,-1,717,719,827,-1,653,736,644,-1,644,556,653,-1,658,628,191,-1,628,230,191,-1,971,868,959,-1,527,574,441,-1,527,656,574,-1,401,480,513,-1,401,405,480,-1,742,509,667,-1,742,523,509,-1,813,836,763,-1,763,729,813,-1,924,836,859,-1,924,839,836,-1,143,109,406,-1,143,94,109,-1,422,640,580,-1,1002,1074,1147,-1,739,758,650,-1,739,799,758,-1,241,442,771,-1,771,333,241,-1,571,596,600,-1,571,726,596,-1,1153,998,1046,-1,940,898,845,-1,940,1034,898,-1,872,845,828,-1,872,940,845,-1,524,646,787,-1,646,913,787,-1,477,490,650,-1,477,337,490,-1,108,65,39,-1,39,156,108,-1,189,120,57,-1,882,1042,1149,-1,1149,1080,882,-1,235,269,156,-1,81,70,74,-1,81,158,70,-1,225,454,334,-1,334,67,225,-1,571,672,726,-1,1013,879,1043,-1,334,521,552,-1,1015,1086,1012,-1,1015,1283,1086,-1,1047,1007,1006,-1,784,874,600,-1,1140,1129,1045,-1,1045,939,1140,-1,874,654,571,-1,571,600,874,-1,1081,1228,1011,-1,1081,1259,1228,-1,215,173,300,-1,91,316,355,-1,91,67,316,-1,1081,1089,1259,-1,1100,1041,1080,-1,1080,1149,1100,-1,1076,1012,1086,-1,1375,1326,1334,-1,1375,1349,1326,-1,1389,1200,1248,-1,1248,1286,1389,-1,671,643,545,-1,886,1074,963,-1,174,207,433,-1,433,448,174,-1,148,94,143,-1,515,469,573,-1,573,627,515,-1,1201,1203,1138,-1,851,873,891,-1,593,520,722,-1,714,746,835,-1,714,695,746,-1,323,327,276,-1,276,183,323,-1,1292,1238,1135,-1,1065,832,966,-1,1065,1003,832,-1,181,221,247,-1,1201,1144,1295,-1,1201,1157,1144,-1,517,520,593,-1,593,550,517,-1,1122,1168,1328,-1,1122,1072,1168,-1,85,176,580,-1,580,384,85,-1,314,326,122,-1,122,370,314,-1,704,952,1063,-1,1063,755,704,-1,1227,1237,1374,-1,1237,1349,1374,-1,1144,1251,1392,-1,1392,1295,1144,-1,1182,1308,1121,-1,1308,1196,1121,-1,647,792,802,-1,792,921,802,-1,279,184,525,-1,184,402,525,-1,344,619,494,-1,494,292,344,-1,1297,1207,1278,-1,1278,1323,1297,-1,1155,984,1096,-1,1096,1241,1155,-1,1203,1114,1138,-1,1107,1379,1302,-1,1238,1168,1028,-1,826,888,838,-1,826,900,888,-1,1060,1214,1130,-1,348,291,358,-1,579,157,461,-1,579,269,157,-1,151,18,35,-1,151,243,18,-1,1,18,243,-1,243,161,1,-1,151,35,23,-1,23,302,151,-1,364,710,336,-1,1156,1008,1035,-1,99,13,15,-1,15,119,99,-1,442,99,119,-1,119,514,442,-1,788,689,774,-1,689,622,774,-1,604,582,569,-1,582,558,569,-1,471,277,341,-1,50,11,4,-1,1385,1375,1334,-1,1385,1382,1375,-1,1201,1245,1203,-1,647,526,625,-1,526,588,625,-1,141,187,68,-1,187,95,68,-1,537,766,446,-1,446,318,537,-1,889,863,766,-1,88,52,79,-1,88,21,52,-1,257,226,287,-1,287,299,257,-1,833,539,435,-1,833,906,539,-1,136,234,56,-1,234,150,56,-1,87,63,17,-1,519,679,388,-1,519,753,679,-1,757,1111,958,-1,757,1053,1111,-1,488,487,660,-1,488,298,487,-1,1091,919,1179,-1,919,1098,1179,-1,679,748,557,-1,969,966,832,-1,388,276,327,-1,866,757,700,-1,416,749,565,-1,1000,919,810,-1,1000,1098,919,-1,1069,883,1032,-1,1032,1124,1069,-1,1098,1000,1036,-1,1126,1069,1124,-1,1126,1097,1069,-1,1202,1189,1197,-1,1284,1105,655,-1,655,1071,1284,-1,350,670,395,-1,350,623,670,-1,1268,1204,1329,-1,1329,1284,1268,-1,901,1187,1148,-1,901,1033,1187,-1,901,1165,623,-1,1187,1202,1197,-1,1115,1204,1198,-1,1202,1329,1189,-1,602,796,772,-1,772,626,602,-1,224,195,240,-1,240,227,224,-1,1263,1372,1338,-1,1306,1158,1322,-1,1306,1166,1158,-1,153,218,300,-1,300,270,153,-1,131,115,8,-1,385,281,348,-1,385,419,281,-1,499,305,355,-1,161,208,91,-1,243,151,208,-1,337,220,245,-1,401,404,382,-1,382,375,401,-1,947,1063,1052,-1,947,755,1063,-1,1190,1154,1052,-1,1190,1221,1154,-1,422,515,627,-1,422,483,515,-1,474,382,496,-1,375,382,474,-1,74,54,19,-1,54,74,70,-1,271,252,447,-1,271,124,252,-1,245,114,343,-1,245,220,114,-1,1176,1059,1049,-1,1176,1286,1059,-1,1354,1273,1208,-1,1354,1389,1273,-1,547,305,499,-1,547,335,305,-1,358,470,666,-1,310,470,358,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlfemur_Geo_5_355_normalIndex_5()
		{
			int[] value = {666,529,725,-1,666,470,529,-1,131,3,168,-1,131,8,3,-1,270,173,197,-1,270,300,173,-1,1177,1260,1070,-1,1260,1177,1249,-1,1166,1272,1162,-1,1272,1166,1306,-1,1255,1216,1178,-1,1255,1330,1216,-1,1316,1183,1195,-1,1183,1316,1263,-1,218,4,13,-1,218,153,4,-1,1204,1165,1198,-1,1204,1268,1165,-1,1050,670,623,-1,1050,1087,670,-1,395,655,350,-1,655,395,651,-1,1071,1301,1336,-1,1071,1093,1301,-1,350,1105,1033,-1,1105,350,655,-1,670,651,395,-1,1093,1087,1301,-1,1087,651,670,-1,1087,1093,651,-1,1139,866,829,-1,866,1139,1133,-1,1091,1197,1083,-1,1179,1197,1091,-1,586,417,424,-1,417,586,708,-1,578,660,743,-1,578,488,660,-1,368,583,460,-1,581,583,368,-1,424,511,586,-1,424,434,511,-1,611,753,519,-1,701,753,611,-1,117,17,34,-1,117,87,17,-1,150,61,56,-1,150,152,61,-1,136,539,234,-1,435,539,136,-1,165,446,217,-1,165,318,446,-1,32,2,10,-1,32,27,2,-1,257,262,210,-1,262,257,299,-1,214,79,38,-1,214,88,79,-1,52,0,104,-1,21,0,52,-1,42,47,25,-1,42,133,47,-1,766,675,889,-1,675,766,537,-1,72,222,138,-1,222,72,139,-1,359,588,526,-1,359,473,588,-1,647,791,792,-1,647,625,791,-1,1248,1016,1031,-1,1182,1016,1248,-1,1389,1242,1200,-1,1389,1354,1242,-1,689,569,622,-1,689,604,569,-1,13,11,15,-1,13,4,11,-1,240,333,362,-1,240,195,333,-1,333,118,241,-1,118,333,195,-1,114,302,23,-1,452,302,114,-1,1035,620,628,-1,1035,1008,620,-1,18,258,35,-1,18,230,258,-1,610,358,666,-1,348,358,610,-1,97,120,157,-1,97,57,120,-1,297,694,461,-1,297,419,694,-1,235,157,269,-1,235,97,157,-1,768,782,598,-1,768,861,782,-1,705,838,728,-1,838,705,826,-1,888,1048,1001,-1,888,900,1048,-1,1113,1298,1235,-1,1127,1298,1113,-1,1239,1067,1130,-1,1067,1239,1137,-1,1340,1332,1363,-1,1353,1332,1340,-1,598,747,415,-1,598,782,747,-1,550,563,517,-1,550,560,563,-1,496,704,755,-1,476,704,496,-1,404,369,382,-1,404,396,369,-1,934,789,786,-1,934,927,789,-1,570,314,370,-1,570,591,314,-1,1114,903,1054,-1,1114,970,903,-1,174,85,86,-1,174,176,85,-1,331,122,326,-1,73,122,331,-1,1247,1324,1307,-1,1247,1290,1324,-1,1123,1241,1096,-1,1172,1241,1123,-1,1079,1175,1078,-1,1181,1175,1079,-1,1207,1231,1109,-1,1297,1231,1207,-1,1307,1323,1278,-1,1307,1324,1323,-1,344,525,619,-1,344,279,525,-1,146,402,184,-1,377,402,146,-1,187,412,430,-1,412,187,141,-1,83,462,411,-1,462,83,138,-1,222,659,510,-1,222,320,659,-1,359,553,237,-1,359,468,553,-1,647,594,526,-1,647,802,594,-1,921,1016,1121,-1,792,1016,921,-1,1222,1308,1348,-1,1222,1196,1308,-1,1227,1392,1251,-1,1227,1374,1392,-1,1289,1349,1237,-1,1289,1326,1349,-1,132,283,207,-1,132,116,283,-1,1155,847,984,-1,1120,847,1155,-1,1300,1355,1318,-1,1300,1367,1355,-1,1270,1234,1224,-1,1287,1234,1270,-1,327,312,360,-1,323,312,327,-1,1073,995,1051,-1,1073,1054,995,-1,560,597,563,-1,560,544,597,-1,860,891,877,-1,891,860,851,-1,892,1054,903,-1,892,995,1054,-1,94,132,86,-1,94,148,132,-1,1074,936,963,-1,936,1074,1002,-1,541,643,678,-1,541,545,643,-1,1182,1200,1308,-1,1182,1248,1200,-1,1348,1200,1242,-1,1348,1308,1200,-1,1259,1070,1260,-1,1070,1259,1089,-1,870,1011,732,-1,870,1081,1011,-1,26,11,3,-1,26,15,11,-1,197,265,270,-1,197,212,265,-1,1006,770,897,-1,770,1006,1007,-1,1283,1090,1337,-1,1090,1283,1015,-1,1030,644,1066,-1,612,644,1030,-1,736,654,879,-1,653,654,736,-1,100,44,84,-1,44,100,33,-1,278,532,527,-1,324,532,278,-1,1100,1015,1012,-1,1015,1100,1099,-1,972,890,1005,-1,972,893,890,-1,477,425,337,-1,420,425,477,-1,1082,914,923,-1,1057,914,1082,-1,896,985,850,-1,985,896,1024,-1,799,828,845,-1,828,799,850,-1,845,758,799,-1,845,898,758,-1,285,35,258,-1,23,35,285,-1,644,393,503,-1,393,644,612,-1,690,626,715,-1,564,626,690,-1,391,599,394,-1,391,616,599,-1,897,635,827,-1,897,770,635,-1,842,715,788,-1,842,690,715,-1,774,333,771,-1,622,333,774,-1,719,788,715,-1,717,788,719,-1,119,418,514,-1,418,119,113,-1,490,682,680,-1,490,478,682,-1,887,384,970,-1,887,409,384,-1,994,844,843,-1,844,994,948,-1,951,902,884,-1,902,951,944,-1,949,859,858,-1,949,924,859,-1,700,729,866,-1,729,700,813,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlfemur_Geo_5_355_normalIndex_6()
		{
			int[] value = {516,518,590,-1,485,518,516,-1,760,523,742,-1,760,522,523,-1,566,509,396,-1,667,509,566,-1,405,444,480,-1,405,403,444,-1,486,505,495,-1,486,484,505,-1,532,656,527,-1,532,669,656,-1,574,467,441,-1,574,589,467,-1,609,346,357,-1,609,606,346,-1,561,391,352,-1,561,616,391,-1,590,554,516,-1,590,624,554,-1,892,627,857,-1,640,627,892,-1,504,770,572,-1,635,770,504,-1,717,689,788,-1,717,662,689,-1,783,1067,942,-1,783,920,1067,-1,837,553,862,-1,837,659,553,-1,1103,1176,993,-1,1176,1103,1273,-1,1208,1040,1219,-1,1040,1208,1037,-1,1146,1114,1203,-1,1146,1077,1114,-1,1040,994,1062,-1,1040,948,994,-1,951,1004,944,-1,951,1037,1004,-1,925,944,1004,-1,944,925,962,-1,722,742,667,-1,742,722,817,-1,365,751,733,-1,365,494,751,-1,544,513,480,-1,513,544,560,-1,663,544,507,-1,663,597,544,-1,857,995,892,-1,857,917,995,-1,1002,880,936,-1,917,880,1002,-1,936,891,873,-1,936,880,891,-1,693,709,559,-1,709,693,785,-1,795,494,619,-1,795,751,494,-1,619,709,795,-1,619,525,709,-1,134,279,194,-1,134,184,279,-1,198,264,250,-1,194,264,198,-1,121,198,182,-1,121,123,198,-1,290,246,206,-1,290,294,246,-1,206,216,180,-1,206,246,216,-1,182,180,121,-1,182,206,180,-1,71,184,134,-1,184,71,146,-1,678,559,541,-1,678,693,559,-1,886,785,693,-1,963,785,886,-1,541,430,545,-1,377,430,541,-1,63,71,80,-1,63,95,71,-1,80,10,63,-1,80,62,10,-1,87,95,63,-1,87,162,95,-1,545,412,671,-1,430,412,545,-1,816,961,950,-1,816,814,961,-1,978,1251,961,-1,978,1227,1251,-1,814,668,807,-1,668,814,671,-1,162,49,68,-1,162,178,49,-1,7,34,17,-1,30,34,7,-1,1227,976,1237,-1,976,1227,978,-1,871,976,831,-1,871,1027,976,-1,831,754,871,-1,831,698,754,-1,178,72,49,-1,178,193,72,-1,213,236,139,-1,275,236,213,-1,213,152,150,-1,152,213,193,-1,953,1064,1092,-1,953,992,1064,-1,938,862,773,-1,862,938,992,-1,1196,1064,1039,-1,1196,1222,1064,-1,234,533,275,-1,539,533,234,-1,803,895,769,-1,946,895,803,-1,906,989,946,-1,833,989,906,-1,975,895,987,-1,895,975,926,-1,946,706,906,-1,803,706,946,-1,172,435,136,-1,451,435,172,-1,56,30,82,-1,61,30,56,-1,62,32,10,-1,62,77,32,-1,30,2,55,-1,30,7,2,-1,172,96,217,-1,172,82,96,-1,190,211,257,-1,211,190,145,-1,977,987,989,-1,987,977,1018,-1,975,956,1019,-1,975,957,956,-1,909,925,993,-1,925,909,930,-1,959,930,979,-1,959,990,930,-1,909,916,981,-1,916,909,956,-1,211,192,199,-1,201,192,211,-1,233,246,261,-1,233,216,246,-1,540,605,648,-1,528,605,540,-1,347,555,508,-1,555,347,387,-1,179,233,221,-1,192,233,179,-1,226,166,185,-1,226,199,166,-1,899,981,916,-1,981,899,986,-1,983,959,979,-1,959,983,971,-1,983,965,967,-1,965,983,986,-1,899,746,869,-1,746,899,835,-1,185,111,149,-1,111,185,166,-1,179,181,106,-1,181,179,221,-1,313,508,392,-1,313,347,508,-1,528,492,605,-1,534,492,528,-1,501,495,505,-1,534,495,501,-1,392,427,399,-1,392,492,427,-1,303,181,313,-1,181,303,142,-1,111,59,64,-1,111,106,59,-1,135,242,149,-1,183,242,135,-1,748,869,746,-1,869,748,834,-1,967,915,924,-1,967,965,915,-1,876,924,915,-1,876,839,924,-1,679,834,748,-1,679,848,834,-1,41,135,64,-1,188,135,41,-1,147,59,142,-1,147,48,59,-1,516,456,485,-1,456,516,408,-1,259,147,319,-1,147,259,84,-1,188,44,186,-1,188,41,44,-1,846,839,876,-1,839,846,820,-1,293,360,312,-1,293,481,360,-1,186,33,140,-1,33,186,44,-1,259,381,232,-1,381,259,408,-1,101,33,100,-1,101,29,33,-1,78,293,140,-1,78,304,293,-1,428,488,578,-1,363,488,428,-1,125,304,78,-1,125,272,304,-1,29,112,16,-1,112,29,101,-1,268,112,278,-1,112,268,92,-1,90,16,5,-1,16,90,125,-1,330,272,284,-1,363,272,330,-1,371,330,356,-1,371,298,330,-1,126,5,92,-1,126,9,5,-1,280,441,467,-1,280,268,441,-1,144,280,357,-1,126,280,144,-1,9,76,102,-1,9,28,76,-1,398,321,338,-1,356,321,398,-1,424,398,443,-1,424,417,398,-1,76,342,338,-1,66,342,76,-1,28,169,53,-1,169,28,144,-1,346,223,169,-1,346,352,223,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlfemur_Geo_5_355_normalIndex_7()
		{
			int[] value = {53,36,66,-1,53,40,36,-1,443,434,424,-1,447,434,443,-1,565,434,366,-1,434,565,511,-1,271,20,124,-1,20,271,36,-1,46,223,253,-1,46,40,223,-1,253,394,296,-1,391,394,253,-1,89,20,46,-1,20,89,19,-1,19,93,74,-1,89,93,19,-1,93,296,351,-1,296,93,89,-1,227,212,197,-1,227,260,212,-1,167,442,241,-1,99,442,167,-1,3,37,26,-1,3,8,37,-1,579,694,893,-1,579,461,694,-1,694,890,893,-1,694,684,890,-1,684,745,890,-1,684,610,745,-1,745,497,703,-1,725,497,745,-1,572,600,596,-1,572,784,600,-1,569,341,362,-1,569,558,341,-1,69,168,3,-1,168,69,204,-1,587,420,477,-1,587,439,420,-1,478,337,245,-1,478,490,337,-1,931,672,547,-1,931,908,672,-1,452,225,302,-1,452,454,225,-1,332,524,204,-1,332,646,524,-1,787,710,639,-1,787,973,710,-1,1119,1017,1056,-1,1017,1119,1112,-1,1119,1145,1229,-1,1145,1119,1094,-1,687,740,633,-1,687,819,740,-1,740,741,642,-1,740,904,741,-1,1363,1366,1340,-1,1363,1391,1366,-1,1319,1239,1314,-1,1239,1319,1232,-1,1145,1125,1232,-1,1145,1058,1125,-1,878,913,646,-1,878,1058,913,-1,607,798,657,-1,607,686,798,-1,282,449,530,-1,282,389,449,-1,1127,1254,1298,-1,1110,1254,1127,-1,735,1001,853,-1,888,1001,735,-1,219,576,301,-1,219,551,576,-1,530,747,614,-1,530,765,747,-1,920,1130,1067,-1,1130,920,1060,-1,779,1060,920,-1,779,928,1060,-1,315,171,256,-1,171,315,415,-1,830,1116,960,-1,830,999,1116,-1,255,618,421,-1,618,255,458,-1,301,31,219,-1,301,130,31,-1,960,1142,1038,-1,960,1116,1142,-1,1084,1021,1167,-1,1021,1084,911,-1,585,928,779,-1,750,928,585,-1,159,361,256,-1,309,361,159,-1,840,1021,815,-1,840,1038,1021,-1,750,720,911,-1,720,750,577,-1,815,674,840,-1,674,815,664,-1,379,603,440,-1,413,603,379,-1,613,325,421,-1,325,613,413,-1,325,196,200,-1,325,288,196,-1,255,75,130,-1,75,255,200,-1,12,130,75,-1,130,12,31,-1,12,38,51,-1,12,60,38,-1,295,407,482,-1,317,407,295,-1,228,103,110,-1,103,228,239,-1,24,43,137,-1,43,24,14,-1,463,750,585,-1,577,750,463,-1,466,463,329,-1,466,577,463,-1,577,592,720,-1,466,592,577,-1,465,664,450,-1,674,664,465,-1,440,322,379,-1,440,380,322,-1,288,254,196,-1,288,322,254,-1,249,160,274,-1,128,160,249,-1,466,429,592,-1,429,466,372,-1,73,164,175,-1,73,116,164,-1,884,498,844,-1,543,498,884,-1,1207,997,1278,-1,1207,945,997,-1,423,649,629,-1,649,423,283,-1,595,818,767,-1,818,595,629,-1,489,448,549,-1,448,489,432,-1,711,595,767,-1,595,711,549,-1,711,825,634,-1,711,867,825,-1,489,636,483,-1,634,636,489,-1,767,867,711,-1,867,767,945,-1,864,1096,821,-1,864,1123,1096,-1,515,568,469,-1,568,515,621,-1,724,1096,984,-1,821,1096,724,-1,568,665,500,-1,724,665,568,-1,573,383,522,-1,573,469,383,-1,410,383,500,-1,410,340,383,-1,665,847,575,-1,847,665,984,-1,410,536,400,-1,536,410,575,-1,523,376,509,-1,523,340,376,-1,476,376,400,-1,476,369,376,-1,1296,1154,1315,-1,1118,1154,1296,-1,1223,1310,1230,-1,1223,1304,1310,-1,1310,1221,1282,-1,1221,1310,1315,-1,1282,1209,1280,-1,1282,1221,1209,-1,1226,1175,1181,-1,1210,1175,1226,-1,1218,1212,1210,-1,1212,1218,1243,-1,1250,1199,1226,-1,1199,1250,1267,-1,1297,1250,1231,-1,1250,1297,1318,-1,1355,1285,1267,-1,1285,1355,1358,-1,1169,1184,1174,-1,1171,1184,1169,-1,1311,1367,1300,-1,1311,1370,1367,-1,1324,1300,1323,-1,1311,1300,1324,-1,1009,1278,997,-1,1278,1009,1307,-1,822,968,1009,-1,822,793,968,-1,649,793,822,-1,793,649,692,-1,793,677,794,-1,677,793,692,-1,902,543,884,-1,902,608,543,-1,794,927,935,-1,927,794,789,-1,617,637,502,-1,617,699,637,-1,1258,1380,1292,-1,1258,1252,1380,-1,1266,1192,1288,-1,1266,1185,1192,-1,1225,1304,1223,-1,1305,1304,1225,-1,1188,1276,1159,-1,1188,1271,1276,-1,1305,1296,1304,-1,1296,1305,1246,-1,1095,806,1118,-1,801,806,1095,-1,479,375,474,-1,479,374,375,-1,374,403,405,-1,378,403,374,-1,801,479,806,-1,506,479,801,-1,538,378,506,-1,538,386,378,-1,445,386,390,-1,445,397,386,-1,941,538,974,-1,941,584,538,-1,1294,1360,1288,-1,1294,1342,1360,-1,756,699,617,-1,756,778,699,-1,781,756,804,-1,756,781,762,-1,811,832,778,-1,811,969,832,-1,1342,1386,1360,-1,1342,1331,1386,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlfemur_Geo_5_355_normalIndex_8()
		{
			int[] value = {1312,1343,1364,-1,1313,1343,1312,-1,1151,1276,1253,-1,1159,1276,1151,-1,907,584,941,-1,584,907,601,-1,475,484,486,-1,493,484,475,-1,1253,1152,1151,-1,1256,1152,1253,-1,1364,1325,1312,-1,1373,1325,1364,-1,811,958,969,-1,812,958,811,-1,775,781,777,-1,775,762,781,-1,836,777,859,-1,777,836,813,-1,1150,1256,1257,-1,1152,1256,1150,-1,991,697,676,-1,991,982,697,-1,518,493,562,-1,484,493,518,-1,980,1150,1143,-1,980,982,1150,-1,1274,1365,1390,-1,1274,1257,1365,-1,691,866,729,-1,866,691,829,-1,1387,1287,1270,-1,1390,1287,1387,-1,1274,1136,1143,-1,1274,1309,1136,-1,980,713,716,-1,980,964,713,-1,624,764,669,-1,764,624,713,-1,1136,1014,964,-1,1164,1014,1136,-1,738,669,764,-1,669,738,656,-1,734,955,996,-1,734,738,955,-1,1327,1160,1333,-1,1327,1163,1160,-1,1293,1384,1388,-1,1262,1384,1293,-1,487,865,660,-1,1010,865,487,-1,1187,1233,1148,-1,1187,1197,1233,-1,996,1170,988,-1,1163,1170,996,-1,730,574,734,-1,589,574,730,-1,589,824,609,-1,824,589,730,-1,1158,988,1170,-1,1158,1044,988,-1,1352,1220,1378,-1,1220,1352,1233,-1,1091,661,708,-1,1091,1083,661,-1,1075,824,1044,-1,824,1075,808,-1,561,808,790,-1,561,606,808,-1,1075,1162,1068,-1,1162,1075,1166,-1,1191,1371,1236,-1,1191,1383,1371,-1,810,586,645,-1,810,919,586,-1,1036,1299,1191,-1,1036,1097,1299,-1,1346,1272,1383,-1,1346,1249,1272,-1,790,1061,797,-1,790,1068,1061,-1,599,797,823,-1,599,616,797,-1,1368,1299,1320,-1,1368,1346,1299,-1,809,912,943,-1,823,912,809,-1,943,1081,870,-1,1081,943,1089,-1,1047,1080,1020,-1,1047,882,1080,-1,702,856,780,-1,856,702,854,-1,1140,1011,1228,-1,1140,939,1011,-1,1043,1206,1013,-1,1076,1206,1043,-1,1259,1368,1372,-1,1259,1260,1368,-1,1259,1316,1228,-1,1316,1259,1372,-1,922,1085,885,-1,1108,1085,922,-1,985,1102,1101,-1,985,1024,1102,-1,1216,1140,1195,-1,1213,1140,1216,-1,1317,1132,1180,-1,1317,1255,1132,-1,1132,1057,1082,-1,1132,1106,1057,-1,739,914,896,-1,914,739,680,-1,682,929,923,-1,929,682,681,-1,929,1128,1117,-1,933,1128,929,-1,1128,1264,1194,-1,1264,1128,1156,-1,1264,1291,1345,-1,1291,1264,1215,-1,998,696,1046,-1,998,658,696,-1,1030,1215,1055,-1,1291,1215,1030,-1,1317,1283,1337,-1,1317,1339,1283,-1,1206,1335,1275,-1,1335,1206,1281,-1,1066,1291,1030,-1,1275,1291,1066,-1,1153,1055,1215,-1,1153,1046,1055,-1,731,1046,696,-1,731,1055,1046,-1,628,998,1035,-1,998,628,658,-1,1215,1156,1153,-1,1264,1156,1215,-1,1335,1303,1345,-1,1335,1339,1303,-1,681,933,929,-1,933,681,652,-1,923,680,682,-1,923,914,680,-1,1106,1024,1057,-1,1106,1102,1024,-1,1180,1082,1117,-1,1180,1132,1082,-1,1330,1213,1216,-1,1321,1213,1330,-1,1195,1228,1316,-1,1140,1228,1195,-1,985,1108,922,-1,1108,985,1101,-1,896,799,739,-1,850,799,896,-1,828,885,872,-1,885,828,922,-1,885,1032,881,-1,1085,1032,885,-1,1338,1186,1263,-1,1338,1161,1186,-1,1372,1320,1338,-1,1372,1368,1320,-1,1090,1173,1134,-1,1173,1090,1099,-1,1076,1281,1206,-1,1281,1076,1086,-1,1173,1042,1045,-1,1173,1149,1042,-1,732,780,870,-1,702,780,732,-1,784,1047,1020,-1,784,1007,1047,-1,809,870,780,-1,943,870,809,-1,602,823,809,-1,599,823,602,-1,1320,1097,1126,-1,1320,1299,1097,-1,1260,1346,1368,-1,1260,1249,1346,-1,912,797,1061,-1,912,823,797,-1,797,561,790,-1,561,797,616,-1,1177,1068,1162,-1,1061,1068,1177,-1,645,883,810,-1,645,723,883,-1,1383,1306,1371,-1,1383,1272,1306,-1,808,1068,790,-1,1068,808,1075,-1,808,609,824,-1,609,808,606,-1,1233,1179,1220,-1,1233,1197,1179,-1,1322,1170,1356,-1,1322,1158,1170,-1,996,730,734,-1,730,996,988,-1,1163,1356,1170,-1,1163,1327,1356,-1,1262,1352,1384,-1,1262,1233,1352,-1,1293,1198,1262,-1,1115,1198,1293,-1,1333,1384,1327,-1,1384,1333,1388,-1,955,1163,996,-1,1163,955,1160,-1,734,656,738,-1,734,574,656,-1,955,764,1014,-1,764,955,738,-1,1164,1333,1160,-1,1164,1347,1333,-1,1388,1261,1293,-1,1369,1261,1388,-1,1270,1369,1387,-1,1261,1369,1270,-1,1164,1309,1347,-1,1164,1136,1309,-1,964,764,713,-1,1014,764,964,-1,716,624,590,-1,716,713,624,-1,1143,964,980,-1,1143,1136,964,-1,1390,1309,1274,-1,1390,1387,1309,-1,1224,1133,1139,-1,1234,1133,1224,-1,1257,1143,1150,-1,1274,1143,1257,-1,716,982,980,-1,716,697,982,-1,590,562,716,-1,590,518,562,-1,676,562,493,-1,676,697,562,-1,1152,982,991,-1,1152,1150,982,-1,1325,1257,1256,-1,1325,1365,1257,-1,1393,1361,1350,-1,1393,1373,1361,-1,1111,1211,1265,-1,1111,1053,1211,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getlfemur_Geo_5_355_normalIndex_9()
		{
			int[] value = {775,813,700,-1,775,777,813,-1,781,859,777,-1,781,858,859,-1,811,775,812,-1,775,811,762,-1,1386,1373,1364,-1,1361,1373,1386,-1,1256,1312,1325,-1,1256,1253,1312,-1,1151,991,907,-1,1152,991,1151,-1,601,493,475,-1,676,493,601,-1,475,584,601,-1,390,584,475,-1,907,1159,1151,-1,941,1159,907,-1,1253,1313,1312,-1,1276,1313,1253,-1,1364,1360,1386,-1,1343,1360,1364,-1,778,762,811,-1,778,756,762,-1,858,804,868,-1,804,858,781,-1,778,875,699,-1,875,778,832,-1,1342,1217,1193,-1,1342,1294,1217,-1,1279,1276,1271,-1,1313,1276,1279,-1,538,390,386,-1,584,390,538,-1,538,801,974,-1,506,801,538,-1,374,506,378,-1,506,374,479,-1,397,378,386,-1,397,403,378,-1,1095,1188,974,-1,1095,1246,1188,-1,1271,1225,1279,-1,1305,1225,1271,-1,1223,1185,1225,-1,1171,1185,1223,-1,1192,1171,1169,-1,1171,1192,1185,-1,1357,1292,1380,-1,1238,1292,1357,-1,637,875,852,-1,637,699,875,-1,502,752,617,-1,502,638,752,-1,789,677,591,-1,789,794,677,-1,677,314,591,-1,677,326,314,-1,902,638,608,-1,902,905,638,-1,692,326,677,-1,692,331,326,-1,968,1122,1247,-1,935,1122,968,-1,629,822,818,-1,822,629,649,-1,793,935,968,-1,793,794,935,-1,1247,1009,968,-1,1247,1307,1009,-1,997,822,1009,-1,997,818,822,-1,1290,1311,1324,-1,1290,1302,1311,-1,1357,1377,1379,-1,1357,1381,1377,-1,1376,1380,1358,-1,1376,1381,1380,-1,1285,1169,1174,-1,1169,1285,1252,-1,1230,1171,1223,-1,1230,1184,1171,-1,1174,1267,1285,-1,1174,1199,1267,-1,1226,1218,1210,-1,1226,1199,1218,-1,1243,1280,1212,-1,1243,1282,1280,-1,1310,1296,1315,-1,1304,1296,1310,-1,1230,1282,1243,-1,1310,1282,1230,-1,1052,1118,947,-1,1118,1052,1154,-1,400,704,476,-1,400,536,704,-1,369,509,376,-1,369,396,509,-1,400,340,410,-1,400,376,340,-1,952,575,847,-1,952,536,575,-1,340,522,383,-1,523,522,340,-1,500,469,568,-1,500,383,469,-1,821,636,864,-1,636,821,621,-1,867,1079,825,-1,1079,867,1109,-1,1109,945,1207,-1,1109,867,945,-1,549,634,489,-1,549,711,634,-1,432,483,422,-1,483,432,489,-1,945,818,997,-1,945,767,818,-1,174,432,176,-1,432,174,448,-1,176,422,580,-1,422,176,432,-1,843,498,406,-1,843,844,498,-1,148,116,132,-1,164,116,148,-1,205,175,164,-1,251,175,205,-1,109,384,409,-1,109,85,384,-1,329,372,466,-1,372,329,311,-1,249,244,128,-1,289,244,249,-1,274,196,254,-1,160,196,274,-1,465,615,674,-1,615,465,453,-1,450,592,429,-1,664,592,450,-1,353,585,437,-1,463,585,353,-1,244,353,209,-1,329,353,244,-1,491,43,155,-1,137,43,491,-1,110,14,24,-1,14,110,103,-1,228,317,239,-1,228,407,317,-1,155,482,491,-1,295,482,155,-1,38,159,51,-1,159,38,79,-1,209,437,309,-1,353,437,209,-1,160,60,12,-1,160,47,60,-1,200,160,75,-1,200,196,160,-1,421,200,255,-1,421,325,200,-1,688,440,603,-1,688,542,440,-1,674,761,840,-1,761,674,615,-1,720,664,815,-1,664,720,592,-1,911,815,1021,-1,815,911,720,-1,960,840,761,-1,840,960,1038,-1,51,256,171,-1,51,159,256,-1,437,779,630,-1,437,585,779,-1,750,1084,928,-1,911,1084,750,-1,1142,1021,1038,-1,1142,1167,1021,-1,31,171,219,-1,31,51,171,-1,458,130,301,-1,458,255,130,-1,735,421,618,-1,735,613,421,-1,999,737,853,-1,999,830,737,-1,415,219,171,-1,415,551,219,-1,535,256,361,-1,256,535,315,-1,920,630,779,-1,630,920,783,-1,928,1214,1060,-1,928,1084,1214,-1,942,535,783,-1,942,768,535,-1,782,614,747,-1,718,614,782,-1,458,838,618,-1,728,838,458,-1,918,826,798,-1,918,900,826,-1,1353,1142,1332,-1,1142,1353,1167,-1,853,1113,999,-1,1001,1113,853,-1,1110,1048,1023,-1,1048,1110,1127,-1,900,1023,1048,-1,918,1023,900,-1,614,282,530,-1,282,614,349,-1,1022,1058,878,-1,1125,1058,1022,-1,1229,1232,1319,-1,1232,1229,1145,-1,1277,1319,1366,-1,1319,1277,1229,-1,1314,1366,1319,-1,1314,1340,1366,-1,642,686,471,-1,642,741,686,-1,1058,1094,913,-1,1058,1145,1094,-1,913,973,787,-1,973,913,1094,-1,1112,1240,1104,-1,1277,1240,1112,-1,805,1104,937,-1,1104,805,908,-1,819,904,740,-1,1025,904,819,-1,805,819,687,-1,819,805,937,-1,687,596,805,-1,596,687,546,-1,163,204,69,-1,163,332,204,-1,277,308,260,-1,471,308,277,-1,67,552,316,-1,67,334,552,-1,499,931,547,-1,1017,931,499,-1,653,547,672,-1,547,653,556,-1,127,393,457,-1,177,393,127,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getlfemur_Geo_5_355_normalIndex_10()
		{
			int[] value = {191,127,307,-1,191,6,127,-1,191,1,6,-1,908,726,672,-1,908,805,726,-1,414,168,426,-1,414,131,168,-1,240,260,227,-1,240,277,260,-1,622,362,333,-1,362,622,569,-1,725,414,497,-1,725,529,414,-1,37,115,129,-1,115,37,8,-1,120,281,297,-1,189,281,120,-1,98,129,235,-1,98,37,129,-1,98,26,37,-1,26,98,158,-1,70,65,54,-1,70,39,65,-1,167,13,99,-1,167,218,13,-1,173,118,224,-1,215,118,173,-1,351,394,438,-1,351,296,394,-1,253,89,46,-1,89,253,296,-1,352,253,223,-1,253,352,391,-1,36,46,20,-1,46,36,40,-1,723,511,565,-1,723,645,511,-1,223,53,169,-1,53,223,40,-1,169,357,346,-1,169,144,357,-1,28,66,76,-1,53,66,28,-1,338,443,398,-1,342,443,338,-1,356,417,371,-1,398,417,356,-1,338,102,76,-1,321,102,338,-1,28,126,144,-1,9,126,28,-1,280,92,268,-1,280,126,92,-1,102,5,9,-1,102,90,5,-1,284,356,330,-1,321,356,284,-1,272,90,284,-1,272,125,90,-1,92,16,112,-1,16,92,5,-1,527,268,278,-1,527,441,268,-1,278,101,203,-1,278,112,101,-1,272,428,304,-1,272,363,428,-1,481,304,428,-1,304,481,293,-1,100,203,101,-1,100,232,203,-1,408,554,381,-1,554,408,516,-1,84,232,100,-1,232,84,259,-1,876,753,846,-1,876,848,753,-1,186,323,188,-1,312,323,186,-1,505,456,501,-1,456,505,485,-1,456,399,427,-1,456,319,399,-1,142,319,147,-1,319,142,303,-1,48,64,59,-1,48,41,64,-1,188,183,135,-1,183,188,323,-1,848,915,834,-1,848,876,915,-1,834,965,869,-1,965,834,915,-1,64,149,111,-1,149,64,135,-1,142,106,181,-1,106,142,59,-1,392,303,313,-1,392,399,303,-1,512,534,528,-1,495,534,512,-1,247,313,181,-1,313,247,347,-1,106,166,179,-1,106,111,166,-1,149,273,185,-1,242,273,149,-1,581,714,583,-1,714,581,695,-1,986,869,965,-1,869,986,899,-1,983,949,971,-1,967,949,983,-1,986,979,981,-1,979,986,983,-1,916,835,899,-1,916,894,835,-1,185,287,226,-1,185,273,287,-1,179,199,192,-1,199,179,166,-1,286,221,261,-1,221,286,247,-1,648,508,555,-1,648,605,508,-1,528,472,512,-1,472,528,540,-1,286,436,387,-1,294,436,286,-1,261,294,286,-1,261,246,294,-1,201,233,192,-1,233,201,216,-1,257,199,226,-1,199,257,211,-1,287,675,373,-1,287,464,675,-1,957,916,956,-1,894,916,957,-1,930,962,925,-1,930,990,962,-1,1019,909,993,-1,1019,956,909,-1,989,889,977,-1,989,863,889,-1,201,145,170,-1,201,211,145,-1,190,45,27,-1,190,210,45,-1,32,170,145,-1,32,77,170,-1,82,136,56,-1,82,172,136,-1,451,833,435,-1,451,863,833,-1,987,946,989,-1,987,895,946,-1,769,588,803,-1,769,625,588,-1,791,1059,1031,-1,849,1059,791,-1,1019,926,975,-1,926,1019,1049,-1,150,275,213,-1,150,234,275,-1,938,921,1039,-1,802,921,938,-1,1039,992,938,-1,1039,1064,992,-1,1222,1092,1064,-1,1222,1269,1092,-1,193,117,152,-1,193,178,117,-1,193,139,72,-1,139,193,213,-1,411,698,668,-1,698,411,462,-1,510,698,462,-1,510,754,698,-1,837,871,754,-1,837,953,871,-1,807,698,831,-1,807,668,698,-1,1092,1289,1027,-1,1092,1269,1289,-1,1027,1237,976,-1,1027,1289,1237,-1,831,978,807,-1,831,976,978,-1,178,87,117,-1,178,162,87,-1,412,668,671,-1,411,668,412,-1,807,961,814,-1,807,978,961,-1,1251,950,961,-1,1251,1144,950,-1,814,643,671,-1,643,814,816,-1,10,17,63,-1,10,7,17,-1,134,80,71,-1,80,134,123,-1,678,816,886,-1,678,643,816,-1,402,541,559,-1,402,377,541,-1,123,62,80,-1,123,121,62,-1,266,206,182,-1,266,290,206,-1,216,170,180,-1,201,170,216,-1,250,182,198,-1,266,182,250,-1,194,123,134,-1,194,198,123,-1,194,344,264,-1,279,344,194,-1,264,292,328,-1,292,264,344,-1,873,963,936,-1,873,785,963,-1,873,795,709,-1,851,795,873,-1,880,760,877,-1,880,776,760,-1,1157,1051,1147,-1,1073,1051,1157,-1,339,328,292,-1,339,431,328,-1,328,250,264,-1,250,328,354,-1,290,455,436,-1,266,455,290,-1,444,540,507,-1,540,444,472,-1,733,520,365,-1,722,520,733,-1,593,667,566,-1,593,722,667,-1,742,877,760,-1,877,742,817,-1,1037,948,1040,-1,948,1037,951,-1,1103,1037,1208,-1,1037,1103,1004,-1,1062,1219,1040,-1,1219,1062,1205,-1,763,839,820,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getlfemur_Geo_5_355_normalIndex_11()
		{
			int[] value = {763,836,839,-1,1118,1246,1095,-1,1118,1296,1246,-1,696,457,731,-1,696,307,457,-1,682,343,681,-1,478,343,682,-1,624,532,554,-1,624,669,532,-1,352,606,561,-1,346,606,352,-1,357,589,609,-1,467,589,357,-1,485,484,518,-1,505,484,485,-1,445,495,512,-1,445,486,495,-1,403,472,444,-1,403,397,472,-1,522,776,573,-1,776,522,760,-1,971,858,868,-1,971,949,858,-1,954,959,868,-1,990,959,954,-1,944,905,902,-1,944,962,905,-1,948,884,844,-1,948,951,884,-1,843,409,887,-1,843,406,409,-1,543,267,251,-1,543,608,267,-1,1029,1125,1022,-1,1029,1137,1125,-1,39,158,98,-1,158,39,70,-1,715,772,719,-1,715,626,772,-1,418,564,690,-1,351,564,418,-1,260,238,212,-1,260,308,238,-1,897,727,1006,-1,854,727,897,-1,394,602,438,-1,599,602,394,-1,564,602,626,-1,602,564,438,-1,343,23,285,-1,343,114,23,-1,364,337,425,-1,337,364,220,-1,872,881,749,-1,881,872,885,-1,1057,896,914,-1,1024,896,1057,-1,1117,923,929,-1,1082,923,1117,-1,898,587,758,-1,587,898,703,-1,639,420,548,-1,639,425,420,-1,459,893,972,-1,459,579,893,-1,295,239,317,-1,155,239,295,-1,155,103,239,-1,155,14,103,-1,14,155,43,-1,1099,1149,1173,-1,1099,1100,1149,-1,324,554,532,-1,381,554,324,-1,41,84,44,-1,41,48,84,-1,81,119,15,-1,81,113,119,-1,212,107,265,-1,212,238,107,-1,107,69,50,-1,69,107,163,-1,732,939,683,-1,732,1011,939,-1,1134,1337,1090,-1,1134,1321,1337,-1,1242,1344,1348,-1,1244,1344,1242,-1,1121,1039,921,-1,1121,1196,1039,-1,806,947,1118,-1,806,744,947,-1,917,776,880,-1,917,857,776,-1,903,640,892,-1,640,903,580,-1,860,733,751,-1,733,860,817,-1,1349,1362,1374,-1,1349,1375,1362,-1,55,82,30,-1,82,55,96,-1,367,275,533,-1,367,236,275,-1,1261,1224,1088,-1,1270,1224,1261,-1,1348,1269,1222,-1,1269,1348,1344,-1,526,468,359,-1,526,594,468,-1,659,237,553,-1,659,320,237,-1,138,510,462,-1,138,222,510,-1,141,411,412,-1,141,83,411,-1,187,377,146,-1,187,430,377,-1,339,520,517,-1,365,520,339,-1,1181,1109,1231,-1,1181,1079,1109,-1,1175,1123,1078,-1,1175,1172,1123,-1,283,73,331,-1,283,116,73,-1,86,207,174,-1,207,86,132,-1,580,970,384,-1,970,580,903,-1,1201,1073,1157,-1,1073,1201,1138,-1,786,591,570,-1,786,789,591,-1,927,1028,1072,-1,927,934,1028,-1,531,396,404,-1,531,566,396,-1,476,382,369,-1,496,382,476,-1,550,566,531,-1,550,593,566,-1,1328,1302,1290,-1,1328,1107,1302,-1,1314,1130,1214,-1,1314,1239,1130,-1,1340,1214,1353,-1,1214,1340,1314,-1,1235,1363,1332,-1,1235,1298,1363,-1,942,1137,1029,-1,942,1067,1137,-1,1001,1127,1113,-1,1001,1048,1127,-1,641,728,576,-1,728,641,705,-1,747,551,415,-1,551,747,765,-1,942,861,768,-1,942,1029,861,-1,129,97,235,-1,129,22,97,-1,684,348,610,-1,385,348,684,-1,157,297,461,-1,157,120,297,-1,22,57,97,-1,22,58,57,-1,310,154,470,-1,310,202,154,-1,105,161,91,-1,105,6,161,-1,620,230,628,-1,230,620,258,-1,305,91,355,-1,305,105,91,-1,362,277,240,-1,277,362,341,-1,241,215,167,-1,241,118,215,-1,270,248,153,-1,248,270,265,-1,1354,1244,1242,-1,1354,1359,1244,-1,1341,1362,1382,-1,1341,1351,1362,-1,792,1031,1016,-1,792,791,1031,-1,237,473,359,-1,237,229,473,-1,139,320,222,-1,320,139,236,-1,49,138,83,-1,138,49,72,-1,133,60,47,-1,133,306,60,-1,25,0,42,-1,0,25,104,-1,60,214,38,-1,306,214,60,-1,210,165,45,-1,165,210,262,-1,55,27,45,-1,2,27,55,-1,217,45,165,-1,96,45,217,-1,34,152,117,-1,61,152,34,-1,695,557,748,-1,695,581,557,-1,578,701,611,-1,578,743,701,-1,829,1088,1139,-1,910,1088,829,-1,460,685,464,-1,460,583,685,-1,581,276,557,-1,368,276,581,-1,371,708,661,-1,371,417,708,-1,1189,1083,1197,-1,1010,1083,1189,-1,1088,865,1115,-1,910,865,1088,-1,969,1111,1141,-1,1111,969,958,-1,1161,1108,1186,-1,1161,1085,1108,-1,623,1033,901,-1,1033,623,350,-1,1268,1050,1165,-1,1268,1336,1050,-1,1071,651,1093,-1,1071,655,651,-1,1336,1087,1050,-1,1336,1301,1087,-1,1033,1202,1187,-1,1033,1105,1202,-1,683,702,732,-1,683,727,702,-1,820,707,763,-1,820,721,707,-1,707,729,763,-1,707,691,729,-1,1263,1101,1102,-1,1263,1186,1101,-1,1195,1178,1216,-1,1178,1195,1183,-1,1337,1255,1317,-1,1337,1330,1255,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getlfemur_Geo_5_355_normalIndex_12()
		{
			int[] value = {1249,1162,1272,-1,1249,1177,1162,-1,224,197,173,-1,227,197,224,-1,358,263,310,-1,358,291,263,-1,189,291,281,-1,189,263,291,-1,712,316,552,-1,712,499,316,-1,335,556,503,-1,547,556,335,-1,1286,1031,1059,-1,1248,1031,1286,-1,1389,1176,1273,-1,1389,1286,1176,-1,1049,849,926,-1,1049,1059,849,-1,342,447,443,-1,342,271,447,-1,124,19,54,-1,124,20,19,-1,236,229,320,-1,236,367,229,-1,1379,1328,1168,-1,1379,1107,1328,-1,560,531,513,-1,560,550,531,-1,496,744,474,-1,496,755,744,-1,367,473,229,-1,706,473,367,-1,1051,917,1002,-1,995,917,1051,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getlfemur_Coord_6_355_point_1()
		{
			double[] value = {2.4744,15.9391,-1.3421,2.4639,15.9348,-1.2523,2.4008,15.8726,-1.4974,4.2385,16.931,-1.8426,4.1005,16.9369,-1.9417,3.9835,17.1404,-1.7111,3.6976,16.1514,-0.1525,3.7248,16.2885,-0.1321,3.657,16.2742,-0.0621,3.4513,16.7155,0.1327,3.4284,16.601,0.1258,3.5228,16.6623,0.1187,2.6175,16.7366,-0.3121,2.8395,16.6965,-0.2112,2.8311,16.7746,-0.2114,2.6095,16.6793,-0.305,3.6107,16.4391,0.0559,3.5382,16.4226,0.0835,3.6149,16.2525,0.0305,3.4297,17.0131,-1.7169,3.5106,16.8358,-1.9234,3.4175,16.8757,-1.7971,2.1918,17.1805,-1.9187,2.2116,17.1541,-2.0401,2.0884,17.1447,-2.0932,2.048,17.1986,-1.957,4.2915,30.8677,-1.1824,4.3887,30.898,-1.2011,4.3417,30.9105,-1.211,4.4132,31.3763,-1.1183,4.4087,31.2641,-1.1721,4.4464,31.2644,-1.1455,4.5271,31.4461,-0.5989,4.7103,31.4897,-0.5765,4.5584,31.4611,-0.6661,4.2341,31.1732,-0.791,4.3739,31.2248,-0.8993,4.3852,31.1228,-0.9186,4.1969,30.9508,-0.8359,4.364,30.8867,-0.9757,4.0625,30.8378,-0.988,3.4403,29.5051,-1.5363,3.4232,29.3937,-1.5188,3.3982,29.4156,-1.5122,3.4056,29.5033,-1.5168,3.2847,29.6374,-1.378,3.2049,29.6583,-1.2608,3.2258,29.7038,-1.2841,4.7382,29.1347,-0.5654,4.8005,29.5011,-0.8268,4.8264,29.4954,-0.5711,4.7124,29.8544,-1.2467,4.9344,29.7814,-0.8445,3.5706,21.3372,-0.9856,3.5579,20.2995,-1.0177,3.4104,20.3053,-1.0023,3.6872,21.2856,-0.9688,3.708,20.2837,-0.9689,3.6867,20.293,-1.0232,3.7188,21.2826,-0.9555,3.318,20.3256,-0.9893,4.1232,29.9065,-0.1496,4.4792,29.9164,-0.2078,4.3673,30.2774,-0.1515,4.1819,29.522,-0.1347,3.8872,23.5471,-0.958,3.9074,23.5521,-0.9271,3.9073,23.42,-0.9209,3.9334,23.4205,-0.8814,3.9504,23.5483,-0.8599,4.13,23.5518,-0.5794,4.2176,24.5678,-0.5672,3.9118,23.443,-0.9099,3.9031,23.5485,-0.911,3.8992,23.5613,-0.9045,3.9206,23.577,-0.9096,3.9204,23.5658,-0.9031,3.9375,23.5529,-0.8686,3.9265,23.4433,-0.8875,3.8947,23.5564,-0.8885,3.9065,23.5568,-0.8706,3.9239,23.5623,-0.8671,3.8178,22.4107,-0.9768,4.646,29.1763,-0.9288,4.4936,28.892,-1.0388,4.5121,29.1982,-1.1105,4.6184,28.8555,-0.9123,4.5952,28.1955,-0.9368,4.3806,27.304,-1.0089,4.4529,28.2085,-1.0439,4.4651,27.2892,-0.9627,4.4392,28.9082,-1.0867,4.309,27.3179,-1.0329,4.3608,28.219,-1.0952,4.0858,26.3467,-0.9899,4.0316,27.3505,-0.9765,4.1602,27.3404,-1.0079,2.8754,19.5066,-1.1139,2.6609,18.7489,-1.2397,2.5533,18.7611,-1.2453,3.2234,20.3478,-0.9869,3.9697,17.3784,-1.3319,3.9895,17.3791,-1.3041,4.034,17.2494,-1.3498,3.6426,18.6666,-1.1544,3.7409,18.1268,-1.1947,3.6343,18.1347,-1.2099,3.8989,17.5603,-1.2979,3.9211,17.5641,-1.2739,3.7885,22.4125,-0.9908,3.8683,23.5479,-0.9825,3.7778,23.5612,-0.9524,3.9068,24.6168,-0.979,3.8026,23.5569,-0.9787,3.8797,24.6219,-0.9603,3.813,17.837,-1.2364,3.8437,17.834,-1.2168,3.6405,19.4453,-1.0951,3.6772,18.6661,-1.1443,3.6709,19.4476,-1.0792,2.2846,18.2906,-1.3694,2.5181,18.7621,-1.2294,2.2591,18.2912,-1.346,1.6758,17.4599,-1.9249,1.8901,17.6482,-1.6483,1.9198,17.6488,-1.6669,1.6642,17.4757,-1.905,1.3505,17.0978,-1.8234,1.362,17.009,-1.948,1.3337,16.9002,-1.8955,1.5552,17.3953,-1.6942,1.5817,17.4387,-1.8186,1.4769,17.3474,-1.7714,1.619,17.4652,-1.9143,1.5067,17.388,-1.8879,1.5846,15.9648,-2.244,1.5763,15.8385,-1.9772,1.5901,16.0588,-2.2187,1.5597,15.9433,-1.9426,1.8438,16.8894,-2.7145,1.8048,16.6533,-2.7773,1.8315,16.9004,-2.671,2.3912,16.0701,-1.7459,2.3995,15.9301,-1.6047,2.3656,15.9702,-1.8103,2.453,16.0246,-1.5638,2.3468,16.0818,-2.0693,2.3773,16.1535,-2.1783,2.3873,16.2076,-1.9949,2.3553,16.6119,-2.1842,2.3326,16.3774,-2.0484,2.3693,16.3258,-2.3024,2.4213,16.6037,-2.3562,3.133,30.5286,-0.6447,3.2597,30.2328,-0.5784,3.2832,30.2475,-0.5561,3.4624,30.8422,-0.2006,3.5751,30.6135,-0.2195,3.5963,30.6425,-0.213,3.6814,29.8461,-0.2018,3.6675,29.8799,-0.1835,3.4973,29.4969,-0.2524,3.511,29.4631,-0.2601,3.3962,29.6206,-0.4369,3.3761,29.7383,-0.5221,3.3552,29.7237,-0.5293,3.4156,29.6674,-0.441,3.8049,30.2901,-0.1423,3.777,30.2713,-0.1358,4.0398,30.8263,-1.0151,4.2733,30.8504,-1.1968,3.8471,31.0233,-0.9861,4.3341,30.9186,-1.2356,4.3939,31.4095,-1.1003,4.3957,31.4059,-1.1295,3.2218,29.7298,-1.2486,3.2006,29.6576,-1.2204,3.2667,29.6686,-1.0769,3.2769,29.8282,-1.0883,3.2954,29.7422,-1.3539,3.3296,29.3022,-1.4408,3.3366,29.4697,-1.4626,2.6972,31.105,-1.3032,2.7718,31.0203,-1.3117,2.5986,31.0004,-1.093,2.6329,30.96,-0.6153,2.6724,31.0294,-0.3044,2.6028,30.9576,-0.6131,2.6998,31.0228,-0.3176,4.3246,16.6974,-1.9043,4.2531,16.9101,-1.8234,4.3322,16.7024,-1.9331,3.4769,16.1582,-1.8524,3.3736,16.176,-1.7825,3.5337,16.4024,-1.99,2.3485,15.8,-1.6441,2.429,15.9053,-1.5196,3.5192,16.4061,0.1106,3.5906,16.2359,0.0375,1.9971,16.3337,-0.5063,1.9226,16.0284,-0.6505,2.0009,16.289,-0.4937,1.9019,16.0533,-0.6692,2.4438,16.2782,-2.5161,2.5183,16.5943,-2.5431,2.4339,16.2884,-2.4865,2.5203,16.5952,-2.5094,4.1942,17.0363,-1.6033,4.1736,17.0363,-1.5637,4.2112,17.0244,-1.5698,2.4859,15.9435,-1.4367,2.6846,16.0505,-1.3118,2.6735,16.0262,-1.2933,2.4937,15.9593,-1.4738,2.4299,17.1067,-2.1099,2.4123,17.1029,-2.0759,2.4297,17.0884,-2.0819,3.8287,17.3493,-1.4069,3.9289,17.231,-1.4677,3.8845,18.625,-0.8058,3.7202,19.4473,-0.9753,3.8681,19.453,-0.7565,3.8006,18.6462,-1.0159,2.2064,18.255,-1.2479,2.1167,17.9911,-1.4433,2.0622,17.9749,-1.3837,2.5151,16.2499,-1.5277,2.3765,16.4471,-1.6908,1.3599,16.6993,-1.9556,1.3766,16.6076,-2.086,1.3604,16.5303,-2.0276,2.5469,15.9889,-0.9148,2.5146,16.075,-0.6797,2.4154,15.9847,-0.8137,2.3542,16.043,-0.6355,2.4718,16.2512,-0.4854,1.913,15.8516,-1.0387,2.0429,15.7822,-1.111,2.189,15.8985,-0.9888,3.0403,16.0294,-0.9598,2.9647,16.0226,-0.7752,2.7237,16.0423,-0.8167,2.7765,16.02,-1.0334,2.7104,16.2138,-1.3309,2.9158,16.2508,-1.2481,2.8514,16.0865,-1.1847,3.1739,16.872,0.0347,3.1765,16.7753,0.0275,3.4631,16.806,0.1155,3.4607,16.0897,-1.8039,4.7671,31.2023,-0.154,4.8191,30.8081,-0.1724,4.9134,30.9351,-0.2278,5.1091,30.021,-0.2438,4.993,29.7912,-0.3546,5.147,29.9533,-0.3536,5.1964,30.1442,-0.4034,5.132,30.2235,-0.3764,3.17,30.55,-0.7911,2.9912,30.8221,-0.6168,3.0041,30.8749,-0.9474,4.2346,29.1591,-0.1187,4.316,31.3322,-0.1761,4.5211,31.4633,-0.1924,4.255,31.3518,-0.4387,4.5222,31.4327,-0.4003,5.0167,30.1494,-0.1243,4.9006,30.4515,-0.1172,4.8055,30.3622,-0.1104,4.9289,29.9434,-0.1913,4.8763,31.3209,-0.2218,4.7474,31.4738,-0.2367,4.6457,31.3599,-0.1246,4.6398,31.0252,-0.0607,4.6978,30.6662,-0.1584,4.7582,30.7228,-0.1351,4.5772,30.9497,-0.0451,4.4805,31.2712,-0.9821,4.4631,31.1102,-1.1769,4.4688,31.0962,-1.0315,3.3173,29.8855,-0.7081,3.2786,30.2553,-0.7513,3.3155,29.9107,-0.7604,3.2461,30.2219,-0.6144,3.3808,29.5353,-0.7929,3.3584,29.4152,-0.7171,3.3353,29.681,-0.7921,3.3274,29.6286,-0.6584,3.6029,29.1197,-0.3271,3.4281,29.243,-0.4804,3.4722,29.061,-0.4767,3.5474,29.2704,-0.3081,2.4624,31.9814,-0.6956,2.5107,32.1005,-0.8258,2.503,32.0641,-0.8644,2.5123,32.0841,-0.5959,3.8636,31.4537,-0.6782,4.0129,31.3737,-0.6236,3.9922,31.3076,-0.7083,3.62,28.9622,-1.1809,3.7377,29.2657,-1.3811,3.8795,29.2411,-1.2893,3.8753,28.9704,-1.2287,3.7914,28.2854,-1.0022,3.5465,28.946,-0.9173,3.5756,28.9564,-1.046,3.702,28.2949,-0.9215,3.4428,30.4388,-0.9945,3.6588,30.7494,-1.0484,3.6302,30.3105,-1.0732,3.7729,30.5505,-1.067,3.8735,30.2378,-1.2085,3.7282,30.0556,-1.2371,3.493,30.0705,-1.0809,3.1879,20.3565,-0.9765,3.3078,21.4187,-0.8603,3.5358,21.3491,-0.9781,3.0024,20.3544,-0.926,3.5813,29.924,-1.2691,3.8335,29.9944,-1.3887,3.6843,29.8379,-1.3857,4.5908,31.3993,-1.4313,4.609,31.2515,-1.422,4.4655,31.3225,-1.3199,4.4593,31.1824,-1.3526,3.7897,29.1591,-0.2165,3.7644,29.4005,-0.2336,3.2981,31.2881,-1.366,3.4059,31.6329,-1.4929,3.4395,31.557,-1.2985,3.2434,31.3162,-1.4801,4.1629,30.1183,-1.4285,4.2575,30.371,-1.4531,4.3208,30.0841,-1.4379,4.3895,30.3225,-1.4918,3.3415,16.8865,-1.6608,3.2184,17.0371,-1.5603,3.3693,17.0737,-1.6238,3.2118,16.8982,-1.553,3.3247,16.5205,-1.6102,3.1971,16.7253,-1.5396,3.3475,16.7012,-1.6754,3.1864,16.6047,-1.4697,3.1916,16.2199,-1.3451,3.145,16.2733,-1.2439,3.1774,16.4171,-1.3459,2.7629,16.4925,-1.4495,2.9491,16.4486,-1.3623,3.0473,17.1862,-1.4907,2.857,17.0674,-1.6396,2.8717,17.2315,-1.5557,3.0356,17.058,-1.5798,2.6427,17.2155,-0.3532,2.8792,17.4475,-0.2428,2.6673,17.4236,-0.323,2.8501,17.2259,-0.2314,4.4009,30.9236,-1.4319,4.5426,30.9069,-1.4789,4.4718,31.6822,-1.131,4.6044,31.7252,-1.2082,4.5968,31.6172,-1.3676,4.4335,31.5061,-1.2887,4.5589,31.6777,-0.8959,4.7495,31.6052,-0.7537,4.6897,31.7265,-0.9659,4.6032,31.5149,-0.7691,3.9396,30.5471,-0.1197,3.9807,30.5144,-0.1202,4.172,30.777,-0.0027,4.1425,30.8799,-0.0318,2.4314,16.7967,-1.8691,2.3599,16.619,-1.8104,2.3709,16.8445,-2.1658,2.548,16.4436,-1.5743,2.4151,16.4378,-0.3858,2.2731,16.2724,-0.4548,2.2199,16.7337,-0.4599,1.9817,16.5441,-0.486,2.1916,16.6163,-0.4283,1.9973,16.6962,-0.4928,2.2588,16.9841,-0.5049,2.4646,17.0008,-0.4335,2.4933,17.2141,-0.4257,2.2924,17.234,-0.4644,1.9297,17.0214,-0.5608,1.8901,16.8548,-0.5464,2.09,16.9891,-0.5087,1.7323,16.918,-0.6816,1.7909,17.0598,-0.7134,1.792,16.6068,-0.6124,1.814,16.4012,-0.6278,2.3543,15.8345,-1.6456,2.3385,15.8659,-1.8698,1.4789,16.6768,-1.038,1.3999,16.8435,-1.2253,1.3882,16.6151,-1.2864,1.5503,16.8798,-0.9592,2.2354,15.7463,-1.6705,2.1083,15.7159,-1.3729,2.0181,15.7089,-1.6863,2.3316,15.7979,-1.4718,2.2612,16.622,-2.7434,2.3868,16.6072,-2.6703,2.3333,16.2551,-2.6093,2.188,16.276,-2.6611,1.7527,16.3531,-2.7143,1.8346,16.6506,-2.7922,1.9166,16.2912,-2.7166,2.0102,16.6479,-2.7771,2.17,17.1907,-2.2622,2.0328,17.1339,-2.5409,1.9874,17.1504,-2.436,2.2443,17.1159,-2.4604,1.9173,17.1007,-2.5356,1.8701,16.9051,-2.7338,2.0645,16.9239,-2.7077,2.3559,17.1245,-1.8672,2.5266,17.0747,-1.7282,2.4361,17.0597,-1.8605,2.366,17.1673,-1.7584,2.2515,17.152,-2.1201,2.1308,17.1624,-2.1911,1.6826,17.0428,-2.4227,1.7742,17.0855,-2.3967,1.774,16.9275,-2.5821,1.5022,17.3197,-2.0052,1.6477,17.34,-1.9823,1.535,17.2674,-2.0824,1.6296,17.438,-1.9576,1.3193,16.9319,-1.6563,1.402,17.0286,-1.3953,1.4067,17.1116,-1.5847,1.3416,16.8382,-1.469,1.4187,17.2915,-1.8615,2.0382,17.6243,-1.6905,2.2183,17.3295,-1.7376,2.0308,17.3794,-1.7998,2.2584,17.6061,-1.6377,1.8874,17.4204,-1.8684,1.839,17.628,-1.5804,2.177,17.2494,-0.4922,2.0407,17.2872,-0.5622,2.1148,17.4924,-0.5438,1.9228,17.2902,-0.6709,2.0162,17.5325,-0.6975,1.9505,17.7971,-1.4863,2.003,17.7957,-1.5353,2.1305,17.7958,-1.5791,2.2914,17.7914,-1.5789,2.3707,18.0472,-0.4193,2.429,18.5965,-0.3711,2.2582,18.0477,-0.4879,2.5792,17.9855,-0.2959,2.6493,18.5525,-0.2426,2.4851,17.9978,-0.3424,2.4394,18.7561,-1.1367,2.839,19.5122,-1.1062,2.6977,19.4895,-1.0095,3.0031,19.4935,-1.0983,2.7086,20.2368,-0.2594,3.0342,21.3169,-0.0911,2.9767,21.3332,-0.1674,2.8416,20.1756,-0.126,3.2304,22.4199,-0.0529,3.3666,24.721,-0.5236,3.3997,23.6618,-0.6336,3.281,23.6653,-0.4632,3.4995,24.6999,-0.6613,4.1479,28.2231,-1.0818,3.8896,28.2654,-1.0519,4.1416,28.9312,-1.1846,3.5415,29.0955,-1.2672,3.4828,29.2114,-1.0775,3.2803,29.4869,-1.3889,3.2411,29.4747,-1.3007,3.3502,29.4834,-1.0853,3.4019,29.5729,-0.933,3.4943,29.2518,-0.9149,3.3871,29.2386,-1.199,3.4469,29.1597,-1.3545,3.3171,29.7873,-1.3414,3.3667,29.8347,-1.2522,3.3082,29.9153,-1.0237,3.4632,29.9765,-1.1207,3.3979,29.6721,-1.4698,3.3753,29.7563,-1.4087,3.4958,29.7,-1.4512,3.4261,29.7765,-1.347,3.8999,29.6517,-1.3673,3.7525,29.6149,-1.4413,3.3133,30.2886,-0.8882,3.3307,30.0183,-0.9818,3.9847,31.3081,-0.1869,4.1811,31.1242,-0.1074,4.128,31.2936,-0.1773,4.4237,31.5497,-0.9756,4.4511,31.4188,-0.8479,4.4125,31.3937,-0.785,4.3735,31.2458,-0.9024,4.4661,31.2925,-0.9742,4.3981,31.2844,-1.194,4.4529,31.357,-1.3112,4.434,30.8605,-1.0699,3.9392,31.1748,-0.9103,3.0291,31.5365,0.1185,2.8336,31.3701,0.0732,3.1169,31.4067,0.0755,2.9508,31.2488,-0.0135,4.2995,31.0314,0.0003,4.0345,30.9662,-0.0986,3.7698,30.333,-0.1417,3.8541,30.6528,-0.1362,3.6995,30.4225,-0.1749,3.3202,30.6631,-0.3149,3.4183,30.4136,-0.2962,3.7151,31.5571,-0.2702,3.6918,31.2305,-0.1996,3.838,31.4071,-0.236,3.5852,31.3905,-0.1648,3.8803,31.4389,-0.4588,3.7131,31.6012,-0.5548,4.0154,31.3443,-0.4464,3.7181,31.2223,-1.0303,3.789,31.3153,-0.9269,3.112,30.8726,-0.3193,3.0188,30.8168,-0.4337,3.1977,30.5588,-0.5012,3.2529,30.5808,-0.4032,3.0497,30.9363,-1.0506,3.1267,30.9879,-1.1495,3.2878,30.6842,-1.0202,3.2093,30.5714,-0.9375,3.6084,31.922,-0.2232,3.6508,31.723,-0.2583,3.6744,31.8276,-0.5435,3.7104,32.0622,-0.508,3.6447,31.836,-0.7539,3.7074,31.6283,-0.6835,3.0268,31.0238,-1.2909,3.1808,31.0191,-1.1732,3.1296,31.0986,-1.3021,2.8724,30.9797,-1.0487,2.9388,31.0041,-1.1998,3.1894,31.2907,0.0075,3.2268,31.249,-0.086,3.3566,31.3622,-0.0384,3.4437,31.2086,-0.1459,3.5114,31.5413,-0.1035,3.5483,32.102,-0.1502,3.7135,32.0973,-0.504,3.6188,32.2495,-0.5223,3.6087,31.9578,-0.2076,3.6389,32.2724,-0.976,3.7083,32.1516,-0.9073,3.5951,32.0579,-1.3107,3.5154,32.1404,-1.3505,3.0699,31.0955,-0.1353,3.324,31.065,-0.1801,3.1927,30.9419,-0.2668,2.8325,31.1034,-0.1595,2.945,30.9667,-0.2289,2.9704,31.2344,-0.0385,2.8565,30.9151,-0.3949,2.8996,31.0628,-1.3671,2.7887,31.0155,-1.2857,2.8867,31.0696,-1.3977,2.8286,31.1693,-1.4602,2.9331,31.5025,-1.6129,3.0296,31.3287,-1.5649,2.7168,31.3243,-1.4551,3.191,31.6951,0.1254,2.9021,31.8414,0.0763,3.0408,31.9521,0.0508,2.6051,31.6067,-1.4231,2.814,31.8415,-1.5228,3.3568,32.2843,-0.172,3.1434,32.4059,-0.3018,3.0416,32.2547,-0.1265,3.171,32.0568,0.0114,2.9546,32.411,-0.4435,2.9025,32.3851,-0.3893,2.37,31.6493,-0.6269,2.4322,31.715,-0.3722,2.4629,31.5223,-1.2334,2.5424,31.9142,-1.2357,2.4442,31.6509,-1.1427,2.5098,31.8736,-1.1509,2.5101,32.0712,-0.99,2.5747,32.1481,-1.0564,2.4675,31.9571,-0.7305,2.4826,31.9311,-0.7325,2.4774,31.7251,-0.7925,2.4004,31.7237,-0.7627,2.3992,31.6259,-0.9569,2.4871,31.7286,-0.9812,2.4457,31.6732,-1.1101,2.4892,31.7052,-0.9012,2.5447,31.9356,-0.9387,2.5039,32.0425,-0.9698,2.5048,31.8568,-1.1185,2.5117,31.8032,-1.0212,2.4995,32.0246,-0.8654,2.5327,31.9556,-0.8299,2.8383,32.3856,-0.5498,2.6718,32.2875,-0.939,2.6186,32.2316,-0.8569,2.6692,32.227,-1.1039,2.6942,32.2994,-0.7123,2.8761,32.4334,-0.8492,2.8303,32.4053,-0.9147,2.8825,32.4399,-0.6977,2.6807,32.2752,-0.5016,2.754,32.3288,-0.4811,2.6005,32.2155,-0.6733,2.6301,32.2355,-0.5496,2.5665,32.1936,-0.7632,2.7596,32.3554,-0.9479,3.4553,16.4211,-1.8351,3.35,16.2603,-1.7026,3.2734,16.3762,-1.507,3.2691,16.2186,-1.54,3.2114,16.077,-1.341,3.2793,16.0911,-1.5792,3.9237,15.7434,-1.1007,4.0992,15.7989,-1.0776,4.0034,15.8186,-0.9305,3.4182,15.881,-1.0943,3.4684,15.8151,-0.7155,3.2516,15.8844,-0.8951,3.6063,15.7763,-0.9655,3.4046,16.5649,0.1334,3.368,16.3821,0.0623,3.6746,16.0616,-0.1749,3.8801,16.0262,-0.6452,3.7513,15.9537,-0.4054,3.8461,15.9184,-0.6817,3.7682,16.0886,-0.3886,4.1646,16.4204,-0.9148,4.064,16.4336,-0.7938,4.1035,16.1795,-0.9934,4.0118,16.1817,-0.8394,4.2657,16.6776,-1.0388,4.2539,16.4423,-1.0555,4.311,16.6866,-1.1742,4.275,16.447,-1.19,4.2572,16.4829,-1.5474,4.2535,16.5043,-1.4124,4.2401,16.3379,-1.4251,4.2755,16.6861,-1.417,4.2539,16.703,-1.6697,4.268,16.7907,-1.414,4.2713,16.7123,-1.8052,4.2204,16.8676,-1.6849,3.7404,16.3593,-2.0845,3.5687,16.6373,-2.0398,3.7279,16.6697,-2.0764,3.4746,16.6678,-1.8404,3.5594,16.6291,-2.0065,3.2086,17.1553,-1.4523,3.8456,17.1572,-1.6911,3.6138,17.1281,-1.7121,3.5741,17.1864,-1.5637,3.8172,17.2534,-1.5459,3.9645,17.14,-1.6717,3.7868,17.3427,-1.4368,4.1872,17.0297,-1.4004,4.1299,16.9607,-0.9124,4.2007,16.9735,-1.044,4.1762,16.6628,-0.9192,4.0287,16.9465,-0.7766,3.8763,17.2471,-0.573,3.8882,16.9564,-0.5878,3.9887,17.2797,-0.7966,3.4781,16.9983,0.084,3.5811,16.9596,0.055,3.5012,17.2237,0.0339,3.9542,17.4847,-0.7864,3.8705,17.4522,-0.5702,3.784,17.548,-1.298,3.1209,17.5308,-1.3576,3.2699,17.5273,-1.3525,3.2523,17.9797,0.0044,3.2208,17.7118,-0.0266,3.4568,17.6849,-0.0031,3.4971,17.9808,-0.0245,3.894,18.1007,-1.0417,3.9524,17.7949,-0.9138,3.9501,17.8157,-1.0411,3.9304,18.0544,-0.8568,3.5685,18.6599,-1.1316,3.495,18.1373,-1.2121,3.8867,18.0389,-0.5535,3.8862,18.613,-0.622,3.8913,18.5822,-0.5018,3.9452,18.0403,-0.7205,3.2746,18.5243,0.0125,3.3173,19.2907,0.0235,3.2071,18.5301,-0.0103,3.9437,19.424,-0.4707,4.0553,21.2277,-0.3319,3.9618,20.1334,-0.2415,3.9885,20.1573,-0.4326,4.0649,21.2078,-0.1854,3.6554,20.2966,-1.0365,3.989,21.2288,-0.6463,4.0683,22.3666,-0.5759,4.1647,22.33,-0.1799,4.1471,22.3199,-0.1028,3.8194,21.2136,0.0805,4.1124,22.3359,0.0004,3.9229,22.3448,0.1092,4.0036,21.208,-0.0677,4.2539,23.5524,-0.1145,4.355,24.5495,-0.2472,4.3536,24.5563,-0.1226,4.2659,23.5295,-0.181,4.3198,25.4167,-0.6191,4.2396,26.329,-0.9708,4.5118,26.3175,-0.7303,4.0614,25.415,-0.9355,4.4006,25.4807,-0.1339,4.5472,26.3434,-0.3927,4.5379,26.3609,-0.1852,4.4305,25.425,-0.2865,4.5378,28.847,-0.1792,4.4519,28.8503,-0.1543,4.4533,28.2667,-0.1047,4.5327,28.2361,-0.2101,3.7288,29.6168,-0.2169,4.2994,30.5643,-0.0921,4.0706,30.2985,-0.134,4.4697,31.1402,0.0101,4.3475,30.9074,0.0366,4.5404,31.028,0.0043,5.1078,30.8525,-0.3795,5.0066,30.7305,-0.335,5.0537,31.0563,-0.2565,4.7101,31.4369,-0.4074,4.902,31.4518,-0.309,4.9648,31.4655,-0.4617,5.2821,30.6875,-0.4846,5.1853,30.9558,-0.4131,5.1601,30.9027,-0.3802,5.1678,30.4682,-0.4781,5.2195,30.6505,-0.4629,5.1015,30.5549,-0.4264,4.7503,28.8183,-0.7831,4.7645,29.158,-0.7759,4.4202,29.7995,-1.3487,4.5274,29.7567,-1.2914,4.3863,29.53,-1.2656,4.2191,29.5817,-1.3059,4.5975,29.4955,-1.1557,4.6528,29.6749,-1.2006,4.6961,29.4983,-0.9914,4.8306,30.1004,-1.2609,5.0413,29.9373,-0.8728,4.811,31.3832,-1.385,4.7801,31.2145,-1.4106,5.1929,30.4708,-0.9044,5.0317,30.5998,-1.2391,5.1022,30.8822,-1.1318,5.1987,30.7593,-0.811,5.1603,31.0918,-0.6862,5.0969,31.2143,-0.9539,5.0639,31.4159,-0.9107,5.0585,31.3095,-0.5836,4.9125,31.5121,-1.2319,4.9647,31.3232,-1.2575,4.8124,31.4221,-1.3885,4.7518,31.5991,-1.3353,4.8687,31.7037,-0.9647,4.9115,31.6585,-0.7912,5.1177,31.1439,-0.3432,5.1757,30.1347,-0.593,5.2404,30.3783,-0.5324,4.9827,31.1172,-1.2998,5.0401,31.0011,-1.2402,5.0456,31.2711,-1.1634,4.9679,30.6651,-1.3124,4.9168,30.2677,-1.2821,5.1072,30.1393,-0.8895,5.0321,30.375,-0.3164,4.566,30.5414,-0.1547,4.6332,30.3028,-0.1767,4.4388,30.7556,-0.0558,3.5109,29.7228,-0.296,3.5958,30.0019,-0.2409,3.5052,29.8483,-0.3232,3.9447,29.1473,-0.1333,4.5788,29.1365,-0.2054,4.4999,29.1469,-0.1643,4.6727,27.252,-0.5233,4.741,28.1825,-0.829,4.6953,28.1931,-0.5882,4.6416,27.2587,-0.8664,4.4475,26.3957,-0.0703,4.2331,25.5306,0.0597,4.3533,25.4991,-0.0303,4.358,26.4305,0.0453,4.0414,25.4172,-0.9662,3.9987,25.4287,-0.98,4.2032,26.3318,-0.9963,3.9262,24.6626,0.1493,4.1209,24.657,0.1129,4.0447,25.5773,0.1365,3.9454,24.6166,-0.9697,3.7217,22.4128,-0.9857,3.7732,18.1316,-1.1744,3.9703,17.52,-1.0754,3.4321,17.5295,-1.3356,3.3914,17.2058,-1.4876,3.9709,17.494,-0.949,4.033,17.309,-0.9399,3.0321,17.4555,-0.1245,3.0623,17.6942,-0.1025,2.8774,17.6928,-0.1894,2.8229,16.8526,-0.2117,3.0002,16.7781,-0.0853,3.0,16.8686,-0.0957,3.7085,16.9422,-0.1321,3.7908,17.2098,-0.3715,3.6729,17.2181,-0.1757,3.805,16.9389,-0.3989,3.4872,17.4443,0.0032,3.6816,17.46,-0.1653,4.0246,17.3545,-1.1211,4.2266,16.9963,-1.203,4.3182,16.4362,-1.728,4.2155,16.1893,-1.2287,4.3945,16.1207,-1.7177,4.2443,16.0604,-1.31,4.2877,15.9107,-1.4204,4.2941,16.2203,-1.5565,4.1908,16.1677,-1.1435,4.1773,16.0131,-1.1677,4.1032,15.8272,-1.0663,4.2047,15.8424,-1.1947,4.0978,15.9731,-1.0251,3.9076,16.2101,-0.6145,3.9366,16.4339,-0.6041,4.0121,15.8484,-0.9255,4.0077,15.9673,-0.8767,3.7387,16.4427,-0.1065,3.6905,16.4536,0.0071,3.3867,16.2197,-0.0471,3.2881,16.0027,-0.304,3.468,16.0221,-0.2146,3.2129,16.2312,-0.1374,3.5254,15.8899,-0.3712,3.6593,16.0296,-0.1817,3.3777,15.8674,-0.4885,3.6119,15.8158,-0.543,3.2399,16.0049,-1.1251,3.0696,16.0633,-1.0301,3.8361,15.8878,-0.6891,3.7765,15.7875,-0.8197,3.7278,15.7681,-1.1811,3.6854,15.9564,-1.8045,3.3732,15.9762,-1.542,3.6165,15.8459,-1.4917,3.731,16.1141,-1.9719,2.645,32.1342,-0.3036,2.7414,32.1945,-0.2631,2.8117,32.2896,-0.3105,2.838,32.1545,-1.3453,2.7031,32.0579,-1.3249,2.3848,31.4442,-1.0075,2.3733,31.3779,-0.632,2.6839,31.9347,-0.0991,2.7923,32.0637,-0.0743,2.9331,32.1395,-0.0492,3.0996,31.1441,-1.4376,2.8133,30.9462,-0.6261,2.6968,31.2226,-0.0599,2.5974,31.1018,-0.2746,2.8093,31.1155,-0.1384,3.3545,31.8792,0.0354,3.4405,31.7192,0.0064,3.6725,30.7971,-0.1579,3.5487,31.0079,-0.1769,3.6227,31.5728,-1.0139,3.8671,31.1025,-0.1691,4.409,31.2416,-1.1839,4.4005,31.1364,-1.1969,4.2577,30.6733,-1.3348,4.1833,30.7141,-1.2255,4.0035,30.4488,-1.1872,3.9941,30.1794,-1.3688,4.0579,29.903,-1.4004,4.3365,30.6254,-1.4604,4.279,30.6604,-1.4079,3.5858,29.5435,-1.5187,3.3615,29.6433,-1.4556,3.3309,29.641,-1.4249,3.6886,29.282,-1.4222,4.0117,29.2451,-1.2458,3.3104,29.8808,-0.6725,3.3287,29.8938,-0.5964,3.5221,28.9349,-0.8073,3.6314,28.3049,-0.8047,3.9948,27.355,-0.9538,3.846,27.3678,-0.8797,3.6495,26.4587,-0.7457,3.5712,27.3943,-0.5642,3.686,27.3819,-0.7818,3.4924,26.4928,-0.5735,3.6981,25.5776,0.062,3.5508,24.6858,0.001,3.6253,24.7008,0.0564,3.6656,23.5853,-0.8448,3.6877,22.4179,-0.9745,3.4953,22.4812,-0.8502,3.1083,22.516,-0.3662,2.9008,21.4197,-0.4809,2.899,21.4057,-0.4058,3.1301,22.5183,-0.4561,2.6589,20.3637,-0.5969,2.6313,20.3337,-0.5137,2.5256,19.4772,-0.8614,2.4357,19.4724,-0.7631,2.7527,20.3781,-0.7353,3.1617,19.4688,-1.0735,2.412,19.4063,-0.547,2.2303,18.7034,-0.7217,2.2635,18.6778,-0.6086,2.7388,19.2835,-0.1659,2.5285,19.3418,-0.3467,3.012,18.2131,-1.2709,2.964,17.9246,-1.326,2.8608,17.9276,-1.3616,2.4095,18.2838,-1.3736,2.3323,17.9733,-1.502,2.2234,17.9812,-1.4763,2.4005,17.646,-0.394,2.5469,17.6457,-0.351,2.2636,17.467,-0.4639,2.3371,17.429,-0.4476,2.3277,17.6646,-0.4428,2.0331,17.7962,-1.556,1.9751,17.5493,-0.762,1.8075,17.3333,-0.8469,1.8643,17.3052,-0.7606,2.6033,17.5831,-1.5443,2.7237,17.2507,-1.6065,2.5564,17.2613,-1.6423,2.7604,17.5706,-1.4698,2.1862,17.2426,-1.8063,2.0252,17.283,-1.8377,1.4414,17.2395,-1.7271,1.5778,17.304,-1.5933,1.4506,17.1357,-2.0806,1.4142,17.2173,-2.0043,1.3228,16.6242,-1.7652,1.3156,16.5866,-1.5394,1.3027,16.7389,-1.7261,1.6632,17.3132,-2.0429,1.8497,17.3122,-1.9081,1.5773,17.1797,-2.2818,1.6746,17.2124,-2.1941,1.9441,17.1325,-2.3478,1.8501,17.0712,-2.469,1.9094,17.1286,-2.2024,2.2823,16.9193,-2.6328,1.4905,16.0213,-1.661,1.4768,16.0726,-1.9221,1.5377,15.849,-1.4104,1.5022,16.0491,-1.3897,1.562,15.8144,-1.6919,1.934,15.7214,-1.2625,1.9032,15.6968,-1.3675,1.4547,16.9547,-1.1735,1.7168,15.8888,-0.9637,1.6175,15.8905,-1.1401,1.7923,15.8033,-1.2189,2.4431,15.9291,-1.5449,1.6886,16.7677,-0.6995,1.6711,16.5337,-0.7564,2.6256,16.794,-0.3192,2.4218,16.7392,-0.3868,2.6357,17.0252,-0.3415,2.1796,16.5339,-0.4116,2.0832,15.9461,-0.7564,2.1378,16.0346,-0.6246,2.2964,15.9794,-0.7667,2.6964,17.0837,-1.6927,2.662,16.9676,-1.7112,2.5044,16.9589,-1.7947,2.3366,15.95,-2.1413,2.4393,16.9689,-1.8714,3.4581,29.2347,-0.7183,4.5884,31.4358,-1.4355,2.9218,17.6654,-1.3889,2.9079,17.5493,-1.4271,3.4366,22.4674,0.0741,3.591,23.6466,0.0824,3.5114,23.6044,0.0506,3.5104,22.4145,0.0882,2.6265,16.2978,-0.4591,2.8236,16.5027,-0.2757};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getlfemur_Coord_6_355_point_2()
		{
			double[] value = {2.6005,16.5003,-0.3404,2.8795,16.3162,-0.429,3.3687,18.6595,-1.1419,3.2219,18.6593,-1.1607,3.2971,19.4115,-1.0768,3.4536,19.4263,-1.0803,3.1775,18.1622,-1.2177,3.0596,18.7161,-1.1677,3.1109,16.0845,-1.1282,4.2529,29.8743,-1.3705,3.5027,29.6871,-0.2793,3.6093,30.0267,-0.2082,4.3813,31.2335,-0.0842,4.8116,31.6844,-1.1764,4.0538,29.6238,-1.3309,3.5267,30.9722,-1.1147,4.157,30.4085,-1.3558,3.2801,29.3404,-1.3738,4.9361,30.5646,-0.2415,3.4757,29.2432,-0.8167,4.6362,29.3763,-0.2249,4.8318,29.5044,-0.3871,4.7663,29.706,-0.233,4.719,29.1114,-0.3543,3.4146,29.7674,-0.4564,2.4075,16.1039,-2.3482,2.3997,16.9939,-2.0659,2.4287,17.019,-2.1802,2.402,17.0709,-2.0642,2.4074,17.0542,-2.0099,1.7969,15.7479,-2.0026,1.8298,15.7102,-1.6944,1.7636,15.7378,-1.696,2.1876,15.7791,-1.1912,3.2725,16.0603,-1.5912,3.1447,15.9462,-0.6613,2.4086,16.5969,-0.3429,2.1764,16.4839,-0.3999,2.3521,18.7502,-1.0589,2.0575,17.7414,-0.7256,2.4094,16.6292,-0.3625,3.2058,16.0464,-1.3438,3.1208,16.105,-1.1547,3.4515,17.0189,-1.7546,3.52,16.8567,-1.9516,2.343,15.9193,-2.1541,2.4116,16.0794,-2.3725,2.3452,15.8323,-1.8808,2.503,17.0236,-2.2803,2.5021,17.0496,-2.2958,2.1536,17.1907,-2.2289,2.2739,17.1747,-2.1542,2.2917,17.1794,-2.1833,1.695,15.9109,-0.9554,1.597,15.9176,-1.1336,1.7873,15.937,-0.8245,1.812,15.9144,-0.8304,4.2984,15.8802,-1.4343,4.4013,16.1012,-1.7408,3.7388,15.9231,-0.4052,4.2355,16.887,-1.7483,3.1325,31.386,0.0542,3.3701,31.7315,-1.5516,3.3991,31.6476,-1.5244,3.3464,29.7183,-1.4086,3.2838,29.3008,-1.3532,3.3451,29.2565,-1.4349,4.4091,31.2484,-1.202,4.3939,31.1436,-1.219,3.3828,29.4563,-0.4336,3.3202,29.6402,-0.6234,3.3861,29.4189,-0.4372,3.7577,30.3167,-0.1411,3.684,30.4086,-0.1765,3.4071,30.387,-0.3243,1.9777,17.1492,-2.395,1.7562,17.515,-1.3943,1.548,17.2291,-2.1853,1.4609,17.0607,-2.2088,1.4879,16.9745,-2.3307,1.42,16.834,-2.1649,1.4699,16.7264,-2.287,1.3824,16.246,-1.8706,1.3629,16.2805,-1.6118,1.3416,16.4158,-1.8244,3.9645,24.6159,-0.9401,3.9153,23.5662,-0.8999,3.9306,23.5665,-0.877,3.9006,23.6218,-0.8627,3.9047,23.625,-0.8757,3.9418,23.5773,-0.8781,3.9357,23.566,-0.8802,3.9791,29.6807,-0.1773,3.5587,30.1509,-0.2448,3.4778,30.0373,-0.3539,3.3469,29.925,-0.5782,3.3088,29.8501,-0.9746,3.0008,16.6876,-0.0752,3.1746,16.6791,0.0327,3.4991,28.9237,-0.6971,2.3575,17.097,-1.9871,4.3167,31.3611,-0.661,3.3992,29.9633,-0.4892,4.6787,28.806,-0.356,4.6142,28.2055,-0.3151,4.624,27.3023,-0.2346,4.5327,27.3501,-0.1287,5.1065,29.9377,-0.6174,4.9697,29.7786,-0.6011,3.8864,23.6173,-0.8655,3.895,23.6248,-0.8903,3.8768,23.617,-0.8801,3.8805,23.6209,-0.8932,3.9694,25.4339,-0.9631,4.0531,26.3532,-0.9697,2.1431,17.9889,-1.4628,1.4032,16.358,-2.0877,1.4352,16.5127,-2.2045,2.3824,31.5935,-0.957,1.6325,16.2096,-2.4148,1.728,16.3696,-2.699,1.6323,16.1104,-2.4851,1.6936,16.4436,-2.5771,1.8893,17.0878,-2.5085,2.376,17.0919,-2.054,2.4248,16.8589,-2.3005,3.5657,30.1811,-0.2186,3.2384,29.4631,-1.2662,3.2551,31.5352,0.0673,3.2452,31.5615,0.0889,3.4474,31.6886,-0.0117,3.2319,31.3244,-1.5095,3.7022,32.1175,-0.9037,2.6267,31.0009,-1.0962,2.4156,16.6842,-0.3746,3.1667,16.6422,0.0433,2.9898,16.6515,-0.0659,2.8347,16.6594,-0.2001,3.8571,17.155,-1.7304,3.6198,17.1282,-1.7525,2.8424,16.0649,-1.1601,4.376,16.4082,-1.8726,4.3832,16.4027,-1.9021,4.2,15.8161,-1.2053,1.5606,15.8237,-1.4067,1.6004,15.8146,-1.9844,1.5867,15.7907,-1.6947,1.654,16.0913,-2.4974,1.6069,15.9422,-2.2534,2.5158,16.8842,-2.4809,2.5168,16.8697,-2.4513,3.3736,16.2032,-1.758,3.5252,16.4152,-1.9565,3.9327,20.233,-0.6966,2.6374,16.0042,-1.2206,2.8129,16.0533,-1.1039,2.3532,15.9304,-1.0448,1.7165,15.7677,-1.4006,4.5729,29.5661,-0.188,4.6941,29.9863,-0.182,3.3109,30.2695,-0.5023,2.6473,20.2837,-0.387,2.4111,19.4514,-0.6898,3.2802,21.3173,0.0653,3.5958,29.3388,-1.4815,4.8023,30.343,-1.3991,4.6038,30.2244,-1.4753,4.6682,30.4548,-1.5033,4.7148,30.1624,-1.368,4.523,29.9692,-1.394,4.6214,29.9089,-1.3192,3.9179,29.9993,-0.1571,3.8542,28.3135,-0.1231,3.9499,28.8732,-0.1041,3.7993,28.866,-0.1859,3.9599,28.3133,-0.0778,4.4541,30.5997,-1.4971,2.9759,16.6195,-1.4923,2.7928,16.6619,-1.5759,2.8209,16.8056,-1.6508,3.0284,16.9234,-1.5883,2.9937,16.7548,-1.5721,2.8497,16.9567,-1.654,3.1613,17.8679,-1.2725,2.9231,19.2409,-0.0844,2.973,18.5623,-0.0916,3.0544,19.3029,-0.0353,2.7962,18.5092,-0.1737,2.7063,16.1075,-0.657,2.911,16.1227,-0.5978,2.6088,16.645,-0.2878,2.8451,17.0529,-0.2212,2.7078,18.0055,-0.244,2.6839,17.661,-0.2843,2.9027,18.0047,-0.1549,3.3771,21.3067,0.081,3.6788,24.7002,0.0731,3.7863,25.6403,0.0911,3.7753,26.4747,0.0185,3.9074,26.4914,0.0735,3.9753,27.4486,-0.0063,3.8646,27.4098,-0.0661,3.0794,20.1283,-0.0156,3.2007,20.1688,0.0133,3.0932,31.1554,-1.4696,3.1895,31.4838,-1.5717,2.5978,16.6365,-1.6718,2.6416,16.8151,-1.7278,2.6106,15.9816,-1.1196,1.5655,16.1414,-1.095,1.6302,16.1908,-0.931,1.5798,16.4621,-0.8882,1.7078,16.2511,-0.7827,1.581,16.7237,-0.8478,1.4799,16.4237,-1.0834,1.7273,17.0961,-0.8269,1.6361,16.8996,-0.8211,1.6728,17.1281,-0.9256,1.3976,16.354,-1.3479,2.2058,15.7678,-1.9381,2.0288,15.7371,-1.9679,2.2246,15.8719,-2.2044,1.8039,15.8837,-2.2612,2.0597,15.8441,-2.2458,1.5261,16.1776,-2.1963,2.2689,16.0356,-2.4582,2.124,16.0221,-2.4872,1.8425,16.058,-2.5143,1.561,16.3269,-2.3394,1.5884,16.5272,-2.45,1.7373,16.7203,-2.6336,1.6058,16.7879,-2.5024,2.4087,16.9073,-2.5643,2.3851,17.0878,-2.3938,1.8705,17.2038,-2.0498,1.4115,16.9367,-2.0288,1.5665,17.2337,-1.3451,2.3736,17.2788,-1.6966,2.4257,17.5849,-1.603,1.727,17.3884,-1.0605,1.7315,17.4724,-1.2398,1.6036,17.1782,-1.1351,2.5182,17.4082,-0.3935,1.8785,17.6008,-0.9965,1.8673,17.6646,-1.1656,1.9003,17.7117,-1.3177,2.4589,17.7793,-1.5559,2.6321,17.7608,-1.4905,2.8058,17.7194,-1.4273,2.6875,17.9578,-1.4292,2.4907,17.9725,-1.4906,1.9695,17.8542,-1.0947,2.0099,17.9111,-1.2343,1.9827,17.8223,-0.9426,2.1795,17.6799,-0.5387,2.1317,18.0811,-0.6784,2.0867,18.1239,-0.8643,2.0906,18.1652,-0.9729,2.1344,18.2007,-1.1085,2.5527,18.2744,-1.3808,2.7427,18.2403,-1.3405,2.8221,18.724,-1.2056,2.2213,18.7189,-0.853,2.2534,18.74,-0.9567,2.9212,21.3913,-0.284,3.0325,21.4271,-0.6677,3.2476,22.506,-0.6216,3.1491,22.4778,-0.219,3.412,23.6171,-0.0213,3.3141,23.656,-0.2077,3.2729,23.6825,-0.3949,3.7665,24.6673,-0.8739,3.4353,24.7165,-0.1676,3.3638,24.7302,-0.4281,3.5418,25.5874,-0.1717,3.4284,25.5821,-0.5585,3.435,25.5905,-0.4617,3.8412,25.4407,-0.8829,3.5742,25.5398,-0.7133,3.8924,26.4098,-0.88,3.6318,26.465,-0.1803,3.5058,26.5054,-0.453,3.7174,27.4055,-0.2194,3.5695,27.3935,-0.4662,3.5584,28.286,-0.5999,3.5577,28.2792,-0.4894,3.7043,28.31,-0.2609,3.6423,28.8766,-0.3058,3.519,28.8789,-0.4738,3.3695,30.3141,-0.3888,3.3217,29.7457,-0.931,3.5176,31.4494,-1.1607,3.557,31.7392,-1.1162,3.5933,32.0305,-1.2961,3.3733,31.2243,-1.2599,2.5302,31.025,-0.6061,3.1082,31.6734,-1.6303,3.2704,31.8619,-1.6007,2.5213,31.0964,-1.0448,2.6121,31.2084,-1.2665,2.5748,31.5136,-0.081,2.7225,31.6756,0.0489,2.4658,31.4033,-0.2798,3.4268,32.4386,-0.5944,3.4405,32.4472,-0.9704,3.3176,32.3109,-1.33,2.9727,31.9698,-1.5628,3.1296,32.1196,-1.5226,3.2519,32.4926,-0.6056,3.2144,32.4916,-0.9394,3.1137,32.4184,-1.1831,2.9583,32.2597,-1.3171,3.0431,32.4874,-0.6549,3.0253,32.4969,-0.8825,2.5648,32.0823,-0.4028,2.5189,31.7953,-0.2225,2.3826,31.7105,-0.7366,2.5171,31.7334,-0.8322,2.5185,31.721,-0.8885,2.5426,31.761,-0.9186,2.5299,31.7367,-0.9141,2.551,31.7933,-0.8618,2.5537,31.7913,-0.8889,2.8279,32.3424,-1.1438,2.9735,32.4476,-1.0469,4.1893,16.0496,-1.8899,4.1201,15.846,-1.6448,3.9815,16.0564,-1.952,3.9487,15.8552,-1.7225,3.5115,15.8654,-1.2471,3.3292,15.9719,-1.3173,3.8244,15.7765,-1.4319,4.0335,15.7796,-1.3353,3.0934,16.0534,-0.4581,3.0253,16.2778,-0.2877,3.1841,16.418,-0.0355,3.0019,16.4691,-0.1558,3.7361,16.6915,-0.1284,3.6355,16.6906,0.0601,3.9094,16.6645,-0.5754,3.8164,16.4662,-0.3432,3.8157,16.6779,-0.3839,3.8002,16.2462,-0.3582,4.0683,16.6691,-0.7952,4.2115,16.3596,-2.0406,3.9812,16.3637,-2.0839,4.1632,16.7003,-2.0486,3.9382,16.6842,-2.08,3.706,16.8999,-1.9816,3.9261,16.9196,-1.9893,3.5549,17.2482,-1.4954,3.7967,17.4457,-0.373,3.0039,17.0438,-0.1146,3.1876,17.0247,0.0251,3.1871,17.2315,-0.0102,3.0157,17.2228,-0.1159,3.1992,17.4503,-0.0397,3.5449,17.5282,-1.3399,3.2871,17.8599,-1.2668,3.4596,17.8526,-1.2678,3.5897,17.8505,-1.269,3.888,17.7406,-0.5477,3.952,17.773,-0.7384,3.6982,17.6975,-0.1777,3.7931,17.7149,-0.3414,3.0943,17.9917,-0.0628,3.7159,17.9973,-0.193,3.8068,17.9972,-0.3351,3.3054,18.1679,-1.2143,3.7054,18.5218,-0.1345,3.8134,18.5723,-0.3102,3.543,18.5078,-0.0051,3.5893,19.3111,0.0071,3.78,19.3326,-0.1434,3.8901,19.3493,-0.305,3.8568,20.1441,-0.0833,3.4553,20.1371,0.0814,3.6475,20.1316,0.0667,3.6123,21.253,0.1269,3.733,22.3654,0.135,3.841,23.6071,0.1459,4.0136,23.6095,0.1175,4.216,23.5592,-0.0328,4.3196,24.586,-0.0204,4.1427,26.4719,0.1053,4.2154,27.4403,0.0345,4.443,27.3978,-0.0224,4.2003,28.313,-0.0526,4.2044,28.8775,-0.091,4.729,28.8097,-0.5825,4.2531,29.2285,-1.2194,4.7267,30.8312,-1.49,5.0042,31.4536,-1.1119,2.5419,31.7799,-0.8438};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_356_vector_1()
		{
			double[] value = {-0.9996,-0.0228,-0.0188,-0.9992,-0.0394,-0.0019,-0.9981,-0.0172,-0.0587,-0.9973,-0.0724,-0.0148,-0.9935,-0.1139,0.0088,-0.9926,0.1115,0.048,-0.9909,-0.1297,0.0357,-0.9899,-0.0786,-0.1179,-0.9897,0.0096,0.1428,-0.9892,0.0853,0.1189,-0.9882,-0.0686,0.1366,-0.9882,-0.1017,-0.1149,-0.9877,0.1173,0.103,-0.9872,-0.1384,0.0791,-0.9861,0.1639,0.0277,-0.9861,-0.15,-0.072,-0.9859,0.1616,0.0434,-0.985,-0.1448,-0.094,-0.9839,-0.1333,-0.1187,-0.983,-0.1492,-0.1074,-0.9822,-0.0696,-0.1744,-0.9806,0.1874,0.0571,-0.9792,0.0465,0.1975,-0.9789,0.2016,-0.0346,-0.9787,-0.1694,0.1158,-0.9785,0.1924,-0.0742,-0.9769,-0.1841,-0.1083,-0.9769,0.1926,0.0926,-0.9746,0.0904,0.2049,-0.9726,0.2053,0.1089,-0.9723,0.0482,-0.2288,-0.9714,-0.2151,0.1006,-0.9702,0.1126,0.2146,-0.97,0.243,-0.0003,-0.9689,-0.0582,-0.2405,-0.9676,-0.0248,-0.2512,-0.9671,0.0132,-0.2539,-0.9667,-0.18,0.1819,-0.9664,0.197,-0.1649,-0.9658,-0.2526,-0.0593,-0.9649,0.0343,0.2604,-0.9648,0.2534,-0.0709,-0.9641,-0.1961,-0.179,-0.9623,0.1475,-0.2286,-0.9617,0.2646,-0.0712,-0.9617,0.2743,-0.0025,-0.9613,-0.034,0.2735,-0.9611,0.276,0.0122,-0.9605,0.1917,0.2016,-0.9599,-0.1576,-0.2317,-0.9599,-0.2619,0.1001,-0.9593,-0.1595,-0.2331,-0.959,0.22,-0.1788,-0.9586,0.082,0.2726,-0.9578,-0.1704,-0.2314,-0.9575,0.0518,-0.2837,-0.9554,0.0878,-0.282,-0.955,-0.1328,-0.2651,-0.9531,0.0548,-0.2977,-0.9521,0.2465,0.181,-0.9519,0.282,-0.1194,-0.9511,0.0183,-0.3083,-0.9509,-0.0554,0.3045,-0.9498,-0.3037,0.0751,-0.9466,0.318,-0.0528,-0.9466,-0.2106,-0.2443,-0.9446,0.0749,-0.3197,-0.9431,0.164,-0.2892,-0.9415,-0.3015,-0.1505,-0.9405,-0.2208,-0.2585,-0.9404,-0.2528,-0.2274,-0.9403,-0.2805,0.1925,-0.9387,-0.038,-0.3427,-0.9374,0.0066,-0.3483,-0.9365,-0.3204,-0.1421,-0.9364,0.167,0.3086,-0.9362,0.0587,-0.3465,-0.9351,0.1559,0.3182,-0.9349,0.2192,-0.2792,-0.9345,0.193,-0.299,-0.9338,-0.2316,0.2727,-0.9335,-0.2742,-0.2309,-0.9335,0.0848,-0.3483,-0.9324,-0.2682,-0.2424,-0.9321,0.186,0.3107,-0.9315,0.0512,-0.3601,-0.9314,0.1928,-0.3088,-0.9301,-0.3388,-0.1418,-0.9301,0.358,-0.0826,-0.93,-0.1452,0.3378,-0.9258,0.0907,-0.3669,-0.9249,-0.1662,-0.342,-0.9249,0.1162,0.362,-0.9248,-0.1828,0.3336,-0.924,0.0522,-0.3787,-0.9234,-0.3833,-0.0199,-0.9217,0.0879,-0.3777,-0.9217,-0.3247,0.2123,-0.9216,-0.3617,0.1406,-0.921,-0.0508,0.3862,-0.9207,0.1859,0.3431,-0.9192,0.1824,0.3489,-0.9183,0.0597,-0.3913,-0.917,0.3448,0.2003,-0.9165,0.3616,-0.1712,-0.9164,-0.2088,-0.3414,-0.9158,0.2957,0.2719,-0.913,-0.4006,0.0776,-0.9125,-0.3462,-0.2181,-0.9124,-0.0776,-0.4018,-0.9111,0.2941,0.2888,-0.9109,0.4108,0.0389,-0.9102,0.1431,0.3887,-0.9098,-0.3078,0.2784,-0.9081,0.4176,-0.0297,-0.9075,0.42,-0.0089,-0.9064,0.1497,-0.395,-0.9063,-0.2465,-0.3433,-0.9047,0.2387,0.3529,-0.9041,-0.2242,0.3639,-0.9039,-0.1602,-0.3966,-0.9009,0.0025,0.434,-0.9005,-0.012,-0.4346,-0.8988,-0.1751,0.4018,-0.8988,-0.1079,-0.4248,-0.8978,0.1565,-0.4116,-0.8973,0.0921,0.4317,-0.8961,0.3332,0.2931,-0.8958,0.4411,-0.054,-0.8956,-0.1438,0.4209,-0.8953,-0.1889,0.4034,-0.8952,0.3629,-0.2587,-0.8941,0.2065,-0.3975,-0.8934,0.0476,-0.4467,-0.8927,-0.2564,0.3705,-0.8927,0.3868,-0.2312,-0.8926,0.3037,-0.3332,-0.8912,-0.3137,-0.3275,-0.889,-0.1822,-0.4202,-0.8889,0.0053,-0.4581,-0.8888,0.2672,-0.3724,-0.8865,-0.4337,-0.1614,-0.8859,0.1544,0.4374,-0.8856,0.0214,-0.464,-0.8848,0.1016,0.4548,-0.8832,0.3902,0.2601,-0.8829,-0.4471,0.1436,-0.8814,0.1329,0.4534,-0.8811,0.122,-0.4569,-0.8796,0.4687,-0.0817,-0.8792,-0.0232,-0.4758,-0.8789,-0.1592,0.4497,-0.8769,-0.1105,-0.4677,-0.8769,-0.0658,0.4762,-0.8752,0.4704,-0.1132,-0.8751,0.2591,-0.4088,-0.8742,-0.4267,0.2319,-0.8739,-0.4858,-0.0164,-0.8698,-0.263,-0.4176,-0.8696,-0.0882,-0.4858,-0.8687,0.4665,0.1662,-0.8668,-0.3954,0.3039,-0.8663,-0.4649,-0.1826,-0.8655,-0.4261,-0.2634,-0.8639,0.0932,-0.495,-0.8631,0.5049,-0.0085,-0.8628,0.4948,0.1033,-0.8625,0.1678,0.4775,-0.8617,0.2251,-0.4548,-0.8605,0.0915,0.5012,-0.8592,0.3384,0.3837,-0.8572,-0.4346,-0.2761,-0.856,0.2883,-0.4291,-0.8554,0.0462,0.5159,-0.8531,-0.3448,-0.3915,-0.8523,-0.0259,-0.5224,-0.8517,-0.4477,-0.2724,-0.8509,0.5097,0.1267,-0.8508,-0.3462,-0.3954,-0.8504,0.4154,0.3229,-0.8487,0.2367,0.4729,-0.8486,0.1972,0.4909,-0.847,0.0417,0.5299,-0.8468,0.4309,-0.3118,-0.8459,-0.3954,0.358,-0.8445,0.5355,-0.0086,-0.8439,0.3093,-0.4384,-0.8437,-0.5334,-0.0608,-0.8407,0.3366,-0.4243,-0.8403,-0.0008,-0.5421,-0.8399,0.4999,0.2113,-0.839,0.2675,-0.4738,-0.8373,0.4422,0.3217,-0.8372,-0.2056,-0.5068,-0.8366,-0.2521,0.4863,-0.8353,0.029,0.5491,-0.835,0.4497,0.3172,-0.8338,-0.0978,0.5433,-0.8317,-0.1481,0.5351,-0.8297,0.5412,0.1368,-0.8288,0.2654,0.4927,-0.8283,0.4494,0.3345,-0.8268,0.2941,-0.4795,-0.8212,0.1444,0.5521,-0.8192,-0.115,-0.5619,-0.8181,-0.1148,-0.5635,-0.8174,0.2715,0.5081,-0.8167,-0.0861,-0.5706,-0.814,-0.2824,0.5077,-0.8136,0.3109,-0.4913,-0.8121,0.4706,0.3451,-0.8115,0.5469,0.2058,-0.8115,-0.2625,0.5221,-0.811,-0.1062,-0.5753,-0.8089,0.5646,-0.1637,-0.8074,0.2648,0.5273,-0.8072,0.3753,0.4557,-0.8038,0.3784,-0.459,-0.8028,0.1632,0.5735,-0.8019,-0.5842,0.1251,-0.8011,0.393,-0.4515,-0.8004,0.3271,0.5024,-0.7984,-0.062,-0.5989,-0.7983,0.0573,0.5995,-0.7982,0.0443,0.6007,-0.7974,0.0198,0.6031,-0.7955,0.6053,0.0272,-0.7944,-0.1081,0.5977,-0.7935,0.5633,0.2304,-0.7908,0.4208,-0.4445,-0.7882,-0.0661,-0.6119,-0.7864,0.1724,-0.5932,-0.7863,0.1208,0.6059,-0.785,0.3694,0.4974,-0.7837,0.2389,-0.5733,-0.7837,-0.3764,0.4941,-0.7834,0.1536,-0.6023,-0.7815,0.3785,-0.496,-0.7812,-0.4125,0.4686,-0.7796,0.6036,0.1669,-0.776,-0.201,0.5979,-0.7756,0.1999,0.5987,-0.7732,0.5713,-0.2752,-0.7727,-0.2917,0.5637,-0.7724,0.5536,-0.3113,-0.7672,0.2823,-0.5759,-0.7672,0.3518,0.5363,-0.7665,0.2945,0.5707,-0.7635,-0.2004,0.6139,-0.7629,0.6465,0.0044,-0.7624,-0.1208,0.6357,-0.7591,-0.0763,-0.6465,-0.7589,-0.1399,-0.636,-0.7587,-0.0003,0.6514,-0.7574,0.6375,0.141,-0.7539,-0.0643,0.6538,-0.7538,-0.3529,-0.5544,-0.7533,0.5734,0.3221,-0.753,-0.0123,-0.6579,-0.7526,0.0869,0.6527,-0.7526,-0.2589,0.6055,-0.7522,0.3316,0.5694,-0.7517,0.5974,0.2793,-0.7509,0.1404,-0.6453,-0.7506,-0.2319,0.6187,-0.7483,-0.1985,0.633,-0.7452,0.0471,0.6651,-0.7449,0.0998,-0.6597,-0.7421,0.0858,0.6648,-0.7394,-0.5773,0.3464,-0.7372,-0.0856,0.6702,-0.7372,-0.04,-0.6745,-0.7322,0.1295,-0.6687,-0.729,0.6272,-0.2743,-0.727,0.6791,0.1012,-0.7253,0.1253,-0.677,-0.7245,0.4709,-0.5034,-0.7245,-0.2609,0.638,-0.7223,0.1035,0.6838,-0.7223,-0.4991,0.4787,-0.7217,0.0718,0.6885,-0.7213,0.0243,-0.6922,-0.7198,-0.694,-0.0168,-0.7197,-0.0805,-0.6896,-0.7196,0.0607,-0.6917,-0.7187,0.2501,-0.6488,-0.718,0.301,0.6275,-0.7169,0.6944,-0.0619,-0.7158,0.5335,0.4504,-0.7128,0.6991,-0.0566,-0.7116,0.2594,0.6529,-0.7107,0.1925,-0.6767,-0.7089,-0.1839,0.6809,-0.7083,0.2541,-0.6586,-0.7079,0.3645,0.605,-0.706,0.5898,-0.3921,-0.7034,-0.0483,0.7092,-0.7019,-0.2306,-0.6739,-0.7013,0.0672,-0.7097,-0.7011,0.6013,0.3833,-0.7007,0.2116,0.6814,-0.696,-0.5623,0.4466,-0.6934,0.0518,0.7187,-0.6917,0.0599,0.7197,-0.6915,0.1993,-0.6943,-0.6915,0.2174,-0.6889,-0.6905,0.5263,-0.4962,-0.6884,0.7205,-0.0839,-0.6869,-0.3687,0.6263,-0.6862,0.035,-0.7266,-0.6837,0.3822,-0.6217,-0.6782,0.7264,-0.1116,-0.6763,0.3112,-0.6677,-0.6743,0.1179,0.729,-0.6685,0.5708,-0.4768,-0.6681,-0.414,-0.6182,-0.6668,0.1847,-0.722,-0.6668,0.744,-0.0432,-0.6665,0.7302,-0.1502,-0.6662,0.0395,0.7447,-0.665,0.122,-0.7368,-0.6648,0.0367,-0.7461,-0.662,0.7178,0.2156,-0.6618,0.4034,-0.6319,-0.6611,0.0887,0.745,-0.6576,0.3645,0.6593,-0.6545,0.3257,-0.6823,-0.6514,0.4362,-0.6208,-0.65,-0.1604,0.7428,-0.6449,0.6466,-0.4075,-0.6444,0.0614,-0.7622,-0.644,0.0735,-0.7615,-0.6428,-0.439,-0.6278,-0.6422,-0.0489,0.765,-0.6375,0.7604,-0.124,-0.6342,0.7493,-0.1906,-0.6317,0.6338,-0.4463,-0.6304,0.3582,-0.6887,-0.6298,0.0211,-0.7765,-0.627,-0.0305,0.7784,-0.6268,-0.5307,0.5705,-0.6256,-0.1656,0.7624,-0.6245,0.0212,-0.7808,-0.623,0.3073,-0.7193,-0.6204,-0.4825,0.6183,-0.6202,0.7837,0.0353,-0.618,0.1011,0.7797,-0.6169,0.1896,0.7639,-0.6149,0.2288,-0.7547,-0.6141,-0.7139,-0.3365,-0.6126,-0.7346,-0.2917,-0.6106,-0.1044,0.7851,-0.6081,0.0817,0.7896,-0.6074,0.4757,-0.6362,-0.607,-0.0809,0.7906,-0.6064,-0.0264,-0.7947,-0.604,0.0467,-0.7956,-0.6037,0.0674,0.7944,-0.601,0.3545,-0.7163,-0.5998,0.755,-0.2649,-0.5995,0.304,-0.7404,-0.5981,-0.2797,-0.751,-0.5966,-0.1299,0.7919,-0.5955,0.1038,-0.7966,-0.5904,0.4488,-0.6708,-0.5883,-0.1849,0.7872,-0.5856,-0.1859,-0.789,-0.5849,0.5118,-0.6292,-0.5835,0.5712,-0.5772,-0.5803,-0.0157,0.8143,-0.5795,0.5888,-0.5634,-0.5792,0.0514,-0.8135,-0.5769,0.8063,-0.1308,-0.576,0.8162,0.0453,-0.5744,0.0962,0.8129,-0.5712,0.0698,0.8178,-0.5685,-0.4581,0.6833,-0.5671,-0.8035,0.1808,-0.5667,0.0858,0.8194,-0.5651,0.6476,0.5112,-0.56,0.8006,0.2133,-0.5589,0.052,0.8276,-0.5573,0.2164,0.8016,-0.5551,-0.7153,0.4245,-0.5548,-0.4225,-0.7167,-0.5538,0.0982,-0.8268,-0.5532,0.0623,0.8307,-0.5483,0.1756,0.8176,-0.5477,0.4228,-0.722,-0.5474,-0.7513,0.3687,-0.5461,0.0403,0.8368,-0.5443,0.0411,0.8379,-0.5426,0.0439,0.8388,-0.5418,0.6778,0.4971,-0.54,0.0376,0.8408,-0.5361,-0.8441,0.0073,-0.536,-0.0069,0.8442,-0.5357,0.0873,0.8399,-0.5349,0.0294,-0.8444,-0.5343,0.0001,0.8453,-0.5334,-0.3916,0.7497,-0.5317,-0.0361,0.8461,-0.5316,-0.7816,0.3264,-0.5299,0.0821,0.8441,-0.5291,0.1282,0.8388,-0.5283,0.0381,0.8482,-0.5269,-0.3877,-0.7563,-0.525,0.8501,-0.0418,-0.523,0.01,0.8522,-0.522,-0.3659,-0.7705,-0.5203,-0.5472,0.6556,-0.5184,-0.7242,-0.4548,-0.518,-0.8207,-0.2411,-0.5177,0.48,0.7082,-0.5174,0.5883,-0.6215,-0.517,-0.8028,-0.297,-0.5149,-0.5226,-0.6796,-0.5134,0.0436,-0.8571,-0.5124,-0.2808,0.8115,-0.5076,-0.1069,-0.8549,-0.5076,0.4199,-0.7524,-0.5071,0.121,0.8533,-0.5069,-0.826,-0.2464,-0.5068,-0.3732,-0.7771,-0.5066,0.0103,-0.8621,-0.5061,0.3141,-0.8032,-0.5052,0.3486,-0.7894,-0.502,-0.0065,0.8649,-0.5007,0.1394,-0.8543,-0.5005,0.8611,-0.0901,-0.4998,-0.8657,-0.0273,-0.4986,0.032,0.8663,-0.4985,-0.8575,-0.1273,-0.498,-0.5821,-0.6428,-0.4964,-0.0785,-0.8645,-0.4953,0.7455,-0.4459,-0.4933,0.2083,0.8446,-0.4928,0.2303,-0.8391,-0.4922,0.0398,0.8695,-0.492,0.5692,-0.6588,-0.4911,0.7257,0.4818,-0.4899,0.0496,0.8704,-0.4873,-0.1535,0.8597,-0.4871,-0.0003,-0.8733,-0.4868,0.0811,0.8698,-0.486,-0.0365,0.8732,-0.4851,0.6616,-0.5718,-0.4849,-0.0662,-0.872,-0.4842,-0.8297,-0.2779,-0.4802,-0.8487,0.2216,-0.4745,0.8793,-0.0401,-0.4734,0.7337,-0.4875,-0.473,0.4811,0.7381,-0.473,0.8695,0.1422,-0.4721,0.4908,0.7323,-0.4701,0.1078,0.876,-0.4681,-0.0321,0.8831,-0.4669,0.7346,0.4923,-0.4665,-0.4963,0.7322,-0.4651,-0.7539,-0.464,-0.465,0.6665,-0.5827,-0.464,-0.6336,-0.6191,-0.4611,-0.6035,-0.6505,-0.4596,0.5895,-0.6643,-0.4592,0.8071,-0.371,-0.4584,0.8847,0.0845,-0.4575,0.7643,-0.4543,-0.4575,0.039,0.8884,-0.4546,0.7931,-0.4054,-0.4534,-0.8723,0.183,-0.4525,0.7476,-0.4861,-0.4521,-0.2887,0.844,-0.4514,0.0129,0.8922,-0.4507,0.8023,-0.3914,-0.4503,-0.0123,0.8928,-0.4482,-0.0647,0.8916,-0.447,0.0184,0.8943,-0.4468,0.317,-0.8366,-0.4458,0.1397,-0.8842,-0.4316,0.0467,0.9008,-0.4305,0.1457,0.8907,-0.43,0.2245,-0.8745,-0.4269,0.674,-0.6029,-0.4248,-0.8857,-0.1876,-0.4239,-0.0594,0.9038,-0.4222,-0.0451,0.9054,-0.4189,-0.1305,0.8986,-0.4186,0.0423,-0.9072,-0.4171,0.0634,-0.9067,-0.4161,-0.8988,-0.1378,-0.4159,0.1023,-0.9036,-0.4146,-0.0109,-0.9099,-0.411,-0.0567,0.9099,-0.4107,-0.0474,0.9105,-0.4103,-0.5213,0.7483,-0.4072,-0.1178,0.9057,-0.4069,0.1846,0.8946,-0.4055,0.653,-0.6396,-0.4038,-0.472,-0.7837,-0.4024,0.4022,-0.8224,-0.4011,-0.7443,0.534,-0.3999,-0.0547,0.9149,-0.3994,0.5739,-0.715,-0.3979,0.9069,0.1387,-0.3952,0.1483,0.9066,-0.3944,-0.0611,0.9169,-0.3922,0.1234,0.9116,-0.3912,0.1038,0.9144,-0.3881,0.0111,0.9216,-0.3877,-0.5,0.7744,-0.3852,-0.3242,-0.864,-0.3829,-0.0631,-0.9216,-0.3798,-0.1048,0.9191,-0.3782,0.1585,0.9121,-0.378,-0.3075,0.8732,-0.378,-0.9112,-0.1636,-0.3776,-0.025,0.9256,-0.377,0.1943,0.9056,-0.3745,-0.0379,0.9265,-0.3737,0.2724,-0.8867,-0.3735,-0.0114,0.9275,-0.3733,0.9254,-0.0659,-0.373,-0.772,0.5147,-0.3726,-0.6432,0.6689,-0.3661,-0.0628,-0.9285,-0.3648,-0.8815,0.2997,-0.3643,0.9313,0.0016,-0.361,0.0395,0.9317,-0.3587,-0.1142,0.9265,-0.3581,0.8344,-0.419,-0.3561,-0.9342,-0.0205,-0.3545,0.2893,0.8892,-0.3542,0.0202,0.935,-0.3537,0.5755,-0.7373,-0.3532,-0.1214,0.9276,-0.353,-0.4643,-0.8123,-0.3518,-0.4174,0.8379,-0.3508,0.9028,-0.2489,-0.3504,0.1328,0.9271,-0.3502,0.7058,-0.6158,-0.35,-0.0438,0.9357,-0.3476,-0.9202,0.1797,-0.3465,0.8709,0.3485,-0.346,-0.2405,-0.9069,-0.3434,0.2271,0.9113,-0.3418,-0.9396,-0.0193,-0.3418,0.1925,0.9199,-0.3395,0.8963,-0.2853,-0.3373,0.1975,-0.9204,-0.3334,-0.9088,-0.2508,-0.3318,0.3598,0.872,-0.3313,-0.9384,0.0985,-0.3313,0.7573,-0.5628,-0.3309,0.4786,-0.8133,-0.3299,0.0016,0.944,-0.3288,0.0496,0.9431,-0.3285,0.9434,0.0459,-0.3285,0.4187,-0.8466,-0.3246,-0.0752,0.9429,-0.3237,-0.8706,0.3706,-0.3236,0.2419,0.9147,-0.3235,0.0829,0.9426,-0.3233,-0.0125,0.9462,-0.3231,0.2761,0.9052,-0.3223,-0.0338,0.946,-0.3222,-0.1917,-0.9271,-0.3222,0.0701,0.9441,-0.3212,0.057,0.9453,-0.3197,-0.899,0.2994,-0.3196,0.0708,0.9449,-0.3181,0.9168,-0.2412,-0.3181,0.749,0.5813,-0.3178,0.3108,0.8958,-0.3161,-0.9398,0.13,-0.316,0.0289,0.9483,-0.3157,-0.603,0.7326,-0.312,-0.8548,0.4146,-0.3093,0.6999,-0.6438,-0.3092,0.0759,-0.948,-0.3082,-0.856,-0.415,-0.3081,-0.8645,-0.3971,-0.3059,0.4984,-0.8112,-0.3032,-0.0856,0.9491,-0.3016,0.6212,-0.7233,-0.2984,0.0637,0.9523,-0.294,0.3445,-0.8916,-0.2919,-0.0061,-0.9564,-0.2907,0.3013,-0.9081,-0.2898,0.957,-0.0163,-0.2891,0.0314,0.9568,-0.2852,-0.0183,0.9583,-0.2837,0.8681,-0.4073,-0.2788,0.9073,-0.3148,-0.2774,0.1349,0.9512,-0.2746,0.9517,-0.1374,-0.2732,-0.7822,-0.56,-0.2727,0.3832,0.8825,-0.2725,0.2373,0.9324,-0.2721,-0.8246,-0.4959,-0.2716,0.0772,0.9593,-0.2712,0.5488,0.7907,-0.2704,-0.0583,0.961,-0.2698,0.0723,0.9602,-0.2662,0.5739,0.7744,-0.2625,0.0772,0.9618,-0.2624,-0.0957,0.9602,-0.2621,0.0827,0.9615,-0.2615,-0.5981,0.7575,-0.2604,-0.0458,-0.9644,-0.2601,0.0442,0.9646,-0.2598,0.4104,-0.8741,-0.2564,0.1738,-0.9508,-0.2561,0.7972,0.5466,-0.256,0.2607,0.9309,-0.2521,-0.9494,-0.1871,-0.252,0.9409,0.2264,-0.2519,0.0582,0.966,-0.2476,0.5862,-0.7714,-0.2453,-0.3268,0.9127,-0.2453,-0.8427,0.4793,-0.2435,-0.1076,-0.9639,-0.2412,-0.9692,0.049,-0.2404,0.071,0.9681,-0.2382,-0.1042,-0.9656,-0.2371,-0.0196,0.9713,-0.2367,0.9359,0.2609,-0.2359,0.0086,0.9717,-0.2349,-0.9266,-0.2935,-0.2337,0.1104,-0.966,-0.2309,-0.5214,-0.8215,-0.2239,-0.1154,-0.9678,-0.2238,-0.7782,-0.5867,-0.2201,0.0008,0.9755,-0.22,-0.0304,0.975,-0.2163,-0.974,-0.0668,-0.2119,-0.1263,0.9691,-0.2119,-0.9768,-0.0304,-0.2117,0.7757,-0.5946,-0.2082,0.3706,-0.9052,-0.2069,0.2007,-0.9575,-0.2061,-0.89,-0.4068,-0.2058,-0.9119,0.3552,-0.2049,-0.1989,0.9584,-0.2044,-0.9779,-0.0448,-0.2027,0.9197,0.3363,-0.2007,-0.0383,-0.9789,-0.1993,-0.3481,-0.916,-0.1992,0.9558,0.2163,-0.1988,-0.0628,0.978,-0.1986,-0.2219,-0.9546,-0.1981,-0.027,-0.9798,-0.1965,-0.831,0.5204,-0.1941,0.0956,-0.9763,-0.1934,0.9806,-0.0326,-0.1931,0.8682,0.4572,-0.193,-0.6782,0.709,-0.1911,0.0151,0.9814,-0.1897,-0.7146,0.6733,-0.1891,0.6056,-0.773,-0.1878,0.042,-0.9813,-0.1865,0.0176,-0.9823,-0.1833,0.0226,-0.9828,-0.1825,-0.0863,0.9794,-0.1822,0.0345,0.9827,-0.1807,0.9798,-0.0856,-0.1805,-0.7486,0.6379,-0.1799,0.713,-0.6777,-0.1797,-0.4052,0.8964,-0.1788,-0.846,-0.5023,-0.1779,-0.0078,0.984,-0.1776,-0.6114,-0.7711,-0.1723,-0.941,-0.2913,-0.1721,0.9822,0.0756,-0.172,0.0412,0.9842,-0.1678,0.9769,0.1325,-0.1622,0.9089,-0.3841,-0.1598,-0.0246,0.9868,-0.1595,0.5411,-0.8257,-0.1593,-0.9754,0.1524,-0.155,0.2934,-0.9433,-0.1537,-0.0895,-0.9841,-0.1527,0.1818,-0.9714,-0.1525,0.064,-0.9862,-0.1512,-0.0331,0.9879,-0.151,0.0866,-0.9847,-0.1464,0.7405,-0.6559,-0.1457,-0.4765,0.867,-0.1436,0.1371,0.9801,-0.137,0.7073,0.6935,-0.1364,0.0738,0.9879,-0.1362,-0.1072,0.9849,-0.1359,0.0644,-0.9886,-0.135,0.1949,-0.9715,-0.1337,-0.9329,0.3344,-0.1336,-0.3074,-0.9422,-0.1323,0.4518,-0.8823,-0.1291,0.9419,-0.3101,-0.128,-0.0128,0.9917,-0.125,-0.7187,-0.684,-0.1231,0.6044,-0.7871,-0.1206,0.1007,-0.9876,-0.1191,0.1077,-0.987,-0.1185,-0.0635,0.9909,-0.1157,0.3869,-0.9148,-0.1135,-0.0118,0.9935,-0.1081,-0.7384,0.6656,-0.1068,0.8548,-0.5078,-0.1066,0.0685,-0.9919,-0.1049,0.0041,-0.9945,-0.1023,-0.9182,0.3826,-0.0985,0.6614,-0.7435,-0.0966,-0.9731,-0.209,-0.0946,0.5893,-0.8024,-0.0932,-0.04,0.9948,-0.093,0.5298,-0.843,-0.0883,-0.0762,0.9932,-0.087,-0.0298,0.9958,-0.0837,-0.1681,0.9822,-0.0739,-0.9525,-0.2955,-0.0719,-0.0664,0.9952,-0.0679,0.8768,-0.4761,-0.0663,0.0654,-0.9957,-0.0654,-0.3624,0.9297,-0.0646,-0.1042,-0.9925,-0.0618,-0.8631,0.5012,-0.0579,0.8186,-0.5714,-0.0566,0.7555,0.6528,-0.0552,-0.1358,0.9892,-0.0549,-0.7733,0.6316,-0.054,0.0765,-0.9956,-0.0491,0.0231,0.9985,-0.0491,0.9815,0.1851,-0.0475,-0.0983,0.994,-0.0427,-0.462,0.8858,-0.0403,0.0003,0.9992,-0.0375,-0.1066,0.9936,-0.0347,0.997,0.0688,-0.0341,0.347,0.9372,-0.0341,-0.0039,0.9994,-0.0327,-0.2157,-0.9759,-0.0308,-0.0469,0.9984,-0.0284,-0.3586,0.933,-0.0283,-0.6295,0.7765,-0.0273,0.0244,-0.9993,-0.0269,0.0751,0.9968,-0.0264,0.5437,-0.8389,-0.0248,0.4,-0.9162,-0.0236,-0.9952,-0.0953,-0.023,0.3085,-0.951,-0.0192,-0.1963,-0.9804,-0.0187,0.5429,-0.8396,-0.018,-0.6979,0.716,-0.0174,0.519,-0.8546,-0.0167,0.1674,-0.9857,-0.012,-0.4366,-0.8996,-0.0116,0.0296,0.9995,-0.0105,0.3089,-0.951,-0.0099,0.0925,-0.9957,-0.0096,-0.1228,-0.9924,-0.004,-0.7769,-0.6297,-0.0039,-0.8375,0.5465,-0.0032,0.8907,0.4546,-0.0028,0.2011,-0.9796,0.0018,0.0947,-0.9955,0.0024,-0.026,0.9997,0.0067,-0.9979,0.065,0.009,0.5906,-0.8069,0.0117,-0.8799,-0.475,0.0143,-0.8006,-0.599,0.0145,0.9917,-0.1275,0.0147,-0.1185,0.9928,0.017,-0.1644,0.9862,0.0196,-0.0302,0.9994,0.0212,0.8499,-0.5265,0.0221,-0.0747,0.997,0.0239,0.1672,-0.9856,0.0329,-0.9648,0.2611,0.0332,0.1458,-0.9888,0.0345,0.3668,-0.9297,0.0357,-0.0142,-0.9993,0.0378,-0.0137,0.9992,0.0383,0.2056,-0.9779,0.0398,-0.9753,-0.2174,0.0404,-0.3549,-0.934,0.0405,0.3453,0.9376,0.0411,-0.8672,0.4962,0.044,0.965,-0.2585,0.0441,-0.0242,-0.9987,0.0486,-0.0456,0.9978,0.0494,0.9257,-0.3751,0.0504,0.0827,0.9953,0.051,0.9454,0.3219,0.0518,0.9217,0.3844,0.0518,0.208,-0.9768,0.0525,0.562,-0.8255,0.0537,-0.9063,0.4193,0.0554,0.0493,0.9972,0.0596,0.0787,0.9951,0.0623,-0.5832,0.8099,0.0639,-0.2737,-0.9597,0.0684,0.8369,-0.543,0.0686,0.1703,0.983,0.0688,0.9895,-0.1274,0.069,0.9728,-0.2209,0.0703,0.245,-0.967,0.0706,0.6549,0.7524,0.0714,0.1668,0.9834,0.0716,-0.882,-0.4657,0.0718,0.0464,0.9963,0.0729,0.0549,0.9958,0.0747,-0.0558,-0.9956,0.0752,0.1955,-0.9778,0.0802,0.1559,-0.9845,0.0824,0.1116,-0.9903,0.0834,-0.9668,-0.2414,0.0843,0.9808,-0.176,0.0869,-0.9942,-0.0631,0.0873,-0.5925,0.8008,0.0876,-0.5907,-0.8021,0.0888,0.1066,0.9903,0.0888,0.0963,-0.9914,0.0943,-0.9541,0.2843,0.0944,-0.2012,-0.975,0.0968,0.0777,0.9923,0.0973,-0.002,0.9953,0.0996,-0.9917,0.0809,0.1013,-0.6656,0.7394,0.1029,-0.2436,0.9644,0.1052,-0.24,-0.9651,0.1077,0.0653,-0.992,0.1096,0.4312,0.8956,0.1096,-0.7271,-0.6777,0.11,0.3287,-0.938,0.1107,0.8848,-0.4526,0.1175,0.2758,-0.954,0.1191,0.3412,-0.9324,0.1192,0.1269,-0.9847,0.1194,0.0061,-0.9928,0.1224,-0.6699,0.7323,0.1251,0.1404,-0.9822,0.1266,0.9773,0.1696,0.127,0.5012,-0.856,0.1279,-0.2017,0.9711,0.1303,-0.5609,-0.8175,0.1396,-0.5697,-0.8099,0.146,-0.2249,-0.9634,0.1488,0.0966,-0.9841,0.1507,-0.5059,0.8493,0.1512,0.1852,-0.971,0.1559,0.9843,-0.0827,0.1623,-0.3086,-0.9372,0.164,-0.9313,0.3252,0.1644,0.813,-0.5586,0.1677,0.0664,0.9836,0.1683,-0.1599,0.9727,0.1704,-0.8095,-0.5618,0.1738,-0.124,0.9769,0.1745,-0.9824,-0.0662,0.1752,0.1958,-0.9649,0.1782,0.1284,-0.9756,0.179,-0.7793,0.6006,0.1796,-0.9146,-0.3622,0.181,0.4572,-0.8708,0.1817,0.6489,-0.7389,0.1835,-0.9525,0.2429,0.1837,-0.0204,-0.9828,0.1855,0.0696,-0.9802,0.1857,-0.9761,-0.1127,0.1862,0.2528,-0.9494,0.1892,0.2944,-0.9368,0.1944,-0.006,0.9809,0.1964,-0.4205,-0.8858,0.1967,-0.2035,-0.9591,0.1976,-0.9082,0.3689,0.1985,0.4308,0.8803,0.1985,0.6409,-0.7415,0.2015,0.1563,-0.9669,0.2017,-0.8276,0.5239,0.202,-0.6108,-0.7656,0.2029,0.8984,0.3894,0.2051,-0.9572,0.2044,0.2055,-0.1562,-0.9661,0.2061,-0.0448,0.9775,0.2062,-0.0449,-0.9775,0.2109,-0.3444,-0.9148,0.2196,-0.2168,-0.9512,0.2218,-0.9677,0.1198,0.2225,-0.4658,-0.8565,0.2241,-0.4352,0.872,0.2265,0.6042,-0.764,0.2271,0.106,-0.9681,0.2281,-0.9268,0.2983,0.2298,-0.9491,-0.2154,0.2336,-0.3838,-0.8934,0.2374,0.2771,-0.931,0.2391,0.872,-0.4272,0.2401,-0.3466,-0.9068,0.241,-0.3148,0.9181,0.2425,-0.0905,-0.9659,0.2425,0.2494,-0.9375,0.2428,-0.4767,0.8449,0.2448,-0.1893,-0.9509,0.2487,-0.0492,-0.9673,0.2504,-0.916,-0.3134,0.2509,-0.2328,0.9396,0.2566,0.3336,-0.9071,0.2571,0.8389,-0.4797,0.2572,-0.0033,0.9663,0.2595,0.9527,0.1584,0.2609,0.3218,-0.9102,0.261,0.0051,-0.9653,0.2611,0.7378,-0.6225,0.2619,0.0551,0.9635,0.2624,-0.2281,-0.9376,0.2644,-0.2858,-0.9211,0.2647,0.2162,-0.9398,0.2661,0.2322,-0.9356,0.2678,-0.9634,0.0097,0.2704,-0.5355,0.8001,0.2722,-0.0823,-0.9587,0.275,-0.2269,-0.9343,0.2762,0.9607,0.0277,0.2784,-0.2856,-0.917,0.2805,-0.082,-0.9563,0.2834,0.1467,-0.9477,0.2864,0.2726,-0.9185,0.2892,0.901,-0.3234,0.2917,0.9278,-0.2324,0.2936,0.1816,-0.9385,0.2941,0.0611,-0.9538,0.2942,0.3534,-0.888,0.2963,0.9168,-0.2677,0.2965,-0.5975,0.745,0.2999,0.1117,-0.9474,0.3019,0.9489,-0.092,0.307,0.621,-0.7212,0.3079,-0.926,0.2184,0.3108,0.6008,0.7365,0.3118,0.8138,-0.4904,0.3124,-0.3711,0.8744,0.3124,-0.2987,-0.9018,0.3147,0.0828,0.9456,0.3148,-0.685,-0.657,0.3154,-0.0113,0.9489,0.317,0.0047,-0.9484,0.319,-0.8745,-0.3653,0.3198,0.8298,-0.4572,0.3204,0.0064,0.9473,0.3208,-0.5304,-0.7847,0.3215,0.1572,-0.9338,0.3222,-0.9453,-0.0517,0.3235,-0.272,-0.9063,0.3238,-0.1132,0.9393,0.325,0.0071,-0.9457,0.3254,0.398,-0.8577,0.3271,-0.0343,0.9444,0.3274,0.3484,-0.8783,0.3286,0.3836,-0.863,0.3293,0.1755,-0.9278,0.3326,0.2729,-0.9027,0.3339,0.7043,0.6265,0.3345,-0.9177,-0.2142,0.3377,0.2624,-0.9039,0.339,-0.8883,0.3097,0.3395,-0.0882,0.9364,0.3396,0.2147,-0.9157,0.3398,0.2937,-0.8935,0.3409,0.1818,-0.9223,0.3425,0.2557,-0.904,0.3427,0.2387,-0.9086,0.3471,-0.6072,-0.7147,0.3479,0.213,-0.913,0.3485,-0.4418,-0.8267,0.3507,0.1916,-0.9167,0.3523,0.2148,0.9109,0.3529,0.6738,-0.6492,0.3529,-0.7124,-0.6066,0.3543,0.3894,-0.8502,0.358,-0.846,-0.3951,0.361,0.2512,-0.8981,0.3612,-0.065,0.9302,0.3616,0.2331,-0.9027,0.3617,-0.049,0.931,0.3646,0.1771,-0.9142,0.3656,-0.6886,0.6262,0.368,-0.3593,-0.8576,0.3685,0.1989,-0.9081,0.3728,0.573,-0.7298,0.3729,-0.0089,0.9278,0.3734,0.5428,-0.7523,0.3739,0.3523,-0.858,0.3772,-0.0163,0.926,0.3777,0.486,-0.7881,0.3782,0.4493,-0.8094,0.3794,-0.523,-0.7632,0.3813,-0.9191,-0.0995,0.3814,-0.0382,0.9236,0.3908,-0.6111,-0.6883,0.3925,0.5769,-0.7163,0.3965,0.2519,0.8828};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_356_vector_2()
		{
			double[] value = {0.3989,-0.0745,-0.914,0.3997,-0.27,0.876,0.4012,-0.9107,0.0981,0.4013,0.5557,-0.7282,0.4018,0.0204,-0.9155,0.4031,0.1033,-0.9093,0.4067,-0.2607,0.8755,0.4115,-0.0239,0.9111,0.4133,-0.0103,-0.9105,0.4136,-0.2073,-0.8865,0.4143,-0.02,-0.9099,0.4189,-0.2557,0.8713,0.4189,-0.2436,0.8747,0.4231,0.8024,0.421,0.4259,-0.075,0.9016,0.4269,-0.1884,0.8845,0.4297,0.6299,0.647,0.4299,0.6403,-0.6366,0.43,0.3332,-0.8391,0.4338,0.6263,-0.6477,0.4346,0.1049,0.8945,0.4369,0.8755,-0.2065,0.4374,-0.7169,-0.5429,0.4386,-0.3311,0.8354,0.4393,-0.3557,-0.8249,0.4435,-0.0127,0.8962,0.4488,0.7637,-0.464,0.4497,-0.4311,-0.7822,0.4528,0.8916,-0.0016,0.4531,-0.8052,-0.3824,0.4535,0.8417,0.2929,0.457,0.8045,0.3794,0.4586,-0.1455,-0.8766,0.4644,-0.7062,-0.5344,0.469,-0.4255,-0.774,0.4702,0.1614,-0.8676,0.4731,-0.0667,-0.8785,0.4754,-0.1633,-0.8645,0.4759,0.858,0.1935,0.4772,0.776,-0.4125,0.4787,-0.4529,-0.7522,0.4825,-0.1243,0.867,0.4851,0.2122,0.8483,0.4859,0.3004,0.8208,0.4867,-0.0311,0.873,0.4875,-0.0537,0.8715,0.4913,0.8027,-0.3382,0.4914,-0.0024,0.8709,0.493,-0.3566,0.7936,0.4968,0.8174,-0.2916,0.4997,0.2246,-0.8365,0.4999,-0.8661,0.0075,0.5036,-0.1493,0.851,0.5112,0.1035,-0.8532,0.5124,-0.8053,-0.2983,0.5136,0.8571,-0.039,0.5149,0.4058,-0.7552,0.5149,-0.3723,-0.7722,0.5153,-0.3435,-0.7851,0.5238,0.8491,-0.0678,0.5251,-0.0236,-0.8507,0.5326,0.0515,0.8448,0.535,-0.3989,-0.7447,0.5365,0.0338,0.8432,0.5392,0.4541,-0.7093,0.5411,0.4046,-0.7372,0.5427,0.7869,0.2936,0.5433,-0.4507,-0.7083,0.5433,0.0478,0.8382,0.5491,-0.0483,-0.8344,0.5493,0.0014,0.8357,0.5509,-0.1309,0.8243,0.5528,0.8322,-0.0426,0.5532,-0.8277,-0.0936,0.5542,-0.8278,0.0873,0.5563,-0.022,0.8307,0.5566,-0.0245,0.8304,0.5586,-0.3172,-0.7664,0.5587,-0.6729,0.4848,0.5604,-0.7465,0.3589,0.561,-0.0016,0.8278,0.562,-0.104,0.8206,0.5656,-0.226,-0.7931,0.5731,-0.0477,-0.8181,0.5765,0.4767,-0.6636,0.5799,-0.2442,-0.7772,0.583,-0.1333,0.8015,0.5849,-0.3663,-0.7236,0.5859,-0.021,-0.8101,0.5868,-0.0546,0.8079,0.5886,-0.0144,0.8083,0.5895,-0.0882,-0.8029,0.5914,-0.0029,-0.8064,0.5945,-0.552,0.5847,0.5963,0.1245,-0.7931,0.5975,0.1786,0.7817,0.5985,-0.6686,0.4414,0.5994,-0.0219,-0.8002,0.6052,-0.1626,-0.7793,0.6088,-0.0421,0.7922,0.612,-0.0512,0.7892,0.6131,-0.3748,-0.6954,0.6134,-0.3749,-0.6952,0.6225,0.1287,-0.7719,0.6239,0.7752,0.0995,0.6277,-0.7271,-0.2782,0.6281,-0.3956,-0.6701,0.6298,0.6885,0.3596,0.6306,-0.316,-0.7089,0.6397,-0.7334,0.2302,0.6399,-0.1059,0.7612,0.6411,0.1901,-0.7435,0.6499,0.7045,-0.2853,0.6532,-0.0557,0.7552,0.6549,-0.428,-0.6228,0.6574,-0.0422,-0.7523,0.6593,0.3855,0.6455,0.6611,-0.057,-0.7482,0.6707,0.0808,0.7373,0.6708,0.41,-0.618,0.6744,-0.2179,0.7055,0.6745,0.7154,0.1824,0.6751,0.6134,-0.4098,0.6752,-0.5958,0.4348,0.6821,-0.0999,-0.7244,0.6852,-0.483,-0.5452,0.6921,-0.0558,-0.7197,0.6928,-0.1864,0.6967,0.6943,0.1048,-0.712,0.695,-0.2406,0.6776,0.6974,-0.2418,-0.6746,0.7002,0.4118,0.5832,0.7004,-0.2933,-0.6507,0.7099,0.0661,-0.7012,0.7101,0.2689,0.6507,0.7114,0.5922,-0.3783,0.7126,-0.1161,0.6919,0.7157,-0.5342,-0.4498,0.7161,-0.578,-0.3912,0.7184,0.029,-0.695,0.7231,-0.5838,0.3691,0.727,0.2671,-0.6325,0.7326,0.6439,0.2208,0.7356,-0.0906,0.6714,0.7362,-0.6677,-0.1103,0.7382,-0.0287,-0.674,0.7407,-0.1465,-0.6557,0.7424,-0.6699,0.0067,0.7449,-0.0642,-0.664,0.7458,0.2027,0.6345,0.7459,-0.0569,0.6636,0.7469,-0.0199,0.6647,0.7474,-0.0419,0.663,0.7474,0.4464,-0.492,0.7502,-0.1424,0.6457,0.7539,-0.3946,0.5253,0.7544,0.243,-0.6098,0.7596,-0.6461,-0.0748,0.763,-0.0496,0.6444,0.7636,-0.0229,0.6452,0.7642,-0.0729,0.6408,0.7645,-0.1802,-0.6189,0.7662,0.0187,0.6423,0.7682,-0.0682,0.6365,0.7702,-0.1059,0.629,0.7705,0.1139,-0.6272,0.7739,-0.0544,0.6309,0.7759,0.599,-0.1982,0.7768,0.629,0.0297,0.785,0.0298,0.6188,0.7869,-0.0541,0.6146,0.7876,0.0426,0.6147,0.7878,-0.3912,0.4758,0.7881,0.2219,0.5741,0.7889,-0.2084,0.5781,0.7904,-0.2566,0.5563,0.7916,0.4517,-0.4114,0.7939,0.0058,0.608,0.797,-0.472,-0.3769,0.7997,-0.138,-0.5843,0.8001,-0.1163,-0.5885,0.804,-0.2115,0.5558,0.8046,0.0237,0.5933,0.8064,-0.4924,-0.3275,0.8071,-0.1386,0.574,0.8079,0.0864,0.583,0.8086,-0.2968,-0.508,0.8097,-0.1645,-0.5633,0.8112,0.106,0.575,0.8139,-0.0424,-0.5795,0.8219,-0.1743,0.5423,0.8231,-0.1096,-0.5572,0.8239,0.174,0.5394,0.8243,0.3573,-0.4392,0.8254,0.0471,-0.5626,0.8263,-0.5553,-0.0945,0.8277,0.5533,-0.0935,0.8287,-0.0748,-0.5547,0.8293,-0.0038,-0.5588,0.83,-0.2272,0.5094,0.8319,-0.4129,0.3707,0.8342,-0.3885,-0.3914,0.8344,-0.1851,-0.5192,0.8347,-0.2282,-0.5012,0.8367,-0.0137,-0.5475,0.8379,-0.1613,-0.5214,0.8409,0.3157,0.4395,0.8464,-0.5268,0.0784,0.8482,-0.2043,-0.4888,0.8484,-0.2625,0.4597,0.8491,-0.144,0.5083,0.8495,0.1214,-0.5135,0.8518,-0.2641,0.4525,0.8519,-0.4701,0.2306,0.8536,0.1299,-0.5045,0.8537,0.4244,-0.3019,0.8542,-0.4969,-0.1528,0.8553,0.3937,-0.3367,0.8559,-0.1907,0.4807,0.8565,-0.327,-0.3992,0.8574,-0.1677,-0.4866,0.8585,-0.2192,0.4636,0.8587,0.3051,-0.4117,0.8607,0.0648,0.505,0.8609,0.0022,-0.5088,0.8612,0.0409,0.5067,0.8614,-0.1129,0.4952,0.863,-0.4886,-0.1283,0.8644,-0.3519,0.359,0.8658,0.2074,-0.4553,0.8671,-0.0519,0.4954,0.8673,-0.1348,0.4791,0.8681,-0.2626,-0.4212,0.869,-0.0927,-0.486,0.869,0.0439,-0.4928,0.87,-0.0003,0.4931,0.871,-0.195,-0.4509,0.8713,-0.4505,-0.1946,0.8721,0.4884,-0.0293,0.8723,-0.354,-0.3373,0.8744,0.4802,0.0693,0.8753,-0.2843,0.3911,0.8775,-0.2258,0.4231,0.8781,-0.1923,0.4382,0.8789,-0.0941,0.4677,0.8792,-0.2222,-0.4215,0.8797,0.1361,0.4556,0.8827,0.2955,-0.3654,0.8845,0.116,0.452,0.8885,-0.0052,0.4589,0.8885,-0.0618,0.4546,0.8886,-0.4468,-0.1036,0.8891,0.0497,0.455,0.8897,-0.0493,0.4539,0.8909,0.1523,0.428,0.8919,-0.2777,-0.3568,0.8934,-0.0334,0.4481,0.8935,-0.0614,0.4449,0.8955,0.3018,0.3272,0.8957,-0.1298,0.4253,0.8961,-0.0847,0.4356,0.8965,-0.0447,-0.4408,0.8967,-0.0641,-0.4379,0.8972,-0.3119,-0.3126,0.8973,0.2103,-0.388,0.8974,0.1622,-0.4103,0.8983,0.1897,0.3964,0.8988,-0.2058,0.3871,0.8989,0.0846,-0.4299,0.9005,-0.0828,-0.427,0.9008,-0.0271,-0.4333,0.9011,0.0226,0.433,0.9025,-0.0147,0.4304,0.9029,0.0177,-0.4296,0.9034,-0.0959,0.418,0.9035,0.4137,0.1125,0.9041,-0.026,0.4266,0.9042,0.3943,-0.1643,0.9045,-0.3611,-0.2267,0.9047,0.0419,0.424,0.905,-0.2008,0.3751,0.9057,0.1984,0.3747,0.9102,-0.1781,0.3739,0.9116,-0.0292,0.4101,0.9118,-0.166,0.3757,0.912,-0.1912,0.3629,0.9122,0.3995,-0.091,0.9128,-0.0111,-0.4082,0.9149,0.3373,0.2218,0.9153,-0.2862,-0.2835,0.9156,0.222,0.3353,0.9166,0.3955,-0.0594,0.9177,0.396,0.031,0.918,-0.051,-0.3933,0.92,0.3896,-0.0432,0.9204,-0.2354,-0.3121,0.9204,0.079,0.3828,0.9214,0.0858,0.379,0.9219,-0.0751,0.3801,0.922,-0.0246,-0.3864,0.9231,0.2055,0.3251,0.9232,-0.334,-0.1898,0.928,0.1808,0.3258,0.9282,0.0525,-0.3683,0.9284,0.0699,0.365,0.9287,0.0416,0.3686,0.929,-0.0968,0.3571,0.9291,-0.01,-0.3696,0.93,-0.1583,0.3316,0.9307,-0.1003,0.3519,0.9308,-0.0163,0.3653,0.9311,0.187,0.3131,0.9319,-0.0418,0.3604,0.9326,-0.0224,0.3603,0.9327,-0.2381,-0.2709,0.9335,-0.0558,0.3541,0.9349,-0.3511,-0.0524,0.9374,-0.1279,-0.324,0.9383,0.0104,0.3456,0.9406,-0.1143,-0.3196,0.9434,-0.031,-0.3302,0.9443,0.0032,0.329,0.9448,-0.0759,0.3186,0.945,0.1275,0.3013,0.9454,0.19,0.2649,0.9456,0.005,0.3253,0.9462,-0.0609,0.3179,0.9473,-0.0772,0.311,0.9495,0.3137,-0.0002,0.9504,-0.1357,-0.28,0.9523,-0.2564,-0.1655,0.9536,0.1572,-0.2568,0.9556,0.2259,0.1891,0.957,-0.0906,0.2754,0.9597,0.0472,0.2771,0.9614,0.2711,-0.0468,0.9629,0.2342,-0.134,0.963,-0.0858,0.2556,0.9648,-0.0951,-0.2453,0.9652,0.1227,-0.231,0.9652,-0.2234,-0.1357,0.9657,-0.1083,-0.2359,0.9666,0.2392,-0.0919,0.9696,0.0402,0.2414,0.971,-0.1235,0.2045,0.9718,0.1574,-0.1754,0.9737,-0.0292,0.226,0.9747,-0.1006,0.1998,0.9762,-0.0582,0.209,0.9765,-0.0548,0.2083,0.9775,0.0782,-0.1959,0.9776,-0.1485,-0.1491,0.9779,-0.0987,-0.1841,0.9781,0.1774,-0.1086,0.9792,-0.171,0.1093,0.9793,-0.066,0.1912,0.9793,-0.0834,0.1842,0.9794,0.1839,-0.0838,0.9819,-0.1892,0.0068,0.9828,-0.1044,0.1525,0.9835,0.1615,0.0813,0.9836,0.1219,-0.1331,0.9837,-0.1794,0.0088,0.9843,-0.1408,0.1067,0.9843,0.0062,0.1765,0.9848,-0.0494,0.1662,0.9849,-0.0237,-0.1715,0.9849,0.0391,0.1686,0.987,-0.0524,0.1519,0.9878,-0.0729,-0.1375,0.9889,0.0487,0.1401,0.9901,-0.1399,-0.0128,0.9904,-0.1177,0.073,0.9906,0.0608,0.1226,0.9907,0.0029,0.1363,0.9913,-0.0082,0.1314,0.9919,-0.1227,-0.0322,0.9924,0.1183,0.033,0.9928,-0.1148,-0.0347,0.993,0.0856,0.0818,0.9943,0.0556,0.0905,0.9948,-0.0109,-0.1014,0.9951,0.0239,-0.0963,0.9952,-0.0874,0.045,0.9952,-0.0816,-0.0537,0.9956,0.0899,-0.0254,0.9961,0.0867,-0.018,0.9968,-0.0617,-0.0513,0.9968,-0.079,-0.0101,0.9973,-0.0728,-0.006,0.9979,-0.0646,0.0025,0.9988,0.038,0.0306,0.9991,-0.0144,-0.0398,0.9996,0.009,-0.028};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfibula_Geo_5_361_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,3,1,-1,4,5,6,-1,6,7,4,-1,8,9,10,-1,11,12,13,-1,12,14,13,-1,15,16,17,-1,17,18,15,-1,19,20,21,-1,19,22,20,-1,23,24,25,-1,26,27,28,-1,27,29,28,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,38,39,36,-1,40,36,21,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,50,19,39,-1,19,36,39,-1,51,52,53,-1,51,54,52,-1,55,56,57,-1,56,58,57,-1,59,60,61,-1,59,62,60,-1,63,64,65,-1,66,67,68,-1,63,69,70,-1,71,60,66,-1,66,68,71,-1,72,73,74,-1,74,75,72,-1,76,77,78,-1,77,79,78,-1,80,61,81,-1,61,82,81,-1,83,84,85,-1,85,86,83,-1,87,88,89,-1,90,86,91,-1,90,88,86,-1,92,93,94,-1,94,95,92,-1,96,97,98,-1,88,99,83,-1,88,87,99,-1,100,101,102,-1,101,103,102,-1,104,99,105,-1,105,106,104,-1,107,108,109,-1,110,111,112,-1,112,113,110,-1,114,95,94,-1,114,115,95,-1,11,15,116,-1,15,98,116,-1,117,12,118,-1,12,119,118,-1,110,60,62,-1,110,66,60,-1,120,121,122,-1,120,109,121,-1,123,124,125,-1,126,127,128,-1,127,129,128,-1,130,131,132,-1,130,133,131,-1,134,135,136,-1,135,137,136,-1,138,139,140,-1,138,141,139,-1,142,143,144,-1,142,145,143,-1,146,147,123,-1,148,149,150,-1,149,151,150,-1,152,153,154,-1,152,155,153,-1,156,157,158,-1,140,158,159,-1,159,138,140,-1,130,149,160,-1,130,132,149,-1,161,162,163,-1,164,165,166,-1,166,167,164,-1,110,67,66,-1,110,113,67,-1,23,168,169,-1,23,170,168,-1,91,171,90,-1,91,172,171,-1,173,57,174,-1,57,175,174,-1,176,177,172,-1,172,91,176,-1,178,177,120,-1,177,176,120,-1,179,180,2,-1,2,178,179,-1,181,180,182,-1,180,179,182,-1,59,70,183,-1,70,69,183,-1,1,3,184,-1,185,186,187,-1,186,184,187,-1,165,164,188,-1,164,189,188,-1,190,191,192,-1,190,193,191,-1,194,195,196,-1,196,197,194,-1,198,199,200,-1,200,201,198,-1,202,203,204,-1,205,203,206,-1,205,161,203,-1,207,208,209,-1,207,210,208,-1,158,211,212,-1,212,159,158,-1,136,142,134,-1,142,213,134,-1,214,215,216,-1,216,146,214,-1,217,218,219,-1,220,217,221,-1,220,222,217,-1,104,111,84,-1,104,112,111,-1,102,103,89,-1,103,223,89,-1,224,225,100,-1,225,101,100,-1,226,93,227,-1,227,228,226,-1,227,223,228,-1,223,103,228,-1,105,229,230,-1,105,231,229,-1,232,98,233,-1,232,116,98,-1,234,235,236,-1,7,237,4,-1,238,239,240,-1,240,7,238,-1,241,242,238,-1,242,243,238,-1,244,5,245,-1,245,246,244,-1,247,248,24,-1,247,249,248,-1,44,46,250,-1,250,251,44,-1,49,252,253,-1,49,48,252,-1,254,32,31,-1,254,240,32,-1,48,255,252,-1,238,256,239,-1,238,243,256,-1,257,258,259,-1,257,260,258,-1,226,261,262,-1,226,234,261,-1,263,114,264,-1,263,265,114,-1,263,264,266,-1,266,267,263,-1,268,269,270,-1,268,25,269,-1,41,24,169,-1,24,23,169,-1,271,250,43,-1,250,247,43,-1,272,251,271,-1,251,250,271,-1,273,274,242,-1,274,243,242,-1,275,274,276,-1,33,277,278,-1,33,38,277,-1,279,280,258,-1,279,40,280,-1,281,259,258,-1,258,280,281,-1,253,282,49,-1,283,284,285,-1,34,283,285,-1,285,286,34,-1,34,33,278,-1,278,168,34,-1,34,286,35,-1,285,287,288,-1,285,284,287,-1,288,22,50,-1,22,19,50,-1,22,289,20,-1,290,291,292,-1,291,287,292,-1,289,281,280,-1,280,20,289,-1,293,279,260,-1,279,258,260,-1,37,277,38,-1,37,294,277,-1,242,251,272,-1,272,273,242,-1,271,43,42,-1,48,27,255,-1,48,295,27,-1,270,269,263,-1,263,267,270,-1,265,248,296,-1,248,249,296,-1,260,297,239,-1,239,256,260,-1,253,281,282,-1,253,259,281,-1,30,252,31,-1,30,253,252,-1,298,244,246,-1,298,299,244,-1,300,232,301,-1,232,302,301,-1,254,303,237,-1,303,117,237,-1,118,237,117,-1,118,4,237,-1,7,241,238,-1,7,6,241,-1,301,304,305,-1,301,302,304,-1,283,268,284,-1,283,170,268,-1,226,228,234,-1,228,235,234,-1,10,17,16,-1,16,306,10,-1,231,223,227,-1,227,229,231,-1,106,112,104,-1,106,97,112,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfibula_Geo_5_361_coordIndex_2()
		{
			int[] value = {171,102,90,-1,147,307,123,-1,307,124,123,-1,212,308,159,-1,308,309,159,-1,204,310,202,-1,204,311,310,-1,194,151,312,-1,194,150,151,-1,195,194,312,-1,312,189,195,-1,184,196,187,-1,184,3,196,-1,313,64,75,-1,313,65,64,-1,74,73,186,-1,73,314,186,-1,2,180,0,-1,81,82,72,-1,82,76,72,-1,176,91,107,-1,91,86,107,-1,82,71,76,-1,71,77,76,-1,88,83,86,-1,98,97,106,-1,106,233,98,-1,103,235,228,-1,103,101,235,-1,162,315,163,-1,315,316,163,-1,317,164,167,-1,318,147,146,-1,146,216,318,-1,309,138,159,-1,309,319,138,-1,153,155,320,-1,321,139,141,-1,0,181,197,-1,0,180,181,-1,160,149,148,-1,322,207,154,-1,154,323,322,-1,137,147,318,-1,318,136,137,-1,157,156,153,-1,153,320,157,-1,143,145,324,-1,210,207,322,-1,325,125,124,-1,124,315,325,-1,326,129,127,-1,127,327,326,-1,222,220,215,-1,215,214,222,-1,327,328,326,-1,328,329,326,-1,319,132,131,-1,188,215,220,-1,133,141,131,-1,176,109,120,-1,176,107,109,-1,12,11,119,-1,11,116,119,-1,15,18,98,-1,18,96,98,-1,62,330,111,-1,111,110,62,-1,79,56,55,-1,79,52,56,-1,83,99,84,-1,99,104,84,-1,231,105,99,-1,99,87,231,-1,96,67,97,-1,67,113,97,-1,46,299,296,-1,296,249,46,-1,305,95,115,-1,115,298,305,-1,105,230,233,-1,233,106,105,-1,300,118,119,-1,300,245,118,-1,92,227,93,-1,112,97,113,-1,89,88,102,-1,88,90,102,-1,77,53,79,-1,53,52,79,-1,72,76,73,-1,76,78,73,-1,190,192,74,-1,71,82,60,-1,82,61,60,-1,313,331,65,-1,330,85,84,-1,84,111,330,-1,183,69,108,-1,69,109,108,-1,80,63,70,-1,332,55,173,-1,55,57,173,-1,56,224,58,-1,56,9,224,-1,252,333,31,-1,252,255,333,-1,292,295,290,-1,273,276,274,-1,169,42,41,-1,297,260,257,-1,334,26,236,-1,26,28,236,-1,19,21,36,-1,51,18,54,-1,18,17,54,-1,15,11,16,-1,11,13,16,-1,118,5,4,-1,118,245,5,-1,56,54,9,-1,56,52,54,-1,236,335,334,-1,335,236,235,-1,276,272,336,-1,272,276,273,-1,289,291,337,-1,289,22,291,-1,338,339,340,-1,338,306,339,-1,333,341,342,-1,255,341,333,-1,59,80,70,-1,61,80,59,-1,183,85,330,-1,183,108,85,-1,302,233,230,-1,302,232,233,-1,116,300,119,-1,116,232,300,-1,296,298,115,-1,299,298,296,-1,247,46,249,-1,250,46,247,-1,59,330,62,-1,59,183,330,-1,321,133,343,-1,141,133,321,-1,208,328,344,-1,208,329,328,-1,310,152,209,-1,152,310,311,-1,214,325,222,-1,325,214,125,-1,128,160,126,-1,128,345,160,-1,155,311,316,-1,152,311,155,-1,346,158,157,-1,346,211,158,-1,346,135,211,-1,346,347,135,-1,211,134,212,-1,211,135,134,-1,140,322,323,-1,322,140,139,-1,348,320,307,-1,157,320,348,-1,145,136,318,-1,136,145,142,-1,156,154,153,-1,323,154,156,-1,73,332,314,-1,332,73,78,-1,323,158,140,-1,158,323,156,-1,193,185,349,-1,185,193,190,-1,321,350,210,-1,321,343,350,-1,343,345,128,-1,343,133,345,-1,179,351,182,-1,122,351,179,-1,121,65,352,-1,63,65,121,-1,127,353,354,-1,127,126,353,-1,197,150,194,-1,150,197,181,-1,139,210,322,-1,321,210,139,-1,155,307,320,-1,124,307,155,-1,57,355,175,-1,355,57,58,-1,77,68,53,-1,71,68,77,-1,1,174,2,-1,174,1,173,-1,108,86,85,-1,107,86,108,-1,81,75,64,-1,81,72,75,-1,186,190,74,-1,186,185,190,-1,196,0,197,-1,196,3,0,-1,148,126,160,-1,126,148,353,-1,313,191,331,-1,191,313,192,-1,327,354,331,-1,327,127,354,-1,356,328,327,-1,328,356,357,-1,193,356,191,-1,356,193,198,-1,201,358,357,-1,206,358,201,-1,219,162,161,-1,219,218,162,-1,317,199,349,-1,167,199,317,-1,166,205,200,-1,359,205,166,-1,189,324,188,-1,189,312,324,-1,188,216,215,-1,324,216,188,-1,312,143,324,-1,151,143,312,-1,144,309,142,-1,144,319,309,-1,204,316,311,-1,316,204,163,-1,102,355,100,-1,355,102,171,-1,18,67,96,-1,67,18,51,-1,225,338,335,-1,225,8,338,-1,302,229,304,-1,302,230,229,-1,339,14,342,-1,13,14,339,-1,26,255,27,-1,26,341,255,-1,236,261,234,-1,261,236,28,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfibula_Geo_5_361_coordIndex_3()
		{
			int[] value = {341,334,340,-1,341,26,334,-1,240,237,7,-1,254,237,240,-1,244,46,45,-1,244,299,46,-1,257,253,30,-1,257,259,253,-1,265,115,114,-1,265,296,115,-1,264,261,266,-1,264,262,261,-1,270,360,361,-1,267,360,270,-1,27,360,29,-1,27,295,360,-1,295,47,290,-1,47,295,48,-1,292,284,361,-1,284,292,287,-1,278,169,168,-1,278,42,169,-1,279,294,37,-1,294,279,293,-1,260,275,293,-1,256,275,260,-1,290,337,291,-1,290,47,337,-1,285,50,286,-1,50,285,288,-1,22,287,291,-1,288,287,22,-1,280,21,20,-1,40,21,280,-1,293,276,294,-1,293,275,276,-1,42,277,336,-1,278,277,42,-1,42,272,271,-1,42,336,272,-1,274,256,243,-1,274,275,256,-1,294,336,277,-1,276,336,294,-1,24,269,25,-1,24,248,269,-1,268,361,284,-1,268,270,361,-1,295,361,360,-1,292,361,295,-1,267,29,360,-1,29,267,266,-1,248,263,269,-1,263,248,265,-1,262,114,94,-1,262,264,114,-1,94,226,262,-1,226,94,93,-1,300,246,245,-1,301,246,300,-1,239,32,240,-1,239,297,32,-1,333,254,31,-1,333,303,254,-1,241,251,242,-1,251,241,44,-1,43,24,41,-1,43,247,24,-1,5,45,6,-1,45,5,244,-1,303,342,14,-1,303,333,342,-1,335,340,334,-1,335,338,340,-1,266,28,29,-1,28,266,261,-1,306,13,339,-1,16,13,306,-1,225,235,101,-1,335,235,225,-1,227,304,229,-1,227,92,304,-1,9,225,224,-1,8,225,9,-1,17,9,54,-1,17,10,9,-1,100,58,224,-1,355,58,100,-1,67,53,68,-1,67,51,53,-1,218,222,325,-1,217,222,218,-1,219,221,217,-1,219,359,221,-1,209,154,207,-1,209,152,154,-1,208,350,329,-1,210,350,208,-1,132,151,149,-1,132,143,151,-1,188,221,165,-1,221,188,220,-1,200,167,166,-1,200,199,167,-1,195,164,317,-1,189,164,195,-1,204,161,163,-1,161,204,203,-1,161,359,219,-1,161,205,359,-1,206,202,358,-1,202,206,203,-1,357,198,201,-1,357,356,198,-1,200,206,201,-1,200,205,206,-1,357,344,328,-1,358,344,357,-1,327,191,356,-1,327,331,191,-1,354,351,352,-1,354,353,351,-1,181,148,150,-1,148,181,182,-1,129,329,350,-1,129,326,329,-1,317,196,195,-1,317,187,196,-1,349,187,317,-1,349,185,187,-1,310,358,202,-1,310,344,358,-1,122,352,351,-1,352,122,121,-1,178,122,179,-1,178,120,122,-1,178,174,177,-1,178,2,174,-1,175,177,174,-1,172,177,175,-1,173,314,332,-1,314,173,1,-1,171,175,355,-1,171,172,175,-1,283,168,170,-1,283,34,168,-1,325,162,218,-1,325,315,162,-1,359,165,221,-1,359,166,165,-1,324,318,216,-1,324,145,318,-1,308,142,309,-1,142,308,213,-1,352,331,354,-1,65,331,352,-1,182,353,148,-1,351,353,182,-1,128,350,343,-1,128,129,350,-1,347,137,135,-1,348,137,347,-1,146,125,214,-1,146,123,125,-1,349,198,193,-1,349,199,198,-1,55,78,79,-1,55,332,78,-1,141,319,131,-1,138,319,141,-1,147,348,307,-1,147,137,348,-1,319,143,132,-1,144,143,319,-1,347,157,348,-1,157,347,346,-1,213,212,134,-1,213,308,212,-1,130,345,133,-1,130,160,345,-1,316,124,155,-1,124,316,315,-1,209,344,310,-1,209,208,344,-1,301,298,246,-1,298,301,305,-1,305,92,95,-1,305,304,92,-1,109,63,121,-1,109,69,63,-1,223,87,89,-1,223,231,87,-1,80,64,63,-1,80,81,64,-1,74,313,75,-1,74,192,313,-1,340,342,341,-1,340,339,342,-1,50,35,286,-1,50,39,35,-1,289,282,281,-1,289,337,282,-1,47,282,337,-1,47,49,282,-1,6,44,241,-1,44,6,45,-1,39,33,35,-1,39,38,33,-1,37,40,279,-1,36,40,37,-1,297,30,32,-1,297,257,30,-1,23,268,170,-1,23,25,268,-1,306,8,10,-1,306,338,8,-1,117,14,12,-1,117,303,14,-1,186,1,184,-1,186,314,1,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfibula_Geo_5_361_normalIndex_1()
		{
			int[] value = {278,336,263,-1,278,313,336,-1,47,44,88,-1,88,158,47,-1,283,298,272,-1,156,159,237,-1,159,221,237,-1,166,248,291,-1,291,199,166,-1,258,276,242,-1,258,321,276,-1,243,201,238,-1,357,341,326,-1,341,330,326,-1,219,231,253,-1,144,225,187,-1,224,222,191,-1,191,188,224,-1,235,224,242,-1,161,151,119,-1,76,102,101,-1,314,310,271,-1,240,258,188,-1,258,224,188,-1,218,296,216,-1,218,301,296,-1,332,315,361,-1,315,359,361,-1,85,91,179,-1,85,26,91,-1,155,200,95,-1,2,9,90,-1,155,18,59,-1,131,91,2,-1,2,90,131,-1,196,268,245,-1,245,181,196,-1,192,189,281,-1,189,284,281,-1,184,179,208,-1,179,182,208,-1,17,10,100,-1,100,22,17,-1,21,45,117,-1,163,22,172,-1,163,45,22,-1,92,125,112,-1,112,78,92,-1,68,5,54,-1,45,57,17,-1,45,21,57,-1,289,309,207,-1,309,227,207,-1,65,57,113,-1,113,116,65,-1,4,97,1,-1,50,7,37,-1,37,56,50,-1,106,78,112,-1,106,42,78,-1,156,166,20,-1,166,54,20,-1,135,159,14,-1,159,62,14,-1,50,91,26,-1,50,2,91,-1,61,25,8,-1,61,1,25,-1,109,167,149,-1,0,13,46,-1,13,11,46,-1,40,30,73,-1,40,39,30,-1,71,38,52,-1,38,15,52,-1,87,70,122,-1,87,23,70,-1,99,157,121,-1,99,146,157,-1,124,81,109,-1,33,80,152,-1,80,165,152,-1,180,128,174,-1,180,148,128,-1,142,93,150,-1,122,150,145,-1,145,87,122,-1,40,80,31,-1,40,73,80,-1,327,292,274,-1,311,300,338,-1,338,328,311,-1,50,9,2,-1,50,56,9,-1,243,202,193,-1,243,254,202,-1,172,212,163,-1,172,198,212,-1,353,361,269,-1,361,288,269,-1,120,178,198,-1,198,172,120,-1,139,178,61,-1,178,120,61,-1,105,203,263,-1,263,139,105,-1,154,203,48,-1,203,105,48,-1,85,59,74,-1,59,18,74,-1,336,313,349,-1,345,337,351,-1,337,349,351,-1,300,311,267,-1,311,277,267,-1,307,273,239,-1,307,335,273,-1,247,285,299,-1,299,256,247,-1,322,329,340,-1,340,317,322,-1,262,320,270,-1,342,320,316,-1,342,327,320,-1,107,72,141,-1,107,16,72,-1,150,153,130,-1,130,145,150,-1,52,99,71,-1,99,108,71,-1,176,232,211,-1,211,124,176,-1,286,279,347,-1,261,286,306,-1,261,223,286,-1,65,7,10,-1,65,37,7,-1,207,227,117,-1,227,132,117,-1,356,339,289,-1,339,309,289,-1,217,125,147,-1,147,228,217,-1,147,132,228,-1,132,227,228,-1,113,86,96,-1,113,43,86,-1,103,54,118,-1,103,20,54,-1,293,312,344,-1,158,133,47,-1,129,234,244,-1,244,158,129,-1,49,32,129,-1,32,84,129,-1,60,44,41,-1,41,53,60,-1,140,183,201,-1,140,126,183,-1,76,101,77,-1,77,19,76,-1,271,250,220,-1,271,310,250,-1,226,253,231,-1,226,244,253,-1,310,297,250,-1,129,168,234,-1,129,84,168,-1,210,190,186,-1,210,205,190,-1,217,280,209,-1,217,293,280,-1,255,106,206,-1,255,164,106,-1,255,206,282,-1,282,304,255,-1,275,252,294,-1,275,238,252,-1,161,201,193,-1,201,243,193,-1,89,77,119,-1,77,140,119,-1,115,19,89,-1,19,77,89,-1,138,127,32,-1,127,84,32,-1,162,127,175,-1,144,171,114,-1,144,191,171,-1,214,229,190,-1,214,235,229,-1,230,186,190,-1,190,229,230,-1,220,265,271,-1,308,331,319,-1,225,308,319,-1,319,241,225,-1,225,144,114,-1,114,202,225,-1,225,241,187,-1,319,355,302,-1,319,331,355,-1,302,321,240,-1,321,258,240,-1,321,305,276,-1,323,334,346,-1,334,355,346,-1,305,230,229,-1,229,276,305,-1,195,214,205,-1,214,190,205,-1,222,171,191,-1,222,197,171,-1,32,19,115,-1,115,138,32,-1,89,119,151,-1,310,341,297,-1,310,343,341,-1,294,252,255,-1,255,304,294,-1,164,183,75,-1,183,126,75,-1,205,246,234,-1,234,168,205,-1,220,230,265,-1,220,186,230,-1,219,250,231,-1,219,220,250,-1,51,60,53,-1,51,69,60,-1,34,103,58,-1,103,98,58,-1,226,215,133,-1,215,135,133,-1,14,133,135,-1,14,47,133,-1,158,49,129,-1,158,88,49,-1,58,83,67,-1,58,98,83,-1,308,275,331,-1,308,254,275,-1,217,228,293,-1,228,312,293,-1,272,291,248,-1,248,251,272,-1,43,132,147,-1,147,86,43,-1,116,37,65,-1,116,5,37,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfibula_Geo_5_361_normalIndex_2()
		{
			int[] value = {212,207,163,-1,81,104,109,-1,104,167,109,-1,130,137,145,-1,137,123,145,-1,270,177,262,-1,270,185,177,-1,247,165,236,-1,247,152,165,-1,285,247,236,-1,236,277,285,-1,349,299,351,-1,349,313,299,-1,173,200,181,-1,173,95,200,-1,245,268,337,-1,268,354,337,-1,263,203,278,-1,208,182,196,-1,182,192,196,-1,120,172,4,-1,172,22,4,-1,182,131,192,-1,131,189,192,-1,45,17,22,-1,54,5,116,-1,116,118,54,-1,227,312,228,-1,227,309,312,-1,292,213,274,-1,213,194,274,-1,325,311,328,-1,143,81,124,-1,124,211,143,-1,123,87,145,-1,123,82,87,-1,128,148,94,-1,6,70,23,-1,278,154,256,-1,278,203,154,-1,31,80,33,-1,66,107,174,-1,174,136,66,-1,15,81,143,-1,143,52,15,-1,93,142,128,-1,128,94,93,-1,157,146,233,-1,16,107,66,-1,204,149,167,-1,167,213,204,-1,63,11,13,-1,13,134,63,-1,223,261,232,-1,232,176,223,-1,134,170,63,-1,170,64,63,-1,82,73,30,-1,267,232,261,-1,39,23,30,-1,120,1,61,-1,120,4,1,-1,159,156,62,-1,156,20,62,-1,166,199,54,-1,199,68,54,-1,26,79,7,-1,7,50,26,-1,284,315,332,-1,284,296,315,-1,17,57,10,-1,57,65,10,-1,43,113,57,-1,57,21,43,-1,68,9,5,-1,9,56,5,-1,101,69,75,-1,75,126,101,-1,67,78,42,-1,42,51,67,-1,113,96,118,-1,118,116,113,-1,34,14,62,-1,34,41,14,-1,92,147,125,-1,37,5,56,-1,117,45,207,-1,45,163,207,-1,189,216,284,-1,216,296,284,-1,196,192,268,-1,192,281,268,-1,307,239,245,-1,131,182,91,-1,182,179,91,-1,173,110,95,-1,79,100,10,-1,10,7,79,-1,74,18,97,-1,18,1,97,-1,184,155,59,-1,350,332,353,-1,332,361,353,-1,315,356,359,-1,315,298,356,-1,250,257,231,-1,250,297,257,-1,346,343,323,-1,138,175,127,-1,193,151,161,-1,246,205,210,-1,348,357,344,-1,357,326,344,-1,258,242,224,-1,218,199,301,-1,199,291,301,-1,166,156,248,-1,156,237,248,-1,14,44,47,-1,14,41,44,-1,315,301,298,-1,315,296,301,-1,344,352,348,-1,352,344,312,-1,175,115,169,-1,115,175,138,-1,305,334,318,-1,305,321,334,-1,290,260,295,-1,290,251,260,-1,257,303,264,-1,297,303,257,-1,85,184,59,-1,179,184,85,-1,74,100,79,-1,74,97,100,-1,98,118,96,-1,98,103,118,-1,20,34,62,-1,20,103,34,-1,75,51,42,-1,69,51,75,-1,140,101,126,-1,77,101,140,-1,85,79,26,-1,85,74,79,-1,6,39,27,-1,23,39,6,-1,72,170,160,-1,72,64,170,-1,177,180,141,-1,180,177,185,-1,176,204,223,-1,204,176,149,-1,46,31,0,-1,46,55,31,-1,148,185,194,-1,180,185,148,-1,111,150,93,-1,111,153,150,-1,111,38,153,-1,111,29,38,-1,153,71,130,-1,153,38,71,-1,122,66,136,-1,66,122,70,-1,24,94,104,-1,93,94,24,-1,146,52,143,-1,52,146,99,-1,142,174,128,-1,136,174,142,-1,268,350,354,-1,350,268,281,-1,136,150,122,-1,150,136,142,-1,335,345,358,-1,345,335,307,-1,6,36,16,-1,6,27,36,-1,27,55,46,-1,27,39,55,-1,105,3,48,-1,8,3,105,-1,25,95,28,-1,155,95,25,-1,13,12,35,-1,13,0,12,-1,256,152,247,-1,152,256,154,-1,70,16,66,-1,6,16,70,-1,148,104,94,-1,167,104,148,-1,361,287,288,-1,287,361,359,-1,189,90,216,-1,131,90,189,-1,336,269,263,-1,269,336,353,-1,97,22,100,-1,4,22,97,-1,208,181,200,-1,208,196,181,-1,337,307,245,-1,337,345,307,-1,299,278,256,-1,299,313,278,-1,33,0,31,-1,0,33,12,-1,173,273,110,-1,273,173,239,-1,134,35,110,-1,134,13,35,-1,266,170,134,-1,170,266,259,-1,335,266,273,-1,266,335,322,-1,317,249,259,-1,316,249,317,-1,347,292,327,-1,347,279,292,-1,325,329,358,-1,328,329,325,-1,338,342,340,-1,360,342,338,-1,277,233,267,-1,277,236,233,-1,267,211,232,-1,233,211,267,-1,236,157,233,-1,165,157,236,-1,121,123,99,-1,121,82,123,-1,270,194,185,-1,194,270,274,-1,207,287,289,-1,287,207,212,-1,199,9,68,-1,9,199,218,-1,339,290,352,-1,339,283,290,-1,98,86,83,-1,98,96,86,-1,260,221,264,-1,237,221,260,-1,357,297,341,-1,357,303,297,-1,344,280,293,-1,280,344,326,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfibula_Geo_5_361_normalIndex_3()
		{
			int[] value = {303,348,295,-1,303,357,348,-1,244,133,158,-1,226,133,244,-1,60,101,102,-1,60,69,101,-1,210,220,219,-1,210,186,220,-1,164,42,106,-1,164,75,42,-1,206,280,282,-1,206,209,280,-1,294,324,333,-1,304,324,294,-1,341,324,330,-1,341,343,324,-1,343,314,323,-1,314,343,310,-1,346,331,333,-1,331,346,355,-1,114,193,202,-1,114,151,193,-1,214,197,222,-1,197,214,195,-1,205,162,195,-1,168,162,205,-1,323,318,334,-1,323,314,318,-1,319,240,241,-1,240,319,302,-1,321,355,334,-1,302,355,321,-1,229,242,276,-1,235,242,229,-1,195,175,197,-1,195,162,175,-1,151,171,169,-1,114,171,151,-1,151,115,89,-1,151,169,115,-1,127,168,84,-1,127,162,168,-1,197,169,171,-1,175,169,197,-1,201,252,238,-1,201,183,252,-1,275,333,331,-1,275,294,333,-1,343,333,324,-1,346,333,343,-1,304,330,324,-1,330,304,282,-1,183,255,252,-1,255,183,164,-1,209,106,112,-1,209,206,106,-1,112,217,209,-1,217,112,125,-1,34,53,41,-1,58,53,34,-1,234,253,244,-1,234,246,253,-1,257,226,231,-1,257,215,226,-1,49,19,32,-1,19,49,76,-1,119,201,161,-1,119,140,201,-1,44,102,88,-1,102,44,60,-1,215,264,221,-1,215,257,264,-1,352,295,348,-1,352,290,295,-1,282,326,330,-1,326,282,280,-1,251,237,260,-1,248,237,251,-1,339,312,309,-1,352,312,339,-1,147,83,86,-1,147,92,83,-1,298,339,356,-1,283,339,298,-1,291,298,301,-1,291,272,298,-1,289,359,356,-1,287,359,289,-1,9,216,90,-1,9,218,216,-1,279,223,204,-1,286,223,279,-1,347,306,286,-1,347,360,306,-1,141,174,107,-1,141,180,174,-1,72,36,64,-1,16,36,72,-1,73,165,80,-1,73,157,165,-1,267,306,300,-1,306,267,261,-1,340,328,338,-1,340,329,328,-1,285,311,325,-1,277,311,285,-1,270,327,274,-1,327,270,320,-1,327,360,347,-1,327,342,360,-1,316,262,249,-1,262,316,320,-1,259,322,317,-1,259,266,322,-1,340,316,317,-1,340,342,316,-1,259,160,170,-1,249,160,259,-1,134,273,266,-1,134,110,273,-1,35,3,28,-1,35,12,3,-1,154,33,152,-1,33,154,48,-1,11,64,36,-1,11,63,64,-1,325,299,285,-1,325,351,299,-1,358,351,325,-1,358,345,351,-1,177,249,262,-1,177,160,249,-1,8,28,3,-1,28,8,25,-1,139,8,105,-1,139,61,8,-1,139,269,178,-1,139,263,269,-1,288,178,269,-1,198,178,288,-1,353,354,350,-1,354,353,336,-1,212,288,287,-1,212,198,288,-1,308,202,254,-1,308,225,202,-1,204,292,279,-1,204,213,292,-1,360,300,306,-1,360,338,300,-1,233,143,211,-1,233,146,143,-1,137,99,123,-1,99,137,108,-1,28,110,35,-1,95,110,28,-1,48,12,33,-1,3,12,48,-1,46,36,27,-1,46,11,36,-1,29,15,38,-1,24,15,29,-1,124,149,176,-1,124,109,149,-1,358,322,335,-1,358,329,322,-1,332,281,284,-1,332,350,281,-1,23,82,30,-1,87,82,23,-1,81,24,104,-1,81,15,24,-1,82,157,73,-1,121,157,82,-1,29,93,24,-1,93,29,111,-1,108,130,71,-1,108,137,130,-1,40,55,39,-1,40,31,55,-1,194,167,148,-1,167,194,213,-1,141,160,177,-1,141,72,160,-1,58,51,53,-1,51,58,67,-1,67,92,78,-1,67,83,92,-1,1,155,25,-1,1,18,155,-1,132,21,117,-1,132,43,21,-1,184,200,155,-1,184,208,200,-1,245,173,181,-1,245,239,173,-1,295,264,303,-1,295,260,264,-1,240,187,241,-1,240,188,187,-1,305,265,230,-1,305,318,265,-1,314,265,318,-1,314,271,265,-1,88,76,49,-1,76,88,102,-1,188,144,187,-1,188,191,144,-1,222,235,214,-1,224,235,222,-1,246,219,253,-1,246,210,219,-1,243,275,254,-1,243,238,275,-1,251,283,272,-1,251,290,283,-1,135,221,159,-1,135,215,221,-1,337,336,349,-1,337,354,336,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfmet_Geo_5_367_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,4,6,5,-1,7,8,9,-1,10,11,12,-1,13,14,15,-1,16,17,18,-1,19,20,21,-1,22,23,24,-1,25,26,27,-1,28,29,12,-1,30,31,32,-1,33,31,30,-1,28,32,29,-1,34,35,36,-1,31,37,32,-1,31,38,37,-1,39,40,41,-1,42,43,44,-1,42,45,43,-1,46,47,48,-1,49,50,51,-1,51,52,49,-1,53,54,55,-1,53,56,54,-1,25,57,58,-1,58,26,25,-1,59,60,61,-1,16,62,63,-1,64,65,66,-1,66,67,64,-1,68,69,19,-1,70,71,72,-1,72,73,70,-1,19,74,68,-1,75,76,77,-1,78,79,34,-1,77,80,75,-1,81,78,82,-1,40,44,70,-1,83,84,85,-1,57,86,87,-1,75,88,89,-1,90,91,92,-1,93,94,95,-1,95,7,93,-1,96,97,98,-1,96,99,97,-1,100,101,102,-1,103,104,105,-1,104,106,105,-1,107,108,109,-1,109,110,107,-1,111,112,113,-1,111,114,112,-1,115,116,117,-1,115,118,116,-1,119,120,121,-1,119,122,120,-1,123,124,125,-1,124,126,125,-1,127,128,9,-1,9,129,127,-1,130,131,132,-1,133,134,135,-1,136,137,138,-1,136,139,137,-1,140,141,142,-1,143,144,133,-1,145,146,147,-1,147,148,145,-1,149,150,151,-1,151,152,149,-1,148,153,154,-1,148,147,153,-1,155,156,157,-1,158,159,135,-1,158,160,159,-1,161,162,163,-1,163,164,161,-1,135,134,158,-1,107,160,139,-1,107,165,160,-1,166,145,167,-1,168,169,170,-1,168,171,169,-1,172,173,101,-1,173,174,101,-1,175,6,76,-1,176,177,68,-1,178,7,9,-1,179,180,93,-1,180,181,93,-1,15,60,13,-1,182,183,33,-1,33,184,182,-1,12,29,185,-1,186,28,187,-1,28,186,32,-1,188,189,190,-1,191,192,25,-1,193,194,195,-1,196,188,37,-1,197,198,199,-1,197,200,198,-1,201,202,203,-1,203,199,201,-1,204,51,53,-1,205,196,206,-1,206,207,205,-1,206,48,207,-1,206,46,48,-1,208,209,210,-1,208,211,209,-1,212,34,36,-1,213,214,63,-1,79,213,35,-1,62,16,18,-1,17,215,18,-1,17,216,215,-1,217,45,218,-1,218,215,217,-1,50,218,45,-1,45,56,50,-1,41,87,86,-1,49,218,50,-1,49,219,218,-1,39,86,54,-1,220,221,222,-1,220,223,221,-1,40,70,73,-1,73,21,40,-1,224,176,68,-1,224,225,176,-1,85,226,4,-1,85,84,226,-1,175,105,106,-1,106,227,175,-1,89,88,228,-1,228,229,89,-1,230,80,231,-1,232,233,66,-1,225,234,235,-1,225,224,234,-1,236,87,41,-1,237,184,12,-1,60,59,238,-1,239,240,241,-1,239,242,240,-1,243,14,13,-1,244,87,243,-1,87,236,243,-1,156,245,246,-1,156,247,245,-1,248,133,144,-1,249,247,250,-1,251,252,253,-1,252,141,253,-1,100,2,254,-1,2,1,254,-1,255,256,248,-1,257,258,259,-1,257,260,258,-1,111,261,262,-1,111,263,261,-1,154,264,112,-1,264,113,112,-1,265,266,267,-1,167,109,108,-1,167,114,109,-1,268,269,163,-1,269,270,163,-1,160,161,159,-1,271,272,138,-1,138,273,271,-1,137,158,134,-1,134,274,137,-1,149,152,275,-1,275,276,149,-1,277,102,101,-1,97,278,173,-1,279,172,280,-1,281,282,283,-1,281,284,282,-1,285,286,287,-1,285,288,286,-1,168,155,157,-1,157,289,168,-1,91,90,270,-1,270,269,91,-1,290,264,291,-1,290,292,264,-1,293,294,295,-1,293,296,294,-1,297,157,298,-1,297,289,157,-1,127,91,269,-1,127,129,91,-1,92,171,90,-1,171,168,90,-1,279,280,281,-1,280,284,281,-1,97,172,279,-1,97,173,172,-1,97,99,278,-1,299,169,300,-1,299,170,169,-1,126,174,301,-1,301,302,126,-1,303,304,305,-1,303,306,304,-1,119,307,308,-1,119,309,307,-1,121,120,310,-1,311,151,115,-1,312,313,314,-1,312,153,313,-1,315,149,276,-1,170,299,316,-1,161,317,159,-1,161,164,317,-1,298,164,297,-1,298,317,164,-1,265,318,266,-1,154,112,148,-1,114,262,109,-1,114,111,262,-1,259,258,142,-1,258,319,142,-1,320,256,319,-1,319,258,320,-1,321,322,323,-1,322,324,323,-1,325,326,327,-1,325,328,326,-1,254,329,330,-1,254,1,329,-1,249,250,331,-1,143,140,332,-1,143,333,140,-1,255,248,144,-1,133,135,143,-1,15,223,334,-1,10,185,243,-1,185,244,243,-1,335,336,337,-1,335,59,336,-1,238,335,237,-1,238,59,335,-1,181,61,60,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfmet_Geo_5_367_coordIndex_2()
		{
			int[] value = {181,180,61,-1,11,238,237,-1,12,185,10,-1,12,184,33,-1,338,80,230,-1,339,68,340,-1,339,69,68,-1,224,72,234,-1,224,74,72,-1,68,74,224,-1,19,21,73,-1,42,39,54,-1,341,219,49,-1,341,62,219,-1,39,41,86,-1,217,43,45,-1,219,18,215,-1,215,218,219,-1,62,18,219,-1,63,62,213,-1,79,214,213,-1,210,209,212,-1,212,36,210,-1,228,88,209,-1,88,212,209,-1,63,214,342,-1,342,67,63,-1,48,343,207,-1,48,344,343,-1,204,52,51,-1,199,198,201,-1,38,345,346,-1,191,25,27,-1,189,26,190,-1,345,193,346,-1,186,30,32,-1,186,187,30,-1,57,244,58,-1,57,87,244,-1,343,204,347,-1,343,344,204,-1,60,15,334,-1,177,295,340,-1,295,294,340,-1,155,348,250,-1,155,316,348,-1,348,286,327,-1,327,250,348,-1,276,349,315,-1,350,351,352,-1,352,353,350,-1,352,354,353,-1,355,356,357,-1,160,162,161,-1,270,297,164,-1,164,163,270,-1,168,289,90,-1,159,317,358,-1,358,135,159,-1,298,157,246,-1,157,156,246,-1,275,314,359,-1,314,318,359,-1,100,102,2,-1,150,149,315,-1,315,309,150,-1,312,151,311,-1,312,152,151,-1,101,307,277,-1,360,361,362,-1,363,364,365,-1,364,366,365,-1,146,145,166,-1,166,272,146,-1,107,110,165,-1,367,368,267,-1,368,322,267,-1,24,369,22,-1,131,365,132,-1,131,370,365,-1,9,22,369,-1,9,8,22,-1,112,114,148,-1,263,113,371,-1,263,111,113,-1,139,136,108,-1,108,107,139,-1,372,103,373,-1,103,105,373,-1,24,23,96,-1,23,99,96,-1,129,369,92,-1,92,91,129,-1,308,122,119,-1,95,94,306,-1,94,304,306,-1,75,89,76,-1,89,373,76,-1,68,177,340,-1,78,374,82,-1,79,35,34,-1,375,215,216,-1,73,72,74,-1,74,19,73,-1,243,13,10,-1,13,60,238,-1,57,25,192,-1,192,86,57,-1,55,86,192,-1,55,54,86,-1,376,344,48,-1,32,190,29,-1,32,188,190,-1,37,188,32,-1,345,183,240,-1,240,193,345,-1,213,377,35,-1,378,196,37,-1,12,33,30,-1,12,187,28,-1,38,31,33,-1,30,187,12,-1,334,181,60,-1,101,174,379,-1,66,65,232,-1,85,380,83,-1,15,221,223,-1,12,11,237,-1,369,129,9,-1,326,381,331,-1,382,328,329,-1,328,382,383,-1,124,174,126,-1,124,379,174,-1,37,346,378,-1,346,37,38,-1,201,208,210,-1,198,208,201,-1,200,242,384,-1,194,242,200,-1,183,38,33,-1,183,345,38,-1,377,376,48,-1,377,341,376,-1,29,26,58,-1,29,190,26,-1,47,377,48,-1,47,35,377,-1,375,385,235,-1,375,216,385,-1,225,380,176,-1,386,380,225,-1,291,293,290,-1,291,117,293,-1,177,387,295,-1,387,177,85,-1,214,231,342,-1,214,81,231,-1,88,374,212,-1,374,88,338,-1,93,334,94,-1,93,181,334,-1,261,363,262,-1,364,363,261,-1,263,5,227,-1,263,371,5,-1,22,388,302,-1,22,8,388,-1,306,388,95,-1,388,306,125,-1,368,324,322,-1,368,271,324,-1,133,274,134,-1,248,274,133,-1,166,138,272,-1,166,136,138,-1,110,389,165,-1,110,370,389,-1,363,370,110,-1,363,365,370,-1,104,366,364,-1,104,390,366,-1,141,259,142,-1,259,141,252,-1,391,392,393,-1,391,257,392,-1,307,315,277,-1,307,309,315,-1,266,314,313,-1,314,266,318,-1,394,276,360,-1,349,276,394,-1,360,275,359,-1,275,360,276,-1,246,317,298,-1,317,246,358,-1,289,270,90,-1,289,297,270,-1,310,116,121,-1,296,116,310,-1,152,314,275,-1,314,152,312,-1,330,284,254,-1,282,284,330,-1,327,288,325,-1,286,288,327,-1,301,99,23,-1,278,99,301,-1,100,172,101,-1,100,280,172,-1,395,132,396,-1,132,395,130,-1,397,398,399,-1,400,398,397,-1,401,229,402,-1,372,229,401,-1,53,347,204,-1,53,55,347,-1,205,26,189,-1,27,26,205,-1,403,196,378,-1,206,196,403,-1,197,194,200,-1,195,194,197,-1,204,376,52,-1,344,376,204,-1,343,191,27,-1,347,191,343,-1,235,404,375,-1,235,234,404,-1,17,66,233,-1,17,16,66,-1,230,81,82,-1,231,81,230,-1,405,406,407,-1,239,406,405,-1,209,408,228,-1,408,209,211,-1,384,239,405,-1,242,239,384,-1,39,44,40,-1,42,44,39,-1,409,21,20,-1,409,236,21,-1,19,222,20,-1,69,222,19,-1,339,305,220,-1,305,339,410,-1,71,234,72,-1,234,71,404,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfmet_Geo_5_367_coordIndex_3()
		{
			int[] value = {83,386,232,-1,83,380,386,-1,372,89,229,-1,89,372,373,-1,398,401,411,-1,412,401,398,-1,184,335,182,-1,335,184,237,-1,180,413,414,-1,179,413,180,-1,59,415,336,-1,59,61,415,-1,337,182,335,-1,337,241,182,-1,414,397,399,-1,413,397,414,-1,416,415,417,-1,415,416,336,-1,399,411,417,-1,399,398,411,-1,417,418,416,-1,417,411,418,-1,409,15,14,-1,409,221,15,-1,223,94,334,-1,223,304,94,-1,135,333,143,-1,135,358,333,-1,332,144,143,-1,332,255,144,-1,245,140,333,-1,245,419,140,-1,419,331,253,-1,249,331,419,-1,362,394,360,-1,394,362,420,-1,421,392,422,-1,421,393,392,-1,420,382,0,-1,420,421,382,-1,381,422,251,-1,383,422,381,-1,329,325,330,-1,329,328,325,-1,327,331,250,-1,327,326,331,-1,324,320,323,-1,324,423,320,-1,424,265,321,-1,425,265,424,-1,323,258,260,-1,323,320,258,-1,319,255,332,-1,319,256,255,-1,361,424,391,-1,361,425,424,-1,142,332,140,-1,142,319,332,-1,390,396,366,-1,390,400,396,-1,366,132,365,-1,366,396,132,-1,367,153,147,-1,153,367,313,-1,147,368,367,-1,146,368,147,-1,370,268,389,-1,370,131,268,-1,165,162,160,-1,162,165,389,-1,277,349,102,-1,277,315,349,-1,291,154,311,-1,291,264,154,-1,115,291,311,-1,291,115,117,-1,150,115,151,-1,115,150,118,-1,123,310,120,-1,303,310,123,-1,124,308,379,-1,122,308,124,-1,125,303,123,-1,125,306,303,-1,357,283,354,-1,281,283,357,-1,426,97,279,-1,97,426,427,-1,98,355,300,-1,98,356,355,-1,352,428,299,-1,428,352,351,-1,285,354,283,-1,354,285,353,-1,299,348,316,-1,299,428,348,-1,300,96,98,-1,169,96,300,-1,8,95,388,-1,8,7,95,-1,369,171,92,-1,369,24,171,-1,128,178,9,-1,429,178,128,-1,3,371,292,-1,3,5,371,-1,85,3,387,-1,85,4,3,-1,339,294,410,-1,339,340,294,-1,387,292,290,-1,292,387,3,-1,410,296,310,-1,410,294,296,-1,292,113,264,-1,292,371,113,-1,179,429,413,-1,179,178,429,-1,23,302,301,-1,23,22,302,-1,428,286,348,-1,428,287,286,-1,283,288,285,-1,283,282,288,-1,287,353,285,-1,287,350,353,-1,351,287,428,-1,287,351,350,-1,300,352,299,-1,300,355,352,-1,97,356,98,-1,97,427,356,-1,357,279,281,-1,426,279,357,-1,410,303,305,-1,410,310,303,-1,296,117,116,-1,296,293,117,-1,138,274,273,-1,137,274,138,-1,136,167,108,-1,166,167,136,-1,268,162,389,-1,268,163,162,-1,127,268,131,-1,127,269,268,-1,167,148,114,-1,167,145,148,-1,321,267,322,-1,265,267,321,-1,130,429,128,-1,395,429,130,-1,429,397,413,-1,397,429,395,-1,261,227,106,-1,263,227,261,-1,424,257,391,-1,424,260,257,-1,425,360,359,-1,360,425,361,-1,323,424,321,-1,424,323,260,-1,359,265,425,-1,359,318,265,-1,423,256,320,-1,423,248,256,-1,381,253,331,-1,381,251,253,-1,421,383,382,-1,421,422,383,-1,394,0,2,-1,394,420,0,-1,252,422,392,-1,422,252,251,-1,421,362,393,-1,420,362,421,-1,419,141,140,-1,419,253,141,-1,247,419,245,-1,419,247,249,-1,245,358,246,-1,245,333,358,-1,247,155,250,-1,155,247,156,-1,14,236,409,-1,243,236,14,-1,416,407,406,-1,416,418,407,-1,418,408,407,-1,402,408,418,-1,416,337,336,-1,416,406,337,-1,399,415,414,-1,399,417,415,-1,241,406,239,-1,406,241,337,-1,241,183,182,-1,241,240,183,-1,61,414,415,-1,180,414,61,-1,232,385,233,-1,232,386,385,-1,67,77,64,-1,77,67,342,-1,411,402,418,-1,411,401,402,-1,400,412,398,-1,390,412,400,-1,105,76,373,-1,175,76,105,-1,64,76,226,-1,76,64,77,-1,84,232,65,-1,232,84,83,-1,220,69,339,-1,222,69,220,-1,41,21,236,-1,21,41,40,-1,221,20,222,-1,221,409,20,-1,220,304,223,-1,305,304,220,-1,375,217,215,-1,375,404,217,-1,213,341,377,-1,62,341,213,-1,208,405,211,-1,405,208,384,-1,407,211,405,-1,407,408,211,-1,338,82,374,-1,230,82,338,-1,233,216,17,-1,385,216,233,-1,203,206,403,-1,203,46,206,-1,207,27,205,-1,343,27,207,-1,347,192,191,-1,55,192,347,-1,47,203,202,-1,203,47,46,-1,403,199,203,-1,199,403,197,-1,195,403,378,-1,197,403,195,-1,346,195,378,-1,193,195,346,-1,189,196,205,-1,189,188,196,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlfmet_Geo_5_367_coordIndex_4()
		{
			int[] value = {244,29,58,-1,244,185,29,-1,93,178,179,-1,178,93,7,-1,6,227,5,-1,175,227,6,-1,408,229,228,-1,229,408,402,-1,412,372,401,-1,103,372,412,-1,395,400,397,-1,396,400,395,-1,174,278,301,-1,278,174,173,-1,325,282,330,-1,288,282,325,-1,100,284,280,-1,284,100,254,-1,169,24,96,-1,171,24,169,-1,170,155,168,-1,155,170,316,-1,119,150,309,-1,118,150,119,-1,146,271,368,-1,146,272,271,-1,355,354,352,-1,357,354,355,-1,427,357,356,-1,427,426,357,-1,102,394,2,-1,349,394,102,-1,267,313,367,-1,267,266,313,-1,153,311,154,-1,153,312,311,-1,361,393,362,-1,361,391,393,-1,257,252,392,-1,257,259,252,-1,390,103,412,-1,104,103,390,-1,158,139,160,-1,158,137,139,-1,273,248,423,-1,273,274,248,-1,271,423,324,-1,271,273,423,-1,130,127,131,-1,127,130,128,-1,302,125,126,-1,388,125,302,-1,120,124,123,-1,122,124,120,-1,121,118,119,-1,118,121,116,-1,262,110,109,-1,363,110,262,-1,364,106,104,-1,364,261,106,-1,379,307,101,-1,307,379,308,-1,10,238,11,-1,10,13,238,-1,43,404,71,-1,43,217,404,-1,75,338,88,-1,338,75,80,-1,79,81,214,-1,81,79,78,-1,342,80,77,-1,231,80,342,-1,374,34,212,-1,34,374,78,-1,85,176,380,-1,176,85,177,-1,295,290,293,-1,295,387,290,-1,386,235,385,-1,386,225,235,-1,71,44,43,-1,71,70,44,-1,16,67,66,-1,16,63,67,-1,226,65,64,-1,84,65,226,-1,202,35,47,-1,202,36,35,-1,56,51,50,-1,51,56,53,-1,52,341,49,-1,376,341,52,-1,56,42,54,-1,56,45,42,-1,242,193,240,-1,193,242,194,-1,198,384,208,-1,200,384,198,-1,202,210,36,-1,201,210,202,-1,6,226,76,-1,4,226,6,-1,0,329,1,-1,329,0,382,-1,381,328,383,-1,326,328,381,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfmet_Geo_5_367_normalIndex_1()
		{
			int[] value = {254,233,188,-1,405,422,425,-1,422,417,425,-1,8,6,31,-1,112,64,30,-1,102,126,103,-1,427,418,391,-1,163,161,142,-1,9,23,51,-1,157,152,197,-1,101,89,30,-1,99,97,187,-1,57,97,99,-1,101,187,89,-1,313,256,305,-1,97,199,187,-1,97,125,199,-1,154,158,133,-1,212,258,200,-1,212,282,258,-1,135,147,166,-1,210,281,184,-1,184,164,210,-1,191,193,201,-1,191,235,193,-1,157,110,109,-1,109,152,157,-1,46,53,33,-1,427,304,387,-1,393,389,401,-1,401,390,393,-1,236,214,163,-1,192,239,220,-1,220,151,192,-1,163,170,236,-1,383,429,385,-1,301,303,313,-1,385,371,383,-1,369,301,338,-1,158,200,192,-1,421,415,373,-1,110,106,96,-1,383,380,395,-1,67,81,71,-1,27,79,58,-1,58,8,27,-1,2,40,41,-1,2,25,40,-1,87,108,194,-1,340,325,416,-1,325,378,416,-1,333,375,336,-1,336,315,333,-1,374,360,376,-1,374,359,360,-1,270,267,293,-1,270,266,267,-1,269,222,268,-1,269,205,222,-1,137,124,98,-1,124,92,98,-1,86,82,31,-1,31,45,86,-1,117,145,183,-1,321,331,271,-1,406,381,409,-1,406,365,381,-1,243,261,277,-1,274,326,321,-1,384,398,419,-1,419,388,384,-1,225,248,240,-1,240,189,225,-1,388,350,351,-1,388,419,350,-1,44,88,62,-1,328,249,271,-1,328,317,249,-1,242,247,138,-1,138,148,242,-1,271,331,328,-1,333,317,365,-1,333,309,317,-1,403,384,377,-1,26,15,17,-1,26,50,15,-1,69,66,108,-1,66,90,108,-1,423,417,429,-1,307,320,236,-1,11,8,31,-1,21,22,27,-1,22,39,27,-1,103,53,102,-1,18,43,57,-1,57,0,18,-1,30,89,80,-1,116,101,68,-1,101,116,187,-1,182,160,121,-1,198,150,157,-1,159,155,209,-1,162,182,199,-1,186,219,181,-1,186,179,219,-1,229,173,144,-1,144,181,229,-1,167,184,191,-1,165,162,169,-1,169,168,165,-1,169,166,168,-1,169,135,166,-1,255,332,306,-1,255,276,332,-1,344,313,305,-1,299,368,387,-1,303,299,256,-1,304,427,391,-1,418,370,391,-1,418,372,370,-1,308,282,345,-1,345,370,308,-1,281,345,282,-1,282,235,281,-1,133,96,106,-1,210,345,281,-1,210,346,345,-1,154,106,193,-1,180,129,172,-1,180,130,129,-1,158,192,151,-1,151,142,158,-1,251,307,236,-1,251,311,307,-1,373,426,422,-1,373,415,426,-1,423,416,378,-1,378,411,423,-1,395,380,343,-1,343,354,395,-1,408,371,414,-1,399,397,401,-1,311,288,324,-1,311,251,288,-1,143,96,133,-1,37,0,30,-1,53,46,59,-1,114,84,76,-1,114,118,84,-1,146,126,102,-1,83,96,146,-1,96,143,146,-1,88,153,131,-1,88,104,153,-1,364,321,326,-1,113,104,85,-1,238,263,223,-1,263,261,223,-1,87,188,122,-1,188,233,122,-1,312,322,364,-1,327,298,272,-1,327,349,298,-1,374,366,347,-1,374,404,366,-1,351,353,360,-1,353,376,360,-1,341,358,402,-1,377,336,375,-1,377,359,336,-1,139,95,138,-1,95,93,138,-1,317,242,249,-1,410,396,409,-1,409,420,410,-1,381,328,331,-1,331,386,381,-1,225,189,241,-1,241,230,225,-1,232,194,108,-1,40,55,66,-1,12,69,42,-1,3,47,7,-1,3,52,47,-1,13,61,29,-1,13,60,61,-1,26,44,62,-1,62,56,26,-1,81,67,93,-1,93,95,81,-1,352,353,318,-1,352,382,353,-1,314,287,330,-1,314,273,287,-1,91,62,94,-1,91,56,62,-1,86,81,95,-1,86,45,81,-1,71,50,67,-1,50,26,67,-1,12,42,3,-1,42,52,3,-1,40,69,12,-1,40,66,69,-1,40,25,55,-1,4,15,28,-1,4,17,15,-1,92,90,65,-1,65,63,92,-1,140,123,156,-1,140,100,123,-1,269,237,202,-1,269,289,237,-1,268,222,215,-1,297,240,270,-1,280,348,264,-1,280,350,348,-1,265,225,230,-1,17,4,16,-1,242,171,249,-1,242,148,171,-1,94,148,91,-1,94,171,148,-1,341,310,358,-1,351,360,388,-1,359,347,336,-1,359,374,347,-1,272,298,277,-1,298,294,277,-1,335,322,294,-1,294,298,335,-1,362,424,361,-1,424,413,361,-1,134,176,105,-1,134,211,176,-1,122,218,107,-1,122,233,218,-1,113,85,149,-1,274,243,290,-1,274,213,243,-1,312,364,326,-1,321,271,274,-1,103,130,78,-1,112,80,146,-1,80,83,146,-1,49,70,74,-1,49,46,70,-1,59,49,37,-1,59,46,49,-1,39,33,53,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfmet_Geo_5_367_normalIndex_2()
		{
			int[] value = {39,22,33,-1,64,59,37,-1,30,80,112,-1,30,0,57,-1,379,371,408,-1,234,236,284,-1,234,214,236,-1,251,220,288,-1,251,170,220,-1,236,170,251,-1,163,142,151,-1,212,154,193,-1,217,346,210,-1,217,304,346,-1,154,133,106,-1,308,258,282,-1,346,391,370,-1,370,345,346,-1,304,391,346,-1,387,304,299,-1,303,368,299,-1,306,332,344,-1,344,305,306,-1,343,380,332,-1,380,344,332,-1,387,368,400,-1,400,390,387,-1,166,190,168,-1,166,178,190,-1,167,164,184,-1,181,219,229,-1,125,111,216,-1,198,157,197,-1,160,152,121,-1,111,159,216,-1,116,99,187,-1,116,68,99,-1,110,83,109,-1,110,96,83,-1,190,167,207,-1,190,178,167,-1,53,103,78,-1,320,330,284,-1,330,287,284,-1,44,48,85,-1,44,16,48,-1,48,61,105,-1,105,85,48,-1,230,244,265,-1,19,34,24,-1,24,14,19,-1,24,10,14,-1,32,36,1,-1,317,247,242,-1,93,91,148,-1,148,138,93,-1,26,56,67,-1,249,171,195,-1,195,271,249,-1,94,62,131,-1,62,88,131,-1,241,264,302,-1,264,310,302,-1,87,194,188,-1,248,225,265,-1,265,289,248,-1,280,240,297,-1,280,189,240,-1,108,237,232,-1,286,319,275,-1,316,323,262,-1,323,295,262,-1,398,384,403,-1,403,396,398,-1,333,315,309,-1,412,394,402,-1,394,424,402,-1,51,38,9,-1,145,262,183,-1,145,250,262,-1,31,9,38,-1,31,6,9,-1,360,359,388,-1,404,376,407,-1,404,374,376,-1,365,406,375,-1,375,333,365,-1,355,340,428,-1,340,416,428,-1,51,23,2,-1,23,25,2,-1,45,38,71,-1,71,81,45,-1,202,205,269,-1,58,79,100,-1,79,123,100,-1,383,395,429,-1,395,428,429,-1,236,320,284,-1,301,339,338,-1,303,256,313,-1,337,370,372,-1,151,220,170,-1,170,163,151,-1,146,102,112,-1,102,53,59,-1,110,157,150,-1,150,106,110,-1,201,106,150,-1,201,193,106,-1,185,178,166,-1,187,121,89,-1,187,182,121,-1,199,182,187,-1,111,43,84,-1,84,159,111,-1,299,227,256,-1,196,162,199,-1,30,57,99,-1,30,68,101,-1,125,97,57,-1,99,68,30,-1,78,39,53,-1,108,90,120,-1,401,389,399,-1,373,363,421,-1,103,129,130,-1,30,64,37,-1,38,45,31,-1,176,221,149,-1,260,211,218,-1,211,260,245,-1,124,90,92,-1,124,120,90,-1,199,216,196,-1,216,199,125,-1,229,255,306,-1,219,255,229,-1,179,118,175,-1,155,118,179,-1,43,125,57,-1,43,111,125,-1,227,185,166,-1,227,217,185,-1,89,152,109,-1,89,121,152,-1,147,227,166,-1,147,256,227,-1,337,357,324,-1,337,372,357,-1,311,363,307,-1,356,363,311,-1,318,314,352,-1,318,293,314,-1,320,367,330,-1,367,320,373,-1,368,414,400,-1,368,369,414,-1,380,339,344,-1,339,380,379,-1,27,78,79,-1,27,39,78,-1,366,316,347,-1,323,316,366,-1,404,425,411,-1,404,407,425,-1,9,54,63,-1,9,6,54,-1,100,54,58,-1,54,100,98,-1,394,413,424,-1,394,410,413,-1,321,386,331,-1,364,386,321,-1,403,409,396,-1,403,406,409,-1,315,252,309,-1,315,250,252,-1,316,250,315,-1,316,262,250,-1,325,295,323,-1,325,279,295,-1,261,272,277,-1,272,261,263,-1,334,278,285,-1,334,327,278,-1,237,265,232,-1,237,289,265,-1,358,264,348,-1,264,358,310,-1,257,230,286,-1,244,230,257,-1,286,241,302,-1,241,286,230,-1,131,171,94,-1,171,131,195,-1,56,93,67,-1,56,91,93,-1,215,267,268,-1,273,267,215,-1,189,264,241,-1,264,189,280,-1,107,52,122,-1,47,52,107,-1,105,60,134,-1,61,60,105,-1,65,25,23,-1,55,25,65,-1,87,69,108,-1,87,42,69,-1,119,183,204,-1,183,119,117,-1,127,226,132,-1,203,226,127,-1,296,354,292,-1,355,354,296,-1,191,207,167,-1,191,201,207,-1,165,152,160,-1,197,152,165,-1,174,162,196,-1,169,162,174,-1,186,155,179,-1,209,155,186,-1,167,185,164,-1,178,185,167,-1,190,198,197,-1,207,198,190,-1,324,300,337,-1,324,288,300,-1,418,401,397,-1,418,427,401,-1,408,369,338,-1,414,369,408,-1,206,115,224,-1,114,115,206,-1,332,291,343,-1,291,332,276,-1,175,114,206,-1,118,114,175,-1,154,200,158,-1,212,200,154,-1,141,142,161,-1,141,143,142,-1,163,172,161,-1,214,172,163,-1,234,156,180,-1,156,234,208,-1,239,288,220,-1,288,239,300,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfmet_Geo_5_367_normalIndex_3()
		{
			int[] value = {421,356,399,-1,421,363,356,-1,355,395,354,-1,395,355,428,-1,226,296,228,-1,283,296,226,-1,0,49,18,-1,49,0,37,-1,22,72,75,-1,21,72,22,-1,46,73,70,-1,46,33,73,-1,74,18,49,-1,74,76,18,-1,75,127,132,-1,72,127,75,-1,128,73,136,-1,73,128,70,-1,132,228,136,-1,132,226,228,-1,136,231,128,-1,136,228,231,-1,141,103,126,-1,141,129,103,-1,130,79,78,-1,130,123,79,-1,271,213,274,-1,271,195,213,-1,290,326,274,-1,290,312,326,-1,153,243,213,-1,153,177,243,-1,177,149,223,-1,113,149,177,-1,275,257,286,-1,257,275,253,-1,259,278,246,-1,259,285,278,-1,253,260,254,-1,253,259,260,-1,221,246,238,-1,245,246,221,-1,218,134,107,-1,218,211,134,-1,105,149,85,-1,105,176,149,-1,413,335,361,-1,413,392,335,-1,342,341,362,-1,329,341,342,-1,361,298,349,-1,361,335,298,-1,294,312,290,-1,294,322,312,-1,319,342,334,-1,319,329,342,-1,277,290,243,-1,277,294,290,-1,279,204,295,-1,279,203,204,-1,295,183,262,-1,295,204,183,-1,412,350,419,-1,350,412,348,-1,419,394,412,-1,398,394,419,-1,250,139,252,-1,250,145,139,-1,309,247,317,-1,247,309,252,-1,232,244,194,-1,232,265,244,-1,318,351,297,-1,318,353,351,-1,270,318,297,-1,318,270,293,-1,248,270,240,-1,270,248,266,-1,137,215,222,-1,140,215,137,-1,124,202,120,-1,205,202,124,-1,98,140,137,-1,98,100,140,-1,1,7,10,-1,3,7,1,-1,5,40,12,-1,40,5,35,-1,41,32,28,-1,41,36,32,-1,24,20,4,-1,20,24,34,-1,13,10,7,-1,10,13,14,-1,4,48,16,-1,4,20,48,-1,28,2,41,-1,15,2,28,-1,6,58,54,-1,6,8,58,-1,38,50,71,-1,38,51,50,-1,82,11,31,-1,77,11,82,-1,405,407,382,-1,405,425,407,-1,373,405,367,-1,373,422,405,-1,234,287,208,-1,234,284,287,-1,367,382,352,-1,382,367,405,-1,208,273,215,-1,208,287,273,-1,382,376,353,-1,382,407,376,-1,21,77,72,-1,21,11,77,-1,23,63,65,-1,23,9,63,-1,20,61,48,-1,20,29,61,-1,7,60,13,-1,7,47,60,-1,29,14,13,-1,29,19,14,-1,34,29,20,-1,29,34,19,-1,28,24,4,-1,28,32,24,-1,40,36,41,-1,40,35,36,-1,1,12,3,-1,5,12,1,-1,208,140,156,-1,208,215,140,-1,273,293,267,-1,273,314,293,-1,409,386,420,-1,381,386,409,-1,406,377,375,-1,403,377,406,-1,139,247,252,-1,139,138,247,-1,86,139,145,-1,86,95,139,-1,377,388,359,-1,377,384,388,-1,362,402,424,-1,341,402,362,-1,117,77,82,-1,119,77,117,-1,77,127,72,-1,127,77,119,-1,366,411,378,-1,404,411,366,-1,342,327,334,-1,342,349,327,-1,329,286,302,-1,286,329,319,-1,361,342,362,-1,342,361,349,-1,302,341,329,-1,302,310,341,-1,392,322,335,-1,392,364,322,-1,221,223,149,-1,221,238,223,-1,259,245,260,-1,259,246,245,-1,257,254,188,-1,257,253,254,-1,263,246,278,-1,246,263,238,-1,259,275,285,-1,253,275,259,-1,177,261,243,-1,177,223,261,-1,104,177,153,-1,177,104,113,-1,153,195,131,-1,153,213,195,-1,104,44,85,-1,44,104,88,-1,126,143,141,-1,146,143,126,-1,128,224,115,-1,128,231,224,-1,231,291,224,-1,292,291,231,-1,128,74,70,-1,128,115,74,-1,132,73,75,-1,132,136,73,-1,76,115,114,-1,115,76,74,-1,76,43,18,-1,76,84,43,-1,33,75,73,-1,22,75,33,-1,399,357,397,-1,399,356,357,-1,390,385,393,-1,385,390,400,-1,228,292,231,-1,228,296,292,-1,203,283,226,-1,279,283,203,-1,416,429,428,-1,423,429,416,-1,393,429,426,-1,429,393,385,-1,415,399,389,-1,399,415,421,-1,180,214,234,-1,172,214,180,-1,133,142,143,-1,142,133,158,-1,129,161,172,-1,129,141,161,-1,180,123,130,-1,156,123,180,-1,337,308,370,-1,337,300,308,-1,299,217,227,-1,304,217,299,-1,255,206,276,-1,206,255,175,-1,224,276,206,-1,224,291,276,-1,379,338,339,-1,408,338,379,-1,397,372,418,-1,357,372,397,-1,144,169,174,-1,144,135,169,-1,168,197,165,-1,190,197,168,-1,207,150,198,-1,201,150,207,-1,147,144,173,-1,144,147,135,-1,174,181,144,-1,181,174,186,-1,209,174,196,-1,186,174,209,-1,216,209,196,-1,159,209,216,-1,160,162,165,-1,160,182,162,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlfmet_Geo_5_367_normalIndex_4()
		{
			int[] value = {83,89,109,-1,83,80,89,-1,27,11,21,-1,11,27,8,-1,417,411,425,-1,423,411,417,-1,291,354,343,-1,354,291,292,-1,283,355,296,-1,340,355,283,-1,119,203,127,-1,204,203,119,-1,90,55,65,-1,55,90,66,-1,134,47,107,-1,60,47,134,-1,87,52,42,-1,52,87,122,-1,15,51,2,-1,50,51,15,-1,17,44,26,-1,44,17,16,-1,269,248,289,-1,266,248,269,-1,398,410,394,-1,398,396,410,-1,32,10,24,-1,1,10,32,-1,35,1,36,-1,35,5,1,-1,194,257,188,-1,244,257,194,-1,402,348,412,-1,402,358,348,-1,350,297,351,-1,350,280,297,-1,319,285,275,-1,319,334,285,-1,327,263,278,-1,327,272,263,-1,279,340,283,-1,325,340,279,-1,328,365,317,-1,328,381,365,-1,420,364,392,-1,420,386,364,-1,410,392,413,-1,410,420,392,-1,117,86,145,-1,86,117,82,-1,63,98,92,-1,54,98,63,-1,222,124,137,-1,205,124,222,-1,268,266,269,-1,266,268,267,-1,347,315,336,-1,316,315,347,-1,323,378,325,-1,323,366,378,-1,120,237,108,-1,237,120,202,-1,112,59,64,-1,112,102,59,-1,258,300,239,-1,258,308,300,-1,383,379,380,-1,379,383,371,-1,303,369,368,-1,369,303,301,-1,400,371,385,-1,414,371,400,-1,339,313,344,-1,313,339,301,-1,373,307,363,-1,307,373,320,-1,330,352,314,-1,330,367,352,-1,356,324,357,-1,356,311,324,-1,239,200,258,-1,239,192,200,-1,427,390,401,-1,427,387,390,-1,426,389,393,-1,415,389,426,-1,173,256,147,-1,173,305,256,-1,235,184,281,-1,184,235,191,-1,164,217,210,-1,185,217,164,-1,235,212,193,-1,235,282,212,-1,118,159,84,-1,159,118,155,-1,219,175,255,-1,179,175,219,-1,173,306,305,-1,229,306,173,-1,417,426,429,-1,422,426,417,-1,254,218,233,-1,218,254,260,-1,221,211,245,-1,176,211,221,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfmphal_Geo_5_373_coordIndex_2()
		{
			int[] value = {161,176,186,-1,176,161,160,-1,14,136,45,-1,136,14,58,-1,128,18,131,-1,24,18,128,-1,23,36,182,-1,23,37,36,-1,12,133,132,-1,133,12,163,-1,25,135,42,-1,27,135,25,-1,174,164,184,-1,164,174,149,-1,22,169,167,-1,22,134,169,-1,33,181,35,-1,162,181,33,-1,86,62,127,-1,86,87,62,-1,82,183,157,-1,81,183,82,-1,150,191,153,-1,150,192,191,-1,60,159,80,-1,60,175,159,-1,102,178,103,-1,178,102,108,-1,183,110,140,-1,183,81,110,-1,79,191,192,-1,79,190,191,-1,76,192,65,-1,76,79,192,-1,67,76,65,-1,76,67,77,-1,112,70,72,-1,70,112,117,-1,144,69,68,-1,69,144,115,-1,166,71,152,-1,166,72,71,-1,105,177,179,-1,105,85,177,-1,188,153,191,-1,153,188,154,-1,189,168,172,-1,190,168,189,-1,175,5,4,-1,175,60,5,-1,42,185,44,-1,135,185,42,-1,173,187,54,-1,173,170,187,-1,189,84,188,-1,109,84,189,-1,54,130,56,-1,54,187,130,-1,88,162,91,-1,181,162,88,-1,133,185,59,-1,186,185,133,-1,184,93,92,-1,184,164,93,-1,180,48,49,-1,48,180,64,-1,98,92,96,-1,98,184,92,-1,107,157,183,-1,156,157,107,-1,52,67,50,-1,52,77,67,-1,35,182,36,-1,181,182,35,-1,97,180,49,-1,129,180,97,-1,137,18,20,-1,18,137,131,-1,103,179,177,-1,103,178,179,-1,4,176,175,-1,4,44,176,-1,139,174,99,-1,138,174,139,-1,173,147,171,-1,173,148,147,-1,172,169,170,-1,168,169,172,-1,38,167,78,-1,38,37,167,-1,34,36,39,-1,34,35,36,-1,158,111,145,-1,111,158,122,-1,143,166,165,-1,166,143,113,-1,155,75,165,-1,75,155,73,-1,136,26,95,-1,136,27,26,-1,141,29,46,-1,30,29,141,-1,93,31,28,-1,93,55,31,-1,149,53,164,-1,53,149,148,-1,167,23,22,-1,167,37,23,-1,21,18,24,-1,19,18,21,-1,11,89,12,-1,89,11,100,-1,91,161,163,-1,91,162,161,-1,8,51,9,-1,51,8,80,-1,32,80,159,-1,51,80,32,-1,5,87,6,-1,87,5,62,-1,66,120,57,-1,66,118,120,-1,123,127,126,-1,123,122,127,-1,0,158,3,-1,0,86,158,-1,124,156,101,-1,146,156,124,-1,82,116,74,-1,82,157,116,-1,155,153,154,-1,155,152,153,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfmphal_Geo_5_373_normalIndex_2()
		{
			int[] value = {42,90,80,-1,90,42,47,-1,78,123,143,-1,123,78,61,-1,87,70,116,-1,55,70,87,-1,24,6,7,-1,24,23,6,-1,40,95,85,-1,95,40,43,-1,160,77,102,-1,138,77,160,-1,184,168,177,-1,168,184,174,-1,41,60,39,-1,41,68,60,-1,14,0,2,-1,12,0,14,-1,79,140,86,-1,79,58,140,-1,176,192,186,-1,172,192,176,-1,45,67,75,-1,45,50,67,-1,117,52,51,-1,117,103,52,-1,180,162,159,-1,162,180,183,-1,192,164,190,-1,192,172,164,-1,49,67,50,-1,49,71,67,-1,29,50,28,-1,29,49,50,-1,18,29,28,-1,29,18,15,-1,69,36,72,-1,36,69,48,-1,104,99,93,-1,99,104,97,-1,84,53,76,-1,84,72,53,-1,64,127,135,-1,64,56,127,-1,120,75,67,-1,75,120,126,-1,125,65,118,-1,71,65,125,-1,103,109,88,-1,103,117,109,-1,102,81,92,-1,77,81,102,-1,139,108,131,-1,139,111,108,-1,125,152,120,-1,149,152,125,-1,131,110,115,-1,131,108,110,-1,1,12,11,-1,0,12,1,-1,95,81,74,-1,80,81,95,-1,177,165,169,-1,177,168,165,-1,134,122,121,-1,122,134,136,-1,175,169,170,-1,175,177,169,-1,185,186,192,-1,179,186,185,-1,16,18,17,-1,16,15,18,-1,2,7,6,-1,0,7,2,-1,124,134,121,-1,119,134,124,-1,137,70,96,-1,70,137,116,-1,159,135,127,-1,159,162,135,-1,88,90,103,-1,88,92,90,-1,187,184,181,-1,189,184,187,-1,139,166,147,-1,139,153,166,-1,118,60,111,-1,65,60,118,-1,22,39,38,-1,22,23,39,-1,8,6,9,-1,8,2,6,-1,91,73,83,-1,73,91,62,-1,106,84,98,-1,84,106,94,-1,112,89,98,-1,89,112,130,-1,123,163,161,-1,123,138,163,-1,182,157,154,-1,191,157,182,-1,165,151,173,-1,165,146,151,-1,174,150,168,-1,150,174,153,-1,39,24,41,-1,39,23,24,-1,32,70,55,-1,33,70,32,-1,59,13,40,-1,13,59,30,-1,11,42,43,-1,11,12,42,-1,37,25,27,-1,25,37,51,-1,20,51,52,-1,25,51,20,-1,109,58,63,-1,58,109,140,-1,4,19,3,-1,4,26,19,-1,46,86,54,-1,46,62,86,-1,101,91,107,-1,101,79,91,-1,145,179,171,-1,142,179,145,-1,176,148,141,-1,176,186,148,-1,112,75,126,-1,112,76,75,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfmphal3_Geo_5_385_coordIndex_2()
		{
			int[] value = {162,142,161,-1,162,145,142,-1,54,144,146,-1,54,55,144,-1,155,46,150,-1,155,154,46,-1,141,156,153,-1,141,139,156,-1,97,85,152,-1,97,157,85,-1,6,94,7,-1,94,6,50,-1,151,44,43,-1,44,151,90,-1,45,150,46,-1,45,53,150,-1,69,130,123,-1,130,69,68,-1,149,29,40,-1,149,148,29,-1,148,36,78,-1,148,37,36,-1,79,18,147,-1,18,79,77,-1,80,98,92,-1,80,31,98,-1,61,83,62,-1,61,39,83,-1,25,118,126,-1,27,118,25,-1,115,144,14,-1,144,115,146,-1,142,143,99,-1,142,145,143,-1,31,106,98,-1,31,30,106,-1,1,134,2,-1,1,122,134,-1,139,140,84,-1,139,141,140,-1,87,86,101,-1,138,86,87,-1,2,136,137,-1,134,136,2,-1,95,135,132,-1,95,133,135,-1,72,64,66,-1,72,71,64,-1,68,131,130,-1,68,129,131,-1,128,24,22,-1,128,49,24,-1,121,47,65,-1,9,47,121,-1,114,126,118,-1,114,124,126,-1,125,93,123,-1,125,117,93,-1,69,4,67,-1,69,5,4,-1,0,21,1,-1,0,76,21,-1,20,127,122,-1,20,74,127,-1,10,121,23,-1,121,10,9,-1,119,103,120,-1,119,116,103,-1,72,115,13,-1,72,28,115,-1,27,63,118,-1,63,27,66,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfmphal3_Geo_5_385_normalIndex_2()
		{
			int[] value = {121,89,115,-1,121,87,89,-1,21,46,41,-1,21,12,46,-1,44,19,17,-1,44,47,19,-1,55,49,42,-1,55,59,49,-1,154,134,135,-1,154,156,134,-1,143,160,141,-1,160,143,161,-1,13,0,15,-1,0,13,5,-1,3,17,19,-1,3,10,17,-1,2,8,4,-1,8,2,7,-1,91,88,80,-1,91,105,88,-1,105,125,110,-1,105,118,125,-1,58,52,75,-1,52,58,28,-1,62,68,22,-1,62,77,68,-1,150,124,126,-1,150,148,124,-1,51,67,31,-1,78,67,51,-1,73,46,84,-1,46,73,41,-1,89,61,60,-1,89,87,61,-1,77,101,68,-1,77,103,101,-1,63,92,53,-1,63,97,92,-1,59,94,93,-1,59,55,94,-1,57,83,95,-1,50,83,57,-1,53,96,56,-1,92,96,53,-1,151,127,147,-1,151,130,127,-1,85,116,102,-1,85,111,116,-1,7,9,8,-1,7,11,9,-1,152,119,162,-1,152,107,119,-1,129,82,113,-1,100,82,129,-1,54,31,67,-1,54,36,31,-1,16,24,4,-1,16,30,24,-1,2,40,20,-1,2,26,40,-1,32,72,63,-1,32,64,72,-1,99,132,97,-1,99,109,132,-1,108,129,146,-1,129,108,100,-1,131,139,128,-1,131,140,139,-1,85,73,104,-1,85,74,73,-1,78,86,67,-1,86,78,102,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfmphal4_Geo_5_391_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,1,21,22,-1,21,23,22,-1,24,7,6,-1,25,26,27,-1,28,29,30,-1,30,18,28,-1,31,32,33,-1,31,34,32,-1,35,36,37,-1,36,38,37,-1,39,40,41,-1,41,42,39,-1,13,12,43,-1,44,45,46,-1,46,47,44,-1,15,48,16,-1,49,50,51,-1,51,52,49,-1,20,53,54,-1,53,55,54,-1,56,57,58,-1,56,59,57,-1,60,61,62,-1,62,63,60,-1,64,65,57,-1,64,66,65,-1,67,68,69,-1,69,70,67,-1,1,0,21,-1,71,72,73,-1,74,73,75,-1,74,76,73,-1,4,3,77,-1,63,78,35,-1,35,60,63,-1,27,19,18,-1,79,53,36,-1,53,80,36,-1,81,54,55,-1,81,82,54,-1,39,42,26,-1,83,84,85,-1,86,87,38,-1,88,89,90,-1,32,91,33,-1,53,19,80,-1,92,93,94,-1,94,95,92,-1,94,96,97,-1,94,93,96,-1,14,13,3,-1,98,73,72,-1,99,21,0,-1,100,101,102,-1,100,103,101,-1,10,48,104,-1,104,105,10,-1,106,107,108,-1,108,109,106,-1,110,111,112,-1,110,59,111,-1,18,20,54,-1,54,28,18,-1,79,113,55,-1,55,53,79,-1,62,96,63,-1,96,93,63,-1,10,16,48,-1,114,95,94,-1,114,115,95,-1,116,6,117,-1,6,8,117,-1,71,47,46,-1,118,13,43,-1,35,78,36,-1,78,79,36,-1,38,87,37,-1,60,35,37,-1,37,83,60,-1,119,88,32,-1,32,34,119,-1,112,39,26,-1,26,25,112,-1,85,84,89,-1,103,120,121,-1,121,101,103,-1,122,67,123,-1,67,124,123,-1,125,126,45,-1,126,46,45,-1,75,73,98,-1,19,53,20,-1,127,128,125,-1,128,7,125,-1,16,10,9,-1,118,45,44,-1,44,13,118,-1,15,17,117,-1,77,3,129,-1,99,0,130,-1,73,47,71,-1,131,132,133,-1,134,135,136,-1,137,131,138,-1,139,140,141,-1,142,143,135,-1,143,144,135,-1,142,135,145,-1,146,147,148,-1,147,149,148,-1,150,151,152,-1,151,153,152,-1,154,155,156,-1,155,157,156,-1,158,154,156,-1,158,159,154,-1,160,161,162,-1,162,163,160,-1,151,164,165,-1,166,167,168,-1,169,170,171,-1,159,172,173,-1,174,175,170,-1,176,168,167,-1,177,178,179,-1,178,134,179,-1,180,181,146,-1,180,182,181,-1,170,169,162,-1,183,184,140,-1,184,141,140,-1,185,133,145,-1,186,187,143,-1,188,189,155,-1,155,190,188,-1,191,192,193,-1,194,195,196,-1,196,197,194,-1,198,199,196,-1,199,197,196,-1,200,201,202,-1,200,203,201,-1,204,205,206,-1,206,207,204,-1,208,187,205,-1,205,204,208,-1,133,209,131,-1,142,210,211,-1,212,184,183,-1,212,213,184,-1,214,215,216,-1,215,217,216,-1,166,218,167,-1,150,189,164,-1,172,219,169,-1,164,188,220,-1,221,222,223,-1,221,224,222,-1,225,226,227,-1,227,228,225,-1,156,229,158,-1,156,230,229,-1,231,232,233,-1,231,199,232,-1,234,235,236,-1,234,237,235,-1,207,206,237,-1,237,234,207,-1,231,238,239,-1,231,233,238,-1,240,199,231,-1,240,197,199,-1,148,160,163,-1,148,149,160,-1,241,242,243,-1,222,158,229,-1,229,223,222,-1,197,240,244,-1,245,164,220,-1,245,165,164,-1,161,170,162,-1,159,219,172,-1,151,150,164,-1,139,246,140,-1,142,211,186,-1,133,185,209,-1,211,210,202,-1,210,200,202,-1,247,246,204,-1,246,208,204,-1,132,131,137,-1,137,203,132,-1,181,194,197,-1,197,244,181,-1,248,249,250,-1,249,251,250,-1,218,151,167,-1,190,252,188,-1,241,206,253,-1,241,237,206,-1,191,136,135,-1,184,213,254,-1,184,254,141,-1,178,145,134,-1,145,135,134,-1,217,168,255,-1,245,256,257,-1,245,220,256,-1,216,258,174,-1,259,173,172,-1,173,260,261,-1,175,258,262,-1,175,174,258,-1,172,169,171,-1,170,161,174,-1,167,151,165,-1,164,189,188,-1,224,219,222,-1,224,169,219,-1,219,159,158,-1,158,222,219,-1,263,238,250,-1,263,264,238,-1,147,265,149,-1,265,266,149,-1,267,141,254,-1,267,139,141,-1,132,203,200,-1,131,177,138,-1,131,209,177,-1,185,145,178,-1,195,194,268,-1,143,142,186,-1,122,107,269,-1,108,107,122,-1,105,11,10,-1,105,123,11,-1,270,7,128,-1,270,8,7,-1,45,127,125,-1,118,127,45,-1,98,100,102,-1,100,98,72,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfmphal4_Geo_5_391_coordIndex_2()
		{
			int[] value = {0,75,130,-1,0,74,75,-1,271,129,2,-1,271,77,129,-1,69,4,272,-1,69,5,4,-1,269,273,68,-1,269,14,273,-1,118,106,127,-1,118,43,106,-1,71,126,274,-1,126,71,46,-1,275,276,277,-1,275,278,276,-1,279,67,70,-1,67,279,124,-1,105,109,108,-1,105,104,109,-1,280,120,103,-1,280,281,120,-1,101,282,99,-1,101,121,282,-1,283,284,285,-1,283,286,284,-1,130,101,99,-1,101,130,102,-1,85,287,61,-1,85,89,287,-1,52,96,62,-1,96,52,51,-1,97,11,288,-1,97,9,11,-1,67,269,68,-1,67,122,269,-1,40,112,111,-1,112,40,39,-1,83,61,60,-1,61,83,85,-1,86,19,289,-1,80,19,86,-1,119,89,88,-1,287,89,119,-1,290,91,90,-1,91,290,41,-1,84,291,290,-1,87,291,84,-1,271,277,272,-1,275,277,271,-1,95,292,293,-1,292,95,115,-1,79,92,113,-1,78,92,79,-1,125,24,126,-1,24,125,7,-1,17,116,117,-1,294,116,17,-1,295,58,296,-1,56,58,295,-1,297,66,298,-1,297,65,66,-1,82,285,284,-1,299,285,82,-1,300,293,292,-1,300,81,293,-1,114,97,288,-1,114,94,97,-1,92,63,93,-1,78,63,92,-1,30,64,110,-1,30,29,64,-1,274,103,100,-1,274,280,103,-1,22,292,278,-1,22,300,292,-1,70,272,277,-1,272,70,69,-1,114,124,279,-1,114,288,124,-1,48,270,104,-1,15,270,48,-1,281,116,297,-1,6,116,281,-1,120,283,121,-1,120,298,283,-1,23,300,22,-1,23,299,300,-1,44,3,13,-1,44,76,3,-1,59,31,111,-1,56,31,59,-1,66,29,286,-1,66,64,29,-1,119,295,49,-1,295,119,34,-1,16,51,50,-1,51,16,9,-1,32,90,91,-1,88,90,32,-1,291,26,42,-1,291,289,26,-1,87,289,291,-1,289,87,86,-1,83,87,84,-1,83,37,87,-1,49,287,119,-1,287,49,52,-1,50,17,16,-1,17,50,296,-1,58,65,294,-1,58,57,65,-1,25,110,112,-1,30,110,25,-1,284,54,82,-1,284,28,54,-1,113,81,55,-1,113,293,81,-1,5,14,3,-1,14,5,273,-1,3,74,129,-1,3,76,74,-1,76,47,73,-1,44,47,76,-1,282,299,23,-1,285,299,282,-1,280,126,24,-1,274,126,280,-1,109,127,106,-1,128,127,109,-1,276,114,279,-1,115,114,276,-1,2,275,271,-1,2,1,275,-1,297,120,281,-1,298,120,297,-1,49,296,50,-1,49,295,296,-1,110,57,59,-1,110,64,57,-1,294,297,116,-1,294,65,297,-1,299,81,300,-1,299,82,81,-1,298,286,283,-1,298,66,286,-1,56,34,31,-1,56,295,34,-1,296,294,17,-1,58,294,296,-1,92,293,113,-1,293,92,95,-1,115,278,292,-1,278,115,276,-1,290,42,41,-1,291,42,290,-1,41,33,91,-1,33,41,40,-1,89,290,90,-1,89,84,290,-1,289,27,26,-1,19,27,289,-1,80,38,36,-1,80,86,38,-1,111,33,40,-1,111,31,33,-1,288,123,124,-1,288,11,123,-1,97,51,9,-1,97,96,51,-1,52,61,287,-1,62,61,52,-1,285,121,283,-1,121,285,282,-1,286,28,284,-1,28,286,29,-1,30,27,18,-1,27,30,25,-1,99,23,21,-1,99,282,23,-1,6,280,24,-1,280,6,281,-1,104,128,109,-1,128,104,270,-1,277,279,70,-1,277,276,279,-1,1,278,275,-1,1,22,278,-1,72,274,100,-1,274,72,71,-1,43,107,106,-1,107,43,12,-1,68,5,69,-1,68,273,5,-1,272,77,271,-1,272,4,77,-1,74,2,129,-1,0,2,74,-1,102,75,98,-1,75,102,130,-1,8,15,117,-1,270,15,8,-1,123,108,122,-1,105,108,123,-1,12,269,107,-1,12,14,269,-1,179,136,301,-1,179,134,136,-1,209,178,177,-1,209,185,178,-1,145,210,142,-1,145,133,210,-1,223,180,221,-1,225,180,223,-1,230,226,229,-1,230,242,226,-1,235,302,303,-1,235,243,302,-1,251,304,305,-1,304,251,236,-1,239,264,306,-1,239,238,264,-1,250,305,263,-1,305,250,251,-1,215,307,308,-1,215,214,307,-1,162,224,163,-1,162,169,224,-1,153,218,309,-1,153,151,218,-1,310,175,262,-1,311,175,310,-1,260,259,312,-1,173,259,260,-1,176,255,168,-1,255,176,313,-1,259,171,311,-1,259,172,171,-1,188,256,220,-1,188,252,256,-1,245,313,176,-1,245,257,313,-1,313,258,255,-1,262,258,313,-1,137,268,194,-1,137,138,268,-1,144,191,135,-1,192,191,144,-1,206,314,253,-1,206,205,314,-1,235,241,243,-1,235,237,241,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfmphal4_Geo_5_391_coordIndex_3()
		{
			int[] value = {153,263,305,-1,263,153,309,-1,248,315,249,-1,316,315,248,-1,214,174,161,-1,214,216,174,-1,317,316,232,-1,316,317,318,-1,247,140,246,-1,247,318,140,-1,314,211,202,-1,186,211,314,-1,267,187,208,-1,267,143,187,-1,208,139,267,-1,208,246,139,-1,198,193,212,-1,196,193,198,-1,173,154,159,-1,154,173,261,-1,245,167,165,-1,245,176,167,-1,312,252,260,-1,252,312,256,-1,257,262,313,-1,310,262,257,-1,240,239,265,-1,239,240,231,-1,181,147,146,-1,244,147,181,-1,241,201,227,-1,201,241,253,-1,157,230,156,-1,230,157,302,-1,149,307,160,-1,149,266,307,-1,137,228,203,-1,137,182,228,-1,306,319,308,-1,306,264,319,-1,238,248,250,-1,238,233,248,-1,152,305,304,-1,152,153,305,-1,249,207,234,-1,249,315,207,-1,152,303,320,-1,303,152,304,-1,249,236,251,-1,236,249,234,-1,232,248,233,-1,232,316,248,-1,309,264,263,-1,319,264,309,-1,308,266,306,-1,266,308,307,-1,227,242,241,-1,242,227,226,-1,227,203,228,-1,203,227,201,-1,182,225,228,-1,182,180,225,-1,244,265,147,-1,244,240,265,-1,310,256,312,-1,310,257,256,-1,260,190,261,-1,252,190,260,-1,261,155,154,-1,155,261,190,-1,168,215,166,-1,215,168,217,-1,193,213,212,-1,192,213,193,-1,317,212,183,-1,317,198,212,-1,301,191,193,-1,301,136,191,-1,193,195,301,-1,195,193,196,-1,318,183,140,-1,318,317,183,-1,247,207,315,-1,207,247,204,-1,253,202,201,-1,202,253,314,-1,198,232,199,-1,317,232,198,-1,318,315,316,-1,318,247,315,-1,320,302,157,-1,320,303,302,-1,314,187,186,-1,314,205,187,-1,192,254,213,-1,192,144,254,-1,221,163,224,-1,221,148,163,-1,194,182,137,-1,182,194,181,-1,179,138,177,-1,138,179,268,-1,255,216,217,-1,255,258,216,-1,170,311,171,-1,175,311,170,-1,311,312,259,-1,311,310,312,-1,320,150,152,-1,320,189,150,-1,166,308,319,-1,166,215,308,-1,189,157,155,-1,320,157,189,-1,218,319,309,-1,218,166,319,-1,214,160,307,-1,214,161,160,-1,265,306,266,-1,265,239,306,-1,236,303,304,-1,236,235,303,-1,302,242,230,-1,243,242,302,-1,229,225,223,-1,226,225,229,-1,180,148,221,-1,180,146,148,-1,144,267,254,-1,267,144,143,-1,200,133,132,-1,210,133,200,-1,301,268,179,-1,301,195,268,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfmphal4_Geo_5_391_normalIndex_1()
		{
			int[] value = {58,52,41,-1,160,55,81,-1,318,305,302,-1,196,219,178,-1,163,130,151,-1,271,249,294,-1,93,72,68,-1,52,66,65,-1,66,67,65,-1,320,305,318,-1,189,185,132,-1,79,184,183,-1,183,93,79,-1,312,288,310,-1,312,274,288,-1,2,15,54,-1,15,60,54,-1,248,298,253,-1,253,213,248,-1,130,163,192,-1,127,256,229,-1,229,122,127,-1,271,257,249,-1,251,255,198,-1,198,206,251,-1,68,64,70,-1,64,76,70,-1,286,276,307,-1,286,266,276,-1,42,147,106,-1,106,31,42,-1,236,295,276,-1,236,260,295,-1,120,83,44,-1,44,69,120,-1,52,58,66,-1,222,210,125,-1,114,125,124,-1,114,142,125,-1,55,160,62,-1,31,11,2,-1,2,42,31,-1,132,72,93,-1,32,64,15,-1,64,48,15,-1,84,70,76,-1,84,89,70,-1,248,213,185,-1,110,197,174,-1,91,166,60,-1,250,216,234,-1,288,272,310,-1,64,72,48,-1,0,33,34,-1,34,13,0,-1,34,113,99,-1,34,33,113,-1,151,130,160,-1,158,125,210,-1,75,66,58,-1,254,180,179,-1,254,263,180,-1,219,257,237,-1,237,208,219,-1,241,211,217,-1,217,245,241,-1,231,293,252,-1,231,266,293,-1,93,68,70,-1,70,79,93,-1,32,27,76,-1,76,64,32,-1,106,113,31,-1,113,33,31,-1,219,249,257,-1,49,13,34,-1,49,24,13,-1,319,318,300,-1,318,302,300,-1,222,122,229,-1,223,130,192,-1,2,11,15,-1,11,32,15,-1,60,166,54,-1,42,2,54,-1,54,110,42,-1,246,250,288,-1,288,274,246,-1,252,248,185,-1,185,189,252,-1,174,197,216,-1,263,264,187,-1,187,180,263,-1,181,120,176,-1,120,119,176,-1,303,309,256,-1,309,229,256,-1,124,125,158,-1,72,64,68,-1,278,270,303,-1,270,305,303,-1,249,219,196,-1,223,256,127,-1,127,130,223,-1,271,294,300,-1,62,160,88,-1,75,58,92,-1,125,122,222,-1,3,4,14,-1,39,177,108,-1,28,3,1,-1,281,314,277,-1,136,228,177,-1,228,224,177,-1,136,177,80,-1,77,133,45,-1,133,102,45,-1,195,200,235,-1,200,269,235,-1,90,159,94,-1,159,164,94,-1,47,90,94,-1,47,53,90,-1,56,61,35,-1,35,16,56,-1,200,169,137,-1,188,116,100,-1,40,126,140,-1,53,141,144,-1,109,134,126,-1,104,100,116,-1,10,17,5,-1,17,39,5,-1,86,95,77,-1,86,82,95,-1,126,40,35,-1,296,273,314,-1,273,277,314,-1,25,14,80,-1,105,218,228,-1,186,199,159,-1,159,167,186,-1,182,202,128,-1,59,57,129,-1,129,175,59,-1,214,232,129,-1,232,175,129,-1,7,51,37,-1,7,21,51,-1,258,226,227,-1,227,262,258,-1,261,218,226,-1,226,258,261,-1,14,30,3,-1,136,20,43,-1,230,273,296,-1,230,225,273,-1,107,162,118,-1,162,111,118,-1,188,221,116,-1,195,199,169,-1,141,19,40,-1,169,186,173,-1,50,18,78,-1,50,9,18,-1,97,112,98,-1,98,85,97,-1,94,73,47,-1,94,149,73,-1,239,297,282,-1,239,232,297,-1,240,201,242,-1,240,209,201,-1,262,227,209,-1,209,240,262,-1,239,292,244,-1,239,282,292,-1,203,232,239,-1,203,175,232,-1,45,56,16,-1,45,102,56,-1,157,150,168,-1,18,47,73,-1,73,78,18,-1,175,203,172,-1,139,169,173,-1,139,137,169,-1,61,126,35,-1,53,19,141,-1,200,195,169,-1,281,289,314,-1,136,43,105,-1,14,25,30,-1,43,20,37,-1,20,7,37,-1,280,289,258,-1,289,261,258,-1,4,3,28,-1,28,21,4,-1,95,59,175,-1,175,172,95,-1,291,268,299,-1,268,275,299,-1,221,200,116,-1,167,170,186,-1,157,227,135,-1,157,209,227,-1,182,108,177,-1,273,225,233,-1,273,233,277,-1,17,80,39,-1,80,177,39,-1,111,100,117,-1,139,165,143,-1,139,173,165,-1,118,123,109,-1,146,144,141,-1,144,152,153,-1,134,123,131,-1,134,109,123,-1,141,40,140,-1,126,61,109,-1,116,200,137,-1,169,199,186,-1,9,19,18,-1,9,40,19,-1,19,53,47,-1,47,18,19,-1,317,292,299,-1,317,290,292,-1,133,207,102,-1,207,191,102,-1,243,277,233,-1,243,281,277,-1,4,21,7,-1,3,10,1,-1,3,30,10,-1,25,80,17,-1,57,59,12,-1,228,136,105,-1,181,211,161,-1,217,211,181,-1,208,178,219,-1,208,176,178,-1,267,305,270,-1,267,302,305,-1,256,278,303,-1,223,278,256,-1,158,254,179,-1,254,158,210,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfmphal4_Geo_5_391_normalIndex_2()
		{
			int[] value = {58,124,92,-1,58,114,124,-1,8,88,41,-1,8,62,88,-1,44,55,6,-1,44,81,55,-1,161,155,83,-1,161,151,155,-1,223,241,278,-1,223,192,241,-1,222,309,304,-1,309,222,229,-1,22,23,26,-1,22,29,23,-1,63,120,69,-1,120,63,119,-1,208,245,217,-1,208,237,245,-1,313,264,263,-1,313,311,264,-1,180,87,75,-1,180,187,87,-1,193,103,101,-1,193,194,103,-1,92,180,75,-1,180,92,179,-1,174,212,147,-1,174,216,212,-1,206,113,106,-1,113,206,198,-1,99,178,96,-1,99,196,178,-1,120,161,83,-1,120,181,161,-1,298,252,293,-1,252,298,248,-1,110,147,42,-1,147,110,174,-1,91,72,148,-1,48,72,91,-1,246,216,250,-1,212,216,246,-1,220,272,234,-1,272,220,253,-1,197,190,220,-1,166,190,197,-1,8,26,6,-1,22,26,8,-1,13,36,38,-1,36,13,24,-1,32,0,27,-1,11,0,32,-1,303,320,309,-1,320,303,305,-1,294,319,300,-1,316,319,294,-1,279,307,285,-1,286,307,279,-1,308,260,259,-1,308,295,260,-1,89,101,103,-1,74,101,89,-1,71,38,36,-1,71,84,38,-1,49,99,96,-1,49,34,99,-1,0,31,33,-1,11,31,0,-1,183,236,231,-1,183,184,236,-1,304,263,254,-1,304,313,263,-1,65,36,29,-1,65,71,36,-1,69,6,26,-1,6,69,44,-1,49,119,63,-1,49,96,119,-1,257,267,237,-1,271,267,257,-1,311,319,308,-1,318,319,311,-1,264,193,187,-1,264,259,193,-1,67,71,65,-1,67,74,71,-1,127,160,130,-1,127,142,160,-1,266,312,293,-1,286,312,266,-1,260,184,194,-1,260,236,184,-1,246,279,251,-1,279,246,274,-1,249,198,255,-1,198,249,196,-1,288,234,272,-1,250,234,288,-1,190,185,213,-1,190,148,185,-1,166,148,190,-1,148,166,91,-1,110,166,197,-1,110,54,166,-1,251,212,246,-1,212,251,206,-1,255,294,249,-1,294,255,285,-1,307,295,316,-1,307,276,295,-1,189,231,252,-1,183,231,189,-1,103,70,89,-1,103,79,70,-1,27,84,76,-1,27,38,84,-1,81,151,160,-1,151,81,155,-1,160,114,88,-1,160,142,114,-1,142,122,125,-1,127,122,142,-1,87,74,67,-1,101,74,87,-1,313,309,320,-1,304,309,313,-1,245,278,241,-1,270,278,245,-1,23,49,63,-1,24,49,23,-1,41,22,8,-1,41,52,22,-1,308,264,311,-1,259,264,308,-1,251,285,255,-1,251,279,285,-1,231,276,266,-1,231,236,276,-1,316,308,319,-1,316,295,308,-1,74,84,71,-1,74,89,84,-1,259,194,193,-1,259,260,194,-1,286,274,312,-1,286,279,274,-1,285,316,294,-1,307,316,285,-1,0,38,27,-1,38,0,13,-1,24,29,36,-1,29,24,23,-1,220,213,253,-1,190,213,220,-1,253,310,272,-1,310,253,298,-1,216,220,234,-1,216,197,220,-1,148,132,185,-1,72,132,148,-1,48,60,15,-1,48,91,60,-1,293,310,298,-1,293,312,310,-1,96,176,119,-1,96,178,176,-1,99,198,196,-1,99,113,198,-1,206,147,212,-1,106,147,206,-1,101,187,193,-1,187,101,87,-1,194,79,103,-1,79,194,184,-1,183,132,93,-1,132,183,189,-1,75,67,66,-1,75,87,67,-1,318,313,320,-1,313,318,311,-1,237,270,245,-1,270,237,267,-1,26,63,69,-1,26,23,63,-1,52,29,22,-1,52,65,29,-1,210,304,254,-1,304,210,222,-1,192,211,241,-1,211,192,163,-1,83,81,44,-1,83,155,81,-1,6,62,8,-1,6,55,62,-1,114,41,88,-1,58,41,114,-1,179,124,158,-1,124,179,92,-1,302,271,300,-1,267,271,302,-1,176,217,181,-1,208,217,176,-1,163,161,211,-1,163,151,161,-1,5,108,46,-1,5,39,108,-1,30,17,10,-1,30,25,17,-1,80,20,136,-1,80,14,20,-1,78,86,50,-1,97,86,78,-1,149,112,73,-1,149,150,112,-1,201,171,205,-1,201,168,171,-1,275,247,284,-1,247,275,242,-1,244,290,238,-1,244,292,290,-1,299,284,317,-1,284,299,275,-1,162,156,215,-1,162,107,156,-1,35,9,16,-1,35,40,9,-1,269,221,301,-1,269,200,221,-1,145,134,131,-1,138,134,145,-1,152,146,154,-1,144,146,152,-1,104,117,100,-1,117,104,121,-1,146,140,138,-1,146,141,140,-1,186,165,173,-1,186,170,165,-1,139,121,104,-1,139,143,121,-1,121,123,117,-1,131,123,121,-1,28,12,59,-1,28,1,12,-1,224,182,177,-1,202,182,224,-1,227,115,135,-1,227,226,115,-1,201,157,168,-1,201,209,157,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfmphal4_Geo_5_391_normalIndex_3()
		{
			int[] value = {269,317,284,-1,317,269,301,-1,291,287,268,-1,315,287,291,-1,107,109,61,-1,107,118,109,-1,283,315,297,-1,315,283,306,-1,280,314,289,-1,280,306,314,-1,115,43,37,-1,105,43,115,-1,243,218,261,-1,243,228,218,-1,261,281,243,-1,261,289,281,-1,214,128,230,-1,129,128,214,-1,144,90,53,-1,90,144,153,-1,139,116,137,-1,139,104,116,-1,154,170,152,-1,170,154,165,-1,143,131,121,-1,145,131,143,-1,203,244,207,-1,244,203,239,-1,95,133,77,-1,172,133,95,-1,157,51,98,-1,51,157,135,-1,164,149,94,-1,149,164,171,-1,102,156,56,-1,102,191,156,-1,28,85,21,-1,28,82,85,-1,238,265,215,-1,238,290,265,-1,292,291,299,-1,292,282,291,-1,235,284,247,-1,235,269,284,-1,268,262,240,-1,268,287,262,-1,235,205,204,-1,205,235,247,-1,268,242,275,-1,242,268,240,-1,297,291,282,-1,297,315,291,-1,301,290,317,-1,265,290,301,-1,215,191,238,-1,191,215,156,-1,98,150,157,-1,150,98,112,-1,98,21,85,-1,21,98,51,-1,82,97,85,-1,82,86,97,-1,172,207,133,-1,172,203,207,-1,145,165,154,-1,145,143,165,-1,152,167,153,-1,170,167,152,-1,153,159,90,-1,159,153,167,-1,100,162,188,-1,162,100,111,-1,128,225,230,-1,202,225,128,-1,283,230,296,-1,283,214,230,-1,46,182,128,-1,46,108,182,-1,128,57,46,-1,57,128,129,-1,306,296,314,-1,306,283,296,-1,280,262,287,-1,262,280,258,-1,135,37,51,-1,37,135,115,-1,214,297,232,-1,283,297,214,-1,306,287,315,-1,306,280,287,-1,204,171,164,-1,204,205,171,-1,115,218,105,-1,115,226,218,-1,202,233,225,-1,202,224,233,-1,50,16,9,-1,50,45,16,-1,59,82,28,-1,82,59,95,-1,5,1,10,-1,1,5,12,-1,117,118,111,-1,117,123,118,-1,126,138,140,-1,134,138,126,-1,138,154,146,-1,138,145,154,-1,204,195,235,-1,204,199,195,-1,188,215,265,-1,188,162,215,-1,199,164,159,-1,204,164,199,-1,221,265,301,-1,221,188,265,-1,107,56,156,-1,107,61,56,-1,207,238,191,-1,207,244,238,-1,242,205,247,-1,242,201,205,-1,171,150,149,-1,168,150,171,-1,73,97,78,-1,112,97,73,-1,86,45,50,-1,86,77,45,-1,224,243,233,-1,243,224,228,-1,7,14,4,-1,20,14,7,-1,46,12,5,-1,46,57,12,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfpprox_Geo_5_397_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,3,4,-1,0,5,3,-1,6,7,8,-1,9,10,2,-1,11,7,12,-1,11,10,7,-1,6,13,7,-1,14,15,16,-1,17,18,19,-1,19,20,17,-1,19,21,22,-1,23,24,25,-1,24,18,25,-1,26,15,14,-1,27,28,29,-1,30,31,32,-1,30,33,31,-1,34,35,36,-1,34,37,35,-1,29,28,35,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,50,42,51,-1,12,52,11,-1,52,53,11,-1,0,2,5,-1,13,54,55,-1,13,56,54,-1,57,58,59,-1,58,60,59,-1,59,61,62,-1,59,60,61,-1,63,64,65,-1,65,66,63,-1,67,68,69,-1,70,50,71,-1,72,67,69,-1,50,68,42,-1,12,73,52,-1,73,55,74,-1,75,76,77,-1,76,78,77,-1,79,80,81,-1,79,82,80,-1,83,71,84,-1,41,43,85,-1,86,87,88,-1,74,52,73,-1,74,89,52,-1,3,90,91,-1,4,75,92,-1,8,92,6,-1,66,93,63,-1,47,94,66,-1,94,95,66,-1,96,57,97,-1,57,59,97,-1,98,99,100,-1,100,101,98,-1,102,100,99,-1,102,103,100,-1,104,105,54,-1,54,45,104,-1,46,56,106,-1,107,65,64,-1,108,48,109,-1,70,71,110,-1,58,111,112,-1,112,60,58,-1,113,114,115,-1,116,30,32,-1,117,32,34,-1,118,119,36,-1,120,121,122,-1,123,124,22,-1,22,21,123,-1,20,125,17,-1,125,126,17,-1,127,16,15,-1,39,38,128,-1,23,14,129,-1,129,130,131,-1,129,132,130,-1,133,130,132,-1,132,134,133,-1,135,136,137,-1,138,139,140,-1,139,67,140,-1,141,37,142,-1,141,35,37,-1,143,144,141,-1,27,29,145,-1,146,147,148,-1,149,150,147,-1,150,148,147,-1,61,151,152,-1,152,153,61,-1,154,155,156,-1,157,153,158,-1,153,152,158,-1,159,160,72,-1,160,161,72,-1,162,141,144,-1,143,141,142,-1,137,163,135,-1,136,31,33,-1,33,164,136,-1,132,14,16,-1,132,129,14,-1,165,166,167,-1,128,17,126,-1,21,24,168,-1,168,123,21,-1,124,27,22,-1,169,158,170,-1,156,155,167,-1,171,172,173,-1,173,174,171,-1,175,176,177,-1,121,120,118,-1,119,34,36,-1,119,117,34,-1,32,117,116,-1,30,174,178,-1,30,116,174,-1,173,179,180,-1,181,110,71,-1,49,182,183,-1,184,107,64,-1,64,185,184,-1,56,46,45,-1,41,85,186,-1,186,187,41,-1,66,188,93,-1,66,95,188,-1,77,94,75,-1,94,92,75,-1,9,2,1,-1,189,147,76,-1,147,190,76,-1,2,11,53,-1,191,192,91,-1,191,193,192,-1,194,71,50,-1,62,195,97,-1,81,80,112,-1,80,151,112,-1,195,196,83,-1,197,198,51,-1,197,199,198,-1,159,72,200,-1,200,196,159,-1,71,83,181,-1,61,196,62,-1,196,195,62,-1,193,191,43,-1,191,85,43,-1,115,64,63,-1,115,185,64,-1,66,65,48,-1,48,47,66,-1,6,106,13,-1,106,56,13,-1,89,85,191,-1,89,186,85,-1,201,5,2,-1,202,195,83,-1,103,203,100,-1,103,184,203,-1,48,65,109,-1,65,107,109,-1,44,46,183,-1,51,41,197,-1,51,42,41,-1,71,194,84,-1,45,54,56,-1,97,59,62,-1,164,137,136,-1,118,36,28,-1,36,35,28,-1,118,27,121,-1,118,28,27,-1,118,120,204,-1,155,154,127,-1,38,165,26,-1,19,22,20,-1,19,18,21,-1,18,24,21,-1,16,127,154,-1,12,7,73,-1,2,10,11,-1,8,7,9,-1,7,10,9,-1,4,3,75,-1,90,52,91,-1,2,53,201,-1,90,53,52,-1,201,53,90,-1,205,206,134,-1,205,207,206,-1,167,208,156,-1,167,166,208,-1,26,23,25,-1,26,14,23,-1,155,15,26,-1,127,15,155,-1,168,23,209,-1,23,168,24,-1,204,210,211,-1,204,120,210,-1,130,212,131,-1,212,130,213,-1,178,214,215,-1,180,214,178,-1,123,122,124,-1,122,123,216,-1,180,133,214,-1,133,180,179,-1,122,27,124,-1,27,122,121,-1,207,217,206,-1,207,218,217,-1,219,220,221,-1,220,219,222,-1,223,224,225,-1,224,223,226,-1,227,141,162,-1,227,228,141,-1,229,108,102,-1,229,182,108,-1,99,230,231,-1,98,230,99,-1,194,232,84,-1,198,232,194,-1,233,41,187,-1,197,41,233,-1,45,234,104,-1,234,45,44,-1,183,106,49,-1,183,46,106,-1,103,107,184,-1,109,107,103,-1,101,203,96,-1,100,203,101,-1,195,235,97,-1,235,195,202,-1,1,4,92,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox_Geo_5_397_coordIndex_2()
		{
			int[] value = {4,1,0,-1,83,232,202,-1,83,84,232,-1,43,68,193,-1,42,68,43,-1,89,105,186,-1,74,105,89,-1,47,106,6,-1,47,49,106,-1,185,114,236,-1,185,115,114,-1,200,83,196,-1,181,83,200,-1,202,237,235,-1,232,237,202,-1,72,181,200,-1,72,110,181,-1,112,61,60,-1,112,151,61,-1,149,189,192,-1,147,189,149,-1,78,238,82,-1,78,239,238,-1,88,82,238,-1,82,88,80,-1,79,94,77,-1,94,79,95,-1,188,112,111,-1,188,81,112,-1,113,188,111,-1,188,113,93,-1,230,197,233,-1,199,197,230,-1,104,186,105,-1,104,187,186,-1,183,229,44,-1,182,229,183,-1,68,139,193,-1,68,67,139,-1,174,180,178,-1,174,173,180,-1,216,175,210,-1,175,216,176,-1,240,177,212,-1,240,175,177,-1,213,173,172,-1,213,179,173,-1,117,241,116,-1,241,117,119,-1,171,240,172,-1,171,211,240,-1,116,171,174,-1,171,116,241,-1,239,208,238,-1,239,156,208,-1,158,88,87,-1,158,152,88,-1,224,170,222,-1,224,169,170,-1,125,22,242,-1,22,125,20,-1,222,243,220,-1,243,222,170,-1,244,208,166,-1,86,208,244,-1,220,244,40,-1,220,243,244,-1,126,39,128,-1,126,221,39,-1,245,163,137,-1,245,246,163,-1,144,246,247,-1,163,246,144,-1,136,143,142,-1,136,135,143,-1,140,248,247,-1,140,161,248,-1,29,141,228,-1,29,35,141,-1,249,161,160,-1,249,248,161,-1,153,160,159,-1,160,153,157,-1,249,157,250,-1,157,249,160,-1,227,250,226,-1,250,227,249,-1,29,223,145,-1,223,29,228,-1,217,33,215,-1,164,33,217,-1,251,218,207,-1,251,252,218,-1,134,214,133,-1,134,206,214,-1,253,251,254,-1,146,251,253,-1,253,239,190,-1,156,239,253,-1,138,149,139,-1,149,138,150,-1,61,159,196,-1,61,153,159,-1,148,245,252,-1,148,150,245,-1,146,190,147,-1,190,146,253,-1,254,207,205,-1,251,207,254,-1,206,215,214,-1,206,217,215,-1,146,252,251,-1,146,148,252,-1,252,137,218,-1,252,245,137,-1,242,27,145,-1,27,242,22,-1,145,225,242,-1,145,223,225,-1,226,169,224,-1,226,250,169,-1,250,158,169,-1,250,157,158,-1,249,162,248,-1,249,227,162,-1,72,140,67,-1,140,72,161,-1,136,37,31,-1,37,136,142,-1,143,163,144,-1,135,163,143,-1,138,247,246,-1,138,140,247,-1,150,246,245,-1,150,138,246,-1,129,209,23,-1,129,131,209,-1,166,40,244,-1,166,38,40,-1,165,38,166,-1,154,205,16,-1,154,254,205,-1,243,86,244,-1,243,87,86,-1,87,170,158,-1,87,243,170,-1,221,125,219,-1,221,126,125,-1,219,242,225,-1,242,219,125,-1,238,86,88,-1,238,208,86,-1,241,211,171,-1,211,241,204,-1,118,241,119,-1,204,241,118,-1,172,212,213,-1,172,240,212,-1,122,210,120,-1,210,122,216,-1,114,111,58,-1,114,113,111,-1,191,52,89,-1,91,52,191,-1,149,193,139,-1,193,149,192,-1,102,109,103,-1,108,109,102,-1,44,231,234,-1,44,229,231,-1,185,203,184,-1,203,185,236,-1,231,233,234,-1,231,230,233,-1,236,96,203,-1,236,57,96,-1,235,98,101,-1,98,235,237,-1,92,47,6,-1,47,92,94,-1,63,113,115,-1,113,63,93,-1,95,81,188,-1,81,95,79,-1,152,80,88,-1,152,151,80,-1,78,190,239,-1,76,190,78,-1,192,3,91,-1,189,3,192,-1,247,162,144,-1,247,248,162,-1,82,77,78,-1,77,82,79,-1,189,75,3,-1,189,76,75,-1,73,13,55,-1,7,13,73,-1,70,72,69,-1,110,72,70,-1,50,69,68,-1,69,50,70,-1,236,58,57,-1,236,114,58,-1,74,54,105,-1,55,54,74,-1,198,50,51,-1,198,194,50,-1,3,201,90,-1,3,5,201,-1,8,1,92,-1,8,9,1,-1,97,101,96,-1,101,97,235,-1,234,187,104,-1,233,187,234,-1,198,237,232,-1,198,199,237,-1,98,199,230,-1,98,237,199,-1,102,231,229,-1,99,231,102,-1,48,182,49,-1,108,182,48,-1,228,226,223,-1,226,228,227,-1,225,222,219,-1,222,225,224,-1,221,40,39,-1,40,221,220,-1,218,164,217,-1,218,137,164,-1,209,176,168,-1,209,177,176,-1,216,168,176,-1,216,123,168,-1,37,32,31,-1,32,37,34,-1,30,215,33,-1,178,215,30,-1,133,213,130,-1,213,133,179,-1,131,177,209,-1,177,131,212,-1,240,210,175,-1,211,210,240,-1,25,38,26,-1,128,38,25,-1,26,167,155,-1,26,165,167,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfpprox_Geo_5_397_coordIndex_3()
		{
			int[] value = {128,18,17,-1,128,25,18,-1,254,156,253,-1,156,254,154,-1,16,134,132,-1,16,205,134,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfpprox_Geo_5_397_normalIndex_1()
		{
			int[] value = {193,183,229,-1,193,224,201,-1,193,220,224,-1,180,230,210,-1,195,227,229,-1,245,230,254,-1,245,227,230,-1,180,223,230,-1,91,121,132,-1,11,19,15,-1,15,12,11,-1,15,21,26,-1,55,37,44,-1,37,19,44,-1,66,121,91,-1,73,134,107,-1,158,208,129,-1,158,232,208,-1,130,126,139,-1,130,163,126,-1,107,134,126,-1,43,42,41,-1,110,94,196,-1,101,116,120,-1,74,104,82,-1,71,94,54,-1,254,244,245,-1,244,249,245,-1,193,229,220,-1,223,191,240,-1,223,175,191,-1,67,20,64,-1,20,17,64,-1,64,30,78,-1,64,17,30,-1,47,80,75,-1,75,62,47,-1,135,112,105,-1,85,71,144,-1,141,135,105,-1,71,112,94,-1,254,247,244,-1,247,240,233,-1,185,189,87,-1,189,103,87,-1,63,38,40,-1,63,57,38,-1,202,144,181,-1,110,196,209,-1,36,16,29,-1,233,244,247,-1,233,228,244,-1,224,239,246,-1,201,185,155,-1,210,155,180,-1,62,34,47,-1,74,77,62,-1,77,65,62,-1,162,67,164,-1,67,64,164,-1,171,156,197,-1,197,204,171,-1,161,197,156,-1,161,178,197,-1,106,188,191,-1,191,116,106,-1,120,175,119,-1,95,75,80,-1,142,104,133,-1,85,144,146,-1,20,0,6,-1,6,17,20,-1,5,24,27,-1,92,158,129,-1,100,129,130,-1,170,145,139,-1,190,173,169,-1,53,59,26,-1,26,21,53,-1,12,3,11,-1,3,23,11,-1,157,132,121,-1,42,43,32,-1,55,91,79,-1,79,127,102,-1,79,117,127,-1,179,127,117,-1,117,186,179,-1,216,215,250,-1,214,211,150,-1,211,135,150,-1,122,163,167,-1,122,126,163,-1,159,140,122,-1,73,107,51,-1,225,231,241,-1,253,252,231,-1,252,241,231,-1,30,4,1,-1,1,31,30,-1,166,109,124,-1,45,31,2,-1,31,1,2,-1,125,99,141,-1,99,123,141,-1,115,122,140,-1,159,122,167,-1,250,212,216,-1,215,208,232,-1,232,248,215,-1,117,91,132,-1,117,79,91,-1,50,52,68,-1,32,11,23,-1,21,37,39,-1,39,53,21,-1,59,73,26,-1,8,2,10,-1,124,109,68,-1,147,151,98,-1,98,86,147,-1,192,131,137,-1,173,190,170,-1,145,130,139,-1,145,100,130,-1,129,100,92,-1,158,86,153,-1,158,92,86,-1,98,138,136,-1,200,146,144,-1,82,111,83,-1,128,95,80,-1,80,70,128,-1,175,120,116,-1,110,209,184,-1,184,96,110,-1,62,35,34,-1,62,65,35,-1,87,77,185,-1,77,155,185,-1,195,229,183,-1,226,231,189,-1,231,206,189,-1,229,245,249,-1,234,251,246,-1,234,218,251,-1,97,144,71,-1,78,160,164,-1,40,38,6,-1,38,4,6,-1,160,148,202,-1,60,84,54,-1,60,81,84,-1,125,141,187,-1,187,148,125,-1,144,202,200,-1,30,148,78,-1,148,160,78,-1,218,234,196,-1,234,209,196,-1,27,80,47,-1,27,70,80,-1,62,75,104,-1,104,74,62,-1,180,119,223,-1,119,175,223,-1,228,209,234,-1,228,184,209,-1,236,220,229,-1,205,160,202,-1,178,165,197,-1,178,128,165,-1,104,75,133,-1,75,95,133,-1,101,120,83,-1,54,110,60,-1,54,94,110,-1,144,97,181,-1,116,191,175,-1,164,64,78,-1,248,250,215,-1,170,139,134,-1,139,126,134,-1,170,73,173,-1,170,134,73,-1,170,190,172,-1,109,166,157,-1,43,50,66,-1,15,26,12,-1,15,19,21,-1,19,37,21,-1,132,157,166,-1,254,230,247,-1,229,227,245,-1,210,230,195,-1,230,227,195,-1,201,224,185,-1,239,244,246,-1,229,249,236,-1,239,249,244,-1,236,249,239,-1,194,221,186,-1,194,219,221,-1,68,56,124,-1,68,52,56,-1,66,55,44,-1,66,91,55,-1,109,121,66,-1,157,121,109,-1,39,55,61,-1,55,39,37,-1,172,198,182,-1,172,190,198,-1,127,149,102,-1,149,127,152,-1,153,213,235,-1,136,213,153,-1,53,169,59,-1,169,53,174,-1,136,179,213,-1,179,136,138,-1,169,73,59,-1,73,169,173,-1,219,242,221,-1,219,237,242,-1,7,28,25,-1,28,7,14,-1,48,18,9,-1,18,48,49,-1,93,122,115,-1,93,89,122,-1,118,142,161,-1,118,111,142,-1,156,88,108,-1,171,88,156,-1,97,176,181,-1,84,176,97,-1,69,110,96,-1,60,110,69,-1,116,76,106,-1,76,116,101,-1,83,119,82,-1,83,120,119,-1,178,95,128,-1,133,95,178,-1,204,165,162,-1,197,165,204,-1,160,207,164,-1,207,160,205,-1,183,201,155,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox_Geo_5_397_normalIndex_2()
		{
			int[] value = {201,183,193,-1,202,176,205,-1,202,181,176,-1,196,112,218,-1,94,112,196,-1,228,188,184,-1,233,188,228,-1,74,119,180,-1,74,82,119,-1,70,24,72,-1,70,27,24,-1,187,202,148,-1,200,202,187,-1,205,177,207,-1,176,177,205,-1,141,200,187,-1,141,146,200,-1,6,30,17,-1,6,4,30,-1,253,226,251,-1,231,226,253,-1,103,58,57,-1,103,114,58,-1,29,57,58,-1,57,29,38,-1,63,77,87,-1,77,63,65,-1,35,6,0,-1,35,40,6,-1,5,35,0,-1,35,5,34,-1,88,60,69,-1,81,60,88,-1,106,184,188,-1,106,96,184,-1,83,118,101,-1,111,118,83,-1,112,211,218,-1,112,135,211,-1,86,136,153,-1,86,98,136,-1,174,192,198,-1,192,174,131,-1,168,137,149,-1,168,192,137,-1,152,98,151,-1,152,138,98,-1,100,143,92,-1,143,100,145,-1,147,168,151,-1,147,182,168,-1,92,147,86,-1,147,92,143,-1,114,56,58,-1,114,124,56,-1,2,29,16,-1,2,1,29,-1,18,10,14,-1,18,8,10,-1,3,26,13,-1,26,3,12,-1,14,22,28,-1,22,14,10,-1,33,56,52,-1,36,56,33,-1,28,33,41,-1,28,22,33,-1,23,42,32,-1,23,25,42,-1,243,212,250,-1,243,217,212,-1,140,217,154,-1,212,217,140,-1,215,159,167,-1,215,216,159,-1,150,113,154,-1,150,123,113,-1,107,122,89,-1,107,126,122,-1,90,123,99,-1,90,113,123,-1,31,99,125,-1,99,31,45,-1,90,45,46,-1,45,90,99,-1,93,46,49,-1,46,93,90,-1,107,48,51,-1,48,107,89,-1,242,232,235,-1,248,232,242,-1,222,237,219,-1,222,238,237,-1,186,213,179,-1,186,221,213,-1,203,222,199,-1,225,222,203,-1,203,114,206,-1,124,114,203,-1,214,253,211,-1,253,214,252,-1,30,125,148,-1,30,31,125,-1,241,243,238,-1,241,252,243,-1,225,206,231,-1,206,225,203,-1,199,219,194,-1,222,219,199,-1,221,235,213,-1,221,242,235,-1,225,238,222,-1,225,241,238,-1,238,250,237,-1,238,243,250,-1,13,73,51,-1,73,13,26,-1,51,9,13,-1,51,48,9,-1,49,8,18,-1,49,46,8,-1,46,2,8,-1,46,45,2,-1,90,115,113,-1,90,93,115,-1,141,150,135,-1,150,141,123,-1,215,163,208,-1,163,215,167,-1,159,212,140,-1,216,212,159,-1,214,154,217,-1,214,150,154,-1,252,217,243,-1,252,214,217,-1,79,61,55,-1,79,102,61,-1,52,41,33,-1,52,43,41,-1,50,43,52,-1,166,194,132,-1,166,199,194,-1,22,36,33,-1,22,16,36,-1,16,10,2,-1,16,22,10,-1,25,3,7,-1,25,23,3,-1,7,13,9,-1,13,7,3,-1,58,36,29,-1,58,56,36,-1,143,182,147,-1,182,143,172,-1,170,143,145,-1,172,143,170,-1,151,149,152,-1,151,168,149,-1,169,198,190,-1,198,169,174,-1,24,0,20,-1,24,5,0,-1,234,244,228,-1,246,244,234,-1,253,218,211,-1,218,253,251,-1,161,133,178,-1,142,133,161,-1,101,108,76,-1,101,118,108,-1,70,165,128,-1,165,70,72,-1,108,69,76,-1,108,88,69,-1,72,162,165,-1,72,67,162,-1,207,171,204,-1,171,207,177,-1,155,74,180,-1,74,155,77,-1,47,5,27,-1,5,47,34,-1,65,40,35,-1,40,65,63,-1,1,38,29,-1,1,4,38,-1,103,206,114,-1,189,206,103,-1,251,224,246,-1,226,224,251,-1,154,115,140,-1,154,113,115,-1,57,87,103,-1,87,57,63,-1,226,185,224,-1,226,189,185,-1,247,223,240,-1,230,223,247,-1,85,141,105,-1,146,141,85,-1,71,105,112,-1,105,71,85,-1,72,20,67,-1,72,24,20,-1,233,191,188,-1,240,191,233,-1,84,71,54,-1,84,97,71,-1,224,236,239,-1,224,220,236,-1,210,183,155,-1,210,195,183,-1,164,204,162,-1,204,164,207,-1,76,96,106,-1,69,96,76,-1,84,177,176,-1,84,81,177,-1,171,81,88,-1,171,177,81,-1,161,108,118,-1,156,108,161,-1,104,111,82,-1,142,111,104,-1,89,49,48,-1,49,89,93,-1,9,14,7,-1,14,9,18,-1,25,41,42,-1,41,25,28,-1,237,248,242,-1,237,250,248,-1,61,131,39,-1,61,137,131,-1,174,39,131,-1,174,53,39,-1,163,129,208,-1,129,163,130,-1,158,235,232,-1,153,235,158,-1,179,152,127,-1,152,179,138,-1,102,137,61,-1,137,102,149,-1,168,198,192,-1,182,198,168,-1,44,43,66,-1,32,43,44,-1,66,68,109,-1,66,50,68,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlfpprox_Geo_5_397_normalIndex_3()
		{
			int[] value = {32,19,11,-1,32,44,19,-1,199,124,203,-1,124,199,166,-1,132,186,117,-1,132,194,186,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox2_Geo_5_403_coordIndex_2()
		{
			int[] value = {198,191,190,-1,198,186,191,-1,194,140,143,-1,194,192,140,-1,189,195,139,-1,189,90,195,-1,143,138,142,-1,143,140,138,-1,195,160,199,-1,195,161,160,-1,139,199,136,-1,139,195,199,-1,184,136,199,-1,137,136,184,-1,134,117,157,-1,134,135,117,-1,118,134,185,-1,134,118,69,-1,170,119,132,-1,170,120,119,-1,197,124,36,-1,124,197,114,-1,94,129,96,-1,94,89,129,-1,122,144,141,-1,122,19,144,-1,17,89,94,-1,17,87,89,-1,77,98,75,-1,77,153,98,-1,126,86,85,-1,126,125,86,-1,10,20,121,-1,131,20,10,-1,19,95,144,-1,19,21,95,-1,122,73,72,-1,122,141,73,-1,36,183,197,-1,36,35,183,-1,157,185,134,-1,185,157,171,-1,6,199,160,-1,184,199,6,-1,142,68,70,-1,142,138,68,-1,139,192,189,-1,140,192,139,-1,186,91,191,-1,151,91,186,-1,190,128,198,-1,190,130,128,-1,162,114,197,-1,162,112,114,-1,159,150,193,-1,159,152,150,-1,33,180,179,-1,165,180,33,-1,181,25,182,-1,164,25,181,-1,169,61,168,-1,169,178,61,-1,51,156,49,-1,156,51,57,-1,107,55,174,-1,54,55,107,-1,173,105,4,-1,173,104,105,-1,0,156,176,-1,156,0,106,-1,154,100,196,-1,154,99,100,-1,14,153,77,-1,14,13,153,-1,193,149,16,-1,149,193,150,-1,152,91,151,-1,152,93,91,-1,95,130,194,-1,95,96,130,-1,113,193,115,-1,113,159,193,-1,191,90,189,-1,191,91,90,-1,198,188,196,-1,128,188,198,-1,89,187,129,-1,89,88,187,-1,196,186,198,-1,196,100,186,-1,171,132,185,-1,132,171,170,-1,78,77,76,-1,77,78,14,-1,70,74,73,-1,74,70,67,-1,135,68,137,-1,135,69,68,-1,117,6,8,-1,117,184,6,-1,35,84,183,-1,35,85,84,-1,97,31,101,-1,97,155,31,-1,108,181,182,-1,108,109,181,-1,180,111,179,-1,180,110,111,-1,176,1,0,-1,176,38,1,-1,175,61,178,-1,61,175,59,-1,57,175,177,-1,175,57,58,-1,59,174,60,-1,59,107,174,-1,52,104,173,-1,52,53,104,-1,29,41,40,-1,29,42,41,-1,102,33,179,-1,33,102,34,-1,86,171,83,-1,86,170,171,-1,32,165,33,-1,163,165,32,-1,32,30,29,-1,32,34,30,-1,163,168,166,-1,163,169,168,-1,27,154,167,-1,27,28,154,-1,164,26,25,-1,26,164,166,-1,20,122,121,-1,122,20,19,-1,124,15,131,-1,15,124,18,-1,131,123,124,-1,131,10,123,-1,16,87,17,-1,16,149,87,-1,6,162,7,-1,160,162,6,-1,113,161,92,-1,112,161,113,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox2_Geo_5_403_normalIndex_2()
		{
			int[] value = {164,195,168,-1,164,192,195,-1,118,171,114,-1,118,172,171,-1,194,163,193,-1,194,160,163,-1,114,169,136,-1,114,171,169,-1,163,148,170,-1,163,149,148,-1,193,170,196,-1,193,163,170,-1,152,196,170,-1,167,196,152,-1,62,94,52,-1,62,112,94,-1,101,62,98,-1,62,101,119,-1,109,128,125,-1,109,96,128,-1,64,60,70,-1,60,64,77,-1,7,36,33,-1,7,4,36,-1,30,45,54,-1,30,25,45,-1,10,4,7,-1,10,9,4,-1,91,150,147,-1,91,99,150,-1,43,76,59,-1,43,73,76,-1,24,17,12,-1,29,17,24,-1,25,34,45,-1,25,16,34,-1,30,69,11,-1,30,54,69,-1,70,58,64,-1,70,55,58,-1,52,98,62,-1,98,52,82,-1,139,170,148,-1,152,170,139,-1,136,158,138,-1,136,169,158,-1,193,172,194,-1,171,172,193,-1,192,154,195,-1,153,154,192,-1,168,130,164,-1,168,121,130,-1,88,77,64,-1,88,93,77,-1,95,81,86,-1,95,107,81,-1,129,71,68,-1,127,71,129,-1,74,111,72,-1,115,111,74,-1,85,144,102,-1,85,141,144,-1,178,176,174,-1,176,178,184,-1,198,189,186,-1,199,189,198,-1,182,180,177,-1,182,188,180,-1,151,176,155,-1,176,151,175,-1,157,187,159,-1,157,183,187,-1,32,99,91,-1,32,38,99,-1,86,49,51,-1,49,86,81,-1,107,154,153,-1,107,133,154,-1,34,121,118,-1,34,33,121,-1,89,86,75,-1,89,95,86,-1,195,160,194,-1,195,154,160,-1,164,131,159,-1,130,131,164,-1,4,37,36,-1,4,3,37,-1,159,192,164,-1,159,187,192,-1,82,125,98,-1,125,82,109,-1,42,91,79,-1,91,42,32,-1,138,108,69,-1,108,138,120,-1,112,158,167,-1,112,119,158,-1,94,139,65,-1,94,152,139,-1,55,56,58,-1,55,59,56,-1,105,134,104,-1,105,126,134,-1,21,74,72,-1,21,23,74,-1,71,14,68,-1,71,15,14,-1,155,92,151,-1,155,103,92,-1,166,144,141,-1,144,166,173,-1,184,166,162,-1,166,184,190,-1,173,186,165,-1,173,198,186,-1,185,188,182,-1,185,181,188,-1,87,50,48,-1,87,80,50,-1,84,129,68,-1,129,84,135,-1,76,82,67,-1,76,109,82,-1,90,127,129,-1,106,127,90,-1,90,140,87,-1,90,135,140,-1,106,102,110,-1,106,85,102,-1,117,157,123,-1,117,146,157,-1,115,116,111,-1,116,115,110,-1,17,30,12,-1,30,17,25,-1,60,20,29,-1,20,60,53,-1,29,47,60,-1,29,24,47,-1,51,9,10,-1,51,49,9,-1,139,88,63,-1,148,88,139,-1,89,149,143,-1,93,149,89,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfpprox3_Geo_5_409_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,3,1,-1,4,5,6,-1,7,8,9,-1,10,11,12,-1,11,13,12,-1,14,15,16,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,26,27,28,-1,26,29,27,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,36,39,37,-1,23,40,34,-1,40,41,42,-1,43,44,19,-1,44,17,19,-1,45,46,38,-1,47,48,49,-1,49,50,47,-1,51,52,53,-1,53,54,51,-1,55,56,57,-1,58,59,60,-1,61,62,63,-1,58,64,65,-1,66,67,57,-1,68,69,70,-1,69,71,70,-1,72,73,74,-1,72,75,73,-1,76,77,78,-1,76,79,77,-1,80,81,82,-1,83,74,84,-1,85,86,83,-1,87,88,89,-1,90,91,92,-1,91,93,92,-1,54,94,95,-1,96,97,57,-1,24,98,99,-1,100,101,102,-1,103,104,105,-1,106,107,108,-1,109,110,111,-1,110,112,111,-1,113,110,114,-1,110,115,114,-1,116,110,113,-1,117,118,119,-1,120,121,22,-1,98,33,122,-1,123,124,125,-1,29,26,1,-1,1,3,29,-1,50,126,58,-1,60,127,58,-1,58,128,129,-1,57,130,131,-1,56,96,57,-1,132,131,130,-1,130,133,132,-1,134,14,135,-1,134,136,14,-1,49,137,135,-1,53,94,54,-1,52,51,138,-1,51,139,138,-1,140,92,93,-1,93,4,140,-1,141,142,92,-1,72,74,83,-1,5,143,144,-1,5,87,143,-1,145,146,147,-1,145,62,146,-1,148,48,149,-1,149,61,148,-1,84,150,151,-1,150,7,151,-1,84,151,85,-1,85,83,84,-1,57,97,66,-1,55,57,131,-1,152,128,58,-1,58,65,59,-1,127,47,58,-1,152,58,126,-1,15,153,3,-1,153,29,3,-1,79,154,77,-1,22,155,120,-1,22,21,155,-1,155,21,156,-1,21,157,156,-1,114,115,158,-1,115,89,158,-1,159,160,161,-1,162,88,160,-1,88,161,160,-1,161,88,163,-1,88,87,163,-1,143,89,115,-1,143,87,89,-1,164,165,166,-1,164,39,165,-1,28,167,26,-1,135,137,134,-1,109,115,110,-1,109,143,115,-1,129,64,58,-1,57,67,168,-1,142,90,92,-1,169,170,75,-1,61,171,148,-1,61,63,171,-1,92,170,141,-1,92,140,170,-1,63,69,68,-1,68,139,63,-1,172,173,12,-1,173,95,12,-1,174,79,175,-1,174,154,79,-1,176,86,177,-1,177,70,176,-1,178,179,180,-1,180,181,178,-1,69,145,181,-1,181,71,69,-1,182,111,166,-1,182,8,111,-1,127,48,47,-1,127,149,48,-1,86,85,67,-1,85,168,67,-1,168,85,183,-1,85,151,183,-1,58,47,50,-1,184,118,37,-1,118,117,37,-1,114,185,113,-1,25,107,23,-1,33,35,122,-1,186,31,187,-1,165,39,36,-1,107,25,108,-1,34,33,23,-1,12,188,172,-1,12,13,188,-1,132,11,10,-1,2,1,91,-1,189,91,1,-1,91,189,93,-1,144,150,190,-1,144,191,150,-1,182,132,133,-1,182,11,132,-1,172,192,136,-1,172,188,192,-1,98,156,99,-1,98,155,156,-1,124,193,125,-1,193,124,194,-1,102,82,81,-1,101,82,102,-1,31,45,117,-1,31,186,45,-1,43,195,44,-1,195,43,104,-1,196,105,197,-1,105,196,198,-1,199,35,34,-1,200,35,199,-1,81,201,102,-1,81,202,201,-1,117,32,31,-1,117,119,32,-1,203,159,121,-1,203,160,159,-1,204,114,205,-1,114,204,185,-1,205,158,206,-1,114,158,205,-1,156,123,125,-1,157,123,156,-1,100,106,108,-1,100,207,106,-1,208,209,187,-1,210,209,208,-1,154,46,202,-1,154,174,46,-1,211,208,30,-1,211,212,208,-1,105,213,103,-1,213,105,198,-1,106,41,107,-1,210,41,106,-1,25,99,193,-1,99,25,24,-1,104,211,195,-1,103,211,104,-1,18,113,185,-1,113,18,116,-1,17,184,214,-1,17,118,184,-1,132,94,131,-1,132,10,94,-1,215,96,138,-1,96,215,97,-1,67,177,86,-1,66,177,67,-1,53,131,94,-1,53,55,131,-1,135,16,126,-1,14,16,135,-1,90,129,128,-1,90,142,129,-1,147,65,178,-1,65,147,59,-1,127,146,149,-1,60,146,127,-1,64,142,179,-1,142,64,129,-1,130,9,133,-1,130,183,9,-1,166,112,164,-1,166,111,112,-1,71,176,70,-1,71,169,176,-1,188,175,79,-1,175,188,13,-1,216,95,173,-1,95,216,54,-1,51,63,139,-1,51,171,63,-1,180,170,169,-1,141,170,180,-1,69,62,145,-1,69,63,62,-1,148,216,137,-1,148,171,216,-1,172,134,173,-1,134,172,136,-1,140,6,73,-1,4,6,140,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox3_Geo_5_409_coordIndex_2()
		{
			int[] value = {73,170,140,-1,73,75,170,-1,179,141,180,-1,179,142,141,-1,158,88,162,-1,158,89,88,-1,109,144,143,-1,191,144,109,-1,26,161,163,-1,167,161,26,-1,217,187,209,-1,217,186,187,-1,42,198,218,-1,42,213,198,-1,184,39,164,-1,184,37,39,-1,20,28,21,-1,20,167,28,-1,159,167,20,-1,159,161,167,-1,196,206,219,-1,205,206,196,-1,200,121,120,-1,203,121,200,-1,21,27,157,-1,21,28,27,-1,175,36,174,-1,36,175,165,-1,80,124,123,-1,80,82,124,-1,174,38,46,-1,38,174,36,-1,152,2,128,-1,152,0,2,-1,183,57,168,-1,183,130,57,-1,8,109,111,-1,191,109,8,-1,15,76,153,-1,15,192,76,-1,87,189,163,-1,87,5,189,-1,181,147,178,-1,181,145,147,-1,68,177,215,-1,70,177,68,-1,190,73,6,-1,73,190,74,-1,62,149,146,-1,62,61,149,-1,10,95,94,-1,12,95,10,-1,13,165,175,-1,13,11,165,-1,11,166,165,-1,11,182,166,-1,0,126,16,-1,126,0,152,-1,77,202,81,-1,202,77,154,-1,153,27,29,-1,220,27,153,-1,78,153,76,-1,78,220,153,-1,19,197,43,-1,19,204,197,-1,116,112,110,-1,214,112,116,-1,197,205,196,-1,205,197,204,-1,33,24,23,-1,33,98,24,-1,212,210,208,-1,212,41,210,-1,30,195,211,-1,32,195,30,-1,207,102,201,-1,207,100,102,-1,25,194,108,-1,194,25,193,-1,138,68,215,-1,68,138,139,-1,163,1,26,-1,163,189,1,-1,74,150,84,-1,74,190,150,-1,221,219,206,-1,221,199,219,-1,176,83,86,-1,83,176,72,-1,220,80,123,-1,220,78,80,-1,78,81,80,-1,78,77,81,-1,192,79,76,-1,192,188,79,-1,137,173,134,-1,137,216,173,-1,169,181,180,-1,169,71,181,-1,169,72,176,-1,169,75,72,-1,54,171,51,-1,54,216,171,-1,44,118,17,-1,118,44,119,-1,214,164,112,-1,164,214,184,-1,146,59,147,-1,59,146,60,-1,178,64,179,-1,64,178,65,-1,50,135,126,-1,49,135,50,-1,128,91,90,-1,2,91,128,-1,66,215,177,-1,97,215,66,-1,138,56,52,-1,56,138,96,-1,7,183,151,-1,7,9,183,-1,55,52,56,-1,53,52,55,-1,137,48,148,-1,49,48,137,-1,214,18,17,-1,116,18,214,-1,40,218,34,-1,40,42,218,-1,213,41,212,-1,42,41,213,-1,107,40,23,-1,107,41,40,-1,209,201,217,-1,201,209,207,-1,103,212,211,-1,212,103,213,-1,38,117,45,-1,38,37,117,-1,203,199,221,-1,200,199,203,-1,187,30,208,-1,187,31,30,-1,207,210,106,-1,207,209,210,-1,101,108,194,-1,101,100,108,-1,220,157,27,-1,220,123,157,-1,221,160,203,-1,221,162,160,-1,18,204,19,-1,18,185,204,-1,162,206,158,-1,162,221,206,-1,20,121,159,-1,121,20,22,-1,218,199,34,-1,218,219,199,-1,186,46,45,-1,46,186,217,-1,155,122,120,-1,98,122,155,-1,198,219,218,-1,198,196,219,-1,105,43,197,-1,104,43,105,-1,195,119,44,-1,32,119,195,-1,217,202,46,-1,201,202,217,-1,82,194,124,-1,194,82,101,-1,125,99,156,-1,99,125,193,-1,120,35,200,-1,120,122,35,-1,136,15,14,-1,136,192,15,-1,133,8,182,-1,9,8,133,-1,7,191,8,-1,150,191,7,-1,144,6,5,-1,6,144,190,-1,5,93,189,-1,93,5,4,-1,3,16,15,-1,16,3,0,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfpprox3_Geo_5_409_normalIndex_1()
		{
			int[] value = {2,8,6,-1,2,5,8,-1,97,62,48,-1,197,208,216,-1,175,189,166,-1,189,178,166,-1,44,35,19,-1,209,182,179,-1,28,12,16,-1,137,133,149,-1,18,23,20,-1,18,9,23,-1,56,129,114,-1,107,108,101,-1,186,212,194,-1,186,206,212,-1,137,117,108,-1,117,99,100,-1,168,192,179,-1,192,209,179,-1,183,159,194,-1,13,49,50,-1,50,15,13,-1,162,181,174,-1,174,150,162,-1,190,201,203,-1,1,21,26,-1,153,165,164,-1,1,11,14,-1,204,199,203,-1,151,156,109,-1,156,145,109,-1,47,40,53,-1,47,38,40,-1,71,88,54,-1,71,148,88,-1,51,110,68,-1,118,53,132,-1,173,167,118,-1,92,134,77,-1,29,27,96,-1,27,58,96,-1,150,169,144,-1,213,220,203,-1,133,41,60,-1,157,138,146,-1,65,98,63,-1,131,140,155,-1,176,170,202,-1,170,205,202,-1,143,170,70,-1,170,87,70,-1,185,170,143,-1,191,219,195,-1,34,45,16,-1,41,107,55,-1,31,36,24,-1,9,18,8,-1,8,5,9,-1,15,17,1,-1,26,25,1,-1,1,3,7,-1,203,210,193,-1,201,213,203,-1,200,193,210,-1,210,215,200,-1,78,44,39,-1,78,82,44,-1,50,103,39,-1,174,169,150,-1,181,162,187,-1,162,158,187,-1,102,96,58,-1,58,97,102,-1,141,37,96,-1,47,53,118,-1,62,113,84,-1,62,92,113,-1,163,94,80,-1,163,165,94,-1,122,49,83,-1,83,153,122,-1,132,161,188,-1,161,197,188,-1,132,188,173,-1,173,118,132,-1,203,220,204,-1,190,203,193,-1,0,3,1,-1,1,14,21,-1,25,13,1,-1,0,1,17,-1,35,32,5,-1,32,9,5,-1,148,124,88,-1,16,4,34,-1,16,12,4,-1,4,12,10,-1,12,22,10,-1,70,87,85,-1,87,77,85,-1,52,121,95,-1,127,134,121,-1,134,95,121,-1,95,134,59,-1,134,92,59,-1,113,77,87,-1,113,92,77,-1,217,196,221,-1,217,206,196,-1,20,30,18,-1,39,103,78,-1,176,87,170,-1,176,113,87,-1,7,11,1,-1,203,199,198,-1,37,29,96,-1,111,142,38,-1,153,154,122,-1,153,164,154,-1,96,142,141,-1,96,102,142,-1,164,156,151,-1,151,158,164,-1,136,123,166,-1,123,144,166,-1,171,148,180,-1,171,124,148,-1,76,167,177,-1,177,109,76,-1,61,42,152,-1,152,160,61,-1,156,163,160,-1,160,145,156,-1,214,202,221,-1,214,208,202,-1,25,49,13,-1,25,83,49,-1,167,173,199,-1,173,198,199,-1,198,173,211,-1,173,188,211,-1,1,13,15,-1,218,219,212,-1,219,191,212,-1,70,126,143,-1,149,140,137,-1,107,101,55,-1,139,129,73,-1,196,206,186,-1,140,149,155,-1,108,107,137,-1,166,147,136,-1,166,178,147,-1,200,189,175,-1,6,8,27,-1,46,27,8,-1,27,46,58,-1,84,161,69,-1,84,172,161,-1,214,200,215,-1,214,189,200,-1,136,81,82,-1,136,147,81,-1,41,10,60,-1,41,4,10,-1,36,75,24,-1,75,36,104,-1,146,68,110,-1,138,68,146,-1,129,183,191,-1,129,139,183,-1,168,125,192,-1,125,168,98,-1,43,63,90,-1,63,43,67,-1,106,101,108,-1,112,101,106,-1,110,119,146,-1,110,130,119,-1,191,114,129,-1,191,195,114,-1,115,52,45,-1,115,121,52,-1,105,70,57,-1,70,105,126,-1,57,85,79,-1,70,85,57,-1,10,31,24,-1,22,31,10,-1,157,131,155,-1,157,128,131,-1,72,91,73,-1,93,91,72,-1,124,159,130,-1,124,171,159,-1,64,72,56,-1,64,74,72,-1,63,86,65,-1,86,63,67,-1,131,99,140,-1,93,99,131,-1,149,60,75,-1,60,149,133,-1,98,64,125,-1,65,64,98,-1,182,143,126,-1,143,182,185,-1,209,218,207,-1,209,219,218,-1,200,169,193,-1,200,175,169,-1,184,213,187,-1,213,184,220,-1,199,177,167,-1,204,177,199,-1,174,193,169,-1,174,190,193,-1,39,19,17,-1,44,19,39,-1,29,7,3,-1,29,37,7,-1,80,14,61,-1,14,80,21,-1,25,94,83,-1,26,94,25,-1,11,37,42,-1,37,11,7,-1,210,216,215,-1,210,211,216,-1,221,205,217,-1,221,202,205,-1,145,76,109,-1,145,111,76,-1,147,180,148,-1,180,147,178,-1,135,144,123,-1,144,135,150,-1,162,164,158,-1,162,154,164,-1,152,142,111,-1,141,142,152,-1,156,165,163,-1,156,164,165,-1,122,135,103,-1,122,154,135,-1,136,78,123,-1,78,136,82,-1,102,48,40,-1,97,48,102,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox3_Geo_5_409_normalIndex_2()
		{
			int[] value = {40,142,102,-1,40,38,142,-1,42,141,152,-1,42,37,141,-1,85,134,127,-1,85,77,134,-1,176,84,113,-1,172,84,176,-1,18,95,59,-1,30,95,18,-1,116,73,91,-1,116,139,73,-1,100,67,89,-1,100,86,67,-1,218,206,217,-1,218,212,206,-1,28,20,12,-1,28,30,20,-1,52,30,28,-1,52,95,30,-1,43,79,66,-1,57,79,43,-1,112,45,34,-1,115,45,112,-1,12,23,22,-1,12,20,23,-1,180,186,171,-1,186,180,196,-1,51,36,31,-1,51,68,36,-1,171,194,159,-1,194,171,186,-1,0,6,3,-1,0,2,6,-1,211,203,198,-1,211,210,203,-1,208,176,202,-1,172,176,208,-1,35,71,32,-1,35,81,71,-1,92,46,59,-1,92,62,46,-1,160,80,61,-1,160,163,80,-1,151,177,184,-1,109,177,151,-1,69,40,48,-1,40,69,53,-1,165,83,94,-1,165,153,83,-1,175,144,169,-1,166,144,175,-1,178,196,180,-1,178,189,196,-1,189,221,196,-1,189,214,221,-1,2,17,19,-1,17,2,0,-1,88,130,110,-1,130,88,124,-1,32,23,9,-1,33,23,32,-1,54,32,71,-1,54,33,32,-1,179,90,168,-1,179,105,90,-1,185,205,170,-1,207,205,185,-1,90,57,43,-1,57,90,105,-1,107,133,137,-1,107,41,133,-1,74,93,72,-1,74,99,93,-1,56,125,64,-1,114,125,56,-1,128,146,119,-1,128,157,146,-1,149,104,155,-1,104,149,75,-1,187,151,184,-1,151,187,158,-1,59,8,18,-1,59,46,8,-1,53,161,132,-1,53,69,161,-1,120,66,79,-1,120,106,66,-1,76,118,167,-1,118,76,47,-1,33,51,31,-1,33,54,51,-1,54,110,51,-1,54,88,110,-1,81,148,71,-1,81,147,148,-1,103,123,78,-1,103,135,123,-1,111,160,152,-1,111,145,160,-1,111,47,76,-1,111,38,47,-1,150,154,162,-1,150,135,154,-1,192,219,209,-1,219,192,195,-1,207,217,205,-1,217,207,218,-1,94,21,80,-1,21,94,26,-1,61,11,42,-1,11,61,14,-1,15,39,17,-1,50,39,15,-1,3,27,29,-1,6,27,3,-1,204,184,177,-1,220,184,204,-1,187,201,181,-1,201,187,213,-1,197,211,188,-1,197,216,211,-1,190,181,201,-1,174,181,190,-1,103,49,122,-1,50,49,103,-1,207,182,209,-1,185,182,207,-1,117,89,108,-1,117,100,89,-1,86,99,74,-1,100,99,86,-1,140,117,137,-1,140,99,117,-1,91,119,116,-1,119,91,128,-1,65,74,64,-1,74,65,86,-1,194,191,183,-1,194,212,191,-1,115,106,120,-1,112,106,115,-1,73,56,72,-1,73,129,56,-1,128,93,131,-1,128,91,93,-1,138,155,104,-1,138,157,155,-1,33,22,23,-1,33,31,22,-1,120,121,115,-1,120,127,121,-1,182,105,179,-1,182,126,105,-1,127,79,85,-1,127,120,79,-1,28,45,52,-1,45,28,16,-1,89,106,108,-1,89,66,106,-1,139,159,183,-1,159,139,116,-1,4,55,34,-1,41,55,4,-1,67,66,89,-1,67,43,66,-1,63,168,90,-1,98,168,63,-1,125,195,192,-1,114,195,125,-1,116,130,159,-1,119,130,116,-1,68,104,36,-1,104,68,138,-1,24,60,10,-1,60,24,75,-1,34,101,112,-1,34,55,101,-1,82,35,44,-1,82,81,35,-1,215,208,214,-1,216,208,215,-1,197,172,208,-1,161,172,197,-1,84,48,62,-1,48,84,69,-1,62,58,46,-1,58,62,97,-1,5,19,35,-1,19,5,2,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfpprox4_Geo_5_415_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,5,9,10,-1,11,12,13,-1,11,14,12,-1,11,15,14,-1,16,17,18,-1,16,19,17,-1,19,16,20,-1,13,21,20,-1,14,22,12,-1,23,24,25,-1,26,27,28,-1,28,29,26,-1,30,31,32,-1,1,33,34,-1,1,0,33,-1,35,36,37,-1,37,38,35,-1,39,40,41,-1,41,42,39,-1,43,44,45,-1,43,45,46,-1,46,47,43,-1,48,49,47,-1,50,51,52,-1,53,54,50,-1,55,56,57,-1,58,59,60,-1,60,61,58,-1,30,32,62,-1,32,63,62,-1,64,65,66,-1,65,67,66,-1,68,65,69,-1,20,21,19,-1,70,39,42,-1,70,38,39,-1,71,72,73,-1,22,74,75,-1,22,76,74,-1,77,78,79,-1,79,74,77,-1,80,48,47,-1,80,81,48,-1,82,83,84,-1,83,85,84,-1,86,87,50,-1,88,50,89,-1,53,50,90,-1,91,50,92,-1,93,94,95,-1,95,96,93,-1,97,46,98,-1,99,100,101,-1,99,102,100,-1,103,104,105,-1,106,107,108,-1,109,110,111,-1,7,109,112,-1,7,6,109,-1,23,113,114,-1,113,115,114,-1,116,27,117,-1,118,119,120,-1,119,121,120,-1,9,5,122,-1,2,4,123,-1,113,23,124,-1,23,125,124,-1,25,15,126,-1,15,11,126,-1,36,77,127,-1,127,37,36,-1,34,35,128,-1,35,70,128,-1,35,38,70,-1,129,130,110,-1,129,131,130,-1,8,24,6,-1,106,132,107,-1,100,102,133,-1,104,134,135,-1,104,103,134,-1,136,93,137,-1,93,96,137,-1,51,50,54,-1,138,90,50,-1,89,50,87,-1,91,139,50,-1,140,43,85,-1,52,92,50,-1,120,121,141,-1,121,142,141,-1,143,144,145,-1,143,124,144,-1,20,146,11,-1,146,126,11,-1,3,147,31,-1,28,106,108,-1,18,33,0,-1,18,78,33,-1,11,13,20,-1,57,148,55,-1,145,149,143,-1,149,150,143,-1,151,152,153,-1,151,154,152,-1,55,155,156,-1,156,56,55,-1,121,110,142,-1,153,152,105,-1,152,157,105,-1,69,158,68,-1,98,159,97,-1,50,88,138,-1,49,43,47,-1,50,139,86,-1,85,83,140,-1,144,158,145,-1,39,160,40,-1,42,161,10,-1,42,41,161,-1,160,39,38,-1,38,37,160,-1,162,163,123,-1,110,130,111,-1,79,78,17,-1,22,75,12,-1,78,18,17,-1,21,75,79,-1,16,18,0,-1,12,75,21,-1,21,13,12,-1,74,79,75,-1,1,122,5,-1,111,112,109,-1,161,147,10,-1,164,4,3,-1,4,1,5,-1,2,1,4,-1,19,79,17,-1,21,79,19,-1,111,165,132,-1,111,130,165,-1,166,107,167,-1,166,108,107,-1,8,168,15,-1,117,168,8,-1,70,122,128,-1,122,70,9,-1,31,161,32,-1,147,161,31,-1,149,158,69,-1,145,158,149,-1,169,44,170,-1,169,45,44,-1,171,72,95,-1,172,72,171,-1,173,174,94,-1,174,173,175,-1,83,176,177,-1,82,176,83,-1,178,83,177,-1,83,178,140,-1,102,179,133,-1,179,102,180,-1,181,80,97,-1,181,81,80,-1,172,73,72,-1,73,172,182,-1,86,43,49,-1,86,139,43,-1,175,183,174,-1,184,183,175,-1,172,185,186,-1,172,171,185,-1,187,88,188,-1,138,88,187,-1,84,52,184,-1,84,92,52,-1,139,85,43,-1,91,85,139,-1,188,89,189,-1,89,188,88,-1,53,190,186,-1,90,190,53,-1,87,49,48,-1,49,87,86,-1,164,31,30,-1,164,3,31,-1,157,99,101,-1,157,152,99,-1,103,157,191,-1,105,157,103,-1,61,192,58,-1,193,192,61,-1,194,110,109,-1,142,110,194,-1,195,154,196,-1,197,154,195,-1,59,137,198,-1,59,58,137,-1,192,199,136,-1,192,155,199,-1,151,196,154,-1,200,196,151,-1,119,201,129,-1,202,201,119,-1,109,114,194,-1,109,6,114,-1,203,148,204,-1,203,55,148,-1,205,149,206,-1,205,150,149,-1,67,103,191,-1,103,67,134,-1,148,143,150,-1,143,148,57,-1,24,114,6,-1,114,24,23,-1,125,146,207,-1,125,126,146,-1,163,208,209,-1,208,163,162,-1,210,161,41,-1,161,210,211,-1,7,106,116,-1,112,106,7,-1,22,15,168,-1,15,22,14,-1,128,1,34,-1,1,128,122,-1,131,212,213,-1,214,212,131,-1,112,132,106,-1,111,132,112,-1,160,127,215,-1,37,127,160,-1,29,216,217,-1,29,166,216,-1,218,60,200,-1,118,60,218,-1,214,129,201,-1,131,129,214,-1,219,216,220,-1,216,219,221,-1,124,207,144,-1,124,125,207,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox4_Geo_5_415_coordIndex_2()
		{
			int[] value = {206,222,205,-1,222,206,170,-1,98,45,169,-1,45,98,46,-1,158,223,68,-1,223,158,144,-1,219,215,221,-1,224,215,219,-1,201,211,214,-1,63,211,201,-1,225,200,151,-1,225,218,200,-1,224,160,215,-1,224,40,160,-1,26,217,76,-1,26,29,217,-1,118,61,60,-1,118,120,61,-1,82,184,175,-1,84,184,82,-1,156,115,56,-1,156,226,115,-1,68,135,134,-1,68,223,135,-1,180,189,179,-1,180,188,189,-1,186,182,172,-1,182,186,190,-1,95,71,96,-1,95,72,71,-1,120,193,61,-1,141,193,120,-1,156,141,226,-1,156,193,141,-1,227,173,228,-1,227,176,173,-1,227,204,229,-1,204,227,203,-1,177,222,178,-1,177,229,222,-1,57,124,143,-1,113,124,57,-1,159,230,231,-1,230,159,66,-1,100,181,231,-1,181,100,133,-1,224,41,40,-1,224,210,41,-1,211,32,161,-1,211,63,32,-1,135,164,104,-1,162,164,135,-1,33,77,36,-1,77,33,78,-1,76,168,26,-1,76,22,168,-1,0,209,16,-1,209,0,163,-1,162,223,208,-1,223,162,135,-1,30,225,232,-1,225,30,62,-1,165,220,167,-1,165,213,220,-1,141,194,226,-1,194,141,142,-1,114,226,194,-1,114,115,226,-1,28,116,106,-1,28,27,116,-1,231,97,159,-1,97,231,181,-1,230,100,231,-1,230,101,100,-1,104,153,105,-1,104,232,153,-1,66,98,64,-1,66,159,98,-1,229,205,222,-1,229,204,205,-1,56,113,57,-1,56,115,113,-1,176,229,177,-1,176,227,229,-1,136,228,93,-1,199,228,136,-1,232,151,153,-1,225,151,232,-1,233,99,197,-1,233,102,99,-1,96,198,137,-1,96,71,198,-1,174,185,171,-1,174,183,185,-1,190,234,182,-1,234,190,187,-1,179,48,81,-1,179,189,48,-1,164,232,104,-1,164,30,232,-1,228,203,227,-1,199,203,228,-1,216,167,220,-1,216,166,167,-1,73,197,195,-1,233,197,73,-1,62,218,225,-1,62,202,218,-1,210,219,212,-1,210,224,219,-1,74,127,77,-1,127,74,235,-1,144,208,223,-1,208,144,207,-1,169,64,98,-1,64,169,236,-1,170,178,222,-1,178,170,44,-1,76,235,74,-1,217,235,76,-1,220,212,219,-1,220,213,212,-1,118,202,119,-1,118,218,202,-1,195,71,73,-1,198,71,195,-1,217,221,235,-1,217,216,221,-1,235,215,127,-1,235,221,215,-1,130,213,165,-1,131,213,130,-1,42,9,70,-1,9,42,10,-1,7,117,8,-1,7,116,117,-1,214,210,212,-1,211,210,214,-1,162,4,164,-1,162,123,4,-1,207,209,208,-1,207,146,209,-1,23,126,125,-1,23,25,126,-1,65,134,67,-1,134,65,68,-1,66,191,230,-1,66,67,191,-1,236,65,64,-1,236,69,65,-1,204,150,205,-1,204,148,150,-1,199,55,203,-1,199,155,55,-1,129,121,119,-1,129,110,121,-1,63,202,62,-1,63,201,202,-1,200,59,196,-1,60,59,200,-1,58,136,137,-1,58,192,136,-1,196,198,195,-1,196,59,198,-1,197,152,154,-1,99,152,197,-1,193,155,192,-1,156,155,193,-1,191,101,230,-1,191,157,101,-1,183,54,185,-1,54,183,51,-1,90,187,190,-1,187,90,138,-1,189,87,48,-1,87,189,89,-1,85,92,84,-1,92,85,91,-1,187,180,234,-1,187,188,180,-1,54,186,185,-1,186,54,53,-1,173,93,228,-1,173,94,93,-1,184,51,183,-1,52,51,184,-1,234,102,233,-1,102,234,180,-1,140,44,43,-1,140,178,44,-1,182,233,73,-1,182,234,233,-1,133,81,181,-1,81,133,179,-1,80,46,97,-1,47,46,80,-1,176,175,173,-1,175,176,82,-1,174,95,94,-1,171,95,174,-1,206,69,236,-1,69,206,149,-1,236,170,206,-1,236,169,170,-1,36,34,33,-1,34,36,35,-1,2,163,0,-1,123,163,2,-1,25,8,15,-1,8,25,24,-1,117,26,168,-1,27,26,117,-1,28,166,29,-1,108,166,28,-1,167,132,165,-1,132,167,107,-1,16,146,20,-1,146,16,209,-1,3,10,147,-1,3,5,10,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlfpprox4_Geo_5_415_normalIndex_1()
		{
			int[] value = {5,3,1,-1,37,13,18,-1,180,194,150,-1,18,30,66,-1,26,19,12,-1,26,47,19,-1,26,78,47,-1,46,68,25,-1,46,88,68,-1,88,46,43,-1,12,40,43,-1,47,63,19,-1,131,148,103,-1,158,196,206,-1,206,168,158,-1,99,69,139,-1,3,8,0,-1,3,5,8,-1,15,32,84,-1,84,52,15,-1,67,135,125,-1,125,61,67,-1,117,20,100,-1,117,100,91,-1,91,134,117,-1,162,153,134,-1,119,89,98,-1,97,90,119,-1,193,191,140,-1,227,213,218,-1,218,229,227,-1,99,139,166,-1,139,171,166,-1,85,81,24,-1,81,28,24,-1,59,81,104,-1,43,40,88,-1,33,67,61,-1,33,52,67,-1,209,195,167,-1,63,83,31,-1,63,110,83,-1,72,53,76,-1,76,83,72,-1,113,162,134,-1,113,111,162,-1,86,74,82,-1,74,105,82,-1,152,147,119,-1,144,119,151,-1,97,119,114,-1,106,119,87,-1,228,199,210,-1,210,221,228,-1,17,91,58,-1,137,94,95,-1,137,141,94,-1,42,34,75,-1,219,225,217,-1,205,235,231,-1,194,205,214,-1,194,180,205,-1,131,142,187,-1,142,192,187,-1,198,196,165,-1,215,200,226,-1,200,223,226,-1,30,18,10,-1,1,13,2,-1,142,131,60,-1,131,64,60,-1,103,78,54,-1,78,26,54,-1,32,72,121,-1,121,84,32,-1,0,15,11,-1,15,33,11,-1,15,52,33,-1,197,216,235,-1,197,189,216,-1,150,148,180,-1,219,236,225,-1,94,141,102,-1,34,22,7,-1,34,42,22,-1,232,228,224,-1,228,221,224,-1,89,119,90,-1,128,114,119,-1,151,119,147,-1,106,133,119,-1,62,117,105,-1,98,87,119,-1,226,223,230,-1,223,222,230,-1,56,57,51,-1,56,60,57,-1,43,50,26,-1,50,54,26,-1,37,73,69,-1,206,219,217,-1,25,8,5,-1,25,53,8,-1,26,12,43,-1,140,123,193,-1,51,49,56,-1,49,48,56,-1,156,124,107,-1,156,157,124,-1,193,220,208,-1,208,191,193,-1,223,235,222,-1,107,124,75,-1,124,92,75,-1,104,65,59,-1,58,9,17,-1,119,144,128,-1,153,117,134,-1,119,133,152,-1,105,74,62,-1,57,65,51,-1,67,115,135,-1,61,136,66,-1,61,125,136,-1,115,67,52,-1,52,84,115,-1,4,6,2,-1,235,216,231,-1,76,53,68,-1,63,31,19,-1,53,25,68,-1,40,31,76,-1,46,25,5,-1,19,31,40,-1,40,12,19,-1,83,76,31,-1,3,10,18,-1,231,214,205,-1,136,73,66,-1,23,13,37,-1,13,3,18,-1,1,3,13,-1,88,76,68,-1,40,76,88,-1,231,207,236,-1,231,216,207,-1,183,225,201,-1,183,217,225,-1,150,112,78,-1,165,112,150,-1,33,10,11,-1,10,33,30,-1,69,136,139,-1,73,136,69,-1,49,65,104,-1,51,65,49,-1,93,20,38,-1,93,100,20,-1,146,195,210,-1,126,195,146,-1,174,132,199,-1,132,174,116,-1,74,138,70,-1,86,138,74,-1,16,74,70,-1,74,16,62,-1,141,149,102,-1,149,141,143,-1,21,113,17,-1,21,111,113,-1,126,167,195,-1,167,126,122,-1,152,117,153,-1,152,133,117,-1,116,71,132,-1,80,71,116,-1,126,77,79,-1,126,146,77,-1,120,144,145,-1,128,144,120,-1,82,98,80,-1,82,87,98,-1,133,105,117,-1,106,105,133,-1,145,151,155,-1,151,145,144,-1,97,101,79,-1,114,101,97,-1,147,153,162,-1,153,147,152,-1,23,69,99,-1,23,37,69,-1,92,137,95,-1,92,124,137,-1,42,92,44,-1,75,92,42,-1,229,234,227,-1,233,234,229,-1,204,235,205,-1,222,235,204,-1,179,157,185,-1,159,157,179,-1,213,224,211,-1,213,227,224,-1,234,212,232,-1,234,220,212,-1,156,185,157,-1,186,185,156,-1,200,181,197,-1,188,181,200,-1,205,187,204,-1,205,180,187,-1,184,123,118,-1,184,193,123,-1,36,49,41,-1,36,48,49,-1,28,42,44,-1,42,28,22,-1,123,56,48,-1,56,123,140,-1,148,187,180,-1,187,148,131,-1,64,50,55,-1,64,54,50,-1,6,35,39,-1,35,6,4,-1,172,136,125,-1,136,172,169,-1,194,219,198,-1,214,219,194,-1,63,78,112,-1,78,63,47,-1,11,3,0,-1,3,11,10,-1,189,178,182,-1,176,178,189,-1,214,236,219,-1,231,236,214,-1,115,121,163,-1,84,121,115,-1,168,161,130,-1,168,183,161,-1,190,218,186,-1,215,218,190,-1,176,197,181,-1,189,197,176,-1,177,161,175,-1,161,177,164,-1,60,55,57,-1,60,64,55,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox4_Geo_5_415_normalIndex_2()
		{
			int[] value = {41,29,36,-1,29,41,38,-1,58,100,93,-1,100,58,91,-1,65,45,59,-1,45,65,57,-1,177,163,164,-1,173,163,177,-1,181,169,176,-1,171,169,181,-1,160,186,156,-1,160,190,186,-1,173,115,163,-1,173,135,115,-1,158,130,110,-1,158,168,130,-1,215,229,218,-1,215,226,229,-1,86,80,116,-1,82,80,86,-1,208,192,191,-1,208,202,192,-1,59,7,22,-1,59,45,7,-1,143,155,149,-1,143,145,155,-1,79,122,126,-1,122,79,101,-1,210,209,221,-1,210,195,209,-1,226,233,229,-1,230,233,226,-1,208,230,202,-1,208,233,230,-1,170,174,203,-1,170,138,174,-1,170,118,109,-1,118,170,184,-1,70,29,16,-1,70,109,29,-1,140,60,56,-1,142,60,140,-1,9,27,14,-1,27,9,24,-1,94,21,14,-1,21,94,102,-1,173,125,135,-1,173,172,125,-1,169,139,136,-1,169,171,139,-1,7,23,34,-1,4,23,7,-1,8,72,32,-1,72,8,53,-1,110,112,158,-1,110,63,112,-1,5,39,46,-1,39,5,6,-1,4,45,35,-1,45,4,7,-1,99,160,96,-1,160,99,166,-1,207,175,201,-1,207,182,175,-1,230,204,202,-1,204,230,222,-1,187,202,204,-1,187,192,202,-1,206,198,219,-1,206,196,198,-1,14,17,9,-1,17,14,21,-1,27,94,14,-1,27,95,94,-1,34,107,75,-1,34,96,107,-1,24,58,85,-1,24,9,58,-1,109,36,29,-1,109,118,36,-1,191,142,140,-1,191,192,142,-1,138,109,70,-1,138,170,109,-1,232,203,228,-1,212,203,232,-1,96,156,107,-1,160,156,96,-1,154,137,159,-1,154,141,137,-1,221,211,224,-1,221,209,211,-1,132,77,146,-1,132,71,77,-1,101,127,122,-1,127,101,120,-1,149,162,111,-1,149,155,162,-1,23,96,34,-1,23,99,96,-1,203,184,170,-1,212,184,203,-1,161,201,175,-1,161,183,201,-1,167,159,179,-1,154,159,167,-1,166,190,160,-1,166,188,190,-1,172,177,178,-1,172,173,177,-1,83,121,72,-1,121,83,129,-1,57,35,45,-1,35,57,55,-1,93,85,58,-1,85,93,108,-1,38,16,29,-1,16,38,20,-1,110,129,83,-1,130,129,110,-1,175,178,177,-1,175,182,178,-1,215,188,200,-1,215,190,188,-1,179,209,167,-1,211,209,179,-1,130,164,129,-1,130,161,164,-1,129,163,121,-1,129,164,163,-1,216,182,207,-1,189,182,216,-1,61,30,33,-1,30,61,66,-1,194,165,150,-1,194,198,165,-1,176,172,178,-1,169,172,176,-1,4,13,23,-1,4,2,13,-1,55,39,35,-1,55,50,39,-1,131,54,64,-1,131,103,54,-1,81,22,28,-1,22,81,59,-1,24,44,27,-1,24,28,44,-1,108,81,85,-1,108,104,81,-1,118,48,36,-1,118,123,48,-1,212,193,184,-1,212,220,193,-1,197,223,200,-1,197,235,223,-1,171,188,166,-1,171,181,188,-1,186,213,185,-1,218,213,186,-1,227,232,224,-1,227,234,232,-1,185,211,179,-1,185,213,211,-1,159,124,157,-1,137,124,159,-1,233,220,234,-1,208,220,233,-1,44,95,27,-1,44,92,95,-1,71,90,77,-1,90,71,89,-1,114,120,101,-1,120,114,128,-1,155,147,162,-1,147,155,151,-1,105,87,82,-1,87,105,106,-1,120,143,127,-1,120,145,143,-1,90,79,77,-1,79,90,97,-1,174,228,203,-1,174,199,228,-1,80,89,71,-1,98,89,80,-1,127,141,154,-1,141,127,143,-1,62,20,117,-1,62,16,20,-1,122,154,167,-1,122,127,154,-1,102,111,21,-1,111,102,149,-1,113,91,17,-1,134,91,113,-1,138,116,174,-1,116,138,86,-1,132,210,199,-1,146,210,132,-1,41,104,108,-1,104,41,49,-1,108,38,41,-1,108,93,38,-1,32,0,8,-1,0,32,15,-1,1,6,5,-1,2,6,1,-1,103,150,78,-1,150,103,148,-1,165,158,112,-1,196,158,165,-1,206,183,168,-1,217,183,206,-1,201,236,207,-1,236,201,225,-1,46,50,43,-1,50,46,39,-1,37,66,73,-1,37,18,66,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox5_Geo_5_421_coordIndex_2()
		{
			int[] value = {192,84,193,-1,84,192,68,-1,153,195,152,-1,195,153,170,-1,88,121,110,-1,121,88,186,-1,64,185,111,-1,185,64,124,-1,195,184,90,-1,184,195,183,-1,104,163,162,-1,163,104,176,-1,108,46,95,-1,44,46,108,-1,104,161,105,-1,162,161,104,-1,55,175,53,-1,55,59,175,-1,128,180,178,-1,180,128,58,-1,6,28,160,-1,8,28,6,-1,165,145,176,-1,165,164,145,-1,63,48,37,-1,48,63,49,-1,145,143,196,-1,143,145,39,-1,196,176,145,-1,196,163,176,-1,33,142,126,-1,33,36,142,-1,47,164,1,-1,164,47,145,-1,179,7,6,-1,179,125,7,-1,62,160,28,-1,62,65,160,-1,147,60,103,-1,61,60,147,-1,3,59,127,-1,3,175,59,-1,58,100,180,-1,100,58,54,-1,125,97,99,-1,125,179,97,-1,95,43,91,-1,95,46,43,-1,91,42,109,-1,43,42,91,-1,90,152,195,-1,152,90,87,-1,184,88,90,-1,184,186,88,-1,124,187,185,-1,187,124,177,-1,170,183,195,-1,170,174,183,-1,84,66,85,-1,68,66,84,-1,193,83,171,-1,83,193,84,-1,181,189,188,-1,123,189,181,-1,117,81,78,-1,117,114,81,-1,77,172,194,-1,172,77,76,-1,13,151,150,-1,13,12,151,-1,191,19,18,-1,182,19,191,-1,171,115,193,-1,115,171,159,-1,191,192,113,-1,192,191,18,-1,189,114,117,-1,114,189,190,-1,187,116,121,-1,116,187,188,-1,111,186,184,-1,186,111,185,-1,174,112,183,-1,174,22,112,-1,182,97,19,-1,182,98,97,-1,178,181,177,-1,181,178,180,-1,15,160,21,-1,15,6,160,-1,19,179,20,-1,19,97,179,-1,144,54,56,-1,144,96,54,-1,103,31,147,-1,25,31,103,-1,105,53,175,-1,161,53,105,-1,66,17,168,-1,66,57,17,-1,174,169,167,-1,174,170,169,-1,173,38,0,-1,38,173,29,-1,2,149,148,-1,2,166,149,-1,32,3,146,-1,4,3,32,-1,53,56,55,-1,53,52,56,-1,46,41,43,-1,45,41,46,-1,137,92,51,-1,92,137,93,-1,94,137,138,-1,94,93,137,-1,44,140,130,-1,44,108,140,-1,102,29,173,-1,102,27,29,-1,194,80,79,-1,172,80,194,-1,89,72,87,-1,73,72,89,-1,10,79,82,-1,10,194,79,-1,168,16,167,-1,168,17,16,-1,169,157,156,-1,155,157,169,-1,63,7,126,-1,8,7,63,-1,196,139,136,-1,196,143,139,-1,136,163,196,-1,135,163,136,-1,131,106,132,-1,131,165,106,-1,50,162,134,-1,50,161,162,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfpprox5_Geo_5_421_normalIndex_2()
		{
			int[] value = {159,101,152,-1,101,159,99,-1,74,5,27,-1,5,74,52,-1,47,94,104,-1,94,47,48,-1,13,51,22,-1,51,13,46,-1,5,11,2,-1,11,5,12,-1,142,126,141,-1,126,142,130,-1,109,164,162,-1,114,164,109,-1,142,145,143,-1,141,145,142,-1,151,140,146,-1,151,137,140,-1,83,155,79,-1,155,83,150,-1,28,4,3,-1,26,4,28,-1,135,89,130,-1,135,96,89,-1,53,93,92,-1,93,53,55,-1,89,38,98,-1,38,89,45,-1,98,130,89,-1,98,126,130,-1,9,20,14,-1,9,8,20,-1,64,96,67,-1,96,64,89,-1,65,31,28,-1,65,66,31,-1,7,3,4,-1,7,15,3,-1,68,10,17,-1,62,10,68,-1,134,137,125,-1,134,140,137,-1,150,196,155,-1,196,150,184,-1,66,127,139,-1,66,65,127,-1,162,173,176,-1,162,164,173,-1,176,182,190,-1,173,182,176,-1,2,27,5,-1,27,2,24,-1,11,47,2,-1,11,48,47,-1,46,91,51,-1,91,46,86,-1,52,12,5,-1,52,50,12,-1,101,41,32,-1,99,41,101,-1,152,82,124,-1,82,152,101,-1,157,188,160,-1,189,188,157,-1,187,191,186,-1,187,192,191,-1,80,112,120,-1,112,80,97,-1,136,115,105,-1,136,123,115,-1,178,133,154,-1,177,133,178,-1,124,171,152,-1,171,124,158,-1,178,159,175,-1,159,178,154,-1,188,192,187,-1,192,188,193,-1,91,161,94,-1,161,91,160,-1,22,48,11,-1,48,22,51,-1,50,16,12,-1,50,43,16,-1,177,127,133,-1,177,174,127,-1,79,157,86,-1,157,79,155,-1,37,3,19,-1,37,28,3,-1,133,65,73,-1,133,127,65,-1,172,184,168,-1,172,183,184,-1,17,75,68,-1,23,75,17,-1,143,146,140,-1,145,146,143,-1,41,39,36,-1,41,40,39,-1,50,71,61,-1,50,52,71,-1,18,57,59,-1,57,18,21,-1,44,60,29,-1,44,76,60,-1,122,134,113,-1,128,134,122,-1,146,168,151,-1,146,169,168,-1,164,170,173,-1,147,170,164,-1,165,194,180,-1,194,165,179,-1,166,165,138,-1,166,179,165,-1,114,58,63,-1,114,109,58,-1,1,21,18,-1,1,0,21,-1,120,153,181,-1,112,153,120,-1,69,100,24,-1,110,100,69,-1,144,181,185,-1,144,120,181,-1,36,54,61,-1,36,39,54,-1,71,42,25,-1,88,42,71,-1,53,31,14,-1,26,31,53,-1,98,70,117,-1,98,38,70,-1,117,126,98,-1,148,126,117,-1,111,156,131,-1,111,135,156,-1,167,141,163,-1,167,145,141,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfreecrt_Geo_5_427_coordIndex_2()
		{
			int[] value = {132,53,130,-1,163,139,134,-1,163,140,139,-1,146,133,144,-1,133,146,131,-1,52,121,50,-1,52,137,121,-1,141,143,139,-1,141,142,143,-1,124,138,140,-1,124,136,138,-1,147,134,131,-1,134,147,163,-1,130,133,132,-1,130,46,133,-1,125,47,129,-1,125,127,47,-1,140,122,124,-1,122,140,163,-1,50,123,119,-1,50,121,123,-1,120,55,57,-1,128,55,120,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlfreecrt_Geo_5_427_normalIndex_2()
		{
			int[] value = {120,34,74,-1,163,92,149,-1,163,131,92,-1,136,134,148,-1,134,136,139,-1,3,24,28,-1,3,1,24,-1,23,46,92,-1,23,18,46,-1,54,11,131,-1,54,7,11,-1,137,149,139,-1,149,137,163,-1,74,134,120,-1,74,129,134,-1,43,118,42,-1,43,84,118,-1,131,146,54,-1,146,131,163,-1,28,119,103,-1,28,24,119,-1,77,16,17,-1,33,16,77,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlhamate_Geo_5_433_coordIndex_1()
		{
			int[] value = {0,1,2,-1,2,3,0,-1,4,5,6,-1,4,7,5,-1,8,9,10,-1,11,12,13,-1,12,14,13,-1,15,16,17,-1,17,18,15,-1,19,20,21,-1,22,23,24,-1,24,25,22,-1,25,26,27,-1,25,24,26,-1,28,29,18,-1,30,31,32,-1,32,33,30,-1,34,35,36,-1,36,37,34,-1,38,39,40,-1,38,41,39,-1,42,43,44,-1,42,45,43,-1,46,47,48,-1,46,49,47,-1,50,51,52,-1,50,53,51,-1,54,55,56,-1,57,58,49,-1,49,46,57,-1,59,1,60,-1,1,61,60,-1,62,63,64,-1,62,65,63,-1,66,67,68,-1,68,69,66,-1,70,38,40,-1,71,72,56,-1,4,73,7,-1,74,75,76,-1,77,78,79,-1,77,80,78,-1,81,82,83,-1,82,84,83,-1,85,86,87,-1,88,89,90,-1,88,91,89,-1,92,93,94,-1,95,96,97,-1,96,98,97,-1,16,15,99,-1,99,100,16,-1,101,46,48,-1,27,102,25,-1,103,68,104,-1,103,105,68,-1,106,66,69,-1,69,76,106,-1,107,93,108,-1,109,110,111,-1,112,113,114,-1,112,115,113,-1,116,89,117,-1,116,43,89,-1,118,119,120,-1,85,121,3,-1,85,87,121,-1,122,123,124,-1,122,125,126,-1,122,127,128,-1,129,109,122,-1,130,129,44,-1,131,122,132,-1,133,122,21,-1,72,71,132,-1,71,131,132,-1,134,135,136,-1,134,137,135,-1,138,29,22,-1,100,99,139,-1,139,140,100,-1,141,16,100,-1,100,142,141,-1,143,144,145,-1,143,146,144,-1,147,148,149,-1,150,151,50,-1,50,52,150,-1,1,59,152,-1,79,153,77,-1,153,154,77,-1,155,156,157,-1,155,158,156,-1,159,160,59,-1,159,161,160,-1,62,162,53,-1,163,164,165,-1,165,147,163,-1,23,166,167,-1,167,24,23,-1,117,89,91,-1,91,168,117,-1,169,170,171,-1,170,168,171,-1,73,172,173,-1,73,4,172,-1,174,175,176,-1,176,6,174,-1,177,178,93,-1,179,108,93,-1,180,181,93,-1,182,183,93,-1,184,94,93,-1,185,32,186,-1,186,187,185,-1,183,184,93,-1,181,182,93,-1,107,180,93,-1,178,179,93,-1,41,188,189,-1,189,39,41,-1,93,92,177,-1,190,191,192,-1,192,193,190,-1,174,6,5,-1,194,55,195,-1,55,196,195,-1,26,24,197,-1,24,167,197,-1,27,9,102,-1,147,135,163,-1,64,198,162,-1,162,62,64,-1,199,200,201,-1,199,202,200,-1,200,203,204,-1,204,205,200,-1,206,207,208,-1,153,209,152,-1,58,1,0,-1,210,59,160,-1,61,57,144,-1,57,145,144,-1,211,46,101,-1,212,17,16,-1,16,141,212,-1,142,140,213,-1,142,100,140,-1,29,137,134,-1,29,138,137,-1,115,112,72,-1,112,56,72,-1,132,122,214,-1,122,131,215,-1,130,110,109,-1,109,129,130,-1,127,122,109,-1,122,128,125,-1,122,126,123,-1,80,173,78,-1,80,73,173,-1,169,98,216,-1,216,217,169,-1,95,82,173,-1,82,78,173,-1,77,154,218,-1,219,220,221,-1,219,222,220,-1,115,72,132,-1,223,224,101,-1,225,226,227,-1,227,228,225,-1,229,74,69,-1,74,76,69,-1,22,25,230,-1,153,152,210,-1,210,154,153,-1,231,28,17,-1,28,18,17,-1,60,61,144,-1,95,97,84,-1,84,82,95,-1,186,32,31,-1,31,216,186,-1,215,129,122,-1,218,80,77,-1,218,206,80,-1,232,233,203,-1,234,75,74,-1,165,65,235,-1,122,133,214,-1,39,189,236,-1,236,237,39,-1,53,50,235,-1,238,224,114,-1,238,239,224,-1,240,59,60,-1,240,159,59,-1,112,54,56,-1,112,223,54,-1,241,196,54,-1,196,55,54,-1,56,194,71,-1,56,55,194,-1,45,71,194,-1,45,42,71,-1,119,118,14,-1,14,242,119,-1,15,136,99,-1,15,134,136,-1,124,21,122,-1,134,18,29,-1,134,15,18,-1,210,152,59,-1,48,241,101,-1,0,3,121,-1,243,39,237,-1,243,244,39,-1,245,192,191,-1,192,227,193,-1,228,227,192,-1,246,176,175,-1,246,222,176,-1,190,175,174,-1,190,193,175,-1,243,228,192,-1,243,237,228,-1,241,47,196,-1,48,47,241,-1,102,230,25,-1,103,230,102,-1,231,247,28,-1,247,231,19,-1,139,136,149,-1,139,99,136,-1,151,235,50,-1,235,151,148,-1,43,248,44,-1,116,248,43,-1,37,41,38,-1,37,36,41,-1,238,212,239,-1,238,249,212,-1,224,112,114,-1,223,112,224,-1,159,250,251,-1,159,240,250,-1,12,252,10,-1,12,158,252,-1,253,105,8,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlhamate_Geo_5_433_coordIndex_2()
		{
			int[] value = {229,105,253,-1,11,158,12,-1,158,11,156,-1,40,254,70,-1,40,255,254,-1,187,176,185,-1,6,176,187,-1,130,245,110,-1,130,256,245,-1,214,257,113,-1,214,133,257,-1,165,63,65,-1,164,63,165,-1,157,207,155,-1,157,208,207,-1,75,258,259,-1,258,75,234,-1,203,260,204,-1,203,233,260,-1,206,261,262,-1,261,206,218,-1,129,42,44,-1,42,129,215,-1,263,30,33,-1,263,264,30,-1,98,186,216,-1,96,186,98,-1,1,209,2,-1,152,209,1,-1,187,96,172,-1,96,187,186,-1,107,226,225,-1,107,108,226,-1,189,180,236,-1,181,180,189,-1,183,188,265,-1,183,182,188,-1,94,266,264,-1,94,184,266,-1,220,177,221,-1,178,177,220,-1,251,161,159,-1,201,161,251,-1,267,163,268,-1,267,164,163,-1,162,202,199,-1,202,162,198,-1,257,21,20,-1,257,133,21,-1,221,33,219,-1,33,221,263,-1,80,208,73,-1,80,206,208,-1,7,156,5,-1,157,156,7,-1,209,79,81,-1,209,153,79,-1,172,95,173,-1,172,96,95,-1,217,170,169,-1,170,217,269,-1,270,87,88,-1,270,121,87,-1,232,198,106,-1,198,232,202,-1,111,14,118,-1,111,13,14,-1,118,109,111,-1,118,127,109,-1,125,120,197,-1,125,128,120,-1,126,166,123,-1,166,126,167,-1,71,215,131,-1,215,71,42,-1,239,141,271,-1,141,239,212,-1,213,272,142,-1,213,143,272,-1,271,211,101,-1,211,271,272,-1,241,223,101,-1,241,54,223,-1,211,57,46,-1,57,211,145,-1,213,150,273,-1,140,150,213,-1,250,146,273,-1,240,146,250,-1,210,274,154,-1,160,274,210,-1,83,3,2,-1,83,85,3,-1,262,207,206,-1,262,259,207,-1,252,234,253,-1,234,252,258,-1,205,261,274,-1,205,204,261,-1,260,76,75,-1,233,76,260,-1,201,205,161,-1,201,200,205,-1,202,203,200,-1,202,232,203,-1,268,135,137,-1,268,163,135,-1,267,68,67,-1,267,104,68,-1,103,275,230,-1,104,275,103,-1,275,137,138,-1,275,268,137,-1,97,86,84,-1,97,171,86,-1,34,269,217,-1,34,37,269,-1,98,171,97,-1,98,169,171,-1,47,121,270,-1,47,49,121,-1,192,256,243,-1,192,245,256,-1,172,6,187,-1,172,4,6,-1,226,246,227,-1,226,276,246,-1,243,248,244,-1,243,256,248,-1,266,36,35,-1,266,265,36,-1,264,35,30,-1,264,266,35,-1,265,41,36,-1,265,188,41,-1,237,225,228,-1,236,225,237,-1,276,222,246,-1,276,220,222,-1,170,117,168,-1,170,254,117,-1,0,49,58,-1,121,49,0,-1,217,31,34,-1,31,217,216,-1,38,269,37,-1,38,70,269,-1,171,91,86,-1,171,168,91,-1,138,230,275,-1,138,22,230,-1,104,268,275,-1,104,267,268,-1,164,67,63,-1,164,267,67,-1,53,199,51,-1,53,162,199,-1,262,75,259,-1,260,75,262,-1,161,274,160,-1,205,274,161,-1,234,229,253,-1,74,229,234,-1,158,258,252,-1,258,158,155,-1,218,274,261,-1,218,154,274,-1,60,146,240,-1,144,146,60,-1,273,52,250,-1,273,150,52,-1,140,151,150,-1,139,151,140,-1,148,165,235,-1,148,147,165,-1,143,273,146,-1,213,273,143,-1,224,271,101,-1,271,224,239,-1,143,211,272,-1,211,143,145,-1,142,271,141,-1,142,272,271,-1,19,249,20,-1,249,19,231,-1,135,149,136,-1,135,147,149,-1,238,20,249,-1,257,20,238,-1,123,247,124,-1,123,166,247,-1,197,126,125,-1,167,126,197,-1,128,118,120,-1,128,127,118,-1,28,166,23,-1,28,247,166,-1,242,9,27,-1,10,9,242,-1,10,14,12,-1,242,14,10,-1,255,117,254,-1,255,116,117,-1,195,88,90,-1,270,88,195,-1,197,119,26,-1,119,197,120,-1,111,190,13,-1,190,111,191,-1,90,194,195,-1,45,194,90,-1,113,132,214,-1,113,115,132,-1,233,106,76,-1,106,233,232,-1,106,64,66,-1,106,198,64,-1,51,201,251,-1,51,199,201,-1,179,220,276,-1,179,178,220,-1,221,92,263,-1,92,221,177,-1,184,265,266,-1,184,183,265,-1,188,181,189,-1,182,181,188,-1,236,107,225,-1,180,107,236,-1,108,276,226,-1,108,179,276,-1,2,81,83,-1,209,81,2,-1,263,94,264,-1,263,92,94,-1,89,45,90,-1,89,43,45,-1,86,88,87,-1,86,91,88,-1,85,84,86,-1,83,84,85,-1,81,78,82,-1,79,78,81,-1,204,262,261,-1,204,260,262,-1,155,259,258,-1,155,207,259,-1,208,7,73,-1,7,208,157,-1,113,238,114,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlhamate_Geo_5_433_coordIndex_3()
		{
			int[] value = {113,257,238,-1,110,191,111,-1,110,245,191,-1,256,44,248,-1,44,256,130,-1,70,170,269,-1,70,254,170,-1,5,11,174,-1,156,11,5,-1,10,253,8,-1,252,253,10,-1,68,229,69,-1,68,105,229,-1,66,63,67,-1,64,63,66,-1,62,235,65,-1,62,53,235,-1,57,1,58,-1,1,57,61,-1,231,212,249,-1,231,17,212,-1,52,251,250,-1,251,52,51,-1,39,255,40,-1,244,255,39,-1,244,116,255,-1,244,248,116,-1,222,185,176,-1,219,185,222,-1,34,30,35,-1,31,30,34,-1,219,32,185,-1,33,32,219,-1,22,28,23,-1,22,29,28,-1,26,242,27,-1,119,242,26,-1,139,148,151,-1,148,139,149,-1,124,19,21,-1,19,124,247,-1,103,8,105,-1,102,8,103,-1,8,102,9,-1,196,270,195,-1,47,270,196,-1,11,190,174,-1,11,13,190,-1,227,175,193,-1,227,246,175,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlhamate_Geo_5_433_normalIndex_1()
		{
			int[] value = {7,6,2,-1,2,3,7,-1,140,135,147,-1,140,123,135,-1,215,244,162,-1,145,126,185,-1,126,152,185,-1,227,155,218,-1,218,252,227,-1,214,193,182,-1,275,269,274,-1,274,276,275,-1,276,262,257,-1,276,274,262,-1,256,270,252,-1,13,27,42,-1,42,36,13,-1,26,1,28,-1,28,61,26,-1,115,197,167,-1,115,80,197,-1,213,129,219,-1,213,107,129,-1,63,34,70,-1,63,31,34,-1,149,179,84,-1,149,220,179,-1,86,59,128,-1,47,21,31,-1,31,63,47,-1,32,6,25,-1,6,22,25,-1,228,247,202,-1,228,253,247,-1,188,249,243,-1,243,168,188,-1,136,115,167,-1,189,191,128,-1,140,116,123,-1,112,143,157,-1,69,39,33,-1,69,92,39,-1,14,9,4,-1,9,0,4,-1,5,8,11,-1,18,51,38,-1,18,17,51,-1,55,79,50,-1,24,44,15,-1,44,35,15,-1,155,227,173,-1,173,101,155,-1,106,63,70,-1,257,263,276,-1,260,243,264,-1,260,224,243,-1,166,188,168,-1,168,157,166,-1,133,79,134,-1,234,250,225,-1,171,174,151,-1,171,216,174,-1,141,51,71,-1,141,129,51,-1,194,221,206,-1,5,10,3,-1,5,11,10,-1,201,160,165,-1,201,190,176,-1,201,204,195,-1,242,234,201,-1,246,242,219,-1,235,201,217,-1,180,201,182,-1,191,189,217,-1,189,235,217,-1,254,266,251,-1,254,267,266,-1,272,270,275,-1,101,173,144,-1,144,67,101,-1,117,155,101,-1,101,93,117,-1,74,41,73,-1,74,53,41,-1,258,233,240,-1,62,131,149,-1,149,84,62,-1,6,32,12,-1,33,29,69,-1,29,68,69,-1,90,103,108,-1,90,89,103,-1,114,96,32,-1,114,164,96,-1,228,203,220,-1,265,255,259,-1,259,258,265,-1,269,209,239,-1,239,274,269,-1,71,51,17,-1,17,40,71,-1,52,77,23,-1,77,40,23,-1,116,95,75,-1,116,140,95,-1,158,175,148,-1,148,147,158,-1,65,91,79,-1,120,134,79,-1,121,100,79,-1,78,57,79,-1,49,50,79,-1,87,42,54,-1,54,104,87,-1,57,49,79,-1,100,78,79,-1,133,121,79,-1,91,120,79,-1,80,83,146,-1,146,197,80,-1,79,55,65,-1,208,230,241,-1,241,223,208,-1,158,147,135,-1,85,59,37,-1,59,46,37,-1,262,274,237,-1,274,239,237,-1,257,244,263,-1,258,266,265,-1,202,187,203,-1,203,228,202,-1,207,196,212,-1,207,200,196,-1,196,172,163,-1,163,181,196,-1,110,109,119,-1,29,16,12,-1,21,6,7,-1,43,32,96,-1,22,47,41,-1,47,73,41,-1,88,63,106,-1,156,218,155,-1,155,117,156,-1,93,67,64,-1,93,101,67,-1,270,267,254,-1,270,272,267,-1,216,171,191,-1,171,128,191,-1,217,201,184,-1,201,235,236,-1,246,250,234,-1,234,242,246,-1,204,201,234,-1,201,195,190,-1,201,176,160,-1,92,75,39,-1,92,116,75,-1,52,35,60,-1,60,82,52,-1,24,9,75,-1,9,39,75,-1,69,68,99,-1,76,118,66,-1,76,142,118,-1,216,191,217,-1,125,127,106,-1,199,178,210,-1,210,232,199,-1,137,112,168,-1,112,157,168,-1,275,276,273,-1,29,12,43,-1,43,68,29,-1,226,256,218,-1,256,252,218,-1,25,22,41,-1,24,15,0,-1,0,9,24,-1,54,42,27,-1,27,60,54,-1,236,242,201,-1,99,92,69,-1,99,110,92,-1,192,177,172,-1,98,143,112,-1,259,253,238,-1,201,180,184,-1,197,146,183,-1,183,222,197,-1,220,149,238,-1,150,127,151,-1,150,122,127,-1,58,32,25,-1,58,114,32,-1,171,86,128,-1,171,125,86,-1,72,46,86,-1,46,59,86,-1,128,85,189,-1,128,59,85,-1,107,189,85,-1,107,213,189,-1,221,194,152,-1,152,198,221,-1,227,251,173,-1,227,254,251,-1,165,182,201,-1,254,252,270,-1,254,227,252,-1,43,12,32,-1,70,72,106,-1,7,3,10,-1,231,197,222,-1,231,211,197,-1,248,241,230,-1,241,210,223,-1,232,210,241,-1,170,148,175,-1,170,142,148,-1,208,175,158,-1,208,223,175,-1,231,232,241,-1,231,222,232,-1,72,34,46,-1,70,34,72,-1,263,273,276,-1,260,273,263,-1,226,229,256,-1,229,226,214,-1,144,251,240,-1,144,173,251,-1,131,238,149,-1,238,131,233,-1,129,205,219,-1,141,205,129,-1,61,80,115,-1,61,28,80,-1,150,156,122,-1,150,186,156,-1,127,171,151,-1,125,171,127,-1,114,81,161,-1,114,58,81,-1,126,111,162,-1,126,89,111,-1,138,224,215,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlhamate_Geo_5_433_normalIndex_2()
		{
			int[] value = {137,224,138,-1,145,89,126,-1,89,145,103,-1,167,113,136,-1,167,159,113,-1,104,148,87,-1,147,148,104,-1,246,248,250,-1,246,245,248,-1,184,169,174,-1,184,180,169,-1,259,247,253,-1,255,247,259,-1,108,109,90,-1,108,119,109,-1,143,94,124,-1,94,143,98,-1,172,154,163,-1,172,177,154,-1,110,139,132,-1,139,110,99,-1,242,213,219,-1,213,242,236,-1,48,13,36,-1,48,30,13,-1,35,54,60,-1,44,54,35,-1,6,16,2,-1,12,16,6,-1,104,44,95,-1,44,104,54,-1,133,178,199,-1,133,134,178,-1,146,121,183,-1,100,121,146,-1,57,83,45,-1,57,78,83,-1,50,19,30,-1,50,49,19,-1,118,65,66,-1,91,65,118,-1,161,164,114,-1,212,164,161,-1,261,265,268,-1,261,255,265,-1,203,200,207,-1,200,203,187,-1,169,182,193,-1,169,180,182,-1,66,36,76,-1,36,66,48,-1,92,119,116,-1,92,110,119,-1,123,103,135,-1,108,103,123,-1,16,33,14,-1,16,29,33,-1,95,24,75,-1,95,44,24,-1,82,77,52,-1,77,82,105,-1,20,11,18,-1,20,10,11,-1,192,187,166,-1,187,192,200,-1,225,152,194,-1,225,185,152,-1,194,234,225,-1,194,204,234,-1,190,206,237,-1,190,195,206,-1,176,209,160,-1,209,176,239,-1,189,236,235,-1,236,189,213,-1,122,117,102,-1,117,122,156,-1,64,97,93,-1,64,74,97,-1,102,88,106,-1,88,102,97,-1,72,125,106,-1,72,86,125,-1,88,47,63,-1,47,88,73,-1,64,62,56,-1,67,62,64,-1,81,53,56,-1,58,53,81,-1,43,130,68,-1,96,130,43,-1,4,3,2,-1,4,5,3,-1,132,109,110,-1,132,124,109,-1,111,98,138,-1,98,111,94,-1,181,139,130,-1,181,163,139,-1,154,157,143,-1,177,157,154,-1,212,181,164,-1,212,196,181,-1,200,172,196,-1,200,192,172,-1,268,266,267,-1,268,265,266,-1,261,243,249,-1,261,264,243,-1,260,271,273,-1,264,271,260,-1,271,267,272,-1,271,268,267,-1,15,8,0,-1,15,23,8,-1,26,105,82,-1,26,61,105,-1,35,23,15,-1,35,52,23,-1,34,10,20,-1,34,31,10,-1,241,245,231,-1,241,248,245,-1,95,147,104,-1,95,140,147,-1,178,170,210,-1,178,153,170,-1,231,205,211,-1,231,245,205,-1,19,28,1,-1,19,45,28,-1,30,1,13,-1,30,19,1,-1,45,80,28,-1,45,83,80,-1,222,199,232,-1,183,199,222,-1,153,142,170,-1,153,118,142,-1,77,71,40,-1,77,113,71,-1,7,31,21,-1,10,31,7,-1,82,27,26,-1,27,82,60,-1,115,105,61,-1,115,136,105,-1,23,17,8,-1,23,40,17,-1,272,273,271,-1,272,275,273,-1,264,268,271,-1,264,261,268,-1,255,249,247,-1,255,261,249,-1,220,207,179,-1,220,203,207,-1,132,143,124,-1,154,143,132,-1,164,130,96,-1,181,130,164,-1,98,137,138,-1,112,137,98,-1,89,94,111,-1,94,89,90,-1,99,130,139,-1,99,68,130,-1,25,53,58,-1,41,53,25,-1,56,84,81,-1,56,62,84,-1,67,131,62,-1,144,131,67,-1,233,259,238,-1,233,258,259,-1,74,56,53,-1,64,56,74,-1,127,102,106,-1,102,127,122,-1,74,88,97,-1,88,74,73,-1,93,102,117,-1,93,97,102,-1,214,186,193,-1,186,214,226,-1,266,240,251,-1,266,258,240,-1,150,193,186,-1,169,193,150,-1,160,229,165,-1,160,209,229,-1,237,176,190,-1,239,176,237,-1,195,194,206,-1,195,204,194,-1,256,209,269,-1,256,229,209,-1,198,244,257,-1,162,244,198,-1,162,152,126,-1,198,152,162,-1,159,71,113,-1,159,141,71,-1,37,18,38,-1,20,18,37,-1,237,221,262,-1,221,237,206,-1,225,208,185,-1,208,225,230,-1,38,85,37,-1,107,85,38,-1,174,217,184,-1,174,216,217,-1,177,166,157,-1,166,177,192,-1,166,202,188,-1,166,187,202,-1,179,212,161,-1,179,207,212,-1,120,118,153,-1,120,91,118,-1,66,55,48,-1,55,66,65,-1,49,45,19,-1,49,57,45,-1,83,100,146,-1,78,100,83,-1,183,133,199,-1,121,133,183,-1,134,153,178,-1,134,120,153,-1,2,14,4,-1,16,14,2,-1,48,50,30,-1,48,55,50,-1,51,107,38,-1,51,129,107,-1,8,18,11,-1,8,17,18,-1,5,0,8,-1,4,0,5,-1,14,39,9,-1,33,39,14,-1,163,132,139,-1,163,154,132,-1,90,124,94,-1,90,109,124,-1,119,123,116,-1,123,119,108,-1,174,150,151,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlhamate_Geo_5_433_normalIndex_3()
		{
			int[] value = {174,169,150,-1,250,230,225,-1,250,248,230,-1,245,219,205,-1,219,245,246,-1,136,77,105,-1,136,113,77,-1,135,145,158,-1,103,145,135,-1,162,138,215,-1,111,138,162,-1,243,137,168,-1,243,224,137,-1,188,247,249,-1,202,247,188,-1,228,238,253,-1,228,220,238,-1,47,6,21,-1,6,47,22,-1,226,156,186,-1,226,218,156,-1,84,161,81,-1,161,84,179,-1,197,159,167,-1,211,159,197,-1,211,141,159,-1,211,205,141,-1,142,87,148,-1,76,87,142,-1,26,13,1,-1,27,13,26,-1,76,42,87,-1,36,42,76,-1,275,256,269,-1,275,270,256,-1,262,198,257,-1,221,198,262,-1,144,233,131,-1,233,144,240,-1,165,214,182,-1,214,165,229,-1,260,215,224,-1,263,215,260,-1,215,263,244,-1,46,20,37,-1,34,20,46,-1,145,208,158,-1,145,185,208,-1,210,175,223,-1,210,170,175,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlhumrus_Geo_5_439_coordIndex_2()
		{
			int[] value = {491,492,493,-1,494,492,491,-1,495,496,497,-1,495,498,496,-1,499,496,500,-1,496,498,500,-1,501,502,503,-1,488,487,490,-1,504,505,493,-1,494,506,507,-1,508,506,509,-1,508,507,506,-1,510,505,511,-1,505,512,511,-1,513,514,515,-1,514,516,515,-1,517,518,68,-1,519,520,521,-1,492,519,521,-1,522,523,519,-1,524,525,526,-1,526,527,524,-1,517,528,529,-1,65,482,530,-1,529,528,530,-1,531,518,530,-1,72,532,523,-1,72,67,532,-1,57,78,55,-1,533,534,535,-1,536,537,538,-1,536,539,537,-1,540,541,542,-1,543,544,545,-1,546,547,548,-1,45,48,549,-1,549,550,45,-1,551,552,37,-1,550,90,553,-1,554,555,556,-1,557,558,559,-1,560,561,562,-1,563,5,562,-1,558,557,564,-1,565,566,567,-1,568,569,570,-1,571,572,573,-1,89,574,575,-1,47,576,577,-1,577,576,578,-1,568,579,576,-1,483,66,527,-1,580,581,582,-1,583,580,584,-1,585,586,587,-1,585,588,586,-1,589,590,591,-1,591,592,589,-1,583,593,594,-1,595,596,597,-1,598,580,582,-1,599,600,601,-1,602,603,604,-1,475,605,476,-1,606,607,608,-1,609,610,611,-1,528,517,612,-1,613,608,614,-1,615,616,617,-1,615,618,616,-1,619,620,281,-1,281,621,619,-1,622,623,624,-1,625,626,627,-1,625,628,626,-1,629,630,631,-1,629,632,630,-1,633,634,635,-1,633,636,634,-1,637,638,639,-1,640,641,642,-1,640,643,641,-1,644,645,646,-1,647,648,649,-1,650,651,652,-1,650,653,651,-1,652,654,655,-1,656,657,658,-1,658,659,656,-1,660,661,662,-1,660,663,661,-1,664,665,666,-1,664,667,665,-1,661,663,668,-1,668,669,661,-1,667,670,671,-1,671,672,667,-1,673,674,675,-1,676,677,678,-1,676,527,526,-1,676,679,527,-1,120,484,121,-1,680,681,682,-1,488,683,502,-1,684,685,686,-1,687,688,689,-1,690,691,692,-1,690,693,691,-1,634,694,635,-1,695,636,696,-1,695,697,636,-1,698,699,675,-1,700,701,600,-1,702,703,704,-1,702,705,703,-1,637,640,642,-1,642,638,637,-1,706,707,708,-1,709,710,711,-1,709,712,710,-1,710,713,711,-1,714,611,715,-1,716,717,706,-1,718,221,223,-1,719,720,721,-1,719,722,720,-1,541,540,723,-1,723,724,541,-1,541,725,726,-1,541,724,725,-1,727,728,597,-1,555,554,729,-1,570,730,579,-1,731,732,733,-1,733,732,734,-1,734,512,733,-1,735,51,58,-1,58,736,735,-1,737,738,87,-1,739,740,741,-1,591,742,743,-1,744,745,547,-1,547,746,744,-1,745,747,547,-1,747,548,547,-1,748,749,750,-1,749,751,750,-1,752,753,754,-1,755,753,756,-1,755,30,753,-1,757,758,759,-1,757,760,758,-1,533,756,753,-1,753,534,533,-1,761,11,533,-1,533,762,761,-1,763,764,765,-1,764,766,765,-1,767,768,759,-1,759,758,767,-1,769,770,771,-1,770,536,771,-1,539,772,773,-1,773,535,539,-1,566,774,13,-1,775,776,14,-1,502,777,778,-1,778,779,502,-1,780,781,782,-1,782,783,780,-1,784,785,786,-1,787,788,789,-1,768,706,717,-1,790,791,792,-1,793,794,795,-1,796,797,798,-1,6,799,800,-1,6,801,799,-1,802,803,804,-1,805,806,807,-1,808,746,547,-1,547,546,808,-1,809,810,811,-1,811,743,809,-1,611,708,609,-1,812,813,610,-1,814,815,816,-1,817,818,5,-1,819,820,821,-1,819,822,820,-1,823,824,825,-1,823,791,824,-1,826,824,790,-1,826,827,824,-1,781,828,829,-1,829,782,781,-1,830,651,831,-1,651,653,831,-1,495,479,489,-1,119,832,490,-1,833,721,720,-1,833,834,721,-1,826,835,836,-1,837,783,838,-1,837,839,783,-1,840,786,789,-1,840,841,786,-1,684,689,649,-1,649,842,684,-1,843,844,845,-1,843,846,844,-1,152,847,174,-1,145,105,104,-1,848,131,106,-1,109,105,145,-1,194,108,197,-1,422,473,420,-1,377,380,849,-1,850,406,405,-1,850,851,406,-1,852,428,853,-1,345,183,185,-1,854,389,428,-1,854,387,389,-1,855,380,850,-1,850,856,855,-1,126,857,858,-1,126,858,127,-1,343,185,124,-1,126,859,860,-1,859,861,156,-1,862,159,157,-1,862,160,159,-1,149,863,150,-1,864,865,866,-1,455,867,453,-1,425,868,869,-1,870,871,465,-1,872,873,868,-1,874,875,876,-1,877,878,868,-1,879,880,877,-1,879,881,880,-1,882,879,868,-1,883,884,868,-1,885,886,887,-1,885,888,886,-1,889,868,890,-1,891,892,886,-1,886,893,891,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlhumrus_Geo_5_439_coordIndex_3()
		{
			int[] value = {892,894,467,-1,467,470,892,-1,895,868,896,-1,897,898,138,-1,897,899,898,-1,900,210,329,-1,900,901,210,-1,902,903,904,-1,902,905,903,-1,906,907,132,-1,908,390,909,-1,908,910,390,-1,210,911,208,-1,210,904,911,-1,335,903,368,-1,362,912,367,-1,362,913,912,-1,914,915,337,-1,914,916,915,-1,328,917,329,-1,918,334,919,-1,918,335,334,-1,367,912,200,-1,130,920,921,-1,130,922,920,-1,923,924,325,-1,921,925,926,-1,921,920,925,-1,927,80,928,-1,927,929,80,-1,81,930,923,-1,214,327,931,-1,932,933,934,-1,932,928,933,-1,79,81,935,-1,936,114,113,-1,937,938,939,-1,938,940,939,-1,941,79,323,-1,304,940,942,-1,322,941,323,-1,943,944,945,-1,255,312,946,-1,255,947,312,-1,948,949,950,-1,949,951,950,-1,216,952,217,-1,216,953,952,-1,954,955,303,-1,302,304,956,-1,309,957,310,-1,958,959,960,-1,324,960,959,-1,324,961,960,-1,249,317,252,-1,256,962,963,-1,964,965,966,-1,964,257,965,-1,42,41,967,-1,319,318,968,-1,482,481,969,-1,321,517,70,-1,970,971,321,-1,531,972,973,-1,974,975,976,-1,974,624,975,-1,977,978,968,-1,979,684,842,-1,980,981,646,-1,981,644,646,-1,982,983,639,-1,984,316,985,-1,229,244,231,-1,556,561,560,-1,73,522,62,-1,32,577,578,-1,32,986,33,-1,31,41,34,-1,44,551,43,-1,38,987,43,-1,54,522,492,-1,988,989,820,-1,988,559,989,-1,2,990,991,-1,568,553,992,-1,993,579,994,-1,562,5,995,-1,6,996,801,-1,997,998,299,-1,7,3,800,-1,23,16,21,-1,999,17,16,-1,23,1000,16,-1,4,3,1001,-1,1002,27,1003,-1,1003,1004,1002,-1,1005,20,726,-1,1006,1007,1008,-1,1009,1010,224,-1,224,226,1009,-1,617,619,601,-1,601,701,1011,-1,601,600,701,-1,696,636,633,-1,1012,693,690,-1,837,1013,1014,-1,837,838,1013,-1,840,788,1015,-1,840,789,788,-1,787,1016,1017,-1,611,719,715,-1,752,534,753,-1,752,537,534,-1,1018,1019,1020,-1,1018,1021,1019,-1,1022,1023,1024,-1,313,1025,1026,-1,619,621,599,-1,583,581,580,-1,1027,285,1028,-1,997,291,1029,-1,997,299,291,-1,1030,1031,1032,-1,287,1033,288,-1,1034,1035,595,-1,289,288,1036,-1,1037,289,1036,-1,1037,293,289,-1,591,1038,1039,-1,813,583,1034,-1,1028,285,297,-1,1040,597,596,-1,1041,611,1034,-1,725,288,726,-1,288,1005,726,-1,723,540,1042,-1,540,1043,1042,-1,291,300,296,-1,583,1044,593,-1,599,621,580,-1,1045,282,251,-1,251,1046,1045,-1,281,1047,251,-1,599,1048,600,-1,1049,312,947,-1,1050,1051,1052,-1,1052,1053,1050,-1,610,609,812,-1,767,706,768,-1,845,785,784,-1,845,1054,785,-1,699,671,675,-1,660,662,696,-1,617,1011,615,-1,617,601,1011,-1,251,1047,1055,-1,1055,253,251,-1,245,244,228,-1,226,225,1008,-1,1001,1056,4,-1,1001,3,8,-1,1004,1056,1001,-1,999,16,1000,-1,15,17,8,-1,2,991,0,-1,566,565,774,-1,565,1057,774,-1,5,1058,817,-1,1059,995,5,-1,562,994,560,-1,993,223,222,-1,779,1060,1061,-1,1061,502,779,-1,62,53,60,-1,551,36,43,-1,987,35,43,-1,75,551,76,-1,33,41,31,-1,986,32,578,-1,578,1062,986,-1,46,553,576,-1,1063,10,1064,-1,1063,755,10,-1,1065,1066,1067,-1,231,244,578,-1,316,1068,314,-1,1069,984,985,-1,831,1070,704,-1,831,653,1070,-1,637,1071,1072,-1,502,1073,486,-1,731,492,521,-1,970,321,320,-1,482,969,1074,-1,973,532,1075,-1,517,68,70,-1,65,64,482,-1,967,71,42,-1,967,318,71,-1,1076,1077,1078,-1,1076,1079,1077,-1,218,1080,1081,-1,962,1082,1083,-1,250,317,1084,-1,250,252,317,-1,950,961,324,-1,950,951,961,-1,322,324,959,-1,959,957,322,-1,959,310,957,-1,303,955,304,-1,952,949,948,-1,952,953,949,-1,310,959,958,-1,1085,943,308,-1,1085,944,943,-1,324,323,950,-1,323,1086,950,-1,957,941,322,-1,955,936,940,-1,114,944,84,-1,944,1085,84,-1,1087,1088,117,-1,1088,217,117,-1,935,1086,79,-1,1086,323,79,-1,82,84,1087,-1,327,214,935,-1,356,921,1089,-1,356,130,921,-1,1090,1091,1092,-1,1090,1093,1091,-1,334,370,366,-1,334,333,370,-1,369,333,335,-1,369,371,333,-1,339,909,331,-1,909,390,331,-1,364,913,362,-1,364,144,913,-1,1094,897,1095,-1,1095,1096,1094,-1,138,1095,897,-1,425,896,868,-1,459,467,894,-1,894,1097,459,-1,895,890,868,-1,892,887,886,-1,892,470,887,-1,889,415,868,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlhumrus_Geo_5_439_coordIndex_4()
		{
			int[] value = {98,345,347,-1,883,868,414,-1,882,868,884,-1,879,877,868,-1,878,877,880,-1,880,1098,878,-1,874,868,878,-1,111,110,463,-1,1099,1100,866,-1,866,1101,1099,-1,410,412,1102,-1,847,152,154,-1,860,158,1103,-1,860,859,158,-1,1104,402,1105,-1,402,1106,1105,-1,1107,403,1108,-1,1107,401,403,-1,160,124,847,-1,343,124,123,-1,427,127,858,-1,427,854,428,-1,351,1109,344,-1,1110,392,140,-1,101,189,1111,-1,101,187,189,-1,348,1112,1111,-1,1113,432,431,-1,456,458,1114,-1,1115,180,437,-1,197,396,437,-1,146,1116,109,-1,102,101,350,-1,598,1048,599,-1,707,706,767,-1,640,637,1072,-1,833,1117,1118,-1,833,1119,1117,-1,1120,1121,792,-1,1121,790,792,-1,1122,1123,1124,-1,611,610,1034,-1,596,595,1035,-1,498,495,489,-1,1035,1034,583,-1,791,790,824,-1,781,778,828,-1,563,561,1058,-1,610,813,1034,-1,591,811,592,-1,591,743,811,-1,1125,5,818,-1,1126,1127,1128,-1,1128,1129,1126,-1,842,1130,979,-1,1130,1131,979,-1,800,3,6,-1,845,784,843,-1,1058,5,563,-1,717,759,768,-1,717,1132,759,-1,1133,1134,846,-1,782,838,783,-1,780,778,781,-1,780,779,778,-1,1135,1136,1137,-1,1137,1138,1135,-1,775,14,13,-1,774,775,13,-1,774,1139,775,-1,1140,1137,1136,-1,1140,1141,1137,-1,53,1142,59,-1,759,1143,757,-1,759,1132,1143,-1,756,11,10,-1,756,533,11,-1,1016,785,1054,-1,1016,787,785,-1,1144,1145,1146,-1,1146,1147,1144,-1,755,756,10,-1,1148,742,591,-1,86,1149,1150,-1,1151,1152,740,-1,56,736,58,-1,56,1153,736,-1,504,731,733,-1,1154,1155,1156,-1,508,1157,507,-1,735,1158,1159,-1,735,1160,1158,-1,86,1150,87,-1,729,554,1161,-1,13,25,566,-1,13,12,25,-1,726,19,1162,-1,726,20,19,-1,1163,1007,1006,-1,1163,1164,1007,-1,26,1003,27,-1,26,1164,1003,-1,1165,723,1166,-1,1165,724,723,-1,708,611,714,-1,567,25,1167,-1,567,566,25,-1,716,715,721,-1,715,719,721,-1,708,714,706,-1,1168,643,1169,-1,1168,641,643,-1,830,637,1170,-1,1171,1172,603,-1,1171,1173,1172,-1,984,705,702,-1,984,1069,705,-1,697,1174,636,-1,700,1175,1176,-1,1174,1177,1178,-1,1179,631,687,-1,687,689,1179,-1,1180,1181,694,-1,694,634,1180,-1,689,688,649,-1,1182,982,639,-1,1183,1068,1184,-1,683,1185,502,-1,985,316,315,-1,120,1186,1187,-1,679,483,527,-1,120,119,1188,-1,666,665,1189,-1,667,664,691,-1,657,1190,658,-1,1068,1191,1184,-1,316,1192,1068,-1,641,686,642,-1,1193,643,1194,-1,1069,985,1195,-1,1196,1197,1198,-1,638,685,639,-1,1071,637,830,-1,606,1199,1200,-1,1201,1202,1203,-1,1201,1204,1202,-1,698,631,630,-1,698,687,631,-1,660,696,633,-1,1205,622,624,-1,1206,1207,974,-1,608,1208,606,-1,1055,616,206,-1,616,618,206,-1,281,620,1047,-1,1209,612,517,-1,613,663,660,-1,1210,1199,1211,-1,635,1212,1213,-1,635,1214,1212,-1,607,618,608,-1,619,599,601,-1,1214,635,1215,-1,1061,503,502,-1,1172,583,813,-1,813,812,604,-1,580,598,599,-1,597,728,595,-1,1034,595,1041,-1,587,586,1216,-1,1216,1217,587,-1,297,296,300,-1,583,584,1044,-1,581,1173,582,-1,51,50,543,-1,1218,731,520,-1,731,521,520,-1,1219,481,1220,-1,1219,969,481,-1,523,520,519,-1,579,568,570,-1,553,568,576,-1,551,75,1221,-1,571,90,89,-1,992,573,569,-1,992,571,573,-1,569,568,992,-1,1222,567,1223,-1,1222,565,567,-1,1150,558,555,-1,737,87,729,-1,561,563,562,-1,555,558,564,-1,729,1161,737,-1,552,551,1221,-1,45,550,553,-1,553,46,45,-1,85,1224,1225,-1,1225,86,85,-1,820,989,1226,-1,50,1227,1228,-1,543,50,544,-1,50,1228,544,-1,77,545,75,-1,77,543,545,-1,535,534,537,-1,537,539,535,-1,62,522,54,-1,245,228,225,-1,518,529,530,-1,528,65,530,-1,530,482,531,-1,519,492,522,-1,518,517,529,-1,973,1075,531,-1,509,510,1229,-1,1229,1230,509,-1,494,491,506,-1,505,491,493,-1,505,510,491,-1,731,504,493,-1,501,503,475,-1,475,499,501,-1,1229,511,1231,-1,511,1232,1231,-1,510,511,1229,-1,502,501,1073,-1,52,54,492,-1,62,54,53,-1,731,493,492,-1,502,486,488,-1,873,869,868,-1,474,1233,179,-1,874,872,868,-1,1234,1235,876,-1,1235,1236,876,-1,197,437,180,-1,459,468,467,-1,459,461,468,-1,110,466,463,-1,110,178,466,-1,1237,1238,1239,-1,1238,190,1239,-1,1240,172,1241,-1,453,431,454,-1,1242,1243,430,-1,1243,431,430,-1,1241,172,92,-1,473,458,457,-1,1244,1245,150,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlhumrus_Geo_5_439_coordIndex_5()
		{
			int[] value = {1245,411,150,-1,1246,395,441,-1,444,443,1247,-1,107,109,434,-1,1243,454,431,-1,458,1115,1114,-1,1248,91,93,-1,1249,1250,444,-1,441,1251,1252,-1,441,1253,1251,-1,1247,443,1254,-1,1255,1256,1257,-1,1255,169,1256,-1,870,1258,871,-1,422,474,473,-1,428,852,426,-1,427,426,123,-1,123,127,427,-1,1259,1103,410,-1,1103,451,410,-1,1260,1100,902,-1,163,168,161,-1,169,1255,170,-1,1261,341,407,-1,1262,1263,885,-1,885,1264,1262,-1,868,415,414,-1,866,865,1101,-1,409,1261,407,-1,1265,1266,1267,-1,1266,388,1267,-1,397,1268,398,-1,397,399,1113,-1,399,1269,1113,-1,1270,393,395,-1,432,1271,429,-1,1271,1272,429,-1,910,391,390,-1,910,1273,391,-1,1274,1275,1276,-1,1267,406,851,-1,404,387,1277,-1,381,1278,383,-1,354,1095,140,-1,380,379,850,-1,1279,369,368,-1,1279,1280,369,-1,1281,109,1116,-1,365,374,363,-1,938,1282,1283,-1,938,1284,1282,-1,1285,1286,1083,-1,1095,138,140,-1,358,349,140,-1,356,200,912,-1,912,357,356,-1,352,354,140,-1,376,379,377,-1,1266,1265,340,-1,1265,408,340,-1,852,1109,351,-1,852,853,1109,-1,852,351,343,-1,1287,1261,349,-1,1261,1110,349,-1,346,345,342,-1,345,344,342,-1,1110,140,349,-1,173,124,185,-1,342,1288,340,-1,84,201,114,-1,201,1289,114,-1,366,370,365,-1,923,325,81,-1,326,1290,1291,-1,327,935,81,-1,955,940,304,-1,321,971,1292,-1,248,1204,1293,-1,248,1202,1204,-1,1294,315,314,-1,639,1170,637,-1,983,654,1295,-1,303,317,954,-1,307,1296,215,-1,307,306,1296,-1,1005,288,1033,-1,1084,317,303,-1,1216,1028,1217,-1,1216,1027,1028,-1,294,300,295,-1,294,297,300,-1,301,291,290,-1,301,300,291,-1,299,1005,292,-1,1022,998,1297,-1,1023,1022,284,-1,1297,998,997,-1,292,1005,1033,-1,1029,291,296,-1,1023,1298,1024,-1,285,1027,1299,-1,285,1299,286,-1,268,267,276,-1,276,278,268,-1,266,1300,275,-1,1301,265,264,-1,264,274,1301,-1,273,263,272,-1,263,260,272,-1,262,271,261,-1,262,269,270,-1,262,267,268,-1,262,265,266,-1,262,263,264,-1,262,261,260,-1,232,1302,1286,-1,1286,233,232,-1,251,250,1026,-1,240,235,237,-1,360,232,234,-1,242,237,236,-1,238,234,233,-1,228,244,229,-1,231,576,230,-1,226,1008,1007,-1,229,231,227,-1,1303,683,677,-1,1304,974,976,-1,578,576,231,-1,1305,1200,1199,-1,1305,247,1200,-1,1090,1290,1306,-1,931,1307,214,-1,918,911,904,-1,248,1293,317,-1,1308,1309,366,-1,1289,115,114,-1,95,1310,163,-1,163,162,95,-1,196,1311,191,-1,1311,192,191,-1,193,195,191,-1,193,105,195,-1,469,182,1312,-1,182,184,1312,-1,461,1313,468,-1,1313,1314,468,-1,97,1315,1316,-1,1316,1317,97,-1,1318,95,97,-1,97,1317,1318,-1,1112,350,101,-1,124,174,847,-1,1319,152,1320,-1,166,96,164,-1,172,1321,93,-1,1321,167,166,-1,96,161,164,-1,167,1321,172,-1,151,1319,149,-1,154,160,847,-1,156,158,859,-1,152,1319,153,-1,174,1315,152,-1,899,897,135,-1,146,145,104,-1,104,1322,146,-1,1323,897,1094,-1,1324,898,1325,-1,1326,906,1327,-1,1328,1322,1329,-1,1326,1327,1330,-1,1330,355,1326,-1,102,848,103,-1,355,1330,356,-1,120,1187,484,-1,944,114,204,-1,111,465,871,-1,396,197,108,-1,105,109,195,-1,848,106,103,-1,1111,1112,101,-1,345,98,183,-1,474,179,458,-1,172,93,92,-1,326,924,1331,-1,326,325,924,-1,85,87,738,-1,558,1150,1149,-1,941,933,79,-1,57,77,74,-1,74,78,57,-1,62,71,73,-1,72,70,67,-1,69,68,518,-1,66,65,1332,-1,78,61,1333,-1,1333,55,78,-1,63,1333,61,-1,60,59,63,-1,57,58,51,-1,43,36,38,-1,48,45,47,-1,47,38,48,-1,47,46,576,-1,34,41,40,-1,551,37,36,-1,31,577,32,-1,22,12,14,-1,1334,1000,23,-1,19,28,1335,-1,19,18,28,-1,1162,541,726,-1,14,30,22,-1,8,17,1001,-1,991,223,1059,-1,995,994,562,-1,0,3,1,-1,6,3,0,-1,994,223,993,-1,995,223,994,-1,1059,223,995,-1,1064,28,1336,-1,1335,28,1064,-1,1002,1334,1336,-1,1002,1000,1334,-1,1337,1005,1009,-1,1005,1337,20,-1,1333,59,1338,-1,63,59,1333,-1,679,484,483,-1,679,121,484,-1,148,1329,1339,-1,148,1328,1329,-1,906,134,1327,-1,906,132,134,-1,128,1340,129,-1,128,1341,1340,-1,1342,135,137,-1,899,135,1342,-1,848,1324,1325,-1,102,1324,848,-1,1342,134,1339,-1,1342,137,134,-1,907,142,147,-1,907,143,142,-1,848,1329,131,-1,1329,848,1325,-1,153,151,159,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlhumrus_Geo_5_439_coordIndex_6()
		{
			int[] value = {151,153,1319,-1,165,166,164,-1,1321,166,165,-1,1320,96,167,-1,1320,152,96,-1,149,1320,863,-1,149,1319,1320,-1,466,1343,464,-1,466,181,1343,-1,464,1344,1345,-1,464,1343,1344,-1,1346,1345,1344,-1,1345,1346,1347,-1,1347,1318,1348,-1,1347,1346,1318,-1,1348,1317,1349,-1,1348,1318,1317,-1,1316,1349,1317,-1,1349,1316,462,-1,173,1313,174,-1,1313,173,1314,-1,1314,469,468,-1,182,469,1314,-1,1350,183,98,-1,184,183,1350,-1,1351,98,100,-1,1350,98,1351,-1,100,189,1351,-1,100,1111,189,-1,188,1352,1353,-1,188,187,1352,-1,1353,1354,1238,-1,1353,1352,1354,-1,1238,193,190,-1,1238,1354,193,-1,194,176,196,-1,197,176,194,-1,1355,199,198,-1,1356,199,1355,-1,1308,1357,1309,-1,1308,1358,1357,-1,202,1204,203,-1,202,1293,1204,-1,1092,1290,1090,-1,1291,1290,1092,-1,918,1093,911,-1,1093,918,919,-1,1091,212,211,-1,1091,1359,212,-1,211,1092,1091,-1,211,1307,1092,-1,1360,1305,1199,-1,1361,1305,1360,-1,1361,1202,1305,-1,1361,1203,1202,-1,33,965,257,-1,33,986,965,-1,1296,1362,1363,-1,1296,1364,1362,-1,1365,1366,1367,-1,1365,1368,1366,-1,1369,1370,1371,-1,1369,1372,1370,-1,1373,1366,977,-1,1373,1367,1366,-1,1374,2,4,-1,2,1374,990,-1,1375,718,1376,-1,718,1375,221,-1,232,1377,1302,-1,359,1377,232,-1,239,1286,1285,-1,239,233,1286,-1,1079,968,318,-1,1076,968,1079,-1,311,1285,1378,-1,1285,311,1081,-1,968,1362,977,-1,1362,968,1076,-1,1379,975,1380,-1,1379,976,975,-1,1026,1046,251,-1,1025,1046,1026,-1,1381,947,1024,-1,947,1381,1049,-1,1286,1382,963,-1,1286,1302,1382,-1,237,238,240,-1,237,234,238,-1,242,234,237,-1,234,242,360,-1,1080,1062,246,-1,1383,1062,1080,-1,273,1044,584,-1,273,272,1044,-1,278,286,1299,-1,278,276,286,-1,1300,265,1301,-1,1300,266,265,-1,261,1384,258,-1,261,271,1384,-1,1381,1045,1046,-1,1381,1385,1045,-1,1386,1385,1387,-1,1386,1045,1385,-1,1388,580,621,-1,1389,580,1388,-1,1033,290,292,-1,287,290,1033,-1,293,301,289,-1,293,295,301,-1,1390,997,1029,-1,1390,1297,997,-1,1022,1390,284,-1,1390,1022,1297,-1,294,1028,297,-1,1217,1028,294,-1,1216,277,1027,-1,277,1216,279,-1,1025,312,1049,-1,1025,313,312,-1,1391,946,956,-1,946,1391,962,-1,958,966,220,-1,960,966,958,-1,961,1392,964,-1,951,1392,961,-1,1077,953,1078,-1,953,1077,949,-1,1393,945,1201,-1,945,1393,943,-1,1078,216,1363,-1,216,1078,953,-1,309,1378,1394,-1,309,311,1378,-1,317,202,954,-1,202,317,1293,-1,983,1170,639,-1,1170,983,1295,-1,1395,1396,1397,-1,1395,1206,1396,-1,1398,315,1294,-1,315,1398,1399,-1,314,1183,1294,-1,1068,1183,314,-1,712,1400,710,-1,712,1401,1400,-1,1402,1403,1404,-1,1402,1405,1403,-1,1406,1407,1408,-1,1409,1407,1406,-1,1292,978,1410,-1,1292,971,978,-1,207,247,205,-1,1200,247,207,-1,1331,1290,326,-1,1290,1331,1306,-1,336,930,929,-1,1411,930,336,-1,341,99,346,-1,341,1261,99,-1,1278,386,383,-1,1278,384,386,-1,1412,340,1288,-1,340,1412,1266,-1,1265,1278,408,-1,1265,384,1278,-1,376,850,379,-1,850,376,851,-1,913,357,912,-1,1413,357,913,-1,138,1324,139,-1,138,898,1324,-1,1414,1282,1394,-1,1283,1282,1414,-1,938,934,1284,-1,937,934,938,-1,920,932,925,-1,920,1415,932,-1,338,1275,339,-1,1275,338,922,-1,1308,1356,1358,-1,1308,199,1356,-1,1281,434,109,-1,1281,1416,434,-1,143,913,144,-1,1413,913,143,-1,147,1281,1116,-1,1281,147,142,-1,364,1417,1418,-1,1417,364,361,-1,452,1279,455,-1,1280,1279,452,-1,1419,914,1420,-1,1419,916,914,-1,378,383,386,-1,378,382,383,-1,404,1267,388,-1,404,406,1267,-1,851,385,1267,-1,385,851,376,-1,1274,1323,1094,-1,1274,1276,1323,-1,1421,849,1422,-1,849,1421,377,-1,1422,1094,1096,-1,1422,908,1094,-1,429,1423,430,-1,429,1272,1423,-1,1243,1250,1424,-1,1250,1243,1242,-1,1246,1270,395,-1,1270,1246,1249,-1,1425,435,1426,-1,1427,435,1425,-1,1428,1311,1429,-1,1428,192,1311,-1,1430,1431,1432,-1,1433,1431,1430,-1,1434,1098,1435,-1,875,1098,1434,-1,1113,1271,432,-1,1113,1269,1271,-1,865,398,1268,-1,865,412,398,-1,1436,864,1106,-1,1436,1102,864,-1,1437,1438,1277,-1,1438,1437,1439,-1,1440,855,856,-1,1440,1441,855,-1,1277,1442,1437,-1,387,1442,1277,-1,858,854,427,-1,858,857,854,-1,1443,1444,1445,-1,1443,1446,1444,-1,1447,885,1263,-1,885,1447,888,-1,1257,448,1254,-1,1257,449,448,-1,420,1256,421,-1,420,1448,1256,-1,1449,1450,1451,-1,1449,1452,1450,-1,419,1453,417,-1,460,1453,419,-1,97,152,1315,-1,152,97,96,-1,1260,866,1100,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlhumrus_Geo_5_439_coordIndex_7()
		{
			int[] value = {866,1260,1105,-1,1102,1259,410,-1,1102,1436,1259,-1,451,158,155,-1,451,1103,158,-1,862,125,122,-1,861,125,862,-1,426,343,123,-1,426,852,343,-1,1272,1454,1423,-1,1272,433,1454,-1,1258,1345,1347,-1,1258,870,1345,-1,1257,443,1255,-1,443,1257,1254,-1,1253,1455,1251,-1,1253,373,1455,-1,1252,1246,441,-1,1246,1252,1424,-1,180,458,179,-1,180,1115,458,-1,454,1424,1252,-1,1424,454,1243,-1,1426,436,1456,-1,1426,435,436,-1,1252,452,454,-1,1252,1251,452,-1,1249,1247,1270,-1,1249,444,1247,-1,1457,92,94,-1,92,1457,1241,-1,1245,1240,1458,-1,1240,1245,1244,-1,860,1108,126,-1,860,1107,1108,-1,363,375,361,-1,375,363,374,-1,440,1417,1459,-1,1456,1417,440,-1,446,1460,450,-1,1460,446,1461,-1,361,1459,1417,-1,375,1459,361,-1,1423,443,442,-1,1423,1454,443,-1,1258,417,871,-1,1258,418,417,-1,1099,867,455,-1,1101,867,1099,-1,398,1458,399,-1,398,1245,1458,-1,399,1457,1269,-1,399,1458,1457,-1,1462,732,731,-1,1462,1463,732,-1,1239,192,1428,-1,1239,190,192,-1,1464,1238,1237,-1,1464,1353,1238,-1,1262,472,1263,-1,1262,186,472,-1,1345,465,464,-1,1345,870,465,-1,1465,110,112,-1,1466,110,1465,-1,1467,1234,1468,-1,1467,1235,1234,-1,1236,874,876,-1,1236,872,874,-1,1469,1470,1471,-1,1470,1469,1472,-1,869,1473,1474,-1,1473,869,873,-1,1218,1074,1475,-1,1074,1218,972,-1,1187,1155,1154,-1,1187,1186,1155,-1,1220,484,1187,-1,1220,485,484,-1,1476,1231,1232,-1,1476,513,1231,-1,514,1477,1478,-1,1479,1477,514,-1,499,1073,501,-1,500,1073,499,-1,1480,1481,1482,-1,1480,1230,1481,-1,516,1483,1053,-1,1483,516,1484,-1,1485,477,476,-1,477,1485,1486,-1,1486,496,477,-1,497,496,1486,-1,1230,1231,1481,-1,1230,1229,1231,-1,497,1484,1478,-1,1484,497,1486,-1,518,1075,69,-1,1075,518,531,-1,978,970,968,-1,978,971,970,-1,1487,761,762,-1,761,1487,1043,-1,772,1488,773,-1,772,1489,1488,-1,769,1490,770,-1,769,1491,1490,-1,1492,1493,1494,-1,1495,1493,1492,-1,1496,1497,1498,-1,1496,1499,1497,-1,1500,1501,1502,-1,1501,1500,1503,-1,1504,1505,1506,-1,1504,1507,1505,-1,1508,1509,1510,-1,1509,1508,1511,-1,1512,1499,1496,-1,1512,1513,1499,-1,1514,1515,1516,-1,1514,1517,1515,-1,1518,1519,1520,-1,1521,1519,1518,-1,1522,1523,1524,-1,1523,1522,1525,-1,1526,1527,1528,-1,1526,1529,1527,-1,1530,1531,1532,-1,1533,1531,1530,-1,771,1529,1526,-1,1529,771,1534,-1,50,1535,1227,-1,50,49,1535,-1,1159,1536,1537,-1,1159,1158,1536,-1,1538,1539,1540,-1,1538,1541,1539,-1,1542,1543,1544,-1,1542,1545,1543,-1,1129,808,546,-1,808,1129,1128,-1,1224,738,1546,-1,1224,85,738,-1,86,1547,1149,-1,86,1225,1547,-1,89,1065,574,-1,89,88,1065,-1,1548,1221,1549,-1,1548,552,1221,-1,1550,90,1551,-1,90,1550,88,-1,1548,1552,1553,-1,1549,1552,1548,-1,729,1150,555,-1,87,1150,729,-1,1554,988,1555,-1,988,1554,1556,-1,1557,1558,1559,-1,1557,1560,1558,-1,1561,1223,1562,-1,1561,1222,1223,-1,1550,1563,1066,-1,1550,1564,1563,-1,1565,1566,1567,-1,1568,1566,1565,-1,1566,544,1228,-1,1566,1552,544,-1,1551,1564,1550,-1,1551,1569,1564,-1,571,553,90,-1,553,571,992,-1,532,520,523,-1,973,520,532,-1,1475,969,1219,-1,1475,1074,969,-1,973,1218,520,-1,972,1218,973,-1,549,1569,1551,-1,549,1570,1569,-1,1462,1219,1154,-1,1462,1475,1219,-1,1570,1553,1569,-1,1548,1553,1570,-1,587,294,1571,-1,294,587,1217,-1,590,588,585,-1,588,590,1572,-1,593,1573,589,-1,1573,593,1044,-1,813,603,1172,-1,813,604,603,-1,1215,694,1574,-1,1215,635,694,-1,1575,1199,1210,-1,1360,1199,1575,-1,1576,1212,1214,-1,1577,1212,1576,-1,1212,1211,1213,-1,1212,1210,1211,-1,613,1208,608,-1,1208,613,1578,-1,663,614,668,-1,663,613,614,-1,1209,1332,612,-1,1332,1209,524,-1,623,1371,1365,-1,1371,623,1579,-1,1580,1205,1581,-1,1580,622,1205,-1,1582,1206,1395,-1,1582,1207,1206,-1,1583,1575,1577,-1,1584,1575,1583,-1,620,1055,1047,-1,620,616,1055,-1,606,207,607,-1,207,606,1200,-1,606,1211,1199,-1,606,1208,1211,-1,1585,1396,1304,-1,1585,1584,1396,-1,974,1205,624,-1,974,1207,1205,-1,1366,1586,1410,-1,1366,1368,1586,-1,1587,1588,1589,-1,1590,1588,1587,-1,1180,1178,1591,-1,1180,1174,1178,-1,204,945,944,-1,204,203,945,-1,247,1202,248,-1,247,1305,1202,-1,636,1180,634,-1,1180,636,1174,-1,639,684,979,-1,639,685,684,-1,703,1197,1196,-1,1197,703,1592,-1,705,1195,1593,-1,705,1069,1195,-1,1576,1215,1594,-1,1576,1214,1215,-1,1595,1596,1574,-1,1596,1595,1597,-1,1598,1599,1600,-1,1598,1601,1599,-1,1602,1193,1194,-1,1602,1603,1193,-1,1169,1193,1604,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlhumrus_Geo_5_439_coordIndex_8()
		{
			int[] value = {1169,643,1193,-1,1605,1599,1606,-1,1605,1603,1599,-1,1595,1607,1601,-1,1607,1595,1181,-1,1608,675,674,-1,675,1608,688,-1,1192,1191,1068,-1,1192,1070,1191,-1,654,982,656,-1,654,983,982,-1,1131,657,1182,-1,657,1131,1190,-1,1609,648,981,-1,1609,1130,648,-1,1184,650,1610,-1,1184,1191,650,-1,1609,658,1190,-1,658,1609,1611,-1,1612,673,1012,-1,1612,674,673,-1,667,693,670,-1,693,667,691,-1,1189,1613,666,-1,1189,1614,1613,-1,1615,1616,1617,-1,1615,1618,1616,-1,1619,1620,1621,-1,1622,1620,1619,-1,1620,1408,1407,-1,1620,1618,1408,-1,1614,1405,1615,-1,1405,1614,1403,-1,1401,665,1400,-1,1401,1189,665,-1,1623,1582,1624,-1,1623,1581,1582,-1,1183,1625,1626,-1,1184,1625,1183,-1,1627,1398,1294,-1,1627,1624,1398,-1,1628,1629,1630,-1,1628,1631,1629,-1,1188,1186,120,-1,478,1186,1188,-1,832,121,679,-1,119,121,832,-1,1632,315,1399,-1,1632,985,315,-1,1624,1628,1623,-1,1624,1627,1628,-1,1185,777,502,-1,1185,1633,777,-1,1626,1634,1631,-1,1634,1626,1625,-1,979,1182,639,-1,979,1131,1182,-1,658,1635,659,-1,658,1636,1635,-1,1637,1638,1639,-1,1640,1638,1637,-1,1013,1134,1133,-1,1641,1134,1013,-1,1608,644,647,-1,1608,645,644,-1,1605,1590,1587,-1,1605,1606,1590,-1,1169,625,627,-1,1169,1604,625,-1,1179,629,631,-1,1179,1168,629,-1,1180,1607,1181,-1,1180,1591,1607,-1,1178,1642,1588,-1,1178,1177,1642,-1,1589,1643,628,-1,1589,1644,1643,-1,709,632,626,-1,709,711,632,-1,828,1645,829,-1,828,1646,1645,-1,1639,1647,844,-1,1639,1638,1647,-1,845,1648,1054,-1,845,1649,1648,-1,1650,760,1016,-1,1650,1651,760,-1,767,1652,1653,-1,758,1652,767,-1,708,1654,815,-1,707,1654,708,-1,701,668,1011,-1,668,701,669,-1,602,1176,1175,-1,1176,602,1655,-1,1656,1657,814,-1,1658,1657,1656,-1,816,1659,1660,-1,816,1661,1659,-1,1662,1663,1664,-1,1663,1662,692,-1,690,1665,1666,-1,690,1667,1665,-1,1668,646,1669,-1,646,1668,980,-1,1636,1611,1670,-1,1611,1636,658,-1,1671,655,1672,-1,655,1671,1610,-1,669,700,1176,-1,669,701,700,-1,1173,600,1048,-1,1173,1171,600,-1,662,695,696,-1,662,1621,695,-1,1597,1195,1596,-1,1195,1597,1593,-1,984,1192,316,-1,984,702,1192,-1,1174,1409,1177,-1,1174,697,1409,-1,1175,603,602,-1,1171,603,1175,-1,1173,583,1172,-1,1173,581,583,-1,1664,1654,1653,-1,1664,1661,1654,-1,706,715,716,-1,706,714,715,-1,1167,24,7,-1,1167,25,24,-1,1163,1374,1673,-1,1163,1376,1374,-1,727,1674,728,-1,727,1675,1674,-1,1676,1677,1678,-1,1676,1679,1677,-1,1680,1681,1682,-1,1681,1680,1683,-1,1165,1684,1685,-1,1165,1166,1684,-1,19,9,1162,-1,19,1335,9,-1,1673,1164,1163,-1,1164,1673,1003,-1,1164,1337,1007,-1,1164,26,1337,-1,1685,1031,1165,-1,1685,1032,1031,-1,1682,809,1686,-1,1682,1681,809,-1,810,1676,1040,-1,1679,1676,810,-1,722,611,1041,-1,722,719,611,-1,737,573,572,-1,573,737,1161,-1,1167,1223,567,-1,1167,799,1223,-1,801,1558,1562,-1,801,996,1558,-1,1125,1554,1559,-1,1125,818,1554,-1,557,561,564,-1,557,1058,561,-1,1058,1556,817,-1,557,1556,1058,-1,556,730,554,-1,556,560,730,-1,736,1687,1688,-1,1153,1687,736,-1,1689,1224,1690,-1,1689,1225,1224,-1,1691,1692,1693,-1,1694,1692,1691,-1,1695,1537,1536,-1,1537,1695,1696,-1,1153,1516,1687,-1,1514,1516,1153,-1,1503,507,1157,-1,507,1503,1500,-1,1697,1155,480,-1,1155,1697,1156,-1,1462,1156,1463,-1,1462,1154,1156,-1,494,1500,1698,-1,1500,494,507,-1,56,1514,1153,-1,56,1338,1514,-1,1699,1696,1694,-1,1699,1700,1696,-1,1691,1067,1701,-1,1690,1067,1691,-1,1702,806,819,-1,1702,1703,806,-1,1704,1547,1705,-1,1704,1226,1547,-1,1706,1707,807,-1,741,1707,1706,-1,1227,1700,1567,-1,1535,1700,1227,-1,1708,1709,1710,-1,1708,1711,1709,-1,1712,1713,1714,-1,1127,1713,1712,-1,1701,1565,1699,-1,1563,1565,1701,-1,1151,739,1715,-1,1151,740,739,-1,1713,1706,1703,-1,1713,1716,1706,-1,1693,1717,1718,-1,1692,1717,1693,-1,1719,1708,1720,-1,1708,1719,1711,-1,572,738,737,-1,572,575,738,-1,1482,1051,1721,-1,1052,1051,1482,-1,1722,1051,1723,-1,1722,1721,1051,-1,1722,1724,1725,-1,1722,1726,1724,-1,1727,1728,1729,-1,1727,1726,1728,-1,1730,1731,1732,-1,1727,1731,1730,-1,1733,1731,1734,-1,1735,1731,1733,-1,1736,1735,1733,-1,1737,1735,1736,-1,1738,1739,1737,-1,1738,1740,1739,-1,1738,1741,1742,-1,1738,1743,1741,-1,1742,1744,1745,-1,1742,1741,1744,-1,1746,1137,1745,-1,1746,1138,1137,-1,1747,1746,1748,-1,1749,1746,1747,-1,766,1749,1747,-1,1750,1749,766,-1,1751,1752,1753,-1,1750,1752,1751,-1,1683,1752,764,-1,1683,1680,1752,-1,1482,1754,1480,-1,1482,1721,1754,-1,1232,1755,1476,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getlhumrus_Geo_5_439_coordIndex_9()
		{
			int[] value = {1755,1232,734,-1,1389,274,580,-1,274,1389,1301,-1,751,1756,1757,-1,751,749,1756,-1,1146,1758,1759,-1,1146,1145,1758,-1,1760,1145,1144,-1,1761,1145,1760,-1,1761,1762,1763,-1,1761,1764,1762,-1,744,1765,1766,-1,744,1764,1765,-1,1767,747,1768,-1,748,747,1767,-1,752,1769,1770,-1,752,754,1769,-1,1688,1147,1146,-1,1687,1147,1688,-1,1771,749,1772,-1,1756,749,1771,-1,1665,1648,1669,-1,1665,1650,1648,-1,692,664,1663,-1,692,691,664,-1,1773,1774,1775,-1,1774,1773,765,-1,1776,1777,1778,-1,1776,1751,1777,-1,1487,1779,1780,-1,1488,1779,1487,-1,1780,1781,1042,-1,1781,1780,1777,-1,1782,1773,1783,-1,1782,1784,1773,-1,1118,1785,1786,-1,1118,1117,1785,-1,1143,1787,1788,-1,1132,1787,1143,-1,492,1698,52,-1,492,494,1698,-1,9,761,542,-1,9,11,761,-1,1493,1531,1498,-1,1493,1528,1531,-1,1519,1507,1504,-1,1507,1519,1521,-1,1510,1524,1523,-1,1510,1509,1524,-1,1496,1789,1512,-1,1496,1533,1789,-1,1790,1020,1019,-1,1020,1790,1791,-1,1741,1792,1744,-1,1741,1793,1792,-1,1794,1136,1795,-1,1794,1140,1136,-1,1771,538,1770,-1,1771,1534,538,-1,1796,775,1139,-1,1796,776,775,-1,537,1770,538,-1,537,752,1770,-1,1795,1135,1797,-1,1135,1795,1136,-1,1744,1798,1748,-1,1798,1744,1792,-1,1799,1791,1790,-1,1799,1800,1791,-1,1641,838,782,-1,1013,838,1641,-1,1133,843,793,-1,1133,846,843,-1,1017,1143,1801,-1,1143,1017,757,-1,1802,1803,1804,-1,1803,1802,1805,-1,1806,1123,1807,-1,1124,1123,1806,-1,1736,1808,1809,-1,1733,1808,1736,-1,1527,1768,1532,-1,1768,1527,1767,-1,1715,1810,1151,-1,1715,1811,1810,-1,797,1812,1813,-1,1812,797,796,-1,1779,1135,1778,-1,1797,1135,1779,-1,725,1030,288,-1,725,1031,1030,-1,1037,1814,1039,-1,1037,1036,1814,-1,588,280,586,-1,280,588,1384,-1,802,1815,803,-1,802,1816,1815,-1,1014,1133,1817,-1,1133,1014,1013,-1,1638,1670,1647,-1,1638,1636,1670,-1,1125,6,5,-1,996,6,1125,-1,1513,1818,1499,-1,1818,1513,1819,-1,1734,1820,1821,-1,1734,1729,1820,-1,1822,1823,1824,-1,1825,1823,1822,-1,1820,836,1824,-1,1826,836,1820,-1,1827,1730,1819,-1,1827,1724,1730,-1,1765,1828,1766,-1,1765,1522,1828,-1,1543,1127,1712,-1,1543,1128,1127,-1,822,1557,1555,-1,822,805,1557,-1,733,505,504,-1,505,733,512,-1,1748,1774,1747,-1,1748,1798,1774,-1,1829,1806,1018,-1,1806,1829,1809,-1,1826,1830,836,-1,1830,1826,1831,-1,1053,1832,1050,-1,1483,1832,1053,-1,704,1196,831,-1,703,1196,704,-1,1402,1643,1644,-1,1402,1404,1643,-1,1655,1616,1622,-1,1658,1616,1655,-1,1592,1600,1197,-1,1592,1598,1600,-1,989,558,1149,-1,989,559,558,-1,1060,780,1833,-1,779,780,1060,-1,1830,1834,827,-1,1834,1830,1832,-1,1754,1835,1836,-1,1754,1725,1835,-1,1760,1520,1525,-1,1520,1760,1144,-1,1710,1539,1544,-1,1539,1710,1709,-1,1542,1762,1545,-1,1542,1763,1762,-1,1835,1511,1508,-1,1511,1835,1827,-1,1728,1831,1826,-1,1728,1723,1831,-1,791,839,792,-1,791,1833,839,-1,1834,476,825,-1,476,1834,1485,-1,1121,1822,835,-1,1121,1816,1822,-1,1837,1807,1805,-1,1807,1837,1021,-1,1838,1019,1839,-1,1019,1838,1790,-1,1785,1799,1840,-1,1799,1785,1841,-1,1674,1782,1119,-1,1782,1674,1675,-1,1061,823,605,-1,1061,1060,823,-1,1120,1014,1815,-1,1120,837,1014,-1,1802,841,1842,-1,1802,794,841,-1,1843,1015,1844,-1,1843,840,1015,-1,1845,1786,1846,-1,1845,1788,1786,-1,1804,804,803,-1,1804,1803,804,-1,1846,1838,1844,-1,1846,1840,1838,-1,1132,834,1787,-1,834,1132,717,-1,1130,649,648,-1,649,1130,842,-1,1456,1418,1417,-1,1418,1456,436,-1,439,1461,446,-1,439,438,1461,-1,445,1114,439,-1,456,1114,445,-1,94,1269,1457,-1,1269,94,1271,-1,441,1459,1253,-1,1459,441,440,-1,450,1847,448,-1,1847,450,1460,-1,99,1111,100,-1,99,348,1111,-1,408,381,409,-1,408,1278,381,-1,342,1109,1288,-1,342,344,1109,-1,1440,400,1848,-1,1440,1439,400,-1,124,862,122,-1,160,862,124,-1,1104,400,402,-1,1104,1848,400,-1,1105,1849,1104,-1,1849,1105,1260,-1,1107,1436,401,-1,1107,1259,1436,-1,412,1245,398,-1,412,411,1245,-1,1450,871,417,-1,1450,1471,871,-1,423,1469,1452,-1,423,1474,1469,-1,111,1467,112,-1,1470,1467,111,-1,1472,1236,1235,-1,1473,1236,1472,-1,1434,1468,1234,-1,1434,1433,1468,-1,1466,1430,1429,-1,1430,1466,1465,-1,1850,1432,1431,-1,1432,1850,1851,-1,880,1435,1098,-1,1435,880,1852,-1,1853,1852,1854,-1,1853,1850,1852,-1,1855,1239,1851,-1,1855,1237,1239,-1,1853,1856,1855,-1,1853,1857,1856,-1,881,1858,1854,-1,881,1859,1858,-1,882,1860,1859,-1,884,1860,882,-1,1858,1861,1857,-1,1862,1861,1858,-1,471,1856,1863,-1,471,1464,1856,-1,1861,1864,1863,-1,1861,1865,1864,-1,1860,1866,1862,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getlhumrus_Geo_5_439_coordIndex_10()
		{
			int[] value = {1860,1867,1866,-1,1867,414,416,-1,414,1867,883,-1,1865,1446,1443,-1,1446,1865,1866,-1,1864,1263,472,-1,1447,1263,1864,-1,1445,1868,893,-1,1445,1444,1868,-1,413,889,1869,-1,413,415,889,-1,1868,1870,1871,-1,1870,1868,1869,-1,1871,1872,891,-1,1871,1873,1872,-1,890,1874,1870,-1,890,895,1874,-1,1874,1875,1873,-1,1876,1875,1874,-1,1097,1872,1877,-1,1097,894,1872,-1,460,1097,1453,-1,459,1097,460,-1,1451,1875,1449,-1,1877,1875,1451,-1,896,424,1876,-1,896,425,424,-1,144,1418,1416,-1,1418,144,364,-1,1339,1325,1342,-1,1329,1325,1339,-1,1273,849,380,-1,849,1273,910,-1,1878,1419,1441,-1,1878,900,1419,-1,1260,901,1849,-1,1260,902,901,-1,1251,1280,452,-1,1455,1280,1251,-1,1280,371,369,-1,1280,1455,371,-1,1340,1323,1276,-1,136,1323,1340,-1,900,916,1419,-1,900,329,916,-1,129,1276,1275,-1,1340,1276,129,-1,130,1275,922,-1,129,1275,130,-1,924,328,1331,-1,328,924,917,-1,919,1879,1359,-1,919,334,1879,-1,200,1089,198,-1,200,356,1089,-1,1359,1880,212,-1,1359,1879,1880,-1,1881,198,1089,-1,198,1881,1355,-1,1357,82,1880,-1,1357,83,82,-1,926,113,1881,-1,926,939,113,-1,116,1087,117,-1,82,1087,116,-1,118,948,213,-1,118,952,948,-1,1088,84,1085,-1,84,1088,1087,-1,204,936,955,-1,936,204,114,-1,941,1282,1284,-1,941,957,1282,-1,950,213,948,-1,213,950,1086,-1,1085,307,1088,-1,1085,308,307,-1,1391,1283,1414,-1,1283,1391,942,-1,1026,1084,313,-1,1026,250,1084,-1,1379,1393,1882,-1,1379,305,1393,-1,306,1364,1296,-1,1380,1364,306,-1,1081,239,1285,-1,239,1081,241,-1,1383,218,220,-1,1383,1080,218,-1,1392,1079,1883,-1,1077,1079,1392,-1,65,612,1332,-1,65,528,612,-1,69,532,67,-1,532,69,1075,-1,1627,1631,1628,-1,1631,1627,1626,-1,681,683,1303,-1,681,1185,683,-1,682,1580,1884,-1,682,1579,1580,-1,683,678,677,-1,678,683,488,-1,490,678,488,-1,490,832,678,-1,498,487,500,-1,498,489,487,-1,698,688,687,-1,675,688,698,-1,1635,1645,1672,-1,1640,1645,1635,-1,1602,1197,1600,-1,1602,1198,1197,-1,831,1071,830,-1,1071,831,1196,-1,1632,1594,985,-1,1632,1576,1594,-1,1577,1632,1583,-1,1577,1576,1632,-1,1885,1304,976,-1,1885,1585,1304,-1,246,578,244,-1,1062,578,246,-1,1066,1701,1067,-1,1066,1563,1701,-1,807,1561,1560,-1,1707,1561,807,-1,1159,51,735,-1,51,1159,49,-1,71,61,42,-1,71,62,61,-1,1886,508,1480,-1,1886,1157,508,-1,1687,1518,1147,-1,1516,1518,1687,-1,1695,1717,1692,-1,1695,1887,1717,-1,1129,548,1811,-1,546,548,1129,-1,741,1888,1707,-1,740,1888,741,-1,1709,1540,1539,-1,1540,1709,1887,-1,574,1067,1546,-1,574,1065,1067,-1,993,227,230,-1,993,222,227,-1,1888,565,1222,-1,565,1888,1057,-1,1889,1757,1796,-1,1889,751,1757,-1,740,1057,1888,-1,1152,1057,740,-1,1152,774,1057,-1,1139,774,1152,-1,999,1002,1004,-1,1002,999,1000,-1,17,1004,1001,-1,1004,17,999,-1,1673,4,1056,-1,4,1673,1374,-1,1890,225,228,-1,1890,1008,225,-1,998,1010,299,-1,998,1891,1010,-1,1377,225,224,-1,1377,245,225,-1,243,246,245,-1,243,236,246,-1,1891,1302,1377,-1,1891,1382,1302,-1,254,1022,1024,-1,1022,254,998,-1,206,253,1055,-1,253,206,205,-1,712,1643,1404,-1,712,709,1643,-1,814,812,609,-1,812,814,1657,-1,1660,666,1613,-1,666,1660,1659,-1,1637,782,829,-1,1637,1641,782,-1,1016,757,1017,-1,1016,760,757,-1,1529,1767,1527,-1,1772,1767,1529,-1,1147,1520,1144,-1,1518,1520,1147,-1,1480,1836,1886,-1,1836,1480,1754,-1,1832,1485,1834,-1,1832,1483,1485,-1,1120,1816,1121,-1,1815,1816,1120,-1,1733,1821,1808,-1,1733,1734,1821,-1,1499,798,1497,-1,798,1499,1818,-1,1740,796,1739,-1,1740,1812,796,-1,1018,1807,1021,-1,1806,1807,1018,-1,1812,1141,1140,-1,1740,1141,1812,-1,1839,1844,1838,-1,1844,1839,1843,-1,1841,1800,1799,-1,1841,1775,1800,-1,1138,1778,1135,-1,1138,1776,1778,-1,282,1386,1388,-1,282,1045,1386,-1,1298,1381,1024,-1,1385,1381,1298,-1,272,1573,1044,-1,272,259,1573,-1,258,588,1572,-1,1384,588,258,-1,276,1892,286,-1,275,1892,276,-1,1893,1301,1389,-1,1301,1893,1300,-1,283,1023,284,-1,1298,1023,283,-1,1675,1784,1782,-1,1675,1678,1784,-1,1753,1166,1781,-1,1684,1166,1753,-1,811,1040,596,-1,1040,811,810,-1,596,592,811,-1,596,594,592,-1,594,1035,583,-1,594,596,1035,-1,1039,1148,591,-1,1814,1148,1039,-1,293,1571,294,-1,293,1037,1571,-1,1814,1032,1148,-1,1032,1814,1030,-1,1678,763,1784,-1,1678,1677,763,-1,1119,720,1674,-1,720,1119,833,-1,283,1892,1387,-1,286,1892,283,-1,1388,1893,1389,-1,1388,1386,1893,-1,1892,1300,1893,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getlhumrus_Geo_5_439_coordIndex_11()
		{
			int[] value = {1300,1892,275,-1,280,1216,586,-1,279,1216,280,-1,259,1572,1573,-1,258,1572,259,-1,1489,1779,1488,-1,1489,1797,1779,-1,1775,1798,1800,-1,1798,1775,1774,-1,1786,1840,1846,-1,1786,1785,1840,-1,1794,1492,1813,-1,1794,1491,1492,-1,1829,1020,1793,-1,1018,1020,1829,-1,1842,1805,1802,-1,1842,1837,1805,-1,1736,1829,1743,-1,1736,1809,1829,-1,1813,1494,797,-1,1494,1813,1492,-1,1818,1894,798,-1,1894,1818,1732,-1,1825,1124,1823,-1,1122,1124,1825,-1,605,825,476,-1,605,823,825,-1,1886,1506,1505,-1,1886,1836,1506,-1,1532,1895,1530,-1,1532,1768,1895,-1,1534,1772,1529,-1,1534,1771,1772,-1,1788,1801,1143,-1,1845,1801,1788,-1,828,777,1896,-1,828,778,777,-1,786,794,793,-1,794,786,841,-1,1661,815,1654,-1,1661,816,815,-1,1658,1617,1616,-1,1656,1617,1658,-1,1667,1650,1665,-1,1667,1651,1650,-1,1644,1406,1402,-1,1406,1644,1642,-1,1578,660,633,-1,1578,613,660,-1,254,1891,998,-1,1891,254,1382,-1,359,245,1377,-1,243,245,359,-1,1891,224,1010,-1,1891,1377,224,-1,299,1009,1005,-1,299,1010,1009,-1,1375,1008,1890,-1,1008,1375,1006,-1,1007,1009,226,-1,1009,1007,1337,-1,10,1335,1064,-1,10,9,1335,-1,1056,1003,1673,-1,1056,1004,1003,-1,30,1063,22,-1,30,755,1063,-1,799,7,800,-1,7,799,1167,-1,1796,1152,1889,-1,1139,1152,1796,-1,1151,1889,1152,-1,1889,1151,1810,-1,751,1810,750,-1,1810,751,1889,-1,579,230,576,-1,579,993,230,-1,1161,569,573,-1,569,1161,570,-1,0,1059,5,-1,0,991,1059,-1,1541,1759,1758,-1,1759,1541,1538,-1,1720,1704,1719,-1,1704,1720,821,-1,1126,1811,1715,-1,1811,1126,1129,-1,1718,1689,1693,-1,1718,1705,1689,-1,1538,1160,1759,-1,1160,1538,1158,-1,1157,1505,1503,-1,1157,1886,1505,-1,76,44,40,-1,76,551,44,-1,1567,1699,1565,-1,1567,1700,1699,-1,37,549,48,-1,37,1570,549,-1,1705,1225,1689,-1,1705,1547,1225,-1,1203,1885,1882,-1,1361,1885,1203,-1,1583,1399,1397,-1,1399,1583,1632,-1,1596,985,1594,-1,985,1596,1195,-1,1634,1671,1646,-1,1625,1671,1634,-1,1649,1669,1648,-1,1649,1668,1669,-1,1170,651,830,-1,1170,1295,651,-1,643,1072,1194,-1,643,640,1072,-1,489,119,490,-1,489,1188,119,-1,1697,1476,1755,-1,1697,1479,1476,-1,1370,526,525,-1,1370,1372,526,-1,1367,975,624,-1,1367,1373,975,-1,1884,1581,1623,-1,1884,1580,1581,-1,1579,1369,1371,-1,1369,1579,682,-1,680,1629,1633,-1,1630,1629,680,-1,517,1292,1209,-1,1292,517,321,-1,964,1883,257,-1,1392,1883,964,-1,965,220,966,-1,965,1383,220,-1,1076,1363,1362,-1,1076,1078,1363,-1,1380,305,1379,-1,1380,306,305,-1,1201,1882,1393,-1,1203,1882,1201,-1,1394,957,309,-1,957,1394,1282,-1,956,942,1391,-1,942,956,304,-1,955,202,204,-1,955,954,202,-1,1088,215,217,-1,1088,307,215,-1,962,255,946,-1,256,255,962,-1,938,942,940,-1,938,1283,942,-1,933,1284,934,-1,933,941,1284,-1,113,940,936,-1,939,940,113,-1,214,1086,935,-1,214,213,1086,-1,80,933,928,-1,80,79,933,-1,937,926,925,-1,926,937,939,-1,113,1355,1881,-1,1355,113,115,-1,116,1880,82,-1,212,1880,116,-1,929,81,80,-1,929,930,81,-1,932,927,928,-1,932,1415,927,-1,1881,921,926,-1,1089,921,1881,-1,1880,1309,1357,-1,1879,1309,1880,-1,1291,327,326,-1,1291,931,327,-1,923,1411,924,-1,1411,923,930,-1,1309,334,366,-1,334,1309,1879,-1,917,1411,915,-1,917,924,1411,-1,1330,130,356,-1,1330,128,130,-1,911,1090,208,-1,911,1093,1090,-1,915,329,917,-1,915,916,329,-1,339,1274,909,-1,339,1275,1274,-1,1341,1330,1327,-1,1341,128,1330,-1,918,903,335,-1,904,903,918,-1,1420,391,1273,-1,1420,914,391,-1,909,1094,908,-1,1094,909,1274,-1,1327,137,1341,-1,134,137,1327,-1,1279,903,905,-1,1279,368,903,-1,901,904,210,-1,901,902,904,-1,455,905,1099,-1,455,1279,905,-1,1099,902,1100,-1,1099,905,902,-1,1849,900,1878,-1,1849,901,900,-1,1273,855,1420,-1,380,855,1273,-1,148,1116,1328,-1,148,147,1116,-1,1876,1449,1875,-1,1876,424,1449,-1,1877,1453,1097,-1,1877,1451,1453,-1,1873,1877,1872,-1,1875,1877,1873,-1,1876,895,896,-1,1876,1874,895,-1,1873,1870,1874,-1,1871,1870,1873,-1,894,891,1872,-1,892,891,894,-1,1868,891,893,-1,1871,891,1868,-1,1869,890,1870,-1,890,1869,889,-1,1444,1869,1868,-1,1444,413,1869,-1,888,893,886,-1,888,1445,893,-1,1865,1447,1864,-1,1443,1447,1865,-1,1866,416,1446,-1,416,1866,1867,-1,884,1867,1860,-1,884,883,1867,-1,1862,1865,1861,-1,1862,1866,1865,-1,1863,472,471,-1,1863,1864,472,-1,1857,1863,1856,-1,1861,1863,1857,-1,1859,1862,1858,-1,1860,1862,1859,-1,879,1859,881,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getlhumrus_Geo_5_439_coordIndex_12()
		{
			int[] value = {879,882,1859,-1,1854,1857,1853,-1,1854,1858,1857,-1,1855,1464,1237,-1,1855,1856,1464,-1,1853,1851,1850,-1,1853,1855,1851,-1,880,1854,1852,-1,881,1854,880,-1,1431,1852,1850,-1,1431,1435,1852,-1,1851,1428,1432,-1,1428,1851,1239,-1,1465,1433,1430,-1,1433,1465,1468,-1,875,1234,876,-1,875,1434,1234,-1,1473,872,1236,-1,873,872,1473,-1,1470,1235,1467,-1,1472,1235,1470,-1,422,1233,474,-1,1897,1233,422,-1,425,1474,423,-1,1474,425,869,-1,1452,1471,1450,-1,1452,1469,1471,-1,150,171,1244,-1,863,171,150,-1,867,397,453,-1,867,1268,397,-1,451,151,150,-1,451,155,151,-1,1878,1104,1849,-1,1104,1878,1848,-1,125,859,126,-1,861,859,125,-1,126,1442,857,-1,1442,126,1108,-1,1441,1848,1878,-1,1441,1440,1848,-1,850,1438,856,-1,1438,850,405,-1,1412,428,389,-1,1412,853,428,-1,384,1267,385,-1,1267,384,1265,-1,382,377,1421,-1,378,377,382,-1,169,421,1256,-1,421,169,168,-1,1460,393,1847,-1,393,1460,394,-1,438,1425,1461,-1,1425,438,1427,-1,436,1416,1418,-1,1416,436,434,-1,146,1328,1116,-1,146,1322,1328,-1,1668,1647,1670,-1,1668,1649,1647,-1,1817,793,795,-1,1817,1133,793,-1,788,1845,1015,-1,1845,788,1801,-1,1837,1843,1839,-1,1843,1837,1842,-1,486,500,487,-1,500,486,1073,-1,1787,833,1118,-1,1787,834,833,-1,1846,1015,1845,-1,1846,1844,1015,-1,840,1842,841,-1,1842,840,1843,-1,795,803,1817,-1,803,795,1804,-1,792,837,1120,-1,837,792,839,-1,1119,1783,1117,-1,1783,1119,1782,-1,1840,1790,1838,-1,1790,1840,1799,-1,1021,1839,1019,-1,1021,1837,1839,-1,1803,1122,804,-1,1122,1803,1123,-1,835,790,1121,-1,826,790,835,-1,1646,1672,1645,-1,1646,1671,1672,-1,1833,783,839,-1,1833,780,783,-1,836,827,826,-1,836,1830,827,-1,1725,1827,1835,-1,1827,1725,1724,-1,1765,1525,1522,-1,1765,1760,1525,-1,1544,1712,1710,-1,1712,1544,1543,-1,1758,1542,1541,-1,1758,1763,1542,-1,1836,1508,1506,-1,1836,1835,1508,-1,1723,1050,1831,-1,1050,1723,1051,-1,827,825,824,-1,825,827,1834,-1,823,1833,791,-1,1060,1833,823,-1,1555,820,822,-1,1555,988,820,-1,1705,1719,1704,-1,1718,1719,1705,-1,1642,1409,1406,-1,1409,1642,1177,-1,1657,604,812,-1,604,1657,602,-1,1613,1656,1660,-1,1613,1617,1656,-1,1198,1194,1072,-1,1198,1602,1194,-1,1196,1072,1071,-1,1196,1198,1072,-1,1479,480,1477,-1,480,1479,1697,-1,1831,1832,1830,-1,1832,1831,1050,-1,1808,1823,1124,-1,1808,1821,1823,-1,1677,764,763,-1,1677,1683,764,-1,1743,1793,1741,-1,1743,1829,1793,-1,819,805,822,-1,819,806,805,-1,746,1545,1762,-1,1545,746,808,-1,1819,1511,1827,-1,1511,1819,1513,-1,1729,1826,1820,-1,1728,1826,1729,-1,1824,835,1822,-1,836,835,1824,-1,1821,1824,1823,-1,1821,1820,1824,-1,1819,1732,1818,-1,1732,1819,1730,-1,1530,1766,1828,-1,1530,1895,1766,-1,805,1560,1557,-1,1560,805,807,-1,844,1134,1639,-1,844,846,1134,-1,1815,1817,803,-1,1817,1815,1014,-1,1822,802,1825,-1,802,1822,1816,-1,1825,804,1122,-1,804,1825,802,-1,1039,1571,1037,-1,1571,1039,1038,-1,1814,288,1030,-1,1036,288,1814,-1,723,1781,1166,-1,723,1042,1781,-1,1813,1140,1794,-1,1813,1812,1140,-1,1222,1707,1888,-1,1561,1707,1222,-1,1811,750,1810,-1,548,750,1811,-1,797,1497,798,-1,1497,797,1494,-1,1739,798,1894,-1,798,1739,796,-1,1809,1124,1806,-1,1808,1124,1809,-1,1803,1807,1123,-1,1803,1805,1807,-1,1804,794,1802,-1,1804,795,794,-1,787,1801,788,-1,1801,787,1017,-1,786,787,789,-1,786,785,787,-1,793,784,786,-1,793,843,784,-1,681,1633,1185,-1,681,680,1633,-1,1800,1792,1791,-1,1800,1798,1792,-1,1490,1797,1489,-1,1797,1490,1795,-1,776,29,14,-1,1898,29,776,-1,1898,1796,1757,-1,1898,776,1796,-1,1795,1491,1794,-1,1491,1795,1490,-1,1793,1791,1792,-1,1793,1020,1791,-1,769,1526,1495,-1,1526,769,771,-1,772,536,770,-1,772,539,536,-1,1533,1498,1531,-1,1496,1498,1533,-1,1509,1789,1524,-1,1509,1512,1789,-1,1523,1504,1510,-1,1523,1519,1504,-1,1515,1507,1521,-1,1515,1501,1507,-1,1528,1495,1526,-1,1493,1495,1528,-1,1664,1652,1662,-1,1664,1653,1652,-1,1788,1118,1786,-1,1787,1118,1788,-1,1117,1841,1785,-1,1117,1783,1841,-1,1784,765,1773,-1,1784,763,765,-1,1781,1751,1753,-1,1781,1777,1751,-1,1487,1042,1043,-1,1042,1487,1780,-1,762,535,773,-1,535,762,533,-1,1780,1778,1777,-1,1779,1778,1780,-1,1747,765,766,-1,1747,1774,765,-1,1783,1775,1841,-1,1775,1783,1773,-1,1662,1651,1667,-1,1651,1662,1652,-1,645,674,1612,-1,674,645,1608,-1,1757,1769,1898,-1,1756,1769,1757,-1,1759,1688,1146,-1,1759,1160,1688,-1,30,754,753,-1,754,30,29,-1,1898,754,29,-1,1769,754,1898,-1,1770,1756,1771,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getlhumrus_Geo_5_439_coordIndex_13()
		{
			int[] value = {1769,1756,1770,-1,1772,748,1767,-1,1772,749,748,-1,548,748,750,-1,548,747,748,-1,747,1895,1768,-1,1895,747,745,-1,745,1766,1895,-1,1766,745,744,-1,1762,744,746,-1,1762,1764,744,-1,1764,1760,1765,-1,1760,1764,1761,-1,1145,1763,1758,-1,1763,1145,1761,-1,1686,1148,1032,-1,1686,742,1148,-1,734,511,512,-1,511,734,1232,-1,809,742,1686,-1,742,809,743,-1,1684,1752,1680,-1,1684,1753,1752,-1,764,1750,766,-1,764,1752,1750,-1,1776,1750,1751,-1,1776,1749,1750,-1,1749,1138,1746,-1,1776,1138,1749,-1,1745,1748,1746,-1,1744,1748,1745,-1,1141,1745,1137,-1,1141,1742,1745,-1,1740,1742,1141,-1,1740,1738,1742,-1,1743,1737,1736,-1,1743,1738,1737,-1,1737,1894,1735,-1,1739,1894,1737,-1,1732,1735,1894,-1,1732,1731,1735,-1,1729,1731,1727,-1,1729,1734,1731,-1,1724,1727,1730,-1,1724,1726,1727,-1,1726,1723,1728,-1,1723,1726,1722,-1,1725,1721,1722,-1,1725,1754,1721,-1,1702,1708,1714,-1,1720,1708,1702,-1,1717,1719,1718,-1,1717,1711,1719,-1,1714,1703,1702,-1,1713,1703,1714,-1,1715,1716,1126,-1,739,1716,1715,-1,1713,1126,1716,-1,1126,1713,1127,-1,1710,1714,1708,-1,1712,1714,1710,-1,1711,1887,1709,-1,1711,1717,1887,-1,1887,1536,1540,-1,1536,1887,1695,-1,1226,821,820,-1,821,1226,1704,-1,1716,741,1706,-1,1716,739,741,-1,1720,819,821,-1,1720,1702,819,-1,807,1703,1706,-1,806,1703,807,-1,1690,1546,1067,-1,1224,1546,1690,-1,1701,1694,1691,-1,1701,1699,1694,-1,1696,1535,1537,-1,1696,1700,1535,-1,1517,1142,1502,-1,1517,59,1142,-1,734,1463,1755,-1,734,732,1463,-1,1517,1501,1515,-1,1502,1501,1517,-1,1692,1696,1695,-1,1696,1692,1694,-1,1690,1693,1689,-1,1691,1693,1690,-1,1160,736,1688,-1,736,1160,735,-1,1755,1156,1697,-1,1156,1755,1463,-1,570,554,730,-1,570,1161,554,-1,579,560,994,-1,730,560,579,-1,556,564,561,-1,564,556,555,-1,996,1559,1558,-1,1125,1559,996,-1,1554,817,1556,-1,817,1554,818,-1,1562,799,801,-1,1223,799,1562,-1,15,7,24,-1,15,8,7,-1,728,1041,595,-1,728,722,1041,-1,1040,727,597,-1,1676,727,1040,-1,810,1681,1679,-1,1681,810,809,-1,1682,1032,1685,-1,1682,1686,1032,-1,725,1165,1031,-1,724,1165,725,-1,542,1162,9,-1,541,1162,542,-1,1680,1685,1684,-1,1682,1685,1680,-1,1679,1683,1677,-1,1679,1681,1683,-1,727,1678,1675,-1,727,1676,1678,-1,1674,722,728,-1,722,1674,720,-1,1006,1376,1163,-1,1006,1375,1376,-1,991,718,223,-1,718,991,990,-1,717,721,834,-1,716,721,717,-1,666,1663,664,-1,1663,666,1659,-1,686,1168,1179,-1,686,641,1168,-1,686,638,642,-1,686,685,638,-1,1622,1176,1655,-1,1622,1619,1176,-1,1598,1593,1597,-1,1593,1598,1592,-1,702,1070,1192,-1,1070,702,704,-1,1171,700,600,-1,1171,1175,700,-1,1048,582,1173,-1,598,582,1048,-1,1625,1610,1671,-1,1610,1625,1184,-1,659,1672,655,-1,659,1635,1672,-1,980,1670,1611,-1,980,1668,1670,-1,1666,1669,646,-1,1666,1665,1669,-1,692,1667,690,-1,692,1662,1667,-1,1659,1664,1663,-1,1659,1661,1664,-1,1660,814,816,-1,1656,814,1660,-1,602,1658,1655,-1,602,1657,1658,-1,1011,614,615,-1,668,614,1011,-1,609,815,814,-1,708,815,609,-1,707,1653,1654,-1,707,767,1653,-1,1651,758,760,-1,1651,1652,758,-1,1054,1650,1016,-1,1054,1648,1650,-1,1649,844,1647,-1,844,1649,845,-1,1640,829,1645,-1,829,1640,1637,-1,1896,1646,828,-1,1896,1634,1646,-1,630,711,713,-1,632,711,630,-1,626,1643,709,-1,628,1643,626,-1,1642,1589,1588,-1,1642,1644,1589,-1,627,1168,1169,-1,629,1168,627,-1,1604,1587,625,-1,1604,1605,1587,-1,1607,1590,1606,-1,1591,1590,1607,-1,672,699,713,-1,699,672,671,-1,1666,1012,690,-1,1666,1612,1012,-1,713,698,630,-1,713,699,698,-1,1641,1639,1134,-1,1637,1639,1641,-1,1640,1636,1638,-1,1635,1636,1640,-1,1179,684,686,-1,1179,689,684,-1,1633,1896,777,-1,1633,1629,1896,-1,682,1303,1369,-1,682,681,1303,-1,1884,680,682,-1,1884,1630,680,-1,1372,676,526,-1,1372,677,676,-1,679,678,832,-1,679,676,678,-1,1631,1896,1629,-1,1631,1634,1896,-1,1623,1630,1884,-1,1623,1628,1630,-1,1294,1626,1627,-1,1183,1626,1294,-1,1624,1395,1398,-1,1624,1582,1395,-1,981,647,644,-1,647,981,648,-1,671,673,675,-1,671,670,673,-1,667,1400,665,-1,1400,667,672,-1,1189,1403,1614,-1,1403,1189,1401,-1,1618,1405,1408,-1,1618,1615,1405,-1,1621,1407,695,-1,1621,1620,1407,-1,669,1619,661,-1,1176,1619,669,-1,1618,1622,1616,-1,1618,1620,1622,-1,1613,1615,1617,-1,1613,1614,1615,-1,670,1012,673,-1,1012,670,693,-1,661,1621,662,-1,661,1619,1621,-1,1611,981,980,-1,1611,1609,981,-1,655,656,659,-1,655,654,656,-1,1610,652,655,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getlhumrus_Geo_5_439_coordIndex_14()
		{
			int[] value = {1610,650,652,-1,1130,1190,1131,-1,1190,1130,1609,-1,656,1182,657,-1,656,982,1182,-1,1295,652,651,-1,652,1295,654,-1,1191,653,650,-1,1191,1070,653,-1,688,647,649,-1,688,1608,647,-1,646,1612,1666,-1,646,645,1612,-1,1181,1574,694,-1,1181,1595,1574,-1,1601,1606,1599,-1,1606,1601,1607,-1,1604,1603,1605,-1,1604,1193,1603,-1,1603,1600,1599,-1,1600,1603,1602,-1,1601,1597,1595,-1,1597,1601,1598,-1,1574,1594,1215,-1,1594,1574,1596,-1,703,1593,1592,-1,703,705,1593,-1,1578,635,1213,-1,635,1578,633,-1,1591,1588,1590,-1,1591,1178,1588,-1,626,629,627,-1,626,632,629,-1,625,1589,628,-1,1587,1589,625,-1,624,1365,1367,-1,624,623,1365,-1,1360,1584,1585,-1,1360,1575,1584,-1,619,616,620,-1,617,616,619,-1,615,608,618,-1,614,608,615,-1,1208,1213,1211,-1,1213,1208,1578,-1,1584,1397,1396,-1,1584,1583,1397,-1,1207,1581,1205,-1,1581,1207,1582,-1,1579,622,1580,-1,1579,623,622,-1,1368,525,1586,-1,525,1368,1370,-1,66,524,527,-1,524,66,1332,-1,1210,1577,1575,-1,1210,1212,1577,-1,605,503,1061,-1,605,475,503,-1,590,1038,591,-1,590,585,1038,-1,594,589,592,-1,589,594,593,-1,589,1572,590,-1,589,1573,1572,-1,585,1571,1038,-1,585,587,1571,-1,1219,1187,1154,-1,1219,1220,1187,-1,1549,75,545,-1,1549,1221,75,-1,987,47,577,-1,38,47,987,-1,1569,1568,1564,-1,1568,1569,1553,-1,1567,1228,1227,-1,1566,1228,1567,-1,1564,1565,1563,-1,1564,1568,1565,-1,1066,88,1550,-1,88,1066,1065,-1,571,575,572,-1,571,89,575,-1,1562,1560,1561,-1,1560,1562,1558,-1,1559,1555,1557,-1,1555,1559,1554,-1,988,557,559,-1,988,1556,557,-1,1549,544,1552,-1,1549,545,544,-1,1553,1566,1568,-1,1552,1566,1553,-1,1551,550,549,-1,90,550,1551,-1,552,1570,37,-1,552,1548,1570,-1,575,1546,738,-1,575,574,1546,-1,1226,1149,1547,-1,1226,989,1149,-1,808,1543,1545,-1,808,1128,1543,-1,1541,1544,1539,-1,1541,1542,1544,-1,1158,1540,1536,-1,1158,1538,1540,-1,1537,49,1159,-1,49,1537,1535,-1,1533,1828,1789,-1,1533,1530,1828,-1,1528,1532,1531,-1,1528,1527,1532,-1,1828,1524,1789,-1,1524,1828,1522,-1,1520,1523,1525,-1,1519,1523,1520,-1,1521,1516,1515,-1,1521,1518,1516,-1,1517,1338,59,-1,1517,1514,1338,-1,1509,1513,1512,-1,1509,1511,1513,-1,1506,1510,1504,-1,1510,1506,1508,-1,1507,1503,1505,-1,1507,1501,1503,-1,1698,1502,1142,-1,1698,1500,1502,-1,1498,1494,1493,-1,1498,1497,1494,-1,1495,1491,769,-1,1495,1492,1491,-1,1489,770,1490,-1,772,770,1489,-1,1488,762,773,-1,1488,1487,762,-1,1043,542,761,-1,542,1043,540,-1,536,1534,771,-1,536,538,1534,-1,52,1142,53,-1,52,1698,1142,-1,1586,524,1209,-1,1586,525,524,-1,1410,1209,1292,-1,1410,1586,1209,-1,970,319,968,-1,320,319,970,-1,522,72,523,-1,72,522,73,-1,506,510,509,-1,506,491,510,-1,513,1481,1231,-1,515,1481,513,-1,516,1478,1484,-1,516,514,1478,-1,479,1188,489,-1,479,478,1188,-1,1483,1486,1485,-1,1484,1486,1483,-1,1053,515,516,-1,1053,1052,515,-1,508,1230,1480,-1,508,509,1230,-1,1481,1052,1482,-1,1052,1481,515,-1,477,499,475,-1,477,496,499,-1,1478,495,497,-1,1478,1477,495,-1,1479,513,1476,-1,1479,514,513,-1,483,64,66,-1,485,64,483,-1,1220,64,485,-1,1220,481,64,-1,1477,479,495,-1,479,1477,480,-1,478,1155,1186,-1,478,480,1155,-1,1475,731,1218,-1,1475,1462,731,-1,972,482,1074,-1,482,972,531,-1,1474,1472,1469,-1,1472,1474,1473,-1,1471,111,871,-1,111,1471,1470,-1,112,1468,1465,-1,112,1467,1468,-1,887,469,1312,-1,469,887,470,-1,178,1466,175,-1,1466,178,110,-1,188,1464,471,-1,188,1353,1464,-1,885,1312,1264,-1,887,1312,885,-1,1429,175,1466,-1,175,1429,1311,-1,397,431,453,-1,397,1113,431,-1,171,1240,1244,-1,1240,171,172,-1,1268,1101,865,-1,1268,867,1101,-1,1448,473,457,-1,1448,420,473,-1,1347,418,1258,-1,1347,1348,418,-1,456,447,457,-1,456,445,447,-1,394,1461,1425,-1,1460,1461,394,-1,457,449,1448,-1,449,457,447,-1,1103,1107,860,-1,1103,1259,1107,-1,1458,1241,1457,-1,1241,1458,1240,-1,1255,1454,1248,-1,1255,443,1454,-1,445,450,447,-1,445,446,450,-1,1242,444,1250,-1,1242,442,444,-1,1456,395,1426,-1,1456,440,395,-1,439,1115,437,-1,439,1114,1115,-1,438,396,1427,-1,438,437,396,-1,1271,433,1272,-1,1271,94,433,-1,1897,163,1310,-1,163,1897,422,-1,1248,433,91,-1,433,1248,1454,-1,156,862,157,-1,862,156,861,-1,866,1106,864,-1,866,1105,1106,-1,170,1248,93,-1,170,1255,1248,-1,1349,460,419,-1,462,460,1349,-1,417,1451,1450,-1,1453,1451,417,-1,424,1452,1449,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getlhumrus_Geo_5_439_coordIndex_15()
		{
			int[] value = {424,423,1452,-1,1847,1270,1247,-1,1270,1847,393,-1,1448,1257,1256,-1,1257,1448,449,-1,1247,448,1847,-1,1247,1254,448,-1,419,1348,1349,-1,1348,419,418,-1,1442,403,1437,-1,1108,403,1442,-1,1266,389,388,-1,389,1266,1412,-1,1447,1445,888,-1,1447,1443,1445,-1,1446,413,1444,-1,1446,416,413,-1,387,857,1442,-1,854,857,387,-1,1439,856,1438,-1,1439,1440,856,-1,1420,1441,1419,-1,855,1441,1420,-1,405,1277,1438,-1,405,404,1277,-1,400,1437,403,-1,1439,1437,400,-1,402,1436,1106,-1,402,401,1436,-1,412,864,1102,-1,864,412,865,-1,878,875,874,-1,878,1098,875,-1,1433,1435,1431,-1,1434,1435,1433,-1,1429,1432,1428,-1,1430,1432,1429,-1,108,195,109,-1,194,195,108,-1,1427,107,435,-1,396,107,1427,-1,394,1426,395,-1,1425,1426,394,-1,1424,1249,1246,-1,1249,1424,1250,-1,442,430,1423,-1,430,442,1242,-1,1421,1096,353,-1,1421,1422,1096,-1,910,1422,849,-1,910,908,1422,-1,409,1110,1261,-1,409,392,1110,-1,352,409,381,-1,352,392,409,-1,386,376,378,-1,376,386,385,-1,354,1096,1095,-1,354,353,1096,-1,914,332,391,-1,337,332,914,-1,365,372,374,-1,372,365,370,-1,1455,372,371,-1,1455,373,372,-1,1253,375,373,-1,1253,1459,375,-1,907,1413,143,-1,906,1413,907,-1,1413,906,1326,-1,142,1416,1281,-1,142,144,1416,-1,199,366,200,-1,366,199,1308,-1,1358,1289,201,-1,1358,1356,1289,-1,363,367,365,-1,363,362,367,-1,922,1415,920,-1,922,338,1415,-1,934,925,932,-1,925,934,937,-1,1413,355,357,-1,1413,1326,355,-1,382,353,352,-1,1421,353,382,-1,1288,853,1412,-1,1288,1109,853,-1,348,358,1112,-1,348,349,358,-1,99,1287,349,-1,99,1261,1287,-1,927,338,330,-1,1415,338,927,-1,915,336,337,-1,915,1411,336,-1,927,336,929,-1,927,330,336,-1,1331,209,1306,-1,209,1331,328,-1,1410,977,1366,-1,1410,978,977,-1,320,71,319,-1,70,71,320,-1,695,1409,697,-1,695,1407,1409,-1,1408,1402,1406,-1,1408,1405,1402,-1,1401,1404,1403,-1,1404,1401,712,-1,672,710,1400,-1,710,672,713,-1,1397,1398,1395,-1,1399,1398,1397,-1,1206,1304,1396,-1,1206,974,1304,-1,1414,962,1391,-1,1414,1082,962,-1,313,303,302,-1,313,1084,303,-1,1082,1394,1378,-1,1082,1414,1394,-1,305,943,1393,-1,943,305,308,-1,1204,945,203,-1,1204,1201,945,-1,951,1077,1392,-1,949,1077,951,-1,960,964,966,-1,961,964,960,-1,220,310,958,-1,220,219,310,-1,312,956,946,-1,312,302,956,-1,1390,285,284,-1,298,285,1390,-1,296,1390,1029,-1,296,298,1390,-1,290,289,301,-1,289,290,287,-1,281,1388,621,-1,1388,281,282,-1,1387,1298,283,-1,1387,1385,1298,-1,1387,1893,1386,-1,1387,1892,1893,-1,1384,270,280,-1,1384,271,270,-1,279,269,277,-1,279,270,269,-1,1027,278,1299,-1,1027,277,278,-1,580,273,584,-1,580,274,273,-1,257,967,41,-1,1883,967,257,-1,1062,965,986,-1,965,1062,1383,-1,246,235,1080,-1,235,246,236,-1,254,963,1382,-1,963,254,256,-1,1024,255,254,-1,255,1024,947,-1,1046,1049,1381,-1,1049,1046,1025,-1,249,253,205,-1,252,253,249,-1,976,1882,1885,-1,1882,976,1379,-1,1380,1373,1364,-1,1380,975,1373,-1,1378,1083,1082,-1,1083,1378,1285,-1,311,218,1081,-1,311,219,218,-1,1883,318,967,-1,1079,318,1883,-1,1080,241,1081,-1,1080,235,241,-1,360,243,359,-1,360,242,243,-1,241,238,239,-1,241,240,238,-1,227,1890,228,-1,227,222,1890,-1,1376,990,1374,-1,1376,718,990,-1,1890,221,1375,-1,221,1890,222,-1,1083,963,962,-1,1083,1286,963,-1,1372,1303,677,-1,1372,1369,1303,-1,1371,1368,1365,-1,1370,1368,1371,-1,1364,977,1362,-1,977,1364,1373,-1,1363,215,1296,-1,215,1363,216,-1,1585,1361,1360,-1,1885,1361,1585,-1,214,211,116,-1,214,1307,211,-1,1093,1359,1091,-1,1093,919,1359,-1,1306,208,1090,-1,1306,209,208,-1,1092,931,1291,-1,931,1092,1307,-1,607,206,618,-1,607,207,206,-1,1357,201,83,-1,1358,201,1357,-1,1356,115,1289,-1,1356,1355,115,-1,1316,174,1313,-1,174,1316,1315,-1,196,175,1311,-1,196,176,175,-1,1354,105,193,-1,1354,106,105,-1,1352,106,1354,-1,1352,103,106,-1,187,103,1352,-1,187,101,103,-1,1351,186,1262,-1,1351,189,186,-1,1350,1262,1264,-1,1350,1351,1262,-1,184,1264,1312,-1,184,1350,1264,-1,173,182,1314,-1,185,182,173,-1,462,1313,461,-1,462,1316,1313,-1,1346,95,1318,-1,1346,1310,95,-1,1344,1310,1346,-1,1344,1897,1310,-1,1897,1343,1233,-1,1343,1897,1344,-1,181,1233,1343,-1,181,179,1233,-1,178,181,466,-1,181,178,177,-1,863,167,171,-1,863,1320,167,-1,170,1321,165,-1,93,1321,170,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getlhumrus_Geo_5_439_coordIndex_16()
		{
			int[] value = {155,159,151,-1,155,157,159,-1,139,102,350,-1,1324,102,139,-1,133,907,147,-1,133,132,907,-1,1323,135,897,-1,1323,136,135,-1,141,1112,358,-1,141,350,1112,-1,1342,898,899,-1,1342,1325,898,-1,1341,136,1340,-1,1341,137,136,-1,133,1339,134,-1,133,148,1339,-1,1322,131,1329,-1,131,1322,104,-1,125,123,122,-1,123,125,127,-1,117,952,118,-1,117,217,952,-1,78,39,42,-1,78,74,39,-1,55,1338,56,-1,1333,1338,55,-1,51,77,57,-1,51,543,77,-1,74,40,39,-1,74,76,40,-1,44,34,40,-1,44,35,34,-1,35,577,31,-1,35,987,577,-1,1337,18,20,-1,1337,26,18,-1,27,1336,28,-1,27,1002,1336,-1,22,1334,23,-1,22,1063,1334,-1,1064,1334,1063,-1,1064,1336,1334,-1,24,16,15,-1,24,21,16,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlhumrus_Geo_5_439_normalIndex_1()
		{
			int[] value = {1722,1772,1832,-1,1772,1724,1791,-1,1848,1836,1722,-1,1698,1578,1724,-1,1080,1104,942,-1,1569,1015,1174,-1,1335,1253,1516,-1,1647,1603,1352,-1,1529,1471,1542,-1,1529,1569,1471,-1,1529,1581,1569,-1,1581,1594,1569,-1,1447,1439,1601,-1,1601,1647,1447,-1,1174,1122,1121,-1,1296,1245,1354,-1,1304,1251,1296,-1,945,923,956,-1,1517,1552,1351,-1,1517,1351,1321,-1,1135,1251,1329,-1,849,1134,983,-1,923,812,956,-1,379,399,859,-1,511,442,269,-1,1407,1265,1298,-1,1265,977,1298,-1,442,1188,641,-1,641,1124,729,-1,641,1156,1124,-1,1028,1201,1332,-1,286,471,482,-1,286,586,471,-1,971,586,387,-1,387,440,971,-1,1534,1202,1564,-1,1534,1278,1202,-1,1282,1321,1124,-1,1879,1813,1895,-1,464,490,204,-1,1299,1468,1617,-1,1219,1438,1372,-1,1856,1844,1774,-1,1844,1856,1816,-1,1521,1336,1549,-1,1798,1576,1761,-1,1203,659,745,-1,359,656,599,-1,152,502,370,-1,424,453,299,-1,117,12,3,-1,884,965,1476,-1,1607,1547,1709,-1,1285,1356,1677,-1,1691,1799,1702,-1,212,452,307,-1,407,359,599,-1,46,49,142,-1,455,430,280,-1,1007,1137,1240,-1,1137,1483,1240,-1,75,66,93,-1,494,228,370,-1,56,64,49,-1,1294,1053,951,-1,1513,1197,1387,-1,1155,1522,1086,-1,1155,1486,1522,-1,1387,930,1194,-1,1387,1197,930,-1,1129,1177,1225,-1,1443,1129,1485,-1,1539,1480,1336,-1,1064,1089,1506,-1,1064,1506,1485,-1,1429,1480,1751,-1,1677,1828,1736,-1,544,715,896,-1,896,568,544,-1,1120,896,1151,-1,1120,913,896,-1,1875,1830,1855,-1,1875,1862,1830,-1,1543,1172,943,-1,1543,1654,1172,-1,435,396,412,-1,435,612,396,-1,709,396,510,-1,709,686,396,-1,1151,715,623,-1,1151,896,715,-1,1,26,29,-1,490,317,204,-1,84,35,34,-1,561,697,610,-1,1587,1773,1665,-1,857,554,884,-1,1476,1623,1531,-1,1531,884,1476,-1,503,863,874,-1,1768,1795,1577,-1,1897,1893,1779,-1,1658,1730,1659,-1,1891,1805,1857,-1,1710,1891,1715,-1,1791,1832,1772,-1,1479,1452,1593,-1,1818,1872,1833,-1,1652,1452,1618,-1,1767,1765,1818,-1,1835,1872,1865,-1,1776,1806,1752,-1,383,273,561,-1,273,450,561,-1,795,915,594,-1,915,670,594,-1,798,665,702,-1,1351,1354,1427,-1,1006,1206,1067,-1,1067,940,1006,-1,914,1067,1280,-1,914,1148,1001,-1,914,944,813,-1,914,663,747,-1,914,802,865,-1,1067,1206,1277,-1,1148,1280,1426,-1,1426,1355,1148,-1,813,944,703,-1,703,546,813,-1,581,747,663,-1,663,492,581,-1,802,658,734,-1,1290,915,1256,-1,465,341,326,-1,326,517,465,-1,237,419,276,-1,183,261,306,-1,251,222,214,-1,115,154,194,-1,326,194,154,-1,832,306,261,-1,129,189,214,-1,912,657,723,-1,238,312,298,-1,298,186,238,-1,1795,1769,1764,-1,1795,1744,1769,-1,867,927,912,-1,272,279,364,-1,342,450,273,-1,1154,808,971,-1,634,931,586,-1,1703,1834,1696,-1,1892,1777,1718,-1,1718,1895,1892,-1,1773,1838,1860,-1,1860,1665,1773,-1,1614,1568,1707,-1,583,460,651,-1,1707,1770,1614,-1,1707,1825,1770,-1,1236,1316,1614,-1,1316,1568,1614,-1,1664,1369,1619,-1,1668,1671,1862,-1,1671,1749,1862,-1,1509,1666,1749,-1,1651,1576,1507,-1,1483,1137,1093,-1,1668,1392,1671,-1,1369,1509,1619,-1,1666,1509,1576,-1,1050,1136,1016,-1,10,51,11,-1,1483,1508,1240,-1,1669,1479,1687,-1,230,118,291,-1,230,113,118,-1,363,29,236,-1,363,76,29,-1,651,1141,961,-1,578,786,643,-1,578,583,786,-1,828,438,643,-1,828,538,438,-1,1847,1714,1719,-1,1843,1819,1714,-1,1149,1472,1050,-1,1149,1510,1472,-1,1759,1849,1747,-1,1802,1787,1780,-1,1701,1707,1568,-1,1701,1745,1707,-1,1050,1240,1217,-1,1008,542,721,-1,152,260,502,-1,1755,1597,1760,-1,1789,1712,1688,-1,1789,1781,1712,-1,1817,1845,1859,-1,1268,1664,1532,-1,1532,1248,1268,-1,885,1053,1030,-1,841,885,1030,-1,805,526,587,-1,805,748,526,-1,1576,1798,1666,-1,1268,1369,1664,-1,1787,1802,1817,-1,773,987,1072,-1,684,952,1160,-1,1129,1336,1177,-1,368,431,351,-1,1485,1129,1064,-1,1602,1634,1740,-1,1881,1858,1739,-1,1064,1225,1160,-1,952,1064,1160,-1,1861,1881,1739,-1,1816,1856,1854,-1,146,116,152,-1,146,147,116,-1,325,155,151,-1,592,1031,721,-1,1565,1583,1208,-1,282,151,295,-1,476,840,757,-1,476,539,840,-1,1142,1053,885,-1,1266,1720,1484,-1,1266,1421,1720,-1,1336,1521,1177,-1,240,447,762,-1,1640,1340,1723,-1,1340,1512,1723,-1,635,881,758,-1,635,822,881,-1,1716,1809,1837,-1,1837,1782,1716,-1,943,712,1242,-1,1242,1543,943,-1,762,552,1000,-1,758,453,635,-1,905,1279,1222,-1,1382,1181,1231,-1,810,970,1028,-1,1642,1706,1502,-1,894,1114,1083,-1,1114,1127,1214,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlhumrus_Geo_5_439_normalIndex_2()
		{
			int[] value = {346,428,337,-1,498,428,346,-1,1090,1159,1284,-1,1090,1043,1159,-1,1032,1159,1023,-1,1159,1043,1023,-1,675,173,514,-1,1083,1114,1214,-1,308,405,337,-1,498,445,572,-1,531,445,466,-1,531,572,445,-1,499,405,567,-1,405,441,567,-1,999,1168,1192,-1,1168,1361,1192,-1,947,819,471,-1,267,520,487,-1,428,267,487,-1,281,354,267,-1,1276,1081,1289,-1,1289,1559,1276,-1,947,1161,949,-1,1201,970,988,-1,949,1161,988,-1,854,819,988,-1,387,365,354,-1,387,286,365,-1,1298,1282,1407,-1,1307,1449,1398,-1,1234,1301,1395,-1,1234,1166,1301,-1,557,624,708,-1,648,369,565,-1,506,449,646,-1,849,812,985,-1,985,1117,849,-1,1287,935,923,-1,1117,1372,1346,-1,1794,1732,1808,-1,1731,1670,1624,-1,1800,1826,1882,-1,1886,1848,1882,-1,1670,1731,1756,-1,1169,1147,1511,-1,1599,1636,1757,-1,1548,1545,1649,-1,1438,1293,1406,-1,983,1390,1074,-1,1074,1390,1344,-1,1599,1633,1390,-1,1642,1332,1559,-1,1463,1662,1667,-1,1674,1463,1477,-1,672,533,395,-1,672,826,533,-1,1353,1025,964,-1,964,1347,1353,-1,1674,1535,1566,-1,1315,1550,1648,-1,1656,1463,1667,-1,1555,1393,1257,-1,1343,1558,1445,-1,905,807,1279,-1,380,693,678,-1,1270,1533,1047,-1,1161,947,1349,-1,650,678,862,-1,879,936,1013,-1,879,790,936,-1,1223,1085,1290,-1,1290,1489,1223,-1,391,382,329,-1,188,398,158,-1,188,402,398,-1,195,560,318,-1,195,433,560,-1,418,231,220,-1,418,423,231,-1,165,104,169,-1,134,87,85,-1,134,62,87,-1,893,1024,1109,-1,948,742,443,-1,401,219,310,-1,401,315,219,-1,310,376,536,-1,417,345,530,-1,530,605,417,-1,689,963,901,-1,689,801,963,-1,1095,992,1167,-1,1095,1042,992,-1,963,801,974,-1,974,1125,963,-1,1042,1207,972,-1,972,921,1042,-1,1246,1226,895,-1,1052,911,1033,-1,1052,1559,1289,-1,1052,1557,1559,-1,1547,1706,1709,-1,224,234,355,-1,1083,615,173,-1,148,143,107,-1,456,688,253,-1,1179,1130,1068,-1,1179,1271,1130,-1,231,202,220,-1,845,423,558,-1,845,676,423,-1,664,797,895,-1,1247,1150,1393,-1,483,235,300,-1,483,439,235,-1,165,134,85,-1,85,104,165,-1,746,1099,1131,-1,667,856,799,-1,667,784,856,-1,856,843,799,-1,876,1047,297,-1,254,96,746,-1,1885,1897,1779,-1,410,803,296,-1,410,844,803,-1,624,557,588,-1,588,591,624,-1,624,563,743,-1,624,591,563,-1,1661,1323,1648,-1,1732,1794,1711,-1,1757,1801,1633,-1,738,953,468,-1,468,953,770,-1,770,441,468,-1,268,859,977,-1,977,691,268,-1,1612,1362,1617,-1,851,873,980,-1,964,860,960,-1,765,888,449,-1,449,262,765,-1,888,984,449,-1,984,646,449,-1,1055,1269,872,-1,1269,991,872,-1,1365,1212,1259,-1,1029,1212,1045,-1,1029,1121,1212,-1,78,537,164,-1,78,495,537,-1,1307,1045,1212,-1,1212,1449,1307,-1,763,942,1307,-1,1307,996,763,-1,1562,1404,1556,-1,1404,1422,1556,-1,718,241,164,-1,164,537,718,-1,870,886,1165,-1,886,1234,1165,-1,1166,904,924,-1,924,1398,1166,-1,1147,910,1015,-1,720,861,1174,-1,173,161,86,-1,86,58,173,-1,16,63,18,-1,18,6,16,-1,108,138,21,-1,40,9,4,-1,241,746,96,-1,877,521,393,-1,24,81,68,-1,794,713,627,-1,1836,1754,1786,-1,1836,1803,1754,-1,831,420,891,-1,1328,1322,1264,-1,340,262,449,-1,449,506,340,-1,1200,1462,1263,-1,1263,960,1200,-1,1047,1131,1270,-1,1400,1620,1533,-1,1272,1158,1145,-1,1894,1874,1848,-1,1318,1325,1139,-1,1318,1371,1325,-1,681,1126,1275,-1,681,521,1126,-1,1281,1126,877,-1,1281,1401,1126,-1,63,361,304,-1,304,18,63,-1,174,219,232,-1,219,315,232,-1,1090,1181,1127,-1,1607,1527,1214,-1,727,296,803,-1,727,246,296,-1,1281,1250,1453,-1,39,6,17,-1,39,80,6,-1,156,21,4,-1,156,90,21,-1,148,253,443,-1,443,239,148,-1,83,388,454,-1,83,71,388,-1,1513,1638,1736,-1,494,656,359,-1,472,407,599,-1,370,656,494,-1,709,502,623,-1,1160,552,684,-1,1714,1819,1713,-1,1883,1859,1845,-1,1883,1870,1859,-1,1567,1740,1733,-1,1749,1830,1862,-1,1750,1780,1740,-1,1750,1802,1780,-1,1873,1819,1883,-1,1883,1878,1873,-1,1799,1797,1728,-1,1799,1728,1702,-1,1668,1862,1677,-1,1799,1727,1721,-1,1727,1610,1522,-1,1101,930,1086,-1,1101,1194,930,-1,1294,1383,1053,-1,755,941,1302,-1,1421,1627,1720,-1,351,350,278,-1,880,625,758,-1,277,275,350,-1,274,144,185,-1,217,226,350,-1,223,112,217,-1,223,133,112,-1,284,223,350,-1,429,353,350,-1,1686,1645,1771,-1,1686,1497,1645,-1,580,350,547,-1,1496,1697,1645,-1,1645,1415,1496,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlhumrus_Geo_5_439_normalIndex_3()
		{
			int[] value = {1697,1560,1716,-1,1716,1782,1697,-1,463,350,409,-1,774,642,1007,-1,774,473,642,-1,1821,1665,1860,-1,1821,1591,1665,-1,1213,989,1173,-1,1213,1112,989,-1,37,43,46,-1,1498,1701,1541,-1,1498,1700,1701,-1,1665,1066,1587,-1,1665,1173,1066,-1,651,989,1141,-1,118,8,76,-1,118,54,8,-1,1839,1871,1825,-1,1839,1890,1871,-1,1838,1888,1860,-1,759,460,631,-1,759,651,460,-1,76,8,29,-1,307,616,285,-1,307,781,616,-1,1896,1884,1892,-1,285,696,348,-1,285,616,696,-1,1644,1813,1683,-1,1644,1784,1813,-1,1895,1868,1896,-1,1531,1718,1561,-1,1295,1734,1488,-1,1295,1683,1734,-1,1879,1895,1792,-1,167,12,117,-1,744,1061,381,-1,1061,556,381,-1,1846,1879,1834,-1,723,556,825,-1,1703,1846,1834,-1,132,28,32,-1,665,867,760,-1,665,741,867,-1,1632,1467,1693,-1,1467,1596,1693,-1,863,1423,874,-1,863,1176,1423,-1,264,319,657,-1,912,723,777,-1,1769,1850,1764,-1,1589,1680,1609,-1,1696,1609,1680,-1,1696,1625,1609,-1,450,342,594,-1,702,815,1004,-1,1551,1461,1546,-1,1551,1427,1461,-1,1321,1351,1405,-1,808,1154,981,-1,970,810,918,-1,931,947,586,-1,937,1232,931,-1,854,1021,752,-1,258,336,252,-1,258,329,336,-1,853,1115,981,-1,197,148,239,-1,902,804,1109,-1,804,893,1109,-1,302,259,169,-1,553,364,331,-1,1857,1776,1715,-1,1808,1826,1800,-1,440,281,729,-1,1245,1074,1344,-1,1245,1384,1354,-1,1296,1351,1304,-1,1329,1287,1135,-1,956,1037,1135,-1,269,281,428,-1,1536,1505,1325,-1,1536,1624,1505,-1,1832,1864,1741,-1,1599,1346,1514,-1,1729,1633,1738,-1,1882,1848,1763,-1,1836,1829,1803,-1,411,875,832,-1,1698,1724,1786,-1,1542,1253,1529,-1,1448,1516,1253,-1,1542,1381,1253,-1,1791,1724,1685,-1,1437,1439,1538,-1,1538,1523,1437,-1,768,1352,743,-1,1692,1616,1705,-1,1450,1403,1658,-1,1658,1659,1450,-1,1013,1223,1257,-1,1257,1150,1003,-1,1257,1393,1150,-1,558,423,418,-1,1309,1271,1179,-1,39,19,22,-1,39,17,19,-1,156,9,171,-1,156,4,9,-1,40,467,48,-1,1047,410,297,-1,1365,1449,1212,-1,1365,1301,1449,-1,1584,1573,1605,-1,1584,1504,1573,-1,519,371,640,-1,927,926,990,-1,1223,1489,1555,-1,1674,1662,1463,-1,589,326,316,-1,411,261,160,-1,411,832,261,-1,695,837,731,-1,237,303,419,-1,1482,1519,1315,-1,276,419,448,-1,357,276,448,-1,357,251,276,-1,964,630,593,-1,1620,1674,1482,-1,316,326,154,-1,1571,1648,1550,-1,835,1047,1482,-1,563,419,743,-1,419,768,743,-1,588,557,644,-1,557,620,644,-1,261,129,115,-1,1674,1370,1535,-1,1555,1489,1463,-1,995,1256,915,-1,915,922,995,-1,1290,1079,915,-1,1555,1679,1393,-1,780,867,741,-1,1326,1111,1205,-1,1205,1394,1326,-1,1533,1270,1400,-1,718,746,241,-1,454,138,108,-1,454,666,138,-1,797,972,895,-1,689,901,558,-1,1013,1003,879,-1,1013,1257,1003,-1,915,1079,827,-1,827,670,915,-1,1806,1776,1805,-1,1659,1730,1705,-1,1685,1663,1791,-1,1685,1724,1578,-1,1523,1663,1685,-1,1448,1253,1381,-1,1335,1516,1578,-1,1832,1741,1722,-1,1147,1169,910,-1,1169,997,910,-1,1848,1869,1894,-1,1682,1763,1848,-1,1882,1738,1800,-1,1729,1779,1893,-1,58,192,320,-1,320,173,58,-1,729,442,641,-1,1287,945,1135,-1,1037,1251,1135,-1,1202,1287,1564,-1,1354,1351,1296,-1,1384,1245,1344,-1,1344,1492,1384,-1,1134,1346,1390,-1,1503,1104,1595,-1,1503,1029,1104,-1,1138,939,973,-1,1715,1776,1344,-1,364,377,272,-1,548,553,331,-1,232,425,300,-1,232,315,425,-1,165,206,130,-1,173,711,894,-1,738,428,487,-1,937,931,634,-1,970,918,959,-1,752,365,461,-1,947,471,586,-1,1201,1028,970,-1,1405,971,1321,-1,1405,1154,971,-1,1051,1379,1186,-1,1051,1220,1379,-1,1768,1743,1758,-1,815,1274,1334,-1,795,342,728,-1,795,594,342,-1,1693,1625,1696,-1,1693,1596,1625,-1,1703,1696,1680,-1,1680,1850,1703,-1,1680,1764,1850,-1,657,319,723,-1,1423,1467,1632,-1,1423,1176,1467,-1,1764,1680,1589,-1,149,132,186,-1,149,28,132,-1,1696,1834,1693,-1,1834,1742,1693,-1,1850,1846,1703,-1,319,167,556,-1,12,28,204,-1,28,149,204,-1,366,335,965,-1,335,874,965,-1,1792,1742,1879,-1,1742,1834,1879,-1,464,204,366,-1,1718,1531,1792,-1,51,285,73,-1,51,307,285,-1,1635,968,1424,-1,1635,1102,968,-1,460,578,236,-1,460,583,578,-1,961,583,651,-1,961,786,583,-1,1316,1541,1568,-1,1541,1701,1568,-1,113,54,118,-1,113,93,54,-1,1100,774,1082,-1,1082,1164,1100,-1,1007,1082,774,-1,351,409,350,-1,1640,1716,1560,-1,1560,1337,1640,-1,463,547,350,-1,1697,1771,1645,-1,1697,1782,1771,-1,580,587,350,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlhumrus_Geo_5_439_normalIndex_4()
		{
			int[] value = {1798,1749,1666,-1,429,350,526,-1,284,350,353,-1,223,217,350,-1,226,217,112,-1,112,122,226,-1,274,350,226,-1,453,424,635,-1,1170,1182,1302,-1,1302,1410,1170,-1,885,841,685,-1,1638,1513,1387,-1,1721,1486,1465,-1,1721,1727,1486,-1,1650,1688,1391,-1,1688,1419,1391,-1,1708,1781,1790,-1,1708,1712,1781,-1,1194,1677,1638,-1,1668,1677,1356,-1,1634,1702,1728,-1,1634,1750,1740,-1,1392,1608,1671,-1,1327,1217,1240,-1,1203,1654,1673,-1,1203,1172,1654,-1,1651,1494,1673,-1,1877,1861,1739,-1,240,762,123,-1,509,1151,325,-1,623,260,325,-1,228,99,370,-1,659,1203,1093,-1,1656,1679,1555,-1,1099,746,718,-1,134,165,130,-1,727,1491,829,-1,727,1418,1491,-1,328,737,393,-1,737,877,393,-1,1319,1376,1528,-1,1047,1533,1482,-1,1550,1315,1519,-1,1043,1090,1127,-1,1519,1482,1674,-1,521,877,1126,-1,63,86,361,-1,1886,1826,1869,-1,1533,1620,1482,-1,964,1263,1347,-1,964,960,1263,-1,1851,1848,1874,-1,617,654,496,-1,496,555,617,-1,239,352,197,-1,352,321,197,-1,1786,1724,1836,-1,454,108,83,-1,1869,1848,1886,-1,96,164,241,-1,96,70,164,-1,23,65,71,-1,18,17,6,-1,16,86,63,-1,16,58,86,-1,735,779,938,-1,938,903,735,-1,720,1174,1015,-1,910,720,1015,-1,910,830,720,-1,766,938,779,-1,766,958,938,-1,442,847,1188,-1,164,36,78,-1,164,70,36,-1,1045,942,1104,-1,1045,1307,942,-1,467,138,666,-1,467,40,138,-1,1324,575,673,-1,673,1408,1324,-1,1029,1045,1104,-1,740,860,964,-1,1468,1544,1653,-1,645,769,873,-1,1265,691,977,-1,1265,1457,691,-1,308,738,468,-1,1267,1409,1255,-1,531,608,572,-1,268,245,314,-1,268,190,245,-1,1468,1653,1617,-1,1711,1794,1735,-1,1015,1594,1147,-1,1015,1569,1594,-1,743,1603,1034,-1,743,1352,1603,-1,1694,1616,1692,-1,1694,1582,1616,-1,1447,1538,1439,-1,1447,1582,1538,-1,791,588,730,-1,791,591,588,-1,1131,1047,876,-1,1511,1594,1681,-1,1511,1147,1594,-1,254,297,296,-1,297,410,296,-1,1131,876,746,-1,89,62,72,-1,89,87,62,-1,174,165,168,-1,1490,1725,1558,-1,1490,1695,1725,-1,553,439,483,-1,553,548,439,-1,676,394,423,-1,1247,1311,1227,-1,394,577,293,-1,136,318,456,-1,456,253,136,-1,181,127,202,-1,202,231,181,-1,253,688,443,-1,311,302,169,-1,378,377,504,-1,615,233,173,-1,331,364,279,-1,1547,1446,1500,-1,1557,1642,1559,-1,1547,1607,1303,-1,1167,992,1014,-1,1042,1095,1130,-1,345,327,530,-1,377,491,504,-1,364,512,377,-1,87,107,85,-1,14,62,52,-1,548,331,360,-1,191,102,110,-1,104,143,169,-1,206,165,174,-1,380,125,347,-1,50,135,77,-1,50,61,135,-1,664,318,560,-1,664,456,318,-1,689,558,418,-1,332,391,329,-1,283,301,258,-1,678,367,380,-1,827,936,697,-1,936,790,697,-1,1290,1085,1079,-1,1218,1349,947,-1,650,801,689,-1,120,125,177,-1,220,166,216,-1,220,157,166,-1,693,790,678,-1,1223,1555,1257,-1,157,220,211,-1,320,514,173,-1,1725,1674,1620,-1,1620,1400,1445,-1,1463,1656,1555,-1,1648,1323,1315,-1,1482,1315,835,-1,395,533,518,-1,518,305,395,-1,154,115,129,-1,1674,1477,1370,-1,1662,1695,1667,-1,859,399,648,-1,957,738,520,-1,738,487,520,-1,1128,810,1190,-1,1128,918,810,-1,354,520,267,-1,1633,1599,1757,-1,1346,1599,1390,-1,1287,1202,976,-1,1548,1372,1438,-1,1514,1649,1636,-1,1514,1548,1649,-1,1636,1599,1514,-1,1237,1511,1586,-1,1237,1169,1511,-1,1653,1670,1732,-1,1612,1617,1711,-1,1826,1886,1882,-1,1732,1670,1756,-1,1711,1735,1612,-1,935,1287,976,-1,849,1117,1346,-1,1346,1134,849,-1,1299,1056,1108,-1,1108,1468,1299,-1,1325,1505,1187,-1,399,458,469,-1,648,399,369,-1,399,469,369,-1,1278,565,1202,-1,1278,648,565,-1,1398,1449,1301,-1,1301,1166,1398,-1,729,281,269,-1,1806,1805,1730,-1,819,949,988,-1,1161,1201,988,-1,988,970,854,-1,267,428,281,-1,819,947,949,-1,752,461,854,-1,466,499,736,-1,736,607,466,-1,498,346,445,-1,405,346,337,-1,405,499,346,-1,738,308,337,-1,675,514,905,-1,905,1032,675,-1,736,567,749,-1,567,618,749,-1,499,567,736,-1,173,675,711,-1,511,269,428,-1,729,269,442,-1,738,337,428,-1,173,894,1083,-1,275,278,350,-1,1000,1224,1120,-1,274,277,350,-1,124,199,185,-1,199,247,185,-1,623,325,1151,-1,1640,1809,1716,-1,1640,1723,1809,-1,424,822,635,-1,424,568,822,-1,221,421,159,-1,421,435,159,-1,1726,1751,1876,-1,1720,1739,1484,-1,1598,1520,1858,-1,1520,1739,1858,-1,1876,1751,1844,-1,552,762,447,-1,1374,1526,1053,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlhumrus_Geo_5_439_normalIndex_5()
		{
			int[] value = {1526,1030,1053,-1,1198,721,1031,-1,1208,1583,1238,-1,152,370,146,-1,1520,1484,1739,-1,762,509,123,-1,1788,1856,1774,-1,1193,1073,1208,-1,1031,969,1065,-1,1031,925,969,-1,1238,1583,1096,-1,1553,950,967,-1,1553,1089,950,-1,880,900,625,-1,1160,1000,552,-1,1740,1567,1602,-1,1634,1602,1356,-1,1356,1702,1634,-1,1363,1465,885,-1,1465,1142,885,-1,1388,1182,1213,-1,1225,1064,1129,-1,1089,1553,1506,-1,1077,1369,1268,-1,1699,1530,1686,-1,1686,1778,1699,-1,350,587,526,-1,1302,941,1410,-1,1248,1077,1268,-1,1766,1775,1841,-1,1775,1787,1841,-1,1755,1637,1597,-1,1755,1760,1877,-1,1760,1887,1877,-1,1273,1008,721,-1,1861,1804,1881,-1,1804,1863,1881,-1,1700,1745,1701,-1,1700,1785,1745,-1,1009,816,674,-1,1841,1859,1870,-1,1817,1802,1812,-1,1149,1515,1510,-1,1016,1082,1240,-1,1819,1843,1883,-1,1317,961,1141,-1,1317,1178,961,-1,98,370,99,-1,363,438,291,-1,1061,1657,1235,-1,1061,1575,1657,-1,1629,1348,1334,-1,1082,1007,1240,-1,1508,1507,1240,-1,51,29,8,-1,8,11,51,-1,1050,1016,1240,-1,1847,1843,1714,-1,1775,1766,1664,-1,1766,1532,1664,-1,1567,1608,1392,-1,1567,1733,1608,-1,1567,1392,1668,-1,632,1077,1507,-1,1077,1327,1507,-1,1509,1749,1619,-1,1749,1671,1619,-1,1327,1240,1507,-1,1828,1677,1862,-1,1619,1678,1664,-1,204,317,12,-1,317,44,12,-1,236,578,363,-1,1896,1892,1895,-1,1777,1737,1600,-1,1718,1792,1895,-1,319,556,723,-1,931,1232,1191,-1,273,61,140,-1,273,135,61,-1,338,279,272,-1,169,168,165,-1,259,376,213,-1,657,342,264,-1,298,475,503,-1,298,312,475,-1,768,419,303,-1,728,342,657,-1,518,316,305,-1,518,589,316,-1,222,129,214,-1,222,154,129,-1,189,261,183,-1,189,129,261,-1,832,768,306,-1,519,875,459,-1,371,519,341,-1,459,875,411,-1,306,768,303,-1,160,261,115,-1,371,551,640,-1,326,589,500,-1,326,500,517,-1,663,813,546,-1,546,492,663,-1,944,929,703,-1,1196,1001,1148,-1,1148,1355,1196,-1,1426,1280,1277,-1,1280,1067,1277,-1,914,865,940,-1,914,747,802,-1,914,813,663,-1,914,1001,944,-1,914,1280,1148,-1,914,940,1067,-1,1479,1470,1348,-1,1348,1452,1479,-1,915,795,990,-1,1767,1818,1833,-1,1687,1479,1593,-1,1835,1833,1872,-1,1652,1593,1452,-1,1805,1776,1857,-1,1715,1390,1710,-1,1659,1705,1616,-1,1857,1715,1891,-1,540,615,911,-1,208,258,252,-1,1344,1390,1715,-1,163,347,125,-1,163,383,347,-1,1635,1737,1783,-1,1561,1297,1531,-1,759,1066,1173,-1,273,140,342,-1,248,446,236,-1,44,3,12,-1,1521,1455,1225,-1,1225,1177,1521,-1,686,549,396,-1,549,412,396,-1,612,510,396,-1,612,656,510,-1,1837,1875,1823,-1,1875,1855,1823,-1,1723,1748,1809,-1,1748,1827,1809,-1,1549,1592,1615,-1,1615,1525,1549,-1,1432,1521,1549,-1,1549,1525,1432,-1,1494,1093,1203,-1,1677,1736,1638,-1,1244,1513,1431,-1,1539,1336,1443,-1,1751,1704,1774,-1,1704,1480,1539,-1,1336,1129,1443,-1,1480,1704,1751,-1,951,1244,1294,-1,1387,1194,1638,-1,1522,1486,1727,-1,1513,1244,1197,-1,1736,1592,1513,-1,473,774,455,-1,228,494,359,-1,359,175,228,-1,719,774,1100,-1,662,642,385,-1,25,37,74,-1,97,175,196,-1,25,74,88,-1,88,10,25,-1,659,472,745,-1,10,88,51,-1,1547,1500,1706,-1,28,12,34,-1,453,758,625,-1,260,623,502,-1,656,370,510,-1,472,599,745,-1,1673,1494,1203,-1,1749,1798,1830,-1,1000,1120,762,-1,1751,1774,1844,-1,1777,1884,1840,-1,1777,1892,1884,-1,1299,1617,1362,-1,1670,1653,1544,-1,1846,1734,1879,-1,1298,1278,1534,-1,1534,1282,1298,-1,729,971,440,-1,387,586,286,-1,482,471,819,-1,1332,1201,1339,-1,1282,1124,1425,-1,1425,1407,1282,-1,1156,1425,1124,-1,641,1188,1156,-1,1298,977,859,-1,1135,945,956,-1,812,849,983,-1,983,956,812,-1,983,1134,1390,-1,1304,1351,1552,-1,1287,923,945,-1,1296,1074,1245,-1,1471,1569,1174,-1,1580,1381,1542,-1,1603,1601,1563,-1,1603,1647,1601,-1,1034,624,743,-1,1174,1121,1471,-1,1578,1516,1685,-1,1741,1779,1682,-1,1763,1738,1882,-1,1722,1724,1772,-1,1836,1724,1722,-1,1738,1779,1729,-1,1763,1779,1738,-1,1682,1779,1763,-1,1595,1601,1606,-1,1563,1601,1595,-1,1437,1580,1606,-1,1437,1381,1580,-1,1458,768,1450,-1,768,1458,1352,-1,1425,1188,1474,-1,1156,1188,1425,-1,1557,1706,1642,-1,1557,1709,1706,-1,64,196,162,-1,64,97,196,-1,37,142,74,-1,37,46,142,-1,212,404,452,-1,212,205,404,-1,309,455,280,-1,473,455,309,-1,472,662,385,-1,659,662,472,-1,309,142,162,-1,309,280,142,-1,43,75,56,-1,43,66,75,-1,472,196,407,-1,196,472,385,-1,1197,951,930,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlhumrus_Geo_5_439_normalIndex_6()
		{
			int[] value = {951,1197,1244,-1,1485,1539,1443,-1,1704,1539,1485,-1,1431,1336,1480,-1,1431,1513,1336,-1,1294,1431,1383,-1,1294,1244,1431,-1,822,1019,881,-1,822,913,1019,-1,881,1189,1026,-1,881,1019,1189,-1,1288,1026,1189,-1,1026,1288,1106,-1,1106,1432,1209,-1,1106,1288,1432,-1,1209,1525,1292,-1,1209,1432,1525,-1,1615,1292,1525,-1,1292,1615,1512,-1,1828,1748,1736,-1,1748,1828,1827,-1,1827,1837,1809,-1,1875,1837,1827,-1,1814,1830,1798,-1,1855,1830,1814,-1,1753,1798,1761,-1,1814,1798,1753,-1,1761,1654,1753,-1,1761,1673,1654,-1,943,811,562,-1,943,1172,811,-1,562,639,421,-1,562,811,639,-1,421,612,435,-1,421,639,612,-1,709,715,686,-1,623,715,709,-1,0,26,1,-1,41,26,0,-1,248,488,446,-1,248,292,488,-1,84,61,35,-1,84,140,61,-1,1424,1737,1635,-1,1600,1737,1424,-1,759,1102,1066,-1,1102,759,631,-1,968,554,857,-1,968,598,554,-1,857,1424,968,-1,857,1297,1424,-1,82,163,125,-1,79,163,82,-1,79,135,163,-1,79,77,135,-1,1354,1461,1427,-1,1354,1384,1461,-1,475,868,906,-1,475,462,868,-1,489,775,470,-1,489,823,775,-1,516,878,481,-1,516,919,878,-1,474,775,853,-1,474,470,775,-1,1824,1832,1791,-1,1832,1824,1864,-1,1807,1885,1822,-1,1885,1807,1897,-1,1479,1613,1470,-1,1669,1613,1479,-1,1618,1348,1629,-1,1618,1452,1348,-1,1220,981,1154,-1,1051,981,1220,-1,1744,1629,1631,-1,1629,1744,1758,-1,981,868,853,-1,868,981,1051,-1,263,336,333,-1,263,252,336,-1,990,922,915,-1,926,922,990,-1,753,741,640,-1,741,753,780,-1,1348,1069,1004,-1,1348,1470,1069,-1,1833,1652,1767,-1,1833,1593,1652,-1,1835,1593,1833,-1,1593,1835,1687,-1,1743,1492,1752,-1,1518,1492,1743,-1,1426,1370,1477,-1,1426,1277,1370,-1,492,517,500,-1,492,546,517,-1,929,1001,1196,-1,929,944,1001,-1,940,838,1006,-1,940,865,838,-1,753,995,922,-1,753,792,995,-1,1018,792,706,-1,1018,995,792,-1,1300,1463,1489,-1,1283,1463,1300,-1,303,183,306,-1,237,183,303,-1,251,189,276,-1,251,214,189,-1,243,411,160,-1,243,459,411,-1,519,243,341,-1,243,519,459,-1,222,316,154,-1,305,316,222,-1,518,581,589,-1,581,518,658,-1,926,867,780,-1,926,927,867,-1,850,760,777,-1,760,850,815,-1,1589,1546,1577,-1,1609,1546,1589,-1,1625,1537,1551,-1,1596,1537,1625,-1,1379,1176,1186,-1,1176,1379,1467,-1,121,32,50,-1,32,121,132,-1,1186,863,906,-1,863,1186,1176,-1,1769,1631,1641,-1,1769,1744,1631,-1,342,84,264,-1,84,342,140,-1,259,168,169,-1,168,259,213,-1,287,244,257,-1,287,283,244,-1,294,279,338,-1,279,294,266,-1,272,378,338,-1,377,378,272,-1,784,883,856,-1,784,899,883,-1,754,907,761,-1,754,908,907,-1,778,920,909,-1,782,920,778,-1,1191,1115,1017,-1,1191,1232,1115,-1,610,383,561,-1,347,383,610,-1,1840,1737,1777,-1,1737,1840,1783,-1,1770,1868,1784,-1,1866,1868,1770,-1,1369,1576,1509,-1,1369,1077,1576,-1,1515,1747,1510,-1,1515,1759,1747,-1,1762,1664,1678,-1,1664,1762,1775,-1,1766,1515,1532,-1,1766,1759,1515,-1,1847,1883,1843,-1,1883,1847,1870,-1,54,11,8,-1,45,11,54,-1,1007,662,1137,-1,1007,642,662,-1,1312,1657,1641,-1,1235,1657,1312,-1,1061,1488,1575,-1,744,1488,1061,-1,616,1295,696,-1,616,1260,1295,-1,1236,816,1316,-1,816,1236,781,-1,248,41,292,-1,248,26,41,-1,98,146,370,-1,98,100,146,-1,66,54,93,-1,45,54,66,-1,56,98,99,-1,98,56,75,-1,113,200,103,-1,200,113,230,-1,1266,1317,1421,-1,1178,1317,1266,-1,1889,1839,1853,-1,1889,1890,1839,-1,1719,1510,1747,-1,1719,1472,1510,-1,1817,1841,1787,-1,1817,1859,1841,-1,1870,1849,1841,-1,1849,1870,1847,-1,1009,719,1100,-1,1009,674,719,-1,1481,1713,1487,-1,1713,1481,1714,-1,1487,1100,1164,-1,1487,1498,1100,-1,1881,1831,1858,-1,1881,1863,1831,-1,1520,1073,1070,-1,1073,1520,1598,-1,1198,1273,721,-1,1273,1198,1193,-1,265,116,242,-1,126,116,265,-1,229,549,289,-1,229,412,549,-1,105,15,59,-1,67,15,105,-1,94,122,57,-1,144,122,94,-1,1877,1804,1861,-1,1877,1887,1804,-1,941,1597,1637,-1,941,841,1597,-1,1416,755,1419,-1,1416,685,755,-1,1815,1852,1812,-1,1852,1815,1842,-1,1880,1873,1878,-1,1880,1898,1873,-1,1812,1811,1815,-1,1802,1811,1812,-1,1728,1750,1634,-1,1728,1797,1750,-1,1258,1087,1331,-1,1258,1012,1087,-1,1342,1686,1530,-1,1686,1342,1497,-1,967,840,1096,-1,967,757,840,-1,684,950,952,-1,684,705,950,-1,611,621,852,-1,611,480,621,-1,1072,1039,773,-1,1340,1039,1072,-1,1549,1513,1592,-1,1513,1549,1336,-1,1388,1302,1182,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlhumrus_Geo_5_439_normalIndex_7()
		{
			int[] value = {1302,1388,1391,-1,685,1363,885,-1,685,1416,1363,-1,1142,1486,1155,-1,1142,1465,1486,-1,1101,1691,1285,-1,1610,1691,1101,-1,1602,1668,1356,-1,1602,1567,1668,-1,1863,1820,1831,-1,1863,1854,1820,-1,900,1026,1106,-1,900,880,1026,-1,967,1583,1553,-1,1583,967,1096,-1,925,898,969,-1,925,828,898,-1,1065,1198,1031,-1,1198,1065,1070,-1,1151,762,1120,-1,1151,509,762,-1,1484,1070,1065,-1,1070,1484,1520,-1,242,147,227,-1,242,116,147,-1,1065,1266,1484,-1,1065,969,1266,-1,1193,1238,1273,-1,1193,1208,1238,-1,1867,1844,1816,-1,1844,1867,1876,-1,1526,1726,1746,-1,1726,1526,1374,-1,1721,1790,1799,-1,1721,1708,1790,-1,291,538,230,-1,538,291,438,-1,592,200,579,-1,227,200,592,-1,295,571,539,-1,571,295,290,-1,230,579,200,-1,538,579,230,-1,1831,1583,1565,-1,1831,1820,1583,-1,900,773,625,-1,900,987,773,-1,1170,1627,1421,-1,1410,1627,1170,-1,1597,1746,1760,-1,1597,1526,1746,-1,1760,1867,1887,-1,1760,1746,1867,-1,1044,953,738,-1,1044,1063,953,-1,159,412,229,-1,159,435,412,-1,408,421,221,-1,408,562,421,-1,1699,1242,1530,-1,1699,1543,1242,-1,1026,758,881,-1,1026,880,758,-1,193,424,299,-1,343,424,193,-1,255,124,141,-1,255,199,124,-1,247,274,185,-1,247,277,274,-1,426,406,523,-1,406,426,322,-1,278,249,324,-1,249,278,275,-1,957,959,1011,-1,959,957,1021,-1,1500,1409,1267,-1,1500,1446,1409,-1,1190,1706,1500,-1,1190,1502,1706,-1,890,749,618,-1,890,999,749,-1,1168,1084,1261,-1,994,1084,1168,-1,1032,711,675,-1,1023,711,1032,-1,609,897,882,-1,609,607,897,-1,1361,1436,1394,-1,1436,1361,1364,-1,1464,1222,1279,-1,1222,1464,1377,-1,1377,1159,1222,-1,1284,1159,1377,-1,607,749,897,-1,607,736,749,-1,1284,1364,1261,-1,1364,1284,1377,-1,819,461,482,-1,461,819,854,-1,1115,937,981,-1,1115,1232,937,-1,649,763,996,-1,763,649,620,-1,904,637,924,-1,904,653,637,-1,870,669,886,-1,870,682,669,-1,604,787,596,-1,834,787,604,-1,767,574,756,-1,767,566,574,-1,647,848,858,-1,848,647,638,-1,750,606,559,-1,750,818,606,-1,505,687,694,-1,687,505,485,-1,733,566,767,-1,733,529,566,-1,1435,1195,1413,-1,1435,1233,1195,-1,1366,1140,1360,-1,1162,1140,1366,-1,1399,1105,1118,-1,1105,1399,1373,-1,1175,1367,1143,-1,1175,1375,1367,-1,1358,1116,1350,-1,1144,1116,1358,-1,1165,1375,1175,-1,1375,1165,1389,-1,399,416,458,-1,399,379,416,-1,314,389,403,-1,314,245,389,-1,203,390,384,-1,203,207,390,-1,187,437,397,-1,187,209,437,-1,555,340,506,-1,340,555,496,-1,1056,1362,1199,-1,1056,1299,1362,-1,1468,1157,1544,-1,1468,1108,1157,-1,1438,1138,1293,-1,1438,1219,1138,-1,626,976,541,-1,626,935,976,-1,1076,1372,1180,-1,1372,1076,1219,-1,626,413,513,-1,541,413,626,-1,1711,1653,1732,-1,1617,1653,1711,-1,1684,1536,1441,-1,1536,1684,1717,-1,1380,1646,1660,-1,1380,1341,1646,-1,1305,1586,1621,-1,1305,1237,1586,-1,1076,710,939,-1,1076,771,710,-1,525,484,493,-1,527,484,525,-1,484,369,469,-1,484,413,369,-1,1180,771,1076,-1,1180,809,771,-1,1548,1346,1372,-1,1346,1548,1514,-1,365,520,354,-1,752,520,365,-1,1011,918,1128,-1,1011,959,918,-1,752,957,520,-1,1021,957,752,-1,985,809,1180,-1,985,821,809,-1,1044,1128,1267,-1,1044,1011,1128,-1,821,513,809,-1,626,513,821,-1,395,222,358,-1,222,395,305,-1,1025,826,672,-1,826,1025,1054,-1,1535,1252,1353,-1,1252,1535,1370,-1,1620,1558,1725,-1,1620,1445,1558,-1,211,202,250,-1,211,220,202,-1,106,125,120,-1,82,125,106,-1,179,166,157,-1,150,166,179,-1,166,177,216,-1,166,120,177,-1,650,367,678,-1,367,650,414,-1,801,862,974,-1,801,650,862,-1,1218,1339,1349,-1,1339,1218,1276,-1,382,481,489,-1,481,382,373,-1,386,332,334,-1,386,391,332,-1,313,283,287,-1,313,301,283,-1,184,106,150,-1,180,106,184,-1,1085,827,1079,-1,1085,936,827,-1,380,610,693,-1,610,380,347,-1,380,177,125,-1,380,367,177,-1,139,244,208,-1,139,180,244,-1,258,332,329,-1,258,301,332,-1,775,1038,1017,-1,775,823,1038,-1,145,339,356,-1,114,339,145,-1,181,293,95,-1,181,394,293,-1,34,32,28,-1,34,35,32,-1,383,135,273,-1,383,163,135,-1,423,181,231,-1,181,423,394,-1,169,148,197,-1,169,143,148,-1,235,102,191,-1,102,235,128,-1,439,360,270,-1,439,548,360,-1,179,211,256,-1,179,157,211,-1,137,288,250,-1,288,137,176,-1,69,2,30,-1,69,47,2,-1,38,14,52,-1,38,7,14,-1,72,14,60,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlhumrus_Geo_5_439_normalIndex_8()
		{
			int[] value = {72,62,14,-1,31,2,13,-1,31,7,2,-1,137,42,47,-1,42,137,127,-1,978,895,1226,-1,895,978,688,-1,512,491,377,-1,512,425,491,-1,376,302,417,-1,376,259,302,-1,321,345,311,-1,345,321,327,-1,434,742,804,-1,434,352,742,-1,504,401,507,-1,504,491,401,-1,434,530,327,-1,530,434,602,-1,1314,1246,1309,-1,1314,1226,1246,-1,1042,1271,1207,-1,1271,1042,1130,-1,1014,1215,1167,-1,1014,1060,1215,-1,1059,1204,1228,-1,1059,1048,1204,-1,1091,1022,979,-1,1171,1022,1091,-1,1022,909,920,-1,1022,1048,909,-1,1060,908,1059,-1,908,1060,907,-1,899,992,883,-1,899,1014,992,-1,362,313,344,-1,362,334,313,-1,378,535,478,-1,504,535,378,-1,422,294,338,-1,422,344,294,-1,444,415,392,-1,444,501,415,-1,1303,1446,1547,-1,1382,1446,1303,-1,1527,1709,1557,-1,1607,1709,1527,-1,218,279,266,-1,218,331,279,-1,344,444,362,-1,344,422,444,-1,233,161,173,-1,233,215,161,-1,478,528,501,-1,528,478,535,-1,197,311,169,-1,197,321,311,-1,530,716,605,-1,530,724,716,-1,330,722,349,-1,714,722,330,-1,19,65,23,-1,55,65,19,-1,978,893,948,-1,978,1024,893,-1,31,114,145,-1,31,13,114,-1,72,188,158,-1,72,60,188,-1,136,195,318,-1,136,89,195,-1,181,42,127,-1,181,95,42,-1,293,573,339,-1,293,577,573,-1,356,582,402,-1,356,569,582,-1,667,433,398,-1,667,799,433,-1,361,717,304,-1,361,628,717,-1,349,783,388,-1,349,722,783,-1,454,1049,666,-1,454,916,1049,-1,1088,495,467,-1,1088,1040,495,-1,718,998,1035,-1,537,998,718,-1,1131,1092,1158,-1,1099,1092,1131,-1,1150,974,1003,-1,974,1150,1125,-1,1343,1227,1311,-1,1227,1343,1310,-1,1286,1333,1272,-1,1313,1333,1286,-1,1145,1153,1230,-1,1145,1097,1153,-1,1027,1132,1046,-1,1132,1027,1068,-1,1179,1119,1254,-1,1179,1071,1119,-1,934,1109,1057,-1,1109,934,902,-1,724,602,788,-1,602,724,530,-1,633,536,726,-1,536,633,507,-1,1125,1247,1227,-1,1125,1150,1247,-1,1695,1393,1679,-1,1695,1490,1393,-1,901,845,558,-1,901,979,845,-1,176,360,288,-1,360,176,270,-1,553,512,364,-1,553,483,512,-1,394,782,577,-1,394,676,782,-1,1311,1558,1343,-1,1490,1558,1311,-1,1695,1674,1725,-1,1695,1662,1674,-1,1046,1092,1035,-1,1046,1097,1092,-1,746,297,254,-1,746,876,297,-1,1681,1581,1698,-1,1681,1594,1581,-1,1694,1824,1676,-1,1694,1822,1824,-1,1661,1412,1323,-1,1661,1675,1412,-1,1590,1501,1604,-1,1590,1475,1501,-1,1041,1291,966,-1,1291,1041,1330,-1,791,820,800,-1,791,730,820,-1,1603,1080,1034,-1,1603,1563,1080,-1,1676,1582,1694,-1,1582,1676,1538,-1,1582,1458,1616,-1,1582,1447,1458,-1,800,837,791,-1,800,731,837,-1,966,1200,887,-1,966,1291,1200,-1,1462,1590,1571,-1,1475,1590,1462,-1,844,1047,835,-1,844,410,1047,-1,1612,1649,1545,-1,1649,1612,1735,-1,1681,1586,1511,-1,1681,1754,1586,-1,1803,1646,1621,-1,1803,1829,1646,-1,1851,1684,1660,-1,1851,1874,1684,-1,1731,1826,1756,-1,1731,1869,1826,-1,1869,1717,1894,-1,1731,1717,1869,-1,1808,1801,1794,-1,1808,1800,1801,-1,691,1430,692,-1,1457,1430,691,-1,946,1056,954,-1,946,1108,1056,-1,679,532,732,-1,497,532,679,-1,486,403,389,-1,403,486,451,-1,1457,1413,1430,-1,1435,1413,1457,-1,638,572,608,-1,572,638,647,-1,1146,1409,1231,-1,1409,1146,1255,-1,1044,1255,1063,-1,1044,1267,1255,-1,498,647,622,-1,647,498,572,-1,1265,1435,1457,-1,1265,1474,1435,-1,479,451,497,-1,479,427,451,-1,679,973,661,-1,954,973,679,-1,1036,1322,1318,-1,1036,1078,1322,-1,1010,1157,955,-1,1010,1187,1157,-1,1058,1103,1264,-1,980,1103,1058,-1,458,427,493,-1,416,427,458,-1,660,564,585,-1,660,636,564,-1,619,796,704,-1,654,796,619,-1,661,525,479,-1,710,525,661,-1,645,851,603,-1,645,873,851,-1,796,1058,1078,-1,796,839,1058,-1,732,584,793,-1,532,584,732,-1,846,660,932,-1,660,846,636,-1,1545,1362,1612,-1,1545,1406,1362,-1,882,1111,869,-1,1205,1111,882,-1,836,1111,1075,-1,836,869,1111,-1,836,613,600,-1,836,871,613,-1,928,1107,1183,-1,928,871,1107,-1,698,1020,772,-1,928,1020,698,-1,1386,1020,1308,-1,1094,1020,1386,-1,1414,1094,1386,-1,1152,1094,1414,-1,1239,892,1152,-1,1239,982,892,-1,1239,1428,1243,-1,1239,1434,1428,-1,1243,1456,1249,-1,1243,1428,1456,-1,1241,938,1249,-1,1241,903,938,-1,1460,1241,1478,-1,1211,1241,1460,-1,1422,1211,1460,-1,1185,1211,1422,-1,917,1133,866,-1,1185,1133,917,-1,1330,1133,1404,-1,1330,1041,1133,-1,882,629,609,-1,882,869,629,-1,618,975,890,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getlhumrus_Geo_5_439_normalIndex_9()
		{
			int[] value = {975,618,770,-1,1283,1355,1463,-1,1355,1283,1196,-1,991,1359,1098,-1,991,1269,1359,-1,673,178,182,-1,673,575,178,-1,1402,575,1324,-1,668,575,1402,-1,668,172,153,-1,668,680,172,-1,765,1420,1411,-1,765,680,1420,-1,1378,984,1396,-1,1055,984,1378,-1,1365,1320,1454,-1,1365,1259,1320,-1,692,1408,673,-1,1430,1408,692,-1,1473,1269,1444,-1,1359,1269,1473,-1,1119,1049,1057,-1,1119,1088,1049,-1,1068,1095,1132,-1,1068,1130,1095,-1,1639,1579,1643,-1,1579,1639,1556,-1,933,785,751,-1,933,917,785,-1,649,699,700,-1,637,699,649,-1,700,739,644,-1,739,700,785,-1,1689,1639,1690,-1,1689,1622,1639,-1,829,1524,855,-1,829,1491,1524,-1,36,225,201,-1,70,225,36,-1,428,622,511,-1,428,498,622,-1,1080,763,708,-1,1080,942,763,-1,787,1116,756,-1,787,1143,1116,-1,1140,818,750,-1,818,1140,1162,-1,694,1118,1105,-1,694,687,1118,-1,767,1123,733,-1,767,1144,1123,-1,1626,1605,1573,-1,1605,1626,1611,-1,1428,1574,1456,-1,1428,1570,1574,-1,652,779,655,-1,652,766,779,-1,1473,1395,1454,-1,1473,1389,1395,-1,814,720,830,-1,814,861,720,-1,1301,1454,1395,-1,1301,1365,1454,-1,655,735,677,-1,735,655,779,-1,1456,1588,1478,-1,1588,1456,1574,-1,1655,1611,1626,-1,1655,1630,1611,-1,55,17,18,-1,19,17,55,-1,23,83,24,-1,23,71,83,-1,48,36,20,-1,36,48,78,-1,550,1002,477,-1,1002,550,1113,-1,1554,1376,1433,-1,1528,1376,1554,-1,1414,1540,1572,-1,1386,1540,1414,-1,1367,1396,1350,-1,1396,1367,1378,-1,603,690,645,-1,603,576,690,-1,713,833,701,-1,833,713,794,-1,699,735,751,-1,677,735,699,-1,563,695,419,-1,563,837,695,-1,357,614,593,-1,357,448,614,-1,826,734,533,-1,734,826,838,-1,831,374,420,-1,831,789,374,-1,22,23,33,-1,23,22,19,-1,722,788,783,-1,722,724,788,-1,1851,1836,1848,-1,1829,1836,1851,-1,529,590,566,-1,590,529,543,-1,1308,1417,1493,-1,1308,1183,1417,-1,1221,1495,1469,-1,1262,1495,1221,-1,1417,1453,1469,-1,1357,1453,1417,-1,515,698,543,-1,515,613,698,-1,1420,1385,1411,-1,1420,1399,1385,-1,437,654,619,-1,437,496,654,-1,1371,1380,1441,-1,1371,1328,1380,-1,468,405,308,-1,405,468,441,-1,1478,1579,1460,-1,1478,1588,1579,-1,1585,1554,1584,-1,1554,1585,1572,-1,1357,1442,1453,-1,1442,1357,1306,-1,1394,1451,1326,-1,1436,1451,1394,-1,300,191,232,-1,235,191,300,-1,754,582,569,-1,754,761,582,-1,1310,1204,1171,-1,1313,1204,1310,-1,128,30,102,-1,128,69,30,-1,1505,1670,1544,-1,1505,1624,1670,-1,192,16,119,-1,58,16,192,-1,1442,1440,1401,-1,1440,1442,1451,-1,629,522,545,-1,629,600,522,-1,1402,1360,1373,-1,1360,1402,1324,-1,585,390,397,-1,390,585,564,-1,187,172,209,-1,187,153,172,-1,522,485,505,-1,485,522,515,-1,1107,1306,1357,-1,1107,1075,1306,-1,521,80,393,-1,521,119,80,-1,1440,1279,1275,-1,1279,1440,1464,-1,737,1221,1250,-1,737,789,1221,-1,1210,1433,1113,-1,1433,1210,1504,-1,1466,1573,1338,-1,1573,1466,1626,-1,1524,1655,1499,-1,1655,1524,1672,-1,1412,1689,1418,-1,1689,1412,1675,-1,320,681,807,-1,320,192,681,-1,328,22,374,-1,328,39,22,-1,550,90,601,-1,550,81,90,-1,764,171,824,-1,764,156,171,-1,170,855,806,-1,170,201,855,-1,477,891,420,-1,477,1002,891,-1,806,1466,824,-1,806,1499,1466,-1,70,246,225,-1,246,70,96,-1,352,443,742,-1,443,352,239,-1,227,103,200,-1,103,227,147,-1,151,290,295,-1,151,155,290,-1,282,123,151,-1,240,123,282,-1,1816,1887,1867,-1,1887,1816,1804,-1,1031,579,925,-1,579,1031,592,-1,539,993,840,-1,993,539,571,-1,1576,1673,1761,-1,1576,1651,1673,-1,1532,1149,1248,-1,1532,1515,1149,-1,1619,1608,1678,-1,1619,1671,1608,-1,1880,1789,1796,-1,1880,1842,1789,-1,1677,1101,1285,-1,1194,1101,1677,-1,1650,1789,1688,-1,1650,1796,1789,-1,1391,1628,1650,-1,1628,1391,1388,-1,1708,1416,1712,-1,1708,1363,1416,-1,841,1526,1597,-1,841,1030,1526,-1,621,625,773,-1,621,523,625,-1,368,426,480,-1,368,324,426,-1,453,255,299,-1,406,255,453,-1,322,247,199,-1,249,247,322,-1,94,141,124,-1,94,67,141,-1,343,105,289,-1,105,343,193,-1,5,59,15,-1,59,5,27,-1,112,57,122,-1,57,112,53,-1,91,53,101,-1,91,5,53,-1,131,159,27,-1,131,221,159,-1,91,323,131,-1,91,271,323,-1,133,210,101,-1,133,198,210,-1,284,375,198,-1,353,375,284,-1,210,508,271,-1,432,508,210,-1,712,323,597,-1,712,408,323,-1,508,986,597,-1,508,889,986,-1,375,725,432,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getlhumrus_Geo_5_439_normalIndex_10()
		{
			int[] value = {375,570,725,-1,570,526,748,-1,526,570,429,-1,889,1012,1258,-1,1012,889,725,-1,986,1530,1242,-1,1342,1530,986,-1,1331,1163,1415,-1,1331,1087,1163,-1,805,580,817,-1,805,587,580,-1,1163,776,1216,-1,776,1163,817,-1,1216,1345,1496,-1,1216,1062,1345,-1,547,683,776,-1,547,463,683,-1,683,864,1062,-1,534,864,683,-1,1337,1345,1184,-1,1337,1560,1345,-1,1340,1337,1039,-1,1640,1337,1340,-1,852,864,611,-1,1184,864,852,-1,409,431,534,-1,409,351,431,-1,93,103,100,-1,103,93,113,-1,162,385,309,-1,196,385,162,-1,1785,1713,1819,-1,1713,1785,1700,-1,1810,1889,1898,-1,1810,1821,1889,-1,1388,1591,1628,-1,1388,1213,1591,-1,969,1178,1266,-1,898,1178,969,-1,1178,786,961,-1,1178,898,786,-1,404,719,674,-1,430,719,404,-1,1821,1890,1889,-1,1821,1860,1890,-1,452,674,816,-1,404,674,452,-1,307,816,781,-1,452,816,307,-1,1884,1838,1840,-1,1838,1884,1888,-1,631,436,598,-1,631,460,436,-1,29,73,1,-1,29,51,73,-1,598,457,554,-1,598,436,457,-1,92,1,73,-1,1,92,0,-1,488,464,457,-1,488,490,464,-1,348,117,92,-1,348,381,117,-1,884,366,965,-1,464,366,884,-1,1476,1632,1623,-1,1476,1423,1632,-1,335,204,149,-1,204,335,366,-1,34,167,319,-1,167,34,12,-1,1846,1657,1575,-1,1846,1850,1657,-1,1693,1623,1632,-1,1623,1693,1742,-1,149,298,335,-1,149,186,298,-1,850,1235,1312,-1,1235,850,825,-1,990,728,927,-1,990,795,728,-1,263,121,111,-1,263,238,121,-1,312,462,475,-1,333,462,312,-1,1758,1618,1629,-1,1618,1758,1765,-1,1518,1768,1577,-1,1518,1743,1768,-1,1537,1220,1459,-1,1379,1220,1537,-1,1201,1349,1339,-1,1201,1161,1349,-1,482,365,286,-1,365,482,461,-1,422,501,444,-1,501,422,478,-1,234,615,540,-1,234,233,615,-1,355,386,372,-1,355,373,386,-1,615,1033,911,-1,1033,615,1083,-1,1214,1033,1083,-1,1214,1527,1033,-1,1043,1114,1023,-1,1043,1127,1114,-1,664,688,456,-1,895,688,664,-1,716,717,726,-1,714,717,716,-1,38,102,30,-1,38,110,102,-1,232,206,174,-1,206,232,191,-1,218,256,331,-1,218,179,256,-1,150,218,184,-1,150,179,218,-1,109,208,252,-1,109,139,208,-1,1752,1344,1776,-1,1492,1344,1752,-1,939,661,973,-1,939,710,661,-1,1264,1305,1341,-1,1103,1305,1264,-1,314,859,268,-1,859,314,379,-1,971,1124,1321,-1,971,729,1124,-1,595,531,609,-1,595,608,531,-1,1430,1366,1408,-1,1413,1366,1430,-1,486,584,532,-1,486,524,584,-1,555,646,576,-1,506,646,555,-1,980,1005,1103,-1,873,1005,980,-1,564,384,390,-1,384,564,524,-1,1293,973,1199,-1,1293,1138,973,-1,1729,1891,1710,-1,1729,1893,1891,-1,1005,1169,1237,-1,1169,1005,997,-1,707,1098,814,-1,707,991,1098,-1,873,997,1005,-1,769,997,873,-1,769,910,997,-1,830,910,769,-1,1448,1437,1523,-1,1437,1448,1381,-1,1516,1523,1685,-1,1523,1516,1448,-1,1676,1791,1663,-1,1791,1676,1824,-1,1793,1730,1805,-1,1793,1705,1730,-1,875,1403,832,-1,875,1229,1403,-1,1613,1730,1658,-1,1613,1806,1730,-1,1865,1752,1806,-1,1865,1872,1752,-1,1229,1470,1613,-1,1229,1069,1470,-1,798,519,640,-1,519,798,875,-1,697,670,827,-1,670,697,561,-1,784,582,761,-1,784,667,582,-1,1272,1400,1270,-1,1400,1272,1333,-1,1230,1167,1215,-1,1167,1230,1153,-1,330,18,304,-1,330,55,18,-1,467,78,48,-1,467,495,78,-1,1375,1378,1367,-1,1444,1378,1375,-1,1408,1360,1324,-1,1366,1360,1408,-1,609,545,595,-1,545,609,629,-1,1451,1464,1440,-1,1451,1436,1464,-1,328,789,737,-1,374,789,328,-1,1386,1493,1540,-1,1386,1308,1493,-1,566,627,574,-1,627,566,590,-1,982,794,892,-1,982,833,794,-1,1584,1433,1504,-1,1554,1433,1584,-1,833,958,766,-1,982,958,833,-1,1338,824,1466,-1,824,1338,764,-1,1672,1630,1655,-1,1672,1643,1630,-1,903,751,735,-1,903,933,751,-1,1256,1018,1300,-1,1256,995,1018,-1,551,753,640,-1,792,753,551,-1,1277,1252,1370,-1,1277,1206,1252,-1,1006,826,1054,-1,838,826,1006,-1,546,671,517,-1,703,671,546,-1,962,1196,1283,-1,1196,962,929,-1,465,371,341,-1,551,371,465,-1,1675,1622,1689,-1,1675,1604,1622,-1,866,730,739,-1,820,730,866,-1,1263,1571,1550,-1,1571,1263,1462,-1,1550,1347,1263,-1,1550,1566,1347,-1,1566,1519,1674,-1,1566,1550,1519,-1,593,740,964,-1,614,740,593,-1,251,358,222,-1,251,357,358,-1,614,731,740,-1,731,614,695,-1,1604,1562,1622,-1,1604,1501,1562,-1,1418,803,1412,-1,803,1418,727,-1,465,671,706,-1,517,671,465,-1,1300,962,1283,-1,1300,1018,962,-1,671,929,962,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getlhumrus_Geo_5_439_normalIndex_11()
		{
			int[] value = {929,671,703,-1,734,518,533,-1,658,518,734,-1,1206,1054,1252,-1,1006,1054,1206,-1,653,699,637,-1,653,677,699,-1,1643,1588,1630,-1,1588,1643,1579,-1,855,1499,806,-1,855,1524,1499,-1,652,604,701,-1,652,682,604,-1,1585,1605,1570,-1,1584,1605,1585,-1,601,1113,550,-1,601,1210,1113,-1,1414,1585,1434,-1,1414,1572,1585,-1,701,596,713,-1,596,701,604,-1,590,842,627,-1,842,590,772,-1,1262,1528,1495,-1,1319,1528,1262,-1,807,1275,1279,-1,807,681,1275,-1,595,559,606,-1,595,545,559,-1,1350,1397,1358,-1,1350,1396,1397,-1,1389,1444,1375,-1,1389,1473,1444,-1,201,20,36,-1,170,20,201,-1,361,161,400,-1,361,86,161,-1,21,81,24,-1,81,21,90,-1,1097,1158,1092,-1,1097,1145,1158,-1,1313,1228,1204,-1,1286,1228,1313,-1,1071,1088,1119,-1,1071,1040,1088,-1,569,778,754,-1,778,569,573,-1,414,689,418,-1,414,650,689,-1,798,1229,875,-1,1229,798,1069,-1,1669,1806,1613,-1,1865,1806,1669,-1,1229,1658,1403,-1,1229,1613,1658,-1,832,1450,768,-1,832,1403,1450,-1,1807,1705,1793,-1,1705,1807,1692,-1,1616,1450,1659,-1,1450,1616,1458,-1,1104,1563,1595,-1,1104,1080,1563,-1,1663,1538,1676,-1,1663,1523,1538,-1,1121,1503,1471,-1,1121,1029,1503,-1,1754,1698,1786,-1,1698,1754,1681,-1,814,769,707,-1,830,769,814,-1,645,707,769,-1,707,645,690,-1,991,690,872,-1,690,991,707,-1,1633,1710,1390,-1,1633,1729,1710,-1,1735,1636,1649,-1,1636,1735,1757,-1,1722,1682,1848,-1,1722,1741,1682,-1,207,182,178,-1,182,207,203,-1,932,1010,846,-1,1010,932,1139,-1,617,576,603,-1,576,617,555,-1,793,946,732,-1,793,955,946,-1,203,190,182,-1,190,203,245,-1,608,606,638,-1,608,595,606,-1,1564,1329,1552,-1,1564,1287,1329,-1,493,479,525,-1,493,427,479,-1,923,985,812,-1,923,821,985,-1,955,1108,946,-1,955,1157,1108,-1,77,109,111,-1,79,109,77,-1,184,266,257,-1,266,184,218,-1,288,331,256,-1,331,288,360,-1,528,633,628,-1,535,633,528,-1,916,1057,1049,-1,916,934,1057,-1,168,219,174,-1,168,213,219,-1,62,130,52,-1,62,134,130,-1,1127,1607,1214,-1,1127,1303,1607,-1,1146,890,975,-1,1146,994,890,-1,878,1289,1081,-1,878,919,1289,-1,470,336,329,-1,470,474,336,-1,372,334,362,-1,372,386,334,-1,373,516,481,-1,516,373,355,-1,224,415,215,-1,392,415,224,-1,947,1191,1218,-1,1191,947,931,-1,1551,1459,1427,-1,1537,1459,1551,-1,1461,1577,1546,-1,1461,1518,1577,-1,1051,906,868,-1,1051,1186,906,-1,333,238,263,-1,333,312,238,-1,50,111,121,-1,77,111,50,-1,1641,1850,1769,-1,1850,1641,1657,-1,777,825,850,-1,825,777,723,-1,319,84,34,-1,319,264,84,-1,335,503,874,-1,335,298,503,-1,815,665,760,-1,702,665,815,-1,1061,825,556,-1,1061,1235,825,-1,1734,1575,1488,-1,1734,1846,1575,-1,117,556,167,-1,381,556,117,-1,1531,1742,1792,-1,1531,1623,1742,-1,1813,1734,1683,-1,1813,1879,1734,-1,744,348,696,-1,348,744,381,-1,117,0,92,-1,0,117,3,-1,884,457,464,-1,554,457,884,-1,1784,1895,1813,-1,1784,1868,1895,-1,1295,1644,1683,-1,1295,1260,1644,-1,92,285,348,-1,73,285,92,-1,457,446,488,-1,436,446,457,-1,1600,1718,1777,-1,1600,1561,1718,-1,1896,1866,1884,-1,1866,1896,1868,-1,446,460,236,-1,460,446,436,-1,1888,1866,1871,-1,1888,1884,1866,-1,88,307,51,-1,88,212,307,-1,1066,1635,1587,-1,1066,1102,1635,-1,1871,1860,1888,-1,1871,1890,1860,-1,1316,1009,1541,-1,1316,816,1009,-1,205,88,74,-1,205,212,88,-1,759,989,651,-1,1173,989,759,-1,1853,1745,1785,-1,1853,1839,1745,-1,1541,1100,1498,-1,1100,1541,1009,-1,74,280,205,-1,142,280,74,-1,1317,989,1112,-1,1317,1141,989,-1,1591,1173,1665,-1,1591,1213,1173,-1,1421,1112,1170,-1,1421,1317,1112,-1,1170,1213,1182,-1,1170,1112,1213,-1,1628,1821,1810,-1,1628,1591,1821,-1,1785,1873,1853,-1,1819,1873,1785,-1,64,99,97,-1,64,56,99,-1,534,611,864,-1,534,431,611,-1,1184,1039,1337,-1,1184,852,1039,-1,1062,1184,1345,-1,864,1184,1062,-1,534,463,409,-1,534,683,463,-1,1062,776,683,-1,1216,776,1062,-1,1560,1496,1345,-1,1697,1496,1560,-1,1163,1496,1415,-1,1216,1496,1163,-1,817,547,776,-1,547,817,580,-1,1087,817,1163,-1,1087,805,817,-1,1497,1415,1645,-1,1497,1331,1415,-1,889,1342,986,-1,1258,1342,889,-1,725,748,1012,-1,748,725,570,-1,353,570,375,-1,353,429,570,-1,432,889,508,-1,432,725,889,-1,597,1242,712,-1,597,986,1242,-1,271,597,323,-1,508,597,271,-1,198,432,210,-1,375,432,198,-1,223,198,133,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getlhumrus_Geo_5_439_normalIndex_12()
		{
			int[] value = {223,284,198,-1,101,271,91,-1,101,210,271,-1,131,408,221,-1,131,323,408,-1,91,27,5,-1,91,131,27,-1,112,101,53,-1,133,101,112,-1,15,53,5,-1,15,57,53,-1,27,229,59,-1,229,27,159,-1,193,67,105,-1,67,193,141,-1,144,124,185,-1,144,94,124,-1,249,277,247,-1,275,277,249,-1,406,199,255,-1,322,199,406,-1,1160,1224,1000,-1,1368,1224,1160,-1,351,324,368,-1,324,351,278,-1,480,523,621,-1,480,426,523,-1,1053,1429,1374,-1,1383,1429,1053,-1,1627,1755,1720,-1,1627,1637,1755,-1,1142,951,1053,-1,1142,1155,951,-1,1810,1650,1628,-1,1650,1810,1796,-1,1691,1727,1799,-1,1610,1727,1691,-1,1799,1811,1797,-1,1811,1799,1790,-1,1898,1796,1810,-1,1898,1880,1796,-1,1883,1852,1878,-1,1852,1883,1845,-1,1762,1740,1780,-1,1762,1733,1740,-1,1759,1841,1849,-1,1841,1759,1766,-1,1472,1714,1481,-1,1719,1714,1472,-1,1089,952,950,-1,952,1089,1064,-1,571,1008,993,-1,1008,571,542,-1,155,265,290,-1,265,155,126,-1,147,100,103,-1,100,147,146,-1,228,97,99,-1,228,175,97,-1,934,783,788,-1,934,916,783,-1,33,24,68,-1,33,23,24,-1,9,170,171,-1,170,9,20,-1,1210,764,1338,-1,764,1210,601,-1,894,1023,1114,-1,1023,894,711,-1,225,727,829,-1,225,246,727,-1,806,171,170,-1,806,824,171,-1,156,601,90,-1,601,156,764,-1,68,420,33,-1,420,68,477,-1,393,39,328,-1,39,393,80,-1,1418,1690,1491,-1,1690,1418,1689,-1,1499,1626,1466,-1,1626,1499,1655,-1,1504,1338,1573,-1,1504,1210,1338,-1,1002,1319,891,-1,1319,1002,1376,-1,1250,877,737,-1,1281,877,1250,-1,628,726,717,-1,628,633,726,-1,119,6,80,-1,119,16,6,-1,1453,1401,1281,-1,1453,1442,1401,-1,600,515,522,-1,515,600,613,-1,1420,1373,1399,-1,1420,1402,1373,-1,397,619,585,-1,619,397,437,-1,178,187,207,-1,178,153,187,-1,545,505,559,-1,545,522,505,-1,1075,1326,1306,-1,1326,1075,1111,-1,1401,1275,1126,-1,1275,1401,1440,-1,681,119,521,-1,192,119,681,-1,1441,1325,1371,-1,1441,1536,1325,-1,955,846,1010,-1,793,846,955,-1,573,782,778,-1,782,573,577,-1,1333,1445,1400,-1,1445,1333,1343,-1,1215,1286,1230,-1,1215,1228,1286,-1,110,52,130,-1,110,38,52,-1,191,130,206,-1,191,110,130,-1,994,1231,1084,-1,1231,994,1146,-1,1306,1451,1442,-1,1451,1306,1326,-1,1540,1495,1528,-1,1540,1493,1495,-1,1501,1404,1562,-1,1501,1330,1404,-1,1434,1570,1428,-1,1434,1585,1570,-1,1318,1328,1371,-1,1318,1322,1328,-1,262,209,172,-1,209,262,340,-1,543,485,515,-1,485,543,529,-1,1183,1357,1417,-1,1107,1357,1183,-1,1469,1250,1221,-1,1453,1250,1469,-1,1493,1469,1495,-1,1493,1417,1469,-1,543,772,590,-1,772,543,698,-1,1358,1411,1385,-1,1358,1397,1411,-1,1328,1341,1380,-1,1341,1328,1264,-1,388,65,349,-1,388,71,65,-1,374,33,420,-1,33,374,22,-1,1221,831,1262,-1,831,1221,789,-1,1262,891,1319,-1,891,1262,831,-1,593,358,357,-1,358,593,630,-1,614,419,695,-1,448,419,614,-1,588,739,730,-1,588,644,739,-1,701,766,652,-1,701,833,766,-1,1237,1103,1005,-1,1305,1103,1237,-1,576,872,690,-1,646,872,576,-1,713,574,627,-1,574,713,596,-1,892,627,842,-1,627,892,794,-1,1572,1528,1554,-1,1540,1528,1572,-1,1002,1433,1376,-1,1002,1113,1433,-1,477,81,550,-1,477,68,81,-1,40,20,9,-1,20,40,48,-1,21,40,4,-1,21,138,40,-1,24,108,21,-1,24,83,108,-1,234,215,233,-1,234,224,215,-1,1630,1574,1611,-1,1630,1588,1574,-1,669,677,653,-1,677,669,655,-1,861,1122,1174,-1,1110,1122,861,-1,1110,814,1098,-1,1110,861,814,-1,655,682,652,-1,682,655,669,-1,1570,1611,1574,-1,1570,1605,1611,-1,870,1175,834,-1,1175,870,1165,-1,904,1234,886,-1,904,1166,1234,-1,1144,756,1116,-1,767,756,1144,-1,687,1123,1118,-1,687,733,1123,-1,1105,750,694,-1,1105,1140,750,-1,1195,818,1162,-1,1195,848,818,-1,1143,834,1175,-1,787,834,1143,-1,1046,998,1027,-1,1046,1035,998,-1,201,829,855,-1,225,829,201,-1,1491,1672,1524,-1,1491,1690,1672,-1,1622,1556,1639,-1,1622,1562,1556,-1,739,917,866,-1,739,785,917,-1,649,644,620,-1,644,649,700,-1,996,1398,924,-1,1398,996,1307,-1,700,751,785,-1,699,751,700,-1,1460,1556,1422,-1,1460,1579,1556,-1,1690,1643,1672,-1,1643,1690,1639,-1,1027,1040,1071,-1,1040,1027,998,-1,1024,1226,1314,-1,1226,1024,978,-1,1098,1320,1110,-1,1359,1320,1098,-1,182,692,673,-1,182,190,692,-1,1121,1259,1212,-1,1259,1121,1122,-1,1110,1259,1122,-1,1320,1259,1110,-1,1454,1359,1473,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getlhumrus_Geo_5_439_normalIndex_13()
		{
			int[] value = {1320,1359,1454,-1,1444,1055,1378,-1,1444,1269,1055,-1,646,1055,872,-1,646,984,1055,-1,984,1397,1396,-1,1397,984,888,-1,888,1411,1397,-1,1411,888,765,-1,172,765,262,-1,172,680,765,-1,680,1402,1420,-1,1402,680,668,-1,575,153,178,-1,153,575,668,-1,887,740,731,-1,887,860,740,-1,770,567,441,-1,567,770,618,-1,1200,860,887,-1,860,1200,960,-1,820,1133,1041,-1,820,866,1133,-1,1404,1185,1422,-1,1404,1133,1185,-1,933,1185,917,-1,933,1211,1185,-1,1211,903,1241,-1,933,903,1211,-1,1249,1478,1241,-1,1456,1478,1249,-1,958,1249,938,-1,958,1243,1249,-1,982,1243,958,-1,982,1239,1243,-1,1434,1152,1414,-1,1434,1239,1152,-1,1152,842,1094,-1,892,842,1152,-1,772,1094,842,-1,772,1020,1094,-1,1183,1020,928,-1,1183,1308,1020,-1,613,928,698,-1,613,871,928,-1,871,1075,1107,-1,1075,871,836,-1,600,869,836,-1,600,629,869,-1,1036,660,704,-1,932,660,1036,-1,584,846,793,-1,584,636,846,-1,704,1078,1036,-1,796,1078,704,-1,603,839,617,-1,851,839,603,-1,796,617,839,-1,617,796,654,-1,585,704,660,-1,619,704,585,-1,636,524,564,-1,636,584,524,-1,524,389,384,-1,389,524,486,-1,1187,1139,1325,-1,1139,1187,1010,-1,839,980,1058,-1,839,851,980,-1,932,1318,1139,-1,932,1036,1318,-1,1264,1078,1058,-1,1322,1078,1264,-1,954,1199,973,-1,1056,1199,954,-1,661,497,679,-1,661,479,497,-1,451,416,403,-1,451,427,416,-1,1233,847,858,-1,1233,1188,847,-1,770,1063,975,-1,770,953,1063,-1,1233,848,1195,-1,858,848,1233,-1,532,451,486,-1,451,532,497,-1,954,732,946,-1,679,732,954,-1,190,691,692,-1,691,190,268,-1,975,1255,1146,-1,1255,975,1063,-1,1757,1794,1801,-1,1757,1735,1794,-1,1633,1800,1738,-1,1801,1800,1633,-1,1808,1756,1826,-1,1756,1808,1732,-1,1829,1660,1646,-1,1851,1660,1829,-1,1684,1894,1717,-1,1894,1684,1874,-1,1621,1754,1803,-1,1586,1754,1621,-1,1335,1698,1581,-1,1335,1578,1698,-1,1323,835,1315,-1,1323,844,835,-1,1571,1661,1648,-1,1590,1661,1571,-1,1462,1291,1475,-1,1291,1462,1200,-1,966,731,800,-1,966,887,731,-1,563,791,837,-1,591,791,563,-1,708,1034,1080,-1,624,1034,708,-1,1041,800,820,-1,966,800,1041,-1,1475,1330,1501,-1,1475,1291,1330,-1,1661,1604,1675,-1,1661,1590,1604,-1,1412,844,1323,-1,844,1412,803,-1,1692,1822,1694,-1,1692,1807,1822,-1,1741,1885,1779,-1,1885,1741,1864,-1,96,296,246,-1,254,296,96,-1,1167,1132,1095,-1,1132,1167,1153,-1,107,89,136,-1,107,87,89,-1,107,104,85,-1,107,143,104,-1,1171,1227,1310,-1,1171,1091,1227,-1,69,270,176,-1,270,69,128,-1,483,425,512,-1,425,483,300,-1,1490,1247,1393,-1,1490,1311,1247,-1,1679,1667,1695,-1,1656,1667,1679,-1,535,507,633,-1,507,535,504,-1,605,726,536,-1,605,716,726,-1,902,788,602,-1,902,934,788,-1,1254,1057,1109,-1,1254,1119,1057,-1,1068,1071,1179,-1,1068,1027,1071,-1,1153,1046,1132,-1,1153,1097,1046,-1,1230,1272,1145,-1,1286,1272,1230,-1,1343,1313,1310,-1,1343,1333,1313,-1,1003,862,879,-1,974,862,1003,-1,1270,1158,1272,-1,1131,1158,1270,-1,1099,1035,1092,-1,1099,718,1035,-1,1040,537,495,-1,1040,998,537,-1,666,1088,467,-1,666,1049,1088,-1,916,388,783,-1,388,916,454,-1,714,304,717,-1,304,714,330,-1,400,628,361,-1,400,528,628,-1,560,799,843,-1,433,799,560,-1,398,582,667,-1,402,582,398,-1,573,356,339,-1,573,569,356,-1,158,89,72,-1,195,89,158,-1,60,145,188,-1,60,31,145,-1,42,114,13,-1,95,114,42,-1,921,797,843,-1,797,921,972,-1,1254,1309,1179,-1,1254,1314,1309,-1,843,664,560,-1,843,797,664,-1,55,349,65,-1,330,349,55,-1,714,724,722,-1,716,724,714,-1,136,148,107,-1,136,253,148,-1,215,400,161,-1,215,415,400,-1,355,540,516,-1,355,234,540,-1,372,224,355,-1,372,392,224,-1,919,1052,1289,-1,919,911,1052,-1,1557,1033,1527,-1,1557,1052,1033,-1,501,400,415,-1,501,528,400,-1,362,392,372,-1,362,444,392,-1,338,478,422,-1,378,478,338,-1,344,287,294,-1,344,313,287,-1,804,948,893,-1,948,804,742,-1,972,1246,895,-1,972,1207,1246,-1,1042,883,992,-1,883,1042,921,-1,1014,907,1060,-1,907,1014,899,-1,1048,908,909,-1,1048,1059,908,-1,979,920,845,-1,979,1022,920,-1,1125,1091,963,-1,1227,1091,1125,-1,1048,1171,1204,-1,1048,1022,1171,-1,1215,1059,1228,-1,1215,1060,1059,-1,1207,1309,1246,-1,1309,1207,1271,-1,963,979,901,-1,963,1091,979,-1,602,804,902,-1,602,434,804,-1,536,417,605,-1,536,376,417,-1,507,310,536,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getlhumrus_Geo_5_439_normalIndex_14()
		{
			int[] value = {507,401,310,-1,352,327,321,-1,327,352,434,-1,417,311,345,-1,417,302,311,-1,213,310,219,-1,310,213,376,-1,491,315,401,-1,491,425,315,-1,688,948,443,-1,688,978,948,-1,1109,1314,1254,-1,1109,1024,1314,-1,127,250,202,-1,127,137,250,-1,47,13,2,-1,13,47,42,-1,60,7,31,-1,60,14,7,-1,7,30,2,-1,30,7,38,-1,47,176,137,-1,176,47,69,-1,250,256,211,-1,256,250,288,-1,235,270,128,-1,235,439,270,-1,414,220,216,-1,220,414,418,-1,95,339,114,-1,95,293,339,-1,398,195,158,-1,398,433,195,-1,188,356,402,-1,145,356,188,-1,329,489,470,-1,329,382,489,-1,82,180,139,-1,82,106,180,-1,1223,936,1085,-1,1013,936,1223,-1,879,678,790,-1,862,678,879,-1,367,216,177,-1,216,367,414,-1,180,257,244,-1,180,184,257,-1,301,334,332,-1,334,301,313,-1,373,391,386,-1,373,382,391,-1,823,1081,1038,-1,1081,823,878,-1,1332,1276,1559,-1,1276,1332,1339,-1,120,150,106,-1,120,166,150,-1,807,514,320,-1,807,905,514,-1,1025,630,964,-1,1025,672,630,-1,1566,1353,1347,-1,1353,1566,1535,-1,1353,1054,1025,-1,1353,1252,1054,-1,672,358,630,-1,672,395,358,-1,1128,1500,1267,-1,1128,1190,1500,-1,541,1202,565,-1,541,976,1202,-1,1037,983,1074,-1,956,983,1037,-1,809,527,771,-1,527,809,513,-1,493,469,458,-1,484,469,493,-1,771,525,710,-1,771,527,525,-1,939,1219,1076,-1,1219,939,1138,-1,1548,1406,1545,-1,1548,1438,1406,-1,1621,1341,1305,-1,1341,1621,1646,-1,1660,1441,1380,-1,1441,1660,1684,-1,1536,1731,1624,-1,1536,1717,1731,-1,541,369,413,-1,541,565,369,-1,513,484,527,-1,413,484,513,-1,1180,1117,985,-1,1372,1117,1180,-1,935,821,923,-1,935,626,821,-1,1406,1199,1362,-1,1406,1293,1199,-1,1187,1544,1157,-1,1187,1505,1544,-1,340,437,209,-1,340,496,437,-1,207,397,390,-1,207,187,397,-1,245,384,389,-1,245,203,384,-1,403,379,314,-1,379,403,416,-1,1144,1385,1123,-1,1144,1358,1385,-1,1143,1350,1116,-1,1143,1367,1350,-1,1385,1118,1123,-1,1118,1385,1399,-1,1360,1105,1373,-1,1140,1105,1360,-1,1162,1413,1195,-1,1162,1366,1413,-1,1233,1474,1188,-1,1233,1435,1474,-1,687,529,733,-1,687,485,529,-1,559,694,750,-1,694,559,505,-1,818,638,606,-1,818,848,638,-1,622,858,847,-1,622,647,858,-1,756,596,787,-1,756,574,596,-1,834,682,870,-1,834,604,682,-1,653,886,669,-1,904,886,653,-1,637,996,924,-1,637,649,996,-1,620,708,763,-1,708,620,557,-1,1234,1389,1165,-1,1234,1395,1389,-1,511,847,442,-1,511,622,847,-1,1038,1276,1218,-1,1038,1081,1276,-1,1017,1218,1191,-1,1017,1038,1218,-1,937,808,981,-1,634,808,937,-1,281,387,354,-1,387,281,440,-1,445,499,466,-1,445,346,499,-1,999,897,749,-1,1192,897,999,-1,1361,1261,1364,-1,1361,1168,1261,-1,1181,1303,1127,-1,1181,1382,1303,-1,1436,1377,1464,-1,1364,1377,1436,-1,1394,1192,1361,-1,1394,1205,1192,-1,531,607,609,-1,531,466,607,-1,897,1205,882,-1,1205,897,1192,-1,1222,1032,905,-1,1222,1159,1032,-1,1261,1090,1284,-1,1261,1084,1090,-1,994,999,890,-1,994,1168,999,-1,1642,1028,1332,-1,1502,1028,1642,-1,1190,1028,1502,-1,1190,810,1028,-1,1084,1181,1090,-1,1181,1084,1231,-1,1382,1409,1446,-1,1382,1231,1409,-1,1011,738,957,-1,1011,1044,738,-1,1021,970,959,-1,970,1021,854,-1,324,322,426,-1,322,324,249,-1,523,453,625,-1,453,523,406,-1,299,141,193,-1,299,255,141,-1,1771,1837,1823,-1,1837,1771,1782,-1,568,343,544,-1,343,568,424,-1,943,408,712,-1,943,562,408,-1,1686,1823,1778,-1,1771,1823,1686,-1,289,544,343,-1,544,289,549,-1,1755,1739,1720,-1,1755,1877,1739,-1,1429,1726,1374,-1,1726,1429,1751,-1,1637,1410,941,-1,1637,1627,1410,-1,705,552,447,-1,705,684,552,-1,1106,987,900,-1,1106,1209,987,-1,240,476,447,-1,240,282,476,-1,542,290,265,-1,571,290,542,-1,447,757,705,-1,757,447,476,-1,1465,1708,1721,-1,1465,1363,1708,-1,1746,1876,1867,-1,1876,1746,1726,-1,1553,1820,1788,-1,1553,1583,1820,-1,282,539,476,-1,282,295,539,-1,1598,1208,1073,-1,1598,1565,1208,-1,227,721,242,-1,227,592,721,-1,151,509,325,-1,151,123,509,-1,155,260,126,-1,155,325,260,-1,1804,1854,1863,-1,1804,1816,1854,-1,1368,1225,1455,-1,1225,1368,1160,-1,1788,1854,1856,-1,1854,1788,1820,-1,1522,1101,1086,-1,1101,1522,1610,-1,1302,1419,755,-1,1302,1391,1419,-1,1506,1788,1774,-1,1506,1553,1788,-1,1292,1340,1072,-1,1512,1340,1292,-1,773,852,621,-1,1039,852,773,-1,431,480,611,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getlhumrus_Geo_5_439_normalIndex_15()
		{
			int[] value = {431,368,480,-1,993,1273,1238,-1,1273,993,1008,-1,705,967,950,-1,967,705,757,-1,1238,840,993,-1,1238,1096,840,-1,1072,1209,1292,-1,1209,1072,987,-1,1811,1781,1815,-1,1790,1781,1811,-1,1775,1780,1787,-1,1780,1775,1762,-1,1342,1331,1497,-1,1342,1258,1331,-1,1012,805,1087,-1,1012,748,805,-1,1802,1797,1811,-1,1750,1797,1802,-1,1842,1878,1852,-1,1842,1880,1878,-1,1853,1898,1889,-1,1873,1898,1853,-1,1845,1812,1852,-1,1845,1817,1812,-1,1789,1815,1781,-1,1842,1815,1789,-1,1688,1416,1419,-1,1688,1712,1416,-1,841,755,685,-1,755,841,941,-1,226,144,274,-1,226,122,144,-1,67,57,15,-1,94,57,67,-1,289,59,229,-1,105,59,289,-1,502,510,370,-1,709,510,502,-1,126,152,116,-1,260,152,126,-1,542,242,721,-1,265,242,542,-1,1070,1193,1198,-1,1193,1070,1073,-1,1565,1858,1831,-1,1858,1565,1598,-1,1481,1164,1136,-1,1481,1487,1164,-1,1700,1487,1713,-1,1700,1498,1487,-1,1248,1327,1077,-1,1248,1217,1327,-1,1050,1248,1149,-1,1050,1217,1248,-1,1747,1847,1719,-1,1847,1747,1849,-1,1016,1164,1082,-1,1016,1136,1164,-1,1839,1707,1745,-1,1825,1707,1839,-1,363,643,438,-1,643,363,578,-1,898,643,786,-1,898,828,643,-1,925,538,828,-1,925,579,538,-1,43,45,66,-1,37,45,43,-1,45,37,25,-1,75,100,98,-1,75,93,100,-1,26,236,29,-1,236,26,248,-1,292,44,317,-1,292,41,44,-1,291,76,363,-1,291,118,76,-1,781,1260,616,-1,781,1236,1260,-1,1488,696,1295,-1,696,1488,744,-1,45,10,11,-1,45,25,10,-1,1472,1136,1050,-1,1481,1136,1472,-1,1678,1733,1762,-1,1678,1608,1733,-1,1651,1508,1494,-1,1651,1507,1508,-1,1576,632,1507,-1,1576,1077,632,-1,1644,1236,1614,-1,1260,1236,1644,-1,1871,1770,1825,-1,1871,1866,1770,-1,1644,1770,1784,-1,1644,1614,1770,-1,1840,1773,1783,-1,1773,1840,1838,-1,1017,853,775,-1,1017,1115,853,-1,634,971,808,-1,586,971,634,-1,845,782,676,-1,845,920,782,-1,909,754,778,-1,909,908,754,-1,899,761,907,-1,761,899,784,-1,921,856,883,-1,856,921,843,-1,257,294,287,-1,266,294,257,-1,283,208,244,-1,283,258,208,-1,1312,815,850,-1,1312,1274,815,-1,927,657,912,-1,927,728,657,-1,1274,1641,1631,-1,1274,1312,1641,-1,238,132,121,-1,132,238,186,-1,61,32,35,-1,61,50,32,-1,1596,1379,1537,-1,1467,1379,1596,-1,1609,1551,1546,-1,1625,1551,1609,-1,1577,1764,1589,-1,1577,1795,1764,-1,867,777,760,-1,867,912,777,-1,243,326,341,-1,194,326,243,-1,115,243,160,-1,115,194,243,-1,183,276,189,-1,276,183,237,-1,1290,1300,1489,-1,1300,1290,1256,-1,706,551,465,-1,706,792,551,-1,706,962,1018,-1,706,671,962,-1,838,802,734,-1,838,865,802,-1,658,747,581,-1,658,802,747,-1,589,492,500,-1,589,581,492,-1,1463,1426,1477,-1,1463,1355,1426,-1,1427,1405,1351,-1,1459,1405,1427,-1,1492,1461,1384,-1,1461,1492,1518,-1,1752,1818,1743,-1,1818,1752,1872,-1,798,1004,1069,-1,1004,798,702,-1,640,665,798,-1,665,640,741,-1,922,780,753,-1,780,922,926,-1,450,670,561,-1,594,670,450,-1,252,111,109,-1,111,252,263,-1,333,474,462,-1,333,336,474,-1,1631,1334,1274,-1,1334,1631,1629,-1,1744,1768,1758,-1,1744,1795,1768,-1,1459,1154,1405,-1,1220,1154,1459,-1,1743,1765,1758,-1,1743,1818,1765,-1,1687,1865,1669,-1,1687,1835,1865,-1,1765,1652,1618,-1,1765,1767,1652,-1,1891,1793,1805,-1,1891,1893,1793,-1,1822,1864,1824,-1,1822,1885,1864,-1,1793,1897,1807,-1,1897,1793,1893,-1,1334,1004,815,-1,1334,1348,1004,-1,919,540,911,-1,919,516,540,-1,481,823,489,-1,878,823,481,-1,462,853,868,-1,853,462,474,-1,906,503,475,-1,503,906,863,-1,139,79,82,-1,109,79,139,-1,1531,857,884,-1,1531,1297,857,-1,1102,598,968,-1,1102,631,598,-1,1783,1587,1635,-1,1783,1773,1587,-1,1424,1561,1600,-1,1561,1424,1297,-1,693,697,790,-1,693,610,697,-1,488,317,490,-1,292,317,488,-1,41,3,44,-1,41,0,3,-1,1615,1736,1748,-1,1736,1615,1592,-1,686,544,549,-1,686,715,544,-1,639,656,612,-1,639,599,656,-1,811,599,639,-1,811,745,599,-1,1172,745,811,-1,1172,1203,745,-1,1753,1543,1699,-1,1753,1654,1543,-1,1814,1699,1778,-1,1814,1753,1699,-1,1855,1778,1823,-1,1855,1814,1778,-1,1828,1875,1827,-1,1862,1875,1828,-1,1512,1748,1723,-1,1512,1615,1748,-1,1288,1521,1432,-1,1288,1455,1521,-1,1189,1455,1288,-1,1189,1368,1455,-1,1368,1019,1224,-1,1019,1368,1189,-1,913,1224,1019,-1,913,1120,1224,-1,568,913,822,-1,913,568,896,-1,1383,1480,1429,-1,1383,1431,1480,-1,1506,1704,1485,-1,1774,1704,1506,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getlhumrus_Geo_5_439_normalIndex_16()
		{
			int[] value = {1155,930,951,-1,1155,1086,930,-1,1137,659,1093,-1,662,659,1137,-1,49,43,56,-1,49,46,43,-1,719,455,774,-1,719,430,455,-1,1483,1494,1508,-1,1483,1093,1494,-1,309,642,473,-1,309,385,642,-1,205,430,404,-1,205,280,430,-1,49,162,142,-1,49,64,162,-1,175,407,196,-1,407,175,359,-1,1691,1356,1285,-1,1356,1691,1702,-1,965,1423,1476,-1,965,874,1423,-1,1282,1517,1321,-1,1282,1534,1517,-1,1407,1474,1265,-1,1425,1474,1407,-1,859,1278,1298,-1,859,648,1278,-1,1534,1552,1517,-1,1534,1564,1552,-1,1329,1304,1552,-1,1329,1251,1304,-1,1251,1074,1296,-1,1251,1037,1074,-1,1458,1647,1352,-1,1458,1447,1647,-1,1439,1606,1601,-1,1439,1437,1606,-1,1471,1580,1542,-1,1471,1503,1580,-1,1595,1580,1503,-1,1595,1606,1580,-1,1581,1253,1335,-1,1581,1529,1253,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getlhumrus_Coord_6_439_point_1()
		{
			double[] value = {8.2457,37.2018,-1.2276,8.2661,37.1945,-1.2806,8.2898,37.2594,-1.2936,8.173,37.0451,-1.2707,8.2796,37.2023,-1.3454,8.1377,37.2238,-1.114,8.1142,37.0633,-1.1585,8.0757,36.9395,-1.256,8.0749,36.9493,-1.3505,7.7134,37.1137,-1.7632,7.7284,37.064,-1.7088,7.7078,37.0663,-1.7102,7.9257,36.8902,-1.4176,7.8905,36.8803,-1.4165,7.8456,36.89,-1.4792,8.0043,36.9272,-1.3793,7.9568,36.9368,-1.4448,8.0581,36.9714,-1.4442,7.7473,37.1861,-1.7752,7.7392,37.1774,-1.789,7.7283,37.2463,-1.8196,7.9369,36.9262,-1.4252,7.838,36.9463,-1.5502,7.8715,36.9607,-1.5263,7.9744,36.9156,-1.3688,7.9569,36.884,-1.3606,7.8884,37.1983,-1.7332,7.8915,37.1373,-1.683,7.7717,37.1287,-1.7347,7.7834,36.8914,-1.498,7.7775,36.9472,-1.5682,7.8393,38.0945,-1.4176,7.9038,38.147,-1.463,7.8074,38.2122,-1.4375,7.7737,38.0431,-1.3967,7.7896,37.9863,-1.3963,7.8166,37.7998,-1.3382,7.8213,37.7594,-1.2866,7.8792,37.8462,-1.3553,7.6,38.0586,-1.3096,7.6606,38.0012,-1.3479,7.7111,38.2148,-1.4106,7.524,38.1084,-1.2919,7.8131,37.8864,-1.3678,7.7295,37.9344,-1.3675,7.9003,37.7698,-1.2757,7.9451,37.7509,-1.2712,7.9542,37.8321,-1.343,7.8623,37.7661,-1.2893,7.6519,37.6249,-1.1501,7.6524,37.6404,-1.1818,7.6146,37.616,-1.183,7.4233,37.6457,-1.1646,7.4609,37.6671,-1.1695,7.4323,37.6689,-1.2215,7.5658,37.6706,-1.1928,7.5678,37.6086,-1.1762,7.5834,37.6683,-1.199,7.5924,37.6133,-1.1767,7.4802,37.6242,-1.1351,7.4807,37.6771,-1.1626,7.5131,37.7828,-1.2191,7.483,37.7719,-1.208,7.492,37.6798,-1.1625,6.9895,37.6743,-1.3971,7.1132,37.77,-1.3745,6.9556,37.7838,-1.3023,7.3326,37.8512,-1.3037,7.2915,37.9276,-1.3294,7.2769,37.8099,-1.3499,7.3358,38.0399,-1.264,7.3935,38.0602,-1.2453,7.3532,37.839,-1.2826,7.4082,37.8343,-1.2571,7.5983,37.8204,-1.2502,7.7068,37.7037,-1.2556,7.6579,37.8147,-1.3025,7.645,37.6684,-1.2156,7.5629,37.8076,-1.2295,7.4419,41.8909,-1.5073,7.4138,42.862,-1.4912,7.4588,42.873,-1.3265,6.8739,41.795,-1.1865,6.7312,41.807,-1.2851,6.7707,40.7002,-1.421,8.05,37.6186,-0.9609,8.0676,37.564,-0.92,8.0904,37.5938,-0.9638,7.9182,37.7292,-1.1614,7.9552,37.7196,-1.1643,7.9021,37.7292,-1.2362,6.7773,49.1075,-0.2454,6.7652,49.1106,-0.281,6.7382,49.2499,-0.2936,6.8026,48.9222,-0.2484,6.6258,49.4412,-0.3328,6.7114,49.4,-0.3696,6.668,49.4677,-0.3657,6.9811,49.2911,-1.544,6.9127,49.0991,-1.6289,6.9023,49.1459,-1.6779,6.3693,48.6067,-1.8412,6.249,48.381,-1.672,6.114,48.429,-1.6671,6.0114,48.2798,-1.2951,5.853,48.3545,-1.0559,5.9281,48.3384,-1.3923,6.2666,48.3607,-0.5038,6.0665,48.56,-0.5592,6.11,48.4224,-0.7153,6.1177,49.0083,-0.3386,6.2347,49.3748,-0.3833,6.0415,49.1608,-0.4593,6.7173,41.8349,-1.6825,6.6829,40.6926,-1.5336,6.6561,41.8172,-1.3958,7.134,41.8088,-1.0865,7.1308,40.6948,-1.1793,7.1801,40.7015,-1.1978,6.8507,37.5304,-1.1782,6.9221,37.5565,-1.2437,6.8804,37.5932,-1.2259,7.016,49.5513,-0.7638,7.0201,49.5497,-0.8083,6.9274,49.5468,-0.8175,7.0508,49.5197,-0.7506,7.1647,49.2896,-0.7406,7.0622,49.516,-0.7939,6.6062,46.2684,-1.5309,6.6976,46.2634,-1.6066,6.7124,45.1897,-1.6602,6.0491,48.2869,-1.4078,6.2941,47.6465,-1.2397,6.2827,47.693,-1.237,6.3312,47.6457,-1.343,6.5038,47.7147,-1.5414,6.5152,47.6679,-1.5391,6.4228,47.6512,-1.4629,6.4942,48.2607,-1.6554,6.4517,48.3756,-1.7157,6.7772,48.6491,-1.6418,6.4885,48.4946,-1.7416,6.3069,47.7963,-0.9332,6.3291,47.6834,-0.9621,6.385,47.7335,-0.75,5.9963,48.3043,-1.0574,6.1143,48.2253,-1.0371,6.2551,47.8206,-1.0915,6.2442,47.8197,-1.2536,6.8166,49.311,-0.3992,6.8682,49.1486,-0.3817,6.8709,49.3574,-0.4008,6.741,49.4193,-0.3831,6.829,49.4051,-0.4377,6.8224,49.4542,-0.489,6.928,49.3592,-0.4057,6.9883,49.3944,-0.4461,6.9244,49.4223,-0.4427,6.9791,49.3268,-0.4123,6.8783,49.4189,-0.4426,6.8994,49.487,-0.5899,6.6755,49.3514,-0.3424,6.6597,49.3727,-0.3537,6.6051,49.3427,-0.3378,6.6978,49.3474,-0.3478,6.7095,49.323,-0.3361,6.7167,49.3392,-0.3586,6.735,49.3298,-0.364,6.6408,49.3089,-0.3043,6.6867,49.2189,-0.2497,6.7287,49.2411,-0.2706,6.7579,49.2576,-0.3725,6.7405,49.2547,-0.3601,6.9253,49.5744,-0.8084,6.8504,49.5486,-0.6107,6.0381,48.7395,-0.4454,6.0569,48.7247,-0.4447,6.1704,48.9741,-0.3178,6.1631,48.979,-0.32,6.3487,49.2155,-0.3041,6.2054,48.9542,-0.3358,6.3327,49.2342,-0.2982,6.9946,49.56,-1.075,7.0175,49.3911,-1.4169,7.0127,49.413,-1.4294,6.9893,49.5223,-1.0566,6.6334,48.9155,-1.8956,6.3545,48.6294,-1.8646,6.3401,48.65,-1.8797,6.6446,48.8964,-1.8706,5.7973,48.3711,-1.064,5.8964,48.4718,-0.7468,5.8772,48.4831,-0.7537,5.8236,48.3609,-1.0602,5.9923,48.5709,-0.5759,5.9169,48.462,-0.7351,5.9658,48.575,-0.5792,6.0979,48.7013,-0.4531,6.6043,43.956,-1.291,6.6057,43.9529,-1.2512,6.555,45.1122,-1.1695,6.6886,41.8087,-1.2984,6.6777,38.7967,-1.7637,6.6635,38.8012,-1.7112,6.7671,39.5175,-1.7047,6.5602,38.2392,-1.7887,6.5289,38.0555,-1.828,6.4761,38.0688,-1.8101,7.2378,46.2517,-0.7336,7.2638,46.2587,-0.7667,7.2518,47.2762,-0.7152,7.2008,42.8855,-0.9512,7.1556,42.8883,-0.9656,7.2203,40.7161,-1.221,7.2127,41.8213,-1.1019,7.0426,38.8113,-1.2768,7.109,38.8196,-1.2521,7.1486,39.5525,-1.2408,8.0767,38.5323,-1.7268,8.0283,38.6597,-1.7668,7.9539,38.6476,-1.6938,8.3094,37.3867,-1.3459,8.3191,37.5366,-1.3716,8.2906,37.3979,-1.2636,8.0718,37.5989,-1.7978,8.183,37.6631,-1.6493,8.0612,37.4402,-1.7169,8.3175,37.6686,-1.428,8.287,37.7415,-1.5321,8.297,37.7535,-1.4653,8.2973,37.6805,-1.379,8.286,37.7624,-1.4133,8.078,38.1599,-1.9155,8.0169,38.3354,-1.9397,8.103,38.2051,-1.9111,8.1295,38.3684,-1.7588,8.1757,38.2023,-1.7246,8.178,38.2332,-1.8027,8.0923,38.2926,-1.9047,8.0371,38.4086,-1.9181,8.1419,38.3124,-1.8335,8.0993,38.4232,-1.8337,8.1858,38.1434,-1.8118,8.187,38.0423,-1.7738,8.2327,38.0072,-1.546,8.1792,37.9574,-1.7451,8.158,38.2774,-1.6468,6.5109,38.2407,-1.763,6.5564,38.3491,-1.7598,6.5914,38.3501,-1.7865,6.8218,38.3591,-1.8706,6.8137,38.2575,-1.8557,6.6803,38.353,-1.8253,6.6793,38.2349,-1.8261,7.7339,38.1934,-1.9779,7.63,38.3335,-1.958,7.7072,38.3372,-1.9885,7.6902,38.3556,-1.4361,7.1474,37.6579,-1.4378,7.0676,37.6644,-1.46,7.1157,37.7357,-1.4785,7.1678,37.7215,-1.4705,7.1862,37.7821,-1.5011,7.0661,37.7754,-1.502,7.1055,37.8087,-1.5295,7.141,37.8306,-1.5466,7.1824,37.8454,-1.5586,7.2328,37.8369,-1.5543,7.2669,37.8157,-1.5384,7.2591,37.7704,-1.5085,7.2387,37.745,-1.4899,7.2048,37.7273,-1.4761,7.0182,37.6841,-1.4774,6.9509,37.7394,-1.5398,7.0198,37.8217,-1.5797,7.1928,37.9118,-1.6189,7.2818,37.8792,-1.6296,7.3354,37.7549,-1.5197,7.3554,37.8199,-1.6218,7.3058,37.7192,-1.4909,7.2808,37.6894,-1.4668,6.8465,38.0616,-1.8494,7.0092,38.076,-1.7898,7.3431,38.003,-1.8032,7.4622,37.9368,-1.8695,7.4764,37.8329,-1.7292,7.3292,37.9198,-1.7037,7.547,37.4357,-1.7707,7.4697,37.3593,-1.7042,7.4666,37.5196,-1.6437,7.5873,37.5053,-1.8054,7.6296,37.5554,-1.8822,7.6348,37.4651,-1.8564,7.4389,37.5809,-1.5983,7.405,37.6554,-1.5394,7.4869,37.608,-1.643,7.5309,37.7134,-1.7017,7.4495,37.7176,-1.5742,7.5099,37.7755,-1.7103,7.7181,37.5108,-1.93,7.5373,37.6442,-1.7048,7.507,37.5937,-1.6704,7.1591,38.8201,-1.9149,6.8441,38.801,-1.9049,7.1625,39.5101,-1.9466,6.7204,38.6026,-1.5161,6.851,38.6034,-1.4047,6.8725,38.8043,-1.3792,6.7583,38.7977,-1.5343,7.9297,38.8621,-1.8444,7.9361,38.8673,-1.7682,8.0011,38.6453,-1.8475,7.1838,38.6048,-1.9072,7.1124,38.6066,-1.901,6.3245,37.6423,-1.4852,6.3209,37.691,-1.5179,6.2859,37.631,-1.5227,6.6823,38.5891,-1.8237,7.3468,38.2392,-1.2611,7.2995,38.175,-1.2562,7.2826,38.1271,-1.2693,7.1935,38.0711,-1.3107,7.615,39.6114,-1.6944,7.4424,40.729,-1.5515,7.4941,39.6017,-1.5493,7.4488,43.9858,-1.0924,7.4457,43.9818,-1.0235,7.352,42.8813,-1.0312,7.3246,46.2735,-0.9579,7.3634,47.2947,-0.8977,7.2393,45.1755,-1.6624,7.1847,46.2815,-1.5973,7.2637,46.2898,-1.5471,6.823,46.2089,-0.7935,6.8961,45.1129,-0.8763,6.9279,46.2104,-0.7539,7.339,45.1833,-1.5397,7.3051,46.29,-1.4366,7.0475,45.155,-1.7404,7.059,46.2683,-1.6773,7.2409,49.059,-1.5406,7.0823,49.19,-1.5363,7.0981,49.2268,-1.471,6.9924,49.5012,-0.9982,7.0712,49.324,-1.3584,7.0285,49.3706,-1.4071,7.0482,49.2555,-1.4939,6.9964,49.2567,-1.5246,6.6767,48.8212,-1.7495,6.7322,48.7916,-1.7012,6.408,48.4949,-1.7824,7.0293,49.437,-1.1159,7.0159,48.719,-1.6429,6.9608,48.4423,-1.6248,6.8753,48.5192,-1.6392,6.4989,46.2789,-1.3128,6.5634,45.1451,-1.4258,6.5063,46.2674,-1.2485,6.607,48.6466,-1.7352,8.1118,38.0321,-1.8953,8.1405,38.128,-1.8776,6.4529,47.7312,-0.6154,6.4703,47.319,-0.7602,6.4912,47.3198,-0.7363,6.4272,47.7339,-0.6642,6.5825,46.2054,-0.8843,6.6106,45.1051,-1.0641,6.5427,46.2115,-0.9348,6.8949,47.32,-0.6491,6.8192,47.3163,-0.639,6.6459,46.2063,-0.8603,6.7128,47.3161,-0.6576,6.5996,47.3162,-0.6773,6.5536,47.7353,-0.5789,6.5161,47.3216,-0.7159,6.4781,47.7294,-0.5961,7.3691,48.6845,-1.3944,7.3169,48.3886,-1.4411,7.3092,48.6252,-1.5344,7.3908,48.4518,-1.3218,7.3806,48.2095,-1.2414,7.0923,48.7563,-1.6379,7.2349,48.6263,-1.5986,7.2483,48.6932,-1.5963,7.3297,48.7718,-1.5281,7.3603,48.7477,-1.4249,7.3243,48.6994,-1.5304,7.2417,49.1152,-1.059,7.2987,49.0117,-1.2253,7.2308,49.1313,-1.1647,7.175,47.3008,-1.4571,7.2789,47.295,-1.3421,6.9286,48.8511,-1.6441,6.4948,48.4767,-0.1943,6.4337,48.4747,-0.208,6.4181,48.3124,-0.2836,6.2565,48.4944,-0.4506,6.8561,48.5847,-0.3674,6.8667,48.8188,-0.3846,6.8332,48.793,-0.3454,7.3399,48.7462,-0.7172,7.1785,48.9393,-0.4803,7.2204,48.7314,-0.5213,7.2753,48.9435,-0.696,7.3185,48.9599,-1.1989,7.3601,48.8185,-1.2256,7.3726,48.8212,-1.2789,7.0927,49.1056,-1.6221,7.2551,48.8686,-1.5742,6.9936,48.8984,-1.6293,6.9578,49.047,-0.38,6.899,49.0075,-0.4005,6.9431,48.8695,-0.4162,6.4174,49.6498,-1.5787,6.233,49.6178,-1.5453,6.2584,49.6458,-1.5046,6.3751,49.58,-1.6487,6.5201,49.6,-0.4528,6.5972,49.5066,-0.345,6.6265,49.5273,-0.3596,6.5435,49.2388,-0.2625,6.5992,49.2637,-0.2674,6.5454,49.3216,-0.3141,6.1928,49.7255,-0.9947,6.222,49.7477,-1.002,6.1405,49.6895,-1.174,7.0379,49.4772,-0.9834,7.0781,49.469,-0.937,7.1468,49.3144,-1.1049,6.8316,48.5729,-0.2734,6.8316,48.5651,-0.2546,6.8282,48.3977,-0.3232,6.8286,48.5776,-0.2861,6.8183,48.9224,-0.2174,6.2744,48.2692,-0.5356,6.3099,48.3401,-0.4076,6.3282,48.2329,-0.4643,6.2463,48.6281,-0.3975,6.321,48.6405,-0.2873,6.3274,48.7343,-0.2695,6.4242,48.1871,-0.3596,6.4634,48.1949,-0.353,6.8111,48.7173,-0.1399,6.7841,48.9045,-0.1168,6.6788,48.6895,-0.1417,6.4071,48.8892,-0.1815,6.4024,48.7671,-0.1827,6.466,48.9388,-0.1447,6.5943,48.8613,-0.094,6.5864,49.0176,-0.1361,6.4878,48.8068,-0.1244,6.9329,49.2002,-0.3868,6.7804,47.9063,-0.5124,6.8583,48.3613,-0.3703,6.8129,48.2966,-0.3489,6.8622,47.9408,-0.5499,6.4014,48.9802,-0.2172,6.4456,49.0448,-0.1983,6.3702,49.1764,-0.3181,6.8303,49.6497,-0.6179,6.679,49.5573,-0.3955,6.8413,49.6045,-0.6112,6.7012,49.5179,-0.3814,6.3058,49.2665,-0.2994,6.4671,49.3736,-0.2823,6.4588,49.4069,-0.29,6.3263,49.2409,-0.2998,6.9093,49.6691,-0.8165,6.9233,49.6342,-0.8044,6.9953,49.5927,-1.0883,6.9807,49.6199,-1.1199,6.3105,48.7075,-1.8882,6.6036,48.9494,-1.9125,6.4747,49.236,-0.2899,6.4871,49.2738,-0.3006,6.7385,37.4227,-1.0092,6.8201,37.3991,-0.9945,6.8429,37.4348,-1.0363,6.9405,37.4791,-1.1659,6.9218,37.4572,-1.1423,6.9797,37.4527,-1.1622,7.0346,37.634,-1.3882,7.1334,37.7255,-1.3879,6.9208,37.7284,-1.3339,6.9434,37.6427,-1.3572,6.9631,37.6625,-1.4004,6.7767,37.467,-1.1197,6.8135,37.4643,-1.1284,6.7838,37.4809,-1.1255,6.8728,37.4608,-1.1295,6.8174,37.4861,-1.1341,7.2374,37.5171,-1.1655,7.2875,37.5557,-1.1585,7.239,37.521,-1.1755,7.2869,37.5484,-1.1504,6.915,37.4585,-1.1241,6.8641,37.4619,-1.0868,6.9069,37.4539,-1.102,6.8671,37.4621,-1.1077,6.7877,37.4611,-1.0768,6.7985,37.4666,-1.0986,6.7475,37.4638,-1.0741,6.6384,37.3871,-1.0964,6.7109,37.4318,-1.0291,7.1941,37.49,-1.2061,7.1898,37.4867,-1.191,7.2544,37.5118,-1.1453,7.2792,37.5133,-1.1327,7.2216,37.4397,-1.116,7.2017,37.4525,-1.1414,7.1922,37.4804,-1.1788,7.1601,37.4718,-1.1783,7.1652,37.4663,-1.2053,7.0974,37.4504,-1.165,7.0307,37.4475,-1.1525,7.0931,37.3989,-1.1281,7.023,37.408,-1.1067,7.2049,37.9934,-1.3371,7.1949,37.7986,-1.3722,7.3514,37.6219,-1.301,7.2609,37.5799,-1.3875,7.2682,37.5725,-1.3254,7.3895,37.6562,-1.2808,7.3445,37.6442,-1.3116,6.9224,37.8741,-1.2653,6.9002,37.8872,-1.2606,6.8554,37.7976,-1.2588,6.8746,37.7919,-1.2692,7.1409,37.8014,-1.3732,7.1739,37.8235,-1.3681,7.1535,37.7668,-1.3793,7.1858,37.7209,-1.3869,7.3051,37.6678,-1.3328,7.7039,36.993,-1.6279,7.6987,36.9264,-1.5682,7.6874,36.9198,-1.5698,7.6296,36.832,-1.4266,7.6787,36.8577,-1.4876,7.6572,36.8396,-1.4176,7.6581,36.8555,-1.4917,7.6397,37.1278,-1.7482,7.6673,37.1791,-1.7973,7.678,37.1204,-1.765,7.6586,37.6362,-1.2043,7.7173,37.6826,-1.2213,7.7197,37.6745,-1.2373,7.724,36.9938,-1.0396,7.7127,36.9918,-1.053,7.7267,36.946,-1.1159,7.8617,37.7294,-1.2666,7.8988,37.7177,-1.2552,7.7085,37.8263,-1.3314,7.7749,37.7424,-1.2801,7.9347,37.709,-1.2423,8.1338,37.5629,-1.0169,8.1342,37.5108,-0.9482,8.1505,37.5022,-0.9974,8.1745,37.385,-0.9084,8.1212,37.4795,-0.9041,8.1306,37.4033,-0.878,8.1726,37.4659,-1.0585,8.171,37.4372,-0.9746,8.1798,37.41,-1.0401,8.1816,37.3914,-0.9945,8.1566,37.4552,-0.9335,8.0044,36.8572,-1.2178,7.9391,36.8729,-1.3543,8.0292,36.8639,-1.2126,8.1135,37.635,-1.2298,8.0805,37.6324,-1.1405,8.135,37.5794,-1.1027,7.9879,37.6966,-1.1747,8.0375,37.6794,-1.0802,8.0636,37.6563,-1.1062,7.9791,37.7013,-1.0693,8.0037,37.6928,-1.0704,8.1478,37.7527,-1.3025,7.9399,37.9535,-1.4103,8.097,37.9887,-1.4487,8.1975,37.5258,-1.2545,6.9369,37.8337,-1.6289,6.7381,37.6878,-1.6357,6.7328,37.7391,-1.6836,6.7368,37.6677,-1.6156,6.8426,37.7036,-1.5777,7.2481,37.5873,-1.4288,7.3269,37.6352,-1.4596,7.3311,37.6215,-1.4605,7.2432,37.6044,-1.4345,7.0056,37.5825,-1.4473,7.1283,37.5734,-1.4126,7.1309,37.5477,-1.4417,7.009,37.5556,-1.4692,6.93,37.6149,-1.4737,6.9312,37.5845,-1.4976,6.8545,37.3203,-1.8108,6.9198,37.4008,-1.645,6.8988,37.2888,-1.7812,6.7372,37.7987,-1.7542,6.746,37.8509,-1.8287,6.6389,37.7305,-1.8325,6.6592,37.8226,-1.8573,6.5107,37.5426,-1.8434,6.611,37.5696,-1.8101,6.6071,37.5261,-1.81,6.7022,37.3725,-0.9701,6.4138,38.027,-1.7962,6.4503,38.0029,-1.8173,6.4065,37.9519,-1.8269,6.6162,37.3682,-1.8329,6.6696,37.4478,-1.8017,6.7762,37.3025,-1.8047,7.0957,37.9254,-1.3064,6.3519,37.8765,-1.8361,6.4193,37.8698,-1.8509,6.5197,37.8855,-1.8529,6.6554,37.9553,-1.8644,6.6573,37.8889,-1.8609,6.5231,37.9703,-1.8398,6.6882,37.8972,-1.8581,6.7179,37.9719,-1.8589,6.8508,37.968,-1.8079,6.6249,37.9619,-1.3574,6.6468,37.9612,-1.3412,6.6569,38.0427,-1.3631,6.068,37.3011,-1.8179,6.1002,37.2368,-1.8153,6.0821,37.2397,-1.7904,6.0891,37.2998,-1.8372,6.1044,37.1703,-1.7628,6.1461,37.1109,-1.753,6.1309,37.1103,-1.7393,6.1207,37.1693,-1.7838,6.2372,37.7922,-1.8336,6.1591,37.7159,-1.8258,6.2245,37.7954,-1.8042,6.1619,37.6972,-1.8476,6.1384,37.2394,-1.586,6.1373,37.1652,-1.5922,6.1807,37.1429,-1.5161,6.0935,37.2441,-1.6437,6.0954,37.1815,-1.7034,6.1023,37.1864,-1.6605,6.0665,37.2452,-1.7115,6.3103,36.9977,-1.5964,6.316,36.9926,-1.6148,6.3683,36.9925,-1.5794,6.2624,37.002,-1.6104,6.2539,36.9862,-1.5844,6.2154,37.0061,-1.6239,6.2698,37.3314,-1.4017,6.2273,37.2313,-1.4626,6.2667,37.2187,-1.4228,6.2261,37.3385,-1.4337,6.2611,37.187,-1.419,6.313,37.2056,-1.3869,6.2679,37.1038,-1.4496,6.2745,37.0685,-1.4719,6.3236,37.0345,-1.4526,6.3198,37.091,-1.4283,6.2854,37.807,-1.8467,6.3652,37.7111,-1.8771,6.2984,37.7161,-1.8745,6.3596,37.7944,-1.8624,6.3655,37.1352,-1.7859,6.317,37.2208,-1.848,6.3789,37.2356,-1.8486,6.3036,37.1241,-1.7764,6.4269,37.787,-1.8732,6.4313,37.7079,-1.8724,6.2942,37.0748,-1.7276,6.2393,37.0783,-1.7444,6.2442,37.1223,-1.7753,6.2892,37.0439,-1.7042,6.2846,37.03,-1.6895,6.235,37.0321,-1.7084,6.8225,37.6392,-1.1904,6.7236,37.6479,-1.1883,6.8062,37.5657,-1.1595,6.8519,37.6317,-1.1894,6.6136,37.6634,-1.2651,6.6326,37.6611,-1.2304,6.6272,37.7981,-1.2975,6.6605,37.5277,-1.1452,6.1607,37.0761,-1.6468,6.1448,37.1388,-1.608,6.1192,37.138,-1.6794,6.157,37.0762,-1.7172,6.2275,37.0047,-1.666,6.1511,37.0764,-1.7066,6.4008,37.0737,-1.6874,6.3559,37.1147,-1.7496,6.4116,37.1096,-1.7339,6.3455,37.0733,-1.7095,6.158,37.7176,-1.7941,6.2137,37.6184,-1.8834,6.2011,37.7229,-1.8605,6.1597,37.6173,-1.8749,6.1771,37.0788,-1.7307,6.2067,37.0805,-1.7403,6.516,37.676,-1.8572,6.5169,37.7172,-1.856,6.2037,37.5412,-1.5047,6.1271,37.4735,-1.5161,6.1743,37.4514,-1.4541,6.1634,37.5627,-1.5445,6.6756,37.1689,-1.7663,6.6313,37.1889,-1.7836,6.6149,37.2819,-1.8281,6.1478,37.2452,-1.8387,6.1969,37.1916,-1.8141,6.1643,37.1802,-1.8071,6.1941,37.2484,-1.8537,6.1907,37.1139,-1.7659,6.7218,37.234,-1.8019,6.7527,37.2128,-1.8089,6.737,37.1266,-1.7804,6.7192,37.0408,-1.7597,8.3093,37.3604,-1.336,6.7644,37.1982,-1.8381,6.782,37.0839,-1.8561,6.7547,37.0906,-1.8486,6.791,37.1969,-1.8407,7.4671,37.1464,-1.6767,7.4665,37.2111,-1.6778,7.469,37.2828,-1.6719,7.6761,37.243,-1.8367,6.8916,37.185,-1.7986,6.8464,37.2041,-1.8487,8.1102,37.5722,-0.9717,8.1534,37.5226,-1.0806,7.1812,37.5431,-1.3449,7.1447,37.4701,-1.2325,7.1679,37.4704,-1.2281,7.135,37.4521,-1.2126,7.6225,37.5472,-1.1217,7.6011,37.532,-1.1453,8.0859,37.6352,-1.003,8.0364,37.6595,-0.9968,7.9307,36.9324,-1.002,7.9409,36.8769,-1.1078,7.9596,36.9319,-1.0025,7.148,37.4068,-1.5786,7.1219,37.4017,-1.5818,7.671,37.0579,-1.0366,7.6832,36.9957,-1.0739,7.6979,37.055,-1.0079,7.6971,36.9483,-1.1299,7.7107,36.9047,-1.1997,7.7177,36.8951,-1.2574,7.7433,36.9021,-1.1898,7.7519,36.8993,-1.2522,7.7171,36.875,-1.4977,7.7265,36.944,-1.5698,7.7374,36.8863,-1.5026,7.7554,37.0015,-1.6331,7.7259,37.0028,-1.6302,6.6769,37.0017,-1.6288,6.6446,37.0798,-1.6674,6.6824,37.0452,-1.6874,6.6438,37.0418,-1.5989,7.6797,37.0694,-1.712,7.6736,36.9812,-1.6318,7.0878,37.0481,-1.6411,7.1783,37.1037,-1.6136,7.0871,36.9931,-1.593,7.1793,37.044,-1.5733,6.6447,37.1083,-1.7186,6.6915,37.0776,-1.7256,7.5572,36.8188,-1.3471,7.5891,36.8228,-1.408,7.6001,36.8202,-1.366,7.62,36.8423,-1.48,7.6509,36.9071,-1.5708,7.9123,36.876,-1.3445,7.8646,36.8845,-1.4036,7.8426,36.8915,-1.41,6.5824,37.3941,-1.2004,6.5784,37.2883,-1.2219,6.6125,37.2933,-1.107,6.5975,37.2208,-1.1171,6.5782,37.252,-1.229,6.5841,37.1174,-1.2633,6.5793,37.1034,-1.1357,6.6376,36.9162,-1.4365,6.6545,36.9296,-1.4688,6.6604,36.8331,-1.4364,6.6649,36.9326,-1.5208,6.6695,36.8305,-1.5401,6.668,36.8262,-1.5042,6.6688,37.071,-0.9172,6.6224,37.1829,-0.9389,6.5916,37.0604,-0.9438,6.6429,36.8684,-1.3552,6.5949,36.6478,-1.2964,6.5775,36.6746,-1.2392,7.294,36.8961,-1.2083,7.3138,36.8946,-1.2066,7.2804,36.9349,-1.1357,8.0925,36.9165,-1.1524,8.1093,36.99,-1.2069,8.1267,36.9617,-1.0736,6.6686,36.785,-1.0455,6.5778,36.7565,-1.103,6.6774,36.737,-1.0887,8.0679,37.0931,-0.8875,8.047,37.0934,-0.8793,8.0467,37.0064,-0.9395,7.717,37.0547,-0.9807,7.1546,37.2741,-1.6392,7.0697,37.2671,-1.6721,7.043,37.386,-1.5915,6.6136,37.4537,-1.8264,6.6227,37.5272,-1.8012,6.5134,37.3934,-1.8632,6.5351,37.305,-1.8464,6.5112,37.3115,-1.8518,8.2026,37.2856,-0.9302,8.2004,37.2167,-0.9253,8.0505,37.1972,-0.8308,8.0904,37.3161,-0.8355,8.0424,37.3102,-0.8274,8.0878,37.2022,-0.8432,6.6651,37.2985,-0.9507,6.7267,37.1931,-0.9316,6.7831,37.3132,-0.9673,6.7667,37.0594,-0.9319,6.8215,37.1832,-0.9655,6.5205,37.29,-1.3123,6.5518,37.1596,-1.3475,6.1921,37.2464,-1.514,6.1812,37.3474,-1.4776,6.8346,37.5533,-1.1577,6.7754,36.9676,-1.8487,6.7474,36.9798,-1.8363,6.7518,36.9718,-0.9367,6.8972,37.0473,-0.9831,6.5499,36.9506,-1.0073,6.5891,37.0546,-1.1724,6.5698,37.0728,-0.9685,6.6461,36.6233,-1.4788,6.6171,36.6312,-1.3726,6.2093,37.0135,-1.5997,6.6296,36.9324,-1.3991,6.5938,36.9774,-1.4207,6.6026,36.968,-1.4386,6.617,36.9637,-1.3581,6.8678,49.5256,-0.6031,6.1701,48.3352,-1.5899,7.2807,48.1917,-1.4121,7.3981,48.6396,-1.2313,7.3746,48.7742,-1.3134,7.0175,49.4827,-1.0143,7.1335,49.3293,-1.1984,7.1739,49.3111,-1.0298,7.4178,48.203,-1.0843,7.4057,48.6058,-1.0829,7.191,49.3127,-0.9461,7.1133,49.4521,-0.8842,7.0689,49.3431,-0.5001,7.0897,49.2482,-0.4896,7.0127,49.4572,-0.5298,6.9688,49.4866,-0.5441,6.8009,49.2815,-0.3836,7.0307,48.687,-0.4211,6.992,48.6655,-0.4511,7.0689,48.4667,-0.4894,6.9041,48.3978,-0.4342,6.0903,49.6071,-1.3597,6.0999,49.6501,-1.1691,6.4959,49.4319,-0.3023,6.422,49.5209,-0.407,6.0211,49.5713,-1.1895,6.0595,49.6107,-1.1643,5.9826,49.532,-1.2146,5.8828,49.4186,-1.1385,5.9049,49.4555,-1.0944,5.9479,49.4635,-1.3145,5.9494,49.497,-1.2598,5.9532,49.4616,-1.3793,5.8385,49.328,-1.2875,5.8644,49.2999,-1.3979,5.9853,49.4607,-1.4388,6.1635,49.5516,-1.5597,6.0844,49.5048,-1.5393,6.9503,49.376,-1.594,6.91,49.5894,-1.4959,6.9919,49.472,-1.4531,6.8326,49.4824,-1.6223,6.2838,49.6737,-1.4639,6.2818,49.7177,-1.3645,6.8373,49.7843,-1.2233,6.9279,49.7275,-1.1752,6.7971,49.6423,-1.5199,6.8412,49.7578,-0.8756,6.2274,49.7341,-1.2679,6.1823,49.7097,-1.2053,6.5964,47.8461,-1.6037,6.3467,48.2266,-1.6194,6.4715,47.8356,-1.5523,7.4051,47.7911,-0.8254,7.2655,47.8044,-0.6745,7.1646,47.7992,-0.6362,7.0298,47.3214,-0.6713,7.151,47.3174,-0.6563,7.0766,47.8008,-0.6297,6.3432,47.4085,-1.1947,6.2955,47.6526,-1.1321,7.0901,47.8095,-1.5574,7.0722,47.3042,-1.5872,7.2282,47.8145,-1.4397,7.1381,46.2302,-0.7053,6.531,46.2295,-1.0357,6.4439,47.3111,-0.8523,7.3342,47.2889,-1.2363,7.3555,46.2892,-1.266,7.3454,47.2911,-1.1071,7.3659,46.2845,-1.0999,7.0915,46.2236,-0.7108,7.1061,45.1061,-0.7708,6.8892,43.9979,-1.8062,6.7928,43.9966,-1.7217,6.9092,45.1547,-1.75,7.4555,43.9942,-1.2401,7.4057,45.1869,-1.201,6.9326,42.8749,-1.8417,6.8405,42.8445,-1.7889,7.3029,44.0095,-1.6784,7.3082,42.8857,-1.7017,7.4004,43.9881,-1.5426,7.4412,43.9975,-1.3932,7.2763,42.883,-0.9763,7.0668,42.8928,-1.8333,7.3232,41.8823,-1.7468,7.1596,41.8979,-1.9223,7.4114,41.8836,-1.3199,6.7987,40.683,-1.7835,7.042,41.884,-1.939,7.2289,40.7426,-2.0111,6.9338,41.8563,-1.8767,7.0223,40.7252,-2.0068,7.4876,40.7485,-1.8023,7.3968,39.5294,-2.0007,6.6806,38.7992,-1.6349,6.769,39.5254,-1.6367,6.6604,38.801,-1.6786,7.4165,38.6136,-1.9182,7.3431,38.3479,-1.909,7.2638,39.544,-1.2911,7.2988,38.8331,-1.2929,7.3812,39.5811,-1.4259,7.4516,38.849,-1.3998,7.2046,39.5502,-1.2605,7.1686,38.8247,-1.2603,6.713,38.7975,-1.8265,6.837,39.4865,-1.8564,7.3262,38.8315,-1.9274,7.7105,39.6324,-1.805,7.8566,38.8639,-1.7045,7.6721,39.2433,-1.6778,7.7482,38.8663,-1.6362,7.6017,38.8531,-1.5073,7.6482,38.6249,-2.0098,7.7927,38.3528,-2.0,7.6368,38.6372,-1.4872,7.8595,38.3626,-1.5163,7.7979,38.6367,-1.6009,7.5106,38.2259,-1.3268,7.1781,38.2548,-1.2734,7.0834,37.6067,-1.3803,7.1836,38.1716,-1.2915,7.0925,38.1186,-1.277,7.1811,37.605,-1.3789,7.2404,37.6181,-1.3859,6.5304,38.0783,-1.518,6.7353,38.2512,-1.3928,6.5862,38.2594,-1.5186,6.9615,38.2444,-1.2555,7.0522,38.1685,-1.2653,6.1941,37.0767,-1.5552,6.3485,36.9714,-1.5083,6.2956,36.9747,-1.5466,6.2212,37.1221,-1.4806,6.2181,37.1635,-1.4642,6.2324,37.631,-1.5565,6.252,37.7213,-1.6123,7.8838,38.2255,-1.474,7.897,37.9288,-1.4015,8.14,37.3092,-0.8604,8.091,37.4153,-0.8512,8.2955,37.2883,-1.3086,8.264,37.3178,-1.2305,8.0092,37.6804,-1.1908,8.3043,37.5431,-1.3341,8.2322,37.4593,-1.186,8.1905,37.3617,-1.1574,8.1539,37.0361,-1.0067,7.6519,37.7428,-1.9301,7.7282,37.9154,-1.9917,8.0083,37.0106,-1.512};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getlhumrus_Coord_6_439_point_2()
		{
			double[] value = {7.893,37.0191,-1.5797,8.1763,37.0655,-1.4143,7.883,37.0828,-1.6208,8.0609,37.1703,-1.595,8.0507,37.1121,-1.5486,7.6962,37.362,-1.8787,8.2115,37.3372,-1.5516,8.0644,37.2985,-1.6526,8.1932,37.4858,-1.5929,7.8857,37.3879,-1.8351,7.8838,37.5575,-1.8891,6.5186,37.8011,-1.8669,6.3416,37.0568,-1.6975,6.6068,36.9907,-1.2282,6.5502,36.8575,-1.0598,6.6723,36.6549,-1.574,6.6428,37.0087,-1.5391,6.6704,36.9534,-1.5639,6.9518,36.7406,-1.3309,6.8065,36.6539,-1.4302,6.9537,36.7559,-1.4044,6.7962,36.6473,-1.3454,7.5714,37.9553,-1.9519,7.4429,38.0608,-1.8711,7.4227,38.2195,-1.91,7.1176,38.3887,-1.8681,6.8955,38.368,-1.8703,7.4073,37.7334,-1.5388,7.4287,37.7265,-1.5422,7.593,37.6983,-1.8621,7.3211,37.3098,-1.6633,7.3201,37.2802,-1.6523,7.2285,37.283,-1.6417,7.5653,37.4198,-1.7904,6.7486,37.4364,-1.7338,6.8377,37.4372,-1.7,7.433,37.4979,-1.6262,7.4008,37.5596,-1.5631,7.2507,37.5639,-1.4558,7.2628,37.5449,-1.4877,6.9638,37.2747,-1.74,6.8022,37.3067,-1.8025,7.4718,37.1036,-1.6622,7.6383,37.0801,-1.7007,6.9357,37.6273,-1.4755,7.1429,38.0799,-1.7675,7.1202,38.2797,-1.8517,6.7486,38.0465,-1.8598,6.6918,37.7524,-1.8085,7.1841,38.3828,-1.8742,7.0237,37.2824,-1.0732,7.0878,37.2892,-1.0864,7.0911,37.3653,-1.1075,7.024,37.3747,-1.0874,6.6233,36.9764,-1.4934,6.6537,38.0216,-1.8679,8.1935,37.1511,-1.4584,7.9673,36.8542,-1.2176,8.1898,37.373,-0.9499,8.2387,37.3323,-1.2028,6.6378,37.308,-0.9741,6.6727,37.3802,-0.9927,8.0459,38.2652,-1.5669,7.8059,37.0059,-1.6245,7.7794,37.0654,-1.6862,7.9333,37.7135,-1.0704,7.9175,37.7147,-1.0717,7.9447,37.6838,-1.0037,6.3082,37.5383,-1.4413,6.2049,37.646,-1.5751,6.2223,37.448,-1.4181,6.1348,37.2696,-1.5739,6.0879,37.2921,-1.6308,6.7646,37.4688,-1.098,7.1273,37.5981,-1.3791,7.2624,37.6921,-1.3704,7.1745,38.3764,-1.2703,7.3089,38.628,-1.2933,7.1672,38.6197,-1.264,7.3342,38.3688,-1.2719,8.1192,38.4049,-1.6868,8.0563,38.5144,-1.8366,7.8139,38.6364,-1.9976,7.8847,38.4965,-1.9817,6.8402,38.593,-1.9049,6.8289,39.5271,-1.4964,7.3622,40.7169,-1.3556,6.8931,40.7147,-1.268,6.9572,39.5433,-1.3559,6.6009,43.9782,-1.5296,7.2842,45.13,-0.8208,7.1943,43.9618,-0.8764,7.2562,43.9586,-0.8904,7.1495,45.1084,-0.7638,6.912,47.7911,-1.6013,6.6837,48.2472,-1.6342,6.9124,48.2128,-1.5971,6.7492,49.726,-0.6912,5.8606,49.3818,-1.1827,7.0773,48.0205,-0.5862,7.1402,48.0423,-0.5882,7.021,48.436,-0.4729,6.9963,48.9035,-0.3636,6.9816,49.1948,-0.4016,7.2686,48.5181,-0.5637,7.1283,48.4761,-0.5033,7.0893,48.6926,-0.4279,7.1346,49.0808,-0.4773,7.2074,49.0944,-0.7187,7.1075,49.3453,-1.2824,6.864,48.8579,-1.6669,6.6526,48.8798,-1.8395,6.5161,48.6452,-1.785,6.824,48.5837,-0.3087,6.3355,48.8554,-0.2747,6.3018,48.9142,-0.3654,6.1844,48.1252,-0.9947,6.7994,36.8545,-1.8086,6.7583,36.8542,-1.8156,6.8125,36.9588,-1.8485,6.5709,36.9336,-0.9836,6.6466,36.9494,-0.9354,6.7843,36.7447,-1.0999,6.7913,36.694,-1.1743,6.9407,36.7937,-1.1613,8.1788,37.1246,-0.9565,7.8372,37.0041,-0.9522,7.8279,37.072,-0.9049,7.7609,37.0608,-0.9409,7.7738,37.0033,-0.9951,6.2464,36.9949,-1.5599,6.2362,37.0627,-1.5213,6.7073,36.9908,-1.7251,6.6241,36.9268,-1.284,6.6126,36.9826,-1.3454,7.3328,36.9237,-1.4596,7.3279,36.9011,-1.3993,7.2458,36.9133,-1.4033,7.2501,36.9422,-1.4531,7.8862,36.8733,-1.3331,7.3182,36.8879,-1.3607,7.2412,36.9063,-1.3624,7.449,37.6208,-1.1311,6.6932,36.9287,-1.6672,7.5949,37.3097,-1.019,7.6313,37.3093,-1.0283,7.6189,37.3927,-1.0624,7.5875,37.3985,-1.0507,7.174,37.4137,-1.5808,8.0836,37.4997,-0.8754,8.1045,37.5379,-0.9321,7.887,36.8857,-1.1179,7.9213,36.8554,-1.2211,7.573,37.5375,-1.1337,7.0617,37.5522,-1.3446,7.0122,37.5011,-1.2374,7.0454,37.4869,-1.2397,7.2715,37.4599,-1.1077,7.6673,37.489,-1.0358,7.66,37.5586,-1.0914,7.6338,37.4792,-1.0776,8.1202,37.6108,-1.0357,7.6926,37.1774,-1.797,8.2186,37.2809,-1.5362,8.0646,37.2361,-1.6298,7.3255,37.2071,-1.6545,7.332,37.1527,-1.644,8.0561,36.8941,-1.2317,6.0937,37.1733,-1.736,6.0687,37.247,-1.7607,6.1843,37.2057,-1.5121,6.6217,37.6358,-1.8162,6.6234,37.5756,-1.7971,6.6458,37.6483,-1.8018,6.1038,37.6119,-1.8538,6.5131,37.631,-1.848,6.4335,37.6275,-1.8711,6.1078,37.5293,-1.8771,6.0672,37.5234,-1.856,6.1202,37.1162,-1.7221,6.0942,37.6179,-1.8372,6.0925,37.6297,-1.8014,6.2254,37.1049,-1.4916,6.3574,37.5528,-1.3929,6.3275,37.4423,-1.3644,6.6363,37.5241,-1.1634,6.9669,37.5288,-1.2405,6.9974,37.5838,-1.3482,6.9015,37.5056,-1.1695,6.3197,37.2474,-1.8621,6.2792,37.0484,-1.4865,6.2747,37.4452,-1.388,6.2556,37.5384,-1.475,6.0531,37.3031,-1.7358,6.0589,37.3012,-1.6966,6.1812,37.6558,-1.6003,6.1263,37.3686,-1.5396,6.0753,37.4082,-1.5986,6.078,37.3732,-1.6088,6.416,38.0727,-1.7504,6.4397,38.0764,-1.7918,6.626,38.5979,-1.6794,6.5307,38.3403,-1.7283,6.5251,38.3428,-1.6966,6.6279,38.5976,-1.7224,6.611,37.9592,-1.3666,6.4895,37.979,-1.503,6.5143,37.9803,-1.4791,6.3635,37.9501,-1.8065,6.9718,37.9615,-1.2667,6.3666,37.9856,-1.742,6.3621,37.9795,-1.7636,6.3097,37.9019,-1.7411,6.3029,37.8925,-1.7812,6.2555,37.8145,-1.743,6.2351,37.7806,-1.7433,7.3637,37.68,-1.4957,7.3838,37.6732,-1.5055,7.1837,37.5636,-1.3794,7.0681,37.5712,-1.3773,7.0104,37.6075,-1.3927,7.7439,37.7237,-1.2688,8.037,36.8759,-1.1221,8.0655,36.8879,-1.1215,8.0247,37.6159,-0.9554,8.0421,37.5649,-0.9104,8.0766,37.4163,-0.8462,7.7156,37.6653,-1.1396,7.7166,37.6782,-1.1794,7.1592,37.4631,-1.1713,7.1623,37.4115,-1.1336,7.1302,37.4544,-1.1702,7.1321,37.4547,-1.1879,6.4816,49.344,-0.2869,5.8192,49.2437,-0.829,5.9386,49.3956,-0.7258,5.9816,49.5263,-1.0477,5.8372,48.4146,-1.4193,5.8784,48.358,-1.4038,5.751,48.4052,-1.0785,6.7779,49.1125,-0.3491,6.7625,49.1074,-0.2961,6.8108,48.5526,-0.2109,6.8099,48.3978,-0.2989,6.8119,49.1187,-0.3742,6.8343,48.9687,-0.381,6.5056,48.337,-0.2981,6.6339,48.6914,-0.1232,6.7744,49.1002,-0.2148,6.5985,48.508,-0.2103,6.672,48.5236,-0.2105,6.6658,47.8815,-0.5235,6.6592,48.2554,-0.3567,6.5322,47.853,-0.5363,6.6648,48.8537,-0.094,6.7571,49.087,-0.1623,6.6301,49.1536,-0.1954,6.6528,49.0271,-0.1325,6.5354,49.4626,-0.3158,7.0203,49.0494,-0.3849,7.2042,48.0656,-0.6031,6.9573,49.0429,-1.6601,6.8906,49.1887,-1.7243,6.8549,49.2314,-1.7449,6.9705,49.3337,-1.5737,7.3224,48.8503,-1.5146,7.2957,49.0155,-1.4762,7.3608,48.8493,-1.3281,6.8851,48.6102,-0.4102,6.8189,48.7697,-0.2944,6.5344,48.4961,-0.194,6.8293,48.7574,-0.2489,6.8458,48.7467,-0.2256,7.3399,47.8212,-1.2624,6.898,47.2994,-1.6182,6.9132,46.2623,-1.6852,6.7186,47.2841,-1.6013,7.3204,48.9589,-1.0821,7.2586,48.7825,-1.5913,6.8756,47.7779,-0.5988,6.7825,47.758,-0.5569,6.2525,48.0527,-0.8652,7.6241,39.605,-1.959,7.5422,39.5781,-2.0061,7.3635,40.7518,-1.9802,7.9901,38.5029,-1.9227,7.9514,38.3566,-1.9659,6.9026,48.9863,-1.6672,7.1703,49.2132,-1.3981,6.6588,41.8143,-1.3566,7.3207,44.9968,-0.8578,7.2963,43.9607,-0.9168,7.0159,38.0476,-1.2668,6.6483,38.5943,-1.7772,6.3876,37.6608,-1.4235,6.2187,37.1934,-1.4608,7.0032,38.6087,-1.2731,7.6153,37.8574,-1.9342,7.3446,38.071,-1.8099,7.4161,37.8264,-1.6755,7.1656,37.913,-1.613,7.0935,37.8814,-1.5924,8.0128,38.2166,-1.95,6.665,37.6659,-1.2062,6.4965,38.0812,-1.5656,6.4845,38.2393,-1.7353,7.3087,45.1371,-0.8569,7.2345,42.8841,-0.9543,6.6236,43.9516,-1.206,6.6633,43.9533,-1.1879,6.5757,49.4083,-0.3082,5.9452,48.5828,-0.5813,7.0052,49.4397,-1.4421,6.8439,49.5968,-0.6096,6.9236,49.6001,-0.8072,6.708,49.4925,-0.3792,6.7049,49.5106,-0.3792,6.6669,49.4879,-0.3543,6.6216,49.4586,-0.3301,6.8269,49.3763,-0.4155,6.7739,49.3515,-0.3769,6.7274,49.3162,-0.3482,6.1079,48.1653,-1.2752,6.6338,47.6993,-1.5972,6.3295,48.2546,-1.6334,6.2532,48.201,-1.5542,6.3776,47.2899,-1.1695,6.399,47.2777,-1.2788,6.1205,48.1455,-1.2739,6.1405,48.1619,-1.3866,6.528,46.2798,-1.3999,7.3602,45.1623,-1.0303,6.9812,37.8631,-1.2896,7.5123,37.677,-1.1722,7.8288,37.019,-1.6064,7.7538,37.1211,-1.7534,7.8015,37.0758,-1.6628,7.8853,37.2564,-1.7674,7.5116,37.6185,-1.1494,6.2794,47.8219,-1.3639,6.5956,47.2682,-1.5416,6.5075,47.2612,-1.4609,6.3747,47.8282,-1.4805,6.471,49.3656,-0.2807,6.5173,49.3935,-0.2894,6.5136,49.4012,-0.2917,6.5706,49.4251,-0.3045,6.5668,49.4325,-0.307,6.6179,49.466,-0.3324,6.6634,49.4953,-0.3568,6.9773,49.3112,-1.5593,6.8983,49.1674,-1.7041,6.0933,48.4417,-1.6832,6.0742,48.4578,-1.695,5.9061,48.3447,-1.3972,6.6291,42.829,-1.325,6.6315,42.8266,-1.2856,6.6915,42.8253,-1.2314,6.6501,42.8248,-1.2468,7.1494,43.9641,-0.8871,6.416,38.0839,-1.7126,6.4817,38.2476,-1.7045,7.0031,38.3589,-1.2537,7.0844,38.6156,-1.2476,6.9045,38.364,-1.2837,6.7225,37.9873,-1.2925,6.8333,38.0339,-1.2693,6.7551,38.0774,-1.3028,6.8046,37.956,-1.26,6.6762,37.8053,-1.2611,6.7749,37.8724,-1.2535,6.6939,37.9039,-1.2837,6.7481,37.7939,-1.2441,6.8634,38.2497,-1.2871,8.2907,37.2571,-1.3823,8.2923,37.3705,-1.4269,8.294,37.3269,-1.4119,8.0822,37.9612,-1.9096,7.9281,38.64,-1.9373,6.625,38.3568,-1.5177,6.7701,38.3588,-1.3954,7.1843,38.2719,-1.8578,7.8601,38.2168,-1.995,8.0194,38.3927,-1.6092,7.2246,37.6689,-1.4501,7.1893,38.0792,-1.7703,7.1424,38.0612,-1.7616,7.1914,38.0569,-1.7661,7.0115,38.0323,-1.7727,7.0466,37.9231,-1.648,7.5454,37.8174,-1.8569,7.5933,38.8471,-2.0143,7.4724,38.6328,-1.39,6.6437,38.6002,-1.6266,7.8529,38.8559,-1.9464,6.4537,37.8806,-1.4837,6.4442,37.9863,-1.5653,6.3977,37.893,-1.5593,6.42,37.7821,-1.46,6.3609,37.7983,-1.5391,6.2504,37.2072,-1.8358,6.252,37.2547,-1.8622,6.1875,37.392,-1.9019,6.2498,37.3275,-1.8956,6.193,37.3169,-1.8859,6.2439,37.3976,-1.9086,6.1785,37.4598,-1.9038,6.2229,37.5372,-1.8936,6.2359,37.4639,-1.909,6.1682,37.5345,-1.8908,6.9814,38.0464,-1.263,7.4003,45.1842,-1.3564,7.2235,49.1554,-1.3477,6.3987,47.2968,-1.0566,7.7598,38.8519,-1.9972,7.0408,44.0013,-1.795,6.3516,47.9539,-0.6877,6.4303,47.8739,-0.5622,6.3993,47.911,-0.6098,7.3994,47.8053,-1.0072,7.3833,47.8123,-1.1409,7.1702,48.3807,-1.5591,7.1268,48.1746,-1.5532,6.842,48.7356,-0.1965,6.6619,48.3675,-0.2972,6.3742,48.4753,-0.2521,6.3613,48.3244,-0.3226,6.3118,48.4782,-0.349,5.8187,48.5224,-0.7597,5.8745,48.6299,-0.5884,5.7743,48.8406,-0.7217,5.697,48.94,-0.9412,5.7185,48.7333,-0.8618,5.7345,49.0132,-0.8126,5.7664,49.1747,-0.93,5.7229,49.1038,-1.0342,7.0504,48.9082,-0.3705,7.3278,48.9394,-0.9461,7.3692,48.7836,-1.0865,7.3859,48.7599,-0.9367,7.4299,48.5771,-0.9271,7.4334,48.1964,-0.9183,7.2535,49.1081,-0.9491,6.6307,49.4475,-1.7326,6.5771,49.6165,-1.626,6.7203,49.5534,-1.6316,6.5049,49.5226,-1.7179,6.7345,49.3548,-1.738,6.5665,49.1363,-0.1957,6.3782,49.7621,-0.7473,6.4028,49.6807,-0.5823,6.4897,49.7355,-0.6199,6.3161,49.7245,-0.7231,6.5957,49.6516,-0.4978,6.8152,48.9183,-0.1837,6.6725,47.747,-0.5675,6.371,48.1971,-0.3992,6.7887,48.9411,-0.3051,6.8012,48.9535,-0.3489,6.4676,47.8512,-0.5406,6.4541,48.6383,-0.1404,6.3942,48.6495,-0.1792,7.1214,37.5426,-1.3455,7.1166,37.4743,-1.2336,6.0338,48.5131,-1.6988,5.855,48.9496,-0.5954,5.9738,48.7881,-0.4622,5.975,49.2934,-0.578,5.7976,49.0857,-0.6962,6.2373,49.6604,-0.6994,6.1482,49.4672,-0.5124,6.3189,49.6139,-0.5521,6.0852,49.5373,-0.6718,6.0526,49.6019,-1.0005,6.139,49.6831,-0.982,7.1239,37.5621,-1.3793,7.1013,37.4514,-1.1829,6.975,37.4542,-1.1422,6.9696,37.4509,-1.1248,7.0316,37.45,-1.1713,7.1717,37.3822,-1.1064,7.1281,37.3966,-1.1325,7.1285,37.3637,-1.1114,6.9501,37.3897,-1.0585,6.9584,37.4244,-1.0862,6.8895,37.3942,-1.0293,6.8993,37.4298,-1.0614,7.6217,36.9963,-1.6227,7.6055,36.9255,-1.5646,7.5777,36.863,-1.4857,7.5431,36.8407,-1.4201,7.5139,36.831,-1.364,7.4745,36.8287,-1.276,7.4788,36.8425,-1.1642,7.4395,36.8528,-1.1742,7.5078,36.8178,-1.2595,7.4268,36.9499,-1.0076,7.4093,36.9022,-1.0831,7.4451,36.895,-1.0703,7.3903,36.9538,-1.0226,7.4149,37.5454,-1.1003,7.4496,37.4864,-1.0555,7.4477,37.5523,-1.094,7.4125,37.4824,-1.0656,7.4274,37.3194,-0.9727,7.4056,37.4185,-1.0307,7.3862,37.3158,-0.9882,7.4463,37.421,-1.0171,7.3694,37.2154,-0.9594,7.4006,37.1045,-0.9314,7.4071,37.2182,-0.9423,7.3621,37.1024,-0.95,7.4087,37.0255,-0.9555,7.3702,37.0264,-0.9728,7.5159,37.5488,-1.1089,7.4858,37.4851,-1.0564,7.5184,37.4798,-1.0674,7.4844,37.5537,-1.0972,7.5113,37.4123,-1.0239,7.4657,37.3177,-0.971,7.5024,37.3117,-0.9817,7.4829,37.417,-1.0158,7.4905,37.1139,-0.9473,7.447,37.2258,-0.9412,7.4391,37.1083,-0.9287,7.4911,37.2174,-0.9553,7.5565,36.8195,-1.2766,7.5572,36.8591,-1.1589,7.5149,36.8447,-1.1557,7.5963,36.8359,-1.2658,7.5112,36.9669,-1.0127,7.4821,36.8965,-1.0655,7.5299,36.9096,-1.0748,7.466,36.9562,-1.0015,7.6341,36.8313,-1.3566,7.7157,37.6407,-1.1015,7.7254,37.5088,-0.9831,7.7198,37.5815,-1.0457,7.677,37.4197,-0.9872,7.7328,37.3517,-0.9082,7.7302,37.4372,-0.9338,7.685,37.3338,-0.9577,7.6935,37.237,-0.9417,7.7489,37.1402,-0.8972,7.7376,37.2493,-0.8931,7.7059,37.1348,-0.9436,8.0085,37.6691,-0.9976,8.0621,37.5039,-0.8685,7.788,37.7171,-1.264,7.7535,37.6969,-1.2523,7.8893,37.7348,-1.1625,7.8655,37.7382,-1.248,7.752,37.7051,-1.2346,7.7895,37.7262,-1.2454,8.1844,37.2201,-0.8827,8.1369,37.2112,-0.8612,8.188,37.299,-0.8889,8.1143,37.1005,-0.9012,8.1317,37.0135,-0.9724,8.16,37.1115,-0.917,8.0892,37.0066,-0.9558,8.062,36.9236,-1.0316,8.102,36.9338,-1.044,7.8628,37.7126,-1.0834,7.8445,37.7369,-1.1695,7.8088,37.698,-1.1014,7.7544,37.6965,-1.1778,7.7554,37.6795,-1.1249,7.8017,37.7199,-1.1742,7.8297,37.7397,-1.2486,7.8274,37.7304,-1.2686,7.3415,37.5987,-1.4866,7.1275,37.588,-1.416,7.0083,37.5978,-1.4493,6.1604,37.7031,-1.7289,6.371,37.9933,-1.6999,6.2758,37.8156,-1.6847,6.3264,37.9025,-1.6912,6.3107,37.8753,-1.8164,6.6369,37.8797,-1.3193,6.5937,37.8811,-1.3517,6.5664,37.8757,-1.3701,6.4984,37.8823,-1.4402,6.344,37.9032,-1.6375,6.3846,37.9942,-1.6542,6.426,38.0851,-1.6709,6.9425,37.9701,-1.262,6.0573,37.3784,-1.8356,6.0669,37.4508,-1.8622,6.0759,37.3797,-1.8566,6.0494,37.4485,-1.8418,6.054,37.5234,-1.8369,6.0797,37.4898,-1.5821,6.1257,37.5777,-1.5888,6.2409,37.7554,-1.6816,6.0952,37.6185,-1.7331,6.1669,37.6831,-1.6656,6.1039,37.6014,-1.6628,6.0556,37.5052,-1.6626,6.0387,37.441,-1.7462,6.0484,37.4289,-1.6721,6.0474,37.5154,-1.738,6.0521,37.3749,-1.6834,6.0447,37.3756,-1.7481,6.055,37.3059,-1.7907,6.0462,37.381,-1.8049,6.0394,37.4457,-1.8115,6.047,37.5213,-1.8074,6.2715,36.9972,-1.6416,6.2867,36.9847,-1.5218,6.3204,37.3236,-1.3719,6.3304,36.9829,-1.4853,6.3335,37.0309,-1.6688,6.3839,37.3308,-1.8864,6.3247,37.3323,-1.8972,6.3248,37.4044,-1.9093,6.38,37.4753,-1.8988,6.3858,37.4059,-1.8992,6.3199,37.4716,-1.9086,6.3699,37.6255,-1.8819,6.3129,37.543,-1.894,6.3073,37.6231,-1.886,6.3718,37.547,-1.8855,6.5317,37.794,-1.3675,6.476,37.783,-1.4057,6.3946,37.4342,-1.3345,6.4208,37.5519,-1.3583,6.4495,37.6682,-1.3811,6.4995,37.6714,-1.3518,6.5218,37.548,-1.3066,6.543,37.6741,-1.3263,6.4749,37.5498,-1.3306,6.3037,37.8122,-1.6208,6.5989,37.5287,-1.2327,6.4573,37.4268,-1.3057,6.4029,37.0821,-1.4114,6.4085,37.0291,-1.4336,6.5659,37.0645,-1.378,6.4939,37.0236,-1.4143,6.5788,37.0182,-1.3952,6.4862,37.0731,-1.3943,6.6009,37.033,-1.3115,6.1144,37.4544,-1.887,6.1345,37.3093,-1.8662,6.1227,37.387,-1.883,6.4748,37.1745,-1.3603,6.4649,37.2994,-1.3289,6.5062,36.9792,-1.4422,6.5383,36.9818,-1.522,6.5154,36.9692,-1.4625,6.5542,37.0189,-1.5749,6.5589,37.053,-1.6299,6.5598,37.0906,-1.6916,6.5596,37.1222,-1.7423,6.55,37.2097,-1.8057,6.4368,37.5456,-1.8695,6.4465,37.402,-1.8812,6.5129,37.4681,-1.8594,6.4437,37.4736,-1.8818,6.4372,37.2321,-1.832,6.4452,37.325,-1.8666,6.5039,37.2215,-1.8182,6.4847,37.0999,-1.7125,6.421,37.1376,-1.7711,6.4942,37.1325,-1.7599,6.4627,37.0295,-1.6119,6.389,37.0367,-1.6421,6.4748,37.064,-1.6605,6.4283,36.9703,-1.4865,6.4463,36.9876,-1.5532,6.4185,36.9811,-1.4638,6.3924,37.3116,-1.3505,6.394,37.1901,-1.3736,8.2146,37.2116,-1.504,6.8319,37.0824,-1.8595,6.8764,37.0818,-1.8061,6.9692,37.1835,-1.7422,7.0876,37.1198,-1.6627,6.9678,37.0934,-1.7338,7.0815,37.1928,-1.673,7.2078,37.166,-1.627,7.1669,37.2158,-1.6426,7.2006,37.2233,-1.6358,7.1749,37.1591,-1.6341,7.2491,37.1668,-1.6313,7.2381,37.2233,-1.6433,7.1921,37.2827,-1.632,7.5814,37.4677,-1.0928,7.6098,37.4624,-1.1039,7.984,37.5688,-0.9144,7.9631,37.6301,-0.9603,7.894,37.6221,-0.9666,7.8453,37.5454,-0.9359,7.9153,37.5617,-0.9158,7.8292,37.6071,-0.9882,7.7786,37.5274,-0.963,7.7669,37.592,-1.0204,7.0318,37.4489,-1.1877,7.4182,37.61,-1.1333,7.812,37.6632,-1.0389,7.7562,37.6484,-1.0724,7.8753,37.6772,-1.0137,7.9944,37.1862,-0.8148,7.9922,37.0877,-0.8626,8.0294,37.4109,-0.8429,8.007,37.5004,-0.8689,7.9791,37.0057,-0.923,8.0229,36.9229,-1.0171,7.8939,37.2836,-0.8376,7.8059,37.3674,-0.8799,7.8158,37.267,-0.8628,7.8782,37.3842,-0.8564,7.8214,37.1549,-0.8671,7.9144,37.0801,-0.8738,7.9035,37.1695,-0.8377,7.8563,36.9376,-1.0229,7.9202,37.0057,-0.9218,7.8633,37.471,-0.8834,7.9384,37.4905,-0.8658,7.9589,37.4001,-0.8375,7.9816,37.2987,-0.8174,7.1265,37.2872,-1.089,7.1207,37.1838,-1.0663,7.0861,37.1801,-1.0636,7.1619,37.0971,-1.0473,7.1576,37.1899,-1.0548,7.1227,37.0938,-1.0588,7.1348,37.0295,-1.0774,7.0888,37.0893,-1.057,7.0985,37.0202,-1.0786,7.1738,37.0319,-1.0696,7.1456,36.98,-1.1119,7.1869,36.9839,-1.1055,7.1202,36.9321,-1.1687,7.1093,36.9712,-1.1129,7.1558,36.9426,-1.166,7.141,36.8902,-1.237,7.1758,36.9012,-1.2314,7.194,36.8862,-1.3079,7.2188,36.9104,-1.2231,7.2325,36.8941,-1.3007,7.167,36.8915,-1.3754,7.2021,36.9003,-1.3689,7.1595,36.8768,-1.3145,7.1706,36.8998,-1.4164,7.2075,36.9095,-1.4089,7.2113,36.9403,-1.457,7.1788,36.9792,-1.5274,7.1739,36.93,-1.4662,7.2149,36.9887,-1.5177,7.214,37.0523,-1.5643,7.2529,37.0539,-1.5623,7.2136,37.1108,-1.6057,7.2521,37.1131,-1.6062,7.1605,37.2879,-1.0798,7.1072,37.4496,-1.2072,7.7343,36.8758,-1.3856,7.7688,36.8861,-1.3726,7.6536,37.3199,-0.9978,7.6434,37.4098,-1.0358,7.6058,37.2206,-1.0029,7.6435,37.2236,-1.0189,7.683,37.1362,-0.9829,7.6678,37.2319,-0.9851,7.6574,37.1346,-1.0172,7.6154,37.1279,-1.0001,7.6287,37.049,-1.021,7.6662,36.8919,-1.1933,7.6517,36.9349,-1.1193,7.7352,36.8785,-1.445,7.7052,36.8647,-1.4405,7.6942,36.8582,-1.3766,7.6778,36.8751,-1.2604,6.9586,36.9431,-1.6671,7.0886,36.9305,-1.552,6.9599,36.8742,-1.6266,7.2539,36.99,-1.5154,7.3383,37.049,-1.5717,7.3378,36.9793,-1.5211,7.4486,36.955,-1.5327,7.4592,37.0331,-1.5939,7.3409,37.1009,-1.6213,6.8532,36.9792,-1.8035,6.8491,36.892,-1.7635,6.9594,37.0044,-1.7147,6.7933,36.775,-1.7446,6.7432,36.7699,-1.7578,6.7284,36.8683,-1.8059,6.7148,36.7876,-1.7522,7.4452,37.0275,-0.9527,6.8273,36.6921,-1.5382,6.9555,36.7771,-1.4854,7.0835,36.8521,-1.4388,7.0805,36.8395,-1.3837,7.3896,36.873,-1.3582,7.4144,36.8795,-1.4033,7.8399,36.888,-1.3457,7.4353,36.8991,-1.4659,7.0858,36.8831,-1.4969,6.8409,36.7523,-1.6375,6.9572,36.8205,-1.5719,6.6803,36.8735,-1.6157,6.6205,36.6257,-1.2812,6.693,36.6622,-1.182,6.6021,36.6577,-1.2179,6.7029,36.6298,-1.2575,6.9477,36.7533,-1.2485,6.7927,36.6614,-1.2511,7.0549,36.8765,-1.1736,7.0672,36.8379,-1.2436,7.8107,36.9078,-1.1488,7.7883,36.9542,-1.0634,7.3053,36.883,-1.2891,7.3516,36.8796,-1.2839,7.2922,37.4452,-1.5907,6.5718,36.84,-1.0371,6.6571,36.8494,-0.9927,6.5555,36.7746,-1.1246,7.2648,36.9722,-1.0787,7.2465,37.0311,-1.0376,7.0347,36.9905,-1.0687,7.0457,36.9239,-1.1128,6.754,36.8718,-0.979,6.926,36.8687,-1.0792,6.9137,36.9385,-1.0293,6.7698,36.8026,-1.0309,7.0237,37.0703,-1.0459,7.2307,37.0962,-1.019,7.4977,37.0368,-0.9687,7.0765,36.8261,-1.3155,6.9158,37.1716,-1.0032,7.0219,37.172,-1.0543,6.9328,37.2983,-1.0318,6.5979,37.1939,-0.963,6.8643,37.306,-1.003,7.2353,37.1972,-1.0268,7.2459,37.3008,-1.0481,6.7158,36.6109,-1.3484,6.7635,36.6485,-1.5623,6.7351,36.6126,-1.4423,6.7844,36.7114,-1.6729,6.8466,36.8134,-1.7043,6.6436,36.6067,-1.3628,6.6718,36.6044,-1.4664,6.7003,36.6357,-1.5746,6.6982,36.7278,-1.6882,6.725,36.7058,-1.6894,6.5594,48.6528,-0.1226,7.3925,48.5448,-0.7374,7.2996,48.102,-0.6438,5.6718,48.8429,-1.2042,5.6804,48.6261,-1.1559,5.7148,49.0331,-1.2421,5.7243,48.8308,-1.4591,5.7756,49.0496,-1.4383,5.7578,48.6229,-1.4534,5.9267,48.7107,-1.6829,5.8859,48.9095,-1.6626,5.8807,49.1116,-1.6026,5.9142,49.3096,-1.5127,6.0779,49.3669,-1.672,6.1517,49.0494,-1.8368,6.0973,49.2227,-1.762,6.2099,48.907,-1.8771,6.4681,49.1051,-1.8969,6.3903,49.2313,-1.8515,6.3061,49.3596,-1.795,6.2469,49.4553,-1.7043,6.6468,49.7,-1.524,6.4599,49.7136,-1.5039,6.46,49.7974,-1.3513,6.6906,49.823,-1.2979,6.7305,49.8178,-0.9563,6.6097,49.8636,-1.0493,6.3907,49.822,-1.1784,6.5262,49.8421,-0.8812,6.3026,49.7974,-1.0659,6.641,49.8033,-0.7803,7.4218,48.1542,-0.778,6.9175,43.9691,-0.9982,6.9087,42.9021,-1.0905,6.6598,42.8474,-1.6077,6.5329,38.3417,-1.6481,7.499,38.3615,-1.3479,6.5694,37.8,-1.3412,6.489,38.2451,-1.6659,7.2633,37.4055,-1.0846,7.7947,37.4553,-0.9076,7.9957,36.8752,-1.1156,7.8282,36.8931,-1.2391,8.299,37.5255,-1.4368,7.8876,37.9324,-1.9755,7.1957,37.9688,-1.6876,7.1549,37.9706,-1.6789,7.2002,36.9494,-1.159,7.6399,36.9842,-1.0612,6.4989,37.4218,-1.2868,6.5228,49.3776,-0.2955,7.7786,36.8847,-1.4368};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_440_vector_1()
		{
			double[] value = {-0.9992,-0.029,-0.0289,-0.9991,-0.0402,0.0167,-0.9986,0.0063,0.0528,-0.9974,-0.0187,-0.0691,-0.9965,0.0333,-0.0762,-0.9961,0.0597,-0.0651,-0.9948,0.0764,-0.067,-0.9943,-0.1016,0.0335,-0.9926,-0.0687,0.1001,-0.9925,0.0059,-0.1218,-0.9909,-0.0729,-0.1135,-0.9907,-0.089,0.103,-0.9903,-0.0763,0.1165,-0.986,-0.0051,-0.1668,-0.9852,-0.1671,0.0369,-0.9843,0.0822,0.1562,-0.9836,0.1389,0.1154,-0.9826,-0.102,-0.155,-0.9816,-0.1386,0.1316,-0.9806,-0.1085,-0.1633,-0.9804,-0.0097,-0.1967,-0.9801,-0.0135,-0.1981,-0.9793,-0.139,0.1472,-0.9791,-0.0807,-0.1866,-0.9787,-0.0515,-0.1989,-0.9786,-0.2033,0.0313,-0.9783,-0.0399,0.2031,-0.9783,-0.206,-0.0207,-0.9755,0.0238,0.2185,-0.9753,-0.0552,0.2138,-0.9743,-0.0297,0.2234,-0.9739,-0.1324,-0.1845,-0.9738,0.1578,0.1639,-0.9737,-0.213,0.0806,-0.9737,0.0572,-0.2205,-0.9704,0.1604,-0.1803,-0.9696,-0.0416,-0.241,-0.969,-0.2432,-0.0441,-0.9688,-0.1193,0.2171,-0.9681,-0.0455,0.2463,-0.968,-0.1725,-0.1822,-0.967,-0.0375,0.2521,-0.965,0.2467,-0.0892,-0.9634,-0.2348,0.1293,-0.9619,-0.0541,0.2681,-0.9598,-0.1865,0.2096,-0.9593,-0.2276,-0.1673,-0.9589,0.2696,0.0881,-0.957,-0.1742,-0.232,-0.956,-0.2654,-0.1247,-0.9549,0.2689,0.1258,-0.9541,-0.0228,-0.2985,-0.9524,-0.1717,0.2518,-0.9522,0.2702,-0.1426,-0.9512,-0.1651,0.2608,-0.9497,-0.286,0.1275,-0.9495,-0.269,0.1617,-0.9494,0.3121,0.0352,-0.9473,0.219,0.2336,-0.9472,-0.1366,0.29,-0.9455,-0.2414,-0.2184,-0.9452,0.2526,-0.2067,-0.9442,-0.2879,0.1601,-0.9441,-0.1175,0.308,-0.9414,-0.3221,-0.1004,-0.9399,-0.3173,0.1259,-0.938,-0.2319,0.2577,-0.9378,0.1519,0.3122,-0.9367,-0.3496,-0.019,-0.9345,0.2623,0.2408,-0.9331,-0.0553,-0.3554,-0.933,-0.3508,0.0808,-0.9279,-0.329,-0.1756,-0.9249,-0.0112,-0.3802,-0.9241,-0.1611,-0.3465,-0.9222,-0.2608,0.2856,-0.922,-0.104,0.373,-0.921,0.3893,-0.0137,-0.9209,-0.2908,-0.2595,-0.919,0.3943,0.0018,-0.9176,0.1232,0.378,-0.9131,-0.3863,-0.1304,-0.9121,0.4084,0.0349,-0.9104,-0.4138,0.0055,-0.9099,0.1465,-0.388,-0.9096,-0.2804,0.3064,-0.9096,-0.0193,0.415,-0.9093,-0.3709,0.1886,-0.9071,-0.0414,-0.4189,-0.9059,-0.4152,-0.0835,-0.9046,-0.3778,-0.1974,-0.904,0.03,-0.4264,-0.9034,-0.0127,-0.4285,-0.9012,-0.233,0.3654,-0.9007,0.4083,0.1485,-0.8968,0.2201,-0.3837,-0.8968,-0.0787,-0.4354,-0.8915,-0.4523,-0.0258,-0.8882,-0.3512,0.2963,-0.8876,-0.403,0.2232,-0.8871,-0.3065,0.345,-0.8832,0.2803,-0.3759,-0.8822,-0.1209,0.455,-0.8819,-0.2979,0.3654,-0.8814,-0.2358,0.4093,-0.881,-0.0309,0.4721,-0.8801,0.4583,0.1238,-0.8773,-0.4181,0.2358,-0.8754,-0.3743,-0.306,-0.8744,0.3344,0.3517,-0.874,-0.2041,0.441,-0.8736,0.3347,0.3533,-0.8711,0.4555,-0.1838,-0.871,-0.2411,0.4279,-0.8709,-0.0205,-0.491,-0.8707,-0.215,-0.4424,-0.8688,-0.2485,0.4282,-0.8667,0.0035,-0.4988,-0.866,-0.1756,0.4682,-0.8652,0.2567,0.4308,-0.8633,0.5032,0.0385,-0.8631,0.2501,0.4388,-0.8618,0.5061,-0.0351,-0.8616,0.1095,0.4957,-0.8604,0.4438,0.2504,-0.8599,0.4344,-0.2682,-0.8575,-0.1737,0.4844,-0.8574,0.5127,-0.0458,-0.8552,0.2064,0.4754,-0.8547,0.0338,-0.518,-0.8533,-0.236,0.4649,-0.8523,-0.2721,-0.4466,-0.8521,0.1374,0.5051,-0.8512,0.4104,-0.3272,-0.8504,-0.2594,0.4577,-0.85,0.3705,-0.3744,-0.8491,-0.5247,-0.0609,-0.8484,0.5022,0.1674,-0.848,-0.3612,-0.3878,-0.8469,0.3867,0.3649,-0.8469,0.2177,-0.4852,-0.8469,0.2347,0.4773,-0.8464,-0.2643,-0.4624,-0.8435,-0.4254,0.3279,-0.8433,0.5373,-0.0059,-0.8405,-0.1828,-0.51,-0.8403,-0.3528,0.4117,-0.8395,-0.3625,0.4049,-0.8389,-0.4968,0.2225,-0.8375,0.0049,0.5465,-0.8358,0.4812,0.2642,-0.8356,0.0447,0.5475,-0.8279,-0.2901,0.48,-0.8275,-0.0861,0.5549,-0.8272,-0.0949,-0.5538,-0.826,-0.1105,0.5528,-0.8241,-0.4801,-0.3005,-0.8238,0.4988,0.2693,-0.8238,-0.397,-0.4046,-0.8236,-0.5596,0.0918,-0.8236,-0.2073,-0.528,-0.8234,0.0512,0.5651,-0.8218,-0.3374,-0.4591,-0.8217,0.3991,-0.4069,-0.8204,-0.3751,-0.4315,-0.8201,-0.1685,0.5468,-0.8198,0.5517,0.1534,-0.819,0.001,-0.5738,-0.818,0.0899,0.5682,-0.8176,-0.2462,0.5204,-0.8154,-0.3444,-0.4653,-0.8149,-0.4247,-0.3945,-0.8147,-0.206,0.5421,-0.8113,0.3738,0.4495,-0.8105,-0.0777,0.5805,-0.8103,-0.5854,-0.0289,-0.8095,0.5042,0.3009,-0.8091,0.5532,-0.1981,-0.809,0.0605,0.5846,-0.8087,0.4908,0.3243,-0.8086,0.4376,0.3933,-0.8053,0.454,-0.3813,-0.8043,0.1863,0.5643,-0.8027,0.0102,-0.5963,-0.7988,0.4319,0.4188,-0.7957,0.604,0.0454,-0.7927,0.1277,0.5961,-0.7919,-0.053,0.6084,-0.7896,-0.3103,-0.5293,-0.7895,0.1355,-0.5986,-0.789,0.2407,0.5653,-0.7871,-0.2056,0.5816,-0.7827,0.3972,0.4792,-0.7824,0.0547,0.6204,-0.7822,-0.4541,-0.4265,-0.78,-0.4703,-0.4127,-0.7791,-0.4785,-0.405,-0.7787,-0.444,0.4433,-0.7779,0.4286,-0.4595,-0.7775,0.5293,0.3396,-0.7768,-0.3525,0.5218,-0.7766,-0.2976,-0.5552,-0.7749,0.6289,0.0637,-0.7739,0.2134,0.5963,-0.773,-0.0989,0.6266,-0.7708,-0.0943,-0.63,-0.7705,-0.2934,0.5658,-0.7704,0.0968,0.6302,-0.7691,0.3363,0.5435,-0.7659,-0.2389,0.5969,-0.7647,0.2645,-0.5875,-0.7627,0.5828,0.2805,-0.7618,-0.0154,-0.6476,-0.7608,0.0678,0.6455,-0.7593,0.1201,-0.6395,-0.7591,0.231,0.6086,-0.7586,0.6108,-0.2269,-0.7583,0.6166,-0.2116,-0.7565,0.4475,0.477,-0.7543,0.002,0.6565,-0.7542,0.6523,-0.0758,-0.7539,-0.5002,-0.4259,-0.7526,0.2106,-0.6239,-0.7494,0.6144,-0.2468,-0.7479,0.221,0.6259,-0.7479,-0.1733,-0.6408,-0.7462,0.6452,-0.1637,-0.7459,-0.3954,0.536,-0.7454,-0.6225,0.2387,-0.7442,-0.5057,0.4363,-0.7419,-0.2946,0.6023,-0.7409,0.5949,-0.3118,-0.7384,-0.2117,0.6402,-0.7377,0.2843,0.6123,-0.7376,0.2767,0.6159,-0.7368,0.1969,0.6468,-0.7366,-0.1084,0.6676,-0.736,0.1234,-0.6657,-0.7358,0.2043,0.6457,-0.7348,-0.6416,0.2201,-0.7345,0.2073,0.6462,-0.7313,-0.4127,-0.543,-0.7313,-0.3164,0.6043,-0.7311,-0.4049,-0.5491,-0.731,0.4023,0.5512,-0.7295,0.3426,0.592,-0.7291,-0.0444,-0.6829,-0.7286,0.6777,0.0993,-0.7285,-0.0663,0.6818,-0.7278,0.6762,0.1147,-0.7259,0.6483,0.2297,-0.7239,0.1837,-0.665,-0.7235,0.2538,0.642,-0.7229,-0.6795,-0.1253,-0.7217,-0.0523,-0.6902,-0.7208,0.3699,0.5862,-0.7206,0.5964,0.3536,-0.7191,0.3997,0.5685,-0.7189,0.3176,0.6184,-0.7182,-0.1848,0.6709,-0.7167,-0.2985,0.6302,-0.7164,-0.1546,-0.6804,-0.716,-0.4337,0.547,-0.7159,0.2724,0.6429,-0.7156,0.098,-0.6916,-0.7135,-0.2309,0.6616,-0.7097,0.3933,0.5845,-0.7065,0.5664,0.4243,-0.7053,0.3425,0.6207,-0.705,0.5898,0.3939,-0.7044,0.4874,0.516,-0.7037,0.0684,-0.7072,-0.7027,0.3634,0.6117,-0.701,0.2488,-0.6684,-0.701,0.7118,-0.0447,-0.7009,0.7118,-0.0463,-0.7004,0.2371,-0.6732,-0.6988,0.7134,-0.0527,-0.6988,0.7133,-0.0547,-0.698,0.374,0.6106,-0.6964,-0.2157,-0.6844,-0.6959,0.3873,0.6047,-0.6948,0.1104,0.7107,-0.6929,0.3782,0.6139,-0.6905,0.5952,-0.411,-0.6878,0.0089,-0.7258,-0.6869,-0.0715,0.7232,-0.6843,0.3796,0.6226,-0.6804,0.6464,0.3453,-0.68,-0.3454,0.6468,-0.6786,-0.0768,0.7305,-0.6767,-0.2098,0.7058,-0.6738,-0.0524,0.7371,-0.6735,0.1734,-0.7186,-0.6716,0.3687,0.6427,-0.671,0.0384,0.7404,-0.669,0.066,-0.7404,-0.6688,0.0503,-0.7418,-0.6686,0.0571,0.7415,-0.6656,0.2526,0.7022,-0.6655,0.1635,0.7283,-0.6622,0.3649,0.6544,-0.6607,-0.4175,0.6238,-0.6591,-0.0538,-0.7501,-0.6577,-0.2986,0.6916,-0.6544,0.0291,-0.7556,-0.6539,-0.1687,-0.7375,-0.6536,0.0155,-0.7567,-0.6514,0.7416,0.1605,-0.6496,-0.2964,-0.7001,-0.6486,0.0518,0.7594,-0.6483,-0.5158,0.56,-0.6478,0.1049,0.7545,-0.6474,0.364,0.6696,-0.6465,0.4517,0.6148,-0.6458,-0.1561,0.7474,-0.6455,-0.3244,-0.6915,-0.6419,-0.091,0.7614,-0.6401,-0.6242,-0.448,-0.64,0.0434,-0.7672,-0.6393,0.5739,0.5118,-0.6386,-0.4996,0.5854,-0.6377,0.6687,0.3824,-0.6371,-0.1732,-0.751,-0.6368,0.758,0.1412,-0.6364,-0.2348,0.7348,-0.6339,-0.6151,-0.4688,-0.6333,-0.4941,0.5956,-0.632,-0.2938,0.7171,-0.6294,0.3222,0.7072,-0.6289,-0.3851,0.6755,-0.6287,0.5505,0.5492,-0.6279,0.3125,0.7128,-0.6271,0.2269,0.7451,-0.6258,0.3036,0.7185,-0.6257,-0.0132,0.7799,-0.6245,0.2616,0.7359,-0.6238,0.7428,0.2431,-0.6235,0.3566,0.6958,-0.6234,-0.0274,-0.7814,-0.6229,-0.5102,0.5931,-0.6225,-0.3933,-0.6766,-0.6159,0.0815,-0.7836,-0.6156,-0.1449,0.7746,-0.6131,0.3277,0.7189,-0.6126,-0.5278,0.5883,-0.6118,0.659,0.4375,-0.6117,0.3699,-0.6993,-0.6112,0.0202,-0.7913,-0.6106,-0.504,0.6109,-0.6101,0.7432,-0.2746,-0.6041,0.7924,-0.0845,-0.6033,-0.7007,0.3808,-0.6029,0.6242,-0.4969,-0.6016,-0.0082,0.7988,-0.5991,0.2779,0.7509,-0.5976,-0.1996,-0.7765,-0.5963,0.3873,-0.7031,-0.5956,0.4769,-0.6465,-0.5917,-0.8021,-0.0813,-0.5909,0.599,0.5404,-0.5903,-0.2531,0.7665,-0.589,0.2777,0.7589,-0.5885,-0.1575,0.793,-0.5882,0.4468,0.6741,-0.5872,-0.1096,0.802,-0.587,-0.0812,0.8055,-0.5865,0.492,-0.6434,-0.5856,0.7988,0.138,-0.5855,0.7926,-0.1701,-0.585,-0.6837,0.4363,-0.5836,-0.1907,-0.7893,-0.5824,0.2502,0.7735,-0.5817,0.2757,0.7652,-0.581,-0.4822,0.6556,-0.5808,0.4738,-0.662,-0.5802,-0.0851,0.81,-0.5789,0.4596,0.6735,-0.5785,0.3465,0.7384,-0.5782,0.6403,0.5057,-0.5766,0.4249,-0.6978,-0.5764,0.0132,-0.817,-0.5763,0.2775,0.7687,-0.5756,0.3317,-0.7475,-0.575,0.3198,0.7531,-0.5743,-0.436,-0.6929,-0.5726,0.2737,0.7728,-0.5714,-0.0718,0.8175,-0.5704,-0.7273,0.3816,-0.5696,0.469,0.675,-0.5696,0.1544,0.8073,-0.567,0.277,0.7757,-0.566,0.2234,0.7935,-0.5654,-0.0158,0.8247,-0.5651,0.3366,-0.7533,-0.5644,0.2067,-0.7992,-0.5643,-0.6634,0.4914,-0.5632,0.0014,0.8263,-0.5631,-0.4432,-0.6975,-0.5626,0.8242,0.0645,-0.5623,0.0183,0.8267,-0.5615,-0.1104,0.8201,-0.5589,-0.3228,-0.7638,-0.5587,0.5254,0.6417,-0.5549,-0.0517,-0.8303,-0.5542,0.8152,0.1679,-0.5532,0.5582,0.6183,-0.5525,-0.7325,-0.3978,-0.55,-0.3521,-0.7573,-0.5498,0.8272,-0.1161,-0.5476,0.2194,-0.8075,-0.5471,-0.1594,-0.8218,-0.547,-0.6847,0.4816,-0.5459,0.8291,-0.1208,-0.5456,0.5457,-0.636,-0.5447,0.2312,0.8061,-0.5427,0.6373,0.5471,-0.5413,-0.4064,0.7361,-0.5412,0.5939,-0.5953,-0.5386,-0.0144,-0.8424,-0.5385,-0.6237,0.5666,-0.5384,-0.7711,-0.3398,-0.536,0.2974,0.7901,-0.5358,0.4178,-0.7337,-0.534,0.0732,0.8423,-0.5309,0.2194,0.8186,-0.5253,0.7593,0.3841,-0.5204,0.6346,0.5713,-0.5198,0.7509,0.4073,-0.5184,0.649,-0.5568,-0.5182,-0.1365,-0.8443,-0.5179,0.8475,0.1162,-0.5178,0.2966,-0.8024,-0.5164,-0.5245,-0.6769,-0.5159,-0.7216,0.4616,-0.5152,-0.8398,0.1711,-0.5149,-0.0863,0.8529,-0.5142,-0.2713,0.8136,-0.514,-0.2165,0.83,-0.5131,0.4871,0.7067,-0.5127,-0.0724,0.8555,-0.5087,0.8573,-0.0792,-0.505,0.5668,0.651,-0.5048,-0.8621,-0.0433,-0.5048,0.2468,0.8272,-0.5015,0.5269,0.6862,-0.4997,-0.0812,0.8624,-0.4992,0.3433,0.7956,-0.4986,0.3977,-0.7702,-0.4981,-0.6762,0.5428,-0.4971,0.0923,-0.8628,-0.4964,0.5246,0.6917,-0.4953,0.0182,-0.8685,-0.495,0.44,0.7493,-0.4949,-0.8665,-0.0652,-0.4927,-0.1849,-0.8503,-0.4917,-0.728,-0.4778,-0.491,-0.065,0.8687,-0.4902,0.789,0.3703,-0.4878,-0.276,-0.8282,-0.4873,-0.1015,0.8673,-0.4827,-0.0705,0.873,-0.4738,0.1555,0.8668,-0.4733,0.8488,-0.2357,-0.4732,-0.0822,0.8771,-0.4721,-0.3973,-0.7869,-0.472,0.5764,0.6671,-0.4715,-0.7269,-0.4993,-0.468,0.8174,0.336,-0.467,0.8662,0.1777,-0.4646,0.2487,0.8499,-0.4645,-0.1901,0.8649,-0.4644,-0.6286,-0.6238,-0.4614,-0.2471,-0.8521,-0.4602,0.1754,0.8703,-0.4561,0.0979,0.8845,-0.4521,0.2155,0.8656,-0.4512,-0.7953,0.405,-0.4494,0.2832,0.8473,-0.4493,0.6621,0.5998,-0.4488,0.8167,0.3627,-0.4478,0.2548,0.8571,-0.4462,-0.0912,0.8903,-0.4462,0.5355,0.7171,-0.4458,0.8695,0.2127,-0.445,-0.1056,0.8893,-0.4447,0.5142,0.7334,-0.444,0.8836,0.1486,-0.4431,-0.0524,0.8949,-0.4424,0.25,0.8613,-0.4418,-0.0948,0.8921,-0.4415,0.2443,0.8634,-0.4411,-0.6937,-0.5694,-0.4404,0.818,0.37,-0.4385,-0.8662,0.2396,-0.4384,-0.7804,-0.4458,-0.4382,-0.559,0.704,-0.4381,0.5142,0.7373,-0.4375,0.5828,0.6848,-0.4374,0.7074,0.5552,-0.4373,-0.691,-0.5756,-0.4367,0.2417,0.8665,-0.4337,-0.5907,0.6804,-0.4331,0.0552,0.8997,-0.4314,0.1914,0.8816,-0.4309,0.2032,0.8792,-0.4285,-0.7203,0.5455,-0.4278,-0.0846,0.8999,-0.4273,0.1636,-0.8892,-0.4224,-0.0367,0.9057,-0.4206,-0.743,0.5206,-0.42,0.7622,0.4927,-0.4191,0.5557,0.7181,-0.4179,0.8998,-0.1252,-0.417,0.8117,0.4089,-0.4152,-0.1403,0.8988,-0.4142,0.3079,0.8565,-0.4141,-0.6682,-0.6181,-0.4136,-0.319,-0.8527,-0.4113,-0.1798,-0.8936,-0.4106,0.4533,0.7912,-0.4091,0.1725,0.896,-0.4088,0.1606,0.8984,-0.4077,0.6972,0.5897,-0.4065,0.3666,0.8369,-0.4064,0.8282,0.3858,-0.4055,0.761,-0.5064,-0.4053,0.8886,0.2149,-0.4036,0.0432,0.9139,-0.4024,-0.4542,0.7948,-0.4018,-0.4757,0.7825,-0.4007,0.4794,0.7808,-0.4007,0.4969,0.7698,-0.3999,-0.2142,-0.8912,-0.3982,0.9169,0.0284,-0.3979,0.1007,0.9119,-0.3941,-0.1852,0.9002,-0.3937,-0.7887,-0.4721,-0.3933,-0.3425,0.8533,-0.3932,0.001,0.9194,-0.3921,0.372,0.8414,-0.3909,0.8568,0.3362,-0.3905,-0.3356,0.8572,-0.3892,-0.478,0.7874,-0.3873,-0.3543,0.8511,-0.3868,0.2933,0.8743,-0.3865,-0.6956,-0.6056,-0.3863,0.845,-0.3697,-0.386,0.5365,0.7504,-0.3845,-0.6075,0.695,-0.3845,-0.8998,0.2061,-0.3832,-0.2303,-0.8945,-0.38,0.4228,0.8227,-0.38,0.5247,0.7618,-0.3798,-0.0816,0.9214,-0.3798,-0.7322,0.5653,-0.3758,0.0301,-0.9262,-0.3745,-0.5764,-0.7263,-0.3743,0.3631,-0.8533,-0.3743,0.3626,0.8534,-0.3734,-0.6387,-0.6728,-0.3721,0.2203,-0.9017,-0.3677,-0.5893,-0.7194,-0.3669,-0.1666,-0.9152,-0.3669,0.1811,0.9125,-0.3654,0.8776,0.3104,-0.3646,-0.6883,0.6272,-0.3641,0.8745,0.3204,-0.3619,-0.0574,0.9304,-0.3617,-0.169,-0.9169,-0.3597,0.5777,-0.7328,-0.3591,-0.1684,0.918,-0.3589,0.4709,0.8059,-0.3581,-0.0032,-0.9337,-0.3568,-0.8187,0.45,-0.3557,0.1932,0.9144,-0.3555,-0.8154,0.4569,-0.3552,0.1657,-0.92,-0.3546,-0.1437,0.9239,-0.3523,-0.4408,0.8256,-0.3511,0.8498,-0.3931,-0.3498,-0.5729,-0.7413,-0.3488,-0.3287,-0.8777,-0.3465,-0.1167,0.9308,-0.3464,0.3541,0.8687,-0.3438,0.0392,0.9382,-0.3437,-0.1701,0.9235,-0.3436,0.8603,-0.3766,-0.343,-0.2187,-0.9135,-0.3423,-0.6192,-0.7067,-0.3412,-0.7316,0.5902,-0.3403,0.0386,-0.9395,-0.3399,-0.4903,0.8026,-0.3395,0.6799,-0.65,-0.3393,-0.0039,-0.9407,-0.3384,0.3928,0.8551,-0.3384,-0.913,0.2278,-0.3377,-0.0018,-0.9413,-0.335,-0.09,0.9379,-0.3331,-0.9086,-0.2519,-0.332,0.1536,0.9307,-0.3304,-0.9433,0.033,-0.3302,-0.7457,0.5787,-0.3297,-0.8029,0.4967,-0.3291,-0.9437,-0.0322,-0.3267,-0.3646,0.8719,-0.3267,0.4466,0.833,-0.3249,0.5618,0.7608,-0.3248,0.4316,0.8416,-0.3241,0.4274,0.8439,-0.3224,0.259,-0.9105,-0.3219,0.8918,0.318,-0.3198,-0.9314,0.174,-0.3198,-0.1376,0.9375,-0.3183,0.5034,-0.8033,-0.316,0.3641,0.8761,-0.3158,0.0218,-0.9486,-0.3124,-0.6738,0.6696,-0.3124,0.9463,-0.0828,-0.3121,-0.2364,0.9202,-0.3112,-0.6453,-0.6977,-0.3106,0.7618,0.5686,-0.3104,0.5578,0.7698,-0.3097,-0.4255,0.8503,-0.3094,-0.4413,-0.8423,-0.3086,0.6519,0.6927,-0.3085,0.8775,0.3673,-0.3083,-0.8484,0.4303,-0.3082,-0.2178,0.926,-0.3082,0.2625,0.9144,-0.3065,0.7357,-0.6039,-0.3061,-0.081,0.9485,-0.3061,0.415,-0.8568,-0.3039,-0.1495,0.9409,-0.3027,-0.1582,0.9399,-0.3022,0.1446,0.9422,-0.3021,0.1852,0.9351,-0.3007,-0.6311,-0.7151,-0.2986,0.4767,0.8268,-0.2981,-0.922,-0.247,-0.2964,-0.1759,-0.9387,-0.2946,0.4431,0.8467,-0.2935,-0.4099,-0.8636,-0.291,-0.2012,0.9353,-0.2904,-0.5109,-0.8091,-0.2897,-0.9135,0.2857,-0.2883,-0.8287,0.4797,-0.288,0.4622,0.8387,-0.2877,0.8626,0.4161,-0.2866,-0.5995,-0.7473,-0.2861,0.3508,-0.8917,-0.2861,-0.0949,0.9535,-0.2836,-0.939,-0.1947,-0.2836,-0.7845,-0.5515,-0.282,-0.5069,0.8146,-0.2813,-0.9008,-0.3307,-0.281,-0.9383,0.2015,-0.2803,0.0139,-0.9598,-0.2777,-0.4484,-0.8496,-0.2777,-0.5338,-0.7987,-0.2773,0.0577,0.9591,-0.2767,0.7211,0.6351,-0.275,-0.4989,-0.8219,-0.2744,-0.6651,-0.6945,-0.274,-0.6926,-0.6672,-0.2721,-0.0867,-0.9583,-0.2707,-0.8321,-0.4841,-0.2702,-0.4668,-0.8421,-0.2699,0.0204,0.9627,-0.2697,-0.8956,-0.3538,-0.2696,0.1364,-0.9533,-0.2693,-0.6975,-0.6641,-0.2674,0.246,-0.9316,-0.2673,0.3889,0.8816,-0.2655,-0.0031,-0.9641,-0.2643,0.9437,0.1987,-0.2636,0.2385,-0.9347,-0.2629,-0.8127,-0.52,-0.2606,0.3232,-0.9097,-0.2605,0.5711,0.7785,-0.2598,-0.158,0.9527,-0.2592,0.2924,0.9205,-0.2589,-0.9386,-0.228,-0.2572,0.9568,-0.1354,-0.2561,0.4981,0.8285,-0.2546,-0.1119,0.9605,-0.2543,-0.6763,0.6914,-0.2515,-0.1017,0.9625,-0.2511,-0.9137,-0.3195,-0.2508,0.3797,-0.8904,-0.2498,-0.9321,0.2622,-0.2493,0.4314,0.867,-0.2485,0.4698,0.8471,-0.2473,0.2787,-0.928,-0.2469,0.208,0.9464,-0.2466,0.016,-0.969,-0.2449,0.0485,-0.9683,-0.2446,0.1861,-0.9516,-0.2445,-0.4886,0.8376,-0.2433,-0.6523,-0.7179,-0.2418,-0.6167,-0.7492,-0.2391,-0.971,0.0083,-0.2379,-0.1176,-0.9641,-0.2365,-0.7121,-0.6611,-0.2358,-0.2204,0.9465,-0.2335,0.4513,0.8613,-0.2328,-0.4244,-0.8751,-0.2327,-0.9688,0.0854,-0.2316,-0.5914,-0.7724,-0.2302,-0.6724,0.7035,-0.2272,0.8967,0.3798,-0.227,0.9719,-0.0615,-0.2269,-0.1627,-0.9602,-0.2266,-0.9437,0.2411,-0.2237,-0.3634,0.9044,-0.2232,-0.4592,0.8598,-0.2231,-0.3668,0.9032,-0.2211,-0.3048,0.9264,-0.2207,-0.6893,-0.69,-0.2206,-0.0606,-0.9735,-0.2206,-0.9746,-0.039,-0.2205,-0.4611,0.8595,-0.2204,-0.4795,0.8494,-0.2203,-0.0495,-0.9742,-0.2203,-0.4747,0.8521,-0.2191,0.4207,-0.8803,-0.219,-0.2756,0.936,-0.219,-0.1634,-0.9619,-0.219,-0.0612,-0.9738,-0.2181,0.2478,0.9439,-0.2177,-0.3238,-0.9207,-0.2164,0.1549,-0.9639,-0.2161,0.5444,0.8105,-0.2155,-0.4499,0.8667,-0.2151,-0.3979,-0.8919,-0.2129,-0.8194,-0.5322,-0.2119,0.6257,0.7507,-0.2115,-0.3127,0.926,-0.2099,0.8844,0.4169,-0.2093,-0.5473,-0.8103,-0.2092,0.514,-0.8319,-0.2071,-0.1213,-0.9708,-0.2042,-0.9628,-0.1769,-0.2018,-0.3666,-0.9083,-0.2005,0.0522,-0.9783,-0.1994,-0.7547,-0.6251,-0.1974,-0.432,-0.88,-0.1937,-0.5012,-0.8434,-0.1922,0.6807,-0.7069,-0.1911,0.8475,0.4952,-0.191,0.3716,0.9085,-0.1896,-0.6585,-0.7283,-0.1885,-0.0791,0.9789,-0.1883,-0.2777,-0.942,-0.1879,-0.1313,-0.9734,-0.1875,-0.2864,0.9396,-0.1872,-0.8263,0.5312,-0.187,0.3403,0.9215,-0.1861,0.4268,0.885,-0.186,-0.0596,0.9807,-0.1828,-0.0404,-0.9823,-0.182,-0.321,-0.9294,-0.1808,-0.0029,0.9835,-0.1803,-0.7023,-0.6886,-0.1798,-0.9665,-0.1834,-0.1797,-0.4425,0.8786,-0.1784,-0.9631,-0.2016,-0.1782,-0.6847,0.7067,-0.1778,-0.3107,-0.9337,-0.1775,-0.9835,0.0349,-0.1764,0.9438,0.2795,-0.1751,0.9686,0.1762,-0.175,-0.7397,0.6497,-0.1746,0.7179,0.6739,-0.1745,-0.1362,-0.9752,-0.1744,0.1154,0.9779,-0.1739,0.9185,-0.3551,-0.1737,-0.0788,-0.9816,-0.1737,0.0489,-0.9836,-0.1733,-0.9217,-0.3471,-0.1733,-0.1455,-0.9741,-0.1727,0.0542,-0.9835,-0.1719,0.1568,-0.9726,-0.1709,-0.7653,0.6206,-0.1706,-0.4854,-0.8575,-0.1705,-0.6291,-0.7584,-0.1705,-0.1791,0.969,-0.1698,-0.9349,0.3115,-0.1697,-0.7668,0.6191,-0.1697,-0.5687,0.8048,-0.1688,0.1673,-0.9713,-0.1675,-0.0874,-0.982,-0.1625,-0.3126,-0.9359,-0.1614,0.396,0.9039,-0.1604,-0.9403,0.3002,-0.1601,-0.1101,-0.9809,-0.1598,-0.4811,0.862,-0.1583,-0.6173,-0.7707,-0.158,-0.0369,-0.9868,-0.1576,-0.5065,-0.8477,-0.1569,-0.0966,-0.9829,-0.1561,0.2163,-0.9638,-0.156,-0.4686,-0.8695,-0.1558,0.0291,-0.9874,-0.1541,-0.9862,-0.0598,-0.1539,0.7785,-0.6085,-0.1531,-0.7727,-0.616,-0.1523,0.4662,0.8715,-0.1518,-0.0217,0.9882,-0.1492,0.9739,-0.1712,-0.148,0.0712,0.9864,-0.1478,-0.7794,-0.6089,-0.1437,0.6184,0.7726,-0.1432,-0.7122,-0.6872,-0.1428,-0.9896,-0.014,-0.1426,-0.0678,-0.9875,-0.1422,0.0468,-0.9887,-0.1392,0.8363,-0.5303,-0.1368,0.4651,0.8746,-0.1354,-0.1642,0.9771,-0.1346,-0.3124,-0.9404,-0.1342,0.9247,0.3562,-0.134,-0.0119,0.9909,-0.1339,0.1375,0.9814,-0.1334,-0.8959,-0.4238,-0.1328,-0.0389,-0.9904,-0.1322,-0.3101,-0.9415,-0.1321,0.0326,-0.9907,-0.1316,-0.31,0.9416,-0.1306,-0.425,-0.8957,-0.1301,-0.9846,-0.1169,-0.1298,-0.6496,0.7491,-0.1292,-0.2431,-0.9614,-0.1277,-0.9917,0.0139,-0.1254,-0.9882,0.0884,-0.1251,0.3739,-0.919,-0.1243,0.1457,0.9815,-0.1234,-0.1625,-0.979,-0.1232,-0.3508,-0.9283,-0.123,-0.6405,0.758,-0.1197,0.0574,0.9912,-0.1192,-0.1326,0.984,-0.1181,-0.8537,0.5072,-0.1164,-0.5975,-0.7934,-0.1162,0.2228,-0.9679,-0.1156,0.175,-0.9778,-0.1156,0.2193,0.9688,-0.1154,0.5719,0.8122,-0.1143,0.5033,0.8565,-0.1138,0.632,0.7666,-0.1138,-0.0471,-0.9924,-0.1107,-0.8165,0.5666,-0.1094,0.8593,0.4997,-0.1087,0.0261,0.9937,-0.1083,-0.0822,0.9907,-0.1066,-0.6392,-0.7616,-0.106,-0.5334,-0.8392,-0.1057,-0.0937,0.99,-0.103,0.4848,0.8686,-0.1027,0.6278,0.7716,-0.101,0.5441,-0.8329,-0.1006,-0.9943,-0.034,-0.1001,0.2524,-0.9624,-0.0995,0.0091,0.995,-0.0993,0.9736,0.2057,-0.0991,-0.436,-0.8945,-0.099,-0.5101,-0.8544,-0.0975,-0.0735,-0.9925,-0.097,0.0174,0.9951,-0.0967,0.2557,0.9619,-0.0959,-0.9905,-0.0981,-0.0958,-0.1081,0.9895,-0.0939,-0.9619,0.2568,-0.0916,-0.9351,0.3423,-0.0906,-0.0295,0.9955,-0.0903,-0.0953,-0.9914,-0.0901,-0.2057,-0.9744,-0.0901,-0.0091,0.9959,-0.0886,0.1271,0.9879,-0.0872,0.1585,-0.9835,-0.0869,0.5161,0.8521,-0.0863,0.1787,0.9801,-0.086,0.4009,0.9121,-0.0854,-0.5461,-0.8333,-0.0849,-0.096,0.9918,-0.0798,-0.0053,0.9968,-0.0776,-0.9715,-0.2242,-0.0757,0.2321,-0.9697,-0.0725,-0.6707,0.7382,-0.0711,0.3203,-0.9446,-0.0698,0.9972,-0.0278,-0.0696,-0.7398,0.6692,-0.0695,-0.9326,0.3543,-0.068,-0.9911,-0.1142,-0.0661,0.8402,0.5382,-0.0653,-0.7475,-0.6611,-0.0651,-0.2423,0.968,-0.0649,0.558,0.8273,-0.0644,-0.2719,0.9602,-0.0641,-0.4475,-0.892,-0.0598,0.5348,0.8429,-0.0595,0.2142,-0.975,-0.0595,-0.9959,0.0686,-0.0578,-0.8196,-0.5699,-0.0572,-0.8988,-0.4346,-0.0564,0.7427,0.6672,-0.055,0.0253,0.9982,-0.0541,-0.2972,-0.9533,-0.0539,-0.0951,-0.994,-0.0528,0.0876,-0.9948,-0.0528,-0.9936,-0.1001,-0.0523,0.3701,0.9275,-0.0522,-0.048,-0.9975,-0.0469,-0.0662,0.9967,-0.0463,-0.5592,-0.8277,-0.0462,-0.0664,-0.9967,-0.0462,-0.9937,0.102,-0.0451,-0.6006,-0.7982,-0.045,0.0842,0.9954,-0.0442,0.2689,0.9622,-0.0441,0.1507,-0.9876,-0.0438,-0.5704,-0.8202,-0.043,-0.2661,-0.963,-0.0424,0.6012,0.798,-0.0418,-0.7223,-0.6903,-0.0413,-0.418,0.9075,-0.0391,-0.1489,-0.9881,-0.0389,-0.0941,-0.9948,-0.0386,-0.4432,0.8956,-0.0383,-0.7068,-0.7064,-0.0382,0.7175,0.6955,-0.0379,-0.246,0.9685,-0.0378,0.0801,0.9961,-0.0377,-0.6968,-0.7163,-0.0368,-0.9967,0.0727,-0.0367,0.5119,0.8583,-0.0364,-0.0161,-0.9992,-0.0353,-0.1912,0.9809,-0.0331,-0.9378,-0.3457,-0.0321,0.9457,0.3236,-0.0305,-0.4447,-0.8952,-0.0304,-0.1973,0.9799,-0.0297,-0.7536,-0.6567,-0.0291,-0.3929,-0.9191,-0.0288,-0.6575,-0.7529,-0.0283,0.631,0.7753,-0.0281,0.5866,0.8094,-0.0277,-0.2782,0.9601,-0.027,-0.9787,-0.2035,-0.0259,-0.1775,0.9838,-0.0257,0.5122,0.8585,-0.0245,0.3385,0.9406,-0.0236,0.5612,0.8273,-0.0236,0.8035,0.5948,-0.0227,0.616,0.7874,-0.0205,0.4249,0.905,-0.0196,0.5235,0.8518,-0.0194,0.5236,0.8517,-0.0175,-0.9843,-0.1757,-0.0124,0.0289,0.9995,-0.0107,0.5632,-0.8262,-0.0096,-0.1333,0.991,-0.009,-0.7201,-0.6938,-0.007,0.1131,-0.9936,-0.0064,0.7097,-0.7045,-0.0058,-0.0756,0.9971,-0.0056,-0.0446,-0.999,-0.0043,0.3299,0.944,-0.003,-0.0783,0.9969,-0.0029,-0.3694,0.9293,-0.0023,-0.1018,0.9948,-0.0021,0.0665,0.9978,-0.0007,-0.614,-0.7893,0.0008,0.8004,0.5994,0.0023,0.1264,-0.992,0.0031,0.9476,0.3195,0.004,0.5249,0.8511,0.0062,0.4467,0.8947,0.0071,-0.975,-0.2222,0.0081,0.104,-0.9945,0.0095,-0.8158,0.5783,0.01,-0.0643,0.9979,0.014,-0.9999,-0.0011,0.0148,0.5765,0.8169,0.0148,-0.8222,0.569,0.0154,0.9309,0.3651,0.0167,0.2332,-0.9723,0.0175,0.5545,0.832,0.0201,-0.1881,0.982,0.0221,-0.0702,0.9973,0.0225,-0.1474,-0.9888,0.0242,-0.9943,0.1039,0.0248,-0.5217,-0.8528,0.0255,-0.2732,0.9616,0.0258,0.9994,0.0211,0.0261,-0.3339,-0.9422,0.0278,-0.6526,-0.7572,0.0301,-0.9995,0.0053,0.0301,-0.852,-0.5226,0.0305,0.8715,0.4894};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_440_vector_2()
		{
			double[] value = {0.0318,0.0567,0.9979,0.0334,-0.6527,-0.7569,0.0351,-0.8563,0.5153,0.0357,0.0152,-0.9992,0.0369,-0.0306,-0.9989,0.037,-0.9484,0.3149,0.0393,-0.3586,-0.9326,0.0395,-0.2423,-0.9694,0.0406,-0.4587,0.8877,0.0409,0.0448,-0.9982,0.0425,0.2242,0.9736,0.0429,0.5201,0.853,0.0429,0.5658,-0.8234,0.0438,-0.033,-0.9985,0.0469,-0.4272,-0.9029,0.047,-0.985,-0.166,0.0478,-0.0607,-0.997,0.0479,-0.0336,0.9983,0.0495,-0.4825,-0.8745,0.0496,-0.006,0.9988,0.0497,-0.7049,0.7076,0.0499,0.0282,0.9984,0.0516,0.1464,-0.9879,0.0523,0.9932,0.1036,0.0531,-0.9855,-0.1614,0.0532,0.3115,-0.9487,0.0539,0.3203,0.9458,0.0549,-0.8281,-0.5579,0.0552,-0.2916,0.9549,0.0554,-0.7454,-0.6643,0.0566,-0.1099,0.9923,0.0571,-0.4549,0.8887,0.0571,0.9159,0.3974,0.0575,0.3509,0.9346,0.06,-0.4821,-0.874,0.0605,-0.7321,-0.6785,0.0613,-0.2055,0.9767,0.0619,0.342,0.9376,0.0624,-0.0089,0.998,0.0661,0.8037,0.5914,0.0666,-0.8526,-0.5183,0.0676,-0.2554,-0.9645,0.0677,-0.6672,-0.7418,0.068,0.9976,-0.0105,0.0682,0.85,0.5223,0.0698,-0.7447,-0.6637,0.0701,-0.703,-0.7078,0.0702,0.2741,-0.9591,0.0706,0.1077,-0.9917,0.0736,-0.9236,-0.3762,0.0757,-0.0281,-0.9967,0.0769,-0.0107,0.997,0.0777,0.384,0.9201,0.0779,0.0272,0.9966,0.0788,-0.2651,-0.961,0.0801,-0.9306,0.3573,0.0805,0.6532,0.7529,0.0827,-0.9136,-0.398,0.0829,-0.6538,0.7521,0.0836,-0.074,-0.9937,0.085,-0.2739,-0.958,0.0874,0.0531,-0.9948,0.088,0.9961,0.0018,0.0884,0.7853,0.6128,0.0896,0.6288,0.7724,0.0928,-0.423,0.9014,0.093,-0.0471,0.9946,0.0932,-0.4227,-0.9015,0.0938,-0.8133,-0.5743,0.0942,-0.0341,-0.995,0.0944,-0.4763,0.8742,0.0945,-0.825,-0.5572,0.0953,0.5809,0.8084,0.0954,-0.4379,0.8939,0.0971,0.3593,0.9281,0.098,0.1344,0.9861,0.0981,0.989,0.1106,0.0986,0.2279,-0.9687,0.1013,-0.4995,0.8604,0.1017,-0.0322,-0.9943,0.1019,-0.6034,-0.7909,0.1024,-0.0254,0.9944,0.1025,-0.0631,-0.9927,0.1043,0.3206,0.9414,0.1055,0.9905,0.0885,0.1061,-0.0535,-0.9929,0.1068,0.6923,0.7137,0.1074,0.6885,-0.7173,0.108,-0.8408,-0.5305,0.1088,0.572,0.813,0.1101,0.9897,0.0914,0.1125,0.0523,-0.9923,0.1129,-0.4787,-0.8707,0.1134,-0.4424,-0.8896,0.1141,-0.8192,0.5621,0.1143,-0.7114,-0.6934,0.1146,-0.0248,0.9931,0.115,-0.4568,-0.8821,0.1165,-0.9913,0.0607,0.1186,-0.5012,-0.8572,0.1203,0.004,-0.9927,0.1216,0.9004,0.4178,0.1225,-0.0728,0.9898,0.1229,-0.8167,0.5638,0.1239,-0.73,-0.6722,0.1246,0.1923,0.9734,0.1256,0.3749,0.9185,0.126,-0.0883,0.9881,0.126,0.6173,0.7766,0.1261,-0.9171,-0.3782,0.1262,-0.9909,-0.0469,0.1269,0.2363,0.9633,0.127,-0.1555,0.9796,0.1279,-0.9387,0.32,0.1282,0.7766,0.6168,0.1294,-0.0581,0.9899,0.1306,-0.7773,0.6154,0.1318,0.9347,0.3302,0.1325,-0.0852,0.9875,0.1326,-0.8206,-0.5559,0.1327,-0.2242,0.9655,0.1335,-0.7485,-0.6496,0.1342,-0.9138,-0.3833,0.1343,-0.4076,0.9032,0.1365,0.3157,0.939,0.1378,0.0067,-0.9904,0.139,0.1347,0.9811,0.1391,0.9,0.4132,0.1392,0.5593,0.8172,0.1397,0.4961,0.8569,0.14,-0.8055,-0.5758,0.1405,-0.2406,-0.9604,0.1405,-0.6913,-0.7088,0.1405,-0.4748,-0.8688,0.1411,0.5861,0.7979,0.1422,0.3397,0.9297,0.1438,-0.1394,-0.9797,0.1441,-0.4156,-0.8981,0.1454,0.953,0.2657,0.1464,0.0688,0.9868,0.1479,0.3296,0.9325,0.1499,-0.0953,0.9841,0.1516,0.0869,0.9846,0.1517,-0.8972,0.4147,0.1561,-0.6163,0.7719,0.157,-0.2475,-0.9561,0.157,0.9368,0.3126,0.1575,-0.9626,-0.2206,0.1586,-0.67,-0.7253,0.1595,0.0405,-0.9864,0.161,-0.0524,-0.9856,0.1625,-0.3115,0.9363,0.1642,-0.9034,0.396,0.1642,-0.457,-0.8742,0.1653,0.1263,0.9781,0.1661,0.3411,0.9252,0.1663,0.4289,0.8879,0.1668,0.4445,0.8801,0.1685,-0.2386,-0.9564,0.1694,0.9324,0.3192,0.1698,0.2041,0.9641,0.1704,-0.2446,0.9545,0.1745,0.4414,0.8802,0.1746,0.7928,-0.584,0.1762,-0.0561,-0.9828,0.1768,-0.9842,0.0102,0.1768,-0.8799,-0.4411,0.1773,-0.4548,-0.8728,0.1775,0.8837,0.4332,0.1782,-0.9828,-0.0486,0.1788,-0.2097,0.9613,0.1799,0.1168,-0.9767,0.1812,-0.5757,-0.7973,0.1826,-0.0548,0.9817,0.185,-0.9105,-0.3698,0.1859,-0.9705,0.1533,0.1862,-0.0093,0.9825,0.1874,0.1885,0.964,0.1877,-0.2319,0.9545,0.1878,-0.7775,-0.6002,0.1898,0.9483,-0.2543,0.192,0.8935,0.4059,0.193,-0.1817,0.9642,0.1935,-0.3958,0.8977,0.1949,0.9195,0.3413,0.1957,-0.5685,-0.7991,0.1968,-0.0155,0.9803,0.1971,0.2141,0.9567,0.1979,0.4851,0.8518,0.1981,0.0441,0.9792,0.1982,0.4451,0.8733,0.1984,-0.1046,0.9745,0.1986,0.5542,0.8083,0.199,-0.4786,0.8552,0.1995,0.8908,0.4084,0.2,0.5,0.8426,0.2003,-0.6497,-0.7333,0.2003,0.6492,0.7338,0.2008,-0.4826,0.8525,0.202,0.8112,0.5487,0.2022,0.2954,-0.9337,0.2029,-0.3161,0.9268,0.203,0.5034,0.8399,0.2034,-0.5447,-0.8136,0.204,0.1124,-0.9725,0.2047,0.3692,0.9065,0.2063,-0.3523,-0.9129,0.2064,-0.6607,-0.7217,0.2077,-0.3377,0.9181,0.2112,0.3815,0.8999,0.2116,-0.969,0.1275,0.2121,-0.6798,-0.702,0.2128,-0.7151,-0.6659,0.2136,-0.1233,0.9691,0.2143,0.3385,0.9162,0.2143,-0.2721,-0.9381,0.2145,0.9238,-0.317,0.2146,-0.0735,-0.9739,0.216,-0.1124,0.9699,0.2174,0.9748,0.0506,0.2178,0.1005,0.9708,0.2182,-0.4841,0.8474,0.2183,0.7483,0.6264,0.2187,-0.1097,-0.9696,0.2188,-0.1802,0.959,0.2193,0.3101,0.9251,0.2194,-0.7891,-0.5738,0.2197,-0.0238,-0.9753,0.2198,-0.0741,-0.9727,0.2205,-0.1338,-0.9662,0.2217,-0.2648,-0.9385,0.2219,0.9253,0.3076,0.2224,-0.1049,0.9693,0.2227,0.4904,0.8425,0.224,-0.9642,-0.1416,0.2242,0.0629,-0.9725,0.2243,0.0472,-0.9734,0.2249,-0.9409,0.2533,0.2261,-0.3043,0.9254,0.2264,-0.9738,0.0225,0.2282,-0.1428,-0.9631,0.2286,-0.8029,-0.5505,0.2301,0.0178,-0.973,0.2306,-0.9559,-0.1822,0.2317,0.4386,0.8683,0.2317,0.2266,0.946,0.232,-0.6804,-0.6951,0.2323,-0.094,-0.9681,0.2329,-0.0123,-0.9724,0.2342,-0.9083,-0.3466,0.2346,-0.2475,0.9401,0.2348,0.1756,0.956,0.235,-0.245,-0.9406,0.2356,-0.8625,-0.4479,0.2375,-0.8027,-0.5471,0.2379,0.7778,0.5817,0.2381,-0.232,-0.9431,0.2392,-0.1895,-0.9523,0.2394,0.4299,-0.8705,0.2405,-0.8687,-0.433,0.2408,0.042,-0.9697,0.241,0.8662,0.4378,0.2437,-0.622,0.7441,0.2438,0.5952,-0.7657,0.2459,-0.6299,0.7367,0.2466,0.3775,0.8926,0.2484,-0.3269,0.9118,0.2504,0.8099,0.5305,0.2523,0.4404,-0.8616,0.2532,-0.9535,0.1632,0.2549,0.0324,-0.9664,0.2592,-0.6574,-0.7076,0.2601,-0.0413,-0.9647,0.2603,-0.494,0.8296,0.2608,0.0409,-0.9645,0.2626,0.1766,0.9486,0.2631,-0.1518,0.9527,0.2635,-0.3933,-0.8808,0.2639,0.3781,0.8874,0.264,0.4476,0.8544,0.2683,-0.6241,-0.7338,0.2687,-0.0114,0.9632,0.2704,0.2561,0.9281,0.2706,-0.6704,-0.6909,0.2716,0.8658,0.4203,0.272,0.948,0.1652,0.2731,-0.0803,-0.9586,0.2746,0.3851,0.8811,0.275,0.1508,0.9496,0.2752,0.0996,0.9562,0.2761,-0.1424,-0.9505,0.2763,-0.0024,-0.9611,0.2763,0.4108,0.8688,0.2772,0.9354,0.2193,0.2772,0.156,0.9481,0.2781,0.0533,-0.9591,0.2784,0.2123,0.9367,0.2785,-0.1001,0.9552,0.2787,0.3064,0.9102,0.2814,0.6744,0.6826,0.2827,-0.511,-0.8118,0.2829,-0.8949,-0.3452,0.2833,-0.179,0.9422,0.2843,0.6585,0.6968,0.2845,0.1276,0.9502,0.2866,-0.8047,0.52,0.2872,0.1177,0.9506,0.2879,-0.6766,-0.6778,0.2881,-0.6286,0.7224,0.2885,-0.6857,-0.6683,0.2897,0.0931,-0.9526,0.2905,-0.1409,-0.9464,0.2922,0.0719,-0.9536,0.2924,0.1034,-0.9507,0.2927,-0.7873,-0.5426,0.2944,0.4516,-0.8422,0.2977,0.0679,-0.9522,0.2989,-0.1871,0.9358,0.299,-0.2101,0.9308,0.3,-0.7294,0.6147,0.3006,-0.9517,-0.0635,0.3048,0.2698,0.9134,0.3105,-0.4769,0.8223,0.3122,0.1584,-0.9367,0.3132,0.286,0.9056,0.3134,0.0561,0.948,0.3137,0.1699,0.9342,0.3142,-0.1727,-0.9335,0.3162,-0.4798,0.8184,0.3168,0.2156,0.9237,0.3168,-0.2023,-0.9267,0.3168,0.5631,-0.7633,0.3179,-0.4274,0.8463,0.318,0.1277,-0.9395,0.3188,0.066,-0.9455,0.3214,-0.9181,-0.232,0.3232,0.1797,0.9291,0.3249,0.8474,0.4199,0.3255,-0.9427,-0.0738,0.3262,-0.248,0.9122,0.3262,0.6519,0.6845,0.3278,-0.624,0.7093,0.3293,0.3833,-0.8629,0.3298,0.0762,-0.941,0.3322,0.4573,0.8249,0.3327,0.9338,0.1316,0.3333,0.8727,0.3568,0.3342,0.5993,-0.7275,0.3343,0.0704,-0.9398,0.3344,-0.2057,0.9197,0.3354,-0.703,0.6271,0.3359,0.2148,0.9171,0.3362,-0.3769,-0.8631,0.3365,0.2854,-0.8974,0.3369,0.2615,0.9045,0.3374,-0.6022,-0.7235,0.3379,0.9337,-0.1187,0.3392,-0.0743,0.9378,0.3401,-0.5472,0.7648,0.3404,-0.939,0.0494,0.3408,0.2776,0.8982,0.3421,0.5941,0.7281,0.3422,0.8007,0.4918,0.3428,0.1843,0.9212,0.343,0.6515,0.6767,0.3436,-0.8614,-0.374,0.3436,0.4155,0.8422,0.3441,-0.8278,0.4431,0.3443,-0.204,0.9164,0.3472,0.6614,-0.6648,0.3484,-0.3747,-0.8592,0.3489,-0.2388,0.9062,0.3497,0.8924,-0.2852,0.35,0.137,0.9267,0.3501,0.061,0.9347,0.3503,-0.9028,0.2494,0.3509,-0.8133,0.4642,0.3523,0.6767,0.6465,0.3531,-0.8403,0.4114,0.3537,0.0482,0.9341,0.3569,-0.4681,0.8084,0.3572,-0.5849,-0.7282,0.3576,0.6288,0.6905,0.3577,0.1249,0.9254,0.3578,0.3116,0.8803,0.3579,-0.3351,0.8716,0.359,-0.7348,0.5755,0.3593,0.7329,0.5777,0.3608,-0.1541,0.9198,0.3613,-0.9264,0.106,0.3615,0.4715,0.8043,0.3622,-0.1791,0.9147,0.3638,0.8667,-0.3414,0.3646,-0.2764,-0.8892,0.3649,0.3187,0.8748,0.3651,-0.9294,-0.0541,0.3652,-0.7228,0.5866,0.3663,-0.5636,0.7404,0.3679,-0.7043,-0.6071,0.3684,-0.0716,0.9269,0.3686,0.1582,-0.916,0.3687,0.1124,0.9227,0.3687,0.1285,0.9206,0.3688,-0.229,-0.9009,0.3689,-0.4122,-0.8331,0.3702,0.2254,0.9012,0.3713,0.9173,0.1435,0.3724,0.2603,0.8908,0.3756,0.4242,0.824,0.3763,0.732,0.568,0.3769,-0.1291,0.9172,0.3772,-0.3149,0.871,0.3783,-0.0484,-0.9244,0.3787,0.4804,0.7911,0.3793,-0.8342,0.4004,0.3798,0.7104,-0.5925,0.3822,-0.0015,0.9241,0.3827,-0.3557,0.8526,0.3832,-0.2618,-0.8858,0.3834,-0.1997,0.9017,0.3835,-0.0572,0.9218,0.3844,-0.2647,0.8844,0.3865,-0.5239,-0.759,0.3881,-0.0251,0.9213,0.3898,-0.0626,0.9188,0.3899,0.3264,0.861,0.391,-0.5528,-0.7359,0.3925,0.2387,0.8882,0.3938,-0.9052,-0.1597,0.3943,0.0966,0.9139,0.3965,0.4975,0.7716,0.3966,0.1614,0.9037,0.3969,0.1767,0.9007,0.3978,-0.875,0.276,0.3997,-0.9161,0.0331,0.4,0.4813,0.78,0.4036,0.3666,0.8383,0.4039,-0.5949,-0.695,0.4045,0.9124,-0.0618,0.4045,-0.6406,-0.6527,0.4068,0.1389,0.9029,0.4074,-0.2088,0.889,0.4075,0.1147,0.906,0.4082,0.4032,0.819,0.4085,-0.8834,0.2296,0.409,0.1067,-0.9063,0.4097,0.7262,0.552,0.4121,-0.4901,-0.7681,0.4122,-0.5937,-0.6911,0.4124,-0.6727,-0.6143,0.4131,-0.3648,-0.8344,0.4139,0.1549,0.8971,0.4141,0.082,-0.9065,0.4148,-0.0974,0.9047,0.4163,-0.9072,-0.0608,0.4166,-0.1455,0.8974,0.4175,-0.8567,-0.3028,0.4175,0.4898,0.7654,0.4191,-0.4216,-0.8041,0.4192,0.1804,0.8898,0.4199,-0.6225,-0.6604,0.4206,0.3305,0.8449,0.4208,0.3365,-0.8424,0.4217,-0.6088,-0.672,0.4223,0.3679,0.8285,0.4228,0.1291,0.897,0.423,-0.8573,-0.2936,0.424,0.0258,0.9053,0.4281,0.5905,0.6841,0.4287,-0.3898,0.815,0.4306,0.054,-0.9009,0.4309,-0.6221,-0.6537,0.4325,-0.154,-0.8884,0.4327,-0.8969,0.0917,0.4328,0.3852,0.815,0.4337,-0.0098,-0.901,0.4348,-0.0592,0.8986,0.4379,-0.5375,-0.7206,0.4382,-0.7463,-0.5011,0.4409,-0.0438,-0.8965,0.443,0.1992,0.8741,0.4431,-0.2047,-0.8728,0.4434,0.4906,-0.7501,0.4438,-0.321,-0.8367,0.4456,-0.388,0.8068,0.4463,0.5809,0.6807,0.4476,0.205,0.8704,0.4481,-0.0658,-0.8916,0.4481,0.1276,-0.8848,0.4487,-0.4295,-0.7837,0.4517,-0.2067,-0.8679,0.4526,-0.4611,-0.7632,0.4539,0.3924,0.8,0.4541,-0.5756,0.6801,0.4556,-0.3645,-0.8121,0.4571,-0.5474,0.701,0.4595,0.8671,-0.1923,0.4613,0.4504,-0.7644,0.4624,-0.0145,-0.8865,0.4633,-0.7504,-0.4714,0.4642,0.7083,0.5318,0.4643,-0.182,-0.8668,0.4652,-0.0044,0.8852,0.4653,-0.5656,-0.6808,0.4666,-0.8807,0.0812,0.4669,0.2348,0.8526,0.4671,0.5599,0.6843,0.4685,-0.2045,-0.8595,0.4692,-0.2847,-0.8359,0.4711,0.562,-0.6799,0.4728,-0.0366,-0.8804,0.4735,-0.8727,-0.119,0.4738,0.4917,0.7306,0.4744,0.3119,0.8232,0.4765,0.876,-0.0744,0.4781,0.1011,-0.8724,0.4786,-0.7227,-0.4986,0.4789,0.2082,0.8528,0.4803,0.3778,0.7916,0.4816,0.5576,-0.6761,0.4831,-0.3918,0.783,0.4855,-0.012,0.8741,0.4877,0.4989,0.7164,0.4899,-0.5363,-0.6873,0.4919,-0.6186,-0.6126,0.4924,0.034,0.8697,0.4926,0.0487,0.8689,0.4933,0.2033,0.8458,0.4937,-0.6942,0.5238,0.494,-0.6998,-0.516,0.4948,0.2705,-0.8258,0.4974,-0.1095,0.8606,0.4978,0.1569,-0.853,0.4991,0.299,-0.8133,0.4991,0.2744,0.8219,0.5002,0.1064,-0.8593,0.5016,0.1038,0.8588,0.5026,0.1358,0.8538,0.5033,-0.529,-0.6833,0.5066,0.3729,0.7774,0.5067,-0.667,0.5462,0.508,0.0577,-0.8594,0.5084,-0.6032,-0.6146,0.5115,-0.2862,-0.8102,0.5122,0.4217,0.7482,0.5124,0.8581,0.0325,0.5137,0.303,0.8027,0.5157,0.6156,0.5959,0.5158,0.843,-0.1524,0.516,-0.0459,0.8554,0.516,0.5688,-0.6404,0.5161,0.2236,0.8268,0.5161,0.1569,0.842,0.5167,0.4181,0.7471,0.5167,-0.8102,0.2766,0.5171,-0.395,-0.7593,0.5192,-0.5026,-0.6912,0.5195,0.2835,0.8061,0.5222,-0.0654,-0.8503,0.5231,-0.1088,0.8453,0.5245,0.823,0.2182,0.5252,-0.0948,0.8457,0.5287,-0.4241,-0.7353,0.5292,-0.4503,-0.7192,0.5311,0.3631,0.7655,0.5318,-0.1824,0.827,0.5327,0.5275,-0.6617,0.5338,0.8023,-0.2672,0.536,0.0843,-0.84,0.5371,-0.7012,-0.4689,0.5371,-0.83,-0.1502,0.5374,0.3457,-0.7692,0.5398,-0.7719,0.3358,0.5399,-0.837,-0.0893,0.5403,-0.7984,-0.2659,0.5423,0.1154,-0.8322,0.5425,0.1116,-0.8326,0.5429,0.3395,0.7681,0.5434,-0.8236,-0.1627,0.5442,-0.5654,-0.6198,0.5458,-0.4683,-0.6948,0.5475,-0.7366,-0.3971,0.5476,-0.3559,-0.7573,0.5492,0.1193,0.8271,0.5507,-0.8346,0.0103,0.5511,-0.8334,0.0423,0.5518,-0.8232,0.1337,0.5551,-0.0313,0.8312,0.5565,-0.6966,-0.4528,0.5566,0.247,0.7932,0.5593,-0.014,-0.8289,0.5596,-0.1149,0.8207,0.5602,0.1482,0.815,0.5614,0.0263,-0.8271,0.5615,-0.7156,-0.4155,0.5628,-0.4856,-0.6689,0.5657,0.0792,0.8208,0.5665,0.0379,0.8232,0.5674,-0.3623,0.7394,0.5682,0.624,0.5364,0.5683,-0.0579,0.8208,0.5715,-0.4352,-0.6957,0.5717,0.7598,-0.3095,0.5736,-0.2771,-0.7708,0.5752,-0.1517,-0.8038,0.5757,-0.7999,-0.1693,0.5802,-0.4859,-0.6536,0.5829,0.3688,0.7241,0.5849,0.7559,-0.2941,0.5853,0.1983,0.7862,0.5855,0.6664,0.4616,0.5862,-0.7628,-0.2729,0.5882,0.7186,0.3709,0.5887,-0.1792,-0.7883,0.5892,0.0478,-0.8066,0.5911,0.2674,0.761,0.5934,-0.2764,-0.7559,0.5946,0.5676,0.5695,0.5952,0.2356,-0.7683,0.6005,0.6395,-0.4801,0.6006,0.1851,-0.7778,0.603,-0.72,0.3435,0.6054,-0.3676,-0.7059,0.6073,-0.0592,0.7923,0.6077,0.2655,0.7484,0.6089,0.132,0.7822,0.611,-0.7517,-0.2484,0.6113,-0.1265,0.7812,0.612,-0.1225,0.7813,0.6124,0.2198,-0.7594,0.6125,-0.6539,-0.4442,0.614,0.1943,-0.765,0.6176,0.0041,0.7865,0.6177,0.562,0.5501,0.6224,0.7269,-0.2901,0.6232,-0.0207,0.7818,0.6258,0.7796,0.0242,0.6272,-0.0292,0.7783,0.6294,0.642,0.4379,0.6309,-0.4251,-0.649,0.6318,0.5837,0.51,0.6337,0.1887,-0.7503,0.6352,-0.283,0.7187,0.6367,-0.4907,-0.5948,0.6389,0.0293,-0.7687,0.64,0.5779,-0.5063,0.6415,-0.572,0.5112,0.6419,-0.2748,-0.7158,0.6421,0.331,-0.6915,0.6458,0.7558,-0.1078,0.6474,-0.0275,0.7616,0.6537,-0.3669,-0.6619,0.6554,0.1753,-0.7347,0.6595,0.4971,0.5638,0.6596,-0.4959,-0.5647,0.6603,-0.6371,-0.3975,0.6609,-0.6241,-0.4167,0.6669,0.1701,-0.7255,0.6679,-0.274,-0.692,0.6699,-0.3125,-0.6735,0.674,-0.4291,0.6013,0.6748,0.0045,-0.738,0.6778,-0.5141,-0.5257,0.681,-0.5113,-0.5242,0.6819,0.4419,-0.5828,0.6826,-0.0661,0.7278,0.6853,0.2382,-0.6882,0.6864,-0.513,-0.5155,0.6889,0.7215,-0.0697,0.6899,-0.1203,-0.7138,0.6901,0.3857,0.6124,0.6906,0.6486,-0.3199,0.6927,-0.5096,-0.5104,0.6972,-0.5102,-0.5036,0.6976,-0.1387,-0.703,0.7023,-0.1232,-0.7012,0.7038,-0.4495,-0.5501,0.7046,0.6765,0.214,0.7058,0.6294,-0.3251,0.7093,-0.4344,-0.5551,0.7105,0.2093,0.6719,0.711,-0.6342,-0.3038,0.7128,-0.0043,0.7013,0.7206,0.0296,-0.6927,0.7234,-0.1643,0.6706,0.7241,-0.5703,-0.3879,0.7284,0.3062,-0.613,0.7292,-0.0304,-0.6836,0.7302,-0.0138,0.6831,0.7304,-0.2521,-0.6348,0.7304,-0.3646,-0.5776,0.731,0.6437,0.2264,0.7326,-0.0996,-0.6733,0.7344,0.0486,0.6769,0.7369,-0.2126,-0.6417,0.7396,-0.2942,-0.6053,0.7441,0.0914,0.6617,0.7478,0.6594,-0.0781,0.7481,-0.6309,-0.2056,0.7483,-0.0289,-0.6627,0.751,-0.0484,-0.6585,0.7541,0.0407,-0.6555,0.7577,0.6509,0.048,0.7602,0.1205,0.6384,0.7611,0.3874,0.5202,0.7625,-0.1441,-0.6307,0.7641,0.373,0.5262,0.7654,0.0821,-0.6382,0.7663,0.2625,0.5865,0.7668,0.2485,0.5918,0.7688,0.2787,0.5755,0.7705,0.4664,0.4344,0.7733,0.1468,0.6168,0.7746,-0.1352,-0.6178,0.7766,-0.2006,-0.5973,0.7794,0.3998,0.4824,0.7841,0.5665,0.2537,0.7845,0.133,0.6057,0.7867,-0.0807,0.6121,0.7896,-0.1687,-0.59,0.7909,-0.1703,0.5877,0.7911,0.22,0.5707,0.7929,-0.2811,0.5406,0.7944,0.3303,0.5097,0.7955,-0.5793,0.1776,0.7974,-0.0931,-0.5963,0.7974,0.1782,0.5765,0.7988,0.345,0.4928,0.8017,0.5953,-0.053,0.803,0.2415,0.5448,0.8035,-0.1917,-0.5636,0.8064,0.2879,0.5165,0.8071,0.4348,0.3993,0.8086,0.5826,-0.0814,0.8114,0.1182,-0.5724,0.8119,0.5691,0.1304,0.812,0.3567,0.462,0.8167,0.0094,0.577,0.8179,0.2947,0.4942,0.8184,-0.1617,0.5514,0.8205,0.5522,-0.1476,0.8212,-0.064,0.567,0.828,-0.0331,0.5597,0.8289,0.408,0.3826,0.8295,0.2811,-0.4825,0.8297,0.0361,-0.557,0.83,0.1422,0.5393,0.8334,-0.0872,-0.5457,0.8389,0.2445,0.4863,0.8416,0.4514,-0.2966,0.8447,0.4885,-0.2186,0.8458,0.1875,0.4994,0.846,0.3468,0.405,0.8466,-0.2591,-0.4649,0.8468,-0.5189,-0.117,0.8469,0.0107,0.5316,0.8474,0.3809,0.3699,0.8476,0.5236,0.0861,0.8512,0.3361,-0.4032,0.8512,0.07,-0.5202,0.854,0.096,0.5114,0.8547,-0.3033,-0.4214,0.8552,0.5097,-0.0936,0.8566,-0.179,0.484,0.8592,0.3426,0.3799,0.8612,0.3684,-0.3501,0.866,0.1809,-0.4662,0.8721,0.2863,-0.3969,0.8728,0.3992,0.2808,0.8753,0.2986,-0.3804,0.8764,0.0522,-0.4788,0.879,0.3577,-0.3152,0.8792,-0.3991,0.2602,0.8801,-0.0197,0.4745,0.8818,0.3756,0.2854,0.8823,0.3912,-0.262,0.8835,0.3787,0.2755,0.8892,-0.0406,0.4557,0.8915,0.1033,-0.441,0.8928,-0.0106,0.4504,0.8973,0.4408,-0.0215,0.8993,0.3307,0.2863,0.8998,0.4358,-0.0216,0.9013,0.038,0.4316,0.902,0.0173,-0.4315,0.9034,-0.0514,-0.4258,0.9039,-0.4022,0.1458,0.9061,0.4227,0.0173,0.9069,0.3187,0.2757,0.9073,0.2058,0.3666,0.9074,0.3372,0.2508,0.9077,-0.409,-0.0935,0.9092,-0.0732,0.4099,0.9097,-0.1082,-0.4009,0.9102,0.3544,0.2143,0.9114,0.3756,0.1683,0.9116,0.1007,0.3986,0.9123,0.4087,-0.0252,0.9135,-0.0014,-0.4069,0.9147,0.3318,0.2308,0.9175,0.3273,0.2261,0.9177,0.3607,0.1666,0.9178,0.3932,-0.0547,0.9185,-0.3895,-0.068,0.9187,0.1121,-0.3787,0.92,-0.0086,-0.3919,0.9211,-0.0613,-0.3846,0.9216,-0.0766,-0.3805,0.923,0.3446,0.1714,0.924,0.2298,0.3055,0.9286,-0.0517,0.3675,0.9326,0.3554,0.0629,0.933,0.3598,-0.0118,0.9332,0.0196,-0.3588,0.9333,-0.0177,-0.3586,0.9346,0.3446,0.0885,0.9346,0.1485,-0.3231,0.9359,0.3516,0.0194,0.9369,0.3454,-0.0535,0.9379,-0.0951,-0.3337,0.9385,0.1853,0.2914,0.9394,-0.0959,0.3292,0.9416,-0.1328,-0.3095,0.9435,0.2298,-0.2387,0.9453,-0.2378,-0.2234,0.9469,0.0476,-0.318,0.9492,0.2914,0.1187,0.9501,0.0151,0.3115,0.9504,0.0127,0.3107,0.9509,-0.3094,0.0075,0.9509,0.2259,-0.2114,0.9518,-0.0295,0.3055,0.9532,-0.1596,0.2567,0.9533,0.2021,-0.2247,0.9533,0.0252,0.3011,0.9538,0.0121,-0.3002,0.9555,-0.2599,0.1393,0.9567,0.2806,0.077,0.9571,-0.0216,0.2889,0.9589,0.0065,-0.2837,0.9601,0.0436,0.2761,0.9605,0.2583,-0.1035,0.9612,0.267,0.0687,0.9623,-0.0745,-0.2615,0.9624,0.1377,-0.2341,0.9655,0.2311,0.1203,0.9667,0.1261,-0.2226,0.967,-0.0065,-0.2547,0.9671,-0.1586,0.1986,0.9677,0.0895,-0.2359,0.9681,0.2263,0.1075,0.9682,-0.2491,0.0229,0.9701,0.2409,-0.0297,0.9708,-0.0543,-0.2338,0.9715,0.1765,-0.1584,0.9716,0.1497,-0.1834,0.9724,0.2229,-0.0696,0.9724,0.2326,-0.0183,0.9727,-0.121,0.198,0.9735,0.2257,0.0377,0.9738,-0.0598,0.2196,0.9788,0.0387,-0.2011,0.9791,0.1541,0.1329,0.9798,0.0714,-0.1866,0.9803,-0.0954,0.1727,0.9814,-0.1118,-0.1559,0.9822,0.0481,-0.1818,0.9828,0.168,0.0769,0.9828,0.0246,-0.183,0.9838,0.1776,0.0233,0.9839,0.1159,-0.1359,0.9841,0.0369,-0.1737,0.9855,0.1074,0.1312,0.9864,-0.0395,-0.1597,0.9875,-0.1446,0.0621,0.9879,0.003,0.1553,0.9883,0.1521,0.014,0.9891,0.0258,0.1447,0.9901,0.1194,-0.0737,0.991,0.0206,-0.1326,0.9911,0.1255,0.0443,0.9926,0.0021,-0.1216,0.9932,-0.0213,0.1146,0.9933,0.0909,-0.0709,0.9935,0.0407,0.1064,0.9941,-0.08,0.0734,0.9941,0.0513,-0.0952,0.9944,0.0955,0.0441,0.9945,0.0051,0.1046,0.9947,-0.0716,-0.0739,0.9961,-0.0298,-0.083,0.9962,0.0865,-0.003,0.9983,-0.0026,0.0583,0.9987,0.0071,0.0495,0.9988,0.0492,0.0018,0.9989,-0.0197,0.042,0.9995,0.022,-0.0209,0.9996,-0.0281,-0.0051,0.9997,-0.0223,0.0059};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlicun_Geo_5_445_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,2,-1,8,9,10,-1,8,11,9,-1,11,12,13,-1,14,15,16,-1,17,18,19,-1,17,20,18,-1,21,22,23,-1,24,25,26,-1,26,27,24,-1,28,29,30,-1,31,29,26,-1,29,32,26,-1,33,34,35,-1,33,36,34,-1,37,38,39,-1,38,40,39,-1,41,42,43,-1,44,45,42,-1,44,46,45,-1,47,48,49,-1,50,51,52,-1,50,53,51,-1,5,54,55,-1,54,56,55,-1,57,58,59,-1,60,61,62,-1,61,63,62,-1,61,60,64,-1,60,65,64,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,83,84,81,-1,85,86,87,-1,88,89,90,-1,90,91,88,-1,92,93,94,-1,95,34,36,-1,96,97,98,-1,99,100,87,-1,86,101,87,-1,102,103,87,-1,104,105,106,-1,105,107,106,-1,108,109,110,-1,111,112,109,-1,112,110,109,-1,113,111,109,-1,113,114,111,-1,115,116,117,-1,118,119,120,-1,118,121,119,-1,70,122,123,-1,123,57,70,-1,124,125,126,-1,127,128,129,-1,129,130,127,-1,131,132,133,-1,134,46,135,-1,46,44,135,-1,136,137,138,-1,138,139,136,-1,34,95,131,-1,131,133,34,-1,140,141,114,-1,132,131,142,-1,143,137,115,-1,143,138,137,-1,144,145,146,-1,144,147,145,-1,2,1,6,-1,13,12,148,-1,148,149,13,-1,150,151,152,-1,150,112,151,-1,95,153,131,-1,154,155,35,-1,133,156,34,-1,157,92,83,-1,157,47,92,-1,158,127,159,-1,158,124,127,-1,37,39,160,-1,151,111,161,-1,151,112,111,-1,162,142,131,-1,163,7,164,-1,165,166,167,-1,168,32,29,-1,29,149,168,-1,169,170,171,-1,169,172,170,-1,173,174,175,-1,173,176,174,-1,121,177,119,-1,96,162,153,-1,96,98,162,-1,117,143,115,-1,117,78,143,-1,88,178,97,-1,80,179,180,-1,181,22,116,-1,182,118,120,-1,178,183,184,-1,178,185,183,-1,186,168,149,-1,149,187,186,-1,188,189,122,-1,189,188,190,-1,190,191,189,-1,157,83,82,-1,73,192,193,-1,192,194,193,-1,5,55,3,-1,195,196,197,-1,195,198,196,-1,199,200,201,-1,199,202,200,-1,203,204,205,-1,196,206,207,-1,207,197,196,-1,208,209,62,-1,62,63,208,-1,210,211,212,-1,210,209,211,-1,197,211,195,-1,197,213,211,-1,25,197,207,-1,25,213,197,-1,202,206,200,-1,202,214,206,-1,215,216,201,-1,216,199,201,-1,215,77,76,-1,215,217,77,-1,75,5,4,-1,113,194,218,-1,219,220,64,-1,220,56,64,-1,221,222,57,-1,71,223,69,-1,224,178,225,-1,178,184,225,-1,226,227,0,-1,226,228,227,-1,229,121,230,-1,78,117,79,-1,117,231,79,-1,178,224,98,-1,98,97,178,-1,89,88,97,-1,232,89,97,-1,144,177,121,-1,121,229,144,-1,191,190,233,-1,233,234,191,-1,25,207,31,-1,31,26,25,-1,10,203,8,-1,9,11,13,-1,235,236,237,-1,236,166,237,-1,150,132,112,-1,238,239,240,-1,241,125,124,-1,242,243,244,-1,243,245,244,-1,52,246,50,-1,52,247,246,-1,162,131,153,-1,248,249,250,-1,251,252,123,-1,7,163,2,-1,199,253,254,-1,29,9,13,-1,13,149,29,-1,171,227,255,-1,255,169,171,-1,216,253,199,-1,223,59,256,-1,223,71,59,-1,257,230,21,-1,258,247,259,-1,258,260,261,-1,261,247,258,-1,262,143,263,-1,143,78,263,-1,150,156,133,-1,150,152,156,-1,128,219,129,-1,35,249,33,-1,249,264,33,-1,133,132,150,-1,53,93,49,-1,68,129,65,-1,68,130,129,-1,128,124,126,-1,41,244,39,-1,244,160,39,-1,244,245,160,-1,245,265,160,-1,266,267,233,-1,267,268,233,-1,4,192,73,-1,73,72,4,-1,142,269,270,-1,270,132,142,-1,238,162,98,-1,98,239,238,-1,1,227,171,-1,1,0,227,-1,124,158,241,-1,271,264,272,-1,272,273,271,-1,274,104,106,-1,275,102,87,-1,100,85,87,-1,103,99,87,-1,276,96,107,-1,276,97,96,-1,274,95,36,-1,232,97,276,-1,276,277,232,-1,272,264,278,-1,178,88,185,-1,124,128,127,-1,279,280,281,-1,279,282,280,-1,283,284,285,-1,283,94,284,-1,286,287,288,-1,288,27,286,-1,289,120,290,-1,289,182,120,-1,32,286,26,-1,286,27,26,-1,213,25,24,-1,67,66,256,-1,66,291,256,-1,292,54,5,-1,5,75,292,-1,247,52,259,-1,157,48,47,-1,157,293,48,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlicun_Geo_5_445_coordIndex_2()
		{
			int[] value = {82,293,157,-1,39,40,41,-1,40,42,41,-1,35,34,154,-1,294,36,33,-1,294,295,36,-1,87,101,275,-1,152,285,156,-1,152,283,285,-1,155,249,35,-1,115,137,296,-1,268,297,298,-1,288,287,267,-1,30,29,31,-1,10,9,28,-1,9,29,28,-1,23,22,181,-1,299,233,268,-1,78,300,180,-1,180,263,78,-1,166,236,167,-1,1,171,170,-1,6,170,301,-1,6,1,170,-1,196,200,206,-1,194,192,218,-1,240,269,238,-1,196,217,200,-1,198,217,196,-1,172,301,170,-1,301,172,302,-1,167,225,303,-1,167,236,225,-1,183,304,184,-1,304,183,280,-1,281,305,306,-1,281,307,305,-1,308,37,160,-1,37,308,309,-1,310,233,299,-1,310,234,233,-1,297,267,287,-1,267,297,268,-1,297,177,298,-1,297,119,177,-1,296,311,312,-1,296,137,311,-1,44,175,135,-1,175,44,173,-1,283,151,313,-1,151,283,152,-1,154,156,285,-1,156,154,34,-1,294,101,295,-1,275,101,294,-1,247,45,246,-1,261,45,247,-1,50,314,315,-1,246,314,50,-1,75,316,292,-1,75,77,316,-1,256,58,67,-1,256,59,58,-1,62,210,291,-1,62,209,210,-1,213,317,318,-1,213,24,317,-1,16,186,14,-1,16,289,186,-1,32,290,286,-1,168,290,32,-1,17,289,16,-1,17,182,289,-1,287,290,120,-1,290,287,286,-1,92,49,93,-1,92,47,49,-1,94,313,92,-1,313,94,283,-1,155,285,284,-1,285,155,154,-1,275,271,102,-1,294,271,275,-1,100,319,320,-1,99,319,100,-1,86,105,104,-1,86,85,105,-1,172,12,11,-1,172,169,12,-1,255,279,148,-1,255,282,279,-1,321,183,185,-1,307,183,321,-1,106,96,153,-1,96,106,107,-1,277,278,232,-1,277,272,278,-1,274,153,95,-1,106,153,274,-1,274,295,104,-1,274,36,295,-1,264,294,33,-1,271,294,264,-1,319,272,277,-1,319,273,272,-1,220,55,56,-1,220,140,55,-1,322,269,240,-1,322,270,269,-1,165,303,226,-1,165,167,303,-1,224,239,98,-1,235,239,224,-1,226,2,165,-1,0,2,226,-1,162,269,142,-1,269,162,238,-1,114,218,3,-1,113,218,114,-1,308,191,234,-1,308,323,191,-1,21,19,18,-1,21,230,19,-1,188,70,69,-1,70,188,122,-1,221,265,245,-1,252,265,221,-1,22,18,231,-1,22,21,18,-1,324,233,190,-1,266,233,324,-1,325,89,326,-1,325,90,89,-1,327,328,329,-1,328,327,248,-1,330,331,250,-1,332,331,330,-1,333,93,53,-1,333,334,93,-1,155,250,249,-1,155,330,250,-1,334,94,93,-1,334,284,94,-1,229,257,335,-1,230,257,229,-1,336,337,338,-1,337,336,339,-1,311,134,135,-1,311,340,134,-1,341,342,174,-1,343,342,341,-1,344,139,138,-1,344,345,139,-1,264,248,327,-1,249,248,264,-1,241,259,52,-1,259,241,158,-1,43,260,242,-1,261,260,43,-1,125,52,51,-1,241,52,125,-1,246,46,314,-1,46,246,45,-1,90,262,263,-1,325,262,90,-1,58,222,346,-1,58,57,222,-1,242,347,243,-1,348,347,242,-1,314,134,339,-1,314,46,134,-1,159,348,158,-1,347,348,159,-1,346,67,58,-1,346,349,67,-1,350,176,38,-1,351,176,350,-1,144,335,147,-1,144,229,335,-1,122,251,123,-1,122,189,251,-1,144,298,177,-1,298,144,146,-1,204,199,254,-1,202,199,204,-1,352,353,354,-1,193,353,352,-1,204,214,202,-1,204,203,214,-1,74,76,72,-1,355,76,74,-1,215,355,216,-1,215,76,355,-1,203,28,214,-1,28,203,10,-1,302,356,301,-1,302,205,356,-1,338,139,345,-1,338,337,139,-1,336,333,315,-1,332,333,336,-1,108,357,109,-1,108,358,357,-1,322,358,108,-1,322,359,358,-1,237,163,359,-1,237,166,163,-1,254,360,356,-1,254,354,360,-1,254,253,354,-1,206,31,207,-1,206,30,31,-1,267,317,288,-1,267,266,317,-1,323,160,265,-1,323,308,160,-1,145,299,146,-1,299,145,310,-1,115,181,116,-1,115,296,181,-1,341,147,335,-1,341,351,147,-1,329,262,325,-1,344,262,329,-1,263,91,90,-1,263,180,91,-1,300,80,180,-1,80,300,78,-1,23,257,21,-1,343,257,23,-1,20,231,18,-1,79,231,20,-1,226,304,228,-1,304,226,303,-1,227,282,255,-1,228,282,227,-1,279,306,187,-1,281,306,279,-1,305,80,15,-1,179,80,305,-1,222,245,243,-1,222,221,245,-1,349,68,67,-1,130,68,349,-1,3,140,114,-1,55,140,3,-1,161,114,141,-1,161,111,114,-1,193,357,353,-1,193,194,357,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlicun_Geo_5_445_coordIndex_3()
		{
			int[] value = {75,72,76,-1,4,72,75,-1,352,253,216,-1,354,253,352,-1,208,292,316,-1,208,63,292,-1,318,266,324,-1,318,317,266,-1,324,212,318,-1,69,212,324,-1,208,211,209,-1,211,208,195,-1,291,223,256,-1,291,210,223,-1,254,205,204,-1,254,356,205,-1,195,316,198,-1,316,195,208,-1,216,74,352,-1,216,355,74,-1,61,56,54,-1,61,64,56,-1,109,194,113,-1,109,357,194,-1,141,84,161,-1,84,141,81,-1,60,68,65,-1,66,68,60,-1,130,159,127,-1,130,349,159,-1,265,251,323,-1,252,251,265,-1,14,187,306,-1,14,186,187,-1,179,307,321,-1,179,305,307,-1,148,187,149,-1,279,187,148,-1,280,228,304,-1,280,282,228,-1,182,19,118,-1,17,19,182,-1,343,181,342,-1,343,23,181,-1,180,321,91,-1,180,179,321,-1,344,143,262,-1,344,138,143,-1,327,278,264,-1,327,326,278,-1,351,174,176,-1,351,341,174,-1,296,342,181,-1,312,342,296,-1,146,268,298,-1,146,299,268,-1,309,38,37,-1,38,309,350,-1,6,356,360,-1,6,301,356,-1,163,165,2,-1,165,163,166,-1,359,240,237,-1,359,322,240,-1,164,359,163,-1,358,359,164,-1,353,358,164,-1,358,353,357,-1,237,239,235,-1,237,240,239,-1,315,339,336,-1,315,314,339,-1,331,345,328,-1,331,338,345,-1,313,161,84,-1,313,151,161,-1,7,360,164,-1,360,7,6,-1,352,73,193,-1,74,73,352,-1,354,164,360,-1,353,164,354,-1,214,30,206,-1,28,30,214,-1,323,189,191,-1,189,323,251,-1,351,145,147,-1,351,350,145,-1,173,38,176,-1,173,40,38,-1,349,347,159,-1,346,347,349,-1,337,136,139,-1,337,340,136,-1,346,243,347,-1,346,222,243,-1,326,232,278,-1,326,89,232,-1,48,128,126,-1,293,128,48,-1,258,158,348,-1,259,158,258,-1,42,173,44,-1,42,40,173,-1,293,219,128,-1,293,82,219,-1,260,348,242,-1,260,258,348,-1,345,329,328,-1,345,344,329,-1,136,311,137,-1,340,311,136,-1,312,174,342,-1,312,175,174,-1,339,340,337,-1,340,339,134,-1,332,338,331,-1,332,336,338,-1,343,335,257,-1,343,341,335,-1,284,330,155,-1,334,330,284,-1,48,125,51,-1,125,48,126,-1,334,332,330,-1,333,332,334,-1,328,250,331,-1,328,248,250,-1,327,325,326,-1,329,325,327,-1,190,69,324,-1,188,69,190,-1,119,287,120,-1,297,287,119,-1,230,118,19,-1,230,121,118,-1,57,252,221,-1,123,252,57,-1,231,116,22,-1,231,117,116,-1,350,310,145,-1,350,309,310,-1,41,242,244,-1,41,43,242,-1,218,4,3,-1,218,192,4,-1,132,110,112,-1,132,270,110,-1,236,224,225,-1,236,235,224,-1,322,110,270,-1,322,108,110,-1,141,220,81,-1,141,140,220,-1,320,277,276,-1,320,319,277,-1,107,320,276,-1,107,105,320,-1,91,185,88,-1,321,185,91,-1,148,169,255,-1,12,169,148,-1,8,205,302,-1,203,205,8,-1,101,104,295,-1,104,101,86,-1,105,100,320,-1,105,85,100,-1,99,273,319,-1,103,273,99,-1,103,271,273,-1,102,271,103,-1,84,92,313,-1,84,83,92,-1,82,220,219,-1,220,82,81,-1,15,79,20,-1,80,79,15,-1,289,168,186,-1,289,290,168,-1,200,215,201,-1,200,217,215,-1,59,70,57,-1,71,70,59,-1,24,288,317,-1,24,27,288,-1,318,211,213,-1,212,211,318,-1,69,210,212,-1,69,223,210,-1,64,129,219,-1,64,65,129,-1,63,54,292,-1,61,54,63,-1,62,66,60,-1,62,291,66,-1,198,77,217,-1,77,198,316,-1,53,315,333,-1,50,315,53,-1,51,49,48,-1,49,51,53,-1,42,261,43,-1,42,45,261,-1,135,312,311,-1,312,135,175,-1,309,234,310,-1,309,308,234,-1,20,16,15,-1,16,20,17,-1,15,306,305,-1,306,15,14,-1,280,307,281,-1,280,183,307,-1,303,184,304,-1,303,225,184,-1,11,302,172,-1,302,11,8,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlicun_Geo_5_445_normalIndex_1()
		{
			int[] value = {237,268,180,-1,164,250,243,-1,222,139,180,-1,328,345,332,-1,328,318,345,-1,318,291,334,-1,200,182,204,-1,214,205,235,-1,214,177,205,-1,236,229,241,-1,324,335,308,-1,308,293,324,-1,317,326,312,-1,315,326,308,-1,326,322,308,-1,34,22,16,-1,34,50,22,-1,223,228,132,-1,228,171,132,-1,55,183,128,-1,186,136,183,-1,186,119,136,-1,135,201,127,-1,77,149,79,-1,77,107,149,-1,243,227,156,-1,227,148,156,-1,221,145,265,-1,187,230,274,-1,230,287,274,-1,230,187,141,-1,187,105,141,-1,188,144,108,-1,360,339,329,-1,276,225,246,-1,295,337,344,-1,181,196,211,-1,130,169,86,-1,86,51,130,-1,18,25,12,-1,172,60,111,-1,111,197,172,-1,96,106,70,-1,19,22,50,-1,37,67,47,-1,1,7,12,-1,25,45,12,-1,9,5,12,-1,26,32,33,-1,32,46,33,-1,143,124,122,-1,69,74,124,-1,74,122,124,-1,120,69,124,-1,120,98,69,-1,166,219,185,-1,290,349,301,-1,290,278,349,-1,339,299,224,-1,224,221,339,-1,23,151,137,-1,39,134,44,-1,44,57,39,-1,21,84,68,-1,116,119,175,-1,119,186,175,-1,118,140,103,-1,103,95,118,-1,22,19,21,-1,21,68,22,-1,129,117,98,-1,84,21,35,-1,109,140,166,-1,109,103,140,-1,267,266,277,-1,267,255,266,-1,180,268,222,-1,334,291,251,-1,251,330,334,-1,100,49,92,-1,100,74,49,-1,19,20,21,-1,78,81,16,-1,68,104,22,-1,102,96,86,-1,102,135,96,-1,63,39,48,-1,63,23,39,-1,223,132,162,-1,49,69,42,-1,49,74,69,-1,0,35,21,-1,170,139,146,-1,195,176,179,-1,355,322,326,-1,326,330,355,-1,283,304,292,-1,283,310,304,-1,194,231,210,-1,194,226,231,-1,278,285,349,-1,37,0,20,-1,37,47,0,-1,185,109,166,-1,185,181,109,-1,172,142,67,-1,211,220,198,-1,232,229,219,-1,257,290,301,-1,142,184,178,-1,142,207,184,-1,259,355,330,-1,330,244,259,-1,343,298,299,-1,298,343,319,-1,319,281,298,-1,102,86,169,-1,225,206,152,-1,206,157,152,-1,243,156,164,-1,359,352,356,-1,359,354,352,-1,314,338,342,-1,314,282,338,-1,331,297,300,-1,352,309,333,-1,333,356,352,-1,336,327,274,-1,274,287,336,-1,323,351,341,-1,323,327,351,-1,356,351,359,-1,356,353,351,-1,335,356,333,-1,335,353,356,-1,282,309,338,-1,282,307,309,-1,357,350,342,-1,350,314,342,-1,357,344,337,-1,357,346,344,-1,295,243,250,-1,120,157,165,-1,150,155,141,-1,155,148,141,-1,43,40,221,-1,329,320,360,-1,114,142,160,-1,142,178,160,-1,234,256,237,-1,234,260,256,-1,245,278,252,-1,181,185,196,-1,185,193,196,-1,142,114,47,-1,47,67,142,-1,60,172,67,-1,11,60,67,-1,267,285,278,-1,278,245,267,-1,281,319,302,-1,302,273,281,-1,335,333,315,-1,315,308,335,-1,332,331,328,-1,345,318,334,-1,131,163,167,-1,163,176,167,-1,100,84,74,-1,88,113,154,-1,99,151,23,-1,115,31,38,-1,31,28,38,-1,79,53,77,-1,79,56,53,-1,0,21,20,-1,30,15,85,-1,269,158,224,-1,139,170,180,-1,314,305,288,-1,326,345,334,-1,334,330,326,-1,292,256,242,-1,242,283,292,-1,350,305,314,-1,320,265,263,-1,320,329,265,-1,239,252,236,-1,133,56,110,-1,133,190,161,-1,161,56,133,-1,82,109,121,-1,109,181,121,-1,100,104,68,-1,100,92,104,-1,134,150,44,-1,16,15,34,-1,15,17,34,-1,68,84,100,-1,107,106,127,-1,108,44,105,-1,108,57,44,-1,134,23,137,-1,55,38,132,-1,38,162,132,-1,38,28,162,-1,28,173,162,-1,348,313,302,-1,313,316,302,-1,250,206,225,-1,225,276,250,-1,35,112,125,-1,125,84,35,-1,88,0,47,-1,47,113,88,-1,268,256,292,-1,268,237,256,-1,23,63,99,-1,4,17,6,-1,6,8,4,-1,80,26,33,-1,36,9,12,-1,7,18,12,-1,5,1,12,-1,13,37,46,-1,13,67,37,-1,80,19,50,-1,11,67,13,-1,13,3,11,-1,6,17,10,-1,142,172,207,-1,23,134,39,-1,249,218,215,-1,249,254,218,-1,66,89,87,-1,66,70,89,-1,280,303,294,-1,294,293,280,-1,253,301,275,-1,253,257,301,-1,322,280,308,-1,280,293,308,-1,353,335,324,-1,144,188,263,-1,188,271,263,-1,286,227,243,-1,243,295,286,-1,56,79,110,-1,102,201,135,-1,102,174,201,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlicun_Geo_5_445_normalIndex_2()
		{
			int[] value = {169,174,102,-1,132,171,55,-1,171,183,55,-1,16,22,78,-1,27,50,34,-1,27,52,50,-1,12,45,36,-1,92,87,104,-1,92,66,87,-1,81,15,16,-1,166,140,209,-1,316,321,284,-1,294,303,313,-1,312,326,315,-1,332,345,317,-1,345,326,317,-1,241,229,232,-1,279,302,316,-1,181,262,198,-1,198,121,181,-1,176,163,179,-1,268,292,304,-1,222,304,296,-1,222,268,304,-1,352,338,309,-1,157,206,165,-1,154,112,88,-1,352,346,338,-1,354,346,352,-1,310,296,304,-1,296,310,306,-1,179,160,199,-1,179,163,160,-1,184,217,178,-1,217,184,218,-1,215,191,203,-1,215,192,191,-1,264,223,162,-1,223,264,261,-1,272,302,279,-1,272,273,302,-1,321,313,303,-1,313,321,316,-1,321,285,284,-1,321,349,285,-1,209,189,213,-1,209,140,189,-1,186,210,175,-1,210,186,194,-1,66,49,41,-1,49,66,92,-1,78,104,87,-1,104,78,22,-1,27,45,52,-1,36,45,27,-1,56,136,53,-1,161,136,56,-1,77,61,71,-1,53,61,77,-1,295,347,286,-1,295,344,347,-1,263,145,144,-1,263,265,145,-1,274,323,271,-1,274,327,323,-1,353,311,340,-1,353,324,311,-1,204,259,200,-1,204,253,259,-1,322,275,280,-1,355,275,322,-1,214,253,204,-1,214,257,253,-1,303,275,301,-1,275,303,280,-1,96,127,106,-1,96,135,127,-1,70,41,96,-1,41,70,66,-1,81,87,89,-1,87,81,78,-1,36,4,9,-1,27,4,36,-1,7,2,14,-1,1,2,7,-1,25,32,26,-1,25,18,32,-1,310,291,318,-1,310,283,291,-1,242,249,251,-1,242,254,249,-1,216,184,207,-1,192,184,216,-1,33,37,20,-1,37,33,46,-1,3,10,11,-1,3,6,10,-1,80,20,19,-1,33,20,80,-1,80,52,26,-1,80,50,52,-1,17,27,34,-1,4,27,17,-1,2,6,3,-1,2,8,6,-1,155,156,148,-1,155,129,156,-1,159,112,154,-1,159,125,112,-1,195,199,234,-1,195,179,199,-1,114,113,47,-1,131,113,114,-1,234,180,195,-1,237,180,234,-1,0,112,35,-1,112,0,88,-1,98,165,164,-1,120,165,98,-1,264,281,273,-1,264,270,281,-1,236,235,205,-1,236,252,235,-1,343,339,360,-1,339,343,299,-1,43,173,28,-1,158,173,43,-1,229,205,193,-1,229,236,205,-1,358,302,319,-1,348,302,358,-1,58,60,29,-1,58,111,60,-1,24,59,65,-1,59,24,30,-1,97,90,85,-1,94,90,97,-1,93,106,107,-1,93,101,106,-1,81,85,15,-1,81,97,85,-1,101,70,106,-1,101,89,70,-1,245,239,247,-1,252,239,245,-1,83,72,76,-1,72,83,73,-1,189,116,175,-1,189,123,116,-1,240,233,231,-1,238,233,240,-1,91,95,103,-1,91,75,95,-1,17,30,24,-1,15,30,17,-1,99,110,79,-1,110,99,63,-1,128,190,115,-1,161,190,128,-1,151,79,149,-1,99,79,151,-1,53,119,61,-1,119,53,136,-1,111,82,121,-1,58,82,111,-1,145,40,64,-1,145,221,40,-1,115,62,31,-1,126,62,115,-1,61,116,73,-1,61,119,116,-1,48,126,63,-1,62,126,48,-1,64,144,145,-1,64,54,144,-1,258,226,228,-1,248,226,258,-1,267,247,255,-1,267,245,247,-1,299,269,224,-1,299,298,269,-1,267,284,285,-1,284,267,277,-1,297,314,288,-1,282,314,297,-1,212,138,208,-1,152,138,212,-1,297,307,282,-1,297,331,307,-1,246,337,276,-1,325,337,246,-1,357,325,350,-1,357,337,325,-1,331,317,307,-1,317,331,332,-1,306,289,296,-1,306,300,289,-1,76,95,75,-1,76,72,95,-1,83,93,71,-1,94,93,83,-1,143,147,124,-1,143,153,147,-1,159,153,143,-1,159,168,153,-1,167,170,168,-1,167,176,170,-1,288,202,289,-1,288,208,202,-1,288,305,208,-1,309,315,333,-1,309,312,315,-1,313,311,294,-1,313,348,311,-1,270,162,173,-1,270,264,162,-1,266,279,277,-1,279,266,272,-1,166,232,219,-1,166,209,232,-1,240,255,247,-1,240,248,255,-1,65,82,58,-1,91,82,65,-1,121,197,111,-1,121,198,197,-1,262,211,198,-1,211,262,181,-1,241,239,236,-1,238,239,241,-1,177,193,205,-1,196,193,177,-1,234,217,260,-1,217,234,199,-1,256,254,242,-1,260,254,256,-1,249,203,244,-1,215,203,249,-1,191,211,182,-1,220,211,191,-1,40,28,31,-1,40,43,28,-1,54,108,144,-1,57,108,54,-1,164,129,98,-1,156,129,164,-1,42,98,117,-1,42,69,98,-1,152,147,138,-1,152,157,147,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlicun_Geo_5_445_normalIndex_3()
		{
			int[] value = {295,276,337,-1,250,276,295,-1,212,305,350,-1,208,305,212,-1,336,286,347,-1,336,287,286,-1,340,348,358,-1,340,311,348,-1,358,341,340,-1,360,341,358,-1,336,351,327,-1,351,336,359,-1,271,320,263,-1,271,323,320,-1,288,300,297,-1,288,289,300,-1,359,347,354,-1,347,359,336,-1,350,246,212,-1,350,325,246,-1,230,148,227,-1,230,141,148,-1,124,157,120,-1,124,147,157,-1,117,51,42,-1,51,117,130,-1,187,108,105,-1,188,108,187,-1,57,48,39,-1,57,54,48,-1,173,269,270,-1,158,269,173,-1,200,244,203,-1,200,259,244,-1,220,192,216,-1,220,191,192,-1,251,244,330,-1,249,244,251,-1,218,260,217,-1,218,254,260,-1,257,235,290,-1,214,235,257,-1,238,232,233,-1,238,241,232,-1,198,216,197,-1,198,220,216,-1,91,109,82,-1,91,103,109,-1,24,10,17,-1,24,29,10,-1,248,231,226,-1,248,240,231,-1,209,233,232,-1,213,233,209,-1,277,316,284,-1,277,279,316,-1,261,228,223,-1,228,261,258,-1,222,289,202,-1,222,296,289,-1,170,195,180,-1,195,170,176,-1,168,154,167,-1,168,159,154,-1,146,168,170,-1,153,168,146,-1,138,153,146,-1,153,138,147,-1,167,113,131,-1,167,154,113,-1,71,73,83,-1,71,61,73,-1,90,75,59,-1,90,76,75,-1,41,42,51,-1,41,49,42,-1,139,202,146,-1,202,139,222,-1,212,225,152,-1,246,225,212,-1,208,146,202,-1,138,146,208,-1,307,312,309,-1,317,312,307,-1,270,298,281,-1,298,270,269,-1,248,266,255,-1,248,258,266,-1,194,228,226,-1,194,171,228,-1,54,62,48,-1,64,62,54,-1,72,118,95,-1,72,123,118,-1,64,31,62,-1,64,40,31,-1,29,11,10,-1,29,60,11,-1,201,134,137,-1,174,134,201,-1,133,63,126,-1,110,63,133,-1,183,194,186,-1,183,171,194,-1,174,150,134,-1,174,169,150,-1,190,126,115,-1,190,133,126,-1,75,65,59,-1,75,91,65,-1,118,189,140,-1,123,189,118,-1,213,231,233,-1,213,210,231,-1,73,123,72,-1,123,73,116,-1,94,76,90,-1,94,83,76,-1,238,247,239,-1,238,240,247,-1,89,97,81,-1,101,97,89,-1,201,151,149,-1,151,201,137,-1,101,94,97,-1,93,94,101,-1,59,85,90,-1,59,30,85,-1,24,58,29,-1,65,58,24,-1,319,360,358,-1,343,360,319,-1,349,303,301,-1,321,303,349,-1,252,290,235,-1,252,278,290,-1,221,158,43,-1,224,158,221,-1,193,219,229,-1,193,185,219,-1,258,272,266,-1,258,261,272,-1,55,115,38,-1,55,128,115,-1,165,250,164,-1,165,206,250,-1,84,122,74,-1,84,125,122,-1,163,114,160,-1,163,131,114,-1,159,122,125,-1,159,143,122,-1,117,155,130,-1,117,129,155,-1,14,3,13,-1,14,2,3,-1,46,14,13,-1,46,32,14,-1,197,207,172,-1,216,207,197,-1,251,283,242,-1,291,283,251,-1,328,300,306,-1,331,300,328,-1,45,26,52,-1,26,45,25,-1,32,7,14,-1,32,18,7,-1,1,8,2,-1,5,8,1,-1,5,4,8,-1,9,4,5,-1,51,96,41,-1,51,86,96,-1,169,155,150,-1,155,169,130,-1,182,196,177,-1,211,196,182,-1,253,355,259,-1,253,275,355,-1,338,357,342,-1,338,346,357,-1,265,339,221,-1,329,339,265,-1,324,294,311,-1,324,293,294,-1,340,351,353,-1,341,351,340,-1,360,323,341,-1,360,320,323,-1,141,44,150,-1,141,105,44,-1,287,227,286,-1,230,227,287,-1,274,188,187,-1,274,271,188,-1,354,344,346,-1,344,354,347,-1,107,71,93,-1,77,71,107,-1,149,127,201,-1,127,149,107,-1,183,161,128,-1,183,136,161,-1,175,213,189,-1,213,175,210,-1,261,273,272,-1,261,264,273,-1,177,204,182,-1,204,177,214,-1,182,203,191,-1,203,182,200,-1,218,192,215,-1,218,184,192,-1,199,178,217,-1,199,160,178,-1,318,306,310,-1,306,318,328,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllatincc_Geo_5_451_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,9,33,34,-1,35,36,37,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,12,47,48,-1,49,50,51,-1,52,53,54,-1,31,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,55,66,56,-1,55,67,37,-1,68,69,70,-1,71,72,73,-1,72,74,75,-1,76,8,7,-1,77,48,70,-1,78,79,80,-1,78,70,48,-1,78,81,82,-1,83,8,76,-1,19,84,85,-1,86,60,87,-1,88,89,90,-1,91,92,93,-1,94,75,95,-1,96,73,97,-1,98,49,99,-1,100,101,83,-1,101,102,103,-1,31,67,55,-1,104,105,106,-1,25,96,107,-1,108,109,110,-1,111,106,105,-1,27,112,113,-1,114,65,115,-1,23,116,90,-1,117,54,118,-1,84,119,59,-1,120,121,122,-1,123,124,11,-1,125,100,126,-1,125,127,100,-1,128,129,130,-1,131,132,133,-1,46,134,99,-1,91,69,68,-1,78,135,79,-1,136,12,77,-1,137,138,139,-1,140,98,141,-1,78,68,70,-1,83,76,142,-1,49,140,143,-1,60,144,145,-1,77,69,46,-1,40,39,43,-1,9,34,122,-1,146,32,147,-1,148,149,150,-1,25,24,151,-1,21,23,152,-1,18,136,153,-1,15,41,129,-1,84,154,85,-1,84,58,154,-1,145,144,147,-1,120,155,40,-1,8,83,156,-1,157,158,5,-1,159,7,6,-1,160,161,162,-1,163,164,7,-1,156,103,165,-1,166,167,168,-1,163,169,164,-1,160,162,170,-1,159,163,7,-1,40,121,120,-1,122,121,42,-1,14,171,47,-1,49,98,140,-1,172,105,104,-1,25,151,173,-1,24,26,108,-1,147,144,146,-1,122,10,9,-1,174,175,36,-1,176,77,46,-1,49,143,117,-1,177,57,59,-1,60,145,61,-1,178,66,155,-1,66,178,56,-1,179,180,181,-1,98,71,73,-1,73,72,97,-1,137,139,166,-1,10,17,11,-1,51,182,49,-1,182,99,49,-1,126,100,83,-1,92,91,68,-1,46,99,182,-1,142,126,83,-1,120,122,34,-1,59,58,84,-1,118,50,117,-1,107,75,94,-1,107,97,75,-1,101,156,83,-1,55,37,36,-1,27,113,35,-1,183,184,185,-1,110,186,108,-1,25,173,96,-1,174,35,187,-1,103,156,101,-1,100,188,101,-1,96,97,107,-1,94,95,139,-1,189,190,93,-1,191,192,193,-1,93,190,91,-1,88,90,53,-1,194,86,87,-1,195,130,126,-1,19,85,196,-1,78,48,81,-1,45,153,176,-1,7,164,76,-1,72,75,97,-1,71,190,72,-1,69,77,70,-1,135,78,82,-1,67,197,37,-1,50,49,117,-1,64,198,65,-1,33,120,34,-1,62,87,60,-1,32,31,56,-1,53,199,54,-1,12,48,77,-1,46,182,44,-1,45,176,46,-1,125,126,130,-1,35,174,36,-1,32,146,30,-1,29,112,27,-1,148,200,149,-1,172,111,105,-1,119,45,44,-1,201,202,203,-1,12,14,47,-1,9,11,145,-1,0,2,204,-1,191,205,206,-1,157,207,208,-1,209,205,210,-1,209,206,205,-1,211,164,169,-1,211,212,164,-1,167,213,214,-1,167,215,213,-1,216,217,218,-1,216,3,217,-1,219,6,165,-1,219,159,6,-1,184,218,217,-1,184,220,218,-1,221,57,118,-1,221,58,57,-1,58,221,154,-1,17,122,15,-1,10,122,17,-1,222,202,201,-1,202,222,128,-1,13,136,18,-1,136,13,12,-1,172,223,111,-1,224,223,172,-1,152,225,21,-1,152,226,225,-1,186,227,151,-1,186,228,227,-1,229,230,231,-1,229,232,230,-1,195,128,130,-1,202,128,195,-1,175,187,114,-1,175,174,187,-1,233,127,38,-1,233,234,127,-1,135,142,76,-1,135,82,142,-1,133,123,181,-1,235,123,133,-1,189,72,190,-1,189,74,72,-1,137,168,2,-1,137,166,168,-1,170,79,160,-1,170,193,79,-1,43,125,130,-1,43,39,125,-1,235,19,196,-1,235,20,19,-1,16,181,123,-1,16,179,181,-1,85,62,196,-1,154,62,85,-1,199,118,54,-1,199,221,118,-1,193,80,79,-1,192,80,193,-1,75,236,95,-1,75,74,236,-1,234,115,188,-1,114,115,234,-1,113,187,35,-1,187,113,63,-1,27,37,197,-1,37,27,35,-1,139,237,94,-1,237,139,138,-1,138,238,237,-1,238,138,239,-1,240,238,239,-1,241,238,240,-1,140,242,150,-1,242,140,141,-1,243,185,231,-1,243,183,185,-1,89,226,152,-1,226,89,244,-1,241,243,106,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllatincc_Geo_5_451_coordIndex_2()
		{
			int[] value = {241,240,243,-1,200,245,88,-1,200,228,245,-1,238,246,109,-1,246,238,241,-1,186,245,228,-1,186,110,245,-1,137,239,138,-1,239,137,247,-1,26,94,237,-1,26,107,94,-1,25,107,26,-1,29,248,104,-1,248,29,28,-1,158,232,229,-1,232,158,249,-1,64,113,249,-1,64,63,113,-1,233,114,234,-1,233,175,114,-1,134,98,99,-1,98,134,71,-1,134,190,71,-1,134,91,190,-1,95,215,167,-1,95,236,215,-1,205,193,170,-1,191,193,205,-1,52,88,53,-1,52,200,88,-1,200,52,149,-1,146,60,86,-1,146,144,60,-1,135,160,79,-1,135,212,160,-1,229,5,158,-1,5,229,250,-1,44,59,119,-1,44,177,59,-1,251,74,189,-1,251,236,74,-1,235,132,20,-1,132,235,133,-1,65,102,115,-1,102,65,198,-1,63,114,187,-1,63,65,114,-1,154,87,62,-1,221,87,154,-1,30,86,116,-1,30,146,86,-1,52,117,143,-1,52,54,117,-1,48,171,81,-1,48,47,171,-1,129,43,130,-1,43,129,41,-1,38,252,233,-1,38,40,252,-1,31,253,67,-1,31,30,253,-1,112,230,232,-1,112,29,230,-1,150,227,148,-1,242,227,150,-1,225,22,21,-1,22,225,254,-1,104,224,172,-1,248,224,104,-1,119,19,18,-1,119,84,19,-1,13,131,14,-1,13,132,131,-1,180,222,201,-1,180,179,222,-1,42,15,122,-1,42,41,15,-1,255,207,256,-1,255,208,207,-1,208,257,103,-1,255,257,208,-1,220,258,259,-1,220,184,258,-1,210,170,162,-1,205,170,210,-1,260,2,168,-1,2,260,204,-1,261,3,216,-1,261,4,3,-1,168,214,260,-1,168,167,214,-1,217,185,184,-1,217,250,185,-1,5,207,157,-1,5,4,207,-1,165,8,156,-1,165,6,8,-1,147,9,145,-1,147,33,9,-1,57,50,118,-1,177,50,57,-1,177,51,50,-1,129,222,15,-1,129,128,222,-1,14,180,201,-1,14,131,180,-1,20,13,18,-1,20,132,13,-1,225,248,254,-1,225,224,248,-1,151,242,173,-1,151,227,242,-1,231,250,229,-1,250,231,185,-1,197,28,27,-1,197,262,28,-1,42,40,43,-1,42,121,40,-1,142,195,126,-1,142,263,195,-1,263,202,195,-1,263,203,202,-1,90,199,53,-1,90,194,199,-1,36,66,55,-1,36,252,66,-1,127,188,100,-1,234,188,127,-1,76,212,135,-1,212,76,164,-1,191,251,192,-1,191,206,251,-1,264,243,240,-1,183,243,264,-1,263,82,81,-1,82,263,142,-1,124,235,196,-1,123,235,124,-1,17,123,11,-1,17,16,123,-1,61,196,62,-1,61,124,196,-1,221,194,87,-1,199,194,221,-1,90,152,23,-1,90,89,152,-1,192,92,80,-1,93,92,192,-1,139,167,166,-1,139,95,167,-1,189,192,251,-1,189,93,192,-1,102,188,115,-1,102,101,188,-1,249,157,64,-1,249,158,157,-1,231,106,243,-1,230,106,231,-1,254,253,22,-1,254,262,253,-1,141,173,242,-1,173,141,96,-1,109,237,238,-1,109,26,237,-1,109,108,26,-1,240,247,264,-1,240,239,247,-1,244,110,265,-1,244,245,110,-1,265,111,223,-1,111,265,246,-1,223,244,265,-1,223,226,244,-1,106,246,241,-1,111,246,106,-1,88,244,89,-1,88,245,244,-1,265,109,246,-1,265,110,109,-1,264,1,258,-1,264,247,1,-1,247,2,1,-1,137,2,247,-1,254,28,262,-1,254,248,28,-1,104,230,29,-1,106,230,104,-1,113,232,249,-1,112,232,113,-1,208,64,157,-1,198,64,208,-1,252,155,66,-1,155,252,40,-1,30,22,253,-1,116,22,30,-1,22,116,23,-1,147,56,178,-1,32,56,147,-1,145,124,61,-1,145,11,124,-1,39,127,125,-1,39,38,127,-1,181,131,133,-1,180,131,181,-1,91,46,69,-1,91,134,46,-1,80,68,78,-1,68,80,92,-1,143,149,52,-1,143,150,149,-1,140,150,143,-1,184,264,258,-1,184,183,264,-1,206,236,251,-1,206,215,236,-1,141,73,96,-1,98,73,141,-1,176,136,77,-1,176,153,136,-1,103,198,208,-1,103,102,198,-1,194,116,86,-1,90,116,194,-1,203,81,171,-1,203,263,81,-1,175,252,36,-1,175,233,252,-1,253,197,67,-1,197,253,262,-1,148,228,200,-1,227,228,148,-1,186,24,108,-1,24,186,151,-1,226,224,225,-1,226,223,224,-1,18,45,119,-1,45,18,153,-1,201,171,14,-1,171,201,203,-1,179,15,222,-1,16,15,179,-1,182,177,44,-1,177,182,51,-1,178,33,147,-1,178,120,33,-1,120,178,155,-1,3,250,217,-1,3,5,250,-1,165,257,219,-1,165,103,257,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getllatincc_Geo_5_451_coordIndex_3()
		{
			int[] value = {206,213,215,-1,206,209,213,-1,4,256,207,-1,261,256,4,-1,258,0,259,-1,0,258,1,-1,161,212,211,-1,161,160,212,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllatincc_Geo_5_451_normalIndex_1()
		{
			int[] value = {227,222,253,-1,79,70,90,-1,1,7,8,-1,134,95,89,-1,31,46,66,-1,101,58,68,-1,50,59,56,-1,183,170,167,-1,246,248,241,-1,129,160,153,-1,158,141,133,-1,134,128,137,-1,88,28,71,-1,26,115,29,-1,124,103,132,-1,69,51,117,-1,31,34,32,-1,208,139,138,-1,215,200,171,-1,141,54,53,-1,87,75,83,-1,91,84,81,-1,38,30,24,-1,54,15,53,-1,54,130,71,-1,114,96,44,-1,231,233,255,-1,233,216,245,-1,55,8,7,-1,36,32,44,-1,118,155,165,-1,118,44,32,-1,118,106,110,-1,19,8,55,-1,59,52,62,-1,135,91,112,-1,211,192,184,-1,173,166,204,-1,265,245,238,-1,262,255,260,-1,259,208,198,-1,9,5,19,-1,5,20,11,-1,141,130,54,-1,176,174,172,-1,248,262,264,-1,239,219,225,-1,175,172,174,-1,129,107,76,-1,25,24,17,-1,167,164,184,-1,179,171,111,-1,52,60,83,-1,127,105,102,-1,63,80,89,-1,108,9,99,-1,108,18,9,-1,143,142,144,-1,82,57,65,-1,117,189,198,-1,173,96,114,-1,118,109,155,-1,37,31,36,-1,250,247,256,-1,257,259,263,-1,118,114,44,-1,19,55,100,-1,208,257,252,-1,91,123,120,-1,36,96,117,-1,29,115,132,-1,134,137,102,-1,140,133,126,-1,234,221,224,-1,248,246,240,-1,183,167,187,-1,50,37,47,-1,101,124,142,-1,52,78,62,-1,52,75,78,-1,120,123,126,-1,127,42,29,-1,8,19,3,-1,33,85,90,-1,0,7,1,-1,159,163,186,-1,6,41,7,-1,3,11,4,-1,254,237,258,-1,6,45,41,-1,159,186,190,-1,0,6,7,-1,29,105,127,-1,102,105,103,-1,66,86,34,-1,208,259,257,-1,177,174,176,-1,248,240,230,-1,246,241,239,-1,126,123,140,-1,102,95,134,-1,40,27,28,-1,48,36,117,-1,208,252,179,-1,93,87,83,-1,91,120,84,-1,43,15,42,-1,15,43,53,-1,72,92,77,-1,259,231,255,-1,255,233,260,-1,250,256,254,-1,95,68,89,-1,138,125,208,-1,125,198,208,-1,99,9,19,-1,166,173,114,-1,117,198,125,-1,100,99,19,-1,127,102,137,-1,83,75,52,-1,111,139,179,-1,264,245,265,-1,264,260,245,-1,5,3,19,-1,54,71,28,-1,129,76,88,-1,169,151,154,-1,225,251,239,-1,248,230,262,-1,40,88,35,-1,11,3,5,-1,9,12,5,-1,262,260,264,-1,265,238,256,-1,209,212,204,-1,207,199,191,-1,204,212,173,-1,211,184,200,-1,152,135,112,-1,150,144,99,-1,59,62,73,-1,118,32,106,-1,51,47,48,-1,7,41,55,-1,233,245,260,-1,231,212,233,-1,96,36,44,-1,109,118,110,-1,130,136,71,-1,139,208,179,-1,30,23,24,-1,128,127,137,-1,81,112,91,-1,133,141,53,-1,200,157,171,-1,31,32,36,-1,117,125,69,-1,51,48,117,-1,108,99,144,-1,88,40,28,-1,133,140,158,-1,153,107,129,-1,234,235,221,-1,177,175,174,-1,60,51,69,-1,131,149,145,-1,31,66,34,-1,134,89,120,-1,227,253,249,-1,207,206,213,-1,33,39,21,-1,214,206,205,-1,214,213,206,-1,122,41,45,-1,122,121,41,-1,237,232,242,-1,237,220,232,-1,67,94,97,-1,67,79,94,-1,2,1,4,-1,2,0,1,-1,151,97,94,-1,151,156,97,-1,98,87,111,-1,98,75,87,-1,75,98,78,-1,68,102,101,-1,95,102,68,-1,116,149,131,-1,149,116,143,-1,46,37,50,-1,37,46,31,-1,177,180,175,-1,181,180,177,-1,187,185,183,-1,187,188,185,-1,251,236,240,-1,251,243,236,-1,119,148,147,-1,119,104,148,-1,150,143,144,-1,149,143,150,-1,27,35,25,-1,27,40,35,-1,14,18,26,-1,14,13,18,-1,109,100,55,-1,109,110,100,-1,65,63,77,-1,61,63,65,-1,209,233,212,-1,209,216,233,-1,250,258,253,-1,250,254,258,-1,190,155,159,-1,190,191,155,-1,132,108,144,-1,132,115,108,-1,61,59,73,-1,61,56,59,-1,58,77,63,-1,58,72,77,-1,62,81,73,-1,78,81,62,-1,157,111,171,-1,157,98,111,-1,191,165,155,-1,199,165,191,-1,245,217,238,-1,245,216,217,-1,13,17,12,-1,25,17,13,-1,76,35,88,-1,35,76,38,-1,129,71,136,-1,71,129,88,-1,256,244,265,-1,244,256,247,-1,247,228,244,-1,228,247,229,-1,203,228,229,-1,201,228,203,-1,257,223,224,-1,223,257,263,-1,168,154,147,-1,168,169,154,-1,192,188,187,-1,188,192,196,-1,201,168,172,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllatincc_Geo_5_451_normalIndex_2()
		{
			int[] value = {201,203,168,-1,235,218,211,-1,235,243,218,-1,228,202,219,-1,202,228,201,-1,251,218,243,-1,251,225,218,-1,250,229,247,-1,229,250,226,-1,241,265,244,-1,241,264,265,-1,248,264,241,-1,153,178,176,-1,178,153,160,-1,85,104,119,-1,104,85,74,-1,30,76,74,-1,30,38,76,-1,14,25,13,-1,14,27,25,-1,189,259,198,-1,259,189,231,-1,189,212,231,-1,189,173,212,-1,238,220,237,-1,238,217,220,-1,206,191,190,-1,207,191,206,-1,215,211,200,-1,215,235,211,-1,235,215,221,-1,140,91,135,-1,140,123,91,-1,109,159,155,-1,109,121,159,-1,119,90,85,-1,90,119,113,-1,69,83,60,-1,69,93,83,-1,210,216,209,-1,210,217,216,-1,61,57,56,-1,57,61,65,-1,24,20,17,-1,20,24,23,-1,38,25,35,-1,38,24,25,-1,78,112,81,-1,98,112,78,-1,158,135,164,-1,158,140,135,-1,215,179,252,-1,215,171,179,-1,32,86,106,-1,32,34,86,-1,142,132,144,-1,132,142,124,-1,26,16,14,-1,26,29,16,-1,141,161,130,-1,141,158,161,-1,107,148,104,-1,107,153,148,-1,224,236,234,-1,223,236,224,-1,185,170,183,-1,170,185,182,-1,176,181,177,-1,178,181,176,-1,60,59,50,-1,60,52,59,-1,46,82,66,-1,46,57,82,-1,92,116,131,-1,92,72,116,-1,103,101,102,-1,103,124,101,-1,22,39,49,-1,22,21,39,-1,21,10,11,-1,22,10,21,-1,156,193,194,-1,156,151,193,-1,205,190,186,-1,206,190,205,-1,261,253,258,-1,253,261,249,-1,64,79,67,-1,64,70,79,-1,258,242,261,-1,258,237,242,-1,94,154,151,-1,94,113,154,-1,90,39,33,-1,90,70,39,-1,4,8,3,-1,4,1,8,-1,126,134,120,-1,126,128,134,-1,87,139,111,-1,93,139,87,-1,93,138,139,-1,142,116,101,-1,142,143,116,-1,66,92,131,-1,66,82,92,-1,56,46,50,-1,56,57,46,-1,185,178,182,-1,185,181,178,-1,240,223,230,-1,240,236,223,-1,147,113,119,-1,113,147,154,-1,136,160,129,-1,136,162,160,-1,103,29,132,-1,103,105,29,-1,100,150,99,-1,100,146,150,-1,146,149,150,-1,146,145,149,-1,184,157,200,-1,184,152,157,-1,28,15,54,-1,28,16,15,-1,18,12,9,-1,13,12,18,-1,55,121,109,-1,121,55,41,-1,207,210,199,-1,207,213,210,-1,197,168,203,-1,169,168,197,-1,146,110,106,-1,110,146,100,-1,80,61,73,-1,63,61,80,-1,68,63,89,-1,68,58,63,-1,84,73,81,-1,84,80,73,-1,98,152,112,-1,157,152,98,-1,184,187,167,-1,184,192,187,-1,199,166,165,-1,204,166,199,-1,256,237,254,-1,256,238,237,-1,209,199,210,-1,209,204,199,-1,20,12,17,-1,20,5,12,-1,74,33,30,-1,74,85,33,-1,147,172,168,-1,148,172,147,-1,182,161,170,-1,182,162,161,-1,263,230,223,-1,230,263,262,-1,219,244,228,-1,219,241,244,-1,219,239,241,-1,203,226,197,-1,203,229,226,-1,196,225,195,-1,196,218,225,-1,195,175,180,-1,175,195,202,-1,180,196,195,-1,180,188,196,-1,172,202,201,-1,175,202,172,-1,211,196,192,-1,211,218,196,-1,195,219,202,-1,195,225,219,-1,197,222,193,-1,197,226,222,-1,226,253,222,-1,250,253,226,-1,182,160,162,-1,182,178,160,-1,176,148,153,-1,172,148,176,-1,76,104,74,-1,107,104,76,-1,21,30,33,-1,23,30,21,-1,16,42,15,-1,42,16,29,-1,158,170,161,-1,164,170,158,-1,170,164,167,-1,126,53,43,-1,133,53,126,-1,120,80,84,-1,120,89,80,-1,115,18,108,-1,115,26,18,-1,77,82,65,-1,92,82,77,-1,173,117,96,-1,173,189,117,-1,165,114,118,-1,114,165,166,-1,252,221,215,-1,252,224,221,-1,257,224,252,-1,151,197,193,-1,151,169,197,-1,213,217,210,-1,213,220,217,-1,263,255,262,-1,259,255,263,-1,48,37,36,-1,48,47,37,-1,11,23,21,-1,11,20,23,-1,152,164,135,-1,184,164,152,-1,145,106,86,-1,145,146,106,-1,27,16,28,-1,27,14,16,-1,161,136,130,-1,136,161,162,-1,234,243,235,-1,236,243,234,-1,251,246,239,-1,246,251,240,-1,188,181,185,-1,188,180,181,-1,50,51,60,-1,51,50,47,-1,131,86,66,-1,86,131,145,-1,72,101,116,-1,58,101,72,-1,125,93,69,-1,93,125,138,-1,43,128,126,-1,43,127,128,-1,127,43,42,-1,79,113,94,-1,79,90,113,-1,4,10,2,-1,4,11,10,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getllatincc_Geo_5_451_normalIndex_3()
		{
			int[] value = {213,232,220,-1,213,214,232,-1,70,49,39,-1,64,49,70,-1,193,227,194,-1,227,193,222,-1,163,121,122,-1,163,159,121,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllatincr_Geo_5_457_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,20,21,18,-1,12,14,22,-1,11,23,9,-1,11,24,23,-1,5,25,3,-1,0,26,1,-1,27,28,29,-1,27,30,28,-1,3,31,4,-1,32,21,33,-1,21,32,18,-1,34,35,36,-1,34,37,35,-1,38,39,40,-1,39,38,41,-1,42,43,44,-1,43,42,45,-1,29,46,47,-1,29,48,46,-1,49,50,51,-1,49,52,50,-1,53,54,55,-1,54,53,56,-1,47,57,58,-1,57,47,59,-1,43,60,61,-1,60,43,62,-1,1,63,2,-1,1,39,63,-1,64,49,65,-1,64,36,49,-1,66,67,68,-1,66,65,67,-1,30,69,70,-1,69,30,27,-1,71,72,73,-1,72,71,74,-1,75,76,77,-1,76,75,78,-1,22,79,80,-1,22,0,79,-1,68,81,66,-1,82,81,68,-1,70,83,84,-1,83,70,69,-1,73,85,86,-1,85,73,72,-1,77,87,88,-1,87,77,76,-1,87,13,89,-1,13,87,14,-1,90,91,92,-1,90,93,91,-1,94,95,96,-1,97,95,94,-1,98,99,100,-1,99,98,101,-1,99,102,103,-1,102,99,104,-1,105,106,107,-1,106,105,108,-1,109,110,111,-1,109,12,110,-1,112,113,114,-1,112,115,113,-1,116,117,118,-1,117,116,119,-1,117,120,121,-1,120,117,122,-1,123,124,125,-1,124,123,126,-1,127,128,129,-1,128,127,130,-1,131,132,133,-1,131,134,132,-1,135,136,137,-1,135,138,136,-1,139,140,141,-1,139,137,140,-1,142,143,144,-1,143,142,145,-1,146,147,148,-1,147,146,149,-1,150,151,152,-1,150,153,151,-1,154,155,156,-1,154,157,155,-1,158,159,160,-1,158,156,159,-1,161,162,163,-1,162,161,164,-1,165,166,167,-1,166,165,168,-1,169,170,171,-1,170,169,172,-1,173,174,175,-1,173,170,174,-1,176,177,178,-1,176,179,177,-1,180,181,182,-1,180,183,181,-1,184,185,186,-1,185,184,187,-1,188,189,190,-1,189,188,191,-1,189,192,193,-1,192,189,194,-1,195,196,197,-1,195,198,196,-1,199,200,201,-1,199,202,200,-1,203,204,205,-1,204,203,206,-1,207,208,209,-1,208,207,210,-1,31,211,4,-1,211,31,212,-1,213,204,214,-1,213,17,204,-1,208,18,32,-1,18,208,215,-1,4,195,5,-1,4,211,195,-1,216,199,217,-1,216,218,199,-1,216,9,219,-1,216,220,9,-1,221,25,5,-1,221,24,25,-1,24,221,23,-1,220,6,222,-1,220,7,6,-1,223,7,217,-1,8,7,223,-1,10,220,222,-1,220,10,9,-1,201,217,199,-1,223,217,201,-1,197,5,195,-1,221,5,197,-1,215,19,18,-1,19,215,193,-1,224,214,225,-1,224,213,214,-1,210,215,208,-1,215,210,190,-1,206,214,204,-1,214,206,186,-1,201,180,226,-1,201,200,180,-1,197,176,227,-1,197,196,176,-1,194,212,192,-1,212,194,173,-1,191,194,189,-1,194,191,171,-1,187,207,185,-1,207,187,167,-1,181,203,182,-1,203,181,163,-1,178,158,202,-1,178,177,158,-1,175,228,198,-1,175,174,228,-1,170,150,174,-1,170,172,150,-1,168,188,166,-1,188,168,148,-1,164,184,162,-1,184,164,144,-1,160,139,183,-1,160,159,139,-1,229,230,179,-1,229,231,230,-1,152,131,231,-1,152,151,131,-1,149,169,147,-1,169,149,129,-1,145,165,143,-1,165,145,125,-1,140,161,141,-1,161,140,121,-1,137,118,140,-1,137,136,118,-1,133,112,157,-1,133,132,112,-1,128,109,153,-1,128,130,109,-1,126,146,124,-1,146,126,107,-1,122,142,120,-1,142,122,103,-1,119,122,117,-1,122,119,100,-1,95,114,113,-1,138,114,95,-1,111,90,134,-1,111,110,90,-1,108,127,106,-1,127,108,89,-1,104,123,102,-1,123,104,232,-1,101,104,99,-1,104,101,86,-1,94,116,97,-1,116,94,84,-1,92,81,115,-1,92,91,81,-1,88,89,108,-1,89,88,87,-1,233,88,234,-1,88,233,77,-1,235,86,101,-1,86,235,73,-1,236,84,94,-1,84,236,70,-1,91,66,81,-1,91,237,66,-1,14,0,22,-1,14,26,0,-1,1,76,78,-1,26,76,1,-1,238,74,61,-1,238,72,74,-1,27,239,69,-1,239,27,58,-1,55,68,67,-1,240,68,55,-1,79,241,242,-1,79,243,241,-1,2,244,243,-1,2,63,244,-1,75,62,245,-1,75,60,62,-1,59,71,57,-1,71,59,246,-1,56,30,54,-1,30,56,28,-1,51,247,53,-1,51,50,247,-1,248,29,28,-1,29,248,48,-1,249,44,246,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllatincr_Geo_5_457_coordIndex_2()
		{
			int[] value = {44,249,42,-1,250,40,245,-1,40,250,38,-1,244,37,34,-1,244,251,37,-1,252,224,253,-1,252,213,224,-1,36,52,49,-1,36,35,52,-1,39,254,63,-1,39,41,254,-1,45,62,43,-1,62,45,255,-1,47,256,59,-1,47,46,256,-1,247,56,53,-1,56,247,257,-1,67,53,55,-1,67,51,53,-1,29,58,27,-1,58,29,47,-1,44,61,74,-1,61,44,43,-1,78,39,1,-1,78,40,39,-1,241,36,64,-1,241,34,36,-1,237,65,66,-1,237,64,65,-1,70,54,30,-1,70,236,54,-1,57,73,235,-1,73,57,71,-1,60,77,233,-1,77,60,75,-1,0,243,79,-1,0,2,243,-1,80,242,93,-1,80,79,242,-1,82,240,96,-1,82,68,240,-1,69,98,83,-1,98,69,239,-1,72,258,85,-1,258,72,238,-1,105,258,234,-1,105,259,258,-1,110,93,90,-1,110,80,93,-1,113,96,95,-1,113,82,96,-1,83,100,119,-1,100,83,98,-1,85,259,232,-1,259,85,258,-1,259,107,126,-1,107,259,105,-1,130,12,109,-1,130,13,12,-1,132,115,112,-1,132,92,115,-1,136,116,118,-1,136,97,116,-1,118,121,140,-1,121,118,117,-1,102,125,145,-1,125,102,123,-1,106,129,149,-1,129,106,127,-1,151,134,131,-1,151,111,134,-1,155,138,135,-1,155,114,138,-1,159,137,139,-1,159,135,137,-1,120,144,164,-1,144,120,142,-1,124,148,168,-1,148,124,146,-1,172,153,150,-1,172,128,153,-1,230,157,154,-1,230,133,157,-1,177,156,158,-1,177,154,156,-1,141,163,181,-1,163,141,161,-1,143,167,187,-1,167,143,165,-1,147,171,191,-1,171,147,169,-1,228,231,229,-1,228,152,231,-1,196,179,176,-1,196,229,179,-1,200,183,180,-1,200,160,183,-1,162,186,206,-1,186,162,184,-1,166,190,210,-1,190,166,188,-1,190,193,215,-1,193,190,189,-1,211,198,195,-1,211,175,198,-1,218,202,199,-1,218,178,202,-1,182,205,260,-1,205,182,203,-1,185,209,225,-1,209,185,207,-1,17,205,204,-1,17,16,205,-1,209,32,261,-1,32,209,208,-1,262,212,31,-1,262,192,212,-1,218,219,227,-1,216,219,218,-1,263,260,264,-1,263,226,260,-1,261,33,265,-1,261,32,33,-1,217,220,216,-1,220,217,7,-1,219,23,221,-1,9,23,219,-1,265,224,261,-1,265,253,224,-1,226,223,201,-1,263,223,226,-1,227,221,197,-1,219,221,227,-1,193,262,19,-1,262,193,192,-1,225,261,224,-1,261,225,209,-1,264,205,16,-1,264,260,205,-1,45,250,255,-1,50,257,247,-1,52,257,50,-1,52,248,257,-1,52,48,248,-1,35,48,52,-1,35,46,48,-1,37,46,35,-1,37,256,46,-1,251,256,37,-1,254,256,251,-1,254,249,256,-1,41,249,254,-1,38,249,41,-1,38,42,249,-1,38,45,42,-1,38,250,45,-1,186,225,214,-1,225,186,185,-1,226,182,260,-1,226,180,182,-1,227,178,218,-1,227,176,178,-1,212,175,211,-1,212,173,175,-1,171,173,194,-1,173,171,170,-1,167,210,207,-1,210,167,166,-1,163,206,203,-1,206,163,162,-1,202,160,200,-1,202,158,160,-1,198,229,196,-1,198,228,229,-1,174,152,228,-1,174,150,152,-1,148,191,188,-1,191,148,147,-1,144,187,184,-1,187,144,143,-1,183,141,181,-1,183,139,141,-1,179,154,177,-1,179,230,154,-1,231,133,230,-1,231,131,133,-1,129,172,169,-1,172,129,128,-1,125,168,165,-1,168,125,124,-1,121,164,161,-1,164,121,120,-1,156,135,159,-1,156,155,135,-1,157,114,155,-1,157,112,114,-1,153,111,151,-1,153,109,111,-1,107,149,146,-1,149,107,106,-1,103,145,142,-1,145,103,102,-1,100,103,122,-1,103,100,99,-1,138,97,136,-1,138,95,97,-1,134,92,132,-1,134,90,92,-1,89,130,127,-1,130,89,13,-1,232,126,123,-1,126,232,259,-1,86,232,104,-1,232,86,85,-1,84,119,116,-1,119,84,83,-1,82,115,81,-1,113,115,82,-1,80,12,22,-1,110,12,80,-1,108,234,88,-1,108,105,234,-1,234,238,233,-1,234,258,238,-1,239,101,98,-1,101,239,235,-1,96,236,94,-1,96,240,236,-1,93,237,91,-1,93,242,237,-1,76,14,87,-1,14,76,26,-1,61,233,238,-1,233,61,60,-1,58,235,239,-1,235,58,57,-1,240,54,236,-1,240,55,54,-1,242,64,237,-1,242,241,64,-1,243,34,241,-1,243,244,34,-1,245,78,75,-1,78,245,40,-1,246,74,71,-1,74,246,44,-1,51,65,49,-1,67,65,51,-1,257,28,56,-1,28,257,248,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getllatincr_Geo_5_457_coordIndex_3()
		{
			int[] value = {59,249,246,-1,59,256,249,-1,255,245,62,-1,245,255,250,-1,63,251,244,-1,63,254,251,-1,15,213,252,-1,15,17,213,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllatincr_Geo_5_457_normalIndex_1()
		{
			int[] value = {119,132,103,-1,112,114,94,-1,15,10,0,-1,42,38,55,-1,104,134,145,-1,178,162,174,-1,260,226,236,-1,236,256,260,-1,104,145,121,-1,55,72,42,-1,55,89,72,-1,94,91,112,-1,119,147,132,-1,148,128,155,-1,148,118,128,-1,112,133,114,-1,254,256,242,-1,256,254,260,-1,70,87,54,-1,70,99,87,-1,142,131,165,-1,131,142,127,-1,156,228,210,-1,228,156,159,-1,155,141,166,-1,155,130,141,-1,40,81,39,-1,40,83,81,-1,43,69,30,-1,69,43,80,-1,166,195,168,-1,195,166,188,-1,228,262,265,-1,262,228,227,-1,132,101,103,-1,132,131,101,-1,46,40,31,-1,46,54,40,-1,26,18,1,-1,26,31,18,-1,118,143,113,-1,143,118,148,-1,211,231,204,-1,231,211,240,-1,213,181,225,-1,181,213,171,-1,121,86,85,-1,121,119,86,-1,1,27,26,-1,2,27,1,-1,113,146,115,-1,146,113,143,-1,204,230,203,-1,230,204,231,-1,225,173,216,-1,173,225,181,-1,173,134,179,-1,134,173,145,-1,71,45,47,-1,71,59,45,-1,57,13,20,-1,61,13,57,-1,164,191,167,-1,191,164,190,-1,191,208,193,-1,208,191,206,-1,248,218,249,-1,218,248,217,-1,107,90,95,-1,107,104,90,-1,34,3,4,-1,34,29,3,-1,117,152,120,-1,152,117,149,-1,152,170,153,-1,170,152,169,-1,234,245,232,-1,245,234,246,-1,180,138,184,-1,138,180,135,-1,77,50,51,-1,77,76,50,-1,14,60,62,-1,14,12,60,-1,63,122,123,-1,63,62,122,-1,194,209,196,-1,209,194,207,-1,251,222,257,-1,222,251,220,-1,109,96,97,-1,109,108,96,-1,36,5,8,-1,36,35,5,-1,11,16,19,-1,11,8,16,-1,154,176,158,-1,176,154,172,-1,235,258,239,-1,258,235,252,-1,183,140,186,-1,140,183,137,-1,136,111,106,-1,136,140,111,-1,49,37,33,-1,49,53,37,-1,64,125,124,-1,64,66,125,-1,198,214,197,-1,214,198,215,-1,264,221,259,-1,221,264,224,-1,221,185,223,-1,185,221,182,-1,92,75,74,-1,92,93,75,-1,6,17,23,-1,6,7,17,-1,157,177,160,-1,177,157,175,-1,238,261,241,-1,261,238,255,-1,133,110,114,-1,110,133,139,-1,199,177,200,-1,199,174,177,-1,261,260,254,-1,260,261,263,-1,114,92,94,-1,114,110,92,-1,28,6,9,-1,28,32,6,-1,28,42,44,-1,28,25,42,-1,73,91,94,-1,73,89,91,-1,89,73,72,-1,25,15,24,-1,25,10,15,-1,22,10,9,-1,0,10,22,-1,38,25,24,-1,25,38,42,-1,23,9,6,-1,22,9,23,-1,74,94,92,-1,73,94,74,-1,263,226,260,-1,226,263,223,-1,212,200,219,-1,212,199,200,-1,255,263,261,-1,263,255,259,-1,175,200,177,-1,200,175,197,-1,23,64,67,-1,23,17,64,-1,74,49,48,-1,74,75,49,-1,182,139,185,-1,139,182,136,-1,224,182,221,-1,182,224,186,-1,215,238,214,-1,238,215,239,-1,125,157,124,-1,157,125,158,-1,33,11,7,-1,33,37,11,-1,106,98,93,-1,106,111,98,-1,140,109,111,-1,140,137,109,-1,252,264,258,-1,264,252,257,-1,172,198,176,-1,198,172,196,-1,19,63,66,-1,19,16,63,-1,79,52,53,-1,79,78,52,-1,97,77,78,-1,97,96,77,-1,220,183,222,-1,183,220,184,-1,207,235,209,-1,235,207,232,-1,122,154,123,-1,154,122,153,-1,62,120,122,-1,62,60,120,-1,51,34,35,-1,51,50,34,-1,138,107,108,-1,138,135,107,-1,246,251,245,-1,251,246,249,-1,169,194,170,-1,194,169,193,-1,149,169,152,-1,169,149,167,-1,13,4,3,-1,12,4,13,-1,95,71,76,-1,95,90,71,-1,217,180,218,-1,180,217,179,-1,206,234,208,-1,234,206,233,-1,190,206,191,-1,206,190,203,-1,57,117,61,-1,117,57,115,-1,47,27,29,-1,47,45,27,-1,216,179,217,-1,179,216,173,-1,253,216,243,-1,216,253,225,-1,189,203,190,-1,203,189,204,-1,56,115,57,-1,115,56,113,-1,45,26,27,-1,45,41,26,-1,145,119,121,-1,145,147,119,-1,132,181,171,-1,147,181,132,-1,250,240,265,-1,250,231,240,-1,148,163,143,-1,163,148,168,-1,30,1,18,-1,21,1,30,-1,86,68,58,-1,86,88,68,-1,103,84,88,-1,103,101,84,-1,213,227,201,-1,213,262,227,-1,188,211,195,-1,211,188,202,-1,80,118,69,-1,118,80,128,-1,39,82,43,-1,39,81,82,-1,116,155,128,-1,155,116,130,-1,151,210,202,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllatincr_Geo_5_457_normalIndex_2()
		{
			int[] value = {210,151,156,-1,150,165,201,-1,165,150,142,-1,84,99,70,-1,84,102,99,-1,192,212,205,-1,192,199,212,-1,54,83,40,-1,54,87,83,-1,131,105,101,-1,131,127,105,-1,159,227,228,-1,227,159,161,-1,166,144,188,-1,166,141,144,-1,82,80,43,-1,80,82,100,-1,18,43,30,-1,18,39,43,-1,155,168,148,-1,168,155,166,-1,210,265,240,-1,265,210,228,-1,171,131,132,-1,171,165,131,-1,68,54,46,-1,68,70,54,-1,41,31,26,-1,41,46,31,-1,113,69,118,-1,113,56,69,-1,195,204,189,-1,204,195,211,-1,262,225,253,-1,225,262,213,-1,119,88,86,-1,119,103,88,-1,85,58,59,-1,85,86,58,-1,2,21,20,-1,2,1,21,-1,143,164,146,-1,164,143,163,-1,231,244,230,-1,244,231,250,-1,248,244,243,-1,248,247,244,-1,90,59,71,-1,90,85,59,-1,3,20,13,-1,3,2,20,-1,146,167,149,-1,167,146,164,-1,230,247,233,-1,247,230,244,-1,247,249,246,-1,249,247,248,-1,135,104,107,-1,135,134,104,-1,50,29,34,-1,50,47,29,-1,60,117,120,-1,60,61,117,-1,120,153,122,-1,153,120,152,-1,208,232,207,-1,232,208,234,-1,218,184,220,-1,184,218,180,-1,96,76,77,-1,96,95,76,-1,5,12,14,-1,5,4,12,-1,16,62,63,-1,16,14,62,-1,170,196,172,-1,196,170,194,-1,245,257,252,-1,257,245,251,-1,137,108,109,-1,137,138,108,-1,52,35,36,-1,52,51,35,-1,37,8,11,-1,37,36,8,-1,123,158,125,-1,158,123,154,-1,209,239,215,-1,239,209,235,-1,222,186,224,-1,186,222,183,-1,98,78,79,-1,98,97,78,-1,75,53,49,-1,75,79,53,-1,17,66,64,-1,17,19,66,-1,176,197,175,-1,197,176,198,-1,258,259,255,-1,259,258,264,-1,259,223,263,-1,223,259,221,-1,110,93,92,-1,110,106,93,-1,32,7,6,-1,32,33,7,-1,124,160,126,-1,160,124,157,-1,214,241,219,-1,241,214,238,-1,174,160,177,-1,174,162,160,-1,241,254,237,-1,254,241,261,-1,187,139,133,-1,187,185,139,-1,32,44,48,-1,28,44,32,-1,65,126,129,-1,65,67,126,-1,237,242,229,-1,237,254,242,-1,9,25,28,-1,25,9,10,-1,44,72,73,-1,42,72,44,-1,229,212,237,-1,229,205,212,-1,67,22,23,-1,65,22,67,-1,48,73,74,-1,44,73,48,-1,223,187,226,-1,187,223,185,-1,219,237,212,-1,237,219,241,-1,129,160,162,-1,129,126,160,-1,159,150,161,-1,81,100,82,-1,83,100,81,-1,83,116,100,-1,83,130,116,-1,87,130,83,-1,87,141,130,-1,99,141,87,-1,99,144,141,-1,102,144,99,-1,105,144,102,-1,105,151,144,-1,127,151,105,-1,142,151,127,-1,142,156,151,-1,142,159,156,-1,142,150,159,-1,197,219,200,-1,219,197,214,-1,67,124,126,-1,67,64,124,-1,48,33,32,-1,48,49,33,-1,139,106,110,-1,139,136,106,-1,186,136,182,-1,136,186,140,-1,239,255,238,-1,255,239,258,-1,158,175,157,-1,175,158,176,-1,7,19,17,-1,7,11,19,-1,93,79,75,-1,93,98,79,-1,111,97,98,-1,111,109,97,-1,257,224,264,-1,224,257,222,-1,196,215,198,-1,215,196,209,-1,66,123,125,-1,66,63,123,-1,53,36,37,-1,53,52,36,-1,78,51,52,-1,78,77,51,-1,184,137,183,-1,137,184,138,-1,232,252,235,-1,252,232,245,-1,153,172,154,-1,172,153,170,-1,8,14,16,-1,8,5,14,-1,35,4,5,-1,35,34,4,-1,108,95,96,-1,108,107,95,-1,249,220,251,-1,220,249,218,-1,193,207,194,-1,207,193,208,-1,167,193,169,-1,193,167,191,-1,12,61,60,-1,12,13,61,-1,76,47,50,-1,76,71,47,-1,179,135,180,-1,135,179,134,-1,233,246,234,-1,246,233,247,-1,203,233,206,-1,233,203,230,-1,115,149,117,-1,149,115,146,-1,2,29,27,-1,3,29,2,-1,85,104,121,-1,90,104,85,-1,217,243,216,-1,217,248,243,-1,243,250,253,-1,243,244,250,-1,163,190,164,-1,190,163,189,-1,20,56,57,-1,20,21,56,-1,59,41,45,-1,59,58,41,-1,181,145,173,-1,145,181,147,-1,265,253,250,-1,253,265,262,-1,168,189,163,-1,189,168,195,-1,21,69,56,-1,21,30,69,-1,58,46,41,-1,58,68,46,-1,88,70,68,-1,88,84,70,-1,201,171,213,-1,171,201,165,-1,202,240,211,-1,240,202,210,-1,39,31,40,-1,18,31,39,-1,100,128,80,-1,128,100,116,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getllatincr_Geo_5_457_normalIndex_3()
		{
			int[] value = {188,151,202,-1,188,144,151,-1,161,201,227,-1,201,161,150,-1,101,102,84,-1,101,105,102,-1,178,199,192,-1,178,174,199,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllatinlc_Geo_5_463_coordIndex_2()
		{
			int[] value = {120,53,118,-1,49,134,136,-1,152,134,49,-1,75,129,76,-1,75,18,129,-1,80,45,41,-1,80,43,45,-1,132,147,153,-1,132,143,147,-1,37,28,148,-1,37,110,28,-1,147,158,153,-1,150,158,147,-1,138,116,21,-1,140,116,138,-1,0,27,1,-1,0,112,27,-1,82,18,75,-1,117,18,82,-1,28,149,148,-1,28,27,149,-1,17,69,145,-1,17,70,69,-1,70,17,16,-1,152,157,106,-1,157,152,49,-1,23,88,87,-1,88,23,89,-1,153,82,81,-1,82,153,158,-1,151,40,39,-1,151,113,40,-1,146,133,74,-1,133,146,145,-1,108,19,89,-1,20,19,108,-1,57,119,118,-1,157,119,57,-1,47,73,48,-1,156,73,47,-1,8,101,99,-1,8,100,101,-1,2,29,154,-1,2,1,29,-1,98,95,105,-1,4,95,98,-1,155,73,156,-1,104,73,155,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllatinlc_Geo_5_463_normalIndex_2()
		{
			int[] value = {47,67,44,-1,114,144,150,-1,110,144,114,-1,100,76,71,-1,100,99,76,-1,13,1,10,-1,13,0,1,-1,96,108,111,-1,96,93,108,-1,86,103,105,-1,86,79,103,-1,108,118,111,-1,117,118,108,-1,119,133,131,-1,120,133,119,-1,140,123,125,-1,140,142,123,-1,113,99,100,-1,116,99,113,-1,103,121,105,-1,103,123,121,-1,69,58,60,-1,69,54,58,-1,54,69,77,-1,110,55,41,-1,55,110,114,-1,146,127,126,-1,127,146,138,-1,111,113,101,-1,113,111,118,-1,50,18,37,-1,50,31,18,-1,52,61,63,-1,61,52,60,-1,134,124,138,-1,115,124,134,-1,56,45,44,-1,55,45,56,-1,153,139,136,-1,149,139,153,-1,6,3,5,-1,6,4,3,-1,128,107,109,-1,128,125,107,-1,33,19,28,-1,20,19,33,-1,147,139,149,-1,145,139,147,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllatinlr_Geo_5_469_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,14,13,21,-1,22,23,24,-1,25,26,27,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,37,11,38,-1,39,21,40,-1,23,41,24,-1,42,0,2,-1,25,43,44,-1,2,45,42,-1,46,47,48,-1,39,40,49,-1,37,50,11,-1,34,36,51,-1,31,33,52,-1,53,54,55,-1,29,56,30,-1,57,41,23,-1,22,27,23,-1,42,58,59,-1,60,61,62,-1,57,23,62,-1,63,64,65,-1,63,66,64,-1,14,21,39,-1,18,20,67,-1,15,68,16,-1,69,63,70,-1,69,71,63,-1,12,72,13,-1,11,50,9,-1,73,6,8,-1,74,28,47,-1,49,75,39,-1,75,49,76,-1,77,78,20,-1,77,79,78,-1,80,37,38,-1,81,37,80,-1,82,83,84,-1,34,83,82,-1,19,34,51,-1,83,34,19,-1,85,86,87,-1,85,88,86,-1,89,90,65,-1,90,89,91,-1,92,85,93,-1,85,92,94,-1,95,96,97,-1,98,96,95,-1,99,100,101,-1,102,100,99,-1,103,82,104,-1,105,82,103,-1,106,107,108,-1,106,109,107,-1,110,111,112,-1,110,113,111,-1,114,115,116,-1,115,114,66,-1,117,118,119,-1,118,117,120,-1,121,122,123,-1,122,121,124,-1,71,125,126,-1,125,71,69,-1,127,122,128,-1,122,127,129,-1,130,131,132,-1,131,130,133,-1,134,135,136,-1,134,137,135,-1,138,31,52,-1,139,31,138,-1,140,103,139,-1,140,141,103,-1,125,15,17,-1,125,69,15,-1,142,143,144,-1,145,143,142,-1,146,33,147,-1,146,52,33,-1,148,149,16,-1,145,149,148,-1,150,95,81,-1,151,95,150,-1,94,75,152,-1,94,92,75,-1,153,9,154,-1,153,155,9,-1,70,102,99,-1,70,90,102,-1,156,35,105,-1,156,157,35,-1,158,117,159,-1,117,158,160,-1,114,87,86,-1,114,161,87,-1,54,162,55,-1,54,3,162,-1,107,131,113,-1,131,107,163,-1,121,134,164,-1,134,121,165,-1,166,167,168,-1,166,169,167,-1,170,171,172,-1,170,173,171,-1,174,175,168,-1,176,175,174,-1,62,177,57,-1,62,172,177,-1,178,133,130,-1,178,179,133,-1,136,56,29,-1,56,136,135,-1,180,56,181,-1,30,56,180,-1,182,183,176,-1,183,182,184,-1,183,3,5,-1,183,162,3,-1,184,162,183,-1,184,26,162,-1,46,185,186,-1,46,58,185,-1,58,45,185,-1,58,42,45,-1,57,1,41,-1,187,1,57,-1,27,62,23,-1,27,60,62,-1,188,45,2,-1,188,179,45,-1,189,74,186,-1,189,190,74,-1,26,60,27,-1,60,26,184,-1,61,184,182,-1,184,61,60,-1,180,191,4,-1,180,181,191,-1,135,181,56,-1,181,135,192,-1,130,189,178,-1,189,130,193,-1,187,177,112,-1,187,57,177,-1,176,194,182,-1,176,174,194,-1,172,195,177,-1,172,171,195,-1,142,168,167,-1,174,168,142,-1,165,137,134,-1,137,165,196,-1,132,163,197,-1,132,131,163,-1,66,86,64,-1,66,114,86,-1,160,120,117,-1,120,160,198,-1,105,34,82,-1,105,35,34,-1,102,96,100,-1,102,199,96,-1,154,50,200,-1,154,9,50,-1,152,201,94,-1,201,152,6,-1,67,13,18,-1,13,67,21,-1,151,202,36,-1,151,150,202,-1,203,16,149,-1,203,17,16,-1,52,204,138,-1,146,204,52,-1,144,204,173,-1,143,204,144,-1,205,203,169,-1,206,203,205,-1,141,207,208,-1,140,207,141,-1,139,209,140,-1,139,138,209,-1,137,192,135,-1,137,205,192,-1,193,132,210,-1,132,193,130,-1,128,118,127,-1,128,211,118,-1,115,126,212,-1,126,115,71,-1,123,165,121,-1,123,212,165,-1,163,109,211,-1,109,163,107,-1,116,161,114,-1,116,129,161,-1,69,99,15,-1,69,70,99,-1,213,109,106,-1,109,213,119,-1,119,159,117,-1,119,213,159,-1,101,214,208,-1,100,214,101,-1,199,97,96,-1,199,200,97,-1,14,93,12,-1,93,14,92,-1,215,89,216,-1,89,215,153,-1,64,88,216,-1,88,64,86,-1,72,198,160,-1,12,198,72,-1,84,217,158,-1,83,217,84,-1,155,10,9,-1,155,218,10,-1,77,219,79,-1,77,202,219,-1,76,152,75,-1,152,76,220,-1,48,58,46,-1,48,59,58,-1,8,155,73,-1,155,8,218,-1,78,67,20,-1,67,78,221,-1,81,222,150,-1,81,80,222,-1,217,160,158,-1,217,72,160,-1,19,217,83,-1,217,19,18,-1,87,93,85,-1,93,87,223,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllatinlr_Geo_5_469_coordIndex_2()
		{
			int[] value = {90,199,102,-1,90,91,199,-1,94,88,85,-1,88,94,201,-1,98,151,157,-1,98,95,151,-1,89,154,91,-1,89,153,154,-1,141,105,103,-1,156,105,141,-1,33,108,147,-1,33,106,108,-1,110,177,195,-1,110,112,177,-1,66,71,115,-1,71,66,63,-1,120,127,118,-1,127,120,224,-1,128,124,197,-1,128,122,124,-1,126,206,196,-1,126,125,206,-1,129,123,122,-1,123,129,116,-1,113,133,111,-1,113,131,133,-1,164,136,225,-1,164,134,136,-1,16,207,148,-1,68,207,16,-1,104,139,103,-1,31,139,104,-1,101,15,99,-1,68,15,101,-1,145,167,149,-1,145,142,167,-1,171,147,195,-1,146,147,171,-1,145,209,143,-1,145,148,209,-1,81,97,37,-1,95,97,81,-1,20,51,77,-1,19,51,20,-1,39,92,14,-1,92,39,75,-1,73,153,215,-1,153,73,155,-1,65,70,63,-1,70,65,90,-1,157,214,98,-1,156,214,157,-1,226,158,159,-1,226,84,158,-1,161,223,87,-1,161,224,223,-1,164,124,121,-1,164,210,124,-1,192,169,166,-1,192,205,169,-1,194,173,170,-1,194,144,173,-1,113,108,107,-1,113,110,108,-1,61,172,62,-1,61,170,172,-1,179,111,133,-1,179,188,111,-1,29,225,136,-1,29,190,225,-1,168,191,166,-1,175,191,168,-1,176,5,175,-1,5,176,183,-1,190,28,74,-1,29,28,190,-1,55,26,25,-1,26,55,162,-1,178,186,185,-1,186,178,189,-1,179,185,45,-1,178,185,179,-1,22,25,27,-1,22,43,25,-1,187,2,1,-1,2,187,188,-1,186,47,46,-1,74,47,186,-1,53,25,44,-1,55,25,53,-1,4,175,5,-1,4,191,175,-1,166,181,192,-1,191,181,166,-1,193,190,189,-1,190,193,225,-1,188,112,111,-1,188,187,112,-1,182,170,61,-1,182,194,170,-1,147,110,195,-1,110,147,108,-1,174,144,194,-1,174,142,144,-1,196,205,137,-1,205,196,206,-1,210,197,124,-1,210,132,197,-1,198,224,120,-1,224,198,223,-1,104,84,226,-1,104,82,84,-1,100,98,214,-1,100,96,98,-1,200,37,97,-1,200,50,37,-1,6,215,201,-1,215,6,73,-1,36,77,51,-1,36,202,77,-1,206,17,203,-1,206,125,17,-1,143,138,204,-1,143,209,138,-1,173,146,171,-1,204,146,173,-1,169,149,167,-1,203,149,169,-1,208,68,101,-1,207,68,208,-1,226,31,104,-1,32,31,226,-1,140,148,207,-1,140,209,148,-1,210,225,193,-1,210,164,225,-1,119,211,109,-1,211,119,118,-1,212,116,115,-1,212,123,116,-1,212,196,165,-1,212,126,196,-1,211,197,163,-1,211,128,197,-1,129,224,161,-1,129,127,224,-1,32,106,33,-1,106,32,213,-1,32,159,213,-1,32,226,159,-1,156,208,214,-1,156,141,208,-1,91,200,199,-1,91,154,200,-1,157,36,35,-1,157,151,36,-1,201,216,88,-1,216,201,215,-1,65,216,89,-1,216,65,64,-1,12,223,198,-1,12,93,223,-1,18,72,217,-1,72,18,13,-1,38,222,80,-1,38,219,222,-1,11,219,38,-1,10,219,11,-1,10,79,219,-1,218,79,10,-1,218,78,79,-1,8,78,218,-1,8,221,78,-1,7,221,8,-1,7,40,221,-1,7,49,40,-1,7,76,49,-1,7,220,76,-1,222,202,150,-1,202,222,219,-1,221,21,67,-1,21,221,40,-1,220,6,152,-1,6,220,7,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllatinlr_Geo_5_469_normalIndex_1()
		{
			int[] value = {54,77,47,-1,195,157,177,-1,57,74,86,-1,119,110,116,-1,32,65,39,-1,158,179,152,-1,98,122,114,-1,39,65,71,-1,187,168,165,-1,204,197,192,-1,88,87,112,-1,167,125,132,-1,150,178,159,-1,147,116,117,-1,53,71,80,-1,168,138,165,-1,29,54,47,-1,204,189,209,-1,47,18,29,-1,38,56,37,-1,53,80,73,-1,147,144,116,-1,150,159,145,-1,167,132,171,-1,220,205,210,-1,87,109,112,-1,141,138,168,-1,187,192,168,-1,29,12,15,-1,194,199,174,-1,141,168,174,-1,104,67,100,-1,104,75,67,-1,39,71,53,-1,98,114,92,-1,158,185,179,-1,130,104,128,-1,130,111,104,-1,32,59,65,-1,116,144,119,-1,72,57,86,-1,61,88,56,-1,73,34,53,-1,34,73,70,-1,127,101,114,-1,127,113,101,-1,120,147,117,-1,149,147,120,-1,163,121,123,-1,150,121,163,-1,122,150,145,-1,121,150,122,-1,21,46,19,-1,21,45,46,-1,102,126,100,-1,126,102,131,-1,16,21,7,-1,21,16,25,-1,170,175,166,-1,190,175,170,-1,162,181,186,-1,160,181,162,-1,193,163,164,-1,188,163,193,-1,90,43,89,-1,90,44,43,-1,83,40,79,-1,83,42,40,-1,51,76,52,-1,76,51,75,-1,50,13,49,-1,13,50,22,-1,60,23,55,-1,23,60,27,-1,111,133,105,-1,133,111,130,-1,3,23,1,-1,23,3,24,-1,6,17,2,-1,17,6,20,-1,84,108,85,-1,84,107,108,-1,200,167,171,-1,196,167,200,-1,215,193,196,-1,215,211,193,-1,133,158,152,-1,133,130,158,-1,225,216,217,-1,224,216,225,-1,172,132,134,-1,172,171,132,-1,223,183,179,-1,224,183,223,-1,148,170,149,-1,169,170,148,-1,25,34,36,-1,25,16,34,-1,103,119,129,-1,103,99,119,-1,128,160,162,-1,128,126,160,-1,207,178,188,-1,207,191,178,-1,94,50,93,-1,50,94,58,-1,51,19,46,-1,51,26,19,-1,205,206,210,-1,205,195,206,-1,43,17,42,-1,17,43,8,-1,60,84,62,-1,84,60,82,-1,155,184,182,-1,155,154,184,-1,202,173,176,-1,202,201,173,-1,226,180,182,-1,222,180,226,-1,174,140,141,-1,174,176,140,-1,4,20,6,-1,4,14,20,-1,85,109,87,-1,109,85,108,-1,142,109,139,-1,112,109,142,-1,214,212,222,-1,212,214,208,-1,212,195,177,-1,212,206,195,-1,208,206,212,-1,208,197,206,-1,38,11,35,-1,38,12,11,-1,12,18,11,-1,12,29,18,-1,141,77,138,-1,81,77,141,-1,192,174,168,-1,192,194,174,-1,41,18,47,-1,41,14,18,-1,31,61,35,-1,31,63,61,-1,197,194,192,-1,194,197,208,-1,199,208,214,-1,208,199,194,-1,142,156,157,-1,142,139,156,-1,108,139,109,-1,139,108,137,-1,6,31,4,-1,31,6,33,-1,81,140,79,-1,81,141,140,-1,222,219,214,-1,222,226,219,-1,176,143,140,-1,176,173,143,-1,225,182,184,-1,226,182,225,-1,82,107,84,-1,107,82,106,-1,2,8,0,-1,2,17,8,-1,75,46,67,-1,75,51,46,-1,58,22,50,-1,22,58,28,-1,188,150,163,-1,188,178,150,-1,160,175,181,-1,160,161,175,-1,129,144,151,-1,129,119,144,-1,36,48,25,-1,48,36,57,-1,92,65,98,-1,65,92,71,-1,169,146,159,-1,169,148,146,-1,153,179,183,-1,153,152,179,-1,171,198,200,-1,172,198,171,-1,217,198,201,-1,216,198,217,-1,136,153,154,-1,135,153,136,-1,211,221,213,-1,215,221,211,-1,196,218,215,-1,196,200,218,-1,107,137,108,-1,107,136,137,-1,33,2,30,-1,2,33,6,-1,1,13,3,-1,1,9,13,-1,76,105,78,-1,105,76,111,-1,55,82,60,-1,55,78,82,-1,8,44,9,-1,44,8,43,-1,52,26,51,-1,52,24,26,-1,130,162,158,-1,130,128,162,-1,91,44,90,-1,44,91,49,-1,49,93,50,-1,49,91,93,-1,186,203,213,-1,181,203,186,-1,161,166,175,-1,161,151,166,-1,39,7,32,-1,7,39,16,-1,69,102,66,-1,102,69,103,-1,67,45,66,-1,45,67,46,-1,59,28,58,-1,32,28,59,-1,123,95,94,-1,121,95,123,-1,99,110,119,-1,99,96,110,-1,127,115,113,-1,127,146,115,-1,70,36,34,-1,36,70,68,-1,37,12,38,-1,37,15,12,-1,86,99,72,-1,99,86,96,-1,101,92,114,-1,92,101,97,-1,149,118,148,-1,149,120,118,-1,95,58,94,-1,95,59,58,-1,122,95,121,-1,95,122,98,-1,19,7,21,-1,7,19,5,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllatinlr_Geo_5_469_normalIndex_2()
		{
			int[] value = {126,161,160,-1,126,131,161,-1,25,45,21,-1,45,25,48,-1,190,169,191,-1,190,170,169,-1,102,129,131,-1,102,103,129,-1,211,188,193,-1,207,188,211,-1,132,89,134,-1,132,90,89,-1,83,140,143,-1,83,79,140,-1,75,111,76,-1,111,75,104,-1,22,3,13,-1,3,22,10,-1,1,27,0,-1,1,23,27,-1,105,135,106,-1,105,133,135,-1,24,55,23,-1,55,24,52,-1,42,20,40,-1,42,17,20,-1,62,85,64,-1,62,84,85,-1,179,221,223,-1,185,221,179,-1,164,196,193,-1,167,196,164,-1,186,158,162,-1,185,158,186,-1,224,184,183,-1,224,225,184,-1,173,134,143,-1,172,134,173,-1,224,218,216,-1,224,223,218,-1,149,166,147,-1,170,166,149,-1,114,145,127,-1,122,145,114,-1,53,16,39,-1,16,53,34,-1,72,103,69,-1,103,72,99,-1,100,128,104,-1,128,100,126,-1,191,203,190,-1,207,203,191,-1,124,94,93,-1,124,123,94,-1,26,5,19,-1,26,10,5,-1,62,27,60,-1,62,30,27,-1,137,154,155,-1,137,136,154,-1,219,201,202,-1,219,217,201,-1,42,89,43,-1,42,83,89,-1,199,176,174,-1,199,202,176,-1,14,40,20,-1,14,41,40,-1,87,64,85,-1,87,63,64,-1,182,156,155,-1,180,156,182,-1,222,177,180,-1,177,222,212,-1,63,88,61,-1,87,88,63,-1,210,197,204,-1,197,210,206,-1,4,35,11,-1,35,4,31,-1,14,11,18,-1,4,11,14,-1,187,204,192,-1,187,189,204,-1,81,47,77,-1,47,81,41,-1,35,56,38,-1,61,56,35,-1,220,204,209,-1,210,204,220,-1,157,180,177,-1,157,156,180,-1,155,139,137,-1,156,139,155,-1,33,63,31,-1,63,33,64,-1,41,79,40,-1,41,81,79,-1,214,202,199,-1,214,219,202,-1,134,83,143,-1,83,134,89,-1,226,217,219,-1,226,225,217,-1,106,136,107,-1,136,106,135,-1,30,0,27,-1,30,2,0,-1,28,10,22,-1,10,28,5,-1,164,123,124,-1,164,163,123,-1,181,190,203,-1,181,175,190,-1,151,147,166,-1,151,144,147,-1,57,69,48,-1,69,57,72,-1,159,127,145,-1,159,146,127,-1,135,152,153,-1,135,133,152,-1,216,200,198,-1,216,218,200,-1,201,172,173,-1,198,172,201,-1,154,183,184,-1,153,183,154,-1,213,185,186,-1,221,185,213,-1,124,167,164,-1,125,167,124,-1,215,223,221,-1,215,218,223,-1,30,64,33,-1,30,62,64,-1,49,9,44,-1,9,49,13,-1,78,52,76,-1,78,55,52,-1,78,106,82,-1,78,105,106,-1,9,0,8,-1,9,1,0,-1,24,10,26,-1,24,3,10,-1,125,90,132,-1,90,125,91,-1,125,93,91,-1,125,124,93,-1,207,213,203,-1,207,211,213,-1,131,151,161,-1,131,129,151,-1,191,159,178,-1,191,169,159,-1,48,66,45,-1,66,48,69,-1,100,66,102,-1,66,100,67,-1,32,5,28,-1,32,7,5,-1,98,59,95,-1,59,98,65,-1,117,118,120,-1,117,115,118,-1,116,115,117,-1,110,115,116,-1,110,113,115,-1,96,113,110,-1,96,101,113,-1,86,101,96,-1,86,97,101,-1,74,97,86,-1,74,80,97,-1,74,73,80,-1,74,70,73,-1,74,68,70,-1,118,146,148,-1,146,118,115,-1,97,71,92,-1,71,97,80,-1,68,57,36,-1,57,68,74,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllcun_Geo_5_475_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,0,6,1,-1,7,8,9,-1,10,11,12,-1,13,14,15,-1,13,16,14,-1,12,17,18,-1,19,20,21,-1,21,22,19,-1,2,23,0,-1,24,25,26,-1,27,28,29,-1,27,30,28,-1,27,31,30,-1,32,33,34,-1,34,35,32,-1,36,37,38,-1,39,40,41,-1,40,42,41,-1,43,44,45,-1,43,46,44,-1,47,48,38,-1,38,37,47,-1,49,50,51,-1,49,52,50,-1,52,53,50,-1,54,55,56,-1,57,56,58,-1,56,59,58,-1,60,61,62,-1,62,40,60,-1,57,54,56,-1,63,64,65,-1,66,67,68,-1,68,69,66,-1,70,71,72,-1,73,74,75,-1,73,76,74,-1,77,78,79,-1,79,80,77,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,87,90,88,-1,47,37,91,-1,92,93,94,-1,92,95,93,-1,67,96,97,-1,50,98,51,-1,99,10,20,-1,100,101,102,-1,103,33,104,-1,105,106,32,-1,107,108,14,-1,109,110,27,-1,111,105,32,-1,111,112,105,-1,28,35,113,-1,28,111,35,-1,114,115,116,-1,117,69,118,-1,69,119,118,-1,97,68,67,-1,120,121,17,-1,120,122,121,-1,123,124,51,-1,125,84,86,-1,125,126,84,-1,127,43,45,-1,128,129,130,-1,131,104,132,-1,106,105,133,-1,133,134,106,-1,134,135,136,-1,134,137,135,-1,138,139,140,-1,9,135,7,-1,141,142,143,-1,143,144,141,-1,145,146,60,-1,82,81,147,-1,81,53,147,-1,81,148,53,-1,58,149,150,-1,151,60,146,-1,51,59,49,-1,152,153,55,-1,154,155,149,-1,155,150,149,-1,55,54,156,-1,91,157,158,-1,92,94,44,-1,44,46,92,-1,159,160,161,-1,159,162,160,-1,163,164,165,-1,161,160,166,-1,95,162,93,-1,95,160,162,-1,91,167,157,-1,167,168,157,-1,138,169,170,-1,138,143,169,-1,156,54,57,-1,56,49,59,-1,59,51,171,-1,57,58,150,-1,83,122,81,-1,146,172,151,-1,3,5,173,-1,5,174,173,-1,2,1,175,-1,9,8,176,-1,9,138,135,-1,138,136,135,-1,139,170,177,-1,139,138,170,-1,178,106,136,-1,106,134,136,-1,134,133,179,-1,179,137,134,-1,104,131,103,-1,180,181,140,-1,140,139,180,-1,182,125,41,-1,182,126,125,-1,85,183,184,-1,19,101,185,-1,124,123,186,-1,66,51,124,-1,117,66,69,-1,33,187,34,-1,28,30,188,-1,189,15,190,-1,189,13,15,-1,191,190,22,-1,22,192,191,-1,193,80,79,-1,79,194,193,-1,195,196,31,-1,195,197,196,-1,35,111,32,-1,198,130,129,-1,199,200,201,-1,199,202,200,-1,27,29,203,-1,148,50,53,-1,148,98,50,-1,204,52,49,-1,205,206,61,-1,69,207,119,-1,208,108,209,-1,108,107,209,-1,123,210,186,-1,123,211,210,-1,212,197,213,-1,46,214,92,-1,182,42,215,-1,182,41,42,-1,49,56,204,-1,65,76,73,-1,73,63,65,-1,19,22,190,-1,190,101,19,-1,193,216,80,-1,216,77,80,-1,65,64,207,-1,210,217,70,-1,210,70,186,-1,70,72,186,-1,171,218,149,-1,218,154,149,-1,59,149,58,-1,59,171,149,-1,151,205,61,-1,61,60,151,-1,88,219,36,-1,36,38,88,-1,62,220,215,-1,215,42,62,-1,37,36,155,-1,155,221,37,-1,66,171,51,-1,145,39,222,-1,222,142,145,-1,53,172,147,-1,53,52,172,-1,184,177,170,-1,170,85,184,-1,62,42,40,-1,35,34,223,-1,223,114,35,-1,159,224,163,-1,163,162,159,-1,225,114,223,-1,225,115,114,-1,178,140,128,-1,128,132,178,-1,28,113,29,-1,113,202,29,-1,202,113,200,-1,113,226,200,-1,79,78,227,-1,228,201,229,-1,228,199,201,-1,27,203,109,-1,230,1,6,-1,230,231,1,-1,22,21,192,-1,23,2,232,-1,232,176,23,-1,102,15,14,-1,12,11,17,-1,14,16,107,-1,190,191,189,-1,233,191,234,-1,189,191,233,-1,235,236,237,-1,238,236,235,-1,239,240,241,-1,242,240,239,-1,243,173,7,-1,243,244,173,-1,174,176,8,-1,174,23,176,-1,2,245,232,-1,175,245,2,-1,246,247,248,-1,246,121,247,-1,249,166,168,-1,166,249,250,-1,251,252,253,-1,251,254,252,-1,255,256,257,-1,255,258,256,-1,259,213,260,-1,259,261,213,-1,262,263,212,-1,262,264,263,-1,265,266,267,-1,268,266,265,-1,185,269,99,-1,270,269,185,-1,21,271,192,-1,21,272,271,-1,230,273,231,-1,274,273,230,-1,203,228,109,-1,203,199,228,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllcun_Geo_5_475_coordIndex_2()
		{
			int[] value = {25,201,26,-1,25,229,201,-1,275,226,276,-1,200,226,275,-1,24,275,276,-1,24,26,275,-1,132,106,178,-1,104,106,132,-1,224,115,225,-1,224,159,115,-1,165,181,93,-1,165,129,181,-1,162,165,93,-1,162,163,165,-1,169,85,170,-1,85,169,86,-1,125,39,41,-1,222,39,125,-1,277,45,44,-1,278,45,277,-1,146,142,82,-1,142,146,145,-1,150,156,57,-1,150,219,156,-1,219,90,156,-1,90,219,88,-1,279,215,220,-1,215,279,280,-1,204,205,151,-1,204,153,205,-1,221,154,218,-1,221,155,154,-1,65,69,68,-1,69,65,207,-1,124,72,96,-1,124,186,72,-1,281,70,217,-1,281,71,70,-1,282,283,284,-1,283,282,285,-1,286,11,10,-1,11,286,287,-1,15,101,190,-1,15,102,101,-1,108,288,289,-1,108,208,288,-1,193,110,216,-1,195,110,193,-1,63,258,64,-1,256,258,63,-1,27,195,31,-1,27,110,195,-1,290,291,278,-1,290,292,291,-1,290,183,292,-1,280,182,215,-1,182,280,293,-1,292,294,291,-1,292,295,294,-1,296,127,297,-1,127,296,43,-1,262,75,281,-1,75,262,261,-1,98,123,51,-1,98,211,123,-1,264,281,217,-1,281,264,262,-1,286,267,285,-1,267,286,269,-1,239,189,233,-1,239,13,189,-1,298,107,299,-1,107,298,209,-1,112,28,188,-1,112,111,28,-1,300,263,268,-1,300,196,263,-1,210,301,284,-1,210,211,301,-1,116,251,276,-1,116,250,251,-1,252,64,258,-1,119,64,252,-1,119,207,64,-1,181,94,93,-1,94,181,180,-1,172,204,151,-1,172,52,204,-1,148,211,98,-1,301,211,148,-1,120,282,302,-1,287,282,120,-1,78,229,25,-1,78,77,229,-1,29,199,203,-1,29,202,199,-1,300,31,196,-1,288,31,300,-1,195,194,197,-1,194,195,193,-1,257,194,79,-1,257,260,194,-1,75,259,73,-1,261,259,75,-1,289,300,303,-1,289,288,300,-1,273,18,246,-1,18,273,272,-1,271,236,234,-1,271,274,236,-1,233,242,239,-1,233,238,242,-1,240,299,241,-1,299,240,179,-1,133,112,298,-1,133,105,112,-1,113,114,226,-1,114,113,35,-1,276,253,24,-1,253,276,251,-1,249,118,254,-1,304,118,249,-1,218,66,117,-1,171,66,218,-1,284,302,282,-1,301,302,284,-1,303,102,289,-1,100,102,303,-1,101,270,185,-1,101,100,270,-1,126,293,295,-1,126,182,293,-1,87,295,293,-1,87,294,295,-1,127,278,291,-1,127,45,278,-1,277,94,180,-1,94,277,44,-1,7,137,243,-1,137,7,135,-1,305,33,103,-1,305,187,33,-1,164,129,165,-1,164,198,129,-1,140,136,138,-1,140,178,136,-1,9,143,138,-1,143,9,144,-1,0,174,5,-1,174,0,23,-1,244,3,173,-1,244,235,3,-1,274,237,236,-1,230,237,274,-1,83,245,247,-1,83,141,245,-1,246,231,273,-1,248,231,246,-1,221,91,37,-1,221,167,91,-1,155,219,150,-1,155,36,219,-1,62,206,220,-1,62,61,206,-1,169,142,222,-1,143,142,169,-1,168,304,249,-1,167,304,168,-1,161,250,116,-1,250,161,166,-1,225,305,224,-1,225,187,305,-1,116,159,161,-1,115,159,116,-1,305,163,224,-1,164,163,305,-1,157,95,158,-1,160,95,157,-1,60,39,145,-1,60,40,39,-1,152,220,206,-1,220,152,279,-1,214,91,158,-1,214,47,91,-1,218,167,221,-1,218,304,167,-1,153,206,205,-1,153,152,206,-1,82,141,83,-1,82,142,141,-1,247,122,83,-1,247,121,122,-1,248,1,231,-1,248,175,1,-1,230,4,237,-1,6,4,230,-1,244,238,235,-1,244,242,238,-1,141,232,245,-1,141,144,232,-1,131,128,130,-1,131,132,128,-1,177,180,139,-1,177,277,180,-1,130,103,131,-1,198,103,130,-1,198,305,103,-1,305,198,164,-1,243,179,240,-1,137,179,243,-1,294,89,297,-1,294,87,89,-1,184,290,278,-1,184,183,290,-1,48,297,89,-1,48,296,297,-1,81,301,148,-1,81,302,301,-1,17,287,120,-1,287,17,11,-1,68,76,65,-1,76,68,97,-1,117,304,218,-1,118,304,117,-1,254,119,252,-1,118,119,254,-1,26,200,275,-1,201,200,26,-1,223,187,225,-1,223,34,187,-1,77,228,229,-1,77,216,228,-1,109,216,110,-1,109,228,216,-1,30,209,188,-1,30,208,209,-1,133,299,179,-1,298,299,133,-1,272,12,18,-1,12,272,21,-1,260,197,194,-1,213,197,260,-1,283,267,266,-1,267,283,285,-1,63,259,256,-1,259,63,73,-1,122,302,81,-1,120,302,122,-1,265,100,303,-1,100,265,270,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getllcun_Geo_5_475_coordIndex_3()
		{
			int[] value = {24,255,227,-1,255,24,253,-1,276,114,116,-1,226,114,276,-1,217,266,264,-1,266,217,283,-1,188,298,112,-1,209,298,188,-1,299,16,241,-1,16,299,107,-1,234,192,271,-1,234,191,192,-1,10,269,286,-1,269,10,99,-1,303,268,265,-1,300,268,303,-1,212,196,197,-1,263,196,212,-1,97,74,76,-1,97,96,74,-1,297,291,294,-1,291,297,127,-1,84,295,292,-1,84,126,295,-1,92,158,95,-1,214,158,92,-1,89,38,48,-1,89,88,38,-1,90,293,280,-1,293,90,87,-1,85,292,183,-1,292,85,84,-1,227,257,79,-1,227,255,257,-1,288,30,31,-1,288,208,30,-1,14,289,102,-1,108,289,14,-1,20,12,21,-1,20,10,12,-1,287,285,282,-1,287,286,285,-1,210,283,217,-1,210,284,283,-1,281,74,71,-1,75,74,281,-1,72,74,96,-1,72,71,74,-1,96,66,124,-1,66,96,67,-1,55,204,56,-1,204,55,153,-1,156,280,279,-1,280,156,90,-1,279,55,156,-1,279,152,55,-1,147,146,82,-1,147,172,146,-1,43,214,46,-1,214,43,296,-1,47,296,48,-1,47,214,296,-1,184,277,177,-1,278,277,184,-1,222,86,169,-1,86,222,125,-1,129,140,181,-1,129,128,140,-1,104,32,106,-1,104,33,32,-1,227,25,24,-1,25,227,78,-1,176,144,9,-1,176,232,144,-1,274,272,273,-1,271,272,274,-1,99,19,185,-1,99,20,19,-1,267,270,265,-1,267,269,270,-1,268,264,266,-1,263,264,268,-1,212,261,262,-1,213,261,212,-1,256,260,257,-1,256,259,260,-1,258,253,252,-1,253,258,255,-1,250,254,251,-1,250,249,254,-1,168,160,157,-1,160,168,166,-1,17,246,18,-1,17,121,246,-1,175,247,245,-1,175,248,247,-1,7,174,8,-1,7,173,174,-1,244,240,242,-1,240,244,243,-1,13,241,16,-1,239,241,13,-1,6,5,4,-1,5,6,0,-1,237,3,235,-1,237,4,3,-1,238,234,236,-1,233,234,238,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllcun_Geo_5_475_normalIndex_1()
		{
			int[] value = {99,39,47,-1,184,135,136,-1,99,90,39,-1,261,150,155,-1,127,43,54,-1,271,281,239,-1,271,289,281,-1,54,20,22,-1,153,128,95,-1,95,146,153,-1,47,118,99,-1,202,223,216,-1,237,253,180,-1,237,295,253,-1,237,218,295,-1,260,257,280,-1,280,273,260,-1,97,138,107,-1,74,82,58,-1,82,62,58,-1,109,217,120,-1,109,137,217,-1,125,100,107,-1,107,138,125,-1,64,18,17,-1,64,117,18,-1,117,36,18,-1,50,52,85,-1,32,85,72,-1,85,91,72,-1,108,49,37,-1,37,82,108,-1,32,50,85,-1,173,185,122,-1,25,30,66,-1,66,105,25,-1,65,111,3,-1,147,112,159,-1,147,104,112,-1,302,247,242,-1,242,275,302,-1,16,34,13,-1,94,113,76,-1,98,61,77,-1,98,63,61,-1,125,138,145,-1,167,195,235,-1,167,210,195,-1,30,4,55,-1,18,9,17,-1,152,127,128,-1,164,183,204,-1,258,257,250,-1,277,248,260,-1,286,298,281,-1,230,241,237,-1,270,277,260,-1,270,283,277,-1,253,273,269,-1,253,270,273,-1,305,262,229,-1,75,105,142,-1,105,158,142,-1,55,66,30,-1,10,29,20,-1,10,15,29,-1,28,5,17,-1,60,94,76,-1,60,93,94,-1,79,109,120,-1,181,208,276,-1,272,250,233,-1,248,277,279,-1,279,267,248,-1,267,274,256,-1,267,300,274,-1,154,238,163,-1,155,274,261,-1,1,41,71,-1,71,67,1,-1,89,87,108,-1,34,16,46,-1,16,36,46,-1,16,11,36,-1,72,57,31,-1,129,108,87,-1,17,91,64,-1,35,73,52,-1,114,103,57,-1,103,31,57,-1,52,50,24,-1,145,201,170,-1,167,235,217,-1,217,137,167,-1,245,232,227,-1,245,249,232,-1,266,254,221,-1,227,232,219,-1,210,249,195,-1,210,232,249,-1,145,156,201,-1,156,215,201,-1,154,101,149,-1,154,71,101,-1,24,50,32,-1,85,64,91,-1,91,17,48,-1,32,72,31,-1,13,15,16,-1,87,121,129,-1,184,136,231,-1,136,144,231,-1,47,39,7,-1,155,150,116,-1,155,154,274,-1,154,256,274,-1,238,149,225,-1,238,154,149,-1,209,248,256,-1,248,267,256,-1,267,279,294,-1,294,300,267,-1,250,272,258,-1,251,165,163,-1,163,238,251,-1,88,60,58,-1,88,93,60,-1,113,83,123,-1,153,183,162,-1,5,28,0,-1,25,17,5,-1,75,25,105,-1,257,246,280,-1,253,295,284,-1,234,239,197,-1,234,271,239,-1,178,197,146,-1,146,134,178,-1,240,275,242,-1,242,188,240,-1,211,192,218,-1,211,177,192,-1,273,270,260,-1,268,276,208,-1,226,259,293,-1,226,222,259,-1,237,180,171,-1,11,18,36,-1,11,9,18,-1,133,117,64,-1,69,26,49,-1,105,151,158,-1,303,298,290,-1,298,286,290,-1,28,44,0,-1,28,12,44,-1,187,177,186,-1,137,131,167,-1,88,62,53,-1,88,58,62,-1,64,85,133,-1,122,104,147,-1,147,173,122,-1,153,146,197,-1,197,183,153,-1,240,282,275,-1,282,302,275,-1,122,185,151,-1,44,140,65,-1,44,65,0,-1,65,3,0,-1,48,102,57,-1,102,114,57,-1,91,57,72,-1,91,48,57,-1,129,69,49,-1,49,108,129,-1,61,27,97,-1,97,107,61,-1,37,2,53,-1,53,62,37,-1,138,97,103,-1,103,139,138,-1,25,48,17,-1,89,74,70,-1,70,41,89,-1,36,121,46,-1,36,117,121,-1,123,225,149,-1,149,113,123,-1,37,62,82,-1,273,280,301,-1,301,305,273,-1,245,278,266,-1,266,249,245,-1,297,305,301,-1,297,262,305,-1,209,163,181,-1,181,233,209,-1,253,269,180,-1,269,222,180,-1,222,269,259,-1,269,288,259,-1,242,247,252,-1,285,293,304,-1,285,226,293,-1,237,171,230,-1,110,39,90,-1,110,51,39,-1,146,95,134,-1,118,47,45,-1,45,116,118,-1,204,239,281,-1,54,43,20,-1,281,289,286,-1,197,178,234,-1,212,178,157,-1,234,178,212,-1,194,148,141,-1,203,148,194,-1,264,296,292,-1,265,296,264,-1,299,231,261,-1,299,263,231,-1,144,116,150,-1,144,118,116,-1,47,23,45,-1,7,23,47,-1,21,33,14,-1,21,29,33,-1,199,219,215,-1,219,199,214,-1,205,200,213,-1,205,198,200,-1,244,206,224,-1,244,228,206,-1,174,186,189,-1,174,175,186,-1,182,191,187,-1,182,190,191,-1,169,176,168,-1,179,176,169,-1,162,160,152,-1,166,160,162,-1,95,124,134,-1,95,68,124,-1,110,59,51,-1,115,59,110,-1,171,285,230,-1,171,226,285,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllcun_Geo_5_475_normalIndex_2()
		{
			int[] value = {223,293,216,-1,223,304,293,-1,196,288,207,-1,259,288,196,-1,202,196,207,-1,202,216,196,-1,233,248,209,-1,250,248,233,-1,278,262,297,-1,278,245,262,-1,221,165,195,-1,221,208,165,-1,249,221,195,-1,249,266,221,-1,101,113,149,-1,113,101,76,-1,60,74,58,-1,70,74,60,-1,220,120,217,-1,119,120,220,-1,87,41,34,-1,41,87,89,-1,31,24,32,-1,31,27,24,-1,27,63,24,-1,63,27,61,-1,19,53,2,-1,53,19,56,-1,133,69,129,-1,133,73,69,-1,139,114,102,-1,139,103,114,-1,122,105,66,-1,105,122,151,-1,5,3,4,-1,5,0,3,-1,161,65,140,-1,161,111,65,-1,38,132,40,-1,132,38,126,-1,130,43,127,-1,43,130,42,-1,239,183,197,-1,239,204,183,-1,298,255,236,-1,298,303,255,-1,240,241,282,-1,211,241,240,-1,173,228,185,-1,206,228,173,-1,237,211,218,-1,237,241,211,-1,81,78,119,-1,81,86,78,-1,81,83,86,-1,56,88,53,-1,88,56,96,-1,86,84,78,-1,86,92,84,-1,106,79,80,-1,79,106,109,-1,182,159,161,-1,159,182,175,-1,9,28,17,-1,9,12,28,-1,190,161,140,-1,161,190,182,-1,130,168,126,-1,168,130,160,-1,264,234,212,-1,264,271,234,-1,287,286,291,-1,286,287,290,-1,283,253,284,-1,283,270,253,-1,193,191,179,-1,193,192,191,-1,44,8,40,-1,44,12,8,-1,229,205,207,-1,229,214,205,-1,200,185,228,-1,158,185,200,-1,158,151,185,-1,165,235,195,-1,235,165,251,-1,121,133,129,-1,121,117,133,-1,11,12,9,-1,8,12,11,-1,10,38,6,-1,42,38,10,-1,247,304,223,-1,247,302,304,-1,180,226,171,-1,180,222,226,-1,193,218,192,-1,255,218,193,-1,211,188,177,-1,188,211,240,-1,224,188,242,-1,224,189,188,-1,159,174,147,-1,175,174,159,-1,236,193,172,-1,236,255,193,-1,59,22,21,-1,22,59,68,-1,124,148,157,-1,124,115,148,-1,212,265,264,-1,212,203,265,-1,296,291,292,-1,291,296,294,-1,279,283,287,-1,279,277,283,-1,269,305,288,-1,305,269,273,-1,207,213,202,-1,213,207,205,-1,199,142,198,-1,143,142,199,-1,102,25,75,-1,48,25,102,-1,40,6,38,-1,8,6,40,-1,172,204,236,-1,164,204,172,-1,183,166,162,-1,183,164,166,-1,93,96,92,-1,93,88,96,-1,98,92,96,-1,98,84,92,-1,79,119,78,-1,79,120,119,-1,220,235,251,-1,235,220,217,-1,261,300,299,-1,300,261,274,-1,243,257,258,-1,243,246,257,-1,254,208,221,-1,254,268,208,-1,163,256,154,-1,163,209,256,-1,155,71,154,-1,71,155,67,-1,99,144,136,-1,144,99,118,-1,263,184,231,-1,263,194,184,-1,115,141,148,-1,110,141,115,-1,13,23,33,-1,13,1,23,-1,21,51,59,-1,14,51,21,-1,139,145,138,-1,139,156,145,-1,103,27,31,-1,103,97,27,-1,37,26,2,-1,37,49,26,-1,101,41,70,-1,71,41,101,-1,215,143,199,-1,156,143,215,-1,227,214,229,-1,214,227,219,-1,297,243,278,-1,297,246,243,-1,229,245,227,-1,262,245,229,-1,243,266,278,-1,254,266,243,-1,201,210,170,-1,232,210,201,-1,108,74,89,-1,108,82,74,-1,35,2,26,-1,2,35,19,-1,131,145,170,-1,131,125,145,-1,102,156,139,-1,102,143,156,-1,73,26,69,-1,73,35,26,-1,34,1,13,-1,34,41,1,-1,33,15,13,-1,33,29,15,-1,14,39,51,-1,14,7,39,-1,110,135,141,-1,90,135,110,-1,263,203,194,-1,263,265,203,-1,1,45,23,-1,1,67,45,-1,272,181,276,-1,272,233,181,-1,225,251,238,-1,225,220,251,-1,276,258,272,-1,268,258,276,-1,268,243,258,-1,243,268,254,-1,299,294,296,-1,300,294,299,-1,84,77,80,-1,84,98,77,-1,123,81,119,-1,123,83,81,-1,100,80,77,-1,100,106,80,-1,16,8,11,-1,16,6,8,-1,20,42,10,-1,42,20,43,-1,66,104,122,-1,104,66,55,-1,75,143,102,-1,142,143,75,-1,198,158,200,-1,142,158,198,-1,216,259,196,-1,293,259,216,-1,301,246,297,-1,301,280,246,-1,302,285,304,-1,302,282,285,-1,230,282,241,-1,230,285,282,-1,295,290,284,-1,295,303,290,-1,279,291,294,-1,287,291,279,-1,68,54,22,-1,54,68,95,-1,189,177,188,-1,186,177,189,-1,132,168,176,-1,168,132,126,-1,173,174,206,-1,174,173,147,-1,15,6,16,-1,10,6,15,-1,169,164,172,-1,164,169,166,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getllcun_Geo_5_475_normalIndex_3()
		{
			int[] value = {202,244,252,-1,244,202,213,-1,207,305,229,-1,288,305,207,-1,140,176,190,-1,176,140,132,-1,284,287,283,-1,290,287,284,-1,291,289,292,-1,289,291,286,-1,157,134,124,-1,157,178,134,-1,127,160,130,-1,160,127,152,-1,172,179,169,-1,193,179,172,-1,187,192,177,-1,191,192,187,-1,55,112,104,-1,55,4,112,-1,80,78,84,-1,78,80,79,-1,94,92,86,-1,94,93,92,-1,167,170,210,-1,131,170,167,-1,77,107,100,-1,77,61,107,-1,63,96,56,-1,96,63,98,-1,113,86,83,-1,86,113,94,-1,252,224,242,-1,252,244,224,-1,255,295,218,-1,255,303,295,-1,281,236,204,-1,298,236,281,-1,128,54,95,-1,128,127,54,-1,42,126,38,-1,42,130,126,-1,44,132,140,-1,44,40,132,-1,161,112,111,-1,159,112,161,-1,3,112,4,-1,3,111,112,-1,4,25,5,-1,25,4,30,-1,52,133,85,-1,133,52,73,-1,24,56,19,-1,56,24,63,-1,19,52,24,-1,19,35,52,-1,46,87,34,-1,46,121,87,-1,109,131,137,-1,131,109,106,-1,125,106,100,-1,125,131,106,-1,123,220,225,-1,119,220,123,-1,70,76,101,-1,76,70,60,-1,208,163,165,-1,208,181,163,-1,250,260,248,-1,250,257,260,-1,252,223,202,-1,223,252,247,-1,116,67,155,-1,116,45,67,-1,115,68,59,-1,124,68,115,-1,152,153,162,-1,152,128,153,-1,168,166,169,-1,168,160,166,-1,179,190,176,-1,191,190,179,-1,187,175,182,-1,186,175,187,-1,206,189,224,-1,206,174,189,-1,228,213,200,-1,213,228,244,-1,214,198,205,-1,214,199,198,-1,215,232,201,-1,232,215,219,-1,20,21,22,-1,20,29,21,-1,7,33,23,-1,7,14,33,-1,261,144,150,-1,261,231,144,-1,263,296,265,-1,296,263,299,-1,271,292,289,-1,264,292,271,-1,90,136,135,-1,136,90,99,-1,141,184,194,-1,141,135,184,-1,203,157,148,-1,212,157,203,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllunate_Geo_5_481_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,1,-1,8,9,10,-1,11,12,0,-1,13,14,15,-1,16,17,18,-1,19,20,21,-1,22,23,24,-1,25,26,27,-1,27,28,25,-1,29,30,31,-1,30,32,31,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,40,42,41,-1,9,43,10,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,32,53,54,-1,54,31,32,-1,9,55,56,-1,0,12,6,-1,0,2,57,-1,58,59,60,-1,61,20,62,-1,63,64,0,-1,65,44,66,-1,29,67,68,-1,69,70,71,-1,72,20,73,-1,20,61,73,-1,74,75,76,-1,77,78,58,-1,79,28,30,-1,80,81,82,-1,82,83,80,-1,84,58,85,-1,86,58,87,-1,58,88,89,-1,90,58,91,-1,92,58,78,-1,93,58,94,-1,95,96,97,-1,97,53,95,-1,61,98,73,-1,61,99,98,-1,100,101,102,-1,103,79,30,-1,104,105,106,-1,106,105,107,-1,105,108,107,-1,109,64,110,-1,64,111,110,-1,80,18,112,-1,80,83,18,-1,75,74,17,-1,63,113,114,-1,63,115,113,-1,116,65,66,-1,117,118,119,-1,6,1,0,-1,120,121,122,-1,120,123,121,-1,124,125,26,-1,125,27,26,-1,126,96,95,-1,95,127,126,-1,128,129,130,-1,128,131,129,-1,132,133,134,-1,132,135,133,-1,13,136,14,-1,137,43,138,-1,139,140,20,-1,141,62,19,-1,142,36,143,-1,142,144,36,-1,100,102,122,-1,145,33,146,-1,147,30,29,-1,115,63,0,-1,148,149,3,-1,10,0,8,-1,150,151,44,-1,44,152,150,-1,153,37,154,-1,24,155,22,-1,129,13,15,-1,129,131,13,-1,156,157,137,-1,137,158,156,-1,20,140,21,-1,127,27,125,-1,127,95,27,-1,159,34,160,-1,159,161,34,-1,162,122,141,-1,162,120,122,-1,86,128,163,-1,86,87,128,-1,94,58,164,-1,119,12,165,-1,166,167,168,-1,66,44,151,-1,169,65,116,-1,169,170,65,-1,171,172,173,-1,17,174,175,-1,18,104,112,-1,176,177,110,-1,110,111,176,-1,105,104,178,-1,179,180,181,-1,181,182,179,-1,183,166,184,-1,76,41,74,-1,166,185,186,-1,20,187,139,-1,0,64,11,-1,58,93,77,-1,91,58,92,-1,88,58,90,-1,87,58,60,-1,85,58,86,-1,164,58,84,-1,89,59,58,-1,188,189,190,-1,189,173,190,-1,166,186,167,-1,191,35,182,-1,35,179,182,-1,192,193,23,-1,183,40,169,-1,194,195,196,-1,194,175,195,-1,71,70,197,-1,62,20,19,-1,102,141,122,-1,106,112,104,-1,109,198,64,-1,199,185,66,-1,5,200,31,-1,31,54,5,-1,56,55,201,-1,54,97,201,-1,54,53,97,-1,138,202,137,-1,138,203,202,-1,134,136,132,-1,134,14,136,-1,203,130,202,-1,130,129,202,-1,113,115,157,-1,157,156,113,-1,204,205,206,-1,68,147,29,-1,76,39,41,-1,76,194,39,-1,17,175,75,-1,207,208,155,-1,209,210,186,-1,186,117,209,-1,23,100,24,-1,74,211,104,-1,205,212,213,-1,212,214,213,-1,215,174,16,-1,174,17,16,-1,141,19,52,-1,82,81,177,-1,177,176,82,-1,173,189,171,-1,216,12,11,-1,148,55,9,-1,0,57,8,-1,200,5,4,-1,1,149,2,-1,1,7,149,-1,55,3,5,-1,3,55,148,-1,171,82,176,-1,171,189,82,-1,217,81,218,-1,177,81,217,-1,219,220,221,-1,222,220,219,-1,209,119,165,-1,209,117,119,-1,223,133,158,-1,223,134,133,-1,224,156,225,-1,156,224,113,-1,172,176,111,-1,176,172,171,-1,188,18,83,-1,16,18,188,-1,214,174,215,-1,174,214,212,-1,50,140,226,-1,50,21,140,-1,206,226,140,-1,206,227,226,-1,211,228,104,-1,229,228,211,-1,167,230,168,-1,167,231,230,-1,118,186,185,-1,117,186,118,-1,191,33,35,-1,33,191,146,-1,232,37,36,-1,37,232,154,-1,155,233,22,-1,233,155,208,-1,37,234,38,-1,153,234,37,-1,36,235,143,-1,235,36,38,-1,236,237,238,-1,236,239,237,-1,240,241,242,-1,241,240,243,-1,185,244,118,-1,185,199,244,-1,17,104,18,-1,104,17,74,-1,194,75,175,-1,75,194,76,-1,240,245,236,-1,240,246,245,-1,247,213,248,-1,227,213,247,-1,225,249,224,-1,250,249,225,-1,115,10,157,-1,115,0,10,-1,129,223,202,-1,129,15,223,-1,136,251,132,-1,136,252,251,-1,253,201,97,-1,201,253,56,-1,56,43,9,-1,56,138,43,-1,201,5,54,-1,201,55,5,-1,254,118,244,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllunate_Geo_5_481_coordIndex_2()
		{
			int[] value = {254,119,118,-1,110,217,109,-1,110,177,217,-1,112,107,80,-1,107,112,106,-1,228,178,104,-1,228,230,178,-1,221,231,210,-1,255,231,221,-1,102,99,141,-1,101,99,102,-1,256,215,190,-1,214,215,256,-1,173,257,258,-1,173,172,257,-1,196,48,246,-1,195,48,196,-1,241,45,170,-1,241,243,45,-1,197,259,260,-1,197,70,259,-1,142,261,262,-1,143,261,142,-1,245,263,264,-1,47,263,245,-1,98,142,73,-1,98,144,142,-1,24,146,155,-1,146,24,145,-1,123,160,121,-1,160,123,159,-1,183,42,40,-1,184,42,183,-1,170,40,241,-1,169,40,170,-1,259,237,265,-1,266,237,259,-1,182,38,234,-1,181,38,182,-1,193,100,23,-1,101,100,193,-1,153,233,208,-1,154,233,153,-1,25,179,35,-1,179,25,267,-1,108,221,220,-1,221,108,255,-1,249,256,258,-1,249,248,256,-1,132,268,135,-1,268,132,251,-1,59,269,13,-1,269,59,89,-1,124,164,125,-1,164,124,94,-1,47,187,263,-1,47,49,187,-1,204,140,139,-1,204,206,140,-1,93,124,161,-1,124,93,94,-1,267,180,179,-1,270,180,267,-1,116,183,169,-1,116,166,183,-1,70,266,259,-1,70,152,266,-1,151,68,67,-1,150,68,151,-1,166,66,185,-1,66,166,116,-1,103,267,79,-1,267,103,270,-1,198,217,222,-1,217,198,109,-1,188,215,16,-1,188,190,215,-1,248,214,256,-1,248,213,214,-1,39,196,242,-1,196,39,194,-1,184,168,229,-1,184,166,168,-1,254,7,6,-1,254,4,7,-1,271,90,272,-1,88,90,271,-1,91,120,162,-1,91,92,120,-1,159,93,161,-1,77,93,159,-1,164,127,125,-1,164,84,127,-1,126,86,163,-1,85,86,126,-1,87,131,128,-1,87,60,131,-1,52,162,141,-1,272,162,52,-1,252,271,51,-1,269,271,252,-1,268,227,247,-1,227,268,226,-1,202,158,137,-1,223,158,202,-1,100,121,24,-1,121,100,122,-1,180,260,181,-1,260,180,197,-1,46,152,44,-1,46,266,152,-1,69,270,103,-1,71,270,69,-1,273,203,253,-1,273,130,203,-1,95,32,27,-1,95,53,32,-1,273,97,96,-1,97,273,253,-1,103,147,69,-1,30,147,103,-1,98,101,193,-1,98,99,101,-1,192,36,144,-1,192,232,36,-1,239,262,261,-1,264,262,239,-1,263,20,72,-1,263,187,20,-1,157,43,137,-1,157,10,43,-1,133,250,225,-1,135,250,133,-1,251,226,268,-1,251,50,226,-1,273,128,130,-1,273,163,128,-1,96,163,273,-1,163,96,126,-1,51,272,52,-1,271,272,51,-1,127,85,126,-1,84,85,127,-1,92,123,120,-1,92,78,123,-1,272,91,162,-1,90,91,272,-1,269,88,271,-1,89,88,269,-1,4,244,200,-1,244,4,254,-1,195,174,212,-1,195,175,174,-1,258,224,249,-1,257,224,258,-1,198,11,64,-1,198,216,11,-1,216,222,219,-1,198,222,216,-1,105,255,108,-1,255,105,178,-1,33,160,34,-1,160,33,145,-1,199,151,67,-1,151,199,66,-1,150,70,68,-1,152,70,150,-1,141,61,62,-1,141,99,61,-1,270,197,180,-1,197,270,71,-1,161,26,34,-1,26,161,124,-1,139,49,204,-1,187,49,139,-1,236,264,239,-1,236,245,264,-1,13,252,136,-1,252,13,269,-1,247,135,268,-1,250,135,247,-1,107,220,218,-1,108,220,107,-1,28,267,25,-1,267,28,79,-1,191,234,207,-1,182,234,191,-1,181,235,38,-1,235,181,260,-1,266,238,237,-1,238,266,46,-1,229,42,184,-1,229,211,42,-1,78,159,123,-1,159,78,77,-1,121,145,24,-1,145,121,160,-1,193,144,98,-1,144,193,192,-1,264,72,262,-1,264,263,72,-1,42,74,41,-1,42,211,74,-1,73,262,72,-1,142,262,73,-1,260,265,235,-1,260,259,265,-1,69,68,70,-1,147,68,69,-1,232,23,22,-1,23,232,192,-1,170,44,65,-1,170,45,44,-1,242,246,240,-1,196,246,242,-1,195,205,48,-1,212,205,195,-1,114,64,63,-1,114,111,64,-1,258,190,173,-1,256,190,258,-1,60,13,131,-1,60,59,13,-1,12,219,165,-1,12,216,219,-1,255,230,231,-1,178,230,255,-1,80,218,81,-1,218,80,107,-1,119,6,12,-1,6,119,254,-1,253,138,56,-1,253,203,138,-1,252,50,251,-1,252,51,50,-1,248,250,247,-1,248,249,250,-1,246,47,245,-1,246,48,47,-1,46,243,238,-1,46,45,243,-1,204,48,205,-1,49,48,204,-1,241,39,242,-1,39,241,40,-1,27,30,28,-1,27,32,30,-1,31,67,29,-1,67,31,200,-1,238,240,236,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getllunate_Geo_5_481_coordIndex_3()
		{
			int[] value = {243,240,238,-1,237,261,265,-1,237,239,261,-1,143,265,261,-1,265,143,235,-1,234,208,207,-1,208,234,153,-1,22,154,232,-1,154,22,233,-1,146,207,155,-1,146,191,207,-1,25,34,26,-1,35,34,25,-1,200,199,67,-1,244,199,200,-1,231,186,210,-1,186,231,167,-1,228,168,230,-1,168,228,229,-1,21,52,19,-1,50,52,21,-1,257,111,114,-1,111,257,172,-1,227,205,213,-1,227,206,205,-1,83,189,188,-1,83,82,189,-1,114,224,257,-1,114,113,224,-1,158,225,156,-1,158,133,225,-1,134,15,14,-1,15,134,223,-1,221,165,219,-1,221,209,165,-1,221,210,209,-1,222,218,220,-1,217,218,222,-1,148,2,149,-1,2,148,57,-1,9,57,148,-1,8,57,9,-1,3,7,4,-1,149,7,3,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getllunate_Geo_5_481_normalIndex_1()
		{
			int[] value = {271,257,230,-1,234,211,207,-1,253,246,257,-1,269,268,272,-1,264,265,271,-1,167,170,187,-1,64,26,71,-1,63,45,96,-1,1,0,48,-1,175,193,214,-1,214,153,175,-1,88,112,172,-1,112,209,172,-1,109,133,165,-1,51,89,124,-1,5,28,10,-1,28,56,10,-1,268,273,272,-1,82,94,106,-1,27,20,30,-1,126,134,98,-1,209,232,216,-1,216,172,209,-1,268,247,255,-1,271,265,253,-1,271,230,242,-1,140,146,151,-1,39,45,36,-1,263,267,271,-1,72,82,69,-1,88,86,66,-1,107,114,138,-1,43,45,61,-1,45,39,61,-1,6,9,2,-1,120,111,140,-1,103,153,112,-1,192,223,190,-1,190,121,192,-1,183,140,164,-1,189,140,174,-1,140,155,132,-1,143,140,115,-1,105,140,111,-1,144,140,178,-1,221,233,237,-1,237,232,221,-1,39,33,61,-1,39,29,33,-1,4,18,3,-1,104,103,112,-1,49,173,177,-1,177,173,224,-1,173,218,224,-1,254,267,235,-1,267,217,235,-1,192,71,123,-1,192,121,71,-1,9,6,26,-1,263,236,228,-1,263,261,236,-1,67,72,69,-1,204,156,222,-1,253,257,271,-1,83,73,44,-1,83,91,73,-1,179,201,193,-1,201,214,193,-1,206,233,221,-1,221,195,206,-1,205,213,249,-1,205,184,213,-1,180,197,191,-1,180,186,197,-1,167,162,170,-1,248,273,270,-1,46,85,45,-1,16,36,63,-1,55,51,50,-1,55,41,51,-1,4,3,44,-1,78,109,97,-1,59,112,88,-1,261,263,271,-1,240,239,234,-1,272,271,269,-1,70,58,82,-1,82,92,70,-1,113,89,65,-1,48,53,1,-1,213,167,187,-1,213,184,167,-1,225,250,248,-1,248,212,225,-1,45,85,96,-1,195,214,201,-1,195,221,214,-1,108,133,93,-1,108,148,133,-1,80,44,16,-1,80,83,44,-1,189,205,219,-1,189,174,205,-1,178,140,188,-1,222,265,260,-1,79,129,101,-1,69,82,58,-1,62,72,67,-1,62,76,72,-1,199,194,171,-1,26,35,14,-1,71,49,123,-1,198,231,235,-1,235,217,198,-1,173,49,163,-1,160,149,182,-1,182,200,160,-1,60,79,75,-1,2,10,6,-1,79,99,128,-1,45,31,46,-1,271,267,264,-1,140,144,120,-1,115,140,105,-1,155,140,143,-1,174,140,151,-1,164,140,189,-1,188,140,183,-1,132,146,140,-1,110,145,122,-1,145,171,122,-1,79,128,129,-1,181,165,200,-1,165,160,200,-1,24,19,0,-1,60,28,62,-1,8,13,12,-1,8,14,13,-1,138,114,147,-1,36,45,63,-1,3,16,44,-1,177,123,49,-1,254,259,267,-1,87,99,69,-1,207,135,172,-1,172,216,207,-1,255,247,229,-1,216,237,229,-1,216,232,237,-1,270,238,248,-1,270,266,238,-1,191,162,180,-1,191,170,162,-1,266,249,238,-1,249,213,238,-1,236,261,250,-1,250,225,236,-1,47,57,84,-1,66,59,88,-1,2,5,10,-1,2,8,5,-1,26,14,9,-1,131,74,53,-1,220,226,128,-1,128,204,220,-1,0,4,48,-1,6,52,49,-1,57,34,117,-1,34,100,117,-1,95,35,64,-1,35,26,64,-1,16,63,98,-1,190,223,231,-1,231,198,190,-1,171,145,199,-1,262,265,264,-1,240,247,268,-1,271,242,269,-1,135,207,211,-1,257,239,230,-1,257,246,239,-1,247,234,207,-1,234,247,240,-1,199,190,198,-1,199,145,190,-1,251,223,243,-1,231,223,251,-1,258,245,244,-1,256,245,258,-1,220,222,260,-1,220,204,222,-1,202,197,212,-1,202,191,197,-1,208,225,203,-1,225,208,236,-1,194,198,217,-1,198,194,199,-1,110,71,121,-1,64,71,110,-1,100,35,95,-1,35,100,34,-1,126,85,127,-1,126,96,85,-1,84,127,85,-1,84,125,127,-1,52,90,49,-1,77,90,52,-1,129,152,101,-1,129,210,152,-1,156,128,99,-1,204,128,156,-1,181,109,165,-1,109,181,97,-1,32,89,51,-1,89,32,65,-1,53,37,1,-1,37,53,74,-1,89,185,124,-1,113,185,89,-1,51,118,50,-1,118,51,124,-1,17,81,68,-1,17,25,81,-1,11,40,7,-1,40,11,54,-1,99,142,156,-1,99,87,142,-1,26,49,71,-1,49,26,6,-1,8,9,14,-1,9,8,2,-1,11,21,17,-1,11,15,21,-1,157,117,137,-1,125,117,157,-1,203,159,208,-1,176,159,203,-1,261,272,250,-1,261,271,272,-1,213,202,238,-1,213,187,202,-1,162,161,180,-1,162,166,161,-1,252,229,237,-1,229,252,255,-1,255,273,268,-1,255,270,273,-1,229,207,216,-1,229,247,207,-1,215,156,142,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getllunate_Geo_5_481_normalIndex_2()
		{
			int[] value = {215,222,156,-1,235,251,254,-1,235,231,251,-1,123,224,192,-1,224,123,177,-1,90,163,49,-1,90,152,163,-1,244,210,226,-1,227,210,244,-1,3,29,16,-1,18,29,3,-1,130,95,122,-1,100,95,130,-1,171,196,154,-1,171,194,196,-1,12,20,15,-1,13,20,12,-1,40,94,76,-1,40,54,94,-1,147,141,168,-1,147,114,141,-1,55,38,42,-1,50,38,55,-1,21,23,22,-1,27,23,21,-1,33,55,61,-1,33,41,55,-1,48,97,53,-1,97,48,78,-1,91,93,73,-1,93,91,108,-1,60,56,28,-1,75,56,60,-1,76,28,40,-1,62,28,76,-1,141,81,102,-1,116,81,141,-1,200,124,185,-1,182,124,200,-1,19,4,0,-1,18,4,19,-1,113,37,74,-1,65,37,113,-1,175,160,165,-1,160,175,139,-1,218,244,245,-1,244,218,227,-1,159,130,154,-1,159,137,130,-1,180,169,186,-1,169,180,161,-1,146,150,167,-1,150,146,132,-1,179,188,201,-1,188,179,178,-1,27,31,23,-1,27,30,31,-1,47,85,46,-1,47,84,85,-1,144,179,148,-1,179,144,178,-1,139,149,160,-1,136,149,139,-1,67,60,62,-1,67,79,60,-1,114,116,141,-1,114,92,116,-1,58,66,86,-1,70,66,58,-1,79,69,99,-1,69,79,67,-1,104,139,103,-1,139,104,136,-1,259,251,256,-1,251,259,254,-1,110,95,64,-1,110,122,95,-1,137,100,130,-1,137,117,100,-1,5,12,7,-1,12,5,8,-1,75,101,77,-1,75,79,101,-1,215,246,253,-1,215,211,246,-1,158,143,119,-1,155,143,158,-1,115,83,80,-1,115,105,83,-1,108,144,148,-1,120,144,108,-1,188,195,201,-1,188,183,195,-1,206,189,219,-1,164,189,206,-1,174,184,205,-1,174,151,184,-1,98,80,16,-1,119,80,98,-1,166,158,134,-1,150,158,166,-1,169,125,157,-1,125,169,127,-1,238,212,248,-1,202,212,238,-1,4,73,48,-1,73,4,44,-1,149,168,182,-1,168,149,147,-1,106,92,82,-1,106,116,92,-1,107,136,104,-1,138,136,107,-1,241,266,252,-1,241,249,266,-1,221,209,214,-1,221,232,209,-1,241,237,233,-1,237,241,252,-1,104,59,107,-1,112,59,104,-1,33,18,19,-1,33,29,18,-1,24,51,41,-1,24,32,51,-1,25,42,38,-1,22,42,25,-1,23,45,43,-1,23,31,45,-1,250,273,248,-1,250,272,273,-1,197,176,203,-1,186,176,197,-1,161,127,169,-1,161,126,127,-1,241,205,249,-1,241,219,205,-1,233,219,241,-1,219,233,206,-1,134,119,98,-1,158,119,134,-1,195,164,206,-1,183,164,195,-1,105,91,83,-1,105,111,91,-1,119,115,80,-1,143,115,119,-1,150,155,158,-1,132,155,150,-1,211,142,135,-1,142,211,215,-1,13,35,34,-1,13,14,35,-1,154,208,159,-1,196,208,154,-1,259,264,267,-1,259,262,264,-1,262,256,258,-1,259,256,262,-1,173,227,218,-1,227,173,163,-1,109,93,133,-1,93,109,78,-1,87,58,86,-1,58,87,69,-1,70,114,66,-1,92,114,70,-1,16,39,36,-1,16,29,39,-1,136,147,149,-1,147,136,138,-1,148,193,133,-1,193,148,179,-1,46,30,47,-1,31,30,46,-1,17,22,25,-1,17,21,22,-1,167,166,162,-1,166,167,150,-1,157,186,169,-1,176,186,157,-1,224,245,243,-1,218,245,224,-1,153,139,175,-1,139,153,103,-1,181,185,131,-1,200,185,181,-1,182,118,124,-1,118,182,168,-1,116,68,81,-1,68,116,106,-1,77,56,75,-1,77,52,56,-1,111,108,91,-1,108,111,120,-1,73,78,48,-1,78,73,93,-1,19,41,33,-1,41,19,24,-1,22,43,42,-1,22,23,43,-1,56,6,10,-1,56,52,6,-1,61,42,43,-1,55,42,61,-1,168,102,118,-1,168,141,102,-1,107,66,114,-1,59,66,107,-1,32,0,1,-1,0,32,24,-1,76,82,72,-1,76,94,82,-1,7,15,11,-1,12,15,7,-1,13,57,20,-1,34,57,13,-1,228,267,263,-1,228,217,267,-1,154,122,171,-1,130,122,154,-1,151,167,184,-1,151,146,167,-1,265,258,260,-1,265,262,258,-1,227,152,210,-1,163,152,227,-1,192,243,223,-1,243,192,224,-1,222,253,265,-1,253,222,215,-1,252,270,255,-1,252,266,270,-1,166,126,161,-1,166,134,126,-1,137,176,157,-1,137,159,176,-1,15,27,21,-1,15,20,27,-1,106,54,68,-1,106,94,54,-1,47,20,57,-1,30,20,47,-1,40,5,7,-1,5,40,28,-1,214,112,153,-1,214,209,112,-1,172,86,88,-1,86,172,135,-1,68,11,17,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getllunate_Geo_5_481_normalIndex_3()
		{
			int[] value = {54,11,68,-1,81,38,102,-1,81,25,38,-1,50,102,38,-1,102,50,118,-1,185,74,131,-1,74,185,113,-1,1,65,32,-1,65,1,37,-1,97,131,53,-1,97,181,131,-1,175,133,193,-1,165,133,175,-1,135,87,86,-1,142,87,135,-1,210,128,226,-1,128,210,129,-1,90,101,152,-1,101,90,77,-1,96,98,63,-1,126,98,96,-1,196,217,228,-1,217,196,194,-1,125,57,117,-1,125,84,57,-1,121,145,110,-1,121,190,145,-1,228,208,196,-1,228,236,208,-1,212,203,225,-1,212,197,203,-1,191,187,170,-1,187,191,202,-1,244,260,258,-1,244,220,260,-1,244,226,220,-1,256,243,245,-1,251,243,256,-1,240,230,239,-1,230,240,242,-1,268,242,240,-1,269,242,268,-1,234,246,211,-1,239,246,234,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc_Geo_5_487_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,20,21,18,-1,22,23,24,-1,24,25,22,-1,26,27,28,-1,27,29,28,-1,30,31,32,-1,31,33,32,-1,34,35,36,-1,37,38,21,-1,34,21,39,-1,40,41,42,-1,43,42,41,-1,3,44,45,-1,37,21,46,-1,47,48,49,-1,50,51,52,-1,51,53,52,-1,47,54,55,-1,56,57,58,-1,59,60,61,-1,59,62,60,-1,56,63,62,-1,64,65,66,-1,67,68,69,-1,70,54,71,-1,70,55,54,-1,72,73,74,-1,72,75,73,-1,76,77,78,-1,78,46,76,-1,79,80,76,-1,76,46,79,-1,81,82,83,-1,84,85,86,-1,86,87,84,-1,88,40,89,-1,88,90,40,-1,91,82,81,-1,81,92,91,-1,93,94,95,-1,82,96,83,-1,97,44,98,-1,99,14,13,-1,100,14,99,-1,101,99,33,-1,102,12,14,-1,47,103,104,-1,105,106,107,-1,108,109,95,-1,110,111,112,-1,113,114,115,-1,115,116,113,-1,71,117,118,-1,119,120,121,-1,119,122,120,-1,123,38,37,-1,123,124,38,-1,62,59,56,-1,125,126,127,-1,126,101,127,-1,128,101,33,-1,129,39,38,-1,130,18,34,-1,131,36,35,-1,131,132,36,-1,24,50,133,-1,128,114,113,-1,128,134,114,-1,74,73,135,-1,22,121,120,-1,136,137,56,-1,55,48,47,-1,26,138,27,-1,139,111,110,-1,49,140,47,-1,104,141,105,-1,69,68,109,-1,109,93,95,-1,109,68,93,-1,142,76,80,-1,80,143,142,-1,64,66,136,-1,54,47,144,-1,145,146,107,-1,147,148,107,-1,149,150,107,-1,151,105,107,-1,152,153,107,-1,154,145,107,-1,155,156,157,-1,156,158,157,-1,159,160,161,-1,159,162,160,-1,10,160,163,-1,9,84,87,-1,87,10,9,-1,163,164,165,-1,166,167,168,-1,169,42,170,-1,159,161,171,-1,161,172,171,-1,42,169,172,-1,173,169,170,-1,170,174,173,-1,175,170,43,-1,174,176,173,-1,173,176,177,-1,178,179,180,-1,178,181,179,-1,182,83,183,-1,183,184,182,-1,185,5,186,-1,187,5,188,-1,83,96,183,-1,96,45,44,-1,188,4,167,-1,7,45,8,-1,189,190,191,-1,191,91,189,-1,3,7,4,-1,192,86,193,-1,194,195,196,-1,194,197,195,-1,198,199,200,-1,201,202,200,-1,203,204,200,-1,205,195,200,-1,197,206,200,-1,200,207,198,-1,206,207,200,-1,195,197,200,-1,204,205,200,-1,202,203,200,-1,199,201,200,-1,208,199,198,-1,198,189,208,-1,202,201,209,-1,209,210,202,-1,193,204,211,-1,204,203,211,-1,196,205,212,-1,196,195,205,-1,208,0,2,-1,208,92,0,-1,193,211,89,-1,89,192,193,-1,191,190,213,-1,4,188,5,-1,214,96,97,-1,214,183,96,-1,45,82,215,-1,45,96,82,-1,187,186,5,-1,177,216,173,-1,170,42,43,-1,174,170,175,-1,173,172,169,-1,166,217,167,-1,217,188,167,-1,218,166,168,-1,218,219,166,-1,163,11,10,-1,161,160,10,-1,220,221,222,-1,222,116,220,-1,153,154,107,-1,106,152,107,-1,150,151,107,-1,148,149,107,-1,107,146,147,-1,144,47,150,-1,47,151,150,-1,223,54,144,-1,223,57,54,-1,148,223,149,-1,148,64,223,-1,136,56,58,-1,224,65,64,-1,225,142,145,-1,111,139,140,-1,72,112,111,-1,27,71,118,-1,27,70,71,-1,61,23,118,-1,24,23,61,-1,56,137,63,-1,24,60,226,-1,120,134,28,-1,120,114,134,-1,135,227,74,-1,63,137,228,-1,228,137,229,-1,230,51,231,-1,230,19,51,-1,34,36,232,-1,21,34,18,-1,31,233,227,-1,113,127,101,-1,101,128,113,-1,234,235,125,-1,235,126,125,-1,37,46,78,-1,78,123,37,-1,236,237,238,-1,237,239,238,-1,115,120,122,-1,115,114,120,-1,59,240,56,-1,140,75,111,-1,140,49,75,-1,241,242,69,-1,243,244,245,-1,245,246,243,-1,14,247,102,-1,32,13,248,-1,97,96,44,-1,20,79,46,-1,249,12,102,-1,102,16,249,-1,250,17,251,-1,17,252,251,-1,253,254,17,-1,17,247,253,-1,191,213,8,-1,8,215,191,-1,0,92,255,-1,92,81,255,-1,256,84,257,-1,256,85,84,-1,89,42,192,-1,89,40,42,-1,215,8,45,-1,258,259,260,-1,211,88,89,-1,51,66,231,-1,51,229,66,-1,77,261,78,-1,261,262,78,-1,251,94,93,-1,93,250,251,-1,74,227,233,-1,138,73,49,-1,73,75,49,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc_Geo_5_487_coordIndex_2()
		{
			int[] value = {24,61,60,-1,34,232,130,-1,229,50,228,-1,229,51,50,-1,117,61,118,-1,64,136,58,-1,57,240,54,-1,57,56,240,-1,53,51,19,-1,50,52,133,-1,138,263,27,-1,75,72,111,-1,235,254,126,-1,182,178,180,-1,180,264,182,-1,178,182,184,-1,185,98,44,-1,10,87,42,-1,40,90,265,-1,265,41,40,-1,226,50,24,-1,181,266,265,-1,266,175,265,-1,21,38,39,-1,27,118,29,-1,20,46,21,-1,36,133,52,-1,52,232,36,-1,18,53,19,-1,18,130,53,-1,23,22,29,-1,29,118,23,-1,263,70,27,-1,7,3,45,-1,264,255,182,-1,267,268,269,-1,270,268,267,-1,52,130,232,-1,130,52,53,-1,25,133,36,-1,133,25,24,-1,244,16,15,-1,244,249,16,-1,135,28,134,-1,26,28,135,-1,87,192,42,-1,87,86,192,-1,186,98,185,-1,186,221,98,-1,125,222,271,-1,125,127,222,-1,209,272,2,-1,272,209,201,-1,264,273,1,-1,264,180,273,-1,252,254,235,-1,252,17,254,-1,233,72,74,-1,112,72,233,-1,117,54,240,-1,54,117,71,-1,274,112,233,-1,110,112,274,-1,275,245,67,-1,246,245,275,-1,231,65,230,-1,66,65,231,-1,262,94,251,-1,261,94,262,-1,63,50,226,-1,63,228,50,-1,240,61,117,-1,240,59,61,-1,67,276,68,-1,67,245,276,-1,211,277,88,-1,210,277,211,-1,265,179,181,-1,179,265,90,-1,180,277,273,-1,277,180,179,-1,256,278,279,-1,256,257,278,-1,259,280,6,-1,280,259,258,-1,91,215,82,-1,91,191,215,-1,102,17,16,-1,17,102,247,-1,12,248,13,-1,249,248,12,-1,7,281,4,-1,282,281,7,-1,254,100,126,-1,254,253,100,-1,67,242,275,-1,242,67,69,-1,283,241,69,-1,141,241,283,-1,139,241,103,-1,242,241,139,-1,135,138,26,-1,138,135,73,-1,271,234,125,-1,234,271,284,-1,132,285,286,-1,287,285,132,-1,288,237,236,-1,288,131,237,-1,289,238,239,-1,289,156,238,-1,290,78,262,-1,78,290,123,-1,291,289,124,-1,291,292,289,-1,284,292,234,-1,284,158,292,-1,235,290,252,-1,235,291,290,-1,250,15,17,-1,250,276,15,-1,274,243,246,-1,243,274,30,-1,38,237,129,-1,38,239,237,-1,79,19,230,-1,79,20,19,-1,137,66,229,-1,136,66,137,-1,28,22,120,-1,28,293,22,-1,25,121,22,-1,25,286,121,-1,275,139,110,-1,275,242,139,-1,225,261,77,-1,294,261,225,-1,294,153,95,-1,153,294,154,-1,142,77,76,-1,77,142,225,-1,142,146,145,-1,142,143,146,-1,64,147,224,-1,64,148,147,-1,64,57,223,-1,58,57,64,-1,144,149,223,-1,144,150,149,-1,216,287,171,-1,287,216,285,-1,122,177,295,-1,119,177,122,-1,238,162,236,-1,162,238,296,-1,284,186,187,-1,284,271,186,-1,116,297,220,-1,116,115,297,-1,298,155,299,-1,296,155,298,-1,299,157,217,-1,155,157,299,-1,164,299,219,-1,299,164,298,-1,9,257,84,-1,9,267,257,-1,257,269,278,-1,269,257,267,-1,268,168,281,-1,268,218,168,-1,175,41,265,-1,43,41,175,-1,300,266,184,-1,300,176,266,-1,300,297,295,-1,300,214,297,-1,282,278,269,-1,280,278,282,-1,258,194,279,-1,258,260,194,-1,256,212,85,-1,256,196,212,-1,210,273,277,-1,273,210,209,-1,212,204,193,-1,212,205,204,-1,203,210,211,-1,203,202,210,-1,2,199,208,-1,199,272,201,-1,2,272,199,-1,207,260,190,-1,207,206,260,-1,206,194,260,-1,206,197,194,-1,190,198,207,-1,190,189,198,-1,279,196,256,-1,279,194,196,-1,259,190,260,-1,213,190,259,-1,281,167,4,-1,281,168,167,-1,189,92,208,-1,92,189,91,-1,5,44,3,-1,5,185,44,-1,214,220,297,-1,214,97,220,-1,214,184,183,-1,184,214,300,-1,255,83,182,-1,255,81,83,-1,266,178,184,-1,266,181,178,-1,176,295,177,-1,295,176,300,-1,174,266,176,-1,175,266,174,-1,173,171,172,-1,216,171,173,-1,161,42,172,-1,161,10,42,-1,270,218,268,-1,270,165,218,-1,165,11,163,-1,11,165,270,-1,165,219,218,-1,165,164,219,-1,298,163,160,-1,298,164,163,-1,217,219,299,-1,217,166,219,-1,157,188,217,-1,157,187,188,-1,296,160,162,-1,296,298,160,-1,295,115,122,-1,295,297,115,-1,158,187,157,-1,158,284,187,-1,156,296,238,-1,296,156,155,-1,159,236,162,-1,159,288,236,-1,177,285,216,-1,285,177,119,-1,171,288,159,-1,287,288,171,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc_Geo_5_487_coordIndex_3()
		{
			int[] value = {143,147,146,-1,143,224,147,-1,224,80,65,-1,80,224,143,-1,225,154,294,-1,154,225,145,-1,152,95,153,-1,152,108,95,-1,261,95,94,-1,95,261,294,-1,152,283,108,-1,152,106,283,-1,141,103,241,-1,104,103,141,-1,286,36,132,-1,286,25,36,-1,129,131,35,-1,237,131,129,-1,245,15,276,-1,15,245,244,-1,99,32,33,-1,32,99,13,-1,262,252,290,-1,262,251,252,-1,234,291,235,-1,234,292,291,-1,292,156,289,-1,156,292,158,-1,124,290,291,-1,123,290,124,-1,239,124,289,-1,124,239,38,-1,131,287,132,-1,288,287,131,-1,286,119,121,-1,285,119,286,-1,127,116,222,-1,127,113,116,-1,29,293,28,-1,22,293,29,-1,30,233,31,-1,30,274,233,-1,109,283,69,-1,108,283,109,-1,106,141,283,-1,105,141,106,-1,140,103,47,-1,140,139,103,-1,105,47,104,-1,151,47,105,-1,101,100,99,-1,100,101,126,-1,253,14,100,-1,253,247,14,-1,221,97,98,-1,220,97,221,-1,86,212,193,-1,85,212,86,-1,6,213,259,-1,213,6,8,-1,280,279,278,-1,258,279,280,-1,88,179,90,-1,277,179,88,-1,49,263,138,-1,48,263,49,-1,60,63,226,-1,60,62,63,-1,80,230,65,-1,80,79,230,-1,276,93,68,-1,93,276,250,-1,110,246,275,-1,110,274,246,-1,48,70,263,-1,70,48,55,-1,273,2,1,-1,2,273,209,-1,271,221,186,-1,271,222,221,-1,39,35,34,-1,39,129,35,-1,249,243,248,-1,243,249,244,-1,33,227,128,-1,33,31,227,-1,30,248,243,-1,30,32,248,-1,227,134,128,-1,227,135,134,-1,269,281,282,-1,269,268,281,-1,9,270,267,-1,11,270,9,-1,6,282,7,-1,6,280,282,-1,255,1,0,-1,255,264,1,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc_Geo_5_487_normalIndex_1()
		{
			int[] value = {254,213,216,-1,260,288,269,-1,281,290,293,-1,58,26,60,-1,253,274,270,-1,268,210,264,-1,31,30,37,-1,37,34,31,-1,152,179,116,-1,116,95,152,-1,151,143,167,-1,143,177,167,-1,278,285,237,-1,285,258,237,-1,4,18,41,-1,87,107,34,-1,4,34,39,-1,27,14,7,-1,11,7,14,-1,260,236,263,-1,87,34,91,-1,126,141,153,-1,33,3,23,-1,3,10,23,-1,126,130,104,-1,55,105,63,-1,134,146,182,-1,134,76,146,-1,55,38,76,-1,71,13,5,-1,247,212,184,-1,94,130,165,-1,94,104,130,-1,226,175,238,-1,226,191,175,-1,67,122,145,-1,145,91,67,-1,29,32,67,-1,67,91,29,-1,169,249,158,-1,47,57,35,-1,35,28,47,-1,84,27,52,-1,84,42,27,-1,300,249,169,-1,169,283,300,-1,207,155,118,-1,249,225,158,-1,235,236,244,-1,289,270,274,-1,296,270,289,-1,273,289,258,-1,221,253,270,-1,126,150,102,-1,85,98,86,-1,121,147,118,-1,240,208,257,-1,219,196,187,-1,187,215,219,-1,165,205,197,-1,80,156,106,-1,80,123,156,-1,149,107,87,-1,149,162,107,-1,76,134,55,-1,284,297,256,-1,297,273,256,-1,224,273,258,-1,49,39,107,-1,0,31,4,-1,20,41,18,-1,20,43,41,-1,116,33,59,-1,224,196,219,-1,224,181,196,-1,238,175,176,-1,152,106,156,-1,16,25,55,-1,104,141,126,-1,151,132,143,-1,203,208,240,-1,153,171,126,-1,102,113,85,-1,184,212,147,-1,147,207,118,-1,147,212,207,-1,72,67,32,-1,32,62,72,-1,71,5,16,-1,130,126,81,-1,90,75,86,-1,88,93,86,-1,96,68,86,-1,77,85,86,-1,99,89,86,-1,97,90,86,-1,144,154,174,-1,154,185,174,-1,19,51,15,-1,19,53,51,-1,26,51,73,-1,58,47,28,-1,28,26,58,-1,73,139,133,-1,194,246,227,-1,9,7,6,-1,19,15,36,-1,15,24,36,-1,7,9,24,-1,44,9,6,-1,6,45,44,-1,50,6,11,-1,45,65,44,-1,44,65,74,-1,111,66,100,-1,111,83,66,-1,136,158,195,-1,195,135,136,-1,259,269,272,-1,241,269,248,-1,158,225,195,-1,225,263,236,-1,248,288,246,-1,290,263,293,-1,262,266,299,-1,299,300,262,-1,260,290,288,-1,22,35,78,-1,202,166,114,-1,202,183,166,-1,233,222,206,-1,214,192,206,-1,168,142,206,-1,140,166,206,-1,183,209,206,-1,206,223,233,-1,209,223,206,-1,166,183,206,-1,142,140,206,-1,192,168,206,-1,222,214,206,-1,230,222,233,-1,233,262,230,-1,192,214,201,-1,201,172,192,-1,78,142,137,-1,142,168,137,-1,114,140,70,-1,114,166,140,-1,230,254,216,-1,230,283,254,-1,78,137,52,-1,52,22,78,-1,299,266,294,-1,288,248,269,-1,193,225,235,-1,193,195,225,-1,263,249,280,-1,263,225,249,-1,241,272,269,-1,74,56,44,-1,6,7,11,-1,45,6,50,-1,44,24,9,-1,194,178,246,-1,178,248,246,-1,190,194,227,-1,190,159,194,-1,73,60,26,-1,15,51,26,-1,234,265,243,-1,243,215,234,-1,89,97,86,-1,98,99,86,-1,68,77,86,-1,93,96,86,-1,86,75,88,-1,81,126,68,-1,126,77,68,-1,92,130,81,-1,92,105,130,-1,93,92,96,-1,93,71,92,-1,16,55,63,-1,61,13,71,-1,101,72,90,-1,208,203,171,-1,226,257,208,-1,143,165,197,-1,143,94,165,-1,182,179,197,-1,116,179,182,-1,55,25,38,-1,116,146,82,-1,156,181,167,-1,156,196,181,-1,176,229,238,-1,38,25,21,-1,21,25,2,-1,8,3,1,-1,8,30,3,-1,4,41,17,-1,34,4,31,-1,285,298,229,-1,219,256,273,-1,273,224,219,-1,252,239,284,-1,239,297,284,-1,87,91,145,-1,145,149,87,-1,48,46,120,-1,46,109,120,-1,187,156,123,-1,187,196,156,-1,134,161,55,-1,171,191,208,-1,171,153,191,-1,164,217,184,-1,292,277,286,-1,286,295,292,-1,270,231,221,-1,237,274,232,-1,235,225,236,-1,37,29,91,-1,228,253,221,-1,221,210,228,-1,271,264,211,-1,264,220,211,-1,282,276,264,-1,264,231,282,-1,299,294,293,-1,293,280,299,-1,254,283,157,-1,283,169,157,-1,115,47,129,-1,115,57,47,-1,52,7,22,-1,52,27,7,-1,280,293,263,-1,267,287,242,-1,137,84,52,-1,3,5,1,-1,3,2,5,-1,122,138,145,-1,138,173,145,-1,211,155,207,-1,207,271,211,-1,238,229,298,-1,132,175,153,-1,175,191,153,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc_Geo_5_487_normalIndex_2()
		{
			int[] value = {116,182,146,-1,4,17,0,-1,2,33,21,-1,2,3,33,-1,205,182,197,-1,71,16,63,-1,105,161,130,-1,105,55,161,-1,10,3,30,-1,33,23,59,-1,132,103,143,-1,191,226,208,-1,239,276,297,-1,136,111,100,-1,100,131,136,-1,111,136,135,-1,259,244,236,-1,26,28,7,-1,27,42,54,-1,54,14,27,-1,82,33,116,-1,83,79,54,-1,79,50,54,-1,34,107,39,-1,143,197,177,-1,37,91,34,-1,41,59,23,-1,23,17,41,-1,31,10,30,-1,31,0,10,-1,179,152,177,-1,177,197,179,-1,103,94,143,-1,290,260,263,-1,131,157,136,-1,128,200,198,-1,125,200,128,-1,23,0,17,-1,0,23,10,-1,95,59,41,-1,59,95,116,-1,277,210,268,-1,277,228,210,-1,176,167,181,-1,151,167,176,-1,28,22,7,-1,28,35,22,-1,272,244,259,-1,272,265,244,-1,284,243,279,-1,284,256,243,-1,201,218,216,-1,218,201,214,-1,131,170,213,-1,131,100,170,-1,220,276,239,-1,220,264,276,-1,298,226,238,-1,257,226,298,-1,205,130,161,-1,130,205,165,-1,291,257,298,-1,240,257,291,-1,251,286,247,-1,295,286,251,-1,1,13,8,-1,5,13,1,-1,173,155,211,-1,138,155,173,-1,38,33,82,-1,38,21,33,-1,161,182,205,-1,161,134,182,-1,247,275,212,-1,247,286,275,-1,137,112,84,-1,172,112,137,-1,54,66,83,-1,66,54,42,-1,100,112,170,-1,112,100,66,-1,115,199,204,-1,115,129,199,-1,287,261,281,-1,261,287,267,-1,300,280,249,-1,300,299,280,-1,221,264,210,-1,264,221,231,-1,253,232,274,-1,228,232,253,-1,290,250,288,-1,255,250,290,-1,276,296,297,-1,276,282,296,-1,247,217,251,-1,217,247,184,-1,117,164,184,-1,113,164,117,-1,203,164,150,-1,217,164,203,-1,176,132,151,-1,132,176,175,-1,279,252,284,-1,252,279,245,-1,43,64,69,-1,40,64,43,-1,12,46,48,-1,12,20,46,-1,163,120,109,-1,163,154,120,-1,188,145,173,-1,145,188,149,-1,186,163,162,-1,186,189,163,-1,245,189,252,-1,245,185,189,-1,239,188,220,-1,239,186,188,-1,271,268,264,-1,271,275,268,-1,291,292,295,-1,292,291,278,-1,107,46,49,-1,107,109,46,-1,29,30,8,-1,29,37,30,-1,25,5,2,-1,16,5,25,-1,167,152,156,-1,167,160,152,-1,95,106,152,-1,95,69,106,-1,251,203,240,-1,251,217,203,-1,101,138,122,-1,108,138,101,-1,108,89,118,-1,89,108,97,-1,72,122,67,-1,122,72,101,-1,72,75,90,-1,72,62,75,-1,71,88,61,-1,71,93,88,-1,71,105,92,-1,63,105,71,-1,81,96,92,-1,81,68,96,-1,56,40,36,-1,40,56,64,-1,123,74,119,-1,80,74,123,-1,120,53,48,-1,53,120,127,-1,245,272,241,-1,245,279,272,-1,215,180,234,-1,215,187,180,-1,124,144,148,-1,127,144,124,-1,148,174,178,-1,144,174,148,-1,139,148,159,-1,148,139,124,-1,58,129,47,-1,58,128,129,-1,129,198,199,-1,198,129,128,-1,200,227,250,-1,200,190,227,-1,50,14,54,-1,11,14,50,-1,110,79,135,-1,110,65,79,-1,110,180,119,-1,110,193,180,-1,255,199,198,-1,261,199,255,-1,267,202,204,-1,267,242,202,-1,115,70,57,-1,115,114,70,-1,172,170,112,-1,170,172,201,-1,70,142,78,-1,70,140,142,-1,168,172,137,-1,168,192,172,-1,216,222,230,-1,222,218,214,-1,216,218,222,-1,223,242,266,-1,223,209,242,-1,209,202,242,-1,209,183,202,-1,266,233,223,-1,266,262,233,-1,204,114,115,-1,204,202,114,-1,287,266,242,-1,294,266,287,-1,250,246,288,-1,250,227,246,-1,262,283,230,-1,283,262,300,-1,269,236,260,-1,269,259,236,-1,193,234,180,-1,193,235,234,-1,193,135,195,-1,135,193,110,-1,157,158,136,-1,157,169,158,-1,79,111,135,-1,79,83,111,-1,65,119,74,-1,119,65,110,-1,45,79,65,-1,50,79,45,-1,44,36,24,-1,56,36,44,-1,15,7,24,-1,15,26,7,-1,125,190,200,-1,125,133,190,-1,133,60,73,-1,60,133,125,-1,133,159,190,-1,133,139,159,-1,124,73,51,-1,124,139,73,-1,178,159,148,-1,178,194,159,-1,174,248,178,-1,174,241,248,-1,127,51,53,-1,127,124,51,-1,119,187,123,-1,119,180,187,-1,185,241,174,-1,185,245,241,-1,154,127,120,-1,127,154,144,-1,19,48,53,-1,19,12,48,-1,74,64,56,-1,64,74,80,-1,36,12,19,-1,40,12,36,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc_Geo_5_487_normalIndex_3()
		{
			int[] value = {62,88,75,-1,62,61,88,-1,61,32,13,-1,32,61,62,-1,101,97,108,-1,97,101,90,-1,99,118,89,-1,99,121,118,-1,138,118,155,-1,118,138,108,-1,99,117,121,-1,99,98,117,-1,113,150,164,-1,102,150,113,-1,69,41,43,-1,69,95,41,-1,49,20,18,-1,46,20,49,-1,286,268,275,-1,268,286,277,-1,289,237,258,-1,237,289,274,-1,173,220,188,-1,173,211,220,-1,252,186,239,-1,252,189,186,-1,189,154,163,-1,154,189,185,-1,162,188,186,-1,149,188,162,-1,109,162,163,-1,162,109,107,-1,20,40,43,-1,12,40,20,-1,69,80,106,-1,64,80,69,-1,256,215,243,-1,256,219,215,-1,177,160,167,-1,152,160,177,-1,278,298,285,-1,278,291,298,-1,147,117,184,-1,121,117,147,-1,98,113,117,-1,85,113,98,-1,171,150,126,-1,171,203,150,-1,85,126,102,-1,77,126,85,-1,273,296,289,-1,296,273,297,-1,282,270,296,-1,282,231,270,-1,265,235,244,-1,234,235,265,-1,35,70,78,-1,57,70,35,-1,281,294,287,-1,294,281,293,-1,261,204,199,-1,267,204,261,-1,84,66,42,-1,112,66,84,-1,153,103,132,-1,141,103,153,-1,146,38,82,-1,146,76,38,-1,32,8,13,-1,32,29,8,-1,275,207,212,-1,207,275,271,-1,240,295,251,-1,240,291,295,-1,141,94,103,-1,94,141,104,-1,170,216,213,-1,216,170,201,-1,279,265,272,-1,279,243,265,-1,39,18,4,-1,39,49,18,-1,228,292,232,-1,292,228,277,-1,258,229,224,-1,258,285,229,-1,278,232,292,-1,278,237,232,-1,229,181,224,-1,229,176,181,-1,198,250,255,-1,198,200,250,-1,58,125,128,-1,60,125,58,-1,281,255,290,-1,281,261,255,-1,157,213,254,-1,157,131,213,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc2_Geo_5_493_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,4,6,5,-1,7,8,0,-1,0,9,7,-1,10,9,0,-1,11,12,13,-1,12,14,13,-1,15,16,17,-1,17,18,15,-1,19,20,21,-1,22,23,24,-1,25,26,27,-1,28,29,30,-1,28,27,29,-1,31,29,26,-1,32,33,34,-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,50,53,51,-1,54,55,56,-1,54,57,55,-1,58,59,60,-1,61,62,63,-1,64,65,66,-1,25,67,68,-1,67,69,68,-1,70,71,72,-1,70,73,71,-1,74,75,76,-1,77,78,79,-1,78,80,79,-1,81,70,72,-1,72,82,81,-1,83,75,84,-1,83,85,75,-1,86,87,88,-1,87,89,88,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,94,98,-1,106,107,108,-1,109,110,107,-1,111,112,113,-1,114,112,111,-1,115,116,117,-1,118,119,116,-1,120,121,122,-1,123,124,121,-1,125,120,122,-1,122,126,125,-1,123,127,124,-1,127,128,124,-1,129,130,131,-1,129,132,130,-1,131,130,112,-1,130,133,112,-1,10,134,135,-1,135,9,10,-1,130,132,121,-1,136,137,138,-1,136,139,137,-1,136,140,139,-1,136,141,142,-1,143,144,135,-1,145,146,147,-1,148,149,150,-1,148,151,149,-1,152,153,154,-1,152,155,92,-1,112,156,113,-1,156,157,113,-1,158,159,160,-1,146,142,141,-1,146,160,142,-1,161,13,162,-1,163,13,14,-1,164,165,166,-1,166,167,168,-1,169,170,110,-1,171,172,173,-1,173,174,171,-1,175,176,12,-1,177,175,178,-1,177,179,180,-1,180,102,177,-1,181,108,182,-1,180,179,183,-1,183,184,180,-1,171,185,186,-1,171,187,185,-1,185,17,186,-1,188,189,190,-1,34,191,32,-1,192,193,194,-1,195,196,99,-1,196,197,99,-1,37,198,35,-1,199,22,200,-1,4,3,50,-1,50,201,4,-1,202,203,204,-1,203,205,204,-1,206,207,208,-1,208,209,206,-1,210,38,40,-1,49,48,211,-1,48,212,211,-1,213,214,215,-1,75,216,215,-1,30,213,215,-1,76,217,74,-1,217,73,74,-1,218,219,5,-1,218,220,219,-1,54,221,57,-1,221,222,57,-1,223,100,224,-1,225,226,227,-1,228,225,229,-1,225,230,229,-1,231,232,233,-1,232,144,233,-1,234,235,236,-1,236,237,234,-1,238,239,240,-1,241,134,10,-1,242,243,244,-1,242,245,246,-1,242,247,248,-1,249,2,250,-1,246,245,251,-1,245,235,251,-1,252,253,234,-1,254,255,250,-1,254,256,255,-1,257,258,241,-1,257,255,258,-1,259,260,261,-1,261,262,259,-1,263,264,265,-1,264,266,265,-1,100,99,197,-1,267,34,188,-1,268,269,270,-1,269,271,270,-1,272,273,274,-1,273,275,274,-1,272,276,273,-1,277,278,279,-1,264,263,280,-1,263,281,280,-1,282,283,284,-1,282,285,283,-1,195,286,196,-1,195,287,286,-1,65,288,289,-1,290,291,292,-1,291,69,293,-1,291,290,69,-1,294,48,65,-1,295,296,191,-1,189,297,190,-1,189,298,297,-1,208,212,209,-1,299,300,301,-1,299,302,300,-1,303,304,305,-1,303,306,304,-1,307,56,308,-1,308,309,310,-1,310,311,308,-1,307,312,313,-1,313,314,307,-1,315,316,317,-1,318,319,307,-1,307,314,318,-1,319,221,54,-1,319,320,221,-1,321,316,322,-1,322,323,321,-1,324,78,77,-1,77,325,324,-1,202,201,326,-1,326,203,202,-1,202,327,201,-1,60,63,62,-1,328,80,329,-1,330,331,204,-1,332,333,334,-1,335,336,334,-1,337,338,334,-1,45,339,334,-1,340,332,334,-1,341,342,343,-1,344,345,346,-1,344,347,345,-1,348,349,350,-1,89,351,275,-1,275,88,89,-1,352,353,1,-1,354,355,356,-1,357,115,117,-1,357,358,115,-1,359,140,142,-1,256,360,361,-1,256,359,360,-1,352,362,353,-1,352,15,362,-1,363,250,2,-1,364,233,144,-1,144,143,364,-1,232,244,243,-1,243,365,232,-1,240,236,248,-1,248,247,240,-1,237,366,367,-1,237,239,366,-1,368,173,366,-1,173,367,366,-1,187,174,369,-1,370,371,366,-1,364,271,233,-1,372,105,107,-1,107,106,372,-1,127,129,93,-1,93,95,127,-1,373,374,90,-1,373,150,374,-1,90,126,128,-1,141,147,146,-1,90,375,125,-1,90,374,375,-1,125,126,90,-1,376,179,377,-1,376,183,179,-1,178,175,12,-1,164,136,165,-1,136,138,165,-1,13,161,378,-1,379,380,381,-1,381,382,379,-1,383,384,385,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc2_Geo_5_493_coordIndex_2()
		{
			int[] value = {386,387,388,-1,389,390,391,-1,382,381,391,-1,392,393,391,-1,394,385,391,-1,388,395,391,-1,395,389,391,-1,385,388,391,-1,391,393,394,-1,381,392,391,-1,390,382,391,-1,376,389,395,-1,395,396,376,-1,390,379,382,-1,390,377,379,-1,397,398,163,-1,166,21,167,-1,176,175,168,-1,168,167,176,-1,377,177,379,-1,377,179,177,-1,102,180,111,-1,104,118,146,-1,399,148,400,-1,399,401,148,-1,402,150,149,-1,402,374,150,-1,403,354,402,-1,402,149,403,-1,373,90,92,-1,105,269,404,-1,105,372,269,-1,238,233,370,-1,171,174,187,-1,252,367,173,-1,173,172,252,-1,252,237,367,-1,252,234,237,-1,240,247,231,-1,247,405,231,-1,248,236,235,-1,235,245,248,-1,135,365,251,-1,251,9,135,-1,242,244,405,-1,143,135,134,-1,406,137,254,-1,360,159,407,-1,360,359,159,-1,408,345,407,-1,345,409,407,-1,117,151,410,-1,354,403,355,-1,158,116,115,-1,160,116,158,-1,348,410,349,-1,410,401,349,-1,346,408,358,-1,346,345,408,-1,411,346,412,-1,411,344,346,-1,264,413,262,-1,264,280,413,-1,339,414,334,-1,338,45,334,-1,336,415,334,-1,333,335,334,-1,58,46,59,-1,333,331,335,-1,331,329,335,-1,328,329,416,-1,43,417,44,-1,43,418,417,-1,3,53,50,-1,3,419,53,-1,82,330,205,-1,330,204,205,-1,214,76,75,-1,75,215,214,-1,316,315,322,-1,420,421,422,-1,55,57,423,-1,57,222,423,-1,56,307,54,-1,320,319,318,-1,318,424,320,-1,425,314,313,-1,313,312,425,-1,419,309,53,-1,56,426,308,-1,228,427,428,-1,192,429,193,-1,429,430,193,-1,212,208,211,-1,65,48,47,-1,28,223,431,-1,292,291,65,-1,65,64,292,-1,289,66,65,-1,100,432,101,-1,433,318,314,-1,230,434,425,-1,425,229,230,-1,286,287,435,-1,436,437,438,-1,436,439,437,-1,440,285,282,-1,440,441,285,-1,265,278,195,-1,442,443,276,-1,443,441,276,-1,444,284,317,-1,317,424,444,-1,88,275,273,-1,273,341,88,-1,275,351,268,-1,278,287,195,-1,278,445,287,-1,263,265,195,-1,255,256,361,-1,361,258,255,-1,143,258,259,-1,139,140,254,-1,363,353,362,-1,18,161,162,-1,242,405,247,-1,242,248,245,-1,242,246,243,-1,232,405,244,-1,232,231,405,-1,251,234,7,-1,251,235,234,-1,238,240,233,-1,240,231,233,-1,7,234,253,-1,228,36,35,-1,228,229,36,-1,446,317,284,-1,319,54,307,-1,426,56,55,-1,55,326,426,-1,324,64,61,-1,324,292,64,-1,447,218,42,-1,447,220,218,-1,74,84,75,-1,75,85,216,-1,431,67,28,-1,213,448,214,-1,213,31,448,-1,47,288,65,-1,49,211,38,-1,38,210,49,-1,207,39,208,-1,207,41,39,-1,327,202,331,-1,202,204,331,-1,415,337,334,-1,326,201,52,-1,426,51,308,-1,449,450,451,-1,37,200,198,-1,37,199,200,-1,297,196,286,-1,286,429,297,-1,452,194,193,-1,453,454,455,-1,452,299,455,-1,452,302,299,-1,456,457,347,-1,169,458,170,-1,458,459,170,-1,184,460,96,-1,184,183,460,-1,271,370,233,-1,372,106,370,-1,106,371,370,-1,110,109,169,-1,109,461,169,-1,168,136,164,-1,168,462,136,-1,177,102,145,-1,145,175,177,-1,186,172,171,-1,16,172,17,-1,172,186,17,-1,166,168,164,-1,20,167,21,-1,20,176,167,-1,13,163,162,-1,146,116,160,-1,348,350,412,-1,350,411,412,-1,410,357,117,-1,184,96,114,-1,152,154,463,-1,152,92,153,-1,117,403,149,-1,149,151,117,-1,118,116,146,-1,175,462,168,-1,136,462,141,-1,462,147,141,-1,136,142,140,-1,139,254,137,-1,21,166,165,-1,120,133,121,-1,114,131,112,-1,131,114,96,-1,96,129,131,-1,129,127,123,-1,123,132,129,-1,123,121,132,-1,156,112,133,-1,121,124,122,-1,130,121,133,-1,156,125,375,-1,117,116,403,-1,116,355,403,-1,356,355,116,-1,116,119,356,-1,108,107,110,-1,461,97,464,-1,461,109,97,-1,96,93,129,-1,93,96,98,-1,98,94,93,-1,90,128,91,-1,465,404,269,-1,364,270,271,-1,86,88,341,-1,420,423,222,-1,420,422,423,-1,81,422,421,-1,85,323,322,-1,85,83,323,-1,446,315,317,-1,446,466,315,-1,214,217,76,-1,214,448,217,-1,67,431,69,-1,431,293,69,-1,61,66,62,-1,61,64,66,-1,48,294,467,-1,50,52,201,-1,41,40,39,-1,468,37,449,-1,468,199,37,-1,469,470,468,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc2_Geo_5_493_coordIndex_3()
		{
			int[] value = {67,27,28,-1,67,25,27,-1,27,26,29,-1,26,68,471,-1,26,25,68,-1,472,303,23,-1,303,24,23,-1,303,305,24,-1,200,24,473,-1,200,22,24,-1,15,398,362,-1,15,18,398,-1,12,474,14,-1,7,9,251,-1,7,253,8,-1,340,334,414,-1,419,5,219,-1,419,3,5,-1,0,8,1,-1,249,0,2,-1,249,10,0,-1,219,309,419,-1,309,219,472,-1,340,475,476,-1,340,414,475,-1,266,278,265,-1,266,279,278,-1,477,260,478,-1,261,260,477,-1,398,162,163,-1,18,162,398,-1,397,406,363,-1,397,19,406,-1,300,430,435,-1,300,302,430,-1,479,435,480,-1,435,479,300,-1,472,220,303,-1,219,220,472,-1,447,206,306,-1,447,207,206,-1,31,471,448,-1,31,26,471,-1,306,301,304,-1,301,306,206,-1,43,40,41,-1,43,481,40,-1,210,481,482,-1,210,40,481,-1,431,296,293,-1,431,483,296,-1,331,416,329,-1,331,330,416,-1,216,315,466,-1,216,322,315,-1,216,85,322,-1,421,83,81,-1,83,421,323,-1,320,317,316,-1,317,320,424,-1,321,222,221,-1,321,420,222,-1,343,439,484,-1,439,343,342,-1,485,486,399,-1,486,485,487,-1,488,270,364,-1,488,489,270,-1,464,396,387,-1,460,396,464,-1,109,98,97,-1,109,105,98,-1,109,107,105,-1,490,156,375,-1,157,156,490,-1,133,125,156,-1,133,120,125,-1,91,127,95,-1,91,128,127,-1,232,135,144,-1,232,365,135,-1,400,92,155,-1,400,373,92,-1,463,87,152,-1,87,463,89,-1,184,111,180,-1,184,114,111,-1,410,412,357,-1,410,348,412,-1,368,174,173,-1,491,174,368,-1,363,398,397,-1,363,362,398,-1,19,137,406,-1,138,137,19,-1,372,271,269,-1,271,372,370,-1,459,492,369,-1,458,492,459,-1,187,161,185,-1,161,187,493,-1,494,457,456,-1,494,445,457,-1,301,209,299,-1,206,209,301,-1,302,193,430,-1,302,452,193,-1,267,453,467,-1,267,454,453,-1,453,209,212,-1,453,299,209,-1,453,455,299,-1,429,190,297,-1,192,190,429,-1,197,224,100,-1,197,298,224,-1,468,451,469,-1,468,449,451,-1,39,211,208,-1,39,38,211,-1,52,426,326,-1,426,52,51,-1,337,63,60,-1,415,63,337,-1,77,448,471,-1,79,448,77,-1,79,217,448,-1,290,68,69,-1,290,325,68,-1,60,66,289,-1,60,62,66,-1,323,420,321,-1,420,323,421,-1,289,58,60,-1,289,288,58,-1,446,283,495,-1,283,446,284,-1,456,227,494,-1,456,496,227,-1,496,411,497,-1,411,496,344,-1,10,257,241,-1,10,249,257,-1,2,353,363,-1,2,1,353,-1,258,260,259,-1,361,260,258,-1,188,454,267,-1,188,194,454,-1,273,342,341,-1,273,440,342,-1,444,282,284,-1,444,498,282,-1,272,442,276,-1,272,489,442,-1,441,499,285,-1,441,443,499,-1,495,101,432,-1,495,283,101,-1,499,99,101,-1,281,99,499,-1,342,437,439,-1,342,498,437,-1,437,434,438,-1,437,433,434,-1,436,500,497,-1,436,438,500,-1,501,445,494,-1,287,445,501,-1,500,225,227,-1,500,230,225,-1,226,228,428,-1,226,225,228,-1,425,433,314,-1,434,433,425,-1,444,318,433,-1,444,424,318,-1,223,483,431,-1,223,224,483,-1,467,212,48,-1,212,467,453,-1,480,502,479,-1,502,480,428,-1,428,473,502,-1,428,427,473,-1,22,310,23,-1,470,310,22,-1,427,200,473,-1,198,200,427,-1,425,36,229,-1,36,425,450,-1,311,451,312,-1,311,469,451,-1,312,450,425,-1,312,451,450,-1,326,423,203,-1,326,55,423,-1,205,81,82,-1,81,205,422,-1,215,466,30,-1,216,466,215,-1,471,325,77,-1,471,68,325,-1,71,416,72,-1,71,328,416,-1,6,417,418,-1,6,475,417,-1,503,335,329,-1,335,503,336,-1,338,60,59,-1,338,337,60,-1,417,45,44,-1,45,417,339,-1,332,476,327,-1,340,476,332,-1,277,445,278,-1,445,277,457,-1,497,350,436,-1,497,411,350,-1,442,280,443,-1,280,442,413,-1,504,478,409,-1,504,477,478,-1,489,413,442,-1,413,489,488,-1,86,343,487,-1,343,86,341,-1,357,346,358,-1,346,357,412,-1,349,399,486,-1,349,401,399,-1,115,408,158,-1,408,115,358,-1,360,409,478,-1,409,360,407,-1,160,359,142,-1,160,159,359,-1,1,253,352,-1,1,8,253,-1,172,253,252,-1,16,253,172,-1,182,459,491,-1,170,459,182,-1,366,238,370,-1,366,239,238,-1,170,108,110,-1,170,182,108,-1,465,154,404,-1,154,465,463,-1,399,155,485,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmc2_Geo_5_493_coordIndex_4()
		{
			int[] value = {399,400,155,-1,95,92,91,-1,153,92,95,-1,490,354,356,-1,402,354,490,-1,148,410,151,-1,410,148,401,-1,118,103,119,-1,104,103,118,-1,178,379,177,-1,379,178,380,-1,163,474,397,-1,14,474,163,-1,492,383,493,-1,383,492,384,-1,169,386,458,-1,169,461,386,-1,377,389,376,-1,389,377,390,-1,393,11,13,-1,392,11,393,-1,386,385,384,-1,388,385,386,-1,378,393,13,-1,393,378,394,-1,392,380,11,-1,381,380,392,-1,461,387,386,-1,461,464,387,-1,458,384,492,-1,384,458,386,-1,493,378,161,-1,378,493,383,-1,11,178,12,-1,11,380,178,-1,183,396,460,-1,396,183,376,-1,113,119,103,-1,113,157,119,-1,375,402,490,-1,374,402,375,-1,94,404,95,-1,94,105,404,-1,465,89,463,-1,465,351,89,-1,154,95,404,-1,153,95,154,-1,489,268,270,-1,272,268,489,-1,181,366,371,-1,181,368,366,-1,491,369,174,-1,369,491,459,-1,255,249,250,-1,255,257,249,-1,259,364,143,-1,259,488,364,-1,487,87,86,-1,87,487,485,-1,486,350,349,-1,350,486,484,-1,262,488,259,-1,262,413,488,-1,409,347,504,-1,345,347,409,-1,440,276,441,-1,440,273,276,-1,484,436,350,-1,436,484,439,-1,496,347,344,-1,456,347,496,-1,277,477,504,-1,277,279,477,-1,327,333,332,-1,327,331,333,-1,475,339,417,-1,339,475,414,-1,415,503,63,-1,336,503,415,-1,78,63,503,-1,324,63,78,-1,324,61,63,-1,327,4,201,-1,4,327,476,-1,79,328,71,-1,328,79,80,-1,29,213,30,-1,31,213,29,-1,466,495,30,-1,495,466,446,-1,311,307,308,-1,311,312,307,-1,470,311,310,-1,311,470,469,-1,35,427,228,-1,198,427,35,-1,502,24,305,-1,502,473,24,-1,418,5,6,-1,418,218,5,-1,479,305,304,-1,305,479,502,-1,218,43,42,-1,218,418,43,-1,430,286,435,-1,429,286,430,-1,224,32,483,-1,32,224,33,-1,293,295,291,-1,293,296,295,-1,432,223,28,-1,432,100,223,-1,501,428,480,-1,501,226,428,-1,497,227,496,-1,497,500,227,-1,438,230,500,-1,434,230,438,-1,433,498,444,-1,433,437,498,-1,281,443,280,-1,443,281,499,-1,30,432,28,-1,30,495,432,-1,101,285,499,-1,283,285,101,-1,440,498,342,-1,498,440,282,-1,272,275,268,-1,275,272,274,-1,99,263,195,-1,99,281,263,-1,262,266,264,-1,262,261,266,-1,359,254,140,-1,359,256,254,-1,134,258,143,-1,134,241,258,-1,16,352,253,-1,352,16,15,-1,236,239,237,-1,239,236,240,-1,450,37,36,-1,37,450,449,-1,494,226,501,-1,494,227,226,-1,457,504,347,-1,504,457,277,-1,47,58,288,-1,58,47,482,-1,325,292,324,-1,325,290,292,-1,70,74,73,-1,70,84,74,-1,203,422,205,-1,203,423,422,-1,199,470,22,-1,199,468,470,-1,196,298,197,-1,196,297,298,-1,298,33,224,-1,298,189,33,-1,294,191,467,-1,294,295,191,-1,188,192,194,-1,188,190,192,-1,455,194,452,-1,194,455,454,-1,34,467,191,-1,34,267,467,-1,33,188,34,-1,189,188,33,-1,493,369,492,-1,493,187,369,-1,18,185,161,-1,17,185,18,-1,175,147,462,-1,147,175,145,-1,106,181,371,-1,181,106,108,-1,176,474,12,-1,176,20,474,-1,181,491,368,-1,491,181,182,-1,159,408,407,-1,158,408,159,-1,152,485,155,-1,152,87,485,-1,148,373,400,-1,148,150,373,-1,365,246,251,-1,243,246,365,-1,122,128,126,-1,128,122,124,-1,356,157,490,-1,119,157,356,-1,394,383,385,-1,394,378,383,-1,111,103,102,-1,111,113,103,-1,269,351,465,-1,268,351,269,-1,145,104,146,-1,145,102,104,-1,387,395,388,-1,396,395,387,-1,97,460,464,-1,96,460,97,-1,484,487,343,-1,484,486,487,-1,221,316,321,-1,316,221,320,-1,84,81,83,-1,81,84,70,-1,72,330,82,-1,330,72,416,-1,329,78,503,-1,78,329,80,-1,71,217,79,-1,73,217,71,-1,191,483,32,-1,483,191,296,-1,291,294,65,-1,291,295,294,-1,46,482,481,-1,482,46,58,-1,308,53,309,-1,53,308,51,-1,210,47,49,-1,482,47,210,-1,42,207,447,-1,42,41,207,-1,481,44,46,-1,43,44,481,-1,45,59,46,-1,338,59,45,-1,304,300,479,-1,304,301,300,-1,306,220,447,-1,220,306,303,-1,287,480,435,-1,501,480,287,-1,474,19,397,-1,19,474,20,-1,21,138,19,-1,21,165,138,-1,363,254,250,-1,363,406,254,-1,361,478,260,-1,361,360,478,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmc2_Geo_5_493_coordIndex_5()
		{
			int[] value = {279,261,477,-1,266,261,279,-1,4,475,6,-1,4,476,475,-1,472,310,309,-1,310,472,23,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc2_Geo_5_493_normalIndex_1()
		{
			int[] value = {473,485,496,-1,245,220,244,-1,220,251,244,-1,469,459,473,-1,473,476,469,-1,480,476,473,-1,223,262,189,-1,262,211,189,-1,398,475,360,-1,360,256,398,-1,270,288,247,-1,285,263,349,-1,316,222,257,-1,230,202,154,-1,230,257,202,-1,168,202,222,-1,299,309,355,-1,323,261,274,-1,489,484,364,-1,418,365,348,-1,334,301,347,-1,341,350,377,-1,227,254,218,-1,227,259,254,-1,105,70,166,-1,105,42,70,-1,371,346,325,-1,302,321,265,-1,433,393,415,-1,316,322,344,-1,322,390,344,-1,56,78,38,-1,56,79,78,-1,117,146,144,-1,206,191,139,-1,191,129,139,-1,33,56,38,-1,38,15,33,-1,122,146,133,-1,122,143,146,-1,47,64,104,-1,64,140,104,-1,22,41,10,-1,58,94,69,-1,46,50,71,-1,331,295,242,-1,197,163,209,-1,119,94,71,-1,157,109,190,-1,60,120,109,-1,75,32,66,-1,37,32,75,-1,250,238,192,-1,210,156,238,-1,121,68,174,-1,14,114,68,-1,53,121,174,-1,174,115,53,-1,14,25,114,-1,25,84,114,-1,2,40,48,-1,2,1,40,-1,48,40,32,-1,40,111,32,-1,480,451,436,-1,436,476,480,-1,40,1,68,-1,303,399,204,-1,303,401,399,-1,303,369,401,-1,303,337,351,-1,456,421,436,-1,286,291,336,-1,28,76,17,-1,28,87,76,-1,57,59,116,-1,57,9,10,-1,32,29,66,-1,29,67,66,-1,318,357,326,-1,291,351,337,-1,291,326,351,-1,214,189,200,-1,201,189,211,-1,231,170,271,-1,271,308,317,-1,106,228,120,-1,389,478,432,-1,432,352,389,-1,319,307,262,-1,239,319,296,-1,239,196,107,-1,107,197,239,-1,293,190,283,-1,107,196,130,-1,130,45,107,-1,389,327,437,-1,389,275,327,-1,327,360,437,-1,414,340,426,-1,355,306,299,-1,502,468,501,-1,407,441,331,-1,441,313,331,-1,274,354,323,-1,276,285,356,-1,220,245,227,-1,227,164,220,-1,82,31,44,-1,31,11,44,-1,403,423,481,-1,481,429,403,-1,368,489,364,-1,377,350,483,-1,350,463,483,-1,113,134,86,-1,146,110,86,-1,154,113,86,-1,144,136,117,-1,136,79,117,-1,292,233,244,-1,292,305,233,-1,105,83,42,-1,83,49,42,-1,279,295,297,-1,298,391,311,-1,328,298,234,-1,298,193,234,-1,493,434,452,-1,434,421,452,-1,454,362,383,-1,383,449,454,-1,428,416,462,-1,457,451,480,-1,427,400,424,-1,427,353,386,-1,427,486,379,-1,491,496,467,-1,386,353,405,-1,353,362,405,-1,490,499,454,-1,430,443,467,-1,430,378,443,-1,470,487,457,-1,470,443,487,-1,474,495,503,-1,503,446,474,-1,381,440,497,-1,440,504,497,-1,295,331,313,-1,388,355,414,-1,246,224,343,-1,224,345,343,-1,219,100,180,-1,100,149,180,-1,219,207,100,-1,465,482,472,-1,440,381,358,-1,381,338,358,-1,88,160,72,-1,88,179,160,-1,407,494,441,-1,407,500,494,-1,393,367,374,-1,422,375,412,-1,375,390,342,-1,375,422,390,-1,312,350,393,-1,304,280,306,-1,340,395,426,-1,340,314,395,-1,481,463,429,-1,439,419,397,-1,439,435,419,-1,320,394,380,-1,320,385,394,-1,147,166,199,-1,199,217,185,-1,185,102,199,-1,147,90,101,-1,101,73,147,-1,99,96,54,-1,63,126,147,-1,147,73,63,-1,126,83,105,-1,126,98,83,-1,89,96,125,-1,125,123,89,-1,294,191,206,-1,206,329,294,-1,82,164,135,-1,135,31,82,-1,82,148,164,-1,325,265,321,-1,85,129,95,-1,36,74,44,-1,184,137,229,-1,138,198,229,-1,289,315,229,-1,301,267,229,-1,216,184,229,-1,35,13,4,-1,277,372,248,-1,277,409,372,-1,108,39,51,-1,140,186,149,-1,149,104,140,-1,460,477,485,-1,141,205,162,-1,183,250,192,-1,183,236,250,-1,366,369,351,-1,378,425,488,-1,378,366,425,-1,460,406,477,-1,460,398,406,-1,444,467,496,-1,404,452,421,-1,421,456,404,-1,434,424,400,-1,400,373,434,-1,462,383,379,-1,379,486,462,-1,449,382,450,-1,449,416,382,-1,363,432,382,-1,432,450,382,-1,275,352,258,-1,330,282,382,-1,404,345,452,-1,215,119,109,-1,109,157,215,-1,25,2,58,-1,58,69,25,-1,3,6,22,-1,3,17,6,-1,22,115,84,-1,337,336,291,-1,22,0,53,-1,22,6,0,-1,53,115,22,-1,240,196,269,-1,240,130,196,-1,296,319,262,-1,231,303,170,-1,303,204,170,-1,189,214,152,-1,287,290,268,-1,268,284,287,-1,131,127,159,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc2_Geo_5_493_normalIndex_2()
		{
			int[] value = {128,151,167,-1,241,255,208,-1,284,268,208,-1,221,187,208,-1,173,159,208,-1,167,203,208,-1,203,241,208,-1,159,167,208,-1,208,187,173,-1,268,221,208,-1,255,284,208,-1,240,241,203,-1,203,194,240,-1,255,287,284,-1,255,269,287,-1,260,264,201,-1,271,247,308,-1,307,319,317,-1,317,308,307,-1,269,239,287,-1,269,196,239,-1,197,107,75,-1,209,210,291,-1,27,28,12,-1,27,43,28,-1,62,17,76,-1,62,6,17,-1,175,141,62,-1,62,76,175,-1,3,22,10,-1,119,224,150,-1,119,215,224,-1,428,452,330,-1,389,352,275,-1,490,450,432,-1,432,478,490,-1,490,449,450,-1,490,454,449,-1,462,486,493,-1,486,479,493,-1,379,383,362,-1,362,353,379,-1,436,373,405,-1,405,476,436,-1,427,424,479,-1,456,436,451,-1,387,399,430,-1,425,357,396,-1,425,366,357,-1,339,372,396,-1,372,442,396,-1,192,87,103,-1,141,175,205,-1,318,238,250,-1,326,238,318,-1,108,103,39,-1,103,43,39,-1,248,339,236,-1,248,372,339,-1,124,248,153,-1,124,277,248,-1,440,392,446,-1,440,358,392,-1,267,249,229,-1,315,301,229,-1,198,235,229,-1,137,138,229,-1,371,347,346,-1,137,74,138,-1,74,95,138,-1,85,95,52,-1,348,273,334,-1,348,281,273,-1,245,259,227,-1,245,253,259,-1,15,36,11,-1,36,44,11,-1,134,144,146,-1,146,86,134,-1,96,99,125,-1,23,30,5,-1,70,42,19,-1,42,49,19,-1,166,147,105,-1,98,126,63,-1,63,55,98,-1,132,73,101,-1,101,90,132,-1,253,217,259,-1,166,237,199,-1,328,402,408,-1,502,498,468,-1,498,445,468,-1,463,481,483,-1,393,350,341,-1,230,279,310,-1,412,375,393,-1,393,433,412,-1,374,415,393,-1,295,232,242,-1,34,63,73,-1,193,92,132,-1,132,234,193,-1,494,500,447,-1,65,20,80,-1,65,8,20,-1,77,179,88,-1,77,165,179,-1,497,482,407,-1,333,272,207,-1,272,165,207,-1,24,72,54,-1,54,55,24,-1,104,149,100,-1,100,35,104,-1,149,186,246,-1,482,500,407,-1,482,458,500,-1,381,497,407,-1,443,378,488,-1,488,487,443,-1,456,487,474,-1,401,369,430,-1,444,477,406,-1,256,214,200,-1,427,479,486,-1,427,379,353,-1,427,386,400,-1,434,479,424,-1,434,493,479,-1,405,454,469,-1,405,362,454,-1,428,462,452,-1,462,493,452,-1,469,454,499,-1,328,261,323,-1,328,234,261,-1,97,54,72,-1,126,105,147,-1,237,166,70,-1,70,135,237,-1,294,433,302,-1,294,412,433,-1,376,292,365,-1,376,305,292,-1,117,133,146,-1,146,143,110,-1,310,322,230,-1,113,176,134,-1,113,168,176,-1,341,367,393,-1,377,483,489,-1,489,368,377,-1,423,484,481,-1,423,418,484,-1,148,82,74,-1,82,44,74,-1,235,289,229,-1,135,164,218,-1,237,254,199,-1,188,172,91,-1,274,356,354,-1,274,276,356,-1,395,441,494,-1,494,498,395,-1,461,501,468,-1,464,492,471,-1,461,439,471,-1,461,435,439,-1,417,448,409,-1,106,158,228,-1,158,243,228,-1,45,142,46,-1,45,130,142,-1,345,330,452,-1,215,157,330,-1,157,282,330,-1,120,60,106,-1,60,81,106,-1,317,303,231,-1,317,335,303,-1,239,197,286,-1,286,319,239,-1,437,478,389,-1,475,478,360,-1,478,437,360,-1,271,317,231,-1,288,308,247,-1,288,307,308,-1,189,201,200,-1,291,238,326,-1,108,51,153,-1,51,124,153,-1,103,183,192,-1,45,46,37,-1,57,116,155,-1,57,10,59,-1,192,175,76,-1,76,87,192,-1,210,238,291,-1,319,335,317,-1,303,335,337,-1,335,336,337,-1,303,351,369,-1,401,430,399,-1,247,271,170,-1,121,111,68,-1,37,48,32,-1,48,37,46,-1,46,2,48,-1,2,25,14,-1,14,1,2,-1,14,68,1,-1,29,32,111,-1,68,114,174,-1,40,68,111,-1,29,53,0,-1,192,238,175,-1,238,205,175,-1,162,205,238,-1,238,156,162,-1,190,109,120,-1,81,50,118,-1,81,60,50,-1,46,58,2,-1,58,46,71,-1,71,94,58,-1,22,84,41,-1,178,150,224,-1,404,343,345,-1,47,104,35,-1,23,19,49,-1,23,5,19,-1,33,5,30,-1,143,123,125,-1,143,122,123,-1,97,99,54,-1,97,112,99,-1,134,136,144,-1,134,176,136,-1,322,310,390,-1,310,342,390,-1,302,415,321,-1,302,433,415,-1,350,312,361,-1,227,218,164,-1,418,364,484,-1,195,274,188,-1,195,276,274,-1,93,182,195,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc2_Geo_5_493_normalIndex_3()
		{
			int[] value = {322,257,230,-1,322,316,257,-1,257,222,202,-1,222,344,212,-1,222,316,344,-1,225,320,263,-1,320,349,263,-1,320,380,349,-1,356,349,411,-1,356,285,349,-1,398,264,406,-1,398,256,264,-1,262,226,211,-1,469,476,405,-1,469,499,459,-1,216,229,249,-1,253,244,233,-1,253,245,244,-1,473,459,485,-1,491,473,496,-1,491,480,473,-1,233,217,253,-1,217,233,225,-1,216,252,213,-1,216,249,252,-1,504,482,497,-1,504,472,482,-1,466,495,453,-1,503,495,466,-1,264,200,201,-1,256,200,264,-1,260,387,444,-1,260,270,387,-1,419,445,447,-1,419,435,445,-1,413,447,438,-1,447,413,419,-1,225,305,320,-1,233,305,225,-1,376,403,385,-1,376,423,403,-1,168,212,176,-1,168,222,212,-1,385,397,394,-1,397,385,403,-1,348,364,418,-1,348,359,364,-1,368,359,370,-1,368,364,359,-1,310,280,342,-1,310,278,280,-1,74,52,95,-1,74,36,52,-1,110,99,112,-1,110,125,99,-1,110,143,125,-1,30,122,33,-1,122,30,123,-1,98,54,96,-1,54,98,55,-1,89,49,83,-1,89,23,49,-1,4,8,7,-1,8,4,13,-1,26,21,27,-1,21,26,18,-1,384,343,404,-1,384,324,343,-1,118,194,151,-1,142,194,118,-1,60,71,50,-1,60,119,71,-1,60,109,119,-1,61,29,0,-1,67,29,61,-1,111,53,29,-1,111,121,53,-1,41,25,69,-1,41,84,25,-1,434,436,421,-1,434,373,436,-1,12,10,9,-1,12,3,10,-1,155,64,57,-1,64,155,140,-1,45,75,107,-1,45,37,75,-1,103,153,183,-1,103,108,153,-1,363,352,432,-1,332,352,363,-1,444,264,260,-1,444,406,264,-1,270,399,387,-1,204,399,270,-1,215,345,224,-1,345,215,330,-1,243,161,258,-1,158,161,243,-1,275,214,327,-1,214,275,177,-1,420,448,417,-1,420,458,448,-1,397,429,439,-1,403,429,397,-1,435,468,445,-1,435,461,468,-1,388,464,361,-1,388,492,464,-1,464,429,463,-1,464,439,429,-1,464,471,439,-1,498,426,395,-1,502,426,498,-1,313,297,295,-1,313,314,297,-1,195,91,93,-1,195,188,91,-1,484,483,481,-1,484,489,483,-1,218,237,135,-1,237,218,254,-1,289,265,325,-1,235,265,289,-1,206,176,212,-1,139,176,206,-1,139,136,176,-1,422,344,390,-1,422,329,344,-1,325,415,374,-1,325,321,415,-1,123,23,89,-1,23,123,30,-1,374,371,325,-1,374,367,371,-1,97,160,171,-1,160,97,72,-1,417,311,420,-1,417,300,311,-1,300,124,145,-1,124,300,277,-1,480,470,457,-1,480,491,470,-1,496,477,444,-1,496,485,477,-1,487,495,474,-1,488,495,487,-1,414,492,388,-1,414,501,492,-1,100,13,35,-1,100,77,13,-1,24,88,72,-1,24,16,88,-1,219,333,207,-1,219,324,333,-1,165,266,179,-1,165,272,266,-1,171,242,232,-1,171,160,242,-1,266,331,242,-1,338,331,266,-1,13,20,8,-1,13,16,20,-1,20,92,80,-1,20,34,92,-1,65,169,145,-1,65,80,169,-1,431,458,420,-1,500,458,431,-1,169,298,311,-1,169,193,298,-1,391,328,408,-1,391,298,328,-1,132,34,73,-1,92,34,132,-1,24,63,34,-1,24,55,63,-1,279,278,310,-1,279,297,278,-1,361,463,350,-1,463,361,464,-1,438,410,413,-1,410,438,408,-1,408,411,410,-1,408,402,411,-1,285,185,263,-1,182,185,285,-1,402,356,411,-1,354,356,402,-1,132,261,234,-1,261,132,172,-1,102,91,90,-1,102,93,91,-1,90,172,132,-1,90,91,172,-1,135,19,31,-1,135,70,19,-1,11,33,15,-1,33,11,5,-1,86,112,154,-1,110,112,86,-1,212,329,206,-1,212,344,329,-1,78,52,38,-1,78,85,52,-1,251,273,281,-1,251,252,273,-1,181,138,95,-1,138,181,198,-1,315,325,346,-1,315,289,325,-1,273,301,334,-1,301,273,267,-1,184,213,148,-1,216,213,184,-1,465,458,482,-1,458,465,448,-1,145,51,65,-1,145,124,51,-1,333,358,272,-1,358,333,392,-1,455,453,442,-1,455,466,453,-1,324,392,333,-1,392,324,384,-1,47,4,18,-1,4,47,35,-1,183,248,236,-1,248,183,153,-1,39,27,21,-1,39,43,27,-1,250,339,318,-1,339,250,236,-1,425,442,453,-1,442,425,396,-1,326,366,351,-1,326,357,366,-1,485,499,460,-1,485,459,499,-1,478,499,490,-1,475,499,478,-1,283,243,332,-1,228,243,283,-1,382,428,330,-1,382,416,428,-1,228,190,120,-1,228,283,190,-1,178,116,150,-1,116,178,155,-1,27,9,26,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmc2_Geo_5_493_normalIndex_4()
		{
			int[] value = {27,12,9,-1,69,10,41,-1,59,10,69,-1,61,141,162,-1,62,141,61,-1,28,103,87,-1,103,28,43,-1,210,163,156,-1,209,163,210,-1,296,287,239,-1,287,296,290,-1,201,226,260,-1,211,226,201,-1,161,131,177,-1,131,161,127,-1,106,128,158,-1,106,81,128,-1,269,241,240,-1,241,269,255,-1,187,223,189,-1,221,223,187,-1,128,159,127,-1,167,159,128,-1,152,187,189,-1,187,152,173,-1,221,290,223,-1,268,290,221,-1,81,151,128,-1,81,118,151,-1,158,127,161,-1,127,158,128,-1,177,152,214,-1,152,177,131,-1,223,296,262,-1,223,290,296,-1,130,194,142,-1,194,130,240,-1,66,156,163,-1,66,67,156,-1,0,62,61,-1,6,62,0,-1,94,150,69,-1,94,119,150,-1,178,140,155,-1,178,186,140,-1,116,69,150,-1,59,69,116,-1,324,246,343,-1,219,246,324,-1,293,382,282,-1,293,363,382,-1,332,258,352,-1,258,332,243,-1,443,491,467,-1,443,470,491,-1,474,404,456,-1,474,384,404,-1,18,64,47,-1,64,18,26,-1,21,51,39,-1,51,21,7,-1,446,384,474,-1,446,392,384,-1,442,409,455,-1,372,409,442,-1,77,207,165,-1,77,100,207,-1,7,65,51,-1,65,7,8,-1,300,409,277,-1,417,409,300,-1,465,466,455,-1,465,472,466,-1,148,137,184,-1,148,74,137,-1,252,267,273,-1,267,252,249,-1,235,181,265,-1,198,181,235,-1,191,265,181,-1,294,265,191,-1,294,302,265,-1,148,220,164,-1,220,148,213,-1,139,85,78,-1,85,139,129,-1,202,113,154,-1,168,113,202,-1,112,171,154,-1,171,112,97,-1,102,147,199,-1,102,90,147,-1,182,102,185,-1,102,182,93,-1,323,402,328,-1,354,402,323,-1,410,349,380,-1,410,411,349,-1,281,244,251,-1,281,292,244,-1,413,380,394,-1,380,413,410,-1,292,348,365,-1,292,281,348,-1,445,494,447,-1,498,494,445,-1,297,299,278,-1,299,297,309,-1,342,304,375,-1,342,280,304,-1,232,279,230,-1,232,295,279,-1,431,408,438,-1,431,391,408,-1,145,311,300,-1,145,169,311,-1,80,193,169,-1,92,193,80,-1,34,16,24,-1,34,20,16,-1,338,272,358,-1,272,338,266,-1,154,232,230,-1,154,171,232,-1,242,179,266,-1,160,179,242,-1,77,16,13,-1,16,77,88,-1,219,149,246,-1,149,219,180,-1,331,381,407,-1,331,338,381,-1,446,504,440,-1,446,503,504,-1,366,430,369,-1,366,378,430,-1,451,487,456,-1,451,457,487,-1,475,460,499,-1,460,475,398,-1,383,416,449,-1,416,383,462,-1,172,274,261,-1,274,172,188,-1,420,391,431,-1,420,311,391,-1,448,455,409,-1,455,448,465,-1,341,371,367,-1,371,341,370,-1,329,412,294,-1,329,422,412,-1,56,117,79,-1,56,133,117,-1,31,5,11,-1,31,19,5,-1,276,182,285,-1,276,195,182,-1,441,314,313,-1,441,395,314,-1,314,309,297,-1,314,340,309,-1,312,306,361,-1,312,304,306,-1,414,502,501,-1,414,426,502,-1,471,501,461,-1,501,471,492,-1,355,361,306,-1,355,388,361,-1,309,414,355,-1,340,414,309,-1,177,258,161,-1,177,275,258,-1,256,327,214,-1,360,327,256,-1,319,336,335,-1,336,319,286,-1,157,293,282,-1,293,157,190,-1,307,226,262,-1,307,288,226,-1,293,332,363,-1,332,293,283,-1,357,339,396,-1,318,339,357,-1,57,26,9,-1,57,64,26,-1,28,3,12,-1,28,17,3,-1,373,386,405,-1,400,386,373,-1,174,84,115,-1,84,174,114,-1,162,67,61,-1,156,67,162,-1,173,131,159,-1,173,152,131,-1,75,163,197,-1,75,66,163,-1,224,186,178,-1,246,186,224,-1,286,209,291,-1,286,197,209,-1,151,203,167,-1,194,203,151,-1,50,142,118,-1,46,142,50,-1,7,18,4,-1,7,21,18,-1,83,96,89,-1,96,83,98,-1,133,33,122,-1,33,133,56,-1,38,36,15,-1,36,38,52,-1,95,191,181,-1,191,95,129,-1,78,136,139,-1,79,136,78,-1,306,278,299,-1,278,306,280,-1,375,312,393,-1,375,304,312,-1,347,370,359,-1,370,347,371,-1,199,259,217,-1,259,199,254,-1,368,341,377,-1,370,341,368,-1,365,423,376,-1,365,418,423,-1,359,334,347,-1,348,334,359,-1,301,346,347,-1,315,346,301,-1,394,419,413,-1,394,397,419,-1,385,305,376,-1,305,385,320,-1,500,438,447,-1,431,438,500,-1,226,270,260,-1,270,226,288,-1,247,204,270,-1,247,170,204,-1,444,430,467,-1,444,387,430,-1,488,453,495,-1,488,425,453,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmc2_Geo_5_493_normalIndex_5()
		{
			int[] value = {472,503,466,-1,504,503,472,-1,220,252,251,-1,220,213,252,-1,225,185,217,-1,185,225,263,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc3_Geo_5_499_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,5,6,3,-1,6,7,3,-1,8,9,10,-1,11,12,13,-1,14,15,16,-1,16,17,14,-1,18,19,20,-1,18,21,19,-1,22,23,24,-1,22,25,23,-1,26,27,28,-1,26,29,27,-1,30,31,32,-1,30,33,31,-1,34,35,36,-1,35,37,36,-1,38,39,40,-1,39,41,40,-1,42,43,44,-1,45,46,47,-1,45,48,46,-1,49,50,51,-1,51,52,49,-1,53,54,55,-1,56,57,58,-1,56,59,57,-1,60,61,62,-1,60,63,61,-1,57,59,64,-1,65,66,67,-1,65,68,66,-1,59,56,69,-1,61,63,70,-1,63,71,70,-1,59,69,61,-1,72,73,74,-1,74,75,72,-1,76,77,78,-1,73,79,74,-1,73,80,79,-1,79,81,82,-1,79,80,81,-1,83,0,76,-1,84,85,50,-1,85,55,50,-1,50,49,84,-1,86,85,87,-1,87,88,86,-1,89,90,91,-1,89,92,90,-1,93,94,95,-1,96,97,98,-1,97,99,98,-1,100,99,101,-1,100,102,98,-1,100,103,104,-1,100,101,105,-1,106,107,108,-1,107,109,108,-1,106,108,110,-1,110,111,106,-1,112,113,114,-1,114,115,112,-1,116,117,118,-1,119,120,121,-1,122,123,124,-1,125,126,127,-1,125,128,126,-1,110,129,130,-1,130,131,110,-1,132,133,9,-1,132,119,133,-1,134,135,136,-1,134,70,135,-1,137,118,117,-1,137,108,118,-1,138,139,140,-1,138,58,139,-1,141,142,143,-1,143,144,141,-1,145,28,27,-1,146,147,145,-1,148,149,150,-1,148,151,149,-1,152,65,67,-1,153,154,155,-1,156,154,157,-1,158,154,159,-1,160,161,162,-1,4,163,5,-1,4,24,163,-1,164,165,166,-1,65,152,167,-1,152,168,167,-1,169,170,171,-1,171,172,169,-1,173,174,175,-1,176,177,178,-1,176,179,177,-1,180,181,182,-1,163,183,13,-1,184,185,186,-1,186,187,184,-1,188,189,190,-1,191,175,192,-1,193,194,175,-1,191,195,175,-1,196,197,175,-1,198,199,175,-1,200,201,175,-1,202,203,175,-1,204,205,206,-1,206,207,204,-1,25,17,208,-1,209,16,210,-1,211,212,213,-1,211,214,212,-1,183,165,215,-1,163,216,217,-1,216,218,217,-1,152,148,168,-1,148,219,168,-1,220,66,221,-1,220,67,66,-1,159,222,158,-1,222,223,158,-1,156,224,225,-1,156,157,224,-1,226,68,222,-1,226,66,68,-1,161,227,162,-1,228,229,230,-1,231,178,177,-1,178,232,233,-1,178,231,232,-1,146,234,235,-1,236,43,30,-1,38,237,42,-1,44,43,236,-1,189,43,238,-1,239,43,240,-1,33,43,241,-1,236,30,32,-1,32,242,236,-1,243,244,93,-1,243,189,188,-1,243,240,189,-1,28,245,246,-1,28,145,245,-1,22,247,14,-1,247,248,14,-1,249,250,251,-1,249,252,250,-1,253,254,149,-1,254,255,149,-1,20,256,257,-1,150,219,148,-1,214,19,21,-1,258,259,260,-1,260,261,258,-1,260,262,261,-1,136,130,263,-1,264,265,91,-1,264,266,265,-1,115,114,267,-1,1,0,268,-1,268,269,270,-1,72,83,73,-1,72,0,83,-1,271,272,273,-1,274,275,276,-1,274,277,275,-1,170,169,278,-1,278,279,170,-1,280,281,282,-1,132,9,283,-1,284,285,121,-1,286,121,287,-1,119,121,288,-1,289,121,290,-1,291,289,292,-1,289,293,292,-1,122,124,142,-1,294,124,87,-1,58,138,56,-1,295,292,134,-1,134,263,295,-1,130,295,263,-1,130,296,295,-1,264,297,97,-1,297,298,97,-1,299,300,301,-1,301,302,299,-1,303,304,305,-1,304,306,305,-1,307,308,309,-1,308,310,309,-1,311,69,56,-1,296,130,129,-1,292,312,134,-1,313,314,141,-1,313,126,314,-1,291,121,289,-1,290,121,120,-1,286,288,121,-1,287,121,285,-1,284,121,291,-1,315,280,282,-1,282,316,315,-1,125,281,128,-1,79,82,317,-1,318,319,317,-1,268,0,269,-1,320,321,322,-1,323,324,325,-1,326,327,328,-1,136,263,134,-1,261,329,330,-1,261,262,329,-1,331,332,60,-1,333,334,335,-1,335,336,333,-1,337,214,211,-1,337,19,214,-1,151,338,149,-1,339,31,33,-1,30,43,33,-1,241,43,239,-1,240,43,189,-1,238,43,42,-1,189,238,340,-1,340,190,189,-1,233,341,342,-1,233,232,341,-1,231,184,187,-1,231,343,184,-1,344,222,159,-1,344,226,222,-1,156,184,155,-1,156,225,184,-1,338,67,220,-1,338,151,67,-1,213,345,168,-1,345,167,168,-1,165,217,346,-1,165,183,217,-1,11,213,212,-1,11,345,213,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc3_Geo_5_499_coordIndex_2()
		{
			int[] value = {41,347,40,-1,210,348,190,-1,349,350,351,-1,351,34,349,-1,352,353,160,-1,160,354,352,-1,225,46,185,-1,185,184,225,-1,355,27,29,-1,203,200,175,-1,201,198,175,-1,199,196,175,-1,197,173,175,-1,174,192,175,-1,195,193,175,-1,194,202,175,-1,356,226,343,-1,188,348,357,-1,188,190,348,-1,357,15,358,-1,357,348,15,-1,164,215,165,-1,359,360,321,-1,321,327,359,-1,282,281,125,-1,361,68,167,-1,13,183,11,-1,159,154,344,-1,362,154,158,-1,155,154,156,-1,344,154,153,-1,186,230,235,-1,235,363,186,-1,364,234,146,-1,129,108,137,-1,129,110,108,-1,136,135,365,-1,128,314,126,-1,128,366,314,-1,367,368,123,-1,368,88,123,-1,114,113,369,-1,369,322,114,-1,72,269,0,-1,170,279,370,-1,279,371,370,-1,372,325,109,-1,109,107,372,-1,325,372,297,-1,297,323,325,-1,100,105,103,-1,100,104,102,-1,100,98,99,-1,96,98,102,-1,102,373,96,-1,298,101,99,-1,99,97,298,-1,298,105,101,-1,298,374,105,-1,375,376,377,-1,377,253,375,-1,256,20,378,-1,20,19,378,-1,255,309,379,-1,309,380,379,-1,90,381,323,-1,264,91,90,-1,86,55,85,-1,382,277,274,-1,382,383,277,-1,81,383,382,-1,81,384,383,-1,384,385,386,-1,386,76,78,-1,271,273,387,-1,170,370,388,-1,290,120,127,-1,83,80,73,-1,83,385,80,-1,78,383,386,-1,383,384,386,-1,77,389,78,-1,311,138,331,-1,311,56,138,-1,69,311,62,-1,71,135,70,-1,331,60,311,-1,60,62,311,-1,65,167,68,-1,69,62,61,-1,390,140,86,-1,139,53,55,-1,362,157,154,-1,391,246,41,-1,36,37,203,-1,392,393,394,-1,393,395,394,-1,396,232,397,-1,396,341,232,-1,393,398,395,-1,217,183,163,-1,24,23,163,-1,23,216,163,-1,399,256,400,-1,399,257,256,-1,401,7,6,-1,402,248,247,-1,403,244,243,-1,401,6,12,-1,6,5,12,-1,89,404,328,-1,8,10,272,-1,317,319,74,-1,74,79,317,-1,319,75,74,-1,405,406,407,-1,407,319,318,-1,407,406,319,-1,268,408,333,-1,268,270,408,-1,75,406,409,-1,75,319,406,-1,324,381,369,-1,324,323,381,-1,112,410,113,-1,411,410,112,-1,412,413,405,-1,412,414,413,-1,405,409,406,-1,409,405,413,-1,92,328,327,-1,89,328,92,-1,404,91,415,-1,404,89,91,-1,326,404,416,-1,326,328,404,-1,244,417,418,-1,417,244,403,-1,7,402,3,-1,250,402,7,-1,13,5,163,-1,12,5,13,-1,419,117,420,-1,117,419,421,-1,417,249,418,-1,417,252,249,-1,247,3,402,-1,247,4,3,-1,252,358,248,-1,252,417,358,-1,186,397,187,-1,363,397,186,-1,341,398,393,-1,341,396,398,-1,393,342,341,-1,342,393,392,-1,204,347,205,-1,204,40,347,-1,48,351,422,-1,48,423,351,-1,224,362,424,-1,224,157,362,-1,45,425,227,-1,45,47,425,-1,164,361,167,-1,164,166,361,-1,426,427,428,-1,426,429,427,-1,185,230,186,-1,228,230,185,-1,382,301,430,-1,301,382,274,-1,55,140,139,-1,55,86,140,-1,57,54,53,-1,57,64,54,-1,277,78,389,-1,383,78,277,-1,386,83,76,-1,386,385,83,-1,281,370,371,-1,280,370,281,-1,280,388,370,-1,388,280,275,-1,431,276,315,-1,431,302,276,-1,300,271,387,-1,271,300,299,-1,275,389,388,-1,277,389,275,-1,317,430,318,-1,430,317,82,-1,367,122,432,-1,122,367,123,-1,294,49,143,-1,49,294,84,-1,323,264,90,-1,323,297,264,-1,415,265,433,-1,91,265,415,-1,377,434,435,-1,377,436,434,-1,309,254,307,-1,254,309,255,-1,437,379,380,-1,379,437,438,-1,303,378,439,-1,378,303,256,-1,440,305,441,-1,400,305,440,-1,442,436,181,-1,434,436,442,-1,443,444,445,-1,446,444,443,-1,304,439,335,-1,304,303,439,-1,253,435,254,-1,377,435,253,-1,447,326,330,-1,448,326,447,-1,449,445,444,-1,450,445,449,-1,116,451,452,-1,116,118,451,-1,453,308,454,-1,455,308,453,-1,456,105,374,-1,456,103,105,-1,102,457,373,-1,457,102,104,-1,458,115,267,-1,115,458,459,-1,122,141,314,-1,122,142,141,-1,366,279,432,-1,279,366,371,-1,411,460,410,-1,460,411,461,-1,75,269,72,-1,270,269,75,-1,2,76,0,-1,171,76,2,-1,324,460,325,-1,410,460,324,-1,331,259,332,-1,260,259,331,-1,368,86,88,-1,368,390,86,-1,132,316,462,-1,316,132,283,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc3_Geo_5_499_coordIndex_3()
		{
			int[] value = {365,463,464,-1,135,463,365,-1,465,466,10,-1,466,465,420,-1,130,365,131,-1,130,136,365,-1,293,52,292,-1,52,293,144,-1,347,467,468,-1,347,245,467,-1,450,469,94,-1,449,469,450,-1,363,234,470,-1,234,363,235,-1,355,364,27,-1,355,471,364,-1,472,180,182,-1,472,473,180,-1,474,475,376,-1,474,476,475,-1,342,477,233,-1,477,342,478,-1,479,376,375,-1,479,474,376,-1,348,16,15,-1,348,210,16,-1,480,481,482,-1,481,480,483,-1,484,485,162,-1,218,485,484,-1,217,484,346,-1,217,218,484,-1,337,219,150,-1,337,211,219,-1,282,462,316,-1,125,462,282,-1,405,486,412,-1,486,405,273,-1,487,197,488,-1,487,173,197,-1,200,37,352,-1,37,200,203,-1,198,354,489,-1,354,198,201,-1,490,199,491,-1,490,196,199,-1,492,195,191,-1,492,207,195,-1,493,193,206,-1,493,194,193,-1,36,202,494,-1,36,203,202,-1,226,221,66,-1,221,226,356,-1,495,360,359,-1,495,441,360,-1,479,221,179,-1,220,221,479,-1,345,164,167,-1,345,215,164,-1,165,428,166,-1,165,346,428,-1,243,357,403,-1,243,188,357,-1,344,343,226,-1,153,343,344,-1,496,497,498,-1,496,499,497,-1,340,42,237,-1,340,238,42,-1,174,487,500,-1,174,173,487,-1,355,501,395,-1,355,31,501,-1,355,29,31,-1,422,228,48,-1,422,229,228,-1,502,209,498,-1,500,209,502,-1,349,493,503,-1,493,349,494,-1,352,35,353,-1,35,352,37,-1,160,489,354,-1,160,504,489,-1,505,490,483,-1,490,505,488,-1,506,488,505,-1,488,506,487,-1,350,503,468,-1,350,349,503,-1,353,423,507,-1,423,353,35,-1,204,499,40,-1,497,499,204,-1,468,205,347,-1,205,468,503,-1,343,155,184,-1,155,343,153,-1,424,429,425,-1,429,424,223,-1,346,426,428,-1,426,346,484,-1,176,476,474,-1,176,477,476,-1,508,469,473,-1,508,509,469,-1,470,397,363,-1,470,396,397,-1,396,471,398,-1,396,470,471,-1,244,510,93,-1,244,511,510,-1,339,241,95,-1,339,33,241,-1,237,40,499,-1,237,38,40,-1,391,28,246,-1,391,26,28,-1,422,350,512,-1,422,351,350,-1,41,245,347,-1,41,246,245,-1,244,513,511,-1,244,418,513,-1,480,25,208,-1,480,23,25,-1,514,250,7,-1,514,251,250,-1,434,515,516,-1,442,515,434,-1,438,150,379,-1,150,438,337,-1,517,400,440,-1,399,400,517,-1,181,475,182,-1,181,436,475,-1,375,149,338,-1,375,253,149,-1,399,511,513,-1,399,517,511,-1,511,518,510,-1,517,518,511,-1,519,390,368,-1,520,390,519,-1,519,169,521,-1,519,278,169,-1,268,310,1,-1,268,522,310,-1,523,524,525,-1,523,172,524,-1,1,308,455,-1,1,310,308,-1,453,526,525,-1,453,527,526,-1,520,140,390,-1,138,140,520,-1,138,528,331,-1,138,520,528,-1,527,262,526,-1,262,527,329,-1,330,529,447,-1,529,330,329,-1,135,332,463,-1,71,332,135,-1,433,110,131,-1,110,433,265,-1,416,415,530,-1,416,404,415,-1,448,327,326,-1,448,359,327,-1,267,304,458,-1,304,267,306,-1,320,369,381,-1,320,322,369,-1,107,374,372,-1,374,107,456,-1,373,106,111,-1,373,457,106,-1,296,137,531,-1,296,129,137,-1,109,118,108,-1,118,109,451,-1,267,322,321,-1,114,322,267,-1,486,452,461,-1,452,486,532,-1,459,334,533,-1,458,334,459,-1,407,273,405,-1,407,387,273,-1,385,81,80,-1,384,81,385,-1,420,133,419,-1,420,465,133,-1,288,421,419,-1,288,286,421,-1,531,285,296,-1,287,285,531,-1,296,284,295,-1,296,285,284,-1,126,290,127,-1,290,126,313,-1,128,371,366,-1,128,281,371,-1,515,447,529,-1,515,534,447,-1,535,536,516,-1,536,535,454,-1,309,522,380,-1,309,310,522,-1,335,437,336,-1,439,437,335,-1,441,306,360,-1,305,306,441,-1,380,336,437,-1,380,522,336,-1,516,529,535,-1,516,515,529,-1,537,359,448,-1,495,359,537,-1,131,464,433,-1,464,131,365,-1,84,87,85,-1,294,87,84,-1,432,278,367,-1,432,279,278,-1,289,313,293,-1,313,289,290,-1,144,49,52,-1,49,144,143,-1,284,292,295,-1,291,292,284,-1,286,531,421,-1,286,287,531,-1,119,419,133,-1,119,288,419,-1,388,77,170,-1,388,389,77,-1,9,431,283,-1,431,9,8,-1,431,272,271,-1,272,431,8,-1,77,171,170,-1,77,76,171,-1,533,333,408,-1,334,333,533,-1,272,466,532,-1,272,10,466,-1,452,466,116,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmc3_Geo_5_499_coordIndex_4()
		{
			int[] value = {452,532,466,-1,461,412,486,-1,411,412,461,-1,451,325,460,-1,451,109,325,-1,421,137,117,-1,421,531,137,-1,457,107,106,-1,456,107,457,-1,266,373,111,-1,96,373,266,-1,372,298,297,-1,374,298,372,-1,360,267,321,-1,360,306,267,-1,320,327,321,-1,320,92,327,-1,530,433,464,-1,433,530,415,-1,97,266,264,-1,97,96,266,-1,463,259,538,-1,259,463,332,-1,329,535,529,-1,527,535,329,-1,526,260,539,-1,260,526,262,-1,528,523,539,-1,523,528,521,-1,454,527,453,-1,454,535,527,-1,455,2,1,-1,455,524,2,-1,524,171,2,-1,524,172,171,-1,519,367,278,-1,368,367,519,-1,528,519,521,-1,519,528,520,-1,510,445,450,-1,445,510,518,-1,20,540,18,-1,540,20,257,-1,436,376,475,-1,436,377,376,-1,180,444,181,-1,449,444,180,-1,443,495,537,-1,443,541,495,-1,337,378,19,-1,337,438,378,-1,379,149,255,-1,149,379,150,-1,435,516,536,-1,434,516,435,-1,442,534,515,-1,446,534,442,-1,18,514,21,-1,18,251,514,-1,15,248,358,-1,15,14,248,-1,23,482,216,-1,482,23,480,-1,18,249,251,-1,540,249,18,-1,403,358,417,-1,403,357,358,-1,512,468,467,-1,512,350,468,-1,230,542,235,-1,230,229,542,-1,542,467,147,-1,542,512,467,-1,39,391,41,-1,39,242,391,-1,210,340,496,-1,210,190,340,-1,239,243,93,-1,239,240,243,-1,241,93,95,-1,241,239,93,-1,44,242,39,-1,236,242,44,-1,94,509,95,-1,509,94,469,-1,95,394,339,-1,95,509,394,-1,146,27,364,-1,146,145,27,-1,231,397,232,-1,231,187,397,-1,392,509,508,-1,394,509,392,-1,476,478,472,-1,476,477,478,-1,179,474,479,-1,176,474,179,-1,48,507,423,-1,507,48,45,-1,218,482,485,-1,482,218,216,-1,68,427,222,-1,361,427,68,-1,223,427,429,-1,223,222,427,-1,46,224,47,-1,225,224,46,-1,362,223,424,-1,158,223,362,-1,212,21,514,-1,21,212,214,-1,496,209,210,-1,209,496,498,-1,160,507,161,-1,353,507,160,-1,500,506,209,-1,506,500,487,-1,483,491,481,-1,483,490,491,-1,491,504,481,-1,489,504,491,-1,34,494,349,-1,494,34,36,-1,503,206,205,-1,206,503,493,-1,207,497,204,-1,492,497,207,-1,229,512,542,-1,422,512,229,-1,237,496,340,-1,496,237,499,-1,492,498,497,-1,502,498,492,-1,242,26,391,-1,26,242,32,-1,177,343,231,-1,343,177,356,-1,17,22,14,-1,22,17,25,-1,215,11,183,-1,215,345,11,-1,508,472,478,-1,472,508,473,-1,518,440,541,-1,518,517,440,-1,356,179,221,-1,179,356,177,-1,176,233,477,-1,176,178,233,-1,494,194,493,-1,494,202,194,-1,193,207,206,-1,207,193,195,-1,191,502,492,-1,502,191,192,-1,488,196,490,-1,488,197,196,-1,199,489,491,-1,489,199,198,-1,201,352,354,-1,352,201,200,-1,192,500,502,-1,500,192,174,-1,455,525,524,-1,453,525,455,-1,521,172,523,-1,521,169,172,-1,273,532,486,-1,532,273,272,-1,211,168,219,-1,211,213,168,-1,4,22,24,-1,4,247,22,-1,162,504,160,-1,162,485,504,-1,162,426,484,-1,162,227,426,-1,481,485,482,-1,504,485,481,-1,208,483,480,-1,483,208,505,-1,151,152,67,-1,152,151,148,-1,338,479,375,-1,220,479,338,-1,395,471,355,-1,471,395,398,-1,392,478,342,-1,478,392,508,-1,476,182,475,-1,476,472,182,-1,470,364,471,-1,470,234,364,-1,449,473,469,-1,180,473,449,-1,510,94,93,-1,450,94,510,-1,147,245,145,-1,467,245,147,-1,147,235,542,-1,147,146,235,-1,141,293,313,-1,141,144,293,-1,134,64,70,-1,312,64,134,-1,51,292,52,-1,51,312,292,-1,9,465,10,-1,465,9,133,-1,543,530,538,-1,543,416,530,-1,116,420,117,-1,420,116,466,-1,125,120,462,-1,125,127,120,-1,538,464,463,-1,538,530,464,-1,315,283,431,-1,315,316,283,-1,119,462,120,-1,462,119,132,-1,539,331,528,-1,331,539,260,-1,539,525,526,-1,539,523,525,-1,451,461,452,-1,451,460,461,-1,414,533,413,-1,459,533,414,-1,413,408,409,-1,533,408,413,-1,314,432,122,-1,432,314,366,-1,112,459,414,-1,112,115,459,-1,266,110,265,-1,111,110,266,-1,104,456,457,-1,456,104,103,-1,307,454,308,-1,307,536,454,-1,446,537,534,-1,443,537,446,-1,448,534,537,-1,448,447,534,-1,330,416,543,-1,330,326,416,-1,335,458,304,-1,334,458,335,-1,181,446,442,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmc3_Geo_5_499_coordIndex_5()
		{
			int[] value = {181,444,446,-1,541,441,495,-1,440,441,541,-1,256,305,400,-1,256,303,305,-1,439,438,437,-1,438,439,378,-1,536,254,435,-1,536,307,254,-1,541,445,518,-1,443,445,541,-1,92,381,90,-1,92,320,381,-1,143,124,294,-1,142,124,143,-1,87,123,88,-1,87,124,123,-1,51,55,54,-1,50,55,51,-1,299,431,271,-1,431,299,302,-1,315,275,280,-1,275,315,276,-1,300,430,301,-1,300,318,430,-1,59,70,64,-1,61,70,59,-1,71,60,332,-1,71,63,60,-1,53,58,57,-1,58,53,139,-1,51,64,312,-1,54,64,51,-1,81,430,82,-1,430,81,382,-1,274,302,301,-1,302,274,276,-1,228,46,48,-1,228,185,46,-1,425,426,227,-1,426,425,429,-1,361,428,427,-1,166,428,361,-1,45,161,507,-1,161,45,227,-1,47,424,425,-1,47,224,424,-1,423,34,351,-1,423,35,34,-1,42,39,38,-1,42,44,39,-1,339,501,31,-1,395,339,394,-1,395,501,339,-1,29,32,31,-1,32,29,26,-1,540,418,249,-1,418,540,513,-1,506,208,17,-1,505,208,506,-1,506,16,209,-1,17,16,506,-1,401,514,7,-1,514,401,212,-1,250,248,402,-1,250,252,248,-1,543,261,330,-1,258,261,543,-1,401,11,212,-1,401,12,11,-1,257,513,540,-1,257,399,513,-1,538,258,543,-1,258,538,259,-1,411,414,412,-1,411,112,414,-1,369,410,324,-1,410,369,113,-1,387,318,300,-1,318,387,407,-1,270,409,408,-1,270,75,409,-1,333,522,268,-1,336,522,333,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc3_Geo_5_499_normalIndex_1()
		{
			int[] value = {82,89,113,-1,105,163,147,-1,147,95,105,-1,95,84,105,-1,73,136,12,-1,117,177,161,-1,180,286,277,-1,277,223,180,-1,139,19,93,-1,139,50,19,-1,143,79,158,-1,143,154,79,-1,507,516,466,-1,507,519,516,-1,443,511,488,-1,443,447,511,-1,205,175,174,-1,175,156,174,-1,464,471,385,-1,471,390,385,-1,472,432,456,-1,189,238,260,-1,189,210,238,-1,310,413,371,-1,371,275,310,-1,520,514,498,-1,531,524,526,-1,531,515,524,-1,452,470,445,-1,452,450,470,-1,524,515,499,-1,170,169,153,-1,170,229,169,-1,515,531,497,-1,470,450,361,-1,450,463,361,-1,515,497,470,-1,100,78,69,-1,69,75,100,-1,44,55,20,-1,78,102,69,-1,78,80,102,-1,102,47,96,-1,102,80,47,-1,71,82,44,-1,334,394,413,-1,394,498,413,-1,413,310,334,-1,457,394,333,-1,333,370,457,-1,387,354,346,-1,387,386,354,-1,396,486,483,-1,244,309,266,-1,309,312,266,-1,367,312,419,-1,367,306,266,-1,367,529,461,-1,367,419,518,-1,423,491,401,-1,491,407,401,-1,423,401,349,-1,349,287,423,-1,219,330,338,-1,338,253,219,-1,221,291,319,-1,228,217,273,-1,115,262,246,-1,127,103,171,-1,127,39,103,-1,349,340,302,-1,302,372,349,-1,167,190,136,-1,167,228,190,-1,270,479,316,-1,270,361,479,-1,359,319,291,-1,359,401,319,-1,522,525,521,-1,522,526,525,-1,162,192,237,-1,237,226,162,-1,418,466,516,-1,406,404,418,-1,94,186,64,-1,94,129,186,-1,155,170,153,-1,193,222,199,-1,241,222,265,-1,272,222,227,-1,49,87,32,-1,163,60,147,-1,163,158,60,-1,179,17,215,-1,170,155,187,-1,155,97,187,-1,267,164,123,-1,123,249,267,-1,173,188,172,-1,426,329,389,-1,426,337,329,-1,477,485,444,-1,60,41,161,-1,232,239,311,-1,311,298,232,-1,460,467,439,-1,202,172,196,-1,204,198,172,-1,202,209,172,-1,114,146,172,-1,106,110,172,-1,152,119,172,-1,191,178,172,-1,328,323,258,-1,258,255,328,-1,154,223,141,-1,261,277,339,-1,26,81,83,-1,26,18,81,-1,41,17,86,-1,60,8,0,-1,8,1,0,-1,155,94,97,-1,94,42,97,-1,214,169,224,-1,214,153,169,-1,227,264,272,-1,264,305,272,-1,241,280,251,-1,241,265,280,-1,184,229,264,-1,184,169,229,-1,87,168,32,-1,256,314,322,-1,327,389,329,-1,389,382,405,-1,389,327,382,-1,406,411,379,-1,453,432,443,-1,464,489,472,-1,456,432,453,-1,467,432,505,-1,415,432,433,-1,447,432,436,-1,453,443,488,-1,488,481,453,-1,428,363,396,-1,428,467,460,-1,428,433,467,-1,466,388,424,-1,466,418,388,-1,143,133,180,-1,133,166,180,-1,211,99,144,-1,211,182,99,-1,292,259,186,-1,259,151,186,-1,93,150,220,-1,64,42,94,-1,18,19,50,-1,500,484,501,-1,501,517,500,-1,501,504,517,-1,316,302,234,-1,332,321,346,-1,332,203,321,-1,253,338,282,-1,89,82,61,-1,61,125,90,-1,100,71,78,-1,100,82,71,-1,21,4,34,-1,122,25,128,-1,122,13,25,-1,164,267,245,-1,245,121,164,-1,53,35,77,-1,167,136,157,-1,300,317,273,-1,289,273,315,-1,228,273,263,-1,257,273,206,-1,284,257,279,-1,257,242,279,-1,115,246,192,-1,283,246,333,-1,526,522,531,-1,274,279,270,-1,270,234,274,-1,302,274,234,-1,302,313,274,-1,332,422,309,-1,422,442,309,-1,92,101,165,-1,165,137,92,-1,149,104,288,-1,104,276,288,-1,252,225,124,-1,225,85,124,-1,482,497,531,-1,313,302,340,-1,279,324,270,-1,183,59,162,-1,183,103,59,-1,284,273,257,-1,206,273,217,-1,289,263,273,-1,315,273,317,-1,300,273,284,-1,111,53,77,-1,77,134,111,-1,127,35,39,-1,102,96,108,-1,98,67,108,-1,61,82,125,-1,397,378,374,-1,409,400,430,-1,490,410,408,-1,316,234,270,-1,517,513,538,-1,517,504,513,-1,508,476,452,-1,28,24,10,-1,10,5,28,-1,7,18,26,-1,7,19,18,-1,129,194,186,-1,506,511,447,-1,443,432,447,-1,436,432,415,-1,433,432,467,-1,505,432,472,-1,467,505,469,-1,469,439,467,-1,405,395,416,-1,405,382,395,-1,327,232,298,-1,327,235,232,-1,197,264,227,-1,197,184,264,-1,241,232,199,-1,241,251,232,-1,194,153,214,-1,194,129,153,-1,83,112,97,-1,112,187,97,-1,17,0,15,-1,17,41,0,-1,117,83,81,-1,117,112,83,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc3_Geo_5_499_normalIndex_2()
		{
			int[] value = {390,351,385,-1,339,377,439,-1,254,304,236,-1,236,205,254,-1,118,130,49,-1,49,74,118,-1,251,238,239,-1,239,232,251,-1,533,516,519,-1,178,152,172,-1,119,106,172,-1,110,114,172,-1,146,173,172,-1,188,196,172,-1,209,204,172,-1,198,191,172,-1,216,184,235,-1,460,377,403,-1,460,439,377,-1,403,286,296,-1,403,377,286,-1,179,86,17,-1,398,365,378,-1,378,410,398,-1,77,35,127,-1,285,229,187,-1,161,41,117,-1,227,222,197,-1,269,222,272,-1,199,222,241,-1,197,222,193,-1,311,322,379,-1,379,357,311,-1,480,411,406,-1,340,401,359,-1,340,349,401,-1,316,479,434,-1,39,59,103,-1,39,45,59,-1,247,368,262,-1,368,370,262,-1,338,330,393,-1,393,374,338,-1,100,125,82,-1,164,121,66,-1,121,58,66,-1,495,430,407,-1,407,491,495,-1,430,495,422,-1,422,409,430,-1,367,518,529,-1,367,461,306,-1,367,266,312,-1,244,266,306,-1,306,268,244,-1,442,419,312,-1,312,309,442,-1,442,518,419,-1,442,509,518,-1,336,420,358,-1,358,292,336,-1,150,93,22,-1,93,19,22,-1,151,124,43,-1,124,29,43,-1,354,402,409,-1,332,346,354,-1,457,498,394,-1,72,13,122,-1,72,16,13,-1,47,16,72,-1,47,62,16,-1,62,46,31,-1,31,44,20,-1,21,34,33,-1,164,66,40,-1,206,217,171,-1,71,80,78,-1,71,46,80,-1,20,16,31,-1,16,62,31,-1,55,27,20,-1,482,522,508,-1,482,531,522,-1,497,482,445,-1,463,479,361,-1,508,452,482,-1,452,445,482,-1,170,187,229,-1,497,445,470,-1,446,521,457,-1,525,520,498,-1,269,265,222,-1,459,424,390,-1,174,156,178,-1,474,493,530,-1,493,532,530,-1,375,382,366,-1,375,395,382,-1,493,478,532,-1,0,41,60,-1,158,79,60,-1,79,8,60,-1,294,150,278,-1,294,220,150,-1,126,84,95,-1,88,166,133,-1,392,363,428,-1,126,95,177,-1,95,147,177,-1,387,421,408,-1,73,12,4,-1,108,67,69,-1,69,102,108,-1,67,75,69,-1,57,38,37,-1,37,67,98,-1,37,38,67,-1,61,63,28,-1,61,90,63,-1,75,38,48,-1,75,67,38,-1,400,402,393,-1,400,409,402,-1,219,326,330,-1,213,326,219,-1,145,65,57,-1,145,135,65,-1,57,48,38,-1,48,57,65,-1,386,408,410,-1,387,408,386,-1,421,346,412,-1,421,387,346,-1,490,421,502,-1,490,408,421,-1,363,299,303,-1,299,363,392,-1,84,88,105,-1,99,88,84,-1,161,147,60,-1,177,147,161,-1,243,291,181,-1,291,243,293,-1,299,211,303,-1,299,182,211,-1,133,105,88,-1,133,163,105,-1,182,296,166,-1,182,299,296,-1,311,366,298,-1,357,366,311,-1,395,478,493,-1,395,375,478,-1,493,416,395,-1,416,493,474,-1,328,351,323,-1,328,385,351,-1,210,236,281,-1,210,195,236,-1,280,269,295,-1,280,265,269,-1,189,271,168,-1,189,260,271,-1,179,285,187,-1,179,215,285,-1,185,308,201,-1,185,290,308,-1,239,322,311,-1,256,322,239,-1,72,165,138,-1,165,72,122,-1,498,521,525,-1,498,457,521,-1,524,514,520,-1,524,499,514,-1,13,20,27,-1,16,20,13,-1,31,71,44,-1,31,46,71,-1,35,66,58,-1,53,66,35,-1,53,40,66,-1,40,53,25,-1,91,128,111,-1,91,137,128,-1,101,21,33,-1,21,101,92,-1,25,27,40,-1,13,27,25,-1,108,138,98,-1,138,108,96,-1,247,115,107,-1,115,247,262,-1,283,310,237,-1,310,283,334,-1,409,332,354,-1,409,422,332,-1,412,321,399,-1,346,321,412,-1,358,437,350,-1,358,431,437,-1,124,259,252,-1,259,124,151,-1,2,43,29,-1,43,2,3,-1,149,22,11,-1,22,149,150,-1,348,288,353,-1,278,288,348,-1,494,431,485,-1,437,431,494,-1,462,541,448,-1,543,541,462,-1,104,11,10,-1,104,149,11,-1,292,350,259,-1,358,350,292,-1,539,490,538,-1,465,490,539,-1,540,448,541,-1,455,448,540,-1,221,318,208,-1,221,319,318,-1,345,225,343,-1,231,225,345,-1,527,518,509,-1,527,529,518,-1,306,438,268,-1,438,306,461,-1,120,253,282,-1,253,120,140,-1,115,162,59,-1,115,192,162,-1,45,121,107,-1,121,45,58,-1,213,325,326,-1,325,213,212,-1,75,125,100,-1,90,125,75,-1,113,44,82,-1,123,44,113,-1,400,325,430,-1,326,325,400,-1,508,484,476,-1,501,484,508,-1,368,457,370,-1,368,446,457,-1,167,134,160,-1,134,167,157,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc3_Geo_5_499_normalIndex_3()
		{
			int[] value = {434,534,510,-1,479,534,434,-1,132,131,12,-1,131,132,181,-1,302,434,372,-1,302,316,434,-1,242,275,279,-1,275,242,226,-1,351,373,335,-1,351,388,373,-1,455,537,486,-1,540,537,455,-1,357,411,380,-1,411,357,379,-1,533,480,516,-1,533,492,480,-1,429,477,444,-1,429,451,477,-1,435,425,420,-1,435,417,425,-1,416,414,405,-1,414,416,427,-1,342,420,336,-1,342,435,420,-1,377,277,286,-1,377,339,277,-1,56,30,9,-1,30,56,52,-1,23,6,32,-1,1,6,23,-1,0,23,15,-1,0,1,23,-1,7,42,64,-1,7,26,42,-1,77,160,134,-1,127,160,77,-1,57,148,145,-1,148,57,34,-1,176,146,116,-1,176,173,146,-1,152,156,118,-1,156,152,178,-1,106,74,51,-1,74,106,119,-1,68,110,54,-1,68,114,110,-1,250,209,202,-1,250,255,209,-1,240,204,258,-1,240,198,204,-1,174,191,218,-1,174,178,191,-1,184,224,169,-1,224,184,216,-1,391,365,398,-1,391,353,365,-1,342,224,337,-1,214,224,342,-1,112,179,187,-1,112,86,179,-1,17,201,215,-1,17,15,201,-1,428,403,392,-1,428,460,403,-1,197,235,184,-1,193,235,197,-1,360,320,297,-1,360,383,320,-1,469,472,489,-1,469,505,472,-1,188,176,207,-1,188,173,176,-1,533,523,532,-1,533,511,523,-1,533,519,511,-1,281,256,210,-1,281,314,256,-1,230,261,297,-1,207,261,230,-1,254,240,301,-1,240,254,218,-1,118,175,130,-1,175,118,156,-1,49,51,74,-1,49,14,51,-1,109,68,52,-1,68,109,116,-1,200,116,109,-1,116,200,176,-1,304,301,335,-1,304,254,301,-1,130,195,159,-1,195,130,175,-1,328,383,385,-1,320,383,328,-1,335,323,351,-1,323,335,301,-1,235,199,232,-1,199,235,193,-1,295,290,271,-1,290,295,305,-1,15,185,201,-1,185,15,23,-1,426,417,435,-1,426,414,417,-1,458,537,451,-1,458,528,537,-1,380,366,357,-1,380,375,366,-1,375,492,478,-1,375,380,492,-1,363,376,396,-1,363,344,376,-1,506,436,483,-1,506,447,436,-1,489,385,383,-1,489,464,385,-1,459,466,424,-1,459,507,466,-1,281,304,341,-1,281,236,304,-1,390,388,351,-1,390,424,388,-1,363,307,344,-1,363,303,307,-1,56,154,141,-1,56,79,154,-1,76,99,84,-1,76,144,99,-1,437,496,441,-1,494,496,437,-1,3,64,43,-1,64,3,7,-1,347,278,348,-1,294,278,347,-1,485,425,444,-1,485,431,425,-1,336,186,194,-1,336,292,186,-1,294,344,307,-1,294,347,344,-1,344,381,376,-1,347,381,344,-1,356,446,368,-1,454,446,356,-1,356,267,355,-1,356,245,267,-1,61,85,89,-1,61,36,85,-1,362,248,364,-1,362,249,248,-1,89,225,231,-1,89,85,225,-1,345,473,364,-1,345,449,473,-1,454,521,446,-1,522,521,454,-1,522,475,508,-1,522,454,475,-1,449,504,473,-1,504,449,513,-1,538,512,539,-1,512,538,513,-1,479,476,534,-1,463,476,479,-1,399,349,372,-1,349,399,321,-1,502,412,503,-1,502,421,412,-1,465,410,490,-1,465,398,410,-1,282,104,120,-1,104,282,276,-1,397,393,402,-1,397,374,393,-1,491,509,495,-1,509,491,527,-1,268,423,287,-1,268,438,423,-1,313,359,331,-1,313,340,359,-1,407,319,401,-1,319,407,318,-1,282,374,378,-1,338,374,282,-1,148,208,212,-1,208,148,142,-1,140,24,70,-1,120,24,140,-1,37,34,57,-1,37,33,34,-1,46,47,80,-1,62,47,46,-1,181,190,243,-1,181,132,190,-1,263,293,243,-1,263,289,293,-1,331,317,313,-1,315,317,331,-1,313,300,274,-1,313,317,300,-1,103,206,171,-1,206,103,183,-1,39,58,45,-1,39,35,58,-1,496,539,512,-1,496,542,539,-1,440,352,441,-1,352,440,343,-1,124,36,29,-1,124,85,36,-1,10,2,5,-1,11,2,10,-1,353,276,365,-1,288,276,353,-1,29,5,2,-1,29,36,5,-1,441,512,440,-1,441,496,512,-1,468,398,465,-1,391,398,468,-1,372,510,399,-1,510,372,434,-1,334,333,394,-1,283,333,334,-1,107,245,247,-1,107,121,245,-1,257,183,242,-1,183,257,206,-1,226,310,275,-1,310,226,237,-1,300,279,274,-1,284,279,300,-1,289,331,293,-1,289,315,331,-1,228,243,190,-1,228,263,243,-1,40,55,164,-1,40,27,55,-1,136,91,157,-1,91,136,73,-1,91,4,21,-1,4,91,73,-1,55,123,164,-1,55,44,123,-1,70,28,63,-1,24,28,70,-1,4,131,142,-1,4,12,131,-1,208,131,221,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmc3_Geo_5_499_normalIndex_4()
		{
			int[] value = {208,142,131,-1,212,145,148,-1,213,145,212,-1,318,430,325,-1,318,407,430,-1,293,359,291,-1,293,331,359,-1,438,491,423,-1,527,491,438,-1,203,268,287,-1,244,268,203,-1,495,442,422,-1,509,442,495,-1,365,282,378,-1,365,276,282,-1,397,410,378,-1,397,386,410,-1,503,399,510,-1,399,503,412,-1,309,203,332,-1,309,244,203,-1,534,484,536,-1,484,534,476,-1,513,440,512,-1,449,440,513,-1,473,501,487,-1,501,473,504,-1,475,362,487,-1,362,475,355,-1,343,449,345,-1,343,440,449,-1,231,113,89,-1,231,248,113,-1,248,123,113,-1,248,249,123,-1,356,247,245,-1,368,247,356,-1,475,356,355,-1,356,475,454,-1,376,448,455,-1,448,376,381,-1,93,233,139,-1,233,93,220,-1,431,420,425,-1,431,358,420,-1,477,541,485,-1,540,541,477,-1,462,391,468,-1,462,384,391,-1,7,22,19,-1,7,3,22,-1,43,186,151,-1,186,43,64,-1,350,441,352,-1,437,441,350,-1,494,542,496,-1,543,542,494,-1,139,76,50,-1,139,144,76,-1,286,166,296,-1,286,180,166,-1,79,9,8,-1,9,79,56,-1,139,211,144,-1,233,211,139,-1,392,296,299,-1,392,403,296,-1,341,335,373,-1,341,304,335,-1,322,369,379,-1,322,314,369,-1,369,373,404,-1,369,341,373,-1,471,459,390,-1,471,481,459,-1,339,469,360,-1,339,439,469,-1,415,428,396,-1,415,433,428,-1,436,396,483,-1,436,415,396,-1,456,481,471,-1,453,481,456,-1,486,528,483,-1,528,486,537,-1,483,530,506,-1,483,528,530,-1,406,516,480,-1,406,418,516,-1,327,366,382,-1,327,298,366,-1,474,528,458,-1,530,528,474,-1,417,427,429,-1,417,414,427,-1,337,435,342,-1,426,435,337,-1,210,159,195,-1,159,210,189,-1,1,9,6,-1,9,1,8,-1,229,308,264,-1,285,308,229,-1,305,308,290,-1,305,264,308,-1,238,280,260,-1,251,280,238,-1,269,305,295,-1,272,305,269,-1,81,50,76,-1,50,81,18,-1,360,261,339,-1,261,360,297,-1,49,159,87,-1,130,159,49,-1,207,200,261,-1,200,207,176,-1,52,54,30,-1,52,68,54,-1,54,14,30,-1,51,14,54,-1,205,218,254,-1,218,205,174,-1,301,258,323,-1,258,301,240,-1,255,320,328,-1,250,320,255,-1,314,341,369,-1,281,341,314,-1,489,360,469,-1,360,489,383,-1,250,297,320,-1,230,297,250,-1,481,507,459,-1,507,481,488,-1,329,235,327,-1,235,329,216,-1,223,143,180,-1,143,223,154,-1,86,117,41,-1,86,112,117,-1,458,429,427,-1,429,458,451,-1,381,348,384,-1,381,347,348,-1,216,337,224,-1,337,216,329,-1,426,405,414,-1,426,389,405,-1,218,198,240,-1,218,191,198,-1,204,255,258,-1,255,204,209,-1,202,230,250,-1,230,202,196,-1,116,114,68,-1,116,146,114,-1,110,51,54,-1,51,110,106,-1,119,118,74,-1,118,119,152,-1,196,207,230,-1,207,196,188,-1,231,364,248,-1,345,364,231,-1,355,249,362,-1,355,267,249,-1,34,142,148,-1,142,34,4,-1,26,97,42,-1,26,83,97,-1,163,143,158,-1,163,133,143,-1,32,14,49,-1,32,6,14,-1,32,185,23,-1,32,168,185,-1,30,6,9,-1,14,6,30,-1,141,52,56,-1,52,141,109,-1,129,155,153,-1,155,129,94,-1,194,342,336,-1,214,342,194,-1,532,492,533,-1,492,532,478,-1,474,427,416,-1,427,474,458,-1,417,444,425,-1,417,429,444,-1,380,480,492,-1,380,411,480,-1,540,451,537,-1,477,451,540,-1,376,486,396,-1,455,486,376,-1,404,388,418,-1,373,388,404,-1,404,379,369,-1,404,406,379,-1,162,242,183,-1,162,226,242,-1,270,499,361,-1,324,499,270,-1,371,279,275,-1,371,324,279,-1,136,132,12,-1,132,136,190,-1,535,503,536,-1,535,502,503,-1,221,181,291,-1,181,221,131,-1,127,217,160,-1,127,171,217,-1,536,510,534,-1,536,503,510,-1,111,157,91,-1,111,134,157,-1,228,160,217,-1,160,228,167,-1,487,508,475,-1,508,487,501,-1,487,364,473,-1,487,362,364,-1,318,212,208,-1,318,325,212,-1,135,70,65,-1,140,70,135,-1,65,63,48,-1,70,63,65,-1,59,107,115,-1,107,59,45,-1,219,140,135,-1,219,253,140,-1,203,349,321,-1,287,349,203,-1,461,527,438,-1,527,461,529,-1,252,343,225,-1,252,352,343,-1,543,468,542,-1,462,468,543,-1,465,542,468,-1,465,539,542,-1,538,502,535,-1,538,490,502,-1,10,120,104,-1,24,120,10,-1,485,543,494,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmc3_Geo_5_499_normalIndex_5()
		{
			int[] value = {485,541,543,-1,384,353,391,-1,348,353,384,-1,150,288,278,-1,150,149,288,-1,11,3,2,-1,3,11,22,-1,352,259,350,-1,352,252,259,-1,384,448,381,-1,462,448,384,-1,386,402,354,-1,386,397,402,-1,237,246,283,-1,192,246,237,-1,333,262,370,-1,333,246,262,-1,371,498,514,-1,413,498,371,-1,92,91,21,-1,91,92,137,-1,111,25,53,-1,25,111,128,-1,101,138,165,-1,101,98,138,-1,515,361,499,-1,470,361,515,-1,463,452,476,-1,463,450,452,-1,520,526,524,-1,526,520,525,-1,371,499,324,-1,514,499,371,-1,47,138,96,-1,138,47,72,-1,122,137,165,-1,137,122,128,-1,256,238,210,-1,256,239,238,-1,271,185,168,-1,185,271,290,-1,285,201,308,-1,215,201,285,-1,189,87,159,-1,87,189,168,-1,260,295,271,-1,260,280,295,-1,195,205,236,-1,195,175,205,-1,472,471,464,-1,472,456,471,-1,506,523,511,-1,532,506,530,-1,532,523,506,-1,519,488,511,-1,488,519,507,-1,233,303,211,-1,303,233,307,-1,200,141,223,-1,109,141,200,-1,200,277,261,-1,223,277,200,-1,126,76,84,-1,76,126,81,-1,99,166,88,-1,99,182,166,-1,535,517,538,-1,500,517,535,-1,126,117,81,-1,126,177,117,-1,220,307,233,-1,220,294,307,-1,536,500,535,-1,500,536,484,-1,213,135,145,-1,213,219,135,-1,393,326,400,-1,326,393,330,-1,33,98,101,-1,98,33,37,-1,90,48,63,-1,90,75,48,-1,28,36,61,-1,5,36,28,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc4_Geo_5_505_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,4,7,-1,8,4,9,-1,10,4,11,-1,12,4,13,-1,14,15,16,-1,17,15,18,-1,19,15,20,-1,21,15,22,-1,23,15,24,-1,25,26,27,-1,26,28,27,-1,29,30,31,-1,29,32,30,-1,33,34,35,-1,36,37,38,-1,30,39,40,-1,41,42,32,-1,32,43,41,-1,42,39,32,-1,44,45,46,-1,47,48,49,-1,18,50,17,-1,18,51,50,-1,52,53,54,-1,54,55,56,-1,57,58,45,-1,57,59,58,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,66,69,67,-1,69,70,67,-1,71,72,73,-1,74,75,76,-1,74,77,75,-1,78,79,80,-1,78,81,79,-1,82,83,84,-1,85,86,87,-1,88,89,90,-1,88,91,89,-1,92,91,88,-1,93,94,95,-1,94,86,95,-1,96,92,97,-1,96,91,92,-1,98,99,100,-1,101,102,103,-1,104,105,89,-1,89,106,104,-1,107,108,109,-1,107,110,108,-1,111,112,113,-1,111,114,112,-1,115,116,117,-1,117,118,115,-1,119,120,121,-1,121,122,119,-1,123,124,125,-1,124,126,125,-1,127,128,129,-1,129,130,127,-1,131,109,121,-1,121,120,131,-1,131,107,109,-1,132,26,133,-1,26,134,133,-1,2,135,136,-1,136,137,2,-1,138,139,140,-1,140,141,138,-1,45,44,142,-1,142,57,45,-1,143,144,145,-1,145,146,143,-1,147,148,149,-1,149,150,147,-1,33,151,50,-1,151,152,50,-1,153,154,155,-1,153,156,154,-1,157,158,159,-1,157,160,158,-1,161,162,163,-1,163,164,161,-1,165,166,167,-1,166,101,167,-1,168,169,170,-1,171,172,173,-1,171,174,172,-1,175,176,177,-1,178,179,180,-1,178,181,179,-1,182,175,124,-1,182,183,175,-1,184,185,186,-1,185,171,186,-1,187,185,188,-1,187,174,185,-1,189,190,191,-1,189,192,190,-1,193,194,195,-1,196,197,198,-1,199,200,201,-1,202,203,153,-1,203,204,153,-1,84,205,82,-1,206,207,94,-1,208,148,205,-1,205,102,208,-1,209,210,211,-1,209,212,210,-1,167,169,165,-1,164,169,167,-1,163,169,164,-1,213,47,214,-1,48,47,215,-1,216,47,217,-1,47,218,214,-1,107,219,110,-1,107,187,219,-1,220,221,222,-1,220,223,224,-1,220,225,226,-1,220,227,228,-1,119,172,120,-1,119,229,172,-1,175,183,176,-1,28,230,27,-1,231,232,233,-1,234,235,236,-1,237,235,234,-1,238,239,240,-1,2,137,0,-1,241,239,242,-1,242,243,241,-1,0,244,1,-1,129,0,242,-1,139,142,245,-1,246,247,145,-1,247,141,145,-1,248,249,246,-1,250,251,85,-1,147,252,82,-1,209,54,53,-1,248,253,254,-1,253,255,254,-1,256,235,257,-1,258,259,260,-1,259,261,260,-1,158,154,262,-1,158,263,154,-1,262,159,158,-1,264,265,257,-1,265,266,257,-1,78,80,56,-1,261,202,153,-1,261,259,202,-1,267,268,191,-1,267,269,268,-1,51,70,270,-1,51,271,50,-1,51,270,271,-1,272,273,274,-1,272,275,273,-1,276,277,278,-1,278,67,276,-1,279,68,280,-1,279,66,68,-1,195,281,282,-1,195,194,281,-1,283,284,285,-1,286,287,288,-1,35,151,33,-1,289,33,290,-1,289,34,33,-1,291,292,293,-1,292,294,293,-1,29,295,293,-1,293,296,29,-1,297,298,295,-1,297,299,298,-1,287,286,300,-1,40,301,30,-1,302,42,41,-1,303,302,304,-1,305,306,307,-1,308,309,306,-1,310,311,312,-1,311,313,312,-1,314,315,302,-1,302,303,314,-1,12,315,314,-1,12,13,315,-1,5,4,316,-1,311,308,313,-1,308,305,313,-1,306,305,308,-1,309,317,306,-1,302,318,304,-1,302,319,318,-1,39,30,32,-1,30,320,31,-1,30,301,320,-1,292,321,294,-1,322,34,289,-1,322,323,34,-1,323,35,34,-1,323,288,35,-1,324,35,288,-1,275,325,326,-1,277,274,273,-1,273,278,277,-1,327,328,329,-1,327,283,328,-1,328,281,330,-1,328,282,281,-1,202,285,203,-1,202,195,285,-1,33,50,271,-1,331,332,333,-1,331,334,332,-1,333,335,336,-1,333,332,335,-1,69,270,70,-1,16,15,23,-1,325,337,326,-1,190,338,339,-1,339,340,190,-1,195,259,193,-1,79,81,341,-1,191,341,342,-1,191,268,341,-1,56,52,54,-1,266,265,338,-1,343,344,345,-1,345,159,343,-1,159,345,157,-1,258,346,53,-1,53,52,258,-1,347,346,258,-1,258,260,347,-1,348,254,255,-1,348,263,254,-1,219,349,350,-1,253,150,255,-1,212,53,346,-1,212,209,53,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc4_Geo_5_505_coordIndex_2()
		{
			int[] value = {250,85,87,-1,253,248,144,-1,144,248,246,-1,246,145,144,-1,136,135,247,-1,247,351,136,-1,178,352,146,-1,138,141,1,-1,0,129,128,-1,136,353,137,-1,354,355,233,-1,355,356,233,-1,231,173,357,-1,357,358,231,-1,359,172,229,-1,172,174,187,-1,360,361,362,-1,227,220,226,-1,225,220,224,-1,223,220,222,-1,221,220,228,-1,226,225,363,-1,363,364,226,-1,110,60,62,-1,110,219,60,-1,107,131,187,-1,47,365,218,-1,47,49,217,-1,47,213,215,-1,170,169,163,-1,103,104,106,-1,212,208,210,-1,212,148,208,-1,212,149,148,-1,195,202,259,-1,38,325,36,-1,195,282,285,-1,191,190,340,-1,340,267,191,-1,266,366,257,-1,186,171,367,-1,171,173,367,-1,368,369,130,-1,175,177,370,-1,370,371,175,-1,218,115,372,-1,132,126,371,-1,146,181,178,-1,146,140,181,-1,26,132,371,-1,371,28,26,-1,177,373,358,-1,177,176,373,-1,369,127,130,-1,235,264,257,-1,185,174,171,-1,169,168,165,-1,167,101,164,-1,101,161,164,-1,261,153,155,-1,374,338,375,-1,374,339,338,-1,146,145,141,-1,141,140,146,-1,253,143,251,-1,253,144,143,-1,57,139,138,-1,57,142,139,-1,250,253,251,-1,250,252,253,-1,94,83,86,-1,376,377,378,-1,376,179,377,-1,129,238,130,-1,379,119,122,-1,111,380,114,-1,238,182,368,-1,368,130,238,-1,381,379,122,-1,381,382,379,-1,383,384,117,-1,117,116,383,-1,385,62,61,-1,47,216,365,-1,241,234,386,-1,91,96,162,-1,166,210,208,-1,161,91,162,-1,161,89,91,-1,101,106,161,-1,101,103,106,-1,97,92,364,-1,361,360,61,-1,61,60,361,-1,65,64,387,-1,64,388,387,-1,190,192,366,-1,97,385,389,-1,270,390,271,-1,89,161,106,-1,138,59,57,-1,184,257,366,-1,236,235,256,-1,256,391,236,-1,355,392,356,-1,355,112,392,-1,393,45,58,-1,393,46,45,-1,201,394,199,-1,201,310,394,-1,395,396,318,-1,395,397,396,-1,285,284,398,-1,316,399,5,-1,316,400,399,-1,42,302,315,-1,401,39,42,-1,42,315,401,-1,402,324,403,-1,403,404,402,-1,405,406,300,-1,301,407,320,-1,296,32,29,-1,285,328,283,-1,285,282,328,-1,24,15,21,-1,22,15,19,-1,20,15,17,-1,18,15,14,-1,316,4,12,-1,13,4,10,-1,11,4,8,-1,9,4,6,-1,7,4,3,-1,342,189,191,-1,219,188,349,-1,219,187,188,-1,2,1,135,-1,342,188,189,-1,349,188,342,-1,287,408,288,-1,287,409,408,-1,407,405,320,-1,407,406,405,-1,410,37,404,-1,37,410,38,-1,410,403,411,-1,404,403,410,-1,63,337,412,-1,337,63,326,-1,10,413,401,-1,413,10,11,-1,13,401,315,-1,401,13,10,-1,414,9,415,-1,9,414,8,-1,395,284,397,-1,398,284,395,-1,397,283,327,-1,284,283,397,-1,308,303,309,-1,308,416,303,-1,196,394,417,-1,199,394,196,-1,418,419,420,-1,418,197,419,-1,297,320,405,-1,31,320,297,-1,317,303,304,-1,303,317,309,-1,201,311,310,-1,201,421,311,-1,422,112,355,-1,422,113,112,-1,391,392,236,-1,356,392,391,-1,256,184,186,-1,256,257,184,-1,274,24,272,-1,24,274,23,-1,14,277,276,-1,16,277,14,-1,423,20,152,-1,20,423,19,-1,36,22,37,-1,22,36,21,-1,271,290,33,-1,271,390,290,-1,385,360,389,-1,385,61,360,-1,184,192,185,-1,366,192,184,-1,317,424,306,-1,317,396,424,-1,72,336,425,-1,336,72,333,-1,60,426,361,-1,60,427,426,-1,428,90,429,-1,428,430,90,-1,100,431,98,-1,100,211,431,-1,166,102,101,-1,166,208,102,-1,104,207,105,-1,104,84,207,-1,392,234,236,-1,386,234,392,-1,365,383,116,-1,365,216,383,-1,385,432,62,-1,432,385,363,-1,111,433,380,-1,434,433,111,-1,435,372,436,-1,435,437,372,-1,384,438,354,-1,438,384,383,-1,382,364,92,-1,364,382,381,-1,123,182,124,-1,123,368,182,-1,439,393,58,-1,393,439,440,-1,367,356,391,-1,233,356,367,-1,376,180,179,-1,376,441,180,-1,95,442,93,-1,95,443,442,-1,82,86,83,-1,82,87,86,-1,252,87,82,-1,252,250,87,-1,444,290,445,-1,290,444,289,-1,446,374,447,-1,446,339,374,-1,448,449,450,-1,447,449,448,-1,451,338,265,-1,375,338,451,-1,264,237,452,-1,264,235,237,-1,249,247,246,-1,247,249,351,-1,168,98,431,-1,170,98,168,-1,241,114,380,-1,386,114,241,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc4_Geo_5_505_coordIndex_3()
		{
			int[] value = {432,223,108,-1,432,224,223,-1,222,121,109,-1,222,221,121,-1,358,232,231,-1,358,373,232,-1,230,371,370,-1,28,371,230,-1,453,454,455,-1,453,369,454,-1,456,457,458,-1,456,459,457,-1,460,429,206,-1,460,428,429,-1,376,456,441,-1,376,455,456,-1,126,175,371,-1,126,124,175,-1,229,230,359,-1,229,27,230,-1,176,117,373,-1,176,118,117,-1,369,123,454,-1,368,123,369,-1,240,433,435,-1,239,433,240,-1,190,266,338,-1,190,366,266,-1,156,204,461,-1,156,153,204,-1,412,462,463,-1,412,411,462,-1,464,465,466,-1,465,464,467,-1,275,36,325,-1,36,275,272,-1,64,468,469,-1,63,468,64,-1,470,471,388,-1,470,472,471,-1,473,280,68,-1,473,471,280,-1,193,258,52,-1,193,259,258,-1,127,453,440,-1,127,369,453,-1,441,458,442,-1,458,441,456,-1,134,474,430,-1,134,475,474,-1,459,133,457,-1,125,133,459,-1,215,434,111,-1,215,213,434,-1,438,49,422,-1,217,49,438,-1,218,116,115,-1,116,218,365,-1,221,122,121,-1,221,228,122,-1,363,224,432,-1,363,225,224,-1,381,226,364,-1,381,227,226,-1,100,360,362,-1,100,389,360,-1,389,100,99,-1,92,474,382,-1,474,92,88,-1,232,354,233,-1,384,354,232,-1,183,118,176,-1,183,436,118,-1,386,112,114,-1,392,112,386,-1,0,439,244,-1,0,128,439,-1,244,138,1,-1,244,59,138,-1,377,181,245,-1,377,179,181,-1,140,245,181,-1,140,139,245,-1,143,352,476,-1,143,146,352,-1,251,476,85,-1,143,476,251,-1,252,150,253,-1,150,252,147,-1,149,346,347,-1,149,212,346,-1,136,344,353,-1,136,345,344,-1,219,427,60,-1,219,350,427,-1,263,160,254,-1,263,158,160,-1,260,255,347,-1,260,348,255,-1,159,477,343,-1,159,262,477,-1,343,375,451,-1,343,477,375,-1,426,56,55,-1,78,56,426,-1,341,349,342,-1,341,350,349,-1,478,52,56,-1,478,193,52,-1,268,79,341,-1,77,79,268,-1,154,479,262,-1,154,156,479,-1,374,477,480,-1,375,477,374,-1,404,423,402,-1,37,423,404,-1,69,335,270,-1,335,69,336,-1,425,73,72,-1,73,425,481,-1,269,331,75,-1,331,269,334,-1,482,332,334,-1,332,482,483,-1,484,270,335,-1,390,270,484,-1,445,390,484,-1,445,290,390,-1,485,483,482,-1,485,486,483,-1,487,71,488,-1,487,76,71,-1,481,489,73,-1,481,490,489,-1,281,489,330,-1,281,488,489,-1,491,328,330,-1,491,329,328,-1,492,285,398,-1,203,285,492,-1,319,395,318,-1,319,493,395,-1,329,494,495,-1,491,494,329,-1,490,279,496,-1,279,490,481,-1,497,471,472,-1,497,280,471,-1,494,497,498,-1,494,496,497,-1,499,470,500,-1,499,472,470,-1,470,501,500,-1,470,469,501,-1,469,502,501,-1,469,468,502,-1,63,463,468,-1,463,63,412,-1,408,324,288,-1,408,403,324,-1,503,445,486,-1,444,445,503,-1,288,504,286,-1,288,323,504,-1,322,505,506,-1,505,322,507,-1,446,486,485,-1,503,486,446,-1,506,299,504,-1,298,299,506,-1,505,292,291,-1,292,505,450,-1,479,449,480,-1,321,449,479,-1,156,321,479,-1,461,321,156,-1,492,508,509,-1,492,493,508,-1,461,294,321,-1,510,294,461,-1,508,32,296,-1,32,508,43,-1,511,501,502,-1,511,312,501,-1,312,500,501,-1,313,500,312,-1,498,495,494,-1,307,495,498,-1,499,313,305,-1,313,499,500,-1,300,420,512,-1,420,300,406,-1,200,196,198,-1,200,199,196,-1,301,418,407,-1,301,513,418,-1,319,41,43,-1,41,319,302,-1,198,514,200,-1,514,198,515,-1,414,513,301,-1,414,415,513,-1,421,400,416,-1,399,400,421,-1,516,421,201,-1,516,399,421,-1,415,6,515,-1,9,6,415,-1,3,399,516,-1,5,399,3,-1,400,12,314,-1,316,12,400,-1,413,8,414,-1,11,8,413,-1,515,7,514,-1,6,7,515,-1,7,516,514,-1,7,3,516,-1,416,314,303,-1,400,314,416,-1,413,301,40,-1,413,414,301,-1,513,515,198,-1,415,515,513,-1,417,511,467,-1,417,394,511,-1,418,198,197,-1,513,198,418,-1,420,464,512,-1,419,464,420,-1,299,405,300,-1,405,299,297,-1,305,498,499,-1,305,307,498,-1,307,424,495,-1,307,306,424,-1,502,467,511,-1,467,502,465,-1,466,512,464,-1,466,409,512,-1,504,300,286,-1,504,299,300,-1,31,295,29,-1,31,297,295,-1,296,509,508,-1,296,510,509,-1,509,203,492,-1,204,203,509,-1,43,493,319,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmc4_Geo_5_505_coordIndex_4()
		{
			int[] value = {493,43,508,-1,294,296,293,-1,294,510,296,-1,291,295,298,-1,295,291,293,-1,321,450,449,-1,321,292,450,-1,506,291,298,-1,291,506,505,-1,447,480,449,-1,447,374,480,-1,450,507,448,-1,450,505,507,-1,506,323,322,-1,506,504,323,-1,485,339,446,-1,485,340,339,-1,462,409,466,-1,462,408,409,-1,411,408,462,-1,408,411,403,-1,468,465,502,-1,465,468,463,-1,273,65,387,-1,275,65,273,-1,499,497,472,-1,499,498,497,-1,280,496,279,-1,496,280,497,-1,496,491,490,-1,496,494,491,-1,327,495,424,-1,495,327,329,-1,398,493,492,-1,395,493,398,-1,490,330,489,-1,491,330,490,-1,194,488,281,-1,194,487,488,-1,488,73,489,-1,73,488,71,-1,482,340,485,-1,340,482,267,-1,486,484,483,-1,486,445,484,-1,483,335,332,-1,335,483,484,-1,267,334,269,-1,334,267,482,-1,66,481,425,-1,66,279,481,-1,402,152,151,-1,402,423,152,-1,51,67,70,-1,276,67,51,-1,269,77,268,-1,77,269,75,-1,480,262,479,-1,477,262,480,-1,261,348,260,-1,155,348,261,-1,80,478,56,-1,80,74,478,-1,350,81,427,-1,341,81,350,-1,344,451,452,-1,451,344,343,-1,254,249,248,-1,254,160,249,-1,353,452,237,-1,353,344,452,-1,351,345,136,-1,351,157,345,-1,361,55,362,-1,361,426,55,-1,82,148,147,-1,82,205,148,-1,476,443,95,-1,476,352,443,-1,245,44,377,-1,142,44,245,-1,352,180,443,-1,180,352,178,-1,58,244,439,-1,244,58,59,-1,239,129,242,-1,238,129,239,-1,243,0,137,-1,243,242,0,-1,137,237,243,-1,137,353,237,-1,380,239,241,-1,239,380,433,-1,234,243,237,-1,241,243,234,-1,238,183,182,-1,238,240,183,-1,384,373,117,-1,384,232,373,-1,186,391,256,-1,186,367,391,-1,382,475,379,-1,475,382,474,-1,99,97,389,-1,99,96,97,-1,131,172,187,-1,131,120,172,-1,228,381,122,-1,227,381,228,-1,437,218,372,-1,214,218,437,-1,383,217,438,-1,216,217,383,-1,48,111,113,-1,48,215,111,-1,434,214,437,-1,213,214,434,-1,457,430,428,-1,457,134,430,-1,133,134,457,-1,429,89,105,-1,90,89,429,-1,362,211,100,-1,362,209,211,-1,103,84,104,-1,84,102,205,-1,84,103,102,-1,442,460,93,-1,460,442,458,-1,455,378,453,-1,455,376,378,-1,453,393,440,-1,453,46,393,-1,453,378,46,-1,193,487,194,-1,193,478,487,-1,76,478,74,-1,478,76,487,-1,473,273,387,-1,273,473,278,-1,388,469,470,-1,64,469,388,-1,394,312,511,-1,310,312,394,-1,514,201,200,-1,514,516,201,-1,419,467,464,-1,467,419,417,-1,463,466,465,-1,463,462,466,-1,509,461,204,-1,461,509,510,-1,185,189,188,-1,185,192,189,-1,435,183,240,-1,435,436,183,-1,358,370,177,-1,357,370,358,-1,119,27,229,-1,119,25,27,-1,125,454,123,-1,459,454,125,-1,428,458,457,-1,458,428,460,-1,459,455,454,-1,455,459,456,-1,370,359,230,-1,370,357,359,-1,108,222,109,-1,108,223,222,-1,172,357,173,-1,172,359,357,-1,165,431,166,-1,168,431,165,-1,98,163,162,-1,163,98,170,-1,160,351,249,-1,351,160,157,-1,155,263,348,-1,155,154,263,-1,265,452,451,-1,265,264,452,-1,448,444,503,-1,448,507,444,-1,503,447,448,-1,503,446,447,-1,507,289,444,-1,289,507,322,-1,347,150,149,-1,150,347,255,-1,46,377,44,-1,46,378,377,-1,441,443,180,-1,442,443,441,-1,173,233,367,-1,231,233,173,-1,128,440,439,-1,440,128,127,-1,125,132,133,-1,132,125,126,-1,25,379,475,-1,119,379,25,-1,62,108,110,-1,108,62,432,-1,354,422,355,-1,422,354,438,-1,434,435,433,-1,434,437,435,-1,436,115,118,-1,115,436,372,-1,134,25,475,-1,25,134,26,-1,363,97,364,-1,363,385,97,-1,207,83,94,-1,83,207,84,-1,166,211,210,-1,431,211,166,-1,162,99,98,-1,162,96,99,-1,206,105,207,-1,429,105,206,-1,88,430,474,-1,90,430,88,-1,85,95,86,-1,85,476,95,-1,93,206,94,-1,93,460,206,-1,427,78,426,-1,427,81,78,-1,80,77,74,-1,80,79,77,-1,75,71,76,-1,331,71,75,-1,331,72,71,-1,331,333,72,-1,66,336,69,-1,425,336,66,-1,278,68,67,-1,68,278,473,-1,471,387,388,-1,387,471,473,-1,141,135,1,-1,135,141,247,-1,55,209,362,-1,209,55,54,-1,272,21,36,-1,21,272,24,-1,22,423,37,-1,19,423,22,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmc4_Geo_5_505_coordIndex_5()
		{
			int[] value = {20,50,152,-1,17,50,20,-1,18,276,51,-1,14,276,18,-1,277,23,274,-1,23,277,16,-1,422,48,113,-1,49,48,422,-1,311,416,308,-1,311,421,416,-1,396,304,318,-1,304,396,317,-1,406,418,420,-1,406,407,418,-1,197,417,419,-1,197,196,417,-1,327,396,397,-1,327,424,396,-1,401,40,39,-1,40,401,413,-1,275,63,65,-1,326,63,275,-1,337,411,412,-1,410,411,337,-1,337,38,410,-1,38,337,325,-1,35,402,151,-1,35,324,402,-1,512,287,300,-1,512,409,287,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc4_Geo_5_505_normalIndex_1()
		{
			int[] value = {3,98,82,-1,403,397,408,-1,412,397,411,-1,405,397,409,-1,398,397,402,-1,375,397,387,-1,180,204,185,-1,205,204,186,-1,227,204,220,-1,211,204,217,-1,179,204,192,-1,62,88,16,-1,88,50,16,-1,245,345,267,-1,245,308,345,-1,102,60,51,-1,202,168,156,-1,345,359,358,-1,311,337,308,-1,308,328,311,-1,337,359,308,-1,248,100,268,-1,136,111,122,-1,186,175,205,-1,186,126,175,-1,512,504,509,-1,509,482,478,-1,76,26,100,-1,76,38,26,-1,278,316,240,-1,246,341,296,-1,372,229,369,-1,372,237,229,-1,237,140,229,-1,374,366,456,-1,354,270,376,-1,354,233,270,-1,384,236,352,-1,384,252,236,-1,428,348,396,-1,263,285,315,-1,305,353,254,-1,305,370,353,-1,349,370,305,-1,228,276,259,-1,276,285,259,-1,449,349,424,-1,449,370,349,-1,483,479,492,-1,423,438,437,-1,380,313,353,-1,353,433,380,-1,131,171,120,-1,131,169,171,-1,78,57,74,-1,78,30,57,-1,303,281,401,-1,401,385,303,-1,72,59,121,-1,121,154,72,-1,331,333,251,-1,333,232,251,-1,159,21,67,-1,67,173,159,-1,85,120,121,-1,121,59,85,-1,85,131,120,-1,95,88,197,-1,88,195,197,-1,82,320,191,-1,191,55,82,-1,146,304,327,-1,327,286,146,-1,100,248,214,-1,214,76,100,-1,289,279,247,-1,247,264,289,-1,465,510,490,-1,490,431,465,-1,102,115,175,-1,115,201,175,-1,351,325,386,-1,351,301,325,-1,218,238,143,-1,218,283,238,-1,464,460,511,-1,511,486,464,-1,367,388,441,-1,388,423,441,-1,422,475,446,-1,152,56,147,-1,152,118,56,-1,344,413,391,-1,330,334,329,-1,330,332,334,-1,284,344,333,-1,284,302,344,-1,94,132,130,-1,132,152,130,-1,129,132,223,-1,129,118,132,-1,222,97,163,-1,222,133,97,-1,516,514,488,-1,355,339,404,-1,399,414,427,-1,418,360,351,-1,360,324,351,-1,396,462,428,-1,253,322,276,-1,451,510,462,-1,462,438,451,-1,499,484,481,-1,499,493,484,-1,441,475,367,-1,486,475,441,-1,511,475,486,-1,123,136,144,-1,111,136,119,-1,181,136,145,-1,136,167,144,-1,131,187,169,-1,131,129,187,-1,189,153,149,-1,189,166,207,-1,189,209,213,-1,189,196,164,-1,72,56,59,-1,72,13,56,-1,344,302,413,-1,50,43,16,-1,271,379,244,-1,29,37,75,-1,0,37,29,-1,109,41,108,-1,82,55,3,-1,11,41,25,-1,25,1,11,-1,3,45,98,-1,67,3,25,-1,304,214,342,-1,258,290,247,-1,290,286,247,-1,272,287,258,-1,323,309,263,-1,465,371,428,-1,499,509,504,-1,272,338,321,-1,338,382,321,-1,103,37,81,-1,501,473,458,-1,473,432,458,-1,238,325,142,-1,238,335,325,-1,142,143,238,-1,32,40,81,-1,40,70,81,-1,384,352,478,-1,432,418,351,-1,432,473,418,-1,117,199,163,-1,117,184,199,-1,126,140,105,-1,126,104,175,-1,126,105,104,-1,190,255,172,-1,190,226,255,-1,125,151,249,-1,249,229,125,-1,455,369,447,-1,455,372,369,-1,488,502,515,-1,488,514,502,-1,513,498,459,-1,27,23,8,-1,51,115,102,-1,19,102,83,-1,19,60,102,-1,86,93,177,-1,93,210,177,-1,245,138,177,-1,177,273,245,-1,110,79,138,-1,110,64,79,-1,23,27,61,-1,358,373,345,-1,357,337,311,-1,426,357,442,-1,472,506,487,-1,497,453,506,-1,415,452,381,-1,452,448,381,-1,364,347,357,-1,357,426,364,-1,375,347,364,-1,375,387,347,-1,408,397,389,-1,452,497,448,-1,497,472,448,-1,506,472,497,-1,453,491,506,-1,357,445,442,-1,357,356,445,-1,359,345,308,-1,345,280,267,-1,345,373,280,-1,93,139,210,-1,28,60,19,-1,28,54,60,-1,54,51,60,-1,54,8,51,-1,12,51,8,-1,226,176,208,-1,151,172,255,-1,255,249,151,-1,508,503,495,-1,508,513,503,-1,503,502,485,-1,503,515,502,-1,418,459,360,-1,418,488,459,-1,102,175,104,-1,239,124,200,-1,239,165,124,-1,200,128,224,-1,200,124,128,-1,237,105,140,-1,185,204,179,-1,176,137,208,-1,97,36,9,-1,9,71,97,-1,488,473,516,-1,236,252,203,-1,163,203,241,-1,163,199,203,-1,478,512,509,-1,70,40,36,-1,65,53,135,-1,135,143,65,-1,143,135,218,-1,501,494,504,-1,504,512,501,-1,474,494,501,-1,501,458,474,-1,394,321,382,-1,394,335,321,-1,187,235,193,-1,338,431,382,-1,493,504,494,-1,493,499,504,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc4_Geo_5_505_normalIndex_2()
		{
			int[] value = {323,263,315,-1,338,272,279,-1,279,272,258,-1,258,247,279,-1,191,320,290,-1,290,269,191,-1,330,306,264,-1,146,286,98,-1,3,67,21,-1,191,49,55,-1,340,178,244,-1,178,155,244,-1,271,147,198,-1,198,363,271,-1,42,56,13,-1,56,118,129,-1,435,410,496,-1,196,189,213,-1,209,189,207,-1,166,189,149,-1,153,189,164,-1,213,209,336,-1,336,317,213,-1,169,278,240,-1,169,187,278,-1,131,85,129,-1,136,170,167,-1,136,122,145,-1,136,123,119,-1,446,475,511,-1,437,380,433,-1,493,451,484,-1,493,510,451,-1,493,490,510,-1,488,418,473,-1,156,176,202,-1,488,515,459,-1,163,97,71,-1,71,117,163,-1,70,91,81,-1,130,152,157,-1,152,147,157,-1,257,292,173,-1,344,391,194,-1,194,158,344,-1,167,303,219,-1,95,232,158,-1,264,332,330,-1,264,327,332,-1,88,95,158,-1,158,50,88,-1,391,419,363,-1,391,413,419,-1,292,159,173,-1,37,32,81,-1,132,118,152,-1,475,422,367,-1,441,423,486,-1,423,464,486,-1,432,351,386,-1,2,36,5,-1,2,9,36,-1,264,247,286,-1,286,327,264,-1,338,289,309,-1,338,279,289,-1,76,304,146,-1,76,214,304,-1,323,338,309,-1,323,371,338,-1,276,348,285,-1,319,326,299,-1,319,334,326,-1,67,109,173,-1,160,72,154,-1,78,18,30,-1,109,284,257,-1,257,173,109,-1,221,160,154,-1,221,256,160,-1,310,400,401,-1,401,281,310,-1,395,240,316,-1,136,181,170,-1,11,29,24,-1,370,449,460,-1,388,484,451,-1,464,370,460,-1,464,353,370,-1,423,433,464,-1,423,437,433,-1,424,349,317,-1,410,435,316,-1,316,278,410,-1,296,341,361,-1,341,417,361,-1,97,133,91,-1,424,395,450,-1,105,96,104,-1,353,464,433,-1,146,38,76,-1,94,81,91,-1,75,37,103,-1,103,113,75,-1,178,66,155,-1,178,57,66,-1,188,100,26,-1,188,268,100,-1,427,350,399,-1,427,415,350,-1,439,505,445,-1,439,500,505,-1,459,498,430,-1,389,390,408,-1,389,377,390,-1,337,357,347,-1,383,359,337,-1,337,347,383,-1,84,12,34,-1,34,92,84,-1,112,161,61,-1,373,314,280,-1,273,308,245,-1,459,503,513,-1,459,515,503,-1,192,204,211,-1,217,204,227,-1,220,204,205,-1,186,204,180,-1,389,397,375,-1,387,397,398,-1,402,397,405,-1,409,397,412,-1,411,397,403,-1,241,222,163,-1,187,223,235,-1,187,129,223,-1,82,98,320,-1,241,223,222,-1,235,223,241,-1,23,17,8,-1,23,47,17,-1,314,112,280,-1,314,161,112,-1,99,168,92,-1,168,99,156,-1,99,34,63,-1,92,34,99,-1,246,137,134,-1,137,246,208,-1,398,393,383,-1,393,398,402,-1,387,383,347,-1,383,387,398,-1,406,409,425,-1,409,406,405,-1,439,498,500,-1,430,498,439,-1,500,513,508,-1,498,513,500,-1,497,426,453,-1,497,440,426,-1,355,350,282,-1,399,350,355,-1,318,206,162,-1,318,339,206,-1,110,280,112,-1,267,280,110,-1,491,426,442,-1,426,491,453,-1,427,452,415,-1,427,434,452,-1,127,57,178,-1,127,74,57,-1,113,66,75,-1,155,66,113,-1,103,94,130,-1,103,81,94,-1,172,192,190,-1,192,172,179,-1,180,151,125,-1,185,151,180,-1,183,220,201,-1,220,183,227,-1,202,217,168,-1,217,202,211,-1,104,83,102,-1,104,96,83,-1,395,435,450,-1,395,316,435,-1,94,133,132,-1,91,133,94,-1,491,507,506,-1,491,505,507,-1,366,224,368,-1,224,366,200,-1,278,407,410,-1,278,261,407,-1,225,254,243,-1,225,242,254,-1,492,429,483,-1,492,481,429,-1,388,438,423,-1,388,451,438,-1,380,322,313,-1,380,396,322,-1,66,29,75,-1,24,29,66,-1,170,310,281,-1,170,181,310,-1,395,250,240,-1,250,395,336,-1,78,35,18,-1,80,35,78,-1,106,219,291,-1,106,107,219,-1,400,234,340,-1,234,400,310,-1,256,317,349,-1,317,256,221,-1,331,284,333,-1,331,257,284,-1,4,188,26,-1,188,4,141,-1,157,155,113,-1,244,155,157,-1,319,329,334,-1,319,275,329,-1,259,230,228,-1,259,277,230,-1,428,285,348,-1,428,315,285,-1,371,315,428,-1,371,323,315,-1,22,83,73,-1,83,22,19,-1,7,2,6,-1,7,9,2,-1,10,46,33,-1,6,46,10,-1,31,36,40,-1,5,36,31,-1,32,0,14,-1,32,37,0,-1,287,290,258,-1,290,287,269,-1,422,483,429,-1,446,483,422,-1,11,30,18,-1,24,30,11,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc4_Geo_5_505_normalIndex_3()
		{
			int[] value = {250,166,171,-1,250,207,166,-1,149,121,120,-1,149,153,121,-1,363,379,271,-1,363,419,379,-1,43,158,194,-1,50,158,43,-1,288,298,297,-1,288,292,298,-1,262,231,215,-1,262,265,231,-1,216,243,253,-1,216,225,243,-1,319,262,275,-1,319,297,262,-1,232,344,158,-1,232,333,344,-1,13,43,42,-1,13,16,43,-1,413,401,419,-1,413,385,401,-1,292,331,298,-1,257,331,292,-1,108,35,106,-1,41,35,108,-1,97,70,36,-1,97,91,70,-1,301,324,293,-1,301,351,324,-1,134,77,148,-1,134,63,77,-1,116,174,89,-1,174,116,212,-1,226,202,176,-1,202,226,190,-1,341,266,362,-1,246,266,341,-1,436,443,417,-1,436,454,443,-1,378,447,369,-1,378,443,447,-1,516,501,512,-1,516,473,501,-1,159,288,141,-1,159,292,288,-1,275,215,230,-1,215,275,262,-1,195,260,242,-1,195,182,260,-1,265,197,231,-1,251,197,265,-1,119,80,78,-1,119,123,80,-1,234,122,127,-1,145,122,234,-1,167,281,303,-1,281,167,170,-1,153,154,121,-1,153,164,154,-1,336,207,250,-1,336,209,207,-1,221,213,317,-1,221,196,213,-1,492,435,496,-1,492,450,435,-1,450,492,479,-1,349,260,256,-1,260,349,305,-1,379,340,244,-1,400,340,379,-1,302,385,413,-1,302,291,385,-1,24,57,30,-1,66,57,24,-1,3,4,45,-1,3,21,4,-1,45,146,98,-1,45,38,146,-1,326,332,342,-1,326,334,332,-1,327,342,332,-1,327,304,342,-1,289,306,294,-1,289,264,306,-1,309,294,263,-1,289,294,309,-1,371,431,338,-1,431,371,465,-1,490,494,474,-1,490,493,494,-1,191,53,49,-1,191,135,53,-1,187,261,278,-1,187,193,261,-1,335,283,321,-1,335,238,283,-1,458,382,474,-1,458,394,382,-1,143,48,65,-1,143,142,48,-1,65,5,31,-1,65,48,5,-1,407,478,482,-1,384,478,407,-1,203,235,241,-1,203,193,235,-1,467,512,478,-1,467,516,512,-1,199,236,203,-1,233,236,199,-1,325,150,142,-1,325,301,150,-1,2,48,39,-1,5,48,2,-1,92,183,84,-1,168,183,92,-1,237,128,105,-1,128,237,224,-1,368,456,366,-1,456,368,457,-1,184,239,270,-1,239,184,165,-1,114,124,165,-1,124,114,101,-1,90,105,128,-1,96,105,90,-1,73,96,90,-1,73,83,96,-1,69,101,114,-1,69,68,101,-1,476,374,471,-1,476,376,374,-1,457,470,456,-1,457,469,470,-1,502,470,485,-1,502,471,470,-1,480,503,485,-1,480,495,503,-1,343,459,430,-1,360,459,343,-1,356,439,445,-1,356,346,439,-1,495,477,489,-1,480,477,495,-1,469,455,466,-1,455,469,457,-1,463,443,454,-1,463,447,443,-1,477,463,468,-1,477,466,463,-1,461,436,444,-1,461,454,436,-1,436,365,444,-1,436,362,365,-1,362,295,365,-1,362,266,295,-1,246,148,266,-1,148,246,134,-1,17,12,8,-1,17,34,12,-1,20,73,68,-1,22,73,20,-1,8,58,27,-1,8,54,58,-1,28,44,52,-1,44,28,15,-1,7,68,69,-1,20,68,7,-1,52,64,58,-1,79,64,52,-1,44,93,86,-1,93,44,33,-1,150,46,39,-1,139,46,150,-1,301,139,150,-1,293,139,301,-1,343,307,300,-1,343,346,307,-1,293,210,139,-1,274,210,293,-1,307,308,273,-1,308,307,328,-1,312,365,295,-1,312,381,365,-1,381,444,365,-1,448,444,381,-1,468,489,477,-1,487,489,468,-1,461,448,472,-1,448,461,444,-1,61,162,87,-1,162,61,161,-1,414,355,404,-1,414,399,355,-1,373,318,314,-1,373,392,318,-1,356,311,328,-1,311,356,357,-1,404,421,414,-1,421,404,420,-1,406,392,373,-1,406,425,392,-1,434,377,440,-1,390,377,434,-1,416,434,427,-1,416,390,434,-1,425,412,420,-1,409,412,425,-1,403,390,416,-1,408,390,403,-1,377,375,364,-1,389,375,377,-1,393,405,406,-1,402,405,393,-1,420,411,421,-1,412,411,420,-1,411,416,421,-1,411,403,416,-1,440,364,426,-1,377,364,440,-1,393,373,358,-1,393,406,373,-1,392,420,404,-1,425,420,392,-1,282,312,212,-1,282,350,312,-1,318,404,339,-1,392,404,318,-1,162,116,87,-1,206,116,162,-1,64,112,61,-1,112,64,110,-1,472,468,461,-1,472,487,468,-1,487,507,489,-1,487,506,507,-1,295,212,312,-1,212,295,174,-1,89,87,116,-1,89,47,87,-1,58,61,27,-1,58,64,61,-1,267,138,245,-1,267,110,138,-1,273,300,307,-1,273,274,300,-1,300,360,343,-1,324,360,300,-1,328,346,356,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmc4_Geo_5_505_normalIndex_4()
		{
			int[] value = {346,328,307,-1,210,273,177,-1,210,274,273,-1,86,138,79,-1,138,86,177,-1,139,33,46,-1,139,93,33,-1,52,86,79,-1,86,52,44,-1,6,39,46,-1,6,2,39,-1,33,15,10,-1,33,44,15,-1,52,54,28,-1,52,58,54,-1,69,9,7,-1,69,71,9,-1,77,47,89,-1,77,17,47,-1,63,17,77,-1,17,63,34,-1,266,174,295,-1,174,266,148,-1,255,296,361,-1,226,296,255,-1,461,463,454,-1,461,468,463,-1,447,466,455,-1,466,447,463,-1,466,480,469,-1,466,477,480,-1,508,489,507,-1,489,508,495,-1,430,346,343,-1,439,346,430,-1,469,485,470,-1,480,485,469,-1,514,471,502,-1,514,476,471,-1,471,456,470,-1,456,471,374,-1,114,71,69,-1,71,114,117,-1,68,90,101,-1,68,73,90,-1,101,128,124,-1,128,101,90,-1,117,165,184,-1,165,117,114,-1,372,457,368,-1,372,455,457,-1,84,201,115,-1,84,183,201,-1,126,229,140,-1,125,229,126,-1,184,233,199,-1,233,184,270,-1,39,142,150,-1,48,142,39,-1,432,394,458,-1,386,394,432,-1,352,467,478,-1,352,354,467,-1,193,252,261,-1,203,252,193,-1,53,31,14,-1,31,53,65,-1,321,287,272,-1,321,283,287,-1,49,14,0,-1,49,53,14,-1,269,135,191,-1,269,218,135,-1,410,482,496,-1,410,407,482,-1,428,510,465,-1,428,462,510,-1,294,277,259,-1,294,306,277,-1,342,248,326,-1,214,248,342,-1,306,329,277,-1,329,306,330,-1,26,45,4,-1,45,26,38,-1,41,67,25,-1,109,67,41,-1,1,3,55,-1,1,25,3,-1,55,0,1,-1,55,49,0,-1,18,41,11,-1,41,18,35,-1,29,1,0,-1,11,1,29,-1,109,302,284,-1,109,108,302,-1,400,419,401,-1,400,379,419,-1,130,113,103,-1,130,157,113,-1,256,182,160,-1,182,256,260,-1,479,424,450,-1,479,449,424,-1,85,56,129,-1,85,59,56,-1,164,221,154,-1,196,221,164,-1,107,167,219,-1,144,167,107,-1,310,145,234,-1,181,145,310,-1,111,78,74,-1,111,119,78,-1,80,144,107,-1,123,144,80,-1,231,242,225,-1,231,195,242,-1,197,195,231,-1,243,353,313,-1,254,353,243,-1,496,481,492,-1,496,499,481,-1,437,396,380,-1,396,438,462,-1,396,437,438,-1,230,216,228,-1,216,230,215,-1,297,299,288,-1,297,319,299,-1,288,188,141,-1,288,268,188,-1,288,299,268,-1,516,476,514,-1,516,467,476,-1,376,467,354,-1,467,376,476,-1,378,255,361,-1,255,378,249,-1,417,362,436,-1,341,362,417,-1,350,381,312,-1,415,381,350,-1,421,427,414,-1,421,416,427,-1,206,212,116,-1,212,206,282,-1,148,89,174,-1,148,77,89,-1,300,293,324,-1,293,300,274,-1,132,222,223,-1,132,133,222,-1,106,302,108,-1,106,291,302,-1,363,194,391,-1,198,194,363,-1,72,16,13,-1,72,62,16,-1,251,298,331,-1,265,298,251,-1,225,215,231,-1,215,225,216,-1,265,297,298,-1,297,265,262,-1,194,42,43,-1,194,198,42,-1,171,149,120,-1,171,166,149,-1,56,198,147,-1,56,42,198,-1,367,429,388,-1,422,429,367,-1,483,511,460,-1,511,483,446,-1,283,269,287,-1,269,283,218,-1,386,335,394,-1,386,325,335,-1,40,14,31,-1,40,32,14,-1,10,22,20,-1,10,15,22,-1,20,6,10,-1,20,7,6,-1,15,19,22,-1,19,15,28,-1,474,431,490,-1,431,474,382,-1,268,326,248,-1,268,299,326,-1,275,277,329,-1,230,277,275,-1,147,244,157,-1,271,244,147,-1,21,141,4,-1,141,21,159,-1,251,95,197,-1,95,251,232,-1,62,160,182,-1,72,160,62,-1,240,171,169,-1,171,240,250,-1,340,127,178,-1,127,340,234,-1,80,106,35,-1,80,107,106,-1,291,303,385,-1,303,291,219,-1,195,62,182,-1,62,195,88,-1,336,424,317,-1,336,395,424,-1,322,348,276,-1,348,322,396,-1,388,481,484,-1,429,481,388,-1,460,479,483,-1,460,449,479,-1,253,313,322,-1,243,313,253,-1,305,242,260,-1,254,242,305,-1,263,259,285,-1,263,294,259,-1,228,253,276,-1,228,216,253,-1,261,384,407,-1,261,252,384,-1,352,233,354,-1,352,236,233,-1,270,374,376,-1,239,374,270,-1,239,366,374,-1,239,200,366,-1,372,224,237,-1,368,224,372,-1,249,369,229,-1,369,249,378,-1,443,361,417,-1,361,443,378,-1,286,320,98,-1,320,286,290,-1,482,499,496,-1,499,482,509,-1,190,211,202,-1,211,190,192,-1,217,183,168,-1,227,183,217,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmc4_Geo_5_505_normalIndex_5()
		{
			int[] value = {220,175,201,-1,205,175,220,-1,186,125,126,-1,180,125,186,-1,151,179,172,-1,179,151,185,-1,127,111,74,-1,122,111,127,-1,452,440,497,-1,452,434,440,-1,505,442,445,-1,442,505,491,-1,161,318,162,-1,161,314,318,-1,339,282,206,-1,339,355,282,-1,508,505,500,-1,508,507,505,-1,383,358,359,-1,358,383,393,-1,226,246,296,-1,208,246,226,-1,137,63,134,-1,99,63,137,-1,137,156,99,-1,156,137,176,-1,51,84,115,-1,51,12,84,-1,87,23,61,-1,87,47,23,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc5_Geo_5_511_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,15,18,19,-1,20,17,21,-1,22,23,24,-1,24,25,22,-1,26,27,28,-1,29,30,31,-1,32,33,34,-1,35,36,37,-1,38,39,40,-1,41,2,42,-1,42,37,41,-1,40,35,43,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,51,53,54,-1,22,25,55,-1,56,57,58,-1,56,59,57,-1,60,61,62,-1,63,23,21,-1,23,64,21,-1,65,66,67,-1,68,69,70,-1,18,15,67,-1,67,71,18,-1,18,71,25,-1,72,73,74,-1,60,62,29,-1,75,76,77,-1,78,42,2,-1,54,52,51,-1,79,80,81,-1,80,82,81,-1,4,53,83,-1,51,84,85,-1,51,86,84,-1,87,88,89,-1,88,90,89,-1,91,92,80,-1,92,93,80,-1,94,95,96,-1,94,97,95,-1,98,99,100,-1,101,102,103,-1,103,104,101,-1,105,106,107,-1,108,109,110,-1,110,111,108,-1,112,113,114,-1,113,115,114,-1,12,14,116,-1,14,117,116,-1,118,119,120,-1,118,121,119,-1,117,7,6,-1,45,122,123,-1,45,124,125,-1,45,126,127,-1,45,128,129,-1,45,130,131,-1,45,123,132,-1,45,125,46,-1,133,134,135,-1,50,86,51,-1,33,136,34,-1,137,36,138,-1,4,139,140,-1,119,121,141,-1,142,143,144,-1,145,139,146,-1,66,70,147,-1,110,109,116,-1,116,148,110,-1,149,150,6,-1,151,152,153,-1,154,155,50,-1,155,156,84,-1,84,86,155,-1,157,158,159,-1,159,160,157,-1,161,160,162,-1,162,163,161,-1,164,165,166,-1,166,167,164,-1,168,119,141,-1,164,169,108,-1,161,170,32,-1,161,163,170,-1,88,171,43,-1,143,172,173,-1,143,174,172,-1,172,175,173,-1,172,176,175,-1,5,99,3,-1,139,4,3,-1,171,88,87,-1,177,178,179,-1,177,180,178,-1,181,163,162,-1,181,182,163,-1,183,26,184,-1,183,31,26,-1,185,28,27,-1,185,186,28,-1,186,187,28,-1,185,27,31,-1,31,183,188,-1,189,190,191,-1,133,135,192,-1,193,194,48,-1,195,196,197,-1,195,198,196,-1,199,200,132,-1,200,130,132,-1,19,18,24,-1,15,201,202,-1,15,20,201,-1,48,47,203,-1,203,204,48,-1,56,205,206,-1,207,60,208,-1,60,29,208,-1,76,96,209,-1,76,210,96,-1,210,94,96,-1,210,211,94,-1,207,212,60,-1,212,213,60,-1,23,214,64,-1,214,215,64,-1,216,217,218,-1,74,73,75,-1,73,219,75,-1,31,188,59,-1,220,67,15,-1,15,202,220,-1,221,212,222,-1,212,207,222,-1,45,223,122,-1,222,224,225,-1,225,226,222,-1,227,228,127,-1,127,126,227,-1,21,229,20,-1,21,230,229,-1,184,26,231,-1,232,233,234,-1,185,31,30,-1,62,235,30,-1,30,29,62,-1,90,94,236,-1,94,211,236,-1,237,140,139,-1,146,38,145,-1,146,39,38,-1,238,83,239,-1,238,5,83,-1,84,240,85,-1,240,241,85,-1,107,106,104,-1,242,137,243,-1,137,244,243,-1,36,242,176,-1,176,245,36,-1,168,246,119,-1,246,247,119,-1,248,161,34,-1,161,32,34,-1,249,250,170,-1,250,32,170,-1,156,251,252,-1,156,155,251,-1,160,248,157,-1,160,161,248,-1,162,160,253,-1,160,159,253,-1,4,254,53,-1,254,54,53,-1,255,256,11,-1,148,116,117,-1,257,239,258,-1,257,238,239,-1,143,259,246,-1,143,173,259,-1,159,158,179,-1,158,177,179,-1,260,261,262,-1,41,263,216,-1,141,164,167,-1,250,33,32,-1,208,29,206,-1,45,132,130,-1,45,131,128,-1,45,129,126,-1,45,127,124,-1,45,44,223,-1,264,153,265,-1,266,267,14,-1,268,269,270,-1,109,108,271,-1,247,112,114,-1,153,11,256,-1,256,151,153,-1,252,111,272,-1,111,110,272,-1,84,156,240,-1,156,273,240,-1,139,3,99,-1,99,98,139,-1,97,90,88,-1,97,94,90,-1,185,30,186,-1,30,235,186,-1,95,274,96,-1,274,209,96,-1,53,51,83,-1,51,85,83,-1,50,81,262,-1,50,275,81,-1,137,242,36,-1,78,43,42,-1,78,276,43,-1,138,244,137,-1,138,277,244,-1,75,210,76,-1,75,219,210,-1,197,65,195,-1,197,68,65,-1,66,147,71,-1,71,67,66,-1,278,134,279,-1,279,280,278,-1,281,282,135,-1,282,192,135,-1,231,190,189,-1,189,184,231,-1,75,61,74,-1,213,74,61,-1,61,60,213,-1,56,31,59,-1,56,206,31,-1,31,206,29,-1,193,48,204,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc5_Geo_5_511_coordIndex_2()
		{
			int[] value = {40,39,138,-1,52,275,50,-1,283,54,254,-1,86,50,155,-1,170,163,182,-1,182,284,170,-1,63,24,23,-1,226,46,285,-1,226,44,46,-1,218,55,286,-1,287,0,216,-1,288,249,289,-1,289,290,288,-1,143,142,174,-1,291,292,293,-1,26,31,27,-1,294,295,194,-1,25,24,18,-1,15,19,16,-1,15,17,20,-1,286,296,287,-1,74,297,72,-1,265,298,264,-1,83,5,4,-1,299,55,25,-1,257,153,152,-1,257,265,153,-1,287,218,286,-1,218,287,216,-1,300,291,301,-1,300,292,291,-1,47,299,25,-1,299,47,49,-1,204,71,147,-1,71,204,203,-1,194,302,294,-1,302,194,193,-1,295,303,304,-1,294,303,295,-1,305,306,307,-1,308,306,305,-1,281,294,282,-1,294,281,303,-1,136,168,141,-1,144,168,136,-1,181,72,215,-1,181,309,72,-1,1,78,2,-1,310,78,1,-1,249,174,250,-1,288,174,249,-1,289,217,290,-1,289,311,217,-1,300,55,299,-1,300,286,55,-1,222,285,221,-1,222,226,285,-1,312,182,214,-1,312,284,182,-1,52,283,275,-1,52,54,283,-1,224,206,205,-1,224,208,206,-1,194,293,48,-1,295,293,194,-1,313,314,315,-1,313,316,314,-1,317,296,301,-1,318,296,317,-1,74,230,297,-1,74,213,230,-1,232,183,233,-1,232,188,183,-1,279,231,280,-1,231,279,190,-1,319,282,320,-1,282,319,192,-1,135,278,281,-1,278,135,134,-1,57,188,232,-1,188,57,59,-1,191,279,321,-1,279,191,190,-1,220,65,67,-1,220,195,65,-1,210,322,211,-1,219,322,210,-1,323,324,178,-1,324,323,236,-1,276,310,325,-1,276,78,310,-1,326,274,327,-1,326,209,274,-1,79,254,328,-1,254,79,283,-1,255,115,329,-1,330,115,255,-1,105,331,106,-1,113,331,105,-1,9,332,268,-1,332,9,264,-1,264,11,153,-1,11,264,9,-1,240,333,241,-1,334,333,240,-1,272,156,252,-1,156,272,273,-1,118,169,121,-1,169,118,335,-1,256,103,151,-1,103,256,336,-1,104,336,107,-1,104,103,336,-1,10,268,270,-1,268,10,9,-1,267,269,268,-1,267,266,269,-1,264,337,332,-1,337,264,298,-1,234,191,338,-1,233,191,234,-1,189,191,233,-1,41,339,263,-1,41,245,339,-1,178,340,323,-1,178,180,340,-1,179,253,159,-1,253,179,341,-1,158,261,177,-1,158,154,261,-1,342,266,343,-1,342,269,266,-1,241,258,239,-1,258,241,333,-1,150,273,272,-1,149,273,150,-1,343,335,118,-1,13,335,343,-1,115,344,114,-1,344,115,330,-1,152,103,102,-1,151,103,152,-1,13,266,14,-1,13,343,266,-1,330,270,344,-1,330,10,270,-1,333,298,258,-1,337,298,333,-1,6,334,149,-1,334,6,8,-1,93,323,340,-1,93,89,323,-1,262,82,260,-1,82,262,81,-1,248,345,157,-1,248,166,345,-1,165,345,166,-1,165,251,345,-1,111,251,165,-1,111,252,251,-1,142,250,174,-1,33,250,142,-1,172,245,176,-1,339,245,172,-1,259,113,112,-1,259,331,113,-1,242,175,176,-1,242,243,175,-1,244,106,243,-1,244,100,106,-1,100,277,98,-1,100,244,277,-1,92,171,87,-1,171,92,346,-1,328,237,91,-1,237,328,140,-1,145,237,139,-1,145,346,237,-1,88,276,97,-1,276,88,43,-1,322,341,324,-1,322,347,341,-1,263,288,290,-1,263,339,288,-1,316,187,314,-1,316,348,187,-1,349,133,350,-1,321,133,349,-1,281,308,303,-1,281,278,308,-1,351,307,348,-1,305,307,351,-1,351,301,291,-1,317,301,351,-1,229,213,212,-1,230,213,229,-1,228,220,202,-1,227,220,228,-1,352,200,353,-1,352,354,200,-1,196,131,354,-1,128,131,196,-1,126,198,227,-1,129,198,126,-1,124,228,355,-1,127,228,124,-1,125,355,356,-1,124,355,125,-1,46,356,285,-1,125,356,46,-1,225,44,226,-1,44,225,223,-1,357,358,359,-1,199,358,357,-1,205,225,224,-1,205,360,225,-1,358,122,360,-1,122,358,123,-1,221,229,212,-1,229,221,361,-1,362,319,69,-1,350,319,362,-1,362,353,363,-1,362,352,353,-1,364,359,58,-1,364,357,359,-1,57,234,58,-1,57,232,234,-1,349,364,338,-1,364,349,363,-1,315,95,325,-1,274,95,315,-1,312,55,311,-1,55,312,22,-1,312,23,22,-1,312,214,23,-1,297,215,72,-1,64,215,297,-1,77,209,326,-1,209,77,76,-1,325,97,276,-1,95,97,325,-1,290,216,263,-1,216,290,217,-1,214,181,215,-1,181,214,182,-1,347,219,73,-1,322,219,347,-1,311,284,312,-1,289,284,311,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc5_Geo_5_511_coordIndex_3()
		{
			int[] value = {2,216,0,-1,216,2,41,-1,1,313,310,-1,313,1,318,-1,315,310,313,-1,325,310,315,-1,58,338,364,-1,58,234,338,-1,208,222,207,-1,208,224,222,-1,58,205,56,-1,359,205,58,-1,363,357,364,-1,353,357,363,-1,363,350,362,-1,349,350,363,-1,69,352,362,-1,352,68,197,-1,68,352,69,-1,293,49,48,-1,49,293,292,-1,17,63,21,-1,16,63,17,-1,361,20,229,-1,361,201,20,-1,199,123,358,-1,123,199,132,-1,359,360,205,-1,359,358,360,-1,353,199,357,-1,200,199,353,-1,285,361,221,-1,356,361,285,-1,356,201,361,-1,201,356,355,-1,198,128,196,-1,128,198,129,-1,354,130,200,-1,130,354,131,-1,197,354,352,-1,197,196,354,-1,227,195,220,-1,227,198,195,-1,355,202,201,-1,355,228,202,-1,291,305,351,-1,305,291,304,-1,348,317,351,-1,348,316,317,-1,306,278,280,-1,308,278,306,-1,338,321,349,-1,338,191,321,-1,321,134,133,-1,321,279,134,-1,348,28,187,-1,348,307,28,-1,314,186,327,-1,314,187,186,-1,37,245,41,-1,37,36,245,-1,249,284,289,-1,284,249,170,-1,341,309,253,-1,341,347,309,-1,178,341,179,-1,324,341,178,-1,346,91,237,-1,346,92,91,-1,98,146,139,-1,98,277,146,-1,99,101,100,-1,101,99,5,-1,331,243,106,-1,243,331,175,-1,331,173,175,-1,173,331,259,-1,112,246,259,-1,112,247,246,-1,288,172,174,-1,288,339,172,-1,141,169,164,-1,141,121,169,-1,248,167,166,-1,34,167,248,-1,108,165,164,-1,108,111,165,-1,154,251,155,-1,154,345,251,-1,154,157,345,-1,158,157,154,-1,80,340,82,-1,80,93,340,-1,89,236,323,-1,89,90,236,-1,260,177,261,-1,260,180,177,-1,334,337,333,-1,337,334,8,-1,265,258,298,-1,265,257,258,-1,344,269,342,-1,269,344,270,-1,152,238,257,-1,102,238,152,-1,329,256,255,-1,329,336,256,-1,114,342,120,-1,342,114,344,-1,271,13,12,-1,271,335,13,-1,148,272,110,-1,150,272,148,-1,149,240,273,-1,334,240,149,-1,320,147,70,-1,147,320,302,-1,141,34,136,-1,167,34,141,-1,342,118,120,-1,342,343,118,-1,262,154,50,-1,262,261,154,-1,180,82,340,-1,180,260,82,-1,140,254,4,-1,254,140,328,-1,39,277,138,-1,39,146,277,-1,326,62,77,-1,326,235,62,-1,360,223,225,-1,360,122,223,-1,8,332,337,-1,7,332,8,-1,109,12,116,-1,271,12,109,-1,102,5,238,-1,101,5,102,-1,247,120,119,-1,247,114,120,-1,335,108,169,-1,108,335,271,-1,329,107,336,-1,329,105,107,-1,100,104,106,-1,100,101,104,-1,239,85,241,-1,85,239,83,-1,7,268,332,-1,7,267,268,-1,267,117,14,-1,117,267,7,-1,105,115,113,-1,115,105,329,-1,328,80,79,-1,328,91,80,-1,89,92,87,-1,92,89,93,-1,327,235,326,-1,235,327,186,-1,81,283,79,-1,283,81,275,-1,211,324,236,-1,322,324,211,-1,61,77,62,-1,61,75,77,-1,309,73,72,-1,309,347,73,-1,350,192,319,-1,350,133,192,-1,26,280,231,-1,306,280,26,-1,302,282,294,-1,302,320,282,-1,183,189,233,-1,183,184,189,-1,320,69,319,-1,69,320,70,-1,68,66,65,-1,68,70,66,-1,64,230,21,-1,64,297,230,-1,301,286,300,-1,296,286,301,-1,316,318,317,-1,313,318,316,-1,315,327,274,-1,315,314,327,-1,36,40,138,-1,36,35,40,-1,33,144,136,-1,144,33,142,-1,218,311,55,-1,218,217,311,-1,346,38,171,-1,346,145,38,-1,171,40,43,-1,171,38,40,-1,43,37,42,-1,43,35,37,-1,181,253,309,-1,162,253,181,-1,144,246,168,-1,246,144,143,-1,293,304,291,-1,293,295,304,-1,307,26,28,-1,306,26,307,-1,304,308,305,-1,303,308,304,-1,302,204,147,-1,302,193,204,-1,71,47,25,-1,71,203,47,-1,292,299,49,-1,300,299,292,-1,16,24,63,-1,16,19,24,-1,11,330,255,-1,10,330,11,-1,117,150,148,-1,6,150,117,-1,0,318,1,-1,287,318,0,-1,287,296,318,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmc5_Geo_5_511_normalIndex_1()
		{
			int[] value = {269,292,289,-1,350,296,336,-1,197,192,215,-1,184,165,185,-1,141,137,173,-1,15,41,43,-1,15,73,57,-1,52,43,37,-1,51,18,69,-1,69,78,51,-1,358,314,328,-1,277,284,302,-1,27,36,8,-1,329,322,311,-1,355,352,343,-1,266,289,315,-1,315,311,266,-1,343,329,337,-1,76,54,64,-1,70,99,87,-1,152,240,195,-1,240,274,258,-1,51,78,83,-1,276,270,252,-1,276,290,270,-1,243,234,263,-1,46,18,37,-1,18,13,37,-1,62,126,47,-1,108,125,120,-1,73,15,47,-1,47,88,73,-1,73,88,78,-1,72,145,134,-1,243,263,277,-1,223,247,253,-1,324,315,289,-1,258,195,240,-1,255,250,188,-1,250,181,188,-1,296,274,273,-1,240,177,232,-1,240,170,177,-1,303,330,221,-1,330,246,221,-1,306,301,250,-1,301,228,250,-1,267,351,281,-1,267,339,351,-1,349,353,354,-1,362,310,283,-1,283,338,362,-1,256,309,287,-1,14,102,103,-1,103,32,14,-1,189,239,156,-1,239,186,156,-1,141,173,166,-1,173,191,166,-1,90,98,106,-1,90,39,98,-1,191,192,197,-1,54,97,104,-1,54,45,58,-1,54,26,34,-1,54,30,29,-1,54,71,55,-1,54,104,95,-1,54,58,64,-1,242,278,236,-1,152,170,240,-1,36,35,8,-1,361,322,364,-1,296,334,327,-1,98,39,28,-1,110,187,112,-1,359,334,360,-1,126,120,147,-1,103,102,166,-1,166,190,103,-1,204,203,197,-1,262,261,231,-1,68,96,152,-1,96,122,177,-1,177,170,96,-1,42,81,77,-1,77,24,42,-1,10,24,12,-1,12,2,10,-1,0,19,3,-1,3,9,0,-1,105,98,28,-1,0,17,14,-1,10,25,27,-1,10,2,25,-1,330,356,337,-1,187,213,205,-1,187,131,213,-1,213,245,205,-1,213,264,245,-1,336,353,350,-1,334,296,350,-1,356,330,303,-1,100,150,119,-1,100,135,150,-1,20,2,12,-1,20,1,2,-1,325,358,344,-1,325,302,358,-1,318,328,314,-1,318,342,328,-1,342,331,328,-1,318,314,302,-1,302,325,304,-1,321,313,272,-1,242,236,179,-1,129,133,99,-1,23,38,65,-1,23,11,38,-1,153,107,95,-1,107,71,95,-1,57,73,69,-1,15,44,16,-1,15,52,44,-1,99,70,80,-1,80,101,99,-1,276,238,275,-1,194,243,257,-1,243,277,257,-1,247,281,279,-1,247,212,281,-1,212,267,281,-1,212,183,267,-1,194,118,243,-1,118,117,243,-1,18,6,13,-1,6,22,13,-1,211,128,123,-1,134,145,223,-1,145,178,223,-1,302,304,290,-1,5,47,15,-1,15,16,5,-1,84,118,139,-1,118,194,139,-1,54,93,97,-1,139,200,143,-1,143,92,139,-1,4,21,34,-1,34,26,4,-1,37,63,52,-1,37,53,63,-1,344,358,341,-1,285,305,265,-1,318,302,284,-1,263,298,284,-1,284,277,263,-1,246,267,171,-1,267,183,171,-1,347,327,334,-1,360,355,359,-1,360,352,355,-1,293,273,254,-1,293,336,273,-1,177,196,232,-1,196,229,232,-1,287,309,338,-1,300,361,308,-1,361,357,308,-1,322,300,264,-1,264,271,322,-1,105,163,98,-1,163,154,98,-1,7,10,8,-1,10,27,8,-1,67,56,25,-1,56,27,25,-1,122,48,60,-1,122,96,48,-1,24,7,42,-1,24,10,7,-1,12,24,82,-1,24,77,82,-1,296,280,274,-1,280,258,274,-1,175,230,185,-1,190,166,191,-1,251,254,235,-1,251,293,254,-1,187,193,163,-1,187,205,193,-1,77,81,119,-1,81,100,119,-1,132,91,121,-1,266,206,211,-1,28,0,9,-1,56,36,27,-1,257,277,275,-1,54,95,71,-1,54,55,30,-1,54,29,26,-1,54,34,45,-1,54,76,93,-1,219,231,237,-1,159,180,173,-1,182,162,164,-1,102,14,89,-1,154,189,156,-1,231,185,230,-1,230,262,231,-1,60,32,146,-1,32,103,146,-1,177,122,196,-1,122,174,196,-1,334,350,353,-1,353,349,334,-1,339,246,330,-1,339,267,246,-1,318,284,342,-1,284,298,342,-1,351,345,281,-1,345,279,281,-1,274,240,273,-1,240,232,273,-1,152,188,121,-1,152,207,188,-1,361,300,322,-1,324,337,315,-1,324,335,337,-1,364,357,361,-1,364,363,357,-1,223,212,247,-1,223,178,212,-1,65,62,23,-1,65,108,62,-1,126,147,88,-1,88,47,126,-1,288,278,307,-1,307,323,288,-1,216,138,236,-1,138,179,236,-1,341,313,321,-1,321,344,341,-1,223,234,134,-1,117,134,234,-1,234,243,117,-1,276,302,290,-1,276,275,302,-1,302,275,277,-1,129,99,101,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmc5_Geo_5_511_normalIndex_2()
		{
			int[] value = {343,352,364,-1,195,207,152,-1,248,258,280,-1,170,152,96,-1,25,2,1,-1,1,31,25,-1,46,69,18,-1,92,64,66,-1,92,76,64,-1,123,83,111,-1,210,269,211,-1,130,67,74,-1,74,140,130,-1,187,110,131,-1,218,115,124,-1,358,302,314,-1,142,151,133,-1,78,69,73,-1,15,57,41,-1,15,43,52,-1,111,220,210,-1,134,50,72,-1,237,222,219,-1,273,336,296,-1,94,83,78,-1,251,231,261,-1,251,237,231,-1,210,123,111,-1,123,210,211,-1,116,218,214,-1,116,115,218,-1,70,94,78,-1,94,70,87,-1,101,88,147,-1,88,101,80,-1,133,114,142,-1,114,133,129,-1,151,224,225,-1,142,224,151,-1,286,326,312,-1,294,326,286,-1,216,142,138,-1,142,216,224,-1,35,105,28,-1,112,105,35,-1,20,72,22,-1,20,85,72,-1,292,324,289,-1,316,324,292,-1,67,131,56,-1,130,131,67,-1,74,128,140,-1,74,75,128,-1,116,83,94,-1,116,111,83,-1,139,66,84,-1,139,92,66,-1,33,1,6,-1,33,31,1,-1,195,248,207,-1,195,258,248,-1,200,275,238,-1,200,257,275,-1,133,124,99,-1,151,124,133,-1,319,332,333,-1,319,320,332,-1,299,220,214,-1,297,220,299,-1,134,53,50,-1,134,117,53,-1,285,325,305,-1,285,304,325,-1,307,341,323,-1,341,307,313,-1,149,138,113,-1,138,149,179,-1,236,288,216,-1,288,236,278,-1,270,304,285,-1,304,270,290,-1,272,307,268,-1,307,272,313,-1,5,62,47,-1,5,23,62,-1,212,160,183,-1,178,160,212,-1,169,157,150,-1,157,169,171,-1,335,316,340,-1,335,324,316,-1,282,345,346,-1,282,279,345,-1,255,280,291,-1,280,255,248,-1,175,186,201,-1,168,186,175,-1,256,249,309,-1,239,249,256,-1,184,208,182,-1,208,184,219,-1,219,185,231,-1,185,219,184,-1,196,226,229,-1,217,226,196,-1,146,122,60,-1,122,146,174,-1,90,17,39,-1,17,90,86,-1,230,283,262,-1,283,230,260,-1,338,260,287,-1,338,283,260,-1,165,182,164,-1,182,165,184,-1,180,162,182,-1,180,159,162,-1,219,227,208,-1,227,219,222,-1,265,272,259,-1,305,272,265,-1,321,272,305,-1,266,199,206,-1,266,271,199,-1,150,176,169,-1,150,135,176,-1,119,82,77,-1,82,119,127,-1,81,91,100,-1,81,68,91,-1,148,159,144,-1,148,162,159,-1,229,235,254,-1,235,229,226,-1,203,174,146,-1,204,174,203,-1,144,86,90,-1,137,86,144,-1,186,155,156,-1,155,186,168,-1,261,283,310,-1,262,283,261,-1,137,159,173,-1,137,144,159,-1,168,164,155,-1,168,165,164,-1,226,222,235,-1,227,222,226,-1,197,217,204,-1,217,197,215,-1,228,169,176,-1,228,221,169,-1,121,181,132,-1,181,121,188,-1,7,40,42,-1,7,3,40,-1,19,40,3,-1,19,48,40,-1,32,48,19,-1,32,60,48,-1,110,56,131,-1,36,56,110,-1,213,271,264,-1,199,271,213,-1,193,239,189,-1,193,249,239,-1,300,245,264,-1,300,308,245,-1,357,309,308,-1,357,354,309,-1,354,363,349,-1,354,357,363,-1,301,356,303,-1,356,301,348,-1,291,347,306,-1,347,291,327,-1,359,347,334,-1,359,348,347,-1,330,335,339,-1,335,330,337,-1,160,127,157,-1,160,136,127,-1,206,130,140,-1,206,199,130,-1,320,331,332,-1,320,317,331,-1,244,242,198,-1,268,242,244,-1,216,294,224,-1,216,288,294,-1,295,312,317,-1,286,312,295,-1,295,214,218,-1,299,214,295,-1,63,117,118,-1,53,117,63,-1,21,5,16,-1,4,5,21,-1,109,107,161,-1,109,79,107,-1,38,55,79,-1,30,55,38,-1,26,11,4,-1,29,11,26,-1,45,21,49,-1,34,21,45,-1,58,49,59,-1,45,49,58,-1,64,59,66,-1,58,59,64,-1,143,76,92,-1,76,143,93,-1,202,172,233,-1,153,172,202,-1,238,143,200,-1,238,167,143,-1,172,97,167,-1,97,172,104,-1,84,63,118,-1,63,84,61,-1,158,149,125,-1,198,149,158,-1,158,161,209,-1,158,109,161,-1,241,233,252,-1,241,202,233,-1,270,265,252,-1,270,285,265,-1,244,241,259,-1,241,244,209,-1,333,351,340,-1,345,351,333,-1,33,83,75,-1,83,33,51,-1,33,18,51,-1,33,6,18,-1,50,22,72,-1,13,22,50,-1,253,279,282,-1,279,253,247,-1,340,339,335,-1,351,339,340,-1,140,211,206,-1,211,140,128,-1,6,20,22,-1,20,6,1,-1,136,178,145,-1,160,178,136,-1,75,31,33,-1,74,31,75,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmc5_Geo_5_511_normalIndex_3()
		{
			int[] value = {289,211,269,-1,211,289,266,-1,292,319,316,-1,319,292,297,-1,333,316,319,-1,340,316,333,-1,252,259,241,-1,252,265,259,-1,257,139,194,-1,257,200,139,-1,252,238,276,-1,233,238,252,-1,209,202,241,-1,161,202,209,-1,209,198,158,-1,244,198,209,-1,125,109,158,-1,109,108,65,-1,108,109,125,-1,124,87,99,-1,87,124,115,-1,43,46,37,-1,41,46,43,-1,61,52,63,-1,61,44,52,-1,153,104,172,-1,104,153,95,-1,233,167,238,-1,233,172,167,-1,161,153,202,-1,107,153,161,-1,66,61,84,-1,59,61,66,-1,59,44,61,-1,44,59,49,-1,11,30,38,-1,30,11,29,-1,79,71,107,-1,71,79,55,-1,65,79,109,-1,65,38,79,-1,4,23,5,-1,4,11,23,-1,49,16,44,-1,49,21,16,-1,218,286,295,-1,286,218,225,-1,317,299,295,-1,317,320,299,-1,326,288,323,-1,294,288,326,-1,259,268,244,-1,259,272,268,-1,268,278,242,-1,268,307,278,-1,317,328,331,-1,317,312,328,-1,332,342,346,-1,332,331,342,-1,311,271,266,-1,311,322,271,-1,67,31,74,-1,31,67,25,-1,127,85,82,-1,127,136,85,-1,150,127,119,-1,157,127,150,-1,348,306,347,-1,348,301,306,-1,349,360,334,-1,349,363,360,-1,353,362,354,-1,362,353,336,-1,249,308,309,-1,308,249,245,-1,249,205,245,-1,205,249,193,-1,189,163,193,-1,189,154,163,-1,130,213,131,-1,130,199,213,-1,28,17,0,-1,28,39,17,-1,7,9,3,-1,8,9,7,-1,14,19,0,-1,14,32,19,-1,68,48,96,-1,68,40,48,-1,68,42,40,-1,81,42,68,-1,250,176,181,-1,250,228,176,-1,221,171,169,-1,221,246,171,-1,132,100,91,-1,132,135,100,-1,217,227,226,-1,227,217,215,-1,237,235,222,-1,237,251,235,-1,155,162,148,-1,162,155,164,-1,261,293,251,-1,310,293,261,-1,201,230,175,-1,201,260,230,-1,156,148,106,-1,148,156,155,-1,89,137,141,-1,89,86,137,-1,190,146,103,-1,203,146,190,-1,204,196,174,-1,217,196,204,-1,113,147,120,-1,147,113,114,-1,28,8,35,-1,9,8,28,-1,148,90,106,-1,148,144,90,-1,121,68,152,-1,121,91,68,-1,135,181,176,-1,135,132,181,-1,327,280,296,-1,280,327,291,-1,352,363,364,-1,352,360,363,-1,282,263,253,-1,282,298,263,-1,167,93,143,-1,167,97,93,-1,215,208,227,-1,192,208,215,-1,102,141,166,-1,89,141,102,-1,310,336,293,-1,362,336,310,-1,154,106,98,-1,154,156,106,-1,86,14,17,-1,14,86,89,-1,201,287,260,-1,201,256,287,-1,354,338,309,-1,354,362,338,-1,254,232,229,-1,232,254,273,-1,192,182,208,-1,192,180,182,-1,180,191,173,-1,191,180,192,-1,256,186,239,-1,186,256,201,-1,291,250,255,-1,291,306,250,-1,221,301,303,-1,301,221,228,-1,346,298,282,-1,298,346,342,-1,188,248,255,-1,248,188,207,-1,183,157,171,-1,160,157,183,-1,234,253,263,-1,234,223,253,-1,85,145,72,-1,85,136,145,-1,198,179,149,-1,198,242,179,-1,358,323,341,-1,326,323,358,-1,114,138,142,-1,114,113,138,-1,325,321,305,-1,325,344,321,-1,113,125,149,-1,125,113,120,-1,108,126,62,-1,108,120,126,-1,13,53,37,-1,13,50,53,-1,214,111,116,-1,220,111,214,-1,320,297,299,-1,319,297,320,-1,333,346,345,-1,333,332,346,-1,322,343,364,-1,322,329,343,-1,36,112,35,-1,112,36,110,-1,123,75,83,-1,123,128,75,-1,348,355,356,-1,348,359,355,-1,356,343,337,-1,356,355,343,-1,337,311,315,-1,337,329,311,-1,20,82,85,-1,12,82,20,-1,112,163,105,-1,163,112,187,-1,124,225,218,-1,124,151,225,-1,312,358,328,-1,326,358,312,-1,225,294,286,-1,224,294,225,-1,114,101,147,-1,114,129,101,-1,88,70,78,-1,88,80,70,-1,115,94,87,-1,116,94,115,-1,41,69,46,-1,41,57,69,-1,185,168,175,-1,165,168,185,-1,191,203,190,-1,197,203,191,-1,269,297,292,-1,210,297,269,-1,210,220,297,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmcun_Geo_5_517_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,5,-1,8,9,5,-1,1,10,2,-1,11,12,13,-1,11,14,12,-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,30,33,31,-1,34,35,36,-1,37,38,39,-1,40,41,42,-1,43,27,44,-1,43,28,27,-1,45,46,6,-1,46,4,6,-1,47,48,49,-1,47,50,48,-1,51,52,53,-1,53,52,54,-1,52,55,54,-1,56,57,26,-1,58,59,60,-1,61,62,63,-1,63,25,61,-1,64,65,66,-1,65,67,66,-1,68,69,70,-1,71,72,73,-1,71,74,72,-1,75,76,77,-1,77,78,75,-1,77,79,78,-1,80,81,82,-1,83,84,85,-1,86,85,84,-1,86,87,85,-1,81,37,88,-1,37,89,88,-1,90,91,92,-1,23,93,21,-1,32,94,30,-1,95,45,96,-1,97,94,29,-1,98,99,100,-1,100,101,98,-1,102,46,103,-1,102,104,46,-1,105,106,107,-1,105,108,106,-1,109,110,111,-1,112,110,113,-1,114,110,115,-1,116,110,117,-1,118,119,120,-1,118,121,119,-1,122,123,120,-1,120,119,122,-1,15,124,125,-1,126,71,127,-1,128,129,130,-1,130,131,128,-1,25,132,26,-1,114,133,134,-1,114,115,133,-1,135,136,137,-1,135,138,136,-1,139,125,140,-1,141,136,138,-1,141,16,136,-1,142,143,144,-1,144,145,142,-1,120,146,118,-1,120,147,146,-1,148,149,150,-1,148,151,149,-1,152,153,154,-1,154,48,152,-1,25,24,61,-1,155,156,157,-1,158,37,159,-1,160,124,161,-1,160,125,124,-1,130,162,163,-1,131,130,163,-1,163,143,131,-1,72,74,164,-1,75,165,76,-1,166,167,140,-1,168,169,170,-1,169,171,172,-1,160,161,173,-1,173,174,160,-1,153,175,176,-1,153,152,175,-1,118,146,167,-1,177,80,82,-1,177,178,80,-1,179,82,180,-1,179,177,82,-1,181,182,183,-1,181,184,182,-1,185,186,187,-1,187,188,185,-1,15,17,189,-1,190,19,18,-1,190,191,19,-1,18,192,193,-1,18,194,192,-1,195,111,196,-1,197,198,199,-1,197,200,198,-1,60,65,64,-1,201,202,41,-1,21,40,22,-1,35,141,203,-1,141,138,203,-1,7,204,205,-1,7,206,204,-1,207,143,163,-1,207,144,143,-1,208,207,209,-1,207,210,209,-1,208,144,207,-1,211,8,212,-1,211,9,8,-1,206,5,4,-1,206,7,5,-1,100,99,213,-1,213,214,100,-1,215,216,217,-1,103,218,102,-1,103,219,218,-1,217,220,221,-1,217,216,220,-1,9,211,222,-1,222,223,9,-1,205,224,225,-1,205,204,224,-1,226,227,228,-1,226,229,227,-1,230,225,224,-1,231,34,36,-1,232,21,231,-1,233,35,34,-1,233,141,35,-1,22,40,42,-1,234,60,235,-1,236,43,237,-1,238,239,240,-1,239,241,240,-1,196,111,242,-1,111,110,243,-1,20,244,194,-1,185,245,186,-1,177,246,178,-1,123,14,247,-1,14,248,247,-1,84,167,166,-1,84,83,167,-1,171,169,168,-1,170,169,249,-1,70,69,78,-1,78,79,70,-1,73,250,71,-1,251,16,15,-1,251,136,16,-1,157,252,253,-1,254,159,255,-1,254,158,159,-1,26,132,56,-1,57,254,150,-1,256,257,258,-1,257,259,258,-1,37,252,38,-1,149,26,57,-1,57,150,149,-1,180,260,179,-1,12,123,122,-1,12,14,123,-1,89,39,261,-1,262,75,263,-1,263,264,262,-1,135,137,265,-1,140,125,166,-1,125,160,166,-1,266,203,138,-1,138,135,266,-1,86,267,87,-1,86,268,267,-1,26,149,24,-1,269,270,63,-1,269,155,270,-1,271,47,272,-1,47,55,272,-1,243,110,116,-1,117,110,114,-1,115,110,112,-1,113,110,109,-1,273,274,275,-1,42,65,276,-1,92,277,202,-1,92,91,277,-1,223,5,9,-1,223,3,5,-1,278,1,0,-1,21,232,40,-1,81,88,279,-1,279,82,81,-1,280,121,281,-1,280,119,121,-1,282,260,283,-1,37,39,89,-1,167,146,169,-1,146,249,169,-1,72,248,73,-1,164,247,72,-1,247,248,72,-1,284,285,286,-1,252,37,158,-1,25,270,132,-1,25,63,270,-1,67,42,41,-1,67,65,42,-1,62,61,64,-1,64,66,62,-1,254,257,150,-1,200,237,240,-1,237,287,240,-1,288,272,55,-1,55,52,288,-1,43,287,237,-1,289,209,238,-1,289,290,209,-1,224,291,292,-1,292,230,224,-1,201,41,40,-1,194,18,20,-1,293,294,230,-1,32,31,295,-1,94,32,29,-1,58,61,24,-1,21,93,296,-1,125,251,15,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmcun_Geo_5_517_coordIndex_2()
		{
			int[] value = {297,227,229,-1,229,265,297,-1,298,73,286,-1,298,250,73,-1,167,83,118,-1,234,23,276,-1,299,194,300,-1,2,301,0,-1,230,226,225,-1,230,294,226,-1,225,228,205,-1,225,226,228,-1,302,188,187,-1,303,188,302,-1,299,192,194,-1,304,192,299,-1,244,300,194,-1,300,244,305,-1,306,307,308,-1,307,306,309,-1,23,235,310,-1,235,23,234,-1,276,22,42,-1,276,23,22,-1,311,145,312,-1,311,313,145,-1,73,284,286,-1,73,248,284,-1,314,283,315,-1,283,314,282,-1,316,181,246,-1,316,317,181,-1,265,165,297,-1,137,165,265,-1,296,318,319,-1,318,296,93,-1,320,321,322,-1,321,320,323,-1,64,58,60,-1,64,61,58,-1,295,1,324,-1,295,31,1,-1,99,40,232,-1,99,98,40,-1,204,291,224,-1,204,325,291,-1,104,4,46,-1,4,104,206,-1,1,33,10,-1,1,31,33,-1,326,274,327,-1,274,326,328,-1,329,99,232,-1,329,213,99,-1,330,331,332,-1,331,330,271,-1,210,238,209,-1,238,210,239,-1,290,44,324,-1,44,290,289,-1,241,200,240,-1,241,198,200,-1,333,272,288,-1,333,334,272,-1,39,53,54,-1,53,39,38,-1,335,62,66,-1,335,336,62,-1,318,306,322,-1,310,306,318,-1,270,56,132,-1,253,56,270,-1,337,247,164,-1,337,147,247,-1,172,76,338,-1,172,77,76,-1,249,147,337,-1,147,249,146,-1,74,126,68,-1,71,126,74,-1,119,339,122,-1,339,119,280,-1,281,85,87,-1,85,281,121,-1,268,173,340,-1,173,268,174,-1,186,341,193,-1,245,341,186,-1,258,183,182,-1,259,183,258,-1,80,255,159,-1,80,178,255,-1,342,82,279,-1,342,180,82,-1,283,343,13,-1,343,283,260,-1,324,278,290,-1,324,1,278,-1,301,3,223,-1,3,301,2,-1,197,237,200,-1,237,197,236,-1,67,202,277,-1,202,67,41,-1,214,344,100,-1,214,345,344,-1,327,273,97,-1,327,274,273,-1,346,275,274,-1,275,346,347,-1,325,217,291,-1,217,325,215,-1,348,196,349,-1,196,348,195,-1,345,350,344,-1,350,345,133,-1,351,220,216,-1,134,220,351,-1,352,218,219,-1,353,218,352,-1,354,355,356,-1,354,357,355,-1,358,164,74,-1,337,164,358,-1,338,359,139,-1,359,338,76,-1,79,168,70,-1,79,171,168,-1,360,298,361,-1,360,250,298,-1,330,362,50,-1,162,362,330,-1,52,363,288,-1,52,51,363,-1,156,269,364,-1,156,155,269,-1,149,365,24,-1,149,151,365,-1,320,244,20,-1,308,244,320,-1,174,166,160,-1,166,174,84,-1,266,293,203,-1,294,293,266,-1,34,319,233,-1,34,296,319,-1,75,297,165,-1,297,75,262,-1,366,264,263,-1,264,366,367,-1,175,128,285,-1,129,128,175,-1,238,287,289,-1,238,240,287,-1,261,54,49,-1,54,261,39,-1,342,368,343,-1,176,368,342,-1,316,260,282,-1,179,260,316,-1,356,369,370,-1,355,369,356,-1,371,268,340,-1,371,267,268,-1,269,62,336,-1,63,62,269,-1,53,156,51,-1,53,157,156,-1,372,373,199,-1,372,374,373,-1,257,255,259,-1,257,254,255,-1,256,304,299,-1,256,258,304,-1,256,300,148,-1,300,256,299,-1,59,24,365,-1,58,24,59,-1,254,56,158,-1,56,254,57,-1,38,157,53,-1,252,157,38,-1,271,334,331,-1,271,272,334,-1,152,50,362,-1,48,50,152,-1,298,285,128,-1,286,285,298,-1,360,366,127,-1,360,375,366,-1,358,68,70,-1,68,358,74,-1,176,279,153,-1,342,279,176,-1,284,368,285,-1,11,368,284,-1,281,355,280,-1,355,281,369,-1,370,303,356,-1,370,188,303,-1,340,185,371,-1,185,340,245,-1,161,341,173,-1,161,190,341,-1,308,322,306,-1,322,308,320,-1,113,105,107,-1,113,109,105,-1,133,112,350,-1,112,133,115,-1,116,351,353,-1,116,117,351,-1,242,243,352,-1,242,111,243,-1,241,331,334,-1,239,331,241,-1,44,287,43,-1,44,289,287,-1,326,236,90,-1,326,43,236,-1,328,202,201,-1,202,328,92,-1,310,93,23,-1,318,93,310,-1,233,321,17,-1,319,321,233,-1,329,231,36,-1,329,232,231,-1,35,293,36,-1,293,35,203,-1,266,265,229,-1,266,135,265,-1,294,229,226,-1,294,266,229,-1,262,227,297,-1,262,212,227,-1,367,211,264,-1,222,211,367,-1,142,313,375,-1,313,142,145,-1,106,347,101,-1,106,108,347,-1,295,29,32,-1,295,27,29,-1,376,96,349,-1,376,95,96,-1,273,348,349,-1,273,275,348,-1,94,273,349,-1,94,97,273,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmcun_Geo_5_517_coordIndex_3()
		{
			int[] value = {30,349,96,-1,30,94,349,-1,376,103,95,-1,376,219,103,-1,215,218,216,-1,102,218,215,-1,344,101,100,-1,344,106,101,-1,347,348,275,-1,347,108,348,-1,311,223,222,-1,223,311,301,-1,208,290,278,-1,208,209,290,-1,210,163,332,-1,207,163,210,-1,144,312,145,-1,144,208,312,-1,313,222,367,-1,313,311,222,-1,264,212,262,-1,264,211,212,-1,212,228,227,-1,212,8,228,-1,230,36,293,-1,36,230,329,-1,231,296,34,-1,231,21,296,-1,364,336,374,-1,364,269,336,-1,91,199,373,-1,91,197,199,-1,333,199,198,-1,199,333,372,-1,105,111,195,-1,111,105,109,-1,243,353,352,-1,243,116,353,-1,117,134,351,-1,134,117,114,-1,350,113,107,-1,350,112,113,-1,193,190,18,-1,193,341,190,-1,17,323,189,-1,17,321,323,-1,191,161,124,-1,161,191,190,-1,182,303,302,-1,182,184,303,-1,188,371,185,-1,371,188,370,-1,184,317,354,-1,184,181,317,-1,246,179,316,-1,177,179,246,-1,357,315,339,-1,314,315,357,-1,87,369,281,-1,369,87,267,-1,11,343,368,-1,11,13,343,-1,176,285,368,-1,176,175,285,-1,154,279,88,-1,154,153,279,-1,139,167,338,-1,140,167,139,-1,249,358,170,-1,358,249,337,-1,126,366,263,-1,127,366,126,-1,361,375,360,-1,361,142,375,-1,362,175,152,-1,175,362,129,-1,76,137,359,-1,165,137,76,-1,332,162,330,-1,332,163,162,-1,55,49,54,-1,49,55,47,-1,372,288,363,-1,288,372,333,-1,309,365,307,-1,309,59,365,-1,148,257,256,-1,148,150,257,-1,305,148,300,-1,305,151,148,-1,363,374,372,-1,364,374,363,-1,277,66,67,-1,66,277,335,-1,270,157,253,-1,157,270,155,-1,370,267,371,-1,370,369,267,-1,354,314,357,-1,317,314,354,-1,83,121,118,-1,121,83,85,-1,373,277,91,-1,335,277,373,-1,131,142,361,-1,143,142,131,-1,375,367,366,-1,367,375,313,-1,233,16,141,-1,233,17,16,-1,359,136,251,-1,137,136,359,-1,221,213,292,-1,214,213,221,-1,189,19,191,-1,323,19,189,-1,307,151,305,-1,365,151,307,-1,51,364,363,-1,51,156,364,-1,162,129,362,-1,130,129,162,-1,128,361,298,-1,361,128,131,-1,250,127,71,-1,127,250,360,-1,70,170,358,-1,70,168,170,-1,77,171,79,-1,77,172,171,-1,139,251,125,-1,251,139,359,-1,124,189,191,-1,189,124,15,-1,147,123,247,-1,120,123,147,-1,357,280,355,-1,357,339,280,-1,184,356,303,-1,184,354,356,-1,242,219,376,-1,352,219,242,-1,353,216,218,-1,351,216,353,-1,220,133,345,-1,133,220,134,-1,350,106,344,-1,107,106,350,-1,108,195,348,-1,195,108,105,-1,349,242,376,-1,242,349,196,-1,325,102,215,-1,325,104,102,-1,217,292,291,-1,221,292,217,-1,101,346,98,-1,347,346,101,-1,96,33,30,-1,96,45,33,-1,95,46,45,-1,103,46,95,-1,278,312,208,-1,312,278,0,-1,90,328,326,-1,92,328,90,-1,221,345,214,-1,221,220,345,-1,90,197,91,-1,236,197,90,-1,302,258,182,-1,302,304,258,-1,260,342,343,-1,260,180,342,-1,81,159,37,-1,81,80,159,-1,259,178,183,-1,255,178,259,-1,187,193,192,-1,186,193,187,-1,341,340,173,-1,340,341,245,-1,174,86,84,-1,174,268,86,-1,122,315,12,-1,315,122,339,-1,75,69,263,-1,75,78,69,-1,169,338,167,-1,169,172,338,-1,263,68,126,-1,263,69,68,-1,158,253,252,-1,56,253,158,-1,235,59,309,-1,60,59,235,-1,374,335,373,-1,374,336,335,-1,198,334,333,-1,334,198,241,-1,49,154,261,-1,49,48,154,-1,332,239,210,-1,239,332,331,-1,271,50,47,-1,271,330,50,-1,88,261,154,-1,88,89,261,-1,292,329,230,-1,329,292,213,-1,98,201,40,-1,98,346,201,-1,326,28,43,-1,326,327,28,-1,45,10,33,-1,10,45,6,-1,206,325,204,-1,206,104,325,-1,346,328,201,-1,346,274,328,-1,324,27,295,-1,324,44,27,-1,28,97,29,-1,28,327,97,-1,60,276,65,-1,276,60,234,-1,20,323,320,-1,323,20,19,-1,322,319,318,-1,322,321,319,-1,246,183,178,-1,246,181,183,-1,317,282,314,-1,282,317,316,-1,315,13,12,-1,13,315,283,-1,14,284,248,-1,284,14,11,-1,312,301,311,-1,0,301,312,-1,310,309,306,-1,309,310,235,-1,308,305,244,-1,305,308,307,-1,187,304,302,-1,187,192,304,-1,8,205,228,-1,205,8,7,-1,2,6,3,-1,2,10,6,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmcun_Geo_5_517_normalIndex_1()
		{
			int[] value = {45,66,34,-1,30,13,8,-1,30,42,13,-1,5,14,8,-1,14,6,8,-1,66,47,34,-1,95,82,120,-1,95,67,82,-1,160,191,260,-1,365,293,372,-1,290,375,355,-1,354,327,357,-1,196,229,170,-1,177,107,161,-1,177,119,107,-1,278,242,235,-1,303,295,289,-1,287,373,358,-1,271,196,209,-1,271,229,196,-1,144,125,42,-1,125,13,42,-1,277,204,280,-1,277,179,204,-1,321,282,308,-1,308,282,286,-1,282,279,286,-1,292,376,357,-1,333,342,338,-1,361,368,329,-1,329,327,361,-1,371,362,374,-1,362,364,374,-1,25,22,2,-1,50,53,78,-1,50,41,53,-1,11,90,88,-1,88,10,11,-1,88,20,10,-1,257,249,175,-1,71,93,84,-1,151,84,93,-1,151,147,84,-1,249,303,244,-1,303,284,244,-1,318,317,309,-1,355,346,290,-1,161,165,177,-1,223,144,198,-1,162,165,170,-1,185,200,158,-1,158,152,185,-1,195,125,233,-1,195,108,125,-1,116,126,106,-1,116,131,126,-1,148,206,187,-1,197,206,157,-1,174,206,178,-1,245,206,228,-1,64,59,27,-1,64,74,59,-1,55,24,27,-1,27,59,55,-1,160,122,103,-1,39,50,21,-1,85,109,97,-1,97,69,85,-1,327,306,357,-1,174,184,194,-1,174,178,184,-1,87,153,102,-1,87,145,153,-1,140,103,98,-1,215,153,145,-1,215,191,153,-1,51,57,48,-1,48,40,51,-1,27,81,64,-1,27,56,81,-1,337,369,366,-1,337,356,369,-1,143,114,213,-1,213,204,143,-1,327,354,361,-1,331,332,363,-1,325,303,312,-1,92,122,156,-1,92,103,122,-1,97,123,89,-1,69,97,89,-1,89,57,69,-1,53,41,17,-1,11,63,90,-1,83,99,98,-1,12,91,7,-1,91,29,100,-1,92,156,164,-1,164,117,92,-1,114,112,104,-1,114,143,112,-1,64,81,99,-1,224,257,175,-1,224,256,257,-1,212,175,167,-1,212,224,175,-1,236,258,265,-1,236,230,258,-1,239,276,272,-1,272,241,239,-1,160,260,251,-1,253,293,365,-1,253,248,293,-1,365,323,296,-1,365,350,323,-1,133,187,168,-1,320,259,307,-1,320,263,259,-1,338,362,371,-1,288,311,373,-1,290,287,375,-1,242,215,142,-1,215,145,142,-1,5,36,31,-1,5,19,36,-1,77,57,89,-1,77,48,57,-1,72,77,115,-1,77,137,115,-1,72,48,77,-1,4,14,3,-1,4,6,14,-1,19,8,13,-1,19,5,8,-1,158,200,192,-1,192,183,158,-1,180,208,176,-1,233,218,195,-1,233,240,218,-1,176,181,172,-1,176,208,181,-1,6,4,15,-1,15,38,6,-1,31,75,65,-1,31,36,75,-1,62,33,44,-1,62,58,33,-1,124,65,75,-1,275,278,235,-1,254,290,275,-1,273,242,278,-1,273,215,242,-1,375,287,358,-1,348,338,347,-1,316,271,269,-1,207,252,226,-1,252,267,226,-1,168,187,220,-1,187,206,243,-1,372,360,350,-1,239,250,276,-1,224,234,256,-1,24,67,60,-1,67,79,60,-1,93,99,83,-1,93,71,99,-1,29,91,12,-1,7,91,35,-1,2,22,10,-1,10,20,2,-1,78,43,50,-1,150,191,160,-1,150,153,191,-1,363,370,301,-1,367,312,330,-1,367,325,312,-1,357,306,292,-1,376,367,366,-1,334,359,298,-1,359,344,298,-1,303,370,295,-1,369,357,376,-1,376,366,369,-1,167,188,212,-1,82,24,55,-1,82,67,24,-1,284,289,285,-1,1,11,23,-1,23,9,1,-1,87,102,68,-1,98,103,83,-1,103,92,83,-1,76,142,145,-1,145,87,76,-1,151,201,147,-1,151,173,201,-1,357,369,354,-1,314,302,329,-1,314,331,302,-1,261,277,264,-1,277,279,264,-1,243,206,245,-1,228,206,174,-1,178,206,197,-1,157,206,148,-1,149,202,138,-1,358,362,343,-1,309,319,311,-1,309,317,319,-1,38,8,6,-1,38,30,8,-1,73,66,45,-1,290,254,287,-1,249,244,139,-1,139,175,249,-1,111,74,129,-1,111,59,74,-1,219,188,189,-1,303,289,284,-1,99,81,91,-1,81,35,91,-1,53,79,78,-1,17,60,53,-1,60,79,53,-1,94,96,86,-1,370,303,325,-1,327,302,306,-1,327,329,302,-1,364,358,373,-1,364,362,358,-1,368,361,371,-1,371,374,368,-1,367,359,366,-1,263,269,226,-1,269,246,226,-1,274,264,279,-1,279,282,274,-1,271,246,269,-1,227,115,207,-1,227,134,115,-1,75,121,154,-1,154,124,75,-1,288,373,287,-1,350,365,372,-1,132,80,124,-1,161,107,141,-1,165,161,170,-1,333,361,354,-1,290,346,299,-1,103,150,160,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmcun_Geo_5_517_normalIndex_2()
		{
			int[] value = {52,33,58,-1,58,68,52,-1,70,78,86,-1,70,43,78,-1,99,71,64,-1,348,355,343,-1,310,350,315,-1,34,49,45,-1,124,62,65,-1,124,80,62,-1,65,44,31,-1,65,62,44,-1,266,241,272,-1,238,241,266,-1,310,323,350,-1,300,323,310,-1,360,315,350,-1,315,360,340,-1,336,324,322,-1,324,336,326,-1,355,347,341,-1,347,355,348,-1,343,375,358,-1,343,355,375,-1,37,40,54,-1,37,28,40,-1,78,94,86,-1,78,79,94,-1,205,189,159,-1,189,205,219,-1,221,236,234,-1,221,214,236,-1,68,63,52,-1,102,63,68,-1,299,352,304,-1,352,299,346,-1,351,294,353,-1,294,351,291,-1,371,333,338,-1,371,361,333,-1,141,66,127,-1,141,107,66,-1,200,287,254,-1,200,185,287,-1,36,121,75,-1,36,105,121,-1,108,13,125,-1,13,108,19,-1,66,119,47,-1,66,107,119,-1,283,202,216,-1,202,283,281,-1,203,200,254,-1,203,192,200,-1,163,262,155,-1,262,163,261,-1,137,207,115,-1,207,137,252,-1,134,209,127,-1,209,134,227,-1,267,263,226,-1,267,259,263,-1,270,264,274,-1,270,268,264,-1,289,308,286,-1,308,289,295,-1,339,368,374,-1,339,345,368,-1,352,336,353,-1,341,336,352,-1,302,292,306,-1,301,292,302,-1,26,60,17,-1,26,56,60,-1,100,90,146,-1,100,88,90,-1,35,56,26,-1,56,35,81,-1,41,39,25,-1,50,39,41,-1,59,128,55,-1,128,59,111,-1,129,84,147,-1,84,129,74,-1,173,164,199,-1,164,173,117,-1,276,255,296,-1,250,255,276,-1,298,265,258,-1,344,265,298,-1,257,330,312,-1,257,256,330,-1,110,175,139,-1,110,167,175,-1,189,113,120,-1,113,189,188,-1,127,73,134,-1,127,66,73,-1,49,30,38,-1,30,49,34,-1,320,269,263,-1,269,320,316,-1,364,311,319,-1,311,364,373,-1,183,166,158,-1,183,186,166,-1,216,149,162,-1,216,202,149,-1,210,138,202,-1,138,210,136,-1,105,176,121,-1,176,105,180,-1,135,168,169,-1,168,135,133,-1,186,171,166,-1,171,186,184,-1,232,181,208,-1,194,181,232,-1,237,218,240,-1,247,218,237,-1,211,193,225,-1,211,182,193,-1,0,17,41,-1,26,17,0,-1,146,118,140,-1,118,146,90,-1,20,12,2,-1,20,29,12,-1,46,70,61,-1,46,43,70,-1,163,130,179,-1,123,130,163,-1,282,297,274,-1,282,321,297,-1,332,314,313,-1,332,331,314,-1,369,349,354,-1,369,356,349,-1,351,360,372,-1,322,360,351,-1,117,83,92,-1,83,117,93,-1,76,132,142,-1,80,132,76,-1,278,304,273,-1,278,299,304,-1,11,52,63,-1,52,11,1,-1,18,9,23,-1,9,18,16,-1,112,85,96,-1,109,85,112,-1,207,246,227,-1,207,226,246,-1,285,286,280,-1,286,285,289,-1,110,101,113,-1,104,101,110,-1,221,188,219,-1,212,188,221,-1,225,190,231,-1,193,190,225,-1,217,173,199,-1,217,201,173,-1,314,368,345,-1,329,368,314,-1,308,332,321,-1,308,363,332,-1,305,328,307,-1,305,335,328,-1,359,330,344,-1,359,367,330,-1,334,300,310,-1,334,298,300,-1,334,315,337,-1,315,334,310,-1,342,354,349,-1,333,354,342,-1,367,292,325,-1,292,367,376,-1,295,363,308,-1,370,363,295,-1,261,268,262,-1,261,264,268,-1,143,179,130,-1,204,179,143,-1,70,96,85,-1,86,96,70,-1,46,18,21,-1,46,32,18,-1,0,25,2,-1,25,0,41,-1,104,139,114,-1,110,139,104,-1,94,101,96,-1,95,101,94,-1,129,193,111,-1,193,129,190,-1,231,238,225,-1,231,241,238,-1,199,239,217,-1,239,199,250,-1,156,255,164,-1,156,253,255,-1,322,353,336,-1,353,322,351,-1,157,116,106,-1,157,148,116,-1,184,197,171,-1,197,184,178,-1,245,232,247,-1,245,228,232,-1,220,243,237,-1,220,187,243,-1,267,262,268,-1,252,262,267,-1,209,246,271,-1,209,227,246,-1,283,316,318,-1,283,271,316,-1,281,311,288,-1,311,281,309,-1,341,346,355,-1,352,346,341,-1,273,294,260,-1,304,294,273,-1,203,275,235,-1,203,254,275,-1,242,132,235,-1,132,242,142,-1,76,68,58,-1,76,87,68,-1,80,58,62,-1,80,76,58,-1,1,33,52,-1,1,3,33,-1,16,4,9,-1,15,4,16,-1,51,28,32,-1,28,51,40,-1,126,136,152,-1,126,131,136,-1,141,170,161,-1,141,196,170,-1,222,198,169,-1,222,223,198,-1,149,135,169,-1,149,138,135,-1,165,149,169,-1,165,162,149,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmcun_Geo_5_517_normalIndex_3()
		{
			int[] value = {177,169,198,-1,177,165,169,-1,222,233,223,-1,222,240,233,-1,180,218,208,-1,195,218,180,-1,166,152,158,-1,166,126,152,-1,136,135,138,-1,136,131,135,-1,37,38,15,-1,38,37,49,-1,72,134,73,-1,72,115,134,-1,137,89,155,-1,77,89,137,-1,48,54,40,-1,48,72,54,-1,28,15,16,-1,28,37,15,-1,9,3,1,-1,9,4,3,-1,3,44,33,-1,3,14,44,-1,124,235,132,-1,235,124,203,-1,275,299,278,-1,275,290,299,-1,313,345,335,-1,313,314,345,-1,317,307,328,-1,317,320,307,-1,270,307,259,-1,307,270,305,-1,116,187,133,-1,187,116,148,-1,243,247,237,-1,243,245,247,-1,228,194,232,-1,194,228,174,-1,171,157,106,-1,171,197,157,-1,296,253,365,-1,296,255,253,-1,260,291,251,-1,260,294,291,-1,248,156,122,-1,156,248,253,-1,258,238,266,-1,258,230,238,-1,241,217,239,-1,217,241,231,-1,230,214,211,-1,230,236,214,-1,234,212,221,-1,224,212,234,-1,182,159,128,-1,205,159,182,-1,147,190,129,-1,190,147,201,-1,95,113,101,-1,95,120,113,-1,104,96,101,-1,104,112,96,-1,213,139,244,-1,213,114,139,-1,140,99,146,-1,98,99,140,-1,35,0,7,-1,0,35,26,-1,39,18,23,-1,21,18,39,-1,61,32,46,-1,61,51,32,-1,130,112,143,-1,112,130,109,-1,90,102,118,-1,63,102,90,-1,155,123,163,-1,155,89,123,-1,279,280,286,-1,280,279,277,-1,305,274,297,-1,274,305,270,-1,326,349,324,-1,326,342,349,-1,337,359,334,-1,337,366,359,-1,340,337,315,-1,340,356,337,-1,297,335,305,-1,313,335,297,-1,319,374,364,-1,374,319,339,-1,302,363,301,-1,363,302,331,-1,231,201,217,-1,231,190,201,-1,211,205,182,-1,214,205,211,-1,71,74,64,-1,74,71,84,-1,328,319,317,-1,339,319,328,-1,69,51,61,-1,57,51,69,-1,32,16,18,-1,16,32,28,-1,273,191,215,-1,273,260,191,-1,118,153,150,-1,102,153,118,-1,172,192,154,-1,183,192,172,-1,251,293,248,-1,291,293,251,-1,324,356,340,-1,349,356,324,-1,321,313,297,-1,321,332,313,-1,123,109,130,-1,97,109,123,-1,85,61,70,-1,61,85,69,-1,43,21,50,-1,21,43,46,-1,2,7,0,-1,2,12,7,-1,88,29,20,-1,88,100,29,-1,140,150,103,-1,150,140,118,-1,122,251,248,-1,251,122,160,-1,56,24,60,-1,27,24,56,-1,182,111,193,-1,182,128,111,-1,230,225,238,-1,230,211,225,-1,220,240,222,-1,237,240,220,-1,247,208,218,-1,232,208,247,-1,181,184,186,-1,184,181,194,-1,171,126,166,-1,106,126,171,-1,131,133,135,-1,133,131,116,-1,169,220,222,-1,220,169,168,-1,105,195,180,-1,105,108,195,-1,176,154,121,-1,172,154,176,-1,152,210,185,-1,136,210,152,-1,198,119,177,-1,198,144,119,-1,223,125,144,-1,233,125,223,-1,73,54,72,-1,54,73,45,-1,318,281,283,-1,309,281,318,-1,172,186,183,-1,172,181,186,-1,318,320,317,-1,316,320,318,-1,266,298,258,-1,266,300,298,-1,188,110,113,-1,188,167,110,-1,249,312,303,-1,249,257,312,-1,344,256,265,-1,330,256,344,-1,272,296,323,-1,276,296,272,-1,255,199,164,-1,199,255,250,-1,117,151,93,-1,117,173,151,-1,55,159,82,-1,159,55,128,-1,11,22,23,-1,11,10,22,-1,91,146,99,-1,91,100,146,-1,23,25,39,-1,23,22,25,-1,325,301,370,-1,292,301,325,-1,347,342,326,-1,338,342,347,-1,335,339,328,-1,335,345,339,-1,259,268,270,-1,268,259,267,-1,280,213,285,-1,280,204,213,-1,155,252,137,-1,252,155,262,-1,261,179,277,-1,261,163,179,-1,244,285,213,-1,244,284,285,-1,154,203,124,-1,203,154,192,-1,185,288,287,-1,185,210,288,-1,283,229,271,-1,283,216,229,-1,144,47,119,-1,47,144,42,-1,19,105,36,-1,19,108,105,-1,210,281,288,-1,210,202,281,-1,127,196,141,-1,127,209,196,-1,229,162,170,-1,229,216,162,-1,338,343,362,-1,343,338,348,-1,372,291,351,-1,291,372,293,-1,353,304,352,-1,353,294,304,-1,234,265,256,-1,234,236,265,-1,214,219,205,-1,219,214,221,-1,159,120,82,-1,120,159,189,-1,67,94,79,-1,94,67,95,-1,54,49,37,-1,45,49,54,-1,341,326,336,-1,326,341,347,-1,322,340,360,-1,340,322,324,-1,272,300,266,-1,272,323,300,-1,14,31,44,-1,31,14,5,-1,34,42,30,-1,34,47,42,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmet2_Geo_5_523_coordIndex_1()
		{
			int[] value = {0,1,2,-1,2,3,0,-1,4,5,6,-1,4,7,5,-1,8,9,10,-1,8,11,9,-1,4,12,13,-1,13,14,4,-1,7,15,5,-1,15,16,5,-1,12,17,18,-1,19,20,21,-1,22,23,24,-1,24,25,22,-1,26,27,28,-1,26,29,27,-1,30,19,21,-1,30,31,19,-1,32,33,34,-1,35,36,37,-1,38,39,40,-1,39,41,40,-1,42,33,43,-1,37,44,45,-1,37,46,44,-1,47,48,49,-1,47,50,48,-1,1,51,2,-1,1,52,51,-1,53,54,55,-1,56,57,52,-1,57,51,52,-1,10,58,59,-1,60,61,8,-1,8,62,60,-1,63,64,65,-1,64,66,65,-1,67,68,69,-1,69,70,67,-1,71,72,73,-1,74,75,76,-1,77,78,79,-1,78,80,81,-1,82,83,84,-1,85,84,83,-1,85,86,84,-1,87,88,89,-1,90,91,92,-1,90,93,91,-1,94,95,96,-1,63,97,98,-1,96,95,99,-1,95,100,99,-1,101,95,94,-1,101,102,95,-1,103,104,105,-1,105,106,103,-1,107,108,103,-1,103,109,107,-1,110,111,112,-1,104,103,108,-1,113,114,115,-1,68,67,116,-1,117,118,119,-1,119,120,117,-1,38,121,42,-1,122,123,124,-1,124,125,122,-1,126,28,27,-1,126,127,128,-1,126,27,127,-1,129,130,131,-1,132,133,119,-1,134,135,136,-1,135,137,136,-1,138,139,140,-1,141,142,143,-1,141,132,142,-1,144,145,146,-1,146,147,144,-1,148,149,137,-1,149,150,137,-1,151,152,153,-1,153,154,151,-1,155,121,40,-1,121,38,40,-1,129,156,157,-1,157,130,129,-1,32,43,33,-1,32,158,43,-1,159,160,161,-1,162,139,121,-1,113,163,114,-1,113,164,163,-1,165,166,167,-1,167,168,165,-1,169,170,171,-1,171,172,169,-1,173,174,175,-1,176,177,178,-1,176,179,177,-1,66,180,181,-1,66,64,180,-1,182,183,184,-1,185,186,112,-1,187,188,189,-1,190,191,192,-1,192,193,190,-1,194,195,186,-1,196,197,198,-1,196,199,197,-1,200,197,201,-1,200,202,197,-1,203,204,205,-1,204,206,205,-1,203,207,208,-1,203,205,207,-1,209,210,211,-1,209,212,210,-1,213,214,215,-1,214,216,215,-1,78,81,217,-1,217,79,78,-1,218,137,150,-1,218,136,137,-1,219,220,221,-1,65,222,63,-1,223,175,224,-1,223,225,175,-1,187,226,227,-1,187,189,226,-1,187,228,188,-1,228,82,188,-1,68,177,69,-1,177,179,69,-1,229,230,231,-1,232,233,234,-1,60,235,234,-1,61,231,236,-1,237,238,184,-1,239,240,84,-1,240,82,84,-1,239,241,242,-1,243,244,245,-1,246,247,93,-1,229,174,195,-1,195,230,229,-1,174,186,195,-1,87,99,248,-1,99,249,248,-1,174,173,250,-1,97,63,222,-1,106,110,109,-1,105,104,251,-1,100,252,253,-1,186,254,255,-1,256,255,257,-1,256,112,255,-1,100,95,102,-1,102,257,100,-1,107,258,108,-1,107,259,258,-1,108,258,260,-1,260,261,108,-1,89,216,94,-1,262,196,216,-1,262,90,196,-1,263,264,265,-1,77,266,78,-1,267,213,215,-1,268,269,270,-1,268,263,77,-1,167,115,271,-1,167,113,115,-1,272,273,274,-1,273,275,274,-1,220,276,277,-1,220,278,276,-1,279,280,277,-1,279,277,281,-1,277,276,281,-1,282,46,37,-1,20,283,284,-1,20,285,283,-1,43,286,39,-1,43,158,286,-1,287,42,121,-1,47,288,29,-1,29,26,47,-1,289,128,122,-1,165,168,54,-1,290,291,292,-1,292,293,290,-1,294,272,295,-1,272,274,295,-1,18,294,13,-1,294,295,13,-1,296,297,34,-1,296,298,297,-1,151,299,152,-1,299,300,152,-1,301,302,118,-1,301,303,302,-1,120,119,133,-1,133,304,120,-1,302,142,132,-1,132,119,302,-1,134,136,305,-1,306,137,135,-1,306,148,137,-1,120,147,307,-1,307,117,120,-1,143,282,36,-1,282,37,36,-1,32,34,297,-1,161,308,309,-1,310,290,293,-1,310,311,290,-1,28,57,312,-1,313,156,314,-1,156,129,314,-1,125,165,315,-1,125,166,165,-1,26,50,47,-1,316,45,317,-1,45,318,317,-1,319,303,301,-1,301,320,319,-1,41,39,286,-1,286,31,41,-1,23,321,24,-1,23,322,321,-1,285,323,283,-1,323,281,283,-1,309,308,279,-1,226,324,325,-1,226,189,324,-1,326,327,328,-1,326,325,327,-1,268,77,329,-1,201,263,268,-1,268,200,201,-1,268,270,330,-1,268,329,269,-1,267,215,198,-1,206,213,267,-1,267,202,206,-1,263,265,266,-1,263,201,264,-1,216,89,262,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmet2_Geo_5_523_coordIndex_2()
		{
			int[] value = {208,331,203,-1,208,332,331,-1,332,208,333,-1,333,334,332,-1,257,252,100,-1,112,186,255,-1,105,251,111,-1,106,109,103,-1,335,336,337,-1,98,338,63,-1,75,74,339,-1,339,340,75,-1,224,175,341,-1,175,174,341,-1,93,247,342,-1,342,91,93,-1,343,199,92,-1,179,76,69,-1,84,86,239,-1,86,241,239,-1,182,344,345,-1,346,347,182,-1,346,348,347,-1,349,210,212,-1,212,58,349,-1,231,230,236,-1,235,232,234,-1,350,229,231,-1,236,8,61,-1,236,11,8,-1,69,76,70,-1,76,75,70,-1,219,82,240,-1,219,188,82,-1,221,188,219,-1,221,189,188,-1,351,225,223,-1,351,352,225,-1,353,180,64,-1,278,220,219,-1,219,178,278,-1,266,77,263,-1,343,201,197,-1,197,199,343,-1,354,92,91,-1,354,355,92,-1,353,63,173,-1,353,64,63,-1,217,81,356,-1,356,357,217,-1,192,191,358,-1,343,92,359,-1,92,355,359,-1,237,360,232,-1,91,361,354,-1,91,342,361,-1,339,74,362,-1,362,74,363,-1,225,173,175,-1,225,353,173,-1,72,179,176,-1,72,71,179,-1,364,280,275,-1,364,277,280,-1,22,25,365,-1,319,366,303,-1,319,367,366,-1,317,288,316,-1,317,29,288,-1,368,369,305,-1,370,371,20,-1,371,21,20,-1,365,25,21,-1,21,371,365,-1,372,161,160,-1,160,14,372,-1,279,323,309,-1,279,281,323,-1,312,373,374,-1,373,17,374,-1,375,301,376,-1,375,320,301,-1,146,377,147,-1,377,307,147,-1,153,291,154,-1,153,292,291,-1,35,37,316,-1,37,45,316,-1,378,305,136,-1,304,218,150,-1,304,133,218,-1,379,328,380,-1,379,326,328,-1,55,314,129,-1,131,130,56,-1,381,126,128,-1,128,289,381,-1,166,124,164,-1,166,125,124,-1,302,119,118,-1,53,129,131,-1,53,55,129,-1,223,382,351,-1,223,383,382,-1,384,341,385,-1,384,224,341,-1,371,163,386,-1,386,365,371,-1,370,163,371,-1,370,114,163,-1,370,20,284,-1,387,185,251,-1,109,256,107,-1,110,256,109,-1,110,112,256,-1,258,332,260,-1,258,331,332,-1,58,388,349,-1,96,99,87,-1,255,252,257,-1,338,389,250,-1,390,85,83,-1,193,79,217,-1,83,391,390,-1,355,354,243,-1,76,179,71,-1,234,61,60,-1,234,231,61,-1,57,392,51,-1,57,381,392,-1,165,54,53,-1,2,51,393,-1,51,392,393,-1,366,367,394,-1,316,288,395,-1,395,35,316,-1,320,396,322,-1,396,321,322,-1,35,368,36,-1,22,172,23,-1,374,290,311,-1,311,312,374,-1,32,323,158,-1,32,309,323,-1,30,25,24,-1,30,21,25,-1,312,311,28,-1,311,26,28,-1,20,19,285,-1,397,15,7,-1,397,398,15,-1,18,13,12,-1,4,6,12,-1,399,400,397,-1,399,401,400,-1,355,245,402,-1,245,355,243,-1,348,191,190,-1,346,191,348,-1,403,58,358,-1,59,58,403,-1,356,404,405,-1,356,406,404,-1,402,407,408,-1,407,402,245,-1,12,374,17,-1,6,374,12,-1,401,160,159,-1,399,160,401,-1,398,400,409,-1,400,398,397,-1,127,29,317,-1,27,29,127,-1,410,124,411,-1,410,386,124,-1,158,285,286,-1,285,158,323,-1,16,154,291,-1,15,154,16,-1,151,409,299,-1,409,151,398,-1,291,374,16,-1,374,291,290,-1,386,169,365,-1,386,410,169,-1,159,297,298,-1,159,161,297,-1,377,300,412,-1,300,377,152,-1,292,146,145,-1,153,146,292,-1,413,310,293,-1,413,414,310,-1,412,296,138,-1,412,300,296,-1,396,415,321,-1,155,415,396,-1,319,170,367,-1,319,171,170,-1,46,416,44,-1,394,416,46,-1,34,42,287,-1,42,34,33,-1,417,392,418,-1,393,392,417,-1,419,420,421,-1,420,419,422,-1,423,3,424,-1,3,423,0,-1,418,381,289,-1,418,392,381,-1,424,131,423,-1,131,424,53,-1,315,418,289,-1,315,421,418,-1,354,73,243,-1,354,361,73,-1,193,357,190,-1,193,217,357,-1,348,425,347,-1,426,425,348,-1,405,427,428,-1,405,404,427,-1,338,173,63,-1,173,338,250,-1,389,254,250,-1,429,254,389,-1,89,246,262,-1,246,89,88,-1,334,260,332,-1,260,334,430,-1,258,431,331,-1,258,259,431,-1,432,336,335,-1,432,433,336,-1,111,185,112,-1,111,251,185,-1,340,248,337,-1,434,248,340,-1,284,435,115,-1,284,436,435,-1,169,416,170,-1,169,410,416,-1,70,222,65,-1,70,75,222,-1,370,115,114,-1,370,284,115,-1,385,350,233,-1,341,350,385,-1,383,224,384,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmet2_Geo_5_523_coordIndex_3()
		{
			int[] value = {224,383,223,-1,379,351,382,-1,351,379,437,-1,438,55,54,-1,55,438,380,-1,380,314,55,-1,380,328,314,-1,372,308,161,-1,439,308,372,-1,378,218,141,-1,378,136,218,-1,117,440,376,-1,307,440,117,-1,24,415,30,-1,24,321,415,-1,31,415,41,-1,30,415,31,-1,369,35,395,-1,369,368,35,-1,366,302,303,-1,366,142,302,-1,372,13,295,-1,372,14,13,-1,274,280,439,-1,275,280,274,-1,441,276,278,-1,441,442,276,-1,443,444,445,-1,444,443,271,-1,352,353,225,-1,353,352,180,-1,342,363,361,-1,362,363,342,-1,247,362,342,-1,339,362,247,-1,184,344,182,-1,184,238,344,-1,86,446,241,-1,446,86,427,-1,242,243,73,-1,243,242,244,-1,447,360,237,-1,447,448,360,-1,449,226,450,-1,226,449,227,-1,402,359,355,-1,359,402,451,-1,358,212,192,-1,358,58,212,-1,406,452,408,-1,452,406,80,-1,186,387,194,-1,186,185,387,-1,207,333,208,-1,453,333,207,-1,266,80,78,-1,266,452,80,-1,451,264,359,-1,265,264,451,-1,196,215,216,-1,198,215,196,-1,68,441,177,-1,116,441,68,-1,384,449,383,-1,449,384,448,-1,176,219,240,-1,176,178,219,-1,454,236,230,-1,454,11,236,-1,388,10,9,-1,58,10,388,-1,448,385,360,-1,448,384,385,-1,235,237,232,-1,237,235,238,-1,345,59,403,-1,345,62,59,-1,403,182,345,-1,403,346,182,-1,228,237,455,-1,447,237,228,-1,451,408,452,-1,408,451,402,-1,407,427,404,-1,407,446,427,-1,72,240,239,-1,176,240,72,-1,201,359,264,-1,201,343,359,-1,9,430,388,-1,430,9,456,-1,339,434,340,-1,339,247,434,-1,389,98,433,-1,389,338,98,-1,429,433,432,-1,429,389,433,-1,430,261,260,-1,456,261,430,-1,207,330,453,-1,330,207,205,-1,431,214,204,-1,431,101,214,-1,269,457,209,-1,329,457,269,-1,453,270,211,-1,330,270,453,-1,267,197,202,-1,267,198,197,-1,268,205,200,-1,330,205,268,-1,444,181,180,-1,444,435,181,-1,438,445,437,-1,445,438,443,-1,382,326,379,-1,382,450,326,-1,328,313,314,-1,328,327,313,-1,325,273,327,-1,325,324,273,-1,324,221,364,-1,189,221,324,-1,289,125,315,-1,122,125,289,-1,410,44,416,-1,44,410,411,-1,386,164,124,-1,386,163,164,-1,396,375,162,-1,375,396,320,-1,440,375,376,-1,140,375,440,-1,28,381,57,-1,126,381,28,-1,56,312,57,-1,56,373,312,-1,311,50,26,-1,311,310,50,-1,156,18,157,-1,156,294,18,-1,458,395,49,-1,369,395,458,-1,148,48,414,-1,48,148,306,-1,145,149,413,-1,145,144,149,-1,376,118,117,-1,118,376,301,-1,144,150,149,-1,144,304,150,-1,135,458,306,-1,458,135,134,-1,368,378,36,-1,305,378,368,-1,134,369,458,-1,369,134,305,-1,282,142,366,-1,282,143,142,-1,412,307,377,-1,307,412,440,-1,149,414,413,-1,148,414,149,-1,49,306,458,-1,49,48,306,-1,300,298,296,-1,298,300,299,-1,313,294,156,-1,313,272,294,-1,17,157,18,-1,17,373,157,-1,393,420,422,-1,393,417,420,-1,140,162,375,-1,140,139,162,-1,23,171,322,-1,23,172,171,-1,46,366,394,-1,282,366,46,-1,44,318,45,-1,44,411,318,-1,436,283,442,-1,283,436,284,-1,116,442,441,-1,116,436,442,-1,220,364,221,-1,277,364,220,-1,364,273,324,-1,364,275,273,-1,327,272,313,-1,327,273,272,-1,443,54,168,-1,443,438,54,-1,437,352,351,-1,352,437,445,-1,435,271,115,-1,435,444,271,-1,211,269,209,-1,269,211,270,-1,79,329,77,-1,79,457,329,-1,214,94,216,-1,214,101,94,-1,456,194,261,-1,454,194,456,-1,261,387,108,-1,194,387,261,-1,256,259,107,-1,257,259,256,-1,257,102,259,-1,252,432,253,-1,252,429,432,-1,250,186,174,-1,250,254,186,-1,222,336,97,-1,222,337,336,-1,249,337,248,-1,249,335,337,-1,247,88,434,-1,247,246,88,-1,210,334,333,-1,210,349,334,-1,194,230,195,-1,194,454,230,-1,239,73,72,-1,239,242,73,-1,245,446,407,-1,446,245,244,-1,183,83,455,-1,183,391,83,-1,455,82,228,-1,455,83,82,-1,184,455,237,-1,184,183,455,-1,238,60,344,-1,238,235,60,-1,360,233,232,-1,385,233,360,-1,62,10,59,-1,10,62,8,-1,229,341,174,-1,341,229,350,-1,447,187,227,-1,447,228,187,-1,383,450,382,-1,450,383,449,-1,218,132,141,-1,218,133,132,-1,266,451,452,-1,266,265,451,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmet2_Geo_5_523_coordIndex_4()
		{
			int[] value = {209,192,212,-1,209,457,192,-1,457,193,192,-1,79,193,457,-1,333,211,210,-1,211,333,453,-1,214,206,204,-1,214,213,206,-1,331,204,203,-1,331,431,204,-1,206,200,205,-1,206,202,200,-1,92,196,90,-1,92,199,196,-1,11,456,9,-1,11,454,456,-1,428,426,405,-1,428,425,426,-1,325,450,226,-1,325,326,450,-1,448,227,449,-1,227,448,447,-1,244,241,446,-1,244,242,241,-1,85,425,428,-1,85,390,425,-1,182,391,183,-1,347,391,182,-1,445,180,352,-1,180,445,444,-1,271,168,167,-1,271,443,168,-1,177,278,178,-1,177,441,278,-1,442,281,276,-1,442,283,281,-1,439,295,274,-1,439,372,295,-1,113,166,164,-1,167,166,113,-1,155,162,121,-1,155,396,162,-1,373,130,157,-1,56,130,373,-1,147,304,144,-1,147,120,304,-1,121,138,287,-1,121,139,138,-1,412,140,440,-1,138,140,412,-1,36,141,143,-1,36,378,141,-1,279,439,280,-1,279,308,439,-1,122,127,123,-1,122,128,127,-1,437,380,438,-1,380,437,379,-1,66,116,67,-1,116,66,181,-1,337,75,340,-1,337,222,75,-1,181,436,116,-1,435,436,181,-1,434,87,248,-1,88,87,434,-1,251,108,387,-1,104,108,251,-1,111,106,105,-1,106,111,110,-1,100,249,99,-1,100,253,249,-1,433,97,336,-1,433,98,97,-1,335,253,432,-1,249,253,335,-1,101,259,102,-1,101,431,259,-1,334,388,430,-1,349,388,334,-1,96,89,94,-1,89,96,87,-1,93,262,246,-1,93,90,262,-1,255,429,252,-1,255,254,429,-1,81,406,356,-1,81,80,406,-1,86,428,427,-1,428,86,85,-1,390,347,425,-1,347,390,391,-1,363,76,71,-1,363,74,76,-1,361,71,73,-1,361,363,71,-1,65,67,70,-1,65,66,67,-1,231,233,350,-1,234,233,231,-1,53,419,165,-1,53,424,419,-1,423,56,52,-1,56,423,131,-1,165,421,315,-1,165,419,421,-1,52,0,423,-1,0,52,1,-1,3,419,424,-1,422,419,3,-1,421,417,418,-1,417,421,420,-1,49,288,47,-1,49,395,288,-1,416,367,170,-1,416,394,367,-1,320,171,319,-1,171,320,322,-1,155,41,415,-1,40,41,155,-1,39,42,43,-1,42,39,38,-1,50,414,48,-1,310,414,50,-1,145,293,292,-1,145,413,293,-1,146,152,377,-1,146,153,152,-1,296,287,138,-1,296,34,287,-1,32,161,309,-1,161,32,297,-1,19,286,285,-1,19,31,286,-1,318,124,123,-1,124,318,411,-1,298,409,159,-1,298,299,409,-1,154,398,151,-1,154,15,398,-1,22,169,172,-1,22,365,169,-1,123,317,318,-1,127,317,123,-1,400,159,409,-1,401,159,400,-1,399,14,160,-1,4,14,399,-1,6,16,374,-1,5,16,6,-1,62,344,60,-1,62,345,344,-1,408,404,406,-1,404,408,407,-1,405,357,356,-1,426,357,405,-1,190,426,348,-1,190,357,426,-1,358,346,403,-1,358,191,346,-1,399,7,4,-1,399,397,7,-1,2,422,3,-1,422,2,393,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmet2_Geo_5_523_normalIndex_1()
		{
			int[] value = {448,412,453,-1,453,426,448,-1,59,110,132,-1,59,80,110,-1,311,390,304,-1,311,413,390,-1,59,113,72,-1,72,31,59,-1,80,77,110,-1,77,111,110,-1,113,199,171,-1,253,198,196,-1,142,230,241,-1,241,163,142,-1,331,343,364,-1,331,317,343,-1,251,253,196,-1,251,282,253,-1,49,92,61,-1,394,313,366,-1,112,155,151,-1,155,240,151,-1,24,92,135,-1,366,307,425,-1,366,287,307,-1,406,353,450,-1,406,320,353,-1,412,456,453,-1,412,374,456,-1,392,419,393,-1,321,428,374,-1,428,456,374,-1,304,284,269,-1,297,358,311,-1,311,270,297,-1,384,334,283,-1,334,271,283,-1,222,154,119,-1,119,189,222,-1,76,60,68,-1,127,200,109,-1,158,124,156,-1,124,114,195,-1,152,202,177,-1,257,177,202,-1,257,184,177,-1,236,169,157,-1,28,25,11,-1,28,52,25,-1,209,292,262,-1,384,351,454,-1,262,292,310,-1,292,362,310,-1,258,292,209,-1,258,337,292,-1,347,312,315,-1,315,391,347,-1,416,341,347,-1,347,430,416,-1,375,333,359,-1,312,347,341,-1,324,256,263,-1,154,222,164,-1,91,134,149,-1,149,144,91,-1,112,50,24,-1,439,415,309,-1,309,444,439,-1,367,364,343,-1,367,396,435,-1,367,343,396,-1,325,295,318,-1,213,214,149,-1,342,314,298,-1,314,281,298,-1,15,13,19,-1,266,228,280,-1,266,213,228,-1,161,143,81,-1,81,100,161,-1,286,233,281,-1,233,243,281,-1,40,23,53,-1,53,44,40,-1,172,50,151,-1,50,112,151,-1,325,300,278,-1,278,295,325,-1,49,135,92,-1,49,118,135,-1,7,2,9,-1,79,13,50,-1,324,215,256,-1,324,291,215,-1,389,385,376,-1,376,378,389,-1,136,131,168,-1,168,183,136,-1,418,409,438,-1,51,104,42,-1,51,82,104,-1,271,352,276,-1,271,334,352,-1,205,210,225,-1,335,326,359,-1,194,115,153,-1,247,226,206,-1,206,211,247,-1,363,361,326,-1,10,54,71,-1,10,0,54,-1,117,54,105,-1,117,122,54,-1,176,217,106,-1,217,138,106,-1,176,137,204,-1,176,106,137,-1,141,255,148,-1,141,231,255,-1,147,193,125,-1,193,126,125,-1,124,195,220,-1,220,156,124,-1,252,281,243,-1,252,298,281,-1,32,4,85,-1,283,275,384,-1,455,438,452,-1,455,429,438,-1,194,249,265,-1,194,153,249,-1,194,203,115,-1,203,152,115,-1,154,104,119,-1,104,82,119,-1,458,440,442,-1,306,371,350,-1,297,267,350,-1,358,442,437,-1,248,237,225,-1,94,69,177,-1,69,152,177,-1,94,98,66,-1,63,58,47,-1,103,107,52,-1,458,409,361,-1,361,440,458,-1,409,326,361,-1,236,310,285,-1,310,344,285,-1,409,418,369,-1,351,384,275,-1,391,375,430,-1,315,312,322,-1,362,417,387,-1,326,365,382,-1,422,382,405,-1,422,359,382,-1,362,292,337,-1,337,405,362,-1,416,319,341,-1,416,370,319,-1,341,319,316,-1,316,368,341,-1,157,126,209,-1,73,10,126,-1,73,28,10,-1,146,96,48,-1,158,70,124,-1,120,147,125,-1,129,97,99,-1,129,146,158,-1,376,263,339,-1,376,324,263,-1,187,178,95,-1,178,87,95,-1,4,43,16,-1,4,75,43,-1,1,45,16,-1,1,16,89,-1,16,43,89,-1,290,287,366,-1,198,133,162,-1,198,167,133,-1,135,190,155,-1,135,118,190,-1,6,24,50,-1,406,357,317,-1,317,331,406,-1,446,435,439,-1,389,378,419,-1,182,83,108,-1,108,219,182,-1,179,187,88,-1,187,95,88,-1,171,179,72,-1,179,88,72,-1,41,55,61,-1,41,38,55,-1,40,37,23,-1,37,27,23,-1,123,181,134,-1,123,186,181,-1,144,149,214,-1,214,207,144,-1,181,228,213,-1,213,149,181,-1,342,298,332,-1,338,281,314,-1,338,286,281,-1,144,100,64,-1,64,91,144,-1,280,290,313,-1,290,366,313,-1,49,61,55,-1,9,5,3,-1,277,182,219,-1,277,274,182,-1,364,428,303,-1,299,300,354,-1,300,325,354,-1,444,389,449,-1,444,385,389,-1,331,320,406,-1,407,425,327,-1,425,420,327,-1,173,186,123,-1,123,139,173,-1,240,155,190,-1,190,282,240,-1,230,244,241,-1,230,208,244,-1,167,56,133,-1,56,89,133,-1,3,5,1,-1,249,165,268,-1,249,153,165,-1,356,301,360,-1,356,268,301,-1,129,158,130,-1,105,146,129,-1,129,117,105,-1,129,99,102,-1,129,130,97,-1,120,125,71,-1,138,147,120,-1,120,122,138,-1,146,48,70,-1,146,105,96,-1,126,157,73,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmet2_Geo_5_523_normalIndex_2()
		{
			int[] value = {204,264,176,-1,204,294,264,-1,294,204,259,-1,259,330,294,-1,405,417,362,-1,359,326,382,-1,315,322,333,-1,391,430,347,-1,345,346,296,-1,454,443,384,-1,200,127,128,-1,128,216,200,-1,452,438,445,-1,438,409,445,-1,52,107,65,-1,65,25,52,-1,26,0,11,-1,82,109,119,-1,177,184,94,-1,184,98,94,-1,205,235,234,-1,218,221,205,-1,218,229,221,-1,323,255,231,-1,231,284,323,-1,442,440,437,-1,267,306,350,-1,441,458,442,-1,437,311,358,-1,437,413,311,-1,119,109,189,-1,109,200,189,-1,32,152,69,-1,32,115,152,-1,85,115,32,-1,85,153,115,-1,432,429,455,-1,432,373,429,-1,386,352,334,-1,75,4,32,-1,32,42,75,-1,70,158,146,-1,26,105,54,-1,54,0,26,-1,57,11,25,-1,57,39,11,-1,386,384,418,-1,386,334,384,-1,220,195,239,-1,239,272,220,-1,206,226,242,-1,26,11,35,-1,11,39,35,-1,248,308,306,-1,25,62,57,-1,25,65,62,-1,128,127,101,-1,101,127,90,-1,429,418,438,-1,429,386,418,-1,60,82,51,-1,60,76,82,-1,78,45,87,-1,78,16,45,-1,142,163,140,-1,173,232,186,-1,173,201,232,-1,327,357,407,-1,327,317,357,-1,377,434,332,-1,180,175,198,-1,175,196,198,-1,140,163,196,-1,196,175,140,-1,21,9,2,-1,2,31,21,-1,1,56,3,-1,1,89,56,-1,303,288,185,-1,288,199,185,-1,74,123,67,-1,74,139,123,-1,81,33,100,-1,33,64,100,-1,53,83,44,-1,53,108,83,-1,394,366,407,-1,366,425,407,-1,302,332,298,-1,207,252,243,-1,207,214,252,-1,451,360,424,-1,451,356,360,-1,393,354,325,-1,318,295,321,-1,404,367,435,-1,435,446,404,-1,385,309,291,-1,385,444,309,-1,181,149,134,-1,392,325,318,-1,392,393,325,-1,455,447,432,-1,455,433,447,-1,403,445,379,-1,403,452,445,-1,175,215,197,-1,197,140,175,-1,180,215,175,-1,180,256,215,-1,180,198,162,-1,329,335,322,-1,430,422,416,-1,375,422,430,-1,375,359,422,-1,319,294,316,-1,319,264,294,-1,284,348,323,-1,262,310,236,-1,382,417,405,-1,443,423,369,-1,279,257,202,-1,211,156,220,-1,202,223,279,-1,39,57,63,-1,109,82,76,-1,350,358,297,-1,350,442,358,-1,428,411,456,-1,428,404,411,-1,389,419,392,-1,453,456,402,-1,456,411,402,-1,232,201,224,-1,407,357,457,-1,457,394,407,-1,139,159,208,-1,159,244,208,-1,394,377,313,-1,142,183,230,-1,185,182,274,-1,274,303,185,-1,49,56,118,-1,49,3,56,-1,251,163,241,-1,251,196,163,-1,303,274,364,-1,274,331,364,-1,198,253,167,-1,46,77,80,-1,46,22,77,-1,171,72,113,-1,59,132,113,-1,14,20,46,-1,14,8,20,-1,39,47,36,-1,47,39,63,-1,229,226,247,-1,218,226,229,-1,238,284,242,-1,269,284,238,-1,239,166,245,-1,239,160,166,-1,36,86,84,-1,86,36,47,-1,113,185,199,-1,132,185,113,-1,8,2,7,-1,14,2,8,-1,22,20,17,-1,20,22,46,-1,396,317,327,-1,343,317,396,-1,191,309,305,-1,191,197,309,-1,118,167,190,-1,167,118,56,-1,111,44,83,-1,77,44,111,-1,40,17,37,-1,17,40,22,-1,83,185,111,-1,185,83,182,-1,197,136,140,-1,197,191,136,-1,7,55,38,-1,7,9,55,-1,33,27,18,-1,27,33,23,-1,108,81,143,-1,53,81,108,-1,227,277,219,-1,227,293,277,-1,18,41,15,-1,18,27,41,-1,159,250,244,-1,172,250,159,-1,173,131,201,-1,173,168,131,-1,287,192,307,-1,224,192,287,-1,61,24,6,-1,24,61,92,-1,398,411,421,-1,402,411,398,-1,381,395,401,-1,395,381,388,-1,399,426,400,-1,426,399,448,-1,421,404,446,-1,421,411,404,-1,400,318,399,-1,318,400,392,-1,449,421,446,-1,449,401,421,-1,57,68,63,-1,57,62,68,-1,211,272,247,-1,211,220,272,-1,229,260,221,-1,261,260,229,-1,245,174,246,-1,245,166,174,-1,443,418,384,-1,418,443,369,-1,423,365,369,-1,408,365,423,-1,157,103,73,-1,103,157,169,-1,330,316,294,-1,316,330,355,-1,319,289,264,-1,319,370,289,-1,410,346,345,-1,410,431,346,-1,333,335,359,-1,333,322,335,-1,216,285,296,-1,188,285,216,-1,162,273,263,-1,162,170,273,-1,136,192,131,-1,136,191,192,-1,189,275,283,-1,189,200,275,-1,180,263,256,-1,180,162,263,-1,379,441,371,-1,445,441,379,-1,433,452,403,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmet2_Geo_5_523_normalIndex_3()
		{
			int[] value = {452,433,455,-1,451,432,447,-1,432,451,427,-1,436,393,419,-1,393,436,424,-1,424,354,393,-1,424,360,354,-1,21,5,9,-1,30,5,21,-1,302,252,266,-1,302,298,252,-1,91,34,67,-1,64,34,91,-1,241,250,251,-1,241,244,250,-1,282,250,240,-1,251,250,282,-1,434,394,457,-1,434,377,394,-1,232,181,186,-1,232,228,181,-1,21,72,88,-1,21,31,72,-1,95,45,30,-1,87,45,95,-1,116,43,75,-1,116,121,43,-1,380,340,372,-1,340,380,339,-1,373,386,429,-1,386,373,352,-1,65,90,62,-1,101,90,65,-1,107,101,65,-1,128,101,107,-1,225,235,205,-1,225,237,235,-1,184,93,98,-1,93,184,174,-1,66,63,68,-1,63,66,58,-1,254,308,248,-1,254,328,308,-1,336,249,349,-1,249,336,265,-1,36,35,39,-1,35,36,12,-1,242,231,206,-1,242,284,231,-1,160,29,84,-1,29,160,114,-1,326,329,363,-1,326,335,329,-1,137,259,204,-1,150,259,137,-1,70,114,124,-1,70,29,114,-1,12,96,35,-1,48,96,12,-1,10,125,126,-1,71,125,10,-1,154,116,104,-1,164,116,154,-1,403,336,433,-1,336,403,328,-1,51,32,69,-1,51,42,32,-1,397,437,440,-1,397,413,437,-1,348,304,390,-1,284,304,348,-1,328,379,308,-1,328,403,379,-1,267,248,306,-1,248,267,237,-1,234,269,238,-1,234,270,269,-1,238,205,234,-1,238,218,205,-1,203,248,212,-1,254,248,203,-1,12,84,29,-1,84,12,36,-1,86,174,166,-1,86,93,174,-1,60,69,94,-1,51,69,60,-1,105,35,96,-1,105,26,35,-1,390,355,348,-1,355,390,383,-1,128,188,216,-1,128,107,188,-1,423,454,431,-1,423,443,454,-1,408,431,410,-1,408,423,431,-1,355,368,316,-1,383,368,355,-1,137,102,150,-1,102,137,106,-1,289,193,217,-1,289,258,193,-1,97,145,141,-1,130,145,97,-1,150,99,148,-1,102,99,150,-1,120,54,122,-1,120,71,54,-1,129,106,117,-1,102,106,129,-1,340,276,352,-1,340,273,276,-1,436,372,427,-1,372,436,380,-1,447,356,451,-1,447,349,356,-1,360,299,354,-1,360,301,299,-1,268,178,301,-1,268,165,178,-1,165,85,78,-1,153,85,165,-1,446,444,449,-1,439,444,446,-1,191,307,192,-1,307,191,305,-1,197,291,309,-1,197,215,291,-1,159,74,79,-1,74,159,139,-1,34,74,67,-1,19,74,34,-1,364,404,428,-1,367,404,364,-1,321,303,428,-1,321,288,303,-1,274,320,331,-1,274,277,320,-1,300,171,278,-1,300,179,171,-1,414,457,450,-1,434,457,414,-1,286,353,293,-1,353,286,338,-1,143,233,227,-1,143,161,233,-1,67,134,91,-1,134,67,123,-1,161,243,233,-1,161,207,243,-1,314,414,338,-1,414,314,342,-1,377,302,313,-1,332,302,377,-1,342,434,414,-1,434,342,332,-1,290,228,232,-1,290,280,228,-1,18,64,33,-1,64,18,34,-1,233,293,227,-1,286,293,233,-1,450,338,414,-1,450,353,338,-1,27,38,41,-1,38,27,37,-1,299,179,300,-1,299,187,179,-1,199,278,171,-1,199,288,278,-1,402,395,388,-1,402,398,395,-1,19,79,74,-1,19,13,79,-1,230,168,208,-1,230,183,168,-1,287,232,224,-1,290,232,287,-1,307,420,425,-1,307,305,420,-1,170,133,121,-1,133,170,162,-1,164,121,116,-1,164,170,121,-1,4,78,85,-1,16,78,4,-1,78,178,165,-1,78,87,178,-1,301,187,299,-1,301,178,187,-1,380,419,378,-1,380,436,419,-1,427,373,432,-1,373,427,372,-1,273,339,263,-1,273,340,339,-1,148,97,141,-1,97,148,99,-1,156,130,158,-1,156,145,130,-1,193,209,126,-1,193,258,209,-1,383,363,368,-1,397,363,383,-1,368,329,341,-1,363,329,368,-1,422,370,416,-1,405,370,422,-1,405,337,370,-1,417,410,387,-1,417,408,410,-1,369,326,409,-1,369,365,326,-1,275,346,351,-1,275,296,346,-1,344,296,285,-1,344,345,296,-1,107,169,188,-1,107,103,169,-1,255,330,259,-1,255,323,330,-1,363,440,361,-1,363,397,440,-1,94,68,60,-1,94,66,68,-1,47,93,86,-1,93,47,58,-1,210,202,212,-1,210,223,202,-1,212,152,203,-1,212,202,152,-1,225,212,248,-1,225,210,212,-1,237,297,235,-1,237,267,297,-1,308,371,306,-1,379,371,308,-1,270,304,269,-1,304,270,311,-1,458,445,409,-1,445,458,441,-1,254,194,265,-1,254,203,194,-1,433,349,447,-1,349,433,336,-1,252,213,266,-1,252,214,213,-1,70,12,29,-1,70,48,12,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmet2_Geo_5_523_normalIndex_4()
		{
			int[] value = {141,206,231,-1,141,145,206,-1,145,211,206,-1,156,211,145,-1,259,148,255,-1,148,259,150,-1,193,138,217,-1,193,147,138,-1,264,217,176,-1,264,289,217,-1,138,117,106,-1,138,122,117,-1,11,10,28,-1,11,0,10,-1,413,383,390,-1,413,397,383,-1,246,261,245,-1,246,260,261,-1,268,349,249,-1,268,356,349,-1,328,265,336,-1,265,328,254,-1,58,98,93,-1,58,66,98,-1,257,260,246,-1,257,279,260,-1,205,223,210,-1,221,223,205,-1,372,352,373,-1,352,372,340,-1,339,378,376,-1,339,380,378,-1,104,75,42,-1,104,116,75,-1,121,89,43,-1,121,133,89,-1,30,88,95,-1,30,21,88,-1,324,385,291,-1,376,385,324,-1,172,79,50,-1,172,159,79,-1,288,295,278,-1,321,295,288,-1,100,207,161,-1,100,144,207,-1,50,15,6,-1,50,13,15,-1,18,19,34,-1,15,19,18,-1,313,266,280,-1,313,302,266,-1,1,30,45,-1,1,5,30,-1,439,396,415,-1,439,435,396,-1,427,424,436,-1,424,427,451,-1,271,164,222,-1,164,271,276,-1,296,200,216,-1,296,275,200,-1,276,170,164,-1,273,170,276,-1,188,236,285,-1,169,236,188,-1,322,341,329,-1,312,341,322,-1,333,391,315,-1,391,333,375,-1,362,344,310,-1,362,387,344,-1,431,351,346,-1,431,454,351,-1,345,387,410,-1,344,387,345,-1,258,370,337,-1,258,289,370,-1,330,348,355,-1,323,348,330,-1,262,157,209,-1,157,262,236,-1,52,73,103,-1,52,28,73,-1,382,408,417,-1,382,365,408,-1,195,160,239,-1,195,114,160,-1,184,246,174,-1,246,184,257,-1,279,221,260,-1,221,279,223,-1,90,109,76,-1,90,127,109,-1,62,76,68,-1,62,90,76,-1,283,222,189,-1,283,271,222,-1,442,371,441,-1,350,371,442,-1,392,381,389,-1,392,400,381,-1,399,321,374,-1,321,399,318,-1,389,401,449,-1,389,381,401,-1,374,448,399,-1,448,374,412,-1,426,381,400,-1,388,381,426,-1,401,398,421,-1,398,401,395,-1,450,357,406,-1,450,457,357,-1,192,201,131,-1,192,224,201,-1,139,168,173,-1,168,139,208,-1,172,240,250,-1,151,240,172,-1,155,24,135,-1,24,155,112,-1,320,293,353,-1,277,293,320,-1,143,219,108,-1,143,227,219,-1,81,23,33,-1,81,53,23,-1,41,6,15,-1,41,61,6,-1,49,9,3,-1,9,49,55,-1,253,190,167,-1,253,282,190,-1,420,309,415,-1,309,420,305,-1,38,17,7,-1,38,37,17,-1,44,22,40,-1,44,77,22,-1,142,136,183,-1,142,140,136,-1,415,327,420,-1,396,327,415,-1,20,7,17,-1,8,7,20,-1,14,31,2,-1,59,31,14,-1,132,111,185,-1,110,111,132,-1,270,235,297,-1,270,234,235,-1,84,166,160,-1,166,84,86,-1,245,272,239,-1,261,272,245,-1,247,261,229,-1,247,272,261,-1,242,218,238,-1,242,226,218,-1,14,80,59,-1,14,46,80,-1,453,388,426,-1,388,453,402,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmet3_Geo_5_529_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,24,27,25,-1,28,29,30,-1,31,32,33,-1,32,34,33,-1,35,36,37,-1,38,39,40,-1,41,42,43,-1,42,39,43,-1,44,35,45,-1,44,36,35,-1,42,41,46,-1,46,47,42,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,60,63,61,-1,64,65,66,-1,66,67,64,-1,66,57,67,-1,68,69,70,-1,68,71,69,-1,72,73,74,-1,74,75,72,-1,76,77,30,-1,77,78,30,-1,79,80,81,-1,79,82,80,-1,83,4,3,-1,83,84,4,-1,85,86,87,-1,85,88,86,-1,89,90,91,-1,92,93,94,-1,93,95,94,-1,21,96,22,-1,21,97,96,-1,98,99,100,-1,98,101,99,-1,102,103,104,-1,102,105,103,-1,106,107,108,-1,108,109,106,-1,110,111,112,-1,113,114,115,-1,113,116,114,-1,117,114,116,-1,118,119,90,-1,120,121,122,-1,123,124,14,-1,14,125,123,-1,126,127,128,-1,129,130,131,-1,131,132,129,-1,133,134,135,-1,135,136,133,-1,137,134,133,-1,138,139,140,-1,141,142,143,-1,141,11,142,-1,144,145,146,-1,145,147,146,-1,147,148,146,-1,149,150,151,-1,152,153,50,-1,154,155,156,-1,157,158,8,-1,8,159,157,-1,7,6,160,-1,160,161,7,-1,106,109,162,-1,163,137,164,-1,102,165,166,-1,166,23,102,-1,21,23,167,-1,23,166,167,-1,30,78,28,-1,30,29,168,-1,29,169,168,-1,170,171,172,-1,173,174,175,-1,39,42,176,-1,35,37,177,-1,177,178,35,-1,37,179,180,-1,180,177,37,-1,181,170,174,-1,181,66,170,-1,182,183,184,-1,115,114,185,-1,186,187,188,-1,187,189,188,-1,190,165,191,-1,190,192,165,-1,193,194,109,-1,109,108,193,-1,195,140,196,-1,126,128,197,-1,198,199,200,-1,198,118,199,-1,17,111,110,-1,201,202,203,-1,101,152,204,-1,101,98,152,-1,205,194,193,-1,206,207,208,-1,206,209,207,-1,116,210,211,-1,212,213,214,-1,213,215,214,-1,216,217,218,-1,218,219,216,-1,189,220,221,-1,107,106,100,-1,153,98,222,-1,153,152,98,-1,223,191,224,-1,191,104,224,-1,18,20,225,-1,226,227,228,-1,16,229,17,-1,229,230,17,-1,118,90,199,-1,231,232,233,-1,233,162,231,-1,234,207,235,-1,207,52,235,-1,167,166,236,-1,53,207,209,-1,53,52,207,-1,237,238,148,-1,237,234,238,-1,239,240,241,-1,239,242,240,-1,138,243,244,-1,244,245,138,-1,246,247,248,-1,246,164,247,-1,11,141,249,-1,249,250,11,-1,126,197,141,-1,90,119,95,-1,92,251,93,-1,92,136,251,-1,249,121,252,-1,249,197,121,-1,253,254,120,-1,255,164,137,-1,255,256,247,-1,247,164,255,-1,257,258,184,-1,259,260,160,-1,260,161,160,-1,261,262,263,-1,261,264,262,-1,32,265,266,-1,267,268,269,-1,270,271,272,-1,273,82,71,-1,82,274,71,-1,275,82,276,-1,82,79,276,-1,171,170,66,-1,277,67,57,-1,278,176,213,-1,176,279,213,-1,280,76,281,-1,41,282,46,-1,283,76,280,-1,283,77,76,-1,41,43,180,-1,284,40,285,-1,284,38,40,-1,286,287,288,-1,286,84,287,-1,45,87,86,-1,0,289,1,-1,288,290,284,-1,178,177,43,-1,45,291,292,-1,73,293,294,-1,294,295,73,-1,296,297,270,-1,270,272,296,-1,298,34,75,-1,34,72,75,-1,34,266,72,-1,34,32,266,-1,45,86,291,-1,292,44,45,-1,284,290,38,-1,87,290,288,-1,87,45,290,-1,87,288,287,-1,299,300,284,-1,301,302,303,-1,303,26,301,-1,177,180,43,-1,77,294,293,-1,77,283,294,-1,179,304,282,-1,304,305,282,-1,306,280,281,-1,306,307,280,-1,308,309,310,-1,310,169,308,-1,311,312,313,-1,58,314,315,-1,58,316,314,-1,66,65,171,-1,65,317,171,-1,82,275,274,-1,318,319,69,-1,68,3,71,-1,320,310,309,-1,321,322,323,-1,323,48,321,-1,6,8,261,-1,256,324,160,-1,256,255,324,-1,255,133,324,-1,255,137,133,-1,121,120,254,-1,254,252,121,-1,133,136,92,-1,92,324,133,-1,93,251,91,-1,251,129,91,-1,95,119,325,-1,325,94,95,-1,118,198,326,-1,198,327,326,-1,11,250,9,-1,140,195,246,-1,246,138,140,-1,246,243,138,-1,246,248,243,-1,145,328,147,-1,145,186,328,-1,240,329,241,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmet3_Geo_5_529_coordIndex_2()
		{
			int[] value = {329,330,241,-1,148,96,146,-1,148,238,96,-1,102,191,165,-1,102,104,191,-1,159,185,157,-1,159,331,185,-1,264,332,262,-1,158,264,261,-1,261,8,158,-1,226,333,334,-1,333,335,334,-1,116,113,210,-1,336,113,337,-1,336,210,113,-1,161,338,159,-1,338,331,159,-1,339,112,211,-1,228,340,49,-1,49,226,228,-1,222,98,100,-1,219,214,216,-1,219,341,214,-1,342,343,344,-1,217,216,345,-1,345,315,217,-1,303,346,347,-1,347,348,303,-1,349,300,299,-1,299,302,349,-1,322,350,323,-1,351,204,50,-1,204,152,50,-1,190,191,223,-1,193,108,352,-1,107,100,99,-1,99,51,107,-1,17,110,15,-1,337,353,336,-1,337,199,353,-1,198,115,327,-1,198,200,115,-1,131,197,128,-1,131,121,197,-1,352,209,354,-1,209,206,354,-1,209,108,53,-1,209,352,108,-1,150,149,236,-1,149,167,236,-1,261,263,6,-1,258,182,184,-1,355,63,313,-1,356,84,286,-1,181,57,66,-1,45,178,290,-1,45,35,178,-1,320,357,310,-1,62,61,358,-1,317,172,171,-1,317,80,172,-1,47,359,42,-1,47,312,359,-1,306,360,307,-1,360,361,307,-1,97,144,146,-1,146,96,97,-1,165,202,236,-1,236,166,165,-1,362,132,363,-1,132,127,363,-1,10,123,137,-1,12,14,124,-1,124,364,12,-1,9,250,364,-1,10,137,163,-1,365,233,156,-1,244,366,194,-1,366,231,194,-1,367,368,256,-1,368,247,256,-1,333,323,350,-1,333,226,323,-1,156,155,222,-1,155,153,222,-1,222,365,156,-1,369,227,229,-1,227,334,229,-1,370,16,15,-1,15,201,370,-1,226,334,227,-1,242,206,208,-1,208,240,242,-1,194,205,371,-1,141,143,126,-1,143,372,126,-1,189,373,188,-1,161,260,338,-1,374,116,211,-1,374,117,116,-1,375,114,117,-1,199,337,200,-1,51,53,108,-1,108,107,51,-1,102,23,22,-1,22,105,102,-1,106,365,222,-1,222,100,106,-1,376,105,22,-1,95,91,90,-1,95,93,91,-1,160,324,259,-1,287,0,87,-1,0,85,87,-1,305,283,280,-1,305,304,283,-1,377,81,355,-1,377,79,81,-1,3,5,172,-1,172,273,3,-1,2,85,0,-1,378,2,1,-1,269,379,267,-1,269,276,379,-1,281,76,30,-1,30,168,281,-1,72,293,73,-1,72,266,293,-1,54,60,62,-1,64,380,65,-1,64,381,380,-1,55,358,382,-1,317,65,380,-1,201,203,19,-1,19,370,201,-1,20,192,225,-1,192,190,225,-1,383,384,385,-1,59,56,57,-1,38,43,39,-1,36,44,294,-1,386,387,307,-1,388,289,0,-1,26,173,301,-1,26,25,173,-1,24,26,348,-1,26,303,348,-1,389,25,27,-1,24,144,97,-1,24,348,144,-1,321,48,155,-1,9,364,124,-1,197,249,141,-1,10,163,11,-1,3,273,71,-1,309,267,320,-1,175,390,391,-1,392,390,175,-1,21,24,97,-1,27,24,21,-1,393,167,149,-1,393,389,167,-1,314,389,393,-1,25,389,314,-1,388,394,289,-1,388,395,394,-1,396,397,398,-1,396,298,397,-1,28,399,29,-1,265,399,28,-1,318,270,319,-1,318,271,270,-1,385,59,383,-1,385,56,59,-1,340,50,49,-1,340,351,50,-1,203,20,19,-1,203,192,20,-1,381,63,380,-1,381,61,63,-1,306,320,360,-1,357,320,306,-1,275,269,271,-1,275,276,269,-1,395,400,401,-1,395,388,400,-1,378,402,2,-1,378,403,402,-1,168,306,281,-1,306,168,357,-1,274,69,71,-1,274,318,69,-1,77,266,78,-1,77,293,266,-1,84,0,287,-1,83,0,84,-1,313,307,361,-1,313,386,307,-1,295,291,404,-1,295,292,291,-1,387,280,307,-1,387,305,280,-1,294,292,295,-1,292,294,44,-1,324,94,259,-1,92,94,324,-1,104,405,224,-1,103,405,104,-1,200,113,115,-1,200,337,113,-1,326,119,118,-1,326,325,119,-1,13,406,407,-1,13,253,406,-1,142,196,408,-1,196,142,11,-1,329,208,237,-1,329,240,208,-1,242,354,206,-1,242,409,354,-1,151,201,15,-1,151,150,201,-1,16,369,229,-1,16,370,369,-1,162,365,106,-1,162,233,365,-1,350,375,333,-1,350,410,375,-1,247,411,248,-1,368,411,247,-1,243,366,244,-1,412,366,243,-1,48,153,155,-1,48,50,153,-1,160,367,256,-1,367,160,6,-1,252,250,249,-1,364,250,252,-1,130,121,131,-1,121,130,122,-1,407,413,135,-1,406,413,407,-1,137,125,134,-1,125,137,123,-1,90,414,199,-1,414,90,89,-1,132,415,129,-1,415,132,362,-1,126,363,127,-1,363,126,373,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmet3_Geo_5_529_coordIndex_3()
		{
			int[] value = {150,202,201,-1,236,202,150,-1,110,416,417,-1,110,418,416,-1,414,353,199,-1,419,353,414,-1,312,386,313,-1,386,312,47,-1,317,81,80,-1,380,81,317,-1,312,384,359,-1,312,311,384,-1,349,286,300,-1,356,286,349,-1,380,355,81,-1,355,380,63,-1,154,233,232,-1,154,156,233,-1,6,420,367,-1,420,6,263,-1,239,409,242,-1,409,239,421,-1,339,353,418,-1,336,353,339,-1,192,202,165,-1,192,203,202,-1,351,223,204,-1,190,223,351,-1,230,334,335,-1,230,229,334,-1,303,299,346,-1,303,302,299,-1,144,347,187,-1,144,348,347,-1,416,341,219,-1,416,419,341,-1,59,315,345,-1,58,315,59,-1,344,422,423,-1,344,343,422,-1,423,212,424,-1,212,423,422,-1,89,424,414,-1,424,89,423,-1,111,230,374,-1,17,230,111,-1,417,219,218,-1,416,219,417,-1,327,185,331,-1,327,115,185,-1,374,335,117,-1,335,374,230,-1,333,117,335,-1,333,375,117,-1,410,264,158,-1,332,264,410,-1,185,375,157,-1,375,185,114,-1,105,235,103,-1,105,376,235,-1,238,235,376,-1,234,235,238,-1,329,328,330,-1,329,147,328,-1,187,145,144,-1,187,186,145,-1,241,143,142,-1,241,330,143,-1,195,11,163,-1,195,196,11,-1,246,163,164,-1,195,163,246,-1,362,344,415,-1,362,342,344,-1,326,331,338,-1,326,327,331,-1,325,259,94,-1,260,259,325,-1,412,257,366,-1,412,258,257,-1,368,182,411,-1,368,183,182,-1,410,322,332,-1,322,410,350,-1,367,183,368,-1,420,183,367,-1,155,262,321,-1,155,425,262,-1,181,173,316,-1,174,173,181,-1,426,267,309,-1,268,267,426,-1,427,381,64,-1,427,382,381,-1,393,315,314,-1,217,315,393,-1,382,61,381,-1,382,358,61,-1,215,216,214,-1,215,345,216,-1,359,383,279,-1,383,359,384,-1,279,42,359,-1,42,279,176,-1,309,428,426,-1,308,428,309,-1,169,399,308,-1,399,169,29,-1,265,78,266,-1,28,78,265,-1,304,37,36,-1,304,179,37,-1,343,278,422,-1,343,40,278,-1,346,284,285,-1,299,284,346,-1,349,301,391,-1,349,302,301,-1,300,288,284,-1,300,286,288,-1,3,400,83,-1,400,3,68,-1,73,404,74,-1,73,295,404,-1,74,88,402,-1,88,74,404,-1,88,2,402,-1,2,88,85,-1,401,398,395,-1,401,429,398,-1,396,429,430,-1,429,396,398,-1,33,428,31,-1,33,431,428,-1,431,297,296,-1,431,430,297,-1,296,428,431,-1,428,296,426,-1,396,431,33,-1,396,430,431,-1,268,296,272,-1,426,296,268,-1,430,432,297,-1,432,430,429,-1,70,429,401,-1,432,429,70,-1,403,394,397,-1,394,403,378,-1,298,403,397,-1,75,403,298,-1,388,83,400,-1,388,0,83,-1,84,390,4,-1,84,356,390,-1,356,391,390,-1,356,349,391,-1,347,285,220,-1,346,285,347,-1,220,40,343,-1,285,40,220,-1,176,40,39,-1,40,176,278,-1,46,305,387,-1,305,46,282,-1,308,31,428,-1,399,31,308,-1,377,360,379,-1,361,360,377,-1,213,422,278,-1,213,212,422,-1,345,383,59,-1,383,345,215,-1,60,313,63,-1,60,311,313,-1,316,57,181,-1,57,316,58,-1,67,427,64,-1,67,277,427,-1,316,25,314,-1,316,173,25,-1,79,379,276,-1,79,377,379,-1,271,268,272,-1,268,271,269,-1,263,425,420,-1,263,262,425,-1,332,321,262,-1,322,321,332,-1,184,155,154,-1,155,184,425,-1,411,258,412,-1,258,411,182,-1,154,257,184,-1,154,232,257,-1,257,231,366,-1,257,232,231,-1,253,12,254,-1,12,253,13,-1,415,423,89,-1,423,415,344,-1,363,342,362,-1,221,342,363,-1,373,221,363,-1,373,189,221,-1,245,139,138,-1,139,245,421,-1,142,239,241,-1,408,239,142,-1,330,372,143,-1,330,328,372,-1,207,237,208,-1,207,234,237,-1,371,421,245,-1,409,421,371,-1,376,96,238,-1,376,22,96,-1,52,103,235,-1,52,405,103,-1,194,245,244,-1,194,371,245,-1,424,419,414,-1,341,419,424,-1,151,218,149,-1,417,218,151,-1,228,369,18,-1,369,228,227,-1,18,340,228,-1,225,340,18,-1,204,224,101,-1,204,223,224,-1,51,405,52,-1,405,51,99,-1,217,149,218,-1,393,149,217,-1,212,341,424,-1,212,214,341,-1,215,279,383,-1,213,279,215,-1,211,336,339,-1,211,210,336,-1,18,370,19,-1,18,369,370,-1,354,193,352,-1,205,193,354,-1,112,418,110,-1,339,418,112,-1,343,221,220,-1,342,221,343,-1,408,421,239,-1,421,408,139,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmet3_Geo_5_529_coordIndex_4()
		{
			int[] value = {187,220,189,-1,187,347,220,-1,420,184,183,-1,420,425,184,-1,432,69,319,-1,432,70,69,-1,282,180,179,-1,180,282,41,-1,170,175,174,-1,170,392,175,-1,5,170,172,-1,5,392,170,-1,169,357,168,-1,169,310,357,-1,418,419,416,-1,418,353,419,-1,15,417,151,-1,15,110,417,-1,188,328,186,-1,188,372,328,-1,89,129,415,-1,89,91,129,-1,134,407,135,-1,407,134,125,-1,406,130,413,-1,122,130,406,-1,323,49,48,-1,323,226,49,-1,412,248,411,-1,412,243,248,-1,8,161,159,-1,8,7,161,-1,157,410,158,-1,157,375,410,-1,231,109,194,-1,231,162,109,-1,409,205,354,-1,409,371,205,-1,237,147,329,-1,147,237,148,-1,196,139,408,-1,140,139,196,-1,372,373,126,-1,372,188,373,-1,413,129,251,-1,413,130,129,-1,135,251,136,-1,251,135,413,-1,132,128,127,-1,131,128,132,-1,10,124,123,-1,124,10,9,-1,14,407,125,-1,407,14,13,-1,253,122,406,-1,253,120,122,-1,254,364,252,-1,254,12,364,-1,325,338,260,-1,325,326,338,-1,374,112,111,-1,112,374,211,-1,405,101,224,-1,101,405,99,-1,283,36,294,-1,36,283,304,-1,361,355,313,-1,377,355,361,-1,86,404,291,-1,88,404,86,-1,82,172,80,-1,273,172,82,-1,75,402,403,-1,75,74,402,-1,378,289,394,-1,378,1,289,-1,68,401,400,-1,70,401,68,-1,274,271,318,-1,274,275,271,-1,379,320,267,-1,379,360,320,-1,382,277,55,-1,427,277,382,-1,62,55,54,-1,55,62,358,-1,60,56,385,-1,60,54,56,-1,385,311,60,-1,385,384,311,-1,351,225,190,-1,340,225,351,-1,47,387,386,-1,387,47,46,-1,178,38,290,-1,43,38,178,-1,319,297,432,-1,319,270,297,-1,399,32,31,-1,399,265,32,-1,33,298,396,-1,33,34,298,-1,397,395,398,-1,397,394,395,-1,389,21,167,-1,389,27,21,-1,175,301,173,-1,175,391,301,-1,55,57,56,-1,57,55,277,-1,4,392,5,-1,4,390,392,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmet3_Geo_5_529_normalIndex_1()
		{
			int[] value = {95,41,0,-1,258,239,323,-1,124,100,185,-1,27,9,30,-1,48,19,53,-1,432,418,336,-1,397,408,369,-1,294,372,357,-1,217,317,222,-1,217,291,317,-1,96,166,87,-1,207,161,184,-1,161,120,184,-1,81,42,44,-1,4,51,13,-1,137,163,7,-1,163,51,7,-1,36,81,39,-1,36,42,81,-1,163,137,216,-1,216,237,163,-1,252,331,285,-1,352,374,332,-1,316,367,344,-1,413,425,376,-1,304,348,312,-1,304,334,348,-1,414,423,392,-1,392,386,414,-1,392,413,386,-1,243,328,244,-1,243,341,328,-1,20,6,12,-1,12,71,20,-1,55,2,87,-1,2,46,87,-1,362,399,400,-1,362,322,399,-1,167,239,258,-1,167,162,239,-1,5,32,1,-1,5,29,32,-1,140,147,112,-1,57,104,61,-1,104,89,61,-1,294,319,372,-1,294,260,319,-1,353,355,345,-1,353,337,355,-1,412,398,389,-1,412,422,398,-1,346,343,349,-1,349,326,346,-1,393,269,295,-1,299,308,268,-1,299,303,308,-1,277,308,303,-1,198,130,147,-1,17,59,83,-1,15,65,53,-1,53,70,15,-1,132,94,126,-1,102,105,88,-1,88,64,102,-1,73,52,92,-1,92,74,73,-1,79,52,73,-1,136,139,118,-1,93,97,127,-1,93,30,97,-1,213,205,255,-1,205,195,255,-1,195,236,255,-1,426,406,428,-1,271,261,285,-1,179,202,220,-1,263,200,185,-1,185,234,263,-1,100,124,16,-1,16,108,100,-1,346,326,283,-1,66,79,135,-1,412,390,379,-1,379,357,412,-1,294,357,356,-1,357,379,356,-1,87,46,96,-1,87,166,175,-1,166,203,175,-1,382,375,363,-1,335,377,314,-1,51,163,144,-1,81,44,40,-1,40,58,81,-1,44,62,38,-1,38,40,44,-1,401,382,377,-1,401,392,382,-1,172,165,173,-1,268,308,287,-1,142,149,107,-1,149,101,107,-1,318,390,327,-1,318,354,390,-1,325,257,326,-1,326,349,325,-1,110,118,31,-1,132,126,114,-1,254,248,282,-1,254,198,248,-1,336,269,393,-1,419,383,391,-1,337,271,330,-1,337,353,271,-1,272,257,325,-1,249,305,232,-1,249,288,305,-1,303,321,293,-1,229,206,289,-1,206,267,289,-1,340,407,396,-1,396,342,340,-1,101,78,72,-1,343,346,345,-1,261,353,324,-1,261,271,353,-1,320,327,381,-1,327,389,381,-1,397,369,368,-1,338,411,387,-1,418,405,336,-1,405,296,336,-1,198,147,248,-1,238,196,235,-1,235,283,238,-1,301,305,380,-1,305,374,380,-1,356,379,384,-1,332,305,288,-1,332,374,305,-1,240,306,236,-1,240,301,306,-1,168,197,152,-1,168,212,197,-1,136,37,154,-1,154,201,136,-1,157,54,69,-1,157,135,54,-1,30,93,23,-1,23,26,30,-1,132,114,93,-1,147,130,89,-1,57,115,104,-1,57,74,115,-1,23,59,10,-1,23,114,59,-1,18,8,17,-1,113,135,79,-1,113,47,54,-1,54,135,113,-1,194,178,173,-1,43,67,16,-1,67,108,16,-1,150,159,160,-1,150,158,159,-1,161,129,90,-1,347,364,416,-1,339,430,359,-1,351,322,341,-1,322,373,341,-1,378,322,385,-1,322,362,385,-1,375,382,392,-1,395,386,413,-1,128,144,206,-1,144,241,206,-1,121,55,151,-1,137,169,216,-1,3,55,121,-1,3,2,55,-1,137,7,38,-1,56,13,86,-1,56,4,13,-1,138,84,60,-1,138,162,84,-1,39,1,32,-1,95,111,41,-1,60,33,56,-1,58,40,7,-1,39,24,25,-1,6,21,28,-1,28,14,6,-1,281,259,339,-1,339,359,281,-1,125,120,71,-1,120,20,71,-1,120,90,20,-1,120,161,90,-1,39,32,24,-1,25,36,39,-1,56,33,4,-1,1,33,60,-1,1,39,33,-1,1,60,84,-1,122,143,56,-1,256,187,181,-1,181,222,256,-1,40,38,7,-1,2,28,21,-1,2,3,28,-1,62,63,169,-1,63,145,169,-1,211,121,151,-1,211,218,121,-1,233,279,219,-1,219,203,233,-1,273,246,275,-1,425,427,421,-1,425,410,427,-1,392,423,375,-1,423,420,375,-1,322,378,373,-1,409,302,328,-1,243,258,341,-1,265,219,279,-1,199,190,247,-1,247,252,199,-1,124,185,150,-1,47,77,16,-1,47,113,77,-1,113,73,77,-1,113,79,73,-1,59,17,8,-1,8,10,59,-1,73,74,57,-1,57,77,73,-1,104,115,112,-1,115,102,112,-1,89,130,117,-1,117,61,89,-1,198,254,204,-1,254,250,204,-1,30,26,27,-1,118,110,157,-1,157,136,118,-1,157,37,136,-1,157,69,37,-1,205,148,195,-1,205,142,148,-1,197,192,152,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmet3_Geo_5_529_normalIndex_2()
		{
			int[] value = {192,155,152,-1,236,319,255,-1,236,306,319,-1,412,327,390,-1,412,389,327,-1,234,287,263,-1,234,253,287,-1,158,189,159,-1,200,158,150,-1,150,185,200,-1,338,266,365,-1,266,284,365,-1,303,299,321,-1,311,299,292,-1,311,321,299,-1,108,191,234,-1,191,253,234,-1,315,295,293,-1,387,361,331,-1,331,338,387,-1,324,353,345,-1,342,289,340,-1,342,298,289,-1,35,22,76,-1,407,340,358,-1,358,421,407,-1,181,134,153,-1,153,177,181,-1,188,143,122,-1,122,187,188,-1,190,223,247,-1,329,330,285,-1,330,271,285,-1,318,327,320,-1,325,349,309,-1,343,345,355,-1,355,352,343,-1,336,393,432,-1,292,300,311,-1,292,248,300,-1,254,268,250,-1,254,282,268,-1,88,114,126,-1,88,59,114,-1,309,288,276,-1,288,249,276,-1,288,349,332,-1,288,309,349,-1,406,426,384,-1,426,356,384,-1,150,160,124,-1,178,172,173,-1,370,334,275,-1,182,162,138,-1,401,413,392,-1,39,58,33,-1,39,81,58,-1,265,209,219,-1,312,348,371,-1,420,363,375,-1,420,399,363,-1,237,242,163,-1,237,246,242,-1,211,280,218,-1,280,270,218,-1,260,213,255,-1,255,319,260,-1,390,383,384,-1,384,379,390,-1,45,64,82,-1,64,94,82,-1,9,15,79,-1,48,53,65,-1,65,49,48,-1,27,26,49,-1,9,79,66,-1,274,235,220,-1,154,170,257,-1,170,238,257,-1,119,98,47,-1,98,54,47,-1,266,247,223,-1,266,338,247,-1,220,202,324,-1,202,261,324,-1,324,274,220,-1,424,411,405,-1,411,365,405,-1,429,418,432,-1,432,419,429,-1,338,365,411,-1,212,249,232,-1,232,197,212,-1,257,272,227,-1,93,127,132,-1,127,123,132,-1,101,109,107,-1,108,67,191,-1,262,303,293,-1,262,277,303,-1,264,308,277,-1,248,292,282,-1,352,332,349,-1,349,343,352,-1,412,357,372,-1,372,422,412,-1,346,274,324,-1,324,345,346,-1,402,422,372,-1,89,112,147,-1,89,104,112,-1,16,77,43,-1,84,95,1,-1,95,5,1,-1,145,3,121,-1,145,63,3,-1,350,400,370,-1,350,362,400,-1,258,323,363,-1,363,351,258,-1,0,5,95,-1,50,0,41,-1,416,366,347,-1,416,385,366,-1,151,55,87,-1,87,175,151,-1,20,21,6,-1,20,90,21,-1,316,304,312,-1,414,417,423,-1,414,415,417,-1,367,371,403,-1,420,423,417,-1,419,391,408,-1,408,429,419,-1,369,354,368,-1,354,318,368,-1,286,278,307,-1,376,344,413,-1,4,7,51,-1,42,36,28,-1,230,226,218,-1,141,111,95,-1,222,335,256,-1,222,317,335,-1,217,222,177,-1,222,181,177,-1,360,317,291,-1,217,213,260,-1,217,177,213,-1,199,252,202,-1,27,49,65,-1,114,23,93,-1,9,66,30,-1,258,351,341,-1,279,347,265,-1,314,214,224,-1,310,214,314,-1,294,217,260,-1,291,217,294,-1,431,356,426,-1,431,360,356,-1,427,360,431,-1,317,360,427,-1,141,116,111,-1,141,156,116,-1,180,131,176,-1,180,125,131,-1,96,183,166,-1,129,183,96,-1,409,339,302,-1,409,430,339,-1,307,376,286,-1,307,344,376,-1,361,285,331,-1,361,329,285,-1,391,369,408,-1,391,354,369,-1,415,334,417,-1,415,348,334,-1,211,265,280,-1,209,265,211,-1,378,416,430,-1,378,385,416,-1,156,174,193,-1,156,141,174,-1,50,34,0,-1,50,80,34,-1,175,211,151,-1,211,175,209,-1,373,328,341,-1,373,409,328,-1,2,90,46,-1,2,21,90,-1,162,95,84,-1,167,95,162,-1,275,218,270,-1,275,230,218,-1,14,24,11,-1,14,25,24,-1,226,121,218,-1,226,145,121,-1,28,25,14,-1,25,28,36,-1,77,61,43,-1,57,61,77,-1,389,388,381,-1,398,388,389,-1,282,299,268,-1,282,292,299,-1,204,130,198,-1,204,117,130,-1,19,75,68,-1,19,18,75,-1,97,31,99,-1,31,97,30,-1,192,232,240,-1,192,197,232,-1,212,276,249,-1,212,231,276,-1,428,419,432,-1,428,406,419,-1,418,424,405,-1,418,429,424,-1,283,274,346,-1,283,235,274,-1,223,264,266,-1,223,208,264,-1,54,91,69,-1,98,91,54,-1,37,170,154,-1,106,170,37,-1,252,261,202,-1,252,285,261,-1,16,119,47,-1,119,16,124,-1,10,26,23,-1,49,26,10,-1,105,59,88,-1,59,105,83,-1,68,103,92,-1,75,103,68,-1,79,70,52,-1,70,79,15,-1,147,225,248,-1,225,147,140,-1,64,85,102,-1,85,64,45,-1,132,82,94,-1,82,132,109,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmet3_Geo_5_529_normalIndex_3()
		{
			int[] value = {406,383,419,-1,384,383,406,-1,393,333,394,-1,393,313,333,-1,225,300,248,-1,297,300,225,-1,246,230,275,-1,230,246,237,-1,420,400,399,-1,417,400,420,-1,246,278,242,-1,246,273,278,-1,188,138,143,-1,182,138,188,-1,417,370,400,-1,370,417,334,-1,179,235,196,-1,179,220,235,-1,124,171,119,-1,171,124,160,-1,168,231,212,-1,231,168,186,-1,315,300,313,-1,311,300,315,-1,354,383,390,-1,354,391,383,-1,329,320,330,-1,318,320,329,-1,296,365,284,-1,296,405,365,-1,181,122,134,-1,181,187,122,-1,213,153,149,-1,213,177,153,-1,333,298,342,-1,333,297,298,-1,376,421,358,-1,425,421,376,-1,76,133,146,-1,76,22,133,-1,146,229,221,-1,229,146,133,-1,140,221,225,-1,221,140,146,-1,269,296,262,-1,336,296,269,-1,394,342,396,-1,333,342,394,-1,250,287,253,-1,250,268,287,-1,262,284,277,-1,284,262,296,-1,266,277,284,-1,266,264,277,-1,208,158,200,-1,189,158,208,-1,287,264,263,-1,264,287,308,-1,422,380,398,-1,422,402,380,-1,306,380,402,-1,301,380,306,-1,192,148,155,-1,192,195,148,-1,149,205,213,-1,149,142,205,-1,152,127,97,-1,152,155,127,-1,110,30,66,-1,110,31,30,-1,157,66,135,-1,110,66,157,-1,45,76,85,-1,45,35,76,-1,204,253,191,-1,204,250,253,-1,117,43,61,-1,67,43,117,-1,106,194,170,-1,106,178,194,-1,98,172,91,-1,98,165,172,-1,208,190,189,-1,190,208,223,-1,119,165,98,-1,171,165,119,-1,202,159,199,-1,202,164,159,-1,401,335,410,-1,377,335,401,-1,290,347,279,-1,364,347,290,-1,404,415,414,-1,404,403,415,-1,431,421,427,-1,407,421,431,-1,403,348,415,-1,403,371,348,-1,267,340,289,-1,267,358,340,-1,242,286,241,-1,286,242,278,-1,241,163,242,-1,163,241,144,-1,279,245,290,-1,233,245,279,-1,203,183,233,-1,183,203,166,-1,129,46,90,-1,96,46,129,-1,63,44,42,-1,63,62,44,-1,22,128,133,-1,22,13,128,-1,134,56,86,-1,122,56,134,-1,188,256,224,-1,188,187,256,-1,143,60,56,-1,143,138,60,-1,258,174,167,-1,174,258,243,-1,6,11,12,-1,6,14,11,-1,12,29,34,-1,29,12,11,-1,29,0,34,-1,0,29,5,-1,193,176,156,-1,193,210,176,-1,180,210,215,-1,210,180,176,-1,184,245,207,-1,184,228,245,-1,228,259,281,-1,228,215,259,-1,281,245,228,-1,245,281,290,-1,180,228,184,-1,180,215,228,-1,364,281,359,-1,290,281,364,-1,215,251,259,-1,251,215,210,-1,244,210,193,-1,251,210,244,-1,80,116,131,-1,116,80,50,-1,125,80,131,-1,71,80,125,-1,141,167,174,-1,141,95,167,-1,162,214,239,-1,162,182,214,-1,182,224,214,-1,182,188,224,-1,153,86,78,-1,134,86,153,-1,78,13,22,-1,86,13,78,-1,144,13,51,-1,13,144,128,-1,216,145,226,-1,145,216,169,-1,233,207,245,-1,183,207,233,-1,350,280,366,-1,270,280,350,-1,206,133,128,-1,206,229,133,-1,358,286,376,-1,286,358,267,-1,304,275,334,-1,304,273,275,-1,410,413,401,-1,413,410,425,-1,386,404,414,-1,386,395,404,-1,410,317,427,-1,410,335,317,-1,362,366,385,-1,362,350,366,-1,430,364,359,-1,364,430,416,-1,160,164,171,-1,160,159,164,-1,189,199,159,-1,190,199,189,-1,173,202,179,-1,202,173,164,-1,91,178,106,-1,178,91,172,-1,179,194,173,-1,179,196,194,-1,194,238,170,-1,194,196,238,-1,18,48,8,-1,48,18,19,-1,85,146,140,-1,146,85,76,-1,82,35,45,-1,72,35,82,-1,109,72,82,-1,109,101,72,-1,201,139,136,-1,139,201,186,-1,97,168,152,-1,99,168,97,-1,155,123,127,-1,155,148,123,-1,305,240,232,-1,305,301,240,-1,227,186,201,-1,231,186,227,-1,402,319,306,-1,402,372,319,-1,374,398,380,-1,374,388,398,-1,257,201,154,-1,257,227,201,-1,221,297,225,-1,298,297,221,-1,428,396,426,-1,394,396,428,-1,387,424,397,-1,424,387,411,-1,397,361,387,-1,368,361,397,-1,330,381,337,-1,330,320,381,-1,352,388,374,-1,388,352,355,-1,407,426,396,-1,431,426,407,-1,229,298,221,-1,229,289,298,-1,267,241,286,-1,206,241,267,-1,293,311,315,-1,293,321,311,-1,397,429,408,-1,397,424,429,-1,276,325,309,-1,272,325,276,-1,295,313,393,-1,315,313,295,-1,22,72,78,-1,35,72,22,-1,99,186,168,-1,186,99,139,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmet3_Geo_5_529_normalIndex_4()
		{
			int[] value = {149,78,101,-1,149,153,78,-1,171,173,165,-1,171,164,173,-1,251,328,302,-1,251,244,328,-1,169,38,62,-1,38,169,137,-1,382,314,377,-1,382,310,314,-1,323,382,363,-1,323,310,382,-1,203,209,175,-1,203,219,209,-1,313,297,333,-1,313,300,297,-1,432,394,428,-1,432,393,394,-1,107,148,142,-1,107,123,148,-1,140,102,85,-1,140,112,102,-1,52,68,92,-1,68,52,70,-1,75,105,103,-1,83,105,75,-1,247,331,252,-1,247,338,331,-1,106,69,91,-1,106,37,69,-1,185,108,234,-1,185,100,108,-1,263,208,200,-1,263,264,208,-1,238,326,257,-1,238,283,326,-1,231,272,276,-1,231,227,272,-1,240,195,192,-1,195,240,236,-1,31,139,99,-1,118,139,31,-1,123,109,132,-1,123,107,109,-1,103,102,115,-1,103,105,102,-1,92,115,74,-1,115,92,103,-1,64,126,94,-1,88,126,64,-1,9,65,15,-1,65,9,27,-1,53,68,70,-1,68,53,19,-1,18,83,75,-1,18,17,83,-1,8,49,10,-1,8,48,49,-1,117,191,67,-1,117,204,191,-1,262,295,269,-1,295,262,293,-1,388,337,381,-1,337,388,355,-1,3,42,28,-1,42,3,63,-1,270,370,275,-1,350,370,270,-1,32,11,24,-1,29,11,32,-1,322,363,399,-1,351,363,322,-1,71,34,80,-1,71,12,34,-1,50,111,116,-1,50,41,111,-1,243,193,174,-1,244,193,243,-1,373,430,409,-1,373,378,430,-1,366,265,347,-1,366,280,265,-1,403,395,367,-1,404,395,403,-1,312,367,316,-1,367,312,371,-1,304,344,307,-1,304,316,344,-1,307,273,304,-1,307,278,273,-1,329,368,318,-1,361,368,329,-1,237,226,230,-1,226,237,216,-1,58,4,33,-1,7,4,58,-1,302,259,251,-1,302,339,259,-1,183,161,207,-1,183,129,161,-1,184,125,180,-1,184,120,125,-1,131,156,176,-1,131,116,156,-1,360,294,356,-1,360,291,294,-1,314,256,335,-1,314,224,256,-1,367,413,344,-1,413,367,395,-1,239,310,323,-1,239,214,310,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmet4_Geo_5_535_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,16,18,17,-1,19,16,20,-1,16,15,20,-1,21,22,23,-1,24,25,26,-1,24,27,25,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,34,37,35,-1,38,39,28,-1,38,40,39,-1,41,42,43,-1,43,42,44,-1,42,45,44,-1,46,47,48,-1,48,49,46,-1,50,51,52,-1,51,25,52,-1,53,54,55,-1,56,33,57,-1,56,58,33,-1,59,60,61,-1,61,62,59,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,74,75,72,-1,76,77,78,-1,79,80,81,-1,82,83,84,-1,85,86,76,-1,76,78,85,-1,87,88,89,-1,90,91,89,-1,91,92,89,-1,93,94,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,102,105,103,-1,106,107,108,-1,109,110,111,-1,110,112,111,-1,113,88,114,-1,113,115,88,-1,116,117,118,-1,119,120,121,-1,107,122,108,-1,107,123,122,-1,81,113,124,-1,113,103,124,-1,125,126,127,-1,128,129,125,-1,130,131,132,-1,70,133,134,-1,133,135,134,-1,136,137,138,-1,138,119,139,-1,93,140,141,-1,142,143,144,-1,144,145,142,-1,146,63,147,-1,146,64,63,-1,94,148,95,-1,148,149,95,-1,150,94,93,-1,150,151,94,-1,100,109,101,-1,152,153,154,-1,86,155,90,-1,42,41,156,-1,41,43,157,-1,11,158,9,-1,158,159,9,-1,160,158,161,-1,161,162,160,-1,163,164,165,-1,164,166,165,-1,167,24,168,-1,169,170,171,-1,171,172,169,-1,173,174,175,-1,54,53,176,-1,24,26,177,-1,125,178,179,-1,179,126,125,-1,118,180,181,-1,118,117,180,-1,182,183,184,-1,182,185,183,-1,182,184,186,-1,187,188,189,-1,187,190,188,-1,187,191,192,-1,191,193,192,-1,154,153,194,-1,195,196,197,-1,131,135,133,-1,198,199,200,-1,198,201,199,-1,202,203,204,-1,204,205,202,-1,111,122,206,-1,111,108,122,-1,207,208,110,-1,209,210,211,-1,212,213,214,-1,76,215,216,-1,217,218,219,-1,218,115,219,-1,220,216,221,-1,216,215,221,-1,155,86,85,-1,87,222,223,-1,224,225,213,-1,226,227,228,-1,229,200,230,-1,229,198,200,-1,82,77,231,-1,82,78,77,-1,229,232,233,-1,77,76,216,-1,234,235,236,-1,237,238,95,-1,95,149,237,-1,239,240,241,-1,64,242,142,-1,243,244,97,-1,243,245,244,-1,246,247,248,-1,46,249,250,-1,46,251,249,-1,55,252,53,-1,253,163,254,-1,255,249,251,-1,255,256,249,-1,257,255,258,-1,257,259,255,-1,165,260,261,-1,177,260,262,-1,36,263,264,-1,264,34,36,-1,265,266,267,-1,267,268,265,-1,269,56,29,-1,269,270,56,-1,271,272,273,-1,271,162,272,-1,274,1,275,-1,1,276,275,-1,35,37,159,-1,37,277,159,-1,10,278,279,-1,10,9,278,-1,280,281,282,-1,281,283,282,-1,284,285,286,-1,285,287,286,-1,12,284,288,-1,288,13,12,-1,289,5,290,-1,291,3,292,-1,293,4,294,-1,6,295,48,-1,6,19,295,-1,8,16,6,-1,16,19,6,-1,175,174,296,-1,296,60,175,-1,297,61,298,-1,31,299,32,-1,300,301,302,-1,303,304,305,-1,305,306,303,-1,58,31,33,-1,307,308,61,-1,61,297,307,-1,298,60,296,-1,298,61,60,-1,309,174,310,-1,309,296,174,-1,311,312,313,-1,311,314,312,-1,315,46,250,-1,315,47,46,-1,316,317,318,-1,316,319,317,-1,293,20,320,-1,293,321,20,-1,290,5,320,-1,2,18,16,-1,16,8,2,-1,322,3,291,-1,292,3,323,-1,12,324,281,-1,12,14,324,-1,281,278,283,-1,278,9,283,-1,291,279,322,-1,160,325,35,-1,35,159,160,-1,162,325,160,-1,162,271,325,-1,40,38,326,-1,327,50,267,-1,50,268,267,-1,328,25,27,-1,328,52,25,-1,168,24,177,-1,177,262,168,-1,329,257,258,-1,258,41,329,-1,259,256,255,-1,163,165,261,-1,261,254,163,-1,330,191,331,-1,191,332,331,-1,333,312,314,-1,301,252,302,-1,301,53,252,-1,334,193,330,-1,193,191,330,-1,335,240,336,-1,335,337,240,-1,243,97,248,-1,248,247,243,-1,244,245,151,-1,146,242,64,-1,142,242,143,-1,336,239,338,-1,336,240,239,-1,241,240,339,-1,340,341,234,-1,235,342,236,-1,136,343,233,-1,233,137,136,-1,137,233,232,-1,82,231,83,-1,232,230,83,-1,344,345,230,-1,344,346,345,-1,345,346,347,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmet4_Geo_5_535_coordIndex_2()
		{
			int[] value = {230,345,83,-1,68,348,349,-1,350,66,351,-1,350,67,66,-1,352,227,226,-1,352,91,227,-1,353,354,224,-1,353,224,213,-1,87,223,88,-1,91,352,92,-1,90,89,218,-1,141,150,93,-1,115,218,88,-1,113,104,103,-1,113,114,104,-1,355,356,357,-1,212,214,209,-1,214,210,209,-1,109,206,101,-1,109,111,206,-1,183,185,110,-1,110,208,183,-1,181,180,106,-1,106,112,181,-1,204,358,359,-1,358,360,359,-1,361,201,198,-1,361,359,201,-1,199,362,363,-1,363,200,199,-1,199,201,69,-1,201,70,69,-1,359,360,70,-1,70,201,359,-1,131,130,135,-1,71,364,365,-1,154,194,195,-1,195,197,154,-1,191,187,332,-1,187,189,332,-1,184,183,188,-1,183,211,188,-1,118,181,185,-1,185,182,118,-1,179,117,126,-1,117,366,126,-1,116,196,117,-1,196,366,117,-1,34,264,367,-1,367,368,34,-1,157,329,41,-1,369,50,327,-1,310,370,311,-1,72,371,372,-1,372,373,72,-1,374,292,375,-1,292,323,375,-1,160,159,158,-1,10,376,11,-1,377,293,294,-1,364,378,192,-1,229,230,232,-1,88,218,89,-1,153,364,379,-1,153,378,364,-1,154,197,152,-1,144,338,380,-1,144,143,338,-1,97,244,98,-1,244,381,98,-1,148,146,149,-1,146,147,149,-1,338,239,380,-1,239,202,380,-1,382,383,380,-1,139,119,145,-1,125,127,384,-1,384,128,125,-1,70,360,133,-1,360,385,133,-1,134,379,70,-1,131,133,385,-1,203,241,386,-1,203,358,204,-1,81,115,113,-1,366,127,126,-1,114,223,356,-1,114,88,223,-1,105,124,103,-1,105,387,124,-1,355,357,388,-1,381,244,389,-1,342,77,236,-1,342,231,77,-1,77,234,236,-1,77,216,234,-1,347,346,349,-1,217,219,215,-1,219,221,215,-1,79,151,150,-1,92,87,89,-1,92,352,87,-1,352,222,87,-1,390,391,365,-1,74,392,75,-1,392,393,75,-1,349,66,68,-1,115,80,219,-1,115,81,80,-1,235,394,342,-1,73,72,373,-1,395,50,52,-1,395,268,50,-1,46,253,251,-1,46,49,253,-1,396,48,47,-1,396,6,48,-1,0,269,397,-1,0,398,269,-1,28,39,29,-1,40,273,39,-1,40,265,273,-1,40,326,266,-1,266,265,40,-1,31,399,299,-1,24,167,23,-1,8,7,0,-1,0,2,8,-1,14,319,400,-1,14,13,319,-1,10,401,376,-1,397,161,0,-1,402,395,403,-1,281,324,278,-1,322,4,3,-1,322,294,4,-1,17,323,289,-1,323,17,375,-1,274,2,1,-1,274,18,2,-1,316,400,319,-1,400,316,321,-1,376,374,275,-1,374,376,401,-1,158,276,161,-1,158,11,276,-1,404,405,406,-1,404,44,405,-1,407,408,51,-1,408,407,45,-1,402,273,265,-1,273,402,271,-1,409,399,410,-1,299,399,409,-1,30,411,412,-1,57,411,30,-1,413,410,414,-1,409,410,413,-1,266,415,267,-1,415,266,414,-1,416,327,417,-1,416,369,327,-1,29,397,269,-1,397,29,272,-1,7,396,418,-1,7,6,396,-1,268,402,265,-1,402,268,395,-1,156,260,177,-1,41,260,156,-1,39,272,29,-1,39,273,272,-1,258,260,41,-1,258,261,260,-1,55,329,157,-1,55,54,329,-1,419,259,420,-1,419,256,259,-1,421,250,249,-1,421,370,250,-1,175,59,422,-1,175,60,59,-1,300,423,304,-1,423,300,424,-1,399,425,410,-1,399,305,425,-1,315,370,173,-1,370,315,250,-1,270,61,308,-1,61,270,62,-1,391,426,287,-1,390,426,391,-1,393,286,427,-1,392,286,393,-1,34,428,37,-1,428,34,368,-1,368,350,428,-1,368,429,350,-1,228,225,224,-1,225,228,67,-1,354,352,226,-1,222,352,354,-1,215,86,217,-1,76,86,215,-1,141,219,80,-1,141,221,219,-1,220,238,340,-1,220,140,238,-1,231,394,430,-1,231,342,394,-1,121,431,432,-1,431,121,120,-1,340,216,220,-1,234,216,340,-1,433,101,206,-1,101,433,99,-1,122,434,435,-1,122,123,434,-1,389,387,381,-1,387,389,124,-1,207,357,353,-1,357,207,100,-1,436,237,437,-1,237,436,341,-1,221,140,220,-1,141,140,221,-1,438,117,179,-1,438,180,117,-1,358,385,360,-1,439,385,358,-1,127,132,384,-1,127,195,132,-1,194,132,195,-1,132,194,130,-1,440,97,96,-1,248,97,440,-1,178,246,441,-1,442,246,178,-1,339,386,241,-1,339,443,386,-1,442,125,129,-1,125,442,178,-1,396,315,422,-1,315,396,47,-1,378,152,190,-1,152,378,153,-1,388,100,99,-1,357,100,388,-1,153,134,194,-1,134,153,379,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmet4_Geo_5_535_coordIndex_3()
		{
			int[] value = {409,412,411,-1,412,409,413,-1,423,415,425,-1,415,423,417,-1,424,405,416,-1,424,406,405,-1,291,10,279,-1,10,291,401,-1,283,444,282,-1,283,277,444,-1,291,374,401,-1,291,292,374,-1,289,15,17,-1,289,290,15,-1,445,446,171,-1,447,446,445,-1,392,284,286,-1,392,288,284,-1,72,445,371,-1,445,72,75,-1,418,422,59,-1,396,422,418,-1,301,304,303,-1,300,304,301,-1,131,439,448,-1,385,439,131,-1,184,190,152,-1,184,188,190,-1,189,211,210,-1,211,189,188,-1,197,116,186,-1,197,196,116,-1,186,118,182,-1,118,186,116,-1,132,448,384,-1,132,131,448,-1,192,426,390,-1,192,193,426,-1,379,71,70,-1,379,364,71,-1,448,386,443,-1,439,386,448,-1,199,391,362,-1,199,69,391,-1,285,363,362,-1,285,449,363,-1,205,359,361,-1,359,205,204,-1,229,343,450,-1,229,233,343,-1,361,382,205,-1,450,382,361,-1,107,96,123,-1,107,440,96,-1,185,112,110,-1,185,181,112,-1,207,209,208,-1,209,207,212,-1,102,99,433,-1,102,388,99,-1,381,434,98,-1,387,434,381,-1,355,114,356,-1,104,114,355,-1,79,124,389,-1,79,81,124,-1,353,222,354,-1,223,222,353,-1,68,91,348,-1,227,91,68,-1,225,214,213,-1,214,225,429,-1,349,351,66,-1,349,346,351,-1,347,85,84,-1,347,155,85,-1,84,345,347,-1,345,84,83,-1,444,350,351,-1,444,428,350,-1,346,280,282,-1,346,344,280,-1,449,344,363,-1,344,449,280,-1,231,232,83,-1,231,137,232,-1,343,451,383,-1,136,451,343,-1,139,136,138,-1,139,451,136,-1,430,137,231,-1,430,138,137,-1,341,235,234,-1,235,341,436,-1,119,65,145,-1,65,119,121,-1,337,339,240,-1,337,129,339,-1,336,143,242,-1,336,338,143,-1,146,452,242,-1,452,146,148,-1,151,453,94,-1,151,245,453,-1,453,243,454,-1,453,245,243,-1,442,337,455,-1,337,442,129,-1,335,242,452,-1,335,336,242,-1,335,455,337,-1,335,454,455,-1,333,420,456,-1,419,420,333,-1,457,456,420,-1,458,456,457,-1,176,301,459,-1,176,53,301,-1,456,460,461,-1,456,458,460,-1,312,456,461,-1,312,333,456,-1,331,446,330,-1,446,331,462,-1,169,164,170,-1,164,169,166,-1,172,23,167,-1,172,462,23,-1,21,462,331,-1,23,462,21,-1,369,51,50,-1,369,407,51,-1,263,27,22,-1,263,328,27,-1,21,367,264,-1,21,463,367,-1,376,276,11,-1,275,276,376,-1,280,12,281,-1,449,12,280,-1,15,320,20,-1,290,320,15,-1,320,4,293,-1,320,5,4,-1,377,321,293,-1,321,377,400,-1,447,75,393,-1,75,447,445,-1,317,73,318,-1,317,74,73,-1,318,373,295,-1,318,73,373,-1,314,370,421,-1,370,314,311,-1,313,310,311,-1,310,313,309,-1,297,464,465,-1,464,297,298,-1,465,466,467,-1,466,465,464,-1,465,307,297,-1,307,465,468,-1,58,307,31,-1,58,308,307,-1,306,469,303,-1,306,468,469,-1,469,460,459,-1,460,469,467,-1,461,313,312,-1,466,313,461,-1,313,464,309,-1,466,464,313,-1,467,461,460,-1,461,467,466,-1,303,459,301,-1,459,303,469,-1,306,399,31,-1,306,305,399,-1,31,468,306,-1,307,468,31,-1,467,468,465,-1,467,469,468,-1,298,309,464,-1,298,296,309,-1,295,316,318,-1,295,19,316,-1,295,49,48,-1,295,373,49,-1,49,372,253,-1,49,373,372,-1,13,317,319,-1,317,13,288,-1,324,400,377,-1,400,324,14,-1,393,334,447,-1,427,334,393,-1,449,284,12,-1,285,284,449,-1,277,428,444,-1,37,428,277,-1,398,270,269,-1,62,270,398,-1,328,36,403,-1,36,328,263,-1,264,22,21,-1,264,263,22,-1,42,408,45,-1,156,408,42,-1,331,463,21,-1,331,332,463,-1,168,166,169,-1,168,262,166,-1,372,170,164,-1,372,371,170,-1,171,462,172,-1,171,446,462,-1,459,458,176,-1,458,459,460,-1,176,457,54,-1,176,458,457,-1,314,419,333,-1,314,421,419,-1,427,193,334,-1,426,193,427,-1,452,454,335,-1,452,453,454,-1,455,246,442,-1,455,247,246,-1,454,247,455,-1,243,247,454,-1,453,148,94,-1,452,148,453,-1,437,63,432,-1,147,63,437,-1,235,431,394,-1,436,431,235,-1,437,149,147,-1,237,149,437,-1,138,120,119,-1,430,120,138,-1,451,145,144,-1,451,139,145,-1,383,144,380,-1,451,144,383,-1,363,230,200,-1,230,363,344,-1,282,351,346,-1,282,444,351,-1,227,67,228,-1,67,227,68,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmet4_Geo_5_535_coordIndex_4()
		{
			int[] value = {367,429,368,-1,429,367,214,-1,105,433,435,-1,105,102,433,-1,212,353,213,-1,207,353,212,-1,214,463,210,-1,214,367,463,-1,208,211,183,-1,208,209,211,-1,205,380,202,-1,380,205,382,-1,450,198,229,-1,450,361,198,-1,383,450,343,-1,383,382,450,-1,287,362,391,-1,287,285,362,-1,448,128,384,-1,128,448,443,-1,366,195,127,-1,366,196,195,-1,190,192,378,-1,190,187,192,-1,152,186,184,-1,152,197,186,-1,440,438,441,-1,440,107,438,-1,441,179,178,-1,441,438,179,-1,210,332,189,-1,210,463,332,-1,403,52,328,-1,395,52,403,-1,398,59,62,-1,418,59,398,-1,371,171,170,-1,171,371,445,-1,169,167,168,-1,167,169,172,-1,262,165,166,-1,165,262,260,-1,164,253,372,-1,253,164,163,-1,288,74,317,-1,74,288,392,-1,447,330,446,-1,334,330,447,-1,272,161,397,-1,162,161,272,-1,9,277,283,-1,9,159,277,-1,157,44,404,-1,44,157,43,-1,424,417,423,-1,417,424,416,-1,415,410,425,-1,414,410,415,-1,57,29,56,-1,29,57,30,-1,192,365,364,-1,192,390,365,-1,310,173,370,-1,310,174,173,-1,203,239,241,-1,202,239,203,-1,151,389,244,-1,389,151,79,-1,128,339,129,-1,339,128,443,-1,441,248,440,-1,246,248,441,-1,64,145,65,-1,64,142,145,-1,134,130,194,-1,130,134,135,-1,358,386,439,-1,203,386,358,-1,107,180,438,-1,107,106,180,-1,435,387,105,-1,435,434,387,-1,237,340,238,-1,341,340,237,-1,436,432,431,-1,436,437,432,-1,356,353,357,-1,356,223,353,-1,110,100,207,-1,100,110,109,-1,108,112,106,-1,112,108,111,-1,104,388,102,-1,388,104,355,-1,123,98,434,-1,123,96,98,-1,435,206,122,-1,206,435,433,-1,432,65,121,-1,65,432,63,-1,120,394,431,-1,120,430,394,-1,140,95,238,-1,140,93,95,-1,349,155,347,-1,349,348,155,-1,90,348,91,-1,90,155,348,-1,80,150,141,-1,79,150,80,-1,78,84,85,-1,84,78,82,-1,218,86,90,-1,218,217,86,-1,429,67,350,-1,429,225,67,-1,226,224,354,-1,224,226,228,-1,287,427,286,-1,426,427,287,-1,69,365,391,-1,71,365,69,-1,404,55,157,-1,252,55,404,-1,257,54,457,-1,54,257,329,-1,58,270,308,-1,270,58,56,-1,411,299,409,-1,411,32,299,-1,304,425,305,-1,425,304,423,-1,424,302,406,-1,424,300,302,-1,422,173,175,-1,315,173,422,-1,256,421,249,-1,421,256,419,-1,420,257,457,-1,420,259,257,-1,251,254,255,-1,253,254,251,-1,177,408,156,-1,177,26,408,-1,0,418,398,-1,0,7,418,-1,255,261,258,-1,261,255,254,-1,416,407,369,-1,405,407,416,-1,417,267,415,-1,417,327,267,-1,412,28,30,-1,38,28,412,-1,325,402,403,-1,325,271,402,-1,326,414,266,-1,326,413,414,-1,33,411,57,-1,33,32,411,-1,325,36,35,-1,36,325,403,-1,326,412,413,-1,412,326,38,-1,22,24,23,-1,24,22,27,-1,25,408,26,-1,25,51,408,-1,407,44,45,-1,407,405,44,-1,252,406,302,-1,404,406,252,-1,161,1,0,-1,161,276,1,-1,374,274,275,-1,375,274,374,-1,19,321,316,-1,321,19,20,-1,279,294,322,-1,377,294,279,-1,18,375,17,-1,375,18,274,-1,3,289,323,-1,289,3,5,-1,377,278,324,-1,278,377,279,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmet4_Geo_5_535_normalIndex_1()
		{
			int[] value = {391,361,432,-1,420,453,460,-1,363,407,402,-1,414,334,339,-1,429,410,399,-1,463,450,449,-1,450,419,449,-1,396,450,403,-1,450,463,403,-1,54,44,5,-1,16,107,81,-1,16,68,107,-1,302,345,292,-1,287,274,342,-1,250,295,220,-1,250,348,295,-1,240,284,302,-1,240,213,284,-1,48,10,4,-1,4,10,34,-1,10,71,34,-1,221,266,297,-1,297,233,221,-1,149,122,138,-1,122,107,138,-1,85,59,18,-1,344,342,324,-1,344,386,342,-1,368,441,426,-1,426,352,368,-1,317,245,395,-1,421,341,415,-1,239,265,171,-1,180,242,252,-1,252,176,180,-1,336,379,398,-1,232,303,269,-1,434,467,446,-1,397,359,336,-1,336,398,397,-1,255,290,309,-1,382,394,309,-1,394,318,309,-1,277,227,285,-1,46,146,101,-1,129,160,95,-1,142,193,214,-1,142,132,193,-1,45,70,63,-1,60,74,36,-1,74,41,36,-1,263,290,258,-1,263,331,290,-1,62,55,40,-1,435,425,436,-1,70,38,63,-1,70,87,38,-1,269,263,198,-1,263,193,198,-1,86,17,2,-1,106,139,86,-1,110,114,92,-1,265,209,185,-1,209,126,185,-1,428,469,466,-1,466,435,440,-1,277,300,281,-1,243,189,275,-1,275,385,243,-1,222,317,316,-1,222,245,317,-1,227,202,285,-1,202,307,285,-1,262,227,277,-1,262,208,227,-1,160,60,95,-1,84,119,80,-1,359,417,382,-1,10,48,14,-1,48,4,6,-1,339,369,414,-1,369,393,414,-1,390,369,380,-1,380,405,390,-1,65,25,26,-1,25,9,26,-1,3,16,11,-1,1,13,22,-1,22,8,1,-1,296,362,370,-1,59,85,130,-1,16,81,0,-1,86,94,89,-1,89,17,86,-1,40,24,15,-1,40,55,24,-1,53,64,52,-1,53,32,64,-1,53,52,69,-1,75,78,73,-1,75,88,78,-1,75,37,120,-1,37,93,120,-1,80,119,98,-1,35,27,49,-1,114,126,209,-1,422,328,452,-1,422,327,328,-1,282,225,283,-1,283,356,282,-1,36,38,33,-1,36,63,38,-1,157,125,74,-1,121,100,105,-1,152,218,196,-1,336,273,288,-1,358,376,337,-1,376,331,337,-1,289,288,280,-1,288,273,280,-1,417,359,397,-1,255,228,224,-1,254,278,218,-1,311,378,319,-1,413,452,465,-1,413,422,452,-1,434,379,442,-1,434,398,379,-1,413,458,411,-1,379,336,288,-1,373,350,374,-1,401,366,285,-1,285,307,401,-1,217,164,169,-1,245,161,243,-1,207,170,146,-1,207,203,170,-1,102,187,97,-1,221,117,230,-1,221,90,117,-1,18,47,85,-1,108,65,57,-1,21,117,90,-1,21,42,117,-1,58,21,61,-1,58,30,21,-1,26,50,43,-1,0,50,31,-1,220,127,153,-1,153,250,220,-1,174,123,136,-1,136,148,174,-1,321,344,345,-1,321,332,344,-1,298,400,286,-1,298,405,400,-1,346,361,314,-1,361,326,314,-1,295,348,393,-1,348,427,393,-1,334,443,392,-1,334,414,443,-1,457,456,448,-1,456,439,448,-1,320,294,257,-1,294,238,257,-1,429,320,329,-1,329,410,429,-1,454,460,462,-1,322,420,333,-1,408,453,423,-1,363,325,297,-1,363,396,325,-1,402,450,363,-1,450,396,363,-1,370,362,455,-1,455,441,370,-1,418,426,461,-1,287,244,274,-1,168,154,115,-1,219,199,226,-1,226,256,219,-1,386,287,342,-1,340,404,426,-1,426,418,340,-1,461,441,455,-1,461,426,441,-1,355,362,305,-1,355,455,362,-1,272,251,279,-1,272,231,251,-1,267,221,230,-1,267,266,221,-1,377,306,315,-1,377,360,306,-1,408,403,437,-1,408,353,403,-1,462,460,437,-1,432,419,450,-1,450,402,432,-1,409,420,322,-1,333,420,412,-1,429,433,456,-1,429,399,433,-1,456,443,439,-1,443,414,439,-1,322,392,409,-1,390,293,295,-1,295,393,390,-1,405,293,390,-1,405,298,293,-1,213,240,186,-1,204,149,136,-1,149,148,136,-1,128,107,68,-1,128,138,107,-1,11,16,0,-1,0,31,11,-1,56,58,61,-1,61,48,56,-1,30,42,21,-1,65,26,43,-1,43,57,65,-1,51,37,23,-1,37,39,23,-1,211,251,231,-1,154,47,115,-1,154,85,47,-1,104,93,51,-1,93,37,51,-1,163,164,151,-1,163,167,164,-1,207,146,97,-1,97,187,207,-1,170,203,208,-1,222,161,245,-1,243,161,189,-1,151,217,177,-1,151,164,217,-1,169,164,137,-1,375,406,373,-1,350,388,374,-1,428,351,411,-1,411,469,428,-1,469,411,458,-1,434,442,467,-1,458,465,467,-1,464,468,465,-1,464,459,468,-1,468,459,451,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmet4_Geo_5_535_normalIndex_2()
		{
			int[] value = {465,468,467,-1,415,430,447,-1,357,421,444,-1,357,341,421,-1,299,378,311,-1,299,394,378,-1,206,229,254,-1,206,254,218,-1,255,224,290,-1,394,299,318,-1,382,309,376,-1,281,262,277,-1,331,376,290,-1,263,214,193,-1,263,258,214,-1,237,253,215,-1,152,196,121,-1,196,100,121,-1,60,33,95,-1,60,36,33,-1,64,32,74,-1,74,125,64,-1,15,24,45,-1,45,41,15,-1,283,234,323,-1,234,264,323,-1,381,327,422,-1,381,323,327,-1,328,301,438,-1,438,452,328,-1,328,327,239,-1,327,265,239,-1,323,264,265,-1,265,327,323,-1,114,110,126,-1,171,133,183,-1,80,98,35,-1,35,49,80,-1,37,75,39,-1,75,73,39,-1,52,64,78,-1,64,105,78,-1,40,15,32,-1,32,53,40,-1,89,55,17,-1,55,19,17,-1,62,27,55,-1,27,19,55,-1,250,153,141,-1,141,247,250,-1,6,56,48,-1,191,149,204,-1,305,260,272,-1,180,91,135,-1,135,241,180,-1,310,333,387,-1,333,412,387,-1,390,393,369,-1,334,308,339,-1,416,408,423,-1,133,112,120,-1,413,465,458,-1,290,376,309,-1,119,133,158,-1,119,112,133,-1,80,49,84,-1,275,177,270,-1,275,189,177,-1,146,170,101,-1,170,156,101,-1,202,222,307,-1,222,316,307,-1,177,217,270,-1,217,282,270,-1,371,338,270,-1,440,435,385,-1,86,2,72,-1,72,106,86,-1,265,264,209,-1,264,155,209,-1,185,158,265,-1,114,209,155,-1,225,169,147,-1,225,234,283,-1,269,331,263,-1,19,2,17,-1,258,224,253,-1,258,290,224,-1,132,198,193,-1,132,140,198,-1,237,215,172,-1,156,170,197,-1,388,379,374,-1,388,442,379,-1,379,373,374,-1,379,288,373,-1,451,459,447,-1,358,337,273,-1,337,280,273,-1,232,208,262,-1,318,255,309,-1,318,299,255,-1,299,228,255,-1,182,236,183,-1,252,249,176,-1,249,162,176,-1,447,421,415,-1,331,303,337,-1,331,269,303,-1,350,372,388,-1,242,180,241,-1,143,149,138,-1,143,148,149,-1,221,108,90,-1,221,233,108,-1,304,297,266,-1,304,363,297,-1,391,321,384,-1,391,330,321,-1,302,284,345,-1,213,286,284,-1,213,174,286,-1,213,186,123,-1,123,174,213,-1,287,223,244,-1,16,3,5,-1,402,407,391,-1,391,432,402,-1,399,360,365,-1,399,410,360,-1,334,291,308,-1,384,380,391,-1,194,143,201,-1,456,433,443,-1,409,453,420,-1,409,423,453,-1,449,412,454,-1,412,449,387,-1,346,432,361,-1,346,419,432,-1,377,365,360,-1,365,377,353,-1,308,310,314,-1,310,308,291,-1,369,326,380,-1,369,339,326,-1,28,99,96,-1,28,34,99,-1,124,83,122,-1,83,124,71,-1,194,286,174,-1,286,194,298,-1,205,223,144,-1,244,223,205,-1,292,259,246,-1,324,259,292,-1,195,144,116,-1,205,144,195,-1,123,131,136,-1,131,123,116,-1,192,204,210,-1,192,191,204,-1,345,384,321,-1,384,345,400,-1,407,304,354,-1,407,363,304,-1,148,194,174,-1,194,148,143,-1,14,50,0,-1,48,50,14,-1,284,400,345,-1,284,286,400,-1,61,50,48,-1,61,43,50,-1,18,56,6,-1,18,59,56,-1,150,30,134,-1,150,42,30,-1,188,230,117,-1,188,260,230,-1,370,368,312,-1,370,441,368,-1,168,212,199,-1,212,168,184,-1,223,166,144,-1,223,226,166,-1,267,260,296,-1,260,267,230,-1,332,426,404,-1,426,332,352,-1,236,178,238,-1,182,178,236,-1,162,257,179,-1,249,257,162,-1,250,367,348,-1,367,250,247,-1,247,357,367,-1,247,271,357,-1,319,278,254,-1,278,319,341,-1,229,299,311,-1,228,299,229,-1,273,359,358,-1,336,359,273,-1,281,337,303,-1,281,280,337,-1,289,366,375,-1,289,300,366,-1,442,372,445,-1,442,388,372,-1,436,347,364,-1,347,436,425,-1,375,288,289,-1,373,288,375,-1,76,95,33,-1,95,76,129,-1,38,111,77,-1,38,87,111,-1,197,140,156,-1,140,197,198,-1,157,215,206,-1,215,157,160,-1,335,401,349,-1,401,335,406,-1,280,300,289,-1,281,300,280,-1,66,55,89,-1,66,24,55,-1,234,155,264,-1,145,155,234,-1,2,92,72,-1,2,35,92,-1,98,92,35,-1,92,98,110,-1,12,146,46,-1,97,146,12,-1,94,102,20,-1,113,102,94,-1,137,147,169,-1,137,109,147,-1,113,86,139,-1,86,113,94,-1,304,267,312,-1,267,304,266,-1,112,84,88,-1,84,112,119,-1,172,160,129,-1,215,160,172,-1,119,185,98,-1,185,119,158,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmet4_Geo_5_535_normalIndex_3()
		{
			int[] value = {205,246,259,-1,246,205,195,-1,212,131,166,-1,131,212,210,-1,184,99,192,-1,184,96,99,-1,322,334,392,-1,334,322,291,-1,439,431,448,-1,439,427,431,-1,322,310,291,-1,322,333,310,-1,454,463,449,-1,454,462,463,-1,82,29,22,-1,79,29,82,-1,249,320,257,-1,249,329,320,-1,180,82,91,-1,82,180,176,-1,354,312,368,-1,304,312,354,-1,154,199,219,-1,168,199,154,-1,114,145,103,-1,155,145,114,-1,52,88,84,-1,52,78,88,-1,73,105,100,-1,105,73,78,-1,49,62,69,-1,49,27,62,-1,69,40,53,-1,40,69,62,-1,92,103,72,-1,92,114,103,-1,120,178,182,-1,120,93,178,-1,158,171,265,-1,158,133,171,-1,103,147,109,-1,145,147,103,-1,328,236,301,-1,328,239,236,-1,294,438,301,-1,294,424,438,-1,356,323,381,-1,323,356,283,-1,413,351,383,-1,413,411,351,-1,381,371,356,-1,383,371,381,-1,70,46,87,-1,70,12,46,-1,32,41,74,-1,32,15,41,-1,157,121,125,-1,121,157,152,-1,142,129,76,-1,142,172,129,-1,156,111,101,-1,140,111,156,-1,237,258,253,-1,214,258,237,-1,232,198,197,-1,232,269,198,-1,206,228,229,-1,224,228,206,-1,415,394,430,-1,378,394,415,-1,278,196,218,-1,196,278,271,-1,447,444,421,-1,447,459,444,-1,451,397,446,-1,451,417,397,-1,446,468,451,-1,468,446,467,-1,431,357,444,-1,431,367,357,-1,459,457,448,-1,459,464,457,-1,424,464,438,-1,464,424,457,-1,442,458,467,-1,442,469,458,-1,351,389,338,-1,428,389,351,-1,440,428,466,-1,440,389,428,-1,445,469,442,-1,445,466,469,-1,406,350,373,-1,350,406,335,-1,435,395,385,-1,395,435,436,-1,167,137,164,-1,167,139,137,-1,151,189,161,-1,151,177,189,-1,222,159,161,-1,159,222,202,-1,208,173,227,-1,208,203,173,-1,173,207,181,-1,173,203,207,-1,113,167,175,-1,167,113,139,-1,163,161,159,-1,163,151,161,-1,163,175,167,-1,163,181,175,-1,211,134,200,-1,150,134,211,-1,118,200,134,-1,165,200,118,-1,130,154,190,-1,130,85,154,-1,200,216,235,-1,200,165,216,-1,251,200,235,-1,251,211,200,-1,23,29,51,-1,29,23,7,-1,1,25,13,-1,25,1,9,-1,8,5,3,-1,8,7,5,-1,54,7,23,-1,5,7,54,-1,191,122,149,-1,191,124,122,-1,127,68,44,-1,127,128,68,-1,54,141,153,-1,54,67,141,-1,308,326,339,-1,314,326,308,-1,457,429,456,-1,424,429,457,-1,463,437,403,-1,462,437,463,-1,437,453,408,-1,437,460,453,-1,416,353,408,-1,353,416,365,-1,79,176,162,-1,176,79,82,-1,306,242,315,-1,306,252,242,-1,315,241,325,-1,315,242,241,-1,231,260,188,-1,260,231,272,-1,279,305,272,-1,305,279,355,-1,418,343,313,-1,343,418,461,-1,313,268,261,-1,268,313,343,-1,313,340,418,-1,340,313,276,-1,386,340,287,-1,386,404,340,-1,256,248,219,-1,256,276,248,-1,248,216,190,-1,216,248,261,-1,235,279,251,-1,268,279,235,-1,279,343,355,-1,268,343,279,-1,261,235,216,-1,235,261,268,-1,219,190,154,-1,190,219,248,-1,256,223,287,-1,256,226,223,-1,287,276,256,-1,340,276,287,-1,261,276,313,-1,261,248,276,-1,461,355,343,-1,461,455,355,-1,325,377,315,-1,325,396,377,-1,325,233,297,-1,325,241,233,-1,233,135,108,-1,233,241,135,-1,410,306,360,-1,306,410,329,-1,433,365,416,-1,365,433,399,-1,162,104,79,-1,179,104,162,-1,424,320,429,-1,294,320,424,-1,427,367,431,-1,348,367,427,-1,330,332,321,-1,352,332,330,-1,128,220,201,-1,220,128,127,-1,153,44,54,-1,153,127,44,-1,10,83,71,-1,14,83,10,-1,23,67,54,-1,23,39,67,-1,11,9,1,-1,11,31,9,-1,135,13,25,-1,135,91,13,-1,22,7,8,-1,22,29,7,-1,190,165,130,-1,165,190,216,-1,130,118,59,-1,130,165,118,-1,231,150,211,-1,231,188,150,-1,179,93,104,-1,178,93,179,-1,159,181,163,-1,159,173,181,-1,175,102,113,-1,175,187,102,-1,181,187,175,-1,207,187,181,-1,173,202,227,-1,159,202,173,-1,349,317,364,-1,316,317,349,-1,350,347,372,-1,335,347,350,-1,349,307,316,-1,401,307,349,-1,466,425,435,-1,445,425,466,-1,389,385,275,-1,389,440,385,-1,338,275,270,-1,389,275,338,-1,438,465,452,-1,465,438,464,-1,448,444,459,-1,448,431,444,-1,378,341,319,-1,341,378,415,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmet4_Geo_5_535_normalIndex_4()
		{
			int[] value = {141,271,247,-1,271,141,196,-1,132,76,77,-1,132,142,76,-1,152,206,218,-1,157,206,152,-1,196,67,100,-1,196,141,67,-1,125,105,64,-1,125,121,105,-1,356,270,282,-1,270,356,371,-1,383,422,413,-1,383,381,422,-1,338,383,351,-1,338,371,383,-1,238,301,236,-1,238,294,301,-1,103,106,72,-1,106,103,109,-1,19,35,2,-1,19,27,35,-1,88,120,112,-1,88,75,120,-1,84,69,52,-1,84,49,69,-1,12,66,20,-1,12,70,66,-1,20,89,94,-1,20,66,89,-1,100,39,73,-1,100,67,39,-1,201,138,128,-1,143,138,201,-1,330,368,352,-1,354,368,330,-1,91,22,13,-1,22,91,82,-1,1,3,11,-1,3,1,8,-1,31,26,9,-1,26,31,50,-1,25,108,135,-1,108,25,65,-1,329,252,306,-1,252,329,249,-1,79,51,29,-1,104,51,79,-1,400,380,384,-1,405,380,400,-1,414,427,439,-1,414,393,427,-1,6,34,28,-1,34,6,4,-1,184,210,212,-1,210,184,192,-1,131,144,166,-1,116,144,131,-1,324,345,344,-1,345,324,292,-1,120,183,133,-1,120,182,183,-1,305,296,260,-1,305,362,296,-1,225,217,169,-1,282,217,225,-1,208,197,170,-1,197,208,232,-1,106,137,139,-1,137,106,109,-1,20,97,12,-1,102,97,20,-1,245,385,395,-1,245,243,385,-1,185,110,98,-1,110,185,126,-1,234,147,145,-1,225,147,234,-1,70,24,66,-1,70,45,24,-1,77,140,132,-1,77,111,140,-1,401,375,366,-1,406,375,401,-1,335,364,347,-1,335,349,364,-1,253,206,215,-1,253,224,206,-1,74,160,157,-1,160,74,60,-1,63,41,45,-1,41,63,36,-1,214,172,142,-1,172,214,237,-1,87,101,111,-1,87,46,101,-1,77,33,38,-1,33,77,76,-1,364,395,436,-1,395,364,317,-1,425,372,347,-1,425,445,372,-1,300,285,366,-1,300,277,285,-1,447,417,451,-1,447,430,417,-1,382,430,394,-1,382,417,430,-1,303,262,281,-1,232,262,303,-1,398,446,397,-1,446,398,434,-1,376,359,382,-1,376,358,359,-1,271,341,357,-1,271,278,341,-1,311,254,229,-1,254,311,319,-1,238,179,257,-1,178,179,238,-1,239,183,236,-1,171,183,239,-1,28,18,6,-1,47,18,28,-1,58,59,118,-1,59,58,56,-1,386,332,404,-1,332,386,344,-1,259,244,205,-1,259,274,244,-1,199,166,226,-1,166,199,212,-1,184,115,96,-1,184,168,115,-1,312,296,370,-1,267,296,312,-1,42,188,117,-1,188,42,150,-1,134,58,118,-1,134,30,58,-1,90,57,21,-1,108,57,90,-1,0,83,14,-1,0,81,83,-1,391,354,330,-1,391,407,354,-1,21,43,61,-1,43,21,57,-1,192,124,191,-1,99,124,192,-1,210,136,131,-1,210,204,136,-1,246,302,292,-1,240,302,246,-1,293,194,201,-1,293,298,194,-1,186,116,123,-1,186,195,116,-1,342,259,324,-1,342,274,259,-1,293,220,295,-1,220,293,201,-1,186,246,195,-1,246,186,240,-1,44,16,5,-1,16,44,68,-1,107,83,81,-1,107,122,83,-1,124,34,71,-1,124,99,34,-1,47,96,115,-1,28,96,47,-1,380,361,391,-1,380,326,361,-1,310,346,314,-1,387,346,310,-1,396,353,377,-1,353,396,403,-1,392,423,409,-1,416,423,392,-1,419,387,449,-1,387,419,346,-1,420,454,412,-1,454,420,460,-1,416,443,433,-1,443,416,392,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmet5_Geo_5_541_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,21,24,22,-1,25,26,27,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,36,37,34,-1,38,35,39,-1,38,40,35,-1,41,42,43,-1,43,44,41,-1,45,46,47,-1,47,48,45,-1,49,50,45,-1,45,51,49,-1,52,53,54,-1,52,55,53,-1,56,57,12,-1,57,13,12,-1,58,59,60,-1,7,61,62,-1,62,63,7,-1,59,64,60,-1,65,66,67,-1,65,68,66,-1,69,64,70,-1,64,71,70,-1,72,73,74,-1,73,75,74,-1,76,77,78,-1,79,80,78,-1,81,82,78,-1,83,84,78,-1,85,86,87,-1,87,88,85,-1,89,33,90,-1,91,92,93,-1,94,69,95,-1,70,96,97,-1,98,99,100,-1,98,101,99,-1,102,103,73,-1,104,105,106,-1,104,107,105,-1,108,34,109,-1,110,111,112,-1,63,113,114,-1,70,115,96,-1,24,21,32,-1,116,11,117,-1,116,118,11,-1,119,116,120,-1,116,117,120,-1,118,121,122,-1,118,116,121,-1,123,124,125,-1,5,4,126,-1,127,128,129,-1,130,131,132,-1,133,134,135,-1,134,136,135,-1,137,138,139,-1,138,140,139,-1,141,142,143,-1,16,144,145,-1,146,147,148,-1,147,149,148,-1,150,151,152,-1,151,153,152,-1,154,155,156,-1,155,157,156,-1,158,159,160,-1,161,162,163,-1,163,164,161,-1,165,166,167,-1,165,168,166,-1,169,170,171,-1,172,173,174,-1,175,176,177,-1,131,178,179,-1,180,181,182,-1,182,181,183,-1,183,184,182,-1,185,186,187,-1,184,188,189,-1,184,183,188,-1,167,190,162,-1,158,160,173,-1,191,192,193,-1,194,155,195,-1,171,196,197,-1,198,199,200,-1,201,202,203,-1,201,197,202,-1,151,204,154,-1,151,205,204,-1,202,197,196,-1,206,207,175,-1,207,176,175,-1,208,194,195,-1,208,209,194,-1,142,138,210,-1,211,212,213,-1,214,215,3,-1,132,216,217,-1,218,219,220,-1,218,221,219,-1,132,131,179,-1,5,189,3,-1,222,223,202,-1,224,200,225,-1,200,226,225,-1,208,204,227,-1,208,195,204,-1,228,229,230,-1,230,231,228,-1,232,188,233,-1,188,234,233,-1,235,236,237,-1,237,238,235,-1,1,239,240,-1,241,242,2,-1,243,244,234,-1,234,245,243,-1,230,175,231,-1,210,246,142,-1,210,129,246,-1,247,248,249,-1,247,250,248,-1,251,252,253,-1,251,125,252,-1,254,124,242,-1,125,255,123,-1,256,257,258,-1,239,161,240,-1,161,164,240,-1,1,259,260,-1,177,231,175,-1,261,253,252,-1,252,192,261,-1,125,251,255,-1,219,262,263,-1,219,264,262,-1,265,133,129,-1,213,266,211,-1,152,267,268,-1,269,270,205,-1,271,207,272,-1,271,273,207,-1,274,275,276,-1,277,278,194,-1,157,279,280,-1,15,281,16,-1,15,282,281,-1,126,184,5,-1,283,284,140,-1,284,139,140,-1,285,286,287,-1,285,288,286,-1,289,290,291,-1,289,292,290,-1,293,294,295,-1,293,291,294,-1,296,297,143,-1,129,210,127,-1,3,215,298,-1,299,262,132,-1,132,300,216,-1,109,34,301,-1,302,23,303,-1,23,22,303,-1,304,305,306,-1,306,307,304,-1,110,308,111,-1,111,31,309,-1,310,110,112,-1,85,83,82,-1,85,9,83,-1,62,93,92,-1,62,75,93,-1,84,83,9,-1,9,11,84,-1,311,59,121,-1,311,68,59,-1,66,312,313,-1,313,314,66,-1,315,316,317,-1,315,67,316,-1,51,105,107,-1,51,45,105,-1,318,106,319,-1,318,320,106,-1,292,321,322,-1,292,289,321,-1,35,40,323,-1,36,324,325,-1,36,323,324,-1,326,325,327,-1,301,34,37,-1,55,328,329,-1,52,54,50,-1,330,56,331,-1,56,330,49,-1,49,57,56,-1,332,333,334,-1,333,335,334,-1,336,43,42,-1,337,338,339,-1,340,341,342,-1,304,307,37,-1,307,301,37,-1,36,35,323,-1,38,39,343,-1,344,345,346,-1,346,347,344,-1,348,349,350,-1,349,351,350,-1,352,322,353,-1,322,321,353,-1,349,354,351,-1,354,355,351,-1,319,106,105,-1,315,101,98,-1,105,48,319,-1,105,45,48,-1,356,357,358,-1,315,98,67,-1,98,65,67,-1,359,313,360,-1,359,282,313,-1,361,362,71,-1,361,363,362,-1,58,121,59,-1,364,119,120,-1,364,365,119,-1,366,367,368,-1,366,369,367,-1,370,371,372,-1,370,373,371,-1,373,326,371,-1,374,20,19,-1,374,375,20,-1,376,299,132,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmet5_Geo_5_541_coordIndex_2()
		{
			int[] value = {179,300,132,-1,295,377,378,-1,295,294,377,-1,292,379,290,-1,292,380,379,-1,381,126,4,-1,381,284,126,-1,182,184,126,-1,126,382,182,-1,383,384,385,-1,386,387,388,-1,386,389,387,-1,157,390,156,-1,157,280,390,-1,237,391,243,-1,243,245,237,-1,277,392,278,-1,277,393,392,-1,271,276,394,-1,394,395,271,-1,206,272,207,-1,204,205,227,-1,205,270,227,-1,281,268,267,-1,281,396,268,-1,223,397,202,-1,397,203,202,-1,193,159,191,-1,398,346,399,-1,399,400,398,-1,263,220,219,-1,263,401,220,-1,172,158,173,-1,172,398,158,-1,187,218,249,-1,176,402,177,-1,402,403,177,-1,404,0,225,-1,256,258,197,-1,258,171,197,-1,171,174,169,-1,351,355,405,-1,355,399,405,-1,346,172,347,-1,346,398,172,-1,166,190,167,-1,124,2,242,-1,124,406,2,-1,182,407,180,-1,182,382,407,-1,408,409,410,-1,411,175,233,-1,175,230,233,-1,163,162,190,-1,235,412,236,-1,412,413,236,-1,245,238,237,-1,229,232,233,-1,233,230,229,-1,148,156,390,-1,148,153,156,-1,203,397,269,-1,414,214,3,-1,220,401,247,-1,415,381,416,-1,416,417,415,-1,418,266,213,-1,132,217,376,-1,213,419,418,-1,133,265,134,-1,198,420,199,-1,198,421,420,-1,202,196,170,-1,170,222,202,-1,404,422,222,-1,222,170,404,-1,269,150,268,-1,268,203,269,-1,171,170,196,-1,396,201,268,-1,158,191,159,-1,168,259,170,-1,259,404,170,-1,190,160,163,-1,190,173,160,-1,193,241,159,-1,161,239,165,-1,239,260,165,-1,1,260,239,-1,232,423,189,-1,189,188,232,-1,262,299,263,-1,225,226,404,-1,168,169,166,-1,168,170,169,-1,424,279,157,-1,157,155,424,-1,268,150,152,-1,278,425,424,-1,426,427,130,-1,130,262,426,-1,428,133,135,-1,132,262,130,-1,129,128,265,-1,184,189,5,-1,3,298,4,-1,114,118,8,-1,118,122,8,-1,429,80,79,-1,79,113,429,-1,430,26,25,-1,95,69,431,-1,369,432,367,-1,369,433,432,-1,434,12,14,-1,19,18,32,-1,108,343,39,-1,435,73,72,-1,435,102,73,-1,436,437,93,-1,438,358,320,-1,358,352,320,-1,438,320,318,-1,8,439,6,-1,93,86,91,-1,10,9,440,-1,86,437,87,-1,86,93,437,-1,82,83,78,-1,80,81,78,-1,77,79,78,-1,84,76,78,-1,92,91,429,-1,429,113,92,-1,75,73,93,-1,70,97,441,-1,6,439,95,-1,439,94,95,-1,62,92,63,-1,57,442,443,-1,443,13,57,-1,363,98,100,-1,330,52,50,-1,50,49,330,-1,101,444,445,-1,55,52,330,-1,306,25,307,-1,306,430,25,-1,446,443,43,-1,32,31,111,-1,39,35,34,-1,304,373,305,-1,304,326,373,-1,34,108,39,-1,112,111,309,-1,18,24,32,-1,444,101,315,-1,325,326,36,-1,121,58,122,-1,85,447,86,-1,63,92,113,-1,448,449,257,-1,120,450,364,-1,120,451,450,-1,201,203,268,-1,173,190,174,-1,449,364,450,-1,364,449,448,-1,316,66,314,-1,316,67,66,-1,21,452,90,-1,21,23,452,-1,453,315,317,-1,453,444,315,-1,454,455,456,-1,455,454,457,-1,22,375,303,-1,20,375,22,-1,458,459,460,-1,459,458,461,-1,462,463,464,-1,462,465,463,-1,41,107,104,-1,107,41,44,-1,112,305,373,-1,305,112,309,-1,304,36,326,-1,37,36,304,-1,308,437,19,-1,308,87,437,-1,31,430,306,-1,31,33,430,-1,342,109,301,-1,109,342,341,-1,301,25,342,-1,301,307,25,-1,343,337,339,-1,343,108,337,-1,46,53,466,-1,53,46,54,-1,467,468,47,-1,467,99,468,-1,442,43,443,-1,442,44,43,-1,432,331,29,-1,432,328,331,-1,469,433,96,-1,433,469,329,-1,362,100,470,-1,362,363,100,-1,94,58,60,-1,439,58,94,-1,441,69,70,-1,441,431,69,-1,447,91,86,-1,447,429,91,-1,440,85,88,-1,85,440,9,-1,370,440,310,-1,370,10,440,-1,438,471,472,-1,438,318,471,-1,472,358,438,-1,472,356,358,-1,14,473,474,-1,446,473,14,-1,442,49,51,-1,57,49,442,-1,336,475,473,-1,336,338,475,-1,103,93,73,-1,103,436,93,-1,72,366,435,-1,366,72,441,-1,341,476,477,-1,341,340,476,-1,12,30,29,-1,30,12,434,-1,51,44,442,-1,51,107,44,-1,478,479,327,-1,478,480,479,-1,345,399,346,-1,405,399,345,-1,26,33,89,-1,430,33,26,-1,81,429,447,-1,81,80,429,-1,63,8,7,-1,63,114,8,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmet5_Geo_5_541_coordIndex_3()
		{
			int[] value = {119,312,311,-1,119,365,312,-1,264,426,262,-1,481,426,264,-1,481,482,483,-1,481,264,482,-1,484,130,427,-1,484,131,130,-1,415,485,486,-1,485,415,417,-1,413,390,280,-1,413,487,390,-1,280,236,413,-1,280,279,236,-1,376,488,401,-1,376,217,488,-1,488,216,214,-1,488,217,216,-1,187,228,185,-1,228,187,249,-1,241,164,159,-1,241,240,164,-1,166,174,190,-1,166,169,174,-1,240,2,1,-1,2,240,241,-1,489,200,199,-1,489,226,200,-1,226,422,404,-1,422,226,489,-1,420,490,491,-1,421,490,420,-1,392,425,278,-1,391,425,392,-1,409,244,243,-1,244,409,408,-1,224,273,492,-1,273,224,402,-1,411,206,175,-1,411,493,206,-1,137,494,127,-1,494,137,486,-1,418,485,484,-1,485,418,419,-1,483,212,481,-1,495,212,483,-1,427,418,484,-1,266,418,427,-1,178,417,416,-1,178,131,417,-1,496,212,495,-1,496,213,212,-1,488,247,401,-1,247,488,250,-1,384,497,386,-1,497,384,383,-1,146,498,388,-1,146,487,498,-1,420,499,500,-1,420,491,499,-1,501,177,403,-1,501,185,177,-1,409,393,410,-1,409,392,393,-1,238,180,235,-1,238,181,180,-1,502,382,283,-1,382,502,407,-1,124,186,406,-1,124,123,186,-1,487,412,498,-1,412,487,413,-1,387,145,147,-1,387,503,145,-1,17,457,454,-1,457,17,16,-1,479,372,371,-1,479,504,372,-1,345,505,480,-1,345,344,505,-1,378,297,296,-1,378,377,297,-1,285,506,288,-1,285,497,506,-1,191,261,192,-1,261,191,507,-1,508,399,355,-1,508,400,399,-1,509,510,511,-1,509,507,510,-1,394,275,512,-1,394,276,275,-1,349,289,354,-1,289,349,321,-1,244,233,234,-1,233,244,411,-1,258,174,171,-1,172,174,258,-1,193,252,254,-1,193,192,252,-1,187,123,218,-1,186,123,187,-1,255,218,123,-1,255,221,218,-1,398,510,158,-1,398,400,510,-1,513,507,509,-1,507,513,261,-1,135,255,251,-1,255,135,136,-1,295,508,293,-1,508,295,511,-1,509,296,513,-1,509,378,296,-1,201,256,197,-1,201,396,256,-1,359,281,282,-1,359,396,281,-1,397,514,515,-1,397,223,514,-1,514,489,500,-1,514,422,489,-1,270,499,227,-1,270,515,499,-1,395,198,492,-1,421,198,395,-1,248,414,423,-1,250,414,248,-1,393,512,275,-1,512,393,277,-1,410,275,274,-1,410,393,275,-1,234,183,245,-1,234,188,183,-1,245,181,238,-1,181,245,183,-1,385,498,412,-1,385,384,498,-1,153,149,152,-1,148,149,153,-1,503,389,516,-1,387,389,503,-1,287,455,516,-1,455,287,379,-1,497,389,386,-1,497,285,389,-1,383,180,407,-1,383,385,180,-1,284,415,139,-1,415,284,381,-1,517,407,502,-1,517,383,407,-1,143,506,517,-1,143,297,506,-1,290,294,291,-1,290,286,294,-1,419,496,494,-1,496,419,213,-1,27,342,25,-1,27,340,342,-1,449,347,257,-1,344,347,449,-1,505,451,504,-1,505,450,451,-1,371,327,479,-1,371,326,327,-1,436,518,374,-1,436,103,518,-1,519,102,435,-1,102,519,520,-1,61,75,62,-1,74,75,61,-1,448,365,364,-1,448,360,365,-1,451,117,521,-1,451,120,117,-1,77,118,114,-1,77,76,118,-1,58,8,122,-1,58,439,8,-1,98,361,65,-1,98,363,361,-1,362,70,71,-1,362,115,70,-1,100,467,470,-1,100,99,467,-1,453,380,357,-1,456,380,453,-1,318,48,471,-1,318,319,48,-1,45,54,46,-1,54,45,50,-1,322,358,357,-1,322,352,358,-1,104,343,41,-1,104,38,343,-1,348,321,349,-1,353,321,348,-1,351,478,350,-1,405,478,351,-1,353,320,352,-1,320,353,522,-1,324,353,348,-1,522,353,324,-1,106,522,40,-1,106,320,522,-1,477,337,341,-1,477,523,337,-1,336,339,338,-1,42,339,336,-1,524,477,476,-1,524,525,477,-1,335,475,523,-1,335,333,475,-1,43,473,446,-1,43,336,473,-1,332,474,333,-1,526,474,332,-1,335,527,334,-1,335,525,527,-1,375,518,458,-1,518,375,374,-1,334,460,459,-1,334,527,460,-1,465,526,332,-1,462,526,465,-1,368,28,464,-1,367,28,368,-1,463,520,519,-1,463,461,520,-1,518,461,458,-1,461,518,520,-1,519,464,463,-1,368,464,519,-1,328,330,331,-1,328,55,330,-1,329,53,55,-1,53,329,469,-1,434,462,30,-1,434,526,462,-1,459,332,334,-1,465,332,459,-1,302,460,527,-1,460,302,303,-1,302,525,524,-1,527,525,302,-1,474,434,14,-1,434,474,526,-1,475,474,473,-1,475,333,474,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmet5_Geo_5_541_coordIndex_4()
		{
			int[] value = {523,525,335,-1,477,525,523,-1,350,327,325,-1,478,327,350,-1,324,40,522,-1,324,323,40,-1,348,325,324,-1,350,325,348,-1,357,292,322,-1,380,292,357,-1,47,471,48,-1,468,471,47,-1,466,470,467,-1,470,466,528,-1,15,313,282,-1,313,15,314,-1,60,69,94,-1,60,64,69,-1,66,311,312,-1,66,68,311,-1,113,77,114,-1,113,79,77,-1,11,521,117,-1,10,521,11,-1,359,448,257,-1,359,360,448,-1,95,74,61,-1,95,431,74,-1,368,435,366,-1,435,368,519,-1,103,520,518,-1,103,102,520,-1,310,88,110,-1,440,88,310,-1,309,306,305,-1,309,31,306,-1,110,87,308,-1,88,87,110,-1,521,504,451,-1,521,372,504,-1,344,450,505,-1,344,449,450,-1,10,372,521,-1,10,370,372,-1,524,23,302,-1,524,452,23,-1,19,436,374,-1,19,437,436,-1,215,416,298,-1,215,178,416,-1,494,128,127,-1,128,494,496,-1,296,142,246,-1,296,143,142,-1,293,289,291,-1,354,289,293,-1,379,286,290,-1,379,287,286,-1,286,377,294,-1,377,286,288,-1,497,517,506,-1,497,383,517,-1,502,143,517,-1,502,141,143,-1,382,284,283,-1,382,126,284,-1,285,516,389,-1,516,285,287,-1,456,379,380,-1,456,455,379,-1,144,281,267,-1,281,144,16,-1,152,144,267,-1,144,152,149,-1,385,235,180,-1,385,412,235,-1,274,408,410,-1,274,493,408,-1,194,512,277,-1,194,209,512,-1,272,493,274,-1,206,493,272,-1,273,395,492,-1,395,273,271,-1,490,395,394,-1,490,421,395,-1,500,515,514,-1,515,500,499,-1,223,422,514,-1,222,422,223,-1,269,515,270,-1,269,397,515,-1,257,396,359,-1,257,256,396,-1,496,265,128,-1,265,496,495,-1,428,296,246,-1,513,296,428,-1,511,378,509,-1,511,295,378,-1,355,293,508,-1,355,354,293,-1,482,255,136,-1,221,255,482,-1,253,513,428,-1,261,513,253,-1,220,249,218,-1,220,247,249,-1,402,225,403,-1,225,402,224,-1,172,257,347,-1,172,258,257,-1,189,414,3,-1,414,189,423,-1,271,274,276,-1,271,272,274,-1,394,209,490,-1,394,512,209,-1,400,511,510,-1,508,511,400,-1,507,158,510,-1,158,507,191,-1,297,288,506,-1,377,288,297,-1,480,504,479,-1,480,505,504,-1,454,316,17,-1,454,317,316,-1,503,16,145,-1,503,457,16,-1,388,147,146,-1,388,387,147,-1,254,241,193,-1,254,242,241,-1,124,252,125,-1,124,254,252,-1,135,253,428,-1,135,251,253,-1,428,129,133,-1,129,428,246,-1,283,141,502,-1,283,140,141,-1,391,236,425,-1,391,237,236,-1,260,168,165,-1,259,168,260,-1,177,228,231,-1,185,228,177,-1,403,0,501,-1,0,403,225,-1,227,491,208,-1,491,227,499,-1,500,199,420,-1,199,500,489,-1,386,498,384,-1,386,388,498,-1,298,381,4,-1,381,298,416,-1,264,221,482,-1,221,264,219,-1,414,488,214,-1,414,250,488,-1,211,427,426,-1,266,427,211,-1,134,495,483,-1,265,495,134,-1,481,211,426,-1,212,211,481,-1,486,419,494,-1,486,485,419,-1,137,210,138,-1,127,210,137,-1,278,155,194,-1,155,278,424,-1,200,492,198,-1,200,224,492,-1,207,402,176,-1,207,273,402,-1,408,411,244,-1,408,493,411,-1,243,392,409,-1,243,391,392,-1,209,491,490,-1,209,208,491,-1,150,205,151,-1,205,150,269,-1,195,154,204,-1,195,155,154,-1,259,0,404,-1,1,0,259,-1,248,228,249,-1,248,229,228,-1,232,248,423,-1,232,229,248,-1,406,185,501,-1,406,186,185,-1,263,376,401,-1,263,299,376,-1,214,300,215,-1,214,216,300,-1,300,178,215,-1,300,179,178,-1,2,501,0,-1,406,501,2,-1,167,161,165,-1,161,167,162,-1,163,159,164,-1,159,163,160,-1,156,151,154,-1,151,156,153,-1,147,144,149,-1,147,145,144,-1,148,487,146,-1,487,148,390,-1,279,425,236,-1,425,279,424,-1,142,140,138,-1,142,141,140,-1,139,486,137,-1,486,139,415,-1,484,417,131,-1,484,485,417,-1,483,136,134,-1,483,482,136,-1,365,313,312,-1,365,360,313,-1,116,311,121,-1,116,119,311,-1,82,447,85,-1,82,81,447,-1,118,84,11,-1,118,76,84,-1,32,90,33,-1,21,90,32,-1,405,480,478,-1,405,345,480,-1,53,528,466,-1,53,469,528,-1,367,29,28,-1,367,432,29,-1,357,444,453,-1,444,357,356,-1,529,340,27,-1,340,529,476,-1,369,441,97,-1,369,366,441,-1,96,369,97,-1,433,369,96,-1,338,523,475,-1,338,337,523,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmet5_Geo_5_541_coordIndex_5()
		{
			int[] value = {13,446,14,-1,443,446,13,-1,445,356,472,-1,445,444,356,-1,472,468,445,-1,472,471,468,-1,452,476,529,-1,476,452,524,-1,310,373,370,-1,373,310,112,-1,361,64,59,-1,361,71,64,-1,72,431,441,-1,72,74,431,-1,65,59,68,-1,59,65,361,-1,61,6,95,-1,6,61,7,-1,96,528,469,-1,96,115,528,-1,115,470,528,-1,115,362,470,-1,329,432,433,-1,432,329,328,-1,29,56,12,-1,29,331,56,-1,445,99,101,-1,99,445,468,-1,466,47,46,-1,466,467,47,-1,337,109,341,-1,109,337,108,-1,339,41,343,-1,41,339,42,-1,111,19,32,-1,111,308,19,-1,38,106,40,-1,38,104,106,-1,30,464,28,-1,30,462,464,-1,461,465,459,-1,465,461,463,-1,458,303,375,-1,458,460,303,-1,516,457,503,-1,516,455,457,-1,317,456,453,-1,456,317,454,-1,27,89,529,-1,26,89,27,-1,24,20,22,-1,24,18,20,-1,90,529,89,-1,90,452,529,-1,17,314,15,-1,17,316,314,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmet5_Geo_5_541_normalIndex_1()
		{
			int[] value = {355,397,446,-1,27,107,25,-1,104,72,106,-1,173,258,109,-1,334,184,327,-1,5,17,41,-1,366,310,386,-1,398,427,471,-1,398,385,427,-1,426,400,484,-1,344,316,374,-1,298,313,367,-1,437,472,457,-1,457,393,437,-1,394,472,433,-1,394,439,472,-1,289,337,264,-1,264,140,289,-1,138,192,170,-1,170,150,138,-1,123,166,138,-1,138,108,123,-1,213,326,225,-1,213,242,326,-1,220,128,334,-1,128,184,334,-1,112,75,136,-1,72,40,2,-1,2,68,72,-1,75,79,136,-1,35,8,78,-1,35,23,8,-1,57,79,28,-1,79,34,28,-1,95,167,33,-1,167,13,33,-1,56,113,121,-1,134,152,121,-1,161,155,121,-1,115,71,121,-1,195,147,256,-1,256,279,195,-1,402,367,407,-1,20,46,80,-1,122,57,110,-1,28,156,55,-1,202,306,288,-1,202,301,306,-1,307,302,167,-1,329,211,347,-1,329,160,211,-1,445,437,444,-1,319,260,320,-1,68,148,117,-1,28,158,156,-1,385,398,313,-1,83,109,145,-1,83,60,109,-1,84,83,153,-1,83,145,153,-1,60,105,85,-1,60,83,105,-1,399,425,429,-1,25,107,154,-1,448,510,499,-1,232,222,297,-1,523,496,497,-1,496,462,497,-1,304,325,229,-1,325,274,229,-1,282,346,351,-1,17,14,87,-1,94,93,11,-1,93,18,11,-1,66,26,31,-1,26,36,31,-1,30,12,43,-1,12,77,43,-1,452,476,459,-1,455,422,469,-1,469,494,455,-1,323,291,338,-1,323,322,291,-1,330,369,372,-1,356,405,350,-1,303,406,413,-1,222,267,285,-1,259,254,200,-1,200,254,201,-1,201,129,200,-1,376,408,363,-1,129,177,42,-1,129,201,177,-1,338,384,422,-1,452,459,405,-1,479,460,421,-1,1,12,0,-1,372,375,216,-1,127,179,342,-1,88,182,92,-1,88,216,182,-1,26,6,30,-1,26,21,6,-1,182,216,375,-1,165,219,303,-1,219,406,303,-1,15,1,0,-1,15,22,1,-1,346,325,395,-1,467,506,485,-1,91,125,27,-1,297,159,187,-1,335,417,312,-1,335,447,417,-1,297,222,285,-1,25,42,27,-1,272,126,182,-1,382,342,415,-1,342,383,415,-1,15,6,45,-1,15,0,6,-1,324,247,318,-1,318,349,324,-1,131,177,243,-1,177,253,243,-1,236,186,294,-1,294,281,236,-1,397,463,491,-1,450,434,446,-1,178,190,253,-1,253,257,178,-1,318,303,349,-1,395,486,346,-1,395,499,486,-1,164,133,223,-1,164,118,133,-1,473,443,481,-1,473,429,443,-1,416,425,434,-1,429,458,399,-1,151,226,295,-1,463,455,491,-1,455,494,491,-1,397,300,328,-1,413,349,303,-1,500,481,443,-1,443,460,500,-1,429,473,458,-1,417,339,365,-1,417,414,339,-1,528,523,499,-1,485,430,467,-1,31,19,38,-1,29,73,21,-1,90,219,100,-1,90,180,219,-1,65,69,76,-1,24,10,1,-1,77,132,44,-1,5,7,17,-1,5,3,7,-1,154,129,25,-1,227,240,274,-1,240,229,274,-1,248,262,207,-1,248,292,262,-1,436,277,419,-1,436,317,277,-1,517,392,512,-1,517,419,392,-1,492,370,351,-1,499,395,448,-1,27,125,119,-1,321,339,297,-1,297,169,159,-1,444,437,432,-1,507,471,464,-1,471,427,464,-1,331,231,266,-1,266,341,331,-1,319,290,260,-1,260,298,265,-1,308,319,320,-1,195,115,155,-1,195,173,115,-1,2,80,46,-1,2,13,80,-1,71,115,173,-1,173,109,71,-1,70,75,105,-1,70,23,75,-1,8,48,9,-1,9,4,8,-1,183,53,143,-1,183,78,53,-1,108,211,160,-1,108,138,211,-1,203,347,241,-1,203,348,347,-1,317,456,336,-1,317,436,456,-1,472,439,483,-1,457,474,465,-1,457,483,474,-1,389,465,404,-1,432,437,393,-1,242,234,270,-1,213,225,166,-1,172,220,233,-1,220,172,123,-1,123,128,220,-1,470,475,515,-1,475,514,515,-1,377,264,337,-1,488,453,423,-1,508,498,487,-1,331,341,393,-1,341,432,393,-1,457,472,483,-1,394,433,396,-1,359,378,373,-1,373,345,359,-1,493,505,490,-1,505,503,490,-1,353,336,451,-1,336,456,451,-1,505,516,503,-1,516,519,503,-1,241,347,211,-1,183,301,202,-1,211,150,241,-1,211,138,150,-1,188,215,228,-1,183,202,78,-1,202,35,78,-1,50,9,97,-1,50,3,9,-1,51,142,34,-1,51,163,142,-1,112,105,75,-1,144,84,153,-1,144,98,84,-1,171,299,332,-1,171,141,299,-1,333,360,343,-1,333,314,360,-1,314,389,360,-1,354,386,310,-1,354,411,386,-1,244,321,297,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmet5_Geo_5_541_normalIndex_2()
		{
			int[] value = {285,169,297,-1,512,380,495,-1,512,392,380,-1,317,206,277,-1,317,221,206,-1,245,154,107,-1,245,240,154,-1,200,129,154,-1,154,181,200,-1,246,275,283,-1,273,194,199,-1,273,251,194,-1,77,16,43,-1,77,44,16,-1,294,196,178,-1,178,257,294,-1,24,52,10,-1,24,62,52,-1,90,76,74,-1,74,89,90,-1,165,100,219,-1,6,21,45,-1,21,73,45,-1,7,38,19,-1,7,37,38,-1,126,82,182,-1,82,92,182,-1,421,476,479,-1,409,373,461,-1,461,477,409,-1,365,312,417,-1,365,238,312,-1,356,452,405,-1,356,409,452,-1,363,335,223,-1,406,388,413,-1,388,440,413,-1,311,355,415,-1,151,295,216,-1,295,372,216,-1,372,350,330,-1,503,519,438,-1,519,461,438,-1,373,356,345,-1,373,409,356,-1,291,384,338,-1,425,446,434,-1,425,420,446,-1,200,209,259,-1,200,181,209,-1,102,86,63,-1,224,303,243,-1,303,318,243,-1,469,422,384,-1,236,214,186,-1,214,114,186,-1,257,281,294,-1,247,131,243,-1,243,318,247,-1,11,43,16,-1,11,36,43,-1,92,82,29,-1,54,91,27,-1,312,238,164,-1,212,245,249,-1,249,210,212,-1,391,430,485,-1,297,187,244,-1,485,431,391,-1,523,528,496,-1,127,67,179,-1,127,59,67,-1,182,375,369,-1,369,272,182,-1,311,189,272,-1,272,369,311,-1,29,66,38,-1,38,92,29,-1,372,369,375,-1,37,88,38,-1,452,479,476,-1,322,300,369,-1,300,311,369,-1,384,459,469,-1,384,405,459,-1,421,450,476,-1,455,463,323,-1,463,328,323,-1,397,328,463,-1,131,39,42,-1,42,177,131,-1,339,321,365,-1,415,383,311,-1,322,330,291,-1,322,369,330,-1,101,132,77,-1,77,12,101,-1,38,66,31,-1,10,124,101,-1,364,278,232,-1,232,339,364,-1,520,523,497,-1,297,339,232,-1,499,510,528,-1,129,42,25,-1,27,119,107,-1,117,60,106,-1,60,85,106,-1,130,152,134,-1,134,148,130,-1,358,400,426,-1,110,57,81,-1,141,252,299,-1,141,168,252,-1,379,334,327,-1,310,366,313,-1,445,396,433,-1,237,167,95,-1,237,307,167,-1,268,235,80,-1,218,228,348,-1,228,353,348,-1,218,348,203,-1,106,103,104,-1,80,147,20,-1,258,173,276,-1,147,235,256,-1,147,80,235,-1,155,115,121,-1,152,161,121,-1,113,134,121,-1,71,56,121,-1,46,20,130,-1,130,148,46,-1,13,167,80,-1,28,55,47,-1,104,103,110,-1,103,122,110,-1,2,46,68,-1,128,116,176,-1,176,184,128,-1,163,202,288,-1,172,213,166,-1,166,123,172,-1,301,191,230,-1,242,213,172,-1,266,426,341,-1,266,358,426,-1,315,176,264,-1,313,298,260,-1,433,472,437,-1,331,314,231,-1,331,389,314,-1,437,445,433,-1,320,260,265,-1,366,385,313,-1,191,301,183,-1,465,389,457,-1,105,112,85,-1,195,149,147,-1,68,46,148,-1,137,255,226,-1,153,263,144,-1,153,296,263,-1,88,92,38,-1,405,384,350,-1,255,144,263,-1,144,255,137,-1,53,8,4,-1,53,78,8,-1,398,480,407,-1,398,471,480,-1,185,183,143,-1,185,191,183,-1,135,205,193,-1,205,135,146,-1,427,411,464,-1,386,411,427,-1,441,482,502,-1,482,441,428,-1,403,390,371,-1,403,442,390,-1,289,160,329,-1,160,289,140,-1,320,231,314,-1,231,320,265,-1,331,457,389,-1,393,457,331,-1,290,235,310,-1,290,256,235,-1,298,358,266,-1,298,367,358,-1,487,444,432,-1,444,487,498,-1,432,426,487,-1,432,341,426,-1,396,488,423,-1,396,445,488,-1,192,326,293,-1,326,192,225,-1,284,198,170,-1,284,306,198,-1,116,264,176,-1,116,140,264,-1,252,233,316,-1,252,234,233,-1,309,168,156,-1,168,309,270,-1,142,288,271,-1,142,163,288,-1,122,112,136,-1,103,112,122,-1,47,57,28,-1,47,81,57,-1,149,20,147,-1,149,130,20,-1,276,195,279,-1,195,276,173,-1,333,276,308,-1,333,258,276,-1,218,157,175,-1,218,203,157,-1,175,228,218,-1,175,188,228,-1,327,401,410,-1,315,401,327,-1,116,123,108,-1,128,123,116,-1,377,468,401,-1,377,453,468,-1,302,80,167,-1,302,268,80,-1,95,171,237,-1,171,95,47,-1,498,509,518,-1,498,508,509,-1,334,374,316,-1,374,334,379,-1,108,140,116,-1,108,160,140,-1,418,368,404,-1,418,381,368,-1,378,461,373,-1,438,461,378,-1,400,367,402,-1,358,367,400,-1,161,130,149,-1,161,152,130,-1,68,106,72,-1,68,117,106,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmet5_Geo_5_541_normalIndex_3()
		{
			int[] value = {84,48,70,-1,84,98,48,-1,414,364,339,-1,454,364,414,-1,454,435,466,-1,454,414,435,-1,197,232,278,-1,197,222,232,-1,212,261,305,-1,261,212,210,-1,114,16,44,-1,114,96,16,-1,44,186,114,-1,44,132,186,-1,244,139,238,-1,244,187,139,-1,139,159,91,-1,139,187,159,-1,363,324,376,-1,324,363,223,-1,450,494,476,-1,450,491,494,-1,291,350,384,-1,291,330,350,-1,491,446,397,-1,446,491,450,-1,208,342,179,-1,208,383,342,-1,383,189,311,-1,189,383,208,-1,67,49,32,-1,59,49,67,-1,52,124,10,-1,196,124,52,-1,86,190,178,-1,190,86,102,-1,382,180,162,-1,180,382,388,-1,224,165,303,-1,224,120,165,-1,304,449,448,-1,449,304,305,-1,391,261,197,-1,261,391,431,-1,466,506,454,-1,522,506,466,-1,278,391,197,-1,430,391,278,-1,267,210,249,-1,267,222,210,-1,504,506,522,-1,504,485,506,-1,139,164,238,-1,164,139,118,-1,275,250,273,-1,250,275,246,-1,94,204,199,-1,94,96,204,-1,67,58,99,-1,67,32,58,-1,387,413,440,-1,387,376,413,-1,86,62,63,-1,86,52,62,-1,281,259,236,-1,281,254,259,-1,239,181,227,-1,181,239,209,-1,425,408,420,-1,425,399,408,-1,96,214,204,-1,214,96,114,-1,194,87,93,-1,194,174,87,-1,41,146,135,-1,146,41,17,-1,368,343,360,-1,368,352,343,-1,378,361,381,-1,378,359,361,-1,495,370,492,-1,495,380,370,-1,248,287,292,-1,248,250,287,-1,479,500,460,-1,500,479,501,-1,521,461,519,-1,521,477,461,-1,527,489,526,-1,527,501,489,-1,74,69,61,-1,74,76,69,-1,505,436,516,-1,436,505,456,-1,190,243,253,-1,243,190,224,-1,295,350,372,-1,356,350,295,-1,421,443,416,-1,421,460,443,-1,363,399,335,-1,408,399,363,-1,458,335,399,-1,458,447,335,-1,409,489,452,-1,409,477,489,-1,524,501,527,-1,501,524,500,-1,497,458,473,-1,458,497,462,-1,512,521,517,-1,521,512,526,-1,527,492,524,-1,527,495,492,-1,88,151,216,-1,88,37,151,-1,50,7,3,-1,50,37,7,-1,82,111,64,-1,82,126,111,-1,111,208,99,-1,111,189,208,-1,73,58,45,-1,73,64,58,-1,89,127,162,-1,59,127,89,-1,133,54,39,-1,118,54,133,-1,62,61,69,-1,61,62,24,-1,63,69,65,-1,63,62,69,-1,253,201,257,-1,253,177,201,-1,257,254,281,-1,254,257,201,-1,283,204,214,-1,283,275,204,-1,36,18,31,-1,11,18,36,-1,174,251,217,-1,194,251,174,-1,207,205,217,-1,205,207,206,-1,250,251,273,-1,250,248,251,-1,246,259,209,-1,246,283,259,-1,240,212,229,-1,212,240,245,-1,269,209,239,-1,269,246,209,-1,351,287,269,-1,351,370,287,-1,277,392,419,-1,277,262,392,-1,431,504,449,-1,504,431,485,-1,484,487,426,-1,484,508,487,-1,255,345,226,-1,359,345,255,-1,361,296,352,-1,361,263,296,-1,360,404,368,-1,360,389,404,-1,268,362,354,-1,268,302,362,-1,340,307,237,-1,307,340,357,-1,40,13,2,-1,33,13,40,-1,137,98,144,-1,137,97,98,-1,296,145,280,-1,296,153,145,-1,113,60,117,-1,113,56,60,-1,112,106,85,-1,112,103,106,-1,202,51,35,-1,202,163,51,-1,142,28,34,-1,142,158,28,-1,288,284,271,-1,288,306,284,-1,185,221,215,-1,193,221,185,-1,203,150,157,-1,203,241,150,-1,138,225,192,-1,225,138,166,-1,336,228,215,-1,336,353,228,-1,329,396,289,-1,329,394,396,-1,493,456,505,-1,451,456,493,-1,503,418,490,-1,438,418,503,-1,451,348,353,-1,348,451,424,-1,474,451,493,-1,424,451,474,-1,347,424,439,-1,347,348,424,-1,518,488,498,-1,518,511,488,-1,377,423,453,-1,337,423,377,-1,513,518,509,-1,513,525,518,-1,514,468,511,-1,514,475,468,-1,264,401,315,-1,264,377,401,-1,470,410,475,-1,412,410,470,-1,514,529,515,-1,514,525,529,-1,411,362,441,-1,362,411,354,-1,515,502,482,-1,515,529,502,-1,442,412,470,-1,403,412,442,-1,332,344,371,-1,299,344,332,-1,390,357,340,-1,390,428,357,-1,362,428,441,-1,428,362,357,-1,340,371,390,-1,332,371,340,-1,234,172,233,-1,234,242,172,-1,270,326,242,-1,326,270,309,-1,379,403,374,-1,379,412,403,-1,482,470,515,-1,442,470,482,-1,507,502,529,-1,502,507,464,-1,507,525,513,-1,529,525,507,-1,410,379,327,-1,379,410,412,-1,468,410,401,-1,468,475,410,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmet5_Geo_5_541_normalIndex_4()
		{
			int[] value = {511,525,514,-1,518,525,511,-1,490,404,465,-1,418,404,490,-1,474,439,424,-1,474,483,439,-1,493,465,474,-1,490,465,493,-1,215,317,336,-1,221,317,215,-1,170,157,150,-1,198,157,170,-1,293,271,284,-1,271,293,286,-1,5,9,3,-1,9,5,4,-1,136,57,122,-1,136,79,57,-1,8,70,48,-1,8,23,70,-1,148,113,117,-1,148,134,113,-1,109,280,145,-1,258,280,109,-1,50,137,226,-1,50,97,137,-1,110,33,40,-1,110,81,33,-1,332,237,171,-1,237,332,340,-1,302,357,362,-1,302,307,357,-1,308,279,319,-1,276,279,308,-1,265,266,231,-1,265,298,266,-1,319,256,290,-1,279,256,319,-1,280,352,296,-1,280,343,352,-1,359,263,361,-1,359,255,263,-1,258,343,280,-1,258,333,343,-1,513,471,507,-1,513,480,471,-1,310,268,354,-1,310,235,268,-1,125,249,119,-1,125,267,249,-1,449,510,448,-1,510,449,504,-1,492,346,486,-1,492,351,346,-1,517,436,419,-1,516,436,517,-1,206,262,277,-1,206,207,262,-1,262,380,392,-1,380,262,292,-1,250,269,287,-1,250,246,269,-1,239,351,269,-1,239,282,351,-1,181,240,227,-1,181,154,240,-1,248,217,251,-1,217,248,207,-1,193,206,221,-1,193,205,206,-1,14,7,19,-1,7,14,17,-1,31,14,19,-1,14,31,18,-1,283,236,259,-1,283,214,236,-1,65,102,63,-1,65,120,102,-1,1,61,24,-1,1,22,61,-1,100,120,65,-1,165,120,100,-1,180,89,162,-1,89,180,90,-1,49,89,74,-1,49,59,89,-1,99,64,111,-1,64,99,58,-1,126,189,111,-1,272,189,126,-1,29,64,73,-1,29,82,64,-1,226,37,50,-1,226,151,37,-1,504,528,510,-1,528,504,522,-1,520,492,486,-1,524,492,520,-1,526,495,527,-1,526,512,495,-1,519,517,521,-1,519,516,517,-1,435,458,462,-1,447,458,435,-1,481,524,520,-1,500,524,481,-1,312,223,335,-1,312,164,223,-1,388,415,440,-1,415,388,382,-1,356,226,345,-1,356,295,226,-1,42,54,27,-1,54,42,39,-1,90,65,76,-1,90,100,65,-1,74,22,49,-1,74,61,22,-1,477,526,489,-1,521,526,477,-1,501,452,489,-1,452,501,479,-1,370,292,287,-1,380,292,370,-1,381,352,368,-1,381,361,352,-1,135,53,41,-1,135,143,53,-1,174,17,87,-1,174,146,17,-1,199,93,94,-1,199,194,93,-1,416,450,421,-1,416,434,450,-1,425,443,429,-1,425,416,443,-1,497,481,520,-1,497,473,481,-1,520,499,523,-1,499,520,486,-1,227,282,239,-1,227,274,282,-1,196,186,124,-1,196,294,186,-1,328,322,323,-1,300,322,328,-1,413,324,349,-1,376,324,413,-1,440,355,387,-1,355,440,415,-1,45,32,15,-1,32,45,58,-1,99,179,67,-1,179,99,208,-1,273,204,275,-1,273,199,204,-1,119,245,107,-1,245,119,249,-1,414,447,435,-1,447,414,417,-1,54,139,91,-1,54,118,139,-1,467,278,364,-1,430,278,467,-1,496,522,466,-1,528,522,496,-1,454,467,364,-1,506,467,454,-1,305,431,449,-1,305,261,431,-1,304,395,325,-1,448,395,304,-1,10,12,1,-1,12,10,101,-1,342,162,127,-1,342,382,162,-1,219,388,406,-1,219,180,388,-1,102,224,190,-1,102,120,224,-1,178,52,86,-1,178,196,52,-1,22,32,49,-1,22,15,32,-1,66,21,26,-1,21,66,29,-1,0,30,6,-1,0,12,30,-1,300,355,311,-1,397,355,300,-1,133,324,223,-1,133,247,324,-1,131,133,39,-1,131,247,133,-1,420,376,387,-1,420,408,376,-1,365,244,238,-1,365,321,244,-1,91,169,125,-1,91,159,169,-1,169,267,125,-1,169,285,267,-1,446,387,355,-1,420,387,446,-1,338,455,323,-1,455,338,422,-1,469,476,494,-1,476,469,459,-1,43,26,30,-1,26,43,36,-1,93,14,18,-1,93,87,14,-1,11,96,94,-1,96,11,16,-1,132,124,186,-1,124,132,101,-1,346,274,325,-1,346,282,274,-1,229,305,304,-1,305,229,212,-1,197,210,222,-1,197,261,210,-1,466,462,496,-1,466,435,462,-1,98,9,48,-1,98,97,9,-1,83,70,105,-1,83,84,70,-1,155,149,195,-1,155,161,149,-1,60,71,109,-1,60,56,71,-1,313,407,367,-1,398,407,313,-1,438,381,418,-1,438,378,381,-1,326,286,293,-1,326,309,286,-1,299,316,344,-1,299,252,316,-1,215,191,185,-1,191,215,188,-1,478,508,484,-1,508,478,509,-1,141,47,55,-1,141,171,47,-1,156,141,55,-1,168,141,156,-1,453,511,468,-1,453,488,511,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmet5_Geo_5_541_normalIndex_5()
		{
			int[] value = {184,315,327,-1,176,315,184,-1,230,188,175,-1,230,191,188,-1,175,198,230,-1,175,157,198,-1,480,509,478,-1,509,480,513,-1,308,314,333,-1,314,308,320,-1,51,79,75,-1,51,34,79,-1,95,81,47,-1,95,33,81,-1,35,75,23,-1,75,35,51,-1,40,104,110,-1,104,40,72,-1,156,286,309,-1,156,158,286,-1,158,271,286,-1,158,142,271,-1,270,252,168,-1,252,270,234,-1,316,220,334,-1,316,233,220,-1,230,306,301,-1,306,230,198,-1,293,170,192,-1,293,284,170,-1,488,444,498,-1,444,488,445,-1,423,289,396,-1,289,423,337,-1,260,310,313,-1,260,290,310,-1,394,347,439,-1,394,329,347,-1,374,371,344,-1,374,403,371,-1,428,442,482,-1,442,428,390,-1,441,464,411,-1,441,502,464,-1,217,146,174,-1,217,205,146,-1,143,193,185,-1,193,143,135,-1,484,402,478,-1,400,402,484,-1,385,386,427,-1,385,366,386,-1,407,478,402,-1,407,480,478,-1,41,4,5,-1,41,53,4,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar1c_Geo_5_547_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,17,28,-1,29,30,31,-1,32,33,34,-1,26,25,35,-1,36,24,17,-1,37,38,39,-1,40,41,42,-1,43,21,23,-1,44,23,1,-1,45,46,47,-1,48,49,50,-1,47,51,52,-1,53,54,55,-1,48,50,56,-1,57,58,59,-1,45,60,61,-1,62,63,64,-1,62,60,55,-1,65,66,67,-1,68,66,69,-1,53,70,54,-1,71,0,72,-1,73,70,74,-1,48,75,49,-1,76,69,77,-1,50,78,56,-1,79,80,81,-1,81,82,83,-1,84,85,29,-1,86,84,33,-1,85,84,86,-1,44,1,0,-1,87,88,32,-1,89,90,91,-1,92,93,94,-1,95,38,37,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,18,20,6,-1,87,114,115,-1,19,116,117,-1,118,119,120,-1,121,118,122,-1,123,115,114,-1,124,125,126,-1,127,128,129,-1,130,131,121,-1,124,132,125,-1,121,131,133,-1,120,119,19,-1,119,7,6,-1,134,18,135,-1,136,117,111,-1,119,20,19,-1,137,103,102,-1,100,138,40,-1,99,139,95,-1,37,92,94,-1,140,10,14,-1,87,141,88,-1,142,143,34,-1,26,28,24,-1,24,36,80,-1,36,16,80,-1,83,42,41,-1,79,144,145,-1,56,78,146,-1,76,147,68,-1,77,148,76,-1,149,150,1,-1,146,138,151,-1,148,62,54,-1,64,152,61,-1,45,47,52,-1,60,153,55,-1,99,67,100,-1,76,48,56,-1,154,155,51,-1,155,156,157,-1,70,73,50,-1,52,158,55,-1,149,1,23,-1,101,40,42,-1,41,144,159,-1,38,160,161,-1,16,36,17,-1,16,15,82,-1,132,30,85,-1,35,25,34,-1,162,163,164,-1,7,165,166,-1,116,167,112,-1,9,12,10,-1,18,134,167,-1,135,6,8,-1,168,169,50,-1,73,170,168,-1,29,171,35,-1,4,156,5,-1,157,4,3,-1,172,173,174,-1,173,163,162,-1,172,163,173,-1,2,1,150,-1,156,175,5,-1,4,157,156,-1,73,74,170,-1,168,176,169,-1,18,6,135,-1,104,107,177,-1,12,14,10,-1,167,134,178,-1,165,43,166,-1,162,164,179,-1,35,34,33,-1,91,31,180,-1,30,29,85,-1,28,26,171,-1,16,82,81,-1,38,161,39,-1,101,42,181,-1,32,143,142,-1,176,168,149,-1,46,167,47,-1,49,70,50,-1,157,182,155,-1,51,155,182,-1,54,62,55,-1,62,64,60,-1,61,60,64,-1,60,45,153,-1,54,75,148,-1,178,183,47,-1,151,147,146,-1,158,182,53,-1,49,75,70,-1,148,48,76,-1,146,147,56,-1,79,159,144,-1,83,184,42,-1,16,81,80,-1,34,185,142,-1,88,86,32,-1,21,142,22,-1,140,14,89,-1,37,94,95,-1,186,57,97,-1,99,95,59,-1,100,40,101,-1,111,187,136,-1,116,18,167,-1,6,20,119,-1,125,188,141,-1,141,115,125,-1,133,123,121,-1,124,189,132,-1,130,190,131,-1,127,191,128,-1,131,126,133,-1,123,133,115,-1,121,123,118,-1,118,192,119,-1,117,193,19,-1,115,141,87,-1,19,18,116,-1,111,113,109,-1,108,194,109,-1,107,195,105,-1,102,104,177,-1,98,196,96,-1,95,139,38,-1,92,197,93,-1,89,14,90,-1,32,142,87,-1,86,188,85,-1,33,32,86,-1,28,171,29,-1,28,17,24,-1,81,159,79,-1,185,24,80,-1,56,147,76,-1,76,68,69,-1,48,148,75,-1,5,71,72,-1,70,75,54,-1,66,198,69,-1,66,151,67,-1,69,63,77,-1,178,47,167,-1,153,52,55,-1,58,99,59,-1,157,53,182,-1,158,53,55,-1,50,73,168,-1,45,52,153,-1,142,21,87,-1,44,43,23,-1,40,144,41,-1,37,39,199,-1,26,35,171,-1,143,32,34,-1,31,28,29,-1,27,28,31,-1,31,200,27,-1,15,17,27,-1,201,9,11,-1,135,8,134,-1,8,178,134,-1,5,72,3,-1,0,2,72,-1,183,71,175,-1,5,175,71,-1,74,202,170,-1,11,203,201,-1,204,203,11,-1,93,205,196,-1,206,205,93,-1,195,207,105,-1,208,207,195,-1,209,128,210,-1,209,211,128,-1,212,213,214,-1,213,212,215,-1,216,217,218,-1,216,219,217,-1,202,150,170,-1,202,2,150,-1,202,157,3,-1,202,74,157,-1,175,154,183,-1,175,220,154,-1,221,176,22,-1,176,221,169,-1,177,106,222,-1,107,106,177,-1,160,223,161,-1,160,184,223,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar1c_Geo_5_547_coordIndex_2()
		{
			int[] value = {99,181,139,-1,99,101,181,-1,224,122,225,-1,226,122,224,-1,227,64,63,-1,152,64,227,-1,154,47,183,-1,51,47,154,-1,185,22,142,-1,185,221,22,-1,185,25,24,-1,185,34,25,-1,228,229,180,-1,229,228,230,-1,163,140,164,-1,231,140,163,-1,184,181,42,-1,184,160,181,-1,9,199,12,-1,9,232,199,-1,57,233,58,-1,233,57,186,-1,227,234,235,-1,198,234,227,-1,236,137,102,-1,236,235,137,-1,113,45,237,-1,45,113,46,-1,222,102,177,-1,222,238,102,-1,187,239,136,-1,240,239,187,-1,112,46,113,-1,112,167,46,-1,124,131,241,-1,124,126,131,-1,242,136,239,-1,243,136,242,-1,244,243,242,-1,244,224,243,-1,121,226,130,-1,226,121,122,-1,245,130,226,-1,245,246,130,-1,247,248,190,-1,247,191,248,-1,191,210,128,-1,191,247,210,-1,212,245,244,-1,249,245,212,-1,248,250,241,-1,248,251,250,-1,242,212,244,-1,212,242,215,-1,118,225,122,-1,225,118,120,-1,239,215,242,-1,239,252,215,-1,189,30,132,-1,30,189,228,-1,116,111,117,-1,116,112,111,-1,237,109,113,-1,110,109,237,-1,238,108,110,-1,238,222,108,-1,253,152,236,-1,253,61,152,-1,233,235,234,-1,233,137,235,-1,58,234,65,-1,234,58,233,-1,58,67,99,-1,65,67,58,-1,9,254,232,-1,9,201,254,-1,255,161,223,-1,256,161,255,-1,200,91,90,-1,91,200,31,-1,89,180,229,-1,89,91,180,-1,188,88,141,-1,188,86,88,-1,80,221,185,-1,80,79,221,-1,40,146,144,-1,40,138,146,-1,0,178,166,-1,0,183,178,-1,0,71,183,-1,227,69,198,-1,63,69,227,-1,182,52,51,-1,182,158,52,-1,244,226,224,-1,245,226,244,-1,92,199,232,-1,92,37,199,-1,191,251,248,-1,191,127,251,-1,13,90,14,-1,13,256,90,-1,222,257,108,-1,106,257,222,-1,155,175,156,-1,154,175,155,-1,220,175,154,-1,252,213,215,-1,258,213,252,-1,259,210,260,-1,259,209,210,-1,207,217,105,-1,207,218,217,-1,196,261,96,-1,205,261,196,-1,201,262,254,-1,203,262,201,-1,263,11,231,-1,263,204,11,-1,197,206,93,-1,264,206,197,-1,265,208,195,-1,266,208,265,-1,211,129,128,-1,211,267,129,-1,249,214,268,-1,214,249,212,-1,219,269,270,-1,216,269,219,-1,2,3,72,-1,2,202,3,-1,194,240,187,-1,271,240,194,-1,27,255,15,-1,255,27,200,-1,82,184,83,-1,184,82,223,-1,87,43,165,-1,43,87,21,-1,97,59,98,-1,97,57,59,-1,146,145,144,-1,146,78,145,-1,147,66,68,-1,147,151,66,-1,169,78,50,-1,169,145,78,-1,15,223,82,-1,15,255,223,-1,29,33,84,-1,29,35,33,-1,230,189,250,-1,230,228,189,-1,229,179,164,-1,179,229,230,-1,139,160,38,-1,160,139,181,-1,13,199,39,-1,12,199,13,-1,94,196,98,-1,94,93,196,-1,96,104,97,-1,265,104,96,-1,265,107,104,-1,107,265,195,-1,152,235,236,-1,152,227,235,-1,61,237,45,-1,253,237,61,-1,106,217,257,-1,106,105,217,-1,257,219,271,-1,257,217,219,-1,252,240,270,-1,252,239,240,-1,87,192,114,-1,87,165,192,-1,117,243,193,-1,136,243,117,-1,118,114,192,-1,118,123,114,-1,224,193,243,-1,224,225,193,-1,115,126,125,-1,126,115,133,-1,250,179,230,-1,251,179,250,-1,260,247,246,-1,210,247,260,-1,129,162,127,-1,173,162,129,-1,190,246,247,-1,246,190,130,-1,190,241,131,-1,248,241,190,-1,241,189,124,-1,241,250,189,-1,225,19,193,-1,225,120,19,-1,132,188,125,-1,132,85,188,-1,7,192,165,-1,192,7,119,-1,109,187,111,-1,187,109,194,-1,271,270,240,-1,270,271,219,-1,110,253,238,-1,110,237,253,-1,238,236,102,-1,253,236,238,-1,186,137,233,-1,103,137,186,-1,66,234,198,-1,234,66,65,-1,97,103,186,-1,104,103,97,-1,98,95,94,-1,59,95,98,-1,39,256,13,-1,39,161,256,-1,231,10,140,-1,10,231,11,-1,89,164,140,-1,229,164,89,-1,30,180,31,-1,30,228,180,-1,43,0,166,-1,0,43,44,-1,221,145,169,-1,221,79,145,-1,22,149,23,-1,149,22,176,-1,148,63,62,-1,148,77,63,-1,67,138,100,-1,67,151,138,-1,149,170,150,-1,168,170,149,-1,249,246,245,-1,249,260,246,-1,41,81,83,-1,41,159,81,-1,232,197,92,-1,197,232,254,-1,127,179,251,-1,127,162,179,-1,8,166,178,-1,8,7,166,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar1c_Geo_5_547_coordIndex_3()
		{
			int[] value = {200,256,255,-1,256,200,90,-1,108,271,194,-1,257,271,108,-1,53,74,70,-1,53,157,74,-1,270,258,252,-1,269,258,270,-1,268,260,249,-1,268,259,260,-1,267,173,129,-1,267,174,173,-1,261,265,96,-1,261,266,265,-1,254,264,197,-1,262,264,254,-1,172,231,163,-1,172,263,231,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar1c_Geo_5_547_normalIndex_1()
		{
			int[] value = {215,230,240,-1,212,185,225,-1,105,87,124,-1,216,159,164,-1,211,206,157,-1,112,57,49,-1,43,23,32,-1,168,195,203,-1,96,167,147,-1,111,49,125,-1,191,182,178,-1,199,186,161,-1,147,167,187,-1,46,96,49,-1,265,270,245,-1,210,160,234,-1,184,168,203,-1,219,203,230,-1,98,85,162,-1,73,90,102,-1,162,213,158,-1,126,103,116,-1,73,102,48,-1,262,264,271,-1,98,75,94,-1,55,132,89,-1,55,75,116,-1,256,247,259,-1,163,247,183,-1,126,122,103,-1,269,215,223,-1,155,122,156,-1,73,47,90,-1,79,183,83,-1,102,51,48,-1,54,62,92,-1,92,166,192,-1,196,174,191,-1,179,196,186,-1,174,196,179,-1,219,230,215,-1,133,205,199,-1,154,173,171,-1,251,252,257,-1,268,270,265,-1,243,254,258,-1,267,255,248,-1,131,202,204,-1,100,93,129,-1,78,71,72,-1,53,45,63,-1,43,32,105,-1,133,41,39,-1,23,38,31,-1,30,34,17,-1,16,30,8,-1,29,39,41,-1,52,76,25,-1,109,61,119,-1,10,22,16,-1,52,146,76,-1,16,22,18,-1,17,34,23,-1,34,87,105,-1,59,43,65,-1,35,31,53,-1,34,32,23,-1,200,202,131,-1,255,222,210,-1,267,263,268,-1,265,251,257,-1,149,159,157,-1,133,106,205,-1,190,165,161,-1,147,125,96,-1,96,46,62,-1,46,57,62,-1,192,234,160,-1,54,108,50,-1,48,51,117,-1,79,152,163,-1,83,44,79,-1,194,221,230,-1,117,222,236,-1,44,55,103,-1,89,128,94,-1,98,162,158,-1,75,114,116,-1,267,259,255,-1,79,73,48,-1,226,214,213,-1,214,207,140,-1,122,155,102,-1,158,135,116,-1,194,230,203,-1,248,210,234,-1,160,108,91,-1,270,266,250,-1,57,46,49,-1,57,112,166,-1,146,182,174,-1,187,167,161,-1,144,177,180,-1,87,121,136,-1,38,66,45,-1,216,211,159,-1,43,59,66,-1,65,105,124,-1,169,120,102,-1,155,201,169,-1,191,153,187,-1,185,207,225,-1,140,185,212,-1,170,138,134,-1,138,177,144,-1,170,177,138,-1,240,230,221,-1,207,237,225,-1,185,140,207,-1,155,156,201,-1,169,193,120,-1,43,105,65,-1,204,129,115,-1,211,157,159,-1,66,59,130,-1,121,184,136,-1,144,180,143,-1,187,161,186,-1,171,178,176,-1,182,191,174,-1,125,147,153,-1,57,166,92,-1,270,250,245,-1,248,234,261,-1,199,165,190,-1,193,169,194,-1,85,66,162,-1,90,122,102,-1,140,137,214,-1,213,214,137,-1,103,55,116,-1,55,89,75,-1,94,75,89,-1,75,98,114,-1,103,47,44,-1,130,217,162,-1,236,152,117,-1,135,137,126,-1,90,47,122,-1,44,73,79,-1,117,152,48,-1,54,91,108,-1,192,260,234,-1,57,92,62,-1,161,127,190,-1,205,179,199,-1,168,190,195,-1,149,157,154,-1,265,257,268,-1,242,262,254,-1,267,268,271,-1,255,210,248,-1,53,67,35,-1,38,43,66,-1,105,32,34,-1,76,110,106,-1,106,39,76,-1,18,29,16,-1,52,113,146,-1,10,24,22,-1,109,56,61,-1,22,25,18,-1,29,18,39,-1,16,29,30,-1,30,60,34,-1,31,7,23,-1,39,106,133,-1,23,43,38,-1,53,63,71,-1,78,81,71,-1,129,142,100,-1,131,204,115,-1,258,246,243,-1,268,263,270,-1,251,239,252,-1,154,157,173,-1,199,190,133,-1,179,110,174,-1,186,199,179,-1,125,153,191,-1,125,49,96,-1,92,91,54,-1,127,96,62,-1,48,152,79,-1,79,163,183,-1,73,44,47,-1,225,269,223,-1,122,47,103,-1,247,228,183,-1,247,236,259,-1,183,132,83,-1,130,162,66,-1,114,158,116,-1,264,267,271,-1,140,126,137,-1,135,126,116,-1,102,155,169,-1,98,158,114,-1,190,168,133,-1,219,184,203,-1,210,108,160,-1,265,245,241,-1,147,187,153,-1,165,199,161,-1,178,125,191,-1,111,125,178,-1,178,175,111,-1,112,49,111,-1,218,216,164,-1,65,124,59,-1,124,130,59,-1,225,223,212,-1,215,240,223,-1,217,269,237,-1,225,237,269,-1,156,224,201,-1,164,220,218,-1,172,220,164,-1,252,249,246,-1,253,249,252,-1,142,104,100,-1,141,104,142,-1,28,61,27,-1,28,70,61,-1,13,15,11,-1,15,13,9,-1,74,86,84,-1,74,77,86,-1,224,221,201,-1,224,240,221,-1,224,140,212,-1,224,156,140,-1,237,226,217,-1,237,123,226,-1,107,193,195,-1,193,107,120,-1,115,93,88,-1,129,93,115,-1,266,227,250,-1,266,260,227,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar1c_Geo_5_547_normalIndex_2()
		{
			int[] value = {267,261,263,-1,267,248,261,-1,1,8,0,-1,3,8,1,-1,189,89,132,-1,128,89,189,-1,226,162,217,-1,213,162,226,-1,127,195,190,-1,127,107,195,-1,127,167,96,-1,127,161,167,-1,151,181,176,-1,181,151,148,-1,177,149,180,-1,150,149,177,-1,260,261,234,-1,260,266,261,-1,216,241,211,-1,216,232,241,-1,262,233,264,-1,233,262,242,-1,189,229,197,-1,228,229,189,-1,139,200,131,-1,139,197,200,-1,63,98,69,-1,98,63,85,-1,88,131,115,-1,88,95,131,-1,67,33,35,-1,68,33,67,-1,45,85,63,-1,45,66,85,-1,52,22,40,-1,52,25,22,-1,12,35,33,-1,4,35,12,-1,2,4,12,-1,2,1,4,-1,16,3,10,-1,3,16,8,-1,14,10,3,-1,14,21,10,-1,26,42,24,-1,26,56,42,-1,56,27,61,-1,56,26,27,-1,13,14,2,-1,5,14,13,-1,42,99,40,-1,42,101,99,-1,12,13,2,-1,13,12,9,-1,30,0,8,-1,0,30,17,-1,33,9,12,-1,33,37,9,-1,113,182,146,-1,182,113,151,-1,38,53,31,-1,38,45,53,-1,69,71,63,-1,72,71,69,-1,95,78,72,-1,95,88,78,-1,97,128,139,-1,97,94,128,-1,233,197,229,-1,233,200,197,-1,264,229,256,-1,229,264,233,-1,264,259,267,-1,256,259,264,-1,216,231,232,-1,216,218,231,-1,188,250,227,-1,198,250,188,-1,175,171,173,-1,171,175,178,-1,154,176,181,-1,154,171,176,-1,110,205,106,-1,110,179,205,-1,62,107,127,-1,62,54,107,-1,210,117,108,-1,210,222,117,-1,215,130,136,-1,215,217,130,-1,215,269,217,-1,189,183,228,-1,132,183,189,-1,137,158,213,-1,137,135,158,-1,2,3,1,-1,14,3,2,-1,251,241,232,-1,251,265,241,-1,56,101,42,-1,56,109,101,-1,206,173,157,-1,206,198,173,-1,88,82,78,-1,93,82,88,-1,214,237,207,-1,226,237,214,-1,123,237,226,-1,37,15,9,-1,36,15,37,-1,20,27,19,-1,20,28,27,-1,104,86,100,-1,104,84,86,-1,246,238,243,-1,249,238,246,-1,218,235,231,-1,220,235,218,-1,145,164,150,-1,145,172,164,-1,239,253,252,-1,244,253,239,-1,209,141,142,-1,208,141,209,-1,70,119,61,-1,70,118,119,-1,5,11,6,-1,11,5,13,-1,77,58,64,-1,74,58,77,-1,240,212,223,-1,240,224,212,-1,81,68,67,-1,80,68,81,-1,111,188,112,-1,188,111,175,-1,166,260,192,-1,260,166,227,-1,133,184,121,-1,184,133,168,-1,254,271,258,-1,254,262,271,-1,117,50,108,-1,117,51,50,-1,152,247,163,-1,152,236,247,-1,120,51,102,-1,120,50,51,-1,112,227,166,-1,112,188,227,-1,191,186,196,-1,191,187,186,-1,148,113,99,-1,148,151,113,-1,181,143,180,-1,143,181,148,-1,263,266,270,-1,266,263,261,-1,206,241,245,-1,211,241,206,-1,257,246,258,-1,257,252,246,-1,243,204,254,-1,209,204,243,-1,209,129,204,-1,129,209,142,-1,128,197,139,-1,128,189,197,-1,94,69,98,-1,97,69,94,-1,93,86,82,-1,93,100,86,-1,82,77,80,-1,82,86,77,-1,37,68,64,-1,37,33,68,-1,133,60,41,-1,133,121,60,-1,31,4,7,-1,35,4,31,-1,30,41,60,-1,30,29,41,-1,1,7,4,-1,1,0,7,-1,39,25,76,-1,25,39,18,-1,99,143,148,-1,101,143,99,-1,19,26,21,-1,27,26,19,-1,119,144,109,-1,138,144,119,-1,24,21,26,-1,21,24,10,-1,24,40,22,-1,42,40,24,-1,40,113,52,-1,40,99,113,-1,0,23,7,-1,0,17,23,-1,146,110,76,-1,146,174,110,-1,87,60,121,-1,60,87,34,-1,71,67,53,-1,67,71,81,-1,80,64,68,-1,64,80,77,-1,72,97,95,-1,72,69,97,-1,95,139,131,-1,97,139,95,-1,242,200,233,-1,202,200,242,-1,247,229,228,-1,229,247,256,-1,254,202,242,-1,204,202,254,-1,258,268,257,-1,271,268,258,-1,245,198,206,-1,245,250,198,-1,150,159,149,-1,159,150,164,-1,154,180,149,-1,181,180,154,-1,182,176,178,-1,182,151,176,-1,184,215,136,-1,215,184,219,-1,107,50,120,-1,107,54,50,-1,195,194,203,-1,194,195,193,-1,44,132,55,-1,44,83,132,-1,259,222,255,-1,259,236,222,-1,194,201,221,-1,169,201,194,-1,5,21,14,-1,5,19,21,-1,160,92,192,-1,160,91,92,-1,232,239,251,-1,239,232,231,-1,109,143,101,-1,109,144,143,-1,124,136,130,-1,124,87,136,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar1c_Geo_5_547_normalIndex_3()
		{
			int[] value = {175,198,188,-1,198,175,173,-1,78,80,81,-1,82,80,78,-1,126,156,122,-1,126,140,156,-1,64,36,37,-1,58,36,64,-1,6,19,5,-1,6,20,19,-1,118,138,119,-1,118,134,138,-1,238,209,243,-1,238,208,209,-1,231,244,239,-1,235,244,231,-1,170,150,177,-1,170,145,150,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar1r_Geo_5_553_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,15,21,22,-1,23,24,25,-1,26,7,27,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,37,38,39,-1,40,41,42,-1,43,44,37,-1,45,46,47,-1,48,49,50,-1,49,48,51,-1,52,53,54,-1,55,56,57,-1,58,49,59,-1,60,61,8,-1,15,62,63,-1,64,65,66,-1,67,68,69,-1,70,71,72,-1,73,74,75,-1,76,77,78,-1,79,80,81,-1,20,82,83,-1,84,85,39,-1,17,86,87,-1,88,53,89,-1,90,91,92,-1,93,54,53,-1,94,95,96,-1,97,98,99,-1,100,101,102,-1,103,104,105,-1,106,107,108,-1,76,109,110,-1,111,112,46,-1,77,76,110,-1,113,106,108,-1,114,115,116,-1,100,117,101,-1,118,119,120,-1,8,26,60,-1,121,122,123,-1,40,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,10,135,31,-1,136,137,138,-1,68,139,140,-1,141,142,58,-1,83,143,144,-1,78,77,145,-1,146,110,147,-1,148,149,150,-1,65,151,51,-1,59,69,152,-1,153,86,17,-1,142,86,154,-1,57,13,55,-1,13,155,55,-1,48,66,51,-1,156,153,89,-1,54,93,55,-1,157,158,81,-1,159,160,161,-1,161,47,159,-1,162,163,164,-1,164,45,165,-1,45,161,166,-1,167,25,0,-1,168,169,170,-1,119,171,120,-1,172,9,11,-1,173,174,120,-1,175,122,121,-1,126,176,5,-1,127,92,41,-1,41,40,127,-1,39,177,43,-1,178,37,179,-1,180,181,162,-1,182,183,184,-1,185,186,187,-1,188,189,155,-1,190,191,66,-1,66,48,190,-1,192,50,193,-1,193,194,192,-1,188,155,13,-1,195,196,197,-1,178,38,37,-1,126,5,4,-1,121,198,175,-1,173,199,174,-1,11,33,172,-1,119,200,171,-1,119,201,202,-1,119,118,201,-1,170,203,168,-1,0,204,167,-1,165,45,166,-1,45,47,161,-1,163,205,164,-1,156,206,153,-1,55,93,56,-1,86,153,154,-1,59,67,69,-1,51,66,65,-1,148,70,149,-1,146,147,207,-1,145,208,78,-1,144,20,83,-1,18,141,58,-1,140,69,68,-1,31,11,10,-1,134,209,132,-1,80,79,210,-1,126,128,211,-1,40,125,212,-1,176,126,211,-1,8,7,26,-1,118,120,174,-1,100,213,117,-1,116,214,114,-1,113,108,215,-1,77,110,146,-1,76,216,109,-1,107,217,108,-1,104,82,105,-1,102,147,100,-1,99,218,97,-1,95,79,96,-1,53,88,93,-1,92,4,90,-1,124,219,125,-1,89,220,88,-1,221,17,87,-1,84,39,38,-1,20,105,82,-1,76,78,222,-1,73,223,74,-1,70,72,149,-1,64,66,224,-1,67,59,51,-1,63,16,15,-1,60,225,61,-1,59,152,58,-1,155,52,54,-1,49,51,59,-1,155,54,55,-1,226,157,81,-1,44,227,37,-1,42,124,40,-1,39,43,37,-1,228,178,179,-1,31,33,11,-1,229,230,231,-1,232,233,159,-1,27,234,26,-1,95,235,202,-1,95,94,235,-1,23,25,167,-1,15,22,62,-1,15,17,221,-1,12,188,13,-1,6,236,7,-1,3,90,4,-1,2,204,0,-1,237,238,239,-1,238,237,240,-1,241,242,243,-1,241,244,242,-1,245,246,247,-1,245,248,246,-1,249,250,251,-1,250,249,252,-1,253,254,255,-1,253,256,254,-1,254,257,258,-1,259,257,254,-1,260,261,262,-1,263,261,260,-1,264,265,262,-1,266,265,264,-1,2,267,268,-1,269,267,2,-1,270,271,272,-1,270,268,271,-1,175,273,274,-1,273,175,198,-1,48,192,190,-1,192,48,50,-1,275,276,277,-1,275,278,276,-1,279,88,220,-1,279,280,88,-1,281,94,282,-1,94,281,235,-1,102,283,284,-1,102,285,283,-1,201,218,286,-1,218,201,287,-1,288,289,290,-1,288,291,289,-1,182,160,292,-1,182,184,160,-1,197,180,162,-1,196,180,197,-1,232,293,294,-1,232,159,293,-1,177,295,43,-1,177,296,295,-1,219,297,129,-1,219,298,297,-1,176,175,5,-1,176,122,175,-1,299,300,255,-1,299,301,300,-1,252,302,250,-1,252,303,302,-1,248,304,305,-1,306,304,248,-1,307,255,300,-1,253,255,307,-1,171,173,120,-1,308,173,171,-1,309,310,311,-1,309,312,310,-1,313,314,315,-1,313,316,314,-1,9,317,318,-1,9,319,317,-1,9,172,319,-1,36,172,33,-1,36,319,172,-1,320,171,200,-1,320,321,171,-1,322,83,82,-1,83,322,323,-1,118,287,201,-1,118,324,287,-1,168,325,285,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar1r_Geo_5_553_coordIndex_2()
		{
			int[] value = {203,325,168,-1,290,0,25,-1,326,0,290,-1,62,327,63,-1,272,327,62,-1,328,329,6,-1,330,329,328,-1,214,331,332,-1,214,116,331,-1,333,334,123,-1,333,332,334,-1,187,116,131,-1,187,331,116,-1,184,165,166,-1,197,165,184,-1,159,46,293,-1,159,47,46,-1,19,58,152,-1,19,18,58,-1,335,280,279,-1,280,335,336,-1,49,142,154,-1,58,142,49,-1,151,67,51,-1,67,151,337,-1,338,339,340,-1,338,341,339,-1,217,56,342,-1,217,343,56,-1,338,344,341,-1,338,345,344,-1,107,346,347,-1,107,348,346,-1,68,146,207,-1,349,146,68,-1,350,98,213,-1,350,351,98,-1,81,352,226,-1,353,352,81,-1,354,355,356,-1,354,357,355,-1,144,358,359,-1,144,143,358,-1,69,19,152,-1,69,140,19,-1,181,316,360,-1,361,316,181,-1,239,362,303,-1,362,239,238,-1,192,363,247,-1,363,192,194,-1,191,246,364,-1,246,191,190,-1,137,10,138,-1,137,135,10,-1,365,34,366,-1,365,35,34,-1,12,301,188,-1,300,301,12,-1,296,237,136,-1,240,237,296,-1,243,365,367,-1,243,242,365,-1,368,369,370,-1,369,368,371,-1,269,297,267,-1,372,297,269,-1,373,195,183,-1,373,374,195,-1,40,128,127,-1,40,212,128,-1,358,281,359,-1,320,281,358,-1,211,122,176,-1,122,211,123,-1,312,203,170,-1,312,375,203,-1,229,376,377,-1,376,229,29,-1,378,379,380,-1,378,381,379,-1,382,291,288,-1,291,382,383,-1,199,232,384,-1,199,233,232,-1,213,97,117,-1,213,98,97,-1,123,385,121,-1,385,123,334,-1,267,298,386,-1,267,297,298,-1,227,318,317,-1,387,227,44,-1,227,387,318,-1,388,343,347,-1,388,389,343,-1,353,223,352,-1,390,223,353,-1,354,350,391,-1,354,351,350,-1,148,337,151,-1,148,392,337,-1,393,340,394,-1,338,340,393,-1,70,151,65,-1,70,148,151,-1,350,216,391,-1,216,350,109,-1,395,390,353,-1,396,390,395,-1,347,217,107,-1,347,343,217,-1,397,338,393,-1,345,338,397,-1,185,131,130,-1,185,187,131,-1,274,398,399,-1,398,274,273,-1,284,147,102,-1,207,147,284,-1,286,99,210,-1,286,218,99,-1,384,294,311,-1,384,232,294,-1,234,383,400,-1,234,291,383,-1,372,380,379,-1,269,380,372,-1,313,29,28,-1,313,376,29,-1,310,170,401,-1,310,312,170,-1,261,42,41,-1,261,263,42,-1,17,89,153,-1,89,17,220,-1,87,402,282,-1,402,87,86,-1,403,39,85,-1,403,177,39,-1,404,370,257,-1,370,404,368,-1,244,228,242,-1,244,178,228,-1,57,405,13,-1,389,405,57,-1,35,242,228,-1,365,242,35,-1,306,406,304,-1,306,407,406,-1,238,408,362,-1,408,238,409,-1,283,104,103,-1,283,410,104,-1,196,374,411,-1,374,196,195,-1,95,210,79,-1,95,286,210,-1,216,222,412,-1,216,76,222,-1,413,356,355,-1,396,356,413,-1,226,414,382,-1,352,414,226,-1,351,99,98,-1,351,415,99,-1,75,113,73,-1,113,75,416,-1,347,417,388,-1,347,346,417,-1,393,14,397,-1,393,276,14,-1,108,342,400,-1,108,217,342,-1,71,339,72,-1,71,340,339,-1,277,64,224,-1,394,64,277,-1,158,15,221,-1,158,21,15,-1,112,30,231,-1,112,111,30,-1,123,418,333,-1,211,418,123,-1,128,418,211,-1,128,419,418,-1,329,236,6,-1,329,399,236,-1,265,63,327,-1,265,335,63,-1,420,421,326,-1,422,421,420,-1,423,324,401,-1,324,423,287,-1,314,82,104,-1,82,314,322,-1,424,320,358,-1,320,424,321,-1,179,319,36,-1,179,317,319,-1,411,323,425,-1,411,426,323,-1,376,315,427,-1,376,313,315,-1,428,311,310,-1,384,311,428,-1,411,424,426,-1,411,374,424,-1,429,305,304,-1,429,430,305,-1,303,431,302,-1,303,362,431,-1,301,432,433,-1,299,432,301,-1,372,129,297,-1,130,129,372,-1,33,34,36,-1,32,34,33,-1,31,371,368,-1,31,135,371,-1,231,29,229,-1,29,231,30,-1,290,24,288,-1,24,290,25,-1,97,287,423,-1,97,218,287,-1,423,117,97,-1,117,423,169,-1,284,103,139,-1,284,283,103,-1,18,144,141,-1,18,20,144,-1,342,60,26,-1,60,342,56,-1,16,220,17,-1,16,279,220,-1,12,276,278,-1,12,14,276,-1,420,290,289,-1,420,326,290,-1,61,6,8,-1,328,6,61,-1,198,434,273,-1,434,198,435,-1,268,204,2,-1,270,204,268,-1,268,386,271,-1,267,386,268,-1,262,327,260,-1,265,327,262,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar1r_Geo_5_553_coordIndex_3()
		{
			int[] value = {264,261,91,-1,261,264,262,-1,257,436,258,-1,257,370,436,-1,437,256,253,-1,437,438,256,-1,436,251,432,-1,251,436,249,-1,246,305,364,-1,248,305,246,-1,406,244,241,-1,406,84,244,-1,439,239,440,-1,239,439,237,-1,403,238,240,-1,409,238,403,-1,431,247,363,-1,431,245,247,-1,409,85,407,-1,409,403,85,-1,441,437,442,-1,430,437,441,-1,258,255,254,-1,299,255,258,-1,256,259,254,-1,367,259,256,-1,369,252,249,-1,369,440,252,-1,328,264,330,-1,328,266,264,-1,269,1,380,-1,269,2,1,-1,272,260,327,-1,272,271,260,-1,326,1,0,-1,326,421,1,-1,5,274,3,-1,274,5,175,-1,236,27,7,-1,236,443,27,-1,156,132,206,-1,133,132,156,-1,444,277,224,-1,444,275,277,-1,52,133,156,-1,445,133,52,-1,280,93,88,-1,280,225,93,-1,282,359,281,-1,282,402,359,-1,105,19,140,-1,19,105,20,-1,101,285,102,-1,101,168,285,-1,23,22,21,-1,23,167,22,-1,286,202,201,-1,286,95,202,-1,27,291,234,-1,291,27,289,-1,233,160,159,-1,233,292,160,-1,30,360,28,-1,360,30,163,-1,294,231,230,-1,294,293,231,-1,137,237,439,-1,137,136,237,-1,228,36,35,-1,228,179,36,-1,295,136,138,-1,296,136,295,-1,219,42,298,-1,219,124,42,-1,385,381,435,-1,385,186,381,-1,251,134,446,-1,251,250,134,-1,306,245,408,-1,306,248,245,-1,442,253,307,-1,437,253,442,-1,321,308,171,-1,373,308,321,-1,309,375,312,-1,309,377,375,-1,316,322,314,-1,316,361,322,-1,44,295,387,-1,43,295,44,-1,138,387,295,-1,138,318,387,-1,323,143,83,-1,143,323,426,-1,285,410,283,-1,325,410,285,-1,22,272,62,-1,270,272,22,-1,266,61,336,-1,266,328,61,-1,332,418,214,-1,332,333,418,-1,332,187,334,-1,187,332,331,-1,116,125,131,-1,116,115,125,-1,162,165,197,-1,162,164,165,-1,166,160,184,-1,166,161,160,-1,67,349,68,-1,67,337,349,-1,63,279,16,-1,279,63,335,-1,50,154,193,-1,50,49,154,-1,433,188,301,-1,189,188,433,-1,280,61,225,-1,280,336,61,-1,190,247,246,-1,190,192,247,-1,145,447,208,-1,145,392,447,-1,215,382,414,-1,215,383,382,-1,343,57,56,-1,343,389,57,-1,448,344,345,-1,448,449,344,-1,450,107,106,-1,107,450,348,-1,100,350,213,-1,109,350,100,-1,80,353,81,-1,395,353,80,-1,390,74,223,-1,390,451,74,-1,391,357,354,-1,391,452,357,-1,81,96,79,-1,81,158,96,-1,181,425,361,-1,425,181,180,-1,28,316,313,-1,316,28,360,-1,132,363,194,-1,209,363,132,-1,429,243,438,-1,429,241,243,-1,364,444,191,-1,364,441,444,-1,32,366,34,-1,404,366,32,-1,300,278,307,-1,300,12,278,-1,403,296,177,-1,403,240,296,-1,367,366,259,-1,367,365,366,-1,371,440,369,-1,440,371,439,-1,373,182,308,-1,373,183,182,-1,87,158,221,-1,158,87,96,-1,131,219,129,-1,219,131,125,-1,386,42,263,-1,386,298,42,-1,325,375,427,-1,375,325,203,-1,377,230,229,-1,377,309,230,-1,422,378,421,-1,422,434,378,-1,382,24,226,-1,288,24,382,-1,199,292,233,-1,199,173,292,-1,310,324,428,-1,401,324,310,-1,320,235,281,-1,235,320,200,-1,334,186,385,-1,186,334,187,-1,91,41,92,-1,91,261,41,-1,389,448,405,-1,388,448,389,-1,352,73,414,-1,223,73,352,-1,356,351,354,-1,356,415,351,-1,392,349,337,-1,392,145,349,-1,64,340,71,-1,340,64,394,-1,45,111,46,-1,45,205,111,-1,45,164,205,-1,65,71,70,-1,71,65,64,-1,146,145,77,-1,145,146,349,-1,415,396,395,-1,356,396,415,-1,113,414,73,-1,113,215,414,-1,345,405,448,-1,345,397,405,-1,329,90,3,-1,329,330,90,-1,381,185,379,-1,381,186,185,-1,3,399,329,-1,399,3,274,-1,118,428,324,-1,118,174,428,-1,24,157,226,-1,24,23,157,-1,273,422,398,-1,422,273,434,-1,311,230,309,-1,311,294,230,-1,427,410,325,-1,427,315,410,-1,400,26,234,-1,26,400,342,-1,308,292,173,-1,308,182,292,-1,282,96,87,-1,282,94,96,-1,119,235,200,-1,119,202,235,-1,440,303,252,-1,303,440,239,-1,259,404,257,-1,259,366,404,-1,84,178,244,-1,84,38,178,-1,445,134,133,-1,446,134,445,-1,275,307,278,-1,442,307,275,-1,368,32,31,-1,368,404,32,-1,441,275,444,-1,441,442,275,-1,304,241,429,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolar1r_Geo_5_553_coordIndex_4()
		{
			int[] value = {304,406,241,-1,408,407,306,-1,408,409,407,-1,196,425,180,-1,411,425,196,-1,207,139,68,-1,284,139,207,-1,402,142,141,-1,402,86,142,-1,157,21,158,-1,23,21,157,-1,391,412,452,-1,391,216,412,-1,413,390,396,-1,390,413,451,-1,415,210,99,-1,415,80,210,-1,415,395,80,-1,147,109,100,-1,110,109,147,-1,416,106,113,-1,106,416,450,-1,449,388,417,-1,448,388,449,-1,13,397,14,-1,405,397,13,-1,215,400,383,-1,215,108,400,-1,392,150,447,-1,392,148,150,-1,276,394,277,-1,393,394,276,-1,433,445,189,-1,445,433,446,-1,193,153,206,-1,193,154,153,-1,156,53,52,-1,156,89,53,-1,111,163,30,-1,111,205,163,-1,46,231,293,-1,231,46,112,-1,115,212,125,-1,115,114,212,-1,212,419,128,-1,212,114,419,-1,419,214,418,-1,114,214,419,-1,399,443,236,-1,399,398,443,-1,266,335,265,-1,266,336,335,-1,270,167,204,-1,270,22,167,-1,398,420,443,-1,398,422,420,-1,169,401,170,-1,401,169,423,-1,314,410,315,-1,104,410,314,-1,143,424,358,-1,143,426,424,-1,9,138,10,-1,9,318,138,-1,37,317,179,-1,37,227,317,-1,361,323,322,-1,361,425,323,-1,377,427,375,-1,377,376,427,-1,199,428,174,-1,199,384,428,-1,321,374,373,-1,374,321,424,-1,430,438,437,-1,429,438,430,-1,362,245,431,-1,362,408,245,-1,432,446,433,-1,432,251,446,-1,121,435,198,-1,121,385,435,-1,92,126,4,-1,127,126,92,-1,379,130,372,-1,185,130,379,-1,135,439,371,-1,135,137,439,-1,162,360,163,-1,181,360,162,-1,197,183,195,-1,183,197,184,-1,169,101,117,-1,101,169,168,-1,139,105,140,-1,139,103,105,-1,141,359,402,-1,141,144,359,-1,93,60,56,-1,225,60,93,-1,189,52,155,-1,189,445,52,-1,191,224,66,-1,191,444,224,-1,206,194,193,-1,132,194,206,-1,443,289,27,-1,443,420,289,-1,434,381,378,-1,434,435,381,-1,271,263,260,-1,386,263,271,-1,421,380,1,-1,378,380,421,-1,91,330,264,-1,91,90,330,-1,370,249,436,-1,370,369,249,-1,438,367,256,-1,243,367,438,-1,432,258,436,-1,432,299,258,-1,430,364,305,-1,430,441,364,-1,407,84,406,-1,407,85,84,-1,302,363,209,-1,302,431,363,-1,250,209,134,-1,250,302,209,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar1r_Geo_5_553_normalIndex_1()
		{
			int[] value = {102,118,51,-1,442,385,402,-1,430,423,422,-1,236,261,341,-1,417,437,405,-1,99,114,208,-1,314,253,344,-1,99,116,66,-1,50,110,89,-1,427,423,363,-1,154,87,134,-1,334,390,369,-1,378,340,327,-1,213,224,103,-1,195,229,115,-1,79,129,213,-1,244,183,191,-1,109,100,60,-1,100,109,155,-1,271,210,235,-1,374,435,425,-1,246,100,171,-1,412,335,422,-1,99,72,117,-1,279,259,228,-1,226,182,241,-1,270,274,287,-1,178,159,200,-1,20,80,74,-1,136,135,86,-1,344,329,366,-1,237,133,103,-1,208,325,318,-1,186,210,231,-1,355,272,308,-1,339,235,210,-1,328,199,247,-1,41,22,88,-1,25,35,67,-1,209,238,288,-1,349,418,373,-1,20,3,39,-1,188,169,183,-1,80,20,39,-1,277,349,373,-1,177,139,151,-1,25,10,35,-1,164,245,291,-1,422,427,412,-1,333,365,326,-1,195,95,96,-1,364,290,273,-1,19,69,82,-1,112,198,187,-1,261,251,334,-1,78,160,121,-1,182,192,268,-1,368,309,246,-1,366,397,393,-1,74,80,167,-1,101,39,64,-1,239,285,252,-1,259,230,155,-1,171,241,233,-1,217,325,208,-1,309,325,141,-1,425,437,374,-1,437,387,374,-1,109,228,155,-1,218,217,231,-1,235,339,374,-1,68,146,86,-1,168,292,250,-1,250,191,168,-1,331,220,286,-1,286,244,324,-1,244,250,317,-1,34,89,102,-1,16,8,0,-1,245,391,291,-1,306,236,341,-1,298,181,291,-1,389,365,333,-1,364,361,402,-1,290,308,229,-1,229,195,290,-1,103,32,79,-1,281,213,283,-1,350,320,331,-1,394,436,388,-1,161,205,163,-1,452,362,387,-1,127,276,228,-1,228,109,127,-1,52,60,62,-1,62,56,52,-1,452,387,437,-1,445,398,392,-1,281,224,213,-1,364,402,385,-1,333,337,389,-1,298,174,181,-1,341,369,306,-1,245,359,391,-1,245,148,221,-1,245,164,148,-1,0,29,16,-1,102,31,34,-1,324,244,317,-1,244,191,250,-1,220,234,286,-1,218,132,217,-1,374,339,435,-1,325,217,141,-1,171,226,241,-1,155,228,259,-1,239,270,285,-1,101,64,120,-1,167,153,74,-1,393,344,366,-1,314,368,246,-1,268,241,182,-1,334,341,261,-1,187,94,112,-1,135,136,158,-1,364,273,332,-1,195,96,175,-1,361,364,332,-1,422,423,427,-1,164,291,181,-1,25,13,10,-1,151,204,177,-1,277,373,296,-1,80,39,101,-1,20,6,3,-1,418,426,373,-1,238,329,288,-1,67,64,25,-1,88,92,41,-1,199,136,247,-1,210,186,339,-1,308,385,355,-1,95,43,96,-1,231,214,186,-1,128,208,318,-1,237,103,224,-1,344,288,329,-1,20,74,46,-1,178,142,159,-1,270,287,285,-1,279,228,302,-1,226,171,155,-1,117,114,99,-1,412,336,335,-1,171,233,246,-1,387,271,235,-1,100,155,171,-1,387,235,374,-1,123,68,86,-1,129,211,213,-1,115,95,195,-1,103,79,213,-1,301,281,283,-1,334,369,341,-1,55,48,91,-1,126,172,168,-1,363,386,427,-1,199,354,221,-1,199,328,354,-1,50,89,34,-1,99,66,72,-1,99,208,128,-1,417,452,437,-1,430,413,423,-1,442,355,385,-1,51,31,102,-1,77,33,81,-1,33,77,27,-1,284,315,319,-1,284,280,315,-1,14,162,37,-1,14,138,162,-1,266,180,264,-1,180,266,176,-1,375,410,419,-1,375,371,410,-1,410,416,424,-1,404,416,410,-1,108,215,196,-1,107,215,108,-1,249,185,196,-1,227,185,249,-1,51,2,11,-1,61,2,51,-1,38,57,65,-1,38,11,57,-1,389,351,403,-1,351,389,337,-1,109,52,127,-1,52,109,60,-1,316,370,307,-1,316,372,370,-1,194,186,214,-1,194,206,186,-1,399,328,381,-1,328,399,354,-1,67,131,119,-1,67,75,131,-1,148,92,149,-1,92,148,97,-1,197,305,189,-1,197,312,305,-1,394,292,294,-1,394,388,292,-1,392,350,331,-1,398,350,392,-1,126,98,63,-1,126,168,98,-1,32,45,79,-1,32,21,45,-1,43,1,19,-1,43,36,1,-1,361,389,402,-1,361,365,389,-1,432,421,419,-1,432,449,421,-1,176,85,180,-1,176,83,85,-1,138,255,278,-1,124,255,138,-1,377,419,421,-1,375,419,377,-1,391,298,291,-1,395,298,391,-1,40,53,59,-1,40,24,53,-1,152,254,144,-1,152,242,254,-1,236,223,156,-1,236,269,223,-1,236,306,269,-1,327,306,369,-1,327,269,306,-1,420,391,359,-1,420,439,391,-1,338,366,329,-1,366,338,382,-1,164,97,148,-1,164,104,97,-1,16,73,75,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar1r_Geo_5_553_normalIndex_2()
		{
			int[] value = {29,73,16,-1,189,102,89,-1,193,102,189,-1,72,106,117,-1,65,106,72,-1,346,440,430,-1,352,440,346,-1,204,179,219,-1,204,151,179,-1,256,248,326,-1,256,219,248,-1,163,151,82,-1,163,179,151,-1,388,324,317,-1,392,324,388,-1,168,183,98,-1,168,191,183,-1,253,246,233,-1,253,314,246,-1,184,206,194,-1,206,184,203,-1,100,309,141,-1,246,309,100,-1,230,226,155,-1,226,230,207,-1,376,310,311,-1,376,383,310,-1,426,435,431,-1,426,448,435,-1,376,411,383,-1,376,415,411,-1,418,438,443,-1,418,409,438,-1,182,101,120,-1,170,101,182,-1,5,22,13,-1,5,17,22,-1,86,140,123,-1,145,140,86,-1,26,93,90,-1,26,12,93,-1,393,434,400,-1,393,397,434,-1,241,253,233,-1,241,268,253,-1,320,242,232,-1,330,242,320,-1,81,30,83,-1,30,81,33,-1,52,42,37,-1,42,52,56,-1,276,162,293,-1,162,276,127,-1,160,261,121,-1,160,251,261,-1,353,378,396,-1,353,340,378,-1,417,449,452,-1,421,449,417,-1,21,77,78,-1,27,77,21,-1,319,353,360,-1,319,315,353,-1,342,265,343,-1,265,342,260,-1,61,1,2,-1,70,1,61,-1,441,445,436,-1,441,451,445,-1,195,273,290,-1,195,175,273,-1,434,399,400,-1,420,399,434,-1,332,365,361,-1,365,332,326,-1,24,29,0,-1,24,44,29,-1,55,76,47,-1,76,55,87,-1,212,165,147,-1,212,216,165,-1,202,312,197,-1,312,202,303,-1,174,126,111,-1,174,172,126,-1,13,41,10,-1,13,22,41,-1,326,257,333,-1,257,326,248,-1,2,36,49,-1,2,1,36,-1,211,156,223,-1,113,211,129,-1,211,113,156,-1,444,448,443,-1,444,447,448,-1,145,142,140,-1,150,142,145,-1,26,5,4,-1,26,17,5,-1,239,207,230,-1,239,222,207,-1,380,311,313,-1,376,311,380,-1,270,230,259,-1,270,239,230,-1,5,6,4,-1,6,5,3,-1,130,150,145,-1,125,150,130,-1,443,426,418,-1,443,448,426,-1,414,376,380,-1,415,376,414,-1,161,82,69,-1,161,163,82,-1,403,356,406,-1,356,403,351,-1,119,64,67,-1,120,64,119,-1,149,88,158,-1,149,92,88,-1,111,63,59,-1,111,126,63,-1,386,303,384,-1,386,312,303,-1,70,147,165,-1,61,147,70,-1,152,87,154,-1,152,76,87,-1,53,0,58,-1,53,24,0,-1,215,115,229,-1,215,107,115,-1,208,231,217,-1,231,208,214,-1,318,379,381,-1,379,318,325,-1,23,103,133,-1,23,32,103,-1,401,343,416,-1,343,401,342,-1,280,301,315,-1,280,281,301,-1,425,429,437,-1,447,429,425,-1,340,315,301,-1,353,315,340,-1,124,243,255,-1,124,122,243,-1,33,15,30,-1,15,33,18,-1,131,238,209,-1,131,143,238,-1,398,451,408,-1,451,398,445,-1,199,158,136,-1,199,149,158,-1,6,46,7,-1,6,20,46,-1,137,90,93,-1,125,90,137,-1,123,190,202,-1,140,190,123,-1,17,88,22,-1,17,84,88,-1,200,277,178,-1,277,200,275,-1,443,446,444,-1,443,438,446,-1,380,405,414,-1,380,370,405,-1,373,431,384,-1,373,426,431,-1,274,310,287,-1,274,311,310,-1,307,279,302,-1,313,279,307,-1,146,99,128,-1,146,116,99,-1,169,134,91,-1,169,188,134,-1,326,263,256,-1,332,263,326,-1,273,263,332,-1,273,240,263,-1,440,413,430,-1,440,406,413,-1,185,117,106,-1,185,184,117,-1,299,201,193,-1,295,201,299,-1,54,104,58,-1,104,54,97,-1,254,329,238,-1,329,254,338,-1,450,420,434,-1,420,450,439,-1,283,269,327,-1,283,223,269,-1,408,382,367,-1,408,407,382,-1,76,144,71,-1,76,152,144,-1,105,59,53,-1,111,59,105,-1,408,450,407,-1,408,451,450,-1,297,278,255,-1,297,304,278,-1,83,28,85,-1,83,30,28,-1,449,348,358,-1,432,348,449,-1,70,19,1,-1,69,19,70,-1,369,378,327,-1,390,378,369,-1,334,260,342,-1,334,251,260,-1,91,87,55,-1,87,91,134,-1,189,110,197,-1,110,189,89,-1,41,97,54,-1,41,92,97,-1,54,10,41,-1,10,54,8,-1,119,209,192,-1,119,131,209,-1,314,393,368,-1,314,344,393,-1,431,412,427,-1,412,431,435,-1,114,214,208,-1,114,194,214,-1,417,370,372,-1,417,405,370,-1,299,189,305,-1,299,193,189,-1,335,430,422,-1,346,430,335,-1,337,282,351,-1,282,337,258,-1,11,31,51,-1,38,31,11,-1,11,49,57,-1,2,49,11,-1,196,106,108,-1,185,106,196,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar1r_Geo_5_553_normalIndex_3()
		{
			int[] value = {249,215,272,-1,215,249,196,-1,416,345,424,-1,416,343,345,-1,323,371,375,-1,323,322,371,-1,345,264,348,-1,264,345,266,-1,162,278,293,-1,138,278,162,-1,243,280,284,-1,243,237,280,-1,166,81,173,-1,81,166,77,-1,23,33,27,-1,18,33,23,-1,28,37,42,-1,28,14,37,-1,18,133,122,-1,18,23,133,-1,300,323,321,-1,304,323,300,-1,424,419,410,-1,432,419,424,-1,371,404,410,-1,360,404,371,-1,265,176,266,-1,265,173,176,-1,346,249,352,-1,346,227,249,-1,61,118,147,-1,61,51,118,-1,65,108,106,-1,65,57,108,-1,193,118,102,-1,193,201,118,-1,402,403,442,-1,403,402,389,-1,413,363,423,-1,413,357,363,-1,218,112,132,-1,198,112,218,-1,289,307,302,-1,289,316,307,-1,271,198,218,-1,267,198,271,-1,206,339,186,-1,206,336,339,-1,381,400,399,-1,381,379,400,-1,288,253,268,-1,253,288,344,-1,35,75,67,-1,35,16,75,-1,50,66,116,-1,50,34,66,-1,149,221,148,-1,149,199,221,-1,363,312,386,-1,312,363,305,-1,172,292,168,-1,172,294,292,-1,134,232,154,-1,232,134,220,-1,63,91,48,-1,63,98,91,-1,160,77,166,-1,160,78,77,-1,301,327,340,-1,301,283,327,-1,45,78,121,-1,21,78,45,-1,43,115,36,-1,43,95,115,-1,257,216,258,-1,257,205,216,-1,264,187,262,-1,264,180,187,-1,124,14,15,-1,124,138,14,-1,321,375,377,-1,323,375,321,-1,439,395,391,-1,441,395,439,-1,40,44,24,-1,40,47,44,-1,242,338,254,-1,242,330,338,-1,129,45,113,-1,79,45,129,-1,121,113,45,-1,121,156,113,-1,382,397,366,-1,397,382,407,-1,75,143,131,-1,73,143,75,-1,66,65,72,-1,38,65,66,-1,227,335,203,-1,227,346,335,-1,219,263,204,-1,219,256,263,-1,219,163,248,-1,163,219,179,-1,151,96,82,-1,151,139,96,-1,331,324,392,-1,331,286,324,-1,317,292,388,-1,317,250,292,-1,226,170,182,-1,226,207,170,-1,117,194,114,-1,194,117,184,-1,60,141,62,-1,60,100,141,-1,358,452,449,-1,362,452,358,-1,206,335,336,-1,206,203,335,-1,127,37,162,-1,127,52,37,-1,167,225,153,-1,167,222,225,-1,296,202,190,-1,296,303,202,-1,448,425,435,-1,448,447,425,-1,433,411,415,-1,433,428,411,-1,347,418,349,-1,418,347,409,-1,25,5,13,-1,3,5,25,-1,135,145,86,-1,130,145,135,-1,150,159,142,-1,150,157,159,-1,4,12,26,-1,4,9,12,-1,86,247,136,-1,86,146,247,-1,320,367,330,-1,367,320,350,-1,154,242,152,-1,242,154,232,-1,112,42,56,-1,94,42,112,-1,297,319,322,-1,297,284,319,-1,293,289,276,-1,293,300,289,-1,390,396,378,-1,401,396,390,-1,421,372,377,-1,421,417,372,-1,23,21,32,-1,23,27,21,-1,360,396,404,-1,360,353,396,-1,260,173,265,-1,173,260,166,-1,441,394,395,-1,441,436,394,-1,318,146,128,-1,146,318,247,-1,82,43,19,-1,43,82,96,-1,49,115,107,-1,49,36,115,-1,73,44,71,-1,44,73,29,-1,47,48,55,-1,47,40,48,-1,295,212,201,-1,295,282,212,-1,202,110,123,-1,197,110,202,-1,174,294,172,-1,174,298,294,-1,53,104,105,-1,58,104,53,-1,420,354,399,-1,354,420,359,-1,248,205,257,-1,205,248,163,-1,272,229,308,-1,272,215,229,-1,447,433,429,-1,444,433,447,-1,140,178,190,-1,142,178,140,-1,90,17,26,-1,90,84,17,-1,222,170,207,-1,222,167,170,-1,279,311,274,-1,311,279,313,-1,244,188,183,-1,244,234,188,-1,244,286,234,-1,259,274,270,-1,274,259,279,-1,101,167,80,-1,167,101,170,-1,84,125,130,-1,90,125,84,-1,277,190,178,-1,277,296,190,-1,415,429,433,-1,415,414,429,-1,440,355,442,-1,440,352,355,-1,216,161,165,-1,216,205,161,-1,442,406,440,-1,406,442,403,-1,164,105,104,-1,164,181,105,-1,110,68,123,-1,110,50,68,-1,351,295,356,-1,295,351,282,-1,59,48,40,-1,59,63,48,-1,71,143,73,-1,71,144,143,-1,384,427,386,-1,427,384,431,-1,395,294,298,-1,395,394,294,-1,381,247,318,-1,381,328,247,-1,245,354,359,-1,245,221,354,-1,173,83,176,-1,83,173,81,-1,404,401,416,-1,404,396,401,-1,237,281,280,-1,237,224,281,-1,267,187,198,-1,262,187,267,-1,316,377,372,-1,321,377,316,-1,342,390,334,-1,342,401,390,-1,300,316,289,-1,300,321,316,-1,255,284,297,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolar1r_Geo_5_553_normalIndex_4()
		{
			int[] value = {255,243,284,-1,15,122,124,-1,15,18,122,-1,398,367,350,-1,408,367,398,-1,120,192,182,-1,119,192,120,-1,379,309,368,-1,379,325,309,-1,68,116,146,-1,50,116,68,-1,4,7,9,-1,4,6,7,-1,137,150,125,-1,150,137,157,-1,84,158,88,-1,84,135,158,-1,84,130,135,-1,64,3,25,-1,39,3,64,-1,275,349,277,-1,349,275,347,-1,428,444,446,-1,433,444,428,-1,437,414,405,-1,429,414,437,-1,296,384,303,-1,296,373,384,-1,222,252,225,-1,222,239,252,-1,370,313,307,-1,380,313,370,-1,358,267,362,-1,267,358,262,-1,62,217,132,-1,62,141,217,-1,218,210,271,-1,218,231,210,-1,188,220,134,-1,188,234,220,-1,183,91,98,-1,91,183,169,-1,139,175,96,-1,139,177,175,-1,175,240,273,-1,175,177,240,-1,240,204,263,-1,177,204,240,-1,406,357,413,-1,406,356,357,-1,227,184,185,-1,227,203,184,-1,38,34,31,-1,38,66,34,-1,356,299,357,-1,356,295,299,-1,8,58,0,-1,58,8,54,-1,254,143,144,-1,238,143,254,-1,397,450,434,-1,397,407,450,-1,236,121,261,-1,236,156,121,-1,213,223,283,-1,213,211,223,-1,330,382,338,-1,330,367,382,-1,47,71,44,-1,47,76,71,-1,174,105,181,-1,174,111,105,-1,439,451,441,-1,451,439,450,-1,304,322,323,-1,297,322,304,-1,30,14,28,-1,30,15,14,-1,348,262,358,-1,348,264,262,-1,333,258,337,-1,333,257,258,-1,308,364,385,-1,290,364,308,-1,165,69,70,-1,161,69,165,-1,251,166,260,-1,251,160,166,-1,331,232,220,-1,320,232,331,-1,392,436,445,-1,436,392,388,-1,8,35,10,-1,35,8,16,-1,192,288,268,-1,192,209,288,-1,368,400,379,-1,368,393,400,-1,339,412,435,-1,336,412,339,-1,362,271,387,-1,362,267,271,-1,276,302,228,-1,276,289,302,-1,132,56,62,-1,112,56,132,-1,357,305,363,-1,357,299,305,-1,282,216,212,-1,282,258,216,-1,57,107,108,-1,49,107,57,-1,201,147,118,-1,212,147,201,-1,272,352,249,-1,272,355,352,-1,343,266,345,-1,343,265,266,-1,322,360,371,-1,319,360,322,-1,348,424,345,-1,348,432,424,-1,304,293,278,-1,304,300,293,-1,122,237,243,-1,122,133,237,-1,85,42,94,-1,85,28,42,-1,180,94,187,-1,180,85,94,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar2c_Geo_5_559_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,4,-1,8,9,1,-1,10,11,12,-1,13,14,15,-1,16,14,17,-1,18,16,19,-1,20,21,22,-1,23,24,25,-1,15,26,13,-1,27,2,1,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,37,38,39,-1,40,35,41,-1,42,5,4,-1,43,44,45,-1,46,47,23,-1,23,48,49,-1,50,51,48,-1,52,53,54,-1,55,56,51,-1,57,58,59,-1,60,61,45,-1,62,63,64,-1,65,66,67,-1,68,69,19,-1,70,71,72,-1,73,43,74,-1,75,76,77,-1,58,73,78,-1,79,80,81,-1,82,83,84,-1,85,86,87,-1,88,87,86,-1,89,90,91,-1,92,93,81,-1,90,89,94,-1,95,89,50,-1,96,97,47,-1,98,97,96,-1,46,99,100,-1,101,102,103,-1,104,24,105,-1,106,92,80,-1,107,108,109,-1,110,111,112,-1,113,114,115,-1,111,116,117,-1,118,119,120,-1,37,121,122,-1,5,42,123,-1,2,124,125,-1,126,127,63,-1,29,28,37,-1,89,91,128,-1,128,106,129,-1,74,130,81,-1,131,132,133,-1,34,104,134,-1,135,136,137,-1,102,101,138,-1,139,22,19,-1,140,141,142,-1,143,144,145,-1,146,49,135,-1,147,49,48,-1,103,148,105,-1,82,86,85,-1,130,74,43,-1,80,129,106,-1,99,23,25,-1,149,127,126,-1,150,2,125,-1,123,42,151,-1,152,123,151,-1,153,154,155,-1,122,156,157,-1,112,117,114,-1,158,159,160,-1,161,54,53,-1,162,98,96,-1,163,164,94,-1,89,95,94,-1,129,80,79,-1,94,165,133,-1,47,163,166,-1,41,167,168,-1,82,85,169,-1,85,36,170,-1,82,171,133,-1,172,77,173,-1,174,27,71,-1,175,176,68,-1,177,152,178,-1,39,179,170,-1,180,30,145,-1,181,73,58,-1,182,56,55,-1,137,138,101,-1,52,54,45,-1,141,136,147,-1,51,50,128,-1,23,47,166,-1,151,42,183,-1,34,184,185,-1,34,41,35,-1,32,186,33,-1,31,33,187,-1,167,145,30,-1,153,188,189,-1,190,176,175,-1,191,175,21,-1,192,193,194,-1,146,101,103,-1,192,195,196,-1,197,26,15,-1,12,11,198,-1,72,9,199,-1,200,8,1,-1,201,65,67,-1,174,202,140,-1,203,204,201,-1,205,9,8,-1,206,159,207,-1,75,208,209,-1,116,210,211,-1,114,212,213,-1,192,20,139,-1,213,115,114,-1,211,117,116,-1,209,76,75,-1,122,157,214,-1,206,207,215,-1,201,216,203,-1,3,6,4,-1,201,204,65,-1,199,70,72,-1,197,15,18,-1,192,196,20,-1,23,146,103,-1,195,192,194,-1,192,139,193,-1,194,17,186,-1,71,27,1,-1,188,217,189,-1,30,29,167,-1,187,218,31,-1,32,144,186,-1,34,185,41,-1,184,34,134,-1,23,166,219,-1,128,53,220,-1,101,146,137,-1,45,54,161,-1,181,221,73,-1,52,222,55,-1,223,33,186,-1,40,39,170,-1,178,224,177,-1,63,216,225,-1,63,203,216,-1,174,7,27,-1,128,79,161,-1,173,78,172,-1,161,79,130,-1,133,165,82,-1,170,169,85,-1,169,83,82,-1,41,226,167,-1,47,97,163,-1,128,91,106,-1,94,133,132,-1,94,95,163,-1,164,165,94,-1,53,128,161,-1,49,146,23,-1,201,67,227,-1,158,160,228,-1,114,113,112,-1,122,229,156,-1,153,155,230,-1,151,178,152,-1,6,3,2,-1,150,0,2,-1,10,231,13,-1,232,180,233,-1,106,91,90,-1,43,161,130,-1,82,165,86,-1,103,234,148,-1,222,182,55,-1,147,135,49,-1,135,137,146,-1,140,142,235,-1,199,9,236,-1,139,19,193,-1,102,138,202,-1,237,10,13,-1,147,136,135,-1,171,131,133,-1,238,74,81,-1,106,90,92,-1,128,50,89,-1,100,88,96,-1,29,37,239,-1,63,225,126,-1,2,3,124,-1,240,5,241,-1,122,38,37,-1,118,242,119,-1,117,112,111,-1,115,243,113,-1,110,112,244,-1,109,245,107,-1,66,227,67,-1,104,105,134,-1,220,51,128,-1,102,69,103,-1,100,96,46,-1,47,46,96,-1,50,219,95,-1,96,88,162,-1,80,92,81,-1,128,129,79,-1,88,100,87,-1,90,94,132,-1,85,87,36,-1,82,84,171,-1,79,81,130,-1,173,58,78,-1,75,77,172,-1,246,84,83,-1,74,78,73,-1,19,22,68,-1,68,176,69,-1,65,247,66,-1,62,203,63,-1,60,45,44,-1,57,181,58,-1,51,220,55,-1,50,48,219,-1,48,23,219,-1,23,99,46,-1,45,161,43,-1,221,248,73,-1,40,41,168,-1,39,239,37,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar2c_Geo_5_559_coordIndex_2()
		{
			int[] value = {144,249,186,-1,250,218,187,-1,72,71,1,-1,196,191,21,-1,139,20,22,-1,20,196,21,-1,70,199,19,-1,186,195,194,-1,19,16,193,-1,251,199,236,-1,10,237,11,-1,149,252,127,-1,9,72,1,-1,174,102,202,-1,1,0,200,-1,38,122,214,-1,253,254,242,-1,253,255,254,-1,256,257,258,-1,256,259,257,-1,260,261,215,-1,262,261,260,-1,263,243,264,-1,263,245,243,-1,265,266,267,-1,268,266,265,-1,269,270,271,-1,272,270,269,-1,273,255,274,-1,273,254,255,-1,210,76,209,-1,116,76,210,-1,275,218,250,-1,275,276,218,-1,179,157,277,-1,157,179,214,-1,177,241,152,-1,278,241,177,-1,150,203,62,-1,150,204,203,-1,66,279,228,-1,66,247,279,-1,125,204,150,-1,204,125,65,-1,280,198,281,-1,280,12,198,-1,252,231,280,-1,282,231,252,-1,249,191,196,-1,249,283,191,-1,21,68,22,-1,175,68,21,-1,143,190,283,-1,226,190,143,-1,51,147,48,-1,51,56,147,-1,284,285,108,-1,284,286,285,-1,282,13,231,-1,282,287,13,-1,144,180,145,-1,144,32,180,-1,288,287,282,-1,288,289,287,-1,178,57,224,-1,178,181,57,-1,246,169,277,-1,83,169,246,-1,172,290,75,-1,238,290,172,-1,35,170,36,-1,35,40,170,-1,164,162,165,-1,98,162,164,-1,259,291,257,-1,292,291,259,-1,293,159,206,-1,159,293,160,-1,294,215,207,-1,294,260,215,-1,284,260,294,-1,284,295,260,-1,59,244,285,-1,110,244,59,-1,267,212,296,-1,212,267,213,-1,296,122,297,-1,229,122,296,-1,155,297,230,-1,155,265,297,-1,275,271,189,-1,275,269,271,-1,298,289,299,-1,298,300,289,-1,151,181,178,-1,151,221,181,-1,300,287,289,-1,223,287,300,-1,277,156,246,-1,277,157,156,-1,53,55,220,-1,53,52,55,-1,27,6,2,-1,7,6,27,-1,26,199,251,-1,26,197,199,-1,16,15,14,-1,16,18,15,-1,198,205,301,-1,205,198,11,-1,105,23,103,-1,105,24,23,-1,38,179,39,-1,38,214,179,-1,33,300,187,-1,33,223,300,-1,116,77,76,-1,116,111,77,-1,302,298,303,-1,302,250,298,-1,230,122,121,-1,230,297,122,-1,299,254,273,-1,254,299,304,-1,297,267,296,-1,297,265,267,-1,113,244,112,-1,244,113,109,-1,294,286,284,-1,286,294,305,-1,291,293,257,-1,291,160,293,-1,306,118,120,-1,307,118,306,-1,190,234,176,-1,234,190,185,-1,95,166,163,-1,219,166,95,-1,97,164,163,-1,97,98,164,-1,74,172,78,-1,74,238,172,-1,209,84,246,-1,209,208,84,-1,235,183,42,-1,235,60,183,-1,65,124,247,-1,125,124,65,-1,32,233,180,-1,32,31,233,-1,60,248,183,-1,60,44,248,-1,108,295,284,-1,295,108,107,-1,40,239,39,-1,40,168,239,-1,226,145,167,-1,226,143,145,-1,11,9,205,-1,236,9,11,-1,197,19,199,-1,197,18,19,-1,17,13,186,-1,17,14,13,-1,283,144,143,-1,249,144,283,-1,237,236,11,-1,237,251,236,-1,288,252,149,-1,288,282,252,-1,279,124,240,-1,247,124,279,-1,306,216,292,-1,306,225,216,-1,152,5,123,-1,241,5,152,-1,170,277,169,-1,277,170,179,-1,31,276,233,-1,276,31,218,-1,188,232,217,-1,232,188,28,-1,308,303,309,-1,302,303,308,-1,271,310,154,-1,270,310,271,-1,266,213,267,-1,266,311,213,-1,312,245,263,-1,312,107,245,-1,215,313,206,-1,261,313,215,-1,307,256,314,-1,256,307,259,-1,315,242,118,-1,242,315,253,-1,316,257,293,-1,316,258,257,-1,262,295,317,-1,262,260,295,-1,115,264,243,-1,318,264,115,-1,268,155,319,-1,265,155,268,-1,302,272,269,-1,308,272,302,-1,250,269,275,-1,269,250,302,-1,278,320,158,-1,278,177,320,-1,0,62,200,-1,0,150,62,-1,64,200,62,-1,64,301,200,-1,228,227,66,-1,160,227,228,-1,227,160,291,-1,140,7,174,-1,140,4,7,-1,252,281,127,-1,252,280,281,-1,304,242,254,-1,304,119,242,-1,231,12,280,-1,231,10,12,-1,174,70,102,-1,71,70,174,-1,26,237,13,-1,26,251,237,-1,17,193,16,-1,17,194,193,-1,191,190,175,-1,191,283,190,-1,87,24,104,-1,24,87,25,-1,148,134,105,-1,134,148,184,-1,44,73,248,-1,44,43,73,-1,56,141,147,-1,182,141,56,-1,182,142,141,-1,45,222,52,-1,45,61,222,-1,59,286,57,-1,286,59,285,-1,127,64,63,-1,281,64,127,-1,102,19,69,-1,102,70,19,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar2c_Geo_5_559_coordIndex_3()
		{
			int[] value = {75,131,208,-1,290,131,75,-1,162,86,165,-1,162,88,86,-1,93,90,132,-1,92,90,93,-1,238,93,290,-1,93,238,81,-1,207,305,294,-1,320,305,207,-1,285,109,108,-1,285,244,109,-1,211,296,212,-1,211,229,296,-1,149,120,119,-1,120,149,126,-1,28,121,37,-1,188,121,28,-1,189,276,275,-1,276,189,217,-1,299,303,298,-1,299,273,303,-1,59,173,110,-1,58,173,59,-1,210,246,156,-1,209,246,210,-1,132,290,93,-1,131,290,132,-1,202,141,140,-1,202,138,141,-1,103,176,234,-1,176,103,69,-1,185,226,41,-1,190,226,185,-1,142,60,235,-1,61,60,142,-1,233,217,232,-1,233,276,217,-1,281,301,64,-1,281,198,301,-1,110,77,111,-1,173,77,110,-1,187,298,250,-1,298,187,300,-1,230,188,153,-1,188,230,121,-1,304,289,288,-1,304,299,289,-1,156,211,210,-1,156,229,211,-1,243,109,113,-1,109,243,245,-1,57,305,224,-1,57,286,305,-1,320,224,305,-1,177,224,320,-1,279,158,228,-1,279,278,158,-1,120,225,306,-1,120,126,225,-1,99,87,100,-1,99,25,87,-1,208,171,84,-1,131,171,208,-1,4,235,42,-1,140,235,4,-1,278,240,241,-1,240,278,279,-1,239,167,29,-1,167,239,168,-1,223,13,287,-1,223,186,13,-1,183,221,151,-1,221,183,248,-1,138,136,141,-1,137,136,138,-1,182,61,142,-1,182,222,61,-1,184,234,185,-1,184,148,234,-1,104,36,87,-1,36,104,34,-1,189,154,153,-1,154,189,271,-1,196,186,249,-1,196,195,186,-1,288,119,304,-1,288,149,119,-1,240,3,5,-1,124,3,240,-1,292,227,291,-1,216,227,292,-1,201,227,216,-1,8,301,205,-1,301,8,200,-1,292,307,306,-1,307,292,259,-1,207,158,320,-1,159,158,207,-1,180,28,30,-1,180,232,28,-1,212,117,211,-1,114,117,212,-1,273,309,303,-1,274,309,273,-1,319,154,310,-1,319,155,154,-1,311,115,213,-1,311,318,115,-1,107,317,295,-1,312,317,107,-1,206,316,293,-1,313,316,206,-1,314,118,307,-1,118,314,315,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar2c_Geo_5_559_normalIndex_1()
		{
			int[] value = {129,200,70,-1,84,157,85,-1,108,156,157,-1,236,279,200,-1,244,248,194,-1,238,187,225,-1,186,187,204,-1,240,186,195,-1,81,88,125,-1,118,68,78,-1,225,276,238,-1,150,70,200,-1,303,295,289,-1,210,205,218,-1,56,67,74,-1,306,296,288,-1,193,67,152,-1,159,85,157,-1,167,214,235,-1,137,138,118,-1,118,209,197,-1,135,231,209,-1,270,269,265,-1,272,273,231,-1,90,112,107,-1,230,268,235,-1,52,39,79,-1,32,23,25,-1,96,166,195,-1,252,203,257,-1,140,167,131,-1,183,263,177,-1,112,140,115,-1,185,132,98,-1,123,259,250,-1,92,33,61,-1,45,61,33,-1,53,36,69,-1,44,65,98,-1,36,53,55,-1,60,53,135,-1,93,122,138,-1,86,122,93,-1,137,34,87,-1,239,227,154,-1,75,68,62,-1,97,44,132,-1,119,114,136,-1,130,188,174,-1,163,221,184,-1,188,266,254,-1,48,133,42,-1,306,319,317,-1,85,159,89,-1,70,49,41,-1,46,82,39,-1,295,303,306,-1,53,69,170,-1,170,97,168,-1,131,158,98,-1,148,66,99,-1,56,75,71,-1,281,262,271,-1,227,239,253,-1,144,125,195,-1,196,241,267,-1,161,176,228,-1,229,197,281,-1,274,197,209,-1,154,58,62,-1,123,33,92,-1,158,131,167,-1,132,168,97,-1,34,118,78,-1,134,82,46,-1,51,70,41,-1,89,159,110,-1,43,89,110,-1,315,305,314,-1,317,307,304,-1,174,254,221,-1,11,2,5,-1,206,265,269,-1,40,86,93,-1,117,94,55,-1,53,60,55,-1,168,132,185,-1,55,54,99,-1,138,117,191,-1,152,243,224,-1,123,92,242,-1,92,74,216,-1,123,171,99,-1,162,177,121,-1,198,150,203,-1,91,101,96,-1,30,43,76,-1,288,297,216,-1,260,289,228,-1,104,140,112,-1,261,273,272,-1,271,253,239,-1,270,265,235,-1,241,262,274,-1,231,135,170,-1,118,138,191,-1,110,159,172,-1,56,80,106,-1,56,152,67,-1,205,189,218,-1,210,218,220,-1,243,228,289,-1,315,312,294,-1,113,101,91,-1,100,91,88,-1,146,175,160,-1,229,239,154,-1,146,77,63,-1,283,276,225,-1,194,248,164,-1,257,279,277,-1,147,236,200,-1,17,32,25,-1,198,237,196,-1,27,35,17,-1,245,279,236,-1,3,2,21,-1,183,212,284,-1,266,292,287,-1,221,282,264,-1,146,81,144,-1,264,184,221,-1,287,254,266,-1,284,263,183,-1,317,304,300,-1,3,21,28,-1,17,14,27,-1,84,108,157,-1,17,35,32,-1,277,252,257,-1,283,225,240,-1,146,63,81,-1,118,229,154,-1,77,146,160,-1,146,144,175,-1,160,204,189,-1,203,150,200,-1,312,291,294,-1,289,295,243,-1,220,233,210,-1,205,176,189,-1,56,106,152,-1,80,56,71,-1,118,191,47,-1,170,269,234,-1,239,229,271,-1,235,265,206,-1,104,145,140,-1,270,256,272,-1,219,218,189,-1,193,288,216,-1,76,57,30,-1,39,14,18,-1,39,27,14,-1,198,156,150,-1,170,185,206,-1,121,115,162,-1,206,185,158,-1,99,54,123,-1,216,242,92,-1,242,259,123,-1,152,165,243,-1,138,122,117,-1,170,69,97,-1,55,99,66,-1,55,60,117,-1,94,54,55,-1,269,170,206,-1,197,229,118,-1,17,25,13,-1,11,5,15,-1,221,163,174,-1,317,310,307,-1,315,314,318,-1,110,76,43,-1,108,84,70,-1,51,129,70,-1,244,192,238,-1,285,260,251,-1,97,69,36,-1,167,206,158,-1,123,54,33,-1,154,83,58,-1,256,261,272,-1,274,281,197,-1,281,271,229,-1,196,267,226,-1,277,279,280,-1,144,195,175,-1,227,253,237,-1,278,244,238,-1,274,262,281,-1,171,148,99,-1,127,131,98,-1,97,36,44,-1,170,135,53,-1,87,45,93,-1,295,306,286,-1,39,18,46,-1,70,84,49,-1,37,85,31,-1,317,296,306,-1,48,139,133,-1,254,174,188,-1,184,149,163,-1,130,174,128,-1,136,143,119,-1,23,13,25,-1,75,62,71,-1,234,231,170,-1,227,166,154,-1,87,93,137,-1,138,137,93,-1,135,47,60,-1,93,45,40,-1,132,44,98,-1,170,168,185,-1,45,87,61,-1,36,55,66,-1,92,61,74,-1,123,250,171,-1,185,98,158,-1,121,112,115,-1,183,177,162,-1,298,250,259,-1,131,115,140,-1,195,125,96,-1,96,101,166,-1,32,38,23,-1,52,27,39,-1,230,235,214,-1,90,104,112,-1,231,234,272,-1,135,209,47,-1,209,118,47,-1,118,34,137,-1,235,206,167,-1,145,173,140,-1,193,152,224,-1,288,286,306,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar2c_Geo_5_559_normalIndex_2()
		{
			int[] value = {176,120,189,-1,232,233,220,-1,257,203,200,-1,63,100,88,-1,144,81,125,-1,81,63,88,-1,252,277,195,-1,189,77,160,-1,195,186,175,-1,275,277,280,-1,244,278,248,-1,134,155,82,-1,279,257,200,-1,198,227,237,-1,200,129,147,-1,296,317,300,-1,142,180,139,-1,142,179,180,-1,12,4,6,-1,12,10,4,-1,72,29,28,-1,73,29,72,-1,141,149,151,-1,141,143,149,-1,316,301,308,-1,313,301,316,-1,247,290,293,-1,249,290,247,-1,208,179,207,-1,208,180,179,-1,292,263,284,-1,266,263,292,-1,255,233,232,-1,255,258,233,-1,297,304,299,-1,304,297,300,-1,30,31,43,-1,22,31,30,-1,51,27,52,-1,51,35,27,-1,23,26,15,-1,23,38,26,-1,41,35,51,-1,35,41,32,-1,169,164,109,-1,169,194,164,-1,155,192,169,-1,190,192,155,-1,120,100,63,-1,120,126,100,-1,88,96,125,-1,91,96,88,-1,161,113,126,-1,165,113,161,-1,231,274,209,-1,231,273,274,-1,105,111,114,-1,105,95,111,-1,190,238,192,-1,190,201,238,-1,176,260,228,-1,176,205,260,-1,182,201,190,-1,182,199,201,-1,76,90,57,-1,76,104,90,-1,298,242,299,-1,259,242,298,-1,162,116,183,-1,127,116,162,-1,67,216,74,-1,67,193,216,-1,94,40,54,-1,86,40,94,-1,10,9,4,-1,8,9,10,-1,0,2,3,-1,2,0,5,-1,64,28,21,-1,64,72,28,-1,105,72,64,-1,105,103,72,-1,107,128,111,-1,130,128,107,-1,308,282,311,-1,282,308,264,-1,311,317,320,-1,310,317,311,-1,314,320,318,-1,314,316,320,-1,255,293,294,-1,255,247,293,-1,215,199,202,-1,215,217,199,-1,110,104,76,-1,110,145,104,-1,217,201,199,-1,219,201,217,-1,299,307,298,-1,299,304,307,-1,269,272,234,-1,269,270,272,-1,150,108,70,-1,156,108,150,-1,276,277,275,-1,276,283,277,-1,186,225,187,-1,186,240,225,-1,164,245,153,-1,245,164,248,-1,62,118,154,-1,62,68,118,-1,296,297,288,-1,296,300,297,-1,218,217,220,-1,218,219,217,-1,266,177,263,-1,266,188,177,-1,223,215,211,-1,223,232,215,-1,318,317,319,-1,318,320,317,-1,202,180,208,-1,180,202,178,-1,320,308,311,-1,320,316,308,-1,163,128,174,-1,128,163,136,-1,64,95,105,-1,95,64,59,-1,9,0,4,-1,9,5,0,-1,16,48,42,-1,20,48,16,-1,113,83,101,-1,83,113,106,-1,60,191,117,-1,47,191,60,-1,122,94,117,-1,122,86,94,-1,131,162,115,-1,131,127,162,-1,284,250,298,-1,284,212,250,-1,226,172,159,-1,226,230,172,-1,32,49,38,-1,41,49,32,-1,205,251,260,-1,205,210,251,-1,230,173,172,-1,230,214,173,-1,114,103,105,-1,103,114,119,-1,193,286,288,-1,193,224,286,-1,165,228,243,-1,165,161,228,-1,248,279,245,-1,280,279,248,-1,283,195,277,-1,283,240,195,-1,204,238,189,-1,204,187,238,-1,126,176,161,-1,120,176,126,-1,278,280,248,-1,278,275,280,-1,182,155,134,-1,182,190,155,-1,26,49,37,-1,38,49,26,-1,16,14,8,-1,16,18,14,-1,43,85,89,-1,31,85,43,-1,216,299,242,-1,299,216,297,-1,210,258,251,-1,258,210,233,-1,312,285,291,-1,285,312,303,-1,222,211,213,-1,223,211,222,-1,293,302,305,-1,290,302,293,-1,301,264,308,-1,301,246,264,-1,124,143,141,-1,124,119,143,-1,28,7,3,-1,29,7,28,-1,20,12,24,-1,12,20,10,-1,50,139,48,-1,139,50,142,-1,1,4,0,-1,1,6,4,-1,73,103,102,-1,73,72,103,-1,184,151,149,-1,181,151,184,-1,313,314,309,-1,316,314,313,-1,223,249,247,-1,222,249,223,-1,232,247,255,-1,247,232,223,-1,22,19,11,-1,22,30,19,-1,129,52,147,-1,129,51,52,-1,79,147,52,-1,79,153,147,-1,15,13,23,-1,5,13,15,-1,13,5,9,-1,196,156,198,-1,196,157,156,-1,155,109,82,-1,155,169,109,-1,178,139,180,-1,178,133,139,-1,192,194,169,-1,192,244,194,-1,198,252,227,-1,203,252,198,-1,276,278,238,-1,276,275,278,-1,204,175,186,-1,204,160,175,-1,100,113,91,-1,100,126,113,-1,61,68,75,-1,68,61,78,-1,58,71,62,-1,71,58,80,-1,214,140,173,-1,214,167,140,-1,273,241,274,-1,261,241,273,-1,261,267,241,-1,235,256,270,-1,235,268,256,-1,107,95,90,-1,95,107,111,-1,82,79,39,-1,109,79,82,-1,227,195,166,-1,227,252,195,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar2c_Geo_5_559_normalIndex_3()
		{
			int[] value = {183,148,212,-1,116,148,183,-1,40,33,54,-1,40,45,33,-1,65,36,66,-1,44,36,65,-1,127,65,116,-1,65,127,98,-1,21,59,64,-1,19,59,21,-1,111,136,114,-1,111,128,136,-1,287,311,282,-1,287,310,311,-1,134,42,133,-1,42,134,46,-1,303,319,306,-1,312,319,303,-1,294,258,255,-1,258,294,291,-1,202,211,215,-1,202,208,211,-1,107,121,130,-1,112,121,107,-1,292,298,307,-1,284,298,292,-1,66,116,65,-1,148,116,66,-1,237,241,196,-1,237,253,241,-1,154,101,83,-1,101,154,166,-1,106,165,152,-1,113,165,106,-1,267,230,226,-1,268,230,267,-1,251,291,285,-1,251,258,291,-1,109,153,79,-1,109,164,153,-1,130,177,188,-1,121,177,130,-1,220,215,232,-1,215,220,217,-1,318,312,315,-1,312,318,319,-1,178,199,182,-1,178,202,199,-1,307,287,292,-1,307,310,287,-1,149,136,163,-1,136,149,143,-1,90,59,57,-1,90,95,59,-1,19,57,59,-1,30,57,19,-1,26,11,15,-1,26,22,11,-1,42,18,16,-1,42,46,18,-1,34,61,87,-1,34,78,61,-1,212,171,250,-1,148,171,212,-1,157,226,159,-1,196,226,157,-1,22,37,31,-1,37,22,26,-1,286,243,295,-1,243,286,224,-1,219,238,201,-1,219,189,238,-1,172,145,110,-1,145,172,173,-1,253,262,241,-1,271,262,253,-1,261,268,267,-1,261,256,268,-1,80,83,106,-1,80,58,83,-1,75,74,61,-1,74,75,56,-1,294,305,315,-1,305,294,293,-1,63,189,120,-1,63,77,189,-1,182,133,178,-1,182,134,133,-1,37,84,85,-1,49,84,37,-1,8,13,9,-1,14,13,8,-1,17,13,14,-1,236,153,245,-1,153,236,147,-1,8,20,16,-1,20,8,10,-1,21,11,19,-1,2,11,21,-1,260,303,289,-1,260,285,303,-1,282,254,287,-1,221,254,282,-1,208,213,211,-1,207,213,208,-1,309,305,302,-1,309,314,305,-1,246,184,264,-1,246,181,184,-1,119,102,103,-1,124,102,119,-1,3,1,0,-1,7,1,3,-1,24,48,20,-1,48,24,50,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar2r_Geo_5_565_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,13,12,6,-1,21,22,23,-1,23,24,21,-1,25,26,27,-1,25,28,29,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,14,32,48,-1,49,50,51,-1,52,28,53,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,7,69,70,-1,71,72,73,-1,8,7,74,-1,75,38,76,-1,77,78,79,-1,37,80,81,-1,82,83,84,-1,85,86,87,-1,65,88,82,-1,89,90,91,-1,92,22,93,-1,94,95,96,-1,97,98,99,-1,100,101,102,-1,103,16,18,-1,104,105,106,-1,107,108,109,-1,110,71,111,-1,112,113,114,-1,115,116,117,-1,20,118,119,-1,15,120,19,-1,121,122,123,-1,124,125,126,-1,64,88,65,-1,127,128,129,-1,127,82,128,-1,37,81,76,-1,77,79,68,-1,130,131,132,-1,61,60,133,-1,134,135,136,-1,137,138,139,-1,12,140,141,-1,48,32,35,-1,142,143,144,-1,145,133,132,-1,146,147,148,-1,149,150,58,-1,151,152,138,-1,99,153,123,-1,154,155,156,-1,157,11,54,-1,125,158,159,-1,66,68,79,-1,160,75,76,-1,122,161,162,-1,148,163,164,-1,47,46,165,-1,160,166,167,-1,168,169,36,-1,170,171,172,-1,31,35,32,-1,173,174,175,-1,131,130,34,-1,26,29,48,-1,28,52,14,-1,140,176,100,-1,18,16,15,-1,177,178,14,-1,140,14,52,-1,176,52,179,-1,180,11,181,-1,182,183,156,-1,141,100,7,-1,119,118,120,-1,184,97,185,-1,111,70,186,-1,120,187,119,-1,100,69,7,-1,156,188,182,-1,180,9,11,-1,179,101,176,-1,140,12,14,-1,14,13,177,-1,15,19,18,-1,141,140,100,-1,14,29,28,-1,26,25,29,-1,34,33,131,-1,175,189,173,-1,31,33,35,-1,170,172,190,-1,36,191,168,-1,192,193,194,-1,192,195,193,-1,160,196,166,-1,165,197,47,-1,163,198,164,-1,122,162,123,-1,76,199,160,-1,79,168,66,-1,159,126,125,-1,54,56,157,-1,200,154,156,-1,123,97,99,-1,138,137,151,-1,58,201,149,-1,148,187,146,-1,133,60,132,-1,143,62,144,-1,172,202,44,-1,35,203,48,-1,141,6,12,-1,137,139,204,-1,135,205,136,-1,130,132,60,-1,206,207,61,-1,68,208,77,-1,38,37,76,-1,64,209,88,-1,124,210,125,-1,121,123,153,-1,211,212,213,-1,212,205,213,-1,15,214,120,-1,117,215,115,-1,112,216,113,-1,110,72,71,-1,217,218,219,-1,109,220,107,-1,221,133,145,-1,222,104,106,-1,103,18,174,-1,100,176,101,-1,97,223,98,-1,94,96,224,-1,93,225,92,-1,89,226,90,-1,65,82,127,-1,85,87,83,-1,82,84,128,-1,37,41,80,-1,77,227,78,-1,8,74,228,-1,7,70,74,-1,160,167,75,-1,229,63,65,-1,62,143,60,-1,57,201,58,-1,54,230,55,-1,179,52,53,-1,51,231,49,-1,48,29,14,-1,47,232,45,-1,44,202,42,-1,191,66,168,-1,40,233,41,-1,38,191,36,-1,30,32,234,-1,25,235,28,-1,25,27,161,-1,6,236,13,-1,20,237,18,-1,238,15,17,-1,176,140,52,-1,10,54,11,-1,6,141,7,-1,3,236,4,-1,2,239,0,-1,138,240,139,-1,241,205,212,-1,136,205,241,-1,242,243,244,-1,243,242,245,-1,59,246,247,-1,246,59,58,-1,248,183,182,-1,248,249,183,-1,250,179,251,-1,250,101,179,-1,252,253,254,-1,253,252,255,-1,203,26,48,-1,256,26,203,-1,253,55,257,-1,253,258,55,-1,131,31,259,-1,33,31,131,-1,260,211,261,-1,260,262,211,-1,103,173,262,-1,173,103,174,-1,208,263,171,-1,263,208,264,-1,265,266,267,-1,265,268,266,-1,256,269,270,-1,269,256,271,-1,272,231,273,-1,272,49,231,-1,171,202,172,-1,171,263,202,-1,274,275,276,-1,274,277,275,-1,278,279,276,-1,278,280,279,-1,36,281,39,-1,36,169,281,-1,194,282,192,-1,282,194,283,-1,284,166,196,-1,284,285,166,-1,286,287,288,-1,286,289,287,-1,290,291,292,-1,290,293,291,-1,294,295,296,-1,294,297,295,-1,120,20,19,-1,120,118,20,-1,27,137,204,-1,27,270,137,-1,78,168,79,-1,78,169,168,-1,298,158,125,-1,298,280,158,-1,299,300,190,-1,299,301,300,-1,225,94,224,-1,225,302,94,-1,251,257,303,-1,251,304,257,-1,155,57,59,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar2r_Geo_5_565_coordIndex_2()
		{
			int[] value = {154,57,155,-1,151,305,152,-1,305,151,306,-1,307,146,245,-1,146,307,147,-1,213,135,308,-1,135,213,205,-1,309,310,311,-1,310,309,312,-1,81,127,129,-1,81,80,127,-1,157,181,11,-1,181,157,313,-1,314,8,228,-1,4,8,314,-1,315,316,317,-1,315,282,316,-1,195,318,319,-1,318,195,192,-1,320,315,321,-1,320,318,315,-1,199,128,322,-1,129,128,199,-1,91,320,323,-1,91,324,320,-1,325,267,124,-1,267,325,265,-1,326,327,328,-1,326,89,327,-1,329,88,209,-1,329,85,88,-1,50,226,330,-1,50,331,226,-1,332,326,333,-1,332,330,326,-1,334,329,335,-1,334,336,329,-1,337,338,339,-1,337,335,338,-1,332,305,51,-1,340,305,332,-1,341,334,342,-1,341,343,334,-1,342,344,345,-1,344,342,337,-1,346,271,347,-1,348,271,346,-1,349,138,152,-1,350,138,349,-1,351,345,352,-1,351,353,345,-1,347,256,203,-1,271,256,347,-1,286,354,197,-1,355,354,286,-1,356,188,357,-1,356,10,188,-1,358,359,360,-1,358,355,359,-1,95,361,360,-1,362,361,95,-1,154,363,57,-1,363,154,364,-1,363,365,366,-1,365,363,367,-1,368,369,362,-1,370,369,368,-1,153,252,121,-1,252,153,371,-1,372,373,374,-1,372,365,373,-1,375,376,377,-1,375,374,376,-1,296,378,294,-1,379,378,296,-1,293,380,381,-1,380,293,290,-1,243,15,238,-1,243,214,15,-1,382,383,384,-1,383,382,378,-1,105,385,381,-1,105,386,385,-1,387,307,388,-1,387,389,307,-1,390,391,392,-1,391,390,384,-1,393,394,395,-1,394,393,386,-1,104,396,394,-1,397,396,104,-1,398,3,244,-1,177,3,398,-1,399,391,400,-1,399,401,391,-1,402,399,403,-1,402,404,399,-1,405,406,397,-1,407,406,405,-1,178,32,14,-1,32,178,234,-1,111,74,70,-1,71,74,111,-1,408,223,409,-1,408,377,223,-1,410,411,412,-1,410,350,411,-1,215,413,115,-1,215,352,413,-1,414,220,109,-1,220,414,404,-1,415,416,406,-1,415,417,416,-1,162,27,204,-1,161,27,162,-1,418,419,420,-1,419,418,421,-1,116,206,422,-1,206,116,115,-1,423,424,425,-1,424,423,426,-1,73,218,217,-1,73,72,218,-1,421,110,111,-1,418,110,421,-1,240,427,184,-1,427,240,428,-1,410,429,430,-1,429,410,412,-1,422,221,431,-1,422,206,221,-1,107,423,425,-1,107,220,423,-1,432,409,433,-1,409,432,408,-1,314,217,434,-1,228,217,314,-1,73,217,228,-1,417,435,416,-1,417,426,435,-1,221,414,109,-1,145,414,221,-1,145,311,414,-1,113,352,215,-1,113,351,352,-1,350,240,138,-1,410,240,350,-1,419,377,408,-1,419,375,377,-1,202,193,42,-1,285,167,166,-1,285,67,167,-1,436,67,285,-1,436,264,67,-1,283,264,436,-1,283,263,264,-1,283,202,263,-1,194,202,283,-1,194,193,202,-1,437,407,405,-1,434,407,437,-1,435,403,438,-1,435,402,403,-1,312,259,439,-1,259,312,309,-1,440,234,178,-1,234,440,441,-1,222,397,104,-1,405,397,222,-1,403,400,442,-1,403,399,400,-1,400,384,383,-1,400,391,384,-1,244,238,398,-1,244,243,238,-1,386,104,394,-1,104,386,105,-1,386,443,385,-1,386,393,443,-1,308,384,390,-1,384,308,382,-1,444,307,389,-1,307,444,147,-1,445,381,385,-1,381,445,293,-1,378,446,294,-1,378,382,446,-1,377,98,223,-1,377,376,98,-1,149,186,70,-1,186,149,447,-1,246,101,250,-1,102,101,246,-1,374,448,376,-1,374,373,448,-1,373,367,449,-1,373,365,367,-1,371,255,252,-1,255,371,450,-1,94,362,95,-1,368,362,94,-1,364,367,363,-1,367,364,451,-1,200,364,154,-1,364,200,452,-1,360,96,95,-1,360,359,96,-1,288,355,286,-1,359,355,288,-1,188,9,182,-1,188,10,9,-1,352,344,413,-1,352,345,344,-1,349,411,350,-1,411,349,453,-1,340,152,305,-1,349,152,340,-1,344,339,454,-1,344,337,339,-1,342,335,337,-1,342,334,335,-1,333,340,332,-1,455,340,333,-1,339,456,144,-1,339,338,456,-1,335,209,338,-1,335,329,209,-1,333,328,457,-1,333,326,328,-1,330,89,326,-1,330,226,89,-1,458,328,327,-1,459,328,458,-1,89,323,327,-1,89,91,323,-1,80,233,229,-1,41,233,80,-1,323,321,460,-1,323,320,321,-1,461,268,265,-1,461,300,268,-1,84,322,128,-1,84,462,322,-1,324,318,320,-1,324,319,318,-1,43,319,463,-1,319,43,195,-1,317,284,462,-1,317,316,284,-1,133,206,61,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar2r_Geo_5_565_coordIndex_3()
		{
			int[] value = {133,221,206,-1,249,232,183,-1,249,45,232,-1,129,76,81,-1,76,129,199,-1,464,64,63,-1,464,456,64,-1,390,213,308,-1,390,465,213,-1,245,388,307,-1,245,242,388,-1,55,303,257,-1,230,303,55,-1,370,153,99,-1,371,153,370,-1,92,224,2,-1,92,225,224,-1,301,268,300,-1,301,466,268,-1,346,280,298,-1,346,279,280,-1,132,259,309,-1,131,259,132,-1,297,446,467,-1,294,446,297,-1,293,468,291,-1,293,445,468,-1,288,0,239,-1,288,287,0,-1,66,167,67,-1,66,75,167,-1,42,195,43,-1,195,42,193,-1,39,159,40,-1,39,281,159,-1,469,276,279,-1,274,276,469,-1,276,470,278,-1,276,275,470,-1,37,39,41,-1,36,39,37,-1,124,272,210,-1,124,267,272,-1,270,151,137,-1,270,269,151,-1,210,273,471,-1,272,273,210,-1,77,171,170,-1,171,77,208,-1,267,49,272,-1,267,266,49,-1,472,262,260,-1,262,472,103,-1,261,473,260,-1,473,261,474,-1,258,56,55,-1,258,475,56,-1,235,53,28,-1,235,476,53,-1,161,235,25,-1,235,161,122,-1,255,258,253,-1,258,255,477,-1,17,398,238,-1,398,17,440,-1,230,10,356,-1,10,230,54,-1,58,102,246,-1,102,58,150,-1,244,5,242,-1,244,3,5,-1,21,313,157,-1,313,21,24,-1,245,214,243,-1,214,245,146,-1,4,6,8,-1,236,6,4,-1,247,155,59,-1,247,357,155,-1,478,251,303,-1,478,250,251,-1,22,475,93,-1,21,475,22,-1,121,254,476,-1,254,121,252,-1,256,27,26,-1,256,270,27,-1,254,257,304,-1,254,253,257,-1,31,439,259,-1,31,30,439,-1,262,212,211,-1,262,173,212,-1,441,30,234,-1,473,30,441,-1,479,124,126,-1,325,124,479,-1,227,265,325,-1,461,265,227,-1,271,480,269,-1,480,271,348,-1,480,231,306,-1,480,273,231,-1,75,191,38,-1,66,191,75,-1,233,481,482,-1,40,481,233,-1,34,277,274,-1,34,130,277,-1,481,280,278,-1,481,158,280,-1,282,436,316,-1,282,283,436,-1,197,289,286,-1,197,165,289,-1,182,180,248,-1,182,9,180,-1,483,295,484,-1,483,296,295,-1,174,237,175,-1,174,18,237,-1,169,479,281,-1,78,479,169,-1,469,203,35,-1,347,203,469,-1,331,49,266,-1,331,50,49,-1,302,368,94,-1,302,450,368,-1,304,179,53,-1,251,179,304,-1,306,51,305,-1,51,306,231,-1,5,314,485,-1,5,4,314,-1,310,486,392,-1,310,312,486,-1,127,229,65,-1,80,229,127,-1,148,119,187,-1,148,164,119,-1,228,71,73,-1,74,71,228,-1,322,160,199,-1,322,196,160,-1,192,315,318,-1,315,192,282,-1,321,317,487,-1,321,315,317,-1,463,301,299,-1,488,301,463,-1,324,90,488,-1,91,90,324,-1,87,84,83,-1,87,487,84,-1,85,82,88,-1,85,83,82,-1,331,90,226,-1,331,466,90,-1,458,87,86,-1,458,460,87,-1,336,85,329,-1,336,86,85,-1,51,330,332,-1,51,50,330,-1,343,336,334,-1,343,459,336,-1,63,470,464,-1,482,470,63,-1,298,348,346,-1,471,348,298,-1,457,341,489,-1,341,457,343,-1,341,345,353,-1,345,341,342,-1,277,142,275,-1,277,143,142,-1,455,490,453,-1,490,455,489,-1,490,351,491,-1,351,490,353,-1,130,143,277,-1,130,60,143,-1,452,197,354,-1,452,47,197,-1,96,2,224,-1,96,239,2,-1,302,93,477,-1,93,302,225,-1,451,355,358,-1,451,354,355,-1,358,361,449,-1,361,358,360,-1,478,357,247,-1,478,356,357,-1,57,366,201,-1,366,57,363,-1,362,448,361,-1,369,448,362,-1,370,98,369,-1,99,98,370,-1,366,372,447,-1,372,366,365,-1,372,375,492,-1,375,372,374,-1,296,443,379,-1,443,296,483,-1,290,444,380,-1,444,290,163,-1,103,17,16,-1,472,17,103,-1,493,378,379,-1,493,383,378,-1,381,106,105,-1,106,381,380,-1,222,389,387,-1,222,106,389,-1,465,474,261,-1,474,465,486,-1,395,493,393,-1,395,442,493,-1,396,395,394,-1,396,438,395,-1,437,388,485,-1,437,387,388,-1,401,392,391,-1,401,310,392,-1,404,401,399,-1,404,414,401,-1,396,406,416,-1,406,396,397,-1,177,236,3,-1,13,236,177,-1,297,484,295,-1,467,484,297,-1,134,484,467,-1,134,468,484,-1,20,175,237,-1,119,175,20,-1,119,189,175,-1,136,468,134,-1,136,291,468,-1,241,291,136,-1,241,292,291,-1,241,198,292,-1,189,198,241,-1,189,164,198,-1,119,164,189,-1,186,421,111,-1,421,186,492,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolar2r_Geo_5_565_coordIndex_4()
		{
			int[] value = {97,409,223,-1,184,409,97,-1,412,491,216,-1,412,411,491,-1,115,207,206,-1,115,413,207,-1,404,423,220,-1,423,404,402,-1,406,494,415,-1,494,406,407,-1,495,417,415,-1,495,496,417,-1,496,426,417,-1,496,424,426,-1,431,109,108,-1,431,221,109,-1,113,117,114,-1,117,113,215,-1,494,219,497,-1,217,219,494,-1,420,408,432,-1,420,419,408,-1,433,184,427,-1,433,409,184,-1,428,410,430,-1,428,240,410,-1,497,415,494,-1,415,497,495,-1,412,112,429,-1,216,112,412,-1,407,217,494,-1,217,407,434,-1,426,402,435,-1,426,423,402,-1,351,216,491,-1,113,216,351,-1,139,184,185,-1,240,184,139,-1,421,375,419,-1,421,492,375,-1,287,1,0,-1,289,1,287,-1,289,498,1,-1,165,498,289,-1,165,23,498,-1,46,23,165,-1,46,24,23,-1,46,313,24,-1,45,313,46,-1,45,181,313,-1,45,180,181,-1,45,248,180,-1,45,249,248,-1,434,485,314,-1,434,437,485,-1,416,438,396,-1,416,435,438,-1,414,310,401,-1,414,311,310,-1,474,312,439,-1,474,486,312,-1,405,387,437,-1,405,222,387,-1,438,442,395,-1,438,403,442,-1,442,383,493,-1,442,400,383,-1,472,440,17,-1,441,440,472,-1,380,389,106,-1,389,380,444,-1,379,393,493,-1,393,379,443,-1,213,261,211,-1,261,213,465,-1,163,147,444,-1,147,163,148,-1,483,385,443,-1,385,483,445,-1,446,308,135,-1,382,308,446,-1,447,492,186,-1,492,447,372,-1,201,447,149,-1,447,201,366,-1,376,369,98,-1,376,448,369,-1,373,361,448,-1,373,449,361,-1,247,250,478,-1,246,250,247,-1,450,477,255,-1,477,450,302,-1,451,449,367,-1,449,451,358,-1,452,451,364,-1,451,452,354,-1,239,359,288,-1,96,359,239,-1,452,232,47,-1,452,200,232,-1,413,454,207,-1,413,344,454,-1,453,491,411,-1,491,453,490,-1,455,349,340,-1,453,349,455,-1,454,144,62,-1,454,339,144,-1,489,353,490,-1,353,489,341,-1,455,457,489,-1,455,333,457,-1,275,464,470,-1,275,142,464,-1,338,64,456,-1,338,209,64,-1,457,459,343,-1,457,328,459,-1,125,471,298,-1,210,471,125,-1,229,482,63,-1,233,482,229,-1,459,86,336,-1,459,458,86,-1,327,460,458,-1,327,323,460,-1,460,487,87,-1,460,321,487,-1,466,488,90,-1,466,301,488,-1,487,462,84,-1,487,317,462,-1,488,319,324,-1,488,463,319,-1,299,43,463,-1,299,44,43,-1,462,196,322,-1,462,284,196,-1,207,62,61,-1,62,207,454,-1,145,309,311,-1,132,309,145,-1,97,162,185,-1,162,97,123,-1,2,498,92,-1,498,2,1,-1,456,142,144,-1,464,142,456,-1,486,390,392,-1,390,486,465,-1,485,242,5,-1,242,485,388,-1,70,150,149,-1,70,69,150,-1,185,204,139,-1,185,162,204,-1,200,183,232,-1,200,156,183,-1,450,370,368,-1,450,371,370,-1,266,466,331,-1,466,266,268,-1,347,279,346,-1,347,469,279,-1,281,126,159,-1,479,126,281,-1,190,44,299,-1,44,190,172,-1,292,163,290,-1,163,292,198,-1,135,467,446,-1,135,134,467,-1,445,484,468,-1,445,483,484,-1,498,22,92,-1,23,22,498,-1,264,68,67,-1,264,208,68,-1,285,316,436,-1,284,316,285,-1,158,40,159,-1,481,40,158,-1,35,274,469,-1,34,274,35,-1,482,278,470,-1,481,278,482,-1,170,300,461,-1,170,190,300,-1,269,306,151,-1,269,480,306,-1,348,273,480,-1,273,348,471,-1,77,461,227,-1,170,461,77,-1,78,325,479,-1,227,325,78,-1,472,473,441,-1,260,473,472,-1,189,212,173,-1,189,241,212,-1,473,439,30,-1,473,474,439,-1,21,56,475,-1,21,157,56,-1,476,304,53,-1,476,254,304,-1,122,476,235,-1,476,122,121,-1,477,475,258,-1,475,477,93,-1,440,177,398,-1,177,440,178,-1,303,356,478,-1,356,303,230,-1,155,188,156,-1,357,188,155,-1,102,69,100,-1,102,150,69,-1,146,120,214,-1,120,146,187,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar2r_Geo_5_565_normalIndex_1()
		{
			int[] value = {303,273,380,-1,455,428,415,-1,363,207,360,-1,49,45,82,-1,368,421,381,-1,492,486,487,-1,440,441,337,-1,421,368,363,-1,157,225,178,-1,178,153,157,-1,232,279,262,-1,232,201,235,-1,410,383,411,-1,145,99,269,-1,118,78,96,-1,112,121,75,-1,292,378,382,-1,146,204,253,-1,381,411,285,-1,422,491,477,-1,147,201,141,-1,110,129,137,-1,236,106,90,-1,64,86,65,-1,40,69,62,-1,180,216,233,-1,207,103,250,-1,301,335,304,-1,360,207,278,-1,138,96,84,-1,282,286,237,-1,78,66,79,-1,115,161,151,-1,159,175,162,-1,62,123,115,-1,401,484,418,-1,300,225,283,-1,439,497,480,-1,470,489,424,-1,41,31,13,-1,469,486,440,-1,52,37,94,-1,15,61,59,-1,345,301,322,-1,296,240,224,-1,183,173,200,-1,337,434,339,-1,492,429,441,-1,242,219,342,-1,306,264,290,-1,69,123,62,-1,67,127,81,-1,67,115,127,-1,78,79,84,-1,282,237,233,-1,95,220,206,-1,86,64,101,-1,215,213,248,-1,377,462,473,-1,368,214,182,-1,285,411,269,-1,22,23,55,-1,120,101,206,-1,420,373,379,-1,247,93,106,-1,398,467,462,-1,424,302,342,-1,217,85,83,-1,124,82,110,-1,264,172,218,-1,180,233,237,-1,133,138,84,-1,219,221,352,-1,379,263,344,-1,253,204,227,-1,133,174,196,-1,212,231,118,-1,330,276,341,-1,383,269,411,-1,393,438,305,-1,220,95,99,-1,279,235,285,-1,201,147,381,-1,214,42,41,-1,440,486,492,-1,475,464,381,-1,214,381,147,-1,42,147,73,-1,117,82,140,-1,35,56,83,-1,182,41,207,-1,339,434,429,-1,485,470,461,-1,322,250,321,-1,429,416,339,-1,41,103,207,-1,83,20,35,-1,117,49,82,-1,73,31,42,-1,214,368,381,-1,381,421,475,-1,492,441,440,-1,182,214,41,-1,381,235,201,-1,279,232,235,-1,99,145,220,-1,305,284,393,-1,383,145,269,-1,330,341,409,-1,118,126,212,-1,295,261,238,-1,295,348,261,-1,133,154,174,-1,227,324,253,-1,263,228,344,-1,219,352,342,-1,84,100,133,-1,237,212,180,-1,218,290,264,-1,110,137,124,-1,192,217,83,-1,342,470,424,-1,462,377,398,-1,106,272,247,-1,379,416,420,-1,101,64,206,-1,23,65,55,-1,341,271,382,-1,269,230,285,-1,182,363,368,-1,377,473,364,-1,213,270,248,-1,95,206,64,-1,152,144,86,-1,233,280,282,-1,96,78,84,-1,69,132,123,-1,306,320,264,-1,242,342,302,-1,365,307,316,-1,307,270,316,-1,492,450,429,-1,200,187,183,-1,296,309,240,-1,345,335,301,-1,241,289,205,-1,59,2,15,-1,131,101,120,-1,114,52,94,-1,469,440,438,-1,41,42,31,-1,470,488,489,-1,439,480,417,-1,283,350,300,-1,401,476,484,-1,62,115,67,-1,159,162,161,-1,115,151,127,-1,78,75,66,-1,282,299,286,-1,360,278,314,-1,207,250,278,-1,133,196,138,-1,57,40,62,-1,65,23,64,-1,236,272,106,-1,110,92,129,-1,73,147,141,-1,477,405,422,-1,285,235,381,-1,253,134,146,-1,382,271,292,-1,126,180,212,-1,121,77,75,-1,96,126,118,-1,410,411,437,-1,232,208,201,-1,232,262,221,-1,363,432,421,-1,337,318,440,-1,483,492,487,-1,42,214,147,-1,45,110,82,-1,363,182,207,-1,455,432,428,-1,380,436,303,-1,462,490,473,-1,281,270,307,-1,248,270,281,-1,413,446,447,-1,446,413,414,-1,90,5,7,-1,5,90,106,-1,104,56,35,-1,104,105,56,-1,29,73,71,-1,29,31,73,-1,267,203,209,-1,203,267,275,-1,230,279,285,-1,294,279,230,-1,203,129,128,-1,203,197,129,-1,220,383,374,-1,145,383,220,-1,431,365,404,-1,431,425,365,-1,469,393,425,-1,393,469,438,-1,280,244,276,-1,244,280,239,-1,357,427,353,-1,357,423,427,-1,294,332,297,-1,332,294,308,-1,351,405,346,-1,351,422,405,-1,276,271,341,-1,276,244,271,-1,108,72,111,-1,108,74,72,-1,116,158,111,-1,116,186,158,-1,118,229,112,-1,118,231,229,-1,238,255,295,-1,255,238,226,-1,160,174,154,-1,160,190,174,-1,358,288,406,-1,358,245,288,-1,135,169,176,-1,135,102,169,-1,109,181,87,-1,109,202,181,-1,429,337,441,-1,429,434,337,-1,262,377,364,-1,262,297,377,-1,286,212,237,-1,286,231,212,-1,274,172,264,-1,274,186,172,-1,454,426,409,-1,454,494,426,-1,350,439,417,-1,350,356,439,-1,71,128,80,-1,71,130,128,-1,85,236,90,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar2r_Geo_5_565_normalIndex_2()
		{
			int[] value = {217,236,85,-1,398,458,467,-1,458,398,394,-1,366,420,414,-1,420,366,373,-1,316,213,177,-1,213,316,270,-1,291,184,155,-1,184,291,333,-1,79,67,81,-1,79,66,67,-1,124,140,82,-1,140,124,148,-1,359,360,314,-1,428,360,359,-1,268,211,189,-1,268,255,211,-1,348,328,391,-1,328,348,295,-1,340,268,251,-1,340,328,268,-1,100,127,136,-1,81,127,100,-1,418,340,347,-1,418,412,340,-1,312,353,306,-1,353,312,357,-1,396,343,331,-1,396,401,343,-1,164,123,132,-1,164,159,123,-1,491,476,478,-1,491,496,476,-1,459,396,384,-1,459,478,396,-1,195,164,168,-1,195,179,164,-1,185,139,142,-1,185,168,139,-1,459,458,477,-1,457,458,459,-1,265,195,198,-1,265,258,195,-1,198,194,193,-1,194,198,185,-1,254,308,257,-1,310,308,254,-1,460,462,467,-1,472,462,460,-1,246,193,188,-1,246,252,193,-1,257,294,230,-1,308,294,257,-1,358,367,324,-1,395,367,358,-1,43,20,9,-1,43,45,20,-1,400,430,448,-1,400,395,430,-1,497,451,448,-1,498,451,497,-1,217,313,236,-1,313,217,311,-1,313,375,319,-1,375,313,371,-1,444,495,498,-1,435,495,444,-1,302,267,242,-1,267,302,336,-1,376,407,408,-1,376,375,407,-1,403,452,449,-1,403,408,452,-1,87,44,109,-1,38,44,87,-1,102,91,48,-1,91,102,135,-1,446,492,483,-1,446,450,492,-1,76,11,47,-1,11,76,44,-1,37,39,48,-1,37,21,39,-1,260,366,362,-1,260,243,366,-1,167,51,165,-1,51,167,47,-1,12,24,19,-1,24,12,21,-1,52,33,24,-1,60,33,52,-1,471,455,447,-1,475,455,471,-1,16,51,10,-1,16,58,51,-1,3,16,14,-1,3,4,16,-1,113,53,60,-1,107,53,113,-1,464,411,381,-1,411,464,437,-1,322,278,250,-1,301,278,322,-1,445,488,482,-1,445,449,488,-1,465,392,386,-1,465,472,392,-1,187,191,183,-1,187,188,191,-1,50,2,59,-1,2,50,4,-1,46,30,53,-1,46,27,30,-1,352,262,364,-1,221,262,352,-1,355,399,385,-1,399,355,369,-1,173,152,149,-1,152,173,183,-1,0,25,8,-1,25,0,17,-1,304,289,241,-1,304,335,289,-1,369,345,322,-1,355,345,369,-1,490,474,485,-1,474,490,479,-1,465,389,456,-1,389,465,386,-1,149,131,119,-1,149,152,131,-1,15,0,8,-1,15,2,0,-1,433,482,466,-1,482,433,445,-1,359,241,256,-1,314,241,359,-1,304,241,314,-1,27,18,30,-1,27,17,18,-1,131,50,59,-1,120,50,131,-1,120,155,50,-1,240,188,187,-1,240,246,188,-1,472,490,462,-1,465,490,472,-1,399,449,445,-1,399,403,449,-1,271,261,292,-1,190,196,174,-1,190,216,196,-1,222,216,190,-1,222,239,216,-1,226,239,222,-1,226,244,239,-1,226,271,244,-1,238,271,226,-1,238,261,271,-1,277,107,113,-1,256,107,277,-1,18,14,26,-1,18,3,14,-1,333,374,390,-1,374,333,291,-1,468,437,464,-1,437,468,442,-1,114,60,52,-1,113,60,114,-1,14,10,6,-1,14,16,10,-1,10,47,11,-1,10,51,47,-1,447,483,471,-1,447,446,483,-1,21,52,24,-1,52,21,37,-1,21,32,39,-1,21,12,32,-1,177,47,167,-1,47,177,76,-1,234,366,243,-1,366,234,373,-1,89,48,39,-1,48,89,102,-1,44,125,109,-1,44,76,125,-1,449,489,488,-1,449,452,489,-1,247,321,250,-1,321,247,317,-1,5,31,29,-1,13,31,5,-1,408,453,452,-1,408,407,453,-1,407,371,402,-1,407,375,371,-1,336,275,267,-1,275,336,349,-1,439,498,497,-1,444,498,439,-1,311,371,313,-1,371,311,370,-1,192,311,217,-1,311,192,298,-1,448,480,497,-1,448,430,480,-1,406,395,358,-1,430,395,406,-1,20,49,35,-1,20,45,49,-1,188,194,191,-1,188,193,194,-1,460,392,472,-1,392,460,388,-1,457,467,458,-1,460,467,457,-1,194,142,143,-1,194,185,142,-1,198,168,185,-1,198,195,168,-1,384,457,459,-1,387,457,384,-1,142,63,55,-1,142,139,63,-1,168,132,139,-1,168,164,132,-1,384,331,323,-1,384,396,331,-1,478,401,396,-1,478,476,401,-1,259,331,343,-1,249,331,259,-1,401,347,343,-1,401,418,347,-1,66,77,57,-1,75,77,66,-1,347,251,266,-1,347,340,251,-1,354,423,357,-1,354,426,423,-1,151,136,127,-1,151,150,136,-1,412,328,340,-1,412,391,328,-1,378,391,443,-1,391,378,348,-1,189,160,150,-1,189,211,160,-1,101,152,86,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar2r_Geo_5_565_normalIndex_3()
		{
			int[] value = {101,131,152,-1,105,134,56,-1,105,146,134,-1,81,84,79,-1,84,81,100,-1,28,69,40,-1,28,63,69,-1,167,316,177,-1,167,338,316,-1,414,362,366,-1,414,413,362,-1,129,80,128,-1,92,80,129,-1,435,302,424,-1,336,302,435,-1,300,417,380,-1,300,350,417,-1,494,423,426,-1,494,493,423,-1,254,186,274,-1,254,158,186,-1,206,374,291,-1,220,374,206,-1,202,125,199,-1,109,125,202,-1,102,166,169,-1,102,89,166,-1,406,303,436,-1,406,288,303,-1,180,196,216,-1,180,138,196,-1,292,348,378,-1,348,292,261,-1,112,218,121,-1,112,229,218,-1,156,111,158,-1,108,111,156,-1,111,70,116,-1,111,72,70,-1,78,112,75,-1,118,112,78,-1,306,351,320,-1,306,353,351,-1,297,398,377,-1,297,332,398,-1,320,346,315,-1,351,346,320,-1,282,276,330,-1,276,282,280,-1,353,422,351,-1,353,427,422,-1,463,425,431,-1,425,463,469,-1,404,419,431,-1,419,404,397,-1,197,137,129,-1,197,170,137,-1,208,141,201,-1,208,210,141,-1,221,208,232,-1,208,221,219,-1,275,197,203,-1,197,275,287,-1,487,471,483,-1,471,487,468,-1,92,45,43,-1,45,92,110,-1,106,13,5,-1,13,106,93,-1,447,415,413,-1,447,455,415,-1,157,148,124,-1,148,157,153,-1,414,450,446,-1,450,414,420,-1,428,363,360,-1,432,363,428,-1,7,85,90,-1,7,9,85,-1,36,71,80,-1,36,29,71,-1,225,170,283,-1,157,170,225,-1,242,209,210,-1,209,242,267,-1,294,262,279,-1,294,297,262,-1,209,128,130,-1,209,203,128,-1,383,390,374,-1,383,410,390,-1,425,307,365,-1,425,393,307,-1,442,410,437,-1,419,410,442,-1,293,306,290,-1,312,306,293,-1,299,357,312,-1,354,357,299,-1,308,334,332,-1,334,308,310,-1,334,405,394,-1,334,346,405,-1,138,126,96,-1,180,126,138,-1,77,122,68,-1,121,122,77,-1,99,74,108,-1,99,95,74,-1,122,186,116,-1,122,172,186,-1,255,222,211,-1,255,226,222,-1,324,245,358,-1,324,227,245,-1,35,117,104,-1,35,49,117,-1,88,181,171,-1,88,87,181,-1,438,318,305,-1,438,440,318,-1,231,293,229,-1,286,293,231,-1,156,230,269,-1,257,230,156,-1,496,422,427,-1,496,491,422,-1,356,444,439,-1,356,349,444,-1,130,73,141,-1,71,73,130,-1,394,477,458,-1,477,394,405,-1,415,359,361,-1,415,428,359,-1,184,327,165,-1,184,333,327,-1,67,57,62,-1,66,57,67,-1,379,339,416,-1,379,344,339,-1,314,301,304,-1,278,301,314,-1,136,133,100,-1,136,154,133,-1,295,268,328,-1,268,295,255,-1,251,189,163,-1,251,268,189,-1,443,494,454,-1,481,494,443,-1,412,484,481,-1,418,484,412,-1,162,151,161,-1,162,163,151,-1,159,115,123,-1,159,161,115,-1,496,484,476,-1,496,493,484,-1,259,162,175,-1,259,266,162,-1,179,159,164,-1,179,175,159,-1,477,478,459,-1,477,491,478,-1,258,179,195,-1,258,249,179,-1,40,70,28,-1,68,70,40,-1,274,310,254,-1,315,310,274,-1,323,265,329,-1,265,323,258,-1,265,193,252,-1,193,265,198,-1,74,22,72,-1,74,23,22,-1,387,326,388,-1,326,387,329,-1,326,246,325,-1,246,326,252,-1,95,23,74,-1,95,64,23,-1,298,324,367,-1,298,253,324,-1,480,380,417,-1,480,436,380,-1,356,283,287,-1,283,356,350,-1,370,395,400,-1,370,367,395,-1,400,451,402,-1,451,400,448,-1,36,9,7,-1,36,43,9,-1,236,319,272,-1,319,236,313,-1,498,453,451,-1,495,453,498,-1,435,489,495,-1,424,489,435,-1,319,376,317,-1,376,319,375,-1,376,403,372,-1,403,376,408,-1,87,32,38,-1,32,87,88,-1,135,234,91,-1,234,135,263,-1,469,487,486,-1,463,487,469,-1,1,44,38,-1,1,11,44,-1,48,94,37,-1,94,48,91,-1,114,243,260,-1,114,94,243,-1,338,397,404,-1,397,338,327,-1,19,1,12,-1,19,6,1,-1,33,19,24,-1,33,26,19,-1,277,362,361,-1,277,260,362,-1,58,165,51,-1,58,184,165,-1,4,58,16,-1,4,50,58,-1,33,53,30,-1,53,33,60,-1,475,432,455,-1,421,432,475,-1,202,171,181,-1,199,171,202,-1,215,171,199,-1,215,166,171,-1,337,305,318,-1,339,305,337,-1,339,284,305,-1,248,166,215,-1,248,169,166,-1,281,169,248,-1,281,176,169,-1,281,228,176,-1,284,228,281,-1,284,344,228,-1,339,344,284,-1,321,369,322,-1,369,321,372,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolar2r_Geo_5_565_normalIndex_4()
		{
			int[] value = {470,482,488,-1,485,482,470,-1,386,325,309,-1,386,392,325,-1,183,144,152,-1,183,191,144,-1,4,0,2,-1,0,4,3,-1,53,97,46,-1,97,53,107,-1,54,27,46,-1,54,34,27,-1,34,17,27,-1,34,25,17,-1,119,59,61,-1,119,131,59,-1,240,200,224,-1,200,240,187,-1,97,205,98,-1,241,205,97,-1,385,445,433,-1,385,399,445,-1,466,485,474,-1,466,482,485,-1,479,465,456,-1,479,490,465,-1,98,46,97,-1,46,98,54,-1,386,296,389,-1,309,296,386,-1,107,241,97,-1,241,107,256,-1,17,3,18,-1,17,0,3,-1,246,309,325,-1,240,309,246,-1,473,485,461,-1,490,485,473,-1,369,403,399,-1,369,372,403,-1,288,273,303,-1,245,273,288,-1,245,223,273,-1,227,223,245,-1,227,178,223,-1,204,178,227,-1,204,153,178,-1,204,148,153,-1,146,148,204,-1,146,140,148,-1,146,117,140,-1,146,104,117,-1,146,105,104,-1,256,361,359,-1,256,277,361,-1,30,26,33,-1,30,18,26,-1,50,184,58,-1,50,155,184,-1,397,333,390,-1,397,327,333,-1,113,260,277,-1,113,114,260,-1,26,6,19,-1,26,14,6,-1,6,11,1,-1,6,10,11,-1,463,468,487,-1,442,468,463,-1,91,243,94,-1,243,91,234,-1,38,12,1,-1,12,38,32,-1,316,404,365,-1,404,316,338,-1,263,373,234,-1,373,263,379,-1,88,39,32,-1,39,88,89,-1,125,177,213,-1,76,177,125,-1,317,372,321,-1,372,317,376,-1,272,317,247,-1,317,272,319,-1,452,495,489,-1,452,453,495,-1,407,451,453,-1,407,402,451,-1,7,29,36,-1,5,29,7,-1,349,287,275,-1,287,349,356,-1,370,402,371,-1,402,370,400,-1,298,370,311,-1,370,298,367,-1,436,430,406,-1,480,430,436,-1,298,134,253,-1,298,192,134,-1,191,143,144,-1,191,194,143,-1,388,325,392,-1,325,388,326,-1,387,460,457,-1,388,460,387,-1,143,55,65,-1,143,142,55,-1,329,252,326,-1,252,329,265,-1,387,323,329,-1,387,384,323,-1,72,28,70,-1,72,22,28,-1,139,69,63,-1,139,132,69,-1,323,249,258,-1,323,331,249,-1,264,315,274,-1,320,315,264,-1,57,68,40,-1,77,68,57,-1,249,175,179,-1,249,259,175,-1,343,266,259,-1,343,347,266,-1,266,163,162,-1,266,251,163,-1,493,481,484,-1,493,494,481,-1,163,150,151,-1,163,189,150,-1,481,391,412,-1,481,443,391,-1,454,378,443,-1,454,382,378,-1,150,154,136,-1,150,160,154,-1,144,65,86,-1,65,144,143,-1,120,291,155,-1,206,291,120,-1,470,352,461,-1,352,470,342,-1,380,223,300,-1,223,380,273,-1,63,22,55,-1,28,22,63,-1,327,167,165,-1,167,327,338,-1,361,413,415,-1,413,361,362,-1,250,93,247,-1,250,103,93,-1,461,364,473,-1,461,352,364,-1,192,56,134,-1,192,83,56,-1,349,435,444,-1,349,336,435,-1,427,493,496,-1,493,427,423,-1,257,158,254,-1,257,156,158,-1,229,290,218,-1,293,290,229,-1,409,382,454,-1,382,409,341,-1,176,263,135,-1,263,176,228,-1,213,199,125,-1,213,215,199,-1,89,171,166,-1,89,88,171,-1,223,225,300,-1,178,225,223,-1,239,233,216,-1,239,280,233,-1,190,211,222,-1,160,211,190,-1,172,121,218,-1,122,121,172,-1,269,108,156,-1,99,108,269,-1,68,116,70,-1,122,116,68,-1,330,426,354,-1,330,409,426,-1,332,394,398,-1,332,334,394,-1,310,346,334,-1,346,310,315,-1,282,354,299,-1,330,354,282,-1,286,312,293,-1,299,312,286,-1,463,419,442,-1,431,419,463,-1,284,307,393,-1,284,281,307,-1,419,390,410,-1,419,397,390,-1,157,137,170,-1,157,124,137,-1,210,130,141,-1,210,209,130,-1,219,210,208,-1,210,219,242,-1,287,170,197,-1,170,287,283,-1,468,475,471,-1,475,468,464,-1,80,43,36,-1,43,80,92,-1,85,20,83,-1,9,20,85,-1,13,103,41,-1,13,93,103,-1,420,429,450,-1,429,420,416,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar3c_Geo_5_571_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,11,-1,14,15,16,-1,17,18,16,-1,19,20,21,-1,22,23,24,-1,25,26,27,-1,27,23,28,-1,29,26,25,-1,30,31,32,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,15,48,49,-1,50,49,51,-1,52,53,54,-1,55,56,53,-1,57,58,59,-1,60,58,61,-1,32,62,63,-1,64,65,66,-1,52,67,55,-1,68,30,69,-1,70,71,72,-1,73,74,75,-1,76,77,78,-1,62,79,80,-1,81,82,83,-1,84,85,86,-1,43,87,44,-1,88,89,90,-1,91,92,93,-1,94,95,96,-1,97,98,99,-1,100,60,101,-1,102,22,103,-1,104,99,105,-1,106,107,108,-1,109,110,111,-1,96,112,113,-1,114,115,116,-1,114,117,118,-1,111,110,118,-1,42,119,120,-1,120,121,42,-1,122,55,123,-1,124,103,125,-1,126,127,128,-1,129,130,131,-1,131,12,10,-1,132,73,133,-1,67,65,134,-1,135,51,136,-1,137,47,46,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,147,88,148,-1,85,84,7,-1,49,48,51,-1,149,150,80,-1,101,151,28,-1,152,24,153,-1,154,41,117,-1,35,36,155,-1,156,40,39,-1,157,156,34,-1,120,119,156,-1,158,35,34,-1,36,158,37,-1,159,118,41,-1,160,41,161,-1,23,22,102,-1,162,163,122,-1,163,164,165,-1,166,15,167,-1,31,30,82,-1,138,168,169,-1,170,124,125,-1,171,172,173,-1,174,137,175,-1,66,52,176,-1,73,177,133,-1,178,179,180,-1,181,182,183,-1,10,9,184,-1,185,186,187,-1,152,188,189,-1,190,22,24,-1,191,192,193,-1,120,85,194,-1,95,154,112,-1,82,30,83,-1,195,109,88,-1,148,111,159,-1,110,196,115,-1,117,114,197,-1,191,198,199,-1,116,92,193,-1,115,93,92,-1,200,201,202,-1,203,77,204,-1,102,103,124,-1,205,91,93,-1,206,207,208,-1,207,209,87,-1,210,211,212,-1,86,213,214,-1,85,120,213,-1,8,84,144,-1,215,208,216,-1,217,218,219,-1,131,127,220,-1,129,221,222,-1,81,146,79,-1,162,80,150,-1,31,223,62,-1,62,223,79,-1,128,127,131,-1,30,224,83,-1,176,52,225,-1,224,226,83,-1,65,52,66,-1,69,32,63,-1,227,228,229,-1,230,57,229,-1,135,231,54,-1,165,50,56,-1,232,48,15,-1,233,168,234,-1,41,40,119,-1,44,87,209,-1,119,44,235,-1,61,230,155,-1,26,236,27,-1,25,27,28,-1,124,237,100,-1,238,14,16,-1,239,18,240,-1,11,13,201,-1,10,12,11,-1,241,182,70,-1,241,70,72,-1,124,170,237,-1,201,242,11,-1,200,243,244,-1,240,19,239,-1,245,246,16,-1,142,141,247,-1,185,22,190,-1,151,25,28,-1,160,161,248,-1,155,36,61,-1,157,34,33,-1,44,209,235,-1,235,41,119,-1,43,207,87,-1,233,249,168,-1,250,47,21,-1,232,15,14,-1,165,49,50,-1,53,56,54,-1,50,54,56,-1,231,225,54,-1,57,245,229,-1,227,166,228,-1,69,63,123,-1,65,67,52,-1,52,54,225,-1,30,68,224,-1,128,131,251,-1,150,163,162,-1,81,79,223,-1,129,184,221,-1,219,179,217,-1,215,252,253,-1,8,144,254,-1,85,213,86,-1,86,214,145,-1,210,212,255,-1,42,44,119,-1,215,89,208,-1,207,43,208,-1,3,256,178,-1,113,94,96,-1,101,102,124,-1,22,185,103,-1,77,221,204,-1,115,92,116,-1,192,116,193,-1,191,257,198,-1,115,114,110,-1,159,235,148,-1,195,88,106,-1,258,116,192,-1,7,6,244,-1,95,112,96,-1,63,122,123,-1,190,24,189,-1,191,259,192,-1,189,24,152,-1,97,260,261,-1,187,103,185,-1,10,184,129,-1,4,181,183,-1,180,3,178,-1,73,262,177,-1,176,175,66,-1,137,263,175,-1,173,46,171,-1,169,264,138,-1,57,265,245,-1,265,246,245,-1,166,227,15,-1,165,56,163,-1,23,102,28,-1,196,109,205,-1,160,26,41,-1,41,235,159,-1,40,156,119,-1,34,266,158,-1,156,157,120,-1,156,266,34,-1,39,266,156,-1,35,158,36,-1,154,117,112,-1,41,118,117,-1,26,29,41,-1,153,94,152,-1,28,102,101,-1,80,267,149,-1,122,163,56,-1,85,7,194,-1,147,148,206,-1,81,144,146,-1,138,268,139,-1,46,173,137,-1,136,231,135,-1,67,134,269,-1,132,133,270,-1,10,129,131,-1,202,218,255,-1,180,4,3,-1,181,126,128,-1,25,151,38,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar3c_Geo_5_571_coordIndex_2()
		{
			int[] value = {120,194,121,-1,118,159,111,-1,150,164,163,-1,243,7,244,-1,114,118,110,-1,114,116,197,-1,109,196,110,-1,108,195,106,-1,104,105,271,-1,101,124,100,-1,154,95,153,-1,97,99,104,-1,153,95,94,-1,272,259,273,-1,89,147,208,-1,88,147,89,-1,208,147,206,-1,42,121,216,-1,274,81,83,-1,80,162,62,-1,62,32,31,-1,203,274,83,-1,77,226,78,-1,73,132,74,-1,70,275,71,-1,55,53,52,-1,64,66,276,-1,245,227,229,-1,265,57,59,-1,50,135,54,-1,55,122,56,-1,51,135,50,-1,49,167,15,-1,47,250,45,-1,39,41,29,-1,35,228,33,-1,32,69,30,-1,25,38,29,-1,27,236,23,-1,236,26,160,-1,16,246,17,-1,9,11,242,-1,6,277,244,-1,7,84,8,-1,278,177,279,-1,278,280,177,-1,2,281,0,-1,2,282,281,-1,283,284,285,-1,283,286,284,-1,287,288,289,-1,290,288,287,-1,291,292,172,-1,291,293,292,-1,294,233,234,-1,294,295,233,-1,296,297,298,-1,299,297,296,-1,300,19,240,-1,20,19,300,-1,301,19,21,-1,301,239,19,-1,136,225,231,-1,225,136,302,-1,228,149,33,-1,166,149,228,-1,0,303,304,-1,281,303,0,-1,176,302,305,-1,176,225,302,-1,251,70,128,-1,70,251,275,-1,223,82,81,-1,223,31,82,-1,79,267,80,-1,146,267,79,-1,130,222,270,-1,130,129,222,-1,306,200,202,-1,306,243,200,-1,219,180,179,-1,180,219,126,-1,253,306,212,-1,252,306,253,-1,217,255,218,-1,217,210,255,-1,89,253,90,-1,89,215,253,-1,272,152,258,-1,188,152,272,-1,105,199,307,-1,273,199,105,-1,272,105,99,-1,272,273,105,-1,308,9,277,-1,308,184,9,-1,191,309,257,-1,191,193,309,-1,310,107,311,-1,310,108,107,-1,309,109,195,-1,309,205,109,-1,205,309,91,-1,274,144,81,-1,144,274,254,-1,312,313,314,-1,313,312,271,-1,97,315,98,-1,97,261,315,-1,316,261,260,-1,186,261,316,-1,317,103,187,-1,317,125,103,-1,198,108,310,-1,108,198,257,-1,254,203,204,-1,254,274,203,-1,217,178,311,-1,217,179,178,-1,221,76,222,-1,221,77,76,-1,226,318,78,-1,224,318,226,-1,281,319,303,-1,281,320,319,-1,175,305,174,-1,305,175,176,-1,292,321,322,-1,292,323,321,-1,21,305,301,-1,21,174,305,-1,142,17,324,-1,142,247,17,-1,140,168,138,-1,140,234,168,-1,59,60,100,-1,60,59,58,-1,154,161,41,-1,154,248,161,-1,158,39,37,-1,158,266,39,-1,60,151,101,-1,60,61,151,-1,249,250,143,-1,249,45,250,-1,174,47,137,-1,21,47,174,-1,322,276,263,-1,322,321,276,-1,136,325,302,-1,232,325,136,-1,326,304,327,-1,326,0,304,-1,68,318,224,-1,328,318,68,-1,320,75,319,-1,75,320,329,-1,132,222,76,-1,132,270,222,-1,219,202,220,-1,202,219,218,-1,126,220,127,-1,220,126,219,-1,330,3,5,-1,331,3,330,-1,316,298,332,-1,316,296,298,-1,296,260,290,-1,316,260,296,-1,307,271,105,-1,307,313,271,-1,164,49,165,-1,49,164,167,-1,90,106,88,-1,90,211,106,-1,257,195,108,-1,257,309,195,-1,188,315,189,-1,188,98,315,-1,333,313,307,-1,313,333,331,-1,333,199,198,-1,199,333,307,-1,248,153,24,-1,248,154,153,-1,260,104,334,-1,260,97,104,-1,94,197,116,-1,94,113,197,-1,208,42,216,-1,208,43,42,-1,128,182,181,-1,182,128,70,-1,204,8,254,-1,308,8,204,-1,76,74,132,-1,76,78,74,-1,283,4,183,-1,283,5,4,-1,335,303,336,-1,303,335,304,-1,267,33,149,-1,267,214,33,-1,265,337,324,-1,265,59,337,-1,136,48,232,-1,136,51,48,-1,239,325,238,-1,301,325,239,-1,21,300,250,-1,21,20,300,-1,169,142,338,-1,143,142,169,-1,229,155,230,-1,228,155,229,-1,35,155,228,-1,24,160,248,-1,23,160,24,-1,23,236,160,-1,247,18,17,-1,247,240,18,-1,243,252,7,-1,243,306,252,-1,299,290,287,-1,299,296,290,-1,140,294,234,-1,140,339,294,-1,172,340,291,-1,340,172,171,-1,326,1,0,-1,341,1,326,-1,284,342,285,-1,284,343,342,-1,281,344,320,-1,281,282,344,-1,177,345,279,-1,345,177,262,-1,280,346,275,-1,280,278,346,-1,320,347,329,-1,344,347,320,-1,286,183,348,-1,286,283,183,-1,349,289,288,-1,350,289,349,-1,293,323,292,-1,323,293,351,-1,295,352,233,-1,295,353,352,-1,298,354,139,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar3c_Geo_5_571_coordIndex_3()
		{
			int[] value = {298,297,354,-1,9,244,277,-1,9,242,244,-1,29,37,39,-1,37,29,38,-1,352,46,45,-1,171,46,352,-1,61,57,230,-1,57,61,58,-1,321,64,276,-1,327,64,321,-1,269,328,68,-1,328,269,134,-1,301,302,325,-1,301,305,302,-1,73,329,262,-1,73,75,329,-1,226,203,83,-1,77,203,226,-1,63,162,122,-1,63,62,162,-1,355,270,133,-1,355,130,270,-1,220,12,131,-1,220,13,12,-1,180,181,4,-1,180,126,181,-1,196,93,115,-1,93,196,205,-1,188,99,98,-1,188,272,99,-1,113,117,197,-1,113,112,117,-1,330,342,314,-1,342,330,285,-1,271,334,104,-1,334,271,312,-1,107,211,210,-1,211,107,106,-1,258,94,116,-1,152,94,258,-1,235,206,148,-1,235,207,206,-1,235,209,207,-1,314,349,312,-1,314,342,349,-1,315,186,185,-1,186,315,261,-1,187,268,317,-1,332,268,187,-1,333,310,256,-1,198,310,333,-1,210,311,107,-1,210,217,311,-1,251,130,355,-1,251,131,130,-1,308,6,8,-1,308,277,6,-1,356,78,318,-1,78,356,74,-1,336,319,356,-1,303,319,336,-1,134,64,335,-1,65,64,134,-1,15,245,16,-1,227,245,15,-1,172,322,173,-1,322,172,292,-1,264,268,138,-1,264,317,268,-1,170,337,237,-1,170,338,337,-1,121,7,252,-1,121,194,7,-1,167,149,166,-1,164,149,167,-1,149,164,150,-1,143,300,141,-1,143,250,300,-1,45,233,352,-1,249,233,45,-1,264,338,170,-1,264,169,338,-1,264,125,317,-1,170,125,264,-1,173,263,137,-1,263,173,322,-1,263,66,175,-1,263,276,66,-1,327,335,64,-1,327,304,335,-1,328,356,318,-1,336,356,328,-1,74,319,75,-1,74,356,319,-1,275,355,280,-1,275,251,355,-1,256,331,333,-1,256,3,331,-1,332,139,268,-1,298,139,332,-1,332,186,316,-1,187,186,332,-1,290,334,288,-1,290,260,334,-1,199,259,191,-1,199,273,259,-1,285,5,283,-1,5,285,330,-1,146,214,267,-1,214,146,145,-1,109,148,88,-1,109,111,148,-1,193,91,309,-1,193,92,91,-1,258,259,272,-1,258,192,259,-1,255,306,202,-1,255,212,306,-1,288,312,349,-1,288,334,312,-1,190,315,185,-1,190,189,315,-1,314,331,330,-1,314,313,331,-1,311,256,310,-1,256,311,178,-1,90,212,211,-1,90,253,212,-1,144,86,145,-1,84,86,144,-1,201,220,202,-1,220,201,13,-1,204,184,308,-1,184,204,221,-1,133,280,355,-1,280,133,177,-1,123,67,269,-1,55,67,123,-1,246,324,17,-1,265,324,246,-1,134,336,328,-1,336,134,335,-1,323,327,321,-1,326,327,323,-1,69,269,68,-1,69,123,269,-1,324,338,142,-1,324,337,338,-1,14,325,232,-1,325,14,238,-1,168,143,169,-1,249,143,168,-1,38,61,36,-1,38,151,61,-1,214,157,33,-1,213,157,214,-1,120,157,213,-1,59,237,337,-1,237,59,100,-1,240,141,300,-1,247,141,240,-1,18,238,16,-1,239,238,18,-1,201,244,242,-1,201,200,244,-1,252,216,121,-1,252,215,216,-1,357,275,346,-1,275,357,71,-1,354,140,139,-1,354,339,140,-1,171,353,340,-1,353,171,352,-1,351,326,323,-1,351,341,326,-1,342,350,349,-1,343,350,342,-1,182,348,183,-1,241,348,182,-1,347,262,329,-1,347,345,262,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar3c_Geo_5_571_normalIndex_1()
		{
			int[] value = {194,189,171,-1,302,316,277,-1,239,87,221,-1,328,346,350,-1,351,320,350,-1,241,232,144,-1,94,62,144,-1,28,40,29,-1,143,235,216,-1,263,264,273,-1,273,235,209,-1,280,264,263,-1,126,32,59,-1,234,299,283,-1,267,291,268,-1,293,248,255,-1,43,119,6,-1,13,22,16,-1,232,279,304,-1,289,304,274,-1,205,203,252,-1,212,245,203,-1,154,148,101,-1,151,148,210,-1,59,45,88,-1,199,180,186,-1,205,175,212,-1,197,126,112,-1,348,341,330,-1,301,278,257,-1,332,313,292,-1,45,68,93,-1,72,77,238,-1,96,81,82,-1,119,20,6,-1,102,73,84,-1,38,63,44,-1,165,170,161,-1,120,100,116,-1,97,151,131,-1,123,143,76,-1,140,116,155,-1,198,281,225,-1,66,69,50,-1,161,14,156,-1,158,85,129,-1,158,262,174,-1,50,69,174,-1,43,130,105,-1,105,64,43,-1,178,212,166,-1,75,76,36,-1,356,335,353,-1,354,344,343,-1,343,351,346,-1,315,301,318,-1,175,180,190,-1,276,274,249,-1,41,16,22,-1,2,21,0,-1,34,39,19,-1,90,54,48,-1,127,102,79,-1,81,96,87,-1,304,279,274,-1,173,195,93,-1,131,200,209,-1,132,216,247,-1,213,255,262,-1,283,267,260,-1,237,248,293,-1,223,237,299,-1,105,130,237,-1,294,283,299,-1,267,294,291,-1,53,174,255,-1,258,255,266,-1,235,143,123,-1,117,236,178,-1,236,270,285,-1,215,232,288,-1,32,126,77,-1,2,3,10,-1,27,75,36,-1,31,67,56,-1,47,41,138,-1,186,205,160,-1,301,309,318,-1,326,355,345,-1,357,347,323,-1,346,328,339,-1,107,106,70,-1,132,89,122,-1,149,143,216,-1,176,104,111,-1,105,81,71,-1,170,213,14,-1,77,126,238,-1,133,66,102,-1,79,50,53,-1,69,51,85,-1,262,158,182,-1,176,250,217,-1,129,63,111,-1,85,44,63,-1,306,307,310,-1,303,313,319,-1,123,76,75,-1,42,38,44,-1,137,153,91,-1,153,12,20,-1,300,208,233,-1,82,114,86,-1,81,105,114,-1,221,96,90,-1,58,91,46,-1,334,317,352,-1,343,335,324,-1,354,342,349,-1,72,48,68,-1,117,93,195,-1,32,35,45,-1,45,35,68,-1,353,335,343,-1,126,243,238,-1,160,205,218,-1,243,284,238,-1,180,205,186,-1,112,59,88,-1,201,253,229,-1,222,154,229,-1,276,251,252,-1,285,289,245,-1,240,279,232,-1,9,3,4,-1,255,248,130,-1,6,20,12,-1,130,6,159,-1,210,222,260,-1,264,275,273,-1,263,273,209,-1,75,55,97,-1,167,241,144,-1,49,62,37,-1,350,320,307,-1,346,351,350,-1,336,347,348,-1,336,348,330,-1,75,27,55,-1,307,333,350,-1,306,224,287,-1,37,28,49,-1,157,125,144,-1,39,34,60,-1,107,143,149,-1,200,263,209,-1,258,266,265,-1,260,267,210,-1,223,299,234,-1,6,12,159,-1,159,255,130,-1,119,153,20,-1,9,8,3,-1,18,16,29,-1,240,232,241,-1,285,304,289,-1,203,245,252,-1,289,252,245,-1,251,218,252,-1,154,157,229,-1,201,215,253,-1,112,88,166,-1,180,175,205,-1,205,252,218,-1,126,197,243,-1,353,343,337,-1,195,236,117,-1,72,68,35,-1,354,339,342,-1,352,355,334,-1,58,92,95,-1,221,90,228,-1,81,114,82,-1,82,86,54,-1,300,233,305,-1,43,6,130,-1,58,73,91,-1,153,119,91,-1,302,298,326,-1,156,165,161,-1,131,123,75,-1,143,107,76,-1,313,342,319,-1,85,63,129,-1,104,129,111,-1,176,172,250,-1,85,158,69,-1,53,159,79,-1,133,102,198,-1,108,129,104,-1,87,239,287,-1,170,14,161,-1,88,178,166,-1,149,216,122,-1,176,139,104,-1,122,216,132,-1,120,136,115,-1,70,76,107,-1,346,339,354,-1,316,357,323,-1,345,302,326,-1,301,295,309,-1,160,138,186,-1,41,141,138,-1,56,22,31,-1,10,11,2,-1,154,109,157,-1,109,125,157,-1,215,201,232,-1,285,245,236,-1,235,123,209,-1,51,66,42,-1,258,264,255,-1,255,159,53,-1,248,237,130,-1,299,297,294,-1,237,223,105,-1,237,297,299,-1,293,297,237,-1,283,294,267,-1,213,262,14,-1,255,174,262,-1,264,280,255,-1,247,165,132,-1,209,123,131,-1,93,103,173,-1,178,236,245,-1,81,87,71,-1,127,79,137,-1,72,90,48,-1,2,25,21,-1,22,56,41,-1,249,251,276,-1,175,190,183,-1,315,318,340,-1,346,354,343,-1,310,317,305,-1,345,316,302,-1,357,356,353,-1,263,200,268,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar3c_Geo_5_571_normalIndex_2()
		{
			int[] value = {105,71,64,-1,174,53,50,-1,195,270,236,-1,224,87,287,-1,158,174,69,-1,158,129,182,-1,66,51,69,-1,225,133,198,-1,140,155,164,-1,131,75,97,-1,213,170,247,-1,120,116,140,-1,247,170,165,-1,99,139,152,-1,73,127,91,-1,102,127,73,-1,91,127,137,-1,43,64,46,-1,202,72,238,-1,93,117,45,-1,45,59,32,-1,303,202,238,-1,313,284,292,-1,301,315,278,-1,348,338,341,-1,212,203,205,-1,199,186,187,-1,157,201,229,-1,109,154,101,-1,289,276,252,-1,212,178,245,-1,274,276,289,-1,304,288,232,-1,16,18,13,-1,293,255,280,-1,283,253,234,-1,59,112,126,-1,263,268,280,-1,273,275,235,-1,275,264,258,-1,144,125,94,-1,328,350,333,-1,239,311,287,-1,87,96,221,-1,322,309,308,-1,322,325,309,-1,171,179,194,-1,171,177,179,-1,290,254,261,-1,290,282,254,-1,134,128,124,-1,135,128,134,-1,61,146,67,-1,61,145,146,-1,5,9,4,-1,5,7,9,-1,118,78,74,-1,121,78,118,-1,24,28,37,-1,40,28,24,-1,52,28,29,-1,52,49,28,-1,249,218,251,-1,218,249,150,-1,253,173,234,-1,215,173,253,-1,194,185,192,-1,179,185,194,-1,160,150,83,-1,160,218,150,-1,337,348,353,-1,348,337,338,-1,35,77,72,-1,35,32,77,-1,68,103,93,-1,48,103,68,-1,344,349,340,-1,344,354,349,-1,231,306,310,-1,231,224,306,-1,352,345,355,-1,345,352,356,-1,95,231,233,-1,92,231,95,-1,334,305,317,-1,334,300,305,-1,73,95,84,-1,73,58,95,-1,99,132,108,-1,89,132,99,-1,155,217,230,-1,152,217,155,-1,99,155,116,-1,99,152,155,-1,321,328,311,-1,321,339,328,-1,176,98,172,-1,176,111,98,-1,286,281,314,-1,286,225,281,-1,98,66,133,-1,98,42,66,-1,42,98,38,-1,202,90,72,-1,90,202,228,-1,168,226,242,-1,226,168,164,-1,120,113,100,-1,120,115,113,-1,110,115,136,-1,106,115,110,-1,33,76,70,-1,33,36,76,-1,250,225,286,-1,225,250,172,-1,228,303,319,-1,228,202,303,-1,334,326,314,-1,334,355,326,-1,342,332,349,-1,342,313,332,-1,284,227,292,-1,243,227,284,-1,179,211,185,-1,179,219,211,-1,138,83,47,-1,83,138,160,-1,146,188,147,-1,146,193,188,-1,29,83,52,-1,29,47,83,-1,39,94,80,-1,39,60,94,-1,0,3,2,-1,0,4,3,-1,101,151,97,-1,151,101,148,-1,213,266,255,-1,213,265,266,-1,294,293,291,-1,294,297,293,-1,151,200,131,-1,151,210,200,-1,8,18,19,-1,8,13,18,-1,47,16,41,-1,29,16,47,-1,147,187,141,-1,147,188,187,-1,249,162,150,-1,240,162,249,-1,204,192,191,-1,204,194,192,-1,197,227,243,-1,206,227,197,-1,219,257,211,-1,257,219,269,-1,315,349,332,-1,315,340,349,-1,352,310,324,-1,310,352,317,-1,356,324,335,-1,324,356,352,-1,256,302,277,-1,259,302,256,-1,110,74,65,-1,110,118,74,-1,118,136,135,-1,110,136,118,-1,230,164,155,-1,230,226,164,-1,270,304,285,-1,304,270,288,-1,84,198,102,-1,84,208,198,-1,172,133,225,-1,172,98,133,-1,89,113,122,-1,89,100,113,-1,271,226,230,-1,226,271,259,-1,271,217,250,-1,217,271,230,-1,265,247,216,-1,265,213,247,-1,136,140,142,-1,136,120,140,-1,165,182,129,-1,165,156,182,-1,91,43,46,-1,91,119,43,-1,353,347,357,-1,347,353,348,-1,319,221,228,-1,321,221,319,-1,332,278,315,-1,332,292,278,-1,290,316,323,-1,290,277,316,-1,184,185,181,-1,185,184,192,-1,103,234,173,-1,103,86,234,-1,109,57,80,-1,109,101,57,-1,249,279,240,-1,249,274,279,-1,49,162,167,-1,52,162,49,-1,29,24,18,-1,29,40,24,-1,10,39,30,-1,19,39,10,-1,229,260,222,-1,253,260,229,-1,283,260,253,-1,216,258,265,-1,235,258,216,-1,235,275,258,-1,60,62,94,-1,60,37,62,-1,224,92,87,-1,224,231,92,-1,121,135,134,-1,121,118,135,-1,0,5,4,-1,0,1,5,-1,67,26,61,-1,26,67,31,-1,204,189,194,-1,207,189,204,-1,254,246,261,-1,254,244,246,-1,179,220,219,-1,179,177,220,-1,309,296,308,-1,296,309,295,-1,325,327,338,-1,325,322,327,-1,219,272,269,-1,220,272,219,-1,282,323,312,-1,282,290,323,-1,163,124,128,-1,169,124,163,-1,145,193,146,-1,193,145,196,-1,7,17,9,-1,7,15,17,-1,74,23,21,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar3c_Geo_5_571_normalIndex_3()
		{
			int[] value = {74,78,23,-1,328,287,311,-1,328,333,287,-1,280,291,293,-1,291,280,268,-1,17,22,13,-1,31,22,17,-1,210,154,222,-1,154,210,148,-1,188,199,187,-1,191,199,188,-1,183,206,197,-1,206,183,190,-1,52,150,162,-1,52,83,150,-1,301,269,295,-1,301,257,269,-1,284,303,238,-1,313,303,284,-1,88,117,178,-1,88,45,117,-1,331,340,318,-1,331,344,340,-1,324,351,343,-1,324,320,351,-1,345,357,316,-1,345,356,357,-1,51,44,85,-1,44,51,42,-1,89,116,100,-1,89,99,116,-1,156,262,182,-1,156,14,262,-1,256,246,242,-1,246,256,261,-1,164,142,140,-1,142,164,168,-1,281,208,300,-1,208,281,198,-1,108,165,129,-1,132,165,108,-1,159,137,79,-1,159,153,137,-1,159,12,153,-1,242,163,168,-1,242,246,163,-1,113,106,107,-1,106,113,115,-1,70,25,33,-1,65,25,70,-1,271,286,298,-1,250,286,271,-1,300,314,281,-1,300,334,314,-1,337,344,331,-1,337,343,344,-1,321,239,221,-1,321,311,239,-1,214,292,227,-1,292,214,278,-1,181,211,214,-1,185,211,181,-1,190,199,184,-1,180,199,190,-1,232,157,144,-1,201,157,232,-1,67,147,56,-1,147,67,146,-1,11,25,2,-1,11,33,25,-1,27,57,55,-1,27,30,57,-1,64,87,92,-1,64,71,87,-1,288,173,215,-1,270,173,288,-1,173,270,195,-1,19,24,34,-1,19,18,24,-1,13,9,17,-1,8,9,13,-1,11,30,27,-1,11,10,30,-1,11,36,33,-1,27,36,11,-1,56,141,41,-1,141,56,147,-1,141,186,138,-1,141,187,186,-1,191,184,199,-1,191,192,184,-1,206,214,227,-1,181,214,206,-1,278,211,257,-1,278,214,211,-1,338,331,325,-1,338,337,331,-1,298,259,271,-1,298,302,259,-1,65,21,25,-1,74,21,65,-1,65,106,110,-1,70,106,65,-1,135,142,128,-1,135,136,142,-1,217,139,176,-1,217,152,139,-1,261,277,290,-1,277,261,256,-1,48,86,103,-1,86,48,54,-1,66,79,102,-1,66,50,79,-1,111,38,98,-1,111,63,38,-1,108,139,99,-1,108,104,139,-1,305,231,310,-1,305,233,231,-1,128,168,163,-1,128,142,168,-1,149,113,107,-1,149,122,113,-1,242,259,256,-1,242,226,259,-1,314,298,286,-1,298,314,326,-1,84,233,208,-1,84,95,233,-1,90,82,54,-1,96,82,90,-1,307,324,310,-1,324,307,320,-1,319,339,321,-1,339,319,342,-1,318,325,331,-1,325,318,309,-1,166,175,183,-1,212,175,166,-1,125,80,94,-1,109,80,125,-1,190,181,206,-1,181,190,184,-1,193,191,188,-1,204,191,193,-1,112,183,197,-1,112,166,183,-1,80,30,39,-1,80,57,30,-1,241,162,240,-1,162,241,167,-1,3,19,10,-1,8,19,3,-1,268,210,267,-1,268,200,210,-1,86,223,234,-1,114,223,86,-1,105,223,114,-1,101,55,57,-1,55,101,97,-1,37,34,24,-1,60,34,37,-1,62,167,144,-1,49,167,62,-1,307,287,333,-1,307,306,287,-1,92,46,64,-1,92,58,46,-1,329,338,327,-1,338,329,341,-1,23,0,21,-1,23,1,0,-1,31,15,26,-1,15,31,17,-1,196,204,193,-1,196,207,204,-1,246,169,163,-1,244,169,246,-1,347,312,323,-1,336,312,347,-1,272,295,269,-1,272,296,295,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar3r_Geo_5_577_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,2,27,28,-1,29,30,31,-1,32,33,34,-1,35,36,37,-1,38,39,17,-1,40,41,42,-1,43,44,45,-1,46,10,47,-1,48,49,50,-1,23,51,19,-1,52,53,54,-1,55,56,57,-1,58,59,60,-1,61,62,63,-1,64,65,66,-1,66,67,64,-1,68,69,55,-1,70,71,72,-1,73,74,58,-1,75,76,61,-1,77,78,79,-1,80,81,82,-1,83,77,81,-1,84,75,85,-1,84,86,75,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,99,100,96,-1,101,102,103,-1,104,105,106,-1,107,108,109,-1,110,111,112,-1,113,114,99,-1,115,116,114,-1,117,118,115,-1,119,120,121,-1,122,123,124,-1,125,126,127,-1,128,129,130,-1,131,132,133,-1,134,132,131,-1,135,136,137,-1,127,126,138,-1,139,140,125,-1,141,142,143,-1,144,118,117,-1,145,123,122,-1,146,147,148,-1,149,150,151,-1,152,111,110,-1,153,154,104,-1,114,100,99,-1,155,110,91,-1,156,157,158,-1,159,106,160,-1,161,162,163,-1,164,99,165,-1,166,167,168,-1,91,112,169,-1,170,171,13,-1,172,173,74,-1,174,175,89,-1,87,176,177,-1,86,178,76,-1,179,180,181,-1,182,81,80,-1,98,78,77,-1,85,183,184,-1,74,70,185,-1,71,68,186,-1,69,187,56,-1,177,188,189,-1,9,12,10,-1,190,191,192,-1,193,184,194,-1,57,56,195,-1,196,197,198,-1,199,200,201,-1,202,203,204,-1,205,206,207,-1,208,209,210,-1,211,212,213,-1,28,27,198,-1,214,215,4,-1,52,216,217,-1,218,219,220,-1,161,221,222,-1,181,26,223,-1,40,224,213,-1,39,35,37,-1,54,53,225,-1,45,44,226,-1,227,194,228,-1,229,230,192,-1,30,32,231,-1,232,233,234,-1,2,235,236,-1,237,21,23,-1,238,16,18,-1,16,15,239,-1,18,240,241,-1,171,37,242,-1,243,12,14,-1,6,9,7,-1,170,8,244,-1,245,246,219,-1,247,248,249,-1,1,27,2,-1,1,250,27,-1,247,249,251,-1,244,252,170,-1,9,11,7,-1,13,171,242,-1,241,237,18,-1,15,253,239,-1,18,20,238,-1,237,23,19,-1,254,24,222,-1,24,26,222,-1,236,255,2,-1,256,232,234,-1,32,34,231,-1,229,257,230,-1,227,228,258,-1,226,258,45,-1,54,225,259,-1,39,37,260,-1,40,213,41,-1,223,42,181,-1,222,162,161,-1,261,262,263,-1,52,264,216,-1,227,258,226,-1,27,265,198,-1,213,224,211,-1,208,266,209,-1,205,267,206,-1,202,268,203,-1,199,201,269,-1,48,270,271,-1,198,265,196,-1,195,272,57,-1,193,194,227,-1,12,243,10,-1,177,273,188,-1,69,56,55,-1,71,186,72,-1,74,185,58,-1,85,75,183,-1,98,97,78,-1,182,83,81,-1,181,42,179,-1,86,76,75,-1,87,177,88,-1,174,89,187,-1,172,74,73,-1,13,6,170,-1,91,169,92,-1,166,168,97,-1,164,165,274,-1,163,275,161,-1,159,104,106,-1,156,276,157,-1,155,91,90,-1,114,277,100,-1,153,278,154,-1,152,279,111,-1,149,151,280,-1,146,148,281,-1,145,122,282,-1,117,283,144,-1,143,284,141,-1,139,125,285,-1,127,138,286,-1,137,287,135,-1,131,288,134,-1,131,133,289,-1,128,130,290,-1,127,285,125,-1,124,291,122,-1,120,292,121,-1,117,115,293,-1,116,277,114,-1,113,99,164,-1,110,112,91,-1,107,109,294,-1,104,154,105,-1,103,295,101,-1,99,96,165,-1,96,166,97,-1,93,296,94,-1,90,92,297,-1,89,175,87,-1,83,98,77,-1,80,82,298,-1,77,79,299,-1,75,61,183,-1,73,58,300,-1,70,72,185,-1,68,55,186,-1,195,216,272,-1,216,261,272,-1,61,300,62,-1,58,185,59,-1,55,57,301,-1,54,302,52,-1,51,136,19,-1,46,47,302,-1,53,189,225,-1,303,11,304,-1,42,223,40,-1,39,260,17,-1,36,242,37,-1,52,47,264,-1,52,302,47,-1,33,305,34,-1,30,231,31,-1,2,28,235,-1,306,224,40,-1,25,223,26,-1,22,307,23,-1,18,237,19,-1,16,238,17,-1,13,242,14,-1,170,6,8,-1,2,255,0,-1,197,250,200,-1,197,196,250,-1,308,309,310,-1,311,309,308,-1,312,313,314,-1,312,315,313,-1,316,317,318,-1,316,319,317,-1,249,320,256,-1,248,320,249,-1,320,232,256,-1,320,321,232,-1,219,322,323,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar3r_Geo_5_577_coordIndex_2()
		{
			int[] value = {246,322,219,-1,324,30,29,-1,324,325,30,-1,299,326,82,-1,327,326,299,-1,237,266,21,-1,237,241,266,-1,252,15,328,-1,15,252,253,-1,329,24,254,-1,24,329,330,-1,331,22,208,-1,332,22,331,-1,333,222,221,-1,333,254,222,-1,51,137,136,-1,137,51,334,-1,44,47,10,-1,44,43,47,-1,335,336,337,-1,335,338,336,-1,323,220,219,-1,339,220,323,-1,296,315,94,-1,296,313,315,-1,340,341,342,-1,340,343,341,-1,310,80,308,-1,182,80,310,-1,274,344,164,-1,274,345,344,-1,232,346,233,-1,232,347,346,-1,10,304,11,-1,10,46,304,-1,276,348,244,-1,348,276,349,-1,257,350,230,-1,257,301,350,-1,351,352,63,-1,352,351,353,-1,262,45,263,-1,262,43,45,-1,354,63,62,-1,63,354,351,-1,355,356,357,-1,356,355,358,-1,359,360,66,-1,360,359,361,-1,54,46,302,-1,54,362,46,-1,14,193,243,-1,363,193,14,-1,210,364,365,-1,364,210,209,-1,366,93,367,-1,368,93,366,-1,271,49,48,-1,369,49,271,-1,224,50,211,-1,224,48,50,-1,370,221,161,-1,371,221,370,-1,372,342,121,-1,342,372,340,-1,245,54,259,-1,245,362,54,-1,205,268,373,-1,205,207,268,-1,374,375,376,-1,374,326,375,-1,41,206,267,-1,41,213,206,-1,257,72,186,-1,72,257,229,-1,44,243,226,-1,10,243,44,-1,184,363,85,-1,363,184,193,-1,215,377,378,-1,377,215,357,-1,177,217,88,-1,177,189,217,-1,236,369,379,-1,236,235,369,-1,380,373,381,-1,380,205,373,-1,78,168,381,-1,97,168,78,-1,330,382,383,-1,330,384,382,-1,322,3,385,-1,322,246,3,-1,386,387,64,-1,386,297,387,-1,388,177,176,-1,388,273,177,-1,389,68,71,-1,389,390,68,-1,105,389,391,-1,105,392,389,-1,109,178,86,-1,109,393,178,-1,157,339,158,-1,157,394,339,-1,386,395,396,-1,395,386,397,-1,176,398,399,-1,398,176,87,-1,400,401,390,-1,400,102,401,-1,402,168,167,-1,402,403,168,-1,345,404,344,-1,405,404,345,-1,275,402,406,-1,275,163,402,-1,400,407,408,-1,407,400,392,-1,328,170,252,-1,328,171,170,-1,90,409,155,-1,409,90,396,-1,410,411,412,-1,411,410,399,-1,413,414,415,-1,413,406,414,-1,416,417,418,-1,417,416,368,-1,411,419,420,-1,419,411,421,-1,422,103,408,-1,422,423,103,-1,104,424,153,-1,424,104,159,-1,425,39,38,-1,425,107,39,-1,31,111,279,-1,31,231,111,-1,409,426,427,-1,426,409,428,-1,331,429,430,-1,331,431,429,-1,151,432,280,-1,151,415,432,-1,426,433,434,-1,433,426,435,-1,419,436,437,-1,436,419,438,-1,422,439,440,-1,439,422,441,-1,148,442,281,-1,148,424,442,-1,253,443,239,-1,253,348,443,-1,444,152,445,-1,444,279,152,-1,341,446,365,-1,341,447,446,-1,150,448,151,-1,150,449,448,-1,445,450,451,-1,450,445,452,-1,433,453,454,-1,453,433,455,-1,122,456,282,-1,122,436,456,-1,439,457,458,-1,457,439,459,-1,146,460,461,-1,146,281,460,-1,120,335,292,-1,120,462,335,-1,463,321,320,-1,321,463,464,-1,465,282,466,-1,465,145,282,-1,125,467,126,-1,125,457,467,-1,468,469,461,-1,135,469,468,-1,131,150,149,-1,131,289,150,-1,470,233,471,-1,470,234,233,-1,472,473,474,-1,473,472,475,-1,476,477,470,-1,476,478,477,-1,476,290,130,-1,290,476,470,-1,479,143,142,-1,479,473,143,-1,123,480,124,-1,123,481,480,-1,133,482,289,-1,133,483,482,-1,484,485,486,-1,485,484,465,-1,487,488,489,-1,487,469,488,-1,490,283,491,-1,490,144,283,-1,492,141,284,-1,492,493,141,-1,51,494,334,-1,495,494,51,-1,475,143,473,-1,143,475,454,-1,470,451,290,-1,470,471,451,-1,449,289,482,-1,289,449,150,-1,487,461,469,-1,487,146,461,-1,140,457,125,-1,140,458,457,-1,124,496,291,-1,124,492,496,-1,497,259,225,-1,497,214,259,-1,361,214,497,-1,359,214,361,-1,498,214,359,-1,499,214,498,-1,358,214,499,-1,358,355,214,-1,445,471,444,-1,451,471,445,-1,239,500,240,-1,239,443,500,-1,459,467,457,-1,467,459,501,-1,282,502,466,-1,282,456,502,-1,455,496,453,-1,496,455,503,-1,452,472,450,-1,472,452,504,-1,505,449,506,-1,449,505,448,-1,507,508,343,-1,507,317,508,-1,452,152,509,-1,452,445,152,-1,462,338,335,-1,462,349,338,-1,510,281,442,-1,460,281,510,-1,441,459,439,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar3r_Geo_5_577_coordIndex_3()
		{
			int[] value = {459,441,278,-1,436,511,456,-1,436,438,511,-1,435,455,433,-1,455,435,512,-1,114,293,115,-1,293,114,113,-1,448,415,151,-1,448,413,415,-1,412,420,512,-1,420,412,411,-1,155,427,509,-1,427,155,409,-1,244,253,252,-1,253,244,348,-1,159,442,424,-1,442,159,513,-1,511,103,423,-1,511,295,103,-1,514,406,413,-1,514,275,406,-1,404,319,316,-1,319,404,515,-1,101,516,517,-1,295,516,101,-1,518,412,519,-1,412,518,410,-1,231,112,111,-1,231,34,112,-1,393,108,513,-1,108,393,109,-1,102,408,103,-1,408,102,400,-1,406,167,414,-1,406,402,167,-1,310,405,345,-1,309,405,310,-1,163,403,402,-1,163,180,403,-1,390,392,400,-1,392,390,389,-1,398,175,517,-1,398,87,175,-1,397,518,395,-1,518,397,520,-1,521,385,522,-1,521,322,385,-1,172,393,160,-1,393,172,178,-1,391,71,70,-1,391,389,71,-1,523,388,520,-1,388,523,273,-1,297,524,387,-1,297,92,524,-1,303,339,394,-1,339,303,220,-1,236,95,94,-1,95,236,379,-1,381,79,78,-1,381,373,79,-1,271,383,382,-1,270,383,271,-1,82,77,299,-1,81,77,82,-1,88,195,89,-1,88,216,195,-1,88,217,216,-1,64,525,65,-1,64,387,525,-1,4,246,245,-1,3,246,4,-1,63,183,61,-1,183,63,352,-1,229,185,72,-1,185,229,59,-1,375,526,527,-1,375,203,526,-1,375,204,203,-1,375,528,204,-1,529,495,51,-1,529,506,495,-1,326,528,375,-1,326,327,528,-1,23,529,51,-1,23,307,529,-1,28,50,49,-1,28,198,50,-1,382,369,271,-1,379,369,382,-1,366,417,368,-1,417,366,429,-1,530,19,136,-1,20,19,530,-1,36,14,242,-1,36,363,14,-1,245,214,4,-1,245,259,214,-1,361,188,360,-1,188,361,497,-1,358,525,356,-1,525,358,499,-1,57,350,301,-1,57,531,350,-1,190,62,60,-1,62,190,354,-1,348,462,443,-1,348,349,462,-1,220,304,218,-1,304,220,303,-1,305,5,378,-1,33,5,305,-1,251,293,532,-1,117,293,251,-1,113,532,293,-1,113,533,532,-1,447,343,508,-1,343,447,341,-1,313,416,534,-1,313,296,416,-1,219,362,245,-1,218,362,219,-1,338,535,336,-1,338,156,535,-1,241,209,266,-1,241,536,209,-1,491,234,537,-1,491,283,234,-1,25,40,223,-1,25,306,40,-1,221,538,333,-1,538,221,371,-1,332,430,538,-1,332,331,430,-1,330,25,24,-1,25,330,383,-1,260,15,17,-1,328,15,260,-1,327,79,202,-1,327,299,79,-1,385,5,33,-1,385,3,5,-1,336,539,540,-1,539,336,535,-1,372,464,463,-1,464,372,541,-1,533,318,532,-1,316,318,533,-1,320,542,463,-1,320,248,542,-1,314,534,515,-1,314,313,534,-1,269,311,308,-1,201,311,269,-1,200,1,201,-1,200,250,1,-1,405,515,404,-1,405,314,515,-1,344,316,533,-1,404,316,344,-1,0,315,312,-1,0,255,315,-1,247,317,507,-1,247,318,317,-1,337,540,543,-1,540,337,336,-1,321,347,232,-1,321,544,347,-1,545,322,521,-1,322,545,323,-1,325,32,30,-1,325,522,32,-1,546,200,199,-1,546,197,200,-1,298,326,374,-1,326,298,82,-1,21,208,22,-1,21,266,208,-1,306,48,224,-1,306,270,48,-1,547,254,333,-1,254,547,329,-1,332,307,22,-1,332,548,307,-1,191,60,59,-1,60,191,190,-1,264,261,216,-1,264,262,261,-1,292,337,541,-1,292,335,337,-1,323,158,339,-1,158,323,545,-1,94,255,236,-1,315,255,94,-1,418,508,549,-1,508,418,447,-1,308,298,269,-1,80,298,308,-1,345,182,310,-1,274,182,345,-1,347,31,346,-1,347,29,31,-1,303,7,11,-1,7,303,394,-1,157,244,8,-1,244,157,276,-1,120,536,500,-1,536,120,119,-1,261,550,272,-1,261,263,550,-1,215,355,357,-1,215,214,355,-1,498,66,65,-1,66,498,359,-1,189,52,217,-1,53,52,189,-1,193,226,243,-1,193,227,226,-1,551,17,238,-1,551,38,17,-1,431,365,446,-1,365,431,210,-1,367,95,384,-1,93,95,367,-1,207,203,268,-1,207,526,203,-1,552,371,370,-1,548,371,552,-1,283,256,234,-1,256,283,249,-1,527,376,375,-1,527,546,376,-1,527,197,546,-1,527,198,197,-1,212,198,527,-1,211,198,212,-1,211,50,198,-1,301,186,55,-1,186,301,257,-1,300,60,62,-1,300,58,60,-1,43,264,47,-1,264,43,262,-1,258,263,45,-1,228,263,258,-1,353,263,228,-1,531,230,350,-1,531,192,230,-1,353,550,263,-1,351,550,353,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolar3r_Geo_5_577_coordIndex_4()
		{
			int[] value = {351,531,550,-1,354,531,351,-1,190,531,354,-1,192,531,190,-1,524,357,356,-1,524,377,357,-1,66,523,67,-1,523,66,360,-1,300,76,73,-1,76,300,61,-1,201,0,311,-1,0,201,1,-1,179,205,380,-1,179,267,205,-1,403,381,168,-1,403,380,381,-1,85,36,84,-1,36,85,363,-1,169,378,377,-1,169,305,378,-1,397,64,67,-1,397,386,64,-1,69,390,401,-1,390,69,68,-1,391,106,105,-1,106,391,173,-1,294,86,84,-1,294,109,86,-1,396,297,386,-1,396,90,297,-1,410,176,399,-1,410,388,176,-1,102,174,401,-1,102,101,174,-1,330,367,384,-1,330,329,367,-1,83,96,98,-1,165,96,83,-1,296,368,416,-1,368,296,93,-1,96,553,166,-1,100,553,96,-1,392,154,407,-1,154,392,105,-1,39,294,35,-1,39,107,294,-1,396,428,409,-1,428,396,395,-1,399,421,411,-1,421,399,398,-1,553,415,414,-1,432,415,553,-1,547,429,366,-1,547,430,429,-1,419,516,438,-1,419,421,516,-1,408,441,422,-1,441,408,407,-1,510,107,425,-1,510,108,107,-1,540,325,324,-1,540,539,325,-1,428,435,426,-1,435,428,519,-1,370,505,552,-1,505,370,514,-1,277,280,432,-1,116,280,277,-1,447,417,446,-1,447,418,417,-1,420,437,503,-1,437,420,419,-1,423,440,502,-1,440,423,422,-1,153,148,501,-1,148,153,424,-1,554,38,551,-1,554,425,38,-1,279,346,31,-1,444,346,279,-1,427,434,504,-1,434,427,426,-1,431,208,210,-1,331,208,431,-1,116,118,555,-1,118,116,115,-1,454,434,433,-1,454,475,434,-1,437,122,291,-1,122,437,436,-1,440,458,556,-1,458,440,439,-1,554,461,460,-1,468,461,554,-1,464,544,321,-1,464,543,544,-1,542,343,340,-1,542,507,343,-1,454,284,143,-1,284,454,453,-1,466,485,465,-1,485,466,556,-1,126,147,138,-1,126,467,147,-1,241,500,536,-1,241,240,500,-1,288,149,555,-1,288,131,149,-1,450,474,128,-1,474,450,472,-1,469,287,488,-1,135,287,469,-1,134,144,490,-1,144,134,288,-1,481,145,557,-1,145,481,123,-1,483,495,482,-1,494,495,483,-1,145,484,557,-1,484,145,465,-1,138,489,286,-1,489,138,487,-1,129,474,558,-1,129,128,474,-1,493,124,480,-1,493,492,124,-1,558,473,479,-1,473,558,474,-1,537,470,477,-1,470,537,234,-1,485,139,486,-1,140,139,485,-1,451,128,290,-1,128,451,450,-1,144,555,118,-1,144,288,555,-1,506,482,495,-1,482,506,449,-1,138,146,487,-1,138,147,146,-1,485,458,140,-1,485,556,458,-1,453,492,284,-1,492,453,496,-1,444,233,346,-1,471,233,444,-1,551,468,554,-1,530,468,551,-1,501,147,467,-1,147,501,148,-1,502,556,466,-1,556,502,440,-1,503,291,496,-1,291,503,437,-1,504,475,472,-1,475,504,434,-1,280,555,149,-1,555,280,116,-1,506,552,505,-1,506,529,552,-1,509,504,452,-1,504,509,427,-1,543,324,544,-1,543,540,324,-1,460,425,554,-1,460,510,425,-1,278,501,459,-1,501,278,153,-1,456,423,502,-1,456,511,423,-1,512,503,455,-1,503,512,420,-1,319,508,317,-1,319,549,508,-1,448,514,413,-1,448,505,514,-1,519,512,435,-1,512,519,412,-1,110,509,152,-1,509,110,155,-1,349,156,338,-1,349,276,156,-1,510,513,108,-1,510,442,513,-1,407,278,441,-1,278,407,154,-1,295,438,516,-1,511,438,295,-1,370,275,514,-1,370,161,275,-1,100,432,553,-1,277,432,100,-1,421,517,516,-1,421,398,517,-1,395,519,428,-1,519,395,518,-1,539,522,325,-1,539,521,522,-1,160,513,159,-1,513,160,393,-1,414,166,553,-1,414,167,166,-1,329,366,367,-1,329,547,366,-1,83,274,165,-1,274,83,182,-1,162,180,163,-1,162,181,180,-1,174,517,175,-1,101,517,174,-1,520,410,518,-1,410,520,388,-1,112,305,169,-1,112,34,305,-1,35,84,36,-1,35,294,84,-1,173,160,106,-1,160,173,172,-1,70,173,391,-1,173,70,74,-1,69,174,187,-1,401,174,69,-1,67,520,397,-1,520,67,523,-1,92,377,524,-1,92,169,377,-1,9,13,12,-1,6,13,9,-1,178,73,76,-1,178,172,73,-1,311,312,309,-1,312,311,0,-1,180,380,403,-1,180,179,380,-1,42,267,179,-1,42,41,267,-1,89,56,187,-1,89,195,56,-1,360,273,523,-1,273,360,188,-1,387,356,525,-1,387,524,356,-1,218,46,362,-1,218,304,46,-1,352,184,183,-1,184,352,194,-1,135,530,136,-1,530,135,468,-1,235,49,369,-1,235,28,49,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmolar3r_Geo_5_577_coordIndex_5()
		{
			int[] value = {202,528,327,-1,202,204,528,-1,342,365,364,-1,342,341,365,-1,119,209,536,-1,209,119,364,-1,529,548,552,-1,307,548,529,-1,222,181,162,-1,222,26,181,-1,206,526,207,-1,206,527,526,-1,384,379,382,-1,95,379,384,-1,446,429,431,-1,429,446,417,-1,238,530,551,-1,530,238,20,-1,212,206,213,-1,206,212,527,-1,188,225,189,-1,188,497,225,-1,499,65,525,-1,65,499,498,-1,272,531,57,-1,272,550,531,-1,352,228,194,-1,352,353,228,-1,59,192,191,-1,59,229,192,-1,500,462,120,-1,500,443,462,-1,394,8,7,-1,8,394,157,-1,215,5,4,-1,5,215,378,-1,117,249,283,-1,251,249,117,-1,164,533,113,-1,164,344,533,-1,376,199,374,-1,199,376,546,-1,534,418,549,-1,534,416,418,-1,463,340,372,-1,463,542,340,-1,158,535,156,-1,158,545,535,-1,121,541,372,-1,541,121,292,-1,364,121,342,-1,119,121,364,-1,548,538,371,-1,332,538,548,-1,333,430,547,-1,333,538,430,-1,383,306,25,-1,306,383,270,-1,240,16,239,-1,18,16,240,-1,171,260,37,-1,171,328,260,-1,374,269,298,-1,374,199,269,-1,202,373,268,-1,202,79,373,-1,522,33,32,-1,522,385,33,-1,535,521,539,-1,521,535,545,-1,544,29,347,-1,544,324,29,-1,541,543,464,-1,543,541,337,-1,251,318,247,-1,318,251,532,-1,247,542,248,-1,247,507,542,-1,549,515,534,-1,319,515,549,-1,309,314,405,-1,309,312,314,-1,250,265,27,-1,250,196,265,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolar3r_Geo_5_577_normalIndex_1()
		{
			int[] value = {193,200,131,-1,305,290,389,-1,482,542,557,-1,471,525,519,-1,556,547,510,-1,532,539,484,-1,536,309,479,-1,75,45,83,-1,90,80,224,-1,131,174,96,-1,386,415,472,-1,402,399,473,-1,448,438,520,-1,409,400,484,-1,132,203,178,-1,417,446,360,-1,481,525,420,-1,60,53,172,-1,83,216,309,-1,294,254,339,-1,85,95,141,-1,118,127,161,-1,252,194,302,-1,406,357,304,-1,304,336,406,-1,82,81,85,-1,92,84,87,-1,133,110,118,-1,295,207,252,-1,466,426,387,-1,428,480,433,-1,476,466,480,-1,348,295,361,-1,348,318,295,-1,159,171,126,-1,449,475,489,-1,70,128,48,-1,487,437,478,-1,507,505,487,-1,69,34,23,-1,62,56,104,-1,351,342,322,-1,498,492,494,-1,493,543,507,-1,558,538,543,-1,526,555,558,-1,403,452,328,-1,121,107,168,-1,39,55,52,-1,512,441,495,-1,504,483,442,-1,502,483,504,-1,321,317,313,-1,52,55,100,-1,24,21,39,-1,183,263,320,-1,517,555,526,-1,51,107,121,-1,239,97,108,-1,527,460,456,-1,508,492,498,-1,68,35,62,-1,543,505,507,-1,474,498,475,-1,407,454,380,-1,122,104,134,-1,148,191,176,-1,458,507,485,-1,468,418,385,-1,475,494,496,-1,528,548,547,-1,137,117,110,-1,77,119,126,-1,159,144,130,-1,318,242,207,-1,212,152,198,-1,427,480,428,-1,478,426,466,-1,361,325,346,-1,110,92,98,-1,84,82,79,-1,81,93,95,-1,130,135,136,-1,471,556,525,-1,232,217,209,-1,439,346,347,-1,141,95,165,-1,204,222,188,-1,307,230,300,-1,319,264,277,-1,278,234,274,-1,26,106,16,-1,192,237,180,-1,96,174,188,-1,227,367,290,-1,294,275,218,-1,379,293,381,-1,148,99,187,-1,198,224,123,-1,132,125,180,-1,400,448,520,-1,339,254,177,-1,360,446,436,-1,404,347,332,-1,112,184,209,-1,415,402,477,-1,382,486,490,-1,131,88,105,-1,430,75,83,-1,491,539,536,-1,539,532,541,-1,536,529,435,-1,548,520,518,-1,521,556,510,-1,482,471,542,-1,528,557,553,-1,279,231,293,-1,354,276,416,-1,200,174,131,-1,200,210,174,-1,354,416,423,-1,553,549,528,-1,471,519,542,-1,547,548,518,-1,435,430,536,-1,532,551,541,-1,536,479,491,-1,430,83,309,-1,76,90,187,-1,90,224,187,-1,105,153,131,-1,372,382,490,-1,402,473,477,-1,112,103,184,-1,404,332,356,-1,436,356,360,-1,339,177,214,-1,400,520,459,-1,132,180,203,-1,123,178,198,-1,187,191,148,-1,303,375,312,-1,294,358,275,-1,404,356,436,-1,174,186,188,-1,180,125,192,-1,26,74,106,-1,278,223,234,-1,319,284,264,-1,307,300,368,-1,60,30,9,-1,188,186,204,-1,165,246,141,-1,439,347,404,-1,556,521,525,-1,130,160,135,-1,81,95,85,-1,84,79,87,-1,110,98,118,-1,361,295,325,-1,478,437,426,-1,427,476,480,-1,198,178,212,-1,318,207,295,-1,159,130,171,-1,77,126,93,-1,137,110,133,-1,547,482,528,-1,475,496,489,-1,468,385,437,-1,458,485,432,-1,176,245,148,-1,122,62,104,-1,407,467,454,-1,474,475,449,-1,543,515,505,-1,68,42,35,-1,508,499,492,-1,527,456,513,-1,239,108,269,-1,51,121,66,-1,526,500,517,-1,320,220,183,-1,24,39,41,-1,52,100,101,-1,313,353,321,-1,504,516,502,-1,504,442,461,-1,512,495,540,-1,52,41,39,-1,168,162,121,-1,452,370,328,-1,526,558,501,-1,538,515,543,-1,493,507,458,-1,498,494,475,-1,351,322,323,-1,62,35,56,-1,23,73,69,-1,507,487,485,-1,487,468,437,-1,70,150,128,-1,449,489,462,-1,126,119,159,-1,476,478,466,-1,428,433,398,-1,466,387,425,-1,295,252,325,-1,133,118,167,-1,92,87,98,-1,82,85,79,-1,165,275,246,-1,275,303,246,-1,252,167,194,-1,118,98,127,-1,85,141,102,-1,339,394,294,-1,216,317,309,-1,481,420,394,-1,254,136,177,-1,450,519,453,-1,178,123,132,-1,400,459,484,-1,438,518,520,-1,294,420,358,-1,294,394,420,-1,399,470,473,-1,415,477,472,-1,131,96,88,-1,86,125,132,-1,80,123,224,-1,45,89,83,-1,536,430,309,-1,539,491,484,-1,547,518,510,-1,528,482,557,-1,131,153,193,-1,222,210,230,-1,222,204,210,-1,383,337,391,-1,334,337,383,-1,199,175,225,-1,199,166,175,-1,366,288,365,-1,366,286,288,-1,416,211,372,-1,276,211,416,-1,211,382,372,-1,211,240,382,-1,293,253,298,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolar3r_Geo_5_577_normalIndex_2()
		{
			int[] value = {231,253,293,-1,273,415,386,-1,273,281,415,-1,425,378,433,-1,371,378,425,-1,430,74,75,-1,430,435,74,-1,549,532,530,-1,532,549,551,-1,32,90,76,-1,90,32,28,-1,29,45,26,-1,58,45,29,-1,72,187,99,-1,72,76,187,-1,216,313,317,-1,313,216,299,-1,446,420,525,-1,446,417,420,-1,369,291,267,-1,369,393,291,-1,298,381,293,-1,376,381,298,-1,150,166,128,-1,150,175,166,-1,213,124,155,-1,213,205,124,-1,391,428,383,-1,427,428,391,-1,432,414,458,-1,432,397,414,-1,382,488,486,-1,382,396,488,-1,525,453,519,-1,525,481,453,-1,467,554,553,-1,554,467,465,-1,103,182,184,-1,103,102,182,-1,292,327,302,-1,327,292,314,-1,375,360,312,-1,375,417,360,-1,255,302,194,-1,302,255,292,-1,259,384,390,-1,384,259,266,-1,226,215,304,-1,215,226,189,-1,339,481,394,-1,339,392,481,-1,510,439,521,-1,434,439,510,-1,16,115,50,-1,115,16,106,-1,12,70,11,-1,67,70,12,-1,9,53,60,-1,43,53,9,-1,125,172,192,-1,125,60,172,-1,164,99,148,-1,94,99,164,-1,243,155,328,-1,155,243,213,-1,279,339,214,-1,279,392,339,-1,278,284,340,-1,278,274,284,-1,355,283,260,-1,355,378,283,-1,203,234,223,-1,203,180,234,-1,103,87,79,-1,87,103,112,-1,446,521,436,-1,525,521,446,-1,346,434,361,-1,434,346,439,-1,367,457,444,-1,457,367,390,-1,130,218,171,-1,130,136,218,-1,105,43,44,-1,105,88,43,-1,280,340,373,-1,280,278,340,-1,426,385,373,-1,437,385,426,-1,28,3,22,-1,28,8,3,-1,253,305,315,-1,253,231,305,-1,408,429,406,-1,408,462,429,-1,151,130,144,-1,151,160,130,-1,57,82,84,-1,57,54,82,-1,56,57,78,-1,56,40,57,-1,322,242,318,-1,322,248,242,-1,454,376,380,-1,454,445,376,-1,408,341,412,-1,341,408,326,-1,144,143,149,-1,143,144,159,-1,37,49,54,-1,37,34,49,-1,311,385,418,-1,311,287,385,-1,397,363,414,-1,345,363,397,-1,245,311,335,-1,245,176,311,-1,37,33,25,-1,33,37,40,-1,530,528,549,-1,530,548,528,-1,449,424,474,-1,424,449,412,-1,138,142,156,-1,142,138,149,-1,349,431,451,-1,349,335,431,-1,140,65,158,-1,65,140,67,-1,142,145,157,-1,145,142,139,-1,17,23,25,-1,17,1,23,-1,62,114,68,-1,114,62,122,-1,338,400,409,-1,338,351,400,-1,472,492,499,-1,472,477,492,-1,424,401,455,-1,401,424,374,-1,29,7,27,-1,29,4,7,-1,456,514,513,-1,456,451,514,-1,401,333,413,-1,333,401,308,-1,145,120,146,-1,120,145,116,-1,17,19,14,-1,19,17,20,-1,108,271,269,-1,108,114,271,-1,551,546,541,-1,551,554,546,-1,524,508,535,-1,524,499,508,-1,124,47,50,-1,124,129,47,-1,460,350,456,-1,460,362,350,-1,535,522,545,-1,522,535,523,-1,333,221,329,-1,221,333,196,-1,121,71,66,-1,121,120,71,-1,19,36,18,-1,36,19,38,-1,239,331,330,-1,239,269,331,-1,452,369,370,-1,452,440,369,-1,201,240,211,-1,240,201,202,-1,2,66,6,-1,2,51,66,-1,39,59,55,-1,39,36,59,-1,310,343,330,-1,321,343,310,-1,504,460,527,-1,504,461,460,-1,533,486,531,-1,533,490,486,-1,464,405,463,-1,405,464,410,-1,544,534,533,-1,544,550,534,-1,544,540,495,-1,540,544,533,-1,395,320,263,-1,395,405,320,-1,107,170,168,-1,107,109,170,-1,442,359,461,-1,442,364,359,-1,0,15,10,-1,15,0,2,-1,238,352,195,-1,238,343,352,-1,506,500,509,-1,506,517,500,-1,185,183,220,-1,185,181,183,-1,216,306,299,-1,282,306,216,-1,410,320,405,-1,320,410,329,-1,533,545,540,-1,533,531,545,-1,362,461,359,-1,461,362,460,-1,238,330,343,-1,238,239,330,-1,21,36,39,-1,21,18,36,-1,168,179,162,-1,168,185,179,-1,154,214,177,-1,154,227,214,-1,189,227,154,-1,226,227,189,-1,251,227,226,-1,261,227,251,-1,266,227,261,-1,266,259,227,-1,535,531,524,-1,545,531,535,-1,541,552,529,-1,541,546,552,-1,38,59,36,-1,59,38,63,-1,66,5,6,-1,66,71,5,-1,196,179,221,-1,179,196,169,-1,523,464,522,-1,464,523,469,-1,236,362,262,-1,362,236,350,-1,297,197,205,-1,297,288,197,-1,523,508,503,-1,523,535,508,-1,440,393,369,-1,440,465,393,-1,344,269,271,-1,331,269,344,-1,20,38,19,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolar3r_Geo_5_577_normalIndex_3()
		{
			int[] value = {38,20,42,-1,120,64,71,-1,120,116,64,-1,308,196,333,-1,196,308,173,-1,543,501,558,-1,501,543,493,-1,350,451,456,-1,350,349,451,-1,156,157,173,-1,157,156,142,-1,474,455,503,-1,455,474,424,-1,553,551,549,-1,551,553,554,-1,122,271,114,-1,271,122,244,-1,64,23,1,-1,64,73,23,-1,257,335,349,-1,257,245,335,-1,363,286,366,-1,286,363,272,-1,69,111,113,-1,73,111,69,-1,235,156,268,-1,156,235,138,-1,477,494,492,-1,477,473,494,-1,248,342,244,-1,342,248,322,-1,34,25,23,-1,25,34,37,-1,335,418,431,-1,335,311,418,-1,391,345,397,-1,337,345,391,-1,176,287,311,-1,176,152,287,-1,54,40,37,-1,40,54,57,-1,143,119,113,-1,143,159,119,-1,326,235,341,-1,235,326,247,-1,258,315,301,-1,258,253,315,-1,137,248,134,-1,248,137,242,-1,78,84,92,-1,78,57,84,-1,241,151,247,-1,151,241,160,-1,462,447,429,-1,462,489,447,-1,450,376,445,-1,376,450,381,-1,105,48,128,-1,48,105,44,-1,373,387,426,-1,373,340,387,-1,9,22,3,-1,30,22,9,-1,433,466,425,-1,480,466,433,-1,171,165,126,-1,171,275,165,-1,171,218,275,-1,406,377,357,-1,406,429,377,-1,290,231,279,-1,305,231,290,-1,302,325,252,-1,325,302,327,-1,112,98,87,-1,98,112,127,-1,283,256,249,-1,283,264,256,-1,283,277,264,-1,283,289,277,-1,163,282,216,-1,163,262,282,-1,378,289,283,-1,378,371,289,-1,83,163,216,-1,83,89,163,-1,96,172,53,-1,96,188,172,-1,3,43,9,-1,44,43,3,-1,12,65,67,-1,65,12,7,-1,388,309,317,-1,479,309,388,-1,438,510,518,-1,438,434,510,-1,279,227,290,-1,279,214,227,-1,189,135,215,-1,135,189,154,-1,266,377,384,-1,377,266,261,-1,141,182,102,-1,141,233,182,-1,232,194,161,-1,194,232,255,-1,554,440,546,-1,554,465,440,-1,381,453,379,-1,453,381,450,-1,470,389,444,-1,399,389,470,-1,423,501,422,-1,526,501,423,-1,493,422,501,-1,493,421,422,-1,129,205,197,-1,205,129,124,-1,175,140,190,-1,175,150,140,-1,293,392,279,-1,379,392,293,-1,393,316,291,-1,393,407,316,-1,435,106,74,-1,435,443,106,-1,509,490,511,-1,509,500,490,-1,80,132,123,-1,80,86,132,-1,99,61,72,-1,61,99,94,-1,58,27,61,-1,58,29,27,-1,28,80,90,-1,80,28,22,-1,459,532,484,-1,530,532,459,-1,371,387,319,-1,371,425,387,-1,315,389,399,-1,315,305,389,-1,291,229,219,-1,229,291,316,-1,243,202,201,-1,202,243,265,-1,421,365,422,-1,366,365,421,-1,211,270,201,-1,211,276,270,-1,225,190,272,-1,225,175,190,-1,368,334,383,-1,300,334,368,-1,230,200,300,-1,230,210,200,-1,345,272,363,-1,345,225,272,-1,414,366,421,-1,363,366,414,-1,193,166,199,-1,193,153,166,-1,354,288,297,-1,354,365,288,-1,267,219,208,-1,219,267,291,-1,240,396,382,-1,240,250,396,-1,296,253,258,-1,253,296,298,-1,281,402,415,-1,281,301,402,-1,228,230,307,-1,228,222,230,-1,398,378,355,-1,378,398,433,-1,75,26,45,-1,75,74,26,-1,86,60,125,-1,86,30,60,-1,31,76,72,-1,76,31,32,-1,58,89,45,-1,58,91,89,-1,217,161,127,-1,161,217,232,-1,358,303,275,-1,358,375,303,-1,370,267,265,-1,370,369,267,-1,298,380,376,-1,380,298,296,-1,128,153,105,-1,166,153,128,-1,158,197,206,-1,197,158,129,-1,383,398,368,-1,428,398,383,-1,397,427,391,-1,432,427,397,-1,396,472,488,-1,396,386,472,-1,450,542,519,-1,542,450,445,-1,454,553,557,-1,553,454,467,-1,452,443,552,-1,443,452,403,-1,303,285,246,-1,303,312,285,-1,367,259,390,-1,367,227,259,-1,251,304,357,-1,304,251,226,-1,136,294,218,-1,254,294,136,-1,439,436,521,-1,439,404,436,-1,411,484,491,-1,411,409,484,-1,4,50,47,-1,50,4,16,-1,11,48,8,-1,70,48,11,-1,274,264,284,-1,274,256,264,-1,147,94,164,-1,91,94,147,-1,500,372,490,-1,372,500,416,-1,249,260,283,-1,249,228,260,-1,249,222,228,-1,249,188,222,-1,237,188,249,-1,192,188,237,-1,192,172,188,-1,102,79,85,-1,79,102,103,-1,167,161,194,-1,167,118,161,-1,417,358,420,-1,358,417,375,-1,356,312,360,-1,332,312,356,-1,314,312,332,-1,233,184,182,-1,233,209,184,-1,314,285,312,-1,292,285,314,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolar3r_Geo_5_577_normalIndex_4()
		{
			int[] value = {292,233,285,-1,255,233,292,-1,232,233,255,-1,209,233,232,-1,447,390,384,-1,447,457,390,-1,304,241,336,-1,241,304,215,-1,167,207,133,-1,207,167,252,-1,300,193,334,-1,193,300,200,-1,212,278,280,-1,212,223,278,-1,287,373,385,-1,287,280,373,-1,361,438,348,-1,438,361,434,-1,496,444,457,-1,496,470,444,-1,326,406,336,-1,326,408,406,-1,81,54,49,-1,54,81,82,-1,78,104,56,-1,104,78,117,-1,323,318,348,-1,323,322,318,-1,412,462,408,-1,412,449,462,-1,138,144,149,-1,138,151,144,-1,34,77,49,-1,34,69,77,-1,28,11,8,-1,28,32,11,-1,476,487,478,-1,485,487,476,-1,150,67,140,-1,67,150,70,-1,487,497,468,-1,505,497,487,-1,40,35,33,-1,35,40,56,-1,400,323,448,-1,400,351,323,-1,412,374,424,-1,374,412,341,-1,149,139,142,-1,139,149,143,-1,497,451,431,-1,514,451,497,-1,31,7,12,-1,31,27,7,-1,145,111,116,-1,145,139,111,-1,25,20,17,-1,20,25,33,-1,344,351,338,-1,344,342,351,-1,219,281,273,-1,219,229,281,-1,374,308,401,-1,308,374,268,-1,164,236,147,-1,236,164,257,-1,515,513,514,-1,538,513,515,-1,129,65,47,-1,129,158,65,-1,157,146,169,-1,146,157,145,-1,1,14,5,-1,14,1,17,-1,68,108,63,-1,108,68,114,-1,324,409,411,-1,324,338,409,-1,499,488,472,-1,524,488,499,-1,455,413,469,-1,413,455,401,-1,4,26,16,-1,29,26,4,-1,538,555,537,-1,555,538,558,-1,329,413,333,-1,329,410,413,-1,146,121,162,-1,121,146,120,-1,14,18,13,-1,18,14,19,-1,324,330,331,-1,310,330,324,-1,202,250,240,-1,202,208,250,-1,270,205,213,-1,270,297,205,-1,329,220,320,-1,220,329,221,-1,6,15,2,-1,15,6,13,-1,55,97,100,-1,55,59,97,-1,435,552,443,-1,435,529,552,-1,516,527,537,-1,516,504,527,-1,522,463,512,-1,463,522,464,-1,343,353,352,-1,321,353,343,-1,502,517,506,-1,517,502,516,-1,109,51,46,-1,51,109,107,-1,364,282,359,-1,306,282,364,-1,51,0,46,-1,0,51,2,-1,100,195,101,-1,195,100,238,-1,441,463,419,-1,441,512,463,-1,181,168,170,-1,181,185,168,-1,419,405,395,-1,405,419,463,-1,511,533,534,-1,533,511,490,-1,15,24,10,-1,21,24,15,-1,545,512,540,-1,512,545,522,-1,517,537,555,-1,517,516,537,-1,262,359,282,-1,359,262,362,-1,100,239,238,-1,100,97,239,-1,15,18,21,-1,15,13,18,-1,221,185,220,-1,185,221,179,-1,524,486,488,-1,531,486,524,-1,411,310,324,-1,388,310,411,-1,63,97,59,-1,97,63,108,-1,5,13,6,-1,13,5,14,-1,169,162,179,-1,162,169,146,-1,469,410,464,-1,410,469,413,-1,513,537,527,-1,537,513,538,-1,262,147,236,-1,262,163,147,-1,503,469,523,-1,469,503,455,-1,208,273,250,-1,208,219,273,-1,331,338,324,-1,331,344,338,-1,42,63,38,-1,63,42,68,-1,71,1,5,-1,71,64,1,-1,173,169,196,-1,169,173,157,-1,286,197,288,-1,286,206,197,-1,350,257,349,-1,350,236,257,-1,268,173,308,-1,173,268,156,-1,498,503,508,-1,503,498,474,-1,465,407,393,-1,465,467,407,-1,344,244,342,-1,344,271,244,-1,33,42,20,-1,42,33,35,-1,73,116,111,-1,64,116,73,-1,164,245,257,-1,164,148,245,-1,505,514,497,-1,515,514,505,-1,139,113,111,-1,139,143,113,-1,341,268,374,-1,268,341,235,-1,229,301,281,-1,229,258,301,-1,134,244,122,-1,244,134,248,-1,431,468,497,-1,431,418,468,-1,32,12,11,-1,32,31,12,-1,476,432,485,-1,432,476,427,-1,191,152,176,-1,191,198,152,-1,77,113,119,-1,69,113,77,-1,247,138,235,-1,138,247,151,-1,494,470,496,-1,494,473,470,-1,448,348,438,-1,448,323,348,-1,117,134,104,-1,134,117,137,-1,92,117,78,-1,117,92,110,-1,81,77,93,-1,49,77,81,-1,336,247,326,-1,247,336,241,-1,489,457,447,-1,489,496,457,-1,471,547,556,-1,482,547,471,-1,242,133,207,-1,242,137,133,-1,334,199,337,-1,199,334,193,-1,152,280,287,-1,152,212,280,-1,178,223,212,-1,178,203,223,-1,126,95,93,-1,126,165,95,-1,215,160,241,-1,160,215,135,-1,429,384,377,-1,429,447,384,-1,379,481,392,-1,379,453,481,-1,327,346,325,-1,346,327,347,-1,321,388,317,-1,388,321,310,-1,88,53,43,-1,88,96,53,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlmolar3r_Geo_5_577_normalIndex_5()
		{
			int[] value = {319,289,371,-1,319,277,289,-1,155,50,115,-1,155,124,50,-1,403,106,443,-1,106,403,115,-1,163,91,147,-1,89,91,163,-1,187,198,191,-1,187,224,198,-1,234,256,274,-1,234,249,256,-1,8,44,3,-1,48,44,8,-1,47,7,4,-1,7,47,65,-1,491,388,411,-1,388,491,479,-1,237,234,180,-1,234,237,249,-1,135,177,136,-1,135,154,177,-1,261,357,377,-1,357,261,251,-1,246,233,141,-1,246,285,233,-1,327,332,347,-1,327,314,332,-1,127,209,217,-1,127,112,209,-1,552,440,452,-1,552,546,440,-1,445,557,542,-1,557,445,454,-1,367,389,290,-1,389,367,444,-1,526,416,500,-1,423,416,526,-1,458,421,493,-1,458,414,421,-1,260,307,355,-1,307,260,228,-1,190,158,206,-1,190,140,158,-1,201,213,243,-1,201,270,213,-1,380,316,407,-1,380,296,316,-1,328,265,243,-1,265,328,370,-1,115,328,155,-1,403,328,115,-1,91,61,94,-1,58,61,91,-1,72,27,31,-1,72,61,27,-1,22,86,80,-1,86,22,30,-1,529,539,541,-1,536,539,529,-1,548,459,520,-1,548,530,459,-1,355,368,398,-1,355,307,368,-1,319,340,284,-1,319,387,340,-1,301,399,402,-1,301,315,399,-1,316,258,229,-1,258,316,296,-1,250,386,396,-1,250,273,386,-1,265,208,202,-1,208,265,267,-1,423,365,354,-1,365,423,422,-1,354,270,276,-1,354,297,270,-1,206,272,190,-1,286,272,206,-1,337,225,345,-1,337,199,225,-1,210,186,174,-1,210,204,186,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr1lc_Geo_5_583_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,6,9,7,-1,10,11,12,-1,13,14,15,-1,16,17,18,-1,19,17,20,-1,21,22,23,-1,18,24,25,-1,26,27,28,-1,29,30,31,-1,29,31,32,-1,33,34,35,-1,35,36,37,-1,38,39,40,-1,41,7,9,-1,42,43,8,-1,44,39,45,-1,46,47,48,-1,49,50,51,-1,52,51,50,-1,53,54,55,-1,56,57,58,-1,59,60,61,-1,62,20,63,-1,64,65,66,-1,67,68,69,-1,70,15,71,-1,67,72,73,-1,74,75,76,-1,77,78,79,-1,80,81,82,-1,83,84,5,-1,85,86,87,-1,88,89,90,-1,91,92,93,-1,94,95,96,-1,97,98,99,-1,95,100,96,-1,94,101,22,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,108,-1,113,112,111,-1,114,115,116,-1,117,118,119,-1,120,121,122,-1,123,124,125,-1,126,127,125,-1,125,124,126,-1,128,129,130,-1,131,129,128,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,141,142,143,-1,144,145,146,-1,77,147,148,-1,149,48,150,-1,151,86,85,-1,152,153,154,-1,155,152,156,-1,157,158,159,-1,160,161,162,-1,158,163,164,-1,165,166,167,-1,167,168,165,-1,169,120,170,-1,171,172,173,-1,174,175,176,-1,177,34,174,-1,178,179,180,-1,181,182,183,-1,184,178,185,-1,104,186,23,-1,187,109,108,-1,4,187,108,-1,53,188,189,-1,76,78,81,-1,66,190,191,-1,192,193,194,-1,45,38,195,-1,26,196,197,-1,198,199,141,-1,200,201,129,-1,202,62,203,-1,204,71,15,-1,205,16,25,-1,206,207,93,-1,208,209,25,-1,210,211,212,-1,213,192,194,-1,11,214,215,-1,11,216,214,-1,217,11,218,-1,59,219,65,-1,220,47,46,-1,77,82,78,-1,221,108,112,-1,98,90,89,-1,89,99,98,-1,181,222,223,-1,174,34,33,-1,124,224,225,-1,226,227,228,-1,118,229,230,-1,231,232,233,-1,234,235,236,-1,237,238,164,-1,163,85,237,-1,239,240,241,-1,164,238,153,-1,238,242,153,-1,154,243,244,-1,245,246,193,-1,3,5,84,-1,247,202,248,-1,6,249,250,-1,251,252,253,-1,210,143,182,-1,195,197,254,-1,255,131,256,-1,31,257,32,-1,128,198,256,-1,125,133,132,-1,121,53,122,-1,232,258,111,-1,136,104,103,-1,103,259,136,-1,97,99,146,-1,260,105,237,-1,98,100,261,-1,261,262,90,-1,207,262,93,-1,105,260,87,-1,92,95,263,-1,145,144,259,-1,74,204,14,-1,72,67,69,-1,60,264,265,-1,266,267,268,-1,269,264,63,-1,64,66,203,-1,59,61,68,-1,270,271,272,-1,273,274,150,-1,216,275,276,-1,41,218,246,-1,44,245,39,-1,218,9,217,-1,197,277,254,-1,138,278,279,-1,280,281,282,-1,282,252,283,-1,208,200,284,-1,206,208,284,-1,82,148,285,-1,21,23,186,-1,19,18,17,-1,13,70,17,-1,286,287,79,-1,248,28,27,-1,3,84,80,-1,288,289,290,-1,291,236,235,-1,235,292,291,-1,3,80,21,-1,293,248,202,-1,293,294,248,-1,17,269,20,-1,287,147,79,-1,13,15,70,-1,21,186,3,-1,206,284,129,-1,282,283,27,-1,280,282,26,-1,295,138,279,-1,296,181,183,-1,197,196,277,-1,297,298,182,-1,218,41,9,-1,43,277,196,-1,246,218,215,-1,216,276,214,-1,276,299,300,-1,270,301,271,-1,50,302,47,-1,117,59,68,-1,64,203,63,-1,20,269,63,-1,64,60,65,-1,268,231,266,-1,60,265,61,-1,72,69,303,-1,67,73,304,-1,14,286,74,-1,258,116,113,-1,75,78,76,-1,83,305,306,-1,259,103,145,-1,263,307,92,-1,87,308,105,-1,207,88,262,-1,261,91,262,-1,98,97,100,-1,87,255,308,-1,3,186,187,-1,259,137,136,-1,232,111,309,-1,121,310,53,-1,125,213,133,-1,256,131,128,-1,122,53,311,-1,31,312,257,-1,255,313,131,-1,182,298,210,-1,314,275,216,-1,6,315,249,-1,79,147,77,-1,21,94,22,-1,245,42,246,-1,154,316,243,-1,238,317,242,-1,153,152,164,-1,239,318,240,-1,319,241,320,-1,319,239,241,-1,237,164,163,-1,234,167,235,-1,233,266,231,-1,170,118,230,-1,226,321,227,-1,225,126,124,-1,33,322,174,-1,223,177,181,-1,223,34,177,-1,89,323,99,-1,112,305,221,-1,112,306,305,-1,82,81,78,-1,324,71,204,-1,65,60,59,-1,215,218,11,-1,213,194,325,-1,277,45,254,-1,212,141,210,-1,208,326,209,-1,93,326,206,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr1lc_Geo_5_583_coordIndex_2()
		{
			int[] value = {205,25,209,-1,15,14,204,-1,203,191,202,-1,129,284,200,-1,198,141,212,-1,280,26,197,-1,45,195,254,-1,42,41,246,-1,191,203,66,-1,53,189,54,-1,108,221,4,-1,104,23,102,-1,184,297,178,-1,179,327,180,-1,177,174,179,-1,35,34,223,-1,174,322,175,-1,171,173,328,-1,170,230,169,-1,164,329,158,-1,161,330,162,-1,159,331,157,-1,155,156,318,-1,152,154,156,-1,85,163,151,-1,3,187,4,-1,248,27,283,-1,77,148,82,-1,13,16,287,-1,146,99,144,-1,208,206,326,-1,141,143,210,-1,139,142,140,-1,312,280,197,-1,119,332,219,-1,131,206,129,-1,129,201,130,-1,125,132,123,-1,120,122,170,-1,117,333,118,-1,114,116,258,-1,258,113,111,-1,111,108,334,-1,334,108,110,-1,261,90,98,-1,186,104,187,-1,94,96,101,-1,95,92,91,-1,260,237,85,-1,94,263,95,-1,91,93,262,-1,88,90,262,-1,260,85,87,-1,83,221,305,-1,83,306,84,-1,80,335,81,-1,78,75,79,-1,115,74,76,-1,204,74,336,-1,70,71,337,-1,67,304,68,-1,62,63,203,-1,58,338,56,-1,53,55,311,-1,50,49,302,-1,52,249,51,-1,276,273,299,-1,276,300,214,-1,42,8,7,-1,41,42,7,-1,38,45,39,-1,35,37,339,-1,35,339,33,-1,296,222,181,-1,30,295,31,-1,26,282,27,-1,340,341,252,-1,18,25,16,-1,201,200,340,-1,20,62,19,-1,16,13,17,-1,314,274,275,-1,6,8,294,-1,294,8,342,-1,106,105,308,-1,343,290,289,-1,343,344,290,-1,173,345,328,-1,346,345,173,-1,347,348,349,-1,347,350,348,-1,235,351,292,-1,351,235,352,-1,353,354,240,-1,355,354,353,-1,356,180,357,-1,356,358,180,-1,19,202,247,-1,202,19,62,-1,307,285,148,-1,307,263,285,-1,359,360,361,-1,359,362,360,-1,341,283,252,-1,341,363,283,-1,279,280,312,-1,280,279,281,-1,295,312,31,-1,295,279,312,-1,364,222,296,-1,222,364,365,-1,366,367,368,-1,366,369,367,-1,325,193,370,-1,193,325,194,-1,275,273,276,-1,275,274,273,-1,299,133,213,-1,299,273,133,-1,310,49,53,-1,49,310,302,-1,371,372,373,-1,372,371,374,-1,375,231,268,-1,375,114,231,-1,115,336,74,-1,115,376,336,-1,13,286,14,-1,286,13,287,-1,103,101,145,-1,103,102,101,-1,86,377,87,-1,86,378,377,-1,100,146,96,-1,97,146,100,-1,375,324,376,-1,303,324,375,-1,121,272,379,-1,272,121,120,-1,257,368,32,-1,257,366,368,-1,201,380,130,-1,201,251,380,-1,378,151,381,-1,378,86,151,-1,331,382,157,-1,331,135,382,-1,211,106,212,-1,107,106,211,-1,383,99,323,-1,99,383,144,-1,315,294,293,-1,315,6,294,-1,148,205,307,-1,148,147,205,-1,311,384,332,-1,311,55,384,-1,385,318,239,-1,385,155,318,-1,165,319,166,-1,165,386,319,-1,387,160,162,-1,309,160,387,-1,266,388,360,-1,266,233,388,-1,371,362,359,-1,362,371,58,-1,56,389,229,-1,56,338,389,-1,267,72,268,-1,267,73,72,-1,267,57,73,-1,230,389,390,-1,230,229,389,-1,391,392,390,-1,392,391,393,-1,393,394,392,-1,394,393,395,-1,328,396,171,-1,396,328,397,-1,398,399,400,-1,398,396,399,-1,150,401,134,-1,401,150,48,-1,402,321,403,-1,402,400,321,-1,228,349,348,-1,228,227,349,-1,224,404,225,-1,224,403,404,-1,37,404,339,-1,37,225,404,-1,223,365,405,-1,222,365,223,-1,185,242,184,-1,185,316,242,-1,406,302,310,-1,406,47,302,-1,215,300,370,-1,300,215,214,-1,106,255,256,-1,106,308,255,-1,264,407,265,-1,264,269,407,-1,29,405,365,-1,29,32,405,-1,196,28,342,-1,26,28,196,-1,243,185,358,-1,185,243,316,-1,358,178,180,-1,185,178,358,-1,177,178,297,-1,177,179,178,-1,174,327,179,-1,174,176,327,-1,228,175,322,-1,228,348,175,-1,225,367,126,-1,367,225,37,-1,400,227,321,-1,400,399,227,-1,408,400,402,-1,408,398,400,-1,408,270,394,-1,301,270,408,-1,270,392,394,-1,270,169,392,-1,390,169,230,-1,169,390,392,-1,409,390,389,-1,390,409,391,-1,333,229,118,-1,333,56,229,-1,338,409,389,-1,338,373,409,-1,362,57,267,-1,362,58,57,-1,410,360,388,-1,360,410,361,-1,411,168,412,-1,411,165,168,-1,388,168,410,-1,388,412,168,-1,411,330,413,-1,162,330,411,-1,165,413,386,-1,411,413,165,-1,385,413,414,-1,413,385,386,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr1lc_Geo_5_583_coordIndex_3()
		{
			int[] value = {155,414,329,-1,414,155,385,-1,353,318,156,-1,318,353,240,-1,151,158,157,-1,151,163,158,-1,70,269,17,-1,70,407,269,-1,137,144,383,-1,137,259,144,-1,219,117,119,-1,59,117,219,-1,382,323,381,-1,382,383,323,-1,199,128,130,-1,198,128,199,-1,251,278,380,-1,253,278,251,-1,366,195,38,-1,257,195,366,-1,192,125,127,-1,192,213,125,-1,379,310,121,-1,379,406,310,-1,303,268,72,-1,303,375,268,-1,111,160,309,-1,111,334,160,-1,110,331,161,-1,110,135,331,-1,326,92,209,-1,93,92,326,-1,146,101,96,-1,146,145,101,-1,377,255,87,-1,255,377,313,-1,221,5,4,-1,221,83,5,-1,113,81,335,-1,113,116,81,-1,75,286,79,-1,74,286,75,-1,324,337,71,-1,415,337,324,-1,407,337,265,-1,407,70,337,-1,336,324,204,-1,324,336,376,-1,304,56,333,-1,73,56,304,-1,56,73,57,-1,190,55,54,-1,190,384,55,-1,188,249,315,-1,51,249,188,-1,50,220,52,-1,220,50,47,-1,406,416,401,-1,379,416,406,-1,370,213,325,-1,300,213,370,-1,300,299,213,-1,44,277,43,-1,44,45,277,-1,368,37,36,-1,368,367,37,-1,47,401,48,-1,47,406,401,-1,252,281,253,-1,282,281,252,-1,139,364,417,-1,364,139,30,-1,340,251,201,-1,252,251,340,-1,361,418,359,-1,418,361,419,-1,10,216,11,-1,314,216,10,-1,11,250,12,-1,217,250,11,-1,248,342,28,-1,294,342,248,-1,327,357,180,-1,420,357,327,-1,421,353,244,-1,421,355,353,-1,320,351,352,-1,422,351,320,-1,423,349,424,-1,423,347,349,-1,425,173,426,-1,425,346,173,-1,2,343,0,-1,343,2,344,-1,328,427,397,-1,345,427,328,-1,348,428,175,-1,350,428,348,-1,354,241,240,-1,354,429,241,-1,430,358,356,-1,430,243,358,-1,175,431,176,-1,428,431,175,-1,247,18,19,-1,247,363,18,-1,52,10,12,-1,220,10,52,-1,285,94,21,-1,94,285,263,-1,372,1,432,-1,372,2,1,-1,25,200,208,-1,24,200,25,-1,24,363,341,-1,24,18,363,-1,138,30,139,-1,30,138,295,-1,417,296,183,-1,296,417,364,-1,38,369,366,-1,38,40,369,-1,43,342,8,-1,43,196,342,-1,46,149,314,-1,46,48,149,-1,49,188,53,-1,49,51,188,-1,54,191,190,-1,54,189,191,-1,58,373,338,-1,373,58,371,-1,265,415,61,-1,415,265,337,-1,376,114,375,-1,376,115,114,-1,378,88,377,-1,89,88,378,-1,91,100,95,-1,91,261,100,-1,109,104,136,-1,187,104,109,-1,237,317,238,-1,237,107,317,-1,107,237,105,-1,160,110,161,-1,160,334,110,-1,232,114,258,-1,231,114,232,-1,122,118,170,-1,119,118,122,-1,132,401,416,-1,132,134,401,-1,127,40,192,-1,369,40,127,-1,312,195,257,-1,197,195,312,-1,140,130,380,-1,199,130,140,-1,381,89,378,-1,89,381,323,-1,137,382,135,-1,137,383,382,-1,142,417,143,-1,139,417,142,-1,212,256,198,-1,256,212,106,-1,217,6,250,-1,6,217,9,-1,244,156,154,-1,156,244,353,-1,329,152,155,-1,329,164,152,-1,320,166,319,-1,166,320,352,-1,331,330,161,-1,331,159,330,-1,329,159,158,-1,159,329,414,-1,162,412,387,-1,162,411,412,-1,166,235,167,-1,166,352,235,-1,419,236,288,-1,419,234,236,-1,374,359,418,-1,359,374,371,-1,374,2,372,-1,374,344,2,-1,232,387,233,-1,232,309,387,-1,1,433,432,-1,433,1,426,-1,393,433,172,-1,393,391,433,-1,171,393,172,-1,395,393,171,-1,171,398,395,-1,398,171,396,-1,396,424,399,-1,396,397,424,-1,301,402,434,-1,301,408,402,-1,124,434,224,-1,124,123,434,-1,339,226,33,-1,339,404,226,-1,35,405,36,-1,35,223,405,-1,143,183,182,-1,417,183,143,-1,435,297,184,-1,298,297,435,-1,317,184,242,-1,435,184,317,-1,335,112,113,-1,112,335,306,-1,32,36,405,-1,368,36,32,-1,341,200,24,-1,341,340,200,-1,209,307,205,-1,92,307,209,-1,315,189,188,-1,315,293,189,-1,39,192,40,-1,245,192,39,-1,192,245,193,-1,116,76,81,-1,116,115,76,-1,84,335,80,-1,84,306,335,-1,107,435,317,-1,107,211,435,-1,298,211,210,-1,298,435,211,-1,181,297,182,-1,181,177,297,-1,322,226,228,-1,33,226,322,-1,403,226,404,-1,403,321,226,-1,403,434,402,-1,224,434,403,-1,399,349,227,-1,399,424,349,-1,123,301,434,-1,123,271,301,-1,408,395,398,-1,408,394,395,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolr1lc_Geo_5_583_coordIndex_4()
		{
			int[] value = {169,272,120,-1,272,169,270,-1,332,65,219,-1,384,65,332,-1,66,384,190,-1,384,66,65,-1,426,172,433,-1,172,426,173,-1,432,391,409,-1,391,432,433,-1,233,412,388,-1,233,387,412,-1,373,432,409,-1,373,372,432,-1,344,418,290,-1,418,344,374,-1,234,361,410,-1,361,234,419,-1,167,410,168,-1,410,167,234,-1,414,330,159,-1,330,414,413,-1,239,386,385,-1,386,239,319,-1,154,242,316,-1,153,242,154,-1,220,314,10,-1,46,314,220,-1,199,142,141,-1,199,140,142,-1,157,381,151,-1,157,382,381,-1,313,206,131,-1,313,207,206,-1,380,138,140,-1,278,138,380,-1,369,126,367,-1,369,127,126,-1,123,416,271,-1,123,132,416,-1,122,332,119,-1,332,122,311,-1,110,136,135,-1,110,109,136,-1,207,377,88,-1,207,313,377,-1,23,101,102,-1,23,22,101,-1,61,69,68,-1,69,61,415,-1,69,324,303,-1,415,324,69,-1,360,267,266,-1,362,267,360,-1,264,64,63,-1,60,64,264,-1,68,333,117,-1,333,68,304,-1,202,189,293,-1,189,202,191,-1,271,379,272,-1,271,416,379,-1,314,150,274,-1,314,149,150,-1,246,370,193,-1,246,215,370,-1,245,43,42,-1,245,44,43,-1,134,273,150,-1,273,134,133,-1,365,30,29,-1,365,364,30,-1,279,253,281,-1,253,279,278,-1,419,290,418,-1,290,419,288,-1,21,82,285,-1,21,80,82,-1,16,147,287,-1,16,205,147,-1,249,12,250,-1,249,52,12,-1,248,363,247,-1,248,283,363,-1,176,420,327,-1,431,420,176,-1,430,244,243,-1,430,421,244,-1,429,320,241,-1,429,422,320,-1,291,288,236,-1,291,289,288,-1,397,423,424,-1,427,423,397,-1,1,425,426,-1,0,425,1,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr1lc_Geo_5_583_normalIndex_1()
		{
			int[] value = {23,19,17,-1,208,268,327,-1,242,77,93,-1,242,81,77,-1,223,72,231,-1,256,377,357,-1,132,255,127,-1,254,255,343,-1,216,68,70,-1,127,95,86,-1,153,122,107,-1,326,296,294,-1,326,294,387,-1,406,429,413,-1,413,395,374,-1,156,139,163,-1,123,77,81,-1,168,97,93,-1,131,139,88,-1,347,349,289,-1,334,368,365,-1,370,365,368,-1,308,332,290,-1,16,20,4,-1,225,311,287,-1,345,343,331,-1,324,274,304,-1,33,130,146,-1,363,357,300,-1,33,35,28,-1,322,375,323,-1,285,337,339,-1,358,344,306,-1,380,321,327,-1,392,341,310,-1,190,204,145,-1,69,91,141,-1,90,92,136,-1,154,167,185,-1,92,117,136,-1,90,103,68,-1,50,63,58,-1,346,340,397,-1,329,198,212,-1,263,350,329,-1,320,350,263,-1,186,295,297,-1,82,42,165,-1,114,276,164,-1,184,220,138,-1,259,206,138,-1,138,220,259,-1,241,159,192,-1,224,159,241,-1,94,61,140,-1,147,75,142,-1,203,262,229,-1,309,280,333,-1,182,179,155,-1,285,205,197,-1,232,289,160,-1,342,341,392,-1,372,409,408,-1,316,372,355,-1,264,313,234,-1,236,222,209,-1,313,383,389,-1,199,214,148,-1,148,104,199,-1,47,114,45,-1,133,49,62,-1,424,385,418,-1,419,429,424,-1,421,420,428,-1,416,398,367,-1,430,421,435,-1,58,128,70,-1,180,198,329,-1,268,180,329,-1,308,360,376,-1,323,337,344,-1,304,315,362,-1,137,129,102,-1,88,156,176,-1,153,106,173,-1,284,258,309,-1,100,121,159,-1,361,345,325,-1,299,300,357,-1,108,132,86,-1,171,193,141,-1,125,71,86,-1,388,404,356,-1,66,137,102,-1,72,46,65,-1,72,67,46,-1,96,72,60,-1,225,238,274,-1,348,349,347,-1,285,306,337,-1,364,329,350,-1,167,145,204,-1,204,185,167,-1,416,405,411,-1,424,429,406,-1,220,246,307,-1,335,251,314,-1,42,7,22,-1,53,79,48,-1,52,134,57,-1,402,407,389,-1,383,392,402,-1,272,298,265,-1,389,407,409,-1,407,427,409,-1,408,426,401,-1,150,115,129,-1,208,327,321,-1,245,361,221,-1,242,381,235,-1,113,124,119,-1,388,333,398,-1,176,173,110,-1,261,224,288,-1,294,302,387,-1,241,284,288,-1,138,61,94,-1,276,308,164,-1,79,202,263,-1,75,58,63,-1,63,111,75,-1,154,185,155,-1,366,346,402,-1,167,117,78,-1,78,149,145,-1,193,149,141,-1,346,366,310,-1,91,92,80,-1,179,182,111,-1,322,299,377,-1,35,33,146,-1,311,359,330,-1,26,14,41,-1,338,359,331,-1,324,304,325,-1,225,287,130,-1,89,169,144,-1,59,74,160,-1,67,73,51,-1,123,60,115,-1,131,150,139,-1,60,81,96,-1,173,76,110,-1,203,157,188,-1,211,175,143,-1,143,124,112,-1,125,100,135,-1,171,125,135,-1,306,197,174,-1,216,70,128,-1,254,127,255,-1,256,363,255,-1,390,244,339,-1,221,107,122,-1,208,321,358,-1,36,39,29,-1,54,57,134,-1,134,118,54,-1,208,358,216,-1,391,221,361,-1,391,260,221,-1,255,338,343,-1,244,205,339,-1,256,357,363,-1,216,128,208,-1,171,135,159,-1,143,112,122,-1,211,143,153,-1,230,203,188,-1,400,416,367,-1,173,106,76,-1,414,412,398,-1,60,123,81,-1,97,76,106,-1,115,60,65,-1,67,51,46,-1,51,55,64,-1,89,162,169,-1,368,369,349,-1,82,225,130,-1,324,325,331,-1,343,338,331,-1,324,311,274,-1,41,53,26,-1,311,330,287,-1,35,146,152,-1,33,28,34,-1,377,390,322,-1,202,297,320,-1,375,337,323,-1,380,373,384,-1,111,63,179,-1,80,87,91,-1,310,283,346,-1,193,190,149,-1,78,69,149,-1,167,154,117,-1,310,261,283,-1,208,128,180,-1,111,142,75,-1,79,263,178,-1,276,354,308,-1,138,66,61,-1,288,224,241,-1,164,308,257,-1,294,243,302,-1,261,217,224,-1,398,412,388,-1,227,73,67,-1,242,393,381,-1,339,205,285,-1,216,90,68,-1,150,168,115,-1,408,432,426,-1,407,410,427,-1,409,372,389,-1,272,312,298,-1,239,265,250,-1,239,272,265,-1,402,389,383,-1,52,148,134,-1,48,26,53,-1,45,42,22,-1,335,271,251,-1,307,259,220,-1,406,396,424,-1,411,419,416,-1,411,429,419,-1,204,195,185,-1,350,373,364,-1,350,384,373,-1,306,344,337,-1,279,300,299,-1,274,311,225,-1,65,60,72,-1,66,102,105,-1,76,88,110,-1,356,309,388,-1,125,126,71,-1,141,126,171,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr1lc_Geo_5_583_normalIndex_2()
		{
			int[] value = {108,86,71,-1,357,377,299,-1,325,362,361,-1,159,135,100,-1,284,309,356,-1,211,153,173,-1,88,176,110,-1,168,123,115,-1,362,325,304,-1,308,376,332,-1,329,364,268,-1,58,70,50,-1,430,414,421,-1,420,431,428,-1,419,424,420,-1,413,429,411,-1,424,396,385,-1,133,62,161,-1,45,22,47,-1,389,319,313,-1,222,215,209,-1,234,196,264,-1,316,355,312,-1,372,408,355,-1,392,383,342,-1,208,180,268,-1,221,122,112,-1,285,197,306,-1,256,132,244,-1,155,185,182,-1,125,171,126,-1,309,333,388,-1,262,280,229,-1,243,211,173,-1,165,252,238,-1,224,171,159,-1,159,121,192,-1,138,94,184,-1,114,164,45,-1,82,37,42,-1,186,297,202,-1,202,320,263,-1,263,329,292,-1,292,329,212,-1,78,145,167,-1,128,58,180,-1,90,136,103,-1,92,91,69,-1,366,402,392,-1,90,80,92,-1,69,141,149,-1,190,145,149,-1,366,392,310,-1,380,364,373,-1,380,384,321,-1,358,379,344,-1,337,375,339,-1,295,322,323,-1,299,322,248,-1,363,300,328,-1,33,34,130,-1,345,331,325,-1,4,1,16,-1,308,290,257,-1,368,334,369,-1,370,381,365,-1,51,59,55,-1,51,64,46,-1,168,93,77,-1,123,168,77,-1,156,88,139,-1,413,374,399,-1,413,399,406,-1,400,405,416,-1,296,230,294,-1,153,143,122,-1,109,98,124,-1,127,86,132,-1,121,100,109,-1,343,345,254,-1,132,256,255,-1,227,74,73,-1,242,93,260,-1,260,93,99,-1,340,346,283,-1,27,29,39,-1,27,25,29,-1,62,151,161,-1,56,151,62,-1,237,303,240,-1,237,305,303,-1,134,218,118,-1,218,134,219,-1,351,293,298,-1,353,293,351,-1,433,428,423,-1,433,434,428,-1,254,361,245,-1,361,254,345,-1,87,174,197,-1,87,80,174,-1,12,11,24,-1,12,5,11,-1,98,112,124,-1,98,120,112,-1,188,211,243,-1,211,188,175,-1,230,243,294,-1,230,188,243,-1,371,405,400,-1,405,371,386,-1,281,317,378,-1,281,249,317,-1,105,129,84,-1,129,105,102,-1,73,59,51,-1,73,74,59,-1,55,61,66,-1,55,59,61,-1,354,334,308,-1,334,354,369,-1,6,10,3,-1,10,6,15,-1,187,53,41,-1,187,186,53,-1,295,248,322,-1,295,291,248,-1,256,390,377,-1,390,256,244,-1,63,103,179,-1,63,50,103,-1,341,247,310,-1,341,282,247,-1,117,155,136,-1,154,155,117,-1,187,279,291,-1,152,279,187,-1,276,144,269,-1,144,276,114,-1,302,378,387,-1,302,281,378,-1,121,181,192,-1,121,113,181,-1,282,342,278,-1,282,341,342,-1,196,213,264,-1,196,147,213,-1,404,340,356,-1,397,340,404,-1,172,185,195,-1,185,172,182,-1,393,260,391,-1,393,242,260,-1,197,108,87,-1,197,205,108,-1,257,275,252,-1,257,290,275,-1,277,312,272,-1,277,316,312,-1,199,239,214,-1,199,233,239,-1,116,236,209,-1,178,236,116,-1,26,38,11,-1,26,48,38,-1,6,5,12,-1,5,6,4,-1,16,0,7,-1,16,1,0,-1,14,35,41,-1,14,28,35,-1,14,20,28,-1,22,0,8,-1,22,7,0,-1,13,40,8,-1,40,13,43,-1,43,83,40,-1,83,43,101,-1,161,183,133,-1,183,161,166,-1,177,210,207,-1,177,183,210,-1,160,286,140,-1,286,160,289,-1,201,271,273,-1,201,207,271,-1,314,240,303,-1,314,251,240,-1,246,352,307,-1,246,273,352,-1,374,352,399,-1,374,307,352,-1,411,386,394,-1,405,386,411,-1,435,427,430,-1,435,432,427,-1,336,369,354,-1,336,349,369,-1,65,64,84,-1,64,65,46,-1,340,261,288,-1,340,283,261,-1,359,270,330,-1,359,338,270,-1,326,394,386,-1,326,387,394,-1,106,107,99,-1,153,107,106,-1,426,435,434,-1,435,426,432,-1,434,421,428,-1,435,421,434,-1,419,421,414,-1,419,420,421,-1,424,431,420,-1,424,418,431,-1,314,385,396,-1,314,303,385,-1,307,317,259,-1,317,307,374,-1,207,251,271,-1,207,210,251,-1,170,207,201,-1,170,177,207,-1,170,89,83,-1,162,89,170,-1,89,40,83,-1,89,47,40,-1,8,47,22,-1,47,8,40,-1,2,8,0,-1,8,2,13,-1,37,7,42,-1,37,16,7,-1,1,2,0,-1,1,3,2,-1,5,20,14,-1,5,4,20,-1,44,11,38,-1,11,44,24,-1,191,104,85,-1,191,199,104,-1,38,104,44,-1,38,85,104,-1,191,215,226,-1,209,215,191,-1,199,226,233,-1,191,226,199,-1,277,226,266,-1,226,277,233,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr1lc_Geo_5_583_normalIndex_3()
		{
			int[] value = {316,266,319,-1,266,316,277,-1,351,312,355,-1,312,351,298,-1,342,313,264,-1,342,383,313,-1,363,338,255,-1,363,270,338,-1,142,182,172,-1,142,111,182,-1,238,82,165,-1,225,82,238,-1,213,195,278,-1,213,172,195,-1,258,241,192,-1,284,241,258,-1,113,157,181,-1,119,157,113,-1,281,176,156,-1,302,176,281,-1,137,138,206,-1,137,66,138,-1,269,354,276,-1,269,336,354,-1,152,41,35,-1,152,187,41,-1,263,236,178,-1,263,292,236,-1,212,196,222,-1,212,147,196,-1,126,91,71,-1,141,91,126,-1,155,103,136,-1,155,179,103,-1,247,261,310,-1,261,247,217,-1,364,327,268,-1,364,380,327,-1,320,344,379,-1,320,297,344,-1,375,390,339,-1,322,390,375,-1,279,328,300,-1,301,328,279,-1,270,328,330,-1,270,363,328,-1,248,279,299,-1,279,248,291,-1,34,16,37,-1,28,16,34,-1,16,28,20,-1,315,290,332,-1,315,275,290,-1,360,381,393,-1,365,381,360,-1,368,348,370,-1,348,368,349,-1,336,228,286,-1,269,228,336,-1,84,66,105,-1,64,66,84,-1,64,55,66,-1,131,76,97,-1,131,88,76,-1,378,374,395,-1,378,317,374,-1,349,286,289,-1,349,336,286,-1,124,175,119,-1,143,175,124,-1,262,371,318,-1,371,262,296,-1,109,113,121,-1,124,113,109,-1,24,18,12,-1,18,24,31,-1,223,67,72,-1,227,67,223,-1,72,235,231,-1,96,235,72,-1,221,99,107,-1,260,99,221,-1,431,423,428,-1,422,423,431,-1,403,351,401,-1,403,353,351,-1,250,218,219,-1,253,218,250,-1,189,240,194,-1,189,237,240,-1,30,62,32,-1,30,56,62,-1,17,27,23,-1,27,17,25,-1,161,158,166,-1,151,158,161,-1,303,382,385,-1,305,382,303,-1,293,265,298,-1,293,267,265,-1,425,434,433,-1,425,426,434,-1,385,415,418,-1,382,415,385,-1,245,127,254,-1,245,120,127,-1,370,223,231,-1,348,223,370,-1,174,90,216,-1,90,174,80,-1,10,19,9,-1,10,17,19,-1,86,100,125,-1,95,100,86,-1,95,120,98,-1,95,127,120,-1,203,296,262,-1,296,203,230,-1,318,400,367,-1,400,318,371,-1,156,249,281,-1,156,163,249,-1,97,99,93,-1,97,106,99,-1,347,232,227,-1,347,289,232,-1,334,360,308,-1,334,365,360,-1,332,362,315,-1,332,376,362,-1,4,3,1,-1,3,4,6,-1,330,301,287,-1,301,330,328,-1,291,186,187,-1,291,295,186,-1,282,190,247,-1,204,190,282,-1,69,117,92,-1,69,78,117,-1,198,58,75,-1,180,58,198,-1,402,410,407,-1,402,397,410,-1,397,402,346,-1,236,212,222,-1,236,292,212,-1,79,186,202,-1,53,186,79,-1,164,42,45,-1,165,42,164,-1,94,286,228,-1,94,140,286,-1,206,163,137,-1,249,163,206,-1,243,176,302,-1,173,176,243,-1,229,192,181,-1,258,192,229,-1,278,204,282,-1,204,278,195,-1,142,213,147,-1,142,172,213,-1,280,318,333,-1,262,318,280,-1,356,288,284,-1,288,356,340,-1,96,242,235,-1,242,96,81,-1,401,355,408,-1,355,401,351,-1,319,372,316,-1,319,389,372,-1,250,214,239,-1,214,250,219,-1,196,215,222,-1,196,234,215,-1,319,234,313,-1,234,319,266,-1,209,85,116,-1,209,191,85,-1,214,134,148,-1,214,219,134,-1,31,57,36,-1,31,52,57,-1,15,12,18,-1,12,15,6,-1,15,17,10,-1,15,25,17,-1,79,116,48,-1,79,178,116,-1,19,21,9,-1,21,19,32,-1,43,21,49,-1,43,13,21,-1,133,43,49,-1,101,43,133,-1,133,177,101,-1,177,133,183,-1,183,194,210,-1,183,166,194,-1,162,201,200,-1,162,170,201,-1,220,200,246,-1,220,184,200,-1,399,335,406,-1,399,352,335,-1,413,394,395,-1,413,411,394,-1,333,367,398,-1,318,367,333,-1,417,414,430,-1,412,414,417,-1,410,430,427,-1,417,430,410,-1,379,350,320,-1,350,379,384,-1,387,395,394,-1,378,395,387,-1,98,100,95,-1,98,109,100,-1,71,87,108,-1,91,87,71,-1,393,376,360,-1,393,391,376,-1,139,137,163,-1,150,137,139,-1,137,150,129,-1,297,323,344,-1,297,295,323,-1,321,379,358,-1,321,384,379,-1,397,417,410,-1,397,404,417,-1,412,404,388,-1,412,417,404,-1,416,414,398,-1,416,419,414,-1,396,335,314,-1,406,335,396,-1,273,335,352,-1,273,271,335,-1,273,200,201,-1,246,200,273,-1,210,240,251,-1,210,194,240,-1,184,162,200,-1,184,169,162,-1,170,101,177,-1,170,83,101,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolr1lc_Geo_5_583_normalIndex_4()
		{
			int[] value = {47,144,114,-1,144,47,89,-1,252,274,238,-1,275,274,252,-1,304,275,315,-1,275,304,274,-1,32,49,21,-1,49,32,62,-1,9,13,2,-1,13,9,21,-1,48,85,38,-1,48,116,85,-1,3,9,2,-1,3,10,9,-1,25,18,29,-1,18,25,15,-1,52,24,44,-1,24,52,31,-1,148,44,104,-1,44,148,52,-1,266,215,234,-1,215,266,226,-1,272,233,277,-1,233,272,239,-1,408,427,432,-1,409,427,408,-1,348,227,223,-1,347,227,348,-1,258,280,309,-1,258,229,280,-1,264,278,342,-1,264,213,278,-1,217,171,224,-1,217,193,171,-1,181,203,229,-1,157,203,181,-1,249,259,317,-1,249,206,259,-1,184,228,169,-1,184,94,228,-1,164,252,165,-1,252,164,257,-1,212,75,147,-1,212,198,75,-1,193,247,190,-1,193,217,247,-1,70,103,50,-1,70,68,103,-1,287,146,130,-1,146,287,301,-1,146,279,152,-1,301,279,146,-1,11,14,26,-1,5,14,11,-1,359,324,331,-1,311,324,359,-1,130,37,82,-1,37,130,34,-1,361,376,391,-1,376,361,362,-1,169,269,144,-1,169,228,269,-1,227,160,74,-1,227,232,160,-1,115,84,129,-1,115,65,84,-1,150,97,168,-1,150,131,97,-1,140,59,160,-1,59,140,61,-1,386,296,326,-1,386,371,296,-1,188,119,175,-1,119,188,157,-1,31,29,18,-1,29,31,36,-1,216,306,174,-1,216,358,306,-1,132,205,244,-1,132,108,205,-1,381,231,235,-1,381,370,231,-1,221,120,245,-1,221,112,120,-1,418,422,431,-1,415,422,418,-1,425,401,426,-1,425,403,401,-1,267,250,265,-1,267,253,250,-1,54,36,57,-1,54,39,36,-1,166,189,194,-1,158,189,166,-1,19,30,32,-1,23,30,19,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr1lr_Geo_5_589_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,10,9,-1,25,26,27,-1,28,29,30,-1,31,32,33,-1,34,35,18,-1,36,37,38,-1,4,39,40,-1,41,4,42,-1,43,44,37,-1,45,46,47,-1,48,49,50,-1,51,52,53,-1,54,49,55,-1,56,57,58,-1,59,60,61,-1,62,63,64,-1,65,66,67,-1,68,7,69,-1,70,71,72,-1,73,74,75,-1,76,77,78,-1,79,43,37,-1,80,81,3,-1,74,78,25,-1,77,82,83,-1,84,85,24,-1,35,86,18,-1,87,88,89,-1,90,91,26,-1,92,93,94,-1,95,96,45,-1,22,97,98,-1,99,7,68,-1,3,81,39,-1,100,0,101,-1,0,102,101,-1,3,39,4,-1,68,103,99,-1,23,22,98,-1,95,45,8,-1,92,104,93,-1,25,90,26,-1,87,28,88,-1,35,105,86,-1,84,24,106,-1,77,83,90,-1,74,25,107,-1,80,108,81,-1,79,37,36,-1,76,109,77,-1,73,110,74,-1,70,72,111,-1,7,112,69,-1,65,50,66,-1,62,113,63,-1,59,61,114,-1,56,115,57,-1,116,54,55,-1,53,117,51,-1,48,55,49,-1,8,45,47,-1,43,118,44,-1,41,5,4,-1,42,4,40,-1,36,38,33,-1,34,18,119,-1,33,38,31,-1,28,30,88,-1,107,25,27,-1,9,106,24,-1,21,119,22,-1,18,86,19,-1,17,120,15,-1,14,121,12,-1,10,122,11,-1,123,104,17,-1,5,124,3,-1,0,2,102,-1,125,126,89,-1,125,127,126,-1,128,23,14,-1,21,23,128,-1,129,10,24,-1,129,130,10,-1,100,87,131,-1,100,101,87,-1,132,133,134,-1,132,135,133,-1,30,136,88,-1,30,137,136,-1,138,32,31,-1,32,138,139,-1,140,141,142,-1,141,140,143,-1,144,31,145,-1,31,144,138,-1,146,147,148,-1,147,146,149,-1,150,151,19,-1,150,152,151,-1,153,154,155,-1,154,153,156,-1,157,155,154,-1,92,155,157,-1,104,158,17,-1,104,159,158,-1,7,95,8,-1,95,7,99,-1,160,161,162,-1,161,160,163,-1,164,134,133,-1,164,165,134,-1,166,167,168,-1,166,80,167,-1,131,166,100,-1,169,166,131,-1,170,164,103,-1,171,164,170,-1,172,173,174,-1,172,162,173,-1,175,130,129,-1,175,176,130,-1,177,150,178,-1,177,179,150,-1,180,181,182,-1,181,180,148,-1,108,183,81,-1,108,141,183,-1,184,83,185,-1,83,184,186,-1,187,177,188,-1,187,189,177,-1,128,190,191,-1,192,190,128,-1,185,82,193,-1,82,185,83,-1,74,29,75,-1,74,107,29,-1,38,44,194,-1,37,44,38,-1,195,196,197,-1,196,195,198,-1,199,200,201,-1,199,188,200,-1,202,34,203,-1,202,111,34,-1,204,77,109,-1,204,82,77,-1,75,205,73,-1,205,75,206,-1,70,202,153,-1,70,111,202,-1,207,208,209,-1,208,207,197,-1,210,199,211,-1,210,212,199,-1,213,73,205,-1,213,214,73,-1,118,215,41,-1,216,215,118,-1,217,218,219,-1,218,217,204,-1,220,73,214,-1,220,110,73,-1,221,70,222,-1,221,71,70,-1,223,224,225,-1,224,223,209,-1,226,227,228,-1,227,226,210,-1,229,214,230,-1,229,220,214,-1,231,215,232,-1,231,233,215,-1,234,235,236,-1,235,234,219,-1,237,227,238,-1,237,228,227,-1,239,221,240,-1,239,241,221,-1,46,242,225,-1,46,45,242,-1,243,235,244,-1,243,236,235,-1,229,245,246,-1,247,245,229,-1,165,248,249,-1,165,250,248,-1,236,251,252,-1,243,251,236,-1,253,247,254,-1,253,255,247,-1,256,257,258,-1,257,256,259,-1,260,261,262,-1,260,263,261,-1,264,16,15,-1,265,16,264,-1,244,266,267,-1,266,244,268,-1,269,270,266,-1,271,270,269,-1,51,253,112,-1,51,117,253,-1,63,272,258,-1,63,273,272,-1,114,274,260,-1,114,61,274,-1,93,58,275,-1,276,58,93,-1,49,66,50,-1,49,265,66,-1,277,65,278,-1,277,279,65,-1,270,280,281,-1,280,270,271,-1,53,282,117,-1,53,283,282,-1,6,284,285,-1,284,6,286,-1,287,61,60,-1,287,288,61,-1,276,56,58,-1,289,56,276,-1,123,289,276,-1,290,289,123,-1,62,288,287,-1,62,64,288,-1,52,6,285,-1,52,51,6,-1,54,265,49,-1,54,16,265,-1,57,275,58,-1,57,291,275,-1,61,292,274,-1,61,288,292,-1,47,273,286,-1,273,47,272,-1,117,255,253,-1,117,282,255,-1,267,270,278,-1,270,267,266,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr1lr_Geo_5_589_coordIndex_2()
		{
			int[] value = {251,265,264,-1,66,265,251,-1,262,239,291,-1,262,261,239,-1,259,292,257,-1,292,259,237,-1,112,254,69,-1,112,253,254,-1,293,266,268,-1,269,266,293,-1,264,252,251,-1,264,294,252,-1,295,68,69,-1,68,295,296,-1,293,246,245,-1,293,297,246,-1,298,259,256,-1,259,298,299,-1,154,300,157,-1,301,300,154,-1,261,241,239,-1,261,302,241,-1,299,237,259,-1,237,299,228,-1,303,236,252,-1,236,303,234,-1,250,304,248,-1,250,305,304,-1,246,220,229,-1,246,306,220,-1,307,228,299,-1,228,307,226,-1,308,225,242,-1,225,308,223,-1,241,71,221,-1,241,309,71,-1,306,110,220,-1,306,76,110,-1,79,219,234,-1,219,79,217,-1,41,233,5,-1,215,233,41,-1,309,72,71,-1,309,310,72,-1,311,210,226,-1,210,311,212,-1,312,209,223,-1,209,312,207,-1,206,102,205,-1,102,206,101,-1,44,41,42,-1,118,41,44,-1,72,34,111,-1,72,35,34,-1,212,188,199,-1,212,187,188,-1,313,197,207,-1,197,313,195,-1,194,42,40,-1,44,42,194,-1,33,193,36,-1,193,33,185,-1,203,119,21,-1,203,34,119,-1,181,187,314,-1,187,181,189,-1,32,185,33,-1,185,32,184,-1,315,39,316,-1,40,39,315,-1,148,189,181,-1,189,148,147,-1,9,317,106,-1,317,9,318,-1,22,18,20,-1,119,18,22,-1,189,179,177,-1,189,147,179,-1,319,129,320,-1,319,175,129,-1,321,174,96,-1,321,172,174,-1,1,171,170,-1,322,171,1,-1,126,169,131,-1,142,169,126,-1,168,305,322,-1,168,167,305,-1,300,135,132,-1,321,135,300,-1,190,161,163,-1,319,161,190,-1,103,296,170,-1,103,68,296,-1,92,159,104,-1,157,159,92,-1,174,308,242,-1,308,174,173,-1,19,323,20,-1,19,151,323,-1,324,148,180,-1,148,324,146,-1,325,9,11,-1,318,9,325,-1,315,144,145,-1,315,326,144,-1,27,137,30,-1,27,327,137,-1,328,91,186,-1,91,328,329,-1,127,142,126,-1,142,127,140,-1,135,99,133,-1,99,135,95,-1,89,131,87,-1,126,131,89,-1,320,24,85,-1,320,129,24,-1,128,203,21,-1,203,128,191,-1,183,330,316,-1,183,331,330,-1,98,14,23,-1,98,121,14,-1,202,156,153,-1,202,332,156,-1,173,333,308,-1,173,334,333,-1,304,5,233,-1,304,124,5,-1,159,134,158,-1,134,159,132,-1,91,335,26,-1,91,329,335,-1,139,184,32,-1,184,139,336,-1,141,331,183,-1,141,143,331,-1,176,337,130,-1,176,338,337,-1,339,180,340,-1,180,339,324,-1,179,152,150,-1,179,341,152,-1,12,176,13,-1,176,12,338,-1,233,248,304,-1,233,231,248,-1,249,231,120,-1,249,248,231,-1,13,175,192,-1,176,175,13,-1,301,162,172,-1,162,301,160,-1,171,165,164,-1,171,250,165,-1,169,80,166,-1,169,108,80,-1,100,168,0,-1,166,168,100,-1,103,133,99,-1,164,133,103,-1,162,334,173,-1,162,161,334,-1,134,249,158,-1,249,134,165,-1,178,19,86,-1,178,150,19,-1,14,192,128,-1,13,192,14,-1,340,182,342,-1,182,340,180,-1,107,30,29,-1,107,27,30,-1,38,145,31,-1,38,194,145,-1,342,198,195,-1,198,342,182,-1,188,178,200,-1,188,177,178,-1,195,317,342,-1,195,313,317,-1,75,28,206,-1,75,29,28,-1,84,333,85,-1,312,333,84,-1,198,311,196,-1,311,198,314,-1,201,105,310,-1,201,200,105,-1,191,163,332,-1,190,163,191,-1,193,204,217,-1,204,193,82,-1,332,160,156,-1,163,160,332,-1,197,307,208,-1,307,197,196,-1,211,201,343,-1,211,199,201,-1,2,205,102,-1,2,213,205,-1,43,216,118,-1,303,216,43,-1,218,109,344,-1,218,204,109,-1,345,343,302,-1,345,211,343,-1,153,222,70,-1,155,222,153,-1,209,298,224,-1,298,209,208,-1,227,211,345,-1,227,210,211,-1,295,214,213,-1,295,230,214,-1,216,232,215,-1,294,232,216,-1,219,346,235,-1,346,219,218,-1,238,345,263,-1,238,227,345,-1,240,222,94,-1,240,221,222,-1,347,225,224,-1,347,46,225,-1,244,346,268,-1,244,235,346,-1,229,254,247,-1,254,229,230,-1,232,120,231,-1,15,120,232,-1,323,98,97,-1,151,98,323,-1,11,339,325,-1,11,324,339,-1,122,324,11,-1,122,146,324,-1,337,146,122,-1,337,149,146,-1,338,149,337,-1,12,149,338,-1,12,341,149,-1,12,152,341,-1,121,152,12,-1,121,151,152,-1,151,121,98,-1,348,247,255,-1,348,245,247,-1,347,258,272,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr1lr_Geo_5_589_coordIndex_3()
		{
			int[] value = {258,347,256,-1,238,260,274,-1,260,238,263,-1,275,94,93,-1,275,240,94,-1,243,267,67,-1,267,243,244,-1,349,269,348,-1,349,271,269,-1,112,6,51,-1,6,112,7,-1,258,64,63,-1,64,258,257,-1,262,114,260,-1,350,114,262,-1,276,104,123,-1,276,93,104,-1,137,125,136,-1,327,125,137,-1,327,127,125,-1,335,127,327,-1,335,140,127,-1,335,143,140,-1,329,143,335,-1,328,143,329,-1,336,143,328,-1,336,331,143,-1,139,331,336,-1,139,330,331,-1,139,326,330,-1,138,326,139,-1,144,326,138,-1,113,273,63,-1,113,351,273,-1,350,59,114,-1,352,59,350,-1,290,54,116,-1,290,123,54,-1,57,352,350,-1,115,352,57,-1,351,286,273,-1,351,284,286,-1,282,353,349,-1,283,353,282,-1,280,349,353,-1,280,271,349,-1,278,281,277,-1,281,278,270,-1,48,65,279,-1,48,50,65,-1,123,16,54,-1,123,17,16,-1,291,350,262,-1,57,350,291,-1,292,64,257,-1,288,64,292,-1,8,286,6,-1,286,8,47,-1,282,348,255,-1,282,349,348,-1,65,267,278,-1,65,67,267,-1,251,67,66,-1,67,251,243,-1,240,291,239,-1,275,291,240,-1,237,274,292,-1,274,237,238,-1,46,272,47,-1,272,46,347,-1,269,245,348,-1,269,293,245,-1,15,294,264,-1,15,232,294,-1,230,69,254,-1,69,230,295,-1,268,297,293,-1,268,346,297,-1,256,224,298,-1,256,347,224,-1,94,155,92,-1,94,222,155,-1,263,302,261,-1,263,345,302,-1,346,344,297,-1,346,218,344,-1,303,294,216,-1,252,294,303,-1,213,296,295,-1,296,213,2,-1,297,306,246,-1,297,344,306,-1,208,299,298,-1,299,208,307,-1,156,301,154,-1,160,301,156,-1,302,309,241,-1,302,343,309,-1,344,76,306,-1,344,109,76,-1,43,234,303,-1,234,43,79,-1,305,124,304,-1,305,167,124,-1,343,310,309,-1,343,201,310,-1,196,226,307,-1,226,196,311,-1,308,312,223,-1,308,333,312,-1,167,3,124,-1,167,80,3,-1,76,74,110,-1,76,78,74,-1,36,217,79,-1,217,36,193,-1,35,310,105,-1,72,310,35,-1,314,212,311,-1,212,314,187,-1,84,207,312,-1,207,84,313,-1,28,101,206,-1,101,28,87,-1,25,77,90,-1,78,77,25,-1,313,106,317,-1,313,84,106,-1,200,86,105,-1,200,178,86,-1,182,314,198,-1,314,182,181,-1,145,40,315,-1,194,40,145,-1,186,90,83,-1,90,186,91,-1,342,318,340,-1,342,317,318,-1,157,132,159,-1,157,300,132,-1,161,320,334,-1,161,319,320,-1,135,96,95,-1,135,321,96,-1,0,322,1,-1,168,322,0,-1,142,108,169,-1,142,141,108,-1,322,250,171,-1,322,305,250,-1,301,321,300,-1,172,321,301,-1,192,319,190,-1,175,319,192,-1,96,242,45,-1,96,174,242,-1,158,120,17,-1,158,249,120,-1,170,2,1,-1,170,296,2,-1,97,20,323,-1,22,20,97,-1,149,179,147,-1,179,149,341,-1,325,340,318,-1,340,325,339,-1,326,316,330,-1,315,316,326,-1,336,186,184,-1,186,336,328,-1,26,327,27,-1,26,335,327,-1,136,89,88,-1,89,136,125,-1,316,81,183,-1,81,316,39,-1,334,85,333,-1,334,320,85,-1,203,332,202,-1,203,191,332,-1,122,130,337,-1,130,122,10,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr1lr_Geo_5_589_normalIndex_1()
		{
			int[] value = {75,79,44,-1,248,284,269,-1,7,19,21,-1,88,99,154,-1,216,228,263,-1,336,348,318,-1,306,281,288,-1,302,291,285,-1,61,99,88,-1,110,148,92,-1,52,49,71,-1,266,252,286,-1,339,322,306,-1,287,315,293,-1,284,245,289,-1,316,284,311,-1,298,327,315,-1,57,12,2,-1,303,347,310,-1,15,22,34,-1,349,347,341,-1,321,312,337,-1,165,118,113,-1,77,32,68,-1,280,304,275,-1,41,19,8,-1,350,332,325,-1,36,58,40,-1,139,174,120,-1,271,298,315,-1,177,220,248,-1,58,120,110,-1,174,203,209,-1,37,56,61,-1,322,292,306,-1,70,81,101,-1,162,182,148,-1,305,330,353,-1,98,156,57,-1,291,246,250,-1,90,19,41,-1,248,220,245,-1,76,75,51,-1,75,48,51,-1,248,245,284,-1,41,91,90,-1,285,291,250,-1,98,57,21,-1,305,328,330,-1,110,162,148,-1,70,52,81,-1,322,307,292,-1,37,61,45,-1,174,209,162,-1,58,110,60,-1,177,181,220,-1,271,315,287,-1,139,190,174,-1,36,65,58,-1,350,325,344,-1,19,11,8,-1,280,310,304,-1,77,43,32,-1,165,113,140,-1,321,290,312,-1,351,349,341,-1,34,25,15,-1,303,341,347,-1,21,57,2,-1,298,335,327,-1,316,269,284,-1,311,284,289,-1,287,293,286,-1,339,306,320,-1,286,293,266,-1,52,71,81,-1,60,110,92,-1,88,45,61,-1,302,320,291,-1,306,292,281,-1,318,279,336,-1,263,234,216,-1,99,155,154,-1,331,328,318,-1,269,215,248,-1,75,44,48,-1,161,116,101,-1,161,164,116,-1,282,285,263,-1,302,285,282,-1,85,99,61,-1,85,107,99,-1,76,70,86,-1,76,51,70,-1,231,136,179,-1,231,185,136,-1,71,128,81,-1,71,127,128,-1,227,252,266,-1,252,227,217,-1,169,187,135,-1,187,169,189,-1,225,266,267,-1,266,225,227,-1,178,163,151,-1,163,178,184,-1,244,233,281,-1,244,214,233,-1,299,260,297,-1,260,299,265,-1,262,297,260,-1,305,297,262,-1,328,243,318,-1,328,268,243,-1,19,98,21,-1,98,19,90,-1,221,158,168,-1,158,221,224,-1,115,179,136,-1,115,143,179,-1,111,171,103,-1,111,177,171,-1,86,111,76,-1,121,111,86,-1,82,115,91,-1,112,115,82,-1,173,122,131,-1,173,168,122,-1,133,107,85,-1,133,167,107,-1,172,244,256,-1,172,180,244,-1,124,125,93,-1,125,124,151,-1,181,219,220,-1,181,187,219,-1,236,209,251,-1,209,236,202,-1,126,172,166,-1,126,132,172,-1,282,230,277,-1,237,230,282,-1,251,203,247,-1,203,251,209,-1,58,49,40,-1,58,60,49,-1,293,327,295,-1,315,327,293,-1,50,83,46,-1,83,50,84,-1,157,261,264,-1,157,166,261,-1,309,339,300,-1,309,344,339,-1,201,174,190,-1,201,203,174,-1,40,29,36,-1,29,40,38,-1,350,309,299,-1,350,344,309,-1,27,39,16,-1,39,27,46,-1,119,157,153,-1,119,123,157,-1,17,36,29,-1,17,31,36,-1,335,323,316,-1,342,323,335,-1,238,207,242,-1,207,238,201,-1,69,36,31,-1,69,65,36,-1,333,350,352,-1,333,332,350,-1,18,6,14,-1,6,18,16,-1,105,114,100,-1,114,105,119,-1,62,31,24,-1,62,69,31,-1,283,323,329,-1,283,276,323,-1,272,241,273,-1,241,272,242,-1,97,114,104,-1,97,100,114,-1,317,333,340,-1,317,314,333,-1,12,63,14,-1,12,57,63,-1,270,241,240,-1,270,273,241,-1,62,150,144,-1,67,150,62,-1,143,212,192,-1,143,146,212,-1,273,294,301,-1,270,294,273,-1,20,67,23,-1,20,59,67,-1,30,72,26,-1,72,30,73,-1,137,255,257,-1,137,129,255,-1,343,348,336,-1,345,348,343,-1,240,208,239,-1,208,240,210,-1,196,199,208,-1,200,199,196,-1,15,20,11,-1,15,25,20,-1,32,0,26,-1,32,3,0,-1,140,109,137,-1,140,113,109,-1,330,337,334,-1,324,337,330,-1,347,304,310,-1,347,345,304,-1,229,280,222,-1,229,278,280,-1,199,193,191,-1,193,199,200,-1,34,66,25,-1,34,64,66,-1,7,5,10,-1,5,7,1,-1,89,113,118,-1,89,95,113,-1,324,321,337,-1,326,321,324,-1,331,326,324,-1,338,326,331,-1,77,95,89,-1,77,68,95,-1,22,7,10,-1,22,15,7,-1,349,345,347,-1,349,348,345,-1,312,334,337,-1,312,319,334,-1,113,96,109,-1,113,95,96,-1,2,3,1,-1,3,2,0,-1,25,59,20,-1,25,66,59,-1,239,199,222,-1,199,239,208,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr1lr_Geo_5_589_normalIndex_2()
		{
			int[] value = {294,345,343,-1,304,345,294,-1,257,317,319,-1,257,255,317,-1,73,96,72,-1,96,73,97,-1,11,23,8,-1,11,20,23,-1,197,208,210,-1,196,208,197,-1,343,301,294,-1,343,346,301,-1,13,41,8,-1,41,13,42,-1,197,144,150,-1,197,195,144,-1,33,73,30,-1,73,33,78,-1,260,226,262,-1,223,226,260,-1,255,314,317,-1,255,253,314,-1,78,97,73,-1,97,78,100,-1,296,273,301,-1,273,296,272,-1,146,211,212,-1,146,160,211,-1,144,69,62,-1,144,147,69,-1,80,100,78,-1,100,80,105,-1,54,14,63,-1,14,54,18,-1,314,332,333,-1,314,313,332,-1,147,65,69,-1,147,139,65,-1,271,242,272,-1,242,271,238,-1,316,276,269,-1,323,276,316,-1,313,325,332,-1,313,308,325,-1,108,119,105,-1,119,108,123,-1,28,16,18,-1,16,28,27,-1,38,48,29,-1,48,38,51,-1,327,316,311,-1,335,316,327,-1,325,339,344,-1,325,322,339,-1,123,166,157,-1,123,126,166,-1,35,46,27,-1,46,35,50,-1,295,311,289,-1,327,311,295,-1,286,247,287,-1,247,286,251,-1,300,320,302,-1,300,339,320,-1,125,126,117,-1,126,125,132,-1,252,251,286,-1,251,252,236,-1,254,245,232,-1,289,245,254,-1,151,132,125,-1,132,151,163,-1,88,47,45,-1,47,88,74,-1,291,306,288,-1,320,306,291,-1,132,180,172,-1,132,163,180,-1,141,85,94,-1,141,133,85,-1,183,131,156,-1,183,173,131,-1,79,112,82,-1,102,112,79,-1,116,121,86,-1,135,121,116,-1,103,160,102,-1,103,171,160,-1,226,185,231,-1,183,185,226,-1,230,158,224,-1,141,158,230,-1,91,42,82,-1,91,41,42,-1,305,268,328,-1,262,268,305,-1,131,54,63,-1,54,131,122,-1,281,235,288,-1,281,233,235,-1,170,151,124,-1,151,170,178,-1,134,88,154,-1,74,88,134,-1,254,225,267,-1,254,218,225,-1,92,127,71,-1,92,138,127,-1,198,182,202,-1,182,198,186,-1,164,135,116,-1,135,164,169,-1,185,90,136,-1,90,185,98,-1,101,86,70,-1,116,86,101,-1,94,61,56,-1,94,85,61,-1,282,300,302,-1,300,282,277,-1,219,206,232,-1,219,204,206,-1,250,263,285,-1,250,234,263,-1,309,265,299,-1,309,274,265,-1,122,55,54,-1,122,106,55,-1,211,269,276,-1,211,215,269,-1,268,179,243,-1,179,268,231,-1,182,175,148,-1,182,186,175,-1,217,236,252,-1,236,217,213,-1,187,204,219,-1,187,189,204,-1,167,159,107,-1,167,176,159,-1,145,124,87,-1,124,145,170,-1,180,214,244,-1,180,188,214,-1,216,167,228,-1,167,216,176,-1,276,212,211,-1,276,283,212,-1,192,283,279,-1,192,212,283,-1,228,133,237,-1,167,133,228,-1,223,168,173,-1,168,223,221,-1,112,143,115,-1,112,146,143,-1,121,177,111,-1,121,181,177,-1,76,103,75,-1,111,103,76,-1,91,136,90,-1,115,136,91,-1,168,106,122,-1,168,158,106,-1,179,192,243,-1,192,179,143,-1,256,281,292,-1,256,244,281,-1,263,237,282,-1,228,237,263,-1,87,93,53,-1,93,87,124,-1,60,71,49,-1,60,92,71,-1,293,267,266,-1,293,295,267,-1,53,84,50,-1,84,53,93,-1,166,256,261,-1,166,172,256,-1,50,47,53,-1,50,35,47,-1,40,52,38,-1,40,49,52,-1,37,55,56,-1,28,55,37,-1,84,108,83,-1,108,84,117,-1,264,307,308,-1,264,261,307,-1,277,224,274,-1,230,224,277,-1,247,201,238,-1,201,247,203,-1,274,221,265,-1,224,221,274,-1,46,80,39,-1,80,46,83,-1,153,264,259,-1,153,157,264,-1,44,29,48,-1,44,17,29,-1,298,342,335,-1,296,342,298,-1,207,190,194,-1,207,201,190,-1,142,259,253,-1,142,153,259,-1,299,352,350,-1,297,352,299,-1,16,33,6,-1,33,16,39,-1,114,153,142,-1,114,119,153,-1,13,31,17,-1,13,24,31,-1,342,329,323,-1,346,329,342,-1,242,205,241,-1,205,242,207,-1,104,142,129,-1,104,114,142,-1,340,352,353,-1,340,333,352,-1,4,14,6,-1,4,12,14,-1,240,205,210,-1,240,241,205,-1,62,23,67,-1,23,62,24,-1,329,279,283,-1,336,279,329,-1,235,250,246,-1,233,250,235,-1,154,145,134,-1,154,170,145,-1,155,170,154,-1,155,178,170,-1,159,178,155,-1,159,184,178,-1,176,184,159,-1,216,184,176,-1,216,188,184,-1,216,214,188,-1,234,214,216,-1,234,233,214,-1,233,234,250,-1,149,67,59,-1,149,150,67,-1,4,26,0,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr1lr_Geo_5_589_normalIndex_3()
		{
			int[] value = {26,4,30,-1,104,137,109,-1,137,104,129,-1,334,353,330,-1,334,340,353,-1,270,239,275,-1,239,270,240,-1,152,196,149,-1,152,200,196,-1,11,7,15,-1,7,11,19,-1,26,68,32,-1,68,26,72,-1,257,140,137,-1,258,140,257,-1,324,328,331,-1,324,330,328,-1,127,161,128,-1,138,161,127,-1,138,164,161,-1,175,164,138,-1,175,169,164,-1,175,189,169,-1,186,189,175,-1,198,189,186,-1,213,189,198,-1,213,204,189,-1,217,204,213,-1,217,206,204,-1,217,218,206,-1,227,218,217,-1,225,218,227,-1,43,3,32,-1,43,9,3,-1,258,165,140,-1,249,165,258,-1,338,349,351,-1,338,331,349,-1,312,249,258,-1,290,249,312,-1,9,1,3,-1,9,5,1,-1,66,130,152,-1,64,130,66,-1,193,152,130,-1,193,200,152,-1,222,191,229,-1,191,222,199,-1,303,280,278,-1,303,310,280,-1,331,348,349,-1,331,318,348,-1,319,258,257,-1,312,258,319,-1,96,68,72,-1,95,68,96,-1,21,1,7,-1,1,21,2,-1,66,149,59,-1,66,152,149,-1,280,239,222,-1,280,275,239,-1,294,275,304,-1,275,294,270,-1,340,319,317,-1,334,319,340,-1,97,109,96,-1,109,97,104,-1,12,0,2,-1,0,12,4,-1,196,150,149,-1,196,197,150,-1,336,346,343,-1,336,329,346,-1,24,8,23,-1,8,24,13,-1,210,195,197,-1,210,205,195,-1,30,6,33,-1,30,4,6,-1,353,297,305,-1,353,352,297,-1,129,253,255,-1,129,142,253,-1,205,194,195,-1,205,207,194,-1,296,346,342,-1,301,346,296,-1,17,42,13,-1,42,17,44,-1,195,147,144,-1,195,194,147,-1,39,78,33,-1,78,39,80,-1,265,223,260,-1,221,223,265,-1,253,313,314,-1,253,259,313,-1,194,139,147,-1,194,190,139,-1,298,272,296,-1,272,298,271,-1,160,215,211,-1,160,171,215,-1,259,308,313,-1,259,264,308,-1,83,105,80,-1,105,83,108,-1,54,28,18,-1,54,55,28,-1,171,248,215,-1,171,177,248,-1,139,58,65,-1,139,120,58,-1,287,238,271,-1,238,287,247,-1,322,308,307,-1,325,308,322,-1,117,123,108,-1,123,117,126,-1,37,27,28,-1,27,37,35,-1,52,51,38,-1,51,52,70,-1,110,174,162,-1,120,174,110,-1,35,45,47,-1,35,37,45,-1,261,292,307,-1,261,256,292,-1,93,117,84,-1,117,93,125,-1,267,289,254,-1,295,289,267,-1,202,162,209,-1,162,202,182,-1,53,74,87,-1,53,47,74,-1,262,231,268,-1,262,226,231,-1,158,94,106,-1,158,141,94,-1,185,156,98,-1,185,183,156,-1,75,102,79,-1,103,102,75,-1,135,181,121,-1,135,187,181,-1,102,146,112,-1,102,160,146,-1,223,183,226,-1,173,183,223,-1,237,141,230,-1,133,141,237,-1,156,63,57,-1,156,131,63,-1,243,279,318,-1,243,192,279,-1,82,44,79,-1,82,42,44,-1,246,288,235,-1,291,288,246,-1,184,180,163,-1,180,184,188,-1,134,87,74,-1,87,134,145,-1,218,232,206,-1,254,232,218,-1,213,202,236,-1,202,213,198,-1,148,138,92,-1,148,175,138,-1,128,101,81,-1,101,128,161,-1,232,220,219,-1,220,232,245,-1,106,56,55,-1,106,94,56,-1,300,274,309,-1,300,277,274,-1,155,107,159,-1,107,155,99,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr2lc_Geo_5_595_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,13,12,18,-1,19,20,21,-1,22,23,24,-1,24,25,26,-1,27,28,29,-1,22,30,31,-1,29,32,33,-1,34,35,36,-1,37,38,39,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,37,48,21,-1,41,34,49,-1,17,50,20,-1,51,52,53,-1,54,55,52,-1,56,57,55,-1,58,59,60,-1,61,62,63,-1,0,64,65,-1,66,61,67,-1,61,68,67,-1,69,70,71,-1,72,68,61,-1,73,74,75,-1,76,77,78,-1,79,80,81,-1,82,83,1,-1,84,85,86,-1,55,57,87,-1,88,89,90,-1,91,92,93,-1,94,95,96,-1,84,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,98,97,111,-1,112,104,113,-1,114,115,116,-1,117,118,119,-1,120,121,117,-1,122,115,123,-1,124,120,125,-1,126,127,128,-1,129,130,131,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,34,36,141,-1,104,18,113,-1,89,142,143,-1,97,84,72,-1,60,59,144,-1,53,52,58,-1,145,146,100,-1,147,148,149,-1,150,151,49,-1,150,49,34,-1,16,152,153,-1,154,69,155,-1,156,157,121,-1,158,159,160,-1,161,162,122,-1,163,164,165,-1,118,116,166,-1,167,116,115,-1,168,169,170,-1,86,171,172,-1,173,147,149,-1,174,175,101,-1,176,177,178,-1,179,180,109,-1,173,181,107,-1,182,99,175,-1,183,184,185,-1,186,98,183,-1,187,188,189,-1,190,161,123,-1,69,191,155,-1,79,192,80,-1,89,88,81,-1,85,193,86,-1,194,195,81,-1,16,153,196,-1,197,198,11,-1,186,199,200,-1,201,202,203,-1,61,63,72,-1,204,146,205,-1,206,72,84,-1,207,208,209,-1,210,211,212,-1,213,79,195,-1,74,214,9,-1,215,216,213,-1,217,218,219,-1,66,220,62,-1,221,58,60,-1,222,223,224,-1,56,46,225,-1,46,56,54,-1,47,51,226,-1,50,227,37,-1,228,229,230,-1,230,229,35,-1,231,41,49,-1,48,39,231,-1,29,28,32,-1,22,232,30,-1,233,27,234,-1,235,152,236,-1,148,14,73,-1,74,237,238,-1,13,18,239,-1,6,8,240,-1,11,198,238,-1,215,65,216,-1,11,238,237,-1,105,28,241,-1,238,75,74,-1,73,75,148,-1,233,234,242,-1,26,25,243,-1,36,35,229,-1,48,37,39,-1,231,39,41,-1,228,42,229,-1,37,20,50,-1,229,44,36,-1,47,226,43,-1,47,54,51,-1,54,47,46,-1,222,224,244,-1,221,60,245,-1,246,247,248,-1,66,249,220,-1,10,250,11,-1,9,237,74,-1,209,251,207,-1,252,253,254,-1,201,203,255,-1,186,200,193,-1,11,250,197,-1,17,16,196,-1,256,257,80,-1,81,82,194,-1,206,84,172,-1,85,186,193,-1,81,257,89,-1,88,90,258,-1,187,189,130,-1,186,85,98,-1,183,98,184,-1,182,175,154,-1,173,149,181,-1,176,178,259,-1,260,261,262,-1,101,263,174,-1,264,241,265,-1,170,160,168,-1,115,158,167,-1,166,119,118,-1,163,266,164,-1,161,267,162,-1,158,122,159,-1,114,268,115,-1,156,121,120,-1,110,140,269,-1,110,138,140,-1,16,239,152,-1,270,52,55,-1,34,178,150,-1,178,177,150,-1,28,27,241,-1,148,271,149,-1,52,270,58,-1,223,222,272,-1,104,239,18,-1,271,33,32,-1,23,31,180,-1,34,141,178,-1,138,273,139,-1,137,274,135,-1,275,137,136,-1,132,276,133,-1,129,277,130,-1,128,278,126,-1,124,156,120,-1,123,161,122,-1,122,158,115,-1,117,279,120,-1,117,119,280,-1,118,114,116,-1,107,281,282,-1,108,179,109,-1,105,107,181,-1,102,104,112,-1,99,101,175,-1,85,84,98,-1,190,123,283,-1,91,93,284,-1,55,87,212,-1,88,258,82,-1,82,81,88,-1,86,172,84,-1,194,82,1,-1,81,195,79,-1,80,257,81,-1,76,217,77,-1,73,285,74,-1,72,206,68,-1,69,174,70,-1,204,286,146,-1,252,254,144,-1,270,251,59,-1,210,207,211,-1,287,76,192,-1,10,242,234,-1,65,215,0,-1,61,66,62,-1,58,270,59,-1,56,55,54,-1,54,52,51,-1,51,53,288,-1,20,19,17,-1,44,43,226,-1,42,47,43,-1,37,21,20,-1,45,47,42,-1,42,44,229,-1,35,34,41,-1,39,38,40,-1,37,227,38,-1,289,151,150,-1,26,243,202,-1,29,197,27,-1,24,23,25,-1,22,31,23,-1,21,285,19,-1,15,17,19,-1,237,9,11,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr2lc_Geo_5_595_coordIndex_2()
		{
			int[] value = {10,234,250,-1,165,290,291,-1,292,290,165,-1,293,294,295,-1,293,296,294,-1,297,166,298,-1,297,119,166,-1,299,300,301,-1,302,300,299,-1,303,304,305,-1,304,303,306,-1,307,308,309,-1,307,310,308,-1,196,50,17,-1,196,311,50,-1,48,214,21,-1,48,312,214,-1,53,313,288,-1,53,314,313,-1,315,316,317,-1,315,318,316,-1,319,320,321,-1,319,322,320,-1,323,91,324,-1,91,323,126,-1,12,148,147,-1,148,12,14,-1,233,25,23,-1,233,242,25,-1,240,325,326,-1,240,327,325,-1,328,329,330,-1,328,331,329,-1,313,332,288,-1,313,326,332,-1,221,224,223,-1,221,245,224,-1,192,213,287,-1,192,79,213,-1,215,1,0,-1,1,215,194,-1,333,247,209,-1,333,334,247,-1,214,203,9,-1,214,312,203,-1,208,210,64,-1,208,207,210,-1,211,251,270,-1,211,207,251,-1,80,78,256,-1,80,76,78,-1,76,80,192,-1,275,70,102,-1,275,71,70,-1,248,335,246,-1,248,336,335,-1,258,263,101,-1,258,90,263,-1,63,97,72,-1,205,97,63,-1,205,111,97,-1,312,231,337,-1,48,231,312,-1,338,199,339,-1,199,338,200,-1,27,265,241,-1,27,233,265,-1,340,249,341,-1,249,340,220,-1,342,343,135,-1,344,343,342,-1,161,345,267,-1,161,190,345,-1,130,346,187,-1,346,130,277,-1,98,145,184,-1,98,111,145,-1,274,112,173,-1,137,112,274,-1,264,108,323,-1,264,179,108,-1,273,176,259,-1,138,176,273,-1,314,58,221,-1,314,53,58,-1,30,347,109,-1,30,232,347,-1,169,348,349,-1,168,348,169,-1,158,170,167,-1,158,160,170,-1,350,351,279,-1,351,350,295,-1,164,352,353,-1,266,352,164,-1,163,291,330,-1,163,165,291,-1,308,354,355,-1,308,356,354,-1,357,358,306,-1,357,359,358,-1,348,321,349,-1,319,321,348,-1,168,360,348,-1,361,360,168,-1,122,343,159,-1,122,162,343,-1,361,160,159,-1,160,361,168,-1,121,268,114,-1,157,268,121,-1,362,96,363,-1,362,364,96,-1,200,365,276,-1,200,338,365,-1,128,189,366,-1,367,189,128,-1,129,140,139,-1,129,131,140,-1,199,183,368,-1,199,186,183,-1,154,369,182,-1,154,155,369,-1,282,284,342,-1,281,284,282,-1,110,127,108,-1,110,269,127,-1,238,33,271,-1,238,198,33,-1,347,150,177,-1,347,289,150,-1,271,181,149,-1,32,181,271,-1,236,239,104,-1,236,152,239,-1,257,142,89,-1,257,256,142,-1,8,223,272,-1,7,223,8,-1,370,171,253,-1,370,172,171,-1,370,206,172,-1,103,236,104,-1,371,236,103,-1,371,235,236,-1,232,289,347,-1,201,289,232,-1,201,255,289,-1,55,211,270,-1,55,212,211,-1,273,372,139,-1,273,327,372,-1,323,127,126,-1,323,108,127,-1,135,282,342,-1,274,282,135,-1,276,193,200,-1,132,193,276,-1,191,71,345,-1,191,69,71,-1,131,269,140,-1,131,367,269,-1,130,367,131,-1,130,189,367,-1,127,367,128,-1,127,269,367,-1,339,368,124,-1,199,368,339,-1,96,365,94,-1,364,365,96,-1,268,123,115,-1,268,283,123,-1,191,268,155,-1,191,283,268,-1,344,360,361,-1,344,93,360,-1,320,303,373,-1,320,374,303,-1,322,374,320,-1,322,375,374,-1,188,359,357,-1,188,187,359,-1,355,346,317,-1,346,355,354,-1,330,95,163,-1,329,95,330,-1,295,376,351,-1,376,295,294,-1,279,280,350,-1,117,280,279,-1,377,170,378,-1,167,170,377,-1,262,193,132,-1,262,86,193,-1,314,223,7,-1,314,221,223,-1,109,177,176,-1,109,347,177,-1,281,106,324,-1,106,281,107,-1,185,99,182,-1,185,184,99,-1,277,317,346,-1,317,277,315,-1,379,380,3,-1,340,380,379,-1,380,381,2,-1,380,341,381,-1,380,340,341,-1,376,353,352,-1,376,294,353,-1,227,228,38,-1,227,382,228,-1,70,263,143,-1,174,263,70,-1,286,62,220,-1,286,204,62,-1,336,370,335,-1,336,383,370,-1,143,102,70,-1,103,102,143,-1,243,242,10,-1,243,25,242,-1,333,381,341,-1,384,381,333,-1,226,288,332,-1,226,51,288,-1,329,385,363,-1,331,385,329,-1,225,45,219,-1,45,225,46,-1,327,272,372,-1,327,8,272,-1,327,240,8,-1,228,45,42,-1,382,45,228,-1,255,312,337,-1,203,312,255,-1,24,202,201,-1,24,26,202,-1,15,14,13,-1,14,15,73,-1,202,9,203,-1,9,243,10,-1,9,202,243,-1,264,324,106,-1,324,264,323,-1,386,322,319,-1,386,387,322,-1,388,318,315,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr2lc_Geo_5_595_coordIndex_3()
		{
			int[] value = {388,389,318,-1,141,326,325,-1,332,326,141,-1,214,285,21,-1,285,214,74,-1,287,217,76,-1,218,217,287,-1,83,2,1,-1,83,380,2,-1,2,384,0,-1,2,381,384,-1,310,356,308,-1,310,390,356,-1,305,373,303,-1,305,391,373,-1,301,392,378,-1,300,392,301,-1,393,119,297,-1,393,280,119,-1,394,294,296,-1,353,294,394,-1,395,290,396,-1,290,395,291,-1,164,292,165,-1,397,292,164,-1,398,295,350,-1,398,293,295,-1,377,298,166,-1,399,298,377,-1,400,299,401,-1,400,302,299,-1,402,306,358,-1,402,304,306,-1,309,396,307,-1,396,309,395,-1,311,217,219,-1,217,311,196,-1,382,50,311,-1,382,227,50,-1,245,134,224,-1,260,134,245,-1,313,240,326,-1,313,6,240,-1,403,317,316,-1,355,317,403,-1,373,321,320,-1,401,321,373,-1,92,126,278,-1,92,91,126,-1,18,147,113,-1,12,147,18,-1,19,73,15,-1,73,19,285,-1,77,152,235,-1,153,152,77,-1,22,201,232,-1,22,24,201,-1,29,198,197,-1,198,29,33,-1,337,289,255,-1,337,151,289,-1,41,230,35,-1,41,40,230,-1,36,332,141,-1,332,44,226,-1,36,44,332,-1,328,291,395,-1,328,330,291,-1,362,222,244,-1,404,222,362,-1,216,287,213,-1,87,287,216,-1,0,208,64,-1,384,208,0,-1,334,341,249,-1,333,341,334,-1,64,212,65,-1,64,210,212,-1,371,256,78,-1,371,142,256,-1,253,335,370,-1,335,253,252,-1,146,379,100,-1,146,286,379,-1,67,249,66,-1,67,334,249,-1,68,336,67,-1,68,383,336,-1,111,146,145,-1,146,111,205,-1,383,206,370,-1,383,68,206,-1,405,338,339,-1,405,406,338,-1,342,93,344,-1,93,342,284,-1,283,345,190,-1,283,191,345,-1,363,95,329,-1,95,363,96,-1,375,387,366,-1,375,322,387,-1,113,173,112,-1,113,147,173,-1,180,264,265,-1,264,180,179,-1,180,30,109,-1,180,31,30,-1,178,325,259,-1,178,141,325,-1,102,137,275,-1,102,112,137,-1,349,301,169,-1,349,299,301,-1,114,117,121,-1,114,118,117,-1,351,120,279,-1,125,120,351,-1,266,406,352,-1,94,406,266,-1,403,395,309,-1,328,395,403,-1,359,356,358,-1,359,354,356,-1,306,374,357,-1,374,306,303,-1,401,349,321,-1,401,299,349,-1,93,386,360,-1,92,386,93,-1,136,343,162,-1,136,135,343,-1,405,124,125,-1,339,124,405,-1,369,156,407,-1,369,157,156,-1,364,276,365,-1,133,276,364,-1,366,278,128,-1,366,387,278,-1,129,315,277,-1,388,315,129,-1,388,139,372,-1,388,129,139,-1,133,224,134,-1,224,133,244,-1,407,182,369,-1,185,182,407,-1,136,267,275,-1,267,136,162,-1,32,105,181,-1,28,105,32,-1,230,38,228,-1,40,38,230,-1,5,258,101,-1,258,5,4,-1,251,144,59,-1,246,144,251,-1,254,171,261,-1,171,254,253,-1,144,261,60,-1,144,254,261,-1,379,220,340,-1,286,220,379,-1,3,100,379,-1,5,100,3,-1,101,100,5,-1,143,90,89,-1,143,263,90,-1,235,78,77,-1,371,78,235,-1,151,231,49,-1,231,151,337,-1,324,284,281,-1,324,91,284,-1,368,185,407,-1,183,185,368,-1,272,404,389,-1,222,404,272,-1,385,389,404,-1,385,318,389,-1,244,364,362,-1,244,133,364,-1,124,407,156,-1,368,407,124,-1,338,94,365,-1,94,338,406,-1,157,155,268,-1,157,369,155,-1,159,344,361,-1,343,344,159,-1,360,319,348,-1,386,319,360,-1,357,375,188,-1,375,357,374,-1,187,354,359,-1,187,346,354,-1,403,331,328,-1,316,331,403,-1,266,95,94,-1,95,266,163,-1,351,405,125,-1,405,351,376,-1,167,166,116,-1,167,377,166,-1,378,169,301,-1,378,170,169,-1,260,132,134,-1,262,132,260,-1,154,174,69,-1,174,154,175,-1,262,171,86,-1,262,261,171,-1,327,259,325,-1,273,259,327,-1,110,176,138,-1,110,109,176,-1,282,173,107,-1,274,173,282,-1,184,100,99,-1,184,145,100,-1,188,366,189,-1,188,375,366,-1,385,316,318,-1,331,316,385,-1,267,71,275,-1,267,345,71,-1,258,83,82,-1,83,258,4,-1,352,405,376,-1,405,352,406,-1,265,23,180,-1,233,23,265,-1,246,209,247,-1,209,246,251,-1,336,334,67,-1,336,247,334,-1,336,248,247,-1,62,205,63,-1,204,205,62,-1,252,246,335,-1,246,252,144,-1,103,142,371,-1,103,143,142,-1,209,384,333,-1,208,384,209,-1,215,195,194,-1,215,213,195,-1,57,219,218,-1,57,225,219,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolr2lc_Geo_5_595_coordIndex_4()
		{
			int[] value = {57,56,225,-1,87,65,212,-1,87,216,65,-1,363,404,362,-1,385,404,363,-1,250,27,197,-1,250,234,27,-1,217,153,77,-1,196,153,217,-1,271,75,238,-1,271,148,75,-1,13,16,15,-1,13,239,16,-1,106,241,264,-1,106,105,241,-1,92,387,386,-1,92,278,387,-1,389,372,272,-1,388,372,389,-1,309,355,403,-1,308,355,309,-1,7,313,314,-1,313,7,6,-1,260,60,261,-1,260,245,60,-1,45,311,219,-1,382,311,45,-1,218,87,57,-1,218,287,87,-1,3,83,4,-1,83,3,380,-1,390,358,356,-1,390,402,358,-1,401,391,400,-1,391,401,373,-1,399,378,392,-1,399,377,378,-1,350,393,398,-1,393,350,280,-1,353,397,164,-1,394,397,353,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr2lc_Geo_5_595_normalIndex_1()
		{
			int[] value = {232,89,70,-1,83,73,101,-1,141,144,145,-1,218,193,51,-1,130,91,153,-1,84,59,100,-1,91,130,80,-1,109,203,235,-1,322,263,315,-1,315,261,295,-1,156,148,82,-1,322,325,281,-1,82,97,57,-1,343,363,388,-1,287,334,317,-1,317,337,326,-1,312,323,370,-1,309,302,318,-1,287,292,235,-1,326,343,297,-1,100,200,203,-1,369,307,377,-1,279,256,307,-1,283,282,256,-1,354,301,313,-1,105,38,36,-1,232,331,320,-1,46,105,174,-1,105,213,174,-1,288,225,366,-1,65,213,105,-1,127,72,81,-1,126,118,140,-1,95,119,64,-1,78,63,89,-1,129,160,229,-1,256,282,328,-1,47,66,124,-1,207,205,252,-1,172,93,68,-1,129,62,132,-1,224,114,138,-1,257,175,155,-1,143,151,176,-1,202,211,134,-1,132,62,55,-1,250,155,137,-1,401,392,399,-1,396,405,404,-1,356,395,396,-1,378,392,376,-1,272,356,274,-1,190,162,158,-1,0,27,28,-1,178,107,152,-1,364,384,361,-1,75,34,37,-1,343,388,367,-1,155,80,137,-1,66,112,139,-1,62,129,65,-1,313,301,332,-1,377,307,354,-1,103,79,114,-1,116,122,111,-1,255,277,297,-1,255,297,343,-1,59,90,69,-1,310,288,365,-1,362,381,395,-1,397,385,394,-1,373,380,378,-1,104,169,98,-1,405,399,407,-1,398,399,392,-1,358,359,391,-1,229,269,212,-1,195,116,111,-1,180,234,138,-1,163,262,330,-1,247,265,211,-1,195,99,176,-1,348,224,234,-1,215,189,275,-1,222,132,215,-1,29,120,102,-1,371,373,376,-1,288,353,365,-1,95,128,119,-1,66,47,64,-1,160,216,229,-1,92,94,64,-1,59,69,88,-1,86,45,51,-1,222,238,231,-1,351,333,352,-1,105,36,65,-1,40,79,52,-1,206,65,129,-1,290,305,321,-1,296,278,291,-1,181,95,94,-1,72,210,218,-1,154,311,181,-1,108,201,220,-1,46,49,38,-1,233,354,313,-1,35,117,110,-1,283,302,289,-1,302,283,279,-1,318,369,355,-1,200,324,287,-1,308,350,280,-1,280,350,363,-1,299,326,297,-1,292,317,299,-1,82,148,97,-1,322,344,325,-1,217,156,149,-1,147,90,142,-1,122,153,127,-1,72,74,44,-1,91,80,67,-1,141,145,150,-1,51,45,44,-1,154,320,311,-1,51,44,74,-1,143,148,146,-1,44,81,72,-1,127,81,122,-1,217,149,209,-1,295,261,294,-1,388,363,350,-1,292,287,317,-1,299,317,326,-1,308,312,350,-1,287,203,200,-1,350,370,388,-1,318,355,323,-1,318,279,369,-1,279,318,302,-1,35,110,39,-1,233,313,214,-1,341,338,329,-1,46,41,49,-1,193,113,51,-1,218,74,72,-1,321,327,290,-1,303,271,293,-1,351,352,360,-1,222,231,216,-1,51,113,86,-1,100,59,88,-1,87,60,119,-1,64,78,92,-1,206,129,212,-1,160,222,216,-1,64,60,66,-1,47,124,76,-1,29,102,27,-1,222,160,132,-1,215,132,189,-1,348,234,310,-1,195,111,99,-1,163,330,223,-1,237,286,239,-1,138,125,180,-1,183,146,208,-1,391,394,358,-1,392,397,398,-1,407,404,405,-1,104,177,169,-1,373,390,380,-1,397,378,385,-1,401,389,392,-1,362,395,356,-1,134,37,123,-1,134,75,37,-1,59,67,90,-1,298,307,256,-1,343,330,255,-1,330,262,255,-1,148,156,146,-1,122,77,111,-1,307,298,354,-1,117,35,53,-1,155,67,80,-1,77,57,97,-1,263,281,265,-1,343,367,330,-1,75,115,34,-1,361,306,364,-1,375,361,384,-1,178,170,107,-1,0,4,27,-1,158,197,190,-1,272,362,356,-1,376,373,378,-1,378,397,392,-1,396,345,356,-1,396,404,387,-1,405,401,399,-1,176,240,276,-1,202,247,211,-1,143,176,99,-1,257,155,250,-1,224,138,234,-1,160,129,132,-1,371,376,357,-1,207,252,248,-1,256,328,291,-1,47,76,78,-1,78,64,47,-1,229,212,129,-1,92,78,89,-1,64,94,95,-1,119,60,64,-1,126,108,118,-1,127,133,72,-1,65,206,213,-1,288,180,225,-1,40,56,79,-1,303,293,332,-1,298,327,301,-1,296,290,278,-1,219,126,128,-1,193,209,149,-1,320,154,232,-1,105,46,38,-1,354,298,301,-1,283,256,279,-1,279,307,369,-1,369,377,393,-1,203,109,100,-1,370,323,355,-1,312,318,323,-1,287,235,203,-1,309,318,312,-1,312,370,350,-1,363,343,326,-1,317,334,337,-1,287,324,334,-1,285,277,255,-1,295,294,333,-1,82,86,156,-1,315,263,261,-1,322,281,263,-1,235,133,109,-1,84,100,109,-1,74,218,51,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr2lc_Geo_5_595_normalIndex_2()
		{
			int[] value = {193,149,113,-1,98,31,32,-1,106,31,98,-1,268,242,267,-1,268,243,242,-1,403,407,406,-1,403,404,407,-1,249,347,349,-1,254,347,249,-1,168,136,167,-1,136,168,135,-1,22,19,21,-1,22,20,19,-1,88,200,100,-1,88,204,200,-1,292,210,235,-1,292,335,210,-1,377,258,393,-1,377,264,258,-1,2,8,9,-1,2,1,8,-1,192,187,198,-1,192,182,187,-1,186,207,188,-1,207,186,190,-1,130,122,116,-1,122,130,153,-1,217,261,263,-1,217,209,261,-1,150,236,259,-1,150,131,236,-1,23,24,30,-1,23,11,24,-1,258,379,393,-1,258,259,379,-1,233,110,117,-1,233,214,110,-1,128,181,219,-1,128,95,181,-1,154,89,232,-1,89,154,92,-1,165,338,321,-1,165,179,338,-1,210,352,218,-1,210,335,352,-1,305,296,331,-1,305,290,296,-1,278,327,298,-1,278,290,327,-1,119,140,87,-1,119,126,140,-1,126,119,128,-1,375,225,257,-1,375,366,225,-1,329,300,341,-1,329,304,300,-1,76,125,138,-1,76,124,125,-1,36,62,65,-1,52,62,36,-1,52,55,62,-1,335,299,342,-1,292,299,335,-1,230,238,244,-1,238,230,231,-1,156,208,146,-1,156,217,208,-1,48,41,54,-1,41,48,49,-1,316,372,364,-1,336,372,316,-1,373,374,390,-1,373,371,374,-1,27,10,29,-1,10,27,4,-1,132,103,189,-1,132,55,103,-1,306,250,195,-1,361,250,306,-1,183,202,186,-1,183,247,202,-1,115,163,223,-1,75,163,115,-1,264,354,233,-1,264,377,354,-1,325,284,211,-1,325,344,284,-1,359,253,260,-1,358,253,359,-1,397,391,398,-1,397,394,391,-1,339,266,345,-1,266,339,267,-1,169,226,228,-1,177,226,169,-1,104,32,30,-1,104,98,32,-1,19,12,13,-1,19,15,12,-1,121,43,135,-1,121,33,43,-1,253,198,260,-1,192,198,253,-1,358,246,253,-1,346,246,358,-1,378,372,385,-1,378,380,372,-1,346,394,385,-1,394,346,358,-1,395,389,401,-1,381,389,395,-1,16,68,14,-1,16,85,68,-1,231,171,170,-1,231,230,171,-1,158,102,161,-1,96,102,158,-1,0,37,34,-1,0,28,37,-1,238,215,251,-1,238,222,215,-1,310,368,348,-1,310,365,368,-1,276,248,316,-1,240,248,276,-1,134,162,202,-1,134,123,162,-1,44,57,77,-1,44,45,57,-1,284,255,262,-1,284,285,255,-1,77,99,111,-1,97,99,77,-1,142,67,155,-1,142,90,67,-1,60,112,66,-1,60,87,112,-1,145,117,53,-1,144,117,145,-1,273,269,271,-1,273,212,269,-1,273,206,212,-1,175,142,155,-1,164,142,175,-1,164,147,142,-1,344,285,284,-1,351,285,344,-1,351,360,285,-1,256,278,298,-1,256,291,278,-1,115,50,34,-1,115,131,50,-1,186,162,190,-1,186,202,162,-1,364,276,316,-1,306,276,364,-1,170,216,231,-1,178,216,170,-1,353,366,374,-1,353,288,366,-1,28,123,37,-1,28,96,123,-1,27,96,28,-1,27,102,96,-1,162,96,158,-1,162,123,96,-1,244,251,272,-1,238,251,244,-1,68,171,172,-1,85,171,68,-1,389,376,392,-1,389,357,376,-1,353,389,365,-1,353,357,389,-1,336,246,346,-1,336,252,246,-1,187,168,185,-1,187,159,168,-1,182,159,187,-1,182,157,159,-1,120,33,121,-1,120,29,33,-1,13,10,9,-1,10,13,12,-1,30,93,104,-1,24,93,30,-1,267,241,266,-1,241,267,242,-1,345,387,339,-1,396,387,345,-1,402,391,386,-1,398,391,402,-1,239,216,178,-1,239,229,216,-1,264,117,144,-1,264,233,117,-1,211,262,163,-1,211,284,262,-1,240,151,188,-1,151,240,176,-1,275,224,348,-1,275,189,224,-1,4,9,10,-1,9,4,2,-1,71,61,83,-1,48,61,71,-1,61,58,70,-1,61,54,58,-1,61,48,54,-1,241,228,226,-1,241,242,228,-1,324,308,334,-1,324,314,308,-1,225,125,139,-1,180,125,225,-1,56,38,49,-1,56,40,38,-1,304,273,300,-1,304,270,273,-1,139,257,225,-1,175,257,139,-1,294,209,193,-1,294,261,209,-1,165,58,54,-1,173,58,165,-1,355,393,379,-1,355,369,393,-1,24,3,14,-1,11,3,24,-1,289,309,220,-1,309,289,302,-1,131,53,50,-1,131,145,53,-1,131,150,145,-1,308,309,312,-1,314,309,308,-1,360,335,342,-1,352,335,360,-1,315,333,351,-1,315,295,333,-1,84,153,91,-1,153,84,127,-1,333,218,352,-1,218,294,193,-1,218,333,294,-1,183,188,151,-1,188,183,186,-1,199,182,192,-1,199,191,182,-1,6,1,2,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr2lc_Geo_5_595_normalIndex_3()
		{
			int[] value = {6,7,1,-1,367,259,236,-1,379,259,367,-1,210,133,235,-1,133,210,72,-1,219,108,126,-1,201,108,219,-1,63,70,89,-1,63,61,70,-1,70,173,232,-1,70,58,173,-1,20,15,19,-1,20,18,15,-1,167,185,168,-1,167,184,185,-1,349,383,386,-1,347,383,349,-1,382,404,403,-1,382,387,404,-1,227,242,243,-1,228,242,227,-1,25,31,26,-1,31,25,32,-1,169,106,98,-1,166,106,169,-1,340,267,339,-1,340,268,267,-1,402,406,407,-1,400,406,402,-1,196,249,194,-1,196,254,249,-1,42,135,43,-1,42,136,135,-1,21,26,22,-1,26,21,25,-1,204,108,220,-1,108,204,88,-1,314,200,204,-1,314,324,200,-1,214,152,110,-1,237,152,214,-1,258,150,259,-1,258,141,150,-1,17,9,8,-1,13,9,17,-1,185,198,187,-1,194,198,185,-1,205,190,197,-1,205,207,190,-1,80,116,137,-1,130,116,80,-1,109,127,84,-1,127,109,133,-1,118,90,147,-1,69,90,118,-1,322,351,344,-1,322,315,351,-1,82,45,86,-1,45,82,57,-1,342,285,360,-1,342,277,285,-1,326,280,363,-1,326,337,280,-1,388,379,367,-1,379,370,355,-1,388,370,379,-1,23,32,25,-1,23,30,32,-1,16,35,39,-1,5,35,16,-1,311,219,181,-1,328,219,311,-1,232,305,331,-1,173,305,232,-1,179,54,41,-1,165,54,179,-1,331,291,320,-1,331,296,291,-1,164,87,140,-1,164,112,87,-1,271,300,273,-1,300,271,303,-1,79,71,114,-1,79,56,71,-1,174,41,46,-1,174,179,41,-1,213,304,174,-1,213,270,304,-1,55,79,103,-1,79,55,52,-1,270,206,273,-1,270,213,206,-1,245,230,244,-1,245,221,230,-1,316,252,336,-1,252,316,248,-1,357,374,371,-1,357,353,374,-1,14,93,24,-1,93,14,68,-1,157,191,161,-1,157,182,191,-1,137,195,250,-1,137,116,195,-1,265,183,208,-1,183,265,247,-1,265,325,211,-1,265,281,325,-1,330,236,223,-1,330,367,236,-1,257,361,375,-1,257,250,361,-1,260,349,359,-1,260,249,349,-1,401,396,395,-1,401,405,396,-1,266,356,345,-1,274,356,266,-1,177,221,226,-1,172,221,177,-1,17,25,21,-1,23,25,17,-1,33,15,43,-1,33,12,15,-1,135,159,121,-1,159,135,168,-1,194,260,198,-1,194,249,260,-1,252,199,246,-1,205,199,252,-1,384,372,380,-1,384,364,372,-1,245,272,274,-1,244,272,245,-1,368,362,319,-1,368,381,362,-1,85,170,171,-1,107,170,85,-1,161,197,158,-1,161,191,197,-1,0,2,4,-1,6,2,0,-1,6,34,50,-1,6,0,34,-1,107,110,152,-1,110,107,39,-1,319,348,368,-1,275,348,319,-1,384,390,375,-1,390,384,380,-1,97,143,99,-1,148,143,97,-1,280,334,308,-1,337,334,280,-1,101,76,138,-1,76,101,73,-1,327,332,301,-1,341,332,327,-1,293,269,286,-1,269,293,271,-1,332,286,313,-1,332,293,286,-1,71,49,48,-1,56,49,71,-1,83,114,71,-1,101,114,83,-1,138,114,101,-1,139,124,66,-1,139,125,124,-1,147,140,118,-1,164,140,147,-1,277,299,297,-1,299,277,342,-1,188,248,240,-1,188,207,248,-1,251,275,319,-1,215,275,251,-1,53,5,7,-1,35,5,53,-1,3,7,5,-1,3,1,7,-1,39,85,16,-1,39,107,85,-1,272,319,362,-1,251,319,272,-1,230,172,171,-1,172,230,221,-1,381,365,389,-1,381,368,365,-1,385,336,346,-1,372,336,385,-1,246,192,253,-1,199,192,246,-1,121,157,120,-1,157,121,159,-1,29,12,33,-1,29,10,12,-1,17,11,23,-1,8,11,17,-1,177,93,172,-1,93,177,104,-1,266,245,274,-1,245,266,241,-1,398,407,399,-1,398,402,407,-1,386,359,349,-1,386,391,359,-1,237,178,152,-1,239,178,237,-1,310,180,288,-1,180,310,234,-1,239,269,229,-1,239,286,269,-1,131,223,236,-1,115,223,131,-1,134,163,75,-1,134,211,163,-1,276,195,176,-1,306,195,276,-1,189,114,224,-1,189,103,114,-1,120,161,102,-1,120,157,161,-1,3,8,1,-1,11,8,3,-1,390,366,375,-1,390,374,366,-1,76,63,78,-1,63,76,73,-1,226,245,241,-1,245,226,221,-1,208,263,265,-1,217,263,208,-1,341,321,338,-1,321,341,327,-1,304,179,174,-1,304,338,179,-1,304,329,338,-1,38,52,36,-1,40,52,38,-1,303,341,300,-1,341,303,332,-1,175,112,164,-1,175,139,112,-1,321,173,165,-1,305,173,321,-1,154,94,92,-1,154,181,94,-1,282,220,201,-1,282,289,220,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolr2lc_Geo_5_595_normalIndex_4()
		{
			int[] value = {282,283,289,-1,328,320,291,-1,328,311,320,-1,14,5,16,-1,3,5,14,-1,113,156,86,-1,113,149,156,-1,108,69,118,-1,88,69,108,-1,77,81,44,-1,77,122,81,-1,91,59,84,-1,91,67,59,-1,151,146,183,-1,151,143,146,-1,205,191,199,-1,205,197,191,-1,7,50,53,-1,6,50,7,-1,21,13,17,-1,19,13,21,-1,144,258,264,-1,258,144,141,-1,237,313,286,-1,237,214,313,-1,309,204,220,-1,314,204,309,-1,201,328,282,-1,201,219,328,-1,83,63,73,-1,63,83,61,-1,18,43,15,-1,18,42,43,-1,194,184,196,-1,184,194,185,-1,400,386,383,-1,400,402,386,-1,339,382,340,-1,382,339,387,-1,228,166,169,-1,227,166,228,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr2lr_Geo_5_601_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,39,40,41,-1,42,43,28,-1,44,45,46,-1,47,48,39,-1,49,50,51,-1,52,33,53,-1,54,55,56,-1,57,48,47,-1,58,59,60,-1,61,62,63,-1,23,22,64,-1,65,66,67,-1,68,69,70,-1,71,9,72,-1,73,74,75,-1,76,77,78,-1,79,80,81,-1,20,82,83,-1,84,15,2,-1,85,86,87,-1,88,89,90,-1,89,91,92,-1,87,86,93,-1,94,95,96,-1,97,52,98,-1,49,99,100,-1,57,101,48,-1,102,103,104,-1,105,54,56,-1,106,38,107,-1,36,53,37,-1,108,109,110,-1,111,112,113,-1,68,114,69,-1,115,3,116,-1,117,6,118,-1,119,120,121,-1,122,123,115,-1,124,17,16,-1,125,21,126,-1,18,127,128,-1,114,120,7,-1,129,130,131,-1,131,3,129,-1,4,132,5,-1,133,114,7,-1,19,18,128,-1,125,126,134,-1,13,12,135,-1,136,129,5,-1,128,127,119,-1,137,7,134,-1,117,133,6,-1,3,131,116,-1,111,138,112,-1,108,139,109,-1,53,35,37,-1,107,140,106,-1,105,56,141,-1,102,142,103,-1,57,143,101,-1,100,144,49,-1,98,145,97,-1,96,146,94,-1,87,93,59,-1,89,92,147,-1,88,148,89,-1,85,149,86,-1,2,1,84,-1,20,19,82,-1,79,81,150,-1,78,151,76,-1,75,71,73,-1,72,152,71,-1,70,153,68,-1,65,67,154,-1,23,64,61,-1,61,64,62,-1,58,60,155,-1,156,57,47,-1,54,157,55,-1,52,158,33,-1,51,159,49,-1,47,39,160,-1,44,46,161,-1,42,28,27,-1,39,162,40,-1,106,36,38,-1,53,33,35,-1,30,163,31,-1,29,164,27,-1,24,165,25,-1,13,166,14,-1,21,125,22,-1,120,119,127,-1,15,17,2,-1,11,72,9,-1,6,133,7,-1,3,5,129,-1,2,123,0,-1,102,167,168,-1,167,102,104,-1,169,170,171,-1,170,169,172,-1,173,174,175,-1,176,174,173,-1,177,46,45,-1,177,26,46,-1,109,42,110,-1,109,178,42,-1,179,180,181,-1,182,180,179,-1,183,184,185,-1,186,184,183,-1,17,135,12,-1,17,124,135,-1,131,187,116,-1,131,188,187,-1,189,190,191,-1,189,192,190,-1,193,194,195,-1,196,194,193,-1,197,198,199,-1,153,198,197,-1,125,127,18,-1,125,134,127,-1,16,200,201,-1,16,15,200,-1,20,64,22,-1,20,113,64,-1,127,7,120,-1,7,127,134,-1,198,5,132,-1,5,198,202,-1,138,203,112,-1,138,204,203,-1,205,206,207,-1,205,177,206,-1,109,208,209,-1,139,208,109,-1,180,210,201,-1,211,210,180,-1,168,212,213,-1,212,168,167,-1,170,214,171,-1,215,214,170,-1,216,128,119,-1,216,217,128,-1,218,219,136,-1,218,220,219,-1,221,143,222,-1,221,223,143,-1,224,225,226,-1,224,227,225,-1,228,229,230,-1,228,231,229,-1,232,233,234,-1,233,232,235,-1,140,236,237,-1,140,107,236,-1,238,233,239,-1,238,234,233,-1,55,240,56,-1,55,241,240,-1,163,144,242,-1,144,163,30,-1,103,237,104,-1,103,140,237,-1,243,44,146,-1,243,45,44,-1,244,245,246,-1,244,247,245,-1,248,103,142,-1,248,249,103,-1,100,242,144,-1,100,250,242,-1,158,97,251,-1,97,158,52,-1,252,253,254,-1,252,105,253,-1,175,146,96,-1,175,243,146,-1,255,246,256,-1,255,244,246,-1,60,145,155,-1,60,97,145,-1,257,223,221,-1,257,213,223,-1,250,258,259,-1,258,250,100,-1,260,256,261,-1,260,255,256,-1,262,254,263,-1,262,252,254,-1,264,175,96,-1,264,173,175,-1,258,265,266,-1,265,258,267,-1,268,269,270,-1,271,269,268,-1,272,273,147,-1,273,272,274,-1,275,276,277,-1,275,278,276,-1,279,280,281,-1,279,282,280,-1,283,179,284,-1,179,283,285,-1,273,286,90,-1,286,273,287,-1,288,86,289,-1,86,288,93,-1,271,290,269,-1,291,290,271,-1,181,284,179,-1,181,292,284,-1,293,277,294,-1,293,275,277,-1,295,281,296,-1,295,279,281,-1,297,172,169,-1,297,291,172,-1,298,90,286,-1,298,88,90,-1,289,149,299,-1,149,289,86,-1,291,300,290,-1,297,300,291,-1,292,200,301,-1,200,292,181,-1,302,303,304,-1,302,305,303,-1,306,300,307,-1,306,308,300,-1,136,148,309,-1,136,219,148,-1,310,311,312,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr2lr_Geo_5_601_coordIndex_2()
		{
			int[] value = {311,310,313,-1,314,304,315,-1,314,302,304,-1,316,317,318,-1,316,319,317,-1,320,321,322,-1,320,323,321,-1,324,325,326,-1,327,325,324,-1,328,118,329,-1,117,118,328,-1,312,330,331,-1,330,312,311,-1,197,332,216,-1,199,332,197,-1,322,11,10,-1,11,322,314,-1,333,334,316,-1,333,184,334,-1,188,130,66,-1,188,131,130,-1,189,335,192,-1,189,330,335,-1,336,196,337,-1,194,196,336,-1,338,151,339,-1,76,151,338,-1,340,341,342,-1,340,343,341,-1,344,345,126,-1,75,345,344,-1,346,347,348,-1,346,349,347,-1,350,150,81,-1,150,350,351,-1,77,193,352,-1,77,353,193,-1,354,355,356,-1,354,357,355,-1,358,343,340,-1,358,152,343,-1,359,360,361,-1,359,122,360,-1,362,150,363,-1,362,79,150,-1,364,365,366,-1,364,367,365,-1,342,368,369,-1,342,341,368,-1,75,370,345,-1,74,370,75,-1,371,357,354,-1,357,371,352,-1,38,35,34,-1,38,37,35,-1,77,372,353,-1,76,372,77,-1,187,81,367,-1,81,187,350,-1,349,185,347,-1,349,368,185,-1,9,75,344,-1,71,75,9,-1,8,357,195,-1,355,357,8,-1,359,348,0,-1,359,346,348,-1,122,366,360,-1,364,366,122,-1,353,196,193,-1,353,373,196,-1,331,189,374,-1,189,331,330,-1,375,316,318,-1,375,333,316,-1,11,315,376,-1,11,314,315,-1,29,377,225,-1,29,378,377,-1,29,231,378,-1,29,229,231,-1,225,164,29,-1,225,379,164,-1,225,380,379,-1,225,165,380,-1,381,232,382,-1,227,165,225,-1,381,235,232,-1,25,235,381,-1,25,227,235,-1,227,25,165,-1,383,82,384,-1,82,383,83,-1,66,309,67,-1,66,130,309,-1,329,336,307,-1,118,336,329,-1,335,326,325,-1,335,385,326,-1,23,323,320,-1,23,61,323,-1,317,84,318,-1,84,317,301,-1,386,315,304,-1,387,315,386,-1,313,385,311,-1,385,313,299,-1,148,67,309,-1,67,148,88,-1,297,307,300,-1,329,307,297,-1,304,295,386,-1,304,303,295,-1,61,293,323,-1,61,63,293,-1,301,388,292,-1,301,317,388,-1,308,290,300,-1,308,389,290,-1,286,310,298,-1,310,286,390,-1,292,391,284,-1,292,388,391,-1,303,279,295,-1,303,392,279,-1,275,63,393,-1,293,63,275,-1,291,394,172,-1,291,271,394,-1,265,289,395,-1,289,265,288,-1,90,147,273,-1,90,89,147,-1,263,284,391,-1,284,263,283,-1,392,282,279,-1,392,261,282,-1,393,278,275,-1,393,264,278,-1,272,92,222,-1,147,92,272,-1,58,270,269,-1,58,155,270,-1,267,288,265,-1,288,267,396,-1,95,264,96,-1,278,264,95,-1,254,283,263,-1,283,254,397,-1,261,398,282,-1,261,256,398,-1,100,267,258,-1,267,100,99,-1,222,57,272,-1,222,143,57,-1,155,248,270,-1,155,145,248,-1,256,157,398,-1,256,246,157,-1,139,399,208,-1,399,139,207,-1,400,105,252,-1,400,54,105,-1,47,250,156,-1,250,47,242,-1,246,55,157,-1,246,245,55,-1,146,238,94,-1,146,44,238,-1,212,401,402,-1,212,403,401,-1,36,52,53,-1,98,52,36,-1,30,49,144,-1,49,30,50,-1,101,39,48,-1,101,162,39,-1,43,230,28,-1,43,404,230,-1,245,241,55,-1,245,226,241,-1,44,234,238,-1,44,161,234,-1,403,405,401,-1,403,406,405,-1,32,50,30,-1,50,32,407,-1,234,382,232,-1,234,161,382,-1,29,230,229,-1,28,230,29,-1,226,377,241,-1,226,225,377,-1,223,101,143,-1,223,402,101,-1,220,91,219,-1,220,408,91,-1,135,332,13,-1,409,332,135,-1,171,410,411,-1,214,410,171,-1,412,213,257,-1,213,412,168,-1,201,383,16,-1,210,383,201,-1,209,413,414,-1,208,413,209,-1,24,177,205,-1,24,26,177,-1,415,203,204,-1,415,176,203,-1,328,69,117,-1,69,328,411,-1,14,123,12,-1,123,14,115,-1,199,132,166,-1,198,132,199,-1,195,6,8,-1,194,6,195,-1,190,416,372,-1,192,416,190,-1,188,350,187,-1,188,417,350,-1,124,409,135,-1,124,384,409,-1,375,0,348,-1,375,1,0,-1,418,186,183,-1,376,186,418,-1,285,182,179,-1,414,182,285,-1,27,110,42,-1,419,110,27,-1,113,62,64,-1,113,112,62,-1,174,243,175,-1,174,206,243,-1,420,172,394,-1,420,170,172,-1,421,104,237,-1,421,167,104,-1,422,168,412,-1,168,422,102,-1,171,328,169,-1,171,411,328,-1,203,173,423,-1,203,176,173,-1,26,381,46,-1,26,25,381,-1,178,209,424,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr2lr_Geo_5_601_coordIndex_3()
		{
			int[] value = {109,209,178,-1,201,181,180,-1,201,200,181,-1,185,333,347,-1,184,333,185,-1,2,12,123,-1,2,17,12,-1,374,191,351,-1,374,189,191,-1,337,373,327,-1,196,373,337,-1,68,197,121,-1,68,153,197,-1,344,10,9,-1,425,10,344,-1,117,114,133,-1,117,69,114,-1,16,384,124,-1,384,16,383,-1,207,174,399,-1,207,206,174,-1,379,426,419,-1,380,426,379,-1,182,211,180,-1,427,211,182,-1,421,212,167,-1,403,212,421,-1,420,215,170,-1,428,215,420,-1,121,216,119,-1,197,216,121,-1,202,136,5,-1,202,218,136,-1,429,222,92,-1,429,221,222,-1,401,40,162,-1,401,405,40,-1,240,231,228,-1,240,378,231,-1,380,24,426,-1,24,380,165,-1,235,224,233,-1,224,235,227,-1,430,33,51,-1,33,430,34,-1,39,431,160,-1,39,41,431,-1,239,224,247,-1,239,233,224,-1,56,228,141,-1,56,240,228,-1,426,205,108,-1,205,426,24,-1,160,242,47,-1,242,160,163,-1,51,158,159,-1,158,51,33,-1,140,249,106,-1,103,249,140,-1,108,207,139,-1,207,108,205,-1,432,247,244,-1,432,239,247,-1,253,43,433,-1,253,404,43,-1,159,251,434,-1,251,159,158,-1,254,433,397,-1,254,253,433,-1,435,244,255,-1,435,432,244,-1,251,60,436,-1,60,251,97,-1,102,268,142,-1,422,268,102,-1,259,156,250,-1,259,274,156,-1,434,436,396,-1,436,434,251,-1,280,252,262,-1,280,400,252,-1,208,415,413,-1,415,208,399,-1,276,255,260,-1,276,435,255,-1,436,59,93,-1,59,436,60,-1,271,422,394,-1,271,268,422,-1,274,287,273,-1,287,274,259,-1,277,260,437,-1,277,276,260,-1,281,262,438,-1,281,280,262,-1,413,204,427,-1,204,413,415,-1,287,390,286,-1,390,287,266,-1,389,269,290,-1,389,58,269,-1,427,138,211,-1,138,427,204,-1,294,437,305,-1,294,277,437,-1,296,438,439,-1,296,281,438,-1,214,408,220,-1,214,215,408,-1,395,299,313,-1,299,395,289,-1,440,439,319,-1,440,296,439,-1,211,111,210,-1,111,211,138,-1,321,305,302,-1,321,294,305,-1,324,308,306,-1,324,85,308,-1,410,220,218,-1,410,214,220,-1,298,312,154,-1,312,298,310,-1,326,85,324,-1,326,149,85,-1,334,319,316,-1,334,440,319,-1,210,83,383,-1,83,210,111,-1,322,302,314,-1,322,321,302,-1,327,306,337,-1,327,324,306,-1,410,202,70,-1,202,410,218,-1,331,154,312,-1,331,65,154,-1,409,216,332,-1,409,217,216,-1,322,425,320,-1,10,425,322,-1,184,387,334,-1,184,186,387,-1,417,66,65,-1,417,188,66,-1,192,325,416,-1,192,335,325,-1,118,194,336,-1,6,194,118,-1,76,190,372,-1,76,338,190,-1,183,343,418,-1,343,183,341,-1,126,137,134,-1,345,137,126,-1,418,152,72,-1,343,152,418,-1,0,122,359,-1,0,123,122,-1,363,351,191,-1,363,150,351,-1,352,195,357,-1,352,193,195,-1,38,236,107,-1,38,441,236,-1,34,441,38,-1,34,406,441,-1,430,406,34,-1,430,405,406,-1,407,405,430,-1,407,40,405,-1,32,40,407,-1,31,40,32,-1,31,41,40,-1,31,431,41,-1,137,356,355,-1,442,356,137,-1,73,152,358,-1,73,71,152,-1,443,349,346,-1,443,444,349,-1,339,363,338,-1,339,362,363,-1,367,80,365,-1,80,367,81,-1,369,349,444,-1,369,368,349,-1,442,345,370,-1,442,137,345,-1,78,352,371,-1,78,77,352,-1,338,191,190,-1,338,363,191,-1,116,367,364,-1,116,187,367,-1,183,368,341,-1,368,183,185,-1,355,7,137,-1,355,8,7,-1,346,361,443,-1,359,361,346,-1,115,364,122,-1,116,364,115,-1,416,327,373,-1,416,325,327,-1,374,65,331,-1,374,417,65,-1,1,318,84,-1,1,375,318,-1,376,387,186,-1,376,315,387,-1,320,21,23,-1,425,21,320,-1,70,198,153,-1,198,70,202,-1,309,129,136,-1,130,129,309,-1,337,307,336,-1,337,306,307,-1,330,385,335,-1,330,311,385,-1,301,15,84,-1,15,301,200,-1,387,440,334,-1,387,386,440,-1,385,149,326,-1,385,299,149,-1,88,154,67,-1,154,88,298,-1,169,329,297,-1,328,329,169,-1,386,296,440,-1,386,295,296,-1,323,294,321,-1,323,293,294,-1,319,388,317,-1,319,439,388,-1,85,389,308,-1,85,87,389,-1,390,313,310,-1,313,390,395,-1,219,89,148,-1,219,91,89,-1,391,439,438,-1,388,439,391,-1,305,392,303,-1,305,437,392,-1,62,393,63,-1,62,423,393,-1,215,429,408,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolr2lr_Geo_5_601_coordIndex_4()
		{
			int[] value = {215,428,429,-1,87,58,389,-1,87,59,58,-1,266,395,390,-1,395,266,265,-1,423,264,393,-1,423,173,264,-1,438,263,391,-1,438,262,263,-1,437,261,392,-1,437,260,261,-1,259,266,287,-1,266,259,258,-1,428,221,429,-1,428,257,221,-1,396,93,288,-1,93,396,436,-1,278,435,276,-1,278,95,435,-1,397,285,283,-1,285,397,424,-1,282,400,280,-1,282,398,400,-1,99,396,267,-1,396,99,434,-1,57,274,272,-1,274,57,156,-1,270,142,268,-1,270,248,142,-1,398,54,400,-1,398,157,54,-1,95,432,435,-1,95,94,432,-1,433,424,397,-1,424,433,178,-1,145,249,248,-1,145,98,249,-1,49,434,99,-1,434,49,159,-1,213,402,223,-1,213,212,402,-1,105,404,253,-1,105,141,404,-1,94,239,432,-1,94,238,239,-1,43,178,433,-1,178,43,42,-1,98,106,249,-1,98,36,106,-1,141,230,404,-1,141,228,230,-1,247,226,245,-1,247,224,226,-1,431,163,160,-1,163,431,31,-1,407,51,50,-1,51,407,430,-1,382,46,381,-1,161,46,382,-1,241,378,240,-1,241,377,378,-1,402,162,101,-1,402,401,162,-1,408,92,91,-1,408,429,92,-1,199,13,332,-1,199,166,13,-1,411,70,69,-1,410,70,411,-1,412,428,420,-1,257,428,412,-1,441,403,421,-1,406,403,441,-1,414,427,182,-1,413,427,414,-1,419,108,110,-1,426,108,419,-1,399,176,415,-1,399,174,176,-1,83,113,20,-1,83,111,113,-1,22,18,20,-1,125,18,22,-1,14,3,115,-1,14,4,3,-1,166,4,14,-1,166,132,4,-1,126,425,344,-1,21,425,126,-1,128,82,19,-1,82,128,217,-1,114,121,120,-1,114,68,121,-1,372,373,353,-1,416,373,372,-1,417,351,350,-1,417,374,351,-1,217,384,82,-1,384,217,409,-1,333,348,347,-1,333,375,348,-1,72,376,418,-1,11,376,72,-1,414,424,209,-1,414,285,424,-1,419,164,379,-1,419,27,164,-1,423,112,203,-1,112,423,62,-1,45,206,177,-1,206,45,243,-1,394,412,420,-1,412,394,422,-1,421,236,441,-1,421,237,236,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr2lr_Geo_5_601_normalIndex_1()
		{
			int[] value = {12,13,50,-1,73,180,219,-1,423,419,422,-1,343,346,276,-1,120,197,151,-1,85,126,101,-1,326,286,294,-1,443,370,441,-1,224,247,296,-1,103,93,178,-1,113,164,179,-1,112,204,194,-1,285,226,303,-1,116,242,189,-1,90,80,93,-1,417,335,334,-1,79,117,116,-1,152,145,153,-1,174,112,115,-1,172,263,176,-1,89,117,79,-1,350,245,239,-1,424,356,440,-1,441,370,344,-1,31,11,18,-1,313,336,288,-1,354,343,271,-1,359,387,401,-1,201,309,278,-1,76,30,24,-1,294,209,211,-1,21,85,50,-1,293,186,284,-1,20,40,26,-1,40,119,154,-1,284,186,163,-1,407,402,432,-1,216,174,320,-1,152,165,105,-1,89,198,117,-1,400,435,415,-1,92,172,176,-1,381,303,353,-1,285,115,226,-1,162,107,108,-1,202,275,282,-1,313,337,336,-1,25,73,10,-1,379,423,431,-1,273,315,300,-1,5,28,25,-1,143,101,126,-1,404,443,429,-1,326,290,265,-1,337,315,419,-1,111,36,22,-1,22,73,111,-1,180,234,219,-1,386,337,419,-1,286,326,265,-1,404,429,409,-1,197,120,173,-1,150,111,219,-1,265,290,273,-1,444,419,409,-1,379,386,423,-1,73,22,10,-1,202,187,275,-1,162,148,107,-1,115,194,226,-1,353,418,381,-1,92,176,99,-1,400,436,435,-1,89,199,198,-1,105,109,152,-1,320,333,216,-1,432,425,407,-1,284,163,245,-1,40,154,46,-1,20,44,40,-1,293,215,186,-1,50,13,21,-1,294,286,209,-1,76,24,71,-1,278,168,201,-1,401,354,359,-1,271,305,354,-1,288,279,313,-1,31,18,41,-1,441,344,424,-1,424,344,356,-1,350,239,338,-1,60,89,79,-1,172,257,263,-1,174,134,112,-1,153,159,152,-1,79,116,97,-1,417,334,378,-1,90,93,103,-1,116,214,242,-1,381,285,303,-1,115,112,194,-1,113,102,164,-1,178,212,103,-1,224,227,247,-1,197,221,151,-1,443,404,370,-1,315,273,290,-1,85,101,50,-1,276,271,343,-1,423,386,419,-1,73,219,111,-1,50,28,12,-1,400,367,355,-1,367,400,415,-1,382,347,341,-1,347,382,393,-1,352,274,351,-1,259,274,352,-1,287,334,335,-1,287,296,334,-1,107,90,108,-1,107,86,90,-1,59,95,62,-1,96,95,59,-1,229,127,128,-1,222,127,229,-1,101,173,120,-1,101,143,173,-1,22,2,10,-1,22,8,2,-1,123,171,121,-1,123,167,171,-1,371,396,394,-1,372,396,371,-1,277,254,252,-1,279,254,277,-1,404,290,326,-1,404,409,290,-1,126,81,104,-1,126,85,81,-1,294,344,370,-1,294,282,344,-1,290,419,315,-1,419,290,409,-1,254,219,234,-1,219,254,253,-1,187,267,275,-1,187,195,267,-1,213,268,205,-1,213,287,268,-1,107,147,106,-1,148,147,107,-1,95,138,104,-1,139,138,95,-1,355,327,321,-1,327,355,367,-1,347,295,341,-1,297,295,347,-1,248,265,273,-1,248,225,265,-1,243,132,150,-1,243,235,132,-1,246,199,193,-1,246,250,199,-1,328,270,301,-1,328,292,270,-1,110,188,98,-1,110,208,188,-1,323,363,383,-1,363,323,316,-1,418,342,392,-1,418,353,342,-1,412,363,376,-1,412,383,363,-1,263,191,176,-1,263,269,191,-1,102,109,87,-1,109,102,113,-1,435,392,415,-1,435,418,392,-1,339,417,425,-1,339,335,417,-1,331,308,298,-1,331,332,308,-1,410,435,436,-1,410,413,435,-1,105,87,109,-1,105,75,87,-1,134,216,131,-1,216,134,174,-1,84,78,56,-1,84,92,78,-1,351,425,432,-1,351,339,425,-1,325,298,289,-1,325,331,298,-1,239,333,338,-1,239,216,333,-1,319,250,246,-1,319,321,250,-1,75,94,61,-1,94,75,105,-1,322,289,280,-1,322,325,289,-1,68,56,45,-1,68,84,56,-1,430,351,432,-1,430,352,351,-1,94,149,91,-1,149,94,160,-1,433,408,414,-1,428,408,433,-1,58,35,46,-1,35,58,48,-1,416,373,366,-1,416,411,373,-1,240,142,140,-1,240,241,142,-1,39,59,34,-1,59,39,64,-1,35,47,26,-1,47,35,52,-1,177,186,175,-1,186,177,163,-1,428,399,408,-1,438,399,428,-1,62,34,59,-1,62,32,34,-1,406,366,365,-1,406,416,366,-1,237,140,135,-1,237,240,140,-1,439,393,382,-1,439,438,393,-1,43,26,47,-1,43,20,26,-1,175,215,184,-1,215,175,186,-1,438,388,399,-1,439,388,438,-1,32,81,33,-1,81,32,62,-1,302,261,258,-1,302,311,261,-1,369,388,389,-1,369,362,388,-1,150,44,38,-1,150,132,44,-1,77,130,69,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr2lr_Geo_5_601_normalIndex_2()
		{
			int[] value = {130,77,141,-1,299,258,256,-1,299,302,258,-1,57,29,19,-1,57,63,29,-1,403,360,349,-1,403,405,360,-1,307,196,210,-1,314,196,307,-1,380,431,434,-1,379,431,380,-1,69,125,72,-1,125,69,130,-1,277,233,248,-1,252,233,277,-1,349,276,346,-1,276,349,299,-1,55,122,57,-1,55,127,122,-1,8,36,11,-1,8,22,36,-1,123,169,167,-1,123,125,169,-1,397,372,374,-1,396,372,397,-1,170,168,161,-1,201,168,170,-1,255,238,228,-1,255,260,238,-1,395,427,429,-1,401,427,395,-1,15,51,14,-1,15,53,51,-1,23,71,24,-1,71,23,66,-1,309,371,368,-1,309,318,371,-1,384,421,420,-1,384,391,421,-1,310,260,255,-1,310,305,260,-1,7,6,9,-1,7,5,6,-1,114,71,118,-1,114,76,71,-1,4,1,3,-1,4,0,1,-1,228,133,124,-1,228,238,133,-1,401,426,427,-1,387,426,401,-1,357,391,384,-1,391,357,368,-1,303,194,204,-1,303,226,194,-1,309,206,318,-1,201,206,309,-1,2,24,0,-1,24,2,23,-1,53,128,51,-1,53,133,128,-1,343,401,395,-1,354,401,343,-1,422,391,394,-1,421,391,422,-1,7,14,12,-1,7,15,14,-1,5,3,6,-1,4,3,5,-1,318,372,371,-1,318,312,372,-1,72,123,70,-1,123,72,125,-1,17,57,19,-1,17,55,57,-1,276,256,244,-1,276,299,256,-1,178,264,270,-1,178,236,264,-1,178,208,236,-1,178,188,208,-1,270,212,178,-1,270,217,212,-1,270,220,217,-1,270,227,220,-1,272,323,329,-1,292,227,270,-1,272,316,323,-1,247,316,272,-1,247,292,316,-1,292,247,227,-1,155,209,185,-1,209,155,211,-1,11,38,18,-1,11,36,38,-1,434,397,389,-1,431,397,434,-1,169,210,196,-1,169,183,210,-1,441,405,403,-1,441,424,405,-1,29,21,19,-1,21,29,33,-1,230,256,258,-1,223,256,230,-1,141,183,130,-1,183,141,184,-1,44,18,38,-1,18,44,20,-1,439,389,388,-1,434,389,439,-1,258,237,230,-1,258,261,237,-1,424,406,405,-1,424,440,406,-1,33,37,32,-1,33,29,37,-1,362,399,388,-1,362,361,399,-1,47,77,43,-1,77,47,88,-1,32,42,34,-1,32,37,42,-1,261,240,237,-1,261,262,240,-1,416,440,437,-1,406,440,416,-1,438,390,393,-1,438,428,390,-1,149,175,158,-1,175,149,177,-1,26,46,35,-1,26,40,46,-1,45,34,42,-1,34,45,39,-1,262,241,240,-1,262,280,241,-1,437,411,416,-1,437,430,411,-1,58,154,193,-1,46,154,58,-1,350,414,408,-1,350,338,414,-1,160,177,149,-1,177,160,166,-1,402,430,432,-1,411,430,402,-1,56,39,45,-1,39,56,54,-1,280,249,241,-1,280,289,249,-1,105,160,94,-1,160,105,165,-1,193,89,58,-1,193,199,89,-1,338,410,414,-1,338,333,410,-1,289,257,249,-1,289,298,257,-1,148,192,147,-1,192,148,205,-1,157,92,84,-1,157,172,92,-1,79,75,60,-1,75,79,87,-1,298,263,257,-1,298,308,263,-1,425,412,407,-1,425,417,412,-1,327,281,266,-1,327,330,281,-1,285,174,115,-1,320,174,285,-1,113,152,109,-1,152,113,145,-1,198,116,117,-1,198,214,116,-1,80,98,93,-1,80,83,98,-1,308,269,263,-1,308,301,269,-1,417,383,412,-1,417,378,383,-1,330,283,281,-1,330,306,283,-1,179,145,113,-1,145,179,207,-1,383,329,323,-1,383,378,329,-1,178,98,188,-1,93,98,178,-1,301,264,269,-1,301,270,264,-1,250,198,199,-1,250,266,198,-1,235,119,132,-1,235,231,119,-1,173,233,197,-1,218,233,173,-1,341,291,340,-1,295,291,341,-1,348,321,319,-1,321,348,355,-1,104,155,126,-1,138,155,104,-1,106,146,100,-1,147,146,106,-1,224,287,213,-1,224,296,287,-1,190,267,195,-1,190,259,267,-1,380,336,379,-1,336,380,340,-1,151,28,120,-1,28,151,25,-1,252,234,221,-1,254,234,252,-1,394,423,422,-1,396,423,394,-1,171,200,206,-1,167,200,171,-1,8,23,2,-1,8,27,23,-1,143,218,173,-1,143,185,218,-1,17,12,14,-1,17,13,12,-1,251,222,229,-1,244,222,251,-1,64,96,59,-1,100,96,64,-1,103,108,90,-1,136,108,103,-1,282,356,344,-1,282,275,356,-1,274,339,351,-1,274,268,339,-1,345,393,390,-1,345,347,393,-1,364,415,392,-1,364,367,415,-1,385,355,348,-1,355,385,400,-1,341,380,382,-1,341,340,380,-1,267,352,358,-1,267,259,352,-1,296,272,334,-1,296,247,272,-1,86,106,82,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr2lr_Geo_5_601_normalIndex_3()
		{
			int[] value = {107,106,86,-1,104,62,95,-1,104,81,62,-1,128,55,51,-1,127,55,128,-1,50,120,28,-1,50,101,120,-1,70,121,66,-1,70,123,121,-1,374,312,314,-1,372,312,374,-1,313,277,300,-1,313,279,277,-1,395,346,343,-1,398,346,395,-1,379,337,386,-1,379,336,337,-1,126,185,143,-1,185,126,155,-1,205,274,192,-1,205,268,274,-1,217,181,136,-1,220,181,217,-1,96,139,95,-1,137,139,96,-1,364,327,367,-1,330,327,364,-1,345,297,347,-1,304,297,345,-1,300,248,273,-1,277,248,300,-1,253,150,219,-1,253,243,150,-1,232,193,154,-1,232,246,193,-1,281,242,214,-1,281,283,242,-1,191,208,110,-1,191,236,208,-1,220,224,181,-1,224,220,227,-1,316,328,363,-1,328,316,292,-1,203,112,153,-1,112,203,204,-1,116,182,97,-1,116,189,182,-1,376,328,332,-1,376,363,328,-1,176,110,99,-1,176,191,110,-1,181,213,162,-1,213,181,224,-1,97,87,79,-1,87,97,102,-1,153,134,159,-1,134,153,112,-1,418,413,381,-1,435,413,418,-1,162,205,148,-1,205,162,213,-1,375,332,331,-1,375,376,332,-1,78,80,74,-1,78,83,80,-1,159,131,156,-1,131,159,134,-1,56,74,54,-1,56,78,74,-1,377,331,325,-1,377,375,331,-1,131,239,144,-1,239,131,216,-1,400,433,436,-1,385,433,400,-1,61,60,75,-1,61,48,60,-1,156,144,166,-1,144,156,131,-1,142,84,68,-1,142,157,84,-1,147,190,146,-1,190,147,192,-1,373,325,322,-1,373,377,325,-1,144,245,163,-1,245,144,239,-1,428,385,390,-1,428,433,385,-1,48,52,35,-1,52,48,61,-1,366,322,317,-1,366,373,322,-1,140,68,65,-1,140,142,68,-1,146,195,137,-1,195,146,190,-1,52,88,47,-1,88,52,91,-1,361,408,399,-1,361,350,408,-1,137,187,139,-1,187,137,195,-1,365,317,311,-1,365,366,317,-1,135,65,67,-1,135,140,65,-1,295,231,235,-1,295,297,231,-1,158,184,141,-1,184,158,175,-1,129,67,63,-1,129,135,67,-1,139,202,138,-1,202,139,187,-1,360,311,302,-1,360,365,311,-1,307,362,369,-1,307,293,362,-1,291,235,243,-1,291,295,235,-1,43,69,41,-1,69,43,77,-1,210,293,307,-1,210,215,293,-1,122,63,57,-1,122,129,63,-1,138,211,155,-1,211,138,202,-1,349,302,299,-1,349,360,302,-1,314,369,374,-1,314,307,369,-1,291,253,288,-1,253,291,243,-1,72,41,69,-1,72,31,41,-1,218,248,233,-1,218,225,248,-1,349,398,403,-1,346,398,349,-1,127,223,122,-1,127,222,223,-1,27,11,31,-1,27,8,11,-1,167,196,200,-1,167,169,196,-1,431,396,397,-1,423,396,431,-1,201,171,206,-1,201,170,171,-1,229,260,251,-1,260,229,238,-1,429,444,409,-1,427,444,429,-1,251,305,271,-1,260,305,251,-1,12,5,7,-1,12,28,5,-1,118,66,121,-1,118,71,66,-1,368,394,391,-1,368,371,394,-1,303,342,353,-1,303,324,342,-1,204,324,303,-1,204,306,324,-1,203,306,204,-1,203,283,306,-1,207,283,203,-1,207,242,283,-1,179,242,207,-1,164,242,179,-1,164,189,242,-1,164,182,189,-1,444,420,421,-1,442,420,444,-1,359,305,310,-1,359,354,305,-1,16,53,15,-1,16,49,53,-1,161,118,170,-1,161,114,118,-1,0,30,1,-1,30,0,24,-1,124,53,49,-1,124,133,53,-1,442,427,426,-1,442,444,427,-1,278,368,357,-1,278,309,368,-1,170,121,171,-1,170,118,121,-1,10,0,4,-1,10,2,0,-1,229,133,238,-1,133,229,128,-1,421,419,444,-1,421,422,419,-1,15,9,16,-1,7,9,15,-1,25,4,5,-1,10,4,25,-1,200,314,312,-1,200,196,314,-1,70,31,72,-1,70,27,31,-1,13,19,21,-1,13,17,19,-1,244,223,222,-1,244,256,223,-1,403,443,441,-1,398,443,403,-1,288,254,279,-1,254,288,253,-1,38,111,150,-1,36,111,38,-1,374,389,397,-1,374,369,389,-1,125,183,169,-1,125,130,183,-1,33,85,21,-1,85,33,81,-1,223,129,122,-1,223,230,129,-1,183,215,210,-1,183,184,215,-1,20,41,18,-1,41,20,43,-1,382,434,439,-1,380,434,382,-1,230,135,129,-1,230,237,135,-1,405,365,360,-1,405,406,365,-1,63,37,29,-1,63,67,37,-1,293,361,362,-1,293,284,361,-1,88,141,77,-1,141,88,158,-1,132,40,44,-1,132,119,40,-1,42,67,65,-1,37,67,42,-1,311,262,261,-1,311,317,262,-1,356,437,440,-1,356,358,437,-1,297,232,231,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolr2lr_Geo_5_601_normalIndex_4()
		{
			int[] value = {297,304,232,-1,284,350,361,-1,284,245,350,-1,91,158,88,-1,158,91,149,-1,358,430,437,-1,358,352,430,-1,65,45,42,-1,65,68,45,-1,317,280,262,-1,317,322,280,-1,61,91,52,-1,91,61,94,-1,304,246,232,-1,304,319,246,-1,166,163,177,-1,163,166,144,-1,411,377,373,-1,411,402,377,-1,54,64,39,-1,64,54,82,-1,241,157,142,-1,241,249,157,-1,165,166,160,-1,166,165,156,-1,89,48,58,-1,48,89,60,-1,414,436,433,-1,414,410,436,-1,249,172,157,-1,249,257,172,-1,402,375,377,-1,402,407,375,-1,74,82,54,-1,82,74,86,-1,333,413,410,-1,333,320,413,-1,152,156,165,-1,156,152,159,-1,321,266,250,-1,321,327,266,-1,92,83,78,-1,92,99,83,-1,407,376,375,-1,407,412,376,-1,80,86,74,-1,86,80,90,-1,320,381,413,-1,320,285,381,-1,99,98,83,-1,99,110,98,-1,332,301,308,-1,332,328,301,-1,182,102,97,-1,102,182,164,-1,207,153,145,-1,153,207,203,-1,329,334,272,-1,378,334,329,-1,269,236,191,-1,269,264,236,-1,266,214,198,-1,266,281,214,-1,231,154,119,-1,231,232,154,-1,252,197,233,-1,252,221,197,-1,340,288,336,-1,291,288,340,-1,348,304,345,-1,319,304,348,-1,324,330,364,-1,306,330,324,-1,100,137,96,-1,146,137,100,-1,136,162,108,-1,181,162,136,-1,192,259,190,-1,192,274,259,-1,211,282,294,-1,211,202,282,-1,370,326,294,-1,404,326,370,-1,151,73,25,-1,151,180,73,-1,221,180,151,-1,221,234,180,-1,429,398,395,-1,443,398,429,-1,265,209,286,-1,209,265,225,-1,337,300,315,-1,337,313,300,-1,206,312,318,-1,200,312,206,-1,27,66,23,-1,27,70,66,-1,225,185,209,-1,185,225,218,-1,55,14,51,-1,55,17,14,-1,271,244,251,-1,276,244,271,-1,100,82,106,-1,100,64,82,-1,136,212,217,-1,136,103,212,-1,358,275,267,-1,275,358,356,-1,335,268,287,-1,268,335,339,-1,390,348,345,-1,348,390,385,-1,364,342,324,-1,364,392,342,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr3lc_Geo_5_607_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,21,24,25,-1,20,23,26,-1,27,28,29,-1,30,31,32,-1,32,33,30,-1,34,35,36,-1,37,38,39,-1,40,41,42,-1,42,41,43,-1,44,45,34,-1,46,44,47,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,57,58,48,-1,59,60,5,-1,61,62,63,-1,64,65,66,-1,5,60,67,-1,68,69,70,-1,71,72,73,-1,74,75,76,-1,77,78,79,-1,80,0,81,-1,82,81,83,-1,0,2,84,-1,85,86,87,-1,88,89,90,-1,91,92,93,-1,94,95,96,-1,96,97,98,-1,99,100,101,-1,102,70,103,-1,104,10,9,-1,2,105,106,-1,107,108,109,-1,110,111,112,-1,113,90,114,-1,115,116,117,-1,118,119,120,-1,121,122,118,-1,123,124,125,-1,126,127,128,-1,129,130,131,-1,132,133,100,-1,134,67,55,-1,69,68,135,-1,86,85,136,-1,137,138,139,-1,140,49,141,-1,142,143,144,-1,145,146,147,-1,148,149,150,-1,151,101,152,-1,76,75,153,-1,154,155,156,-1,157,158,159,-1,42,160,161,-1,162,12,27,-1,162,163,164,-1,38,165,15,-1,166,167,168,-1,169,170,171,-1,172,14,173,-1,174,175,176,-1,19,177,178,-1,23,22,179,-1,180,72,181,-1,182,183,157,-1,182,184,185,-1,186,187,188,-1,189,190,191,-1,192,101,193,-1,194,195,143,-1,141,137,196,-1,197,198,199,-1,87,69,135,-1,55,54,200,-1,6,201,7,-1,202,203,204,-1,156,205,206,-1,121,94,122,-1,207,208,120,-1,209,155,119,-1,210,211,212,-1,117,213,214,-1,215,65,216,-1,156,155,205,-1,217,218,200,-1,105,219,220,-1,73,180,221,-1,61,222,223,-1,177,224,11,-1,129,225,130,-1,130,110,226,-1,53,227,218,-1,228,229,107,-1,230,231,91,-1,23,179,62,-1,232,92,91,-1,4,233,5,-1,201,88,80,-1,234,189,156,-1,235,236,237,-1,103,70,238,-1,82,238,7,-1,7,201,80,-1,239,113,240,-1,77,192,78,-1,192,74,152,-1,241,76,242,-1,243,181,72,-1,69,87,8,-1,24,244,245,-1,62,179,246,-1,89,134,114,-1,4,247,233,-1,50,53,57,-1,46,47,216,-1,43,35,248,-1,31,37,39,-1,249,32,39,-1,36,250,251,-1,34,206,44,-1,29,32,249,-1,161,160,252,-1,18,224,177,-1,244,21,20,-1,253,254,255,-1,166,168,11,-1,145,256,257,-1,258,141,259,-1,221,260,214,-1,10,166,11,-1,255,174,253,-1,244,20,19,-1,25,24,261,-1,29,33,32,-1,39,262,249,-1,31,39,32,-1,262,164,163,-1,43,263,35,-1,141,49,48,-1,53,52,57,-1,259,264,265,-1,89,114,90,-1,62,246,63,-1,24,245,266,-1,267,134,268,-1,72,71,243,-1,242,269,241,-1,192,77,74,-1,270,271,272,-1,80,82,7,-1,82,83,273,-1,236,274,237,-1,80,88,0,-1,91,231,232,-1,230,91,275,-1,94,121,95,-1,96,276,97,-1,217,53,218,-1,130,225,110,-1,129,277,225,-1,177,11,278,-1,61,223,279,-1,73,221,213,-1,280,281,102,-1,281,282,102,-1,105,220,106,-1,107,229,108,-1,200,54,217,-1,73,283,284,-1,213,221,214,-1,285,209,286,-1,207,287,208,-1,288,189,191,-1,289,126,128,-1,190,234,85,-1,234,136,85,-1,202,204,133,-1,267,114,134,-1,197,199,226,-1,194,143,290,-1,192,152,101,-1,189,234,190,-1,186,291,187,-1,94,292,122,-1,160,293,252,-1,182,294,184,-1,182,295,183,-1,181,296,180,-1,19,178,297,-1,174,298,175,-1,172,173,255,-1,171,299,169,-1,166,300,167,-1,15,301,38,-1,162,27,163,-1,9,26,104,-1,93,284,283,-1,157,183,158,-1,76,153,242,-1,150,302,148,-1,147,303,145,-1,143,195,144,-1,304,256,145,-1,141,196,140,-1,137,139,305,-1,229,227,306,-1,238,70,7,-1,70,69,7,-1,131,263,129,-1,156,206,307,-1,123,207,124,-1,118,120,121,-1,156,189,154,-1,117,214,115,-1,102,282,68,-1,73,72,180,-1,107,109,240,-1,2,106,84,-1,308,309,98,-1,104,279,10,-1,267,107,240,-1,102,68,70,-1,101,151,99,-1,94,96,98,-1,121,310,95,-1,232,231,212,-1,275,91,93,-1,311,86,307,-1,86,136,307,-1,88,90,1,-1,85,87,135,-1,81,0,84,-1,82,273,238,-1,80,81,82,-1,270,272,312,-1,74,76,313,-1,314,71,73,-1,315,316,284,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr3lc_Geo_5_607_coordIndex_2()
		{
			int[] value = {5,67,3,-1,64,216,65,-1,61,63,116,-1,140,229,306,-1,5,233,59,-1,259,265,258,-1,58,317,48,-1,54,56,318,-1,53,217,51,-1,50,57,48,-1,262,163,249,-1,44,46,45,-1,43,160,42,-1,42,319,40,-1,38,301,39,-1,36,251,34,-1,25,261,320,-1,18,9,224,-1,21,244,24,-1,23,20,21,-1,18,177,19,-1,321,322,222,-1,15,165,16,-1,12,162,13,-1,9,11,224,-1,260,115,214,-1,7,69,8,-1,3,323,4,-1,0,88,1,-1,324,325,148,-1,324,326,325,-1,327,328,329,-1,327,330,328,-1,331,305,139,-1,331,332,305,-1,333,334,335,-1,333,194,334,-1,253,336,254,-1,337,336,253,-1,338,339,340,-1,339,338,341,-1,342,185,184,-1,342,343,185,-1,258,137,141,-1,137,258,138,-1,178,278,344,-1,177,278,178,-1,172,345,346,-1,345,172,347,-1,169,348,349,-1,350,348,169,-1,115,321,222,-1,115,260,321,-1,293,66,252,-1,293,64,66,-1,245,252,66,-1,252,245,297,-1,211,122,292,-1,351,122,211,-1,278,168,352,-1,278,11,168,-1,262,301,164,-1,39,301,262,-1,160,248,293,-1,248,160,43,-1,141,317,259,-1,48,317,141,-1,353,354,355,-1,354,353,356,-1,357,56,358,-1,56,357,318,-1,57,356,58,-1,356,57,52,-1,228,200,218,-1,228,268,200,-1,179,320,246,-1,22,320,179,-1,152,313,151,-1,152,74,313,-1,109,239,240,-1,109,359,239,-1,360,274,132,-1,360,237,274,-1,189,120,154,-1,189,288,120,-1,3,88,323,-1,3,89,88,-1,361,362,363,-1,311,362,361,-1,2,239,105,-1,1,239,2,-1,232,211,292,-1,232,212,211,-1,230,63,246,-1,230,364,63,-1,246,210,230,-1,320,210,246,-1,320,261,210,-1,365,203,202,-1,203,365,366,-1,240,114,267,-1,240,113,114,-1,112,355,110,-1,353,355,112,-1,277,30,225,-1,277,31,30,-1,344,352,16,-1,278,352,344,-1,283,213,367,-1,283,73,213,-1,98,269,308,-1,98,97,269,-1,280,360,99,-1,280,102,360,-1,71,308,368,-1,308,71,314,-1,286,215,285,-1,286,351,215,-1,210,24,266,-1,210,261,24,-1,208,121,120,-1,310,121,208,-1,190,127,126,-1,127,190,85,-1,351,118,122,-1,351,286,118,-1,369,366,365,-1,369,370,366,-1,236,220,371,-1,236,235,220,-1,372,373,374,-1,375,373,372,-1,376,329,377,-1,376,378,329,-1,373,271,374,-1,373,272,271,-1,374,229,140,-1,374,108,229,-1,306,53,50,-1,53,306,227,-1,265,303,142,-1,265,264,303,-1,33,146,379,-1,33,29,146,-1,204,193,133,-1,193,204,380,-1,187,148,325,-1,187,149,148,-1,325,188,187,-1,188,325,381,-1,294,381,184,-1,294,188,381,-1,242,382,368,-1,242,153,382,-1,243,383,159,-1,243,382,383,-1,170,295,171,-1,170,183,295,-1,382,71,368,-1,382,243,71,-1,245,19,297,-1,244,19,245,-1,384,321,296,-1,349,321,384,-1,17,385,13,-1,17,386,385,-1,350,387,348,-1,350,388,387,-1,253,176,389,-1,176,253,174,-1,390,299,171,-1,390,341,299,-1,255,347,172,-1,255,254,347,-1,349,170,169,-1,384,170,349,-1,173,13,385,-1,173,14,13,-1,391,348,387,-1,391,322,348,-1,166,391,300,-1,166,223,391,-1,162,301,15,-1,164,301,162,-1,316,292,309,-1,316,315,292,-1,171,392,390,-1,171,295,392,-1,393,159,383,-1,159,393,157,-1,94,309,292,-1,94,98,309,-1,382,394,383,-1,382,153,394,-1,153,79,394,-1,75,79,153,-1,101,133,193,-1,101,100,133,-1,147,29,28,-1,147,146,29,-1,379,145,257,-1,379,146,145,-1,142,139,138,-1,144,139,142,-1,256,112,257,-1,256,353,112,-1,305,395,137,-1,305,396,395,-1,375,395,376,-1,375,372,395,-1,375,377,370,-1,375,376,377,-1,397,302,150,-1,397,398,302,-1,365,371,369,-1,365,236,371,-1,285,206,205,-1,47,206,285,-1,44,206,47,-1,124,128,281,-1,124,289,128,-1,123,151,313,-1,123,125,151,-1,123,287,207,-1,241,287,123,-1,10,223,166,-1,10,279,223,-1,273,106,399,-1,273,83,106,-1,269,368,308,-1,368,269,242,-1,319,161,400,-1,319,42,161,-1,125,281,280,-1,124,281,125,-1,366,397,203,-1,397,366,401,-1,96,310,276,-1,95,310,96,-1,212,230,210,-1,231,230,212,-1,86,361,87,-1,86,311,361,-1,119,154,120,-1,155,154,119,-1,239,219,105,-1,359,219,239,-1,247,250,402,-1,247,363,250,-1,55,268,134,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr3lc_Geo_5_607_coordIndex_3()
		{
			int[] value = {268,55,200,-1,357,51,318,-1,354,51,357,-1,233,402,59,-1,233,247,402,-1,358,197,357,-1,358,198,197,-1,317,256,304,-1,58,256,317,-1,217,318,51,-1,217,54,318,-1,46,64,45,-1,46,216,64,-1,40,129,41,-1,129,40,277,-1,352,167,386,-1,352,168,167,-1,351,210,215,-1,351,211,210,-1,297,161,252,-1,161,297,178,-1,20,9,18,-1,9,20,26,-1,322,349,348,-1,322,321,349,-1,13,15,17,-1,162,15,13,-1,8,323,6,-1,323,8,4,-1,343,392,185,-1,343,403,392,-1,340,404,338,-1,340,405,404,-1,254,406,347,-1,336,406,254,-1,407,194,333,-1,407,195,194,-1,332,396,305,-1,332,408,396,-1,328,409,398,-1,330,409,328,-1,324,302,410,-1,324,148,302,-1,411,329,378,-1,411,327,329,-1,412,139,144,-1,412,331,139,-1,335,345,413,-1,335,334,345,-1,389,337,253,-1,414,337,389,-1,341,415,339,-1,415,341,390,-1,184,416,342,-1,416,184,381,-1,88,6,323,-1,88,201,6,-1,346,14,172,-1,346,12,14,-1,350,299,417,-1,350,169,299,-1,222,116,115,-1,222,61,116,-1,22,25,320,-1,22,21,25,-1,16,400,344,-1,165,400,16,-1,266,66,65,-1,66,266,245,-1,385,298,173,-1,385,418,298,-1,290,27,419,-1,290,28,27,-1,34,248,35,-1,248,34,45,-1,40,31,277,-1,40,37,31,-1,263,41,129,-1,263,43,41,-1,259,304,264,-1,317,304,259,-1,354,52,51,-1,354,356,52,-1,59,198,358,-1,59,402,198,-1,58,353,256,-1,356,353,58,-1,228,227,229,-1,228,218,227,-1,34,362,206,-1,251,362,34,-1,73,316,314,-1,316,73,284,-1,270,109,271,-1,359,109,270,-1,202,132,274,-1,133,132,202,-1,238,399,103,-1,238,273,399,-1,362,307,206,-1,362,311,307,-1,361,8,87,-1,361,4,8,-1,90,239,1,-1,90,113,239,-1,315,93,92,-1,284,93,315,-1,104,23,62,-1,104,26,23,-1,274,365,202,-1,274,236,365,-1,237,102,103,-1,360,102,237,-1,197,110,355,-1,197,226,110,-1,314,309,308,-1,314,316,309,-1,106,81,84,-1,106,83,81,-1,117,367,213,-1,117,364,367,-1,216,285,215,-1,216,47,285,-1,286,119,118,-1,209,119,286,-1,126,191,190,-1,126,289,191,-1,36,263,131,-1,36,35,263,-1,370,401,366,-1,370,377,401,-1,132,99,360,-1,132,100,99,-1,219,371,220,-1,219,312,371,-1,312,369,371,-1,312,373,369,-1,272,373,312,-1,374,196,372,-1,196,374,140,-1,282,128,127,-1,282,281,128,-1,250,131,199,-1,250,36,131,-1,306,49,140,-1,50,49,306,-1,264,145,303,-1,264,304,145,-1,142,147,143,-1,303,147,142,-1,379,30,33,-1,30,379,111,-1,150,380,204,-1,380,150,149,-1,149,291,380,-1,291,149,187,-1,188,393,186,-1,393,188,294,-1,159,181,243,-1,159,158,181,-1,384,183,170,-1,384,158,183,-1,367,93,283,-1,275,93,367,-1,12,419,27,-1,12,346,419,-1,16,386,17,-1,16,352,386,-1,296,221,180,-1,321,221,296,-1,221,321,260,-1,167,420,418,-1,167,300,420,-1,420,388,175,-1,387,388,420,-1,417,388,350,-1,421,388,417,-1,421,389,176,-1,421,404,389,-1,338,421,417,-1,338,404,421,-1,388,176,175,-1,176,388,421,-1,420,298,418,-1,420,175,298,-1,387,300,391,-1,420,300,387,-1,223,322,391,-1,223,222,322,-1,334,346,345,-1,346,334,419,-1,296,158,384,-1,296,181,158,-1,185,295,182,-1,185,392,295,-1,157,294,182,-1,157,393,294,-1,310,287,276,-1,310,208,287,-1,383,186,393,-1,383,394,186,-1,394,291,186,-1,394,78,291,-1,394,79,78,-1,288,289,124,-1,288,191,289,-1,380,192,193,-1,380,78,192,-1,380,291,78,-1,99,125,280,-1,151,125,99,-1,143,28,290,-1,143,147,28,-1,257,111,379,-1,257,112,111,-1,130,199,131,-1,130,226,199,-1,402,199,198,-1,402,250,199,-1,372,137,395,-1,137,372,196,-1,396,376,395,-1,396,378,376,-1,370,373,375,-1,369,373,370,-1,67,56,55,-1,60,56,67,-1,203,150,204,-1,203,397,150,-1,377,328,401,-1,377,329,328,-1,138,265,142,-1,138,258,265,-1,68,85,135,-1,68,127,85,-1,282,127,68,-1,123,76,241,-1,123,313,76,-1,288,207,120,-1,124,207,288,-1,155,285,205,-1,155,209,285,-1,116,364,117,-1,116,63,364,-1,235,106,220,-1,235,399,106,-1,97,241,269,-1,241,276,287,-1,97,276,241,-1,62,279,104,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolr3lc_Geo_5_607_coordIndex_4()
		{
			int[] value = {62,61,279,-1,165,319,400,-1,38,319,165,-1,111,225,30,-1,225,111,110,-1,107,268,228,-1,268,107,267,-1,401,398,397,-1,398,401,328,-1,275,364,230,-1,275,367,364,-1,292,92,232,-1,292,315,92,-1,361,247,4,-1,361,363,247,-1,156,136,234,-1,136,156,307,-1,103,235,237,-1,399,235,103,-1,219,270,312,-1,219,359,270,-1,75,77,79,-1,77,75,74,-1,251,363,362,-1,251,250,363,-1,89,67,134,-1,89,3,67,-1,56,59,358,-1,60,59,56,-1,354,197,355,-1,354,357,197,-1,271,108,374,-1,271,109,108,-1,38,40,319,-1,40,38,37,-1,45,293,248,-1,293,45,64,-1,29,163,27,-1,29,249,163,-1,194,419,334,-1,194,290,419,-1,386,418,385,-1,386,167,418,-1,210,65,215,-1,65,210,266,-1,400,178,344,-1,400,161,178,-1,341,417,299,-1,338,417,341,-1,255,298,174,-1,255,173,298,-1,416,325,326,-1,416,381,325,-1,403,390,392,-1,403,415,390,-1,405,389,404,-1,405,414,389,-1,413,347,406,-1,413,345,347,-1,195,412,144,-1,407,412,195,-1,378,408,411,-1,408,378,396,-1,398,410,302,-1,409,410,398,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr3lc_Geo_5_607_normalIndex_1()
		{
			int[] value = {271,163,249,-1,42,195,88,-1,323,318,358,-1,127,149,207,-1,410,403,408,-1,370,285,378,-1,99,87,107,-1,116,171,136,-1,116,84,150,-1,107,136,143,-1,409,414,397,-1,261,252,354,-1,354,343,261,-1,68,73,55,-1,273,279,365,-1,161,43,71,-1,71,43,75,-1,110,104,68,-1,118,110,119,-1,383,375,361,-1,211,306,297,-1,114,97,120,-1,373,349,383,-1,94,131,88,-1,85,175,138,-1,122,96,101,-1,88,131,69,-1,269,326,265,-1,108,140,227,-1,24,44,38,-1,17,6,30,-1,302,271,310,-1,308,310,301,-1,271,249,300,-1,270,266,305,-1,153,35,80,-1,253,309,299,-1,344,360,345,-1,345,347,340,-1,16,2,14,-1,148,265,172,-1,162,149,127,-1,249,248,263,-1,182,241,226,-1,146,268,267,-1,105,80,58,-1,90,64,193,-1,307,330,369,-1,329,334,307,-1,168,303,132,-1,317,294,332,-1,54,50,56,-1,9,11,2,-1,48,69,97,-1,326,269,258,-1,266,270,288,-1,292,325,321,-1,311,375,374,-1,387,417,391,-1,385,396,412,-1,23,13,34,-1,33,14,18,-1,38,44,32,-1,359,350,295,-1,39,95,36,-1,71,144,113,-1,395,410,409,-1,395,388,389,-1,279,281,370,-1,240,353,293,-1,197,199,177,-1,406,408,400,-1,357,287,272,-1,87,93,117,-1,136,171,184,-1,189,140,98,-1,59,125,39,-1,59,37,106,-1,4,15,12,-1,382,324,351,-1,0,14,1,-1,416,407,417,-1,374,292,312,-1,65,86,78,-1,305,326,258,-1,97,114,102,-1,323,314,318,-1,49,63,22,-1,295,250,111,-1,329,344,334,-1,355,380,369,-1,341,350,330,-1,187,315,290,-1,193,255,166,-1,222,96,124,-1,295,350,250,-1,190,188,102,-1,248,234,231,-1,227,189,209,-1,85,112,154,-1,93,115,207,-1,54,135,50,-1,50,146,79,-1,297,277,188,-1,164,256,182,-1,201,275,253,-1,136,184,175,-1,304,309,253,-1,195,66,88,-1,314,153,302,-1,342,382,295,-1,194,169,81,-1,172,265,286,-1,308,286,318,-1,318,314,302,-1,206,105,139,-1,17,0,6,-1,0,24,18,-1,203,38,61,-1,46,98,140,-1,326,305,358,-1,84,70,77,-1,175,184,159,-1,35,48,58,-1,195,129,66,-1,361,297,373,-1,118,119,124,-1,75,73,103,-1,252,273,365,-1,384,354,365,-1,55,83,53,-1,68,111,110,-1,397,354,384,-1,113,144,130,-1,99,115,93,-1,70,116,107,-1,363,394,392,-1,240,293,207,-1,385,333,348,-1,335,374,371,-1,209,142,166,-1,149,240,207,-1,392,357,363,-1,70,107,87,-1,150,84,128,-1,397,343,354,-1,365,398,384,-1,252,365,354,-1,398,389,388,-1,75,52,73,-1,374,375,383,-1,297,306,373,-1,371,368,356,-1,35,58,80,-1,175,159,138,-1,84,77,76,-1,92,48,74,-1,140,108,46,-1,61,225,203,-1,0,17,24,-1,235,232,233,-1,302,308,318,-1,308,301,289,-1,169,47,81,-1,302,153,271,-1,253,275,304,-1,201,253,278,-1,344,329,360,-1,345,352,347,-1,190,297,188,-1,50,135,146,-1,54,151,135,-1,93,207,212,-1,85,154,126,-1,227,209,255,-1,123,313,148,-1,313,291,148,-1,248,231,263,-1,182,256,241,-1,102,114,190,-1,227,298,327,-1,255,209,166,-1,237,341,331,-1,355,367,380,-1,346,382,351,-1,338,317,332,-1,324,342,270,-1,342,288,270,-1,49,22,11,-1,92,58,48,-1,65,78,79,-1,416,417,420,-1,0,18,14,-1,382,342,324,-1,4,8,15,-1,344,328,334,-1,144,134,130,-1,59,21,37,-1,59,137,125,-1,98,173,189,-1,87,117,91,-1,357,376,287,-1,406,400,392,-1,177,180,197,-1,240,262,353,-1,370,366,279,-1,395,409,388,-1,127,143,162,-1,299,327,298,-1,39,125,95,-1,38,32,61,-1,34,40,23,-1,412,390,385,-1,417,407,391,-1,362,333,385,-1,374,312,311,-1,292,321,274,-1,256,277,322,-1,286,265,318,-1,265,326,318,-1,56,52,54,-1,295,111,210,-1,168,355,303,-1,307,369,329,-1,295,382,359,-1,193,166,90,-1,148,291,269,-1,227,140,189,-1,182,226,139,-1,249,263,300,-1,217,319,340,-1,162,126,149,-1,92,182,139,-1,148,269,265,-1,14,33,16,-1,344,345,340,-1,329,377,360,-1,304,275,290,-1,278,253,299,-1,160,266,210,-1,266,288,210,-1,153,80,163,-1,270,305,258,-1,310,271,300,-1,308,289,286,-1,302,310,308,-1,235,233,229,-1,24,38,27,-1,245,108,227,-1,336,337,327,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr3lc_Geo_5_607_normalIndex_2()
		{
			int[] value = {88,69,42,-1,122,124,96,-1,85,138,64,-1,311,256,322,-1,88,66,94,-1,371,356,335,-1,349,372,383,-1,114,120,100,-1,297,190,211,-1,361,373,383,-1,398,388,384,-1,110,118,104,-1,75,144,71,-1,71,185,161,-1,279,366,365,-1,55,53,68,-1,150,128,170,-1,99,127,115,-1,116,70,84,-1,136,107,116,-1,99,93,87,-1,167,152,112,-1,370,281,285,-1,410,395,403,-1,127,207,115,-1,142,90,166,-1,318,326,358,-1,42,174,195,-1,271,153,163,-1,31,20,23,-1,31,28,20,-1,213,156,214,-1,213,165,156,-1,316,274,321,-1,316,280,274,-1,411,418,415,-1,411,416,418,-1,363,393,394,-1,364,393,363,-1,204,178,205,-1,178,204,179,-1,41,106,37,-1,41,109,106,-1,335,292,374,-1,292,335,325,-1,117,212,208,-1,93,212,117,-1,406,413,419,-1,413,406,402,-1,197,186,202,-1,183,186,197,-1,90,167,112,-1,90,142,167,-1,134,101,130,-1,134,122,101,-1,77,130,101,-1,130,77,91,-1,315,334,328,-1,320,334,315,-1,212,293,296,-1,212,207,293,-1,398,366,389,-1,365,366,398,-1,144,103,134,-1,103,144,75,-1,374,372,371,-1,383,372,374,-1,276,192,176,-1,192,276,282,-1,51,120,60,-1,120,51,100,-1,373,282,349,-1,282,373,306,-1,164,102,188,-1,164,74,102,-1,184,170,159,-1,171,170,184,-1,18,27,33,-1,18,24,27,-1,226,206,139,-1,226,243,206,-1,29,47,9,-1,29,81,47,-1,382,369,359,-1,382,346,369,-1,42,153,174,-1,42,35,153,-1,196,57,82,-1,160,57,196,-1,249,206,248,-1,163,206,249,-1,304,315,328,-1,304,290,315,-1,201,138,159,-1,201,224,138,-1,159,187,201,-1,170,187,159,-1,170,128,187,-1,157,63,49,-1,63,157,145,-1,139,58,92,-1,139,105,58,-1,267,176,146,-1,276,176,267,-1,151,261,135,-1,151,252,261,-1,208,296,285,-1,212,296,208,-1,298,255,284,-1,298,227,255,-1,340,225,217,-1,340,347,225,-1,123,29,16,-1,123,148,29,-1,108,217,67,-1,217,108,245,-1,331,222,237,-1,331,320,222,-1,187,84,76,-1,187,128,84,-1,380,329,369,-1,377,329,380,-1,324,294,317,-1,294,324,270,-1,320,307,334,-1,320,331,307,-1,228,145,157,-1,228,219,145,-1,169,231,230,-1,169,194,231,-1,251,236,247,-1,246,236,251,-1,244,214,216,-1,244,238,214,-1,236,232,247,-1,236,233,232,-1,247,256,311,-1,247,241,256,-1,322,297,361,-1,297,322,277,-1,356,390,387,-1,356,368,390,-1,343,396,339,-1,343,397,396,-1,22,1,11,-1,1,22,3,-1,15,23,20,-1,15,13,23,-1,20,12,15,-1,12,20,19,-1,21,19,37,-1,21,12,19,-1,61,25,67,-1,61,32,25,-1,46,5,36,-1,46,25,5,-1,199,137,177,-1,199,125,137,-1,25,108,67,-1,25,46,108,-1,77,87,91,-1,70,87,77,-1,181,167,173,-1,202,167,181,-1,378,401,403,-1,378,379,401,-1,183,218,186,-1,183,215,218,-1,363,272,260,-1,272,363,357,-1,158,180,177,-1,158,179,180,-1,392,402,406,-1,392,394,402,-1,202,199,197,-1,181,199,202,-1,400,403,401,-1,400,408,403,-1,198,186,218,-1,198,152,186,-1,240,198,262,-1,240,154,198,-1,395,366,370,-1,389,366,395,-1,337,328,319,-1,337,336,328,-1,177,147,158,-1,177,137,147,-1,10,36,5,-1,36,10,39,-1,344,319,328,-1,344,340,319,-1,25,7,5,-1,25,32,7,-1,32,30,7,-1,44,30,32,-1,14,11,1,-1,14,2,11,-1,412,397,414,-1,412,396,397,-1,339,385,348,-1,339,396,385,-1,387,321,325,-1,391,321,387,-1,333,267,348,-1,333,276,267,-1,274,254,292,-1,274,259,254,-1,246,254,244,-1,246,251,254,-1,246,216,219,-1,246,244,216,-1,62,40,34,-1,62,72,40,-1,157,230,228,-1,157,169,230,-1,237,111,250,-1,119,111,237,-1,110,111,119,-1,303,332,313,-1,303,338,332,-1,168,33,27,-1,168,132,33,-1,168,367,355,-1,203,367,168,-1,149,154,240,-1,149,126,154,-1,289,263,242,-1,289,301,263,-1,225,67,217,-1,67,225,61,-1,185,113,200,-1,185,71,113,-1,132,313,123,-1,303,313,132,-1,145,62,63,-1,62,145,133,-1,345,377,352,-1,360,377,345,-1,290,201,187,-1,275,201,290,-1,266,196,305,-1,266,160,196,-1,330,359,369,-1,350,359,330,-1,206,234,248,-1,243,234,206,-1,129,83,121,-1,129,82,83,-1,97,74,48,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr3lc_Geo_5_607_normalIndex_3()
		{
			int[] value = {74,97,102,-1,51,211,100,-1,192,211,51,-1,66,121,94,-1,66,129,121,-1,60,65,51,-1,60,86,65,-1,372,333,362,-1,349,333,372,-1,190,100,211,-1,190,114,100,-1,118,122,104,-1,118,124,122,-1,161,54,43,-1,54,161,151,-1,296,353,379,-1,296,293,353,-1,320,187,222,-1,320,315,187,-1,91,113,130,-1,113,91,117,-1,107,127,99,-1,127,107,143,-1,152,202,186,-1,152,167,202,-1,403,370,378,-1,395,370,403,-1,358,174,323,-1,174,358,195,-1,109,147,106,-1,109,141,147,-1,205,220,204,-1,205,223,220,-1,394,399,402,-1,393,399,394,-1,404,416,411,-1,404,407,416,-1,280,259,274,-1,280,264,259,-1,156,89,72,-1,165,89,156,-1,31,40,45,-1,31,23,40,-1,239,214,238,-1,239,213,214,-1,386,321,391,-1,386,316,321,-1,415,413,405,-1,415,418,413,-1,260,364,363,-1,257,364,260,-1,179,155,178,-1,155,179,158,-1,37,26,41,-1,26,37,19,-1,153,323,174,-1,153,314,323,-1,419,408,406,-1,419,410,408,-1,183,180,191,-1,183,197,180,-1,112,64,90,-1,112,85,64,-1,171,150,170,-1,171,116,150,-1,285,200,208,-1,281,200,285,-1,76,101,96,-1,101,76,77,-1,401,376,400,-1,401,381,376,-1,420,409,421,-1,420,414,409,-1,68,103,73,-1,103,68,104,-1,161,252,151,-1,161,273,252,-1,52,43,54,-1,52,75,43,-1,371,362,368,-1,372,362,371,-1,192,306,211,-1,192,282,306,-1,94,86,60,-1,94,121,86,-1,349,276,333,-1,282,276,349,-1,164,277,256,-1,164,188,277,-1,68,57,111,-1,53,57,68,-1,227,337,245,-1,337,227,327,-1,235,226,232,-1,243,226,235,-1,49,9,47,-1,11,9,49,-1,286,242,172,-1,286,289,242,-1,57,210,111,-1,57,160,210,-1,196,358,305,-1,196,195,358,-1,80,206,163,-1,80,105,206,-1,336,299,309,-1,327,299,336,-1,162,136,175,-1,162,143,136,-1,47,157,49,-1,47,169,157,-1,81,148,172,-1,29,148,81,-1,65,146,176,-1,65,79,146,-1,245,319,217,-1,245,337,319,-1,263,310,300,-1,263,301,310,-1,193,284,255,-1,193,224,284,-1,124,237,222,-1,124,119,237,-1,331,330,307,-1,341,330,331,-1,317,351,324,-1,317,338,351,-1,55,52,56,-1,55,73,52,-1,219,133,145,-1,219,216,133,-1,9,16,29,-1,9,2,16,-1,234,230,231,-1,234,229,230,-1,229,228,230,-1,229,236,228,-1,233,236,229,-1,247,312,251,-1,312,247,311,-1,291,332,294,-1,291,313,332,-1,83,56,78,-1,83,55,56,-1,322,375,311,-1,361,375,322,-1,368,385,390,-1,368,362,385,-1,387,412,417,-1,390,412,387,-1,339,261,343,-1,261,339,268,-1,34,3,22,-1,3,34,13,-1,13,8,3,-1,8,13,15,-1,12,10,4,-1,10,12,21,-1,36,98,46,-1,36,95,98,-1,181,125,199,-1,181,95,125,-1,284,299,298,-1,278,299,284,-1,410,421,409,-1,410,419,421,-1,285,379,378,-1,285,296,379,-1,173,209,189,-1,167,209,173,-1,209,167,142,-1,353,283,381,-1,353,262,283,-1,283,215,287,-1,218,215,283,-1,191,215,183,-1,221,215,191,-1,221,260,272,-1,221,220,260,-1,204,221,191,-1,204,220,221,-1,215,272,287,-1,272,215,221,-1,283,376,381,-1,283,287,376,-1,218,262,198,-1,283,262,218,-1,154,152,198,-1,154,112,152,-1,418,419,413,-1,419,418,421,-1,173,95,181,-1,173,98,95,-1,106,137,59,-1,106,147,137,-1,39,21,59,-1,39,10,21,-1,377,367,352,-1,377,380,367,-1,5,4,10,-1,5,7,4,-1,7,8,4,-1,7,6,8,-1,7,30,6,-1,346,338,303,-1,346,351,338,-1,3,0,1,-1,3,6,0,-1,3,8,6,-1,16,132,123,-1,33,132,16,-1,417,414,420,-1,417,412,414,-1,348,268,339,-1,348,267,268,-1,50,78,56,-1,50,79,78,-1,121,78,86,-1,121,83,78,-1,251,292,254,-1,292,251,312,-1,259,244,254,-1,259,238,244,-1,219,236,246,-1,228,236,219,-1,69,120,97,-1,131,120,69,-1,63,34,22,-1,63,62,34,-1,216,156,133,-1,216,214,156,-1,325,356,387,-1,325,335,356,-1,269,270,258,-1,269,294,270,-1,291,294,269,-1,168,38,203,-1,168,27,38,-1,346,355,369,-1,303,355,346,-1,350,237,250,-1,350,341,237,-1,64,224,193,-1,64,138,224,-1,194,263,231,-1,194,242,263,-1,347,203,225,-1,203,352,367,-1,347,352,203,-1,175,126,162,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlmolr3lc_Geo_5_607_normalIndex_4()
		{
			int[] value = {175,85,126,-1,281,185,200,-1,279,185,281,-1,268,135,261,-1,135,268,146,-1,182,74,164,-1,74,182,92,-1,133,72,62,-1,72,133,156,-1,278,224,201,-1,278,284,224,-1,328,309,304,-1,328,336,309,-1,196,129,195,-1,196,82,129,-1,295,288,342,-1,288,295,210,-1,172,194,81,-1,242,194,172,-1,234,235,229,-1,234,243,235,-1,44,17,30,-1,17,44,24,-1,53,82,57,-1,53,83,82,-1,35,69,48,-1,35,42,69,-1,120,94,60,-1,131,94,120,-1,192,65,176,-1,192,51,65,-1,232,241,247,-1,232,226,241,-1,279,161,185,-1,161,279,273,-1,104,134,103,-1,134,104,122,-1,397,388,409,-1,397,384,388,-1,416,421,418,-1,416,420,421,-1,379,381,401,-1,379,353,381,-1,187,96,222,-1,96,187,76,-1,200,117,208,-1,200,113,117,-1,179,191,180,-1,204,191,179,-1,392,376,357,-1,392,400,376,-1,26,20,28,-1,26,19,20,-1,141,158,147,-1,141,155,158,-1,223,260,220,-1,223,257,260,-1,405,402,399,-1,405,413,402,-1,407,386,391,-1,404,386,407,-1,238,264,239,-1,264,238,259,-1,72,45,40,-1,89,45,72,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr3lr_Geo_5_613_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,4,7,-1,8,9,10,-1,3,11,12,-1,13,14,15,-1,16,17,18,-1,19,20,21,-1,22,23,24,-1,25,26,27,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,37,14,38,-1,39,40,41,-1,42,15,37,-1,43,44,45,-1,46,47,48,-1,49,50,51,-1,52,53,47,-1,54,55,56,-1,57,6,58,-1,59,60,61,-1,62,63,64,-1,44,65,66,-1,40,67,68,-1,69,37,70,-1,71,39,72,-1,73,74,75,-1,75,76,77,-1,78,79,80,-1,81,82,83,-1,28,52,29,-1,3,5,11,-1,17,84,85,-1,86,87,88,-1,89,90,91,-1,92,93,7,-1,5,4,6,-1,94,28,1,-1,52,28,94,-1,4,92,7,-1,90,95,91,-1,96,97,98,-1,96,99,97,-1,87,15,88,-1,17,85,18,-1,100,97,99,-1,52,46,29,-1,81,83,24,-1,80,101,78,-1,75,74,76,-1,73,102,74,-1,71,72,103,-1,69,42,37,-1,40,68,41,-1,44,66,45,-1,62,64,104,-1,60,105,61,-1,56,106,54,-1,46,52,47,-1,51,107,49,-1,46,48,108,-1,43,45,102,-1,42,88,15,-1,39,41,72,-1,37,15,14,-1,34,109,35,-1,31,33,110,-1,30,111,28,-1,112,113,79,-1,21,78,19,-1,16,18,114,-1,87,13,15,-1,12,115,3,-1,116,8,10,-1,7,117,6,-1,94,1,0,-1,2,118,0,-1,119,120,121,-1,120,119,122,-1,123,22,124,-1,22,123,23,-1,36,24,83,-1,24,36,22,-1,125,95,90,-1,125,126,95,-1,7,127,117,-1,7,128,127,-1,129,130,131,-1,130,129,132,-1,133,25,134,-1,25,133,26,-1,135,84,136,-1,84,135,85,-1,137,138,139,-1,138,137,140,-1,141,142,143,-1,142,141,144,-1,145,146,147,-1,145,148,146,-1,2,149,118,-1,2,150,149,-1,151,152,150,-1,151,153,152,-1,154,112,21,-1,154,155,112,-1,89,156,90,-1,157,156,89,-1,158,159,160,-1,161,159,158,-1,162,93,30,-1,163,93,162,-1,163,86,128,-1,163,164,86,-1,161,99,96,-1,161,142,99,-1,138,165,166,-1,165,138,167,-1,17,168,84,-1,169,168,17,-1,170,134,171,-1,170,172,134,-1,139,173,174,-1,175,173,139,-1,176,177,178,-1,177,176,179,-1,116,76,8,-1,77,76,116,-1,82,155,154,-1,82,81,155,-1,180,181,182,-1,181,180,178,-1,183,184,185,-1,184,183,32,-1,186,75,77,-1,187,75,186,-1,166,188,189,-1,188,166,165,-1,190,169,191,-1,190,168,169,-1,170,192,193,-1,192,170,171,-1,175,38,173,-1,194,38,175,-1,195,196,197,-1,195,188,196,-1,198,199,68,-1,198,191,199,-1,192,148,103,-1,148,192,146,-1,200,201,202,-1,201,200,203,-1,204,205,206,-1,205,204,207,-1,45,74,102,-1,45,208,74,-1,209,103,148,-1,209,71,103,-1,195,210,211,-1,210,195,197,-1,212,68,67,-1,212,198,68,-1,213,214,215,-1,216,214,213,-1,202,217,218,-1,217,202,201,-1,206,219,220,-1,219,206,205,-1,67,221,212,-1,222,221,67,-1,108,71,209,-1,108,48,71,-1,69,223,224,-1,223,69,225,-1,226,227,228,-1,226,229,227,-1,230,231,232,-1,230,43,231,-1,233,153,151,-1,233,156,153,-1,234,235,236,-1,234,237,235,-1,238,239,240,-1,239,238,241,-1,242,222,243,-1,242,221,222,-1,117,244,245,-1,117,127,244,-1,234,246,247,-1,246,234,248,-1,107,249,49,-1,107,250,249,-1,251,252,253,-1,254,252,251,-1,255,256,257,-1,255,258,256,-1,259,53,260,-1,53,259,47,-1,247,261,262,-1,261,247,246,-1,263,264,265,-1,263,266,264,-1,55,267,56,-1,55,268,267,-1,269,270,271,-1,269,272,270,-1,273,274,275,-1,276,274,273,-1,64,57,277,-1,63,57,64,-1,278,279,280,-1,278,281,279,-1,282,283,284,-1,282,285,283,-1,286,287,288,-1,287,286,289,-1,290,60,291,-1,60,290,292,-1,293,294,295,-1,294,293,296,-1,276,265,274,-1,265,276,263,-1,297,298,281,-1,297,269,298,-1,57,55,54,-1,57,58,55,-1,295,299,51,-1,295,294,299,-1,274,300,301,-1,300,274,265,-1,261,302,303,-1,302,261,304,-1,291,59,262,-1,291,60,59,-1,305,0,306,-1,305,94,0,-1,305,288,94,-1,287,260,53,-1,287,307,260,-1,269,308,298,-1,269,271,308,-1,309,285,282,-1,285,309,310,-1,285,311,312,-1,285,310,311,-1,313,301,300,-1,313,62,301,-1,314,294,296,-1,302,294,314,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr3lr_Geo_5_613_coordIndex_2()
		{
			int[] value = {292,105,60,-1,105,292,315,-1,289,307,287,-1,307,289,316,-1,308,284,317,-1,308,282,284,-1,106,280,318,-1,106,278,280,-1,275,301,319,-1,274,301,275,-1,271,242,309,-1,271,270,242,-1,267,320,56,-1,320,267,240,-1,118,306,0,-1,118,258,306,-1,50,266,263,-1,50,49,266,-1,246,304,261,-1,304,246,321,-1,258,61,306,-1,61,258,255,-1,100,137,322,-1,144,137,100,-1,144,140,137,-1,144,323,140,-1,141,323,144,-1,141,324,323,-1,141,135,324,-1,141,85,135,-1,26,85,141,-1,26,18,85,-1,26,114,18,-1,26,325,114,-1,26,326,325,-1,26,133,326,-1,258,149,256,-1,258,118,149,-1,253,264,232,-1,252,264,253,-1,327,250,107,-1,327,328,250,-1,223,240,267,-1,240,223,238,-1,329,30,29,-1,162,30,329,-1,243,330,331,-1,243,222,330,-1,239,226,272,-1,239,241,226,-1,236,248,234,-1,248,236,220,-1,256,332,218,-1,256,149,332,-1,232,214,253,-1,232,231,214,-1,328,65,250,-1,328,333,65,-1,225,238,223,-1,238,225,211,-1,334,162,329,-1,335,162,334,-1,222,40,330,-1,222,67,40,-1,205,333,219,-1,333,205,336,-1,235,201,337,-1,235,217,201,-1,216,91,95,-1,216,213,91,-1,227,198,212,-1,227,338,198,-1,339,211,225,-1,211,339,195,-1,215,109,213,-1,215,187,109,-1,207,336,205,-1,336,207,185,-1,337,203,182,-1,337,201,203,-1,213,34,91,-1,213,109,34,-1,68,340,41,-1,68,199,340,-1,197,341,342,-1,197,196,341,-1,194,37,38,-1,70,37,194,-1,173,14,98,-1,38,14,173,-1,340,170,193,-1,340,343,170,-1,341,168,190,-1,341,344,168,-1,194,166,189,-1,194,175,166,-1,35,187,186,-1,109,187,35,-1,345,185,207,-1,185,345,183,-1,346,182,203,-1,182,346,180,-1,77,347,186,-1,77,116,347,-1,120,32,183,-1,32,120,33,-1,130,178,180,-1,178,130,176,-1,98,174,173,-1,98,97,174,-1,343,172,170,-1,343,348,172,-1,344,84,168,-1,344,136,84,-1,138,175,139,-1,166,175,138,-1,349,350,351,-1,350,349,352,-1,164,87,86,-1,164,353,87,-1,111,93,92,-1,93,111,30,-1,354,159,353,-1,159,354,160,-1,90,233,125,-1,156,233,90,-1,355,21,20,-1,355,154,21,-1,350,150,2,-1,350,151,150,-1,356,19,357,-1,356,20,19,-1,108,29,46,-1,108,329,29,-1,358,147,146,-1,358,359,147,-1,99,144,100,-1,99,142,144,-1,140,167,138,-1,167,140,323,-1,16,325,348,-1,16,114,325,-1,360,131,80,-1,131,360,129,-1,132,176,130,-1,176,132,361,-1,128,88,127,-1,128,86,88,-1,115,126,125,-1,115,12,126,-1,81,23,362,-1,81,24,23,-1,363,116,10,-1,347,116,363,-1,122,33,120,-1,33,122,364,-1,351,2,1,-1,351,350,2,-1,121,365,119,-1,121,179,365,-1,110,9,8,-1,110,366,9,-1,123,347,363,-1,124,347,123,-1,34,83,367,-1,83,34,36,-1,92,351,111,-1,92,349,351,-1,155,113,112,-1,155,368,113,-1,172,133,134,-1,172,326,133,-1,324,136,369,-1,136,324,135,-1,139,322,137,-1,139,174,322,-1,26,143,27,-1,143,26,141,-1,148,334,209,-1,148,145,334,-1,332,150,152,-1,150,332,149,-1,21,79,78,-1,21,112,79,-1,153,356,152,-1,153,370,356,-1,89,371,157,-1,371,89,367,-1,143,161,158,-1,142,161,143,-1,335,163,162,-1,164,163,335,-1,93,128,7,-1,93,163,128,-1,159,96,13,-1,159,161,96,-1,12,313,254,-1,12,11,313,-1,167,372,165,-1,372,167,369,-1,16,169,17,-1,373,169,16,-1,134,358,171,-1,358,134,25,-1,346,80,131,-1,346,101,80,-1,179,345,177,-1,345,179,121,-1,110,76,31,-1,76,110,8,-1,35,22,36,-1,35,124,22,-1,178,204,181,-1,204,178,177,-1,32,208,184,-1,208,32,31,-1,371,154,355,-1,371,82,154,-1,188,372,196,-1,188,165,372,-1,191,373,199,-1,191,169,373,-1,146,171,358,-1,146,192,171,-1,147,354,145,-1,160,354,147,-1,189,195,339,-1,195,189,188,-1,338,191,198,-1,338,190,191,-1,193,103,72,-1,103,193,192,-1,19,202,357,-1,202,19,200,-1,181,206,374,-1,206,181,204,-1,66,208,45,-1,66,184,208,-1,145,335,334,-1,354,335,145,-1,197,229,210,-1,229,197,342,-1,231,215,214,-1,231,73,215,-1,218,357,202,-1,218,332,357,-1,374,220,236,-1,220,374,206,-1,228,212,221,-1,228,227,212,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr3lr_Geo_5_613_coordIndex_3()
		{
			int[] value = {39,48,375,-1,48,39,71,-1,244,69,224,-1,244,42,69,-1,210,226,241,-1,226,210,229,-1,249,43,230,-1,249,44,43,-1,95,251,216,-1,126,251,95,-1,237,217,235,-1,237,257,217,-1,219,328,376,-1,328,219,333,-1,270,221,242,-1,270,228,221,-1,259,48,47,-1,259,375,48,-1,224,245,244,-1,268,245,224,-1,248,321,246,-1,321,248,376,-1,49,230,266,-1,49,249,230,-1,126,254,251,-1,12,254,126,-1,377,257,237,-1,377,255,257,-1,311,259,260,-1,311,331,259,-1,377,262,59,-1,262,377,247,-1,299,107,51,-1,299,327,107,-1,265,252,300,-1,265,264,252,-1,58,268,55,-1,58,245,268,-1,239,269,297,-1,269,239,272,-1,310,331,311,-1,310,243,331,-1,277,54,378,-1,57,54,277,-1,281,379,279,-1,281,298,379,-1,283,312,380,-1,285,312,283,-1,381,288,305,-1,288,381,286,-1,291,382,290,-1,291,303,382,-1,295,383,293,-1,295,384,383,-1,294,304,299,-1,294,302,304,-1,57,5,6,-1,57,63,5,-1,363,23,123,-1,10,23,363,-1,10,362,23,-1,9,362,10,-1,366,362,9,-1,364,362,366,-1,122,362,364,-1,122,368,362,-1,119,368,122,-1,365,368,119,-1,365,113,368,-1,361,113,365,-1,132,113,361,-1,129,113,132,-1,129,360,113,-1,308,309,282,-1,308,271,309,-1,320,281,278,-1,281,320,297,-1,53,288,287,-1,53,94,288,-1,53,52,94,-1,105,306,61,-1,105,305,306,-1,11,62,313,-1,5,62,11,-1,62,5,63,-1,51,384,295,-1,384,51,50,-1,384,263,276,-1,384,50,263,-1,262,303,291,-1,303,262,261,-1,56,278,106,-1,56,320,278,-1,260,312,311,-1,307,312,260,-1,383,276,273,-1,384,276,383,-1,303,314,382,-1,303,302,314,-1,315,305,105,-1,305,315,381,-1,316,312,307,-1,312,316,380,-1,298,317,379,-1,298,308,317,-1,378,106,318,-1,54,106,378,-1,62,319,301,-1,62,104,319,-1,309,243,310,-1,309,242,243,-1,240,297,320,-1,297,240,239,-1,254,300,252,-1,313,300,254,-1,321,299,304,-1,299,321,327,-1,255,59,61,-1,59,255,377,-1,237,247,377,-1,247,237,234,-1,352,151,350,-1,352,233,151,-1,232,266,230,-1,264,266,232,-1,376,327,321,-1,327,376,328,-1,268,223,267,-1,268,224,223,-1,331,375,259,-1,331,330,375,-1,272,228,270,-1,272,226,228,-1,220,376,248,-1,376,220,219,-1,218,257,256,-1,257,218,217,-1,216,253,214,-1,251,253,216,-1,250,44,249,-1,250,65,44,-1,211,241,238,-1,241,211,210,-1,127,42,244,-1,127,88,42,-1,330,39,375,-1,330,40,39,-1,336,65,333,-1,65,336,66,-1,236,337,374,-1,236,235,337,-1,156,370,153,-1,156,157,370,-1,43,73,231,-1,43,102,73,-1,229,338,227,-1,229,342,338,-1,225,70,339,-1,225,69,70,-1,73,187,215,-1,73,75,187,-1,185,66,336,-1,66,185,184,-1,182,374,337,-1,374,182,181,-1,157,355,370,-1,157,371,355,-1,340,72,41,-1,72,340,193,-1,342,190,338,-1,342,341,190,-1,189,70,194,-1,339,70,189,-1,359,160,147,-1,158,160,359,-1,199,343,340,-1,199,373,343,-1,196,344,341,-1,196,372,344,-1,200,78,101,-1,200,19,78,-1,31,74,208,-1,74,31,76,-1,177,207,204,-1,207,177,345,-1,203,101,346,-1,203,200,101,-1,124,186,347,-1,35,186,124,-1,121,183,345,-1,183,121,120,-1,180,131,130,-1,180,346,131,-1,27,158,359,-1,143,158,27,-1,373,348,343,-1,373,16,348,-1,136,372,369,-1,344,372,136,-1,245,6,117,-1,6,245,58,-1,353,13,87,-1,353,159,13,-1,115,349,3,-1,349,115,352,-1,354,164,335,-1,353,164,354,-1,125,352,115,-1,233,352,125,-1,367,82,371,-1,82,367,83,-1,370,20,356,-1,370,355,20,-1,4,349,92,-1,349,4,3,-1,152,357,332,-1,152,356,357,-1,329,209,334,-1,108,209,329,-1,359,25,27,-1,358,25,359,-1,97,322,174,-1,97,100,322,-1,323,369,167,-1,369,323,324,-1,348,326,172,-1,348,325,326,-1,79,360,80,-1,79,113,360,-1,1,111,351,-1,1,28,111,-1,13,98,14,-1,13,96,98,-1,91,367,89,-1,367,91,34,-1,362,155,81,-1,155,362,368,-1,33,366,110,-1,33,364,366,-1,361,179,176,-1,179,361,365,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmolr3lr_Geo_5_613_normalIndex_1()
		{
			int[] value = {34,76,194,-1,318,301,375,-1,350,301,230,-1,299,226,259,-1,318,373,336,-1,269,325,341,-1,97,154,120,-1,42,105,125,-1,309,268,294,-1,71,96,80,-1,55,88,152,-1,263,196,208,-1,343,371,324,-1,359,325,355,-1,30,46,31,-1,363,341,359,-1,310,254,271,-1,39,15,14,-1,245,236,200,-1,16,10,15,-1,360,351,311,-1,381,350,382,-1,64,69,17,-1,369,380,383,-1,254,197,206,-1,46,81,65,-1,352,359,340,-1,12,30,18,-1,348,307,338,-1,338,312,356,-1,66,124,94,-1,277,251,293,-1,55,16,88,-1,318,375,373,-1,154,204,135,-1,264,282,319,-1,288,279,347,-1,199,174,230,-1,375,301,350,-1,11,55,76,-1,16,55,11,-1,301,199,230,-1,279,333,347,-1,258,286,303,-1,258,210,286,-1,282,341,319,-1,154,135,120,-1,195,286,210,-1,16,39,88,-1,277,293,294,-1,94,51,66,-1,338,307,312,-1,348,313,307,-1,12,18,8,-1,352,363,359,-1,46,65,31,-1,254,206,271,-1,369,383,367,-1,69,24,17,-1,311,321,360,-1,39,16,15,-1,200,202,245,-1,39,14,28,-1,310,271,313,-1,363,319,341,-1,30,31,18,-1,359,341,325,-1,343,384,371,-1,263,208,253,-1,152,170,55,-1,147,169,124,-1,125,66,42,-1,97,120,103,-1,282,269,341,-1,336,275,318,-1,327,299,259,-1,230,322,350,-1,11,76,34,-1,194,53,34,-1,181,178,155,-1,178,181,188,-1,273,309,328,-1,309,273,268,-1,324,294,293,-1,294,324,309,-1,278,333,279,-1,278,335,333,-1,230,314,322,-1,230,233,314,-1,161,116,100,-1,116,161,168,-1,95,71,63,-1,71,95,96,-1,148,204,223,-1,204,148,135,-1,207,290,296,-1,290,207,205,-1,104,143,92,-1,143,104,121,-1,83,36,78,-1,83,33,36,-1,194,56,53,-1,194,183,56,-1,227,179,183,-1,227,228,179,-1,189,147,125,-1,189,203,147,-1,288,249,279,-1,250,249,288,-1,111,185,118,-1,177,185,111,-1,144,174,152,-1,184,174,144,-1,184,264,233,-1,184,190,264,-1,177,210,258,-1,177,143,210,-1,290,289,316,-1,289,290,274,-1,154,216,204,-1,150,216,154,-1,48,63,44,-1,48,72,63,-1,296,332,304,-1,331,332,296,-1,145,126,107,-1,126,145,153,-1,327,312,299,-1,356,312,327,-1,251,203,189,-1,251,277,203,-1,82,87,59,-1,87,82,107,-1,167,198,156,-1,198,167,196,-1,372,338,356,-1,377,338,372,-1,316,291,320,-1,291,316,289,-1,215,150,139,-1,215,216,150,-1,48,22,26,-1,22,48,44,-1,331,355,332,-1,345,355,331,-1,292,272,276,-1,292,291,272,-1,138,70,65,-1,138,139,70,-1,22,33,8,-1,33,22,36,-1,32,29,25,-1,29,32,38,-1,109,106,102,-1,106,109,113,-1,271,307,313,-1,271,266,307,-1,27,8,33,-1,27,12,8,-1,292,265,287,-1,265,292,276,-1,146,65,81,-1,146,138,65,-1,378,358,368,-1,366,358,378,-1,25,23,13,-1,23,25,29,-1,102,123,122,-1,123,102,106,-1,81,166,146,-1,90,166,81,-1,28,12,27,-1,28,14,12,-1,352,308,349,-1,308,352,317,-1,231,209,212,-1,231,234,209,-1,305,344,339,-1,305,310,344,-1,247,228,227,-1,247,249,228,-1,108,52,91,-1,108,62,52,-1,284,255,280,-1,255,284,260,-1,176,90,112,-1,176,166,90,-1,322,370,376,-1,322,314,370,-1,108,134,115,-1,134,108,129,-1,202,242,245,-1,202,192,242,-1,362,353,354,-1,365,353,362,-1,21,5,20,-1,21,7,5,-1,45,10,43,-1,10,45,15,-1,115,136,114,-1,136,115,134,-1,302,330,337,-1,302,300,330,-1,351,306,311,-1,351,346,306,-1,238,219,220,-1,238,235,219,-1,297,334,329,-1,298,334,297,-1,383,381,379,-1,380,381,383,-1,281,261,285,-1,281,252,261,-1,172,119,171,-1,172,117,119,-1,2,9,3,-1,9,2,6,-1,93,69,101,-1,69,93,75,-1,187,164,193,-1,164,187,163,-1,298,337,334,-1,337,298,302,-1,262,241,252,-1,262,238,241,-1,381,351,360,-1,381,382,351,-1,193,165,200,-1,193,164,165,-1,334,361,357,-1,361,334,337,-1,136,142,131,-1,142,136,137,-1,101,64,114,-1,101,69,64,-1,1,34,4,-1,1,11,34,-1,1,3,11,-1,9,43,10,-1,9,37,43,-1,238,217,241,-1,238,220,217,-1,173,117,172,-1,117,173,110,-1,117,73,68,-1,117,110,73,-1,374,357,361,-1,374,369,357,-1,141,164,163,-1,142,164,141,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmolr3lr_Geo_5_613_normalIndex_2()
		{
			int[] value = {75,24,69,-1,24,75,19,-1,6,37,9,-1,37,6,35,-1,217,171,213,-1,217,172,171,-1,321,285,323,-1,321,281,285,-1,329,357,342,-1,334,357,329,-1,220,176,173,-1,220,219,176,-1,306,283,311,-1,283,306,280,-1,53,4,34,-1,53,7,4,-1,236,300,302,-1,236,245,300,-1,134,137,136,-1,137,134,133,-1,7,17,4,-1,17,7,21,-1,195,207,221,-1,121,207,195,-1,121,205,207,-1,121,182,205,-1,104,182,121,-1,104,159,182,-1,104,148,159,-1,104,135,148,-1,96,135,104,-1,96,120,135,-1,96,103,120,-1,96,99,103,-1,96,98,99,-1,96,95,98,-1,7,56,5,-1,7,53,56,-1,354,330,339,-1,353,330,354,-1,162,192,202,-1,162,160,192,-1,308,280,306,-1,280,308,284,-1,89,152,88,-1,144,152,89,-1,112,58,74,-1,112,90,58,-1,255,231,235,-1,255,260,231,-1,91,129,108,-1,129,91,122,-1,5,50,13,-1,5,56,50,-1,339,358,354,-1,339,344,358,-1,160,197,192,-1,160,157,197,-1,317,284,308,-1,284,317,287,-1,86,144,89,-1,140,144,86,-1,90,46,58,-1,90,81,46,-1,106,157,123,-1,157,106,149,-1,52,29,49,-1,52,23,29,-1,366,347,333,-1,366,378,347,-1,209,138,146,-1,209,218,138,-1,315,287,317,-1,287,315,292,-1,368,384,378,-1,368,377,384,-1,113,149,106,-1,149,113,156,-1,49,38,59,-1,49,29,38,-1,378,343,347,-1,378,384,343,-1,65,41,31,-1,65,70,41,-1,276,248,256,-1,276,272,248,-1,345,359,355,-1,340,359,345,-1,332,325,303,-1,355,325,332,-1,41,48,26,-1,41,61,48,-1,248,216,215,-1,248,246,216,-1,345,316,320,-1,345,331,316,-1,371,377,372,-1,384,377,371,-1,132,156,113,-1,156,132,167,-1,60,59,38,-1,59,60,82,-1,356,326,372,-1,356,327,326,-1,178,196,167,-1,196,178,208,-1,116,107,82,-1,107,116,145,-1,303,304,332,-1,303,286,304,-1,61,72,48,-1,61,79,72,-1,246,204,216,-1,246,223,204,-1,290,331,296,-1,316,331,290,-1,243,229,224,-1,229,243,244,-1,190,282,264,-1,190,191,282,-1,170,174,199,-1,174,170,152,-1,130,185,191,-1,185,130,118,-1,279,247,278,-1,249,247,279,-1,211,125,105,-1,211,189,125,-1,229,183,194,-1,229,227,183,-1,151,42,47,-1,151,105,42,-1,28,88,39,-1,28,89,88,-1,54,78,36,-1,54,77,78,-1,210,121,195,-1,210,143,121,-1,205,274,290,-1,274,205,182,-1,97,99,79,-1,97,103,99,-1,158,100,94,-1,100,158,161,-1,168,145,116,-1,145,168,175,-1,233,319,314,-1,233,264,319,-1,275,335,278,-1,275,336,335,-1,277,268,225,-1,277,294,268,-1,267,327,259,-1,326,327,267,-1,188,208,178,-1,208,188,201,-1,224,194,76,-1,224,229,194,-1,155,180,181,-1,155,153,180,-1,253,226,299,-1,253,214,226,-1,273,326,267,-1,328,326,273,-1,343,293,295,-1,293,343,324,-1,199,224,170,-1,199,243,224,-1,203,169,147,-1,203,186,169,-1,72,95,63,-1,72,98,95,-1,159,223,239,-1,223,159,148,-1,296,221,207,-1,296,304,221,-1,96,92,80,-1,92,96,104,-1,33,86,27,-1,33,83,86,-1,50,183,179,-1,183,50,56,-1,125,124,66,-1,125,147,124,-1,228,151,179,-1,228,222,151,-1,288,257,250,-1,257,288,295,-1,92,177,111,-1,143,177,92,-1,140,184,144,-1,190,184,140,-1,174,233,230,-1,174,184,233,-1,185,258,269,-1,185,177,258,-1,336,374,365,-1,336,373,374,-1,274,270,289,-1,270,274,239,-1,97,150,154,-1,84,150,97,-1,63,54,44,-1,54,63,71,-1,60,94,100,-1,60,51,94,-1,153,132,126,-1,132,153,155,-1,253,312,263,-1,312,253,299,-1,371,309,324,-1,371,328,309,-1,107,109,87,-1,109,107,126,-1,196,266,198,-1,266,196,263,-1,257,189,211,-1,257,251,189,-1,291,270,272,-1,291,289,270,-1,139,84,70,-1,139,150,84,-1,36,44,54,-1,36,22,44,-1,78,130,83,-1,118,130,78,-1,320,292,315,-1,292,320,291,-1,218,139,138,-1,218,215,139,-1,26,8,18,-1,8,26,22,-1,42,25,47,-1,25,42,32,-1,87,102,85,-1,102,87,109,-1,206,266,271,-1,206,198,266,-1,83,140,86,-1,130,140,83,-1,276,234,265,-1,234,276,256,-1,344,368,358,-1,344,348,368,-1,13,47,25,-1,13,50,47,-1,85,122,91,-1,122,85,102,-1,212,146,166,-1,212,209,146,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmolr3lr_Geo_5_613_normalIndex_3()
		{
			int[] value = {30,14,40,-1,14,30,12,-1,370,352,349,-1,370,363,352,-1,265,231,260,-1,231,265,234,-1,242,310,305,-1,242,254,310,-1,333,362,366,-1,335,362,333,-1,62,23,52,-1,62,20,23,-1,123,160,128,-1,160,123,157,-1,219,166,176,-1,219,212,166,-1,45,14,15,-1,45,40,14,-1,349,376,370,-1,346,376,349,-1,129,133,134,-1,133,129,128,-1,245,305,300,-1,245,242,305,-1,335,365,362,-1,336,365,335,-1,67,20,62,-1,67,21,20,-1,73,45,43,-1,73,74,45,-1,67,114,64,-1,114,67,115,-1,165,202,200,-1,165,162,202,-1,337,353,361,-1,337,330,353,-1,382,346,351,-1,382,376,346,-1,255,238,262,-1,238,255,235,-1,110,74,73,-1,110,112,74,-1,379,360,364,-1,381,360,379,-1,252,240,261,-1,252,241,240,-1,119,68,57,-1,117,68,119,-1,0,3,1,-1,3,0,2,-1,101,127,93,-1,101,131,127,-1,193,232,187,-1,193,237,232,-1,164,137,165,-1,164,142,137,-1,381,375,350,-1,381,380,375,-1,267,268,273,-1,259,268,267,-1,259,225,268,-1,226,225,259,-1,214,225,226,-1,201,225,214,-1,188,225,201,-1,188,186,225,-1,181,186,188,-1,180,186,181,-1,180,169,186,-1,175,169,180,-1,168,169,175,-1,161,169,168,-1,161,158,169,-1,217,173,172,-1,217,220,173,-1,283,252,281,-1,252,283,262,-1,10,3,9,-1,10,11,3,-1,10,16,11,-1,24,4,17,-1,24,1,4,-1,373,369,374,-1,375,369,373,-1,369,375,380,-1,200,237,193,-1,237,200,236,-1,237,302,298,-1,237,236,302,-1,114,131,101,-1,131,114,136,-1,311,281,321,-1,311,283,281,-1,43,68,73,-1,37,68,43,-1,232,298,297,-1,237,298,232,-1,131,141,127,-1,131,142,141,-1,19,1,24,-1,1,19,0,-1,35,68,37,-1,68,35,57,-1,241,213,240,-1,241,217,213,-1,364,321,323,-1,360,321,364,-1,369,342,357,-1,369,367,342,-1,173,112,110,-1,173,176,112,-1,280,262,283,-1,262,280,255,-1,365,361,353,-1,374,361,365,-1,133,165,137,-1,165,133,162,-1,21,64,17,-1,64,21,67,-1,62,115,67,-1,115,62,108,-1,244,227,229,-1,244,247,227,-1,339,300,305,-1,330,300,339,-1,128,162,133,-1,162,128,160,-1,346,308,306,-1,346,349,308,-1,74,40,45,-1,74,58,40,-1,235,212,219,-1,235,231,212,-1,122,128,129,-1,128,122,123,-1,13,20,5,-1,20,13,23,-1,366,354,358,-1,362,354,366,-1,192,254,242,-1,192,197,254,-1,287,260,284,-1,260,287,265,-1,314,363,370,-1,314,319,363,-1,58,30,40,-1,58,46,30,-1,149,197,157,-1,197,149,206,-1,91,49,85,-1,91,52,49,-1,249,222,228,-1,249,250,222,-1,310,348,344,-1,310,313,348,-1,234,218,209,-1,234,256,218,-1,317,340,315,-1,317,352,340,-1,348,377,368,-1,348,338,377,-1,156,206,149,-1,206,156,198,-1,59,85,49,-1,85,59,87,-1,250,211,222,-1,250,257,211,-1,41,18,31,-1,18,41,26,-1,256,215,218,-1,256,248,215,-1,320,340,345,-1,315,340,320,-1,77,118,78,-1,111,118,77,-1,70,61,41,-1,70,84,61,-1,272,246,248,-1,272,270,246,-1,32,66,51,-1,32,42,66,-1,263,307,266,-1,307,263,312,-1,126,113,109,-1,113,126,132,-1,38,51,60,-1,38,32,51,-1,328,372,326,-1,371,372,328,-1,155,167,132,-1,167,155,178,-1,82,100,116,-1,82,60,100,-1,80,111,77,-1,92,111,80,-1,84,79,61,-1,84,97,79,-1,223,270,239,-1,246,270,223,-1,376,350,322,-1,350,376,382,-1,191,269,282,-1,191,185,269,-1,275,243,318,-1,243,275,244,-1,130,190,140,-1,191,190,130,-1,278,244,275,-1,247,244,278,-1,295,251,257,-1,251,295,293,-1,222,105,151,-1,222,211,105,-1,301,243,199,-1,243,301,318,-1,179,47,50,-1,179,151,47,-1,89,27,86,-1,28,27,89,-1,77,71,80,-1,54,71,77,-1,286,221,304,-1,286,195,221,-1,182,239,274,-1,239,182,159,-1,79,98,72,-1,79,99,98,-1,124,158,94,-1,124,169,158,-1,76,170,224,-1,76,55,170,-1,269,303,325,-1,269,258,303,-1,347,295,288,-1,295,347,343,-1,225,203,277,-1,203,225,186,-1,208,214,253,-1,208,201,214,-1,175,153,145,-1,153,175,180,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal2_Geo_5_619_coordIndex_2()
		{
			int[] value = {182,82,126,-1,72,82,182,-1,125,14,195,-1,125,15,14,-1,123,87,124,-1,123,91,87,-1,92,51,121,-1,92,93,51,-1,33,167,39,-1,23,167,33,-1,29,177,174,-1,29,30,177,-1,26,43,120,-1,26,27,43,-1,25,120,115,-1,25,26,120,-1,54,202,207,-1,54,75,202,-1,151,152,208,-1,152,151,48,-1,178,208,152,-1,178,209,208,-1,209,179,210,-1,179,209,178,-1,210,145,42,-1,179,145,210,-1,78,60,111,-1,78,131,60,-1,109,3,108,-1,109,37,3,-1,45,153,46,-1,211,153,45,-1,168,212,213,-1,168,169,212,-1,45,192,211,-1,147,192,45,-1,191,209,190,-1,209,191,208,-1,188,42,41,-1,188,210,42,-1,212,189,213,-1,212,187,189,-1,139,73,56,-1,139,196,73,-1,58,131,172,-1,131,58,60,-1,199,138,173,-1,138,199,137,-1,187,211,192,-1,187,212,211,-1,176,213,189,-1,213,176,175,-1,190,210,188,-1,209,210,190,-1,208,149,151,-1,208,191,149,-1,213,36,168,-1,213,175,36,-1,211,169,153,-1,212,169,211,-1,2,4,0,-1,4,2,156,-1,119,117,118,-1,119,55,117,-1,96,207,202,-1,207,96,97,-1,38,200,155,-1,186,200,38,-1,43,28,40,-1,43,27,28,-1,30,34,177,-1,31,34,30,-1,85,17,86,-1,85,18,17,-1,67,184,68,-1,184,67,70,-1,166,135,134,-1,166,53,135,-1,205,144,180,-1,205,204,144,-1,79,142,143,-1,206,142,79,-1,141,154,140,-1,141,203,154,-1,130,185,20,-1,130,183,185,-1,171,197,170,-1,171,204,197,-1,198,206,74,-1,198,205,206,-1,203,80,154,-1,80,203,201,-1,77,131,78,-1,77,132,131,-1,74,196,198,-1,73,196,74,-1,202,201,96,-1,202,80,201,-1,129,155,200,-1,129,19,155,-1,56,75,54,-1,56,73,75,-1,79,74,206,-1,74,79,76,-1,193,200,94,-1,193,129,200,-1,137,196,139,-1,196,137,199,-1,183,194,181,-1,194,183,130,-1,184,72,182,-1,184,70,72,-1,47,65,44,-1,101,65,47,-1,63,148,150,-1,63,104,148,-1,146,63,150,-1,63,146,64,-1,192,190,187,-1,191,190,192,-1,189,41,176,-1,188,41,189,-1,97,117,207,-1,97,114,117,-1,115,186,167,-1,186,115,95,-1,4,108,3,-1,4,112,108,-1,111,61,99,-1,60,61,111,-1,55,207,117,-1,207,55,54,-1,10,165,128,-1,195,165,10,-1,183,126,185,-1,183,182,126,-1,68,181,141,-1,68,184,181,-1,47,59,106,-1,47,107,59,-1,37,39,3,-1,35,39,37,-1,179,113,145,-1,113,179,116,-1,40,176,41,-1,174,176,40,-1,175,34,36,-1,175,177,34,-1,58,106,59,-1,106,58,138,-1,173,136,170,-1,136,173,172,-1,52,135,53,-1,171,135,52,-1,169,109,98,-1,169,168,109,-1,35,31,32,-1,35,34,31,-1,35,33,39,-1,35,32,33,-1,16,69,17,-1,13,69,16,-1,162,195,14,-1,162,165,195,-1,77,8,164,-1,77,6,8,-1,162,163,164,-1,162,161,163,-1,17,140,160,-1,140,17,69,-1,11,128,158,-1,11,10,128,-1,8,128,165,-1,128,8,5,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmphal2_Geo_5_619_normalIndex_1()
		{
			int[] value = {21,6,12,-1,65,21,42,-1,30,53,61,-1,30,43,53,-1,170,121,104,-1,170,163,121,-1,177,171,183,-1,195,201,188,-1,10,17,8,-1,17,18,8,-1,52,36,55,-1,38,36,32,-1,41,36,33,-1,37,36,39,-1,35,36,48,-1,29,54,45,-1,54,87,45,-1,20,65,46,-1,20,21,65,-1,13,9,40,-1,40,34,13,-1,128,63,106,-1,106,173,128,-1,139,186,162,-1,208,187,147,-1,136,134,168,-1,134,176,168,-1,118,138,91,-1,138,93,91,-1,189,181,180,-1,191,189,180,-1,156,157,159,-1,159,174,156,-1,151,164,150,-1,154,145,135,-1,145,131,135,-1,56,73,53,-1,131,148,116,-1,148,132,116,-1,157,164,151,-1,155,164,170,-1,183,164,172,-1,177,172,156,-1,211,175,207,-1,211,199,175,-1,195,198,204,-1,175,200,188,-1,206,200,199,-1,202,200,209,-1,198,200,204,-1,60,71,95,-1,71,99,95,-1,97,88,93,-1,93,96,97,-1,191,190,189,-1,186,194,192,-1,192,176,186,-1,181,189,182,-1,194,182,189,-1,184,189,179,-1,179,190,173,-1,133,93,138,-1,133,96,93,-1,97,85,88,-1,97,100,85,-1,76,73,77,-1,77,62,76,-1,107,120,89,-1,107,129,120,-1,129,117,120,-1,129,124,117,-1,127,176,134,-1,127,162,176,-1,89,66,107,-1,188,200,198,-1,204,200,202,-1,209,200,206,-1,199,200,175,-1,188,198,195,-1,204,193,185,-1,204,202,193,-1,208,206,212,-1,208,209,206,-1,213,199,211,-1,172,164,156,-1,183,172,177,-1,169,164,183,-1,155,104,101,-1,155,170,104,-1,150,164,155,-1,30,23,59,-1,25,28,10,-1,28,17,10,-1,82,68,75,-1,163,164,169,-1,73,76,61,-1,61,53,73,-1,84,105,94,-1,94,75,84,-1,156,164,157,-1,190,179,189,-1,167,184,144,-1,184,179,144,-1,168,176,178,-1,176,192,178,-1,174,159,166,-1,159,142,166,-1,210,211,207,-1,207,205,210,-1,187,208,212,-1,212,197,187,-1,176,162,186,-1,86,107,66,-1,126,63,128,-1,126,57,63,-1,158,81,140,-1,158,114,81,-1,110,139,162,-1,162,127,110,-1,133,106,74,-1,74,96,133,-1,48,36,52,-1,39,36,35,-1,33,36,37,-1,32,36,41,-1,55,36,38,-1,173,106,133,-1,116,132,123,-1,11,21,20,-1,11,6,21,-1,51,44,76,-1,44,61,76,-1,62,42,51,-1,51,76,62,-1,204,185,195,-1,156,174,177,-1,164,163,170,-1,30,61,44,-1,23,47,59,-1,47,23,18,-1,16,51,12,-1,16,44,51,-1,10,6,11,-1,6,10,8,-1,166,132,196,-1,123,132,166,-1,171,115,102,-1,171,185,115,-1,56,67,68,-1,58,67,56,-1,58,90,102,-1,58,43,90,-1,177,185,171,-1,177,195,185,-1,147,193,208,-1,147,122,193,-1,50,55,89,-1,50,52,55,-1,189,192,194,-1,189,184,192,-1,87,83,45,-1,100,83,87,-1,97,74,80,-1,96,74,97,-1,105,125,94,-1,105,137,125,-1,98,144,118,-1,144,98,130,-1,2,1,0,-1,7,1,2,-1,124,110,127,-1,124,103,110,-1,158,139,114,-1,186,139,158,-1,126,81,57,-1,126,140,81,-1,34,86,66,-1,40,86,34,-1,103,129,112,-1,103,124,129,-1,213,210,203,-1,213,211,210,-1,207,196,205,-1,207,201,196,-1,109,119,72,-1,119,109,141,-1,101,47,49,-1,101,104,47,-1,197,213,203,-1,197,212,213,-1,122,185,193,-1,115,185,122,-1,184,178,192,-1,178,184,167,-1,62,88,85,-1,77,88,62,-1,31,46,50,-1,20,46,31,-1,120,71,89,-1,71,120,99,-1,13,33,2,-1,13,41,33,-1,4,24,5,-1,26,24,4,-1,57,27,3,-1,81,27,57,-1,182,186,158,-1,182,194,186,-1,128,180,126,-1,191,180,128,-1,28,64,79,-1,64,28,25,-1,75,98,82,-1,75,94,98,-1,44,23,30,-1,44,16,23,-1,163,143,121,-1,163,169,143,-1,160,146,149,-1,160,152,146,-1,60,31,71,-1,60,22,31,-1,8,12,6,-1,12,8,16,-1,95,64,60,-1,95,92,64,-1,135,116,113,-1,135,131,116,-1,152,125,146,-1,125,152,130,-1,16,18,23,-1,8,18,16,-1,92,79,64,-1,92,108,79,-1,149,153,165,-1,153,149,146,-1,75,67,84,-1,68,67,75,-1,18,49,47,-1,18,17,49,-1,109,108,142,-1,108,109,79,-1,132,205,196,-1,148,205,132,-1,161,203,210,-1,161,165,203,-1,197,137,187,-1,197,153,137,-1,122,67,115,-1,122,84,67,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal2_Geo_5_619_normalIndex_2()
		{
			int[] value = {119,155,101,-1,150,155,119,-1,169,171,143,-1,169,183,171,-1,212,199,213,-1,212,206,199,-1,202,208,193,-1,202,209,208,-1,48,50,46,-1,52,50,48,-1,33,7,2,-1,33,37,7,-1,38,34,66,-1,38,32,34,-1,55,66,89,-1,55,38,66,-1,136,113,111,-1,136,135,113,-1,114,110,78,-1,110,114,139,-1,103,78,110,-1,103,69,78,-1,69,112,70,-1,112,69,103,-1,70,86,40,-1,112,86,70,-1,73,91,77,-1,73,82,91,-1,100,65,85,-1,100,87,65,-1,63,74,106,-1,14,74,63,-1,83,15,19,-1,83,80,15,-1,63,3,14,-1,57,3,63,-1,27,69,26,-1,69,27,78,-1,24,40,9,-1,24,70,40,-1,15,5,19,-1,15,4,5,-1,178,154,168,-1,178,160,154,-1,118,82,98,-1,82,118,91,-1,152,144,130,-1,144,152,167,-1,4,14,3,-1,4,15,14,-1,0,19,5,-1,19,0,1,-1,26,70,24,-1,69,70,26,-1,78,81,114,-1,78,27,81,-1,19,45,83,-1,19,1,45,-1,14,80,74,-1,15,80,14,-1,12,42,21,-1,42,12,51,-1,127,117,124,-1,127,134,117,-1,95,111,113,-1,111,95,99,-1,20,22,11,-1,31,22,20,-1,34,41,13,-1,34,32,41,-1,37,29,7,-1,39,29,37,-1,175,201,207,-1,175,188,201,-1,157,141,159,-1,141,157,151,-1,122,105,84,-1,122,147,105,-1,165,197,203,-1,165,153,197,-1,148,210,205,-1,161,210,148,-1,142,123,166,-1,142,108,123,-1,28,49,17,-1,28,72,49,-1,137,146,125,-1,137,153,146,-1,149,161,145,-1,149,165,161,-1,108,116,123,-1,116,108,92,-1,56,82,73,-1,56,68,82,-1,145,160,149,-1,154,160,145,-1,113,92,95,-1,113,116,92,-1,25,11,22,-1,25,10,11,-1,168,135,136,-1,168,154,135,-1,148,145,161,-1,145,148,131,-1,64,22,60,-1,64,25,22,-1,167,160,178,-1,160,167,152,-1,72,79,109,-1,79,72,28,-1,141,150,119,-1,141,151,150,-1,173,191,128,-1,190,191,173,-1,181,158,140,-1,181,182,158,-1,126,181,140,-1,181,126,180,-1,3,26,4,-1,27,26,3,-1,5,9,0,-1,24,9,5,-1,99,117,111,-1,99,120,117,-1,89,31,50,-1,31,89,71,-1,42,85,65,-1,42,62,85,-1,77,93,88,-1,91,93,77,-1,134,111,117,-1,111,134,136,-1,121,90,59,-1,143,90,121,-1,72,101,49,-1,72,119,101,-1,159,109,142,-1,159,141,109,-1,173,138,179,-1,173,133,138,-1,87,46,65,-1,54,46,87,-1,112,107,86,-1,107,112,129,-1,13,0,9,-1,2,0,13,-1,1,29,45,-1,1,7,29,-1,118,179,138,-1,179,118,144,-1,130,94,125,-1,94,130,98,-1,187,105,147,-1,137,105,187,-1,80,100,97,-1,80,83,100,-1,54,39,35,-1,54,29,39,-1,54,48,46,-1,54,35,48,-1,195,174,201,-1,177,174,195,-1,102,143,171,-1,102,90,143,-1,56,43,58,-1,56,53,43,-1,102,67,58,-1,102,115,67,-1,201,166,196,-1,166,201,174,-1,104,59,47,-1,104,121,59,-1,43,59,90,-1,59,43,30,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmphal3_Geo_5_625_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,7,10,8,-1,11,12,13,-1,12,14,13,-1,15,16,17,-1,15,18,16,-1,19,20,21,-1,21,22,19,-1,23,24,25,-1,26,24,27,-1,28,24,29,-1,30,24,31,-1,25,24,32,-1,33,34,35,-1,36,34,37,-1,38,34,39,-1,40,34,41,-1,42,34,33,-1,43,44,45,-1,44,46,45,-1,47,48,49,-1,50,51,52,-1,52,53,50,-1,54,55,56,-1,55,57,56,-1,58,59,60,-1,59,61,60,-1,62,63,64,-1,63,65,64,-1,66,67,51,-1,68,47,69,-1,47,70,69,-1,50,43,51,-1,43,45,51,-1,71,72,73,-1,72,74,73,-1,75,56,76,-1,77,78,79,-1,77,80,78,-1,81,82,83,-1,84,85,86,-1,86,87,84,-1,69,16,88,-1,69,17,16,-1,63,89,90,-1,91,92,93,-1,94,95,96,-1,27,51,26,-1,27,66,51,-1,57,55,58,-1,97,98,99,-1,99,100,97,-1,67,101,102,-1,67,103,101,-1,104,105,106,-1,107,108,109,-1,48,82,81,-1,81,49,48,-1,81,110,111,-1,81,112,110,-1,72,113,75,-1,75,113,114,-1,115,116,117,-1,111,110,53,-1,48,47,68,-1,118,52,119,-1,119,120,118,-1,102,119,67,-1,121,122,123,-1,97,124,125,-1,97,100,124,-1,22,126,127,-1,128,129,130,-1,131,132,133,-1,132,134,133,-1,135,136,137,-1,136,138,137,-1,139,140,141,-1,140,142,141,-1,88,143,69,-1,115,117,144,-1,112,81,83,-1,116,145,122,-1,145,146,122,-1,147,141,148,-1,147,121,141,-1,149,150,151,-1,150,152,151,-1,147,117,121,-1,139,121,123,-1,139,141,121,-1,51,67,52,-1,67,119,52,-1,53,110,50,-1,49,70,47,-1,49,153,70,-1,41,34,42,-1,39,34,40,-1,37,34,38,-1,35,34,36,-1,32,24,154,-1,31,24,155,-1,29,24,30,-1,27,24,28,-1,154,24,26,-1,155,24,23,-1,96,156,157,-1,96,95,156,-1,158,159,160,-1,161,162,163,-1,162,164,163,-1,165,90,166,-1,166,167,165,-1,168,169,109,-1,168,170,169,-1,171,9,172,-1,171,7,9,-1,173,174,175,-1,173,176,174,-1,128,130,157,-1,177,178,179,-1,180,166,20,-1,180,167,166,-1,181,182,183,-1,182,181,80,-1,78,184,185,-1,78,186,184,-1,187,140,15,-1,187,188,140,-1,172,189,142,-1,172,9,189,-1,99,8,190,-1,191,8,99,-1,124,192,5,-1,100,192,124,-1,193,178,194,-1,179,178,193,-1,195,196,197,-1,196,195,89,-1,197,179,193,-1,197,196,179,-1,166,89,195,-1,89,166,90,-1,126,198,127,-1,198,126,130,-1,199,200,201,-1,199,202,200,-1,174,199,203,-1,176,199,174,-1,204,175,205,-1,204,173,175,-1,192,206,207,-1,206,192,190,-1,208,172,188,-1,208,171,172,-1,209,169,170,-1,209,187,169,-1,104,168,109,-1,210,168,104,-1,211,165,167,-1,212,165,211,-1,213,12,11,-1,12,213,214,-1,215,162,161,-1,162,215,216,-1,163,12,161,-1,12,163,14,-1,217,209,218,-1,209,217,208,-1,131,158,219,-1,131,159,158,-1,0,92,1,-1,93,92,0,-1,94,126,220,-1,94,96,126,-1,221,222,223,-1,222,221,224,-1,225,226,227,-1,226,225,228,-1,223,229,230,-1,229,223,222,-1,42,231,143,-1,42,33,231,-1,2,6,3,-1,1,6,2,-1,232,233,234,-1,233,232,219,-1,153,107,70,-1,153,108,107,-1,119,105,120,-1,119,102,105,-1,123,38,139,-1,38,123,37,-1,235,155,76,-1,235,31,155,-1,29,236,237,-1,30,236,29,-1,238,133,239,-1,238,240,133,-1,219,241,233,-1,158,241,219,-1,242,156,243,-1,244,156,242,-1,95,13,245,-1,95,194,13,-1,20,246,180,-1,20,19,246,-1,91,135,92,-1,91,136,135,-1,61,205,175,-1,61,59,205,-1,236,57,58,-1,57,236,235,-1,7,247,248,-1,7,171,247,-1,248,149,151,-1,248,247,149,-1,144,147,249,-1,144,117,147,-1,85,250,251,-1,250,85,252,-1,253,114,86,-1,253,54,114,-1,68,143,229,-1,143,68,69,-1,52,111,53,-1,118,111,52,-1,2,186,0,-1,184,186,2,-1,55,124,254,-1,124,55,125,-1,255,216,215,-1,256,216,255,-1,257,258,259,-1,257,260,258,-1,138,261,262,-1,138,136,261,-1,263,0,264,-1,93,0,263,-1,224,48,222,-1,48,224,82,-1,265,266,267,-1,266,265,227,-1,268,269,115,-1,269,268,270,-1,54,125,55,-1,54,253,125,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal3_Geo_5_625_coordIndex_2()
		{
			int[] value = {148,249,147,-1,271,249,148,-1,272,168,273,-1,170,168,272,-1,76,57,235,-1,76,56,57,-1,74,25,73,-1,25,74,23,-1,61,174,101,-1,175,174,61,-1,106,102,203,-1,106,105,102,-1,127,240,238,-1,198,240,127,-1,134,264,274,-1,134,263,264,-1,211,80,77,-1,80,211,182,-1,84,270,268,-1,84,267,270,-1,251,98,97,-1,251,250,98,-1,176,135,137,-1,176,173,135,-1,184,3,207,-1,3,184,2,-1,10,248,275,-1,10,7,248,-1,218,170,272,-1,170,218,209,-1,210,106,201,-1,210,104,106,-1,199,137,202,-1,137,199,176,-1,202,138,260,-1,138,202,137,-1,275,151,79,-1,248,151,275,-1,164,276,277,-1,164,273,276,-1,259,278,279,-1,278,259,258,-1,232,280,132,-1,280,232,261,-1,183,264,181,-1,183,274,264,-1,255,149,256,-1,150,149,255,-1,14,281,282,-1,14,163,281,-1,279,245,282,-1,245,279,243,-1,278,233,242,-1,278,234,233,-1,274,246,239,-1,274,183,246,-1,283,65,284,-1,283,64,65,-1,273,162,272,-1,164,162,273,-1,241,128,244,-1,241,129,128,-1,198,159,240,-1,160,159,198,-1,89,62,196,-1,89,63,62,-1,160,130,129,-1,160,198,130,-1,21,197,220,-1,21,195,197,-1,285,29,237,-1,29,285,28,-1,25,46,73,-1,32,46,25,-1,60,101,103,-1,60,61,101,-1,271,189,191,-1,271,148,189,-1,36,123,122,-1,37,123,36,-1,33,146,231,-1,146,33,35,-1,40,88,16,-1,40,41,88,-1,286,118,120,-1,118,286,287,-1,70,17,69,-1,70,107,17,-1,113,86,114,-1,113,87,86,-1,145,115,269,-1,145,116,115,-1,227,288,225,-1,227,265,288,-1,43,110,228,-1,43,50,110,-1,82,289,83,-1,82,224,289,-1,85,268,252,-1,268,85,84,-1,112,228,110,-1,228,112,226,-1,68,222,48,-1,68,229,222,-1,225,71,44,-1,71,225,288,-1,269,230,145,-1,230,269,223,-1,265,113,288,-1,113,265,87,-1,287,108,153,-1,287,286,108,-1,109,286,104,-1,286,109,108,-1,18,40,16,-1,39,40,18,-1,41,143,88,-1,41,42,143,-1,146,36,122,-1,36,146,35,-1,139,39,18,-1,39,139,38,-1,254,58,55,-1,254,59,58,-1,30,235,236,-1,30,31,235,-1,154,51,45,-1,26,51,154,-1,66,28,285,-1,28,66,27,-1,220,193,94,-1,220,197,193,-1,238,22,127,-1,238,19,22,-1,158,129,241,-1,129,158,160,-1,244,157,156,-1,128,157,244,-1,94,194,95,-1,193,194,94,-1,282,13,14,-1,13,282,245,-1,212,65,165,-1,212,284,65,-1,279,242,243,-1,279,278,242,-1,282,259,279,-1,282,281,259,-1,215,283,255,-1,214,283,215,-1,77,212,211,-1,212,77,152,-1,132,263,134,-1,280,263,132,-1,258,234,278,-1,234,258,262,-1,257,281,277,-1,259,281,257,-1,247,256,149,-1,247,217,256,-1,79,185,275,-1,79,78,185,-1,257,202,260,-1,257,200,202,-1,203,201,106,-1,201,203,199,-1,273,210,276,-1,168,210,273,-1,217,171,208,-1,171,217,247,-1,206,275,185,-1,206,10,275,-1,1,204,6,-1,204,1,92,-1,253,97,125,-1,97,253,251,-1,267,221,270,-1,267,266,221,-1,18,140,139,-1,18,15,140,-1,183,180,246,-1,183,182,180,-1,283,150,255,-1,283,284,150,-1,274,133,134,-1,133,274,239,-1,101,203,102,-1,174,203,101,-1,288,72,71,-1,288,113,72,-1,214,64,283,-1,64,214,213,-1,155,74,76,-1,23,74,155,-1,271,250,249,-1,271,98,250,-1,144,268,115,-1,144,252,268,-1,270,223,269,-1,223,270,221,-1,267,87,265,-1,267,84,87,-1,83,226,112,-1,83,289,226,-1,79,152,77,-1,79,151,152,-1,181,0,186,-1,0,181,264,-1,91,263,280,-1,91,93,263,-1,260,262,258,-1,260,138,262,-1,163,277,281,-1,164,277,163,-1,277,200,257,-1,276,200,277,-1,98,191,99,-1,271,191,98,-1,122,117,116,-1,121,117,122,-1,231,145,230,-1,146,145,231,-1,81,118,287,-1,111,118,81,-1,251,86,85,-1,251,253,86,-1,249,252,144,-1,249,250,252,-1,74,75,76,-1,72,75,74,-1,73,44,71,-1,44,73,46,-1,153,81,287,-1,49,81,153,-1,237,103,285,-1,103,237,60,-1,142,148,141,-1,142,189,148,-1,67,285,103,-1,67,66,285,-1,173,92,135,-1,173,204,92,-1,136,280,261,-1,91,280,136,-1,63,165,65,-1,63,90,165,-1,213,62,64,-1,177,62,213,-1,245,156,95,-1,156,245,243,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmphal3_Geo_5_625_coordIndex_3()
		{
			int[] value = {233,244,242,-1,241,244,233,-1,240,131,133,-1,240,159,131,-1,19,239,246,-1,19,238,239,-1,58,237,236,-1,58,60,237,-1,114,56,75,-1,114,54,56,-1,286,105,104,-1,286,120,105,-1,262,232,234,-1,262,261,232,-1,152,284,212,-1,152,150,284,-1,207,185,184,-1,207,206,185,-1,230,143,231,-1,143,230,229,-1,289,227,226,-1,289,266,227,-1,44,228,225,-1,228,44,43,-1,266,224,221,-1,224,266,289,-1,46,154,45,-1,46,32,154,-1,22,220,126,-1,21,220,22,-1,219,132,131,-1,132,219,232,-1,256,218,216,-1,218,256,217,-1,194,11,13,-1,178,11,194,-1,272,216,218,-1,272,162,216,-1,214,161,12,-1,161,214,215,-1,11,177,213,-1,11,178,177,-1,187,208,188,-1,209,208,187,-1,190,10,206,-1,10,190,8,-1,207,5,192,-1,207,3,5,-1,205,6,204,-1,6,205,4,-1,201,276,210,-1,201,200,276,-1,96,130,126,-1,130,96,157,-1,177,196,62,-1,196,177,179,-1,4,59,254,-1,205,59,4,-1,5,254,124,-1,5,4,254,-1,100,190,192,-1,99,190,100,-1,9,191,189,-1,9,8,191,-1,140,172,142,-1,140,188,172,-1,169,15,17,-1,169,187,15,-1,80,186,78,-1,80,181,186,-1,20,195,21,-1,20,166,195,-1,182,167,180,-1,182,211,167,-1,107,169,17,-1,109,169,107,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmphal3_Geo_5_625_normalIndex_1()
		{
			int[] value = {70,87,95,-1,105,124,104,-1,105,111,124,-1,54,135,127,-1,54,73,135,-1,234,154,248,-1,154,168,248,-1,137,140,167,-1,137,116,140,-1,260,256,279,-1,279,285,260,-1,192,179,193,-1,186,179,181,-1,187,179,188,-1,190,179,191,-1,193,179,176,-1,47,60,48,-1,51,60,68,-1,85,60,97,-1,78,60,64,-1,52,60,47,-1,18,14,101,-1,14,120,101,-1,92,34,134,-1,43,149,201,-1,201,122,43,-1,228,240,226,-1,240,249,226,-1,233,182,241,-1,182,235,241,-1,250,239,166,-1,239,146,166,-1,209,236,149,-1,35,92,77,-1,92,159,77,-1,43,18,149,-1,18,101,149,-1,11,37,66,-1,37,148,66,-1,108,226,196,-1,58,80,74,-1,58,63,80,-1,138,32,25,-1,22,56,89,-1,89,24,22,-1,77,140,53,-1,77,167,140,-1,239,266,251,-1,121,117,88,-1,264,284,268,-1,181,149,186,-1,181,209,149,-1,249,240,233,-1,217,238,150,-1,150,126,217,-1,236,247,244,-1,236,242,247,-1,158,194,178,-1,177,206,153,-1,34,32,138,-1,138,134,34,-1,138,29,141,-1,138,20,29,-1,37,27,108,-1,108,27,99,-1,30,26,96,-1,141,29,122,-1,34,92,35,-1,224,201,221,-1,221,212,224,-1,244,221,236,-1,112,38,100,-1,217,136,227,-1,217,126,136,-1,285,280,287,-1,272,283,281,-1,246,160,219,-1,160,115,219,-1,161,156,183,-1,156,175,183,-1,130,123,155,-1,123,133,155,-1,53,33,77,-1,30,96,79,-1,20,138,25,-1,26,3,38,-1,3,21,38,-1,189,155,197,-1,189,112,155,-1,36,39,45,-1,39,49,45,-1,189,96,112,-1,130,112,100,-1,130,155,112,-1,149,236,201,-1,236,221,201,-1,122,29,43,-1,134,159,92,-1,134,213,159,-1,64,60,52,-1,97,60,78,-1,68,60,85,-1,48,60,51,-1,176,179,195,-1,191,179,198,-1,188,179,190,-1,181,179,187,-1,195,179,186,-1,198,179,192,-1,268,286,267,-1,268,284,286,-1,278,277,289,-1,113,103,142,-1,103,129,142,-1,147,251,257,-1,257,174,147,-1,132,139,153,-1,132,106,139,-1,50,127,110,-1,50,54,127,-1,173,231,200,-1,173,208,231,-1,272,281,267,-1,252,255,258,-1,165,257,256,-1,165,174,257,-1,61,91,81,-1,91,61,63,-1,80,82,83,-1,80,69,82,-1,114,123,137,-1,114,109,123,-1,110,157,133,-1,110,127,157,-1,150,135,119,-1,164,135,150,-1,136,107,104,-1,126,107,136,-1,261,255,270,-1,258,255,261,-1,273,265,271,-1,265,273,266,-1,271,258,261,-1,271,265,258,-1,257,266,273,-1,266,257,251,-1,280,288,287,-1,288,280,281,-1,205,170,171,-1,205,184,170,-1,231,205,225,-1,208,205,231,-1,128,200,152,-1,128,173,200,-1,107,84,93,-1,84,107,119,-1,59,110,109,-1,59,50,110,-1,71,139,106,-1,71,114,139,-1,158,132,153,-1,145,132,158,-1,86,147,174,-1,72,147,86,-1,199,154,234,-1,154,199,125,-1,65,103,113,-1,103,65,55,-1,142,154,113,-1,154,142,168,-1,46,71,57,-1,71,46,59,-1,246,278,253,-1,246,277,278,-1,70,117,87,-1,88,117,70,-1,264,280,275,-1,264,268,280,-1,12,19,9,-1,19,12,23,-1,1,10,0,-1,10,1,8,-1,9,15,2,-1,15,9,19,-1,52,28,33,-1,52,47,28,-1,95,111,105,-1,87,111,95,-1,222,259,245,-1,259,222,253,-1,213,177,159,-1,213,206,177,-1,221,194,212,-1,221,244,194,-1,100,85,130,-1,85,100,68,-1,232,198,196,-1,232,191,198,-1,188,220,223,-1,190,220,188,-1,269,219,202,-1,269,274,219,-1,253,282,259,-1,278,282,253,-1,262,286,263,-1,276,286,262,-1,284,248,254,-1,284,270,248,-1,256,163,165,-1,256,260,163,-1,121,161,117,-1,121,156,161,-1,235,152,200,-1,235,182,152,-1,220,249,233,-1,249,220,232,-1,54,40,41,-1,54,50,40,-1,41,36,45,-1,41,40,36,-1,79,189,210,-1,79,96,189,-1,56,216,215,-1,216,56,76,-1,214,99,89,-1,214,228,99,-1,35,33,15,-1,33,35,77,-1,201,141,122,-1,224,141,201,-1,95,69,70,-1,82,69,95,-1,240,136,144,-1,136,240,227,-1,44,55,65,-1,42,55,44,-1,172,207,185,-1,172,180,207,-1,175,169,203,-1,175,156,169,-1,90,70,62,-1,88,70,90,-1,23,34,19,-1,34,23,32,-1,4,6,7,-1,6,4,0,-1,31,13,30,-1,13,31,17,-1,228,227,240,-1,228,214,227,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal3_Geo_5_625_normalIndex_2()
		{
			int[] value = {197,210,189,-1,230,210,197,-1,98,132,118,-1,106,132,98,-1,196,249,232,-1,196,226,249,-1,148,193,66,-1,193,148,192,-1,235,231,247,-1,200,231,235,-1,178,244,225,-1,178,194,244,-1,287,274,269,-1,288,274,287,-1,115,62,94,-1,115,90,62,-1,86,63,58,-1,63,86,91,-1,22,17,31,-1,22,7,17,-1,215,238,217,-1,215,216,238,-1,208,161,183,-1,208,173,161,-1,82,105,93,-1,105,82,95,-1,73,41,67,-1,73,54,41,-1,57,106,98,-1,106,57,71,-1,145,178,171,-1,145,158,178,-1,205,183,184,-1,183,205,208,-1,184,175,180,-1,175,184,183,-1,67,45,74,-1,41,45,67,-1,129,143,151,-1,129,118,143,-1,185,243,229,-1,243,185,207,-1,222,131,160,-1,131,222,169,-1,81,62,61,-1,81,94,62,-1,44,36,42,-1,39,36,44,-1,168,162,204,-1,168,142,162,-1,229,254,204,-1,254,229,263,-1,243,259,262,-1,243,245,259,-1,94,163,202,-1,94,81,163,-1,102,146,75,-1,102,166,146,-1,118,103,98,-1,129,103,118,-1,282,272,276,-1,282,283,272,-1,288,277,274,-1,289,277,288,-1,266,250,265,-1,266,239,250,-1,289,281,283,-1,289,288,281,-1,279,271,275,-1,279,273,271,-1,218,188,223,-1,188,218,187,-1,193,120,66,-1,176,120,193,-1,241,247,242,-1,241,235,247,-1,230,157,164,-1,230,197,157,-1,51,100,38,-1,68,100,51,-1,47,21,28,-1,21,47,48,-1,78,53,140,-1,78,64,53,-1,211,224,212,-1,224,211,237,-1,159,167,77,-1,159,177,167,-1,27,89,99,-1,27,24,89,-1,3,30,13,-1,3,26,30,-1,0,5,1,-1,0,4,5,-1,18,29,8,-1,18,43,29,-1,32,16,25,-1,32,23,16,-1,56,31,76,-1,31,56,22,-1,20,8,29,-1,8,20,10,-1,35,19,34,-1,35,15,19,-1,1,11,14,-1,11,1,5,-1,13,2,3,-1,2,13,9,-1,4,27,5,-1,27,4,24,-1,237,206,213,-1,237,211,206,-1,153,211,158,-1,211,153,206,-1,116,78,140,-1,97,78,116,-1,64,33,53,-1,64,52,33,-1,21,51,38,-1,51,21,48,-1,130,97,116,-1,97,130,85,-1,144,233,240,-1,144,182,233,-1,190,232,220,-1,190,191,232,-1,195,149,101,-1,186,149,195,-1,209,187,218,-1,187,209,181,-1,275,261,264,-1,275,271,261,-1,269,285,287,-1,269,260,285,-1,278,283,282,-1,283,278,289,-1,276,267,286,-1,272,267,276,-1,264,270,284,-1,261,270,264,-1,204,248,168,-1,248,204,254,-1,72,146,147,-1,72,75,146,-1,229,262,263,-1,229,243,262,-1,204,185,229,-1,204,162,185,-1,65,102,44,-1,125,102,65,-1,58,72,86,-1,72,58,49,-1,160,90,115,-1,131,90,160,-1,207,245,243,-1,245,207,203,-1,172,162,151,-1,185,162,172,-1,40,42,36,-1,40,46,42,-1,74,83,67,-1,74,80,83,-1,172,184,180,-1,172,170,184,-1,225,171,178,-1,171,225,205,-1,118,145,143,-1,132,145,118,-1,46,50,59,-1,50,46,40,-1,84,67,83,-1,84,73,67,-1,87,128,111,-1,128,87,117,-1,214,217,227,-1,217,214,215,-1,7,12,17,-1,7,6,12,-1,116,123,130,-1,116,137,123,-1,81,165,163,-1,81,91,165,-1,102,39,44,-1,102,75,39,-1,94,219,115,-1,219,94,202,-1,247,225,244,-1,231,225,247,-1,5,37,11,-1,5,27,37,-1,125,166,102,-1,166,125,199,-1,198,148,196,-1,192,148,198,-1,230,216,210,-1,230,238,216,-1,79,31,30,-1,79,76,31,-1,17,9,13,-1,9,17,12,-1,7,24,4,-1,7,22,24,-1,25,10,20,-1,25,16,10,-1,74,49,58,-1,74,45,49,-1,61,70,69,-1,70,61,62,-1,121,90,131,-1,121,88,90,-1,180,203,207,-1,180,175,203,-1,142,151,162,-1,129,151,142,-1,151,170,172,-1,143,170,151,-1,238,164,150,-1,230,164,238,-1,38,96,26,-1,112,96,38,-1,28,3,2,-1,21,3,28,-1,138,224,237,-1,141,224,138,-1,215,89,56,-1,215,214,89,-1,210,76,79,-1,210,216,76,-1,148,108,196,-1,37,108,148,-1,66,14,11,-1,14,66,120,-1,213,138,237,-1,134,138,213,-1,223,242,218,-1,242,223,241,-1,133,197,155,-1,133,157,197,-1,236,218,242,-1,236,209,218,-1,173,117,161,-1,173,128,117,-1,156,131,169,-1,121,131,156,-1,239,147,146,-1,239,251,147,-1,199,250,166,-1,252,250,199,-1,254,286,284,-1,286,254,263,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmphal3_Geo_5_625_normalIndex_3()
		{
			int[] value = {259,276,262,-1,282,276,259,-1,274,246,219,-1,274,277,246,-1,260,202,163,-1,260,269,202,-1,233,223,220,-1,233,241,223,-1,99,226,108,-1,99,228,226,-1,211,194,158,-1,211,212,194,-1,203,222,245,-1,203,169,222,-1,49,75,72,-1,49,39,75,-1,93,83,82,-1,93,84,83,-1,2,33,28,-1,33,2,15,-1,16,0,10,-1,16,6,0,-1,14,8,1,-1,8,14,18,-1,6,23,12,-1,23,6,16,-1,120,195,101,-1,120,176,195,-1,285,275,280,-1,279,275,285,-1,253,160,246,-1,160,253,222,-1,42,57,55,-1,57,42,46,-1,270,234,248,-1,255,234,270,-1,98,55,57,-1,98,103,55,-1,125,113,154,-1,113,125,65,-1,234,252,199,-1,234,255,252,-1,114,59,109,-1,71,59,114,-1,119,73,84,-1,73,119,135,-1,93,104,107,-1,93,105,104,-1,152,111,128,-1,111,152,124,-1,171,143,145,-1,171,170,143,-1,268,281,280,-1,281,268,267,-1,252,265,250,-1,265,252,258,-1,124,182,144,-1,152,182,124,-1,104,144,136,-1,104,124,144,-1,126,119,107,-1,150,119,126,-1,127,164,157,-1,127,135,164,-1,123,110,133,-1,123,109,110,-1,139,137,167,-1,139,114,137,-1,63,69,80,-1,63,61,69,-1,256,273,279,-1,256,257,273,-1,91,174,165,-1,91,86,174,-1,177,139,167,-1,153,139,177,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmphal4_Geo_5_631_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,8,9,6,-1,10,11,12,-1,10,13,11,-1,14,15,16,-1,17,18,19,-1,20,21,22,-1,23,24,22,-1,25,26,22,-1,27,28,22,-1,29,20,22,-1,30,31,32,-1,33,34,32,-1,35,36,32,-1,37,38,32,-1,31,39,32,-1,40,41,42,-1,42,43,40,-1,44,45,46,-1,47,48,49,-1,47,50,48,-1,51,52,53,-1,53,54,51,-1,55,56,57,-1,56,58,57,-1,59,60,61,-1,60,62,61,-1,63,64,58,-1,64,51,58,-1,65,9,8,-1,65,66,9,-1,49,67,68,-1,69,70,45,-1,45,71,69,-1,49,48,41,-1,41,40,49,-1,72,73,74,-1,74,75,72,-1,76,77,52,-1,78,79,80,-1,81,82,83,-1,81,84,82,-1,85,86,87,-1,87,14,85,-1,69,88,89,-1,7,90,91,-1,90,92,91,-1,93,94,95,-1,93,96,94,-1,97,98,99,-1,98,100,99,-1,101,102,103,-1,102,104,103,-1,105,106,107,-1,108,109,110,-1,111,18,112,-1,58,54,113,-1,113,57,58,-1,114,94,115,-1,114,95,94,-1,116,117,118,-1,68,119,120,-1,120,121,122,-1,122,47,120,-1,70,46,45,-1,50,123,124,-1,125,126,127,-1,128,77,129,-1,130,78,131,-1,78,80,131,-1,77,74,129,-1,124,79,132,-1,124,123,79,-1,80,44,46,-1,80,79,44,-1,14,16,85,-1,99,133,134,-1,135,68,136,-1,135,119,68,-1,84,6,137,-1,137,82,84,-1,58,51,54,-1,138,139,140,-1,106,66,141,-1,106,105,66,-1,142,143,144,-1,145,94,96,-1,96,146,145,-1,12,61,147,-1,15,88,69,-1,69,16,15,-1,148,126,125,-1,145,83,82,-1,145,146,83,-1,78,132,79,-1,149,143,142,-1,149,150,143,-1,72,43,73,-1,43,42,73,-1,6,84,7,-1,84,90,7,-1,117,81,125,-1,47,49,68,-1,68,120,47,-1,48,50,124,-1,71,44,151,-1,71,45,44,-1,152,153,154,-1,39,37,32,-1,38,35,32,-1,36,33,32,-1,34,30,32,-1,155,29,22,-1,156,27,22,-1,28,25,22,-1,26,23,22,-1,24,155,22,-1,21,156,22,-1,157,158,159,-1,158,160,159,-1,161,162,163,-1,164,165,166,-1,164,114,165,-1,167,109,108,-1,168,169,4,-1,114,164,113,-1,57,164,170,-1,113,164,57,-1,0,4,3,-1,0,168,4,-1,12,171,10,-1,12,147,171,-1,172,112,108,-1,112,172,111,-1,19,171,17,-1,19,10,171,-1,100,173,174,-1,175,173,100,-1,176,177,178,-1,176,179,177,-1,170,166,180,-1,170,164,166,-1,181,114,115,-1,114,181,165,-1,182,183,184,-1,182,137,183,-1,185,186,91,-1,185,187,186,-1,188,87,189,-1,14,87,188,-1,4,190,191,-1,169,190,4,-1,192,193,194,-1,192,195,193,-1,196,197,198,-1,197,196,199,-1,5,191,200,-1,5,4,191,-1,193,201,202,-1,201,193,199,-1,203,187,198,-1,203,186,187,-1,159,162,157,-1,162,159,163,-1,142,152,154,-1,152,142,144,-1,112,139,138,-1,112,1,139,-1,204,205,206,-1,204,131,205,-1,207,208,209,-1,208,207,210,-1,206,211,212,-1,206,205,211,-1,39,213,89,-1,213,39,31,-1,181,107,214,-1,184,107,181,-1,153,166,165,-1,153,152,166,-1,157,215,158,-1,157,216,215,-1,151,85,71,-1,85,151,86,-1,121,119,134,-1,119,121,120,-1,116,36,92,-1,116,33,36,-1,64,156,76,-1,27,156,64,-1,25,63,217,-1,25,28,63,-1,218,219,220,-1,219,218,221,-1,157,222,216,-1,157,162,222,-1,223,224,225,-1,223,226,224,-1,140,200,227,-1,200,140,5,-1,10,228,13,-1,228,10,19,-1,143,104,144,-1,103,104,143,-1,55,170,179,-1,57,170,55,-1,66,229,141,-1,229,66,65,-1,148,81,83,-1,81,148,125,-1,146,230,231,-1,230,146,96,-1,93,128,232,-1,128,93,53,-1,70,89,211,-1,70,69,89,-1,47,123,50,-1,47,122,123,-1,153,233,154,-1,153,214,233,-1,114,54,95,-1,114,113,54,-1,234,197,195,-1,234,235,197,-1,236,237,238,-1,237,236,239,-1,101,240,241,-1,240,101,103,-1,149,154,242,-1,149,142,154,-1,243,233,106,-1,243,244,233,-1,131,46,205,-1,131,80,46,-1,245,246,210,-1,246,245,247,-1,248,230,232,-1,248,249,230,-1,250,251,126,-1,250,252,251,-1,53,95,54,-1,93,95,53,-1,156,75,76,-1,156,21,75,-1,60,192,190,-1,192,60,253,-1,254,74,73,-1,129,74,254,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal4_Geo_5_631_coordIndex_2()
		{
			int[] value = {135,97,119,-1,135,176,97,-1,255,219,256,-1,255,220,219,-1,257,234,253,-1,258,234,257,-1,259,13,228,-1,260,13,259,-1,261,91,92,-1,91,261,185,-1,247,204,252,-1,204,247,245,-1,152,180,166,-1,152,144,180,-1,184,105,107,-1,105,184,183,-1,65,186,203,-1,65,8,186,-1,262,174,173,-1,262,189,174,-1,239,175,263,-1,239,236,175,-1,65,235,229,-1,203,235,65,-1,236,264,265,-1,236,238,264,-1,237,215,266,-1,237,241,215,-1,160,149,256,-1,160,150,149,-1,243,267,260,-1,243,268,267,-1,195,253,234,-1,195,192,253,-1,269,264,238,-1,269,270,264,-1,269,223,225,-1,266,223,269,-1,159,256,219,-1,256,159,160,-1,267,59,11,-1,257,59,267,-1,270,200,271,-1,270,227,200,-1,139,5,140,-1,139,3,5,-1,226,167,224,-1,226,109,167,-1,162,110,222,-1,162,161,110,-1,218,18,111,-1,19,18,218,-1,1,3,139,-1,3,1,0,-1,67,26,272,-1,67,23,26,-1,155,49,40,-1,155,24,49,-1,28,64,63,-1,27,64,28,-1,92,35,261,-1,92,36,35,-1,273,34,118,-1,273,30,34,-1,37,89,88,-1,89,37,39,-1,261,38,15,-1,261,35,38,-1,87,274,133,-1,87,86,274,-1,275,86,151,-1,274,86,275,-1,129,246,248,-1,246,129,254,-1,251,212,276,-1,251,206,212,-1,208,73,42,-1,208,254,73,-1,205,70,211,-1,205,46,70,-1,132,209,124,-1,132,207,209,-1,230,250,231,-1,230,249,250,-1,41,124,209,-1,124,41,48,-1,210,254,208,-1,254,210,246,-1,251,127,126,-1,127,251,276,-1,129,232,128,-1,248,232,129,-1,71,16,69,-1,16,71,85,-1,121,275,122,-1,274,275,121,-1,38,88,15,-1,88,38,37,-1,31,273,213,-1,31,30,273,-1,34,116,118,-1,34,33,116,-1,94,182,115,-1,182,94,145,-1,56,135,136,-1,55,135,56,-1,20,43,72,-1,20,29,43,-1,24,67,49,-1,24,23,67,-1,272,25,217,-1,272,26,25,-1,17,2,1,-1,171,2,17,-1,161,108,110,-1,108,161,172,-1,147,62,277,-1,61,62,147,-1,172,163,221,-1,172,161,163,-1,222,109,226,-1,110,109,222,-1,262,199,196,-1,262,201,199,-1,253,59,257,-1,59,253,60,-1,255,228,220,-1,259,228,255,-1,266,216,223,-1,215,216,266,-1,270,225,227,-1,269,225,270,-1,271,264,270,-1,202,264,271,-1,234,229,235,-1,234,258,229,-1,255,244,259,-1,242,244,255,-1,158,150,160,-1,158,240,150,-1,238,266,269,-1,238,237,266,-1,201,173,265,-1,173,201,262,-1,263,101,239,-1,263,102,101,-1,98,102,263,-1,98,178,102,-1,174,99,100,-1,99,174,133,-1,198,188,196,-1,198,187,188,-1,183,66,105,-1,66,183,9,-1,214,165,181,-1,214,153,165,-1,178,104,102,-1,104,178,177,-1,249,252,250,-1,252,249,247,-1,244,260,259,-1,243,260,244,-1,256,242,255,-1,242,256,149,-1,111,221,218,-1,111,172,221,-1,99,119,97,-1,134,119,99,-1,135,179,176,-1,135,55,179,-1,75,20,72,-1,75,21,20,-1,52,64,76,-1,52,51,64,-1,196,189,262,-1,196,188,189,-1,231,126,148,-1,231,250,126,-1,252,206,251,-1,252,204,206,-1,247,248,246,-1,248,247,249,-1,78,207,132,-1,207,78,130,-1,106,268,243,-1,268,106,141,-1,244,154,233,-1,244,242,154,-1,239,241,237,-1,241,239,101,-1,202,265,264,-1,202,201,265,-1,265,175,236,-1,265,173,175,-1,145,137,182,-1,145,82,137,-1,118,125,127,-1,118,117,125,-1,213,276,212,-1,213,273,276,-1,122,79,123,-1,275,79,122,-1,232,96,93,-1,232,230,96,-1,231,83,146,-1,231,148,83,-1,273,127,276,-1,273,118,127,-1,75,77,76,-1,75,74,77,-1,151,79,275,-1,151,44,79,-1,90,81,117,-1,90,84,81,-1,217,136,272,-1,217,56,136,-1,141,258,268,-1,141,229,258,-1,68,272,136,-1,67,272,68,-1,177,144,104,-1,144,177,180,-1,103,150,240,-1,103,143,150,-1,61,11,59,-1,11,61,12,-1,190,62,60,-1,190,169,62,-1,227,224,140,-1,227,225,224,-1,216,226,223,-1,216,222,226,-1,221,159,219,-1,159,221,163,-1,19,220,228,-1,220,19,218,-1,58,217,63,-1,56,217,58,-1,128,52,77,-1,52,128,53,-1,116,90,117,-1,116,92,90,-1,274,134,133,-1,134,274,121,-1,241,158,215,-1,240,158,241,-1,268,257,267,-1,258,257,268,-1,106,214,107,-1,106,233,214,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmphal4_Geo_5_631_coordIndex_3()
		{
			int[] value = {213,211,89,-1,212,211,213,-1,130,210,207,-1,210,130,245,-1,209,42,41,-1,42,209,208,-1,245,131,204,-1,245,130,131,-1,43,155,40,-1,155,43,29,-1,18,1,112,-1,18,17,1,-1,167,140,224,-1,167,138,140,-1,235,198,197,-1,235,203,198,-1,14,261,15,-1,185,261,14,-1,202,194,193,-1,202,271,194,-1,191,271,200,-1,271,191,194,-1,195,199,193,-1,195,197,199,-1,190,194,191,-1,190,192,194,-1,260,11,13,-1,260,267,11,-1,189,133,174,-1,87,133,189,-1,187,14,188,-1,185,14,187,-1,186,7,91,-1,7,186,8,-1,137,9,183,-1,137,6,9,-1,115,184,181,-1,115,182,184,-1,180,179,170,-1,179,180,177,-1,176,98,97,-1,176,178,98,-1,100,263,175,-1,263,100,98,-1,138,108,112,-1,138,167,108,-1,169,277,62,-1,169,168,277,-1,168,2,277,-1,168,0,2,-1,171,277,2,-1,171,147,277,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmphal4_Geo_5_631_normalIndex_1()
		{
			int[] value = {251,266,265,-1,246,250,263,-1,132,122,71,-1,71,70,132,-1,247,181,241,-1,247,196,181,-1,151,145,187,-1,271,274,248,-1,159,158,146,-1,142,164,146,-1,157,154,146,-1,161,160,146,-1,144,159,146,-1,61,58,86,-1,96,87,86,-1,109,106,86,-1,84,100,86,-1,58,72,86,-1,39,17,11,-1,11,63,39,-1,112,67,31,-1,186,37,116,-1,186,94,37,-1,237,212,231,-1,231,235,237,-1,211,222,183,-1,222,224,183,-1,173,199,238,-1,199,242,238,-1,193,206,224,-1,206,237,224,-1,45,70,71,-1,45,44,70,-1,116,177,214,-1,80,34,67,-1,67,171,80,-1,116,37,17,-1,17,39,116,-1,38,10,35,-1,35,114,38,-1,170,82,212,-1,22,117,29,-1,200,225,221,-1,200,194,225,-1,191,204,165,-1,165,151,191,-1,80,69,36,-1,122,167,127,-1,167,140,127,-1,223,201,232,-1,223,198,201,-1,209,175,182,-1,175,155,182,-1,143,150,121,-1,150,130,121,-1,60,49,56,-1,267,257,268,-1,277,274,270,-1,224,235,156,-1,156,183,224,-1,115,201,111,-1,115,232,201,-1,123,138,48,-1,214,227,215,-1,215,213,217,-1,217,186,215,-1,34,31,67,-1,94,119,25,-1,81,27,30,-1,93,82,26,-1,15,22,20,-1,22,29,20,-1,82,35,26,-1,25,117,21,-1,25,119,117,-1,29,112,31,-1,29,117,112,-1,151,187,191,-1,182,152,188,-1,228,214,220,-1,228,227,214,-1,194,132,126,-1,126,225,194,-1,224,237,235,-1,258,252,273,-1,49,44,40,-1,49,60,44,-1,52,88,91,-1,216,201,198,-1,198,218,216,-1,241,238,264,-1,145,69,80,-1,80,187,145,-1,64,27,81,-1,216,221,225,-1,216,218,221,-1,22,21,117,-1,59,88,52,-1,59,101,88,-1,38,63,10,-1,63,11,10,-1,132,194,122,-1,194,167,122,-1,138,200,81,-1,186,116,214,-1,214,215,186,-1,37,94,25,-1,171,112,219,-1,171,67,112,-1,68,65,46,-1,72,84,86,-1,100,109,86,-1,106,96,86,-1,87,61,86,-1,162,144,146,-1,169,161,146,-1,160,157,146,-1,154,142,146,-1,164,162,146,-1,158,169,146,-1,234,176,226,-1,176,125,226,-1,275,259,253,-1,108,83,92,-1,108,115,83,-1,255,257,267,-1,249,245,250,-1,115,108,156,-1,183,108,133,-1,156,108,183,-1,251,250,246,-1,251,249,250,-1,241,269,247,-1,241,264,269,-1,276,270,267,-1,270,276,277,-1,248,269,271,-1,248,247,269,-1,155,134,137,-1,148,134,155,-1,203,141,174,-1,203,179,141,-1,133,92,102,-1,133,108,92,-1,73,115,111,-1,115,73,83,-1,113,78,74,-1,113,126,78,-1,131,89,127,-1,131,99,89,-1,110,165,124,-1,151,165,110,-1,250,229,233,-1,245,229,250,-1,139,129,180,-1,139,104,129,-1,103,85,76,-1,85,103,107,-1,263,233,239,-1,263,250,233,-1,129,128,147,-1,128,129,107,-1,54,99,76,-1,54,89,99,-1,226,259,234,-1,259,226,253,-1,52,68,46,-1,68,52,91,-1,270,252,258,-1,270,266,252,-1,9,19,5,-1,9,20,19,-1,14,0,12,-1,0,14,1,-1,5,18,3,-1,5,19,18,-1,72,33,36,-1,33,72,58,-1,73,56,62,-1,74,56,73,-1,65,92,83,-1,65,68,92,-1,234,192,176,-1,234,236,192,-1,219,191,171,-1,191,219,204,-1,213,227,188,-1,227,213,215,-1,123,106,140,-1,123,96,106,-1,206,169,170,-1,161,169,206,-1,157,193,195,-1,157,160,193,-1,254,208,202,-1,208,254,256,-1,234,260,236,-1,234,259,260,-1,240,272,243,-1,240,262,272,-1,273,239,244,-1,239,273,263,-1,247,185,196,-1,185,247,248,-1,88,130,91,-1,121,130,88,-1,211,133,179,-1,183,133,211,-1,44,41,40,-1,41,44,45,-1,64,200,221,-1,200,64,81,-1,218,57,66,-1,57,218,198,-1,223,93,90,-1,93,223,231,-1,34,36,18,-1,34,80,36,-1,186,119,94,-1,186,217,119,-1,65,50,46,-1,65,62,50,-1,115,235,232,-1,115,156,235,-1,79,85,104,-1,79,53,85,-1,166,178,184,-1,178,166,163,-1,143,136,168,-1,136,143,121,-1,59,46,42,-1,59,52,46,-1,47,50,49,-1,47,43,50,-1,20,31,19,-1,20,29,31,-1,2,8,1,-1,8,2,6,-1,24,57,90,-1,24,23,57,-1,28,13,27,-1,28,16,13,-1,231,232,235,-1,223,232,231,-1,169,114,170,-1,169,158,114,-1,199,139,229,-1,139,199,120,-1,7,35,10,-1,26,35,7,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal4_Geo_5_631_normalIndex_2()
		{
			int[] value = {228,209,227,-1,228,203,209,-1,77,208,98,-1,77,202,208,-1,105,79,120,-1,55,79,105,-1,75,196,185,-1,95,196,75,-1,135,127,140,-1,127,135,131,-1,6,9,16,-1,9,6,2,-1,68,102,92,-1,68,91,102,-1,74,60,56,-1,60,74,78,-1,45,89,54,-1,45,71,89,-1,118,137,134,-1,118,124,137,-1,163,148,153,-1,163,166,148,-1,45,53,41,-1,54,53,45,-1,166,172,149,-1,166,184,172,-1,178,192,197,-1,178,168,192,-1,125,59,98,-1,125,101,59,-1,47,97,95,-1,47,51,97,-1,104,120,79,-1,104,139,120,-1,207,172,184,-1,207,205,172,-1,207,240,243,-1,197,240,207,-1,226,98,208,-1,98,226,125,-1,97,173,181,-1,105,173,97,-1,205,239,189,-1,205,244,239,-1,252,263,273,-1,252,246,263,-1,262,255,272,-1,262,257,255,-1,259,268,260,-1,259,275,268,-1,254,274,277,-1,248,274,254,-1,266,246,252,-1,246,266,251,-1,177,154,190,-1,177,142,154,-1,162,116,39,-1,162,164,116,-1,160,206,193,-1,161,206,160,-1,140,109,135,-1,140,106,109,-1,32,87,48,-1,32,61,87,-1,84,36,69,-1,36,84,72,-1,135,100,145,-1,135,109,100,-1,165,210,152,-1,165,204,210,-1,230,204,219,-1,210,204,230,-1,26,8,24,-1,8,26,7,-1,13,3,4,-1,13,5,3,-1,0,10,11,-1,0,7,10,-1,19,34,18,-1,19,31,34,-1,21,12,25,-1,21,14,12,-1,57,28,66,-1,57,23,28,-1,17,25,12,-1,25,17,37,-1,1,7,0,-1,7,1,8,-1,13,30,27,-1,30,13,4,-1,26,90,93,-1,24,90,26,-1,171,187,80,-1,187,171,191,-1,213,230,217,-1,210,230,213,-1,100,69,145,-1,69,100,84,-1,58,32,33,-1,58,61,32,-1,87,123,48,-1,87,96,123,-1,201,113,111,-1,113,201,216,-1,222,228,220,-1,211,228,222,-1,159,63,38,-1,159,144,63,-1,164,177,116,-1,164,142,177,-1,190,157,195,-1,190,154,157,-1,271,265,266,-1,269,265,271,-1,275,267,268,-1,267,275,276,-1,264,242,261,-1,238,242,264,-1,276,253,256,-1,276,275,253,-1,260,257,262,-1,268,257,260,-1,118,107,103,-1,118,128,107,-1,120,173,105,-1,173,120,199,-1,77,185,202,-1,75,185,77,-1,197,236,240,-1,192,236,197,-1,205,243,244,-1,207,243,205,-1,189,172,205,-1,147,172,189,-1,79,41,53,-1,79,55,41,-1,77,43,75,-1,42,43,77,-1,176,101,125,-1,176,136,101,-1,184,197,207,-1,184,178,197,-1,128,134,149,-1,134,128,118,-1,153,143,163,-1,153,150,143,-1,175,150,153,-1,175,174,150,-1,137,182,155,-1,182,137,152,-1,76,110,103,-1,76,99,110,-1,78,44,60,-1,44,78,70,-1,62,83,73,-1,62,65,83,-1,174,130,150,-1,130,174,141,-1,23,16,28,-1,16,23,6,-1,43,95,75,-1,47,95,43,-1,98,42,77,-1,42,98,59,-1,277,256,254,-1,277,276,256,-1,182,227,209,-1,188,227,182,-1,228,179,203,-1,228,211,179,-1,114,159,38,-1,114,158,159,-1,212,206,170,-1,212,237,206,-1,103,124,118,-1,103,110,124,-1,66,27,64,-1,66,28,27,-1,16,5,13,-1,16,9,5,-1,6,24,8,-1,24,6,23,-1,22,14,21,-1,14,22,15,-1,49,51,47,-1,51,49,40,-1,43,46,50,-1,43,42,46,-1,163,168,178,-1,168,163,143,-1,147,149,172,-1,147,128,149,-1,149,148,166,-1,149,134,148,-1,216,126,113,-1,216,225,126,-1,48,81,30,-1,48,138,81,-1,33,4,3,-1,33,32,4,-1,217,117,119,-1,230,117,217,-1,90,198,223,-1,90,57,198,-1,66,221,218,-1,66,64,221,-1,32,30,4,-1,32,48,30,-1,114,82,170,-1,114,35,82,-1,219,117,230,-1,219,112,117,-1,167,200,138,-1,167,194,200,-1,195,220,190,-1,195,222,220,-1,40,55,51,-1,40,41,55,-1,214,190,220,-1,177,190,214,-1,141,91,130,-1,91,141,102,-1,121,101,136,-1,121,88,101,-1,238,181,173,-1,181,238,241,-1,229,242,199,-1,229,245,242,-1,244,272,273,-1,244,243,272,-1,236,262,240,-1,236,260,262,-1,256,226,208,-1,226,256,253,-1,248,202,185,-1,202,248,254,-1,224,195,193,-1,222,195,224,-1,93,212,82,-1,212,93,231,-1,123,167,138,-1,123,140,167,-1,210,188,152,-1,188,210,213,-1,168,176,192,-1,136,176,168,-1,51,105,97,-1,55,105,51,-1,49,62,56,-1,49,50,62,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlmphal4_Geo_5_631_normalIndex_3()
		{
			int[] value = {33,18,36,-1,3,18,33,-1,15,1,14,-1,1,15,2,-1,12,11,17,-1,11,12,0,-1,2,20,9,-1,2,15,20,-1,63,162,39,-1,162,63,144,-1,274,266,270,-1,274,271,266,-1,255,273,272,-1,255,258,273,-1,53,76,85,-1,53,54,76,-1,151,135,145,-1,131,135,151,-1,147,180,129,-1,147,189,180,-1,233,189,239,-1,189,233,180,-1,104,107,129,-1,104,85,107,-1,229,180,233,-1,229,139,180,-1,95,181,196,-1,95,97,181,-1,124,152,137,-1,165,152,124,-1,99,151,110,-1,131,151,99,-1,89,122,127,-1,122,89,71,-1,126,70,78,-1,126,132,70,-1,111,74,73,-1,111,113,74,-1,102,179,133,-1,179,102,141,-1,203,175,209,-1,203,174,175,-1,155,153,148,-1,153,155,175,-1,258,267,270,-1,258,255,267,-1,245,261,242,-1,245,249,261,-1,249,265,261,-1,249,251,265,-1,269,261,265,-1,269,264,261,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmphal5_Geo_5_637_coordIndex_1()
		{
			int[] value = {0,1,2,-1,2,3,0,-1,4,5,6,-1,4,7,5,-1,8,9,10,-1,11,12,13,-1,14,15,16,-1,10,17,18,-1,19,12,20,-1,21,22,23,-1,23,24,21,-1,25,26,27,-1,27,28,25,-1,29,30,31,-1,29,32,30,-1,33,34,35,-1,36,37,30,-1,30,38,36,-1,39,40,41,-1,42,43,44,-1,43,45,44,-1,34,33,37,-1,37,36,34,-1,46,47,48,-1,46,49,47,-1,50,51,52,-1,50,53,51,-1,54,55,56,-1,54,57,55,-1,58,59,60,-1,58,61,59,-1,62,63,64,-1,62,65,63,-1,66,15,67,-1,15,68,67,-1,69,70,71,-1,71,72,69,-1,73,74,75,-1,75,76,73,-1,77,78,79,-1,78,80,79,-1,81,82,83,-1,84,85,86,-1,61,87,88,-1,87,89,88,-1,90,91,92,-1,21,93,90,-1,94,95,12,-1,96,22,90,-1,28,43,42,-1,28,27,43,-1,92,97,90,-1,98,26,90,-1,99,78,100,-1,78,101,100,-1,102,103,10,-1,17,10,9,-1,104,11,13,-1,13,105,104,-1,106,12,19,-1,107,89,63,-1,89,87,63,-1,49,71,70,-1,70,108,49,-1,10,109,110,-1,111,12,112,-1,113,13,12,-1,14,68,15,-1,110,8,10,-1,65,114,115,-1,65,62,114,-1,116,117,118,-1,118,101,116,-1,65,107,63,-1,65,119,107,-1,26,25,90,-1,97,98,90,-1,120,121,38,-1,120,122,121,-1,96,90,123,-1,22,21,90,-1,93,124,90,-1,112,12,95,-1,90,124,91,-1,125,4,126,-1,125,127,4,-1,109,10,103,-1,2,73,76,-1,71,128,72,-1,67,68,129,-1,130,131,41,-1,41,40,130,-1,132,133,134,-1,67,135,136,-1,67,129,135,-1,134,133,137,-1,137,138,134,-1,55,57,139,-1,139,140,55,-1,90,25,123,-1,38,32,120,-1,38,30,32,-1,20,12,11,-1,132,134,60,-1,60,59,132,-1,141,46,48,-1,48,84,141,-1,142,143,144,-1,14,10,18,-1,13,145,105,-1,13,113,145,-1,146,70,147,-1,70,69,147,-1,148,108,149,-1,148,150,108,-1,151,152,153,-1,151,154,152,-1,12,106,94,-1,10,14,102,-1,12,111,113,-1,126,155,125,-1,155,156,125,-1,145,111,83,-1,113,111,145,-1,82,145,83,-1,145,82,127,-1,16,102,14,-1,102,16,157,-1,158,0,159,-1,0,158,6,-1,94,138,56,-1,94,106,138,-1,151,137,154,-1,54,137,151,-1,148,152,150,-1,153,152,148,-1,149,70,146,-1,149,108,70,-1,60,19,20,-1,60,134,19,-1,95,56,55,-1,56,95,94,-1,111,140,83,-1,112,140,111,-1,109,76,75,-1,103,76,109,-1,147,110,160,-1,110,147,8,-1,161,17,72,-1,17,161,18,-1,74,162,163,-1,74,73,162,-1,128,141,164,-1,128,46,141,-1,48,85,84,-1,48,50,85,-1,52,59,165,-1,52,132,59,-1,120,39,41,-1,120,32,39,-1,119,115,29,-1,115,119,65,-1,96,166,167,-1,96,123,166,-1,168,97,169,-1,168,98,97,-1,92,121,122,-1,92,91,121,-1,124,170,171,-1,124,93,170,-1,172,77,35,-1,77,172,116,-1,79,37,33,-1,173,37,79,-1,130,114,174,-1,130,40,114,-1,117,175,176,-1,117,177,175,-1,44,178,179,-1,178,44,180,-1,181,179,175,-1,182,179,181,-1,166,42,182,-1,28,42,166,-1,71,46,128,-1,71,49,46,-1,83,139,81,-1,140,139,83,-1,99,135,183,-1,136,135,99,-1,142,7,184,-1,7,142,5,-1,185,105,125,-1,185,104,105,-1,61,186,87,-1,58,186,61,-1,157,2,76,-1,3,2,157,-1,160,74,187,-1,74,160,75,-1,188,144,189,-1,188,163,144,-1,1,6,5,-1,1,0,6,-1,190,191,192,-1,193,191,190,-1,158,155,126,-1,158,194,155,-1,153,195,151,-1,153,196,195,-1,197,198,159,-1,199,198,197,-1,66,136,200,-1,67,136,66,-1,201,202,203,-1,86,202,201,-1,156,185,125,-1,156,204,185,-1,171,34,36,-1,170,34,171,-1,205,23,206,-1,205,24,23,-1,167,182,181,-1,166,182,167,-1,131,169,41,-1,131,168,169,-1,121,36,38,-1,36,121,171,-1,64,207,62,-1,208,207,64,-1,209,193,190,-1,209,210,193,-1,211,212,213,-1,211,118,212,-1,80,214,215,-1,214,80,183,-1,216,119,217,-1,107,119,216,-1,79,215,173,-1,215,79,80,-1,176,118,117,-1,176,212,118,-1,218,190,180,-1,190,218,209,-1,62,174,114,-1,174,62,207,-1,29,217,119,-1,29,31,217,-1,199,100,211,-1,199,200,100,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal5_Geo_5_637_coordIndex_2()
		{
			int[] value = {100,136,99,-1,100,200,136,-1,208,186,204,-1,64,186,208,-1,210,155,193,-1,210,156,155,-1,199,213,198,-1,213,199,211,-1,6,126,4,-1,6,158,126,-1,203,216,214,-1,203,202,216,-1,201,164,141,-1,164,201,129,-1,85,88,86,-1,88,85,165,-1,154,133,51,-1,133,154,137,-1,142,163,162,-1,142,144,163,-1,81,219,184,-1,81,139,219,-1,143,189,144,-1,196,189,143,-1,196,148,189,-1,148,196,153,-1,188,146,187,-1,146,188,149,-1,57,151,195,-1,54,151,57,-1,187,163,188,-1,187,74,163,-1,139,195,219,-1,57,195,139,-1,184,143,142,-1,184,219,143,-1,108,47,49,-1,108,150,47,-1,51,152,154,-1,51,53,152,-1,86,141,84,-1,201,141,86,-1,61,165,59,-1,88,165,61,-1,135,214,183,-1,135,203,214,-1,202,107,216,-1,202,89,107,-1,105,127,125,-1,105,145,127,-1,159,3,197,-1,159,0,3,-1,191,198,213,-1,191,194,198,-1,208,156,210,-1,208,204,156,-1,104,58,60,-1,104,185,58,-1,103,157,76,-1,157,103,102,-1,31,215,217,-1,215,31,173,-1,207,218,174,-1,218,207,209,-1,178,212,176,-1,178,192,212,-1,214,217,215,-1,216,217,214,-1,101,77,116,-1,78,77,101,-1,118,100,101,-1,118,211,100,-1,192,213,212,-1,191,213,192,-1,207,210,209,-1,208,210,207,-1,41,122,120,-1,41,169,122,-1,43,168,131,-1,43,27,168,-1,206,167,181,-1,206,23,167,-1,34,24,205,-1,170,24,34,-1,185,186,58,-1,185,204,186,-1,89,86,88,-1,89,202,86,-1,203,129,201,-1,203,135,129,-1,66,199,197,-1,66,200,199,-1,194,159,198,-1,194,158,159,-1,196,219,195,-1,196,143,219,-1,194,193,155,-1,194,191,193,-1,180,192,178,-1,190,192,180,-1,53,150,152,-1,150,53,47,-1,189,149,188,-1,148,149,189,-1,184,82,81,-1,82,184,7,-1,2,162,73,-1,1,162,2,-1,147,187,146,-1,160,187,147,-1,197,15,66,-1,197,16,15,-1,183,78,99,-1,183,80,78,-1,87,64,63,-1,64,87,186,-1,51,132,52,-1,51,133,132,-1,50,47,53,-1,48,47,50,-1,129,161,164,-1,129,68,161,-1,172,206,177,-1,205,206,172,-1,177,181,175,-1,181,177,206,-1,182,44,179,-1,182,42,44,-1,45,131,130,-1,131,45,43,-1,35,205,172,-1,205,35,34,-1,45,180,44,-1,180,45,218,-1,176,179,178,-1,176,175,179,-1,45,174,218,-1,45,130,174,-1,40,115,114,-1,40,39,115,-1,173,30,37,-1,31,30,173,-1,79,35,77,-1,79,33,35,-1,177,116,172,-1,116,177,117,-1,171,91,124,-1,121,91,171,-1,92,169,97,-1,169,92,122,-1,27,98,168,-1,27,26,98,-1,28,123,25,-1,166,123,28,-1,96,23,22,-1,23,96,167,-1,93,24,170,-1,93,21,24,-1,29,39,32,-1,39,29,115,-1,50,165,85,-1,50,52,165,-1,164,72,128,-1,161,72,164,-1,18,68,14,-1,18,161,68,-1,17,69,72,-1,9,69,17,-1,110,75,160,-1,109,75,110,-1,140,95,55,-1,95,140,112,-1,138,19,134,-1,19,138,106,-1,20,104,60,-1,11,104,20,-1,56,137,54,-1,56,138,137,-1,9,147,69,-1,147,9,8,-1,162,5,142,-1,162,1,5,-1,3,16,197,-1,157,16,3,-1,7,127,82,-1,127,7,4,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlmphal5_Geo_5_637_normalIndex_1()
		{
			int[] value = {207,194,191,-1,191,200,207,-1,183,182,195,-1,183,147,182,-1,135,138,157,-1,88,89,108,-1,151,169,178,-1,157,171,176,-1,85,89,86,-1,189,170,165,-1,165,188,189,-1,177,199,184,-1,184,162,177,-1,17,42,21,-1,17,60,42,-1,65,153,110,-1,136,56,42,-1,42,120,136,-1,58,67,160,-1,196,180,193,-1,180,125,193,-1,153,65,56,-1,56,136,153,-1,102,27,70,-1,102,36,27,-1,73,40,98,-1,73,29,40,-1,0,38,37,-1,0,12,38,-1,87,111,105,-1,87,76,111,-1,30,33,47,-1,30,15,33,-1,156,169,117,-1,169,134,117,-1,82,25,64,-1,64,137,82,-1,123,57,112,-1,112,166,123,-1,75,79,41,-1,79,45,41,-1,83,128,100,-1,92,101,63,-1,76,54,66,-1,54,49,66,-1,201,213,209,-1,189,198,201,-1,84,91,89,-1,155,170,201,-1,162,180,196,-1,162,184,180,-1,209,206,201,-1,203,199,201,-1,80,79,124,-1,79,121,124,-1,173,172,157,-1,171,157,138,-1,114,88,108,-1,108,129,114,-1,81,89,85,-1,31,49,33,-1,49,54,33,-1,36,64,25,-1,25,3,36,-1,157,144,139,-1,94,89,97,-1,95,108,89,-1,151,134,169,-1,139,135,157,-1,15,23,16,-1,15,30,23,-1,126,192,163,-1,163,121,126,-1,15,31,33,-1,15,13,31,-1,199,177,201,-1,206,203,201,-1,150,202,120,-1,150,212,202,-1,155,201,148,-1,170,189,201,-1,198,214,201,-1,97,89,91,-1,201,214,213,-1,132,183,142,-1,132,164,183,-1,144,157,172,-1,191,123,166,-1,64,119,137,-1,117,134,103,-1,78,145,160,-1,160,67,78,-1,74,24,59,-1,117,61,109,-1,117,103,61,-1,59,24,4,-1,4,35,59,-1,38,12,52,-1,52,72,38,-1,201,177,148,-1,120,60,150,-1,120,42,60,-1,86,89,88,-1,74,59,105,-1,105,111,74,-1,118,102,70,-1,70,92,118,-1,106,43,39,-1,151,157,176,-1,108,122,129,-1,108,95,122,-1,6,25,62,-1,25,82,62,-1,2,3,1,-1,2,5,3,-1,7,10,9,-1,7,14,10,-1,89,81,84,-1,157,151,173,-1,89,94,95,-1,142,131,132,-1,131,116,132,-1,122,94,100,-1,95,94,122,-1,128,122,100,-1,122,128,164,-1,178,173,151,-1,173,178,187,-1,158,207,175,-1,207,158,195,-1,84,35,37,-1,84,81,35,-1,7,4,14,-1,0,4,7,-1,2,10,5,-1,9,10,2,-1,1,25,6,-1,1,3,25,-1,105,85,86,-1,105,59,85,-1,91,37,38,-1,37,91,84,-1,94,72,100,-1,97,72,94,-1,144,166,112,-1,172,166,144,-1,62,139,68,-1,139,62,135,-1,174,171,137,-1,171,174,176,-1,57,115,44,-1,57,123,115,-1,119,118,141,-1,119,102,118,-1,70,101,92,-1,70,73,101,-1,98,111,107,-1,98,74,111,-1,150,58,160,-1,150,60,58,-1,13,16,17,-1,16,13,15,-1,155,149,152,-1,155,148,149,-1,204,206,208,-1,204,203,206,-1,209,202,212,-1,209,213,202,-1,214,197,211,-1,214,198,197,-1,186,75,110,-1,75,186,126,-1,41,56,65,-1,26,56,41,-1,78,23,51,-1,78,67,23,-1,192,218,190,-1,192,219,218,-1,193,181,215,-1,181,193,143,-1,216,215,218,-1,210,215,216,-1,149,196,210,-1,162,196,149,-1,64,102,119,-1,64,36,102,-1,100,52,83,-1,72,52,100,-1,80,61,53,-1,109,61,80,-1,106,147,93,-1,147,106,182,-1,113,129,132,-1,113,114,129,-1,76,69,54,-1,87,69,76,-1,187,191,166,-1,200,191,187,-1,68,57,22,-1,57,68,112,-1,8,39,11,-1,8,44,39,-1,194,195,182,-1,194,207,195,-1,133,146,167,-1,130,146,133,-1,158,131,142,-1,158,140,131,-1,9,19,7,-1,9,18,19,-1,185,154,175,-1,159,154,185,-1,156,109,127,-1,117,109,156,-1,77,46,48,-1,63,46,77,-1,116,113,132,-1,116,90,113,-1,211,153,136,-1,197,153,211,-1,205,165,217,-1,205,188,165,-1,152,210,216,-1,149,210,152,-1,145,208,160,-1,145,204,208,-1,202,136,120,-1,136,202,211,-1,47,55,30,-1,71,55,47,-1,96,130,133,-1,96,99,130,-1,161,179,168,-1,161,163,179,-1,45,34,28,-1,34,45,53,-1,32,13,20,-1,31,13,32,-1,41,28,26,-1,28,41,45,-1,190,163,192,-1,190,179,163,-1,104,133,143,-1,133,104,96,-1,30,51,23,-1,51,30,55,-1,17,20,13,-1,17,21,20,-1,159,124,161,-1,159,127,124,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlmphal5_Geo_5_637_normalIndex_2()
		{
			int[] value = {124,109,80,-1,124,127,109,-1,71,69,90,-1,47,69,71,-1,99,131,130,-1,99,116,131,-1,159,168,154,-1,168,159,161,-1,195,142,183,-1,195,158,142,-1,48,32,34,-1,48,46,32,-1,77,141,118,-1,141,77,103,-1,101,66,63,-1,66,101,107,-1,14,24,40,-1,24,14,4,-1,106,44,115,-1,106,39,44,-1,83,50,93,-1,83,52,50,-1,43,11,39,-1,18,11,43,-1,18,2,11,-1,2,18,9,-1,8,6,22,-1,6,8,1,-1,12,7,19,-1,0,7,12,-1,22,44,8,-1,22,57,44,-1,52,19,50,-1,12,19,52,-1,93,43,106,-1,93,50,43,-1,3,27,36,-1,3,5,27,-1,40,10,14,-1,40,29,10,-1,63,118,92,-1,77,118,63,-1,76,107,111,-1,66,107,76,-1,61,34,53,-1,61,48,34,-1,46,31,32,-1,46,49,31,-1,129,164,132,-1,129,122,164,-1,175,200,185,-1,175,207,200,-1,146,154,168,-1,146,140,154,-1,71,116,99,-1,71,90,116,-1,114,87,105,-1,114,113,87,-1,172,187,166,-1,187,172,173,-1,21,28,20,-1,28,21,26,-1,55,104,51,-1,104,55,96,-1,181,179,190,-1,181,167,179,-1,34,20,28,-1,32,20,34,-1,121,75,126,-1,79,75,121,-1,163,124,121,-1,163,161,124,-1,167,168,179,-1,146,168,167,-1,55,99,96,-1,71,99,55,-1,160,212,150,-1,160,208,212,-1,180,204,145,-1,180,184,204,-1,217,152,216,-1,217,165,152,-1,153,188,205,-1,197,188,153,-1,113,69,87,-1,113,90,69,-1,49,63,66,-1,49,46,63,-1,48,103,77,-1,48,61,103,-1,156,159,185,-1,156,127,159,-1,140,175,154,-1,140,158,175,-1,18,50,19,-1,18,43,50,-1,140,130,131,-1,140,146,130,-1,143,167,181,-1,133,167,143,-1,29,5,10,-1,5,29,27,-1,11,1,8,-1,2,1,11,-1,93,128,83,-1,128,93,147,-1,191,115,123,-1,194,115,191,-1,62,22,6,-1,68,22,62,-1,185,169,156,-1,185,178,169,-1,53,79,80,-1,53,45,79,-1,54,47,33,-1,47,54,69,-1,40,74,98,-1,40,24,74,-1,73,27,29,-1,70,27,73,-1,103,174,141,-1,103,134,174,-1,186,217,219,-1,205,217,186,-1,219,216,218,-1,216,219,217,-1,210,193,215,-1,210,196,193,-1,125,145,78,-1,145,125,180,-1,110,205,186,-1,205,110,153,-1,125,143,193,-1,143,125,104,-1,190,215,181,-1,190,218,215,-1,125,51,104,-1,125,78,51,-1,67,16,23,-1,67,58,16,-1,26,42,56,-1,21,42,26,-1,41,110,75,-1,41,65,110,-1,219,126,186,-1,126,219,192,-1,211,213,214,-1,202,213,211,-1,209,208,206,-1,208,209,212,-1,184,203,204,-1,184,199,203,-1,162,148,177,-1,149,148,162,-1,155,165,170,-1,165,155,152,-1,198,188,197,-1,198,189,188,-1,17,58,60,-1,58,17,16,-1,73,107,101,-1,73,98,107,-1,141,137,119,-1,174,137,141,-1,176,134,151,-1,176,174,134,-1,171,82,137,-1,138,82,171,-1,139,112,68,-1,144,112,139,-1,72,91,38,-1,91,72,97,-1,35,85,59,-1,85,35,81,-1,86,114,105,-1,88,114,86,-1,37,4,0,-1,37,35,4,-1,138,62,82,-1,62,138,135,-1,115,182,106,-1,115,194,182,-1,200,178,185,-1,187,178,200,-1,147,164,128,-1,164,147,183,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlnaviclr_Geo_5_643_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,9,12,10,-1,13,14,15,-1,16,17,18,-1,19,20,21,-1,21,22,23,-1,24,25,26,-1,27,28,19,-1,29,30,31,-1,32,33,7,-1,33,34,7,-1,35,36,24,-1,24,26,35,-1,6,32,7,-1,37,38,39,-1,39,27,37,-1,40,41,42,-1,40,42,43,-1,43,44,40,-1,45,46,47,-1,47,48,45,-1,49,33,50,-1,51,52,53,-1,51,54,52,-1,55,56,57,-1,58,59,60,-1,58,61,59,-1,62,63,64,-1,62,60,63,-1,65,66,67,-1,68,69,70,-1,70,71,68,-1,72,73,74,-1,74,75,72,-1,76,77,78,-1,77,79,78,-1,80,81,82,-1,81,83,82,-1,4,84,5,-1,85,86,87,-1,88,89,90,-1,66,65,91,-1,92,93,94,-1,92,94,95,-1,67,96,97,-1,67,66,96,-1,98,99,100,-1,101,102,103,-1,104,98,100,-1,104,105,98,-1,106,107,108,-1,109,110,111,-1,109,112,110,-1,111,113,114,-1,111,110,113,-1,115,116,117,-1,116,118,117,-1,107,102,101,-1,119,120,121,-1,121,122,119,-1,123,124,125,-1,124,126,125,-1,127,128,129,-1,128,130,129,-1,131,132,133,-1,134,135,136,-1,137,21,31,-1,21,20,31,-1,138,137,30,-1,137,31,30,-1,139,30,140,-1,141,142,143,-1,141,144,142,-1,141,145,144,-1,146,147,148,-1,146,149,147,-1,150,151,152,-1,153,154,155,-1,133,156,157,-1,156,158,157,-1,159,153,160,-1,153,155,160,-1,151,150,161,-1,158,156,162,-1,162,163,158,-1,164,151,161,-1,165,166,167,-1,168,169,170,-1,168,171,172,-1,171,173,172,-1,174,175,176,-1,175,177,176,-1,165,178,166,-1,165,179,178,-1,173,171,180,-1,181,145,182,-1,181,183,145,-1,184,185,186,-1,186,187,184,-1,188,167,189,-1,167,166,189,-1,190,191,192,-1,193,194,195,-1,196,197,198,-1,22,137,138,-1,138,199,22,-1,200,201,199,-1,199,138,200,-1,159,202,153,-1,121,203,204,-1,204,205,121,-1,206,207,208,-1,209,210,211,-1,209,212,210,-1,213,214,125,-1,215,216,127,-1,215,217,216,-1,218,132,219,-1,219,220,218,-1,221,222,223,-1,18,122,16,-1,119,224,225,-1,226,144,227,-1,226,142,144,-1,36,228,64,-1,229,230,231,-1,231,232,229,-1,233,234,235,-1,233,236,234,-1,237,238,94,-1,237,239,238,-1,240,241,242,-1,240,243,241,-1,244,245,181,-1,244,246,245,-1,247,248,249,-1,248,250,249,-1,165,167,194,-1,167,251,194,-1,252,188,253,-1,188,189,253,-1,251,169,254,-1,251,170,169,-1,255,256,257,-1,258,83,259,-1,259,260,258,-1,261,259,262,-1,262,263,261,-1,264,265,266,-1,267,268,255,-1,269,270,255,-1,146,255,271,-1,272,273,255,-1,274,275,255,-1,276,273,277,-1,278,279,280,-1,281,190,96,-1,281,282,190,-1,283,284,285,-1,284,88,285,-1,286,287,288,-1,91,289,66,-1,290,74,291,-1,263,187,186,-1,254,195,194,-1,194,251,254,-1,292,256,275,-1,292,293,256,-1,294,295,296,-1,296,276,294,-1,297,69,298,-1,297,70,69,-1,76,299,77,-1,247,193,176,-1,193,195,176,-1,196,250,197,-1,196,249,250,-1,300,301,302,-1,268,267,303,-1,303,304,268,-1,305,269,219,-1,306,146,271,-1,306,149,146,-1,142,307,308,-1,142,226,307,-1,156,309,310,-1,156,311,309,-1,242,312,313,-1,134,27,19,-1,38,314,39,-1,314,315,39,-1,314,316,315,-1,21,137,22,-1,317,318,50,-1,317,319,318,-1,54,320,321,-1,54,46,320,-1,322,24,36,-1,36,64,322,-1,323,265,324,-1,325,326,327,-1,325,328,326,-1,59,329,330,-1,59,331,329,-1,332,331,333,-1,265,334,206,-1,113,110,335,-1,110,207,335,-1,336,237,93,-1,336,337,237,-1,338,339,340,-1,92,17,93,-1,16,205,341,-1,341,17,16,-1,342,222,55,-1,342,223,222,-1,37,343,344,-1,343,345,344,-1,346,123,103,-1,346,216,123,-1,347,348,349,-1,348,117,349,-1,214,350,125,-1,214,351,350,-1,352,107,101,-1,352,108,107,-1,353,344,354,-1,344,345,354,-1,355,354,356,-1,356,357,355,-1,206,266,265,-1,256,255,275,-1,358,359,297,-1,359,70,297,-1,252,171,168,-1,360,351,13,-1,351,214,13,-1,115,348,11,-1,115,117,348,-1,361,209,211,-1,361,14,209,-1,124,217,235,-1,235,362,124,-1,102,346,103,-1,136,128,102,-1,128,346,102,-1,134,343,27,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlnaviclr_Geo_5_643_coordIndex_2()
		{
			int[] value = {363,364,184,-1,364,365,184,-1,366,105,361,-1,366,98,105,-1,212,18,210,-1,367,112,0,-1,367,208,112,-1,56,368,369,-1,332,333,368,-1,370,371,325,-1,327,326,6,-1,318,49,50,-1,318,372,49,-1,373,25,52,-1,373,26,25,-1,321,320,372,-1,314,374,316,-1,314,375,374,-1,375,38,376,-1,375,314,38,-1,32,317,50,-1,29,315,377,-1,315,316,377,-1,19,28,20,-1,378,22,199,-1,243,135,241,-1,379,312,242,-1,242,241,379,-1,243,240,131,-1,218,156,133,-1,218,311,156,-1,156,310,162,-1,152,153,380,-1,380,150,152,-1,380,381,173,-1,382,383,384,-1,385,270,386,-1,269,268,304,-1,304,220,269,-1,387,21,379,-1,177,248,247,-1,247,176,177,-1,249,388,389,-1,249,196,388,-1,5,390,3,-1,258,391,392,-1,258,393,391,-1,78,391,394,-1,78,79,391,-1,42,244,395,-1,42,41,244,-1,44,47,51,-1,51,396,44,-1,183,294,397,-1,183,398,294,-1,399,296,400,-1,296,295,400,-1,257,401,402,-1,292,275,399,-1,184,187,363,-1,263,186,178,-1,178,261,263,-1,291,73,403,-1,291,74,73,-1,2,404,264,-1,2,405,404,-1,2,367,0,-1,232,406,229,-1,232,407,406,-1,283,285,282,-1,282,281,283,-1,363,67,408,-1,363,187,67,-1,402,382,257,-1,409,399,400,-1,273,274,255,-1,148,272,255,-1,270,271,255,-1,268,269,255,-1,257,267,255,-1,261,260,259,-1,392,82,83,-1,83,258,392,-1,410,411,412,-1,171,252,253,-1,167,188,251,-1,188,170,251,-1,193,249,389,-1,193,247,249,-1,172,173,383,-1,270,306,271,-1,270,385,306,-1,134,102,343,-1,93,237,94,-1,364,413,238,-1,238,239,364,-1,180,414,185,-1,185,415,180,-1,416,324,265,-1,417,418,324,-1,406,419,420,-1,420,229,406,-1,421,339,95,-1,339,338,95,-1,10,422,423,-1,10,104,422,-1,269,220,219,-1,218,133,132,-1,340,339,424,-1,425,426,427,-1,428,92,429,-1,428,17,92,-1,155,430,160,-1,431,378,199,-1,199,201,431,-1,31,20,28,-1,201,200,432,-1,432,433,201,-1,165,193,389,-1,165,194,193,-1,190,97,96,-1,89,88,434,-1,88,284,434,-1,18,17,428,-1,414,180,253,-1,180,171,253,-1,186,185,414,-1,165,389,179,-1,181,182,435,-1,154,153,152,-1,133,129,131,-1,133,157,129,-1,153,202,380,-1,255,146,148,-1,23,378,436,-1,23,22,378,-1,437,145,141,-1,143,308,436,-1,143,142,308,-1,200,138,139,-1,138,30,139,-1,438,181,435,-1,21,387,19,-1,102,134,136,-1,128,136,130,-1,120,119,225,-1,225,362,120,-1,16,122,205,-1,122,121,205,-1,116,115,423,-1,423,439,116,-1,56,55,222,-1,107,106,356,-1,101,350,352,-1,348,347,360,-1,347,351,360,-1,125,350,101,-1,1,434,419,-1,192,408,97,-1,408,67,97,-1,440,434,1,-1,1,0,440,-1,284,283,420,-1,283,441,420,-1,192,97,190,-1,421,442,339,-1,442,424,339,-1,285,90,443,-1,285,88,90,-1,89,444,90,-1,421,445,442,-1,85,99,86,-1,340,429,338,-1,340,427,429,-1,288,446,286,-1,64,63,322,-1,55,58,342,-1,55,57,58,-1,342,60,62,-1,342,58,60,-1,57,56,369,-1,64,228,62,-1,5,447,390,-1,35,318,319,-1,448,372,320,-1,317,32,326,-1,32,6,326,-1,50,33,32,-1,39,315,28,-1,28,27,39,-1,27,343,37,-1,21,23,379,-1,95,429,92,-1,95,338,429,-1,125,126,213,-1,361,105,12,-1,15,12,9,-1,325,327,370,-1,3,449,4,-1,299,450,77,-1,451,288,287,-1,451,231,288,-1,11,423,115,-1,11,10,423,-1,36,319,328,-1,35,319,36,-1,448,374,372,-1,374,448,452,-1,453,396,454,-1,453,455,396,-1,455,456,457,-1,455,453,456,-1,373,372,318,-1,321,372,373,-1,60,330,63,-1,330,60,59,-1,61,57,369,-1,57,61,58,-1,458,459,359,-1,458,460,459,-1,461,5,84,-1,461,462,5,-1,446,450,286,-1,450,446,463,-1,71,359,459,-1,71,70,359,-1,81,259,83,-1,280,259,81,-1,464,427,340,-1,464,465,427,-1,464,99,465,-1,86,99,464,-1,87,444,85,-1,444,87,90,-1,285,466,282,-1,285,443,466,-1,442,466,424,-1,442,191,466,-1,192,413,408,-1,192,445,413,-1,281,441,283,-1,281,289,441,-1,434,420,419,-1,434,284,420,-1,360,11,348,-1,11,360,9,-1,347,350,351,-1,350,347,352,-1,439,113,56,-1,114,113,439,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlnaviclr_Geo_5_643_coordIndex_3()
		{
			int[] value = {356,467,357,-1,356,106,467,-1,109,0,112,-1,109,440,0,-1,56,116,439,-1,222,116,56,-1,103,125,101,-1,123,125,103,-1,215,158,233,-1,215,157,158,-1,236,160,430,-1,236,163,160,-1,135,19,387,-1,135,134,19,-1,435,468,438,-1,468,435,432,-1,431,436,378,-1,431,143,436,-1,189,178,186,-1,178,189,166,-1,469,245,470,-1,469,398,245,-1,412,254,169,-1,412,411,254,-1,164,471,154,-1,471,164,472,-1,341,93,17,-1,341,336,93,-1,196,393,388,-1,196,198,393,-1,197,447,473,-1,197,301,447,-1,198,391,393,-1,198,394,391,-1,182,432,435,-1,182,433,432,-1,236,203,234,-1,236,430,203,-1,427,428,429,-1,426,428,427,-1,425,465,366,-1,425,427,465,-1,100,85,474,-1,100,99,85,-1,210,425,211,-1,210,426,425,-1,475,340,424,-1,464,340,475,-1,238,445,421,-1,445,238,413,-1,1,406,2,-1,1,419,406,-1,417,416,476,-1,417,324,416,-1,287,477,290,-1,287,299,477,-1,127,346,128,-1,216,346,127,-1,164,478,472,-1,478,164,161,-1,150,415,479,-1,415,150,180,-1,408,364,363,-1,364,408,413,-1,102,345,343,-1,102,107,345,-1,386,480,313,-1,305,480,386,-1,436,481,23,-1,308,481,436,-1,306,482,307,-1,385,482,306,-1,483,300,302,-1,483,246,300,-1,293,412,401,-1,293,410,412,-1,82,463,446,-1,392,463,82,-1,383,402,172,-1,383,382,402,-1,397,145,183,-1,484,145,397,-1,277,272,485,-1,272,277,273,-1,175,295,469,-1,175,400,295,-1,71,476,486,-1,459,476,71,-1,487,230,229,-1,487,488,230,-1,441,229,420,-1,487,229,441,-1,444,434,440,-1,444,89,434,-1,406,405,2,-1,407,405,406,-1,71,489,68,-1,489,71,486,-1,476,404,486,-1,416,404,476,-1,403,68,489,-1,403,73,68,-1,451,403,407,-1,451,291,403,-1,80,488,81,-1,230,488,80,-1,179,388,260,-1,388,179,389,-1,485,148,147,-1,485,272,148,-1,274,399,275,-1,399,274,296,-1,172,401,412,-1,401,172,402,-1,410,292,490,-1,292,410,293,-1,490,399,409,-1,399,490,292,-1,174,400,175,-1,400,174,409,-1,298,454,297,-1,453,454,298,-1,455,44,396,-1,455,40,44,-1,43,395,491,-1,395,43,42,-1,484,144,145,-1,227,144,484,-1,395,181,438,-1,395,244,181,-1,40,457,41,-1,455,457,40,-1,76,477,299,-1,76,461,477,-1,473,78,394,-1,462,78,473,-1,463,391,79,-1,463,392,391,-1,75,492,72,-1,75,449,492,-1,41,390,300,-1,457,390,41,-1,449,493,4,-1,493,449,75,-1,470,248,177,-1,470,483,248,-1,379,481,312,-1,379,23,481,-1,385,313,482,-1,386,313,385,-1,220,311,218,-1,304,311,220,-1,303,384,309,-1,303,382,384,-1,381,309,384,-1,309,381,310,-1,384,173,381,-1,384,383,173,-1,202,381,380,-1,202,310,381,-1,131,480,132,-1,240,480,131,-1,387,241,135,-1,379,241,387,-1,49,376,33,-1,49,375,376,-1,45,452,448,-1,45,494,452,-1,139,494,495,-1,140,494,139,-1,452,316,374,-1,316,452,377,-1,375,372,374,-1,372,375,49,-1,358,52,25,-1,52,358,53,-1,318,26,373,-1,318,35,26,-1,359,25,458,-1,25,359,358,-1,329,496,330,-1,329,418,496,-1,325,62,228,-1,325,371,62,-1,265,332,334,-1,265,323,332,-1,369,333,61,-1,369,368,333,-1,335,56,113,-1,335,368,56,-1,266,208,367,-1,266,206,208,-1,264,367,2,-1,367,264,266,-1,478,497,337,-1,478,479,497,-1,120,203,121,-1,120,234,203,-1,119,209,224,-1,209,119,212,-1,364,497,365,-1,497,364,239,-1,191,445,192,-1,191,442,445,-1,90,475,443,-1,90,87,475,-1,474,104,100,-1,474,422,104,-1,62,223,342,-1,62,371,223,-1,224,14,213,-1,14,224,209,-1,13,9,360,-1,15,9,13,-1,34,353,498,-1,499,353,34,-1,370,6,8,-1,370,327,6,-1,221,500,222,-1,500,221,501,-1,8,355,501,-1,8,498,355,-1,460,476,459,-1,460,417,476,-1,501,357,500,-1,501,355,357,-1,370,501,221,-1,8,501,370,-1,7,498,8,-1,7,34,498,-1,354,498,353,-1,354,355,498,-1,344,499,37,-1,353,499,344,-1,356,345,107,-1,354,345,356,-1,352,349,108,-1,352,347,349,-1,371,221,223,-1,221,371,370,-1,87,464,475,-1,86,464,87,-1,440,85,444,-1,109,85,440,-1,443,424,466,-1,443,475,424,-1,235,120,362,-1,120,235,234,-1,205,471,341,-1,205,204,471,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlnaviclr_Geo_5_643_coordIndex_4()
		{
			int[] value = {122,212,119,-1,122,18,212,-1,337,239,237,-1,337,497,239,-1,472,337,336,-1,337,472,478,-1,479,365,497,-1,479,415,365,-1,264,416,265,-1,264,404,416,-1,334,207,206,-1,207,334,335,-1,368,334,332,-1,368,335,334,-1,61,331,59,-1,61,333,331,-1,331,323,329,-1,323,331,332,-1,328,228,36,-1,325,228,328,-1,418,323,324,-1,323,418,329,-1,496,417,460,-1,496,418,417,-1,24,458,25,-1,458,24,322,-1,51,46,54,-1,51,47,46,-1,494,377,452,-1,377,494,140,-1,48,494,45,-1,48,495,494,-1,140,29,377,-1,140,30,29,-1,304,309,311,-1,304,303,309,-1,305,132,480,-1,219,132,305,-1,149,307,226,-1,306,307,149,-1,312,482,313,-1,481,482,312,-1,301,250,302,-1,250,301,197,-1,245,483,470,-1,246,483,245,-1,456,449,3,-1,492,449,456,-1,244,300,246,-1,41,300,244,-1,462,447,5,-1,462,473,447,-1,84,477,461,-1,477,84,502,-1,492,453,298,-1,492,456,453,-1,182,437,433,-1,182,145,437,-1,491,438,468,-1,438,491,395,-1,43,495,48,-1,43,491,495,-1,53,297,454,-1,358,297,53,-1,295,398,469,-1,294,398,295,-1,503,409,174,-1,503,490,409,-1,411,490,503,-1,411,410,490,-1,274,276,296,-1,273,276,274,-1,484,147,227,-1,484,485,147,-1,488,280,81,-1,280,488,278,-1,290,451,287,-1,290,291,451,-1,407,489,405,-1,407,403,489,-1,298,72,492,-1,69,72,298,-1,486,405,489,-1,405,486,404,-1,289,487,441,-1,487,289,91,-1,91,488,487,-1,91,278,488,-1,288,230,80,-1,288,231,230,-1,65,278,91,-1,65,279,278,-1,276,397,294,-1,276,277,397,-1,260,178,179,-1,260,261,178,-1,277,484,397,-1,485,484,277,-1,267,382,303,-1,267,257,382,-1,187,262,67,-1,187,263,262,-1,286,299,287,-1,450,299,286,-1,401,256,293,-1,256,401,257,-1,483,250,248,-1,483,302,250,-1,481,307,482,-1,481,308,307,-1,305,270,269,-1,305,386,270,-1,313,240,242,-1,480,240,313,-1,161,479,478,-1,479,161,150,-1,154,204,155,-1,471,204,154,-1,235,215,233,-1,217,215,235,-1,232,451,407,-1,232,231,451,-1,290,502,74,-1,290,477,502,-1,227,149,226,-1,149,227,147,-1,495,468,139,-1,495,491,468,-1,213,225,224,-1,213,126,225,-1,124,216,217,-1,124,123,216,-1,13,213,14,-1,213,13,214,-1,211,366,361,-1,211,425,366,-1,426,18,428,-1,210,18,426,-1,208,110,112,-1,207,110,208,-1,98,465,99,-1,98,366,465,-1,310,159,162,-1,310,202,159,-1,431,433,437,-1,433,431,201,-1,473,198,197,-1,198,473,394,-1,300,447,301,-1,300,390,447,-1,388,258,260,-1,388,393,258,-1,471,336,341,-1,471,472,336,-1,168,188,252,-1,168,170,188,-1,184,415,185,-1,184,365,415,-1,411,195,254,-1,503,195,411,-1,169,172,412,-1,168,172,169,-1,253,186,414,-1,186,253,189,-1,398,181,245,-1,398,183,181,-1,175,470,177,-1,175,469,470,-1,503,176,195,-1,176,503,174,-1,154,151,164,-1,152,151,154,-1,162,160,163,-1,162,159,160,-1,380,180,150,-1,380,173,180,-1,143,437,141,-1,437,143,431,-1,468,200,139,-1,200,468,432,-1,136,243,130,-1,243,136,135,-1,130,131,129,-1,243,131,130,-1,233,163,236,-1,233,158,163,-1,129,215,127,-1,215,129,157,-1,225,124,362,-1,124,225,126,-1,357,118,500,-1,118,357,467,-1,118,222,500,-1,116,222,118,-1,106,349,467,-1,106,108,349,-1,467,117,118,-1,467,349,117,-1,423,114,439,-1,422,114,423,-1,111,422,474,-1,111,114,422,-1,12,104,10,-1,12,105,104,-1,96,289,281,-1,96,66,289,-1,474,109,111,-1,474,85,109,-1,282,191,190,-1,191,282,466,-1,203,155,204,-1,430,155,203,-1,493,74,502,-1,75,74,493,-1,280,262,259,-1,280,279,262,-1,80,446,288,-1,80,82,446,-1,79,450,463,-1,79,77,450,-1,78,461,76,-1,461,78,462,-1,4,502,84,-1,502,4,493,-1,69,73,72,-1,69,68,73,-1,279,67,262,-1,279,65,67,-1,496,63,330,-1,496,322,63,-1,322,460,458,-1,322,496,460,-1,52,321,373,-1,54,321,52,-1,454,51,53,-1,454,396,51,-1,457,3,390,-1,457,456,3,-1,46,448,320,-1,45,448,46,-1,44,48,47,-1,44,43,48,-1,29,28,315,-1,31,28,29,-1,499,33,376,-1,34,33,499,-1,376,37,499,-1,376,38,37,-1,317,328,319,-1,317,326,328,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlnaviclr_Geo_5_643_coordIndex_5()
		{
			int[] value = {421,94,238,-1,421,95,94,-1,12,14,361,-1,14,12,15,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlnaviclr_Geo_5_643_normalIndex_1()
		{
			int[] value = {361,429,344,-1,132,203,290,-1,40,37,83,-1,199,245,251,-1,199,173,245,-1,140,139,166,-1,86,177,101,-1,102,99,240,-1,240,311,365,-1,19,36,24,-1,46,44,102,-1,39,50,87,-1,6,0,37,-1,0,21,37,-1,8,20,19,-1,19,24,8,-1,40,6,37,-1,12,1,14,-1,14,46,12,-1,95,108,104,-1,95,104,63,-1,63,80,95,-1,31,48,49,-1,49,42,31,-1,11,0,16,-1,58,32,60,-1,58,45,32,-1,255,337,234,-1,185,94,64,-1,185,169,94,-1,114,43,59,-1,114,64,43,-1,446,413,479,-1,314,258,231,-1,231,266,314,-1,268,320,270,-1,270,216,268,-1,402,452,430,-1,452,484,430,-1,447,458,451,-1,458,482,451,-1,203,309,290,-1,436,391,421,-1,292,440,414,-1,413,446,396,-1,269,376,405,-1,269,405,332,-1,479,364,417,-1,479,413,364,-1,232,300,256,-1,324,286,296,-1,223,232,256,-1,223,187,232,-1,455,327,441,-1,439,351,386,-1,439,343,351,-1,386,334,367,-1,386,351,334,-1,384,426,461,-1,426,469,461,-1,327,286,324,-1,82,91,61,-1,61,67,82,-1,229,181,155,-1,181,130,155,-1,235,315,253,-1,315,341,253,-1,377,360,330,-1,156,333,247,-1,257,240,87,-1,240,99,87,-1,217,257,50,-1,257,87,50,-1,38,50,28,-1,119,382,192,-1,119,246,382,-1,119,183,246,-1,214,310,209,-1,214,338,310,-1,476,443,282,-1,170,179,96,-1,330,228,193,-1,228,117,193,-1,213,170,71,-1,170,96,71,-1,443,476,498,-1,117,228,206,-1,206,72,117,-1,403,443,498,-1,454,308,328,-1,425,404,474,-1,425,378,162,-1,378,201,162,-1,165,225,431,-1,225,423,431,-1,454,473,308,-1,454,499,473,-1,201,378,450,-1,131,183,204,-1,131,182,183,-1,478,480,464,-1,464,483,478,-1,401,328,371,-1,328,308,371,-1,279,295,323,-1,442,448,385,-1,445,400,435,-1,311,257,217,-1,217,368,311,-1,137,211,368,-1,368,217,137,-1,213,239,170,-1,61,57,73,-1,73,77,61,-1,307,304,313,-1,118,135,136,-1,118,84,135,-1,116,88,155,-1,159,273,235,-1,159,210,273,-1,316,360,284,-1,284,244,316,-1,254,353,263,-1,101,67,86,-1,82,121,122,-1,363,246,325,-1,363,382,246,-1,20,74,59,-1,388,410,355,-1,355,342,388,-1,128,89,164,-1,128,70,89,-1,470,437,405,-1,470,488,437,-1,394,415,427,-1,394,373,415,-1,129,133,131,-1,129,148,133,-1,463,419,438,-1,419,390,438,-1,454,328,448,-1,328,467,448,-1,392,401,380,-1,401,371,380,-1,467,404,409,-1,467,474,404,-1,191,167,158,-1,492,482,501,-1,501,503,492,-1,502,501,500,-1,500,493,502,-1,301,250,322,-1,163,219,191,-1,233,236,191,-1,214,191,249,-1,226,224,191,-1,208,184,191,-1,260,224,276,-1,422,471,472,-1,248,279,364,-1,248,242,279,-1,262,293,283,-1,293,292,283,-1,434,329,411,-1,396,366,413,-1,297,270,298,-1,493,483,464,-1,409,385,448,-1,448,467,409,-1,120,167,184,-1,120,111,167,-1,218,176,202,-1,202,260,218,-1,149,258,154,-1,149,231,258,-1,402,350,452,-1,463,442,431,-1,442,385,431,-1,445,390,400,-1,445,438,390,-1,143,280,272,-1,219,163,171,-1,171,230,219,-1,321,233,284,-1,352,214,249,-1,352,338,214,-1,382,416,444,-1,382,363,416,-1,228,190,207,-1,228,252,190,-1,427,453,418,-1,156,46,102,-1,1,4,14,-1,4,18,14,-1,4,17,18,-1,240,257,311,-1,5,25,16,-1,5,3,25,-1,45,35,34,-1,45,48,35,-1,33,19,20,-1,20,59,33,-1,189,250,197,-1,55,7,47,-1,55,10,7,-1,94,157,54,-1,94,212,157,-1,222,212,238,-1,250,259,307,-1,334,351,285,-1,351,304,285,-1,406,470,376,-1,406,496,470,-1,319,349,370,-1,269,177,376,-1,86,77,180,-1,180,177,86,-1,237,353,255,-1,237,263,353,-1,12,85,75,-1,85,215,75,-1,317,229,296,-1,317,273,229,-1,346,288,466,-1,288,461,466,-1,88,168,155,-1,88,150,168,-1,271,327,324,-1,271,441,327,-1,65,75,178,-1,75,215,178,-1,194,178,335,-1,335,362,194,-1,307,322,250,-1,167,191,184,-1,81,126,149,-1,126,231,149,-1,392,378,425,-1,175,150,140,-1,150,88,140,-1,384,288,251,-1,384,461,288,-1,151,118,136,-1,151,139,118,-1,181,210,164,-1,164,147,181,-1,286,317,296,-1,247,315,286,-1,315,317,286,-1,156,85,46,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlnaviclr_Geo_5_643_normalIndex_2()
		{
			int[] value = {456,460,478,-1,460,477,478,-1,200,187,151,-1,200,232,187,-1,84,101,135,-1,287,343,361,-1,287,313,343,-1,337,267,261,-1,222,238,267,-1,107,146,55,-1,47,7,40,-1,25,11,16,-1,25,26,11,-1,27,36,32,-1,27,24,36,-1,34,35,26,-1,4,15,17,-1,4,9,15,-1,9,1,2,-1,9,4,1,-1,6,5,16,-1,39,18,22,-1,18,17,22,-1,102,44,99,-1,205,311,368,-1,373,333,415,-1,424,453,427,-1,427,415,424,-1,373,394,377,-1,316,228,330,-1,316,252,228,-1,228,207,206,-1,282,170,221,-1,221,476,282,-1,221,98,201,-1,125,68,97,-1,354,236,345,-1,233,219,230,-1,230,244,233,-1,318,240,424,-1,423,419,463,-1,463,431,423,-1,438,491,459,-1,438,445,491,-1,290,141,132,-1,492,485,462,-1,492,489,485,-1,430,485,433,-1,430,484,485,-1,104,129,113,-1,104,108,129,-1,80,49,58,-1,58,92,80,-1,182,218,278,-1,182,152,218,-1,145,202,123,-1,202,176,123,-1,158,110,105,-1,120,184,145,-1,478,483,456,-1,493,464,473,-1,473,502,493,-1,298,320,312,-1,298,270,320,-1,344,306,301,-1,344,348,306,-1,344,287,361,-1,342,374,388,-1,342,340,374,-1,262,283,242,-1,242,248,262,-1,456,479,408,-1,456,483,479,-1,105,125,158,-1,90,145,123,-1,224,208,191,-1,209,226,191,-1,236,249,191,-1,219,233,191,-1,158,163,191,-1,502,503,501,-1,462,451,482,-1,482,492,462,-1,62,127,134,-1,378,392,380,-1,328,401,467,-1,401,474,467,-1,442,438,459,-1,442,463,438,-1,162,201,68,-1,236,352,249,-1,236,354,352,-1,156,286,85,-1,376,470,405,-1,460,420,437,-1,437,488,460,-1,450,486,480,-1,480,487,450,-1,277,197,250,-1,161,124,197,-1,374,407,372,-1,372,388,374,-1,347,349,332,-1,349,319,332,-1,245,336,356,-1,245,223,336,-1,233,244,284,-1,316,330,360,-1,370,349,397,-1,198,196,289,-1,174,269,241,-1,174,177,269,-1,96,52,71,-1,79,205,368,-1,368,211,79,-1,87,99,44,-1,211,137,138,-1,138,186,211,-1,454,442,459,-1,454,448,442,-1,279,417,364,-1,440,292,432,-1,292,293,432,-1,101,177,174,-1,486,450,380,-1,450,378,380,-1,464,480,486,-1,454,459,499,-1,131,204,172,-1,179,170,282,-1,330,253,377,-1,330,193,253,-1,170,239,221,-1,191,214,209,-1,365,205,274,-1,365,311,205,-1,78,183,119,-1,192,444,274,-1,192,382,444,-1,137,217,38,-1,217,50,38,-1,103,131,172,-1,240,318,102,-1,286,156,247,-1,315,247,341,-1,91,82,122,-1,122,147,91,-1,86,67,77,-1,67,61,77,-1,426,384,356,-1,356,375,426,-1,337,255,353,-1,327,455,335,-1,324,168,271,-1,288,346,175,-1,346,150,175,-1,155,168,324,-1,429,432,407,-1,323,408,417,-1,408,479,417,-1,481,432,429,-1,429,361,481,-1,293,262,372,-1,262,369,372,-1,323,417,279,-1,347,339,349,-1,339,397,349,-1,283,414,381,-1,283,292,414,-1,440,495,414,-1,347,299,339,-1,436,300,391,-1,370,241,319,-1,370,289,241,-1,411,468,434,-1,59,43,33,-1,255,185,237,-1,255,234,185,-1,237,64,114,-1,237,185,64,-1,234,337,261,-1,59,74,114,-1,290,294,141,-1,8,25,3,-1,30,26,35,-1,5,6,7,-1,6,40,7,-1,16,0,6,-1,14,18,44,-1,44,46,14,-1,46,85,12,-1,240,365,424,-1,332,241,269,-1,332,319,241,-1,155,130,116,-1,151,187,173,-1,166,173,199,-1,55,47,107,-1,132,153,203,-1,350,457,452,-1,305,411,329,-1,305,355,411,-1,251,356,384,-1,251,245,356,-1,20,3,10,-1,8,3,20,-1,30,15,26,-1,15,30,23,-1,115,92,106,-1,115,100,92,-1,100,112,109,-1,100,115,112,-1,27,26,25,-1,34,26,27,-1,64,54,43,-1,54,64,94,-1,169,234,261,-1,234,169,185,-1,51,188,126,-1,51,93,188,-1,358,290,309,-1,358,387,290,-1,468,457,434,-1,457,468,475,-1,266,126,188,-1,266,231,126,-1,458,501,482,-1,472,501,458,-1,389,289,370,-1,389,291,289,-1,389,300,291,-1,391,300,389,-1,421,495,436,-1,495,421,414,-1,283,357,242,-1,283,381,357,-1,339,357,397,-1,339,295,357,-1,323,420,408,-1,323,299,420,-1,248,369,262,-1,248,366,369,-1,432,372,407,-1,432,293,372,-1,175,251,288,-1,251,175,199,-1,346,168,150,-1,168,346,271,-1,375,334,337,-1,367,334,375,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlnaviclr_Geo_5_643_normalIndex_3()
		{
			int[] value = {335,465,362,-1,335,455,465,-1,439,361,343,-1,439,481,361,-1,337,426,375,-1,353,426,337,-1,296,155,324,-1,229,155,296,-1,159,117,128,-1,159,193,117,-1,70,71,52,-1,70,72,71,-1,333,102,318,-1,333,156,102,-1,172,53,103,-1,53,172,138,-1,79,274,205,-1,79,192,274,-1,371,473,464,-1,473,371,308,-1,195,133,264,-1,195,152,133,-1,134,409,404,-1,134,127,409,-1,403,160,179,-1,160,403,398,-1,180,376,177,-1,180,406,376,-1,445,489,491,-1,445,435,489,-1,400,294,395,-1,400,280,294,-1,435,485,489,-1,435,433,485,-1,204,138,172,-1,204,186,138,-1,70,57,89,-1,70,52,57,-1,289,174,241,-1,196,174,289,-1,198,291,200,-1,198,289,291,-1,256,436,359,-1,256,300,436,-1,135,198,136,-1,135,196,198,-1,412,370,397,-1,389,370,412,-1,437,299,347,-1,299,437,420,-1,429,374,344,-1,429,407,374,-1,161,277,243,-1,161,197,277,-1,329,326,297,-1,329,350,326,-1,235,317,315,-1,273,317,235,-1,403,497,398,-1,497,403,498,-1,476,487,494,-1,487,476,450,-1,408,460,456,-1,460,408,420,-1,286,215,85,-1,286,327,215,-1,345,383,418,-1,321,383,345,-1,274,449,365,-1,444,449,274,-1,352,428,416,-1,354,428,352,-1,265,143,272,-1,265,148,143,-1,111,134,110,-1,111,62,134,-1,451,475,468,-1,462,475,451,-1,68,105,162,-1,68,125,105,-1,278,183,182,-1,302,183,278,-1,276,226,281,-1,226,276,224,-1,225,176,195,-1,225,123,176,-1,266,243,303,-1,188,243,266,-1,393,410,388,-1,393,399,410,-1,369,388,372,-1,393,388,369,-1,495,432,481,-1,495,440,432,-1,374,348,344,-1,340,348,374,-1,266,331,314,-1,331,266,303,-1,243,306,303,-1,277,306,243,-1,312,314,331,-1,312,320,314,-1,305,312,340,-1,305,298,312,-1,447,399,458,-1,410,399,447,-1,499,491,503,-1,491,499,459,-1,281,209,310,-1,281,226,209,-1,208,145,184,-1,145,208,202,-1,162,110,134,-1,110,162,105,-1,62,120,76,-1,120,62,111,-1,76,145,90,-1,145,76,120,-1,165,123,225,-1,123,165,90,-1,154,106,149,-1,115,106,154,-1,100,80,92,-1,100,95,80,-1,63,113,56,-1,113,63,104,-1,302,246,183,-1,325,246,302,-1,113,131,103,-1,113,129,131,-1,95,109,108,-1,100,109,95,-1,402,326,350,-1,402,358,326,-1,395,430,433,-1,387,430,395,-1,475,485,484,-1,475,462,485,-1,216,142,268,-1,216,153,142,-1,108,141,143,-1,109,141,108,-1,153,227,203,-1,227,153,216,-1,264,419,423,-1,264,265,419,-1,424,449,453,-1,424,365,449,-1,354,418,428,-1,345,418,354,-1,244,252,316,-1,230,252,244,-1,171,97,190,-1,171,125,97,-1,98,190,97,-1,190,98,207,-1,97,201,98,-1,97,68,201,-1,239,98,221,-1,239,207,98,-1,377,383,360,-1,394,383,377,-1,318,415,333,-1,424,415,318,-1,11,2,0,-1,11,9,2,-1,31,23,30,-1,31,29,23,-1,38,29,41,-1,28,29,38,-1,23,17,15,-1,17,23,22,-1,9,26,15,-1,26,9,11,-1,81,32,36,-1,32,81,60,-1,25,24,27,-1,25,8,24,-1,126,36,51,-1,36,126,81,-1,157,66,54,-1,157,124,66,-1,55,114,74,-1,55,146,114,-1,250,222,259,-1,250,189,222,-1,261,238,169,-1,261,267,238,-1,285,337,334,-1,285,267,337,-1,322,313,287,-1,322,307,313,-1,301,287,344,-1,287,301,322,-1,497,490,496,-1,497,494,490,-1,91,57,61,-1,91,89,57,-1,82,118,121,-1,118,82,84,-1,460,490,477,-1,490,460,488,-1,295,299,323,-1,295,339,299,-1,414,412,381,-1,414,421,412,-1,359,223,256,-1,359,336,223,-1,114,263,237,-1,114,146,263,-1,121,139,116,-1,139,121,118,-1,140,199,175,-1,166,199,140,-1,21,65,69,-1,13,65,21,-1,107,40,83,-1,107,47,40,-1,254,379,353,-1,379,254,220,-1,83,194,220,-1,83,69,194,-1,93,243,188,-1,93,161,243,-1,220,362,379,-1,220,194,362,-1,107,220,254,-1,83,220,107,-1,37,69,83,-1,37,21,69,-1,178,69,65,-1,178,194,69,-1,75,13,12,-1,65,13,75,-1,335,215,327,-1,178,215,335,-1,271,466,441,-1,271,346,466,-1,146,254,263,-1,254,146,107,-1,421,389,412,-1,391,389,421,-1,481,436,495,-1,439,436,481,-1,381,397,357,-1,381,412,397,-1,164,91,147,-1,91,164,89,-1,77,160,180,-1,77,73,160,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlnaviclr_Geo_5_643_normalIndex_4()
		{
			int[] value = {67,84,82,-1,67,101,84,-1,496,488,470,-1,496,490,488,-1,398,496,406,-1,496,398,497,-1,494,477,490,-1,494,487,477,-1,301,277,250,-1,301,306,277,-1,259,304,307,-1,304,259,285,-1,267,259,222,-1,267,285,259,-1,169,212,94,-1,169,238,212,-1,212,189,157,-1,189,212,222,-1,10,74,20,-1,55,74,10,-1,124,189,197,-1,189,124,157,-1,66,161,93,-1,66,124,161,-1,19,51,36,-1,51,19,33,-1,58,48,45,-1,58,49,48,-1,29,22,23,-1,22,29,28,-1,42,29,31,-1,42,41,29,-1,28,39,22,-1,28,50,39,-1,230,190,252,-1,230,171,190,-1,321,360,383,-1,284,360,321,-1,338,416,363,-1,352,416,338,-1,453,428,418,-1,449,428,453,-1,280,390,272,-1,390,280,400,-1,133,265,264,-1,148,265,133,-1,112,153,132,-1,142,153,112,-1,129,143,148,-1,108,143,129,-1,387,294,290,-1,387,395,294,-1,309,326,358,-1,326,309,275,-1,142,115,154,-1,142,112,115,-1,204,78,186,-1,204,183,78,-1,56,103,53,-1,103,56,113,-1,63,41,42,-1,63,56,41,-1,60,149,106,-1,81,149,60,-1,176,152,195,-1,218,152,176,-1,144,90,165,-1,144,76,90,-1,127,76,144,-1,127,62,76,-1,208,260,202,-1,224,260,208,-1,302,310,325,-1,302,281,310,-1,399,472,458,-1,472,399,422,-1,297,305,329,-1,297,298,305,-1,340,331,348,-1,340,312,331,-1,154,268,142,-1,258,268,154,-1,303,348,331,-1,348,303,306,-1,366,393,369,-1,393,366,396,-1,396,399,393,-1,396,422,399,-1,411,410,447,-1,411,355,410,-1,446,422,396,-1,446,471,422,-1,260,278,218,-1,260,276,278,-1,503,473,499,-1,503,502,473,-1,276,302,278,-1,281,302,276,-1,163,125,171,-1,163,158,125,-1,483,500,479,-1,483,493,500,-1,434,350,329,-1,457,350,434,-1,110,167,111,-1,167,110,158,-1,265,390,419,-1,265,272,390,-1,449,416,428,-1,449,444,416,-1,321,236,233,-1,321,345,236,-1,418,394,427,-1,383,394,418,-1,498,494,497,-1,494,498,476,-1,179,73,96,-1,160,73,179,-1,164,159,128,-1,210,159,164,-1,342,305,340,-1,342,355,305,-1,297,275,270,-1,297,326,275,-1,325,338,363,-1,338,325,310,-1,41,53,38,-1,41,56,53,-1,116,122,121,-1,116,130,122,-1,181,273,210,-1,181,229,273,-1,140,116,139,-1,116,140,88,-1,136,200,151,-1,136,198,200,-1,196,101,174,-1,135,101,196,-1,313,351,343,-1,304,351,313,-1,232,291,300,-1,232,200,291,-1,207,213,206,-1,207,239,213,-1,79,186,78,-1,186,79,211,-1,395,435,400,-1,435,395,433,-1,143,294,280,-1,143,141,294,-1,491,492,503,-1,491,489,492,-1,160,406,180,-1,160,398,406,-1,425,401,392,-1,425,474,401,-1,478,487,480,-1,478,477,487,-1,127,385,409,-1,144,385,127,-1,404,162,134,-1,425,162,404,-1,380,464,486,-1,464,380,371,-1,152,131,133,-1,152,182,131,-1,225,264,423,-1,225,195,264,-1,144,431,385,-1,431,144,165,-1,179,443,403,-1,282,443,179,-1,206,71,72,-1,206,213,71,-1,221,450,476,-1,221,201,450,-1,192,78,119,-1,78,192,79,-1,53,137,38,-1,137,53,138,-1,247,373,341,-1,373,247,333,-1,341,377,253,-1,373,377,341,-1,128,72,70,-1,128,117,72,-1,253,159,235,-1,159,253,193,-1,122,181,147,-1,181,122,130,-1,362,469,379,-1,469,362,465,-1,469,353,379,-1,426,353,469,-1,455,466,465,-1,455,441,466,-1,465,461,469,-1,465,466,461,-1,356,367,375,-1,336,367,356,-1,386,336,359,-1,386,367,336,-1,173,223,245,-1,173,187,223,-1,364,366,248,-1,364,413,366,-1,359,439,386,-1,359,436,439,-1,242,295,279,-1,295,242,357,-1,57,96,73,-1,52,96,57,-1,227,270,275,-1,216,270,227,-1,472,500,501,-1,472,471,500,-1,447,468,411,-1,447,451,468,-1,484,457,475,-1,484,452,457,-1,430,358,402,-1,358,430,387,-1,203,275,309,-1,275,203,227,-1,258,320,268,-1,258,314,320,-1,471,479,500,-1,471,446,479,-1,66,43,54,-1,66,33,43,-1,33,93,51,-1,33,66,93,-1,32,34,27,-1,45,34,32,-1,106,58,60,-1,106,92,58,-1,109,132,141,-1,109,112,132,-1,48,30,35,-1,31,30,48,-1,80,42,49,-1,80,63,42,-1,39,44,18,-1,87,44,39,-1,13,0,2,-1,21,0,13,-1,2,12,13,-1,2,1,12,-1,5,10,3,-1,5,7,10,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlnaviclr_Geo_5_643_normalIndex_5()
		{
			int[] value = {347,405,437,-1,347,332,405,-1,173,139,151,-1,139,173,166,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getloscoxae_Geo_5_649_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,3,4,-1,5,6,7,-1,8,9,10,-1,11,12,13,-1,14,15,16,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,26,27,19,-1,27,28,19,-1,29,30,31,-1,29,32,30,-1,33,34,32,-1,34,35,32,-1,36,37,38,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,45,48,46,-1,49,50,51,-1,52,53,54,-1,55,56,57,-1,57,58,55,-1,59,60,49,-1,59,61,60,-1,62,63,64,-1,63,65,64,-1,66,67,68,-1,69,70,71,-1,72,73,74,-1,75,76,73,-1,77,78,79,-1,80,81,82,-1,83,84,85,-1,86,87,85,-1,88,89,90,-1,90,91,88,-1,92,93,94,-1,92,95,93,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,105,108,106,-1,109,110,111,-1,112,111,113,-1,93,114,115,-1,116,117,118,-1,116,67,117,-1,119,68,67,-1,67,116,119,-1,120,92,121,-1,120,95,92,-1,122,123,124,-1,124,125,122,-1,126,127,128,-1,127,129,128,-1,130,131,132,-1,133,134,135,-1,135,136,133,-1,137,138,139,-1,137,140,138,-1,141,142,143,-1,141,144,142,-1,145,146,147,-1,145,148,146,-1,149,150,151,-1,72,152,153,-1,72,154,152,-1,155,156,157,-1,156,158,157,-1,159,160,161,-1,160,162,161,-1,161,163,159,-1,160,164,162,-1,165,166,167,-1,166,168,167,-1,169,170,171,-1,172,173,40,-1,173,41,40,-1,174,175,176,-1,175,177,176,-1,178,179,180,-1,180,181,178,-1,182,183,184,-1,182,185,183,-1,186,187,188,-1,189,190,191,-1,189,192,190,-1,193,194,195,-1,193,147,194,-1,196,145,197,-1,196,198,145,-1,199,200,201,-1,199,143,200,-1,202,203,141,-1,141,204,202,-1,205,137,206,-1,205,136,137,-1,207,208,209,-1,210,211,212,-1,210,213,211,-1,92,214,121,-1,92,84,214,-1,215,119,216,-1,217,74,218,-1,218,219,217,-1,82,124,123,-1,82,81,124,-1,220,221,68,-1,222,223,224,-1,225,69,226,-1,227,228,229,-1,230,231,232,-1,230,233,231,-1,234,235,236,-1,234,108,235,-1,237,238,12,-1,70,69,239,-1,69,225,239,-1,240,241,242,-1,241,243,242,-1,243,244,242,-1,245,246,247,-1,245,248,246,-1,249,250,251,-1,251,127,249,-1,252,253,254,-1,253,255,254,-1,37,36,29,-1,256,257,258,-1,256,259,257,-1,127,251,260,-1,260,129,127,-1,36,33,29,-1,261,262,65,-1,26,263,31,-1,264,265,25,-1,25,266,264,-1,267,268,269,-1,270,271,55,-1,270,272,271,-1,185,273,183,-1,274,275,276,-1,277,278,279,-1,278,280,279,-1,223,281,282,-1,282,283,223,-1,284,285,286,-1,284,287,285,-1,288,275,274,-1,289,290,291,-1,289,292,290,-1,293,294,229,-1,229,295,293,-1,231,296,297,-1,298,236,299,-1,299,300,298,-1,301,302,303,-1,304,305,207,-1,304,277,305,-1,306,307,308,-1,308,309,306,-1,310,311,306,-1,312,313,314,-1,315,316,4,-1,315,3,317,-1,318,319,320,-1,318,321,319,-1,322,323,324,-1,325,62,326,-1,326,327,325,-1,328,329,330,-1,331,332,333,-1,332,330,334,-1,335,336,337,-1,338,339,327,-1,340,341,342,-1,343,337,336,-1,343,341,337,-1,344,345,346,-1,345,347,346,-1,348,349,350,-1,349,351,350,-1,352,239,353,-1,354,222,355,-1,356,357,353,-1,357,286,353,-1,354,358,15,-1,359,15,14,-1,360,104,71,-1,361,69,71,-1,16,362,14,-1,363,364,358,-1,358,365,363,-1,363,366,367,-1,367,364,363,-1,16,368,369,-1,368,370,369,-1,356,353,371,-1,353,372,371,-1,361,373,226,-1,226,69,361,-1,374,361,375,-1,376,100,301,-1,376,377,100,-1,186,276,275,-1,378,379,380,-1,381,382,383,-1,383,384,381,-1,381,385,382,-1,379,386,387,-1,387,388,379,-1,186,188,389,-1,191,276,390,-1,191,190,276,-1,99,101,391,-1,392,89,393,-1,394,395,396,-1,395,397,396,-1,398,101,373,-1,97,96,395,-1,399,96,400,-1,400,401,399,-1,402,403,404,-1,404,405,402,-1,406,407,403,-1,400,98,93,-1,406,408,409,-1,410,407,411,-1,412,413,387,-1,75,414,405,-1,75,73,414,-1,415,404,410,-1,81,78,213,-1,81,80,78,-1,211,416,417,-1,417,74,211,-1,417,218,74,-1,418,419,420,-1,64,326,62,-1,421,422,62,-1,421,423,422,-1,424,149,425,-1,426,427,144,-1,427,142,144,-1,428,429,140,-1,429,138,140,-1,430,431,432,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getloscoxae_Geo_5_649_coordIndex_2()
		{
			int[] value = {432,433,430,-1,432,434,433,-1,433,435,436,-1,433,437,435,-1,438,436,435,-1,439,418,219,-1,219,440,439,-1,417,416,441,-1,416,442,441,-1,436,443,430,-1,436,444,443,-1,445,446,447,-1,448,449,450,-1,451,452,453,-1,454,455,456,-1,457,458,459,-1,460,461,462,-1,463,464,344,-1,464,345,344,-1,465,463,466,-1,466,467,465,-1,466,468,467,-1,427,469,470,-1,465,471,463,-1,472,471,473,-1,474,469,427,-1,427,475,474,-1,476,426,477,-1,478,479,480,-1,481,464,482,-1,483,484,485,-1,483,486,487,-1,485,484,488,-1,489,490,491,-1,492,493,494,-1,492,495,493,-1,492,496,497,-1,498,499,497,-1,497,496,500,-1,500,498,497,-1,501,502,503,-1,503,504,501,-1,505,506,507,-1,505,500,506,-1,508,504,500,-1,509,510,499,-1,511,512,513,-1,513,514,511,-1,514,515,516,-1,514,513,515,-1,485,515,421,-1,421,486,485,-1,423,421,513,-1,517,518,513,-1,519,520,521,-1,517,522,523,-1,517,519,522,-1,524,525,523,-1,523,526,524,-1,526,522,521,-1,521,527,526,-1,526,528,529,-1,529,524,526,-1,530,531,532,-1,530,533,531,-1,534,535,536,-1,536,537,534,-1,538,539,540,-1,538,541,539,-1,542,543,544,-1,543,545,544,-1,543,546,541,-1,543,547,546,-1,307,547,542,-1,307,548,547,-1,549,315,317,-1,550,551,317,-1,2,552,3,-1,553,312,2,-1,554,555,556,-1,557,558,556,-1,557,559,558,-1,560,561,562,-1,562,563,560,-1,564,560,565,-1,564,561,560,-1,566,567,564,-1,566,568,567,-1,567,569,561,-1,570,571,113,-1,572,554,556,-1,573,574,575,-1,573,576,574,-1,573,577,578,-1,573,575,577,-1,579,555,578,-1,579,557,555,-1,563,562,580,-1,580,581,563,-1,581,580,582,-1,583,584,572,-1,583,113,585,-1,576,584,586,-1,584,583,586,-1,587,588,589,-1,587,590,588,-1,591,560,563,-1,563,592,591,-1,593,594,592,-1,595,596,581,-1,597,598,593,-1,599,597,596,-1,596,600,599,-1,601,599,602,-1,599,600,602,-1,172,21,603,-1,172,40,21,-1,604,605,606,-1,604,607,605,-1,608,43,604,-1,607,598,597,-1,607,609,598,-1,605,599,601,-1,20,610,611,-1,22,612,610,-1,613,612,614,-1,615,616,617,-1,615,618,616,-1,619,620,621,-1,619,622,620,-1,52,623,624,-1,53,625,626,-1,627,628,629,-1,630,591,631,-1,632,591,594,-1,633,593,598,-1,634,635,618,-1,635,613,618,-1,619,54,636,-1,619,52,54,-1,637,638,639,-1,640,335,334,-1,641,642,643,-1,641,644,642,-1,645,635,634,-1,645,646,635,-1,642,647,643,-1,642,645,647,-1,641,648,644,-1,641,649,648,-1,650,631,633,-1,651,652,650,-1,653,645,642,-1,653,654,645,-1,655,656,657,-1,656,658,657,-1,657,659,660,-1,660,655,657,-1,338,326,661,-1,338,327,326,-1,662,663,664,-1,665,666,650,-1,666,667,650,-1,668,667,669,-1,670,671,672,-1,670,673,671,-1,674,653,675,-1,674,676,653,-1,660,58,655,-1,660,677,58,-1,270,55,58,-1,58,677,270,-1,678,664,663,-1,679,262,680,-1,681,682,683,-1,684,685,686,-1,686,687,684,-1,688,246,689,-1,690,691,692,-1,692,693,690,-1,694,695,696,-1,696,692,694,-1,697,698,699,-1,700,701,702,-1,703,694,704,-1,700,705,706,-1,707,708,709,-1,707,710,708,-1,254,711,712,-1,712,713,252,-1,252,254,712,-1,34,713,714,-1,715,716,717,-1,715,35,716,-1,251,718,260,-1,49,60,719,-1,719,720,49,-1,721,722,723,-1,723,724,721,-1,240,725,250,-1,240,726,725,-1,727,728,729,-1,37,29,263,-1,730,731,732,-1,733,130,132,-1,733,734,130,-1,733,38,735,-1,736,731,737,-1,731,738,737,-1,739,740,630,-1,630,631,739,-1,741,742,743,-1,743,744,741,-1,745,746,18,-1,745,747,746,-1,727,748,31,-1,31,30,727,-1,263,19,18,-1,25,749,750,-1,750,266,25,-1,269,751,267,-1,751,722,267,-1,752,753,548,-1,754,755,550,-1,756,757,745,-1,756,758,757,-1,759,760,761,-1,762,763,764,-1,763,765,764,-1,766,767,768,-1,766,769,767,-1,770,771,772,-1,772,314,770,-1,773,4,774,-1,773,775,4,-1,776,775,777,-1,775,778,777,-1,777,778,779,-1,6,777,7,-1,314,313,770,-1,780,781,782,-1,782,783,780,-1,544,549,542,-1,784,785,544,-1,784,545,786,-1,787,788,789,-1,788,790,789,-1,791,792,165,-1,793,794,163,-1,795,796,601,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getloscoxae_Geo_5_649_coordIndex_3()
		{
			int[] value = {797,602,798,-1,797,795,602,-1,799,800,167,-1,167,801,799,-1,802,803,109,-1,803,168,109,-1,617,804,805,-1,617,806,804,-1,370,807,369,-1,370,808,807,-1,115,809,94,-1,809,85,94,-1,87,810,811,-1,812,507,506,-1,506,813,812,-1,814,815,811,-1,814,806,816,-1,813,817,818,-1,813,815,817,-1,819,818,817,-1,819,817,820,-1,41,173,821,-1,822,39,823,-1,819,820,823,-1,824,819,825,-1,826,825,823,-1,826,827,828,-1,829,830,824,-1,824,831,829,-1,832,825,833,-1,832,834,825,-1,795,797,835,-1,836,837,838,-1,839,840,841,-1,841,842,839,-1,843,844,845,-1,829,846,847,-1,841,846,848,-1,849,842,848,-1,850,849,846,-1,181,851,852,-1,852,853,181,-1,854,855,180,-1,855,856,180,-1,857,858,8,-1,858,179,8,-1,859,10,860,-1,10,861,860,-1,862,863,864,-1,863,865,864,-1,866,867,864,-1,864,868,866,-1,868,865,869,-1,869,870,868,-1,842,849,871,-1,845,842,872,-1,873,752,874,-1,752,754,874,-1,875,45,47,-1,876,28,877,-1,19,263,26,-1,17,19,878,-1,878,879,17,-1,880,881,882,-1,883,884,885,-1,883,886,884,-1,887,888,889,-1,887,890,888,-1,47,891,892,-1,876,893,894,-1,894,28,876,-1,878,895,896,-1,896,879,878,-1,882,863,862,-1,862,897,882,-1,898,899,853,-1,898,900,899,-1,901,902,176,-1,889,177,843,-1,889,888,177,-1,903,192,904,-1,903,190,192,-1,279,305,277,-1,205,300,905,-1,205,298,300,-1,304,906,907,-1,908,905,906,-1,905,300,906,-1,906,304,908,-1,909,910,911,-1,388,189,191,-1,191,912,388,-1,102,282,281,-1,888,176,177,-1,888,901,176,-1,884,898,852,-1,898,853,852,-1,897,862,913,-1,913,914,897,-1,882,915,863,-1,882,916,915,-1,878,894,895,-1,878,28,894,-1,890,901,888,-1,917,918,914,-1,919,916,882,-1,882,881,919,-1,19,28,878,-1,265,877,28,-1,28,27,265,-1,877,875,876,-1,875,47,876,-1,891,47,46,-1,920,890,887,-1,920,874,890,-1,265,875,877,-1,265,264,875,-1,845,872,843,-1,871,872,842,-1,843,872,892,-1,892,889,843,-1,921,871,849,-1,871,921,893,-1,921,894,893,-1,850,922,923,-1,868,864,865,-1,924,8,10,-1,924,857,8,-1,9,925,861,-1,861,10,9,-1,178,181,899,-1,181,853,899,-1,851,926,852,-1,870,927,928,-1,922,846,831,-1,922,850,846,-1,849,848,846,-1,841,848,842,-1,841,847,846,-1,829,831,846,-1,843,929,844,-1,843,175,929,-1,842,930,839,-1,175,174,931,-1,931,929,175,-1,837,931,838,-1,932,858,857,-1,932,170,858,-1,169,933,854,-1,866,801,803,-1,832,833,835,-1,835,927,832,-1,835,833,795,-1,828,796,826,-1,826,823,827,-1,826,833,825,-1,823,825,819,-1,822,823,820,-1,827,823,39,-1,827,821,934,-1,934,821,173,-1,819,830,818,-1,819,824,830,-1,814,804,806,-1,814,811,804,-1,813,506,503,-1,503,815,813,-1,847,935,507,-1,507,812,847,-1,804,811,810,-1,810,86,936,-1,810,87,86,-1,809,937,86,-1,66,807,808,-1,808,937,66,-1,221,369,807,-1,822,22,39,-1,822,614,22,-1,803,801,168,-1,801,167,168,-1,795,601,602,-1,828,827,605,-1,827,606,605,-1,800,799,159,-1,791,794,793,-1,791,165,794,-1,585,113,110,-1,938,771,171,-1,771,169,171,-1,939,933,770,-1,939,940,933,-1,786,837,784,-1,784,544,545,-1,785,315,549,-1,549,544,785,-1,780,941,781,-1,941,779,781,-1,942,5,7,-1,943,6,5,-1,779,7,777,-1,943,776,6,-1,776,777,6,-1,775,773,778,-1,773,774,781,-1,774,782,781,-1,774,316,782,-1,774,4,316,-1,571,944,761,-1,919,881,567,-1,756,17,945,-1,18,756,745,-1,18,17,756,-1,946,947,948,-1,946,949,947,-1,754,550,552,-1,552,950,754,-1,752,548,755,-1,755,754,752,-1,49,720,50,-1,59,49,51,-1,51,951,59,-1,266,750,751,-1,751,269,266,-1,31,263,29,-1,767,952,768,-1,952,772,768,-1,263,18,746,-1,757,743,953,-1,757,744,743,-1,741,954,740,-1,741,744,954,-1,565,630,740,-1,668,741,740,-1,740,739,668,-1,733,132,38,-1,29,33,32,-1,244,729,242,-1,718,250,725,-1,718,251,250,-1,60,955,719,-1,955,956,719,-1,725,726,709,-1,957,958,959,-1,695,960,712,-1,712,696,695,-1,695,961,960,-1,695,703,961,-1,962,716,714,-1,710,963,708,-1,963,964,708,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getloscoxae_Geo_5_649_coordIndex_4()
		{
			int[] value = {701,965,966,-1,701,706,965,-1,701,700,706,-1,703,695,694,-1,967,968,969,-1,710,707,702,-1,962,961,702,-1,961,700,702,-1,961,703,700,-1,970,699,971,-1,970,697,699,-1,966,689,246,-1,966,965,689,-1,704,692,691,-1,704,694,692,-1,972,973,696,-1,690,974,691,-1,974,975,691,-1,976,689,977,-1,976,688,689,-1,736,684,687,-1,736,737,684,-1,978,687,686,-1,978,979,687,-1,980,981,982,-1,980,983,981,-1,680,984,985,-1,986,680,262,-1,262,261,986,-1,987,988,661,-1,674,989,990,-1,674,675,989,-1,664,677,660,-1,664,678,677,-1,991,669,992,-1,991,668,669,-1,660,993,664,-1,338,661,663,-1,423,518,422,-1,518,956,422,-1,525,720,719,-1,525,524,720,-1,994,995,660,-1,656,648,658,-1,656,989,648,-1,654,996,646,-1,646,645,654,-1,665,650,652,-1,650,633,651,-1,650,739,631,-1,645,634,647,-1,997,657,658,-1,658,998,997,-1,636,54,994,-1,640,334,330,-1,330,627,640,-1,635,999,613,-1,999,1000,613,-1,652,1001,999,-1,609,1002,1001,-1,1001,598,609,-1,598,651,633,-1,632,594,593,-1,632,631,591,-1,1003,1004,1005,-1,613,616,618,-1,613,614,616,-1,613,1000,612,-1,1006,610,612,-1,1002,609,1006,-1,609,42,1006,-1,44,611,610,-1,20,22,610,-1,43,611,44,-1,608,606,1007,-1,612,22,614,-1,21,39,22,-1,21,40,39,-1,593,596,597,-1,592,581,596,-1,593,592,596,-1,591,592,594,-1,581,592,563,-1,587,589,582,-1,588,793,589,-1,588,791,793,-1,585,1008,583,-1,1008,586,583,-1,590,587,1009,-1,587,582,1009,-1,1009,582,580,-1,580,1010,1009,-1,572,556,570,-1,572,584,554,-1,1011,561,569,-1,1011,1012,561,-1,561,564,567,-1,566,564,565,-1,1012,562,561,-1,556,555,557,-1,944,556,558,-1,944,571,570,-1,570,556,944,-1,2,1,553,-1,550,755,551,-1,308,307,549,-1,307,542,549,-1,530,541,546,-1,530,539,541,-1,543,542,547,-1,534,1013,535,-1,534,527,1013,-1,535,1013,1014,-1,1013,930,1014,-1,1015,529,528,-1,528,526,527,-1,527,534,528,-1,526,523,522,-1,518,523,525,-1,518,517,523,-1,519,521,522,-1,517,513,519,-1,423,513,518,-1,421,515,513,-1,519,513,512,-1,509,498,505,-1,509,499,498,-1,498,500,505,-1,509,507,935,-1,509,505,507,-1,500,503,506,-1,500,504,503,-1,84,83,502,-1,502,501,84,-1,508,500,496,-1,489,497,499,-1,1016,494,493,-1,1017,1018,508,-1,1019,77,1016,-1,495,1020,1021,-1,516,488,1022,-1,1023,1020,491,-1,484,481,1024,-1,483,485,486,-1,481,1025,464,-1,476,461,460,-1,476,477,461,-1,476,427,426,-1,476,475,427,-1,474,1026,472,-1,472,463,471,-1,465,473,471,-1,465,1027,473,-1,1028,470,469,-1,1029,1030,1031,-1,464,343,345,-1,464,1025,343,-1,1032,1033,1034,-1,1035,1036,1037,-1,1038,1039,446,-1,1040,1041,447,-1,1042,459,458,-1,1043,450,449,-1,431,430,443,-1,444,417,443,-1,417,441,443,-1,1035,1044,1021,-1,218,417,1045,-1,1045,440,218,-1,439,419,418,-1,1045,1046,438,-1,438,439,1045,-1,439,440,1045,-1,436,430,433,-1,1047,437,433,-1,433,434,1047,-1,1048,387,413,-1,304,207,908,-1,428,140,135,-1,135,1049,428,-1,429,1050,138,-1,1050,1051,138,-1,1030,148,1052,-1,1052,1028,1030,-1,1029,424,425,-1,425,146,1029,-1,63,62,422,-1,219,418,412,-1,211,213,416,-1,213,78,416,-1,415,410,411,-1,415,1053,404,-1,72,217,154,-1,154,387,1054,-1,154,412,387,-1,406,93,408,-1,402,400,403,-1,402,401,400,-1,399,397,96,-1,397,395,96,-1,394,97,395,-1,394,1055,97,-1,398,1056,101,-1,399,401,1057,-1,402,414,1058,-1,402,405,414,-1,157,396,397,-1,157,158,396,-1,392,1059,89,-1,1059,90,89,-1,1060,391,101,-1,101,1056,1060,-1,912,191,390,-1,390,1061,912,-1,390,389,1061,-1,186,389,390,-1,1060,1062,391,-1,385,391,382,-1,391,1062,382,-1,1063,386,378,-1,386,379,378,-1,378,1064,1063,-1,912,1061,380,-1,380,379,912,-1,379,388,912,-1,275,187,186,-1,187,275,1065,-1,101,226,373,-1,369,221,220,-1,220,16,369,-1,363,805,366,-1,615,617,1066,-1,617,805,1066,-1,364,368,358,-1,368,15,358,-1,16,375,362,-1,71,14,362,-1,353,239,372,-1,14,71,104,-1,359,354,15,-1,354,1067,358,-1,1067,365,358,-1,371,372,1068,-1,103,359,104,-1,223,222,281,-1,354,359,222,-1,360,1069,1070,-1,1071,1072,235,-1,235,1073,1071,-1,1074,347,1075,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getloscoxae_Geo_5_649_coordIndex_5()
		{
			int[] value = {1074,346,347,-1,1076,346,1077,-1,1078,1079,337,-1,337,1080,1078,-1,1081,327,339,-1,338,1082,339,-1,333,1078,339,-1,1079,335,337,-1,640,1075,335,-1,333,1079,1078,-1,333,332,1079,-1,637,330,329,-1,329,995,637,-1,664,993,662,-1,197,1083,323,-1,323,196,197,-1,195,321,318,-1,315,4,3,-1,952,314,772,-1,952,312,314,-1,312,553,313,-1,1084,551,755,-1,755,310,1084,-1,310,755,548,-1,548,311,310,-1,1085,236,298,-1,1085,234,236,-1,438,444,436,-1,438,1046,444,-1,186,390,276,-1,1072,1071,1086,-1,233,296,231,-1,1087,1088,1089,-1,1087,228,1088,-1,1090,1087,1091,-1,1087,1089,1091,-1,1091,1092,1093,-1,1091,1089,1092,-1,192,1094,904,-1,1094,1095,904,-1,1090,291,1087,-1,291,290,1087,-1,1096,376,301,-1,301,303,1096,-1,38,37,746,-1,183,1097,673,-1,183,273,1097,-1,673,685,671,-1,673,1097,685,-1,735,953,1098,-1,735,747,953,-1,55,271,56,-1,269,264,266,-1,269,268,264,-1,59,267,61,-1,699,257,1099,-1,1099,971,699,-1,33,253,252,-1,33,36,253,-1,974,690,1100,-1,1100,1101,974,-1,1102,688,976,-1,976,1103,1102,-1,973,693,696,-1,693,692,696,-1,23,1104,244,-1,1069,70,352,-1,70,239,352,-1,151,150,468,-1,468,321,151,-1,1105,1106,1107,-1,106,108,234,-1,236,235,1072,-1,1072,299,236,-1,292,229,290,-1,292,295,229,-1,283,228,227,-1,283,1088,228,-1,224,223,227,-1,223,283,227,-1,361,1108,373,-1,67,66,937,-1,937,117,67,-1,217,72,74,-1,374,1109,361,-1,374,1110,1109,-1,117,937,809,-1,809,115,117,-1,121,214,82,-1,82,123,121,-1,305,208,207,-1,305,432,208,-1,136,205,905,-1,905,133,136,-1,1111,203,202,-1,1111,1112,203,-1,204,143,199,-1,204,141,143,-1,201,198,196,-1,201,200,198,-1,145,147,193,-1,193,197,145,-1,1113,301,100,-1,100,99,1113,-1,440,219,218,-1,776,943,553,-1,943,313,553,-1,174,176,926,-1,926,1114,174,-1,181,856,851,-1,181,180,856,-1,783,1115,1116,-1,1116,1117,783,-1,603,20,611,-1,603,21,20,-1,1118,1119,1120,-1,1120,1121,1118,-1,112,1122,760,-1,763,1123,759,-1,763,787,1123,-1,171,932,1124,-1,171,170,932,-1,800,159,794,-1,159,163,794,-1,110,168,166,-1,110,109,168,-1,361,1109,1108,-1,91,155,88,-1,414,153,1125,-1,1125,1058,414,-1,414,72,153,-1,414,73,72,-1,137,136,140,-1,136,135,140,-1,147,425,194,-1,147,146,425,-1,198,148,145,-1,198,1052,148,-1,203,144,141,-1,203,1126,144,-1,139,138,1051,-1,1051,1112,139,-1,133,1127,134,-1,1127,209,134,-1,278,907,1128,-1,278,1128,1129,-1,1129,280,278,-1,376,1096,356,-1,356,371,376,-1,132,253,36,-1,132,131,253,-1,1130,981,983,-1,131,1131,253,-1,1131,255,253,-1,1132,244,243,-1,243,1133,1132,-1,415,122,125,-1,415,411,122,-1,1055,119,116,-1,98,114,93,-1,1123,111,112,-1,1134,111,789,-1,113,111,110,-1,802,109,111,-1,1135,1105,348,-1,1135,1106,1105,-1,281,103,102,-1,104,359,14,-1,376,371,377,-1,394,119,1055,-1,94,93,115,-1,98,400,96,-1,95,408,93,-1,85,87,83,-1,92,94,85,-1,85,84,92,-1,85,809,86,-1,1019,78,77,-1,79,78,80,-1,76,212,73,-1,435,419,439,-1,439,438,435,-1,1068,225,226,-1,955,65,63,-1,955,261,65,-1,619,1136,622,-1,619,636,1136,-1,659,994,660,-1,484,1024,488,-1,43,42,604,-1,608,604,606,-1,491,490,1137,-1,38,132,36,-1,32,1138,30,-1,31,748,26,-1,748,27,26,-1,1104,23,25,-1,24,749,25,-1,746,37,263,-1,368,16,15,-1,238,1139,1140,-1,238,237,1139,-1,177,175,843,-1,312,952,947,-1,775,1,0,-1,4,775,0,-1,3,0,2,-1,1079,334,335,-1,1079,332,334,-1,1136,994,659,-1,1136,636,994,-1,68,215,220,-1,68,119,215,-1,285,353,286,-1,353,285,352,-1,1087,229,228,-1,290,229,1087,-1,1134,1141,111,-1,1142,1141,1134,-1,113,1122,112,-1,571,1122,113,-1,111,787,789,-1,787,111,1123,-1,97,114,98,-1,118,114,97,-1,123,120,121,-1,122,120,123,-1,124,1143,125,-1,1143,124,210,-1,76,210,212,-1,76,1143,210,-1,1132,23,244,-1,1132,24,23,-1,1144,1133,1145,-1,1144,1146,1133,-1,1145,723,1144,-1,723,1145,1147,-1,723,126,724,-1,723,1147,126,-1,724,128,1148,-1,724,126,128,-1,128,1099,1149,-1,128,129,1099,-1,1149,257,259,-1,1149,1099,257,-1,256,245,1150,-1,256,258,245,-1,1150,247,1151,-1,1150,245,247,-1,1151,1102,1152,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getloscoxae_Geo_5_649_coordIndex_6()
		{
			int[] value = {1151,247,1102,-1,1103,1152,1102,-1,1153,1152,1103,-1,1154,981,1130,-1,1155,981,1154,-1,1154,1156,1155,-1,1156,1154,1157,-1,1158,1156,1157,-1,978,1156,1158,-1,978,1159,979,-1,978,1158,1159,-1,979,1160,1161,-1,979,1159,1160,-1,1160,732,1161,-1,732,1160,1131,-1,130,1131,131,-1,130,732,1131,-1,1130,1162,1101,-1,1163,1162,1130,-1,1162,1103,1101,-1,1162,1153,1103,-1,356,1164,357,-1,1164,356,1096,-1,1165,1166,1093,-1,1166,1165,1167,-1,1168,1091,1169,-1,1168,1090,1091,-1,291,1170,289,-1,1170,291,1171,-1,280,1172,1173,-1,280,1129,1172,-1,1169,1093,1166,-1,1091,1093,1169,-1,1112,1126,203,-1,1112,1051,1126,-1,1174,198,200,-1,1174,1052,198,-1,194,149,151,-1,194,425,149,-1,153,393,1125,-1,153,152,393,-1,1125,89,88,-1,1125,393,89,-1,398,1108,156,-1,1108,398,373,-1,155,398,156,-1,155,91,398,-1,794,167,800,-1,165,167,794,-1,1124,1175,790,-1,1124,932,1175,-1,759,112,760,-1,759,1123,112,-1,787,762,788,-1,762,787,763,-1,1176,768,938,-1,768,1176,766,-1,952,948,947,-1,767,948,952,-1,764,1177,769,-1,1177,764,1178,-1,1121,1179,765,-1,1179,1121,1120,-1,603,43,608,-1,603,611,43,-1,1180,783,1117,-1,783,1180,780,-1,926,856,1114,-1,926,851,856,-1,942,1181,939,-1,941,1181,942,-1,1181,780,1180,-1,941,780,1181,-1,313,5,770,-1,943,5,313,-1,302,1182,1065,-1,302,1183,1182,-1,1113,302,301,-1,1113,1183,302,-1,1184,1112,1111,-1,1184,139,1112,-1,209,908,207,-1,209,1127,908,-1,1094,434,910,-1,434,1094,1047,-1,1127,905,908,-1,1127,133,905,-1,435,420,419,-1,437,420,435,-1,215,374,220,-1,216,374,215,-1,216,1110,374,-1,1076,321,1185,-1,1076,319,321,-1,285,102,1070,-1,287,102,285,-1,283,1186,1088,-1,282,1186,283,-1,297,292,1187,-1,295,292,297,-1,299,1086,1188,-1,299,1072,1086,-1,1107,107,106,-1,1107,1106,107,-1,13,348,1105,-1,13,349,348,-1,1189,1190,324,-1,1189,1191,1190,-1,320,1192,1193,-1,320,1077,1192,-1,750,1194,1146,-1,750,749,1194,-1,974,1103,976,-1,1103,974,1101,-1,257,698,258,-1,257,699,698,-1,1100,693,1195,-1,1100,690,693,-1,1196,972,1197,-1,1196,973,972,-1,987,1198,988,-1,987,1199,1198,-1,56,990,57,-1,56,1200,990,-1,1201,676,674,-1,1201,1202,676,-1,735,746,747,-1,38,746,735,-1,1203,953,743,-1,1098,953,1203,-1,991,738,742,-1,991,737,738,-1,671,684,992,-1,671,685,684,-1,65,679,64,-1,65,262,679,-1,274,190,903,-1,276,190,274,-1,1204,1096,303,-1,1204,1164,1096,-1,274,1167,288,-1,274,1166,1167,-1,294,227,229,-1,227,294,224,-1,1095,1168,904,-1,1095,1171,1168,-1,1169,904,1168,-1,904,1169,903,-1,1170,911,1173,-1,911,1170,909,-1,1092,1088,1186,-1,1089,1088,1092,-1,300,1188,906,-1,1188,300,299,-1,232,1172,1129,-1,232,1187,1172,-1,230,906,1188,-1,1128,906,230,-1,906,1128,907,-1,987,326,64,-1,987,661,326,-1,298,206,1085,-1,206,298,205,-1,955,422,956,-1,955,63,422,-1,306,548,307,-1,306,311,548,-1,306,1084,310,-1,306,309,1084,-1,237,322,324,-1,1205,322,237,-1,193,1083,197,-1,193,1206,1083,-1,201,323,322,-1,201,196,323,-1,199,11,204,-1,199,1205,11,-1,1207,202,1208,-1,1111,202,1207,-1,995,993,660,-1,993,995,329,-1,662,329,328,-1,662,993,329,-1,347,335,1075,-1,335,347,336,-1,333,1082,331,-1,333,339,1082,-1,339,1080,1081,-1,339,1078,1080,-1,1209,1080,340,-1,1209,1081,1080,-1,1206,1189,1083,-1,1206,1193,1189,-1,1205,12,11,-1,1205,237,12,-1,1107,1208,1105,-1,1207,1208,1107,-1,234,1210,106,-1,1085,1210,234,-1,1077,1074,1192,-1,1074,1077,346,-1,1074,629,1211,-1,1074,1075,629,-1,1191,1212,1190,-1,1212,1191,1211,-1,1212,1213,1214,-1,1212,628,1213,-1,1215,626,1216,-1,1215,1217,626,-1,1139,1215,1140,-1,1215,1139,1214,-1,238,351,349,-1,238,1140,351,-1,108,1073,235,-1,105,1073,108,-1,107,1218,105,-1,107,1219,1218,-1,1220,1071,1073,-1,1071,1220,1221,-1,1222,293,296,-1,293,1222,1223,-1,1135,1224,1219,-1,1135,1225,1224,-1,1226,1220,1218,-1,1220,1226,1227,-1,1228,1222,1221,-1,1222,1228,1229,-1,1230,1231,1223,-1,1231,1230,1232,-1,1233,1232,1230,-1,1233,1234,1232,-1,1235,1229,1228,-1,1235,1236,1229,-1,1237,1227,1226,-1,1237,1238,1227,-1,1239,1224,1225,-1,1239,1240,1224,-1,351,1241,350,-1,1241,351,1216,-1,1241,624,1239,-1,1241,625,624,-1,1237,623,621,-1,1237,1240,623,-1,620,1235,1238,-1,1235,620,1242,-1,1005,1233,1236,-1,1233,1005,1004,-1,1243,1244,1234,-1,1244,1243,1245,-1,1244,354,355,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getloscoxae_Geo_5_649_coordIndex_7()
		{
			int[] value = {1067,354,1244,-1,224,1231,222,-1,294,1231,224,-1,70,360,71,-1,70,1069,360,-1,103,222,359,-1,103,281,222,-1,225,372,239,-1,372,225,1068,-1,1246,365,1067,-1,1246,1066,365,-1,362,361,71,-1,361,362,375,-1,805,365,1066,-1,363,365,805,-1,189,387,1048,-1,388,387,189,-1,378,383,382,-1,380,383,378,-1,382,1064,378,-1,1064,382,1062,-1,1247,1063,392,-1,1247,386,1063,-1,1062,1059,1064,-1,1060,1059,1062,-1,188,1061,389,-1,1061,1182,384,-1,1061,188,1182,-1,385,1183,1113,-1,385,381,1183,-1,1059,1056,90,-1,1059,1060,1056,-1,157,399,1057,-1,157,397,399,-1,402,1057,401,-1,402,1058,1057,-1,91,1056,398,-1,91,90,1056,-1,216,396,1110,-1,216,394,396,-1,394,216,119,-1,154,1247,152,-1,1054,1247,154,-1,413,418,420,-1,413,412,418,-1,1030,146,148,-1,1030,1029,146,-1,470,1052,1174,-1,470,1028,1052,-1,1051,477,1126,-1,1050,477,1051,-1,1248,135,134,-1,1248,1049,135,-1,1248,209,208,-1,1248,134,209,-1,1048,420,1094,-1,1048,413,420,-1,444,1045,417,-1,444,1046,1045,-1,1249,1250,1023,-1,1249,1251,1250,-1,1036,1023,1250,-1,1020,1023,1036,-1,431,1252,1248,-1,431,443,1252,-1,1049,1253,428,-1,1049,1254,1253,-1,1255,1050,429,-1,1050,1255,1256,-1,456,450,1257,-1,456,453,450,-1,1258,447,1257,-1,447,1258,445,-1,1043,1259,450,-1,1043,1260,1259,-1,1042,447,1041,-1,1042,458,447,-1,446,1040,447,-1,1039,1040,446,-1,1038,445,1037,-1,1038,446,445,-1,1261,1262,1033,-1,1261,1258,1262,-1,1033,1263,1264,-1,1033,1262,1263,-1,1265,1043,1266,-1,1265,1260,1043,-1,1267,448,1268,-1,1267,449,448,-1,452,1269,1270,-1,1269,452,451,-1,455,462,1271,-1,462,455,454,-1,457,1272,1273,-1,1272,457,459,-1,1274,1041,1275,-1,1274,1042,1041,-1,1039,1276,1040,-1,1251,1276,1039,-1,1250,1037,1036,-1,1250,1038,1037,-1,1035,1261,1044,-1,1035,1037,1261,-1,1034,1264,1277,-1,1264,1034,1033,-1,1019,1277,442,-1,1019,1034,1277,-1,441,1266,443,-1,441,1265,1266,-1,1252,1268,1254,-1,1252,1267,1268,-1,1269,1256,1255,-1,1256,1269,1271,-1,1273,1278,1279,-1,1278,1273,1272,-1,1280,1275,478,-1,1280,1274,1275,-1,1281,1251,1249,-1,1281,1276,1251,-1,340,487,1209,-1,342,487,340,-1,1027,1030,1028,-1,1027,1031,1030,-1,424,1031,467,-1,424,1029,1031,-1,469,1027,1028,-1,1027,469,473,-1,460,475,476,-1,475,460,1279,-1,1278,1026,474,-1,1026,1278,1280,-1,482,463,472,-1,463,482,464,-1,1025,484,342,-1,484,1025,481,-1,1022,1249,1137,-1,1249,1022,1281,-1,1022,1024,479,-1,1024,1022,488,-1,1137,516,1022,-1,514,516,1137,-1,511,489,499,-1,511,490,489,-1,493,1021,1044,-1,493,495,1021,-1,1032,1019,1016,-1,1032,1034,1019,-1,1016,79,1017,-1,1016,77,79,-1,214,1017,82,-1,1018,1017,214,-1,494,1017,508,-1,1016,1017,494,-1,497,491,1020,-1,489,491,497,-1,84,1018,214,-1,1018,84,501,-1,935,1282,509,-1,1282,935,840,-1,520,509,1282,-1,510,509,520,-1,519,510,520,-1,512,510,519,-1,532,1015,528,-1,532,531,1015,-1,839,1013,1283,-1,1013,839,930,-1,1014,536,535,-1,536,1014,1284,-1,1283,527,521,-1,527,1283,1013,-1,545,1285,786,-1,538,1285,545,-1,753,530,546,-1,753,533,530,-1,317,308,549,-1,317,551,308,-1,1286,944,558,-1,1286,761,944,-1,1287,1011,569,-1,579,1011,1287,-1,590,575,574,-1,590,1009,575,-1,1011,1010,1012,-1,1011,577,1010,-1,574,588,590,-1,588,574,1288,-1,1288,791,588,-1,1288,792,791,-1,582,595,581,-1,595,582,589,-1,591,565,560,-1,591,630,565,-1,595,162,596,-1,595,161,162,-1,172,608,1007,-1,608,172,603,-1,44,1006,42,-1,44,610,1006,-1,1006,1000,1002,-1,1006,612,1000,-1,1289,1246,1245,-1,1289,1290,1246,-1,1003,1243,1004,-1,1003,1291,1243,-1,1005,1292,1003,-1,1292,1005,1242,-1,1213,638,1217,-1,639,638,1213,-1,631,593,633,-1,631,632,593,-1,598,652,651,-1,652,598,1001,-1,1001,1000,999,-1,1001,1002,1000,-1,615,643,647,-1,643,615,1290,-1,1289,649,641,-1,649,1289,1291,-1,997,1003,1292,-1,997,998,1003,-1,54,995,994,-1,637,995,54,-1,997,659,657,-1,997,1136,659,-1,1293,652,999,-1,652,1293,665,-1,996,1293,646,-1,996,1294,1293,-1,644,989,675,-1,989,644,648,-1,525,956,518,-1,525,719,956,-1,662,338,663,-1,662,1082,338,-1,669,666,672,-1,669,667,666,-1,184,1294,996,-1,670,1294,184,-1,182,996,654,-1,182,184,996,-1,57,989,656,-1,57,990,989,-1,986,984,680,-1,986,1148,984,-1,1295,1199,985,-1,1295,1198,1199,-1,1296,985,984,-1,1296,1295,985,-1,1198,682,272,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getloscoxae_Geo_5_649_coordIndex_8()
		{
			int[] value = {1198,1295,682,-1,271,1297,56,-1,271,681,1297,-1,1298,1299,1297,-1,1300,1299,1298,-1,1299,1201,1200,-1,1299,1301,1201,-1,1302,980,1301,-1,983,980,1302,-1,185,980,982,-1,1202,980,185,-1,1155,982,981,-1,1155,1303,982,-1,1303,1097,273,-1,1303,1304,1097,-1,1304,978,686,-1,978,1304,1156,-1,1161,687,979,-1,1161,736,687,-1,974,977,975,-1,974,976,977,-1,691,705,704,-1,705,691,975,-1,965,977,689,-1,965,706,977,-1,248,966,246,-1,1305,966,248,-1,260,970,971,-1,970,260,964,-1,1306,962,702,-1,1307,962,1306,-1,963,702,969,-1,963,710,702,-1,966,967,701,-1,966,1305,967,-1,697,967,1305,-1,968,967,697,-1,969,964,963,-1,969,970,964,-1,1306,959,1308,-1,1306,1309,959,-1,1307,716,962,-1,1307,717,716,-1,960,962,714,-1,962,960,961,-1,712,714,713,-1,714,712,960,-1,1308,958,1310,-1,1308,959,958,-1,726,959,709,-1,957,959,726,-1,709,718,725,-1,718,709,708,-1,61,986,261,-1,61,721,986,-1,957,240,242,-1,957,726,240,-1,242,958,957,-1,729,958,242,-1,244,727,729,-1,244,1104,727,-1,715,728,1138,-1,715,1310,728,-1,35,1138,32,-1,715,1138,35,-1,730,1098,1203,-1,730,734,1098,-1,954,565,740,-1,566,565,954,-1,757,954,744,-1,757,758,954,-1,745,953,747,-1,745,757,953,-1,524,50,720,-1,524,529,50,-1,50,1015,48,-1,50,529,1015,-1,533,1311,531,-1,873,1311,533,-1,552,883,950,-1,883,552,2,-1,312,949,886,-1,949,312,947,-1,945,758,756,-1,945,568,758,-1,568,919,567,-1,568,945,919,-1,881,569,567,-1,1287,569,881,-1,559,1312,558,-1,559,880,1312,-1,1120,918,917,-1,1120,1286,918,-1,1120,1119,1286,-1,1313,1178,1179,-1,1178,1313,1314,-1,1315,948,1177,-1,946,948,1315,-1,761,1121,759,-1,761,1118,1121,-1,779,773,781,-1,779,778,773,-1,942,779,941,-1,942,7,779,-1,1116,315,785,-1,1116,316,315,-1,1116,1115,316,-1,1180,784,837,-1,1180,1117,784,-1,940,1181,836,-1,940,939,1181,-1,770,169,771,-1,770,933,169,-1,938,1124,1176,-1,938,171,1124,-1,166,585,110,-1,1008,585,166,-1,159,798,160,-1,798,159,799,-1,827,1007,606,-1,827,934,1007,-1,816,614,822,-1,614,816,616,-1,367,810,936,-1,366,810,367,-1,221,66,68,-1,66,221,807,-1,86,808,936,-1,937,808,86,-1,847,840,935,-1,847,841,840,-1,503,811,815,-1,811,503,502,-1,847,830,829,-1,847,812,830,-1,39,821,827,-1,39,41,821,-1,833,796,795,-1,833,826,796,-1,866,797,801,-1,866,928,797,-1,803,867,866,-1,867,803,802,-1,836,855,940,-1,836,838,855,-1,858,169,854,-1,170,169,858,-1,924,932,857,-1,1175,932,924,-1,174,838,931,-1,174,1114,838,-1,786,931,837,-1,931,786,1285,-1,1316,844,929,-1,844,1316,1284,-1,1014,842,845,-1,842,1014,930,-1,834,922,831,-1,1317,922,834,-1,927,1318,832,-1,870,1318,927,-1,868,928,866,-1,868,870,928,-1,9,899,925,-1,9,178,899,-1,913,864,1319,-1,864,913,862,-1,1141,859,1319,-1,1141,1142,859,-1,1320,896,1321,-1,1320,1322,896,-1,870,1320,1318,-1,870,869,1320,-1,1317,923,922,-1,1317,1321,923,-1,923,894,921,-1,895,894,923,-1,850,921,849,-1,850,923,921,-1,871,892,872,-1,871,893,892,-1,264,951,875,-1,264,268,951,-1,46,1311,920,-1,1311,46,48,-1,901,874,754,-1,874,901,890,-1,891,920,887,-1,46,920,891,-1,945,916,919,-1,945,1323,916,-1,1312,914,918,-1,1312,897,914,-1,1324,917,914,-1,1313,917,1324,-1,1325,1315,1314,-1,1315,1325,1326,-1,900,949,946,-1,949,900,898,-1,902,754,950,-1,754,902,901,-1,1322,916,1323,-1,916,1322,915,-1,914,860,1324,-1,914,913,860,-1,861,1326,1325,-1,1326,861,925,-1,852,885,884,-1,885,852,926,-1,1165,286,357,-1,286,1165,284,-1,305,911,910,-1,911,305,279,-1,304,278,277,-1,907,278,304,-1,1095,910,909,-1,1095,1094,910,-1,902,926,176,-1,902,885,926,-1,925,900,1326,-1,900,925,899,-1,1325,860,861,-1,1325,1324,860,-1,896,1323,879,-1,1323,896,1322,-1,893,47,892,-1,876,47,893,-1,892,887,889,-1,891,887,892,-1,950,885,902,-1,950,883,885,-1,898,886,949,-1,886,898,884,-1,1326,946,1315,-1,946,1326,900,-1,1324,1314,1313,-1,1314,1324,1325,-1,880,897,1312,-1,880,882,897,-1,17,1323,945,-1,17,879,1323,-1,875,51,45,-1,951,51,875,-1,920,873,874,-1,1311,873,920,-1,1318,1321,1317,-1,1318,1320,1321,-1,895,1321,896,-1,923,1321,895,-1,869,1322,1320,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getloscoxae_Geo_5_649_coordIndex_9()
		{
			int[] value = {869,915,1322,-1,863,869,865,-1,863,915,869,-1,1319,867,1141,-1,867,1319,864,-1,10,1142,924,-1,1142,10,859,-1,1319,860,913,-1,1319,859,860,-1,854,179,858,-1,854,180,179,-1,832,1317,834,-1,1318,1317,832,-1,845,1284,1014,-1,845,844,1284,-1,1285,929,931,-1,929,1285,1316,-1,1175,1142,1134,-1,1175,924,1142,-1,940,854,933,-1,940,855,854,-1,1114,855,838,-1,1114,856,855,-1,835,928,927,-1,928,835,797,-1,831,825,834,-1,831,824,825,-1,822,817,816,-1,822,820,817,-1,818,812,813,-1,812,818,830,-1,814,817,815,-1,814,816,817,-1,87,502,83,-1,87,811,502,-1,370,936,808,-1,370,367,936,-1,804,366,805,-1,810,366,804,-1,617,816,806,-1,617,616,816,-1,797,799,801,-1,797,798,799,-1,796,605,601,-1,828,605,796,-1,792,166,165,-1,792,1008,166,-1,1176,790,788,-1,1176,1124,790,-1,836,1180,837,-1,836,1181,1180,-1,1117,785,784,-1,1117,1116,785,-1,316,783,782,-1,1115,783,316,-1,772,938,768,-1,938,772,771,-1,762,769,766,-1,762,764,769,-1,759,765,763,-1,759,1121,765,-1,760,571,761,-1,760,1122,571,-1,1314,1177,1178,-1,1314,1315,1177,-1,917,1179,1120,-1,1179,917,1313,-1,558,918,1286,-1,558,1312,918,-1,1287,880,559,-1,1287,881,880,-1,886,2,312,-1,886,883,2,-1,873,753,752,-1,873,533,753,-1,531,48,1015,-1,1311,48,531,-1,727,25,748,-1,25,727,1104,-1,568,954,758,-1,568,566,954,-1,731,1203,738,-1,731,730,1203,-1,734,735,1098,-1,734,733,735,-1,732,734,730,-1,734,732,130,-1,1161,731,736,-1,1161,732,731,-1,727,1138,728,-1,30,1138,727,-1,729,1310,958,-1,729,728,1310,-1,1146,751,750,-1,1146,1144,751,-1,1144,722,751,-1,1144,723,722,-1,722,61,267,-1,721,61,722,-1,721,1148,986,-1,721,724,1148,-1,718,964,260,-1,708,964,718,-1,1310,717,1308,-1,1310,715,717,-1,716,34,714,-1,35,34,716,-1,34,252,713,-1,34,33,252,-1,972,712,711,-1,972,696,712,-1,1307,1308,717,-1,1307,1306,1308,-1,1309,709,959,-1,1309,707,709,-1,970,968,697,-1,969,968,970,-1,700,704,705,-1,700,703,704,-1,701,969,702,-1,701,967,969,-1,702,1309,1306,-1,707,1309,702,-1,1305,698,697,-1,1305,248,698,-1,705,977,706,-1,705,975,977,-1,742,668,991,-1,742,741,668,-1,1097,686,685,-1,686,1097,1304,-1,1303,1156,1304,-1,1303,1155,1156,-1,982,273,185,-1,1303,273,982,-1,1301,1202,1201,-1,980,1202,1301,-1,1300,1301,1299,-1,1300,1302,1301,-1,1297,1200,56,-1,1299,1200,1297,-1,1298,681,683,-1,681,1298,1297,-1,272,681,271,-1,681,272,682,-1,683,1295,1296,-1,1295,683,682,-1,679,985,1199,-1,679,680,985,-1,678,661,988,-1,678,663,661,-1,988,677,678,-1,988,270,677,-1,656,58,57,-1,656,655,58,-1,676,654,653,-1,676,182,654,-1,184,673,670,-1,673,184,183,-1,1294,672,666,-1,1294,670,672,-1,992,672,671,-1,992,669,672,-1,650,668,739,-1,668,650,667,-1,675,642,644,-1,675,653,642,-1,1294,665,1293,-1,1294,666,665,-1,649,658,648,-1,649,998,658,-1,646,999,635,-1,646,1293,999,-1,627,637,639,-1,330,637,627,-1,54,638,637,-1,54,53,638,-1,1292,1136,997,-1,1136,1292,622,-1,998,1291,1003,-1,998,649,1291,-1,1290,641,643,-1,641,1290,1289,-1,647,618,615,-1,647,634,618,-1,1075,627,629,-1,627,1075,640,-1,628,639,1213,-1,627,639,628,-1,1217,53,626,-1,638,53,1217,-1,624,53,52,-1,53,624,625,-1,52,621,623,-1,52,619,621,-1,622,1242,620,-1,622,1292,1242,-1,1291,1245,1243,-1,1291,1289,1245,-1,1290,1066,1246,-1,1290,615,1066,-1,607,599,605,-1,607,597,599,-1,604,609,607,-1,609,604,42,-1,600,798,602,-1,164,798,600,-1,164,160,798,-1,162,600,596,-1,162,164,600,-1,793,595,589,-1,163,595,793,-1,163,161,595,-1,792,586,1008,-1,1288,586,792,-1,576,1288,574,-1,576,586,1288,-1,583,570,113,-1,583,572,570,-1,580,1012,1010,-1,1012,580,562,-1,579,577,1011,-1,579,578,577,-1,573,555,554,-1,573,578,555,-1,577,1009,1010,-1,575,1009,577,-1,554,576,573,-1,554,584,576,-1,579,559,557,-1,579,1287,559,-1,1286,1118,761,-1,1286,1119,1118,-1,552,317,3,-1,552,550,317,-1,548,546,547,-1,548,753,546,-1,543,538,545,-1,543,541,538,-1,1316,538,540,-1,538,1316,1285,-1,536,539,537,-1,539,536,540,-1,1284,540,536,-1,540,1284,1316,-1,537,530,532,-1,539,530,537,-1,537,528,534,-1,537,532,528,-1,1282,521,520,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getloscoxae_Geo_5_649_coordIndex_10()
		{
			int[] value = {1282,1283,521,-1,485,516,515,-1,485,488,516,-1,499,512,511,-1,499,510,512,-1,1283,840,839,-1,1283,1282,840,-1,508,501,504,-1,508,1018,501,-1,1020,492,497,-1,495,492,1020,-1,508,492,494,-1,496,492,508,-1,79,82,1017,-1,79,80,82,-1,493,1032,1016,-1,493,1044,1032,-1,514,490,511,-1,514,1137,490,-1,1281,479,478,-1,479,1281,1022,-1,1023,1137,1249,-1,1023,491,1137,-1,342,483,487,-1,484,483,342,-1,481,479,1024,-1,482,479,481,-1,482,480,479,-1,472,480,482,-1,472,1026,480,-1,1026,478,480,-1,1026,1280,478,-1,1279,474,475,-1,474,1279,1278,-1,473,474,472,-1,474,473,469,-1,467,1027,465,-1,467,1031,1027,-1,150,467,468,-1,149,467,150,-1,424,467,149,-1,344,466,463,-1,344,1185,466,-1,486,1209,487,-1,486,325,1209,-1,478,1276,1281,-1,478,1275,1276,-1,1272,1280,1278,-1,1280,1272,1274,-1,462,1279,460,-1,1279,462,1273,-1,1271,461,1256,-1,461,1271,462,-1,1270,1255,1253,-1,1255,1270,1269,-1,1266,1252,443,-1,1252,1266,1267,-1,442,1265,441,-1,442,1277,1265,-1,1044,1033,1032,-1,1044,1261,1033,-1,1251,1038,1250,-1,1251,1039,1038,-1,1275,1040,1276,-1,1275,1041,1040,-1,1272,1042,1274,-1,1272,459,1042,-1,454,1273,462,-1,1273,454,457,-1,451,1271,1269,-1,1271,451,455,-1,1268,452,1270,-1,1268,448,452,-1,1043,1267,1266,-1,1267,1043,449,-1,1277,1260,1265,-1,1277,1264,1260,-1,1263,1260,1264,-1,1259,1260,1263,-1,1037,1258,1261,-1,1037,445,1258,-1,456,457,454,-1,457,456,458,-1,453,455,451,-1,455,453,456,-1,453,448,450,-1,452,448,453,-1,1257,1262,1258,-1,1257,1263,1262,-1,450,1263,1257,-1,1259,1263,450,-1,1257,458,456,-1,458,1257,447,-1,1256,477,1050,-1,477,1256,461,-1,1253,429,428,-1,429,1253,1255,-1,1248,1254,1049,-1,1248,1252,1254,-1,78,442,416,-1,78,1019,442,-1,1036,1021,1020,-1,1035,1021,1036,-1,208,431,1248,-1,208,432,431,-1,477,144,1126,-1,477,426,144,-1,1174,427,470,-1,427,1174,142,-1,486,62,325,-1,486,421,62,-1,1268,1253,1254,-1,1270,1253,1268,-1,154,219,412,-1,154,217,219,-1,405,1053,75,-1,1053,405,404,-1,407,409,411,-1,407,406,409,-1,406,400,93,-1,406,403,400,-1,407,404,403,-1,407,410,404,-1,1110,158,1109,-1,396,158,1110,-1,152,392,393,-1,1247,392,152,-1,391,1113,99,-1,385,1113,391,-1,1183,384,1182,-1,381,384,1183,-1,392,1064,1059,-1,392,1063,1064,-1,386,1054,387,-1,1247,1054,386,-1,384,380,1061,-1,384,383,380,-1,275,1204,1065,-1,275,288,1204,-1,220,375,16,-1,374,375,220,-1,101,377,226,-1,101,100,377,-1,368,367,370,-1,368,364,367,-1,377,1068,226,-1,377,371,1068,-1,104,1070,102,-1,104,360,1070,-1,1234,355,1232,-1,1234,1244,355,-1,1245,1067,1244,-1,1245,1246,1067,-1,1004,1234,1233,-1,1234,1004,1243,-1,1236,1242,1005,-1,1236,1235,1242,-1,621,1238,1237,-1,1238,621,620,-1,624,1240,1239,-1,1240,624,623,-1,1216,625,1241,-1,1216,626,625,-1,1241,1225,350,-1,1241,1239,1225,-1,1240,1226,1224,-1,1240,1237,1226,-1,1238,1228,1227,-1,1238,1235,1228,-1,1236,1230,1229,-1,1236,1233,1230,-1,1232,222,1231,-1,222,1232,355,-1,1229,1223,1222,-1,1223,1229,1230,-1,1221,1227,1228,-1,1221,1220,1227,-1,1219,1226,1218,-1,1219,1224,1226,-1,348,1225,1135,-1,348,350,1225,-1,1223,294,293,-1,294,1223,1231,-1,1221,296,1071,-1,296,1221,1222,-1,1073,1218,1220,-1,1073,105,1218,-1,1106,1219,107,-1,1106,1135,1219,-1,1190,1214,1139,-1,1190,1212,1214,-1,1216,1140,1215,-1,1140,1216,351,-1,1214,1217,1215,-1,1214,1213,1217,-1,1211,628,1212,-1,1211,629,628,-1,1192,1211,1191,-1,1192,1074,1211,-1,1207,106,1210,-1,1207,1107,106,-1,11,1105,1208,-1,11,13,1105,-1,324,1083,1189,-1,323,1083,324,-1,318,1193,1206,-1,318,320,1193,-1,347,343,336,-1,345,343,347,-1,341,1080,337,-1,341,340,1080,-1,1209,327,1081,-1,1209,325,327,-1,328,1082,662,-1,1082,328,331,-1,332,328,330,-1,328,332,331,-1,1210,1111,1207,-1,1111,1210,1184,-1,1208,204,11,-1,202,204,1208,-1,199,322,1205,-1,199,201,322,-1,195,1206,193,-1,195,318,1206,-1,1185,346,1076,-1,1185,344,346,-1,551,309,308,-1,1084,309,551,-1,1085,1184,1210,-1,1085,206,1184,-1,303,1065,1204,-1,303,302,1065,-1,1187,289,1172,-1,1187,292,289,-1,296,1086,1071,-1,1086,296,233,-1,295,296,293,-1,297,296,295,-1,284,1093,1092,-1,1093,284,1165,-1,232,1128,230,-1,232,1129,1128,-1,284,1186,287,-1,284,1092,1186,-1,279,1173,911,-1,279,280,1173,-1,909,1171,1095,-1,909,1170,1171,-1,1166,903,1169,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getloscoxae_Geo_5_649_coordIndex_11()
		{
			int[] value = {903,1166,274,-1,1164,288,1167,-1,288,1164,1204,-1,737,992,684,-1,992,737,991,-1,738,743,742,-1,1203,743,738,-1,1202,182,676,-1,1202,185,182,-1,1200,674,990,-1,1200,1201,674,-1,988,272,270,-1,988,1198,272,-1,64,1199,987,-1,64,679,1199,-1,265,748,25,-1,265,27,748,-1,60,261,955,-1,261,60,61,-1,711,255,1327,-1,255,711,254,-1,247,688,1102,-1,246,688,247,-1,1197,711,1327,-1,1197,972,711,-1,1195,973,1196,-1,1195,693,973,-1,129,971,1099,-1,129,260,971,-1,258,248,245,-1,258,698,248,-1,240,249,241,-1,250,249,240,-1,468,1185,321,-1,468,466,1185,-1,1193,1191,1189,-1,1193,1192,1191,-1,324,1139,237,-1,324,1190,1139,-1,349,12,238,-1,12,349,13,-1,230,1086,233,-1,230,1188,1086,-1,231,1187,232,-1,297,1187,231,-1,282,287,1186,-1,282,102,287,-1,352,1070,1069,-1,285,1070,352,-1,319,1077,320,-1,319,1076,1077,-1,73,211,74,-1,212,211,73,-1,432,910,434,-1,432,305,910,-1,437,1094,420,-1,437,1047,1094,-1,139,206,137,-1,206,139,1184,-1,151,195,194,-1,195,151,321,-1,1065,188,187,-1,1065,1182,188,-1,192,1048,1094,-1,192,189,1048,-1,5,939,770,-1,5,942,939,-1,776,1,775,-1,1,776,553,-1,178,8,179,-1,9,8,178,-1,934,172,1007,-1,934,173,172,-1,765,1178,764,-1,1178,765,1179,-1,769,948,767,-1,948,769,1177,-1,788,766,1176,-1,766,788,762,-1,790,1134,789,-1,790,1175,1134,-1,1141,802,111,-1,1141,867,802,-1,1057,155,157,-1,88,155,1057,-1,1109,156,1108,-1,1109,158,156,-1,1058,88,1057,-1,1058,1125,88,-1,142,200,143,-1,142,1174,200,-1,1173,289,1170,-1,1173,1172,289,-1,1090,1171,291,-1,1090,1168,1171,-1,1167,357,1164,-1,1167,1165,357,-1,983,1163,1130,-1,983,1162,1163,-1,983,1153,1162,-1,1327,1131,1160,-1,1131,1327,255,-1,1197,1160,1159,-1,1160,1197,1327,-1,1158,1197,1159,-1,1158,1196,1197,-1,1196,1157,1195,-1,1158,1157,1196,-1,1100,1157,1154,-1,1157,1100,1195,-1,1130,1100,1154,-1,1130,1101,1100,-1,1296,256,683,-1,1296,259,256,-1,1152,983,1302,-1,983,1152,1153,-1,1151,1302,1300,-1,1302,1151,1152,-1,1298,1151,1300,-1,1298,1150,1151,-1,1150,683,256,-1,1298,683,1150,-1,984,259,1296,-1,984,1149,259,-1,1149,1148,128,-1,984,1148,1149,-1,1147,127,126,-1,1147,249,127,-1,241,1147,1145,-1,1147,241,249,-1,241,1133,243,-1,1145,1133,241,-1,1146,1132,1133,-1,1146,1194,1132,-1,1132,749,24,-1,1194,749,1132,-1,75,1143,76,-1,75,1053,1143,-1,1053,125,1143,-1,1053,415,125,-1,122,409,120,-1,411,409,122,-1,120,408,95,-1,409,408,120,-1,118,1055,116,-1,97,1055,118,-1,118,115,114,-1,118,117,115,-1,341,1025,342,-1,341,343,1025,-1,268,59,951,-1,268,267,59,-1,45,50,48,-1,51,50,45,-1,81,210,124,-1,210,81,213,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getloscoxae_Geo_5_649_normalIndex_1()
		{
			int[] value = {686,675,890,-1,686,755,449,-1,57,8,77,-1,745,1062,631,-1,1138,1323,1324,-1,982,1027,905,-1,729,896,1011,-1,629,395,528,-1,902,1145,1206,-1,1152,1214,1011,-1,1214,809,1011,-1,783,1263,1266,-1,783,1102,1263,-1,919,1201,1102,-1,1201,1252,1102,-1,634,1051,1048,-1,226,215,206,-1,904,804,945,-1,751,670,571,-1,751,779,670,-1,965,733,757,-1,1194,1234,1243,-1,1220,894,1313,-1,1313,1230,1220,-1,1092,1187,965,-1,1092,1095,1187,-1,699,972,879,-1,972,989,879,-1,208,105,261,-1,865,889,960,-1,153,104,54,-1,151,60,104,-1,475,407,409,-1,204,36,107,-1,373,212,435,-1,472,408,435,-1,277,342,324,-1,324,343,277,-1,155,140,269,-1,155,213,140,-1,81,49,19,-1,230,229,360,-1,1126,1013,1012,-1,977,1136,1070,-1,977,1020,1136,-1,467,231,256,-1,422,256,438,-1,140,16,17,-1,38,46,32,-1,38,105,46,-1,197,261,105,-1,105,38,197,-1,65,155,99,-1,65,213,155,-1,7,101,47,-1,47,127,7,-1,950,841,909,-1,841,871,909,-1,1069,949,899,-1,575,516,481,-1,481,594,575,-1,655,502,741,-1,655,543,502,-1,808,486,721,-1,808,550,486,-1,766,427,632,-1,766,505,427,-1,218,258,490,-1,153,352,287,-1,153,299,352,-1,124,97,15,-1,97,27,15,-1,500,525,739,-1,525,676,739,-1,739,646,500,-1,525,524,676,-1,307,272,322,-1,272,313,322,-1,459,394,217,-1,338,26,215,-1,26,206,215,-1,750,616,968,-1,616,820,968,-1,1245,831,928,-1,928,1325,1245,-1,1286,944,1260,-1,1286,833,944,-1,120,56,78,-1,245,152,180,-1,245,240,152,-1,735,589,716,-1,735,632,589,-1,849,766,778,-1,849,726,766,-1,856,606,754,-1,856,721,606,-1,1016,946,808,-1,808,920,1016,-1,625,655,697,-1,625,594,655,-1,366,413,477,-1,91,179,29,-1,91,235,179,-1,155,116,99,-1,155,212,116,-1,370,197,176,-1,198,54,334,-1,334,289,198,-1,107,47,101,-1,107,36,47,-1,548,456,261,-1,1164,999,1038,-1,719,865,586,-1,1169,1114,975,-1,791,1025,906,-1,791,926,1025,-1,1071,954,878,-1,1071,1020,954,-1,1267,1250,1323,-1,889,865,710,-1,865,719,710,-1,1178,1075,1215,-1,1075,1098,1215,-1,1098,1157,1215,-1,556,596,476,-1,556,635,596,-1,907,1009,874,-1,874,841,907,-1,911,790,857,-1,790,796,857,-1,1051,634,783,-1,663,654,602,-1,663,711,654,-1,841,874,859,-1,859,871,841,-1,634,919,783,-1,913,785,989,-1,1152,1087,1266,-1,1104,1083,1206,-1,1206,1231,1104,-1,1139,1065,1081,-1,1141,659,1220,-1,1141,688,659,-1,833,618,944,-1,80,70,147,-1,321,303,221,-1,303,354,221,-1,999,1099,1155,-1,1155,1158,999,-1,679,980,704,-1,679,986,980,-1,74,70,80,-1,560,873,664,-1,560,854,873,-1,1076,1143,975,-1,975,997,1076,-1,1025,1006,994,-1,691,878,707,-1,707,568,691,-1,39,55,37,-1,389,267,366,-1,389,321,267,-1,705,749,531,-1,531,564,705,-1,891,971,705,-1,661,386,368,-1,510,282,449,-1,510,755,681,-1,814,886,1119,-1,814,657,886,-1,1109,1112,1285,-1,668,699,864,-1,864,962,668,-1,1305,1298,1304,-1,1283,1291,1321,-1,1291,1304,1275,-1,1327,1221,1258,-1,1168,1211,962,-1,767,870,390,-1,840,1258,1221,-1,840,870,1258,-1,642,620,1127,-1,620,1120,1127,-1,1203,1213,1111,-1,1213,1124,1111,-1,885,710,600,-1,1116,1164,1189,-1,411,480,600,-1,480,704,600,-1,1116,1103,1027,-1,1021,1027,982,-1,1049,1012,960,-1,650,865,960,-1,905,927,982,-1,876,1074,1103,-1,1103,1018,876,-1,876,660,787,-1,787,1074,876,-1,905,1024,743,-1,1024,798,743,-1,411,600,542,-1,600,671,542,-1,650,492,586,-1,586,865,650,-1,537,650,795,-1,353,229,39,-1,353,463,229,-1,120,147,70,-1,278,318,173,-1,79,214,114,-1,114,92,79,-1,79,87,214,-1,318,383,319,-1,319,281,318,-1,120,78,200,-1,180,147,279,-1,180,152,147,-1,230,360,268,-1,369,342,392,-1,31,88,44,-1,88,35,44,-1,290,360,492,-1,49,81,88,-1,108,81,187,-1,187,344,108,-1,250,159,164,-1,164,160,250,-1,157,125,159,-1,187,19,140,-1,157,193,122,-1,156,125,115,-1,293,199,319,-1,151,202,160,-1,151,104,202,-1,201,164,156,-1,36,407,235,-1,36,204,407,-1,179,460,538,-1,538,54,179,-1,538,334,54,-1,222,111,131,-1,879,864,699,-1,521,900,699,-1,521,801,900,-1,136,218,301,-1,376,265,550,-1,265,486,550,-1,423,327,543,-1,327,502,543,-1,488,487,311,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getloscoxae_Geo_5_649_normalIndex_2()
		{
			int[] value = {311,285,488,-1,311,243,285,-1,285,67,355,-1,285,134,67,-1,362,355,67,-1,253,222,289,-1,289,429,253,-1,538,460,584,-1,460,557,584,-1,355,583,488,-1,355,624,583,-1,359,314,264,-1,412,432,374,-1,275,364,320,-1,210,223,262,-1,205,248,207,-1,93,129,135,-1,172,255,642,-1,255,620,642,-1,0,172,259,-1,259,11,0,-1,259,257,11,-1,265,73,284,-1,0,41,172,-1,83,41,28,-1,85,73,265,-1,265,112,85,-1,181,376,337,-1,185,165,145,-1,142,255,148,-1,33,96,150,-1,33,323,326,-1,150,96,171,-1,350,339,349,-1,399,458,397,-1,399,450,458,-1,399,332,329,-1,286,361,329,-1,329,332,196,-1,196,286,329,-1,247,227,64,-1,64,149,247,-1,239,58,158,-1,239,196,58,-1,283,149,196,-1,328,420,361,-1,384,493,508,-1,508,306,384,-1,306,381,236,-1,306,508,381,-1,150,381,521,-1,521,323,150,-1,801,521,508,-1,622,797,508,-1,523,416,418,-1,622,491,581,-1,622,523,491,-1,567,762,581,-1,581,482,567,-1,482,491,418,-1,418,474,482,-1,482,576,599,-1,599,567,482,-1,781,763,684,-1,781,855,763,-1,545,437,461,-1,461,638,545,-1,540,698,504,-1,540,738,698,-1,693,737,580,-1,737,569,580,-1,737,863,738,-1,737,880,863,-1,749,880,693,-1,749,1029,880,-1,574,510,681,-1,769,533,681,-1,890,839,755,-1,615,661,890,-1,943,995,915,-1,869,877,915,-1,869,851,877,-1,1195,1005,1238,-1,1238,1315,1195,-1,1026,1195,1137,-1,1026,1005,1195,-1,973,846,1026,-1,973,788,846,-1,846,822,1005,-1,612,598,438,-1,742,943,915,-1,978,834,1068,-1,978,734,834,-1,978,1097,998,-1,978,1068,1097,-1,881,995,998,-1,881,869,995,-1,1315,1238,1241,-1,1241,1229,1315,-1,1229,1241,1183,-1,590,776,742,-1,590,438,443,-1,734,776,558,-1,776,590,558,-1,1041,653,941,-1,1041,912,653,-1,1278,1195,1315,-1,1315,1280,1278,-1,1077,1310,1280,-1,993,882,1229,-1,715,966,1077,-1,579,715,882,-1,882,518,579,-1,446,579,347,-1,579,518,347,-1,338,395,608,-1,338,215,395,-1,830,485,496,-1,830,740,485,-1,614,804,830,-1,740,966,715,-1,740,964,966,-1,485,579,446,-1,629,842,848,-1,528,922,842,-1,689,922,470,-1,917,465,535,-1,917,752,465,-1,1186,1067,1091,-1,1186,1129,1067,-1,1194,1122,1149,-1,1234,1174,1217,-1,1309,1288,1289,-1,1246,1278,1259,-1,1322,1278,1310,-1,1131,1077,966,-1,1028,845,752,-1,845,689,752,-1,1186,1243,1256,-1,1186,1194,1243,-1,1273,1274,1294,-1,1312,1327,1275,-1,1156,959,1019,-1,1156,1179,959,-1,887,845,1028,-1,887,893,845,-1,959,933,1019,-1,959,887,933,-1,1156,1207,1179,-1,1156,1181,1207,-1,924,1259,1131,-1,936,835,924,-1,1133,887,959,-1,1133,1056,887,-1,1236,1205,1265,-1,1205,1223,1265,-1,1265,1257,1293,-1,1293,1236,1265,-1,1168,864,1154,-1,1168,962,864,-1,1253,1301,1320,-1,805,957,924,-1,957,903,924,-1,908,903,1121,-1,1239,1144,1172,-1,1239,983,1144,-1,1318,1133,1198,-1,1318,1284,1133,-1,1293,1230,1236,-1,1293,1296,1230,-1,1141,1220,1230,-1,1230,1296,1141,-1,1314,1320,1301,-1,690,785,748,-1,649,667,725,-1,875,784,768,-1,768,813,875,-1,694,596,826,-1,613,777,794,-1,794,640,613,-1,1050,1086,961,-1,961,794,1050,-1,810,672,709,-1,1022,925,1146,-1,1063,1050,956,-1,1022,858,771,-1,1233,1153,1282,-1,1233,1140,1153,-1,857,800,1072,-1,1072,1191,911,-1,911,857,1072,-1,1201,1191,1226,-1,1306,1224,1276,-1,1306,1252,1224,-1,874,1046,859,-1,965,1187,1007,-1,1007,759,965,-1,1002,1045,1088,-1,1088,1017,1002,-1,1178,1254,1009,-1,1178,1277,1254,-1,1308,1319,1262,-1,1051,783,1087,-1,963,897,955,-1,1101,1069,899,-1,1101,1023,1069,-1,1101,1048,939,-1,825,897,1008,-1,897,1039,1008,-1,1035,923,1246,-1,1246,1259,1035,-1,815,1106,844,-1,844,662,815,-1,587,884,896,-1,587,756,884,-1,1308,1219,1266,-1,1266,1263,1308,-1,1087,1011,896,-1,1206,1303,1292,-1,1292,1231,1206,-1,1081,1150,1139,-1,1150,1045,1139,-1,942,935,1029,-1,914,817,769,-1,648,630,587,-1,648,669,630,-1,627,656,838,-1,501,566,695,-1,566,775,695,-1,455,617,396,-1,455,674,617,-1,189,144,425,-1,425,368,189,-1,102,449,161,-1,102,378,449,-1,305,378,61,-1,378,117,61,-1,61,117,53,-1,8,61,77,-1,368,386,189,-1,184,13,25,-1,25,211,184,-1,580,574,693,-1,553,512,580,-1,553,569,519,-1,419,375,288,-1,375,237,288,-1,551,507,307,-1,718,468,646,-1,45,40,446,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getloscoxae_Geo_5_649_normalIndex_3()
		{
			int[] value = {138,347,346,-1,138,45,347,-1,345,365,322,-1,322,304,345,-1,442,333,467,-1,333,313,467,-1,535,430,610,-1,535,266,430,-1,798,578,743,-1,798,597,578,-1,17,251,269,-1,251,435,269,-1,408,511,276,-1,86,158,58,-1,58,21,86,-1,103,68,276,-1,103,266,132,-1,21,10,69,-1,21,68,10,-1,51,69,10,-1,51,10,75,-1,206,26,220,-1,146,226,82,-1,51,75,82,-1,43,51,18,-1,71,18,82,-1,71,89,50,-1,95,119,43,-1,43,59,95,-1,4,18,30,-1,4,23,18,-1,45,138,2,-1,534,522,592,-1,182,263,141,-1,141,234,182,-1,611,393,414,-1,95,52,130,-1,141,52,98,-1,48,234,98,-1,1,48,52,-1,1325,1261,1185,-1,1185,1200,1325,-1,585,621,928,-1,621,1082,928,-1,471,544,745,-1,544,831,745,-1,595,631,1061,-1,631,1147,1061,-1,774,517,377,-1,517,260,377,-1,194,331,377,-1,377,167,194,-1,167,260,94,-1,94,106,167,-1,234,48,143,-1,414,234,451,-1,847,942,811,-1,942,914,811,-1,824,751,571,-1,549,809,765,-1,1011,1087,1152,-1,729,1011,818,-1,818,665,729,-1,888,862,812,-1,990,1166,1123,-1,990,1030,1166,-1,673,883,682,-1,673,823,883,-1,571,532,462,-1,549,310,302,-1,302,809,549,-1,818,448,379,-1,379,665,818,-1,812,517,774,-1,774,940,812,-1,1135,1196,1200,-1,1135,1066,1196,-1,930,1003,968,-1,682,820,611,-1,682,883,820,-1,233,240,309,-1,233,152,240,-1,221,267,321,-1,625,568,539,-1,625,691,568,-1,389,520,428,-1,466,539,520,-1,539,568,520,-1,520,389,466,-1,175,224,169,-1,281,245,180,-1,180,225,281,-1,1126,1155,1099,-1,883,968,820,-1,883,930,968,-1,1166,1135,1185,-1,1135,1200,1185,-1,940,774,951,-1,951,988,940,-1,812,444,517,-1,812,722,444,-1,818,302,448,-1,818,809,302,-1,823,930,883,-1,996,948,988,-1,793,722,812,-1,812,862,793,-1,1011,809,818,-1,1083,765,809,-1,809,1214,1083,-1,765,824,549,-1,824,571,549,-1,532,571,670,-1,692,823,673,-1,692,811,823,-1,1083,824,765,-1,1083,1104,824,-1,414,451,611,-1,143,451,234,-1,611,451,462,-1,462,682,611,-1,6,143,48,-1,143,6,310,-1,6,302,310,-1,1,34,14,-1,167,377,260,-1,445,745,631,-1,445,471,745,-1,1062,1171,1147,-1,1147,631,1062,-1,1245,1325,1196,-1,1325,1200,1196,-1,1261,1270,1185,-1,106,20,62,-1,34,52,59,-1,34,1,52,-1,48,98,52,-1,141,98,234,-1,141,130,52,-1,95,59,52,-1,611,431,393,-1,611,616,431,-1,234,209,182,-1,616,750,503,-1,503,431,616,-1,522,503,592,-1,308,544,471,-1,308,394,544,-1,459,478,585,-1,194,304,333,-1,4,30,2,-1,2,20,4,-1,2,30,45,-1,50,40,71,-1,71,82,89,-1,71,30,18,-1,82,18,51,-1,146,82,75,-1,89,82,226,-1,89,220,72,-1,72,220,26,-1,51,119,69,-1,51,43,119,-1,103,430,266,-1,103,276,430,-1,21,58,64,-1,64,68,21,-1,130,238,158,-1,158,86,130,-1,430,276,511,-1,511,472,554,-1,511,408,472,-1,251,336,472,-1,208,578,597,-1,597,336,208,-1,456,743,578,-1,146,528,226,-1,146,470,528,-1,333,304,313,-1,304,322,313,-1,45,446,347,-1,50,89,485,-1,89,496,485,-1,365,345,500,-1,551,468,718,-1,551,307,468,-1,443,438,231,-1,232,144,217,-1,144,459,217,-1,436,478,189,-1,436,547,478,-1,519,522,553,-1,553,580,569,-1,512,510,574,-1,574,580,512,-1,184,109,13,-1,109,53,13,-1,63,57,77,-1,113,8,57,-1,53,77,61,-1,113,305,8,-1,305,61,8,-1,378,102,117,-1,102,161,13,-1,161,25,13,-1,161,282,25,-1,161,449,282,-1,598,836,838,-1,793,862,846,-1,648,729,712,-1,896,648,587,-1,896,729,648,-1,1085,931,952,-1,1085,1059,931,-1,914,769,839,-1,839,953,914,-1,942,1029,817,-1,817,914,942,-1,965,759,733,-1,1092,965,757,-1,757,892,1092,-1,1231,1292,1150,-1,1150,1081,1231,-1,1266,1087,783,-1,617,619,396,-1,619,425,396,-1,1087,896,884,-1,630,844,760,-1,630,662,844,-1,815,764,923,-1,815,662,764,-1,1137,1246,923,-1,908,815,923,-1,923,1035,908,-1,1101,899,1048,-1,783,919,1102,-1,1157,1262,1215,-1,1046,1009,1254,-1,1046,874,1009,-1,1187,1064,1007,-1,1064,970,1007,-1,1254,1277,1282,-1,1287,1311,1299,-1,1086,1118,1072,-1,1072,961,1086,-1,1086,1184,1118,-1,1086,1063,1184,-1,1235,1224,1226,-1,1140,1031,1153,-1,1031,910,1153,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getloscoxae_Geo_5_649_normalIndex_4()
		{
			int[] value = {925,706,747,-1,925,771,706,-1,925,1022,771,-1,1063,1086,1050,-1,895,860,938,-1,1140,1233,1146,-1,1235,1184,1146,-1,1184,1022,1146,-1,1184,1063,1022,-1,850,709,821,-1,850,810,709,-1,747,826,596,-1,747,706,826,-1,956,794,777,-1,956,1050,794,-1,702,647,961,-1,613,666,777,-1,666,758,777,-1,701,826,724,-1,701,694,826,-1,825,875,813,-1,825,1008,875,-1,789,813,768,-1,789,786,813,-1,641,730,651,-1,641,714,730,-1,748,803,700,-1,867,748,785,-1,785,913,867,-1,987,1159,1154,-1,1318,1177,1302,-1,1318,1198,1177,-1,1320,1296,1293,-1,1320,1314,1296,-1,1216,1121,1192,-1,1216,908,1121,-1,1293,1255,1320,-1,1168,1154,1301,-1,801,797,900,-1,797,970,900,-1,762,759,1007,-1,762,567,759,-1,1240,1251,1293,-1,1205,1207,1223,-1,1205,1177,1207,-1,1056,1040,893,-1,893,887,1056,-1,805,924,835,-1,924,1131,936,-1,924,1035,1259,-1,887,1028,933,-1,1210,1265,1223,-1,1223,1167,1210,-1,1256,1243,1240,-1,1312,1275,1304,-1,1304,1309,1312,-1,845,732,689,-1,732,916,689,-1,835,773,732,-1,964,967,773,-1,773,966,964,-1,966,936,1131,-1,1322,1310,1077,-1,1322,1259,1278,-1,1163,1173,1134,-1,689,465,752,-1,689,470,465,-1,689,916,922,-1,1054,842,922,-1,967,964,1054,-1,964,904,1054,-1,945,848,842,-1,629,528,842,-1,804,848,945,-1,614,496,315,-1,922,528,470,-1,395,226,528,-1,395,215,226,-1,1077,882,715,-1,1280,1229,882,-1,1077,1280,882,-1,1278,1280,1310,-1,1229,1280,1315,-1,1041,941,1183,-1,653,718,941,-1,653,551,718,-1,443,469,590,-1,469,558,590,-1,912,1041,1162,-1,1041,1183,1162,-1,1162,1183,1241,-1,1241,1212,1162,-1,742,915,612,-1,742,776,943,-1,1001,1005,822,-1,1001,1190,1005,-1,1005,1026,846,-1,973,1026,1137,-1,1190,1238,1005,-1,915,995,869,-1,836,915,877,-1,836,598,612,-1,612,915,836,-1,890,675,615,-1,769,817,533,-1,531,749,574,-1,749,693,574,-1,781,738,863,-1,781,698,738,-1,737,693,880,-1,545,404,437,-1,545,474,404,-1,437,404,298,-1,404,209,298,-1,687,599,576,-1,576,482,474,-1,474,545,576,-1,482,581,491,-1,797,581,762,-1,797,622,581,-1,523,418,491,-1,622,508,523,-1,801,508,797,-1,521,381,508,-1,523,508,493,-1,328,286,239,-1,328,361,286,-1,286,196,239,-1,328,158,238,-1,328,239,158,-1,196,64,58,-1,196,149,64,-1,212,373,227,-1,227,247,212,-1,283,196,332,-1,350,329,361,-1,494,397,458,-1,371,270,283,-1,552,475,494,-1,450,406,483,-1,236,171,203,-1,382,406,349,-1,96,142,137,-1,33,150,323,-1,142,439,255,-1,181,129,93,-1,181,337,129,-1,181,265,376,-1,181,112,265,-1,85,126,83,-1,83,172,41,-1,0,28,41,-1,0,12,28,-1,246,284,73,-1,228,195,9,-1,255,840,620,-1,255,439,840,-1,546,499,577,-1,473,453,426,-1,385,340,314,-1,254,219,264,-1,216,207,248,-1,464,374,432,-1,487,488,583,-1,624,538,583,-1,538,584,583,-1,473,509,483,-1,334,538,526,-1,526,429,334,-1,253,111,222,-1,526,601,362,-1,362,253,526,-1,253,429,526,-1,355,488,285,-1,90,134,285,-1,285,243,90,-1,191,319,199,-1,389,366,466,-1,423,543,481,-1,481,447,423,-1,327,356,502,-1,356,591,502,-1,195,505,514,-1,514,246,195,-1,228,136,301,-1,301,427,228,-1,972,699,900,-1,289,222,293,-1,179,235,460,-1,235,407,460,-1,201,156,115,-1,201,188,164,-1,153,198,299,-1,299,319,400,-1,299,293,319,-1,157,140,193,-1,250,187,159,-1,250,344,187,-1,108,35,81,-1,35,88,81,-1,31,49,88,-1,31,42,49,-1,290,296,360,-1,108,344,183,-1,250,202,341,-1,250,160,202,-1,15,44,35,-1,15,27,44,-1,369,316,342,-1,316,324,342,-1,317,268,360,-1,360,296,317,-1,225,180,279,-1,279,121,225,-1,279,200,121,-1,120,200,279,-1,317,300,268,-1,87,268,214,-1,268,300,214,-1,402,383,278,-1,383,318,278,-1,278,358,402,-1,225,121,173,-1,173,318,225,-1,318,281,225,-1,70,56,120,-1,56,70,84,-1,360,586,492,-1,743,456,548,-1,548,905,743,-1,876,610,660,-1,917,535,932,-1,535,610,932,-1,1074,1024,1103,-1,1024,1027,1103,-1,905,795,927,-1,960,982,927,-1,600,710,671,-1,982,960,1012,-1,1021,1116,1027,-1,1116,1161,1103,-1,1161,1018,1103,-1,542,671,609,-1,1013,1021,1012,-1,999,1164,1099,-1,1116,1021,1164,-1,1049,1079,1113,-1,947,802,954,-1,954,976,947,-1,1247,1120,1297,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getloscoxae_Geo_5_649_normalIndex_5()
		{
			int[] value = {1247,1127,1120,-1,985,1127,1228,-1,1307,1316,1258,-1,1258,1094,1307,-1,1060,962,1211,-1,1168,1227,1211,-1,1321,1307,1211,-1,1316,1327,1258,-1,1312,1297,1327,-1,1321,1316,1307,-1,1321,1291,1316,-1,1273,1304,1298,-1,1298,1251,1273,-1,1320,1255,1253,-1,778,1014,1112,-1,1112,849,778,-1,716,657,814,-1,510,449,755,-1,619,368,425,-1,619,661,368,-1,661,615,386,-1,570,533,817,-1,817,891,570,-1,891,817,1029,-1,1029,971,891,-1,898,878,691,-1,898,1071,878,-1,362,624,355,-1,362,601,624,-1,120,279,147,-1,802,947,819,-1,926,1006,1025,-1,792,1043,832,-1,792,1114,1043,-1,588,792,623,-1,792,832,623,-1,623,728,515,-1,623,832,728,-1,240,166,309,-1,166,249,309,-1,588,664,792,-1,664,873,792,-1,190,353,39,-1,39,37,190,-1,1048,1051,884,-1,944,683,983,-1,944,618,683,-1,983,784,1144,-1,983,683,784,-1,939,760,853,-1,939,756,760,-1,1220,659,894,-1,1081,1104,1231,-1,1081,1065,1104,-1,1092,1139,1095,-1,709,654,780,-1,780,821,709,-1,919,790,911,-1,919,634,790,-1,666,613,530,-1,530,563,666,-1,484,694,701,-1,701,573,484,-1,647,640,961,-1,640,794,961,-1,902,1117,1157,-1,1079,889,885,-1,889,710,885,-1,490,258,257,-1,257,657,490,-1,1269,1151,1218,-1,1136,1020,1071,-1,878,954,802,-1,802,707,878,-1,854,975,873,-1,854,997,975,-1,1158,1114,1169,-1,1158,1043,1114,-1,1038,999,1169,-1,999,1158,1169,-1,650,280,492,-1,105,208,336,-1,336,46,105,-1,198,153,54,-1,537,123,650,-1,537,174,123,-1,46,336,251,-1,251,17,46,-1,99,116,107,-1,107,101,99,-1,267,413,366,-1,267,311,413,-1,594,625,539,-1,539,575,594,-1,958,946,1016,-1,958,868,946,-1,920,721,856,-1,920,808,721,-1,754,726,849,-1,754,606,726,-1,766,632,735,-1,735,778,766,-1,128,39,229,-1,229,230,128,-1,429,289,334,-1,305,113,615,-1,113,386,615,-1,750,968,1270,-1,1270,829,750,-1,1325,1082,1261,-1,1325,928,1082,-1,211,295,433,-1,433,497,211,-1,608,629,848,-1,608,395,629,-1,828,984,937,-1,937,770,828,-1,422,582,656,-1,566,421,627,-1,566,419,421,-1,217,308,186,-1,217,394,308,-1,365,500,468,-1,500,646,468,-1,231,313,272,-1,231,467,313,-1,650,123,280,-1,343,124,277,-1,202,287,351,-1,351,341,202,-1,202,153,287,-1,202,104,153,-1,655,594,543,-1,594,481,543,-1,632,301,589,-1,632,427,301,-1,726,505,766,-1,726,514,505,-1,946,550,808,-1,946,604,550,-1,741,502,591,-1,591,868,741,-1,575,541,516,-1,541,477,516,-1,303,428,559,-1,303,559,636,-1,636,354,303,-1,353,190,411,-1,411,542,353,-1,899,790,634,-1,899,949,790,-1,637,730,714,-1,949,872,790,-1,872,796,790,-1,1100,1157,1098,-1,1098,1182,1100,-1,201,7,127,-1,201,115,7,-1,42,197,38,-1,19,16,140,-1,421,256,422,-1,273,256,288,-1,438,256,231,-1,442,467,256,-1,1084,1269,1203,-1,1084,1151,1269,-1,1099,1013,1126,-1,1012,1021,982,-1,353,542,463,-1,31,197,42,-1,269,140,17,-1,19,187,81,-1,213,193,140,-1,435,408,373,-1,155,269,435,-1,435,212,155,-1,435,251,472,-1,552,407,475,-1,409,407,204,-1,60,29,104,-1,67,111,253,-1,253,362,67,-1,609,719,586,-1,1064,989,972,-1,1064,913,989,-1,1186,1232,1129,-1,1186,1256,1232,-1,1257,1240,1293,-1,96,137,171,-1,804,904,830,-1,614,830,496,-1,349,339,292,-1,1048,899,634,-1,1102,1295,1263,-1,1266,1219,1152,-1,1219,1214,1152,-1,1117,902,1206,-1,1145,1303,1206,-1,884,1051,1087,-1,1024,905,1027,-1,1250,1225,1188,-1,1250,1267,1225,-1,820,616,611,-1,661,619,931,-1,378,675,686,-1,449,378,686,-1,755,686,890,-1,1316,1275,1327,-1,1316,1291,1275,-1,1232,1240,1257,-1,1232,1256,1240,-1,261,370,548,-1,261,197,370,-1,980,600,704,-1,600,980,885,-1,792,975,1114,-1,873,975,792,-1,273,372,256,-1,403,372,273,-1,438,582,422,-1,598,582,438,-1,256,419,288,-1,419,256,421,-1,49,16,19,-1,32,16,49,-1,101,65,99,-1,7,65,101,-1,47,139,127,-1,139,47,91,-1,60,91,29,-1,60,139,91,-1,1100,902,1157,-1,1100,1145,902,-1,1208,1182,1160,-1,1208,1244,1182,-1,1160,1088,1208,-1,1088,1160,1010,-1,1088,950,1017,-1,1088,1010,950,-1,1017,909,921,-1,1017,950,909,-1,909,780,782,-1,909,871,780,-1,782,654,711,-1,782,780,654,-1,663,556,639,-1,663,602,556,-1,639,476,607,-1,639,556,476,-1,607,484,605,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getloscoxae_Geo_5_649_normalIndex_6()
		{
			int[] value = {607,476,484,-1,573,605,484,-1,626,605,573,-1,644,730,637,-1,744,730,644,-1,644,761,744,-1,761,644,652,-1,685,761,652,-1,789,761,685,-1,789,727,786,-1,789,685,727,-1,786,799,861,-1,786,727,799,-1,799,955,861,-1,955,799,872,-1,1069,872,949,-1,1069,955,872,-1,637,628,563,-1,746,628,637,-1,628,573,563,-1,628,626,573,-1,411,177,480,-1,177,411,190,-1,457,252,515,-1,252,457,162,-1,398,623,363,-1,398,588,623,-1,664,291,560,-1,291,664,388,-1,354,555,274,-1,354,636,555,-1,363,515,252,-1,623,515,363,-1,868,604,946,-1,868,591,604,-1,506,726,606,-1,506,514,726,-1,589,218,490,-1,589,301,218,-1,287,392,351,-1,287,352,392,-1,351,342,277,-1,351,392,342,-1,290,280,97,-1,280,290,492,-1,124,290,97,-1,124,343,290,-1,468,322,365,-1,307,322,468,-1,186,297,237,-1,186,308,297,-1,627,422,656,-1,627,421,422,-1,419,501,375,-1,501,419,566,-1,294,396,232,-1,396,294,455,-1,619,952,931,-1,617,952,619,-1,695,979,674,-1,979,695,1004,-1,770,974,775,-1,974,770,937,-1,608,804,614,-1,608,848,804,-1,440,211,497,-1,211,440,184,-1,1270,1082,829,-1,1270,1261,1082,-1,63,452,436,-1,109,452,63,-1,452,184,440,-1,109,184,452,-1,386,57,189,-1,113,57,386,-1,55,133,84,-1,55,100,133,-1,128,55,39,-1,128,100,55,-1,816,868,958,-1,816,741,868,-1,477,466,366,-1,477,541,466,-1,166,243,224,-1,243,166,90,-1,541,539,466,-1,541,575,539,-1,67,131,111,-1,134,131,67,-1,370,537,548,-1,176,537,370,-1,176,174,537,-1,985,657,565,-1,985,886,657,-1,980,1126,1113,-1,986,1126,980,-1,1158,969,1043,-1,1155,969,1158,-1,994,854,852,-1,997,854,994,-1,707,819,713,-1,707,802,819,-1,1218,1070,1136,-1,1218,1151,1070,-1,1324,1203,1269,-1,1324,1213,1203,-1,1279,1281,1285,-1,1279,1317,1281,-1,1119,1290,1248,-1,1119,1228,1290,-1,1292,1242,1244,-1,1292,1303,1242,-1,666,573,701,-1,573,666,563,-1,654,672,602,-1,654,709,672,-1,530,640,562,-1,530,613,640,-1,593,702,633,-1,593,647,702,-1,987,736,1159,-1,987,720,736,-1,894,1302,1313,-1,894,866,1302,-1,837,1284,1318,-1,837,807,1284,-1,939,884,756,-1,1048,884,939,-1,929,760,844,-1,853,760,929,-1,1216,1039,1106,-1,1216,1008,1039,-1,1144,875,1192,-1,1144,784,875,-1,989,690,879,-1,989,785,690,-1,80,152,233,-1,147,152,80,-1,66,190,37,-1,66,177,190,-1,80,162,74,-1,80,252,162,-1,1143,1169,975,-1,1169,1143,1038,-1,249,398,309,-1,249,388,398,-1,363,309,398,-1,309,363,233,-1,291,169,274,-1,169,291,175,-1,728,1043,969,-1,832,1043,728,-1,568,713,520,-1,713,568,707,-1,906,555,636,-1,906,852,555,-1,791,520,713,-1,559,520,791,-1,520,559,428,-1,987,864,879,-1,987,1154,864,-1,691,697,898,-1,697,691,625,-1,1064,900,970,-1,1064,972,900,-1,705,1029,749,-1,705,971,1029,-1,705,570,891,-1,705,564,570,-1,1267,1109,1285,-1,1089,1109,1267,-1,735,1014,778,-1,735,918,1014,-1,754,1112,1109,-1,754,849,1112,-1,856,1138,920,-1,856,1089,1138,-1,1115,1016,1128,-1,958,1016,1115,-1,1251,1255,1293,-1,1255,1251,1298,-1,1253,1298,1305,-1,1253,1255,1298,-1,1120,1327,1297,-1,1327,1120,1221,-1,1321,1227,1283,-1,1321,1211,1227,-1,1211,1094,1060,-1,1211,1307,1094,-1,703,1094,767,-1,703,1060,1094,-1,918,1279,1014,-1,918,1248,1279,-1,1089,1323,1138,-1,1089,1267,1323,-1,1218,1128,1269,-1,1115,1128,1218,-1,1071,1033,1136,-1,898,1033,1071,-1,1228,1247,1290,-1,1247,1228,1127,-1,1247,1289,1272,-1,1247,1297,1289,-1,1317,1268,1281,-1,1268,1317,1272,-1,1268,1271,1222,-1,1268,1288,1271,-1,1202,1217,1175,-1,1202,1249,1217,-1,1225,1202,1188,-1,1202,1225,1222,-1,1250,1124,1213,-1,1250,1188,1124,-1,1020,976,954,-1,977,976,1020,-1,1070,1000,977,-1,1070,1032,1000,-1,992,947,976,-1,947,992,981,-1,1052,1076,1006,-1,1076,1052,1125,-1,1084,1036,1032,-1,1084,1078,1036,-1,1037,992,1000,-1,992,1037,1034,-1,1015,1052,981,-1,1052,1015,1057,-1,1108,1199,1125,-1,1199,1108,1165,-1,1148,1165,1108,-1,1148,1180,1165,-1,1055,1057,1015,-1,1055,1105,1057,-1,1073,1034,1037,-1,1073,1053,1034,-1,1110,1036,1078,-1,1110,1080,1036,-1,1124,1132,1111,-1,1132,1124,1175,-1,1132,1149,1110,-1,1132,1174,1149,-1,1073,1122,1091,-1,1073,1080,1122,-1,1067,1055,1053,-1,1055,1067,1096,-1,1134,1148,1105,-1,1148,1134,1173,-1,1204,1193,1180,-1,1193,1204,1197,-1,1193,1116,1189,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getloscoxae_Geo_5_649_normalIndex_7()
		{
			int[] value = {1161,1116,1193,-1,1038,1199,1164,-1,1143,1199,1038,-1,889,1049,960,-1,889,1079,1049,-1,1013,1164,1021,-1,1013,1099,1164,-1,719,671,710,-1,671,719,609,-1,1142,1018,1161,-1,1142,932,1018,-1,927,650,960,-1,650,927,795,-1,610,1018,932,-1,876,1018,610,-1,245,319,191,-1,281,319,245,-1,278,114,214,-1,173,114,278,-1,214,358,278,-1,358,214,300,-1,391,402,369,-1,391,383,402,-1,300,316,358,-1,317,316,300,-1,78,121,200,-1,121,133,92,-1,121,78,133,-1,87,100,128,-1,87,79,100,-1,316,296,324,-1,316,317,296,-1,15,108,183,-1,15,35,108,-1,250,183,344,-1,250,341,183,-1,343,296,290,-1,343,324,296,-1,176,44,174,-1,176,31,44,-1,31,176,197,-1,299,391,352,-1,400,391,299,-1,199,222,131,-1,199,293,222,-1,195,427,505,-1,195,228,427,-1,284,514,506,-1,284,246,514,-1,591,337,604,-1,356,337,591,-1,513,481,516,-1,513,447,481,-1,513,477,413,-1,513,516,477,-1,191,131,166,-1,191,199,131,-1,624,526,538,-1,624,601,526,-1,325,401,382,-1,325,330,401,-1,453,382,401,-1,406,382,453,-1,487,529,513,-1,487,583,529,-1,447,348,423,-1,447,454,348,-1,244,356,327,-1,356,244,168,-1,262,374,312,-1,262,320,374,-1,405,264,312,-1,264,405,359,-1,464,424,374,-1,464,489,424,-1,216,264,219,-1,216,248,264,-1,314,254,264,-1,340,254,314,-1,385,359,426,-1,385,314,359,-1,479,417,499,-1,479,405,417,-1,499,415,498,-1,499,417,415,-1,561,464,536,-1,561,489,464,-1,495,412,441,-1,495,432,412,-1,364,242,357,-1,242,364,275,-1,223,135,170,-1,135,223,210,-1,205,163,118,-1,163,205,207,-1,178,219,192,-1,178,216,219,-1,340,271,254,-1,330,271,340,-1,401,426,453,-1,401,385,426,-1,473,479,509,-1,473,426,479,-1,577,498,572,-1,498,577,499,-1,552,572,557,-1,552,577,572,-1,584,536,583,-1,584,561,536,-1,529,441,454,-1,529,495,441,-1,242,168,244,-1,168,242,170,-1,118,110,76,-1,110,118,163,-1,154,192,185,-1,154,178,192,-1,241,330,325,-1,241,271,330,-1,767,326,703,-1,390,326,767,-1,12,195,246,-1,12,9,195,-1,136,9,11,-1,136,228,9,-1,73,12,246,-1,12,73,28,-1,93,112,181,-1,112,93,76,-1,110,126,85,-1,126,110,154,-1,148,172,83,-1,172,148,255,-1,439,96,390,-1,96,439,142,-1,203,325,292,-1,325,203,241,-1,203,137,165,-1,137,203,171,-1,292,236,203,-1,306,236,292,-1,384,350,361,-1,384,339,350,-1,458,483,509,-1,458,450,483,-1,546,552,494,-1,546,577,552,-1,494,409,371,-1,494,475,409,-1,116,371,107,-1,270,371,116,-1,397,371,283,-1,494,371,397,-1,329,349,406,-1,350,349,329,-1,212,270,116,-1,270,212,247,-1,238,367,328,-1,367,238,263,-1,416,328,367,-1,420,328,416,-1,523,420,416,-1,493,420,523,-1,684,687,576,-1,684,763,687,-1,182,404,380,-1,404,182,209,-1,298,461,437,-1,461,298,335,-1,380,474,418,-1,474,380,404,-1,569,434,519,-1,540,434,569,-1,935,781,863,-1,935,855,781,-1,681,531,574,-1,681,533,531,-1,934,836,877,-1,934,838,836,-1,827,1001,822,-1,881,1001,827,-1,912,1068,834,-1,912,1162,1068,-1,1001,1212,1190,-1,1001,1097,1212,-1,834,653,912,-1,653,834,603,-1,603,551,653,-1,603,507,551,-1,1183,993,1229,-1,993,1183,941,-1,1278,1137,1195,-1,1278,1246,1137,-1,993,676,882,-1,993,739,676,-1,338,614,315,-1,614,338,608,-1,945,1054,904,-1,945,842,1054,-1,1054,916,967,-1,1054,922,916,-1,1170,1142,1197,-1,1170,1107,1142,-1,1163,1204,1173,-1,1163,1176,1204,-1,1134,1130,1163,-1,1130,1134,1096,-1,1271,1274,1249,-1,1294,1274,1271,-1,1259,1077,1131,-1,1259,1322,1077,-1,966,835,936,-1,835,966,773,-1,773,916,732,-1,773,967,916,-1,917,1019,933,-1,1019,917,1107,-1,1170,1181,1156,-1,1181,1170,1176,-1,1210,1163,1130,-1,1210,1167,1163,-1,1243,1251,1240,-1,1273,1251,1243,-1,1210,1257,1265,-1,1210,1232,1257,-1,843,835,732,-1,835,843,805,-1,1040,843,893,-1,1040,991,843,-1,1179,1177,1198,-1,1177,1179,1207,-1,762,970,797,-1,762,1007,970,-1,1253,1168,1301,-1,1253,1227,1168,-1,1121,957,1172,-1,1121,903,957,-1,1260,991,1040,-1,1239,991,1260,-1,1286,1040,1056,-1,1286,1260,1040,-1,1313,1177,1205,-1,1313,1302,1177,-1,867,803,748,-1,867,921,803,-1,680,720,700,-1,680,736,720,-1,753,700,803,-1,753,680,700,-1,736,667,688,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getloscoxae_Geo_5_649_normalIndex_8()
		{
			int[] value = {736,680,667,-1,659,658,894,-1,659,649,658,-1,731,645,658,-1,717,645,731,-1,645,837,866,-1,645,643,837,-1,708,641,643,-1,714,641,708,-1,833,641,651,-1,807,641,833,-1,744,651,730,-1,744,678,651,-1,678,683,618,-1,678,696,683,-1,696,789,768,-1,789,696,761,-1,861,813,786,-1,861,825,813,-1,666,724,758,-1,666,701,724,-1,777,858,956,-1,858,777,758,-1,706,724,826,-1,706,771,724,-1,635,747,596,-1,772,747,635,-1,859,850,821,-1,850,859,910,-1,1237,1235,1146,-1,1209,1235,1237,-1,1031,1146,938,-1,1031,1140,1146,-1,747,895,925,-1,747,772,895,-1,810,895,772,-1,860,895,810,-1,938,910,1031,-1,938,850,910,-1,1237,1299,1300,-1,1237,1264,1299,-1,1209,1224,1235,-1,1209,1276,1224,-1,1118,1235,1226,-1,1235,1118,1184,-1,1072,1226,1191,-1,1226,1072,1118,-1,1300,1311,1326,-1,1300,1299,1311,-1,1277,1299,1282,-1,1287,1299,1277,-1,1282,1046,1254,-1,1046,1282,1153,-1,1095,867,913,-1,1095,1002,867,-1,1287,1178,1215,-1,1287,1277,1178,-1,1215,1311,1287,-1,1262,1311,1215,-1,1157,1308,1262,-1,1157,1117,1308,-1,1306,1319,1295,-1,1306,1326,1319,-1,1252,1295,1102,-1,1306,1295,1252,-1,963,853,929,-1,963,1023,853,-1,764,1137,923,-1,973,1137,764,-1,630,764,662,-1,630,669,764,-1,587,760,756,-1,587,630,760,-1,567,733,759,-1,567,599,733,-1,733,687,779,-1,733,599,687,-1,855,806,763,-1,847,806,855,-1,839,990,953,-1,990,839,890,-1,661,1059,1030,-1,1059,661,931,-1,712,669,648,-1,712,788,669,-1,788,793,846,-1,788,712,793,-1,862,822,846,-1,827,822,862,-1,851,901,877,-1,851,888,901,-1,937,948,996,-1,937,934,948,-1,937,984,934,-1,1058,1004,974,-1,1004,1058,1090,-1,1093,952,979,-1,1085,952,1093,-1,838,770,627,-1,838,828,770,-1,53,102,13,-1,53,117,102,-1,63,53,109,-1,63,77,53,-1,433,510,512,-1,433,282,510,-1,433,295,282,-1,440,553,522,-1,440,497,553,-1,547,452,534,-1,547,436,452,-1,189,459,144,-1,189,478,459,-1,232,186,294,-1,232,217,186,-1,272,443,231,-1,469,443,272,-1,500,346,525,-1,346,500,345,-1,89,315,496,-1,89,72,315,-1,132,470,146,-1,470,132,465,-1,787,511,554,-1,660,511,787,-1,456,208,261,-1,208,456,578,-1,472,597,554,-1,336,597,472,-1,130,263,238,-1,130,141,263,-1,64,276,68,-1,276,64,227,-1,130,119,95,-1,130,86,119,-1,226,220,89,-1,226,206,220,-1,30,40,45,-1,30,71,40,-1,194,138,304,-1,194,62,138,-1,333,331,194,-1,331,333,442,-1,534,621,547,-1,534,592,621,-1,544,459,585,-1,394,459,544,-1,445,308,471,-1,297,308,445,-1,750,592,503,-1,750,829,592,-1,519,503,522,-1,503,519,434,-1,387,393,431,-1,393,387,335,-1,298,234,414,-1,234,298,209,-1,23,34,59,-1,24,34,23,-1,20,22,4,-1,106,22,20,-1,167,62,194,-1,167,106,62,-1,1062,1196,1171,-1,1062,1245,1196,-1,951,377,527,-1,377,951,774,-1,372,595,527,-1,372,403,595,-1,5,379,3,-1,5,410,379,-1,106,5,22,-1,106,94,5,-1,24,14,34,-1,24,3,14,-1,14,302,6,-1,448,302,14,-1,1,6,48,-1,1,14,6,-1,143,462,451,-1,143,310,462,-1,1104,892,824,-1,1104,1065,892,-1,670,806,692,-1,806,670,779,-1,930,811,914,-1,811,930,823,-1,532,692,673,-1,670,692,532,-1,712,722,793,-1,712,677,722,-1,901,988,948,-1,901,940,988,-1,1042,996,988,-1,1058,996,1042,-1,1047,1093,1090,-1,1093,1047,1044,-1,1066,1059,1085,-1,1059,1066,1135,-1,1003,914,953,-1,914,1003,930,-1,410,722,677,-1,722,410,444,-1,988,1061,1042,-1,988,951,1061,-1,1147,1044,1047,-1,1044,1147,1171,-1,1185,1123,1166,-1,1123,1185,1270,-1,457,704,480,-1,704,457,679,-1,267,169,224,-1,169,267,221,-1,389,303,321,-1,428,303,389,-1,249,224,175,-1,249,166,224,-1,1003,1270,968,-1,1003,1123,1270,-1,1171,1066,1044,-1,1066,1171,1196,-1,1047,1061,1147,-1,1047,1042,1061,-1,379,677,665,-1,677,379,410,-1,310,571,462,-1,549,571,310,-1,462,673,682,-1,532,673,462,-1,953,1123,1003,-1,953,990,1123,-1,1135,1030,1059,-1,1030,1135,1166,-1,1044,1085,1093,-1,1085,1044,1066,-1,1042,1090,1058,-1,1090,1042,1047,-1,888,940,901,-1,888,812,940,-1,729,677,712,-1,729,665,677,-1,824,757,751,-1,892,757,824,-1,692,847,811,-1,806,847,692,-1,22,3,24,-1,22,5,3,-1,448,3,379,-1,14,3,448,-1,94,410,5,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getloscoxae_Geo_5_649_normalIndex_9()
		{
			int[] value = {94,444,410,-1,517,94,260,-1,517,444,94,-1,527,331,372,-1,331,527,377,-1,631,403,445,-1,403,631,595,-1,527,1061,951,-1,527,595,1061,-1,585,831,544,-1,585,928,831,-1,4,24,23,-1,22,24,4,-1,414,335,298,-1,414,393,335,-1,434,431,503,-1,431,434,387,-1,297,403,273,-1,297,445,403,-1,547,585,478,-1,547,621,585,-1,829,621,592,-1,829,1082,621,-1,2,62,20,-1,62,2,138,-1,59,18,23,-1,59,43,18,-1,146,10,132,-1,146,75,10,-1,69,86,21,-1,86,69,119,-1,103,10,68,-1,103,132,10,-1,408,227,373,-1,408,276,227,-1,798,554,597,-1,798,787,554,-1,430,660,610,-1,511,660,430,-1,535,132,266,-1,535,465,132,-1,138,345,304,-1,138,346,345,-1,40,485,446,-1,50,485,40,-1,507,272,307,-1,507,469,272,-1,294,237,375,-1,294,186,237,-1,534,440,522,-1,534,452,440,-1,497,512,553,-1,497,433,512,-1,282,211,25,-1,295,211,282,-1,425,232,396,-1,232,425,144,-1,501,674,455,-1,501,695,674,-1,627,775,566,-1,627,770,775,-1,656,598,838,-1,656,582,598,-1,1090,979,1004,-1,1090,1093,979,-1,996,974,937,-1,974,996,1058,-1,877,948,934,-1,877,901,948,-1,827,888,851,-1,827,862,888,-1,1030,890,661,-1,1030,990,890,-1,847,935,942,-1,847,855,935,-1,763,779,687,-1,806,779,763,-1,1308,1206,1219,-1,1206,1308,1117,-1,788,764,669,-1,788,973,764,-1,897,929,1039,-1,897,963,929,-1,1023,939,853,-1,1023,1101,939,-1,955,1023,963,-1,1023,955,1069,-1,861,897,825,-1,861,955,897,-1,1308,1295,1319,-1,1263,1295,1308,-1,1262,1326,1311,-1,1262,1319,1326,-1,1244,1150,1292,-1,1244,1208,1150,-1,1208,1045,1150,-1,1208,1088,1045,-1,1045,1095,1139,-1,1002,1095,1045,-1,1002,921,867,-1,1002,1017,921,-1,1046,910,859,-1,1153,910,1046,-1,1326,1276,1300,-1,1326,1306,1276,-1,1224,1201,1226,-1,1252,1201,1224,-1,1201,911,1191,-1,1201,919,911,-1,702,1072,800,-1,702,961,1072,-1,1209,1300,1276,-1,1209,1237,1300,-1,1264,1282,1299,-1,1264,1233,1282,-1,850,860,810,-1,938,860,850,-1,1022,956,858,-1,1022,1063,956,-1,925,938,1146,-1,925,895,938,-1,1146,1264,1237,-1,1233,1264,1146,-1,772,672,810,-1,772,635,672,-1,858,724,771,-1,858,758,724,-1,1106,908,1216,-1,1106,815,908,-1,683,768,784,-1,768,683,696,-1,678,761,696,-1,678,744,761,-1,651,618,833,-1,678,618,651,-1,643,807,837,-1,641,807,643,-1,717,643,645,-1,717,708,643,-1,658,866,894,-1,645,866,658,-1,731,649,725,-1,649,731,658,-1,688,649,659,-1,649,688,667,-1,725,680,753,-1,680,725,667,-1,690,700,720,-1,690,748,700,-1,1314,1154,1159,-1,1314,1301,1154,-1,1159,1296,1314,-1,1159,1141,1296,-1,1205,1230,1313,-1,1205,1236,1230,-1,1284,1056,1133,-1,1284,1286,1056,-1,1260,983,1239,-1,983,1260,944,-1,991,1172,957,-1,991,1239,1172,-1,1192,1172,1144,-1,1192,1121,1172,-1,924,908,1035,-1,908,924,903,-1,1198,959,1179,-1,1198,1133,959,-1,991,805,843,-1,991,957,805,-1,1181,1223,1207,-1,1181,1167,1223,-1,893,732,845,-1,893,843,732,-1,1309,1273,1294,-1,1304,1273,1309,-1,1243,1274,1273,-1,1243,1234,1274,-1,1130,1232,1210,-1,1232,1130,1129,-1,1167,1176,1163,-1,1167,1181,1176,-1,1107,1156,1019,-1,1156,1107,1170,-1,933,752,917,-1,933,1028,752,-1,1297,1309,1289,-1,1309,1297,1312,-1,1288,1294,1271,-1,1309,1294,1288,-1,1249,1234,1217,-1,1274,1234,1249,-1,1149,1234,1194,-1,1234,1149,1174,-1,1194,1091,1122,-1,1194,1186,1091,-1,1129,1096,1067,-1,1129,1130,1096,-1,1176,1197,1204,-1,1176,1170,1197,-1,1107,932,1142,-1,1107,917,932,-1,740,579,485,-1,740,715,579,-1,830,964,740,-1,964,830,904,-1,518,346,347,-1,524,346,518,-1,524,525,346,-1,676,518,882,-1,676,524,518,-1,718,993,941,-1,646,993,718,-1,646,739,993,-1,507,558,469,-1,603,558,507,-1,734,603,834,-1,734,558,603,-1,590,612,438,-1,590,742,612,-1,1241,1190,1212,-1,1190,1241,1238,-1,881,1097,1001,-1,881,998,1097,-1,978,995,943,-1,978,998,995,-1,1097,1162,1212,-1,1068,1162,1097,-1,943,734,978,-1,943,776,734,-1,881,851,869,-1,881,827,851,-1,934,828,838,-1,934,984,828,-1,839,681,755,-1,839,769,681,-1,1029,863,880,-1,1029,935,863,-1,737,540,569,-1,737,738,540,-1,387,540,504,-1,540,387,434,-1,461,698,638,-1,698,461,504,-1,335,504,461,-1,504,335,387,-1,638,781,684,-1,698,781,638,-1,638,576,545,-1,638,684,576,-1,367,418,416,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getloscoxae_Geo_5_649_normalIndex_10()
		{
			int[] value = {367,380,418,-1,150,236,381,-1,150,171,236,-1,361,493,384,-1,361,420,493,-1,380,263,182,-1,380,367,263,-1,283,247,149,-1,283,270,247,-1,406,399,329,-1,450,399,406,-1,283,399,397,-1,332,399,283,-1,409,107,371,-1,409,204,107,-1,458,546,494,-1,458,509,546,-1,306,339,384,-1,306,292,339,-1,241,165,185,-1,165,241,203,-1,382,292,325,-1,382,349,292,-1,390,33,326,-1,96,33,390,-1,142,165,137,-1,148,165,142,-1,148,145,165,-1,83,145,148,-1,83,126,145,-1,126,185,145,-1,126,154,185,-1,76,85,112,-1,85,76,110,-1,28,85,83,-1,85,28,73,-1,11,12,0,-1,11,9,12,-1,258,11,257,-1,218,11,258,-1,136,11,218,-1,642,259,172,-1,642,565,259,-1,323,703,326,-1,323,668,703,-1,185,271,241,-1,185,192,271,-1,163,154,110,-1,154,163,178,-1,135,76,93,-1,76,135,118,-1,170,129,168,-1,129,170,135,-1,357,244,348,-1,244,357,242,-1,536,529,583,-1,529,536,495,-1,557,561,584,-1,557,572,561,-1,509,499,546,-1,509,479,499,-1,330,385,401,-1,330,340,385,-1,192,254,271,-1,192,219,254,-1,163,216,178,-1,163,207,216,-1,210,118,135,-1,118,210,205,-1,275,170,242,-1,170,275,223,-1,441,364,357,-1,441,412,364,-1,464,495,536,-1,495,464,432,-1,572,489,561,-1,572,498,489,-1,415,489,498,-1,424,489,415,-1,426,405,479,-1,426,359,405,-1,262,205,210,-1,205,262,248,-1,320,223,275,-1,223,320,262,-1,320,412,374,-1,364,412,320,-1,312,417,405,-1,312,415,417,-1,374,415,312,-1,424,415,374,-1,312,248,262,-1,248,312,264,-1,168,337,356,-1,337,168,129,-1,348,327,423,-1,327,348,244,-1,513,454,447,-1,513,529,454,-1,407,557,460,-1,407,552,557,-1,453,483,406,-1,473,483,453,-1,413,487,513,-1,413,311,487,-1,337,550,604,-1,337,376,550,-1,506,265,284,-1,265,506,486,-1,323,699,668,-1,323,521,699,-1,441,348,454,-1,357,348,441,-1,299,289,293,-1,299,198,289,-1,160,188,151,-1,188,160,164,-1,125,122,115,-1,125,157,122,-1,157,187,140,-1,157,159,187,-1,125,164,159,-1,125,156,164,-1,174,27,123,-1,44,27,174,-1,352,369,392,-1,391,369,352,-1,268,128,230,-1,87,128,268,-1,100,92,133,-1,79,92,100,-1,369,358,316,-1,369,402,358,-1,383,400,319,-1,391,400,383,-1,92,173,121,-1,92,114,173,-1,70,66,84,-1,70,74,66,-1,548,795,905,-1,537,795,548,-1,360,463,586,-1,360,229,463,-1,1024,787,798,-1,1024,1074,787,-1,463,609,586,-1,463,542,609,-1,1012,1113,1126,-1,1012,1049,1113,-1,1180,1189,1165,-1,1180,1193,1189,-1,1197,1161,1193,-1,1197,1142,1161,-1,1173,1180,1148,-1,1180,1173,1204,-1,1105,1096,1134,-1,1105,1055,1096,-1,1091,1053,1073,-1,1053,1091,1067,-1,1149,1080,1110,-1,1080,1149,1122,-1,1175,1174,1132,-1,1175,1217,1174,-1,1132,1078,1111,-1,1132,1110,1078,-1,1080,1037,1036,-1,1080,1073,1037,-1,1053,1015,1034,-1,1053,1055,1015,-1,1105,1108,1057,-1,1105,1148,1108,-1,1165,1164,1199,-1,1164,1165,1189,-1,1057,1125,1052,-1,1125,1057,1108,-1,981,1034,1015,-1,981,992,1034,-1,1032,1037,1000,-1,1032,1036,1037,-1,1203,1078,1084,-1,1203,1111,1078,-1,1125,1143,1076,-1,1143,1125,1199,-1,981,1006,947,-1,1006,981,1052,-1,976,1000,992,-1,976,977,1000,-1,1151,1032,1070,-1,1151,1084,1032,-1,1281,1222,1225,-1,1281,1268,1222,-1,1175,1188,1202,-1,1188,1175,1124,-1,1222,1249,1202,-1,1222,1271,1249,-1,1272,1288,1268,-1,1272,1289,1288,-1,1290,1272,1317,-1,1290,1247,1272,-1,1115,1136,1033,-1,1115,1218,1136,-1,1138,1269,1128,-1,1138,1324,1269,-1,1285,1014,1279,-1,1112,1014,1285,-1,814,1248,918,-1,814,1119,1248,-1,1120,840,1221,-1,620,840,1120,-1,870,1094,1258,-1,870,767,1094,-1,703,962,1060,-1,703,668,962,-1,1305,1227,1253,-1,1227,1305,1283,-1,1291,1305,1304,-1,1305,1291,1283,-1,1033,958,1115,-1,958,1033,816,-1,1128,920,1138,-1,1016,920,1128,-1,856,1109,1089,-1,856,754,1109,-1,716,918,735,-1,716,814,918,-1,565,1127,985,-1,565,642,1127,-1,533,564,531,-1,570,564,533,-1,898,816,1033,-1,898,697,816,-1,37,84,66,-1,37,55,84,-1,852,560,555,-1,852,854,560,-1,1006,819,947,-1,819,1006,926,-1,997,1006,1076,-1,994,1006,997,-1,679,515,728,-1,515,679,457,-1,906,559,791,-1,906,636,559,-1,679,969,986,-1,679,728,969,-1,221,274,169,-1,221,354,274,-1,175,388,249,-1,175,291,388,-1,252,233,363,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getloscoxae_Geo_5_649_normalIndex_11()
		{
			int[] value = {233,252,80,-1,177,74,162,-1,74,177,66,-1,1008,1192,875,-1,1192,1008,1216,-1,1039,844,1106,-1,929,844,1039,-1,807,1286,1284,-1,807,833,1286,-1,866,1318,1302,-1,866,837,1318,-1,1159,688,1141,-1,1159,736,688,-1,879,720,987,-1,879,690,720,-1,1083,1219,1206,-1,1083,1214,1219,-1,1187,913,1064,-1,913,1187,1095,-1,800,796,723,-1,796,800,857,-1,476,694,484,-1,596,694,476,-1,633,800,723,-1,633,702,800,-1,562,647,593,-1,562,640,647,-1,871,821,780,-1,871,859,821,-1,602,635,556,-1,602,672,635,-1,1178,907,1075,-1,1009,907,1178,-1,257,565,657,-1,257,259,565,-1,1248,1317,1279,-1,1248,1290,1317,-1,1285,1225,1267,-1,1285,1281,1225,-1,1213,1323,1250,-1,1323,1213,1324,-1,791,819,926,-1,791,713,819,-1,1025,852,906,-1,994,852,1025,-1,1155,986,969,-1,1155,1126,986,-1,885,1113,1079,-1,980,1113,885,-1,886,1228,1119,-1,886,985,1228,-1,104,179,54,-1,29,179,104,-1,311,224,243,-1,311,267,224,-1,134,166,131,-1,134,90,166,-1,741,697,655,-1,697,741,816,-1,490,716,589,-1,716,490,657,-1,84,78,56,-1,84,133,78,-1,240,191,166,-1,240,245,191,-1,57,436,189,-1,57,63,436,-1,305,675,378,-1,675,305,615,-1,1245,745,831,-1,1062,745,1245,-1,72,338,315,-1,72,26,338,-1,775,1004,695,-1,1004,775,974,-1,674,952,617,-1,952,674,979,-1,375,455,294,-1,455,375,501,-1,237,273,288,-1,237,297,273,-1,372,442,256,-1,372,331,442,-1,183,124,15,-1,277,124,183,-1,123,97,280,-1,123,27,97,-1,341,277,183,-1,341,351,277,-1,486,606,721,-1,486,506,606,-1,274,560,291,-1,274,555,560,-1,588,388,664,-1,588,398,388,-1,162,480,177,-1,162,457,480,-1,714,746,637,-1,714,628,746,-1,714,626,628,-1,723,872,799,-1,872,723,796,-1,633,799,727,-1,799,633,723,-1,685,633,727,-1,685,593,633,-1,593,652,562,-1,685,652,593,-1,530,652,644,-1,652,530,562,-1,637,530,644,-1,637,563,530,-1,753,663,725,-1,753,711,663,-1,605,714,708,-1,714,605,626,-1,607,708,717,-1,708,607,605,-1,731,607,717,-1,731,639,607,-1,639,725,663,-1,731,725,639,-1,803,711,753,-1,803,782,711,-1,782,921,909,-1,803,921,782,-1,1010,841,950,-1,1010,907,841,-1,1075,1010,1160,-1,1010,1075,907,-1,1075,1182,1098,-1,1160,1182,1075,-1,1244,1100,1182,-1,1244,1242,1100,-1,1100,1303,1145,-1,1242,1303,1100,-1,151,139,60,-1,151,188,139,-1,188,127,139,-1,188,201,127,-1,7,122,65,-1,115,122,7,-1,65,193,213,-1,122,193,65,-1,32,42,38,-1,49,42,32,-1,32,17,16,-1,32,46,17,-1,870,439,390,-1,870,840,439,-1,1065,1092,892,-1,1065,1139,1092,-1,751,733,779,-1,757,733,751,-1,36,91,47,-1,91,36,235,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getloscoxae_Coord_6_649_point_1()
		{
			double[] value = {0.3037,30.8337,0.8448,0.3089,30.7636,0.8013,0.6367,30.764,0.595,0.4436,31.0103,0.9004,0.2406,31.1353,0.9863,0.2121,30.3611,-0.0013,0.2445,30.4549,0.2146,0.2132,30.6368,0.2099,1.0658,30.1974,-0.4151,1.0808,30.1991,-0.3885,1.2095,30.06,-0.6371,4.6436,35.6015,-0.2525,4.7082,35.4393,-0.4154,4.7063,35.4883,-0.6135,1.9299,34.1486,-3.5959,2.1471,33.8743,-3.3676,1.9439,33.4085,-3.3984,2.3808,30.788,-1.0375,2.4049,31.0016,-0.9298,2.2514,31.0806,-0.7212,2.0536,31.681,-2.55,2.0366,31.6805,-2.5422,2.1893,31.8251,-2.4114,2.3712,31.3234,-0.4442,2.3757,31.3255,-0.4427,2.3683,31.3,-0.3651,2.2882,31.1089,-0.7254,2.2636,31.1819,-0.5476,2.246,31.1573,-0.4813,2.4375,31.2806,-1.1192,2.2886,31.2056,-0.7774,2.2935,31.1578,-0.7474,2.3242,31.3426,-1.1202,2.434,31.3464,-1.2412,2.3561,31.5587,-1.2852,2.2901,31.5693,-1.1483,2.4682,31.3282,-1.176,2.4661,31.1253,-0.9587,2.4846,31.1016,-0.9744,2.1129,31.7698,-2.3829,1.9984,31.642,-2.474,1.9883,31.6153,-2.4625,2.3178,31.2351,-2.447,2.0269,31.142,-2.5696,2.1021,31.3215,-2.5461,2.2366,31.3561,0.1747,2.0385,31.3082,0.2176,2.1181,31.3116,0.0499,2.0914,31.4135,0.4096,2.73,31.5685,0.365,2.3006,31.4875,0.402,2.4269,31.4361,0.2278,3.7611,33.7825,-1.0235,3.8397,33.7908,-0.8663,3.7578,33.4102,-0.8281,3.9022,32.5466,-0.8575,3.8727,32.4725,-1.0448,3.8874,32.498,-1.0504,3.8823,32.5927,-0.8543,2.7638,31.5508,0.2284,2.9237,31.9332,0.2785,2.9168,31.9339,0.2184,3.4519,32.6027,0.0979,3.3699,32.4096,0.0908,3.5065,32.4314,-0.0509,3.387,32.3819,0.0494,1.6503,33.2249,-3.0667,1.6722,33.2918,-3.1258,1.6503,33.3272,-3.3702,1.4382,34.4298,-4.0129,1.5453,34.553,-4.0329,1.7507,34.2915,-3.776,2.0432,35.0476,-2.4487,2.0504,35.0179,-2.4167,2.0611,35.0726,-2.3944,2.071,34.9148,-2.3026,2.0726,34.9201,-2.3003,2.2002,34.6314,-2.0638,2.1492,34.7032,-2.1228,2.1758,34.5976,-2.0647,2.1527,34.5656,-2.0744,2.1481,34.5429,-2.0918,2.1227,34.2592,-2.0002,2.0264,33.5709,-2.1837,1.985,33.6749,-2.0915,1.8656,33.5899,-2.3615,1.9583,33.4733,-2.5218,2.1118,33.4441,-2.3134,1.683,34.2912,-2.8121,1.6663,34.3222,-2.8266,1.5291,34.13,-3.1431,1.6314,33.9999,-3.137,1.9824,33.727,-2.125,1.7962,33.6732,-2.4129,1.8137,33.6206,-2.3716,1.9822,33.7319,-2.1282,1.7213,33.6634,-2.7482,1.7763,33.4499,-2.8149,1.7558,33.5897,-2.5588,1.0461,34.2428,-3.7931,1.0457,34.2363,-3.8405,1.1489,34.1241,-3.8413,1.7568,35.0788,-3.9513,1.9346,34.8106,-3.785,1.8011,34.5246,-3.7791,3.5246,36.3883,-2.3337,4.0685,36.3483,-1.8439,4.0673,36.2719,-1.8437,3.5165,36.508,-2.4089,1.6546,29.2528,-1.7765,1.6521,29.2457,-1.7815,1.3633,29.2272,-1.3736,1.6002,28.9694,-1.3027,1.7455,28.9736,-1.5838,1.7563,33.5849,-2.5559,1.7571,33.5801,-2.5532,1.6729,33.2975,-3.1267,1.7782,33.44,-2.81,1.7774,33.445,-2.8125,1.6471,33.3328,-3.3748,2.0922,33.9812,-2.0504,2.0915,33.9804,-2.0448,2.1369,34.2921,-2.0383,2.1359,34.2928,-2.0329,2.1399,34.5224,-2.1206,2.1386,34.5208,-2.1255,2.5433,32.0847,-0.2578,2.5364,32.0861,-0.2619,2.6267,32.3604,-0.5142,2.6218,32.3599,-0.5188,2.5204,31.3245,-1.2937,2.5166,31.3312,-1.2944,2.4755,31.328,-1.1783,2.4086,36.6893,-2.7255,2.4101,36.6793,-2.7101,2.9526,36.7963,-2.5217,2.9576,36.8033,-2.5334,3.4282,36.8095,-2.2169,3.8651,36.6593,-1.6428,3.8771,36.6654,-1.651,3.4195,36.8028,-2.1985,4.3768,35.7204,-0.1747,4.2467,35.3406,0.3881,4.2615,35.3401,0.3929,4.36,35.7218,-0.1754,4.0289,34.9009,1.0014,3.9518,34.6401,1.1407,3.9701,34.6405,1.1521,4.0119,34.906,0.9981,3.9444,34.1908,1.0692,3.9519,34.1435,1.0517,3.9593,34.1446,1.0631,1.8329,34.6869,-2.6725,1.8586,34.6698,-2.651,1.904,35.0798,-2.6399,1.6588,33.9759,-3.1246,1.554,33.7854,-3.4795,1.6589,33.9452,-3.1013,1.5566,33.7453,-3.4745,2.4167,29.9048,-2.4631,2.4705,29.9516,-2.4677,2.4879,29.9444,-2.4687,2.4843,29.9594,-2.4723,2.4751,29.9332,-2.4696,2.4799,29.9603,-2.4715,1.9716,29.5091,-2.2518,1.8244,29.3221,-2.0218,1.9746,29.5194,-2.2443,1.8255,29.3345,-2.014,0.3971,30.3072,-0.1331,0.4955,30.0697,-0.291,0.4707,30.0314,-0.265,1.8734,31.36,-2.6409,1.8659,31.359,-2.6242,1.2123,31.1095,0.0438,1.4673,31.3367,-0.0477,1.2205,31.0894,0.0628,1.4836,31.3185,-0.036,1.0051,30.3347,-0.2864,0.9909,30.3405,-0.3039,0.9742,30.5496,-0.1912,0.984,30.5425,-0.1746,3.7016,31.8658,-1.6575,3.6222,31.6534,-1.6838,3.6363,31.6413,-1.7341,3.68,31.8653,-1.6272,1.1152,35.2145,-3.5229,1.1032,35.1179,-3.5982,1.1166,35.0979,-3.5542,1.3465,35.4992,-3.2373,1.2124,35.3994,-3.4344,1.2239,35.3709,-3.402,1.3343,35.5482,-3.2611,3.9795,34.6189,1.1547,3.9491,34.4556,1.1895,3.9628,34.4374,1.1793,4.1147,35.0216,0.8503,4.0354,34.874,1.0138,4.1028,35.0435,0.8366,4.2749,35.3325,0.3918,4.193,35.1915,0.6081,4.2014,35.1742,0.6356,4.3536,36.0328,-0.6754,4.3431,36.0449,-0.6672,4.4056,35.7063,-0.1887,2.9661,36.798,-2.5474,3.4454,36.806,-2.2339,2.2568,36.5169,-2.7363,2.2703,36.5016,-2.6895,2.4008,36.6804,-2.7143,2.1234,34.692,-2.1683,2.0779,34.9355,-2.2668,2.0734,34.9223,-2.2955,2.1387,34.6856,-2.1292,2.0733,33.9593,-2.01,1.6513,33.3302,-3.3773,1.6458,33.3372,-3.378,2.0354,35.0722,-2.4622,1.971,35.2789,-2.4468,1.9268,35.3172,-2.4898,1.6838,33.3104,-3.3961,1.6751,33.2916,-3.3613,2.1462,34.7161,-3.5062,2.0375,35.0996,-3.6549,2.0609,35.1446,-3.6469,1.365,34.425,-4.0578,1.2625,34.1499,-3.9411,1.7814,35.5854,-3.7245,1.7614,35.6193,-3.7712,1.8193,35.8073,-3.6009,2.2503,36.3754,-3.1362,2.0993,36.2499,-3.3131,2.0867,36.2925,-3.3174,2.259,36.3357,-3.1453,3.5238,36.5809,-2.4115,3.1297,36.6005,-2.7763,3.1165,36.6694,-2.7727,4.5136,35.1224,0.2916,4.6979,35.3773,-0.4433,1.4916,34.5717,-4.0527,2.3346,31.7631,-0.327,2.3457,31.7465,-0.3196,2.2968,31.6141,-0.4797,2.3108,31.6233,-0.4552,2.2969,31.4747,-0.5487,2.9071,32.4303,-1.0913,2.8995,32.37,-1.2252,2.9251,32.3592,-1.2196,2.8882,32.4328,-1.0933,2.4117,31.8705,-0.2588,2.3897,31.8888,-0.271,2.5119,32.0878,-0.2773,2.4799,31.3655,-1.3383,2.5101,31.3345,-1.2969,2.5414,31.4019,-1.4037,2.5744,31.3701,-1.3846,2.8716,32.4746,-0.9545,2.8068,32.4857,-0.8619,2.8649,32.4752,-0.9546,2.8136,32.4863,-0.8586,2.6024,32.3555,-0.5304,3.1884,32.2449,0.087,3.372,32.3807,0.0016,2.4227,31.1208,-0.9157,2.4142,31.3372,-0.1119,2.3389,31.2547,-0.3372,2.4289,31.3927,-0.153,2.7539,31.5749,0.1692,2.5794,31.417,0.0184,2.584,31.4685,-0.0105,3.8678,32.5646,-0.7455,3.8702,32.5429,-0.8568,3.8306,32.5511,-0.7538,3.5426,31.685,-1.6812,1.1649,35.3216,-3.7834,1.162,35.2202,-3.6265,1.1668,35.3118,-3.4897,1.9544,36.3362,-2.9153,2.0181,36.5403,-2.9963,1.8915,36.2706,-2.9427,1.9052,36.434,-3.2453,1.9575,34.8887,-3.7598,1.7258,35.2158,-3.9524,1.7501,35.4673,-3.8141,1.2031,35.2498,-4.1319,1.6777,34.854,-4.0107,1.1572,35.0714,-4.1665,1.723,35.0765,-4.0045,1.1357,35.2298,-3.829,1.7497,36.1184,-3.4889,1.6995,35.8938,-3.6407,1.6227,35.9415,-3.6489,1.8935,36.0282,-3.52,2.1932,35.6337,-3.3239,2.1064,35.3727,-3.4763,1.9121,35.9951,-3.5071,2.4185,35.9858,-3.12,2.0135,36.1461,-3.4108,3.0351,36.8178,-2.6942,2.6233,36.5471,-2.9619,2.4316,36.7108,-2.8028,0.9535,34.4969,-3.787,0.9813,34.754,-3.7285,1.0027,34.7676,-3.8665,2.1275,36.5278,-2.8518,1.9223,36.1392,-2.7597,0.8546,31.2841,1.1447,0.8255,31.4014,1.115,0.7005,31.3486,1.1025,0.8282,31.2303,1.1255,0.9586,31.1738,1.0629,0.9738,31.2573,1.0903,0.419,30.349,0.4449,0.2568,30.3491,0.2662,0.3288,30.2384,0.1711,0.349,31.3952,1.0816,0.1897,31.3404,0.953,0.5591,31.1571,0.9593,4.1062,34.3962,1.1859,4.1386,34.1784,1.0307,4.2134,34.2915,1.0578,3.9739,34.1378,1.0593,4.3726,35.0807,0.6011,4.2826,34.9372,0.8194,4.3196,34.8682,0.695,3.6101,32.8073,0.3643,3.6002,32.5559,0.0385,3.7916,32.7969,0.2404,3.8918,33.205,-0.4309,3.8752,33.2001,-0.5258,3.8786,33.3812,-0.3544,3.971,33.209,-0.1249,3.9778,33.312,-0.0265,4.0187,33.1748,0.0793,3.9515,33.4836,-0.0451,3.9703,33.5272,0.1895,3.9083,33.5894,0.4305,4.0313,33.2934,0.3805,3.8384,32.8222,0.0603,3.9449,32.9607,0.1632,3.7617,33.2584,0.6002,3.806,33.3436,0.5533,3.5403,33.3029,0.5874,3.8025,33.6672,0.5674,3.9542,34.0468,0.7706,3.8596,33.8824,0.6169,4.0873,34.0786,0.656,3.9642,33.8244,0.5062,4.6201,35.6788,-0.9574,4.6935,35.4308,-0.6406,4.421,35.3597,-1.0162,4.5433,35.2719,-0.6965,1.5429,34.6393,-4.0739,1.1096,34.8415,-4.2086,2.3115,34.074,-3.2528,2.3895,34.391,-3.1201,1.0579,34.8446,-4.1837,1.0978,35.0779,-4.163,2.3625,33.6899,-3.062,2.0231,34.3974,-3.5758,1.7197,34.5538,-3.8746,1.5448,33.8391,-3.7222,1.8377,33.859,-3.6035,2.4227,33.3581,-2.5792,2.3082,33.3642,-2.833,2.5691,33.5734,-2.7031,2.3574,33.3383,-2.5289,2.2339,33.3009,-2.7525,2.182,33.3146,-3.0841,1.8532,33.2423,-3.2921,2.0979,33.2514,-3.0143,1.1011,34.5286,-4.0456,1.1801,34.5582,-4.0416,1.5095,33.8522,-3.7283,1.6257,33.5183,-3.5457,1.7503,33.6146,-3.5766,1.0862,34.5263,-4.0359,1.1428,34.2941,-3.967,1.2111,34.9208,-3.1476,1.2808,35.0743,-3.1318,1.1859,35.0139,-3.2316,1.0346,34.7192,-3.4973,1.1452,34.7825,-3.2633,1.146,34.8898,-3.287,1.1141,34.93,-3.4735,1.0288,34.5912,-3.5107,1.3544,34.96,-3.0284,1.5383,35.2363,-2.9417,1.3779,35.2848,-3.1622,1.1445,35.1615,-3.4666,1.2011,35.2743,-3.4801,1.087,34.4507,-3.4315,1.502,34.6276,-2.9684,1.7289,34.3814,-2.7916,1.6704,33.341,-3.1689,1.7535,33.4898,-2.8931,1.6116,33.5197,-3.3002,1.622,33.6959,-2.9896,1.5268,33.8191,-3.4885,1.673,33.9579,-2.7542,1.7814,33.8791,-2.5835,1.7403,34.0831,-2.693,1.8981,34.2017,-2.6231,1.9385,34.1346,-2.4591,2.0372,34.4725,-2.2776,1.9621,34.562,-2.454,2.0432,34.0287,-2.2304,2.0827,34.1997,-2.1588,1.984,33.7406,-2.1312,2.0908,33.9827,-2.0556,2.1131,34.3666,-2.1245,2.135,34.2919,-2.0434,1.8124,35.3319,-2.671,1.7042,35.5262,-2.6931,1.8738,34.649,-2.6227,2.1359,34.5195,-2.1298,2.1236,34.9484,-2.2346,2.0329,35.341,-2.3524,1.8576,35.3796,-2.5058,1.8398,35.428,-2.4818,1.7271,35.5803,-2.6452,3.3348,32.7023,0.1215,3.2996,32.4564,0.1454,3.2225,32.5733,0.1949,3.8948,34.4531,1.1217,3.9355,34.4554,1.1752,4.265,35.693,-0.2276,4.1676,35.3251,0.2668,3.4151,36.7781,-2.1644,3.829,36.5999,-1.6277,1.8841,35.7391,-2.4679,2.0636,36.0745,-2.552,1.9148,36.1125,-2.7109,1.7751,35.6853,-2.5312,1.7333,35.8525,-2.7706,1.8274,35.458,-2.4656,1.8339,35.5469,-2.4312,1.726,35.6038,-2.6028,1.8448,35.4404,-2.3564,1.8474,35.3587,-2.4295,1.9022,35.3243,-2.4271,2.2942,35.2189,-2.283,2.2888,34.9186,-2.1611,2.3218,35.6514,-2.3914,1.9923,35.4552,-2.3399,3.3603,34.5698,-1.5336,3.4387,34.5845,-1.4587,3.5072,34.6665,-1.4056,3.2551,35.289,-1.9885,3.1622,35.2215,-2.0289,3.3236,34.9493,-1.8103,3.5455,35.3269,-1.7357,3.4238,35.3496,-1.8824,3.4405,35.0286,-1.7283,3.7211,35.0935,-1.3407,3.6908,35.2001,-1.4536,3.5568,34.9524,-1.52,3.7198,34.8762,-1.1889,3.5702,34.8011,-1.3957,3.6959,34.7773,-1.1546,4.0068,35.426,-0.7494,3.9902,35.5993,-0.9206,3.8559,35.2641,-1.1486,3.8972,34.0971,0.7777,3.7927,33.9619,0.5879,3.9006,34.3474,0.7376,3.9545,34.1081,1.0035,3.8765,34.3891,0.9618,3.9501,34.1312,1.0298,3.9831,34.9208,0.4473,4.0714,35.1662,0.5151,3.8799,34.3382,0.6136,3.8488,34.3095,0.4783,3.9088,34.5945,0.4666,3.9558,34.8523,0.0917,4.0564,35.2218,-0.1047,4.1544,35.622,-0.3772,4.2117,35.9861,-0.6788,3.6552,34.303,-0.4039,3.5852,33.9336,-0.0025,3.7053,34.1497,0.0912,3.6027,33.7374,0.3293,3.7497,34.0337,0.4282,3.4714,33.1648,0.3367,3.4962,33.3998,0.2507,3.4432,33.1405,0.1761,3.4538,32.8986,0.3847,3.4817,33.0681,0.5075,3.4139,33.4102,0.0291,2.9257,33.4787,-0.7877,3.0153,33.4811,-0.666,3.0182,33.6718,-0.8545,2.7067,33.7037,-1.2461,2.5954,34.1338,-1.6,2.5591,34.0455,-1.5851,2.8423,33.9634,-1.3168,2.6271,33.5541,-1.2049,2.7485,33.4911,-1.0199,2.6103,33.2452,-1.013,2.7345,33.203,-0.7357,2.5129,33.3017,-1.2394,2.2333,33.6142,-1.8461,2.2396,33.4628,-1.9017,2.3843,33.3151,-1.5849,2.3952,33.4878,-1.5528,2.533,33.1449,-1.0325,2.442,33.1182,-1.3034,2.4082,32.9466,-1.0413,2.4209,33.7379,-1.537,2.4739,32.9272,-0.739,2.6804,32.9914,-0.5131,2.957,33.1937,-0.4577,2.9056,32.9619,-0.2597,3.1366,32.8413,-0.0009,3.199,33.2579,-0.2436,3.3064,32.9347,0.0935,3.3669,33.3684,-0.0277,2.8417,32.6149,0.213,2.9648,32.4197,0.3431,2.7008,32.7336,0.0532,2.4979,32.7272,-0.1536,2.259,32.3757,0.1516,2.4771,32.3482,0.3664,2.5715,32.284,0.4245,2.4012,31.845,0.5359,2.7063,32.1028,0.504,2.2765,31.9972,0.4058,2.0686,32.1792,0.2054,2.1093,31.8642,0.4094,2.2389,31.7273,0.4919,1.5368,31.6121,0.617,1.8859,31.5666,0.5267,1.7949,31.6937,0.4921,1.5971,31.4577,0.6358,1.9391,32.0861,0.2572,1.8164,32.1203,0.0883,1.5845,31.9233,0.2653,1.6984,31.8018,0.4065,1.1309,31.6969,0.5963,1.4599,31.7265,0.5403,1.3765,31.8091,0.4184,1.2076,31.6569,0.7059,0.7348,31.5456,1.0733,0.9486,31.6115,0.8882,0.5773,31.5884,0.9827,0.8471,31.6307,0.7938,1.2796,31.5201,0.7581,0.9534,31.5179,0.9798,1.0506,31.3124,1.0081,0.5817,31.484,1.1097,0.8621,31.0881,0.7927,0.6964,31.2207,1.0436,0.7613,30.921,0.6977,0.3029,30.5706,0.6111,2.2094,28.9979,-1.6189,2.3571,29.1966,-1.5338,2.0612,29.0612,-1.3358,2.3669,29.3492,-1.4948,2.0527,29.3227,-1.3483,2.3645,29.5199,-1.4615,2.8069,30.2944,-1.589,2.7172,30.1015,-1.5211,2.8158,29.8733,-1.7134,2.8718,30.0222,-1.852,2.6961,30.3016,-1.4597,2.8224,30.4722,-1.4959,2.7375,30.4653,-1.3731,2.5968,30.1863,-1.4472,2.6389,30.4937,-1.2972,2.6114,29.8647,-1.5107,1.8504,28.873,-1.4484,1.7347,28.9288,-1.378,2.0003,28.8789,-1.5485,2.3814,29.0892,-1.739,2.3495,29.0575,-1.9341,2.4773,29.169,-1.817,2.2093,28.9924,-1.818,2.6008,29.338,-1.6704,2.4812,29.2696,-1.6084,2.5314,29.4802,-1.5318,2.7886,29.6495,-1.9282,2.8236,29.851,-2.1288,2.6733,29.5574,-2.0985,1.9776,28.9492,-1.6783,2.0869,28.9379,-1.6255,1.7874,29.0462,-1.7527,2.0742,29.0369,-1.8994,2.5709,29.2994,-2.1379,2.2833,29.2446,-2.1973,2.5572,29.5396,-2.3023,2.4718,29.1829,-2.0625,2.8608,30.4451,-1.6574,2.8825,30.2241,-2.0649,2.7518,30.6357,-2.2455,2.9389,30.4734,-1.9822,2.6548,29.8373,-2.3791,2.6668,30.3413,-2.4401,2.4793,30.6602,-2.3885,2.7113,31.1403,-2.1552,2.3419,30.5652,-2.3509,2.4855,30.176,-2.4389,2.2616,30.5456,-2.3415,2.2852,30.2885,-2.3135,1.9597,31.3604,-2.6763,2.1994,30.9405,-2.473,2.2038,30.7512,-2.4026,2.0646,30.9174,-2.5094,2.3197,30.7761,-2.404,2.0088,31.123,-2.5662,2.541,31.2136,-2.2924,2.1918,31.6179,-2.5217,1.9851,31.3694,-2.6698,2.4717,31.8653,-2.3677,2.6595,32.1542,-2.2819,2.3856,32.1658,-2.2845,2.9632,33.0866,-2.1145,2.6063,32.7149,-2.1359,2.6492,33.0357,-2.1538,2.8543,32.6984,-2.1972,3.6901,33.7649,-1.1339,3.4391,34.2953,-1.6195,3.6387,34.3649,-1.4323,3.5591,33.7115,-1.3195,3.7724,34.403,-1.2688,3.8566,34.3989,-1.1404,3.9489,34.3726,-0.9749,4.0079,34.3405,-0.8287,3.9119,33.6761,-0.2193,4.0253,34.0545,0.0086,4.0303,34.0017,0.0934,2.8794,30.5484,-1.5866,2.926,30.782,-1.865,2.9347,30.6158,-1.9085,2.8338,30.8767,-2.045,3.0006,32.5662,-2.0605,2.9409,32.0766,-2.2367,3.7051,33.4117,-0.9906,3.838,33.3948,-0.6537,3.8784,33.7832,-0.6656,3.9097,33.7528,-0.4684,3.9413,33.5962,0.0256,3.3143,33.0631,-1.7517,3.4848,32.4122,-1.8752,3.2356,32.9315,-1.9039,3.5415,32.6701,-1.6352,3.2288,32.2815,-1.9157,3.3005,31.8501,-2.0594,3.0733,32.7261,-2.0068,3.5623,32.8511,-1.3907,3.4012,33.179,-1.5669,3.0604,31.0082,-1.9002,2.9049,31.0629,-2.0088,2.8529,31.3909,-2.1305,3.6787,32.1821,-1.7283,3.6107,31.9836,-1.8657,3.7417,32.7991,-0.9394,3.7287,32.6993,-1.1215,3.6716,33.0363,-1.0589,3.6192,32.9567,-1.2367,3.7169,33.0765,-0.9367,3.7435,32.8694,-0.7619,3.7323,32.6463,-0.0738,3.8269,32.9529,-0.4471,3.7896,32.7424,-0.2591,3.7831,32.805,-0.3669,3.1463,31.2476,-2.0114,3.3366,31.1873,-1.8605,3.2361,30.9824,-1.741,3.195,30.8128,-1.5227,3.324,30.9767,-1.6338,3.5412,31.3956,-1.7409,3.4568,31.226,-1.676,3.4511,31.1987,-1.7338,3.5359,31.437,-1.694,3.7984,32.2414,-1.4259,3.702,32.3933,-1.5197,3.7427,32.0532,-1.5749,3.8695,32.6265,-0.7422,3.8111,32.7172,-0.3791,3.4672,32.429,-0.1002,3.1165,32.5188,-0.2924,3.3747,32.5865,-0.9168,3.342,32.6019,-0.852,2.8804,32.4758,-0.9547,3.2869,31.0697,-1.5528,3.4128,31.2598,-1.6555,3.0948,31.47,-1.6697,3.0455,31.3151,-1.5689,2.8963,32.28,-1.3722,2.8445,32.247,-1.3293,2.8386,31.926,-1.6001,2.6872,31.9833,-1.5332,2.6187,31.9049,-1.5641,2.793,31.8176,-1.6089,2.5118,31.9919,-1.4289,2.4646,31.9068,-1.401,2.514,31.7867,-1.5695,2.6573,32.4273,-0.9523,2.8439,32.4766,-0.9571,2.7915,32.4861,-0.8675,2.4668,32.1832,-1.238,2.4966,32.2909,-1.1533,2.3585,32.2039,-1.0706,2.4186,32.0883,-1.2368,2.5487,32.0467,-1.4253,2.6071,32.1512,-1.4059,2.6406,32.2221,-1.3617,2.2913,32.1732,-0.8908,2.3171,32.2334,-0.6886,2.2724,32.1136,-0.7477,2.3282,32.2271,-0.8674,2.6053,31.4568,-1.4853,2.4352,31.6529,-1.4658,2.384,31.5831,-1.3564,2.3408,31.8054,-1.2883,2.2358,31.6191,-0.9531,2.2874,31.7891,-1.1985,2.2166,31.8125,-1.0415,2.3636,32.1767,-0.4364,2.8465,31.9877,0.3833,2.5853,31.6284,0.483,2.7206,32.0207,0.0246,2.5981,31.7189,-0.021,2.421,31.8631,-0.2493,2.5485,32.0849,-0.2515,2.3137,31.993,-0.4639,2.2993,31.8732,-0.4764,2.3008,31.253,-0.5919,2.2388,31.4824,-0.7212,2.266,31.5538,-0.5807,2.6899,31.0566,-1.2583,2.7771,31.0708,-1.3529,2.5826,31.3581,-1.3792,2.5174,31.1029,-1.0451,2.6093,31.0592,-1.1533,2.5964,31.0046,-0.9846,2.891,31.1567,-1.4736,3.2027,30.8815,-1.4146,3.1089,30.76,-1.1727,2.9675,30.8668,-1.6984,2.9725,30.6685,-1.3806,3.0765,30.6735,-1.2274,3.1278,30.706,-1.1836,2.9647,30.7257,-1.0424,2.9048,30.6985,-1.109,2.5633,30.8981,-0.9575,2.4469,31.0633,-0.9416,2.5782,30.9677,-0.9538,2.2833,31.2193,-0.5644,2.3772,31.329,-0.4361,2.417,31.422,-0.264,2.4429,31.58,-0.1097,1.3035,31.2818,0.7693,1.3412,31.3661,0.7767,1.1616,31.0915,0.5634,0.9658,31.1672,0.9531,2.5176,30.7493,-1.092,2.7584,30.7646,-0.9697,2.6851,30.68,-1.1843,1.508,29.056,-1.1262,1.656,28.9599,-1.271,1.7502,29.0563,-1.1798,1.0161,29.3659,-0.6419,1.2754,29.2152,-0.8989,1.1018,29.3838,-0.5697,1.3393,29.2307,-0.884,0.7182,29.6281,-0.3084,0.7079,29.8568,-0.043,0.5177,29.9032,-0.1153,0.8868,29.6106,-0.2586,0.2324,30.3081,-0.0381,0.3011,30.1496,-0.0705,0.4212,30.0888,0.0933,0.1757,30.9945,0.712,0.1528,31.1341,0.8123,0.2568,30.831,0.8318,0.2592,30.5958,0.6181,0.2415,30.6384,0.5205,0.1926,30.8297,0.6313,0.1336,30.912,0.4198,0.1311,31.3063,0.5375,0.1096,31.2308,0.6441,0.0783,31.3036,0.7784,0.1574,31.5047,0.7985,0.502,31.5125,0.665,0.3659,31.5584,0.954,0.6975,31.5289,0.5878,1.2369,29.2229,-0.944,0.9755,29.3829,-0.694,1.105,29.3528,-1.0261,0.8408,29.5574,-0.7294,2.1316,29.3491,-2.2299,2.046,29.2654,-2.1529,2.3966,29.647,-2.4085,2.2572,29.7732,-2.4724,2.104,30.4363,-2.0734,2.089,30.5959,-2.1121,2.1145,30.1089,-2.0616,2.268,29.9932,-2.3474,2.2739,29.8028,-2.4405,2.2592,29.7783,-2.4678,2.0001,29.5042,-2.1939,1.6776,29.2481,-1.7595,1.8539,29.3422,-1.9899,2.4235,33.2609,-2.183,2.5747,33.2439,-2.2481,2.537,33.0505,-2.0416,1.7352,33.1881,-3.1184,1.9318,33.2525,-2.8957,1.7597,33.5295,-2.5303,2.2306,33.3496,-2.4317,2.3154,33.336,-1.9961,2.3545,32.7326,-1.1273,2.4377,32.9139,-1.3833,2.4859,33.0472,-1.9278,2.4536,33.1368,-1.7045,2.5365,32.7136,-2.0608,2.5368,32.6929,-1.9739,2.4276,32.5215,-1.5626,2.3382,32.0425,-1.7749,2.3732,32.1401,-2.0705,1.9306,31.3454,-2.4423,2.3457,32.1548,-2.217,2.222,31.6556,-1.9918,2.2873,31.8819,-1.5017,2.2397,31.4932,-1.6852,2.1092,30.9605,-2.0268,1.9766,31.0406,-2.3218,2.0601,30.7713,-2.1735,2.1708,32.1466,-1.0652,2.294,32.3471,-1.24,2.211,31.6498,-1.2893,2.1743,30.8421,-1.654,2.1453,30.8848,-1.8141,2.2041,31.3004,-1.4737,2.1178,30.3891,-1.9288,0.5092,31.0559,0.2476,0.6112,31.3154,0.3782,0.9525,30.9111,-0.0186,1.9054,32.2287,-0.2707,2.1466,32.5268,-0.5006,2.0714,32.3308,-0.5905,1.8584,31.9156,-0.2883,1.6357,31.494,-0.0706,1.5297,31.6707,-0.0504,1.7222,31.8113,-0.199,2.0906,31.9584,-0.8613,2.2212,32.5697,-0.8737,2.039,31.9815,-0.6356,2.0825,31.7151,-0.6429,2.0877,31.5123,-0.8454,0.9886,30.6978,-0.0764,0.9348,30.683,-0.0345,0.9407,30.5081,-0.1023,0.8629,30.5491,-0.1999,0.9062,30.743,-0.0929,0.9845,30.7035,-0.0912,0.8412,30.0729,-0.5334,0.839,30.2977,-0.3217,1.3952,29.9981,-0.8725,1.4237,29.9747,-0.7364,1.2585,30.0734,-0.5298,1.815,29.9645,-1.1044,1.9857,30.0837,-1.2379,1.8287,29.9915,-1.3016,1.9224,30.0923,-1.3295,1.9544,29.8245,-1.8145,1.7166,29.6771,-1.5753,1.9138,30.0764,-1.4413,2.0475,30.3761,-1.3225,2.0804,30.3831,-1.5201,2.057,31.4434,-0.3241,1.9026,31.5307,-0.1048,1.6108,31.3352,0.5907,1.5279,31.2922,0.4961,2.3817,31.2986,-0.0603,2.2435,31.2371,-0.2703,2.294,31.2281,-0.286,2.205,31.0355,-0.7248,2.2504,30.8061,-1.0089,2.2287,29.7718,-1.3526,2.3384,29.8881,-1.4005,2.0556,30.0356,-1.2299,0.8107,30.7657,0.4085,0.8628,30.5907,0.1393,0.9413,30.8123,0.2117,0.6926,30.5007,0.2761,1.799,31.3366,0.2614,1.5421,31.2641,0.1833,1.7568,31.4052,0.1063,1.5577,31.2664,0.3241,1.9964,31.347,0.1275,1.9664,31.398,-0.0214,2.1175,31.3082,-0.2745,2.1233,31.1833,-0.4942,2.1069,30.9894,-0.7404,2.1171,30.7837,-1.0286,1.8439,29.8676,-1.1228,0.858,30.4347,0.0141,0.9668,30.3411,-0.1775,0.9045,30.2322,-0.141,1.2482,31.0746,0.2827,1.1229,30.9931,0.2667,1.2792,35.5577,-3.6174,1.4145,35.6563,-3.4296,2.4144,36.6925,-2.7541,2.2333,36.6504,-2.9086,2.0288,36.5533,-2.9966,2.3551,36.6841,-2.7489,1.7257,35.9895,-3.0921,1.7433,35.8766,-2.8358,1.7692,36.0789,-3.0582,1.2348,35.1969,-3.2842,1.6704,29.9385,-0.9801,1.6522,29.8343,-0.9877,2.084,30.3718,-1.2629,2.1925,30.3323,-1.2764,1.5425,29.4881,-0.9975,1.6849,29.4665,-1.1081,2.4081,30.2456,-1.3492,1.8341,31.3115,0.3283,2.1064,31.2746,-0.5677,2.1184,31.3443,-1.0638,2.0699,31.024,-0.8592,1.0043,29.8504,-0.7779,1.0783,30.1725,-0.3186,0.9829,30.8487,-0.0118,2.1214,30.4088,-1.7939,2.1036,30.267,-1.8156,1.3197,31.5146,0.0384,1.8377,32.1175,-0.1563,1.1127,31.2475,0.0381,0.6464,29.8144,-0.5059,0.3783,30.3293,-0.1227,1.902,31.1016,-2.5037,2.3068,32.7564,-0.7893,2.0962,33.301,-2.6477,1.795,33.3863,-2.7854,0.4772,29.9379,-0.1588,0.1864,30.7051,0.0869,0.4278,30.7123,0.0527,0.1183,31.0046,0.3388,0.1662,30.7078,0.1137,0.2179,30.3814,0.2627,1.9165,29.036,-1.2742,2.4594,30.5462,-1.2255,0.7816,30.0349,-0.0744,0.5757,30.1437,0.182,0.7425,29.8784,-0.0407,0.6754,30.2658,0.1238,0.9842,30.9318,0.4898,2.5532,31.3847,0.0537,0.5386,30.1189,0.1761,2.7851,30.8007,-0.967,2.7958,30.6342,-1.2543,3.1911,32.2488,0.1337,3.087,32.3052,0.2343,2.2525,31.8011,-0.6097,2.239,31.7414,-0.6603,2.2393,31.9965,-0.8118,2.3741,31.8571,-1.3602,2.3739,32.0577,-1.2052,2.3531,32.029,-1.1497,2.389,32.3027,-0.8968,2.467,32.3457,-0.7096,2.6895,32.2878,-1.2859,2.702,32.352,-1.2055,2.4968,32.3192,-1.0873,2.4918,32.3328,-1.0364,2.4375,32.3296,-0.9501,2.5867,32.421,-0.8294,2.7487,32.464,-0.699,2.6986,31.6123,-1.578,2.7542,31.7015,-1.5996,2.8583,32.0572,-1.5531,2.7359,32.0864,-1.4895,2.8661,32.1598,-1.4722,2.7709,32.1566,-1.4319,2.7915,31.6792,-1.5937,2.762,31.5707,-1.5599,3.3118,32.1238,-1.5853,2.8956,32.0475,-1.5529,3.2693,31.9484,-1.6705,2.9008,32.1508,-1.4763,2.7717,32.4691,-0.6807,3.201,32.5834,-0.4201,2.905,32.3688,-0.1222,3.7057,32.5092,-0.2359,3.8018,32.5776,-0.4406,3.7152,32.584,-1.2808,3.8605,32.4242,-1.1838,3.2382,30.8434,-1.4559,3.3316,31.0179,-1.5803,3.8135,32.951,-0.5082,3.7624,33.117,-0.8146,3.818,33.1678,-0.7052,3.5294,31.7122,-1.9232,3.595,33.3297,-1.2619,3.4961,33.2679,-1.4085,2.8451,31.7191,-2.2474};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getloscoxae_Coord_6_649_point_2()
		{
			double[] value = {2.5316,31.7824,-2.2331,2.7485,31.4358,-2.1921,2.5023,31.4581,-2.1981,3.346,33.5724,-1.5734,3.0958,34.0276,-1.9457,3.1686,34.1037,-1.8672,2.4216,31.5578,-2.4029,1.9086,31.0911,-2.5146,1.9159,29.1448,-1.946,2.586,29.2905,-1.9363,2.692,29.4601,-1.7676,2.643,29.5636,-1.5608,2.7445,29.7358,-1.6282,1.9162,32.1782,0.0027,1.7381,32.0166,-0.0736,2.1217,31.6528,0.4975,2.4113,34.3401,-1.8218,2.3119,34.0833,-1.7785,2.2591,33.8612,-1.7873,2.3314,34.6891,-2.0458,2.9614,33.914,-1.1879,2.9168,34.0686,-1.3724,3.4227,33.7167,-0.2229,3.1142,33.8749,-0.946,3.5201,33.585,0.1967,3.68,33.6764,0.5883,3.8164,34.4055,0.1594,3.9046,34.5887,0.7157,3.9916,35.0227,0.744,3.9007,34.6393,1.1051,3.9211,34.8311,0.9706,3.8856,34.6168,0.9351,2.6638,34.5124,-1.8813,2.9864,34.673,-1.8798,2.6027,34.6577,-1.9994,3.0431,34.1865,-1.4076,3.1295,34.1694,-1.3314,3.2574,34.3724,-1.4591,3.3776,34.3734,-1.3254,3.4404,34.3932,-1.272,3.5362,34.4717,-1.1923,3.5848,34.5552,-1.1718,3.666,34.6919,-1.1362,3.0744,35.0917,-2.0371,2.8158,34.3277,-1.6675,1.9269,35.3459,-2.358,1.9259,35.431,-2.3477,1.65,35.7366,-2.8049,1.6303,35.6581,-2.8967,2.9685,36.7383,-2.4958,4.0772,36.2965,-1.1192,4.1414,36.339,-1.1248,4.0865,35.0467,0.8296,2.1192,34.6886,-2.1773,1.5971,35.0777,-2.8735,1.673,33.3033,-3.1276,1.3969,34.0938,-3.3726,1.6869,34.2519,-2.7988,1.7716,34.3322,-2.7495,1.3443,34.4685,-3.1252,1.2569,34.4187,-3.2691,1.1703,35.0981,-3.3789,1.1978,34.7077,-3.2275,1.3285,34.8352,-3.0774,1.2609,34.7858,-3.1255,1.0625,34.9748,-3.6648,2.7865,33.391,-2.3384,2.6481,33.79,-2.7236,1.2084,34.4889,-4.0488,1.5709,34.6122,-4.022,1.7063,34.828,-3.9599,2.7632,36.1805,-2.8801,2.6522,36.4856,-2.9734,3.1598,36.3079,-2.6103,4.1196,34.1859,0.5506,4.0388,33.8849,0.2642,4.1563,34.1476,0.9642,4.2261,34.2651,0.9933,4.0024,33.1766,0.2125,3.9921,33.3385,0.2045,3.9554,33.1747,0.436,3.9136,32.956,0.3728,3.8901,32.9793,-0.0905,4.2335,34.8132,0.9856,0.83,31.1777,1.1024,3.4853,36.8127,-2.371,2.4863,36.4382,-3.0299,1.5401,35.7961,-3.8293,1.7216,35.5005,-3.8586,1.4224,35.6449,-3.9387,1.4725,35.816,-3.8169,1.3382,35.6774,-3.9554,1.2765,35.4666,-4.1137,1.219,35.4706,-4.1115,1.6303,35.7281,-2.9011,1.5849,35.8162,-3.2292,1.0453,34.8467,-4.1726,3.458,31.4753,-1.6758,2.7888,30.8433,-0.9785,2.7609,32.4672,-0.6884,2.8633,31.9131,-1.5932,2.8811,32.0513,-1.5512,2.9146,32.27,-1.3693,2.886,32.1525,-1.4756,2.3622,31.3194,-0.4472,4.6313,35.7403,-0.9295,4.3879,36.039,-1.3915,4.399,36.1033,-1.3686,1.5309,33.8294,-3.6872,1.5393,33.7856,-3.6621,1.5886,33.5291,-3.5154,4.1714,36.3311,-1.1506,4.1559,36.3407,-1.1326,0.9817,34.5215,-3.7307,0.978,30.8845,-0.019,0.165,31.5108,0.8082,0.1736,31.5222,0.8076,0.1757,31.5201,0.7952,1.6537,29.1133,-1.123,1.651,29.1409,-1.1234,1.6254,29.1572,-1.101,1.6091,29.1112,-1.1156,1.6624,28.9345,-1.3172,1.4639,29.0568,-1.1678,0.6352,29.7679,-0.4812,1.7525,34.3565,-2.7732,4.329,36.0464,-0.6642,2.3988,36.6876,-2.7205,2.0284,36.5438,-3.0044,1.9183,36.4321,-3.259,2.8884,32.0494,-1.5506,2.579,31.3649,-1.3809,2.3105,31.4687,-0.5377,2.3161,31.6259,-0.4463,1.1064,29.3994,-1.051,4.347,35.8876,-1.361,3.6498,33.3705,-1.1263,3.2251,33.5621,-0.4617,2.2533,31.4034,-0.8876,4.502,35.0617,0.2552,4.5958,35.1954,-0.421,1.455,29.6605,-1.3263,1.2165,29.7518,-1.0193,2.1218,34.6903,-2.1731,2.3533,31.7365,-0.3108,2.3506,31.7416,-0.316,2.3188,31.6211,-0.4409,2.4172,31.8665,-0.2551,2.6324,32.362,-0.5092,2.7659,32.4676,-0.6843,2.9144,32.4293,-1.0892,2.9322,32.3568,-1.2181,2.9217,32.2673,-1.3683,2.8934,32.1508,-1.4748,2.8704,31.9107,-1.5916,2.8776,31.909,-1.5937,2.8277,31.7985,-1.6044,2.8208,31.8011,-1.6024,2.7845,31.6816,-1.5916,2.7553,31.5741,-1.5584,2.6631,31.4144,-1.4653,2.6687,31.409,-1.4658,2.8887,32.0554,-1.5461,2.8886,32.0534,-1.5476,1.0867,35.0769,-4.1526,1.1537,35.2543,-4.1241,1.208,35.4702,-4.1018,1.1434,35.2543,-4.1124,1.4597,35.8167,-3.8055,1.3266,35.6778,-3.9476,1.7363,36.1182,-3.4753,1.608,35.9421,-3.6365,1.8399,36.2798,-3.385,1.8279,36.2797,-3.3724,4.1779,35.1926,0.6009,0.8476,29.6031,-0.7551,0.6788,29.6486,-0.358,0.9186,29.6343,-0.2563,1.1294,29.412,-0.5615,1.3669,29.2667,-0.8753,0.1453,31.3135,0.5236,0.1448,31.0098,0.313,1.0868,34.9517,-3.6183,1.0026,34.7409,-3.6796,3.8844,36.6646,-1.6728,3.9626,34.1011,1.0031,1.6925,35.2203,-4.0102,1.9945,36.1799,-3.4213,2.4566,36.5003,-3.0146,4.3052,34.6607,0.8643,4.3177,34.8143,0.6452,4.3079,34.6226,0.8025,4.2641,34.3988,0.9095,4.2595,34.438,0.9677,2.3134,31.4694,-0.5291,2.8138,31.8038,-1.604,2.7773,31.6834,-1.593,2.7481,31.5765,-1.5597,3.7645,32.5593,-0.4675,3.6656,32.4995,-0.2782,3.847,32.4081,-1.1643,3.7798,32.2248,-1.4061,3.7173,32.0378,-1.5505,2.9504,30.7765,-1.0415,1.058,35.0184,-3.8832,4.4741,35.2259,0.3936,4.144,34.5752,1.1486,4.3563,36.2691,-1.2814,4.5691,35.9465,-0.7747,3.6912,32.9777,0.498,4.013,36.6381,-1.7631,4.1407,34.3019,0.3994,4.1338,34.4261,0.2541,4.0403,34.19,-0.2901,4.1917,34.5887,-0.06,4.2604,34.7341,-0.5034,4.2368,34.8153,-0.7943,4.0399,34.278,-0.5841,3.5784,36.0385,-2.1536,4.0134,36.0102,-1.7756,3.2266,35.9244,-2.433,2.8504,35.8158,-2.6818,2.5587,35.6225,-2.883,2.3414,35.375,-3.0945,3.9425,35.4905,-1.6673,4.2197,35.4437,-1.349,3.5933,35.4734,-1.9666,3.3102,35.3857,-2.2382,3.0175,35.2493,-2.4479,2.7912,35.0988,-2.6255,2.6162,34.9303,-2.7841,2.2161,35.1459,-3.2782,2.4928,34.7202,-2.9356,2.8724,34.484,-2.4154,2.7874,34.3097,-2.5144,3.1476,34.7364,-2.1564,3.0041,34.6332,-2.2788,3.6283,34.9297,-1.7293,3.3722,34.8572,-1.9883,4.0199,34.9228,-1.2533,3.8634,34.9361,-1.4727,4.1414,34.8768,-1.0323,3.2538,34.191,-1.777,3.0409,33.9215,-2.0472,2.7011,34.0658,-2.6488,2.981,33.7522,-2.1592,2.8924,33.5617,-2.2788,1.576,34.8552,-2.8854,2.4873,36.4866,-2.5946,3.3034,33.9461,-0.7913,3.282,34.1632,-1.1883,3.3997,34.2093,-1.0636,2.736,35.938,-2.3743,3.3874,36.1615,-2.0573,3.0586,36.1255,-2.2941,3.6919,36.0755,-1.6846,3.9052,35.8088,-1.253,3.4242,34.8115,-1.6291,3.259,34.6394,-1.6868,3.2302,34.8434,-1.8363,2.9858,34.9033,-2.0061,3.08,34.5003,-1.6946,3.2388,34.7166,-1.759,3.2342,34.7897,-1.8097,2.968,34.7906,-1.9667,2.6021,35.0715,-2.2026,2.7351,35.3193,-2.242,2.9741,35.5268,-2.2178,3.1806,35.614,-2.1406,3.627,35.6056,-1.7299,3.4262,35.645,-1.982,3.7911,35.4456,-1.3828,3.8074,34.7655,-0.8228,3.8633,34.9734,-0.9288,3.7236,34.6035,-0.7942,3.6438,34.4313,-0.83,3.5189,34.2795,-0.935,2.5848,34.8627,-2.1219,3.8866,34.8018,-0.3646,3.9675,35.0961,-0.5057,3.7728,34.5204,-0.3711,3.4664,34.0566,-0.5843,2.2853,32.6157,-0.3819,2.0412,32.3227,-0.1195,1.5223,31.841,0.0943,1.0786,31.6024,0.3745,1.7272,29.2078,-1.1773,2.4902,29.6612,-1.5011,2.1842,29.1273,-2.0592,3.195,33.3589,-1.8337,3.0955,33.2291,-1.9824,3.2773,33.4716,-1.6822,3.4376,33.6656,-1.4496,3.2139,31.535,-2.0561,3.4263,31.4098,-1.9138,3.2813,32.6263,-0.6369,2.82,32.4882,-0.8553,3.3769,32.5153,-1.1044,2.9215,32.4311,-1.0885,3.3813,32.4078,-1.2852,2.9396,32.3579,-1.2187,3.3476,32.2723,-1.4636,2.9291,32.2675,-1.3699,3.2204,31.7853,-1.7049,3.1536,31.6242,-1.698,2.6952,32.4029,-1.0937,2.2876,32.065,-0.9736,2.3118,32.0129,-1.0636,2.2156,31.9058,-0.9227,2.2866,32.1212,-0.9209,2.2238,31.6719,-0.8191,1.9185,31.3804,0.4576,1.9641,29.582,-1.2506,1.3303,29.5394,-0.7982,1.139,29.6678,-0.5613,0.9326,29.8478,-0.2863,1.3106,31.7003,0.2317,2.1479,31.0401,-1.2725,2.1457,30.7137,-1.4308,1.6403,29.9606,-1.1327,2.1096,30.6364,-1.2222,2.1063,30.8035,-1.08,2.1291,30.6153,-1.1597,2.2483,30.6242,-1.1663,1.3909,29.8467,-0.7355,1.2044,29.9132,-0.5284,1.042,30.0601,-0.3125,2.6567,31.4185,-1.4671};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_650_vector_1()
		{
			double[] value = {-0.9985,0.0036,0.0539,-0.9983,-0.0002,-0.0578,-0.998,0.046,0.0425,-0.9978,-0.065,-0.0091,-0.9956,0.0872,0.0335,-0.9955,0.0744,0.0585,-0.9954,-0.0793,0.0542,-0.9949,0.0858,0.0531,-0.9947,0.0748,0.0708,-0.9945,0.1029,-0.0183,-0.9942,0.0955,-0.0497,-0.9925,-0.1167,0.0353,-0.9924,0.1058,-0.0629,-0.9915,-0.1206,-0.0484,-0.9915,-0.124,0.0399,-0.9912,0.0934,0.0937,-0.9903,-0.0577,0.1263,-0.99,-0.0402,0.1351,-0.9898,0.1405,0.023,-0.9891,-0.0222,0.1457,-0.9887,0.1416,-0.0499,-0.9868,0.0339,-0.1581,-0.9867,0.1307,-0.0963,-0.9866,0.0927,-0.1345,-0.9855,0.0612,-0.1581,-0.9848,0.0156,0.173,-0.9844,0.1205,-0.1279,-0.9837,-0.0834,0.1591,-0.9811,0.1915,0.0278,-0.9809,-0.0632,0.1838,-0.9802,0.0579,0.1893,-0.9801,-0.005,0.1984,-0.9789,-0.1055,0.175,-0.9785,0.1378,0.1537,-0.9772,0.0542,-0.205,-0.9772,-0.128,0.1695,-0.9771,0.0773,0.1984,-0.9757,0.2028,-0.083,-0.9756,0.1073,0.1914,-0.9756,-0.206,0.0762,-0.9756,-0.1615,-0.1489,-0.9753,0.1339,0.1755,-0.9753,0.0917,0.2009,-0.9751,0.1316,-0.1783,-0.9743,-0.1496,0.1685,-0.974,-0.0698,-0.2153,-0.9732,-0.1424,0.1806,-0.9724,0.055,0.2268,-0.9724,-0.1238,-0.198,-0.9722,-0.1573,0.1732,-0.972,-0.2323,-0.0356,-0.9718,0.2262,-0.0659,-0.9704,0.0601,-0.2337,-0.9703,-0.222,0.0957,-0.9697,-0.0938,0.2256,-0.9694,0.1911,0.1541,-0.9694,0.2412,-0.0465,-0.9686,-0.1482,-0.1997,-0.9672,0.1833,0.1761,-0.9671,0.098,-0.2346,-0.9635,0.024,0.2667,-0.9633,-0.2392,0.122,-0.9632,0.2146,-0.1618,-0.9629,0.0089,-0.2698,-0.9628,-0.1573,0.2197,-0.9621,0.2541,0.0987,-0.9609,0.2767,0.0118,-0.9594,-0.2168,0.1803,-0.9558,-0.2898,-0.0503,-0.9557,0.2052,-0.2112,-0.9554,0.2815,-0.0888,-0.9552,0.0525,0.2912,-0.9547,-0.2852,0.0847,-0.9541,0.2979,-0.0321,-0.9516,0.3012,0.0609,-0.9516,0.2888,0.105,-0.951,0.2704,0.15,-0.9502,-0.26,0.172,-0.95,0.0121,0.312,-0.9487,0.136,0.2854,-0.9484,0.3123,0.0543,-0.9477,-0.1821,0.2621,-0.9471,0.2295,0.2241,-0.947,0.2437,0.2091,-0.9441,0.2188,0.2465,-0.944,0.3175,0.0902,-0.9433,0.2367,-0.2328,-0.9428,-0.0807,0.3235,-0.9425,-0.211,0.2592,-0.9423,-0.2179,0.254,-0.9423,0.2067,0.2633,-0.942,-0.0138,0.3354,-0.9414,0.2595,0.2156,-0.9408,0.2387,0.2407,-0.9401,0.2931,0.1743,-0.9398,0.1754,-0.2932,-0.9394,0.1978,0.2801,-0.9391,-0.2631,0.221,-0.9391,0.0056,-0.3436,-0.9382,0.2754,-0.2094,-0.9379,0.1398,0.3176,-0.9378,-0.0384,-0.3449,-0.9378,-0.2399,0.2511,-0.9373,-0.3032,-0.1716,-0.9368,0.1494,0.3164,-0.9362,0.304,0.1762,-0.9361,0.3169,-0.1527,-0.9348,0.1748,0.3091,-0.9345,0.0396,0.3539,-0.9342,0.1543,-0.3218,-0.9337,0.3352,0.1262,-0.9329,-0.3601,-0.0054,-0.932,0.3265,0.1575,-0.9318,-0.3159,0.1788,-0.9313,0.1654,0.3246,-0.9308,0.1221,0.3446,-0.9305,0.2268,0.2875,-0.9275,-0.2953,0.2292,-0.9267,0.2729,0.2585,-0.9267,0.232,-0.2958,-0.9266,0.3203,0.1969,-0.9265,0.2437,0.2867,-0.926,0.2052,0.3169,-0.926,-0.3119,-0.2129,-0.9239,-0.1942,0.3297,-0.923,0.0778,0.3768,-0.9224,0.3419,0.1796,-0.9222,0.0825,0.3779,-0.921,-0.1449,0.3616,-0.9199,0.2229,0.3226,-0.9181,0.3313,-0.2178,-0.918,-0.2382,0.317,-0.918,0.1797,-0.3536,-0.9178,0.1554,0.3653,-0.9172,-0.1435,0.3718,-0.9167,0.2043,0.3434,-0.9163,-0.0768,0.393,-0.9161,0.2593,0.3057,-0.9146,0.164,-0.3696,-0.9144,0.0251,0.4039,-0.9141,0.1353,0.3823,-0.9092,0.289,-0.2997,-0.9091,0.2929,0.2963,-0.9061,-0.3493,-0.2389,-0.9058,-0.371,-0.2047,-0.9056,0.3633,0.2191,-0.9049,0.4187,-0.0761,-0.9038,0.1287,0.4082,-0.9036,0.3045,0.3013,-0.9034,0.024,0.428,-0.9026,0.1765,0.3927,-0.9013,0.1215,0.4159,-0.8985,0.3466,0.2693,-0.8982,0.0567,0.4359,-0.8978,0.4107,0.1589,-0.8967,0.1937,0.3981,-0.8964,0.1141,0.4282,-0.8963,0.1896,0.4008,-0.8962,0.4349,0.0869,-0.896,0.1969,0.398,-0.8959,0.0245,0.4436,-0.8926,-0.3155,0.3221,-0.892,0.3211,-0.3183,-0.8911,0.3993,0.2157,-0.891,0.0783,0.4473,-0.8887,0.3781,0.2594,-0.8882,0.3201,0.3297,-0.8861,0.4175,-0.2011,-0.8859,0.1633,0.4343,-0.8849,0.4172,0.2072,-0.8832,0.1723,0.4361,-0.8827,0.244,0.4016,-0.8822,-0.2698,0.3859,-0.8814,0.2554,0.3975,-0.8786,-0.3893,-0.2766,-0.8774,0.4412,0.1884,-0.8758,-0.4259,-0.2273,-0.8745,0.2792,-0.3965,-0.8743,0.4298,0.2256,-0.8736,0.0518,0.484,-0.8732,0.1347,0.4684,-0.8718,0.4062,0.2738,-0.8714,0.4719,-0.1342,-0.87,0.1098,0.4806,-0.8691,0.3606,-0.3385,-0.8687,0.4531,0.2003,-0.8675,-0.3171,-0.3832,-0.8667,0.1695,0.4692,-0.866,0.0796,0.4936,-0.865,-0.2287,-0.4466,-0.865,-0.0098,-0.5016,-0.8648,0.0694,0.4973,-0.8639,0.448,0.2301,-0.8627,0.3143,0.3963,-0.8623,0.3467,-0.3692,-0.8623,0.4259,0.2741,-0.8618,0.2693,0.4298,-0.8615,-0.4672,-0.1987,-0.8593,-0.1377,0.4925,-0.8591,-0.0815,0.5052,-0.8586,0.1966,0.4735,-0.8564,0.1143,0.5034,-0.8557,0.064,0.5135,-0.855,0.389,0.343,-0.854,0.1677,0.4925,-0.8539,0.3272,0.4046,-0.8524,0.3192,0.4142,-0.8522,0.3579,0.3818,-0.8519,-0.4461,0.2744,-0.8515,0.4911,-0.1834,-0.8509,0.277,0.4464,-0.8491,0.528,0.0178,-0.8482,-0.1877,0.4954,-0.8477,0.2801,0.4505,-0.8466,-0.0598,0.5288,-0.8458,0.5274,0.0806,-0.8449,0.4006,0.3544,-0.8431,-0.1493,-0.5166,-0.843,-0.2747,0.4625,-0.8424,0.3948,0.3667,-0.8399,0.1448,0.523,-0.8346,0.432,0.3417,-0.8343,-0.5401,0.1105,-0.834,0.2464,0.4937,-0.833,0.5225,0.1821,-0.8324,0.335,0.4414,-0.8313,0.542,0.1235,-0.8289,-0.4493,0.3331,-0.827,0.2731,0.4914,-0.8269,-0.4858,-0.2833,-0.8251,-0.5098,0.2434,-0.8228,-0.0342,-0.5673,-0.8224,-0.5681,-0.0316,-0.8216,0.5611,0.1006,-0.8213,-0.0065,-0.5705,-0.8211,0.1021,0.5616,-0.8206,0.3033,0.4844,-0.8204,-0.4219,-0.386,-0.8201,0.5683,0.0672,-0.8194,0.4961,0.2871,-0.8191,0.429,0.3808,-0.8181,0.5007,0.283,-0.8158,0.1393,0.5613,-0.815,0.5106,0.2739,-0.8124,0.1056,0.5735,-0.8114,0.0875,0.578,-0.8107,0.5625,0.1625,-0.8105,-0.1203,0.5732,-0.8086,0.3392,0.4807,-0.8076,0.5535,0.2034,-0.8058,0.1762,0.5653,-0.8039,-0.4868,0.3416,-0.8039,0.4571,-0.3805,-0.8037,-0.5826,0.1213,-0.8027,0.4556,0.3849,-0.8021,0.0772,0.5922,-0.8018,-0.3001,-0.5168,-0.8018,-0.4996,0.328,-0.8007,-0.4597,0.3841,-0.7975,-0.5348,0.2793,-0.7931,0.5548,0.2514,-0.7915,-0.5729,-0.2127,-0.7903,0.3162,0.5249,-0.7883,0.6145,0.029,-0.7882,0.3573,0.5012,-0.7872,0.5743,0.2248,-0.7858,-0.3447,-0.5136,-0.7854,0.5282,0.3227,-0.7813,-0.395,0.4833,-0.7797,-0.2993,0.55,-0.7797,0.0645,0.6228,-0.7773,0.56,0.2867,-0.7763,-0.1503,-0.6122,-0.776,-0.0066,-0.6307,-0.7756,0.5913,-0.2211,-0.7753,0.2428,0.5831,-0.7721,-0.6317,0.0703,-0.7719,-0.0115,0.6356,-0.7702,0.0551,0.6354,-0.7692,0.0308,0.6383,-0.7658,-0.6056,-0.2162,-0.7658,0.2514,0.5919,-0.7632,0.1293,0.633,-0.7625,0.2244,0.6068,-0.7617,0.637,0.1184,-0.7616,0.2619,0.5927,-0.7608,0.5049,0.4076,-0.76,0.0136,0.6498,-0.76,-0.5372,-0.3658,-0.7569,-0.6126,0.2276,-0.7564,-0.6086,0.2396,-0.7553,0.6278,-0.1882,-0.7548,0.4618,0.4659,-0.7531,-0.3062,0.5823,-0.7516,-0.6595,0.0122,-0.7482,0.4758,0.4624,-0.748,-0.4946,0.4427,-0.747,0.0541,-0.6626,-0.7449,0.5719,-0.3436,-0.7442,-0.0649,0.6648,-0.743,-0.2147,0.6339,-0.7421,-0.0572,0.6679,-0.7385,-0.5863,0.3329,-0.7381,0.6466,0.1925,-0.7375,0.6742,0.039,-0.7363,-0.5063,0.4489,-0.7343,0.4123,0.5392,-0.7332,0.0133,-0.6799,-0.7317,0.1496,-0.6651,-0.7307,0.6634,0.1613,-0.7297,-0.6822,0.0466,-0.7291,0.5407,0.4196,-0.726,0.3604,0.5857,-0.7246,0.677,-0.1289,-0.7215,0.3403,0.603,-0.7212,-0.5406,-0.4331,-0.7198,-0.2766,0.6367,-0.7184,-0.4101,0.5618,-0.7174,0.3148,0.6214,-0.7146,0.1046,0.6916,-0.7145,0.3414,0.6106,-0.7142,0.4696,0.519,-0.7141,0.6993,0.0339,-0.712,-0.3201,0.625,-0.7092,-0.4722,0.5235,-0.7083,0.5839,0.3967,-0.707,-0.1958,0.6795,-0.7053,0.3611,0.61,-0.702,0.6551,0.2792,-0.7007,0.4788,0.529,-0.6995,0.6112,0.3703,-0.6983,0.4747,-0.5358,-0.6974,0.3762,0.61,-0.6971,0.7051,-0.13,-0.697,-0.5047,0.5094,-0.6969,0.6169,-0.3658,-0.6962,-0.5807,0.422,-0.6923,0.5384,0.4805,-0.6921,0.0589,-0.7194,-0.691,0.5051,0.5171,-0.6905,0.5582,0.4601,-0.6892,0.086,0.7194,-0.6872,-0.0795,0.7221,-0.6853,-0.5167,0.5132,-0.6846,0.2239,0.6937,-0.6833,0.5582,-0.4707,-0.6814,0.2208,-0.6978,-0.6808,0.0026,-0.7325,-0.6769,0.1149,0.727,-0.6756,0.5312,0.5113,-0.6733,0.5234,0.5222,-0.6709,0.0717,0.7381,-0.6678,-0.0298,0.7437,-0.6669,-0.3402,-0.6629,-0.6667,0.7263,-0.1676,-0.6663,0.2072,0.7163,-0.6646,0.4687,0.582,-0.663,0.1477,0.7339,-0.6628,-0.1348,0.7366,-0.6613,0.4313,0.6138,-0.6606,-0.7184,-0.2178,-0.6598,0.5828,0.4743,-0.6579,0.0404,0.752,-0.6559,0.7091,-0.2586,-0.6552,0.262,0.7086,-0.655,0.6663,-0.3565,-0.654,0.5103,0.5585,-0.6538,0.715,0.2476,-0.646,-0.683,0.3409,-0.64,-0.0715,0.765,-0.6398,-0.6215,-0.4522,-0.6392,0.2477,0.7281,-0.6384,0.4607,-0.6166,-0.6378,-0.6786,0.3644,-0.6377,0.3109,0.7047,-0.6368,-0.7695,-0.0484,-0.6351,0.6478,0.4208,-0.6338,0.7574,-0.1566,-0.6338,-0.4377,0.6377,-0.6298,-0.5695,0.5281,-0.6271,0.7334,0.2624,-0.6253,0.1838,0.7584,-0.6251,0.6102,0.4867,-0.6243,0.0224,0.7809,-0.623,0.549,0.5572,-0.6227,0.5842,0.5206,-0.6219,-0.7034,0.3442,-0.616,0.6699,-0.4145,-0.6155,0.772,-0.1586,-0.6149,0.5482,0.5669,-0.6109,0.084,0.7872,-0.6086,-0.0325,0.7928,-0.6071,0.0116,0.7945,-0.6056,0.1826,-0.7746,-0.6054,0.2622,-0.7515,-0.599,0.6513,-0.4658,-0.5972,-0.7036,0.385,-0.5939,0.3679,0.7154,-0.5926,0.7914,-0.1501,-0.5885,0.4869,0.6455,-0.588,0.0744,0.8055,-0.5814,0.6589,0.4772,-0.5804,-0.1077,0.8072,-0.5742,0.5022,-0.6466,-0.5721,0.7946,0.2032,-0.5699,0.4972,0.6543,-0.5682,0.5879,0.5758,-0.5675,0.2955,0.7685,-0.5652,-0.7929,0.2276,-0.5641,0.2841,0.7753,-0.5555,-0.3788,0.7402,-0.5551,-0.1218,-0.8228,-0.555,0.2639,0.7889,-0.5545,0.5227,0.6476,-0.5514,0.0109,-0.8342,-0.5493,0.4105,0.7279,-0.5479,0.7566,0.357,-0.5478,0.472,0.6908,-0.5471,0.6601,0.5148,-0.5418,-0.8405,-0.0046,-0.5317,0.735,0.4208,-0.5316,-0.8461,0.0396,-0.5307,-0.8467,-0.0383,-0.5288,0.5369,0.6573,-0.5261,0.3337,0.7823,-0.5218,-0.6892,0.5027,-0.521,0.6035,0.6036,-0.5191,0.365,0.7729,-0.5157,0.8299,-0.2128,-0.5156,-0.8387,0.1752,-0.5138,-0.8199,-0.2525,-0.5115,0.378,-0.7717,-0.5086,0.2616,0.8203,-0.5071,0.8457,0.166,-0.5069,0.7309,-0.4569,-0.5029,-0.7098,0.4932,-0.4977,0.3653,-0.7867,-0.4969,0.858,0.1299,-0.4955,-0.7695,-0.4029,-0.4931,0.1704,0.8531,-0.4883,0.6129,-0.6213,-0.4862,0.1919,0.8525,-0.4859,0.8498,-0.2045,-0.4835,-0.7034,-0.5211,-0.4821,-0.0319,0.8755,-0.4767,0.5309,-0.7006,-0.4765,-0.2544,-0.8416,-0.4752,0.2302,0.8492,-0.4709,-0.698,0.5395,-0.4706,-0.3303,0.8182,-0.4691,0.5505,0.6906,-0.4672,-0.5073,-0.7242,-0.4668,0.4853,-0.7393,-0.4664,0.6662,0.582,-0.4659,0.1809,0.8661,-0.464,-0.7921,0.3967,-0.4628,-0.7956,-0.391,-0.4558,0.2521,-0.8537,-0.4506,0.4997,0.7398,-0.4474,0.1944,-0.8729,-0.4473,0.2702,0.8526,-0.4406,0.8525,0.2813,-0.4387,-0.8353,-0.3315,-0.4369,-0.3987,-0.8063,-0.4361,0.3068,0.846,-0.4351,0.2242,-0.872,-0.4322,0.8146,0.3869,-0.4312,0.8944,-0.1187,-0.4306,0.1451,-0.8908,-0.4246,-0.6669,-0.6123,-0.4209,0.4327,-0.7973,-0.4132,0.5943,-0.69,-0.4127,-0.8157,0.4053,-0.4053,0.6436,0.6492,-0.4037,0.6755,0.617,-0.4017,0.3948,0.8263,-0.4016,-0.7996,0.4465,-0.4013,0.4707,0.7858,-0.3995,0.195,-0.8958,-0.3994,0.5967,0.6961,-0.3989,0.2567,-0.8803,-0.3976,0.6511,0.6465,-0.3973,0.4048,0.8236,-0.3964,0.6336,0.6644,-0.395,-0.6702,0.6284,-0.3926,-0.446,-0.8043,-0.3924,0.8062,0.4428,-0.3914,0.4022,0.8277,-0.3874,0.3542,0.8512,-0.3836,0.3449,0.8567,-0.3799,-0.5597,0.7365,-0.3729,0.5372,0.7565,-0.3714,-0.8055,-0.4619,-0.3703,0.7537,0.5429,-0.3687,0.4485,0.8142,-0.3678,0.2138,0.905,-0.3621,-0.6257,-0.6909,-0.3619,0.8641,-0.3498,-0.3605,0.4401,0.8224,-0.3601,0.5439,0.7579,-0.3574,0.4077,-0.8403,-0.3535,-0.892,0.2817,-0.3477,0.7507,0.5618,-0.3402,0.2902,-0.8945,-0.3373,0.9219,0.1908,-0.3366,0.6841,0.6471,-0.3353,0.8396,0.4274,-0.3341,-0.5814,-0.7418,-0.3338,0.5737,0.748,-0.333,0.6227,0.7081,-0.3322,0.105,0.9374,-0.3269,-0.9378,0.1169,-0.3191,0.8871,0.3336,-0.3189,0.3306,0.8883,-0.3181,0.8157,0.4832,-0.3173,0.422,-0.8492,-0.3171,0.5682,0.7593,-0.3077,0.5118,0.8021,-0.3059,0.1327,-0.9428,-0.3042,0.8344,-0.4597,-0.3039,0.9145,-0.2669,-0.3039,0.0122,0.9526,-0.3019,0.6346,-0.7114,-0.2999,0.7798,0.5496,-0.2995,0.0305,-0.9536,-0.2957,0.0601,-0.9534,-0.2845,-0.5508,0.7846,-0.279,0.9281,-0.2466,-0.2784,0.6099,-0.742,-0.2766,0.216,0.9364,-0.2747,-0.113,0.9549,-0.2742,-0.2136,0.9377,-0.2717,-0.9262,-0.2614,-0.2703,-0.6677,0.6936,-0.2644,0.5217,-0.8111,-0.2513,-0.3181,-0.9141,-0.2512,0.2589,0.9327,-0.2461,-0.5682,-0.7852,-0.2452,-0.1204,0.962,-0.2421,0.9627,0.121,-0.242,0.9689,0.0512,-0.2408,0.8244,0.5122,-0.2372,-0.3559,-0.9039,-0.2367,0.8857,0.3993,-0.2356,0.516,-0.8235,-0.2342,0.7128,0.6611,-0.2335,0.5731,0.7855,-0.2269,0.4918,-0.8406,-0.2219,-0.6966,-0.6823,-0.2207,-0.9303,0.2928,-0.2136,0.8138,0.5405,-0.2133,-0.4901,-0.8452,-0.2059,0.4679,0.8594,-0.2045,0.8837,-0.421,-0.2027,-0.9233,0.3261,-0.2021,0.6496,-0.7329,-0.2014,-0.9153,0.3487,-0.1981,0.3855,0.9012,-0.1965,-0.8448,-0.4978,-0.1948,0.7737,-0.6029,-0.1903,0.6553,-0.731,-0.1897,0.3219,0.9276,-0.1893,0.0741,0.9791,-0.1861,-0.4304,0.8832,-0.1848,-0.3514,0.9178,-0.1786,-0.9098,0.3746,-0.1755,-0.9094,0.3771,-0.1736,0.0564,0.9832,-0.1664,0.9571,-0.2373,-0.1656,0.9862,-0.0043,-0.1643,-0.8162,0.5539,-0.1636,-0.9849,0.0564,-0.163,0.4228,0.8914,-0.1629,-0.6164,0.7704,-0.1613,0.2842,0.9451,-0.1603,0.9515,0.2625,-0.1602,0.4375,0.8848,-0.16,0.547,0.8217,-0.1587,-0.9871,-0.0224,-0.1573,-0.1263,-0.9794,-0.1565,0.9485,0.2753,-0.1514,0.4316,0.8892,-0.1505,-0.973,0.1751,-0.1485,0.2467,0.9576,-0.1434,0.282,0.9486,-0.1406,0.4713,-0.8707,-0.1388,-0.5388,-0.8309,-0.1329,-0.3399,0.931,-0.129,0.8016,-0.5838,-0.1221,-0.0355,0.9919,-0.1201,-0.886,-0.4478,-0.1196,0.8131,0.5697,-0.119,0.3425,-0.9319,-0.118,0.2306,0.9659,-0.1175,0.993,0.0123,-0.1169,0.9519,-0.2831,-0.1158,-0.8427,0.5258,-0.1121,-0.9308,0.348,-0.1038,-0.9757,0.1929,-0.1033,0.0054,0.9946,-0.1029,-0.1266,-0.9866,-0.1007,-0.0776,0.9919,-0.0982,-0.9818,0.1628,-0.098,-0.7762,-0.6229,-0.0966,0.8247,0.5573,-0.0963,-0.764,0.638,-0.0961,0.8464,0.5238,-0.0941,-0.8626,0.4971,-0.0935,-0.0416,-0.9948,-0.092,-0.1178,-0.9888,-0.0882,-0.7075,-0.7012,-0.0865,-0.4174,-0.9046,-0.0812,-0.9834,0.1623,-0.0805,-0.2207,0.972,-0.0717,-0.3683,-0.927,-0.0656,-0.7039,0.7073,-0.0623,-0.1514,-0.9865,-0.0612,-0.6602,0.7486,-0.0601,-0.092,0.9939,-0.0575,-0.6987,0.7131,-0.0535,-0.4139,0.9088,-0.0512,0.4774,-0.8772,-0.0504,0.6551,0.7539,-0.0458,0.6761,-0.7354,-0.0457,0.194,0.9799,-0.0419,0.9932,-0.1087,-0.0416,-0.6332,0.7729,-0.0404,-0.8413,0.539,-0.0314,-0.5972,0.8015,-0.0307,0.5558,-0.8308,-0.0282,-0.5795,0.8145,-0.0269,0.8886,-0.4578,-0.0253,0.3848,0.9227,-0.0227,0.4171,0.9086,-0.0207,0.8785,0.4774,-0.0181,-0.9308,0.365,-0.018,0.8011,-0.5982,-0.0161,-0.4569,0.8894,-0.0154,0.6662,0.7456,-0.0154,-0.9154,0.4023,-0.0135,-0.0185,0.9997,-0.0117,-0.5421,0.8403,-0.0107,-0.8884,0.4589,-0.0064,-0.7163,0.6977,0.0032,-0.1958,0.9806,0.0034,-0.8252,0.5648,0.0047,0.0625,-0.998,0.0053,0.1431,0.9897,0.0056,-0.6435,0.7654,0.0057,-0.9579,0.287,0.0066,-0.5767,-0.8169,0.0126,-0.3256,0.9454,0.0143,-0.007,0.9999,0.0184,-0.634,-0.7731,0.0185,-0.9998,0.0084,0.0194,0.9943,0.105,0.0205,-0.8701,0.4924,0.0224,-0.7176,0.6961,0.0259,-0.9003,0.4345,0.026,-0.9702,0.2408,0.029,-0.9954,-0.0916,0.0303,-0.7081,0.7054,0.0314,-0.9285,0.3701,0.033,-0.9706,0.2384,0.0344,0.7506,-0.6599,0.0348,-0.7262,0.6866,0.0355,-0.4871,0.8727,0.0424,-0.9826,0.1807,0.0426,-0.7,0.7128,0.0434,-0.7737,0.6321,0.0543,-0.995,0.0839,0.0545,-0.2311,-0.9714,0.0546,-0.9752,0.2146,0.0564,-0.9357,-0.3481,0.0566,-0.7242,0.6873,0.0615,-0.6182,0.7836,0.0623,-0.083,-0.9946,0.0632,-0.5217,0.8508,0.0662,-0.113,0.9914,0.0674,0.0994,-0.9928,0.0704,-0.9972,-0.0251,0.076,-0.5596,0.8253,0.0767,-0.9032,-0.4223,0.0818,0.0312,0.9962,0.0908,0.511,0.8548,0.0953,0.1674,0.9813,0.0969,-0.5082,0.8558,0.0981,-0.0078,0.9951,0.0993,-0.9911,0.0886,0.1048,0.104,-0.989,0.116,-0.9501,-0.2895,0.1161,0.8958,-0.4289,0.1198,-0.9922,0.033,0.1198,0.6819,0.7216,0.1222,-0.7629,0.6348,0.1234,-0.7987,0.589,0.1273,0.0577,0.9902,0.1311,0.9909,0.031,0.1315,0.7554,0.6419,0.1335,-0.5201,0.8436,0.1342,-0.9584,-0.2521,0.1364,-0.6776,0.7227,0.1377,0.3246,0.9358,0.1392,-0.5182,0.8439,0.1403,0.1583,-0.9774,0.1417,-0.006,0.9899,0.143,-0.7887,0.5979,0.1452,0.5081,-0.849,0.1462,-0.7763,0.6132,0.1491,-0.987,0.0607,0.1498,-0.3443,-0.9268,0.1516,-0.9863,0.0651,0.1518,-0.4876,0.8598,0.1554,0.5409,-0.8266,0.1555,-0.6426,0.7502,0.1563,0.1271,-0.9795,0.1567,-0.1765,0.9717,0.1612,-0.8472,0.5063,0.1622,-0.4012,-0.9015,0.1624,-0.2813,-0.9458,0.163,-0.9642,-0.2093,0.1632,0.7968,0.5818,0.1641,-0.1811,0.9697,0.1642,0.6007,0.7824,0.1649,-0.7104,0.6842,0.168,-0.9416,0.2917,0.1697,0.7561,0.632,0.1709,0.3327,0.9274,0.1722,0.3238,-0.9303,0.1723,-0.5893,0.7893,0.1772,-0.4437,0.8785,0.1781,-0.8854,0.4294,0.1799,-0.1565,-0.9712,0.1839,-0.6679,0.7212,0.1979,-0.9547,-0.2223,0.199,0.2638,0.9438,0.1993,-0.9785,-0.0526,0.2023,0.8528,0.4815,0.2028,0.7803,0.5916,0.2069,-0.1615,-0.9649,0.2102,-0.1032,-0.9722,0.2109,0.9274,0.309,0.2152,-0.9765,-0.0068,0.2177,-0.844,-0.4901,0.2195,-0.2489,0.9433,0.2205,0.7967,-0.5628,0.2211,-0.5905,0.7762,0.2221,-0.8216,0.5251,0.226,-0.8986,-0.376,0.2284,0.3006,0.926,0.2312,-0.3059,-0.9236,0.2346,-0.9135,0.3325,0.236,0.1562,-0.9591,0.2391,-0.966,0.0978,0.2406,0.7698,0.5912,0.2407,-0.4981,0.833,0.2418,0.2147,0.9463,0.2421,-0.882,0.4044,0.2429,-0.5802,0.7774,0.2479,-0.4198,0.8731,0.248,0.0027,0.9688,0.2506,-0.0903,0.9639,0.2516,0.113,0.9612,0.2523,0.0113,0.9676,0.2559,-0.8207,0.5109,0.2616,-0.938,0.2275,0.2623,0.5599,0.786,0.2634,-0.0088,0.9646,0.2652,0.2523,0.9306,0.2653,-0.7897,0.5532,0.2674,-0.4979,0.825,0.2687,-0.7027,0.6588,0.2691,-0.9006,0.3414,0.2696,-0.1237,-0.955,0.2719,0.6788,0.6822,0.2775,-0.7029,0.6549,0.2782,-0.9249,-0.259,0.2826,-0.4908,0.8242,0.2837,0.4917,0.8232,0.2844,-0.6713,0.6844,0.2852,-0.9449,-0.1609,0.2895,0.4634,0.8376,0.2912,-0.9419,-0.1676,0.2974,0.7802,0.5504,0.2978,0.1313,0.9456,0.3,-0.8995,-0.3177,0.3005,0.2652,0.9162,0.3016,-0.9534,-0.0095,0.3035,-0.5072,0.8066,0.3043,0.1128,0.9459,0.3067,0.8795,0.3639,0.307,0.5254,-0.7935,0.3102,0.5627,-0.7663,0.3103,-0.2881,0.9059,0.3106,-0.3942,0.8649,0.3121,-0.3805,-0.8705,0.3134,0.7175,0.622,0.3137,0.2712,0.91,0.3149,-0.9462,-0.0739,0.3179,0.4797,0.8178,0.3193,0.4881,0.8123,0.3253,0.2894,0.9003,0.3269,0.0764,-0.942,0.327,-0.9344,-0.1414,0.3281,-0.2494,-0.9111,0.3288,-0.3805,-0.8644,0.3316,-0.6587,0.6754,0.3333,-0.548,0.7672,0.3344,0.7733,0.5386,0.3359,-0.905,0.2609,0.3365,-0.9188,0.2062,0.338,-0.9115,0.2342,0.3395,0.0481,0.9394,0.34,0.3456,0.8746,0.3416,-0.1497,0.9279,0.3439,-0.9367,0.0655,0.3441,0.9278,0.1438,0.3454,-0.8766,0.335,0.3481,-0.7395,0.5761,0.3514,0.1888,-0.917,0.3524,-0.6294,-0.6926,0.3525,-0.9261,-0.1342,0.355,-0.1416,0.9241,0.3569,-0.9315,0.0699,0.357,-0.9235,0.1404,0.3607,0.4094,0.838,0.3618,-0.724,0.5874,0.3636,-0.1209,0.9237,0.3645,-0.2631,0.8932,0.365,0.1212,-0.9231,0.3658,-0.1779,-0.9135,0.3672,0.5679,-0.7367,0.3711,0.4084,-0.834,0.3712,-0.3882,0.8435,0.3731,-0.8833,-0.2837,0.375,-0.2641,-0.8886,0.3822,-0.4539,0.8049,0.385,-0.7223,0.5745,0.3854,-0.4346,0.814,0.3899,-0.6733,0.6282,0.3932,-0.1278,0.9105,0.3949,-0.5135,-0.7618,0.3965,0.1841,-0.8994,0.3966,-0.1965,-0.8967,0.3967,-0.5043,0.767,0.399,0.0876,-0.9128,0.3992,-0.2829,0.8721,0.3997,-0.6894,0.6041,0.4015,0.0035,-0.9159,0.4031,0.6134,0.6792,0.4042,-0.9147,-0.0043,0.4089,-0.1471,0.9007,0.4111,0.3538,-0.8401,0.4129,0.5011,0.7605,0.414,0.2894,-0.863,0.4189,-0.0092,0.908,0.4189,0.6998,0.5786,0.4193,0.5879,0.6918,0.4205,-0.545,0.7254,0.4216,-0.82,-0.3871,0.4219,-0.8704,0.2537,0.4222,0.3642,0.8301,0.4242,-0.1443,0.894,0.4244,0.3988,0.8129,0.4253,-0.7358,0.5269,0.4274,-0.4194,-0.8009,0.4279,-0.8085,0.404,0.428,-0.7311,-0.5314,0.4289,0.8404,0.3314,0.4356,-0.1872,0.8805,0.437,0.0646,0.8971,0.4379,-0.8043,-0.4017,0.4387,0.6032,0.6661,0.439,0.4452,-0.7804,0.4438,-0.5064,-0.7393,0.4442,0.2818,0.8505,0.4451,-0.8222,-0.3547,0.4469,-0.0689,0.8919,0.4478,0.3665,-0.8156,0.448,-0.8587,0.249,0.4493,0.5164,0.7291,0.4512,-0.2608,0.8535,0.4542,0.1126,-0.8838,0.4556,-0.8659,-0.2065,0.4565,0.0322,0.8891,0.4577,-0.2362,-0.8572,0.463,-0.6507,0.6018,0.4649,0.1166,-0.8777,0.4654,-0.1185,0.8772,0.4658,-0.3328,-0.8199,0.4659,-0.6194,0.6318,0.467,-0.7608,0.4505,0.4673,-0.8776,0.1072,0.4682,0.0732,-0.8806,0.4683,-0.8346,0.29,0.4731,-0.8207,0.3204,0.4779,-0.2849,0.8309,0.4796,0.5931,0.6467,0.4807,0.7903,-0.38,0.4808,0.7884,0.3837,0.483,-0.1645,0.86,0.4847,-0.1728,0.8575,0.485,-0.6566,-0.5777,0.4864,-0.6824,-0.5456,0.4873,-0.0785,-0.8697,0.4882,-0.4573,-0.7433,0.489,0.4569,-0.7431,0.4894,-0.0692,-0.8693,0.4902,-0.803,-0.3389,0.4904,-0.7802,-0.3884,0.493,-0.853,-0.1716,0.4934,0.6609,0.5655,0.4953,-0.7729,-0.3966,0.4962,-0.7723,-0.3967,0.498,-0.8017,0.3307,0.4993,-0.3966,0.7703,0.4996,-0.1833,-0.8466,0.5029,-0.0957,-0.8591,0.504,0.2069,0.8385,0.5065,0.7386,0.4448,0.5083,0.709,0.4888,0.5101,-0.7836,-0.3547,0.5108,0.0564,-0.8578,0.5128,-0.8539,-0.0895,0.5135,-0.5364,-0.6698,0.515,-0.7309,0.4479,0.5176,0.2412,-0.8209,0.5234,-0.2242,-0.8221,0.5243,0.4253,-0.7377,0.5244,0.444,0.7265,0.525,-0.8498,0.0473,0.5276,-0.4298,0.7327,0.5288,-0.4452,-0.7227,0.5393,0.002,-0.8421,0.5428,-0.0466,0.8386,0.5433,-0.0257,0.8391,0.5434,-0.1426,-0.8273,0.545,-0.2129,0.8109,0.5453,-0.817,0.1877,0.5454,0.6137,0.5709,0.5466,-0.0809,0.8335,0.5469,-0.4298,-0.7185,0.5488,-0.6014,0.5807,0.5516,-0.7961,0.249,0.5525,-0.3029,0.7765,0.5528,-0.1039,-0.8268,0.5537,0.7517,0.3583,0.5538,-0.1743,-0.8142,0.5541,-0.1619,0.8165,0.5564,0.7132,0.4264,0.5572,-0.5259,-0.6425,0.5573,0.5562,0.6164,0.5581,-0.3015,0.7731,0.5592,-0.755,0.3424,0.5599,-0.0556,-0.8267,0.566,0.4583,0.6853,0.566,-0.4536,0.6884,0.5678,-0.4979,-0.6555,0.5679,0.788,0.2377,0.5681,0.0361,-0.8221,0.5688,-0.2364,-0.7878,0.5711,-0.0726,0.8177,0.5724,-0.7328,0.3679,0.5736,0.6306,0.5229,0.5742,-0.0116,-0.8186,0.5747,-0.6261,0.5269,0.5764,-0.0704,-0.8142,0.5802,0.1314,-0.8038,0.5811,-0.702,-0.4117,0.5822,0.1706,-0.7949,0.5864,-0.1908,0.7873,0.5881,-0.0074,0.8088,0.5897,-0.3694,0.7181,0.5942,-0.5251,0.6093,0.5973,-0.327,0.7323,0.5988,0.245,-0.7625,0.6092,-0.3019,-0.7333,0.6104,-0.3403,-0.7152,0.611,-0.7655,0.2015,0.612,-0.2967,0.7331,0.6121,-0.1129,-0.7827,0.6126,-0.2089,-0.7623,0.6152,-0.1729,-0.7691,0.618,-0.2123,0.757,0.6181,0.0207,0.7858,0.6192,-0.756,0.2123,0.6196,0.0011,-0.7849,0.6215,-0.7724,0.1309,0.622,-0.1858,0.7607,0.623,-0.7236,0.2973,0.6235,-0.6392,0.4502,0.6238,-0.3032,-0.7204,0.6245,-0.2175,-0.7501,0.6247,-0.2581,-0.737,0.6249,0.1243,-0.7707,0.6257,-0.4843,0.6115,0.6268,-0.163,0.7619,0.6275,0.0725,-0.7753,0.6277,-0.5355,0.565,0.6287,0.0047,-0.7776};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_650_vector_2()
		{
			double[] value = {0.6289,-0.2544,-0.7347,0.6294,-0.2763,0.7263,0.6298,-0.4023,-0.6645,0.6302,-0.7716,0.0862,0.6319,-0.3592,0.6868,0.6327,-0.1599,0.7577,0.6357,-0.0074,-0.7719,0.6362,-0.1815,0.7498,0.6372,0.4122,0.6512,0.641,-0.154,-0.7519,0.6419,-0.1863,-0.7438,0.642,-0.6245,0.4449,0.6424,-0.1998,-0.7398,0.6448,-0.1375,-0.7519,0.6487,0.3952,0.6503,0.6497,-0.1769,-0.7393,0.651,0.6969,0.3007,0.6511,-0.5428,-0.5305,0.6516,-0.5108,-0.5607,0.6531,0.167,-0.7386,0.6537,-0.2402,-0.7177,0.6545,-0.1586,-0.7392,0.656,-0.4988,0.5665,0.6569,0.6294,0.4151,0.6576,-0.6278,-0.4165,0.6576,0.1728,-0.7332,0.6599,-0.3641,0.6572,0.6609,-0.2099,-0.7205,0.6614,0.0691,-0.7469,0.6622,-0.0403,0.7482,0.6628,-0.4965,0.5604,0.6637,-0.7417,0.0969,0.665,-0.2773,-0.6935,0.6659,0.7264,-0.1699,0.668,-0.199,-0.717,0.6713,-0.674,-0.3084,0.6721,-0.2875,-0.6824,0.6723,-0.2373,-0.7012,0.6726,0.0768,-0.736,0.673,0.415,0.6123,0.6739,-0.1389,-0.7257,0.6755,-0.5637,-0.4753,0.6763,-0.2205,0.7028,0.677,0.2725,-0.6836,0.6809,-0.2185,0.699,0.683,-0.2278,-0.694,0.6855,-0.5369,-0.4917,0.686,-0.2482,0.684,0.6898,0.3831,0.6144,0.69,-0.1817,-0.7006,0.6905,-0.3957,0.6054,0.6921,0.37,0.6197,0.6925,-0.1273,-0.71,0.6926,-0.2815,-0.6642,0.6943,-0.0161,-0.7195,0.6967,-0.2628,-0.6675,0.6969,0.1235,-0.7064,0.6991,-0.1202,-0.7048,0.7001,-0.1688,0.6938,0.7005,-0.3288,0.6334,0.7012,-0.5186,0.4893,0.7052,0.4842,0.5179,0.7062,0.7059,-0.0546,0.7063,-0.3587,0.6102,0.7065,-0.5498,0.4457,0.7075,-0.5848,-0.3968,0.7086,-0.2178,0.6711,0.7103,-0.2743,-0.6483,0.7139,-0.6979,0.0571,0.7141,0.4789,0.5107,0.7156,-0.1496,-0.6823,0.7167,0.0866,-0.692,0.7173,0.1655,0.6768,0.7182,-0.2779,-0.638,0.7209,-0.6309,-0.2869,0.7217,0.2138,-0.6583,0.722,0.0433,-0.6906,0.7224,0.1867,-0.6658,0.7238,-0.3195,-0.6116,0.7256,-0.2287,-0.649,0.7259,-0.3253,-0.606,0.726,-0.1246,-0.6764,0.7267,0.3271,-0.604,0.7274,-0.6862,-0.0043,0.7292,-0.2697,-0.6289,0.7345,-0.1505,0.6617,0.737,-0.3318,0.5888,0.7398,0.2046,0.641,0.7414,-0.2296,-0.6305,0.7424,0.398,0.5389,0.7441,-0.1439,0.6524,0.7447,-0.2783,-0.6066,0.7465,-0.6643,0.0386,0.747,-0.1184,0.6542,0.7484,-0.2724,0.6047,0.7487,-0.5012,-0.4339,0.7488,-0.2099,-0.6287,0.7494,-0.5311,0.3954,0.7511,0.3529,-0.558,0.7517,0.0205,-0.6592,0.7518,0.0265,-0.6589,0.752,0.5508,0.3621,0.7527,0.5146,0.4106,0.7531,-0.3132,-0.5786,0.754,-0.6211,-0.214,0.7546,-0.187,-0.6289,0.7553,-0.4875,0.4381,0.757,0.0473,-0.6517,0.7584,-0.0519,-0.6497,0.759,0.3346,0.5585,0.7596,-0.3592,-0.5422,0.761,-0.414,-0.4995,0.7623,0.3553,0.541,0.764,-0.1876,-0.6174,0.7641,0.2504,-0.5945,0.7683,0.64,-0.0083,0.7699,-0.1,-0.6303,0.7754,-0.4455,-0.4475,0.776,-0.2482,0.5798,0.7771,-0.2844,0.5614,0.7771,-0.4151,0.4731,0.7793,-0.5942,-0.1988,0.7799,-0.2829,-0.5583,0.7822,-0.5865,0.2101,0.7825,-0.5132,-0.3525,0.7826,-0.0316,-0.6217,0.7838,0.0439,-0.6195,0.7851,-0.6138,0.0832,0.786,0.5949,0.1682,0.786,-0.1351,-0.6032,0.7868,-0.0641,-0.6138,0.7898,-0.0304,-0.6126,0.79,-0.3897,-0.4733,0.7906,0.1761,-0.5865,0.791,-0.1441,-0.5945,0.792,-0.2965,0.5338,0.7929,0.1427,-0.5925,0.7947,-0.4847,0.3655,0.7947,0.4838,0.3665,0.795,-0.3465,-0.4979,0.7956,-0.5945,0.1162,0.7968,-0.5689,0.2035,0.7972,-0.136,-0.5882,0.7972,0.1635,-0.5812,0.7974,-0.2519,0.5483,0.7985,-0.3936,-0.4554,0.7999,-0.4768,0.3644,0.8008,0.498,0.3328,0.8035,-0.1068,-0.5856,0.8037,-0.2948,-0.517,0.8037,-0.071,-0.5907,0.8039,-0.1375,-0.5786,0.8043,-0.4568,0.3799,0.8047,-0.5722,-0.1582,0.8053,-0.5445,0.2346,0.8068,0.1918,-0.5588,0.8076,0.2316,-0.5423,0.8113,0.1437,-0.5667,0.8124,0.1958,-0.5492,0.8126,-0.5671,0.1345,0.8137,0.0935,-0.5738,0.8155,-0.1656,-0.5545,0.8155,-0.5761,-0.0545,0.8168,0.0196,-0.5766,0.8171,-0.0204,-0.5761,0.8194,0.0207,-0.5729,0.8209,-0.4162,0.391,0.825,0.0646,-0.5615,0.8252,-0.5648,0.0036,0.8267,0.1682,-0.5369,0.8268,0.0862,-0.5558,0.8276,0.1406,0.5434,0.8304,-0.4949,-0.256,0.8316,-0.067,-0.5514,0.8326,-0.3076,-0.4606,0.8345,-0.4418,-0.3292,0.8353,0.07,-0.5453,0.8365,0.3943,-0.3805,0.8374,0.0552,-0.5438,0.8384,0.3333,-0.4312,0.8399,-0.0399,-0.5413,0.8409,0.1364,-0.5238,0.8411,0.274,-0.4663,0.8413,-0.4019,-0.3615,0.8416,-0.3026,0.4473,0.8419,-0.3106,0.4413,0.8421,-0.1626,-0.5142,0.8423,-0.412,0.3477,0.8427,-0.524,-0.1233,0.8458,0.0213,-0.533,0.8462,-0.2327,0.4794,0.8465,0.2289,0.4806,0.8487,-0.1661,0.5021,0.8506,-0.0111,-0.5257,0.8507,-0.2298,-0.4727,0.8519,-0.1989,0.4845,0.8542,-0.0939,0.5114,0.8548,-0.0051,-0.519,0.8559,0.3356,-0.3935,0.8597,0.0504,-0.5083,0.8607,-0.1267,0.4931,0.8611,0.2241,0.4563,0.8619,-0.4947,-0.1114,0.8663,-0.1522,-0.4758,0.8665,0.0191,-0.4988,0.8683,0.3697,-0.3308,0.8727,-0.48,-0.0891,0.8728,0.2754,-0.403,0.8754,-0.0325,-0.4823,0.8787,-0.2928,0.3772,0.8811,0.074,-0.467,0.885,-0.4656,0.0031,0.8869,-0.4324,0.1625,0.8882,-0.3739,-0.2669,0.8903,-0.4471,0.0861,0.8918,0.1646,-0.4214,0.8922,-0.3898,0.228,0.8924,-0.3269,-0.3109,0.8942,0.22,-0.3899,0.8955,-0.4443,0.0268,0.8963,-0.3971,0.1973,0.8966,-0.0054,0.4428,0.8971,-0.4412,-0.0229,0.898,0.14,-0.4171,0.8988,-0.0891,0.4292,0.8992,-0.4241,0.1077,0.9012,-0.09,0.4239,0.9014,-0.3895,-0.1894,0.9051,-0.3959,0.1551,0.9075,-0.2478,-0.3393,0.9076,0.4145,-0.0664,0.9082,-0.2533,-0.3332,0.9129,-0.0255,-0.4074,0.913,-0.3826,0.1416,0.9159,-0.2406,-0.3214,0.9175,-0.2272,0.3265,0.9182,0.3437,-0.1969,0.92,-0.2535,0.2989,0.9215,-0.1888,0.3395,0.9247,-0.3631,-0.1145,0.9258,-0.0804,-0.3694,0.9262,-0.3727,-0.0569,0.9268,0.179,-0.3302,0.9273,-0.0751,-0.3668,0.9293,0.1441,-0.3399,0.9297,0.3632,-0.061,0.9311,-0.3647,0.0092,0.9311,-0.3511,-0.0985,0.9312,-0.0582,0.3598,0.9318,-0.3359,-0.1375,0.9327,-0.3572,-0.0496,0.9344,-0.0978,-0.3426,0.9346,0.1331,0.3298,0.938,-0.3009,-0.172,0.9393,-0.1549,-0.3062,0.9396,-0.286,-0.1881,0.9401,-0.0615,-0.3354,0.9418,-0.0723,-0.3282,0.9433,-0.0388,0.3298,0.9434,-0.2378,-0.231,0.9438,-0.2956,-0.148,0.9441,-0.1518,0.2928,0.9504,0.0906,-0.2975,0.9513,0.2619,0.1625,0.9514,-0.2258,0.2096,0.9517,0.0712,-0.2987,0.9527,0.1275,0.2759,0.9528,-0.1305,0.2741,0.9529,-0.2807,-0.1145,0.954,0.1687,-0.2479,0.9544,-0.2654,-0.1367,0.9556,-0.284,-0.0789,0.9559,-0.2446,-0.1625,0.9567,-0.0364,-0.2887,0.9581,-0.2092,-0.1958,0.9586,0.187,-0.2148,0.9589,-0.06,0.2774,0.9595,-0.1036,-0.2618,0.9606,-0.1835,0.2088,0.9621,0.0158,0.2724,0.9628,-0.0627,-0.2627,0.9633,-0.2667,0.0304,0.964,-0.2452,-0.1031,0.9645,-0.0852,-0.25,0.9648,-0.2628,0.0068,0.9651,-0.0796,0.2493,0.9663,-0.2562,0.026,0.9684,-0.0762,-0.2375,0.9692,-0.2152,-0.1197,0.9701,-0.1814,-0.1614,0.9705,-0.2411,0.0036,0.9727,0.1546,-0.1729,0.973,-0.0292,-0.2289,0.9737,0.1482,-0.1728,0.9746,-0.1876,-0.1226,0.9747,0.1915,0.1156,0.9747,0.2091,0.0787,0.9749,-0.2222,-0.0097,0.9753,-0.08,-0.2061,0.9756,-0.2116,-0.0584,0.9769,-0.1956,0.0856,0.9773,-0.2055,0.0511,0.9789,-0.033,-0.2015,0.9797,-0.0773,-0.1848,0.9798,0.0716,-0.1867,0.9801,-0.0492,-0.1922,0.9803,0.1281,0.1501,0.9804,-0.1716,0.0969,0.9815,-0.1528,-0.1152,0.9816,-0.1497,-0.1183,0.9826,-0.0354,-0.1826,0.9832,0.0027,-0.1827,0.9841,-0.0243,-0.1762,0.9856,0.046,-0.1625,0.9857,0.0717,0.1522,0.9867,-0.1211,0.1085,0.9867,0.1081,-0.1211,0.987,-0.1546,-0.0437,0.9874,-0.124,-0.0982,0.9881,0.1134,-0.1036,0.9897,-0.0775,-0.1203,0.9903,-0.1094,-0.0853,0.9934,0.0747,-0.0867,0.9936,0.0301,0.1087,0.9945,0.0736,-0.0743,0.9974,0.0667,0.0283,0.9975,0.057,-0.0422,0.999,0.0371,-0.0246};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlowleg_Geo_5_655_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,3,1,-1,4,5,6,-1,4,7,5,-1,8,9,10,-1,11,12,13,-1,12,14,13,-1,15,16,17,-1,16,18,17,-1,19,20,21,-1,22,23,24,-1,23,25,24,-1,26,27,28,-1,29,30,31,-1,32,33,34,-1,32,35,33,-1,15,33,36,-1,37,38,39,-1,40,41,42,-1,43,44,45,-1,34,17,46,-1,34,33,17,-1,47,48,49,-1,47,50,48,-1,51,52,53,-1,52,54,53,-1,55,56,57,-1,56,58,57,-1,59,60,61,-1,62,63,64,-1,65,66,61,-1,64,56,62,-1,56,67,62,-1,68,69,70,-1,69,71,70,-1,72,73,74,-1,73,75,74,-1,76,77,78,-1,77,55,78,-1,79,80,81,-1,81,82,79,-1,83,84,85,-1,86,84,87,-1,86,81,84,-1,88,89,90,-1,89,91,90,-1,92,93,94,-1,93,95,94,-1,96,97,98,-1,80,99,84,-1,99,85,84,-1,100,101,102,-1,101,103,102,-1,104,99,105,-1,104,106,99,-1,107,108,109,-1,110,111,112,-1,110,113,111,-1,88,114,115,-1,88,90,114,-1,95,96,13,-1,96,116,13,-1,117,94,118,-1,94,14,118,-1,58,64,111,-1,58,56,64,-1,119,120,107,-1,107,121,119,-1,122,123,124,-1,125,126,127,-1,127,128,125,-1,129,130,131,-1,131,132,129,-1,133,134,135,-1,133,136,134,-1,137,138,139,-1,137,140,138,-1,124,141,142,-1,143,144,145,-1,143,146,144,-1,147,148,149,-1,148,150,149,-1,151,152,153,-1,154,155,156,-1,154,151,155,-1,157,144,131,-1,144,132,131,-1,158,159,160,-1,161,162,163,-1,163,164,161,-1,150,165,123,-1,150,166,165,-1,64,63,111,-1,63,112,111,-1,167,168,21,-1,167,169,168,-1,170,171,172,-1,171,51,172,-1,121,173,174,-1,121,175,173,-1,174,176,177,-1,174,0,176,-1,177,176,178,-1,178,179,177,-1,180,66,57,-1,66,65,57,-1,181,1,3,-1,182,181,183,-1,181,184,183,-1,185,163,162,-1,162,186,185,-1,68,187,184,-1,187,183,184,-1,188,189,187,-1,189,190,187,-1,191,192,193,-1,191,194,192,-1,195,189,196,-1,195,190,189,-1,197,198,195,-1,195,199,197,-1,200,201,202,-1,203,204,205,-1,204,206,205,-1,207,208,154,-1,208,151,154,-1,135,139,133,-1,135,209,139,-1,210,211,212,-1,212,142,210,-1,213,214,215,-1,216,215,217,-1,215,218,217,-1,79,110,105,-1,79,113,110,-1,83,219,100,-1,219,101,100,-1,102,103,220,-1,103,221,220,-1,89,222,223,-1,223,224,89,-1,223,101,224,-1,101,219,224,-1,225,226,106,-1,225,227,226,-1,228,95,93,-1,228,96,95,-1,229,230,231,-1,6,232,4,-1,233,234,235,-1,235,4,233,-1,235,236,237,-1,235,238,236,-1,239,240,241,-1,239,5,240,-1,20,242,243,-1,20,244,242,-1,245,40,42,-1,42,246,245,-1,247,44,43,-1,247,248,44,-1,26,233,249,-1,249,27,26,-1,248,250,44,-1,251,238,235,-1,235,234,251,-1,252,253,254,-1,253,255,254,-1,256,231,222,-1,256,257,231,-1,258,115,259,-1,259,260,258,-1,261,258,260,-1,260,262,261,-1,263,19,264,-1,264,265,263,-1,167,20,39,-1,167,21,20,-1,37,245,266,-1,37,243,245,-1,266,246,267,-1,266,245,246,-1,236,268,269,-1,236,238,268,-1,270,268,271,-1,272,32,31,-1,31,273,272,-1,253,274,275,-1,274,36,275,-1,253,252,276,-1,276,274,253,-1,43,277,247,-1,278,279,280,-1,280,18,278,-1,281,282,283,-1,273,31,30,-1,30,169,273,-1,29,284,30,-1,280,279,281,-1,279,282,281,-1,46,18,280,-1,46,17,18,-1,16,285,18,-1,286,278,287,-1,286,279,278,-1,274,276,285,-1,285,16,274,-1,255,275,288,-1,255,253,275,-1,251,271,268,-1,268,238,251,-1,246,236,269,-1,269,267,246,-1,38,37,266,-1,250,289,44,-1,250,25,289,-1,262,263,265,-1,262,260,263,-1,290,244,259,-1,290,242,244,-1,234,291,255,-1,255,251,234,-1,233,291,234,-1,233,26,291,-1,248,247,28,-1,28,27,248,-1,241,292,293,-1,241,240,292,-1,294,295,92,-1,295,93,92,-1,232,118,249,-1,118,296,249,-1,297,295,294,-1,297,298,295,-1,264,168,283,-1,283,282,264,-1,299,8,300,-1,299,301,8,-1,224,219,227,-1,219,226,227,-1,105,97,104,-1,105,110,97,-1,87,100,302,-1,124,123,141,-1,123,165,141,-1,147,149,203,-1,203,205,147,-1,202,303,200,-1,303,304,200,-1,305,143,193,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlowleg_Geo_5_655_coordIndex_2()
		{
			int[] value = {305,146,143,-1,193,192,185,-1,185,305,193,-1,189,306,307,-1,307,196,189,-1,182,1,181,-1,182,194,1,-1,70,59,308,-1,70,60,59,-1,184,309,68,-1,309,69,68,-1,2,176,0,-1,71,74,76,-1,74,77,76,-1,109,81,175,-1,81,86,175,-1,74,75,77,-1,75,67,77,-1,81,80,84,-1,104,97,96,-1,96,228,104,-1,223,103,101,-1,223,230,103,-1,158,310,159,-1,158,311,310,-1,164,163,312,-1,142,141,313,-1,313,210,142,-1,154,314,315,-1,154,156,314,-1,209,316,139,-1,316,315,139,-1,166,150,148,-1,317,318,319,-1,191,176,2,-1,191,178,176,-1,145,144,157,-1,147,205,320,-1,320,321,147,-1,133,141,136,-1,133,313,141,-1,148,152,166,-1,148,153,152,-1,322,138,140,-1,320,205,206,-1,126,125,323,-1,323,307,126,-1,211,217,218,-1,218,212,211,-1,310,311,123,-1,311,150,123,-1,323,324,325,-1,325,307,323,-1,129,132,314,-1,217,211,186,-1,129,317,130,-1,121,109,175,-1,121,107,109,-1,94,95,14,-1,95,13,14,-1,98,326,116,-1,116,96,98,-1,113,58,111,-1,113,327,58,-1,53,54,73,-1,54,50,73,-1,79,105,80,-1,105,99,80,-1,99,106,85,-1,106,226,85,-1,97,63,98,-1,97,112,63,-1,290,292,40,-1,40,242,290,-1,114,297,293,-1,114,90,297,-1,228,225,106,-1,106,104,228,-1,94,117,92,-1,117,239,92,-1,89,224,91,-1,112,97,110,-1,87,84,83,-1,83,100,87,-1,73,47,75,-1,73,50,47,-1,69,72,71,-1,72,74,71,-1,68,188,187,-1,56,55,67,-1,55,77,67,-1,59,306,308,-1,79,327,113,-1,79,82,327,-1,107,66,180,-1,180,108,107,-1,65,61,78,-1,51,53,328,-1,328,172,51,-1,52,220,54,-1,220,9,54,-1,27,250,248,-1,27,329,250,-1,287,289,286,-1,268,270,269,-1,39,38,167,-1,35,36,33,-1,35,275,36,-1,254,255,291,-1,229,22,330,-1,22,24,330,-1,33,15,17,-1,48,326,49,-1,48,301,326,-1,11,13,116,-1,116,299,11,-1,6,239,117,-1,6,5,239,-1,116,301,299,-1,301,116,326,-1,48,54,9,-1,48,50,54,-1,331,229,330,-1,230,229,331,-1,267,270,332,-1,269,270,267,-1,278,285,333,-1,278,18,285,-1,334,335,336,-1,334,300,335,-1,337,329,338,-1,329,337,250,-1,78,57,65,-1,57,78,55,-1,82,180,327,-1,82,108,180,-1,228,295,225,-1,228,93,295,-1,293,290,114,-1,290,293,292,-1,40,243,242,-1,243,40,245,-1,327,57,58,-1,327,180,57,-1,130,319,339,-1,319,130,317,-1,325,204,340,-1,325,324,204,-1,149,303,203,-1,304,303,149,-1,341,212,218,-1,122,212,341,-1,157,128,127,-1,157,342,128,-1,304,150,311,-1,150,304,149,-1,151,343,152,-1,151,208,343,-1,134,343,208,-1,134,344,343,-1,135,208,207,-1,135,134,208,-1,320,155,321,-1,318,155,320,-1,166,345,165,-1,345,166,152,-1,133,138,313,-1,139,138,133,-1,156,318,317,-1,155,318,156,-1,147,153,148,-1,153,147,321,-1,328,69,309,-1,72,69,328,-1,151,321,155,-1,153,321,151,-1,183,190,346,-1,187,190,183,-1,347,319,206,-1,347,339,319,-1,342,339,128,-1,342,130,339,-1,348,177,179,-1,177,348,119,-1,59,120,349,-1,120,59,61,-1,350,126,351,-1,350,127,126,-1,143,191,193,-1,178,191,143,-1,206,318,320,-1,318,206,319,-1,352,51,171,-1,52,51,352,-1,353,87,302,-1,87,353,86,-1,62,75,47,-1,75,62,67,-1,170,3,0,-1,172,3,170,-1,81,108,82,-1,108,81,109,-1,353,175,86,-1,353,173,175,-1,70,76,60,-1,70,71,76,-1,2,194,191,-1,2,1,194,-1,127,145,157,-1,350,145,127,-1,189,308,306,-1,188,308,189,-1,351,307,306,-1,351,126,307,-1,325,196,307,-1,354,196,325,-1,355,199,354,-1,199,355,356,-1,159,213,160,-1,159,214,213,-1,201,357,356,-1,201,160,357,-1,198,312,346,-1,312,198,164,-1,357,161,197,-1,161,357,358,-1,322,185,186,-1,322,305,185,-1,210,186,211,-1,186,210,322,-1,140,305,322,-1,305,140,146,-1,315,137,139,-1,315,314,137,-1,311,200,304,-1,158,200,311,-1,352,100,102,-1,302,100,352,-1,63,326,98,-1,49,326,63,-1,335,221,331,-1,335,10,221,-1,227,295,298,-1,227,225,295,-1,12,334,338,-1,334,12,11,-1,250,24,25,-1,250,337,24,-1,257,229,231,-1,22,229,257,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlowleg_Geo_5_655_coordIndex_3()
		{
			int[] value = {330,337,336,-1,330,24,337,-1,232,233,4,-1,233,232,249,-1,40,240,41,-1,40,292,240,-1,247,254,28,-1,247,252,254,-1,114,259,115,-1,114,290,259,-1,257,258,261,-1,257,256,258,-1,359,265,360,-1,265,359,262,-1,359,25,23,-1,359,289,25,-1,45,289,287,-1,44,289,45,-1,282,286,360,-1,279,286,282,-1,167,273,169,-1,167,38,273,-1,361,275,35,-1,288,275,361,-1,271,255,288,-1,255,271,251,-1,333,287,278,-1,333,45,287,-1,46,281,284,-1,280,281,46,-1,284,283,30,-1,284,281,283,-1,15,274,16,-1,274,15,36,-1,270,288,361,-1,270,271,288,-1,35,272,361,-1,32,272,35,-1,272,38,332,-1,38,272,273,-1,267,38,266,-1,267,332,38,-1,332,361,272,-1,361,332,270,-1,263,20,19,-1,263,244,20,-1,360,264,282,-1,360,265,264,-1,360,289,359,-1,289,360,286,-1,23,262,359,-1,261,262,23,-1,260,244,263,-1,259,244,260,-1,115,256,88,-1,115,258,256,-1,222,88,256,-1,89,88,222,-1,241,92,239,-1,92,241,294,-1,277,252,247,-1,277,276,252,-1,249,329,27,-1,249,296,329,-1,246,237,236,-1,42,237,246,-1,20,37,39,-1,20,243,37,-1,41,5,7,-1,240,5,41,-1,6,118,232,-1,118,6,117,-1,235,7,4,-1,235,237,7,-1,338,296,12,-1,338,329,296,-1,336,331,330,-1,336,335,331,-1,22,261,23,-1,257,261,22,-1,222,230,223,-1,231,230,222,-1,11,300,334,-1,300,11,299,-1,230,221,103,-1,221,230,331,-1,298,224,227,-1,298,91,224,-1,221,9,220,-1,9,221,10,-1,9,301,48,-1,9,8,301,-1,52,102,220,-1,102,52,352,-1,47,63,62,-1,47,49,63,-1,218,214,341,-1,214,218,215,-1,216,213,215,-1,216,358,213,-1,316,154,315,-1,154,316,207,-1,347,204,324,-1,204,347,206,-1,146,132,144,-1,146,140,132,-1,216,186,162,-1,217,186,216,-1,164,197,161,-1,164,198,197,-1,163,192,312,-1,192,163,185,-1,160,200,158,-1,201,200,160,-1,358,160,213,-1,358,357,160,-1,202,356,355,-1,201,356,202,-1,195,354,199,-1,195,196,354,-1,356,197,199,-1,356,357,197,-1,340,354,325,-1,354,340,355,-1,348,351,349,-1,348,350,351,-1,145,178,143,-1,179,178,145,-1,324,125,347,-1,324,323,125,-1,194,312,192,-1,194,182,312,-1,182,346,312,-1,182,183,346,-1,355,303,202,-1,355,340,303,-1,349,119,348,-1,120,119,349,-1,119,174,177,-1,119,121,174,-1,170,174,173,-1,170,0,174,-1,173,171,170,-1,171,173,353,-1,309,172,328,-1,3,172,309,-1,171,302,352,-1,171,353,302,-1,169,283,168,-1,169,30,283,-1,159,341,214,-1,159,310,341,-1,162,358,216,-1,162,161,358,-1,313,322,210,-1,313,138,322,-1,306,349,351,-1,349,306,59,-1,350,179,145,-1,179,350,348,-1,347,128,339,-1,347,125,128,-1,136,344,134,-1,344,136,345,-1,122,142,212,-1,122,124,142,-1,195,346,190,-1,195,198,346,-1,72,53,73,-1,72,328,53,-1,314,317,129,-1,317,314,156,-1,345,141,165,-1,345,136,141,-1,140,314,132,-1,314,140,137,-1,152,344,345,-1,343,344,152,-1,207,209,135,-1,207,316,209,-1,310,122,341,-1,123,122,310,-1,342,131,130,-1,342,157,131,-1,340,203,303,-1,340,204,203,-1,293,294,241,-1,297,294,293,-1,91,297,90,-1,91,298,297,-1,61,107,120,-1,61,66,107,-1,85,219,83,-1,85,226,219,-1,60,78,61,-1,60,76,78,-1,308,68,70,-1,308,188,68,-1,338,336,337,-1,338,334,336,-1,29,46,284,-1,29,34,46,-1,277,285,276,-1,277,333,285,-1,277,45,333,-1,277,43,45,-1,42,7,237,-1,41,7,42,-1,31,34,29,-1,31,32,34,-1,28,291,26,-1,28,254,291,-1,264,21,168,-1,264,19,21,-1,10,300,8,-1,10,335,300,-1,12,118,14,-1,12,296,118,-1,3,184,181,-1,3,309,184,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlowleg_Geo_5_655_normalIndex_1()
		{
			int[] value = {99,46,83,-1,99,26,46,-1,200,318,326,-1,200,271,318,-1,89,63,78,-1,122,141,207,-1,141,202,207,-1,120,85,105,-1,85,40,105,-1,125,163,118,-1,36,31,4,-1,31,18,4,-1,109,124,142,-1,174,136,217,-1,170,137,172,-1,170,140,137,-1,120,137,126,-1,241,208,197,-1,262,260,285,-1,94,51,47,-1,172,105,121,-1,172,137,105,-1,145,60,143,-1,145,64,60,-1,0,2,30,-1,2,49,30,-1,182,270,276,-1,270,338,276,-1,266,160,205,-1,272,352,358,-1,301,342,205,-1,358,270,272,-1,270,228,272,-1,115,92,180,-1,92,164,180,-1,80,77,167,-1,77,169,167,-1,155,178,177,-1,178,182,177,-1,351,346,339,-1,339,259,351,-1,246,327,343,-1,191,327,201,-1,191,339,327,-1,251,236,281,-1,236,267,281,-1,329,257,300,-1,257,340,300,-1,303,356,293,-1,346,304,327,-1,304,343,327,-1,154,133,72,-1,133,52,72,-1,243,304,299,-1,243,247,304,-1,360,263,357,-1,325,311,306,-1,325,355,311,-1,251,314,256,-1,251,281,314,-1,340,303,207,-1,303,195,207,-1,348,300,223,-1,300,202,223,-1,338,358,311,-1,338,270,358,-1,353,335,360,-1,360,296,353,-1,211,193,261,-1,350,341,361,-1,361,310,350,-1,331,319,317,-1,317,287,331,-1,312,321,290,-1,312,345,321,-1,244,212,258,-1,244,204,212,-1,261,280,237,-1,209,282,328,-1,209,198,282,-1,187,232,181,-1,232,214,181,-1,210,269,218,-1,221,238,274,-1,221,210,238,-1,330,282,317,-1,282,287,317,-1,87,69,34,-1,22,59,50,-1,50,33,22,-1,214,254,193,-1,214,268,254,-1,358,352,311,-1,352,306,311,-1,175,95,118,-1,175,158,95,-1,91,73,6,-1,73,0,6,-1,296,183,220,-1,296,239,183,-1,220,156,255,-1,220,99,156,-1,255,156,206,-1,206,316,255,-1,289,342,276,-1,342,301,276,-1,11,46,26,-1,9,11,14,-1,11,23,14,-1,84,50,59,-1,59,93,84,-1,115,54,23,-1,54,14,23,-1,123,88,54,-1,88,20,54,-1,106,74,113,-1,106,62,74,-1,39,88,96,-1,39,20,88,-1,21,32,39,-1,39,44,21,-1,90,41,100,-1,219,288,253,-1,288,347,253,-1,235,225,221,-1,225,210,221,-1,290,258,312,-1,290,252,258,-1,150,129,185,-1,185,237,150,-1,15,81,76,-1,55,76,101,-1,76,138,101,-1,351,325,299,-1,351,355,325,-1,246,229,154,-1,229,133,154,-1,72,52,5,-1,52,24,5,-1,236,144,134,-1,134,213,236,-1,134,133,213,-1,133,229,213,-1,265,315,247,-1,265,275,315,-1,242,340,257,-1,242,303,340,-1,16,48,67,-1,326,222,200,-1,117,130,230,-1,230,200,117,-1,230,324,313,-1,230,277,324,-1,320,302,308,-1,320,318,302,-1,163,234,215,-1,163,179,234,-1,284,262,285,-1,285,344,284,-1,139,51,94,-1,139,111,51,-1,109,117,135,-1,135,124,109,-1,111,65,51,-1,194,277,230,-1,230,130,194,-1,173,171,151,-1,171,157,151,-1,153,67,144,-1,153,82,67,-1,152,256,203,-1,203,107,152,-1,79,152,107,-1,107,61,79,-1,108,125,86,-1,86,68,108,-1,175,163,197,-1,175,118,163,-1,241,284,273,-1,241,215,284,-1,273,344,249,-1,273,284,344,-1,324,233,231,-1,324,277,233,-1,186,233,196,-1,188,170,217,-1,217,245,188,-1,171,132,147,-1,132,126,147,-1,171,173,131,-1,131,132,171,-1,94,98,139,-1,27,8,57,-1,57,40,27,-1,43,29,53,-1,245,217,136,-1,136,158,245,-1,174,119,136,-1,57,8,43,-1,8,29,43,-1,121,40,57,-1,121,105,40,-1,85,56,40,-1,17,27,38,-1,17,8,27,-1,132,131,56,-1,56,85,132,-1,157,147,166,-1,157,171,147,-1,194,196,233,-1,233,277,194,-1,344,324,231,-1,231,249,344,-1,208,241,273,-1,65,25,51,-1,65,18,25,-1,61,108,68,-1,61,107,108,-1,286,179,203,-1,286,234,179,-1,130,116,157,-1,157,194,130,-1,117,116,130,-1,117,109,116,-1,111,139,142,-1,142,124,111,-1,308,292,309,-1,308,302,292,-1,305,264,329,-1,264,257,329,-1,222,223,135,-1,223,146,135,-1,294,264,305,-1,294,278,264,-1,86,95,53,-1,53,29,86,-1,114,89,110,-1,114,70,89,-1,213,229,275,-1,229,315,275,-1,299,356,243,-1,299,325,356,-1,201,154,149,-1,261,193,280,-1,193,254,280,-1,187,181,219,-1,219,253,187,-1,100,184,90,-1,184,176,90,-1,127,209,113,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlowleg_Geo_5_655_normalIndex_2()
		{
			int[] value = {127,198,209,-1,113,74,84,-1,84,127,113,-1,88,250,227,-1,227,96,88,-1,9,46,11,-1,9,62,46,-1,180,266,189,-1,180,160,266,-1,23,7,115,-1,7,92,115,-1,83,156,99,-1,164,167,155,-1,167,178,155,-1,357,339,239,-1,339,191,239,-1,167,169,178,-1,169,228,178,-1,339,346,327,-1,243,356,303,-1,303,242,243,-1,134,52,133,-1,134,48,52,-1,87,148,69,-1,87,168,148,-1,33,50,35,-1,237,280,216,-1,216,150,237,-1,221,279,240,-1,221,274,279,-1,252,224,258,-1,224,240,258,-1,268,214,232,-1,337,291,354,-1,106,156,83,-1,106,206,156,-1,328,282,330,-1,187,253,295,-1,295,226,187,-1,312,280,345,-1,312,216,280,-1,232,269,268,-1,232,218,269,-1,128,212,204,-1,295,253,347,-1,341,350,298,-1,298,227,341,-1,129,101,138,-1,138,185,129,-1,148,168,193,-1,168,214,193,-1,298,297,190,-1,190,227,298,-1,331,287,279,-1,101,129,93,-1,331,337,319,-1,296,357,239,-1,296,360,357,-1,300,340,202,-1,340,207,202,-1,293,161,195,-1,195,303,293,-1,355,338,311,-1,355,283,338,-1,30,49,77,-1,49,64,77,-1,351,299,346,-1,299,304,346,-1,304,247,343,-1,247,315,343,-1,356,352,293,-1,356,306,352,-1,286,292,262,-1,262,234,286,-1,314,294,309,-1,314,281,294,-1,242,265,247,-1,247,243,242,-1,300,348,329,-1,348,320,329,-1,236,213,267,-1,306,356,325,-1,201,327,246,-1,246,154,201,-1,77,145,169,-1,77,64,145,-1,92,80,164,-1,80,167,164,-1,115,123,54,-1,270,182,228,-1,182,178,228,-1,266,250,189,-1,351,283,355,-1,351,259,283,-1,360,342,289,-1,289,263,360,-1,301,205,177,-1,0,30,13,-1,13,6,0,-1,2,5,49,-1,5,63,49,-1,124,65,111,-1,124,104,65,-1,38,25,17,-1,233,186,231,-1,197,208,175,-1,140,126,137,-1,140,147,126,-1,151,157,116,-1,16,36,12,-1,36,4,12,-1,137,120,105,-1,60,161,143,-1,60,70,161,-1,122,207,195,-1,195,114,122,-1,326,320,348,-1,326,318,320,-1,195,70,114,-1,70,195,161,-1,60,49,63,-1,60,64,49,-1,10,16,12,-1,48,16,10,-1,249,186,192,-1,231,186,249,-1,27,56,42,-1,27,40,56,-1,102,71,66,-1,102,110,71,-1,58,104,97,-1,104,58,65,-1,177,276,301,-1,276,177,182,-1,259,289,283,-1,259,263,289,-1,242,264,265,-1,242,257,264,-1,309,286,314,-1,286,309,292,-1,262,215,234,-1,215,262,284,-1,283,276,338,-1,283,289,276,-1,319,354,334,-1,354,319,337,-1,190,288,199,-1,190,297,288,-1,181,184,219,-1,176,184,181,-1,159,185,138,-1,211,185,159,-1,330,310,361,-1,330,307,310,-1,176,214,168,-1,214,176,181,-1,210,248,269,-1,210,225,248,-1,321,248,225,-1,321,332,248,-1,290,225,235,-1,290,321,225,-1,295,238,226,-1,291,238,295,-1,268,336,254,-1,336,268,269,-1,312,212,216,-1,258,212,312,-1,274,291,337,-1,238,291,274,-1,187,218,232,-1,218,187,226,-1,13,92,7,-1,80,92,13,-1,210,226,238,-1,218,226,210,-1,14,20,3,-1,54,20,14,-1,322,354,347,-1,322,334,354,-1,307,334,310,-1,307,319,334,-1,359,255,316,-1,255,359,353,-1,266,335,333,-1,335,266,205,-1,349,341,323,-1,349,361,341,-1,209,106,113,-1,206,106,209,-1,347,291,295,-1,291,347,354,-1,75,0,73,-1,2,0,75,-1,162,201,149,-1,201,162,191,-1,272,169,145,-1,169,272,228,-1,91,26,99,-1,6,26,91,-1,339,263,259,-1,263,339,357,-1,162,239,191,-1,162,183,239,-1,180,155,160,-1,180,164,155,-1,83,62,106,-1,83,46,62,-1,361,328,330,-1,349,328,361,-1,88,189,250,-1,123,189,88,-1,323,227,250,-1,323,341,227,-1,190,96,227,-1,103,96,190,-1,112,44,103,-1,44,112,45,-1,69,15,34,-1,69,81,15,-1,41,19,45,-1,41,34,19,-1,32,35,3,-1,35,32,33,-1,19,22,21,-1,22,19,1,-1,128,84,93,-1,128,127,84,-1,150,93,129,-1,93,150,128,-1,204,127,128,-1,127,204,198,-1,240,244,258,-1,240,279,244,-1,168,90,176,-1,87,90,168,-1,75,154,72,-1,149,154,75,-1,352,161,293,-1,143,161,352,-1,71,24,10,-1,71,78,24,-1,275,264,278,-1,275,265,264,-1,141,102,97,-1,102,141,122,-1,65,4,18,-1,65,58,4,-1,82,16,67,-1,36,16,82,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlowleg_Geo_5_655_normalIndex_3()
		{
			int[] value = {12,58,66,-1,12,4,58,-1,222,117,200,-1,117,222,135,-1,262,302,260,-1,262,292,302,-1,139,151,142,-1,139,173,151,-1,314,203,256,-1,314,286,203,-1,82,152,79,-1,82,153,152,-1,37,68,28,-1,68,37,61,-1,37,18,31,-1,37,25,18,-1,47,25,38,-1,51,25,47,-1,29,17,28,-1,8,17,29,-1,175,245,158,-1,175,208,245,-1,165,147,140,-1,166,147,165,-1,196,157,166,-1,157,196,194,-1,42,38,27,-1,42,47,38,-1,121,43,119,-1,57,43,121,-1,119,53,136,-1,119,43,53,-1,120,132,85,-1,132,120,126,-1,186,166,165,-1,186,196,166,-1,140,188,165,-1,170,188,140,-1,188,208,192,-1,208,188,245,-1,249,208,273,-1,249,192,208,-1,192,165,188,-1,165,192,186,-1,108,163,125,-1,108,179,163,-1,28,86,29,-1,28,68,86,-1,28,25,37,-1,25,28,17,-1,31,61,37,-1,79,61,31,-1,107,179,108,-1,203,179,107,-1,256,153,251,-1,256,152,153,-1,144,251,153,-1,236,251,144,-1,308,329,320,-1,329,308,305,-1,98,173,139,-1,98,131,173,-1,135,104,124,-1,135,146,104,-1,344,313,324,-1,285,313,344,-1,163,241,197,-1,163,215,241,-1,260,318,271,-1,302,318,260,-1,326,223,222,-1,223,326,348,-1,230,271,200,-1,230,313,271,-1,97,146,141,-1,97,104,146,-1,66,10,12,-1,66,71,10,-1,36,79,31,-1,82,79,36,-1,144,48,134,-1,67,48,144,-1,122,110,102,-1,110,122,114,-1,48,24,52,-1,24,48,10,-1,278,213,275,-1,278,267,213,-1,24,63,5,-1,63,24,78,-1,63,70,60,-1,63,89,70,-1,2,72,5,-1,72,2,75,-1,145,352,272,-1,145,143,352,-1,138,81,159,-1,81,138,76,-1,55,15,76,-1,55,1,15,-1,224,221,240,-1,221,224,235,-1,322,288,297,-1,288,322,347,-1,198,287,282,-1,198,204,287,-1,55,93,59,-1,101,93,55,-1,33,21,22,-1,33,32,21,-1,50,74,35,-1,74,50,84,-1,34,90,87,-1,41,90,34,-1,1,34,15,-1,1,19,34,-1,100,45,112,-1,41,45,100,-1,39,103,44,-1,39,96,103,-1,45,21,44,-1,45,19,21,-1,199,103,190,-1,103,199,112,-1,359,323,333,-1,359,349,323,-1,328,206,209,-1,316,206,328,-1,297,350,322,-1,297,298,350,-1,62,35,74,-1,62,9,35,-1,9,3,35,-1,9,14,3,-1,112,184,100,-1,112,199,184,-1,333,353,359,-1,335,353,333,-1,353,220,255,-1,353,296,220,-1,91,220,183,-1,91,99,220,-1,183,73,91,-1,73,183,162,-1,7,6,13,-1,26,6,7,-1,73,149,75,-1,73,162,149,-1,158,53,95,-1,158,136,53,-1,69,159,81,-1,69,148,159,-1,59,1,55,-1,59,22,1,-1,216,128,150,-1,216,212,128,-1,250,333,323,-1,333,250,266,-1,349,316,328,-1,316,349,359,-1,322,310,334,-1,322,350,310,-1,345,332,321,-1,332,345,336,-1,211,237,185,-1,211,261,237,-1,39,3,20,-1,39,32,3,-1,80,30,77,-1,80,13,30,-1,279,337,331,-1,337,279,274,-1,336,280,254,-1,336,345,280,-1,204,279,287,-1,279,204,244,-1,269,332,336,-1,248,332,269,-1,235,252,290,-1,235,224,252,-1,148,211,159,-1,193,211,148,-1,307,317,319,-1,307,330,317,-1,199,219,184,-1,199,288,219,-1,309,305,308,-1,294,305,309,-1,267,294,281,-1,267,278,294,-1,205,360,335,-1,205,342,360,-1,343,229,246,-1,343,315,229,-1,160,177,205,-1,160,155,177,-1,189,115,180,-1,189,123,115,-1,97,66,58,-1,97,102,66,-1,174,121,119,-1,174,172,121,-1,98,56,131,-1,98,42,56,-1,98,47,42,-1,98,94,47,-1,285,271,313,-1,260,271,285,-1,217,172,174,-1,217,170,172,-1,142,116,109,-1,142,151,116,-1,86,118,95,-1,86,125,118,-1,78,110,89,-1,78,71,110,-1,141,223,202,-1,141,146,223,-1,26,23,11,-1,26,7,23,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpisform_Geo_5_661_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,10,11,12,-1,13,11,14,-1,15,11,16,-1,17,11,18,-1,19,11,20,-1,21,11,22,-1,23,11,24,-1,25,11,26,-1,27,28,29,-1,30,28,31,-1,32,28,33,-1,34,28,35,-1,36,28,37,-1,38,28,39,-1,40,28,41,-1,42,28,43,-1,44,28,45,-1,46,28,47,-1,48,28,49,-1,50,28,51,-1,52,28,53,-1,54,28,55,-1,56,28,57,-1,58,28,59,-1,60,28,61,-1,62,28,63,-1,0,64,1,-1,0,2,65,-1,66,67,68,-1,66,69,67,-1,70,71,72,-1,70,73,71,-1,29,28,62,-1,74,75,76,-1,74,77,75,-1,78,79,80,-1,78,81,79,-1,82,83,84,-1,85,86,87,-1,25,88,89,-1,26,90,91,-1,23,81,78,-1,24,92,93,-1,94,95,8,-1,8,96,94,-1,21,97,98,-1,22,99,100,-1,19,101,102,-1,20,103,104,-1,17,105,106,-1,18,107,108,-1,15,74,109,-1,16,110,77,-1,13,111,112,-1,14,113,114,-1,10,115,116,-1,117,0,118,-1,117,119,0,-1,12,120,121,-1,82,11,85,-1,122,5,123,-1,122,3,5,-1,124,9,8,-1,7,125,8,-1,63,28,60,-1,61,28,58,-1,59,28,56,-1,57,28,54,-1,55,28,52,-1,53,28,50,-1,51,28,48,-1,49,28,46,-1,47,28,44,-1,45,28,42,-1,43,28,40,-1,41,28,38,-1,39,28,36,-1,37,28,34,-1,35,28,32,-1,33,28,30,-1,31,28,27,-1,85,11,25,-1,26,11,23,-1,24,11,21,-1,22,11,19,-1,20,11,17,-1,18,11,15,-1,16,11,13,-1,14,11,10,-1,12,11,82,-1,1,126,2,-1,126,127,2,-1,0,65,118,-1,8,95,124,-1,127,128,129,-1,127,126,128,-1,130,131,132,-1,130,133,131,-1,133,134,131,-1,133,135,134,-1,136,137,138,-1,136,139,137,-1,140,141,142,-1,140,143,141,-1,144,145,146,-1,147,145,144,-1,148,73,149,-1,148,150,73,-1,151,152,71,-1,151,153,152,-1,154,155,156,-1,154,157,155,-1,158,159,160,-1,159,158,161,-1,162,163,164,-1,70,163,162,-1,165,72,166,-1,165,167,72,-1,168,123,169,-1,123,168,122,-1,170,164,171,-1,162,164,170,-1,172,173,174,-1,172,175,173,-1,176,175,177,-1,173,175,176,-1,178,179,180,-1,181,179,178,-1,182,183,184,-1,185,183,182,-1,118,186,187,-1,186,118,65,-1,137,173,176,-1,137,142,173,-1,134,181,178,-1,134,138,181,-1,132,188,185,-1,132,131,188,-1,127,182,186,-1,127,129,182,-1,189,190,191,-1,189,192,190,-1,193,194,195,-1,193,196,194,-1,197,198,199,-1,197,200,198,-1,201,202,203,-1,201,204,202,-1,205,206,207,-1,205,208,206,-1,8,209,210,-1,8,125,209,-1,159,9,124,-1,159,156,9,-1,123,154,161,-1,123,5,154,-1,122,152,3,-1,166,152,122,-1,144,162,170,-1,144,149,162,-1,141,211,174,-1,141,147,211,-1,120,212,213,-1,120,84,212,-1,214,215,216,-1,214,217,215,-1,218,219,220,-1,221,219,218,-1,222,223,224,-1,225,223,222,-1,226,227,228,-1,226,229,227,-1,230,231,232,-1,230,233,231,-1,192,234,190,-1,192,235,234,-1,236,237,238,-1,236,239,237,-1,240,62,241,-1,240,29,62,-1,121,213,242,-1,121,120,213,-1,243,216,244,-1,243,214,216,-1,245,218,246,-1,245,221,218,-1,247,222,248,-1,247,225,222,-1,228,249,250,-1,228,227,249,-1,232,119,251,-1,232,231,119,-1,190,252,64,-1,190,234,252,-1,238,253,254,-1,238,237,253,-1,241,63,255,-1,241,62,63,-1,115,242,256,-1,115,121,242,-1,257,244,258,-1,257,243,244,-1,259,246,260,-1,259,245,246,-1,261,248,262,-1,261,247,248,-1,250,263,264,-1,250,249,263,-1,251,117,265,-1,251,119,117,-1,64,266,1,-1,64,252,266,-1,254,267,268,-1,254,253,267,-1,255,60,269,-1,255,63,60,-1,116,256,270,-1,116,115,256,-1,271,258,272,-1,271,257,258,-1,273,260,274,-1,273,259,260,-1,275,262,276,-1,275,261,262,-1,277,263,278,-1,277,264,263,-1,265,279,280,-1,265,117,279,-1,1,281,126,-1,1,266,281,-1,268,282,283,-1,268,267,282,-1,269,61,284,-1,269,60,61,-1,113,270,285,-1,113,116,270,-1,286,272,287,-1,286,271,272,-1,288,274,289,-1,288,273,274,-1,290,276,291,-1,290,275,276,-1,292,278,293,-1,292,277,278,-1,279,294,280,-1,294,279,295,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpisform_Geo_5_661_coordIndex_2()
		{
			int[] value = {126,296,128,-1,126,281,296,-1,283,297,298,-1,283,282,297,-1,284,58,299,-1,284,61,58,-1,114,285,300,-1,114,113,285,-1,301,287,302,-1,301,286,287,-1,303,289,304,-1,303,288,289,-1,305,291,306,-1,305,290,291,-1,293,307,292,-1,307,293,308,-1,295,309,294,-1,309,295,310,-1,128,311,130,-1,128,296,311,-1,298,312,313,-1,298,297,312,-1,299,59,314,-1,299,58,59,-1,111,300,315,-1,111,114,300,-1,316,302,317,-1,316,301,302,-1,318,304,319,-1,318,303,304,-1,320,306,321,-1,320,305,306,-1,308,322,307,-1,322,308,323,-1,310,324,309,-1,324,310,325,-1,130,326,133,-1,130,311,326,-1,313,327,328,-1,313,312,327,-1,314,56,329,-1,314,59,56,-1,315,112,111,-1,112,315,330,-1,331,317,332,-1,331,316,317,-1,333,319,334,-1,333,318,319,-1,321,335,320,-1,335,321,336,-1,323,337,322,-1,337,323,338,-1,325,339,324,-1,339,325,340,-1,133,341,135,-1,133,326,341,-1,328,342,343,-1,328,327,342,-1,329,57,344,-1,329,56,57,-1,110,330,345,-1,110,112,330,-1,346,332,347,-1,346,331,332,-1,348,334,349,-1,348,333,334,-1,336,350,335,-1,350,336,351,-1,338,352,337,-1,352,338,353,-1,340,354,339,-1,354,340,355,-1,135,356,136,-1,135,341,356,-1,343,357,358,-1,343,342,357,-1,344,54,359,-1,344,57,54,-1,77,345,75,-1,77,110,345,-1,360,347,361,-1,360,346,347,-1,362,349,363,-1,362,348,349,-1,364,351,365,-1,364,350,351,-1,353,366,352,-1,366,353,367,-1,355,368,354,-1,368,355,369,-1,356,139,136,-1,139,356,370,-1,357,371,358,-1,371,357,372,-1,54,373,359,-1,373,54,55,-1,374,361,375,-1,374,360,361,-1,376,363,377,-1,376,362,363,-1,378,365,379,-1,378,364,365,-1,380,367,381,-1,380,366,367,-1,369,382,368,-1,382,369,383,-1,370,140,139,-1,140,370,384,-1,372,385,371,-1,385,372,386,-1,55,387,373,-1,387,55,52,-1,388,74,76,-1,109,74,388,-1,389,375,390,-1,389,374,375,-1,391,377,392,-1,391,376,377,-1,379,393,378,-1,393,379,394,-1,381,395,380,-1,395,381,396,-1,383,397,382,-1,397,383,398,-1,384,143,140,-1,143,384,399,-1,386,400,385,-1,400,386,401,-1,52,402,387,-1,402,52,53,-1,403,109,388,-1,107,109,403,-1,404,390,405,-1,404,389,390,-1,406,392,407,-1,406,391,392,-1,394,408,393,-1,408,394,409,-1,396,410,395,-1,410,396,411,-1,398,412,397,-1,412,398,413,-1,399,145,143,-1,145,399,414,-1,401,415,400,-1,415,401,416,-1,53,417,402,-1,417,53,50,-1,418,107,403,-1,108,107,418,-1,419,404,405,-1,420,404,419,-1,421,407,422,-1,421,406,407,-1,423,409,424,-1,423,408,409,-1,425,411,426,-1,425,410,411,-1,413,427,412,-1,427,413,428,-1,414,146,145,-1,146,414,429,-1,416,430,415,-1,430,416,431,-1,50,432,417,-1,432,50,51,-1,433,108,418,-1,105,108,433,-1,434,420,419,-1,435,420,434,-1,436,421,422,-1,437,421,436,-1,438,424,439,-1,438,423,424,-1,440,426,441,-1,440,425,426,-1,428,442,427,-1,442,428,443,-1,429,148,146,-1,148,429,444,-1,431,445,430,-1,445,431,446,-1,51,447,432,-1,447,51,48,-1,448,105,433,-1,106,105,448,-1,449,435,434,-1,450,435,449,-1,451,437,436,-1,452,437,451,-1,453,439,454,-1,453,438,439,-1,455,441,456,-1,455,440,441,-1,443,457,442,-1,457,443,458,-1,444,150,148,-1,150,444,459,-1,446,460,445,-1,460,446,461,-1,48,462,447,-1,462,48,49,-1,463,106,448,-1,103,106,463,-1,464,450,449,-1,465,450,464,-1,466,452,451,-1,467,452,466,-1,468,454,469,-1,468,453,454,-1,470,456,471,-1,470,455,456,-1,458,472,457,-1,472,458,473,-1,459,151,150,-1,151,459,474,-1,461,475,460,-1,475,461,476,-1,49,477,462,-1,477,49,46,-1,478,103,463,-1,104,103,478,-1,479,465,464,-1,480,465,479,-1,481,467,466,-1,482,467,481,-1,483,469,484,-1,483,468,469,-1,485,471,486,-1,485,470,471,-1,473,487,472,-1,487,473,488,-1,474,153,151,-1,153,474,489,-1,476,490,475,-1,490,476,491,-1,46,492,477,-1,492,46,47,-1,493,104,478,-1,101,104,493,-1,494,480,479,-1,495,480,494,-1,496,482,481,-1,497,482,496,-1,498,484,499,-1,498,483,484,-1,486,500,485,-1,500,486,501,-1,488,502,487,-1,502,488,503,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpisform_Geo_5_661_coordIndex_3()
		{
			int[] value = {153,504,6,-1,153,489,504,-1,490,505,506,-1,490,491,505,-1,492,44,507,-1,492,47,44,-1,102,493,508,-1,102,101,493,-1,509,494,510,-1,509,495,494,-1,511,496,512,-1,511,497,496,-1,513,499,514,-1,513,498,499,-1,515,500,501,-1,516,500,515,-1,502,517,518,-1,502,503,517,-1,6,519,4,-1,6,504,519,-1,506,520,521,-1,506,505,520,-1,507,45,522,-1,507,44,45,-1,99,508,523,-1,99,102,508,-1,524,510,525,-1,524,509,510,-1,526,512,527,-1,526,511,512,-1,528,513,514,-1,529,513,528,-1,530,516,515,-1,531,516,530,-1,518,532,533,-1,518,517,532,-1,4,534,157,-1,4,519,534,-1,521,535,536,-1,521,520,535,-1,522,42,537,-1,522,45,42,-1,100,523,538,-1,100,99,523,-1,539,525,540,-1,539,524,525,-1,541,527,542,-1,541,526,527,-1,543,529,528,-1,544,529,543,-1,545,531,530,-1,546,531,545,-1,533,547,548,-1,533,532,547,-1,157,549,155,-1,157,534,549,-1,536,550,551,-1,536,535,550,-1,537,43,552,-1,537,42,43,-1,97,538,553,-1,97,100,538,-1,554,540,555,-1,554,539,540,-1,556,542,557,-1,556,541,542,-1,558,544,543,-1,559,544,558,-1,560,546,545,-1,561,546,560,-1,548,94,562,-1,548,547,94,-1,155,563,7,-1,155,549,563,-1,551,564,565,-1,551,550,564,-1,552,40,566,-1,552,43,40,-1,98,553,567,-1,98,97,553,-1,568,555,569,-1,568,554,555,-1,556,570,571,-1,556,557,570,-1,572,559,558,-1,573,559,572,-1,574,561,560,-1,575,561,574,-1,562,96,576,-1,562,94,96,-1,7,577,125,-1,7,563,577,-1,565,578,579,-1,565,564,578,-1,566,41,580,-1,566,40,41,-1,92,567,581,-1,92,98,567,-1,582,569,583,-1,582,568,569,-1,584,571,570,-1,585,571,584,-1,573,586,587,-1,573,572,586,-1,588,575,574,-1,589,575,588,-1,576,590,591,-1,576,96,590,-1,125,592,209,-1,125,577,592,-1,579,593,594,-1,579,578,593,-1,580,38,595,-1,580,41,38,-1,93,581,596,-1,93,92,581,-1,597,582,583,-1,598,582,597,-1,599,585,584,-1,600,585,599,-1,587,601,602,-1,587,586,601,-1,589,603,604,-1,589,588,603,-1,605,591,590,-1,606,591,605,-1,209,607,208,-1,209,592,607,-1,594,608,609,-1,594,593,608,-1,595,39,610,-1,595,38,39,-1,81,596,79,-1,81,93,596,-1,611,598,597,-1,612,598,611,-1,613,600,599,-1,614,600,613,-1,602,615,616,-1,602,601,615,-1,604,617,618,-1,604,603,617,-1,606,619,620,-1,606,605,619,-1,208,621,206,-1,208,607,621,-1,609,622,623,-1,609,608,622,-1,610,36,624,-1,610,39,36,-1,625,612,611,-1,626,612,625,-1,627,614,613,-1,628,614,627,-1,629,616,615,-1,630,616,629,-1,618,631,632,-1,618,617,631,-1,620,633,634,-1,620,619,633,-1,206,635,204,-1,206,621,635,-1,622,636,623,-1,636,622,637,-1,36,638,624,-1,638,36,37,-1,78,639,90,-1,78,80,639,-1,640,626,625,-1,641,626,640,-1,642,628,627,-1,643,628,642,-1,630,644,645,-1,630,629,644,-1,632,646,647,-1,632,631,646,-1,634,648,649,-1,634,633,648,-1,635,202,204,-1,202,635,650,-1,637,651,636,-1,651,637,652,-1,37,653,638,-1,653,37,34,-1,90,654,91,-1,90,639,654,-1,655,641,640,-1,656,641,655,-1,657,643,642,-1,658,643,657,-1,659,645,644,-1,660,645,659,-1,661,647,646,-1,662,647,661,-1,649,663,664,-1,649,648,663,-1,650,197,202,-1,197,650,665,-1,652,666,651,-1,666,652,667,-1,34,668,653,-1,668,34,35,-1,669,91,654,-1,88,91,669,-1,670,656,655,-1,671,656,670,-1,672,658,657,-1,673,658,672,-1,674,660,659,-1,675,660,674,-1,676,662,661,-1,677,662,676,-1,678,664,663,-1,679,664,678,-1,665,200,197,-1,200,665,680,-1,667,681,666,-1,681,667,682,-1,35,683,668,-1,683,35,32,-1,684,88,669,-1,89,88,684,-1,671,685,686,-1,671,670,685,-1,687,673,672,-1,688,673,687,-1,689,675,674,-1,690,675,689,-1,691,677,676,-1,692,677,691,-1,693,679,678,-1,694,679,693,-1,680,69,200,-1,69,680,695,-1,682,696,681,-1,696,682,697,-1,32,698,683,-1,698,32,33,-1,699,89,684,-1,86,89,699,-1,700,686,685,-1,701,686,700,-1,702,688,687,-1,703,688,702,-1,704,690,689,-1,705,690,704,-1,692,706,707,-1,692,691,706,-1,694,708,709,-1,694,693,708,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlpisform_Geo_5_661_coordIndex_4()
		{
			int[] value = {695,67,69,-1,67,695,710,-1,697,711,696,-1,711,697,712,-1,33,713,698,-1,713,33,30,-1,714,86,699,-1,87,86,714,-1,715,701,700,-1,716,701,715,-1,717,703,702,-1,718,703,717,-1,719,705,704,-1,720,705,719,-1,707,721,722,-1,707,706,721,-1,708,723,709,-1,723,708,724,-1,710,196,67,-1,196,710,725,-1,712,726,711,-1,726,712,727,-1,30,728,713,-1,728,30,31,-1,729,87,714,-1,83,87,729,-1,730,716,715,-1,731,716,730,-1,732,718,717,-1,733,718,732,-1,734,720,719,-1,735,720,734,-1,722,736,737,-1,722,721,736,-1,723,738,739,-1,723,724,738,-1,725,194,196,-1,194,725,740,-1,727,741,726,-1,741,727,742,-1,31,743,728,-1,743,31,27,-1,212,83,729,-1,84,83,212,-1,215,731,730,-1,217,731,215,-1,220,733,732,-1,219,733,220,-1,224,735,734,-1,223,735,224,-1,737,229,226,-1,737,736,229,-1,739,233,230,-1,739,738,233,-1,740,192,194,-1,192,740,235,-1,742,236,741,-1,236,742,239,-1,27,240,743,-1,240,27,29,-1,743,239,742,-1,239,743,240,-1,741,235,740,-1,235,741,236,-1,195,233,738,-1,233,195,189,-1,736,230,229,-1,736,739,230,-1,734,226,224,-1,734,737,226,-1,223,732,735,-1,220,732,223,-1,219,730,733,-1,215,730,219,-1,217,729,731,-1,212,729,217,-1,728,742,727,-1,742,728,743,-1,726,740,725,-1,740,726,741,-1,193,738,724,-1,738,193,195,-1,721,739,736,-1,721,723,739,-1,719,737,734,-1,719,722,737,-1,735,717,720,-1,732,717,735,-1,733,715,718,-1,730,715,733,-1,731,714,716,-1,729,714,731,-1,83,85,87,-1,82,85,83,-1,713,727,712,-1,727,713,728,-1,711,725,710,-1,725,711,726,-1,68,724,708,-1,724,68,193,-1,706,723,721,-1,706,709,723,-1,704,722,719,-1,704,707,722,-1,720,702,705,-1,717,702,720,-1,718,700,703,-1,715,700,718,-1,716,699,701,-1,714,699,716,-1,698,712,697,-1,712,698,713,-1,696,710,695,-1,710,696,711,-1,66,708,693,-1,708,66,68,-1,691,709,706,-1,691,694,709,-1,707,689,692,-1,704,689,707,-1,705,687,690,-1,702,687,705,-1,703,685,688,-1,700,685,703,-1,701,684,686,-1,699,684,701,-1,86,25,89,-1,85,25,86,-1,683,697,682,-1,697,683,698,-1,681,695,680,-1,695,681,696,-1,198,693,678,-1,693,198,66,-1,694,676,679,-1,691,676,694,-1,692,674,677,-1,689,674,692,-1,690,672,675,-1,687,672,690,-1,688,670,673,-1,685,670,688,-1,686,669,671,-1,684,669,686,-1,668,682,667,-1,682,668,683,-1,666,680,665,-1,680,666,681,-1,663,198,678,-1,663,199,198,-1,679,661,664,-1,676,661,679,-1,677,659,662,-1,674,659,677,-1,675,657,660,-1,672,657,675,-1,673,655,658,-1,670,655,673,-1,671,654,656,-1,669,654,671,-1,88,26,91,-1,25,26,88,-1,653,667,652,-1,667,653,668,-1,651,665,650,-1,665,651,666,-1,648,199,663,-1,648,203,199,-1,664,646,649,-1,661,646,664,-1,662,644,647,-1,659,644,662,-1,660,642,645,-1,657,642,660,-1,658,640,643,-1,655,640,658,-1,656,639,641,-1,654,639,656,-1,638,652,637,-1,652,638,653,-1,636,650,635,-1,650,636,651,-1,633,203,648,-1,633,201,203,-1,631,649,646,-1,631,634,649,-1,629,647,644,-1,629,632,647,-1,627,645,642,-1,627,630,645,-1,643,625,628,-1,640,625,643,-1,641,80,626,-1,639,80,641,-1,23,90,26,-1,23,78,90,-1,624,637,622,-1,637,624,638,-1,621,636,635,-1,621,623,636,-1,619,201,633,-1,619,207,201,-1,634,617,620,-1,631,617,634,-1,615,632,629,-1,615,618,632,-1,630,613,616,-1,627,613,630,-1,628,611,614,-1,625,611,628,-1,626,79,612,-1,80,79,626,-1,608,624,622,-1,608,610,624,-1,607,623,621,-1,607,609,623,-1,605,207,619,-1,605,205,207,-1,603,620,617,-1,603,606,620,-1,601,618,615,-1,601,604,618,-1,616,599,602,-1,613,599,616,-1,614,597,600,-1,611,597,614,-1,79,598,612,-1,79,596,598,-1,23,93,81,-1,23,24,93,-1,593,610,608,-1,593,595,610,-1,592,609,607,-1,592,594,609,-1,205,590,210,-1,605,590,205,-1,588,606,603,-1,588,591,606,-1,586,604,601,-1,586,589,604,-1,602,584,587,-1,599,584,602,-1,600,583,585,-1,597,583,600,-1,596,582,598,-1,596,581,582,-1,578,595,593,-1,578,580,595,-1,577,594,592,-1,577,579,594,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlpisform_Geo_5_661_coordIndex_5()
		{
			int[] value = {210,96,8,-1,590,96,210,-1,574,591,588,-1,574,576,591,-1,572,589,586,-1,572,575,589,-1,570,587,584,-1,570,573,587,-1,585,569,571,-1,583,569,585,-1,581,568,582,-1,581,567,568,-1,98,24,21,-1,24,98,92,-1,564,580,578,-1,564,566,580,-1,563,579,577,-1,563,565,579,-1,560,576,574,-1,560,562,576,-1,575,558,561,-1,572,558,575,-1,557,573,570,-1,557,559,573,-1,569,556,571,-1,569,555,556,-1,567,554,568,-1,567,553,554,-1,550,566,564,-1,550,552,566,-1,549,565,563,-1,549,551,565,-1,547,95,94,-1,547,160,95,-1,545,562,560,-1,545,548,562,-1,561,543,546,-1,558,543,561,-1,557,544,559,-1,557,542,544,-1,555,541,556,-1,555,540,541,-1,553,539,554,-1,553,538,539,-1,21,100,97,-1,21,22,100,-1,535,552,550,-1,535,537,552,-1,534,551,549,-1,534,536,551,-1,532,160,547,-1,532,158,160,-1,530,548,545,-1,530,533,548,-1,546,528,531,-1,543,528,546,-1,542,529,544,-1,542,527,529,-1,540,526,541,-1,540,525,526,-1,538,524,539,-1,538,523,524,-1,520,537,535,-1,520,522,537,-1,519,536,534,-1,519,521,536,-1,517,158,532,-1,517,169,158,-1,515,533,530,-1,515,518,533,-1,531,514,516,-1,528,514,531,-1,527,513,529,-1,527,512,513,-1,525,511,526,-1,525,510,511,-1,523,509,524,-1,523,508,509,-1,22,102,99,-1,22,19,102,-1,505,522,520,-1,505,507,522,-1,504,521,519,-1,504,506,521,-1,503,169,517,-1,503,168,169,-1,501,518,515,-1,501,502,518,-1,516,499,500,-1,514,499,516,-1,512,498,513,-1,512,496,498,-1,511,494,497,-1,510,494,511,-1,508,495,509,-1,508,493,495,-1,491,507,505,-1,491,492,507,-1,489,506,504,-1,489,490,506,-1,165,503,488,-1,503,165,168,-1,487,501,486,-1,501,487,502,-1,499,485,500,-1,499,484,485,-1,498,481,483,-1,496,481,498,-1,497,479,482,-1,494,479,497,-1,495,478,480,-1,493,478,495,-1,19,104,101,-1,19,20,104,-1,477,491,476,-1,491,477,492,-1,475,489,474,-1,489,475,490,-1,167,488,473,-1,488,167,165,-1,472,486,471,-1,486,472,487,-1,484,470,485,-1,484,469,470,-1,483,466,468,-1,481,466,483,-1,482,464,467,-1,479,464,482,-1,480,463,465,-1,478,463,480,-1,462,476,461,-1,476,462,477,-1,460,474,459,-1,474,460,475,-1,163,473,458,-1,473,163,167,-1,457,471,456,-1,471,457,472,-1,469,455,470,-1,469,454,455,-1,468,451,453,-1,466,451,468,-1,467,449,452,-1,464,449,467,-1,465,448,450,-1,463,448,465,-1,103,17,106,-1,20,17,103,-1,447,461,446,-1,461,447,462,-1,445,459,444,-1,459,445,460,-1,164,458,443,-1,458,164,163,-1,442,456,441,-1,456,442,457,-1,454,440,455,-1,454,439,440,-1,453,436,438,-1,451,436,453,-1,452,434,437,-1,449,434,452,-1,450,433,435,-1,448,433,450,-1,432,446,431,-1,446,432,447,-1,430,444,429,-1,444,430,445,-1,171,443,428,-1,443,171,164,-1,427,441,426,-1,441,427,442,-1,439,425,440,-1,439,424,425,-1,436,423,438,-1,436,422,423,-1,437,419,421,-1,434,419,437,-1,435,418,420,-1,433,418,435,-1,105,18,108,-1,17,18,105,-1,417,431,416,-1,431,417,432,-1,415,429,414,-1,429,415,430,-1,428,744,171,-1,428,413,744,-1,412,426,411,-1,426,412,427,-1,410,424,409,-1,424,410,425,-1,422,408,423,-1,422,407,408,-1,419,406,421,-1,419,405,406,-1,420,403,404,-1,418,403,420,-1,402,416,401,-1,416,402,417,-1,400,414,399,-1,414,400,415,-1,172,413,398,-1,413,172,744,-1,397,411,396,-1,411,397,412,-1,395,409,394,-1,409,395,410,-1,407,393,408,-1,407,392,393,-1,405,391,406,-1,405,390,391,-1,404,388,389,-1,403,388,404,-1,107,15,109,-1,18,15,107,-1,387,401,386,-1,401,387,402,-1,385,399,384,-1,399,385,400,-1,175,398,383,-1,398,175,172,-1,382,396,381,-1,396,382,397,-1,380,394,379,-1,394,380,395,-1,392,378,393,-1,392,377,378,-1,390,376,391,-1,390,375,376,-1,389,76,374,-1,388,76,389,-1,373,386,372,-1,386,373,387,-1,371,384,370,-1,384,371,385,-1,177,383,369,-1,383,177,175,-1,381,368,382,-1,381,367,368,-1,379,366,380,-1,379,365,366,-1,377,364,378,-1,377,363,364,-1,375,362,376,-1,375,361,362,-1,76,360,374,-1,76,75,360,-1,74,16,77,-1,15,16,74,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlpisform_Geo_5_661_coordIndex_6()
		{
			int[] value = {359,372,357,-1,372,359,373,-1,358,370,356,-1,370,358,371,-1,179,369,355,-1,369,179,177,-1,354,367,353,-1,367,354,368,-1,365,352,366,-1,365,351,352,-1,363,350,364,-1,363,349,350,-1,361,348,362,-1,361,347,348,-1,75,346,360,-1,75,345,346,-1,342,359,357,-1,342,344,359,-1,341,358,356,-1,341,343,358,-1,180,355,340,-1,355,180,179,-1,339,353,338,-1,353,339,354,-1,337,351,336,-1,351,337,352,-1,349,335,350,-1,349,334,335,-1,347,333,348,-1,347,332,333,-1,345,331,346,-1,345,330,331,-1,112,16,13,-1,16,112,110,-1,327,344,342,-1,327,329,344,-1,326,343,341,-1,326,328,343,-1,745,340,325,-1,340,745,180,-1,324,338,323,-1,338,324,339,-1,322,336,321,-1,336,322,337,-1,320,334,319,-1,334,320,335,-1,332,318,333,-1,332,317,318,-1,330,316,331,-1,330,315,316,-1,312,329,327,-1,312,314,329,-1,311,328,326,-1,311,313,328,-1,310,745,325,-1,310,183,745,-1,309,323,308,-1,323,309,324,-1,307,321,306,-1,321,307,322,-1,319,305,320,-1,319,304,305,-1,317,303,318,-1,317,302,303,-1,315,301,316,-1,315,300,301,-1,114,13,14,-1,13,114,111,-1,297,314,312,-1,297,299,314,-1,296,313,311,-1,296,298,313,-1,295,183,310,-1,295,184,183,-1,294,308,293,-1,308,294,309,-1,306,292,307,-1,306,291,292,-1,304,290,305,-1,304,289,290,-1,302,288,303,-1,302,287,288,-1,300,286,301,-1,300,285,286,-1,282,299,297,-1,282,284,299,-1,281,298,296,-1,281,283,298,-1,279,184,295,-1,279,187,184,-1,280,293,278,-1,293,280,294,-1,291,277,292,-1,291,276,277,-1,289,275,290,-1,289,274,275,-1,287,273,288,-1,287,272,273,-1,285,271,286,-1,285,270,271,-1,14,116,113,-1,14,10,116,-1,267,284,282,-1,267,269,284,-1,266,283,281,-1,266,268,283,-1,117,187,279,-1,117,118,187,-1,265,278,263,-1,278,265,280,-1,276,264,277,-1,276,262,264,-1,274,261,275,-1,274,260,261,-1,272,259,273,-1,272,258,259,-1,270,257,271,-1,270,256,257,-1,253,269,267,-1,253,255,269,-1,252,268,266,-1,252,254,268,-1,249,265,263,-1,249,251,265,-1,262,250,264,-1,262,248,250,-1,260,247,261,-1,260,246,247,-1,258,245,259,-1,258,244,245,-1,256,243,257,-1,256,242,243,-1,10,121,115,-1,10,12,121,-1,237,255,253,-1,237,241,255,-1,234,254,252,-1,234,238,254,-1,231,0,119,-1,231,191,0,-1,227,251,249,-1,227,232,251,-1,250,222,228,-1,248,222,250,-1,246,225,247,-1,246,218,225,-1,244,221,245,-1,244,216,221,-1,242,214,243,-1,242,213,214,-1,239,241,237,-1,239,240,241,-1,235,238,234,-1,235,236,238,-1,233,191,231,-1,233,189,191,-1,229,232,227,-1,229,230,232,-1,224,228,222,-1,224,226,228,-1,225,220,223,-1,218,220,225,-1,216,219,221,-1,216,215,219,-1,213,217,214,-1,213,212,217,-1,12,84,120,-1,12,82,84,-1,147,170,211,-1,147,144,170,-1,149,70,162,-1,149,73,70,-1,71,166,72,-1,71,152,166,-1,161,156,159,-1,161,154,156,-1,210,208,205,-1,210,209,208,-1,207,204,201,-1,207,206,204,-1,202,199,203,-1,202,197,199,-1,200,66,198,-1,200,69,66,-1,68,196,193,-1,68,67,196,-1,195,192,189,-1,195,194,192,-1,191,64,0,-1,191,190,64,-1,2,186,65,-1,2,127,186,-1,129,185,182,-1,129,132,185,-1,131,178,188,-1,131,134,178,-1,138,176,181,-1,138,137,176,-1,142,174,173,-1,142,141,174,-1,186,184,187,-1,182,184,186,-1,188,180,745,-1,178,180,188,-1,181,177,179,-1,176,177,181,-1,174,744,172,-1,211,744,174,-1,211,171,744,-1,170,171,211,-1,161,169,123,-1,161,158,169,-1,166,168,165,-1,122,168,166,-1,70,167,163,-1,72,167,70,-1,160,124,95,-1,124,160,159,-1,156,7,9,-1,156,155,7,-1,5,157,154,-1,5,4,157,-1,152,6,3,-1,152,153,6,-1,150,71,73,-1,150,151,71,-1,146,149,144,-1,146,148,149,-1,143,147,141,-1,143,145,147,-1,139,142,137,-1,139,140,142,-1,135,138,134,-1,135,136,138,-1,185,745,183,-1,188,745,185,-1,129,130,132,-1,129,128,130,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpisform_Geo_5_661_normalIndex_1()
		{
			int[] value = {296,348,206,-1,674,709,706,-1,674,700,709,-1,726,741,737,-1,73,86,88,-1,54,86,65,-1,49,86,48,-1,84,86,62,-1,119,86,110,-1,125,86,129,-1,101,86,114,-1,71,86,82,-1,575,548,578,-1,566,548,571,-1,562,548,563,-1,557,548,558,-1,550,548,554,-1,542,548,546,-1,531,548,539,-1,524,548,529,-1,518,548,522,-1,519,548,520,-1,523,548,521,-1,528,548,525,-1,540,548,534,-1,555,548,543,-1,564,548,561,-1,573,548,570,-1,583,548,580,-1,584,548,585,-1,296,379,348,-1,296,206,181,-1,424,442,393,-1,424,535,442,-1,433,512,446,-1,433,443,512,-1,578,548,584,-1,35,36,51,-1,35,29,36,-1,134,229,198,-1,134,150,229,-1,80,75,98,-1,72,63,66,-1,71,68,64,-1,82,111,90,-1,101,150,134,-1,114,182,163,-1,738,735,741,-1,741,742,738,-1,125,204,193,-1,129,210,209,-1,119,185,202,-1,110,148,164,-1,84,113,133,-1,62,55,83,-1,49,35,42,-1,48,24,29,-1,54,37,30,-1,65,45,41,-1,73,67,58,-1,256,296,272,-1,256,244,296,-1,88,100,89,-1,80,86,72,-1,646,706,696,-1,646,674,706,-1,730,737,741,-1,726,716,741,-1,585,548,583,-1,580,548,573,-1,570,548,564,-1,561,548,555,-1,543,548,540,-1,534,548,528,-1,525,548,523,-1,521,548,519,-1,520,548,518,-1,522,548,524,-1,529,548,531,-1,539,548,542,-1,546,548,550,-1,554,548,557,-1,558,548,562,-1,563,548,566,-1,571,548,575,-1,72,86,71,-1,82,86,101,-1,114,86,125,-1,129,86,119,-1,110,86,84,-1,62,86,49,-1,48,86,54,-1,65,86,73,-1,88,86,80,-1,348,361,206,-1,361,216,206,-1,296,181,272,-1,741,735,730,-1,216,355,203,-1,216,361,355,-1,354,196,194,-1,354,360,196,-1,360,213,196,-1,360,366,213,-1,377,257,236,-1,377,385,257,-1,397,313,284,-1,397,406,313,-1,381,417,436,-1,345,417,381,-1,454,443,413,-1,454,582,443,-1,654,641,512,-1,654,684,641,-1,723,724,733,-1,723,718,724,-1,720,727,732,-1,727,720,712,-1,400,476,425,-1,433,476,400,-1,672,446,588,-1,672,626,446,-1,691,696,703,-1,696,691,646,-1,365,425,402,-1,400,425,365,-1,351,258,297,-1,351,334,258,-1,230,334,318,-1,258,334,230,-1,174,304,290,-1,201,304,174,-1,161,273,269,-1,156,273,161,-1,272,175,275,-1,175,272,181,-1,257,258,230,-1,257,284,258,-1,213,201,174,-1,213,236,201,-1,194,157,156,-1,194,196,157,-1,216,161,175,-1,216,203,161,-1,320,387,308,-1,320,399,387,-1,367,411,342,-1,367,430,411,-1,608,444,577,-1,608,552,444,-1,721,668,680,-1,721,698,668,-1,744,710,739,-1,744,713,710,-1,741,715,745,-1,741,716,715,-1,727,737,730,-1,727,733,737,-1,696,723,712,-1,696,706,723,-1,646,641,674,-1,588,641,646,-1,381,400,365,-1,381,413,400,-1,313,328,297,-1,313,345,328,-1,100,102,96,-1,100,98,102,-1,79,115,94,-1,79,99,115,-1,160,147,187,-1,123,147,160,-1,220,224,231,-1,199,224,220,-1,225,208,219,-1,225,217,208,-1,233,248,222,-1,233,271,248,-1,399,472,387,-1,399,499,472,-1,633,652,634,-1,633,647,652,-1,616,584,620,-1,616,578,584,-1,89,96,70,-1,89,100,96,-1,56,94,52,-1,56,79,94,-1,81,160,135,-1,81,123,160,-1,169,220,191,-1,169,199,220,-1,219,190,197,-1,219,208,190,-1,222,244,211,-1,222,248,244,-1,387,457,379,-1,387,472,457,-1,634,655,637,-1,634,652,655,-1,620,585,623,-1,620,584,585,-1,67,70,57,-1,67,89,70,-1,40,52,26,-1,40,56,52,-1,39,135,87,-1,39,81,135,-1,139,191,159,-1,139,169,191,-1,197,171,166,-1,197,190,171,-1,211,256,195,-1,211,244,256,-1,379,451,348,-1,379,457,451,-1,637,657,639,-1,637,655,657,-1,623,583,625,-1,623,585,583,-1,58,57,44,-1,58,67,57,-1,23,26,13,-1,23,40,26,-1,12,87,34,-1,12,39,87,-1,91,159,130,-1,91,139,159,-1,141,171,149,-1,141,166,171,-1,195,263,180,-1,195,256,263,-1,348,452,361,-1,348,451,452,-1,639,659,643,-1,639,657,659,-1,625,580,624,-1,625,583,580,-1,45,44,38,-1,45,58,44,-1,17,13,8,-1,17,23,13,-1,3,34,11,-1,3,12,34,-1,43,130,97,-1,43,91,130,-1,118,149,138,-1,118,141,149,-1,263,172,180,-1,172,263,262,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpisform_Geo_5_661_normalIndex_2()
		{
			int[] value = {361,458,355,-1,361,452,458,-1,643,658,648,-1,643,659,658,-1,624,573,621,-1,624,580,573,-1,41,38,32,-1,41,45,38,-1,14,8,2,-1,14,17,8,-1,0,11,5,-1,0,3,11,-1,20,97,61,-1,20,43,97,-1,138,105,118,-1,105,138,128,-1,262,165,172,-1,165,262,265,-1,355,470,354,-1,355,458,470,-1,648,656,649,-1,648,658,656,-1,621,570,617,-1,621,573,570,-1,37,32,28,-1,37,41,32,-1,15,2,6,-1,15,14,2,-1,1,5,4,-1,1,0,5,-1,16,61,46,-1,16,20,61,-1,128,92,105,-1,92,128,124,-1,265,173,165,-1,173,265,274,-1,354,484,360,-1,354,470,484,-1,649,653,644,-1,649,656,653,-1,617,564,614,-1,617,570,564,-1,28,30,37,-1,30,28,25,-1,19,6,9,-1,19,15,6,-1,7,4,10,-1,7,1,4,-1,46,22,16,-1,22,46,59,-1,124,104,92,-1,104,124,137,-1,274,186,173,-1,186,274,282,-1,360,495,366,-1,360,484,495,-1,644,642,638,-1,644,653,642,-1,614,561,602,-1,614,564,561,-1,24,25,27,-1,24,30,25,-1,33,9,21,-1,33,19,9,-1,18,10,31,-1,18,7,10,-1,59,53,22,-1,53,59,93,-1,137,122,104,-1,122,137,151,-1,282,214,186,-1,214,282,300,-1,366,505,377,-1,366,495,505,-1,638,627,629,-1,638,642,627,-1,602,555,594,-1,602,561,555,-1,29,27,36,-1,29,24,27,-1,47,21,50,-1,47,33,21,-1,60,31,74,-1,60,18,31,-1,109,93,127,-1,109,53,93,-1,151,145,122,-1,145,151,176,-1,300,239,214,-1,239,300,316,-1,505,385,377,-1,385,505,501,-1,627,609,629,-1,609,627,607,-1,555,579,594,-1,579,555,543,-1,85,50,108,-1,85,47,50,-1,117,74,136,-1,117,60,74,-1,144,127,155,-1,144,109,127,-1,178,176,215,-1,178,145,176,-1,316,267,239,-1,267,316,330,-1,501,397,385,-1,397,501,483,-1,607,587,609,-1,587,607,589,-1,543,559,579,-1,559,543,540,-1,77,35,51,-1,42,35,77,-1,121,108,142,-1,121,85,108,-1,152,136,170,-1,152,117,136,-1,155,183,144,-1,183,155,207,-1,215,235,178,-1,235,215,261,-1,330,303,267,-1,303,330,349,-1,483,406,397,-1,406,483,466,-1,589,544,587,-1,544,589,551,-1,540,533,559,-1,533,540,534,-1,116,42,77,-1,55,42,116,-1,154,142,179,-1,154,121,142,-1,192,170,218,-1,192,152,170,-1,207,240,183,-1,240,207,268,-1,261,295,235,-1,295,261,310,-1,349,332,303,-1,332,349,372,-1,466,417,406,-1,417,466,464,-1,551,503,544,-1,503,551,509,-1,534,513,533,-1,513,534,528,-1,143,55,116,-1,83,55,143,-1,223,154,179,-1,189,154,223,-1,241,218,266,-1,241,192,218,-1,299,268,321,-1,299,240,268,-1,338,310,346,-1,338,295,310,-1,372,359,332,-1,359,372,398,-1,464,436,417,-1,436,464,469,-1,509,475,503,-1,475,509,482,-1,528,498,513,-1,498,528,525,-1,168,83,143,-1,113,83,168,-1,255,189,223,-1,226,189,255,-1,314,241,266,-1,287,241,314,-1,341,321,357,-1,341,299,321,-1,370,346,373,-1,370,338,346,-1,398,384,359,-1,384,398,418,-1,469,454,436,-1,454,469,489,-1,482,463,475,-1,463,482,462,-1,525,488,498,-1,488,525,523,-1,200,113,168,-1,133,113,200,-1,286,226,255,-1,250,226,286,-1,344,287,314,-1,315,287,344,-1,369,357,386,-1,369,341,357,-1,389,373,391,-1,389,370,373,-1,418,407,384,-1,407,418,441,-1,489,582,454,-1,582,489,532,-1,462,461,463,-1,461,462,449,-1,523,480,488,-1,480,523,521,-1,227,133,200,-1,148,133,227,-1,305,250,286,-1,276,250,305,-1,362,315,344,-1,327,315,362,-1,392,386,403,-1,392,369,386,-1,404,391,409,-1,404,389,391,-1,441,426,407,-1,426,441,576,-1,532,654,582,-1,654,532,596,-1,449,474,461,-1,474,449,447,-1,521,477,480,-1,477,521,519,-1,247,148,227,-1,164,148,247,-1,317,276,305,-1,291,276,317,-1,376,327,362,-1,343,327,376,-1,405,403,416,-1,405,392,403,-1,419,409,427,-1,419,404,409,-1,576,459,426,-1,459,576,664,-1,596,684,654,-1,684,596,635,-1,447,502,474,-1,502,447,453,-1,519,478,477,-1,478,519,520,-1,264,164,247,-1,185,164,264,-1,323,291,317,-1,306,291,323,-1,394,343,376,-1,352,343,394,-1,421,416,434,-1,421,405,416,-1,427,440,419,-1,440,427,455,-1,664,613,459,-1,613,664,688,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpisform_Geo_5_661_normalIndex_3()
		{
			int[] value = {684,665,700,-1,684,635,665,-1,502,460,537,-1,502,453,460,-1,478,518,481,-1,478,520,518,-1,202,264,277,-1,202,185,264,-1,312,323,337,-1,312,306,323,-1,371,394,412,-1,371,352,394,-1,439,434,450,-1,439,421,434,-1,572,440,455,-1,493,440,572,-1,613,699,661,-1,613,688,699,-1,700,675,709,-1,700,665,675,-1,537,473,581,-1,537,460,473,-1,481,522,486,-1,481,518,522,-1,210,277,285,-1,210,202,277,-1,319,337,350,-1,319,312,337,-1,396,412,437,-1,396,371,412,-1,560,439,450,-1,487,439,560,-1,650,493,572,-1,604,493,650,-1,661,714,685,-1,661,699,714,-1,709,683,718,-1,709,675,683,-1,581,490,599,-1,581,473,490,-1,486,524,492,-1,486,522,524,-1,209,285,288,-1,209,210,285,-1,325,350,364,-1,325,319,350,-1,415,437,456,-1,415,396,437,-1,632,487,560,-1,569,487,632,-1,681,604,650,-1,663,604,681,-1,685,728,707,-1,685,714,728,-1,718,687,724,-1,718,683,687,-1,599,504,610,-1,599,490,504,-1,492,529,500,-1,492,524,529,-1,204,288,283,-1,204,209,288,-1,331,364,378,-1,331,325,364,-1,428,456,496,-1,428,415,456,-1,669,569,632,-1,615,569,669,-1,705,663,681,-1,692,663,705,-1,707,738,725,-1,707,728,738,-1,724,686,726,-1,724,687,686,-1,610,511,611,-1,610,504,511,-1,500,531,506,-1,500,529,531,-1,193,283,281,-1,193,204,283,-1,336,378,382,-1,336,331,378,-1,428,530,431,-1,428,496,530,-1,679,615,669,-1,645,615,679,-1,719,692,705,-1,702,692,719,-1,725,742,734,-1,725,738,742,-1,726,682,716,-1,726,686,682,-1,611,516,603,-1,611,511,516,-1,506,539,515,-1,506,531,539,-1,182,281,270,-1,182,193,281,-1,335,382,383,-1,335,336,382,-1,556,431,530,-1,429,431,556,-1,645,689,662,-1,645,679,689,-1,722,702,719,-1,704,702,722,-1,734,743,736,-1,734,742,743,-1,716,678,715,-1,716,682,678,-1,603,507,592,-1,603,516,507,-1,515,542,517,-1,515,539,542,-1,163,270,249,-1,163,182,270,-1,380,335,383,-1,324,335,380,-1,567,429,556,-1,423,429,567,-1,662,694,670,-1,662,689,694,-1,704,711,701,-1,704,722,711,-1,740,736,743,-1,729,736,740,-1,715,673,713,-1,715,678,673,-1,592,494,568,-1,592,507,494,-1,517,546,514,-1,517,542,546,-1,150,249,229,-1,150,163,249,-1,363,324,380,-1,309,324,363,-1,547,423,567,-1,414,423,547,-1,670,693,671,-1,670,694,693,-1,701,697,695,-1,701,711,697,-1,729,731,717,-1,729,740,731,-1,713,666,710,-1,713,673,666,-1,568,479,538,-1,568,494,479,-1,514,550,510,-1,514,546,550,-1,333,309,363,-1,278,309,333,-1,445,414,547,-1,390,414,445,-1,677,671,693,-1,651,671,677,-1,695,667,676,-1,695,697,667,-1,717,708,690,-1,717,731,708,-1,710,640,698,-1,710,666,640,-1,479,497,538,-1,497,479,465,-1,550,508,510,-1,508,550,554,-1,134,158,111,-1,134,198,158,-1,293,278,333,-1,234,278,293,-1,410,390,445,-1,347,390,410,-1,651,600,467,-1,651,677,600,-1,676,565,619,-1,676,667,565,-1,690,660,606,-1,690,708,660,-1,640,668,698,-1,668,640,593,-1,465,471,497,-1,471,465,468,-1,554,526,508,-1,526,554,557,-1,111,132,90,-1,111,158,132,-1,242,234,293,-1,184,234,242,-1,353,347,410,-1,302,347,353,-1,422,467,600,-1,401,467,422,-1,432,619,565,-1,435,619,432,-1,606,448,438,-1,606,660,448,-1,593,608,668,-1,608,593,545,-1,468,485,471,-1,485,468,491,-1,557,553,526,-1,553,557,558,-1,106,90,132,-1,68,90,106,-1,188,184,242,-1,146,184,188,-1,307,302,353,-1,246,302,307,-1,358,401,422,-1,340,401,358,-1,388,435,432,-1,375,435,388,-1,420,438,448,-1,408,438,420,-1,545,552,608,-1,552,545,549,-1,491,527,485,-1,527,491,541,-1,558,574,553,-1,574,558,562,-1,78,68,106,-1,64,68,78,-1,146,153,120,-1,146,188,153,-1,253,246,307,-1,205,246,253,-1,311,340,358,-1,292,340,311,-1,339,375,388,-1,322,375,339,-1,395,408,420,-1,368,408,395,-1,549,535,552,-1,535,549,591,-1,541,595,527,-1,595,541,597,-1,562,590,574,-1,590,562,563,-1,69,64,78,-1,63,64,69,-1,140,120,153,-1,112,120,140,-1,228,205,253,-1,177,205,228,-1,280,292,311,-1,259,292,280,-1,322,301,289,-1,322,339,301,-1,368,356,326,-1,368,395,356,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlpisform_Geo_5_661_normalIndex_4()
		{
			int[] value = {591,442,535,-1,442,591,601,-1,597,622,595,-1,622,597,618,-1,563,598,590,-1,598,563,566,-1,76,63,69,-1,66,63,76,-1,131,112,140,-1,107,112,131,-1,221,177,228,-1,167,177,221,-1,252,259,280,-1,245,259,252,-1,289,260,254,-1,289,301,260,-1,356,294,326,-1,294,356,329,-1,601,430,442,-1,430,601,586,-1,618,630,622,-1,630,618,628,-1,566,605,598,-1,605,566,571,-1,95,66,76,-1,75,66,95,-1,126,107,131,-1,103,107,126,-1,212,167,221,-1,162,167,212,-1,243,245,252,-1,238,245,243,-1,254,232,237,-1,254,260,232,-1,294,298,251,-1,294,329,298,-1,586,411,430,-1,411,586,536,-1,628,631,630,-1,631,628,636,-1,571,612,605,-1,612,571,575,-1,102,75,95,-1,98,75,102,-1,115,103,126,-1,99,103,115,-1,187,162,212,-1,147,162,187,-1,231,238,243,-1,224,238,231,-1,237,217,225,-1,237,232,217,-1,251,271,233,-1,251,298,271,-1,536,399,411,-1,399,536,499,-1,636,633,631,-1,633,636,647,-1,575,616,612,-1,616,575,578,-1,612,647,636,-1,647,612,616,-1,631,499,536,-1,499,631,633,-1,342,271,298,-1,271,342,320,-1,232,233,217,-1,232,251,233,-1,243,225,231,-1,243,237,225,-1,224,212,238,-1,187,212,224,-1,147,126,162,-1,115,126,147,-1,99,95,103,-1,102,95,99,-1,605,636,628,-1,636,605,612,-1,630,536,586,-1,536,630,631,-1,367,298,329,-1,298,367,342,-1,260,251,232,-1,260,294,251,-1,252,237,243,-1,252,254,237,-1,238,221,245,-1,212,221,238,-1,162,131,167,-1,126,131,162,-1,103,76,107,-1,95,76,103,-1,75,72,66,-1,80,72,75,-1,598,628,618,-1,628,598,605,-1,622,586,601,-1,586,622,630,-1,393,329,356,-1,329,393,367,-1,301,294,260,-1,301,326,294,-1,280,254,252,-1,280,289,254,-1,245,228,259,-1,221,228,245,-1,167,140,177,-1,131,140,167,-1,107,69,112,-1,76,69,107,-1,590,618,597,-1,618,590,598,-1,595,601,591,-1,601,595,622,-1,424,356,395,-1,356,424,393,-1,339,326,301,-1,339,368,326,-1,289,311,322,-1,280,311,289,-1,259,253,292,-1,228,253,259,-1,177,153,205,-1,140,153,177,-1,112,78,120,-1,69,78,112,-1,63,71,64,-1,72,71,63,-1,574,597,541,-1,597,574,590,-1,527,591,549,-1,591,527,595,-1,444,395,420,-1,395,444,424,-1,368,388,408,-1,339,388,368,-1,322,358,375,-1,311,358,322,-1,292,307,340,-1,253,307,292,-1,205,188,246,-1,153,188,205,-1,120,106,146,-1,78,106,120,-1,553,541,491,-1,541,553,574,-1,485,549,545,-1,549,485,527,-1,448,444,420,-1,448,577,444,-1,408,432,438,-1,388,432,408,-1,375,422,435,-1,358,422,375,-1,340,353,401,-1,307,353,340,-1,246,242,302,-1,188,242,246,-1,146,132,184,-1,106,132,146,-1,68,82,90,-1,71,82,68,-1,526,491,468,-1,491,526,553,-1,471,545,593,-1,545,471,485,-1,660,577,448,-1,660,680,577,-1,438,565,606,-1,432,565,438,-1,435,600,619,-1,422,600,435,-1,401,410,467,-1,353,410,401,-1,302,293,347,-1,242,293,302,-1,184,158,234,-1,132,158,184,-1,508,468,465,-1,468,508,526,-1,497,593,640,-1,593,497,471,-1,708,680,660,-1,708,721,680,-1,667,606,565,-1,667,690,606,-1,677,619,600,-1,677,676,619,-1,445,467,410,-1,445,651,467,-1,347,333,390,-1,293,333,347,-1,234,198,278,-1,158,198,234,-1,101,111,82,-1,101,134,111,-1,510,465,479,-1,465,510,508,-1,666,497,640,-1,666,538,497,-1,731,721,708,-1,731,739,721,-1,690,697,717,-1,667,697,690,-1,693,676,677,-1,693,695,676,-1,651,547,671,-1,445,547,651,-1,390,363,414,-1,333,363,390,-1,278,229,309,-1,198,229,278,-1,494,510,479,-1,494,514,510,-1,673,538,666,-1,673,568,538,-1,740,739,731,-1,740,744,739,-1,711,717,697,-1,711,729,717,-1,694,695,693,-1,694,701,695,-1,671,567,670,-1,547,567,671,-1,414,380,423,-1,363,380,414,-1,229,324,309,-1,229,249,324,-1,101,163,150,-1,101,114,163,-1,507,514,494,-1,507,517,514,-1,678,568,673,-1,678,592,568,-1,744,743,745,-1,740,743,744,-1,722,729,711,-1,722,736,729,-1,689,701,694,-1,689,704,701,-1,670,556,662,-1,567,556,670,-1,423,383,429,-1,380,383,423,-1,249,335,324,-1,249,270,335,-1,516,517,507,-1,516,515,517,-1,682,592,678,-1,682,603,592,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlpisform_Geo_5_661_normalIndex_5()
		{
			int[] value = {745,742,741,-1,743,742,745,-1,719,736,722,-1,719,734,736,-1,679,704,689,-1,679,702,704,-1,530,662,556,-1,530,645,662,-1,429,382,431,-1,383,382,429,-1,270,336,335,-1,270,281,336,-1,193,114,125,-1,114,193,182,-1,511,515,516,-1,511,506,515,-1,686,603,682,-1,686,611,603,-1,705,734,719,-1,705,725,734,-1,702,669,692,-1,679,669,702,-1,496,645,530,-1,496,615,645,-1,382,428,431,-1,382,378,428,-1,281,331,336,-1,281,283,331,-1,504,506,511,-1,504,500,506,-1,687,611,686,-1,687,610,611,-1,728,735,738,-1,728,732,735,-1,681,725,705,-1,681,707,725,-1,692,632,663,-1,669,632,692,-1,496,569,615,-1,496,456,569,-1,378,415,428,-1,378,364,415,-1,283,325,331,-1,283,288,325,-1,125,209,204,-1,125,129,209,-1,490,500,504,-1,490,492,500,-1,683,610,687,-1,683,599,610,-1,714,732,728,-1,714,720,732,-1,650,707,681,-1,650,685,707,-1,663,560,604,-1,632,560,663,-1,456,487,569,-1,456,437,487,-1,364,396,415,-1,364,350,396,-1,288,319,325,-1,288,285,319,-1,473,492,490,-1,473,486,492,-1,675,599,683,-1,675,581,599,-1,699,720,714,-1,699,703,720,-1,572,685,650,-1,572,661,685,-1,604,450,493,-1,560,450,604,-1,437,439,487,-1,437,412,439,-1,350,371,396,-1,350,337,371,-1,285,312,319,-1,285,277,312,-1,129,202,210,-1,129,119,202,-1,460,486,473,-1,460,481,486,-1,665,581,675,-1,665,537,581,-1,688,703,699,-1,688,691,703,-1,455,661,572,-1,455,613,661,-1,493,434,440,-1,450,434,493,-1,412,421,439,-1,412,394,421,-1,371,323,352,-1,337,323,371,-1,277,306,312,-1,277,264,306,-1,453,481,460,-1,453,478,481,-1,635,537,665,-1,635,502,537,-1,672,688,664,-1,688,672,691,-1,459,455,427,-1,455,459,613,-1,434,419,440,-1,434,416,419,-1,421,376,405,-1,394,376,421,-1,352,317,343,-1,323,317,352,-1,306,247,291,-1,264,247,306,-1,119,164,185,-1,119,110,164,-1,477,453,447,-1,453,477,478,-1,474,635,596,-1,635,474,502,-1,626,664,576,-1,664,626,672,-1,426,427,409,-1,427,426,459,-1,416,404,419,-1,416,403,404,-1,405,362,392,-1,376,362,405,-1,343,305,327,-1,317,305,343,-1,291,227,276,-1,247,227,291,-1,480,447,449,-1,447,480,477,-1,461,596,532,-1,596,461,474,-1,476,576,441,-1,576,476,626,-1,407,409,391,-1,409,407,426,-1,403,389,404,-1,403,386,389,-1,392,344,369,-1,362,344,392,-1,327,286,315,-1,305,286,327,-1,276,200,250,-1,227,200,276,-1,148,84,133,-1,110,84,148,-1,488,449,462,-1,449,488,480,-1,463,532,489,-1,532,463,461,-1,425,441,418,-1,441,425,476,-1,384,391,373,-1,391,384,407,-1,386,370,389,-1,386,357,370,-1,369,314,341,-1,344,314,369,-1,315,255,287,-1,286,255,315,-1,250,168,226,-1,200,168,250,-1,498,462,482,-1,462,498,488,-1,475,489,469,-1,489,475,463,-1,402,418,398,-1,418,402,425,-1,359,373,346,-1,373,359,384,-1,357,338,370,-1,357,321,338,-1,314,299,341,-1,314,266,299,-1,287,223,241,-1,255,223,287,-1,226,143,189,-1,168,143,226,-1,113,62,83,-1,84,62,113,-1,513,482,509,-1,482,513,498,-1,503,469,464,-1,469,503,475,-1,398,374,402,-1,398,372,374,-1,332,346,310,-1,346,332,359,-1,295,321,268,-1,321,295,338,-1,266,240,299,-1,266,218,240,-1,223,192,241,-1,223,179,192,-1,189,116,154,-1,143,116,189,-1,533,509,551,-1,509,533,513,-1,544,464,466,-1,464,544,503,-1,351,372,349,-1,372,351,374,-1,303,310,261,-1,310,303,332,-1,235,268,207,-1,268,235,295,-1,218,183,240,-1,218,170,183,-1,179,152,192,-1,179,142,152,-1,154,77,121,-1,116,77,154,-1,55,49,42,-1,62,49,55,-1,559,551,589,-1,551,559,533,-1,587,466,483,-1,466,587,544,-1,334,349,330,-1,349,334,351,-1,267,261,215,-1,261,267,303,-1,178,207,155,-1,207,178,235,-1,170,144,183,-1,170,136,144,-1,142,117,152,-1,142,108,117,-1,121,51,85,-1,77,51,121,-1,579,589,607,-1,589,579,559,-1,609,483,501,-1,483,609,587,-1,318,330,316,-1,330,318,334,-1,215,239,267,-1,215,176,239,-1,155,145,178,-1,155,127,145,-1,136,109,144,-1,136,74,109,-1,108,60,117,-1,108,50,60,-1,51,47,85,-1,51,36,47,-1,35,48,29,-1,49,48,35,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlpisform_Geo_5_661_normalIndex_6()
		{
			int[] value = {594,607,627,-1,607,594,579,-1,629,501,505,-1,501,629,609,-1,304,316,300,-1,316,304,318,-1,214,176,151,-1,176,214,239,-1,127,122,145,-1,127,93,122,-1,74,53,109,-1,74,31,53,-1,50,18,60,-1,50,21,18,-1,36,33,47,-1,36,27,33,-1,642,594,627,-1,642,602,594,-1,495,629,505,-1,495,638,629,-1,290,300,282,-1,300,290,304,-1,186,151,137,-1,151,186,214,-1,104,93,59,-1,93,104,122,-1,31,22,53,-1,31,10,22,-1,21,7,18,-1,21,9,7,-1,27,19,33,-1,27,25,19,-1,30,48,54,-1,48,30,24,-1,653,602,642,-1,653,614,602,-1,484,638,495,-1,484,644,638,-1,279,282,274,-1,282,279,290,-1,173,137,124,-1,137,173,186,-1,92,59,46,-1,59,92,104,-1,16,10,4,-1,10,16,22,-1,9,1,7,-1,9,6,1,-1,25,15,19,-1,25,28,15,-1,656,614,653,-1,656,617,614,-1,470,644,484,-1,470,649,644,-1,265,279,274,-1,265,273,279,-1,165,124,128,-1,124,165,173,-1,105,46,61,-1,46,105,92,-1,4,20,16,-1,4,5,20,-1,6,0,1,-1,6,2,0,-1,28,14,15,-1,28,32,14,-1,41,54,65,-1,54,41,37,-1,658,617,656,-1,658,621,617,-1,458,649,470,-1,458,648,649,-1,262,273,265,-1,262,269,273,-1,172,128,138,-1,128,172,165,-1,61,118,105,-1,61,97,118,-1,5,43,20,-1,5,11,43,-1,2,3,0,-1,2,8,3,-1,32,17,14,-1,32,38,17,-1,659,621,658,-1,659,624,621,-1,452,648,458,-1,452,643,648,-1,263,269,262,-1,263,275,269,-1,180,138,149,-1,138,180,172,-1,97,141,118,-1,97,130,141,-1,11,91,43,-1,11,34,91,-1,8,12,3,-1,8,13,12,-1,38,23,17,-1,38,44,23,-1,65,58,45,-1,65,73,58,-1,657,624,659,-1,657,625,624,-1,451,643,452,-1,451,639,643,-1,256,275,263,-1,256,272,275,-1,195,149,171,-1,149,195,180,-1,130,166,141,-1,130,159,166,-1,34,139,91,-1,34,87,139,-1,13,39,12,-1,13,26,39,-1,44,40,23,-1,44,57,40,-1,655,625,657,-1,655,623,625,-1,457,639,451,-1,457,637,639,-1,190,195,171,-1,190,211,195,-1,159,197,166,-1,159,191,197,-1,87,169,139,-1,87,135,169,-1,26,81,39,-1,26,52,81,-1,57,56,40,-1,57,70,56,-1,73,89,67,-1,73,88,89,-1,652,623,655,-1,652,620,623,-1,472,637,457,-1,472,634,637,-1,248,296,244,-1,248,308,296,-1,208,211,190,-1,208,222,211,-1,197,220,219,-1,191,220,197,-1,135,199,169,-1,135,160,199,-1,52,123,81,-1,52,94,123,-1,70,79,56,-1,70,96,79,-1,647,620,652,-1,647,616,620,-1,499,634,472,-1,499,633,634,-1,271,308,248,-1,271,320,308,-1,217,222,208,-1,217,233,222,-1,231,219,220,-1,231,225,219,-1,199,187,224,-1,160,187,199,-1,94,147,123,-1,94,115,147,-1,96,99,79,-1,96,102,99,-1,88,98,100,-1,88,80,98,-1,345,365,328,-1,345,381,365,-1,413,433,400,-1,413,443,433,-1,512,588,446,-1,512,641,588,-1,712,733,727,-1,712,723,733,-1,745,713,744,-1,745,715,713,-1,739,698,721,-1,739,710,698,-1,668,577,680,-1,668,608,577,-1,552,424,444,-1,552,535,424,-1,393,430,367,-1,393,442,430,-1,342,399,320,-1,342,411,399,-1,308,379,296,-1,308,387,379,-1,206,175,181,-1,206,216,175,-1,203,156,161,-1,203,194,156,-1,196,174,157,-1,196,213,174,-1,236,230,201,-1,236,257,230,-1,284,297,258,-1,284,313,297,-1,175,269,275,-1,161,269,175,-1,157,290,279,-1,174,290,157,-1,201,318,304,-1,230,318,201,-1,297,374,351,-1,328,374,297,-1,328,402,374,-1,365,402,328,-1,712,703,696,-1,712,720,703,-1,588,691,672,-1,646,691,588,-1,433,626,476,-1,446,626,433,-1,732,730,735,-1,730,732,727,-1,733,726,737,-1,733,724,726,-1,706,718,723,-1,706,709,718,-1,641,700,674,-1,641,684,700,-1,582,512,443,-1,582,654,512,-1,436,413,381,-1,436,454,413,-1,406,345,313,-1,406,417,345,-1,385,284,257,-1,385,397,284,-1,366,236,213,-1,366,377,236,-1,156,279,273,-1,157,279,156,-1,203,354,194,-1,203,355,354,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal_Geo_5_667_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,5,6,3,-1,7,8,2,-1,9,2,10,-1,3,11,4,-1,11,12,4,-1,13,14,15,-1,13,16,14,-1,17,13,2,-1,4,18,5,-1,19,20,21,-1,19,22,20,-1,23,24,25,-1,24,26,25,-1,27,28,29,-1,27,30,28,-1,31,32,33,-1,34,35,36,-1,36,37,34,-1,8,38,2,-1,39,40,41,-1,41,42,39,-1,43,44,45,-1,44,46,45,-1,47,6,5,-1,48,49,50,-1,51,52,49,-1,51,53,52,-1,8,7,54,-1,54,55,8,-1,56,1,57,-1,57,58,56,-1,48,51,49,-1,48,59,51,-1,60,61,62,-1,62,63,60,-1,22,64,5,-1,65,47,5,-1,66,49,52,-1,52,67,66,-1,68,69,70,-1,70,71,68,-1,72,73,74,-1,72,75,73,-1,33,32,76,-1,76,77,33,-1,42,78,79,-1,42,41,78,-1,54,15,14,-1,54,7,15,-1,80,81,82,-1,80,83,81,-1,84,85,36,-1,84,86,85,-1,87,36,35,-1,87,84,36,-1,88,65,5,-1,53,51,89,-1,51,90,89,-1,56,17,2,-1,91,92,93,-1,91,94,92,-1,95,96,97,-1,97,98,95,-1,77,99,33,-1,77,100,99,-1,101,102,103,-1,103,104,101,-1,105,106,107,-1,108,109,110,-1,104,103,108,-1,108,111,112,-1,113,114,108,-1,115,116,108,-1,108,107,117,-1,118,119,120,-1,119,121,120,-1,122,123,124,-1,59,125,90,-1,90,51,59,-1,126,127,128,-1,129,130,125,-1,129,131,130,-1,132,133,123,-1,123,131,132,-1,134,135,136,-1,137,138,139,-1,140,141,142,-1,142,143,140,-1,29,121,119,-1,29,105,121,-1,28,144,106,-1,117,145,108,-1,116,107,108,-1,114,115,108,-1,108,112,113,-1,103,111,108,-1,110,104,108,-1,112,146,113,-1,112,147,146,-1,13,15,2,-1,0,2,148,-1,149,53,89,-1,149,150,53,-1,151,152,37,-1,152,153,37,-1,154,155,156,-1,155,157,156,-1,158,58,76,-1,76,159,158,-1,157,55,152,-1,55,54,152,-1,19,21,80,-1,21,83,80,-1,78,160,79,-1,160,87,79,-1,31,42,79,-1,31,33,42,-1,69,161,70,-1,69,162,161,-1,11,163,164,-1,64,88,5,-1,18,20,5,-1,67,52,165,-1,165,166,67,-1,6,41,40,-1,40,167,6,-1,136,135,168,-1,135,124,168,-1,145,109,108,-1,169,57,0,-1,57,1,0,-1,53,150,52,-1,150,165,52,-1,170,171,59,-1,59,48,170,-1,47,41,6,-1,47,78,41,-1,65,88,160,-1,88,172,160,-1,19,64,22,-1,19,173,64,-1,44,164,46,-1,44,161,164,-1,161,162,164,-1,162,12,164,-1,8,55,174,-1,174,38,8,-1,94,175,92,-1,154,82,81,-1,154,156,82,-1,176,177,178,-1,179,180,181,-1,180,182,181,-1,22,5,20,-1,4,75,18,-1,4,73,75,-1,9,148,2,-1,15,7,2,-1,16,153,14,-1,183,184,68,-1,11,3,167,-1,167,185,11,-1,184,69,68,-1,184,74,69,-1,10,2,38,-1,12,11,164,-1,6,167,3,-1,56,2,1,-1,38,63,10,-1,63,38,174,-1,175,169,0,-1,169,175,94,-1,186,100,91,-1,99,100,186,-1,39,187,40,-1,188,187,39,-1,162,4,12,-1,162,73,4,-1,68,61,183,-1,61,68,166,-1,162,74,73,-1,74,162,69,-1,149,0,148,-1,149,175,0,-1,16,17,158,-1,17,16,13,-1,14,152,54,-1,152,14,153,-1,154,189,190,-1,154,81,189,-1,191,192,139,-1,191,193,192,-1,144,194,195,-1,194,144,196,-1,28,196,144,-1,30,196,28,-1,179,197,198,-1,179,181,197,-1,199,180,200,-1,180,199,182,-1,201,176,202,-1,201,203,176,-1,204,177,205,-1,204,206,177,-1,207,118,208,-1,207,119,118,-1,151,82,156,-1,85,82,151,-1,184,190,189,-1,183,190,184,-1,75,83,21,-1,83,75,72,-1,154,60,155,-1,154,190,60,-1,128,97,96,-1,97,128,127,-1,185,163,11,-1,163,185,126,-1,44,209,210,-1,209,44,43,-1,21,18,75,-1,18,21,20,-1,172,64,173,-1,172,88,64,-1,78,65,160,-1,78,47,65,-1,211,171,170,-1,211,212,171,-1,213,145,214,-1,145,213,109,-1,168,198,136,-1,198,168,179,-1,124,215,122,-1,135,215,124,-1,33,39,42,-1,33,99,39,-1,163,46,164,-1,216,46,163,-1,210,71,70,-1,71,210,217,-1,190,61,60,-1,61,190,183,-1,84,160,172,-1,160,84,87,-1,86,19,80,-1,173,19,86,-1,157,174,55,-1,155,174,157,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal_Geo_5_667_coordIndex_2()
		{
			int[] value = {35,79,87,-1,31,79,35,-1,156,152,151,-1,157,152,156,-1,175,89,92,-1,89,175,149,-1,93,218,219,-1,92,218,93,-1,187,126,185,-1,187,127,126,-1,220,109,213,-1,109,220,110,-1,147,111,178,-1,111,147,112,-1,221,113,146,-1,113,221,114,-1,116,120,121,-1,115,120,116,-1,25,147,206,-1,25,146,147,-1,178,202,176,-1,178,102,202,-1,101,182,199,-1,101,220,182,-1,197,222,195,-1,197,214,222,-1,106,29,28,-1,29,106,105,-1,26,146,25,-1,26,221,146,-1,140,137,223,-1,140,143,137,-1,138,128,224,-1,138,216,128,-1,191,225,134,-1,224,225,191,-1,193,134,136,-1,193,191,134,-1,95,122,215,-1,95,219,122,-1,124,133,168,-1,124,123,133,-1,122,131,123,-1,131,122,130,-1,131,226,132,-1,226,131,129,-1,129,212,226,-1,212,129,171,-1,170,227,211,-1,227,170,228,-1,49,229,50,-1,49,66,229,-1,228,230,227,-1,228,231,230,-1,138,143,45,-1,138,137,143,-1,209,217,210,-1,217,209,232,-1,233,234,235,-1,234,233,236,-1,229,234,231,-1,229,232,234,-1,207,140,27,-1,207,141,140,-1,192,30,223,-1,30,192,196,-1,180,168,133,-1,179,168,180,-1,201,132,226,-1,200,132,201,-1,204,211,227,-1,211,204,205,-1,233,24,236,-1,233,208,24,-1,236,23,230,-1,236,24,23,-1,218,125,130,-1,218,90,125,-1,141,208,233,-1,141,207,208,-1,230,204,227,-1,230,23,204,-1,226,203,201,-1,203,226,212,-1,133,200,180,-1,133,132,200,-1,136,194,193,-1,194,136,198,-1,223,27,140,-1,27,223,30,-1,231,236,230,-1,231,234,236,-1,66,232,229,-1,66,217,232,-1,232,235,234,-1,232,209,235,-1,233,142,141,-1,235,142,233,-1,45,216,138,-1,216,45,46,-1,231,50,229,-1,50,231,228,-1,228,48,50,-1,228,170,48,-1,125,171,129,-1,171,125,59,-1,122,218,130,-1,122,219,218,-1,225,135,134,-1,135,225,215,-1,225,95,215,-1,225,96,95,-1,139,223,137,-1,223,139,192,-1,96,224,128,-1,96,225,224,-1,120,26,118,-1,26,120,221,-1,182,213,181,-1,182,220,213,-1,102,199,202,-1,102,101,199,-1,206,178,177,-1,206,147,178,-1,222,107,106,-1,107,222,117,-1,107,121,105,-1,116,121,107,-1,115,221,120,-1,114,221,115,-1,111,102,178,-1,103,102,111,-1,104,220,101,-1,110,220,104,-1,214,117,222,-1,117,214,145,-1,186,97,188,-1,186,98,97,-1,169,77,57,-1,169,100,77,-1,93,95,98,-1,93,219,95,-1,98,91,93,-1,98,186,91,-1,90,92,89,-1,90,218,92,-1,159,37,153,-1,159,34,37,-1,80,85,86,-1,80,82,85,-1,76,34,159,-1,76,32,34,-1,84,173,86,-1,172,173,84,-1,57,76,58,-1,57,77,76,-1,74,189,72,-1,184,189,74,-1,71,166,68,-1,71,67,166,-1,217,67,71,-1,66,67,217,-1,210,161,44,-1,70,161,210,-1,181,214,197,-1,214,181,213,-1,158,56,58,-1,17,56,158,-1,205,212,211,-1,205,203,212,-1,235,43,142,-1,235,209,43,-1,142,45,143,-1,142,43,45,-1,126,216,163,-1,126,128,216,-1,188,127,187,-1,188,97,127,-1,63,155,60,-1,174,155,63,-1,72,81,83,-1,81,72,189,-1,37,85,151,-1,37,36,85,-1,32,35,34,-1,32,31,35,-1,29,207,27,-1,207,29,119,-1,208,26,24,-1,208,118,26,-1,23,206,204,-1,23,25,206,-1,177,203,205,-1,203,177,176,-1,202,200,201,-1,200,202,199,-1,198,195,194,-1,198,197,195,-1,106,195,222,-1,195,106,144,-1,196,193,194,-1,193,196,192,-1,224,139,138,-1,224,191,139,-1,158,153,16,-1,158,159,153,-1,150,148,9,-1,149,148,150,-1,166,62,61,-1,62,166,165,-1,185,40,187,-1,167,40,185,-1,99,188,39,-1,186,188,99,-1,169,91,100,-1,169,94,91,-1,9,165,150,-1,165,9,62,-1,62,10,63,-1,62,9,10,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal_Geo_5_667_normalIndex_1()
		{
			int[] value = {210,207,221,-1,13,31,18,-1,18,22,13,-1,209,217,221,-1,235,221,233,-1,13,12,31,-1,12,30,31,-1,170,74,176,-1,170,64,74,-1,141,170,221,-1,31,38,18,-1,53,35,88,-1,53,16,35,-1,161,139,166,-1,139,152,166,-1,46,100,108,-1,46,27,100,-1,72,47,68,-1,36,62,63,-1,63,37,36,-1,217,231,221,-1,80,56,44,-1,44,77,80,-1,42,59,7,-1,59,15,7,-1,11,22,18,-1,216,202,192,-1,223,205,202,-1,223,232,205,-1,217,209,102,-1,102,128,217,-1,159,207,130,-1,130,73,159,-1,216,223,202,-1,216,219,223,-1,123,122,193,-1,193,185,123,-1,16,8,18,-1,3,11,18,-1,135,202,205,-1,205,118,135,-1,131,154,120,-1,120,110,131,-1,163,99,174,-1,163,101,99,-1,68,47,48,-1,48,79,68,-1,77,40,67,-1,77,44,40,-1,102,176,74,-1,102,209,176,-1,114,140,109,-1,114,144,140,-1,69,91,63,-1,69,83,91,-1,66,63,62,-1,66,69,63,-1,0,3,18,-1,232,223,224,-1,223,222,224,-1,159,141,221,-1,113,197,125,-1,113,151,197,-1,89,61,65,-1,65,97,89,-1,79,92,68,-1,79,107,92,-1,181,142,160,-1,160,178,181,-1,172,175,186,-1,180,191,179,-1,178,160,180,-1,180,147,157,-1,171,155,180,-1,164,183,180,-1,180,186,182,-1,150,138,162,-1,138,177,162,-1,136,134,106,-1,219,218,222,-1,222,223,219,-1,23,45,24,-1,213,201,218,-1,213,196,201,-1,188,126,134,-1,134,196,188,-1,49,81,55,-1,1,2,4,-1,17,60,39,-1,39,6,17,-1,108,177,138,-1,108,172,177,-1,100,98,175,-1,182,184,180,-1,183,186,180,-1,155,164,180,-1,180,157,171,-1,160,147,180,-1,179,178,180,-1,157,148,171,-1,157,146,148,-1,170,176,221,-1,210,221,225,-1,228,232,224,-1,228,236,232,-1,58,51,37,-1,51,43,37,-1,119,112,78,-1,112,82,78,-1,57,73,48,-1,48,33,57,-1,82,128,51,-1,128,102,51,-1,53,88,114,-1,88,144,114,-1,40,29,67,-1,29,66,67,-1,72,77,67,-1,72,68,77,-1,154,103,120,-1,154,104,103,-1,12,10,34,-1,8,0,18,-1,38,35,18,-1,118,205,190,-1,190,116,118,-1,22,44,56,-1,56,28,22,-1,55,81,94,-1,81,106,94,-1,184,191,180,-1,143,130,210,-1,130,207,210,-1,232,236,205,-1,236,190,205,-1,214,215,219,-1,219,216,214,-1,11,44,22,-1,11,40,44,-1,3,0,29,-1,0,41,29,-1,53,8,16,-1,53,52,8,-1,59,34,15,-1,59,103,34,-1,103,104,34,-1,104,30,34,-1,217,128,168,-1,168,231,217,-1,151,211,197,-1,119,109,140,-1,119,78,109,-1,212,208,145,-1,115,158,167,-1,158,195,167,-1,16,18,35,-1,31,101,38,-1,31,99,101,-1,235,225,221,-1,176,209,221,-1,64,43,74,-1,132,149,131,-1,12,13,28,-1,28,26,12,-1,149,154,131,-1,149,174,154,-1,233,221,231,-1,30,12,34,-1,22,28,13,-1,159,221,207,-1,231,185,233,-1,185,231,168,-1,211,143,210,-1,143,211,151,-1,96,107,113,-1,92,107,96,-1,80,50,56,-1,75,50,80,-1,104,31,30,-1,104,99,31,-1,131,122,132,-1,122,131,116,-1,104,174,99,-1,174,104,154,-1,228,210,225,-1,228,211,210,-1,64,141,57,-1,141,64,170,-1,74,51,102,-1,51,74,43,-1,119,153,133,-1,119,140,153,-1,20,14,4,-1,20,21,14,-1,98,32,85,-1,32,98,25,-1,100,25,98,-1,27,25,100,-1,115,124,71,-1,115,167,124,-1,203,158,199,-1,158,203,195,-1,226,212,204,-1,226,234,212,-1,206,208,230,-1,206,194,208,-1,95,150,127,-1,95,138,150,-1,58,109,78,-1,91,109,58,-1,149,133,153,-1,132,133,149,-1,101,144,88,-1,144,101,163,-1,119,123,112,-1,119,133,123,-1,24,65,61,-1,65,24,45,-1,26,10,12,-1,10,26,23,-1,59,76,87,-1,76,59,42,-1,88,38,101,-1,38,88,35,-1,41,8,52,-1,41,0,8,-1,40,3,29,-1,40,11,3,-1,229,215,214,-1,229,227,215,-1,187,184,169,-1,184,187,191,-1,94,71,55,-1,71,94,115,-1,106,86,136,-1,81,86,106,-1,68,80,77,-1,68,92,80,-1,10,15,34,-1,9,15,10,-1,87,110,120,-1,110,87,105,-1,133,122,123,-1,122,133,132,-1,69,29,41,-1,29,69,66,-1,83,53,114,-1,52,53,83,-1,82,168,128,-1,112,168,82,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal_Geo_5_667_normalIndex_2()
		{
			int[] value = {62,67,66,-1,72,67,62,-1,78,51,58,-1,82,51,78,-1,211,224,197,-1,224,211,228,-1,125,198,129,-1,197,198,125,-1,50,23,26,-1,50,45,23,-1,189,191,187,-1,191,189,179,-1,146,147,145,-1,147,146,157,-1,156,171,148,-1,171,156,155,-1,183,162,177,-1,164,162,183,-1,166,146,194,-1,166,148,146,-1,145,204,212,-1,145,142,204,-1,181,195,203,-1,181,189,195,-1,124,165,85,-1,124,169,165,-1,175,108,100,-1,108,175,172,-1,152,148,166,-1,152,156,148,-1,17,1,5,-1,17,6,1,-1,2,24,19,-1,2,9,24,-1,20,54,49,-1,19,54,20,-1,21,49,55,-1,21,20,49,-1,89,136,86,-1,89,129,136,-1,106,126,94,-1,106,134,126,-1,136,196,134,-1,196,136,201,-1,196,220,188,-1,220,196,213,-1,213,227,220,-1,227,213,215,-1,214,200,229,-1,200,214,173,-1,202,121,192,-1,202,135,121,-1,173,137,200,-1,173,117,137,-1,2,6,7,-1,2,1,6,-1,76,105,87,-1,105,76,93,-1,90,84,70,-1,84,90,111,-1,121,84,117,-1,121,93,84,-1,95,17,46,-1,95,60,17,-1,14,27,5,-1,27,14,25,-1,158,94,126,-1,115,94,158,-1,226,188,220,-1,199,188,226,-1,206,229,200,-1,229,206,230,-1,90,139,111,-1,90,127,139,-1,111,161,137,-1,111,139,161,-1,198,218,201,-1,198,222,218,-1,60,127,90,-1,60,95,127,-1,137,206,200,-1,137,161,206,-1,220,234,226,-1,234,220,227,-1,126,199,158,-1,126,188,199,-1,55,32,21,-1,32,55,71,-1,5,46,17,-1,46,5,27,-1,117,111,137,-1,117,84,111,-1,135,93,121,-1,135,105,93,-1,93,70,84,-1,93,76,70,-1,90,39,60,-1,70,39,90,-1,7,9,2,-1,9,7,15,-1,117,192,121,-1,192,117,173,-1,173,216,192,-1,173,214,216,-1,218,215,213,-1,215,218,219,-1,136,198,201,-1,136,129,198,-1,54,81,49,-1,81,54,86,-1,54,89,86,-1,54,61,89,-1,4,5,1,-1,5,4,14,-1,61,19,24,-1,61,54,19,-1,162,152,150,-1,152,162,156,-1,195,187,167,-1,195,189,187,-1,142,203,204,-1,142,181,203,-1,194,145,208,-1,194,146,145,-1,165,186,175,-1,186,165,182,-1,186,177,172,-1,183,177,186,-1,164,156,162,-1,155,156,164,-1,147,142,145,-1,160,142,147,-1,178,189,181,-1,179,189,178,-1,169,182,165,-1,182,169,184,-1,96,65,75,-1,96,97,65,-1,143,79,130,-1,143,107,79,-1,125,89,97,-1,125,129,89,-1,97,113,125,-1,97,96,113,-1,222,197,224,-1,222,198,197,-1,33,37,43,-1,33,36,37,-1,114,91,83,-1,114,109,91,-1,48,36,33,-1,48,47,36,-1,69,52,83,-1,41,52,69,-1,130,48,73,-1,130,79,48,-1,174,153,163,-1,149,153,174,-1,110,116,131,-1,110,118,116,-1,105,118,110,-1,135,118,105,-1,87,103,59,-1,120,103,87,-1,167,169,124,-1,169,167,187,-1,57,159,73,-1,141,159,57,-1,230,227,229,-1,230,234,227,-1,70,42,39,-1,70,76,42,-1,39,7,6,-1,39,42,7,-1,23,9,10,-1,23,24,9,-1,75,45,50,-1,75,65,45,-1,185,112,123,-1,168,112,185,-1,163,140,144,-1,140,163,153,-1,37,91,58,-1,37,63,91,-1,47,62,36,-1,47,72,62,-1,108,95,46,-1,95,108,138,-1,127,152,139,-1,127,150,152,-1,161,194,206,-1,161,166,194,-1,208,234,230,-1,234,208,212,-1,204,199,226,-1,199,204,203,-1,71,85,32,-1,71,124,85,-1,175,85,165,-1,85,175,98,-1,25,21,32,-1,21,25,14,-1,19,4,2,-1,19,20,4,-1,57,43,64,-1,57,33,43,-1,236,225,235,-1,228,225,236,-1,116,193,122,-1,193,116,190,-1,26,56,50,-1,28,56,26,-1,92,75,80,-1,96,75,92,-1,143,113,107,-1,143,151,113,-1,235,190,236,-1,190,235,193,-1,193,233,185,-1,193,235,233,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal2_Geo_5_673_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,10,11,12,-1,12,13,10,-1,14,15,16,-1,17,18,19,-1,17,20,18,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,31,10,32,-1,24,28,25,-1,24,33,28,-1,34,35,36,-1,34,37,35,-1,34,38,37,-1,39,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,43,-1,49,50,43,-1,51,8,7,-1,52,53,54,-1,55,56,57,-1,56,58,57,-1,59,60,61,-1,60,14,61,-1,62,63,64,-1,64,65,62,-1,20,66,18,-1,67,68,69,-1,70,71,72,-1,70,73,71,-1,74,75,76,-1,77,78,79,-1,77,80,78,-1,74,78,81,-1,82,83,84,-1,71,85,86,-1,87,86,84,-1,86,82,84,-1,88,59,89,-1,88,60,59,-1,23,90,21,-1,91,92,93,-1,94,23,95,-1,95,96,94,-1,22,97,23,-1,2,39,41,-1,2,1,39,-1,98,99,100,-1,100,101,98,-1,102,32,103,-1,32,104,103,-1,68,67,61,-1,105,106,79,-1,79,107,105,-1,108,109,110,-1,111,112,113,-1,114,115,110,-1,116,117,114,-1,114,118,119,-1,120,121,114,-1,122,123,114,-1,124,113,114,-1,125,21,90,-1,125,126,21,-1,127,128,129,-1,130,131,132,-1,130,133,131,-1,47,134,45,-1,47,135,134,-1,136,137,138,-1,136,139,137,-1,140,141,142,-1,140,143,141,-1,144,9,8,-1,8,142,144,-1,145,146,139,-1,139,136,145,-1,147,148,149,-1,148,150,149,-1,151,152,4,-1,152,5,4,-1,55,57,83,-1,82,153,83,-1,154,155,83,-1,156,15,14,-1,157,156,14,-1,68,61,14,-1,158,68,14,-1,34,159,160,-1,34,36,159,-1,152,151,161,-1,161,162,152,-1,38,163,164,-1,38,165,163,-1,166,167,168,-1,58,169,170,-1,170,171,58,-1,20,172,66,-1,70,173,62,-1,70,174,173,-1,175,176,177,-1,177,178,175,-1,178,179,175,-1,178,180,179,-1,54,181,182,-1,182,52,54,-1,58,171,72,-1,72,87,58,-1,12,183,184,-1,184,13,12,-1,166,89,167,-1,38,160,165,-1,38,34,160,-1,185,186,187,-1,187,188,185,-1,30,188,31,-1,30,185,188,-1,60,189,14,-1,14,190,158,-1,189,157,14,-1,191,192,193,-1,192,194,193,-1,155,195,196,-1,76,197,83,-1,153,154,83,-1,57,84,83,-1,197,55,83,-1,86,198,82,-1,83,155,76,-1,199,56,3,-1,21,33,22,-1,21,200,33,-1,201,148,147,-1,148,202,150,-1,202,203,150,-1,47,203,40,-1,134,204,205,-1,111,206,112,-1,111,43,206,-1,113,115,114,-1,114,123,124,-1,114,121,122,-1,119,120,114,-1,117,118,114,-1,110,116,114,-1,207,208,113,-1,173,183,66,-1,173,209,183,-1,105,107,210,-1,79,106,77,-1,211,113,208,-1,211,115,113,-1,41,203,212,-1,41,40,203,-1,95,97,24,-1,24,26,95,-1,213,94,96,-1,96,214,213,-1,215,216,217,-1,217,218,215,-1,148,201,202,-1,150,203,47,-1,90,219,125,-1,90,93,219,-1,220,221,133,-1,133,127,220,-1,97,95,23,-1,91,222,92,-1,67,223,224,-1,224,167,67,-1,167,89,67,-1,89,59,67,-1,168,167,224,-1,225,75,74,-1,74,81,225,-1,6,3,56,-1,107,79,78,-1,78,196,107,-1,76,78,74,-1,4,225,151,-1,225,81,151,-1,169,58,56,-1,87,72,71,-1,71,86,87,-1,226,223,163,-1,223,164,163,-1,63,62,173,-1,179,65,64,-1,64,227,179,-1,228,229,230,-1,59,61,67,-1,87,57,58,-1,87,84,57,-1,54,53,231,-1,45,50,46,-1,45,134,44,-1,112,207,113,-1,206,43,42,-1,36,35,186,-1,35,187,186,-1,25,27,102,-1,25,28,27,-1,11,10,232,-1,10,31,232,-1,27,30,102,-1,30,32,102,-1,25,102,217,-1,233,205,204,-1,20,17,172,-1,234,68,158,-1,158,235,234,-1,231,17,15,-1,17,16,15,-1,14,16,190,-1,10,13,32,-1,197,76,75,-1,6,225,4,-1,3,5,236,-1,225,197,75,-1,6,197,225,-1,158,232,235,-1,232,158,190,-1,183,18,66,-1,183,12,18,-1,11,190,19,-1,11,232,190,-1,237,101,204,-1,238,101,237,-1,69,223,67,-1,164,223,69,-1,171,239,174,-1,239,171,170,-1,136,240,202,-1,136,138,240,-1,191,169,241,-1,191,170,169,-1,233,42,205,-1,233,206,42,-1,33,29,28,-1,33,200,29,-1,233,112,206,-1,112,233,207,-1,43,242,48,-1,242,43,111,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal2_Geo_5_673_coordIndex_2()
		{
			int[] value = {228,243,229,-1,243,228,244,-1,245,246,176,-1,245,247,246,-1,227,175,179,-1,175,227,248,-1,249,151,81,-1,161,151,249,-1,56,197,6,-1,55,197,56,-1,53,63,172,-1,53,64,63,-1,156,181,54,-1,181,156,157,-1,157,250,181,-1,250,157,189,-1,251,252,198,-1,251,253,252,-1,196,210,107,-1,196,195,210,-1,223,230,224,-1,230,223,226,-1,17,190,16,-1,17,19,190,-1,127,254,220,-1,254,127,129,-1,45,43,50,-1,45,44,43,-1,255,128,130,-1,128,255,256,-1,48,257,132,-1,48,242,257,-1,211,100,99,-1,100,211,208,-1,258,259,260,-1,259,258,109,-1,94,261,222,-1,261,94,213,-1,256,129,128,-1,262,129,256,-1,47,149,150,-1,149,47,46,-1,263,3,236,-1,263,199,3,-1,221,201,147,-1,221,145,201,-1,263,240,264,-1,212,240,263,-1,217,103,218,-1,103,217,102,-1,96,215,214,-1,215,96,216,-1,162,159,265,-1,160,159,162,-1,266,103,104,-1,266,267,103,-1,135,204,134,-1,237,204,135,-1,80,81,78,-1,81,80,249,-1,209,184,183,-1,209,268,184,-1,219,116,258,-1,116,219,117,-1,119,222,261,-1,118,222,119,-1,118,92,222,-1,121,262,256,-1,120,262,121,-1,257,122,255,-1,122,257,123,-1,269,98,270,-1,99,98,269,-1,271,260,259,-1,271,272,260,-1,254,213,214,-1,254,129,213,-1,133,147,131,-1,147,133,221,-1,46,49,149,-1,49,46,50,-1,203,240,212,-1,202,240,203,-1,185,27,7,-1,185,30,27,-1,159,144,273,-1,159,36,144,-1,2,265,274,-1,2,275,265,-1,0,276,238,-1,277,276,0,-1,274,141,277,-1,274,273,141,-1,200,51,29,-1,200,278,51,-1,279,215,218,-1,215,279,280,-1,220,145,221,-1,220,146,145,-1,276,270,98,-1,276,143,270,-1,272,140,281,-1,272,271,140,-1,278,21,126,-1,278,200,21,-1,95,216,96,-1,95,26,216,-1,280,214,215,-1,280,254,214,-1,154,195,155,-1,195,154,282,-1,199,169,56,-1,199,241,169,-1,153,198,252,-1,198,153,82,-1,5,275,236,-1,5,152,275,-1,234,69,68,-1,234,37,69,-1,266,193,194,-1,193,266,268,-1,235,31,188,-1,232,31,235,-1,234,188,187,-1,235,188,234,-1,165,162,161,-1,165,160,162,-1,228,77,106,-1,230,77,228,-1,168,243,166,-1,168,229,243,-1,239,268,209,-1,239,193,268,-1,231,172,17,-1,53,172,231,-1,65,180,73,-1,180,65,179,-1,246,105,283,-1,244,105,246,-1,251,180,178,-1,251,85,180,-1,284,181,250,-1,284,182,181,-1,248,52,182,-1,52,248,227,-1,285,89,166,-1,88,89,285,-1,283,176,246,-1,283,177,176,-1,250,285,284,-1,250,88,285,-1,218,267,279,-1,218,103,267,-1,192,137,194,-1,138,137,192,-1,267,194,137,-1,267,266,194,-1,284,247,245,-1,284,285,247,-1,245,182,284,-1,245,248,182,-1,285,243,247,-1,285,166,243,-1,178,253,251,-1,253,178,177,-1,71,180,85,-1,71,73,180,-1,177,286,253,-1,283,286,177,-1,210,283,105,-1,210,286,283,-1,227,53,52,-1,53,227,64,-1,172,173,66,-1,173,172,63,-1,209,174,239,-1,174,209,173,-1,193,170,191,-1,170,193,239,-1,244,106,105,-1,228,106,244,-1,229,224,230,-1,229,168,224,-1,163,161,249,-1,163,165,161,-1,187,37,234,-1,187,35,37,-1,275,162,265,-1,275,152,162,-1,13,104,32,-1,184,104,13,-1,282,153,252,-1,153,282,154,-1,254,146,220,-1,146,254,280,-1,281,126,272,-1,281,278,126,-1,143,271,270,-1,143,140,271,-1,238,98,101,-1,238,276,98,-1,280,139,146,-1,279,139,280,-1,217,26,25,-1,26,217,216,-1,7,29,51,-1,7,27,29,-1,281,142,8,-1,281,140,142,-1,142,273,144,-1,142,141,273,-1,143,277,141,-1,143,276,277,-1,0,274,277,-1,0,2,274,-1,273,265,159,-1,274,265,273,-1,212,236,41,-1,212,263,236,-1,7,186,185,-1,186,7,9,-1,137,279,267,-1,139,279,137,-1,132,49,48,-1,131,49,132,-1,128,133,130,-1,133,128,127,-1,149,131,147,-1,149,49,131,-1,222,23,94,-1,222,91,23,-1,125,272,126,-1,125,260,272,-1,259,270,271,-1,269,270,259,-1,242,123,257,-1,123,242,124,-1,122,256,255,-1,121,256,122,-1,120,261,262,-1,119,261,120,-1,93,117,219,-1,117,92,118,-1,93,92,117,-1,258,110,109,-1,110,258,116,-1,110,211,108,-1,115,211,110,-1,155,78,76,-1,78,155,196,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal2_Geo_5_673_coordIndex_3()
		{
			int[] value = {264,199,263,-1,264,241,199,-1,1,135,39,-1,1,237,135,-1,268,104,184,-1,268,266,104,-1,202,145,136,-1,145,202,201,-1,41,275,2,-1,275,41,236,-1,109,269,259,-1,269,109,108,-1,125,258,260,-1,125,219,258,-1,108,99,269,-1,99,108,211,-1,208,233,100,-1,233,208,207,-1,132,255,130,-1,132,257,255,-1,262,213,129,-1,213,262,261,-1,23,93,90,-1,23,91,93,-1,195,286,210,-1,282,286,195,-1,226,77,230,-1,77,226,80,-1,286,252,253,-1,286,282,252,-1,189,88,250,-1,88,189,60,-1,85,198,86,-1,85,251,198,-1,15,54,231,-1,54,15,156,-1,65,70,62,-1,65,73,70,-1,226,249,80,-1,226,163,249,-1,248,176,175,-1,248,245,176,-1,247,244,246,-1,247,243,244,-1,278,8,51,-1,278,281,8,-1,124,111,113,-1,124,242,111,-1,205,44,134,-1,205,42,44,-1,264,138,192,-1,264,240,138,-1,192,241,264,-1,192,191,241,-1,171,70,72,-1,174,70,171,-1,47,39,135,-1,39,47,40,-1,37,164,69,-1,38,164,37,-1,9,36,186,-1,144,36,9,-1,97,33,24,-1,33,97,22,-1,204,100,233,-1,204,101,100,-1,0,237,1,-1,0,238,237,-1,12,19,18,-1,12,11,19,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal2_Geo_5_673_normalIndex_1()
		{
			int[] value = {174,156,150,-1,106,135,143,-1,106,86,135,-1,254,269,267,-1,125,142,65,-1,65,88,125,-1,258,223,239,-1,154,91,160,-1,154,103,91,-1,215,177,153,-1,124,78,64,-1,201,163,230,-1,194,222,107,-1,222,125,107,-1,124,163,78,-1,124,193,163,-1,271,283,284,-1,271,280,283,-1,271,249,280,-1,140,118,102,-1,162,145,155,-1,138,115,122,-1,126,93,145,-1,93,123,145,-1,246,269,254,-1,25,58,95,-1,75,52,56,-1,52,80,56,-1,263,243,259,-1,243,258,259,-1,128,104,84,-1,84,112,128,-1,103,98,91,-1,279,268,285,-1,132,43,83,-1,132,101,43,-1,121,87,85,-1,210,137,188,-1,210,229,137,-1,121,137,190,-1,60,77,51,-1,43,14,19,-1,30,19,51,-1,19,60,51,-1,187,263,226,-1,187,243,263,-1,153,189,215,-1,152,159,161,-1,130,153,94,-1,94,66,130,-1,177,131,153,-1,150,140,102,-1,150,156,140,-1,236,241,231,-1,231,198,236,-1,99,107,50,-1,107,70,50,-1,268,279,259,-1,185,211,188,-1,188,148,185,-1,195,179,147,-1,182,199,192,-1,184,173,147,-1,133,139,184,-1,184,170,196,-1,209,219,184,-1,216,208,184,-1,200,192,184,-1,227,215,189,-1,227,248,215,-1,36,81,92,-1,74,45,108,-1,74,22,45,-1,122,180,138,-1,122,149,180,-1,2,21,3,-1,2,12,21,-1,281,261,277,-1,281,257,261,-1,278,267,269,-1,269,277,278,-1,0,16,12,-1,12,2,0,-1,11,13,63,-1,13,69,63,-1,203,167,135,-1,167,143,135,-1,75,56,77,-1,60,62,77,-1,72,89,77,-1,207,223,258,-1,204,207,258,-1,268,259,258,-1,256,268,258,-1,271,255,237,-1,271,284,255,-1,167,203,221,-1,221,202,167,-1,249,235,252,-1,249,234,235,-1,183,250,224,-1,80,20,28,-1,28,100,80,-1,103,96,98,-1,132,105,128,-1,132,110,105,-1,71,117,113,-1,113,59,71,-1,59,53,71,-1,59,54,53,-1,95,97,23,-1,23,25,95,-1,80,100,83,-1,83,30,80,-1,65,68,67,-1,67,88,65,-1,183,226,250,-1,249,237,234,-1,249,271,237,-1,266,274,275,-1,275,265,266,-1,194,265,222,-1,194,266,265,-1,243,218,258,-1,258,247,256,-1,218,204,258,-1,15,4,37,-1,4,24,37,-1,89,109,116,-1,85,82,77,-1,62,72,77,-1,56,51,77,-1,82,75,77,-1,19,17,60,-1,77,89,85,-1,35,52,106,-1,215,193,177,-1,215,233,193,-1,1,13,11,-1,13,7,69,-1,7,57,69,-1,122,57,118,-1,180,191,181,-1,182,175,199,-1,182,145,175,-1,192,173,184,-1,184,208,200,-1,184,219,216,-1,196,209,184,-1,139,170,184,-1,147,133,184,-1,228,225,192,-1,105,68,98,-1,105,61,68,-1,185,148,141,-1,188,211,210,-1,213,192,225,-1,213,173,192,-1,102,57,42,-1,102,118,57,-1,94,131,124,-1,124,64,94,-1,111,130,66,-1,66,41,111,-1,29,33,44,-1,44,47,29,-1,13,1,7,-1,69,57,122,-1,189,157,227,-1,189,161,157,-1,18,5,22,-1,22,36,18,-1,131,94,153,-1,152,158,159,-1,279,270,272,-1,272,250,279,-1,250,226,279,-1,226,263,279,-1,224,250,272,-1,120,87,121,-1,121,190,120,-1,86,106,52,-1,148,188,137,-1,137,116,148,-1,85,137,121,-1,135,120,203,-1,120,190,203,-1,20,80,52,-1,30,83,43,-1,43,19,30,-1,244,270,235,-1,270,252,235,-1,104,128,105,-1,53,112,84,-1,84,26,53,-1,214,217,245,-1,263,259,279,-1,30,56,80,-1,30,51,56,-1,95,58,134,-1,138,123,115,-1,138,180,155,-1,199,228,192,-1,175,145,162,-1,284,283,274,-1,283,275,274,-1,78,201,99,-1,78,163,201,-1,142,125,240,-1,125,222,240,-1,201,194,99,-1,194,107,99,-1,78,99,44,-1,206,181,191,-1,103,154,96,-1,276,268,256,-1,256,260,276,-1,134,154,223,-1,154,239,223,-1,258,239,247,-1,125,88,107,-1,82,85,87,-1,86,120,135,-1,106,143,90,-1,120,82,87,-1,86,82,120,-1,256,240,260,-1,240,256,247,-1,68,91,98,-1,68,65,91,-1,142,247,160,-1,142,240,247,-1,176,198,191,-1,186,198,176,-1,285,270,279,-1,252,270,285,-1,100,55,110,-1,55,100,28,-1,2,8,7,-1,2,3,8,-1,15,20,10,-1,15,28,20,-1,206,162,181,-1,206,175,162,-1,193,230,163,-1,193,233,230,-1,206,199,175,-1,199,206,228,-1,145,169,126,-1,169,145,182,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal2_Geo_5_673_normalIndex_2()
		{
			int[] value = {214,172,217,-1,172,214,178,-1,79,136,117,-1,79,119,136,-1,26,71,53,-1,71,26,27,-1,232,203,190,-1,221,203,232,-1,52,82,86,-1,75,82,52,-1,58,104,96,-1,58,84,104,-1,207,97,95,-1,97,207,204,-1,204,127,97,-1,127,204,218,-1,6,39,17,-1,6,32,39,-1,116,141,148,-1,116,109,141,-1,270,245,272,-1,245,270,244,-1,154,247,239,-1,154,160,247,-1,36,34,18,-1,34,36,92,-1,138,145,123,-1,138,155,145,-1,151,81,74,-1,81,151,166,-1,126,168,108,-1,126,169,168,-1,213,231,241,-1,231,213,225,-1,165,253,251,-1,253,165,179,-1,130,164,158,-1,164,130,111,-1,166,92,81,-1,171,92,166,-1,122,63,69,-1,63,122,115,-1,31,106,90,-1,31,35,106,-1,5,1,11,-1,5,0,1,-1,31,8,9,-1,42,8,31,-1,44,50,47,-1,50,44,99,-1,66,29,41,-1,29,66,33,-1,202,255,197,-1,237,255,202,-1,49,50,70,-1,49,48,50,-1,149,191,180,-1,176,191,149,-1,229,190,137,-1,190,229,232,-1,61,67,68,-1,61,46,67,-1,157,133,165,-1,133,157,139,-1,196,158,164,-1,170,158,196,-1,170,159,158,-1,219,171,166,-1,209,171,219,-1,168,216,151,-1,216,168,208,-1,238,236,264,-1,241,236,238,-1,286,251,253,-1,286,282,251,-1,34,111,41,-1,34,92,111,-1,22,11,45,-1,11,22,5,-1,115,93,63,-1,93,115,123,-1,57,8,42,-1,7,8,57,-1,266,201,254,-1,266,194,201,-1,255,278,262,-1,255,284,278,-1,150,197,205,-1,150,144,197,-1,174,220,186,-1,212,220,174,-1,205,261,212,-1,205,262,261,-1,233,246,230,-1,233,242,246,-1,40,29,47,-1,29,40,38,-1,18,0,5,-1,18,16,0,-1,220,264,236,-1,220,257,264,-1,282,281,273,-1,282,286,281,-1,242,215,248,-1,242,233,215,-1,94,33,66,-1,94,64,33,-1,38,41,29,-1,38,34,41,-1,72,109,89,-1,109,72,73,-1,35,20,52,-1,35,10,20,-1,62,17,39,-1,17,62,60,-1,143,144,90,-1,143,167,144,-1,276,285,268,-1,276,280,285,-1,49,37,24,-1,37,49,46,-1,260,222,265,-1,240,222,260,-1,276,265,275,-1,260,265,276,-1,234,202,221,-1,234,237,202,-1,214,210,211,-1,245,210,214,-1,224,172,183,-1,224,217,172,-1,55,46,61,-1,55,37,46,-1,134,96,154,-1,58,96,134,-1,112,54,101,-1,54,112,53,-1,136,185,146,-1,178,185,136,-1,6,54,59,-1,6,14,54,-1,76,97,127,-1,76,23,97,-1,27,25,23,-1,25,27,26,-1,129,226,183,-1,187,226,129,-1,146,117,136,-1,146,113,117,-1,127,129,76,-1,127,187,129,-1,47,48,40,-1,47,50,48,-1,4,21,24,-1,3,21,4,-1,48,24,21,-1,48,49,24,-1,76,119,79,-1,76,129,119,-1,79,23,76,-1,79,27,23,-1,129,172,119,-1,129,183,172,-1,59,32,6,-1,32,59,113,-1,43,54,14,-1,43,101,54,-1,113,114,32,-1,146,114,113,-1,141,146,185,-1,141,114,146,-1,26,58,25,-1,58,26,84,-1,96,105,98,-1,105,96,104,-1,61,110,55,-1,110,61,105,-1,37,28,15,-1,28,37,55,-1,178,211,185,-1,214,211,178,-1,217,272,245,-1,217,224,272,-1,235,221,232,-1,235,234,221,-1,275,280,276,-1,275,283,280,-1,144,202,197,-1,144,167,202,-1,88,70,107,-1,67,70,88,-1,73,62,39,-1,62,73,72,-1,34,16,18,-1,16,34,38,-1,273,248,282,-1,273,242,248,-1,257,286,264,-1,257,281,286,-1,186,236,198,-1,186,220,236,-1,38,12,16,-1,40,12,38,-1,44,64,78,-1,64,44,33,-1,254,230,246,-1,254,201,230,-1,273,277,269,-1,273,281,277,-1,277,262,278,-1,277,261,262,-1,257,212,261,-1,257,220,212,-1,174,205,212,-1,174,150,205,-1,262,197,255,-1,205,197,262,-1,42,90,102,-1,42,31,90,-1,254,274,266,-1,274,254,267,-1,21,40,48,-1,12,40,21,-1,108,93,126,-1,45,93,108,-1,81,22,74,-1,22,81,36,-1,63,45,11,-1,63,93,45,-1,158,153,130,-1,158,152,153,-1,227,282,248,-1,227,251,282,-1,253,264,286,-1,238,264,253,-1,169,208,168,-1,208,169,200,-1,216,166,151,-1,219,166,216,-1,209,164,171,-1,196,164,209,-1,161,139,157,-1,139,159,170,-1,161,159,139,-1,165,147,179,-1,147,165,133,-1,147,213,195,-1,173,213,147,-1,89,137,85,-1,137,89,116,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal2_Geo_5_673_normalIndex_3()
		{
			int[] value = {9,35,31,-1,9,10,35,-1,156,149,140,-1,156,176,149,-1,46,70,67,-1,46,49,70,-1,7,0,2,-1,0,7,1,-1,102,144,150,-1,144,102,90,-1,179,238,253,-1,238,179,195,-1,227,165,251,-1,227,157,165,-1,195,241,238,-1,241,195,213,-1,225,206,231,-1,206,225,228,-1,108,151,74,-1,108,168,151,-1,171,111,92,-1,111,171,164,-1,153,161,189,-1,153,152,161,-1,109,114,141,-1,73,114,109,-1,244,210,245,-1,210,244,229,-1,114,39,32,-1,114,73,39,-1,218,187,127,-1,187,218,243,-1,14,17,19,-1,14,6,17,-1,223,95,134,-1,95,223,207,-1,112,132,128,-1,112,101,132,-1,244,232,229,-1,244,235,232,-1,27,117,71,-1,27,79,117,-1,119,178,136,-1,119,172,178,-1,242,269,246,-1,242,273,269,-1,200,182,192,-1,200,169,182,-1,181,155,180,-1,181,162,155,-1,9,3,4,-1,9,8,3,-1,4,10,9,-1,4,15,10,-1,100,132,83,-1,110,132,100,-1,122,140,149,-1,140,122,118,-1,280,252,285,-1,249,252,280,-1,267,284,274,-1,278,284,267,-1,131,193,124,-1,193,131,177,-1,191,231,206,-1,191,198,231,-1,174,176,156,-1,174,186,176,-1,65,160,91,-1,65,142,160,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal3_Geo_5_679_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,8,9,6,-1,10,11,12,-1,13,14,15,-1,16,17,18,-1,19,20,21,-1,22,23,24,-1,22,5,23,-1,4,25,5,-1,26,27,28,-1,26,29,27,-1,30,31,32,-1,31,33,32,-1,26,34,35,-1,36,37,38,-1,36,39,37,-1,40,41,42,-1,40,43,41,-1,44,45,46,-1,47,48,46,-1,45,49,46,-1,50,51,46,-1,52,47,46,-1,53,54,46,-1,55,56,46,-1,48,57,46,-1,58,44,46,-1,59,60,61,-1,59,62,60,-1,63,64,65,-1,66,67,68,-1,66,64,67,-1,69,70,71,-1,72,73,74,-1,72,75,73,-1,76,77,62,-1,78,79,80,-1,80,81,78,-1,82,83,84,-1,84,85,82,-1,86,87,4,-1,86,88,87,-1,89,90,91,-1,89,16,90,-1,41,9,92,-1,9,8,92,-1,33,93,32,-1,33,94,93,-1,95,17,16,-1,96,5,22,-1,96,3,5,-1,97,98,99,-1,98,100,99,-1,101,102,67,-1,67,103,101,-1,104,105,60,-1,105,106,60,-1,107,31,35,-1,23,5,25,-1,104,108,109,-1,104,77,108,-1,31,30,35,-1,34,110,35,-1,111,112,35,-1,113,114,115,-1,116,117,113,-1,113,115,118,-1,12,33,10,-1,12,94,33,-1,119,120,11,-1,121,122,123,-1,121,124,122,-1,0,125,126,-1,0,127,125,-1,83,80,84,-1,83,128,80,-1,129,0,82,-1,129,127,0,-1,118,25,113,-1,117,130,113,-1,25,116,113,-1,113,131,114,-1,130,131,113,-1,25,87,116,-1,25,4,87,-1,132,133,134,-1,135,136,137,-1,135,138,136,-1,112,139,35,-1,110,111,35,-1,29,26,35,-1,139,107,35,-1,140,141,142,-1,143,144,145,-1,145,146,143,-1,68,67,102,-1,102,147,68,-1,90,18,19,-1,90,16,18,-1,148,84,28,-1,148,85,84,-1,149,138,150,-1,149,136,138,-1,24,151,22,-1,151,126,22,-1,79,28,80,-1,28,84,80,-1,152,153,85,-1,85,148,152,-1,138,71,150,-1,71,154,150,-1,70,154,71,-1,70,155,154,-1,156,48,47,-1,156,157,48,-1,56,53,46,-1,54,52,46,-1,49,158,46,-1,57,50,46,-1,158,55,46,-1,29,35,30,-1,86,3,159,-1,86,4,3,-1,160,86,159,-1,18,17,134,-1,58,46,51,-1,21,90,19,-1,11,161,119,-1,3,96,7,-1,7,6,3,-1,94,12,162,-1,163,164,133,-1,165,166,167,-1,168,166,165,-1,169,168,170,-1,166,168,169,-1,171,172,173,-1,171,174,172,-1,142,175,140,-1,142,176,175,-1,177,178,179,-1,177,15,178,-1,164,134,133,-1,134,164,179,-1,180,162,12,-1,162,180,181,-1,120,12,11,-1,120,180,12,-1,20,18,178,-1,20,19,18,-1,78,34,79,-1,110,34,78,-1,182,111,183,-1,112,111,182,-1,107,184,10,-1,107,139,184,-1,93,27,32,-1,185,27,93,-1,137,186,187,-1,137,188,186,-1,54,189,190,-1,189,54,53,-1,156,52,191,-1,156,47,52,-1,51,192,193,-1,192,51,50,-1,194,45,108,-1,194,49,45,-1,195,158,196,-1,195,55,158,-1,189,97,197,-1,198,97,189,-1,42,92,199,-1,42,41,92,-1,200,201,202,-1,200,203,201,-1,154,204,205,-1,155,204,154,-1,206,207,208,-1,207,206,209,-1,210,211,212,-1,213,211,210,-1,214,215,216,-1,214,217,215,-1,218,219,220,-1,219,218,221,-1,149,152,136,-1,152,149,153,-1,27,148,28,-1,27,185,148,-1,182,222,223,-1,182,183,222,-1,151,0,126,-1,0,151,1,-1,224,225,226,-1,224,227,225,-1,24,228,229,-1,23,228,24,-1,230,231,232,-1,230,233,231,-1,221,70,219,-1,155,70,221,-1,161,10,184,-1,161,11,10,-1,234,235,236,-1,234,237,235,-1,238,145,144,-1,238,197,145,-1,239,240,241,-1,239,242,240,-1,147,240,243,-1,147,102,240,-1,242,143,244,-1,143,242,144,-1,245,145,99,-1,245,146,145,-1,246,247,248,-1,246,142,247,-1,213,249,250,-1,249,213,214,-1,23,118,228,-1,23,25,118,-1,224,114,227,-1,224,115,114,-1,251,166,169,-1,166,251,252,-1,173,253,254,-1,173,170,253,-1,163,255,256,-1,163,257,255,-1,258,235,259,-1,258,100,235,-1,191,238,239,-1,238,191,190,-1,101,156,241,-1,101,157,156,-1,192,103,63,-1,103,192,260,-1,261,262,193,-1,261,105,262,-1,236,194,234,-1,236,196,194,-1,59,263,218,-1,59,61,263,-1,264,265,266,-1,264,267,265,-1,268,66,68,-1,232,66,268,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal3_Geo_5_679_coordIndex_2()
		{
			int[] value = {243,269,147,-1,269,243,270,-1,244,270,243,-1,244,271,270,-1,272,143,146,-1,143,272,273,-1,274,275,276,-1,220,275,274,-1,277,259,278,-1,277,258,259,-1,259,237,276,-1,235,237,259,-1,62,274,76,-1,62,59,274,-1,265,106,279,-1,106,265,267,-1,219,69,280,-1,70,69,219,-1,281,206,135,-1,209,206,281,-1,69,282,280,-1,69,208,282,-1,208,283,282,-1,208,207,283,-1,277,284,285,-1,284,277,283,-1,284,272,285,-1,284,250,272,-1,284,213,250,-1,284,211,213,-1,212,246,210,-1,286,246,212,-1,287,271,288,-1,287,270,271,-1,216,249,214,-1,216,288,249,-1,289,270,287,-1,270,289,269,-1,37,43,74,-1,39,43,37,-1,201,290,124,-1,290,201,203,-1,204,291,202,-1,292,291,204,-1,199,293,233,-1,293,199,200,-1,72,294,289,-1,40,294,72,-1,232,294,230,-1,232,268,294,-1,266,291,264,-1,291,266,293,-1,264,292,263,-1,292,264,291,-1,175,93,94,-1,175,186,93,-1,176,186,175,-1,176,187,186,-1,281,176,286,-1,176,281,187,-1,226,295,229,-1,226,296,295,-1,86,132,88,-1,86,160,132,-1,95,116,87,-1,95,117,116,-1,89,130,16,-1,89,131,130,-1,227,131,89,-1,227,114,131,-1,257,37,255,-1,38,37,257,-1,160,257,132,-1,160,38,257,-1,74,255,37,-1,255,74,73,-1,132,163,133,-1,257,163,132,-1,142,297,247,-1,142,141,297,-1,290,7,298,-1,8,7,290,-1,96,298,7,-1,96,125,298,-1,123,127,129,-1,127,123,122,-1,153,82,85,-1,153,129,82,-1,295,1,151,-1,295,174,1,-1,83,171,128,-1,2,171,83,-1,171,254,128,-1,171,173,254,-1,253,223,222,-1,253,299,223,-1,299,161,223,-1,161,299,119,-1,172,295,296,-1,295,172,174,-1,167,252,21,-1,167,166,252,-1,205,150,154,-1,205,121,150,-1,121,201,124,-1,121,205,201,-1,21,91,90,-1,21,252,91,-1,252,225,91,-1,252,251,225,-1,168,119,299,-1,168,165,119,-1,254,222,81,-1,254,253,222,-1,80,254,81,-1,80,128,254,-1,125,22,126,-1,96,22,125,-1,123,153,149,-1,123,129,153,-1,125,122,298,-1,125,127,122,-1,298,124,290,-1,298,122,124,-1,149,121,123,-1,150,121,149,-1,165,120,119,-1,120,165,13,-1,297,179,164,-1,177,179,297,-1,162,141,140,-1,162,181,141,-1,164,247,297,-1,163,247,164,-1,248,163,256,-1,248,247,163,-1,286,142,246,-1,286,176,142,-1,160,36,38,-1,159,36,160,-1,130,95,16,-1,95,130,117,-1,134,88,132,-1,134,17,88,-1,188,136,152,-1,188,137,136,-1,152,185,188,-1,185,152,148,-1,221,263,292,-1,221,218,263,-1,266,233,293,-1,233,266,231,-1,289,268,269,-1,294,268,289,-1,40,230,294,-1,230,40,42,-1,293,202,291,-1,293,200,202,-1,155,292,204,-1,221,292,155,-1,92,290,203,-1,290,92,8,-1,289,75,72,-1,75,289,287,-1,288,75,287,-1,216,75,288,-1,288,273,249,-1,273,288,271,-1,256,217,248,-1,256,215,217,-1,283,211,284,-1,207,211,283,-1,273,250,249,-1,250,273,272,-1,209,286,212,-1,281,286,209,-1,283,278,282,-1,283,277,278,-1,275,282,278,-1,282,275,280,-1,71,135,206,-1,135,71,138,-1,280,220,219,-1,280,275,220,-1,300,279,65,-1,265,279,300,-1,60,267,61,-1,106,267,60,-1,76,276,237,-1,76,274,276,-1,285,258,277,-1,245,258,285,-1,276,278,259,-1,275,278,276,-1,146,285,272,-1,146,245,285,-1,273,244,143,-1,244,273,271,-1,268,147,269,-1,68,147,268,-1,65,261,63,-1,65,279,261,-1,265,231,266,-1,265,300,231,-1,61,264,263,-1,61,267,264,-1,56,195,198,-1,195,56,55,-1,108,234,194,-1,77,234,108,-1,109,105,104,-1,105,109,262,-1,193,63,261,-1,63,193,192,-1,103,157,101,-1,103,260,157,-1,191,241,156,-1,239,241,191,-1,197,190,189,-1,197,238,190,-1,251,226,225,-1,296,226,251,-1,73,256,255,-1,256,73,215,-1,170,299,253,-1,170,168,299,-1,296,169,172,-1,169,296,251,-1,228,115,224,-1,228,118,115,-1,151,229,295,-1,151,24,229,-1,248,210,246,-1,217,210,248,-1,245,100,258,-1,245,99,100,-1,242,243,240,-1,244,243,242,-1,237,77,76,-1,77,237,234,-1,105,279,106,-1,105,261,279,-1,102,241,240,-1,101,241,102,-1,239,144,242,-1,239,238,144,-1,197,99,145,-1,197,97,99,-1,100,236,235,-1,100,98,236,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal3_Geo_5_679_coordIndex_3()
		{
			int[] value = {6,159,3,-1,159,6,36,-1,177,141,181,-1,177,297,141,-1,300,232,231,-1,300,66,232,-1,230,199,233,-1,199,230,42,-1,36,9,39,-1,9,36,6,-1,229,224,226,-1,228,224,229,-1,227,91,225,-1,227,89,91,-1,17,87,88,-1,17,95,87,-1,2,82,0,-1,82,2,83,-1,81,183,78,-1,183,81,222,-1,184,223,161,-1,184,182,223,-1,59,220,274,-1,59,218,220,-1,74,40,72,-1,43,40,74,-1,216,73,75,-1,216,215,73,-1,213,217,214,-1,213,210,217,-1,207,212,211,-1,207,209,212,-1,71,208,69,-1,208,71,206,-1,202,205,204,-1,202,201,205,-1,203,199,92,-1,200,199,203,-1,98,196,236,-1,98,195,196,-1,198,98,97,-1,198,195,98,-1,103,64,63,-1,64,103,67,-1,65,66,300,-1,64,66,65,-1,104,62,77,-1,62,104,60,-1,196,49,194,-1,196,158,49,-1,44,108,45,-1,109,108,44,-1,58,193,262,-1,58,51,193,-1,50,260,192,-1,260,50,57,-1,52,190,191,-1,190,52,54,-1,53,198,189,-1,198,53,56,-1,260,48,157,-1,57,48,260,-1,262,44,58,-1,44,262,109,-1,39,41,43,-1,39,9,41,-1,135,187,281,-1,135,137,187,-1,188,93,186,-1,188,185,93,-1,29,32,27,-1,29,30,32,-1,33,107,10,-1,33,31,107,-1,139,182,184,-1,139,112,182,-1,183,110,78,-1,111,110,183,-1,79,26,28,-1,34,26,79,-1,21,14,167,-1,21,20,14,-1,178,14,20,-1,15,14,178,-1,94,140,175,-1,140,94,162,-1,134,178,18,-1,179,178,134,-1,15,181,180,-1,181,15,177,-1,2,174,171,-1,174,2,1,-1,170,172,169,-1,170,173,172,-1,13,167,14,-1,13,165,167,-1,13,180,120,-1,15,180,13,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal3_Geo_5_679_normalIndex_1()
		{
			int[] value = {116,122,131,-1,159,205,192,-1,155,90,40,-1,40,100,155,-1,146,156,221,-1,208,212,275,-1,201,271,261,-1,209,214,96,-1,145,166,137,-1,145,192,166,-1,205,189,192,-1,88,84,72,-1,88,87,84,-1,82,99,105,-1,99,148,105,-1,88,98,95,-1,173,186,227,-1,173,157,186,-1,147,118,102,-1,147,151,118,-1,235,246,218,-1,198,203,218,-1,246,240,218,-1,220,224,218,-1,197,198,218,-1,207,204,218,-1,217,213,218,-1,203,216,218,-1,233,235,218,-1,64,115,62,-1,64,123,115,-1,160,152,134,-1,136,184,175,-1,136,152,184,-1,44,1,25,-1,206,259,174,-1,206,270,259,-1,128,185,123,-1,34,68,67,-1,67,10,34,-1,124,132,91,-1,91,81,124,-1,237,228,205,-1,237,284,228,-1,143,142,71,-1,143,201,142,-1,118,100,41,-1,100,40,41,-1,148,141,105,-1,148,188,141,-1,215,271,201,-1,114,192,145,-1,114,159,192,-1,244,223,257,-1,223,180,257,-1,232,268,184,-1,184,176,232,-1,179,191,115,-1,191,97,115,-1,108,99,95,-1,166,192,189,-1,179,260,254,-1,179,185,260,-1,99,82,95,-1,98,109,95,-1,107,101,95,-1,187,211,196,-1,169,177,187,-1,187,196,182,-1,221,148,146,-1,221,188,148,-1,119,195,156,-1,32,39,37,-1,32,31,39,-1,116,66,125,-1,116,56,66,-1,132,67,91,-1,132,74,67,-1,69,116,124,-1,69,56,116,-1,182,189,187,-1,177,190,187,-1,189,169,187,-1,187,210,211,-1,190,210,187,-1,189,228,169,-1,189,205,228,-1,276,280,279,-1,86,70,113,-1,86,46,70,-1,101,112,95,-1,109,107,95,-1,87,88,95,-1,112,108,95,-1,222,249,242,-1,298,297,293,-1,293,286,298,-1,175,184,268,-1,268,263,175,-1,142,261,209,-1,142,201,261,-1,76,91,72,-1,76,81,91,-1,28,46,9,-1,28,70,46,-1,137,120,145,-1,120,125,145,-1,68,72,67,-1,72,91,67,-1,75,57,81,-1,81,76,75,-1,46,25,9,-1,25,5,9,-1,1,5,25,-1,1,8,5,-1,163,203,198,-1,163,170,203,-1,213,207,218,-1,204,197,218,-1,240,231,218,-1,216,220,218,-1,231,217,218,-1,87,95,82,-1,237,159,193,-1,237,205,159,-1,243,237,193,-1,261,271,279,-1,233,218,224,-1,96,142,209,-1,156,104,119,-1,159,114,90,-1,90,155,159,-1,188,221,219,-1,281,273,280,-1,111,51,93,-1,58,51,111,-1,2,58,17,-1,51,58,2,-1,73,15,30,-1,73,63,15,-1,242,181,222,-1,242,172,181,-1,267,274,272,-1,267,275,274,-1,273,279,280,-1,279,273,272,-1,251,219,221,-1,219,251,255,-1,195,221,156,-1,195,251,221,-1,214,261,274,-1,214,209,261,-1,34,98,68,-1,109,98,34,-1,60,107,35,-1,101,107,60,-1,108,92,146,-1,108,112,92,-1,141,84,105,-1,103,84,141,-1,113,144,140,-1,113,117,144,-1,204,178,171,-1,178,204,207,-1,163,197,162,-1,163,198,197,-1,224,199,226,-1,199,224,220,-1,256,246,260,-1,256,240,246,-1,230,231,250,-1,230,217,231,-1,178,244,262,-1,194,244,178,-1,102,41,42,-1,102,118,41,-1,7,18,14,-1,7,13,18,-1,5,20,23,-1,8,20,5,-1,80,126,79,-1,126,80,129,-1,238,164,165,-1,245,164,238,-1,283,287,289,-1,283,278,287,-1,26,4,24,-1,4,26,12,-1,28,75,70,-1,75,28,57,-1,84,76,72,-1,84,103,76,-1,60,0,52,-1,60,35,0,-1,120,116,125,-1,116,120,122,-1,138,38,48,-1,138,133,38,-1,137,150,89,-1,166,150,137,-1,94,54,110,-1,94,47,54,-1,12,1,4,-1,8,1,12,-1,104,146,92,-1,104,156,146,-1,202,154,225,-1,202,139,154,-1,258,293,297,-1,258,262,293,-1,248,295,247,-1,248,299,295,-1,263,295,296,-1,263,268,295,-1,299,298,300,-1,298,299,297,-1,234,293,257,-1,234,286,293,-1,236,266,277,-1,236,242,266,-1,245,288,253,-1,288,245,283,-1,166,182,150,-1,166,189,182,-1,138,211,133,-1,138,196,211,-1,3,51,2,-1,51,3,45,-1,30,21,33,-1,30,17,21,-1,281,252,285,-1,281,265,252,-1,149,154,121,-1,149,180,154,-1,162,258,248,-1,258,162,171,-1,232,163,247,-1,232,170,163,-1,199,176,160,-1,176,199,183,-1,167,241,226,-1,167,191,241,-1,225,256,202,-1,225,250,256,-1,64,36,26,-1,64,62,36,-1,29,53,22,-1,29,50,53,-1,158,136,175,-1,110,136,158,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal3_Geo_5_679_normalIndex_2()
		{
			int[] value = {296,239,263,-1,239,296,290,-1,300,290,296,-1,300,294,290,-1,269,298,286,-1,298,269,291,-1,65,55,85,-1,24,55,65,-1,135,121,83,-1,135,149,121,-1,121,139,85,-1,154,139,121,-1,123,65,128,-1,123,64,65,-1,53,97,106,-1,97,53,50,-1,4,44,49,-1,1,44,4,-1,130,80,86,-1,129,80,130,-1,44,78,49,-1,44,79,78,-1,79,127,78,-1,79,126,127,-1,135,168,200,-1,168,135,127,-1,168,269,200,-1,168,253,269,-1,168,245,253,-1,168,164,245,-1,165,236,238,-1,161,236,165,-1,282,294,292,-1,282,290,294,-1,289,288,283,-1,289,292,288,-1,229,290,282,-1,290,229,239,-1,186,151,174,-1,157,151,186,-1,18,19,31,-1,19,18,13,-1,20,16,14,-1,27,16,20,-1,42,11,47,-1,11,42,7,-1,206,153,229,-1,147,153,206,-1,110,153,94,-1,110,158,153,-1,22,16,29,-1,16,22,11,-1,29,27,36,-1,27,29,16,-1,181,141,188,-1,181,144,141,-1,172,144,181,-1,172,140,144,-1,130,172,161,-1,172,130,140,-1,48,59,89,-1,48,6,59,-1,237,276,284,-1,237,243,276,-1,215,169,228,-1,215,177,169,-1,143,190,201,-1,143,210,190,-1,133,210,143,-1,133,211,210,-1,265,186,252,-1,227,186,265,-1,243,265,276,-1,243,227,265,-1,174,252,186,-1,252,174,259,-1,276,281,280,-1,265,281,276,-1,242,264,266,-1,242,249,264,-1,19,90,43,-1,40,90,19,-1,114,43,90,-1,114,66,43,-1,37,56,69,-1,56,37,39,-1,57,124,81,-1,57,69,124,-1,59,122,120,-1,59,63,122,-1,132,73,74,-1,131,73,132,-1,73,33,74,-1,73,30,33,-1,21,52,0,-1,21,61,52,-1,61,104,52,-1,104,61,119,-1,15,59,6,-1,59,15,63,-1,93,45,96,-1,93,51,45,-1,23,9,5,-1,23,32,9,-1,32,18,31,-1,32,23,18,-1,96,71,142,-1,96,45,71,-1,45,38,71,-1,45,3,38,-1,58,119,61,-1,58,111,119,-1,33,0,10,-1,33,21,0,-1,67,33,10,-1,67,74,33,-1,66,145,125,-1,114,145,66,-1,37,57,28,-1,37,69,57,-1,66,39,43,-1,66,56,39,-1,43,31,19,-1,43,39,31,-1,28,32,37,-1,9,32,28,-1,111,195,119,-1,195,111,208,-1,264,272,273,-1,267,272,264,-1,219,249,222,-1,219,255,249,-1,273,266,264,-1,281,266,273,-1,277,281,285,-1,277,266,281,-1,161,242,236,-1,161,172,242,-1,243,173,227,-1,193,173,243,-1,190,215,201,-1,215,190,177,-1,279,284,276,-1,279,271,284,-1,117,70,75,-1,117,113,70,-1,75,103,117,-1,103,75,76,-1,12,36,27,-1,12,26,36,-1,22,47,11,-1,47,22,54,-1,229,158,239,-1,153,158,229,-1,147,94,153,-1,94,147,102,-1,11,14,16,-1,11,7,14,-1,8,27,20,-1,12,27,8,-1,41,19,13,-1,19,41,40,-1,229,270,206,-1,270,229,282,-1,292,270,282,-1,289,270,292,-1,292,291,288,-1,291,292,294,-1,285,278,277,-1,285,287,278,-1,127,164,168,-1,126,164,127,-1,291,253,288,-1,253,291,269,-1,129,161,165,-1,130,161,129,-1,127,83,78,-1,127,135,83,-1,55,78,83,-1,78,55,49,-1,25,86,80,-1,86,25,46,-1,49,24,4,-1,49,55,24,-1,77,106,134,-1,53,106,77,-1,115,50,62,-1,97,50,115,-1,128,85,139,-1,128,65,85,-1,200,149,135,-1,234,149,200,-1,85,83,121,-1,55,83,85,-1,286,200,269,-1,286,234,200,-1,291,300,298,-1,300,291,294,-1,158,263,239,-1,175,263,158,-1,134,167,160,-1,134,106,167,-1,53,54,22,-1,53,77,54,-1,62,29,36,-1,62,50,29,-1,213,230,194,-1,230,213,217,-1,260,202,256,-1,185,202,260,-1,254,191,179,-1,191,254,241,-1,226,160,167,-1,160,226,199,-1,176,170,232,-1,176,183,170,-1,162,247,163,-1,248,247,162,-1,262,171,178,-1,262,258,171,-1,3,48,38,-1,6,48,3,-1,259,285,252,-1,285,259,287,-1,17,61,21,-1,17,58,61,-1,6,2,15,-1,2,6,3,-1,150,196,138,-1,150,182,196,-1,120,89,59,-1,120,137,89,-1,277,238,236,-1,278,238,277,-1,234,180,149,-1,234,257,180,-1,299,296,295,-1,300,296,299,-1,139,185,128,-1,185,139,202,-1,191,106,97,-1,191,167,106,-1,268,247,295,-1,232,247,268,-1,248,297,299,-1,248,258,297,-1,262,257,293,-1,262,244,257,-1,180,225,154,-1,180,223,225,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal3_Geo_5_679_normalIndex_3()
		{
			int[] value = {155,193,159,-1,193,155,173,-1,267,249,255,-1,267,264,249,-1,77,110,54,-1,77,136,110,-1,94,42,47,-1,42,94,102,-1,173,100,157,-1,100,173,155,-1,89,138,48,-1,150,138,89,-1,133,71,38,-1,133,143,71,-1,271,228,284,-1,271,215,228,-1,131,124,116,-1,124,131,132,-1,10,35,34,-1,35,10,0,-1,92,52,104,-1,92,60,52,-1,64,24,65,-1,64,26,24,-1,174,147,206,-1,151,147,174,-1,289,259,270,-1,289,287,259,-1,245,278,283,-1,245,238,278,-1,126,165,164,-1,126,129,165,-1,25,79,44,-1,79,25,80,-1,14,23,20,-1,14,18,23,-1,13,42,41,-1,7,42,13,-1,223,250,225,-1,223,230,250,-1,194,223,244,-1,194,230,223,-1,176,152,160,-1,152,176,184,-1,134,136,77,-1,152,136,134,-1,179,123,185,-1,123,179,115,-1,250,240,256,-1,250,231,240,-1,235,260,246,-1,254,260,235,-1,233,226,241,-1,233,224,226,-1,220,183,199,-1,183,220,216,-1,197,171,162,-1,171,197,204,-1,207,194,178,-1,194,207,213,-1,183,203,170,-1,216,203,183,-1,241,235,233,-1,235,241,254,-1,157,118,151,-1,157,100,118,-1,86,140,130,-1,86,113,140,-1,117,141,144,-1,117,103,141,-1,87,105,84,-1,87,82,105,-1,148,108,146,-1,148,99,108,-1,112,60,92,-1,112,101,60,-1,35,109,34,-1,107,109,35,-1,68,88,72,-1,98,88,68,-1,96,212,93,-1,96,214,212,-1,274,212,214,-1,275,212,274,-1,188,222,181,-1,222,188,219,-1,279,274,261,-1,272,274,279,-1,275,255,251,-1,255,275,267,-1,131,63,73,-1,63,131,122,-1,17,15,2,-1,17,30,15,-1,208,93,212,-1,208,111,93,-1,208,251,195,-1,275,251,208,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal4_Geo_5_685_coordIndex_1()
		{
			int[] value = {0,1,2,-1,2,3,0,-1,4,5,6,-1,4,7,8,-1,4,9,10,-1,4,11,12,-1,4,13,14,-1,15,16,3,-1,15,17,16,-1,18,19,20,-1,18,21,19,-1,22,23,24,-1,23,25,24,-1,26,27,28,-1,26,29,27,-1,30,31,32,-1,30,27,31,-1,33,34,35,-1,36,37,38,-1,36,39,37,-1,40,41,42,-1,42,43,40,-1,44,45,46,-1,47,48,46,-1,49,50,46,-1,51,52,46,-1,53,54,46,-1,55,56,46,-1,57,58,46,-1,59,60,61,-1,59,62,60,-1,63,64,65,-1,65,66,63,-1,67,68,69,-1,67,70,68,-1,71,72,73,-1,71,74,72,-1,74,71,75,-1,29,25,23,-1,36,76,39,-1,75,71,77,-1,71,78,77,-1,79,80,81,-1,81,82,79,-1,83,84,85,-1,86,87,31,-1,86,88,87,-1,36,89,76,-1,89,90,76,-1,91,92,93,-1,91,64,92,-1,94,95,96,-1,95,97,96,-1,98,99,100,-1,98,101,99,-1,102,103,104,-1,104,105,102,-1,19,21,106,-1,107,3,16,-1,108,109,110,-1,111,112,110,-1,113,114,110,-1,26,28,110,-1,115,116,90,-1,90,89,115,-1,117,118,119,-1,117,120,118,-1,121,122,123,-1,121,124,122,-1,125,126,127,-1,127,128,125,-1,3,129,130,-1,3,2,129,-1,111,131,132,-1,111,114,131,-1,28,30,113,-1,28,27,30,-1,133,0,107,-1,32,134,135,-1,134,35,135,-1,136,137,138,-1,137,139,138,-1,135,35,132,-1,140,136,138,-1,35,141,33,-1,0,3,107,-1,87,134,32,-1,142,143,134,-1,142,144,143,-1,29,31,27,-1,29,23,31,-1,120,145,146,-1,146,118,120,-1,110,109,26,-1,28,113,110,-1,114,111,110,-1,112,147,110,-1,108,110,147,-1,142,148,149,-1,142,88,148,-1,150,3,130,-1,150,15,3,-1,150,19,15,-1,150,80,19,-1,104,103,151,-1,151,152,104,-1,153,154,155,-1,155,156,153,-1,157,93,92,-1,92,158,157,-1,31,87,32,-1,159,160,161,-1,76,29,39,-1,76,25,29,-1,162,163,102,-1,159,161,164,-1,164,165,159,-1,165,166,167,-1,165,164,166,-1,58,168,46,-1,56,57,46,-1,54,55,46,-1,52,53,46,-1,50,51,46,-1,48,49,46,-1,45,47,46,-1,168,44,46,-1,169,170,34,-1,135,132,131,-1,139,171,138,-1,171,172,138,-1,173,174,121,-1,173,175,174,-1,35,34,170,-1,170,132,35,-1,4,6,13,-1,4,14,11,-1,4,12,9,-1,4,10,7,-1,4,8,5,-1,176,1,0,-1,1,176,172,-1,134,141,35,-1,141,134,143,-1,94,177,178,-1,94,179,177,-1,180,181,95,-1,181,180,182,-1,144,182,183,-1,144,181,182,-1,106,14,17,-1,14,106,11,-1,184,12,21,-1,12,184,9,-1,175,10,174,-1,10,175,7,-1,5,185,133,-1,8,185,5,-1,13,107,16,-1,6,107,13,-1,186,175,173,-1,186,185,175,-1,174,124,121,-1,174,184,124,-1,133,138,0,-1,138,133,140,-1,133,186,140,-1,186,133,185,-1,139,33,171,-1,139,34,33,-1,187,188,189,-1,187,190,188,-1,59,191,63,-1,59,61,191,-1,192,193,194,-1,192,195,193,-1,196,197,198,-1,196,199,197,-1,200,201,202,-1,200,203,201,-1,204,205,206,-1,204,207,205,-1,208,45,209,-1,45,208,47,-1,50,204,210,-1,49,204,50,-1,52,211,212,-1,51,211,52,-1,53,213,54,-1,53,214,213,-1,215,55,216,-1,55,215,56,-1,58,91,93,-1,57,91,58,-1,217,168,157,-1,168,217,44,-1,105,166,218,-1,167,166,105,-1,219,161,160,-1,219,220,161,-1,158,191,221,-1,158,92,191,-1,162,222,163,-1,162,206,222,-1,102,218,162,-1,218,102,105,-1,222,205,223,-1,206,205,222,-1,103,224,151,-1,224,103,225,-1,226,224,200,-1,226,73,224,-1,227,228,229,-1,230,228,227,-1,231,232,233,-1,232,231,234,-1,155,235,236,-1,235,155,237,-1,41,154,238,-1,40,154,41,-1,148,239,240,-1,239,148,241,-1,217,68,209,-1,68,217,242,-1,205,208,70,-1,205,207,208,-1,210,206,162,-1,206,210,204,-1,218,212,211,-1,218,166,212,-1,214,161,213,-1,164,161,214,-1,65,216,220,-1,65,215,216,-1,165,243,42,-1,165,167,243,-1,244,245,156,-1,246,245,244,-1,156,236,244,-1,155,236,156,-1,233,247,231,-1,233,248,247,-1,249,250,62,-1,249,245,250,-1,84,248,85,-1,84,247,248,-1,251,252,253,-1,252,251,83,-1,254,60,255,-1,254,194,60,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal4_Geo_5_685_coordIndex_2()
		{
			int[] value = {252,177,253,-1,252,178,177,-1,194,256,192,-1,254,256,194,-1,179,257,256,-1,257,179,258,-1,99,257,258,-1,257,99,259,-1,97,100,96,-1,97,240,100,-1,260,196,259,-1,202,196,260,-1,200,260,226,-1,202,260,200,-1,77,101,98,-1,77,78,101,-1,261,262,263,-1,261,264,262,-1,75,265,266,-1,265,75,230,-1,267,264,268,-1,267,266,264,-1,261,235,269,-1,235,261,234,-1,270,269,271,-1,270,268,269,-1,267,72,74,-1,267,272,72,-1,40,271,237,-1,40,43,271,-1,271,273,270,-1,271,43,273,-1,249,59,274,-1,59,249,62,-1,153,238,154,-1,275,238,153,-1,104,273,243,-1,104,152,273,-1,69,199,67,-1,199,69,197,-1,221,195,276,-1,221,193,195,-1,63,274,59,-1,63,66,274,-1,160,275,219,-1,160,238,275,-1,104,167,105,-1,243,167,104,-1,81,150,277,-1,150,81,80,-1,248,278,85,-1,248,277,278,-1,278,129,279,-1,130,129,278,-1,183,279,129,-1,183,182,279,-1,142,181,144,-1,142,149,181,-1,149,240,97,-1,149,148,240,-1,229,86,22,-1,241,86,229,-1,37,147,187,-1,108,147,37,-1,190,111,132,-1,190,112,111,-1,26,39,29,-1,39,26,109,-1,25,145,24,-1,25,146,145,-1,280,145,120,-1,280,281,145,-1,265,227,281,-1,227,265,230,-1,280,263,262,-1,280,282,263,-1,232,282,82,-1,232,263,282,-1,119,79,117,-1,79,119,20,-1,122,127,123,-1,122,115,127,-1,127,89,128,-1,115,89,127,-1,283,127,126,-1,123,127,283,-1,87,142,134,-1,88,142,87,-1,284,2,1,-1,284,285,2,-1,189,286,125,-1,188,286,189,-1,126,287,283,-1,126,288,287,-1,140,287,136,-1,140,186,287,-1,288,136,287,-1,136,288,137,-1,137,286,169,-1,137,288,286,-1,186,283,287,-1,186,173,283,-1,288,125,286,-1,288,126,125,-1,188,169,286,-1,169,188,170,-1,139,169,34,-1,137,169,139,-1,131,113,30,-1,114,113,131,-1,285,129,2,-1,285,183,129,-1,123,173,121,-1,123,283,173,-1,125,38,189,-1,125,128,38,-1,38,89,36,-1,38,128,89,-1,289,115,122,-1,289,116,115,-1,20,289,18,-1,20,119,289,-1,117,82,282,-1,82,117,79,-1,119,116,289,-1,119,118,116,-1,282,120,117,-1,280,120,282,-1,262,281,280,-1,281,262,265,-1,24,281,227,-1,145,281,24,-1,90,118,146,-1,90,116,118,-1,76,146,25,-1,76,90,146,-1,147,190,187,-1,147,112,190,-1,39,108,37,-1,39,109,108,-1,239,229,228,-1,239,241,229,-1,95,149,97,-1,95,181,149,-1,290,182,180,-1,290,279,182,-1,85,279,290,-1,278,279,85,-1,277,130,278,-1,150,130,277,-1,277,233,81,-1,248,233,277,-1,159,42,41,-1,159,165,42,-1,274,219,275,-1,66,219,274,-1,221,61,193,-1,221,191,61,-1,197,276,195,-1,69,276,197,-1,203,223,201,-1,223,203,222,-1,42,273,43,-1,42,243,273,-1,153,274,275,-1,249,274,153,-1,250,60,62,-1,255,60,250,-1,270,152,272,-1,270,273,152,-1,151,272,152,-1,272,151,72,-1,268,272,267,-1,270,272,268,-1,237,269,235,-1,237,271,269,-1,264,269,268,-1,269,264,261,-1,74,266,267,-1,266,74,75,-1,262,266,265,-1,264,266,262,-1,263,234,261,-1,234,263,232,-1,101,226,260,-1,226,101,78,-1,98,228,77,-1,228,98,239,-1,259,101,260,-1,99,101,259,-1,240,98,100,-1,239,98,240,-1,258,100,99,-1,258,96,100,-1,259,198,257,-1,198,259,196,-1,96,179,94,-1,179,96,258,-1,192,257,198,-1,257,192,256,-1,180,252,290,-1,180,178,252,-1,255,177,254,-1,255,253,177,-1,253,250,251,-1,253,255,250,-1,290,83,85,-1,290,252,83,-1,245,251,250,-1,245,246,251,-1,244,84,246,-1,84,244,247,-1,244,231,247,-1,244,236,231,-1,156,249,153,-1,245,249,156,-1,91,65,64,-1,215,65,91,-1,220,213,161,-1,220,216,213,-1,212,164,214,-1,166,164,212,-1,162,211,210,-1,162,218,211,-1,49,207,204,-1,48,207,49,-1,70,209,68,-1,70,208,209,-1,157,242,217,-1,157,158,242,-1,246,83,251,-1,246,84,83,-1,241,88,86,-1,241,148,88,-1,237,154,40,-1,237,155,154,-1,234,236,235,-1,234,231,236,-1,82,233,232,-1,82,81,233,-1,19,79,20,-1,19,80,79,-1,228,75,77,-1,75,228,230,-1,229,24,227,-1,229,22,24,-1,78,73,226,-1,78,71,73,-1,225,222,203,-1,222,225,163,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal4_Geo_5_685_coordIndex_3()
		{
			int[] value = {72,224,73,-1,72,151,224,-1,102,225,103,-1,225,102,163,-1,69,242,276,-1,69,68,242,-1,223,70,67,-1,223,205,70,-1,158,276,242,-1,276,158,221,-1,92,63,191,-1,92,64,63,-1,66,220,219,-1,66,65,220,-1,159,238,160,-1,238,159,41,-1,93,168,58,-1,93,157,168,-1,57,215,91,-1,56,215,57,-1,54,216,55,-1,54,213,216,-1,52,214,53,-1,52,212,214,-1,51,210,211,-1,50,210,51,-1,207,47,208,-1,47,207,48,-1,209,44,217,-1,44,209,45,-1,224,203,200,-1,224,225,203,-1,202,199,196,-1,202,201,199,-1,195,198,197,-1,198,195,192,-1,193,60,194,-1,193,61,60,-1,201,67,199,-1,223,67,201,-1,190,170,188,-1,190,132,170,-1,37,189,38,-1,37,187,189,-1,135,30,32,-1,131,30,135,-1,22,31,23,-1,86,31,22,-1,122,18,289,-1,122,124,18,-1,176,138,172,-1,0,138,176,-1,124,21,18,-1,124,184,21,-1,19,17,15,-1,19,106,17,-1,17,13,16,-1,13,17,14,-1,107,5,133,-1,5,107,6,-1,185,7,175,-1,7,185,8,-1,10,184,174,-1,9,184,10,-1,12,106,21,-1,11,106,12,-1,141,171,33,-1,141,284,171,-1,183,143,144,-1,285,143,183,-1,95,178,180,-1,95,94,178,-1,254,179,256,-1,179,254,177,-1,143,284,141,-1,284,143,285,-1,1,171,284,-1,1,172,171,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal4_Geo_5_685_normalIndex_1()
		{
			int[] value = {204,250,219,-1,219,186,204,-1,106,119,120,-1,106,103,107,-1,106,109,105,-1,106,92,100,-1,106,115,98,-1,139,153,186,-1,139,117,153,-1,65,81,79,-1,65,77,81,-1,126,123,67,-1,123,93,67,-1,160,165,170,-1,160,142,165,-1,220,188,279,-1,220,165,188,-1,277,226,252,-1,68,99,30,-1,68,137,99,-1,15,49,40,-1,40,14,15,-1,210,212,223,-1,215,221,223,-1,227,231,223,-1,235,237,223,-1,233,228,223,-1,225,224,223,-1,214,203,223,-1,198,248,280,-1,198,167,248,-1,246,230,209,-1,209,177,246,-1,239,241,283,-1,239,201,241,-1,62,20,69,-1,62,19,20,-1,19,62,37,-1,142,93,123,-1,68,97,137,-1,37,62,91,-1,62,114,91,-1,51,70,66,-1,66,29,51,-1,146,135,145,-1,183,275,188,-1,183,238,275,-1,68,36,97,-1,36,75,97,-1,185,249,182,-1,185,230,249,-1,273,271,254,-1,271,266,254,-1,148,180,190,-1,148,143,180,-1,82,46,28,-1,28,83,82,-1,81,77,95,-1,150,186,153,-1,161,151,166,-1,171,174,166,-1,175,164,166,-1,160,170,166,-1,41,80,75,-1,75,36,41,-1,47,72,86,-1,47,45,72,-1,0,48,16,-1,0,42,48,-1,5,23,1,-1,1,2,5,-1,186,211,158,-1,186,219,211,-1,171,187,157,-1,171,164,187,-1,170,220,175,-1,170,165,220,-1,125,204,150,-1,279,270,213,-1,270,252,213,-1,132,122,193,-1,122,222,193,-1,213,252,157,-1,118,132,193,-1,252,262,277,-1,204,186,150,-1,275,270,279,-1,264,251,270,-1,264,257,251,-1,142,188,165,-1,142,123,188,-1,45,54,85,-1,85,72,45,-1,166,151,160,-1,170,175,166,-1,164,171,166,-1,174,173,166,-1,161,166,173,-1,264,216,260,-1,264,238,216,-1,133,186,158,-1,133,139,186,-1,133,81,139,-1,133,70,81,-1,28,46,27,-1,27,3,28,-1,90,56,58,-1,58,96,90,-1,163,182,249,-1,249,236,163,-1,188,275,279,-1,89,112,162,-1,97,142,137,-1,97,93,142,-1,176,124,82,-1,89,162,206,-1,206,102,89,-1,102,184,87,-1,102,206,184,-1,203,207,223,-1,224,214,223,-1,228,225,223,-1,237,233,223,-1,231,235,223,-1,221,227,223,-1,212,215,223,-1,207,210,223,-1,113,138,226,-1,213,157,187,-1,222,272,193,-1,272,247,193,-1,11,52,0,-1,11,64,52,-1,252,226,138,-1,138,157,252,-1,106,120,115,-1,106,98,92,-1,106,100,109,-1,106,105,103,-1,106,107,119,-1,243,250,204,-1,250,243,247,-1,270,262,252,-1,262,270,251,-1,273,269,263,-1,273,276,269,-1,259,268,271,-1,268,259,245,-1,257,245,242,-1,257,268,245,-1,95,98,117,-1,98,95,92,-1,73,100,77,-1,100,73,109,-1,64,105,52,-1,105,64,103,-1,119,74,125,-1,107,74,119,-1,115,150,153,-1,120,150,115,-1,53,64,11,-1,53,74,64,-1,52,42,0,-1,52,73,42,-1,125,193,204,-1,193,125,118,-1,125,53,118,-1,53,125,74,-1,222,277,272,-1,222,226,277,-1,101,71,33,-1,101,130,71,-1,198,285,246,-1,198,280,285,-1,286,287,284,-1,286,289,287,-1,194,282,274,-1,194,218,282,-1,131,168,152,-1,131,136,168,-1,229,202,191,-1,229,197,202,-1,181,212,169,-1,212,181,215,-1,231,229,253,-1,227,229,231,-1,237,265,261,-1,235,265,237,-1,233,256,228,-1,233,267,256,-1,200,225,232,-1,225,200,224,-1,203,185,182,-1,214,185,203,-1,159,207,163,-1,207,159,210,-1,83,184,178,-1,87,184,83,-1,141,162,112,-1,141,189,162,-1,236,285,288,-1,236,249,285,-1,176,154,124,-1,176,191,154,-1,82,178,176,-1,178,82,83,-1,154,202,192,-1,191,202,154,-1,46,78,27,-1,78,46,88,-1,121,78,131,-1,121,69,78,-1,50,94,108,-1,44,94,50,-1,59,22,61,-1,22,59,17,-1,58,12,55,-1,12,58,6,-1,49,56,76,-1,15,56,49,-1,216,156,205,-1,156,216,172,-1,159,241,169,-1,241,159,234,-1,202,181,201,-1,202,197,181,-1,253,191,176,-1,191,253,229,-1,178,261,265,-1,178,184,261,-1,267,162,256,-1,206,162,267,-1,209,232,189,-1,209,200,232,-1,102,32,40,-1,102,87,32,-1,104,127,96,-1,134,127,104,-1,96,55,104,-1,58,55,96,-1,61,111,59,-1,61,116,111,-1,128,155,167,-1,128,127,155,-1,135,116,145,-1,135,111,116,-1,147,199,208,-1,199,147,146,-1,278,248,217,-1,278,284,248,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal4_Geo_5_685_normalIndex_2()
		{
			int[] value = {199,269,208,-1,199,263,269,-1,284,281,286,-1,278,281,284,-1,276,255,281,-1,255,276,244,-1,180,255,244,-1,255,180,179,-1,266,190,254,-1,266,205,190,-1,144,194,179,-1,152,194,144,-1,131,144,121,-1,152,144,131,-1,91,143,148,-1,91,114,143,-1,34,31,35,-1,34,25,31,-1,37,26,18,-1,26,37,44,-1,9,25,13,-1,9,18,25,-1,34,12,21,-1,12,34,17,-1,7,21,10,-1,7,13,21,-1,9,20,19,-1,9,4,20,-1,15,10,6,-1,15,14,10,-1,10,8,7,-1,10,14,8,-1,128,198,140,-1,198,128,167,-1,90,76,56,-1,110,76,90,-1,28,8,32,-1,28,3,8,-1,283,218,239,-1,218,283,282,-1,288,289,290,-1,288,287,289,-1,246,140,198,-1,246,177,140,-1,112,110,141,-1,112,76,110,-1,28,87,83,-1,32,87,28,-1,66,133,129,-1,133,66,70,-1,116,149,145,-1,116,129,149,-1,149,211,196,-1,158,211,149,-1,242,196,211,-1,242,245,196,-1,264,268,257,-1,264,260,268,-1,260,205,266,-1,260,216,205,-1,108,183,126,-1,172,183,108,-1,99,173,101,-1,161,173,99,-1,130,171,157,-1,130,174,171,-1,160,137,142,-1,137,160,151,-1,93,54,67,-1,93,85,54,-1,43,54,45,-1,43,39,54,-1,26,50,39,-1,50,26,44,-1,43,35,31,-1,43,38,35,-1,22,38,29,-1,22,35,38,-1,86,51,47,-1,51,86,79,-1,48,1,16,-1,48,41,1,-1,1,36,2,-1,41,36,1,-1,24,1,23,-1,16,1,24,-1,275,264,270,-1,238,264,275,-1,258,219,250,-1,258,240,219,-1,33,57,5,-1,71,57,33,-1,23,63,24,-1,23,60,63,-1,118,63,132,-1,118,53,63,-1,60,132,63,-1,132,60,122,-1,122,57,113,-1,122,60,57,-1,53,24,63,-1,53,11,24,-1,60,5,57,-1,60,23,5,-1,71,113,57,-1,113,71,138,-1,222,113,226,-1,122,113,222,-1,187,175,220,-1,164,175,187,-1,240,211,219,-1,240,242,211,-1,16,11,0,-1,16,24,11,-1,5,30,33,-1,5,2,30,-1,30,36,68,-1,30,2,36,-1,84,41,48,-1,84,80,41,-1,79,84,65,-1,79,86,84,-1,47,29,38,-1,29,47,51,-1,86,80,84,-1,86,72,80,-1,38,45,47,-1,43,45,38,-1,31,39,43,-1,39,31,26,-1,67,39,50,-1,54,39,67,-1,75,72,85,-1,75,80,72,-1,97,85,93,-1,97,75,85,-1,173,130,101,-1,173,174,130,-1,137,161,99,-1,137,151,161,-1,156,108,94,-1,156,172,108,-1,271,260,266,-1,271,268,260,-1,195,245,259,-1,195,196,245,-1,145,196,195,-1,149,196,145,-1,129,158,149,-1,133,158,129,-1,129,61,66,-1,116,61,129,-1,89,40,49,-1,89,102,40,-1,140,141,110,-1,177,141,140,-1,288,280,287,-1,288,285,280,-1,282,290,289,-1,283,290,282,-1,136,192,168,-1,192,136,154,-1,40,8,14,-1,40,32,8,-1,90,140,110,-1,128,140,90,-1,155,248,167,-1,217,248,155,-1,7,3,4,-1,7,8,3,-1,27,4,3,-1,4,27,20,-1,13,4,9,-1,7,4,13,-1,6,21,12,-1,6,10,21,-1,25,21,13,-1,21,25,34,-1,19,18,9,-1,18,19,37,-1,31,18,26,-1,25,18,31,-1,35,17,34,-1,17,35,22,-1,143,121,144,-1,121,143,114,-1,148,94,91,-1,94,148,156,-1,179,143,144,-1,180,143,179,-1,205,148,190,-1,156,148,205,-1,244,190,180,-1,244,254,190,-1,179,274,255,-1,274,179,194,-1,254,276,273,-1,276,254,244,-1,286,255,274,-1,255,286,281,-1,259,199,195,-1,259,263,199,-1,217,269,278,-1,217,208,269,-1,208,155,147,-1,208,217,155,-1,195,146,145,-1,195,199,146,-1,127,147,155,-1,127,134,147,-1,104,135,134,-1,135,104,111,-1,104,59,111,-1,104,55,59,-1,96,128,90,-1,127,128,96,-1,185,209,230,-1,200,209,185,-1,189,256,162,-1,189,232,256,-1,261,206,267,-1,184,206,261,-1,176,265,253,-1,176,178,265,-1,227,197,229,-1,221,197,227,-1,201,169,241,-1,201,181,169,-1,163,234,159,-1,163,236,234,-1,134,146,147,-1,134,135,146,-1,172,238,183,-1,172,216,238,-1,6,56,15,-1,6,58,56,-1,17,55,12,-1,17,59,55,-1,29,61,22,-1,29,66,61,-1,81,51,79,-1,81,70,51,-1,94,37,91,-1,37,94,44,-1,108,67,50,-1,108,126,67,-1,114,69,121,-1,114,62,69,-1,88,154,136,-1,154,88,124,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal4_Geo_5_685_normalIndex_3()
		{
			int[] value = {20,78,69,-1,20,27,78,-1,82,88,46,-1,88,82,124,-1,283,234,290,-1,283,241,234,-1,192,201,239,-1,192,202,201,-1,236,290,234,-1,290,236,288,-1,249,246,285,-1,249,230,246,-1,177,189,141,-1,177,209,189,-1,89,76,112,-1,76,89,49,-1,182,207,203,-1,182,163,207,-1,214,200,185,-1,224,200,214,-1,228,232,225,-1,228,256,232,-1,237,267,233,-1,237,261,267,-1,235,253,265,-1,231,253,235,-1,197,215,181,-1,215,197,221,-1,169,210,159,-1,210,169,212,-1,78,136,131,-1,78,88,136,-1,152,218,194,-1,152,168,218,-1,289,274,282,-1,274,289,286,-1,287,248,284,-1,287,280,248,-1,168,239,218,-1,192,239,168,-1,130,138,71,-1,130,157,138,-1,99,33,30,-1,99,101,33,-1,213,220,279,-1,187,220,213,-1,126,188,123,-1,183,188,126,-1,48,65,84,-1,48,42,65,-1,243,193,247,-1,204,193,243,-1,42,77,65,-1,42,73,77,-1,81,117,139,-1,81,95,117,-1,117,115,153,-1,115,117,98,-1,150,119,125,-1,119,150,120,-1,74,103,64,-1,103,74,107,-1,105,73,52,-1,109,73,105,-1,100,95,77,-1,92,95,100,-1,262,272,277,-1,262,258,272,-1,242,251,257,-1,240,251,242,-1,271,263,259,-1,271,273,263,-1,278,276,281,-1,276,278,269,-1,251,258,262,-1,258,251,240,-1,250,272,258,-1,250,247,272,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal5_Geo_5_691_coordIndex_1()
		{
			int[] value = {0,1,2,-1,2,3,0,-1,4,5,6,-1,4,7,5,-1,8,9,10,-1,11,12,13,-1,14,15,16,-1,17,18,19,-1,18,20,19,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,27,30,28,-1,28,30,31,-1,30,32,31,-1,33,34,35,-1,35,36,33,-1,37,1,0,-1,37,38,1,-1,39,40,41,-1,41,42,39,-1,43,44,39,-1,44,45,39,-1,46,47,48,-1,48,49,46,-1,50,21,51,-1,52,21,53,-1,54,21,55,-1,22,21,56,-1,57,21,50,-1,25,24,58,-1,59,60,61,-1,62,63,64,-1,64,65,62,-1,66,67,37,-1,37,68,66,-1,39,42,43,-1,69,70,71,-1,71,72,69,-1,60,73,74,-1,60,59,73,-1,75,76,77,-1,78,79,80,-1,80,81,78,-1,75,82,83,-1,84,85,86,-1,85,87,86,-1,75,83,88,-1,75,77,89,-1,75,90,91,-1,92,93,75,-1,75,94,95,-1,96,97,98,-1,98,9,96,-1,99,38,100,-1,99,101,38,-1,102,24,103,-1,104,24,105,-1,65,24,61,-1,106,107,108,-1,106,109,107,-1,69,62,60,-1,110,111,112,-1,111,113,112,-1,114,24,102,-1,115,116,117,-1,115,48,116,-1,118,119,6,-1,64,24,65,-1,61,24,104,-1,26,105,24,-1,64,103,24,-1,120,121,122,-1,123,124,125,-1,126,127,107,-1,107,109,126,-1,128,129,130,-1,128,131,129,-1,10,132,133,-1,134,135,136,-1,135,137,136,-1,75,138,94,-1,75,91,92,-1,75,89,90,-1,76,75,139,-1,75,140,82,-1,74,141,70,-1,74,4,141,-1,142,143,144,-1,143,145,144,-1,30,146,32,-1,146,147,32,-1,86,148,84,-1,149,63,62,-1,88,139,75,-1,89,150,151,-1,75,95,140,-1,60,70,69,-1,60,74,70,-1,43,152,153,-1,43,42,152,-1,154,155,156,-1,157,158,159,-1,157,142,158,-1,160,161,66,-1,66,68,160,-1,61,62,65,-1,61,60,62,-1,63,162,103,-1,103,64,63,-1,58,24,114,-1,21,57,163,-1,55,21,23,-1,53,21,54,-1,51,21,52,-1,74,73,7,-1,7,4,74,-1,118,116,48,-1,48,47,118,-1,164,116,5,-1,164,117,116,-1,41,165,42,-1,38,101,1,-1,67,38,37,-1,166,167,168,-1,168,110,166,-1,163,56,21,-1,169,170,171,-1,171,49,169,-1,172,30,27,-1,172,146,30,-1,173,14,174,-1,173,15,14,-1,18,175,20,-1,175,176,20,-1,133,177,178,-1,178,179,133,-1,180,181,182,-1,181,183,182,-1,184,185,186,-1,185,187,186,-1,138,75,93,-1,188,189,190,-1,188,191,189,-1,141,6,119,-1,141,4,6,-1,3,192,0,-1,3,120,192,-1,40,121,193,-1,40,194,121,-1,172,195,125,-1,172,27,195,-1,134,175,135,-1,179,175,134,-1,93,196,138,-1,196,93,174,-1,197,198,199,-1,200,198,197,-1,201,202,203,-1,201,204,202,-1,205,206,207,-1,205,208,206,-1,209,191,131,-1,189,191,209,-1,210,211,212,-1,211,210,213,-1,214,215,216,-1,214,217,215,-1,218,219,220,-1,219,218,221,-1,128,222,223,-1,128,8,222,-1,224,186,225,-1,224,184,186,-1,187,226,227,-1,185,226,187,-1,16,228,229,-1,16,15,228,-1,230,181,180,-1,181,230,231,-1,229,219,232,-1,220,219,229,-1,233,138,196,-1,233,94,138,-1,11,174,14,-1,11,196,174,-1,129,234,235,-1,236,234,129,-1,183,15,173,-1,181,15,183,-1,182,237,180,-1,237,182,151,-1,98,150,238,-1,98,97,150,-1,132,177,133,-1,132,239,177,-1,176,179,178,-1,175,179,176,-1,240,13,241,-1,13,240,233,-1,242,148,86,-1,242,243,148,-1,28,162,29,-1,28,244,162,-1,160,80,79,-1,160,245,80,-1,246,247,31,-1,246,122,247,-1,73,248,249,-1,59,248,73,-1,56,171,170,-1,171,56,163,-1,167,250,251,-1,250,167,166,-1,110,252,111,-1,110,168,252,-1,253,254,255,-1,254,253,256,-1,257,2,258,-1,259,2,257,-1,167,260,168,-1,167,261,260,-1,117,262,112,-1,117,164,262,-1,193,41,40,-1,193,259,41,-1,118,5,116,-1,6,5,118,-1,44,103,162,-1,103,44,102,-1,105,36,263,-1,36,105,26,-1,255,264,253,-1,255,100,264,-1,265,170,169,-1,265,266,170,-1,86,267,242,-1,86,268,267,-1,159,269,87,-1,159,158,269,-1,243,161,160,-1,243,270,161,-1,142,271,143,-1,142,157,271,-1,234,156,155,-1,156,234,236,-1,34,153,152,-1,153,34,33,-1,249,263,272,-1,263,249,248,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal5_Geo_5_691_coordIndex_2()
		{
			int[] value = {154,273,274,-1,275,273,154,-1,234,276,277,-1,155,276,234,-1,140,240,19,-1,140,95,240,-1,98,10,9,-1,98,132,10,-1,17,210,216,-1,17,241,210,-1,198,278,203,-1,198,279,278,-1,280,281,282,-1,280,283,281,-1,137,215,217,-1,137,135,215,-1,177,88,178,-1,177,139,88,-1,284,201,285,-1,207,201,284,-1,147,286,287,-1,288,286,147,-1,31,289,246,-1,32,289,31,-1,165,259,257,-1,41,259,165,-1,62,72,290,-1,62,69,72,-1,141,108,291,-1,141,119,108,-1,267,106,292,-1,106,267,268,-1,289,281,81,-1,289,287,281,-1,268,109,106,-1,268,269,109,-1,293,145,294,-1,144,145,293,-1,295,277,276,-1,295,296,277,-1,190,205,297,-1,190,189,205,-1,203,285,201,-1,285,203,278,-1,271,298,200,-1,298,271,157,-1,299,71,291,-1,299,273,71,-1,300,5,7,-1,300,164,5,-1,82,19,20,-1,82,140,19,-1,239,139,177,-1,139,239,76,-1,151,90,89,-1,90,151,182,-1,91,173,92,-1,91,183,173,-1,95,233,240,-1,95,94,233,-1,199,211,197,-1,211,199,212,-1,143,221,218,-1,143,271,221,-1,241,213,210,-1,241,13,213,-1,208,137,206,-1,136,137,208,-1,134,223,222,-1,223,134,136,-1,223,131,128,-1,223,209,131,-1,301,302,96,-1,301,226,302,-1,227,296,187,-1,277,296,227,-1,186,296,294,-1,187,296,186,-1,145,218,225,-1,218,145,143,-1,228,184,224,-1,184,228,231,-1,157,303,298,-1,157,159,303,-1,286,278,282,-1,285,278,286,-1,284,304,297,-1,284,288,304,-1,124,156,188,-1,156,124,154,-1,295,274,305,-1,295,276,274,-1,305,293,295,-1,305,127,293,-1,49,115,169,-1,115,49,48,-1,270,242,306,-1,242,270,243,-1,303,283,280,-1,283,303,85,-1,57,270,306,-1,57,50,270,-1,22,170,266,-1,22,56,170,-1,113,254,265,-1,254,113,111,-1,66,53,67,-1,52,53,66,-1,51,66,161,-1,51,52,66,-1,158,109,269,-1,126,109,158,-1,299,127,305,-1,127,299,107,-1,304,172,307,-1,172,304,146,-1,146,288,147,-1,146,304,288,-1,246,81,80,-1,246,289,81,-1,63,29,162,-1,29,63,149,-1,25,153,33,-1,25,58,153,-1,125,290,123,-1,290,125,195,-1,275,290,72,-1,275,123,290,-1,292,118,47,-1,292,119,118,-1,115,112,113,-1,112,115,117,-1,272,250,308,-1,250,272,35,-1,152,165,309,-1,165,152,42,-1,247,45,244,-1,194,45,247,-1,168,99,252,-1,168,260,99,-1,257,309,165,-1,261,309,257,-1,275,124,123,-1,124,275,154,-1,260,101,99,-1,260,258,101,-1,261,251,309,-1,261,167,251,-1,1,258,2,-1,258,1,101,-1,309,34,152,-1,309,251,34,-1,250,262,308,-1,250,166,262,-1,272,300,249,-1,308,300,272,-1,308,164,300,-1,308,262,164,-1,291,107,299,-1,108,107,291,-1,46,292,47,-1,292,46,267,-1,58,43,153,-1,58,114,43,-1,31,244,28,-1,31,247,244,-1,282,287,286,-1,281,287,282,-1,50,161,270,-1,51,161,50,-1,100,252,99,-1,252,100,255,-1,53,264,67,-1,54,264,53,-1,264,55,253,-1,54,55,264,-1,253,23,256,-1,253,55,23,-1,171,57,306,-1,163,57,171,-1,78,148,79,-1,78,84,148,-1,303,87,85,-1,303,159,87,-1,0,68,37,-1,0,192,68,-1,113,169,115,-1,113,265,169,-1,127,144,293,-1,127,126,144,-1,126,142,144,-1,126,158,142,-1,190,124,188,-1,190,307,124,-1,297,307,190,-1,297,304,307,-1,280,298,303,-1,280,279,298,-1,185,231,230,-1,185,184,231,-1,213,12,232,-1,213,13,12,-1,225,294,145,-1,186,294,225,-1,226,230,302,-1,185,230,226,-1,227,301,235,-1,226,301,227,-1,96,130,301,-1,96,9,130,-1,136,209,223,-1,136,208,209,-1,18,216,215,-1,216,18,17,-1,200,221,271,-1,197,221,200,-1,204,214,202,-1,204,217,214,-1,174,92,173,-1,93,92,174,-1,183,90,182,-1,91,90,183,-1,89,238,150,-1,89,77,238,-1,178,83,176,-1,88,83,178,-1,273,305,274,-1,273,299,305,-1,249,7,73,-1,249,300,7,-1,200,279,198,-1,279,200,298,-1,207,297,205,-1,297,207,284,-1,236,188,156,-1,236,191,188,-1,295,294,296,-1,293,294,295,-1,283,84,78,-1,283,85,84,-1,108,292,106,-1,108,119,292,-1,70,291,71,-1,70,141,291,-1,122,194,247,-1,122,121,194,-1,32,287,289,-1,147,287,32,-1,285,288,284,-1,285,286,288,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal5_Geo_5_691_coordIndex_3()
		{
			int[] value = {217,206,137,-1,217,204,206,-1,20,83,82,-1,83,20,176,-1,192,160,68,-1,245,160,192,-1,81,283,78,-1,281,283,81,-1,282,279,280,-1,278,279,282,-1,212,202,214,-1,212,199,202,-1,77,239,238,-1,77,76,239,-1,237,96,302,-1,237,97,96,-1,244,44,162,-1,244,45,44,-1,274,155,154,-1,274,276,155,-1,273,72,71,-1,72,273,275,-1,272,36,35,-1,272,263,36,-1,130,235,301,-1,129,235,130,-1,46,242,267,-1,306,242,46,-1,87,268,86,-1,87,269,268,-1,46,171,306,-1,171,46,49,-1,254,266,265,-1,266,254,256,-1,67,100,38,-1,264,100,67,-1,248,105,263,-1,105,248,104,-1,114,44,43,-1,114,102,44,-1,259,3,2,-1,3,259,193,-1,110,262,166,-1,112,262,110,-1,258,261,257,-1,258,260,261,-1,45,40,39,-1,194,40,45,-1,111,255,254,-1,111,252,255,-1,35,251,250,-1,35,34,251,-1,59,104,248,-1,61,104,59,-1,122,80,245,-1,80,122,246,-1,79,243,160,-1,148,243,79,-1,27,149,195,-1,149,27,29,-1,290,149,62,-1,290,195,149,-1,36,25,33,-1,26,25,36,-1,256,22,266,-1,23,22,256,-1,19,241,17,-1,241,19,240,-1,238,132,98,-1,132,238,239,-1,151,97,237,-1,151,150,97,-1,235,277,227,-1,234,277,235,-1,229,224,220,-1,224,229,228,-1,232,16,229,-1,12,16,232,-1,13,196,11,-1,13,233,196,-1,302,180,237,-1,180,302,230,-1,15,231,228,-1,15,181,231,-1,130,8,128,-1,130,9,8,-1,131,236,129,-1,191,236,131,-1,220,225,218,-1,220,224,225,-1,219,197,211,-1,219,221,197,-1,216,212,214,-1,212,216,210,-1,232,211,213,-1,219,211,232,-1,208,189,209,-1,205,189,208,-1,204,207,206,-1,201,207,204,-1,199,203,202,-1,198,203,199,-1,18,135,175,-1,18,215,135,-1,222,179,134,-1,133,179,222,-1,12,14,16,-1,11,14,12,-1,8,133,222,-1,8,10,133,-1,120,245,192,-1,245,120,122,-1,125,307,172,-1,307,125,124,-1,193,120,3,-1,193,121,120,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpphal5_Geo_5_691_normalIndex_1()
		{
			int[] value = {272,226,248,-1,248,294,272,-1,125,85,103,-1,125,100,85,-1,170,155,176,-1,167,152,196,-1,154,104,117,-1,303,308,273,-1,308,293,273,-1,106,97,93,-1,218,205,200,-1,268,302,276,-1,268,296,302,-1,302,296,284,-1,296,282,284,-1,136,59,48,-1,48,142,136,-1,184,226,272,-1,184,130,226,-1,242,301,253,-1,253,173,242,-1,206,267,242,-1,267,286,242,-1,88,129,147,-1,147,115,88,-1,101,106,113,-1,114,106,108,-1,107,106,102,-1,97,106,99,-1,89,106,101,-1,205,218,217,-1,168,162,209,-1,166,177,179,-1,179,211,166,-1,153,109,184,-1,184,221,153,-1,242,173,206,-1,139,79,54,-1,54,111,139,-1,162,116,122,-1,162,168,116,-1,235,236,234,-1,198,203,259,-1,259,245,198,-1,235,213,214,-1,131,137,70,-1,137,73,70,-1,235,214,219,-1,235,234,237,-1,235,246,247,-1,243,232,235,-1,235,225,222,-1,124,163,181,-1,181,155,124,-1,86,130,63,-1,86,150,130,-1,215,218,190,-1,207,218,199,-1,211,218,209,-1,55,33,53,-1,55,43,33,-1,139,166,162,-1,20,25,36,-1,25,30,36,-1,227,218,215,-1,80,118,66,-1,80,147,118,-1,112,76,103,-1,179,218,211,-1,209,218,207,-1,200,199,218,-1,179,190,218,-1,258,254,262,-1,156,157,182,-1,19,16,33,-1,33,43,19,-1,164,138,144,-1,164,171,138,-1,176,204,265,-1,304,306,287,-1,306,300,287,-1,235,224,225,-1,235,247,243,-1,235,237,246,-1,236,235,228,-1,235,216,213,-1,122,68,79,-1,122,125,68,-1,27,29,13,-1,29,7,13,-1,296,271,282,-1,271,289,282,-1,70,128,131,-1,189,177,166,-1,219,228,235,-1,237,193,187,-1,235,222,216,-1,162,79,139,-1,162,122,79,-1,206,121,165,-1,206,173,121,-1,84,65,123,-1,98,22,78,-1,98,27,22,-1,202,145,153,-1,153,221,202,-1,209,166,211,-1,209,162,166,-1,177,261,190,-1,190,179,177,-1,217,218,227,-1,106,89,96,-1,102,106,93,-1,108,106,107,-1,113,106,114,-1,122,116,100,-1,100,125,122,-1,112,118,147,-1,147,129,112,-1,44,118,85,-1,44,66,118,-1,253,141,173,-1,130,150,226,-1,109,130,184,-1,2,35,49,-1,49,20,2,-1,96,99,106,-1,64,61,90,-1,90,115,64,-1,229,296,268,-1,229,271,296,-1,172,154,191,-1,172,104,154,-1,308,309,293,-1,309,279,293,-1,265,249,285,-1,285,307,265,-1,127,110,192,-1,110,175,192,-1,34,23,12,-1,23,6,12,-1,224,235,232,-1,158,201,197,-1,158,169,201,-1,68,103,76,-1,68,125,103,-1,294,269,272,-1,294,258,269,-1,301,254,291,-1,301,277,254,-1,229,194,182,-1,229,268,194,-1,304,309,306,-1,307,309,304,-1,232,188,224,-1,188,232,191,-1,148,183,185,-1,151,183,148,-1,283,244,241,-1,283,280,244,-1,270,298,295,-1,270,275,298,-1,210,169,171,-1,201,169,210,-1,230,161,208,-1,161,230,174,-1,260,305,288,-1,260,297,305,-1,40,120,57,-1,120,40,105,-1,164,231,212,-1,164,170,231,-1,39,12,14,-1,39,34,12,-1,6,46,26,-1,23,46,6,-1,117,60,87,-1,117,104,60,-1,62,110,127,-1,110,62,56,-1,87,120,135,-1,57,120,87,-1,223,224,188,-1,223,225,224,-1,167,191,154,-1,167,188,191,-1,138,67,74,-1,132,67,138,-1,175,104,172,-1,110,104,175,-1,192,146,127,-1,146,192,187,-1,181,193,220,-1,181,163,193,-1,204,249,265,-1,204,233,249,-1,279,307,285,-1,309,307,279,-1,252,196,257,-1,196,252,223,-1,72,128,70,-1,72,126,128,-1,302,261,276,-1,302,299,261,-1,202,259,203,-1,202,263,259,-1,264,281,284,-1,264,262,281,-1,116,159,75,-1,168,159,116,-1,99,90,61,-1,90,99,96,-1,35,0,37,-1,0,35,2,-1,20,52,25,-1,20,49,52,-1,45,1,38,-1,1,45,32,-1,134,248,149,-1,250,248,134,-1,35,92,49,-1,35,82,92,-1,66,11,36,-1,66,44,11,-1,291,253,301,-1,291,250,253,-1,112,85,118,-1,103,85,112,-1,267,190,261,-1,190,267,215,-1,199,142,133,-1,142,199,200,-1,38,71,45,-1,38,63,71,-1,3,61,64,-1,3,28,61,-1,70,58,72,-1,70,50,58,-1,78,31,73,-1,78,22,31,-1,126,145,202,-1,126,119,145,-1,27,95,29,-1,27,98,95,-1,67,123,65,-1,123,67,132,-1,59,165,121,-1,165,59,136,-1,75,133,51,-1,133,75,159,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpphal5_Geo_5_691_normalIndex_2()
		{
			int[] value = {84,41,21,-1,91,41,84,-1,67,18,17,-1,65,18,67,-1,216,252,273,-1,216,222,252,-1,181,176,155,-1,181,204,176,-1,303,230,288,-1,303,257,230,-1,183,238,241,-1,183,180,238,-1,178,240,239,-1,178,186,240,-1,300,305,297,-1,300,306,305,-1,249,219,285,-1,249,228,219,-1,290,283,278,-1,295,283,290,-1,289,274,266,-1,292,274,289,-1,284,256,264,-1,282,256,284,-1,141,250,134,-1,253,250,141,-1,166,111,160,-1,166,139,111,-1,68,53,42,-1,68,76,53,-1,58,55,69,-1,55,58,50,-1,256,240,245,-1,256,266,240,-1,50,43,55,-1,50,31,43,-1,10,7,8,-1,13,7,10,-1,9,17,18,-1,9,4,17,-1,197,270,255,-1,197,201,270,-1,241,278,283,-1,278,241,238,-1,95,143,151,-1,143,95,98,-1,24,54,42,-1,24,41,54,-1,47,85,100,-1,47,44,85,-1,213,273,293,-1,213,216,273,-1,233,228,249,-1,228,233,236,-1,187,246,237,-1,246,187,192,-1,247,172,243,-1,247,175,172,-1,222,223,252,-1,222,225,223,-1,185,161,148,-1,161,185,208,-1,29,105,40,-1,29,95,105,-1,257,174,230,-1,257,196,174,-1,275,300,298,-1,287,300,275,-1,304,212,231,-1,212,304,287,-1,212,171,164,-1,212,210,171,-1,94,81,124,-1,94,46,81,-1,26,4,6,-1,17,4,26,-1,12,4,8,-1,6,4,12,-1,7,40,14,-1,40,7,29,-1,60,34,39,-1,34,60,56,-1,98,140,143,-1,98,78,140,-1,274,238,239,-1,278,238,274,-1,290,251,255,-1,290,292,251,-1,157,123,158,-1,123,157,84,-1,9,21,15,-1,9,18,21,-1,15,10,9,-1,15,16,10,-1,115,80,64,-1,80,115,147,-1,119,72,77,-1,72,119,126,-1,140,186,178,-1,186,140,137,-1,89,119,77,-1,89,101,119,-1,97,61,28,-1,97,99,61,-1,30,1,3,-1,1,30,25,-1,153,108,109,-1,114,108,153,-1,113,153,145,-1,113,114,153,-1,22,43,31,-1,19,43,22,-1,24,16,15,-1,16,24,33,-1,251,229,195,-1,229,251,271,-1,271,292,289,-1,271,251,292,-1,264,245,259,-1,264,256,245,-1,177,276,261,-1,276,177,189,-1,205,165,136,-1,205,217,165,-1,182,160,156,-1,160,182,194,-1,91,160,111,-1,91,156,160,-1,69,112,129,-1,69,76,112,-1,80,36,30,-1,36,80,66,-1,51,0,5,-1,0,51,48,-1,121,141,83,-1,141,121,173,-1,281,286,299,-1,277,286,281,-1,49,86,52,-1,49,92,86,-1,134,83,141,-1,82,83,134,-1,91,157,156,-1,157,91,84,-1,92,150,86,-1,92,149,150,-1,82,37,83,-1,82,35,37,-1,226,149,248,-1,149,226,150,-1,83,59,121,-1,83,37,59,-1,0,11,5,-1,0,2,11,-1,51,47,75,-1,5,47,51,-1,5,44,47,-1,5,11,44,-1,42,33,24,-1,53,33,42,-1,88,69,129,-1,69,88,58,-1,217,206,165,-1,217,227,206,-1,284,299,302,-1,284,281,299,-1,239,266,274,-1,240,266,239,-1,101,145,119,-1,113,145,101,-1,63,52,86,-1,52,63,38,-1,108,71,109,-1,107,71,108,-1,71,102,45,-1,107,102,71,-1,45,93,32,-1,45,102,93,-1,90,89,77,-1,96,89,90,-1,198,128,203,-1,198,131,128,-1,140,73,137,-1,140,78,73,-1,272,221,184,-1,272,269,221,-1,30,64,80,-1,30,3,64,-1,16,13,10,-1,16,19,13,-1,19,27,13,-1,19,22,27,-1,197,157,158,-1,197,195,157,-1,255,195,197,-1,255,251,195,-1,178,143,140,-1,178,180,143,-1,23,56,62,-1,23,34,56,-1,174,152,135,-1,174,196,152,-1,14,8,7,-1,12,8,14,-1,46,62,81,-1,23,62,46,-1,26,94,74,-1,46,94,26,-1,124,144,94,-1,124,155,144,-1,287,210,212,-1,287,275,210,-1,308,288,305,-1,288,308,303,-1,151,105,95,-1,148,105,151,-1,280,260,244,-1,280,297,260,-1,191,243,172,-1,232,243,191,-1,175,246,192,-1,247,246,175,-1,237,220,193,-1,237,234,220,-1,285,214,279,-1,219,214,285,-1,41,15,21,-1,41,24,15,-1,75,100,116,-1,75,47,100,-1,151,180,183,-1,180,151,143,-1,295,255,270,-1,255,295,290,-1,132,158,123,-1,132,169,158,-1,9,8,4,-1,10,8,9,-1,186,131,198,-1,186,137,131,-1,53,69,55,-1,53,76,69,-1,79,42,54,-1,79,68,42,-1,262,277,281,-1,262,254,277,-1,282,266,256,-1,289,266,282,-1,278,292,290,-1,278,274,292,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpphal5_Geo_5_691_normalIndex_3()
		{
			int[] value = {297,298,300,-1,297,280,298,-1,293,214,213,-1,214,293,279,-1,269,202,221,-1,263,202,269,-1,245,186,198,-1,240,186,245,-1,239,180,178,-1,238,180,239,-1,208,244,260,-1,208,185,244,-1,234,233,220,-1,234,236,233,-1,146,124,81,-1,146,163,124,-1,299,267,261,-1,299,286,267,-1,21,65,84,-1,21,18,65,-1,41,111,54,-1,111,41,91,-1,51,142,48,-1,51,133,142,-1,144,74,94,-1,138,74,144,-1,88,72,58,-1,77,72,88,-1,73,50,70,-1,73,31,50,-1,88,90,77,-1,90,88,115,-1,1,28,3,-1,28,1,32,-1,109,63,130,-1,71,63,109,-1,159,199,133,-1,199,159,207,-1,227,267,206,-1,227,215,267,-1,250,294,248,-1,294,250,291,-1,20,11,2,-1,36,11,20,-1,149,82,134,-1,149,92,82,-1,286,301,242,-1,277,301,286,-1,25,38,1,-1,25,52,38,-1,48,37,0,-1,48,59,37,-1,168,207,159,-1,209,207,168,-1,262,259,263,-1,259,262,264,-1,203,126,202,-1,128,126,203,-1,268,189,194,-1,189,268,276,-1,160,189,166,-1,160,194,189,-1,142,205,136,-1,200,205,142,-1,32,97,28,-1,93,97,32,-1,273,257,303,-1,257,273,252,-1,220,204,181,-1,204,220,233,-1,187,163,146,-1,187,193,163,-1,74,17,26,-1,67,17,74,-1,87,39,57,-1,39,87,60,-1,135,117,87,-1,152,117,135,-1,196,188,167,-1,196,223,188,-1,81,127,146,-1,127,81,62,-1,104,56,60,-1,104,110,56,-1,144,170,164,-1,144,155,170,-1,171,132,138,-1,169,132,171,-1,57,14,40,-1,57,39,14,-1,120,148,161,-1,120,105,148,-1,288,208,260,-1,208,288,230,-1,135,161,174,-1,120,161,135,-1,275,201,210,-1,270,201,275,-1,280,295,298,-1,283,295,280,-1,185,241,244,-1,183,241,185,-1,308,306,309,-1,308,305,306,-1,231,307,304,-1,265,307,231,-1,152,154,117,-1,167,154,152,-1,170,265,231,-1,170,176,265,-1,258,263,269,-1,263,258,262,-1,182,195,229,-1,195,182,157,-1,291,258,294,-1,291,254,258,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlprem1lc_Geo_5_697_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,32,33,34,-1,35,34,36,-1,37,38,39,-1,40,41,42,-1,41,40,43,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,50,29,53,-1,38,54,55,-1,26,56,20,-1,57,43,58,-1,59,60,61,-1,61,62,59,-1,63,64,65,-1,66,64,63,-1,67,68,69,-1,70,71,72,-1,73,74,75,-1,76,77,78,-1,79,80,77,-1,80,79,81,-1,82,83,84,-1,85,37,86,-1,87,15,88,-1,89,90,91,-1,2,92,93,-1,94,14,95,-1,96,97,98,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,105,108,106,-1,109,110,111,-1,112,113,114,-1,63,115,89,-1,81,116,61,-1,28,117,118,-1,48,16,119,-1,120,121,122,-1,31,123,124,-1,125,29,118,-1,86,126,127,-1,128,52,129,-1,81,79,130,-1,70,68,103,-1,111,71,131,-1,71,132,131,-1,133,110,134,-1,133,135,110,-1,112,89,136,-1,112,136,137,-1,138,139,105,-1,140,141,142,-1,140,143,103,-1,144,145,146,-1,132,144,101,-1,100,131,101,-1,147,148,93,-1,130,149,116,-1,93,95,14,-1,93,92,95,-1,150,151,152,-1,108,153,7,-1,154,155,88,-1,154,35,155,-1,37,39,86,-1,60,81,61,-1,77,16,78,-1,78,15,73,-1,73,87,156,-1,157,158,159,-1,157,126,158,-1,120,124,66,-1,160,64,66,-1,66,124,123,-1,122,36,34,-1,26,37,56,-1,161,162,18,-1,163,31,30,-1,53,164,51,-1,50,165,166,-1,47,49,167,-1,27,168,169,-1,57,104,170,-1,171,34,35,-1,166,47,167,-1,25,37,26,-1,122,172,23,-1,36,23,22,-1,173,171,154,-1,174,134,110,-1,100,175,174,-1,94,12,14,-1,94,175,12,-1,176,177,178,-1,179,180,5,-1,5,4,179,-1,9,11,181,-1,100,174,109,-1,12,182,13,-1,48,47,183,-1,21,184,185,-1,186,187,26,-1,122,121,172,-1,166,165,47,-1,154,171,35,-1,57,170,41,-1,44,125,45,-1,47,128,183,-1,188,160,123,-1,50,53,51,-1,163,129,189,-1,163,190,31,-1,38,191,39,-1,122,34,33,-1,57,58,104,-1,123,160,66,-1,192,120,66,-1,156,126,157,-1,156,127,126,-1,87,127,156,-1,15,87,73,-1,77,119,16,-1,18,87,155,-1,108,7,106,-1,150,96,151,-1,14,13,93,-1,100,109,131,-1,131,132,101,-1,144,193,145,-1,140,193,143,-1,140,102,141,-1,43,102,58,-1,138,105,194,-1,113,112,137,-1,89,91,136,-1,134,84,133,-1,70,103,143,-1,81,130,116,-1,168,166,195,-1,166,167,195,-1,126,86,39,-1,184,196,185,-1,31,124,32,-1,122,33,120,-1,119,49,48,-1,119,197,49,-1,118,29,28,-1,130,79,76,-1,116,198,61,-1,63,89,112,-1,114,63,112,-1,111,131,109,-1,110,135,111,-1,58,102,104,-1,102,140,103,-1,116,149,199,-1,98,151,96,-1,94,95,200,-1,93,201,2,-1,90,202,91,-1,87,88,155,-1,54,24,185,-1,84,200,82,-1,81,60,80,-1,79,77,76,-1,76,78,75,-1,75,78,73,-1,72,203,70,-1,67,170,68,-1,63,114,66,-1,65,115,63,-1,26,20,186,-1,26,187,24,-1,161,85,162,-1,163,30,129,-1,50,52,165,-1,188,204,160,-1,27,169,28,-1,43,57,41,-1,40,42,205,-1,37,25,38,-1,35,36,19,-1,171,32,34,-1,30,32,171,-1,29,50,27,-1,191,38,55,-1,23,172,21,-1,22,21,187,-1,36,122,23,-1,88,15,17,-1,78,16,15,-1,174,110,109,-1,12,99,182,-1,176,206,177,-1,8,207,6,-1,3,5,208,-1,2,209,0,-1,210,211,212,-1,210,213,211,-1,106,214,107,-1,215,214,106,-1,216,217,218,-1,216,219,217,-1,206,9,181,-1,9,206,176,-1,174,94,134,-1,175,94,174,-1,48,17,16,-1,48,183,17,-1,36,20,19,-1,36,186,20,-1,44,29,125,-1,53,29,44,-1,204,190,220,-1,190,204,188,-1,20,161,18,-1,20,56,161,-1,220,163,189,-1,163,220,190,-1,65,221,115,-1,65,222,221,-1,205,223,40,-1,205,192,223,-1,159,71,111,-1,159,72,71,-1,135,156,157,-1,133,156,135,-1,95,224,225,-1,224,95,92,-1,226,108,227,-1,226,153,108,-1,228,202,229,-1,202,228,226,-1,230,151,217,-1,152,151,230,-1,230,231,152,-1,231,230,232,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlprem1lc_Geo_5_697_coordIndex_2()
		{
			int[] value = {233,218,98,-1,233,234,218,-1,231,8,235,-1,231,232,8,-1,225,233,236,-1,225,224,233,-1,130,178,149,-1,10,178,130,-1,148,201,93,-1,237,201,148,-1,211,148,238,-1,148,211,237,-1,146,239,238,-1,146,145,239,-1,193,142,145,-1,142,193,140,-1,142,240,241,-1,142,141,240,-1,5,240,242,-1,240,5,180,-1,243,194,242,-1,243,138,194,-1,194,107,208,-1,194,105,107,-1,11,244,181,-1,76,244,11,-1,76,75,244,-1,70,132,71,-1,70,143,132,-1,221,245,90,-1,221,62,245,-1,11,130,76,-1,11,10,130,-1,167,197,195,-1,197,167,49,-1,75,83,244,-1,75,74,83,-1,32,120,33,-1,32,124,120,-1,39,158,126,-1,39,191,158,-1,117,169,246,-1,117,28,169,-1,245,61,198,-1,62,61,245,-1,113,223,114,-1,223,113,247,-1,138,248,137,-1,248,138,243,-1,248,43,247,-1,43,248,102,-1,242,141,243,-1,141,242,240,-1,241,145,142,-1,241,239,145,-1,147,238,148,-1,147,146,238,-1,234,224,1,-1,224,234,233,-1,98,217,151,-1,98,218,217,-1,231,228,249,-1,231,235,228,-1,152,249,150,-1,152,231,249,-1,226,235,153,-1,226,228,235,-1,200,225,82,-1,225,200,95,-1,197,77,80,-1,197,119,77,-1,72,196,203,-1,72,250,196,-1,69,21,67,-1,21,69,184,-1,45,222,65,-1,125,222,45,-1,125,118,222,-1,59,246,60,-1,59,117,246,-1,67,41,170,-1,41,67,42,-1,25,54,38,-1,25,24,54,-1,30,173,129,-1,30,171,173,-1,31,188,123,-1,31,190,188,-1,164,44,46,-1,164,53,44,-1,185,187,21,-1,185,24,187,-1,162,87,18,-1,87,162,127,-1,234,216,218,-1,251,216,234,-1,252,8,232,-1,252,207,8,-1,214,208,107,-1,214,3,208,-1,213,237,211,-1,237,213,253,-1,209,201,254,-1,209,2,201,-1,212,255,210,-1,255,212,256,-1,7,215,106,-1,6,215,7,-1,217,257,230,-1,219,257,217,-1,10,176,178,-1,10,9,176,-1,173,88,17,-1,173,154,88,-1,36,187,186,-1,36,22,187,-1,191,250,158,-1,191,55,250,-1,166,27,50,-1,168,27,166,-1,52,189,129,-1,52,51,189,-1,161,37,85,-1,56,37,161,-1,42,121,205,-1,172,121,42,-1,222,117,59,-1,222,118,117,-1,160,65,64,-1,204,65,160,-1,46,65,204,-1,46,45,65,-1,120,205,121,-1,205,120,192,-1,203,184,69,-1,203,196,184,-1,159,250,72,-1,159,158,250,-1,197,60,246,-1,60,197,80,-1,1,92,2,-1,1,224,92,-1,84,74,133,-1,74,84,83,-1,226,91,202,-1,91,226,227,-1,229,90,245,-1,90,229,202,-1,98,236,233,-1,97,236,98,-1,258,116,199,-1,116,258,198,-1,149,97,96,-1,149,177,97,-1,177,149,178,-1,82,236,259,-1,82,225,236,-1,181,259,206,-1,181,244,259,-1,182,101,147,-1,99,101,182,-1,212,238,239,-1,238,212,211,-1,180,241,240,-1,241,180,256,-1,242,208,5,-1,242,194,208,-1,108,139,227,-1,139,108,105,-1,170,103,68,-1,170,104,103,-1,115,90,89,-1,115,221,90,-1,162,86,127,-1,162,85,86,-1,46,220,164,-1,46,204,220,-1,250,185,196,-1,250,54,185,-1,250,55,54,-1,246,195,197,-1,169,195,246,-1,169,168,195,-1,40,247,43,-1,40,223,247,-1,136,227,139,-1,136,91,227,-1,136,138,137,-1,136,139,138,-1,247,137,248,-1,247,113,137,-1,243,102,248,-1,102,243,141,-1,256,239,241,-1,239,256,212,-1,193,132,143,-1,193,144,132,-1,144,147,101,-1,144,146,147,-1,200,134,94,-1,134,200,84,-1,13,147,93,-1,147,13,182,-1,259,83,82,-1,83,259,244,-1,249,229,258,-1,249,228,229,-1,236,206,259,-1,236,177,206,-1,236,97,177,-1,258,150,249,-1,199,150,258,-1,150,149,96,-1,199,149,150,-1,245,258,229,-1,245,198,258,-1,8,153,235,-1,153,8,7,-1,18,35,19,-1,35,18,155,-1,133,73,156,-1,74,73,133,-1,157,111,135,-1,157,159,111,-1,70,69,68,-1,70,203,69,-1,114,192,66,-1,223,192,114,-1,221,59,62,-1,221,222,59,-1,128,17,183,-1,128,173,17,-1,129,173,128,-1,21,42,67,-1,21,172,42,-1,164,189,51,-1,164,220,189,-1,165,128,47,-1,165,52,128,-1,175,99,12,-1,175,100,99,-1,1,251,234,-1,0,251,1,-1,257,232,230,-1,257,252,232,-1,179,256,180,-1,179,255,256,-1,253,201,237,-1,201,253,254,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlprem1lc_Geo_5_697_normalIndex_1()
		{
			int[] value = {226,222,158,-1,25,3,0,-1,156,153,189,-1,249,243,239,-1,181,177,182,-1,89,99,107,-1,40,36,46,-1,162,152,150,-1,178,111,112,-1,97,82,139,-1,147,215,170,-1,170,125,85,-1,58,85,92,-1,57,108,55,-1,28,23,68,-1,23,28,21,-1,202,205,209,-1,60,100,75,-1,121,161,124,-1,121,139,183,-1,108,148,137,-1,112,52,46,-1,16,21,15,-1,128,141,199,-1,199,179,128,-1,87,138,155,-1,106,138,87,-1,74,34,102,-1,35,78,94,-1,127,184,217,-1,233,172,149,-1,230,169,172,-1,169,230,214,-1,225,219,206,-1,44,57,53,-1,62,89,63,-1,103,144,105,-1,158,175,135,-1,198,182,186,-1,255,256,259,-1,185,208,151,-1,5,12,22,-1,59,115,66,-1,59,116,115,-1,207,166,143,-1,47,17,33,-1,87,122,103,-1,214,234,199,-1,82,76,142,-1,100,99,90,-1,132,133,123,-1,215,200,174,-1,194,139,142,-1,53,56,51,-1,129,124,114,-1,214,230,238,-1,35,34,12,-1,143,78,165,-1,78,67,165,-1,171,166,190,-1,171,154,166,-1,47,103,45,-1,47,45,11,-1,14,48,59,-1,9,4,19,-1,9,30,12,-1,69,39,83,-1,67,69,151,-1,208,165,151,-1,130,104,135,-1,238,257,234,-1,135,186,182,-1,135,175,186,-1,232,248,231,-1,116,164,153,-1,70,54,63,-1,70,58,54,-1,57,55,53,-1,141,214,199,-1,172,99,149,-1,149,89,127,-1,127,62,109,-1,110,91,126,-1,110,56,91,-1,132,174,106,-1,196,138,106,-1,106,174,200,-1,123,92,85,-1,112,57,52,-1,37,43,40,-1,168,215,147,-1,183,218,161,-1,121,88,38,-1,60,75,42,-1,97,77,73,-1,16,22,31,-1,134,85,58,-1,38,60,42,-1,111,57,112,-1,123,136,150,-1,92,150,152,-1,95,134,70,-1,188,190,166,-1,208,203,188,-1,198,181,182,-1,198,203,181,-1,251,254,250,-1,10,8,0,-1,0,3,10,-1,249,239,244,-1,208,188,207,-1,181,173,177,-1,100,60,119,-1,162,180,176,-1,79,167,112,-1,123,133,136,-1,38,88,60,-1,70,134,58,-1,16,31,23,-1,202,194,205,-1,60,129,119,-1,210,196,200,-1,121,183,161,-1,168,114,160,-1,168,211,215,-1,108,101,55,-1,123,85,125,-1,16,15,22,-1,200,196,106,-1,86,132,106,-1,109,56,110,-1,109,51,56,-1,62,51,109,-1,89,62,127,-1,172,90,99,-1,40,62,54,-1,116,153,115,-1,232,255,248,-1,182,177,135,-1,208,207,165,-1,165,67,151,-1,69,32,39,-1,9,32,30,-1,9,5,4,-1,21,5,15,-1,14,59,18,-1,17,47,11,-1,103,105,45,-1,190,206,171,-1,35,12,30,-1,214,238,234,-1,77,38,61,-1,38,42,61,-1,56,53,55,-1,180,146,176,-1,215,174,170,-1,123,125,132,-1,90,75,100,-1,90,93,75,-1,142,139,82,-1,238,230,233,-1,234,227,199,-1,87,103,47,-1,33,87,47,-1,143,165,207,-1,166,154,143,-1,15,5,22,-1,5,9,12,-1,234,257,235,-1,259,248,255,-1,198,186,204,-1,135,118,158,-1,144,157,105,-1,62,63,54,-1,148,178,176,-1,206,204,225,-1,214,141,169,-1,230,172,233,-1,233,149,217,-1,217,149,127,-1,94,81,35,-1,74,31,34,-1,87,33,106,-1,155,122,87,-1,112,46,79,-1,112,167,178,-1,37,44,43,-1,168,147,114,-1,121,124,88,-1,210,197,196,-1,97,73,82,-1,21,16,23,-1,28,68,84,-1,57,111,108,-1,58,92,36,-1,134,170,85,-1,147,170,134,-1,139,121,97,-1,101,108,137,-1,150,136,162,-1,152,162,167,-1,92,123,150,-1,63,89,107,-1,149,99,89,-1,188,166,207,-1,181,185,173,-1,251,253,254,-1,189,193,156,-1,25,0,20,-1,158,159,226,-1,49,65,50,-1,49,64,65,-1,115,72,66,-1,117,72,115,-1,252,241,258,-1,252,237,241,-1,253,249,244,-1,249,253,251,-1,188,198,190,-1,203,198,188,-1,100,107,99,-1,100,119,107,-1,92,46,36,-1,92,79,46,-1,202,139,194,-1,183,139,202,-1,197,211,201,-1,211,197,210,-1,46,37,40,-1,46,52,37,-1,201,168,160,-1,168,201,211,-1,155,145,122,-1,155,140,145,-1,84,29,28,-1,84,86,29,-1,126,78,143,-1,126,94,78,-1,154,109,110,-1,171,109,154,-1,186,223,221,-1,223,186,175,-1,163,116,113,-1,163,164,116,-1,191,157,192,-1,157,191,163,-1,229,248,241,-1,231,248,229,-1,229,216,231,-1,216,229,213,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlprem1lc_Geo_5_697_normalIndex_2()
		{
			int[] value = {247,258,259,-1,247,242,258,-1,216,189,187,-1,216,213,189,-1,221,247,245,-1,221,223,247,-1,238,250,257,-1,243,250,238,-1,104,118,135,-1,98,118,104,-1,65,104,71,-1,104,65,98,-1,83,41,71,-1,83,39,41,-1,32,19,39,-1,19,32,9,-1,19,7,24,-1,19,4,7,-1,0,7,1,-1,7,0,8,-1,2,18,1,-1,2,14,18,-1,18,66,20,-1,18,59,66,-1,239,236,244,-1,233,236,239,-1,233,217,236,-1,35,67,78,-1,35,30,67,-1,145,195,144,-1,145,179,195,-1,239,238,233,-1,239,243,238,-1,42,93,61,-1,93,42,75,-1,217,219,236,-1,217,184,219,-1,170,132,125,-1,170,174,132,-1,55,91,56,-1,55,101,91,-1,76,73,80,-1,76,82,73,-1,195,199,227,-1,179,199,195,-1,17,29,33,-1,29,17,13,-1,14,6,11,-1,6,14,2,-1,6,21,13,-1,21,6,5,-1,1,4,2,-1,4,1,7,-1,24,39,19,-1,24,41,39,-1,130,71,104,-1,130,83,71,-1,242,223,222,-1,223,242,247,-1,259,241,248,-1,259,258,241,-1,216,191,220,-1,216,187,191,-1,231,220,232,-1,231,216,220,-1,163,187,164,-1,163,191,187,-1,204,221,225,-1,221,204,186,-1,93,172,169,-1,93,90,172,-1,94,146,81,-1,94,131,146,-1,102,162,74,-1,162,102,180,-1,205,140,155,-1,194,140,205,-1,194,142,140,-1,128,80,141,-1,128,76,80,-1,74,23,31,-1,23,74,68,-1,111,148,108,-1,111,178,148,-1,147,95,114,-1,147,134,95,-1,215,210,200,-1,215,211,210,-1,218,202,209,-1,218,183,202,-1,176,167,162,-1,176,178,167,-1,43,62,40,-1,62,43,51,-1,242,252,258,-1,240,252,242,-1,212,189,213,-1,212,193,189,-1,72,20,66,-1,72,25,20,-1,64,98,65,-1,98,64,96,-1,159,118,120,-1,159,158,118,-1,50,27,49,-1,27,50,26,-1,153,117,115,-1,156,117,153,-1,241,228,229,-1,237,228,241,-1,243,251,250,-1,243,249,251,-1,95,63,107,-1,95,70,63,-1,92,167,79,-1,92,152,167,-1,101,131,91,-1,101,137,131,-1,38,97,121,-1,77,97,38,-1,124,160,114,-1,124,161,160,-1,37,57,44,-1,52,57,37,-1,68,133,84,-1,136,133,68,-1,140,76,128,-1,140,142,76,-1,196,155,138,-1,197,155,196,-1,209,155,197,-1,209,205,155,-1,132,84,133,-1,84,132,86,-1,81,180,102,-1,81,146,180,-1,126,131,94,-1,126,91,131,-1,93,141,80,-1,141,93,169,-1,222,175,158,-1,222,223,175,-1,206,184,171,-1,184,206,219,-1,163,105,157,-1,105,163,113,-1,192,144,195,-1,144,192,157,-1,259,245,247,-1,256,245,259,-1,224,234,235,-1,234,224,227,-1,257,256,255,-1,257,254,256,-1,254,257,250,-1,225,245,246,-1,225,221,245,-1,244,246,253,-1,244,236,246,-1,173,151,130,-1,185,151,173,-1,50,71,41,-1,71,50,65,-1,8,24,7,-1,24,8,26,-1,1,20,0,-1,1,18,20,-1,116,48,113,-1,48,116,59,-1,31,12,34,-1,31,22,12,-1,122,144,103,-1,122,145,144,-1,43,53,51,-1,43,44,53,-1,209,201,218,-1,209,197,201,-1,131,176,146,-1,131,148,176,-1,131,137,148,-1,80,61,93,-1,73,61,80,-1,73,77,61,-1,28,13,21,-1,28,29,13,-1,45,113,48,-1,45,105,113,-1,45,14,11,-1,45,48,14,-1,13,11,6,-1,13,17,11,-1,2,5,6,-1,5,2,4,-1,26,41,24,-1,41,26,50,-1,32,67,30,-1,32,69,67,-1,69,130,151,-1,69,83,130,-1,204,190,198,-1,190,204,206,-1,177,130,135,-1,130,177,173,-1,246,219,225,-1,219,246,236,-1,220,192,224,-1,220,191,192,-1,245,253,246,-1,245,254,253,-1,245,256,254,-1,224,232,220,-1,235,232,224,-1,232,257,255,-1,235,257,232,-1,195,224,192,-1,195,227,224,-1,189,164,187,-1,164,189,153,-1,40,58,36,-1,58,40,54,-1,171,127,109,-1,184,127,171,-1,110,143,154,-1,110,126,143,-1,35,102,34,-1,35,81,102,-1,33,86,106,-1,29,86,33,-1,145,128,179,-1,145,140,128,-1,129,107,119,-1,129,95,107,-1,114,95,129,-1,162,68,74,-1,162,136,68,-1,218,160,161,-1,218,201,160,-1,88,129,60,-1,88,124,129,-1,203,185,181,-1,203,208,185,-1,222,240,242,-1,226,240,222,-1,228,213,229,-1,228,212,213,-1,10,26,8,-1,10,27,26,-1,96,118,98,-1,118,96,120,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlprem1lr_Geo_5_703_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,4,3,-1,10,11,12,-1,13,14,15,-1,14,16,17,-1,14,13,16,-1,18,19,20,-1,18,20,4,-1,13,15,21,-1,10,22,11,-1,9,18,4,-1,8,23,6,-1,3,5,24,-1,0,2,25,-1,26,27,28,-1,26,29,27,-1,30,31,32,-1,30,33,31,-1,34,35,36,-1,35,34,37,-1,38,39,40,-1,38,41,39,-1,42,43,44,-1,42,45,43,-1,46,47,48,-1,47,46,49,-1,50,51,52,-1,50,28,51,-1,32,53,54,-1,53,32,55,-1,56,57,58,-1,56,35,57,-1,59,60,61,-1,59,58,60,-1,48,62,63,-1,62,48,47,-1,64,52,65,-1,64,50,52,-1,54,66,67,-1,66,54,53,-1,68,58,59,-1,68,56,58,-1,69,61,70,-1,69,59,61,-1,1,71,72,-1,71,1,0,-1,73,74,75,-1,74,73,76,-1,67,77,78,-1,77,67,66,-1,77,12,11,-1,12,77,79,-1,80,70,81,-1,80,69,70,-1,82,83,84,-1,83,82,85,-1,86,20,19,-1,86,87,20,-1,88,89,90,-1,88,9,89,-1,91,81,92,-1,91,80,81,-1,93,94,95,-1,93,96,94,-1,97,98,99,-1,98,97,100,-1,98,101,102,-1,101,98,103,-1,104,90,105,-1,104,88,90,-1,106,107,108,-1,106,109,107,-1,110,111,112,-1,111,110,113,-1,114,115,116,-1,115,114,117,-1,115,118,119,-1,118,115,120,-1,121,122,123,-1,121,124,122,-1,125,126,127,-1,125,128,126,-1,129,130,131,-1,129,132,130,-1,133,134,135,-1,133,136,134,-1,137,138,139,-1,137,140,138,-1,119,141,142,-1,141,119,118,-1,143,123,144,-1,143,121,123,-1,145,127,146,-1,145,125,127,-1,147,148,149,-1,150,148,147,-1,151,152,153,-1,151,154,152,-1,155,156,157,-1,155,158,156,-1,159,160,161,-1,162,160,159,-1,160,163,164,-1,160,144,163,-1,165,44,43,-1,165,158,44,-1,151,17,137,-1,151,14,17,-1,166,158,155,-1,158,166,44,-1,141,167,168,-1,167,141,169,-1,133,170,171,-1,170,133,135,-1,143,172,173,-1,162,172,143,-1,150,146,148,-1,150,145,146,-1,33,174,31,-1,39,175,176,-1,177,174,33,-1,177,178,174,-1,179,178,177,-1,179,34,178,-1,27,34,179,-1,27,37,34,-1,29,37,27,-1,29,180,37,-1,181,180,29,-1,181,182,180,-1,183,182,181,-1,183,41,182,-1,184,41,183,-1,184,39,41,-1,184,175,39,-1,158,185,156,-1,158,165,185,-1,167,186,187,-1,167,172,186,-1,188,13,21,-1,13,188,170,-1,150,189,190,-1,147,189,150,-1,146,136,133,-1,146,127,136,-1,144,191,163,-1,144,123,191,-1,118,169,141,-1,169,118,192,-1,138,166,139,-1,166,138,193,-1,135,129,16,-1,135,134,129,-1,131,112,140,-1,131,130,112,-1,127,106,136,-1,127,126,106,-1,123,104,191,-1,123,122,104,-1,120,192,118,-1,192,120,102,-1,194,42,193,-1,42,194,195,-1,113,194,111,-1,194,113,96,-1,108,91,132,-1,108,107,91,-1,105,22,128,-1,105,90,22,-1,101,196,124,-1,101,103,196,-1,98,86,103,-1,98,100,86,-1,95,114,93,-1,114,95,84,-1,92,7,110,-1,92,81,7,-1,10,197,109,-1,10,12,197,-1,198,9,88,-1,198,18,9,-1,100,87,86,-1,100,74,87,-1,71,84,95,-1,84,71,82,-1,81,8,7,-1,81,70,8,-1,79,197,12,-1,197,79,199,-1,66,79,77,-1,79,66,200,-1,20,5,4,-1,20,65,5,-1,62,75,85,-1,75,62,73,-1,201,72,23,-1,72,201,1,-1,202,59,69,-1,202,68,59,-1,203,56,68,-1,203,204,56,-1,24,54,67,-1,24,205,54,-1,76,50,64,-1,76,206,50,-1,25,63,0,-1,63,25,48,-1,61,207,208,-1,61,60,207,-1,58,209,60,-1,58,57,209,-1,55,210,53,-1,210,55,211,-1,52,212,213,-1,52,51,212,-1,49,214,47,-1,214,49,215,-1,216,217,2,-1,216,40,217,-1,175,46,218,-1,46,175,184,-1,209,41,38,-1,209,182,41,-1,178,36,211,-1,36,178,34,-1,212,33,30,-1,212,177,33,-1,181,26,215,-1,26,181,29,-1,184,49,46,-1,49,184,183,-1,28,179,51,-1,28,27,179,-1,31,55,32,-1,55,31,174,-1,35,180,57,-1,35,37,180,-1,40,176,217,-1,40,39,176,-1,168,187,219,-1,187,168,167,-1,218,48,25,-1,48,218,46,-1,26,50,206,-1,50,26,28,-1,205,32,54,-1,205,30,32,-1,204,35,56,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlprem1lr_Geo_5_703_coordIndex_2()
		{
			int[] value = {204,36,35,-1,207,40,216,-1,207,38,40,-1,201,2,1,-1,201,216,2,-1,47,73,62,-1,73,47,214,-1,65,213,5,-1,65,52,213,-1,53,200,66,-1,200,53,210,-1,200,199,79,-1,199,200,203,-1,70,208,8,-1,70,61,208,-1,0,82,71,-1,82,0,63,-1,74,64,87,-1,74,76,64,-1,3,67,78,-1,3,24,67,-1,11,78,77,-1,11,89,78,-1,220,69,80,-1,220,202,69,-1,23,94,6,-1,94,23,72,-1,85,97,83,-1,97,85,75,-1,103,19,196,-1,103,86,19,-1,90,11,22,-1,90,89,11,-1,107,80,91,-1,107,220,80,-1,6,96,113,-1,96,6,94,-1,83,99,117,-1,99,83,97,-1,99,102,120,-1,102,99,98,-1,122,88,104,-1,122,198,88,-1,126,109,106,-1,126,10,109,-1,130,110,112,-1,130,92,110,-1,93,116,195,-1,116,93,114,-1,116,119,45,-1,119,116,115,-1,221,124,121,-1,221,101,124,-1,222,128,125,-1,222,105,128,-1,134,132,129,-1,134,108,132,-1,111,193,138,-1,193,111,194,-1,17,140,137,-1,17,131,140,-1,45,142,43,-1,142,45,119,-1,173,121,143,-1,173,221,121,-1,223,125,145,-1,223,222,125,-1,161,164,224,-1,160,164,161,-1,171,149,148,-1,171,225,149,-1,153,14,151,-1,14,153,15,-1,154,157,152,-1,154,155,157,-1,219,226,168,-1,226,219,227,-1,170,16,13,-1,170,135,16,-1,171,146,133,-1,171,148,146,-1,164,223,190,-1,164,163,223,-1,167,173,172,-1,167,169,173,-1,43,226,165,-1,43,142,226,-1,137,154,151,-1,154,137,139,-1,139,155,154,-1,155,139,166,-1,168,142,141,-1,168,226,142,-1,145,190,223,-1,150,190,145,-1,162,144,160,-1,162,143,144,-1,227,165,226,-1,165,227,185,-1,186,162,159,-1,162,186,172,-1,171,188,225,-1,171,170,188,-1,224,190,189,-1,164,190,224,-1,163,222,223,-1,163,191,222,-1,169,221,173,-1,169,192,221,-1,193,44,166,-1,42,44,193,-1,16,131,17,-1,16,129,131,-1,112,138,140,-1,138,112,111,-1,136,108,134,-1,136,106,108,-1,191,105,222,-1,191,104,105,-1,102,221,192,-1,221,102,101,-1,195,45,42,-1,45,195,116,-1,96,195,194,-1,195,96,93,-1,132,92,130,-1,132,91,92,-1,128,10,126,-1,128,22,10,-1,124,198,122,-1,124,196,198,-1,117,120,115,-1,120,117,99,-1,84,117,114,-1,117,84,83,-1,7,113,110,-1,113,7,6,-1,109,220,107,-1,109,197,220,-1,196,18,198,-1,196,19,18,-1,75,100,97,-1,100,75,74,-1,72,95,94,-1,95,72,71,-1,199,220,197,-1,220,199,202,-1,78,9,3,-1,89,9,78,-1,87,65,20,-1,87,64,65,-1,63,85,82,-1,85,63,62,-1,8,201,23,-1,8,208,201,-1,203,202,199,-1,202,203,68,-1,210,203,200,-1,203,210,204,-1,5,205,24,-1,5,213,205,-1,214,76,73,-1,76,214,206,-1,208,216,201,-1,208,207,216,-1,60,38,207,-1,60,209,38,-1,211,204,210,-1,204,211,36,-1,213,30,205,-1,213,212,30,-1,215,206,214,-1,206,215,26,-1,217,25,2,-1,25,217,218,-1,176,218,217,-1,218,176,175,-1,57,182,209,-1,57,180,182,-1,174,211,55,-1,211,174,178,-1,51,177,212,-1,51,179,177,-1,183,215,49,-1,215,183,181,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlprem1lr_Geo_5_703_normalIndex_1()
		{
			int[] value = {24,15,17,-1,200,169,167,-1,23,63,73,-1,201,169,200,-1,191,214,195,-1,131,109,96,-1,109,144,113,-1,109,131,144,-1,172,133,134,-1,172,134,169,-1,131,96,124,-1,191,206,214,-1,201,172,169,-1,73,35,23,-1,200,167,199,-1,24,17,25,-1,90,108,106,-1,90,94,108,-1,173,137,198,-1,173,127,137,-1,126,152,164,-1,152,126,123,-1,76,91,51,-1,76,95,91,-1,14,30,9,-1,14,33,30,-1,52,53,39,-1,53,52,62,-1,103,125,130,-1,103,106,125,-1,198,203,218,-1,203,198,196,-1,159,142,150,-1,159,152,142,-1,149,120,119,-1,149,150,120,-1,39,49,36,-1,49,39,53,-1,104,130,132,-1,104,103,130,-1,218,204,219,-1,204,218,203,-1,157,150,149,-1,157,159,150,-1,143,119,112,-1,143,149,119,-1,15,16,7,-1,16,15,24,-1,61,89,64,-1,89,61,82,-1,219,202,220,-1,202,219,204,-1,202,195,214,-1,195,202,185,-1,145,112,111,-1,145,143,112,-1,38,48,34,-1,48,38,50,-1,107,134,133,-1,107,98,134,-1,209,221,223,-1,209,201,221,-1,148,111,116,-1,148,145,111,-1,11,6,8,-1,11,3,6,-1,60,80,57,-1,80,60,86,-1,80,102,79,-1,102,80,105,-1,213,223,227,-1,213,209,223,-1,178,162,161,-1,178,177,162,-1,69,21,67,-1,21,69,18,-1,32,45,31,-1,45,32,46,-1,45,59,47,-1,59,45,58,-1,139,183,182,-1,139,141,183,-1,207,190,188,-1,207,208,190,-1,147,114,115,-1,147,146,114,-1,174,160,158,-1,174,176,160,-1,65,20,19,-1,65,68,20,-1,47,55,44,-1,55,47,59,-1,135,182,180,-1,135,139,182,-1,205,188,189,-1,205,207,188,-1,215,192,193,-1,211,192,215,-1,70,29,71,-1,70,22,29,-1,5,13,4,-1,5,10,13,-1,138,184,194,-1,129,184,138,-1,184,210,216,-1,184,180,210,-1,28,9,30,-1,28,10,9,-1,70,113,65,-1,70,109,113,-1,0,10,5,-1,10,0,9,-1,55,83,54,-1,83,55,77,-1,174,154,168,-1,154,174,158,-1,135,99,101,-1,129,99,135,-1,211,189,192,-1,211,205,189,-1,127,136,137,-1,91,85,87,-1,122,136,127,-1,122,128,136,-1,118,128,122,-1,118,126,128,-1,108,126,118,-1,108,123,126,-1,94,123,108,-1,94,121,123,-1,93,121,94,-1,93,110,121,-1,92,110,93,-1,92,95,110,-1,88,95,92,-1,88,91,95,-1,88,85,91,-1,10,27,13,-1,10,28,27,-1,83,97,81,-1,83,99,97,-1,153,131,124,-1,131,153,154,-1,211,225,224,-1,215,225,211,-1,189,176,174,-1,189,188,176,-1,180,212,210,-1,180,182,212,-1,59,77,55,-1,77,59,78,-1,20,0,19,-1,0,20,2,-1,158,147,144,-1,158,160,147,-1,115,67,68,-1,115,114,67,-1,188,178,176,-1,188,190,178,-1,182,213,212,-1,182,183,213,-1,58,78,59,-1,78,58,79,-1,1,14,2,-1,14,1,12,-1,18,1,21,-1,1,18,3,-1,161,148,146,-1,161,162,148,-1,227,206,208,-1,227,223,206,-1,102,140,141,-1,102,105,140,-1,80,107,105,-1,80,86,107,-1,8,32,11,-1,32,8,34,-1,116,63,69,-1,116,111,63,-1,191,170,177,-1,191,195,170,-1,181,201,209,-1,181,172,201,-1,86,98,107,-1,86,89,98,-1,16,34,8,-1,34,16,38,-1,111,73,63,-1,111,112,73,-1,185,170,195,-1,170,185,165,-1,204,185,202,-1,185,204,186,-1,134,167,169,-1,134,132,167,-1,49,64,50,-1,64,49,61,-1,26,7,35,-1,7,26,15,-1,155,149,143,-1,155,157,149,-1,171,159,157,-1,171,175,159,-1,199,218,219,-1,199,197,218,-1,82,103,104,-1,82,84,103,-1,25,36,24,-1,36,25,39,-1,119,74,72,-1,119,120,74,-1,150,117,120,-1,150,142,117,-1,196,187,203,-1,187,196,179,-1,130,151,163,-1,130,125,151,-1,62,66,53,-1,66,62,75,-1,37,40,17,-1,37,51,40,-1,85,52,41,-1,52,85,88,-1,117,95,76,-1,117,110,95,-1,128,164,179,-1,164,128,126,-1,151,127,173,-1,151,122,127,-1,93,90,75,-1,90,93,94,-1,88,62,52,-1,62,88,92,-1,106,118,125,-1,106,108,118,-1,137,196,198,-1,196,137,136,-1,152,121,142,-1,152,123,121,-1,51,87,40,-1,51,91,87,-1,54,81,56,-1,81,54,83,-1,41,39,25,-1,39,41,52,-1,90,103,84,-1,103,90,106,-1,197,198,218,-1,197,173,198,-1,175,152,159,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlprem1lr_Geo_5_703_normalIndex_2()
		{
			int[] value = {175,164,152,-1,74,51,37,-1,74,76,51,-1,26,17,15,-1,26,37,17,-1,53,61,49,-1,61,53,66,-1,132,163,167,-1,132,130,163,-1,203,186,204,-1,186,203,187,-1,186,165,185,-1,165,186,171,-1,112,72,73,-1,112,119,72,-1,24,38,16,-1,38,24,36,-1,89,104,98,-1,89,82,104,-1,200,219,220,-1,200,199,219,-1,214,220,202,-1,214,221,220,-1,156,143,145,-1,156,155,143,-1,35,6,23,-1,6,35,7,-1,50,60,48,-1,60,50,64,-1,105,133,140,-1,105,107,133,-1,223,214,206,-1,223,221,214,-1,162,145,148,-1,162,156,145,-1,23,3,18,-1,3,23,6,-1,48,57,46,-1,57,48,60,-1,57,79,58,-1,79,57,80,-1,183,209,213,-1,183,181,209,-1,190,177,178,-1,190,191,177,-1,114,69,67,-1,114,116,69,-1,11,31,12,-1,31,11,32,-1,31,47,33,-1,47,31,45,-1,100,141,139,-1,100,102,141,-1,226,208,207,-1,226,227,208,-1,160,146,147,-1,160,161,146,-1,21,2,20,-1,2,21,1,-1,113,68,65,-1,113,115,68,-1,33,44,30,-1,44,33,47,-1,101,139,135,-1,101,100,139,-1,222,207,205,-1,222,226,207,-1,194,216,217,-1,184,216,194,-1,168,193,192,-1,168,166,193,-1,71,109,70,-1,109,71,96,-1,22,4,29,-1,22,5,4,-1,56,42,54,-1,42,56,43,-1,154,144,131,-1,154,158,144,-1,168,189,174,-1,168,192,189,-1,216,222,224,-1,216,210,222,-1,83,101,99,-1,83,77,101,-1,30,42,28,-1,30,44,42,-1,65,22,70,-1,22,65,19,-1,19,5,22,-1,5,19,0,-1,54,44,55,-1,54,42,44,-1,205,224,222,-1,211,224,205,-1,129,180,184,-1,129,135,180,-1,43,28,42,-1,28,43,27,-1,97,129,138,-1,129,97,99,-1,168,153,166,-1,168,154,153,-1,217,224,225,-1,216,224,217,-1,210,226,222,-1,210,212,226,-1,77,100,101,-1,77,78,100,-1,2,9,0,-1,14,9,2,-1,144,115,113,-1,144,147,115,-1,67,20,68,-1,20,67,21,-1,176,161,160,-1,176,178,161,-1,212,227,226,-1,212,213,227,-1,79,100,78,-1,100,79,102,-1,12,33,14,-1,33,12,31,-1,3,12,1,-1,12,3,11,-1,146,116,114,-1,146,148,116,-1,208,191,190,-1,208,206,191,-1,141,181,183,-1,141,140,181,-1,46,58,45,-1,58,46,57,-1,34,46,32,-1,46,34,48,-1,63,18,69,-1,18,63,23,-1,177,156,162,-1,177,170,156,-1,140,172,181,-1,140,133,172,-1,64,86,60,-1,86,64,89,-1,7,8,6,-1,8,7,16,-1,165,156,170,-1,156,165,155,-1,220,201,200,-1,221,201,220,-1,98,132,134,-1,98,104,132,-1,36,50,38,-1,50,36,49,-1,73,26,35,-1,73,72,26,-1,171,155,165,-1,155,171,157,-1,187,171,186,-1,171,187,175,-1,167,197,199,-1,167,163,197,-1,66,82,61,-1,82,66,84,-1,72,37,26,-1,72,74,37,-1,120,76,74,-1,120,117,76,-1,179,175,187,-1,175,179,164,-1,163,173,197,-1,163,151,173,-1,75,84,66,-1,84,75,90,-1,40,25,17,-1,25,40,41,-1,87,41,40,-1,41,87,85,-1,142,110,117,-1,142,121,110,-1,136,179,196,-1,179,136,128,-1,125,122,151,-1,125,118,122,-1,92,75,62,-1,75,92,93,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlprem2lc_Geo_5_709_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,11,12,13,-1,14,15,16,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,26,27,28,-1,12,29,13,-1,29,20,22,-1,30,31,32,-1,33,34,35,-1,36,18,37,-1,38,39,40,-1,41,42,43,-1,19,44,45,-1,46,40,47,-1,40,48,49,-1,50,51,52,-1,53,54,55,-1,56,57,58,-1,59,60,61,-1,62,63,23,-1,63,64,65,-1,66,67,68,-1,69,70,71,-1,72,14,57,-1,73,74,75,-1,76,77,78,-1,79,31,80,-1,80,31,81,-1,82,83,77,-1,84,85,86,-1,87,88,89,-1,90,91,92,-1,93,94,95,-1,45,44,96,-1,97,98,99,-1,100,2,101,-1,102,103,104,-1,69,105,106,-1,107,71,70,-1,108,109,104,-1,103,110,111,-1,112,20,113,-1,114,115,110,-1,95,116,92,-1,88,117,90,-1,118,119,120,-1,121,122,87,-1,121,123,122,-1,87,89,85,-1,124,125,126,-1,127,128,129,-1,130,131,132,-1,86,133,92,-1,126,118,134,-1,135,48,136,-1,137,138,139,-1,140,141,76,-1,142,143,77,-1,13,22,144,-1,145,26,101,-1,65,64,110,-1,104,111,105,-1,146,67,66,-1,95,94,147,-1,126,148,118,-1,60,56,82,-1,142,83,58,-1,149,150,151,-1,152,35,153,-1,52,154,155,-1,156,157,50,-1,158,159,160,-1,161,155,154,-1,40,46,48,-1,41,43,98,-1,49,124,38,-1,162,4,3,-1,29,163,113,-1,163,29,12,-1,96,145,1,-1,144,27,164,-1,23,100,28,-1,144,164,165,-1,149,166,167,-1,5,168,169,-1,4,170,5,-1,88,90,133,-1,171,172,173,-1,174,175,176,-1,123,121,177,-1,176,178,174,-1,168,5,170,-1,4,179,170,-1,166,180,167,-1,181,131,130,-1,11,144,165,-1,11,13,144,-1,45,182,41,-1,8,183,184,-1,1,185,96,-1,185,1,186,-1,12,187,163,-1,37,18,17,-1,188,189,18,-1,188,26,189,-1,38,40,49,-1,190,191,136,-1,192,161,74,-1,40,39,47,-1,38,124,134,-1,156,50,155,-1,155,50,52,-1,152,6,35,-1,149,130,150,-1,58,55,142,-1,60,59,56,-1,126,193,148,-1,147,194,95,-1,146,66,195,-1,105,71,104,-1,110,103,65,-1,145,189,26,-1,22,21,144,-1,83,142,77,-1,76,196,140,-1,137,139,197,-1,136,198,135,-1,126,134,124,-1,92,199,86,-1,127,129,200,-1,124,49,125,-1,85,201,87,-1,95,92,91,-1,39,202,120,-1,110,64,114,-1,112,24,20,-1,110,203,111,-1,109,102,104,-1,70,204,107,-1,105,205,106,-1,102,65,103,-1,45,96,182,-1,154,33,75,-1,119,112,113,-1,95,91,93,-1,90,92,133,-1,87,122,88,-1,85,89,86,-1,82,77,141,-1,31,30,81,-1,132,79,80,-1,76,141,77,-1,57,191,72,-1,14,53,57,-1,26,100,101,-1,105,69,71,-1,103,111,104,-1,68,206,66,-1,63,65,207,-1,23,25,62,-1,63,0,23,-1,59,61,208,-1,56,198,57,-1,50,209,51,-1,156,155,161,-1,38,134,202,-1,47,210,46,-1,19,211,73,-1,192,99,161,-1,190,72,191,-1,38,202,39,-1,171,188,172,-1,36,188,18,-1,35,184,33,-1,184,183,33,-1,30,32,212,-1,29,113,20,-1,29,22,13,-1,28,100,26,-1,185,186,213,-1,20,24,21,-1,17,19,73,-1,53,16,54,-1,16,53,14,-1,9,11,214,-1,181,152,131,-1,5,169,3,-1,162,179,4,-1,0,186,1,-1,215,216,217,-1,216,215,218,-1,219,220,221,-1,219,222,220,-1,68,178,176,-1,68,223,178,-1,224,225,226,-1,225,224,227,-1,228,229,230,-1,228,231,229,-1,226,232,233,-1,232,226,225,-1,158,157,156,-1,158,160,157,-1,168,166,234,-1,170,166,168,-1,170,235,166,-1,167,130,149,-1,181,130,167,-1,236,37,17,-1,236,237,37,-1,145,44,189,-1,145,96,44,-1,213,158,42,-1,213,238,158,-1,239,153,240,-1,79,153,239,-1,75,17,73,-1,236,17,75,-1,241,173,36,-1,173,241,242,-1,190,210,72,-1,46,210,190,-1,74,211,192,-1,73,211,74,-1,210,10,9,-1,10,210,47,-1,161,43,156,-1,161,98,43,-1,161,99,98,-1,50,243,209,-1,157,243,50,-1,180,6,167,-1,7,6,180,-1,54,151,55,-1,151,16,234,-1,54,16,151,-1,244,208,61,-1,208,244,193,-1,194,116,95,-1,148,116,194,-1,25,147,62,-1,24,147,25,-1,24,112,147,-1,159,65,102,-1,207,65,159,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlprem2lc_Geo_5_709_coordIndex_2()
		{
			int[] value = {245,175,246,-1,176,175,245,-1,2,145,101,-1,1,145,2,-1,214,247,15,-1,214,248,247,-1,60,141,140,-1,60,82,141,-1,197,245,137,-1,245,197,206,-1,156,42,158,-1,156,43,42,-1,86,249,84,-1,199,249,86,-1,122,250,251,-1,250,122,123,-1,30,252,81,-1,30,253,252,-1,254,81,200,-1,254,80,81,-1,127,255,128,-1,220,255,127,-1,198,191,57,-1,198,136,191,-1,256,218,215,-1,256,257,218,-1,87,258,121,-1,87,201,258,-1,199,61,249,-1,244,61,199,-1,259,205,260,-1,106,205,259,-1,117,261,262,-1,117,251,261,-1,262,263,264,-1,262,260,263,-1,230,265,228,-1,230,266,265,-1,119,163,120,-1,113,163,119,-1,247,168,234,-1,168,247,169,-1,267,240,51,-1,240,267,239,-1,107,104,71,-1,108,104,107,-1,137,32,138,-1,212,32,137,-1,195,268,204,-1,195,66,268,-1,204,232,195,-1,70,232,204,-1,268,139,269,-1,197,139,268,-1,269,108,107,-1,270,108,269,-1,209,270,271,-1,209,243,270,-1,120,187,39,-1,163,187,120,-1,234,15,247,-1,234,16,15,-1,203,260,205,-1,203,263,260,-1,260,261,259,-1,261,260,262,-1,262,90,117,-1,264,90,262,-1,249,60,140,-1,61,60,249,-1,201,215,258,-1,201,256,215,-1,257,272,218,-1,272,257,273,-1,129,78,274,-1,78,129,275,-1,143,150,276,-1,142,150,143,-1,123,277,250,-1,277,123,177,-1,274,77,143,-1,77,274,78,-1,36,237,241,-1,36,37,237,-1,169,248,3,-1,169,247,248,-1,253,221,252,-1,253,278,221,-1,238,159,158,-1,238,207,159,-1,114,63,62,-1,64,63,114,-1,119,148,194,-1,118,148,119,-1,208,135,59,-1,135,208,125,-1,55,150,142,-1,55,151,150,-1,45,211,19,-1,45,97,211,-1,10,39,187,-1,10,47,39,-1,165,27,162,-1,165,164,27,-1,97,192,211,-1,97,99,192,-1,180,235,242,-1,180,166,235,-1,33,236,75,-1,183,236,33,-1,32,79,239,-1,31,79,32,-1,189,19,18,-1,44,19,189,-1,183,237,236,-1,183,8,237,-1,9,15,14,-1,214,15,9,-1,11,187,12,-1,10,187,11,-1,152,167,6,-1,152,181,167,-1,3,165,162,-1,3,248,165,-1,195,225,146,-1,195,232,225,-1,279,231,228,-1,279,280,231,-1,67,281,282,-1,67,146,281,-1,219,278,283,-1,221,278,219,-1,218,284,216,-1,218,272,284,-1,217,258,215,-1,217,285,258,-1,222,255,220,-1,255,222,286,-1,282,68,67,-1,68,282,223,-1,177,287,277,-1,177,288,287,-1,229,226,230,-1,226,229,224,-1,230,233,266,-1,233,230,226,-1,186,238,213,-1,238,186,0,-1,243,160,109,-1,160,243,157,-1,171,162,188,-1,179,162,171,-1,144,28,27,-1,28,144,21,-1,0,100,23,-1,2,100,0,-1,212,253,30,-1,253,212,246,-1,35,240,153,-1,35,34,240,-1,171,242,235,-1,171,173,242,-1,48,190,136,-1,48,46,190,-1,11,248,214,-1,165,248,11,-1,154,74,161,-1,154,75,74,-1,33,52,34,-1,154,52,33,-1,56,83,82,-1,56,58,83,-1,208,126,125,-1,208,193,126,-1,62,94,114,-1,62,147,94,-1,63,238,0,-1,63,207,238,-1,206,176,245,-1,68,176,206,-1,233,70,69,-1,233,232,70,-1,51,271,267,-1,51,209,271,-1,84,140,196,-1,249,140,84,-1,132,254,276,-1,132,80,254,-1,130,276,150,-1,130,132,276,-1,127,81,252,-1,200,81,127,-1,255,273,128,-1,273,255,272,-1,125,48,135,-1,125,49,48,-1,257,289,290,-1,289,257,256,-1,196,85,84,-1,196,289,85,-1,86,88,133,-1,89,88,86,-1,134,120,202,-1,118,120,134,-1,266,259,265,-1,106,259,266,-1,250,279,291,-1,279,250,277,-1,115,264,263,-1,264,115,93,-1,228,291,279,-1,228,265,291,-1,8,241,237,-1,7,241,8,-1,42,182,213,-1,182,42,41,-1,239,138,32,-1,267,138,239,-1,205,111,203,-1,105,111,205,-1,66,197,268,-1,66,206,197,-1,266,69,106,-1,266,233,69,-1,246,137,245,-1,137,246,212,-1,269,204,268,-1,269,107,204,-1,269,271,270,-1,269,139,271,-1,270,109,108,-1,243,109,270,-1,114,93,115,-1,114,94,93,-1,110,263,203,-1,110,115,263,-1,291,259,261,-1,291,265,259,-1,93,90,264,-1,93,91,90,-1,251,88,122,-1,251,117,88,-1,291,251,250,-1,291,261,251,-1,275,76,78,-1,76,275,290,-1,256,85,289,-1,256,201,85,-1,290,273,257,-1,273,290,275,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlprem2lc_Geo_5_709_coordIndex_3()
		{
			int[] value = {275,128,273,-1,275,129,128,-1,254,129,274,-1,200,129,254,-1,127,221,220,-1,127,252,221,-1,131,79,132,-1,79,152,153,-1,79,131,152,-1,276,274,143,-1,276,254,274,-1,116,199,92,-1,116,244,199,-1,9,72,210,-1,72,9,14,-1,139,267,271,-1,138,267,139,-1,290,196,76,-1,290,289,196,-1,109,159,102,-1,159,109,160,-1,112,194,147,-1,112,119,194,-1,148,244,116,-1,193,244,148,-1,59,198,56,-1,59,135,198,-1,58,53,55,-1,58,57,53,-1,234,149,151,-1,166,149,234,-1,34,51,240,-1,52,51,34,-1,98,45,41,-1,98,97,45,-1,7,242,241,-1,242,7,180,-1,172,36,173,-1,188,36,172,-1,246,278,253,-1,278,246,175,-1,182,185,213,-1,185,182,96,-1,28,24,23,-1,28,21,24,-1,8,35,6,-1,8,184,35,-1,235,179,171,-1,170,179,235,-1,162,26,188,-1,162,27,26,-1,292,177,121,-1,177,292,288,-1,277,280,279,-1,277,287,280,-1,227,146,225,-1,146,227,281,-1,283,175,174,-1,283,278,175,-1,286,272,255,-1,286,284,272,-1,285,121,258,-1,285,292,121,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlprem2lc_Geo_5_709_normalIndex_1()
		{
			int[] value = {84,70,95,-1,248,235,262,-1,101,161,158,-1,228,137,135,-1,135,55,59,-1,211,217,225,-1,204,152,129,-1,72,67,56,-1,108,94,96,-1,98,68,88,-1,55,39,59,-1,39,72,56,-1,77,35,112,-1,178,139,119,-1,180,152,188,-1,99,82,144,-1,89,93,113,-1,129,102,75,-1,242,144,146,-1,144,226,198,-1,167,165,160,-1,230,238,164,-1,168,250,150,-1,143,43,62,-1,145,147,108,-1,147,195,215,-1,214,233,203,-1,281,264,276,-1,208,211,250,-1,192,148,186,-1,29,17,8,-1,32,35,16,-1,16,35,30,-1,61,36,17,-1,91,81,126,-1,125,193,141,-1,209,187,157,-1,205,183,142,-1,75,102,78,-1,100,109,105,-1,103,95,104,-1,243,268,275,-1,281,289,291,-1,245,276,264,-1,239,210,275,-1,268,260,286,-1,65,72,63,-1,201,246,260,-1,142,122,157,-1,193,219,209,-1,48,38,31,-1,120,179,125,-1,120,181,179,-1,125,141,81,-1,106,189,115,-1,12,3,0,-1,52,19,23,-1,126,197,157,-1,115,48,20,-1,267,226,278,-1,162,153,177,-1,51,54,29,-1,40,9,17,-1,59,56,76,-1,111,98,104,-1,215,195,260,-1,275,286,289,-1,224,233,214,-1,142,183,132,-1,115,85,48,-1,43,168,61,-1,40,36,150,-1,149,66,169,-1,26,119,46,-1,160,155,138,-1,110,136,167,-1,80,154,159,-1,133,138,155,-1,144,242,226,-1,89,113,109,-1,198,106,99,-1,163,235,248,-1,39,33,63,-1,33,39,55,-1,78,111,70,-1,76,68,97,-1,108,103,88,-1,76,97,170,-1,149,244,127,-1,262,253,255,-1,235,259,262,-1,193,209,197,-1,257,223,221,-1,134,131,173,-1,181,120,175,-1,173,176,134,-1,253,262,259,-1,235,252,259,-1,244,212,127,-1,27,19,52,-1,135,76,170,-1,135,59,76,-1,75,60,89,-1,158,191,140,-1,70,57,78,-1,57,70,37,-1,55,41,33,-1,188,152,204,-1,185,117,152,-1,185,98,117,-1,99,144,198,-1,263,266,278,-1,130,133,148,-1,144,82,146,-1,99,106,20,-1,110,167,138,-1,138,167,160,-1,26,101,119,-1,149,52,66,-1,150,164,40,-1,43,143,168,-1,115,79,85,-1,132,86,142,-1,224,214,218,-1,289,276,275,-1,260,268,215,-1,111,117,98,-1,56,67,76,-1,36,40,17,-1,29,47,51,-1,162,177,194,-1,278,273,267,-1,115,20,106,-1,157,107,126,-1,12,0,11,-1,106,198,189,-1,81,73,125,-1,142,157,187,-1,82,28,31,-1,260,195,201,-1,65,94,72,-1,260,288,286,-1,210,243,275,-1,264,220,245,-1,289,292,291,-1,243,215,268,-1,75,78,60,-1,155,178,186,-1,38,65,63,-1,142,187,205,-1,209,157,197,-1,125,179,193,-1,81,141,126,-1,61,17,54,-1,35,77,30,-1,23,32,16,-1,29,54,17,-1,250,266,208,-1,211,230,250,-1,98,103,104,-1,289,281,276,-1,268,286,275,-1,203,196,214,-1,147,215,151,-1,108,96,145,-1,147,84,108,-1,143,62,116,-1,168,273,250,-1,167,182,165,-1,110,138,133,-1,99,20,28,-1,146,213,242,-1,129,128,192,-1,130,105,133,-1,263,208,266,-1,99,28,82,-1,257,185,223,-1,180,185,152,-1,119,140,178,-1,140,191,178,-1,77,112,123,-1,39,63,72,-1,39,56,59,-1,88,103,98,-1,57,37,58,-1,72,94,67,-1,204,129,192,-1,230,225,238,-1,225,230,211,-1,228,135,249,-1,27,26,19,-1,262,255,248,-1,163,252,235,-1,84,37,70,-1,44,25,50,-1,25,44,22,-1,53,14,42,-1,53,15,14,-1,203,176,173,-1,203,206,176,-1,271,240,272,-1,240,271,236,-1,279,283,287,-1,279,274,283,-1,272,247,277,-1,247,272,240,-1,80,136,110,-1,80,159,136,-1,253,244,237,-1,259,244,253,-1,259,258,244,-1,127,52,149,-1,27,52,127,-1,200,188,204,-1,200,172,188,-1,111,102,117,-1,111,78,102,-1,58,80,93,-1,58,69,80,-1,114,46,121,-1,32,46,114,-1,186,204,192,-1,200,204,186,-1,166,221,180,-1,221,166,216,-1,263,213,208,-1,242,213,263,-1,148,128,130,-1,192,128,148,-1,213,137,228,-1,137,213,146,-1,133,113,110,-1,133,109,113,-1,133,105,109,-1,167,190,182,-1,136,190,167,-1,212,101,127,-1,161,101,212,-1,238,169,164,-1,169,225,237,-1,238,225,169,-1,92,116,62,-1,116,92,79,-1,86,122,142,-1,85,122,86,-1,96,132,145,-1,94,132,96,-1,94,65,132,-1,154,215,243,-1,151,215,154,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlprem2lc_Geo_5_709_normalIndex_2()
		{
			int[] value = {171,131,124,-1,173,131,171,-1,95,111,104,-1,70,111,95,-1,249,241,217,-1,249,261,241,-1,43,54,51,-1,43,61,54,-1,194,171,162,-1,171,194,196,-1,110,93,80,-1,110,113,93,-1,126,64,91,-1,107,64,126,-1,179,234,227,-1,234,179,181,-1,77,34,30,-1,77,83,34,-1,13,30,11,-1,13,16,30,-1,12,2,3,-1,14,2,12,-1,273,266,250,-1,273,278,266,-1,45,22,44,-1,45,24,22,-1,125,71,120,-1,125,73,71,-1,107,62,64,-1,92,62,107,-1,284,292,285,-1,291,292,284,-1,219,269,270,-1,219,227,269,-1,270,280,251,-1,270,285,280,-1,287,282,279,-1,287,290,282,-1,38,33,31,-1,63,33,38,-1,241,253,237,-1,253,241,255,-1,156,121,165,-1,121,156,114,-1,245,275,276,-1,239,275,245,-1,162,112,153,-1,123,112,162,-1,218,207,220,-1,218,214,207,-1,220,247,218,-1,264,247,220,-1,207,177,202,-1,194,177,207,-1,202,239,245,-1,199,239,202,-1,182,199,184,-1,182,190,199,-1,31,41,82,-1,33,41,31,-1,237,217,241,-1,237,225,217,-1,288,285,292,-1,288,280,285,-1,285,269,284,-1,269,285,270,-1,270,209,219,-1,251,209,270,-1,64,43,51,-1,62,43,64,-1,73,44,71,-1,73,45,44,-1,24,7,22,-1,7,24,6,-1,0,8,4,-1,8,0,10,-1,9,66,18,-1,40,66,9,-1,181,231,234,-1,231,181,175,-1,4,17,9,-1,17,4,8,-1,180,172,166,-1,180,188,172,-1,255,261,248,-1,255,241,261,-1,83,42,34,-1,83,87,42,-1,69,154,80,-1,69,151,154,-1,201,147,145,-1,195,147,201,-1,38,85,86,-1,48,85,38,-1,116,267,143,-1,267,116,189,-1,164,66,40,-1,164,169,66,-1,75,128,129,-1,75,100,128,-1,137,82,41,-1,137,146,82,-1,170,68,163,-1,170,97,68,-1,100,130,128,-1,100,105,130,-1,212,258,216,-1,212,244,258,-1,178,200,186,-1,191,200,178,-1,112,32,114,-1,35,32,112,-1,117,129,152,-1,102,129,117,-1,191,172,200,-1,191,158,172,-1,228,217,211,-1,249,217,228,-1,135,41,55,-1,137,41,135,-1,26,127,101,-1,26,27,127,-1,248,170,163,-1,248,261,170,-1,218,240,224,-1,218,247,240,-1,256,274,279,-1,256,254,274,-1,233,229,232,-1,233,224,229,-1,53,87,90,-1,42,87,53,-1,22,5,25,-1,22,7,5,-1,50,71,44,-1,50,74,71,-1,15,2,14,-1,2,15,1,-1,232,203,233,-1,203,232,206,-1,175,222,231,-1,175,174,222,-1,283,272,287,-1,272,283,271,-1,287,277,290,-1,277,287,272,-1,37,69,58,-1,69,37,84,-1,190,159,210,-1,159,190,136,-1,257,163,185,-1,252,163,257,-1,76,88,68,-1,88,76,67,-1,84,103,108,-1,95,103,84,-1,123,83,77,-1,83,123,124,-1,119,121,46,-1,119,139,121,-1,257,216,258,-1,257,221,216,-1,226,263,278,-1,226,242,263,-1,135,261,249,-1,170,261,135,-1,155,148,133,-1,155,186,148,-1,178,160,139,-1,155,160,178,-1,168,36,61,-1,168,150,36,-1,116,115,189,-1,116,79,115,-1,145,183,201,-1,145,132,183,-1,147,69,84,-1,147,151,69,-1,196,173,171,-1,203,173,196,-1,277,264,281,-1,277,247,264,-1,165,184,156,-1,165,182,184,-1,91,51,47,-1,64,51,91,-1,23,13,18,-1,23,16,13,-1,52,18,66,-1,52,23,18,-1,12,30,34,-1,11,30,12,-1,2,6,3,-1,6,2,7,-1,189,226,267,-1,189,198,226,-1,24,49,21,-1,49,24,45,-1,47,81,91,-1,47,49,81,-1,126,193,197,-1,141,193,126,-1,20,31,28,-1,48,31,20,-1,290,284,282,-1,291,284,290,-1,234,256,265,-1,256,234,231,-1,246,251,280,-1,251,246,205,-1,279,265,256,-1,279,282,265,-1,158,166,172,-1,161,166,158,-1,93,60,58,-1,60,93,89,-1,114,153,112,-1,156,153,114,-1,292,286,288,-1,289,286,292,-1,214,194,207,-1,214,196,194,-1,290,281,291,-1,290,277,281,-1,124,162,171,-1,162,124,123,-1,202,220,207,-1,202,245,220,-1,202,184,199,-1,202,177,184,-1,199,210,239,-1,190,210,199,-1,201,205,246,-1,201,183,205,-1,260,280,288,-1,260,246,280,-1,265,284,269,-1,265,282,284,-1,205,209,251,-1,205,187,209,-1,227,193,179,-1,227,219,193,-1,265,227,234,-1,265,269,227,-1,10,29,8,-1,29,10,21,-1,45,81,49,-1,45,73,81,-1,21,6,24,-1,6,21,10,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlprem2lc_Geo_5_709_normalIndex_3()
		{
			int[] value = {10,3,6,-1,10,0,3,-1,13,0,4,-1,11,0,13,-1,12,42,14,-1,12,34,42,-1,19,32,23,-1,32,26,46,-1,32,19,26,-1,18,4,9,-1,18,13,4,-1,122,107,157,-1,122,92,107,-1,228,208,213,-1,208,228,211,-1,177,156,184,-1,153,156,177,-1,21,47,29,-1,21,49,47,-1,210,154,243,-1,154,210,159,-1,65,86,132,-1,65,38,86,-1,85,92,122,-1,79,92,85,-1,143,273,168,-1,143,267,273,-1,150,230,164,-1,150,250,230,-1,237,149,169,-1,244,149,237,-1,139,165,121,-1,160,165,139,-1,109,75,89,-1,109,100,75,-1,161,216,166,-1,216,161,212,-1,223,180,221,-1,185,180,223,-1,124,87,83,-1,87,124,131,-1,60,57,58,-1,57,60,78,-1,88,94,108,-1,88,67,94,-1,158,119,101,-1,158,140,119,-1,258,252,257,-1,259,252,258,-1,163,98,185,-1,163,68,98,-1,118,175,120,-1,175,118,174,-1,231,254,256,-1,231,222,254,-1,236,224,240,-1,224,236,229,-1,90,131,134,-1,90,87,131,-1,1,7,2,-1,1,5,7,-1,74,120,71,-1,74,118,120,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlprem2lr_Geo_5_715_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,12,15,13,-1,16,17,18,-1,19,20,21,-1,22,23,24,-1,25,26,24,-1,27,28,29,-1,30,31,32,-1,33,34,35,-1,15,36,37,-1,10,18,38,-1,39,40,41,-1,4,14,42,-1,43,0,44,-1,8,45,46,-1,45,47,48,-1,49,44,0,-1,5,42,50,-1,50,51,5,-1,0,2,49,-1,45,52,47,-1,8,53,45,-1,43,11,0,-1,4,42,5,-1,39,35,40,-1,18,54,38,-1,15,37,13,-1,33,35,39,-1,30,55,31,-1,56,57,58,-1,56,59,57,-1,27,60,28,-1,26,22,24,-1,22,61,23,-1,19,62,20,-1,16,63,17,-1,10,38,11,-1,6,8,64,-1,3,5,65,-1,11,66,0,-1,11,38,66,-1,0,66,1,-1,67,68,69,-1,67,70,68,-1,71,72,73,-1,72,71,74,-1,75,49,2,-1,49,75,76,-1,77,78,79,-1,77,80,78,-1,81,82,47,-1,81,83,82,-1,84,85,86,-1,85,84,87,-1,51,88,89,-1,51,90,88,-1,86,91,92,-1,91,86,85,-1,65,93,94,-1,65,89,93,-1,49,95,44,-1,95,49,96,-1,77,46,97,-1,98,46,77,-1,99,81,100,-1,99,101,81,-1,41,45,53,-1,41,52,45,-1,102,54,103,-1,54,102,104,-1,44,37,43,-1,37,44,95,-1,105,106,94,-1,107,106,105,-1,108,99,109,-1,108,110,99,-1,111,40,35,-1,111,109,40,-1,18,103,54,-1,18,17,103,-1,107,112,106,-1,113,112,107,-1,114,115,116,-1,114,113,115,-1,117,35,34,-1,117,111,35,-1,20,6,21,-1,20,7,6,-1,118,119,120,-1,119,118,36,-1,121,122,123,-1,121,124,122,-1,125,126,123,-1,127,126,125,-1,128,129,130,-1,129,128,131,-1,132,133,134,-1,132,33,133,-1,135,136,137,-1,135,138,136,-1,139,135,140,-1,139,141,135,-1,142,143,144,-1,142,145,143,-1,146,147,148,-1,149,147,146,-1,150,151,152,-1,153,151,150,-1,154,62,19,-1,154,155,62,-1,138,141,156,-1,141,138,135,-1,141,157,158,-1,157,141,139,-1,159,144,31,-1,159,142,144,-1,160,149,161,-1,160,147,149,-1,162,153,57,-1,162,151,153,-1,163,154,164,-1,163,155,154,-1,165,166,167,-1,165,164,166,-1,158,168,169,-1,168,158,157,-1,31,170,159,-1,55,170,31,-1,171,161,172,-1,171,160,161,-1,173,57,59,-1,173,162,57,-1,174,30,175,-1,174,55,30,-1,176,177,178,-1,176,172,177,-1,179,56,180,-1,179,59,56,-1,181,167,182,-1,181,165,167,-1,169,183,184,-1,183,169,168,-1,185,55,174,-1,185,170,55,-1,186,187,175,-1,70,187,186,-1,188,189,178,-1,190,189,188,-1,191,192,180,-1,193,192,191,-1,23,182,194,-1,23,195,182,-1,196,183,197,-1,196,198,183,-1,196,73,199,-1,196,71,73,-1,200,201,202,-1,200,190,201,-1,189,200,203,-1,190,200,189,-1,204,25,198,-1,204,26,25,-1,28,205,29,-1,205,28,195,-1,206,84,207,-1,88,84,206,-1,88,87,84,-1,90,87,88,-1,90,208,87,-1,209,208,90,-1,209,210,208,-1,211,210,209,-1,211,83,210,-1,212,83,211,-1,212,82,83,-1,76,82,212,-1,76,213,82,-1,76,214,213,-1,75,214,76,-1,75,80,214,-1,215,80,75,-1,216,80,215,-1,216,78,80,-1,60,217,193,-1,60,27,217,-1,24,194,218,-1,24,23,194,-1,191,60,193,-1,60,191,219,-1,220,190,188,-1,201,190,220,-1,70,221,68,-1,70,186,221,-1,71,197,222,-1,71,196,197,-1,168,197,183,-1,197,168,223,-1,194,167,224,-1,194,182,167,-1,180,225,191,-1,180,56,225,-1,177,188,178,-1,188,177,226,-1,175,227,186,-1,175,30,227,-1,226,162,173,-1,226,228,162,-1,160,227,229,-1,171,227,160,-1,157,223,168,-1,223,157,230,-1,166,224,167,-1,224,166,231,-1,154,166,164,-1,166,154,232,-1,57,233,58,-1,57,153,233,-1,234,161,149,-1,235,161,234,-1,31,236,32,-1,31,144,236,-1,139,230,157,-1,230,139,237,-1,232,231,166,-1,231,232,238,-1,19,232,154,-1,232,19,239,-1,233,150,132,-1,233,153,150,-1,146,234,149,-1,234,146,130,-1,144,126,236,-1,144,143,126,-1,140,237,139,-1,237,140,240,-1,140,137,120,-1,140,135,137,-1,239,21,63,-1,239,19,21,-1,34,132,150,-1,132,34,33,-1,128,146,116,-1,130,146,128,-1,123,143,121,-1,126,143,123,-1,241,124,121,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlprem2lr_Geo_5_715_coordIndex_2()
		{
			int[] value = {241,12,124,-1,9,120,137,-1,120,9,118,-1,63,6,17,-1,63,21,6,-1,131,111,117,-1,131,242,111,-1,125,113,114,-1,125,112,113,-1,122,106,112,-1,122,3,106,-1,11,118,9,-1,118,11,43,-1,243,8,7,-1,243,53,8,-1,115,244,245,-1,115,246,244,-1,105,246,107,-1,246,105,92,-1,95,13,37,-1,13,95,247,-1,64,102,103,-1,64,98,102,-1,175,248,174,-1,175,187,248,-1,79,98,77,-1,102,98,79,-1,96,247,95,-1,247,96,249,-1,5,89,65,-1,5,51,89,-1,110,101,99,-1,110,250,101,-1,89,206,93,-1,89,88,206,-1,87,250,85,-1,250,87,208,-1,47,213,48,-1,47,82,213,-1,79,216,251,-1,79,78,216,-1,76,96,49,-1,96,76,212,-1,248,72,74,-1,252,72,248,-1,253,70,67,-1,253,187,70,-1,211,50,249,-1,50,211,209,-1,215,2,1,-1,2,215,75,-1,80,97,214,-1,77,97,80,-1,210,81,101,-1,81,210,83,-1,207,86,254,-1,86,207,84,-1,50,90,51,-1,50,209,90,-1,254,92,105,-1,92,254,86,-1,79,104,102,-1,104,79,251,-1,97,45,48,-1,46,45,97,-1,40,52,41,-1,40,100,52,-1,38,104,66,-1,38,54,104,-1,3,94,106,-1,3,65,94,-1,91,108,244,-1,108,91,110,-1,242,109,111,-1,242,108,109,-1,103,6,64,-1,17,6,103,-1,12,4,124,-1,12,14,4,-1,113,246,115,-1,113,107,246,-1,116,245,128,-1,116,115,245,-1,7,133,243,-1,20,133,7,-1,18,136,16,-1,136,18,10,-1,36,255,119,-1,255,36,15,-1,256,241,145,-1,256,255,241,-1,114,127,125,-1,148,127,114,-1,129,117,152,-1,129,131,117,-1,133,62,134,-1,62,133,20,-1,16,138,257,-1,138,16,136,-1,240,255,256,-1,240,119,255,-1,258,145,142,-1,258,256,145,-1,259,148,147,-1,259,127,148,-1,260,152,151,-1,260,129,152,-1,155,134,62,-1,155,261,134,-1,156,257,138,-1,156,238,257,-1,156,158,262,-1,158,156,141,-1,263,142,159,-1,263,258,142,-1,229,147,160,-1,229,259,147,-1,228,151,162,-1,228,260,151,-1,264,155,163,-1,264,261,155,-1,265,164,165,-1,265,163,164,-1,262,169,266,-1,169,262,158,-1,263,170,267,-1,170,263,159,-1,172,235,177,-1,172,161,235,-1,221,172,176,-1,221,171,172,-1,220,59,179,-1,220,173,59,-1,219,165,181,-1,219,265,165,-1,184,266,169,-1,184,218,266,-1,222,170,185,-1,222,267,170,-1,174,74,185,-1,248,74,174,-1,268,178,189,-1,268,176,178,-1,180,269,179,-1,192,269,180,-1,181,195,28,-1,195,181,182,-1,198,184,183,-1,198,25,184,-1,270,192,271,-1,192,270,269,-1,198,199,204,-1,198,196,199,-1,61,195,23,-1,61,205,195,-1,271,193,217,-1,271,192,193,-1,201,270,202,-1,269,270,201,-1,272,68,268,-1,272,69,68,-1,268,203,272,-1,268,189,203,-1,25,218,184,-1,25,24,218,-1,28,219,181,-1,28,60,219,-1,179,201,220,-1,269,201,179,-1,176,68,221,-1,268,68,176,-1,74,222,185,-1,74,71,222,-1,223,222,197,-1,222,223,267,-1,218,224,266,-1,218,194,224,-1,191,265,219,-1,191,225,265,-1,188,173,220,-1,188,226,173,-1,186,171,221,-1,186,227,171,-1,56,264,225,-1,56,58,264,-1,177,228,226,-1,177,235,228,-1,229,30,32,-1,227,30,229,-1,230,267,223,-1,267,230,263,-1,231,266,224,-1,266,231,262,-1,225,163,265,-1,225,264,163,-1,58,261,264,-1,58,233,261,-1,234,228,235,-1,228,234,260,-1,32,259,229,-1,32,236,259,-1,237,263,230,-1,263,237,258,-1,238,262,231,-1,262,238,156,-1,239,238,232,-1,238,239,257,-1,132,261,233,-1,261,132,134,-1,260,130,129,-1,260,234,130,-1,127,236,126,-1,259,236,127,-1,240,258,237,-1,258,240,256,-1,240,120,119,-1,240,140,120,-1,257,63,16,-1,257,239,63,-1,34,152,117,-1,150,152,34,-1,116,148,114,-1,146,148,116,-1,145,121,143,-1,145,241,121,-1,255,12,241,-1,255,15,12,-1,10,137,136,-1,137,10,9,-1,243,33,39,-1,133,33,243,-1,245,131,128,-1,131,245,242,-1,123,112,125,-1,123,122,112,-1,124,3,122,-1,124,4,3,-1,36,43,37,-1,36,118,43,-1,39,53,243,-1,39,41,53,-1,244,242,245,-1,242,244,108,-1,244,92,91,-1,244,246,92,-1,247,14,13,-1,14,247,42,-1,8,98,64,-1,8,46,98,-1,109,100,40,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlprem2lr_Geo_5_715_coordIndex_3()
		{
			int[] value = {109,99,100,-1,100,47,52,-1,100,81,47,-1,251,66,104,-1,66,251,1,-1,249,42,247,-1,42,249,50,-1,94,254,105,-1,94,93,254,-1,85,110,91,-1,110,85,250,-1,93,207,254,-1,93,206,207,-1,208,101,250,-1,101,208,210,-1,48,214,97,-1,48,213,214,-1,251,215,1,-1,251,216,215,-1,212,249,96,-1,249,212,211,-1,252,187,253,-1,252,248,187,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlprem2lr_Geo_5_715_normalIndex_1()
		{
			int[] value = {42,57,74,-1,191,160,173,-1,46,77,71,-1,37,25,40,-1,132,92,125,-1,132,115,92,-1,9,26,21,-1,47,82,45,-1,14,3,8,-1,27,36,8,-1,90,68,61,-1,229,177,213,-1,159,175,170,-1,115,88,70,-1,25,21,29,-1,141,181,163,-1,160,125,127,-1,50,42,48,-1,71,116,56,-1,116,143,100,-1,73,48,42,-1,173,127,133,-1,133,165,173,-1,42,74,73,-1,116,162,143,-1,71,117,116,-1,50,40,42,-1,160,127,173,-1,141,170,181,-1,21,31,29,-1,115,70,92,-1,159,170,141,-1,229,190,177,-1,161,188,167,-1,161,179,188,-1,90,94,68,-1,36,14,8,-1,14,0,3,-1,47,91,82,-1,9,23,26,-1,25,29,40,-1,46,71,44,-1,191,173,197,-1,40,39,42,-1,40,29,39,-1,42,39,57,-1,259,268,270,-1,259,261,268,-1,111,148,103,-1,148,111,151,-1,109,73,74,-1,73,109,99,-1,84,110,72,-1,84,118,110,-1,171,136,143,-1,171,140,136,-1,155,194,223,-1,194,155,149,-1,165,142,174,-1,165,139,142,-1,223,239,242,-1,239,223,194,-1,197,193,238,-1,197,174,193,-1,73,62,48,-1,62,73,80,-1,84,56,89,-1,49,56,84,-1,202,171,176,-1,202,178,171,-1,163,116,117,-1,163,162,116,-1,43,31,34,-1,31,43,41,-1,48,70,50,-1,70,48,62,-1,244,241,238,-1,263,241,244,-1,222,202,187,-1,222,218,202,-1,192,181,170,-1,192,187,181,-1,21,34,31,-1,21,26,34,-1,263,254,241,-1,264,254,263,-1,265,243,248,-1,265,264,243,-1,189,170,175,-1,189,192,170,-1,82,46,45,-1,82,77,46,-1,66,87,67,-1,87,66,88,-1,168,211,217,-1,168,154,211,-1,253,210,217,-1,257,210,253,-1,231,201,233,-1,201,231,207,-1,166,120,124,-1,166,159,120,-1,35,16,38,-1,35,13,16,-1,51,35,63,-1,51,33,35,-1,138,169,172,-1,138,137,169,-1,252,272,269,-1,256,272,252,-1,185,203,196,-1,186,203,185,-1,54,91,47,-1,54,93,91,-1,13,33,12,-1,33,13,35,-1,33,53,32,-1,53,33,51,-1,145,172,177,-1,145,138,172,-1,267,256,251,-1,267,272,256,-1,215,186,188,-1,215,203,186,-1,96,54,69,-1,96,93,54,-1,65,19,18,-1,65,69,19,-1,32,55,30,-1,55,32,53,-1,177,147,145,-1,190,147,177,-1,266,251,247,-1,266,267,251,-1,212,188,179,-1,212,215,188,-1,195,229,235,-1,195,190,229,-1,249,227,228,-1,249,247,227,-1,183,161,157,-1,183,179,161,-1,64,18,17,-1,64,65,18,-1,30,59,28,-1,59,30,55,-1,152,190,195,-1,152,147,190,-1,260,234,235,-1,261,234,260,-1,199,226,228,-1,198,226,199,-1,126,158,157,-1,129,158,126,-1,3,17,2,-1,3,22,17,-1,81,59,83,-1,81,58,59,-1,81,103,78,-1,81,111,103,-1,206,219,220,-1,206,198,219,-1,226,206,225,-1,198,206,226,-1,52,27,58,-1,52,36,27,-1,68,24,61,-1,24,68,22,-1,150,155,156,-1,142,155,150,-1,142,149,155,-1,139,149,142,-1,139,146,149,-1,135,146,139,-1,135,144,146,-1,122,144,135,-1,122,140,144,-1,113,140,122,-1,113,136,140,-1,99,136,113,-1,99,123,136,-1,99,119,123,-1,109,119,99,-1,109,118,119,-1,107,118,109,-1,104,118,107,-1,104,110,118,-1,94,121,129,-1,94,90,121,-1,8,2,7,-1,8,3,2,-1,126,94,129,-1,94,126,95,-1,216,198,199,-1,219,198,216,-1,261,271,268,-1,261,260,271,-1,111,83,114,-1,111,81,83,-1,55,83,59,-1,83,55,75,-1,2,18,6,-1,2,17,18,-1,157,128,126,-1,157,161,128,-1,227,199,228,-1,199,227,204,-1,235,258,260,-1,235,229,258,-1,204,215,212,-1,204,208,215,-1,267,258,255,-1,266,258,267,-1,53,75,55,-1,75,53,76,-1,19,6,18,-1,6,19,5,-1,54,19,69,-1,19,54,20,-1,188,164,167,-1,188,186,164,-1,237,251,256,-1,230,251,237,-1,177,221,213,-1,177,172,221,-1,51,76,53,-1,76,51,79,-1,20,5,19,-1,5,20,1,-1,47,20,54,-1,20,47,15,-1,164,185,166,-1,164,186,185,-1,252,237,256,-1,237,252,233,-1,172,210,221,-1,172,169,210,-1,63,79,51,-1,79,63,85,-1,63,38,67,-1,63,35,38,-1,15,45,23,-1,15,47,45,-1,175,166,185,-1,166,175,159,-1,231,252,248,-1,233,252,231,-1,217,169,168,-1,210,169,217,-1,134,154,168,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlprem2lr_Geo_5_715_normalIndex_2()
		{
			int[] value = {134,132,154,-1,37,67,38,-1,67,37,66,-1,23,46,26,-1,23,45,46,-1,207,192,189,-1,207,214,192,-1,253,264,265,-1,253,254,264,-1,211,241,254,-1,211,191,241,-1,40,66,37,-1,66,40,50,-1,106,71,77,-1,106,117,71,-1,243,240,236,-1,243,245,240,-1,244,245,263,-1,245,244,242,-1,62,92,70,-1,92,62,86,-1,44,43,34,-1,44,49,43,-1,235,200,195,-1,235,234,200,-1,72,49,84,-1,43,49,72,-1,80,86,62,-1,86,80,98,-1,173,174,197,-1,173,165,174,-1,218,178,202,-1,218,184,178,-1,174,150,193,-1,174,142,150,-1,149,184,194,-1,184,149,146,-1,143,123,100,-1,143,136,123,-1,72,104,60,-1,72,110,104,-1,99,80,73,-1,80,99,113,-1,200,148,151,-1,205,148,200,-1,232,261,259,-1,232,234,261,-1,122,133,98,-1,133,122,135,-1,107,74,57,-1,74,107,109,-1,118,89,119,-1,84,89,118,-1,144,171,178,-1,171,144,140,-1,156,223,224,-1,223,156,155,-1,133,139,165,-1,133,135,139,-1,224,242,244,-1,242,224,223,-1,72,41,43,-1,41,72,60,-1,89,116,100,-1,56,116,89,-1,181,162,163,-1,181,176,162,-1,29,41,39,-1,29,31,41,-1,191,238,241,-1,191,197,238,-1,239,222,240,-1,222,239,218,-1,214,187,192,-1,214,222,187,-1,34,46,44,-1,26,46,34,-1,132,160,154,-1,132,125,160,-1,264,245,243,-1,264,263,245,-1,248,236,231,-1,248,243,236,-1,77,120,106,-1,82,120,77,-1,21,16,9,-1,16,21,25,-1,88,102,87,-1,102,88,115,-1,112,134,137,-1,112,102,134,-1,265,257,253,-1,269,257,265,-1,201,189,196,-1,201,207,189,-1,120,91,124,-1,91,120,82,-1,9,13,4,-1,13,9,16,-1,85,102,112,-1,85,87,102,-1,108,137,138,-1,108,112,137,-1,262,269,272,-1,262,257,269,-1,209,196,203,-1,209,201,196,-1,93,124,91,-1,93,131,124,-1,12,4,13,-1,12,1,4,-1,12,32,11,-1,32,12,33,-1,105,138,145,-1,105,108,138,-1,255,272,267,-1,255,262,272,-1,208,203,215,-1,208,209,203,-1,130,93,96,-1,130,131,93,-1,97,69,65,-1,97,96,69,-1,11,30,10,-1,30,11,32,-1,105,147,101,-1,147,105,145,-1,247,230,227,-1,247,251,230,-1,271,247,249,-1,271,266,247,-1,216,179,183,-1,216,212,179,-1,95,65,64,-1,95,97,65,-1,28,10,30,-1,28,7,10,-1,114,147,152,-1,114,101,147,-1,195,151,152,-1,200,151,195,-1,246,228,226,-1,246,249,228,-1,157,182,183,-1,158,182,157,-1,64,22,68,-1,22,64,17,-1,58,28,59,-1,58,27,28,-1,180,158,153,-1,158,180,182,-1,58,78,52,-1,58,81,78,-1,0,22,3,-1,0,24,22,-1,153,129,121,-1,153,158,129,-1,219,180,220,-1,182,180,219,-1,250,268,246,-1,250,270,268,-1,246,225,250,-1,246,226,225,-1,27,7,28,-1,27,8,7,-1,68,95,64,-1,68,94,95,-1,183,219,216,-1,182,219,183,-1,249,268,271,-1,246,268,249,-1,151,114,152,-1,151,111,114,-1,75,114,83,-1,114,75,101,-1,7,6,10,-1,7,2,6,-1,126,97,95,-1,126,128,97,-1,199,212,216,-1,199,204,212,-1,260,266,271,-1,260,258,266,-1,161,130,128,-1,161,167,130,-1,227,208,204,-1,227,230,208,-1,255,229,213,-1,258,229,255,-1,76,101,75,-1,101,76,105,-1,5,10,6,-1,10,5,11,-1,128,96,97,-1,128,130,96,-1,167,131,130,-1,167,164,131,-1,237,208,230,-1,208,237,209,-1,213,262,255,-1,213,221,262,-1,79,105,76,-1,105,79,108,-1,1,11,5,-1,11,1,12,-1,15,1,20,-1,1,15,4,-1,166,131,164,-1,131,166,124,-1,209,233,201,-1,209,237,233,-1,257,221,210,-1,262,221,257,-1,85,108,79,-1,108,85,112,-1,85,67,87,-1,85,63,67,-1,4,23,9,-1,4,15,23,-1,175,196,189,-1,185,196,175,-1,248,269,265,-1,252,269,248,-1,137,168,169,-1,137,134,168,-1,102,132,134,-1,102,115,132,-1,25,38,16,-1,38,25,37,-1,106,159,141,-1,120,159,106,-1,236,207,231,-1,207,236,214,-1,217,254,253,-1,217,211,254,-1,154,191,211,-1,154,160,191,-1,88,50,70,-1,88,66,50,-1,141,117,106,-1,141,163,117,-1,240,214,236,-1,214,240,222,-1,240,242,239,-1,240,245,242,-1,86,125,92,-1,125,86,127,-1,71,49,44,-1,71,56,49,-1,187,176,181,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlprem2lr_Geo_5_715_normalIndex_3()
		{
			int[] value = {187,202,176,-1,176,143,162,-1,176,171,143,-1,60,39,41,-1,39,60,57,-1,98,127,86,-1,127,98,133,-1,238,224,244,-1,238,193,224,-1,194,218,239,-1,218,194,184,-1,193,156,224,-1,193,150,156,-1,146,178,184,-1,178,146,144,-1,100,119,89,-1,100,123,119,-1,60,107,57,-1,60,104,107,-1,113,98,80,-1,98,113,122,-1,205,234,232,-1,205,200,234,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpreo1lc_Geo_5_721_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,9,12,13,-1,14,15,16,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,18,26,19,-1,27,28,29,-1,30,31,4,-1,3,32,33,-1,34,35,36,-1,37,38,39,-1,40,41,42,-1,43,44,26,-1,45,46,47,-1,27,48,49,-1,50,51,52,-1,53,54,38,-1,55,56,57,-1,27,58,48,-1,59,60,61,-1,62,63,64,-1,8,42,10,-1,65,66,67,-1,68,69,70,-1,71,72,73,-1,74,21,75,-1,47,76,77,-1,78,79,80,-1,81,82,83,-1,84,85,86,-1,87,88,89,-1,30,72,71,-1,90,23,74,-1,20,91,92,-1,11,42,41,-1,93,94,95,-1,14,44,96,-1,40,97,98,-1,99,100,101,-1,102,103,104,-1,3,61,105,-1,36,35,106,-1,107,108,50,-1,109,110,111,-1,57,24,112,-1,17,14,92,-1,113,51,114,-1,37,95,115,-1,38,116,39,-1,117,70,69,-1,118,119,120,-1,121,122,123,-1,124,32,3,-1,125,126,70,-1,30,55,31,-1,12,9,11,-1,22,127,128,-1,17,19,44,-1,129,130,131,-1,26,18,13,-1,12,11,41,-1,132,133,134,-1,132,67,133,-1,67,66,133,-1,8,10,135,-1,136,137,138,-1,139,140,106,-1,43,26,41,-1,138,141,136,-1,10,142,135,-1,13,143,9,-1,26,12,41,-1,26,13,12,-1,129,131,144,-1,44,14,17,-1,55,145,56,-1,55,146,145,-1,73,72,4,-1,30,146,55,-1,124,3,105,-1,121,123,103,-1,147,117,148,-1,117,147,70,-1,113,149,150,-1,113,116,149,-1,115,53,37,-1,113,151,51,-1,40,43,41,-1,152,46,45,-1,112,153,57,-1,132,94,93,-1,132,134,94,-1,154,109,111,-1,50,52,107,-1,155,73,125,-1,106,140,36,-1,3,5,61,-1,99,101,2,-1,34,118,69,-1,44,43,156,-1,44,156,96,-1,94,115,95,-1,128,18,91,-1,157,133,66,-1,92,158,20,-1,23,159,74,-1,87,160,88,-1,84,86,161,-1,81,162,82,-1,78,163,79,-1,47,46,76,-1,30,71,146,-1,74,159,21,-1,155,71,73,-1,128,157,13,-1,126,68,70,-1,13,18,128,-1,118,117,69,-1,164,165,166,-1,62,64,167,-1,168,120,119,-1,68,169,69,-1,34,69,169,-1,170,140,139,-1,61,5,59,-1,119,36,140,-1,73,123,125,-1,55,57,153,-1,38,37,53,-1,50,171,51,-1,28,27,49,-1,48,172,49,-1,173,47,174,-1,47,77,174,-1,47,112,45,-1,14,175,92,-1,44,19,26,-1,42,97,40,-1,68,126,33,-1,102,121,103,-1,104,73,4,-1,72,30,4,-1,146,71,145,-1,175,158,92,-1,25,127,23,-1,21,159,22,-1,175,14,16,-1,20,158,21,-1,65,143,66,-1,10,42,11,-1,10,65,142,-1,8,135,6,-1,42,8,97,-1,0,2,101,-1,176,177,144,-1,178,177,176,-1,179,141,138,-1,179,180,141,-1,181,167,64,-1,181,182,167,-1,183,184,0,-1,183,185,184,-1,186,187,188,-1,189,187,186,-1,190,191,192,-1,190,193,191,-1,194,195,196,-1,195,194,197,-1,34,198,35,-1,34,169,198,-1,199,63,200,-1,199,64,63,-1,201,202,203,-1,201,204,202,-1,205,136,206,-1,136,205,137,-1,143,10,9,-1,10,143,65,-1,142,67,132,-1,67,142,65,-1,143,157,66,-1,143,13,157,-1,207,87,89,-1,87,207,208,-1,16,152,45,-1,16,15,152,-1,145,27,56,-1,145,58,27,-1,100,209,188,-1,100,99,209,-1,124,210,211,-1,124,105,210,-1,118,36,119,-1,118,34,36,-1,29,53,115,-1,28,53,29,-1,149,49,172,-1,54,49,149,-1,151,52,51,-1,151,212,52,-1,213,214,215,-1,214,213,216,-1,25,57,217,-1,25,24,57,-1,77,218,174,-1,77,83,218,-1,110,192,191,-1,109,192,110,-1,219,218,220,-1,219,221,218,-1,135,214,6,-1,135,215,214,-1,222,107,223,-1,222,108,107,-1,147,125,70,-1,147,224,125,-1,168,212,151,-1,212,168,225,-1,198,124,226,-1,198,32,124,-1,227,196,195,-1,227,228,196,-1,229,230,231,-1,209,230,229,-1,105,232,210,-1,105,61,232,-1,233,2,197,-1,233,99,2,-1,228,234,235,-1,228,227,234,-1,140,236,225,-1,140,170,236,-1,234,200,237,-1,234,238,200,-1,222,202,239,-1,222,240,202,-1,137,241,138,-1,201,241,137,-1,242,165,7,-1,166,165,242,-1,166,243,244,-1,166,242,243,-1,245,246,244,-1,246,245,247,-1,248,249,176,-1,248,250,249,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpreo1lc_Geo_5_721_coordIndex_2()
		{
			int[] value = {43,98,156,-1,43,40,98,-1,251,252,208,-1,253,252,251,-1,254,115,94,-1,29,115,254,-1,22,23,127,-1,22,159,23,-1,96,15,14,-1,15,96,255,-1,256,96,156,-1,207,96,256,-1,130,86,85,-1,86,130,129,-1,257,81,76,-1,81,257,88,-1,232,60,258,-1,60,232,61,-1,259,109,154,-1,109,259,84,-1,260,221,219,-1,260,258,221,-1,231,80,229,-1,80,231,261,-1,261,219,262,-1,219,261,260,-1,154,162,259,-1,154,82,162,-1,76,83,77,-1,83,76,81,-1,85,263,130,-1,85,264,263,-1,59,55,265,-1,59,31,55,-1,103,73,104,-1,73,103,123,-1,224,148,150,-1,147,148,224,-1,253,131,252,-1,248,131,253,-1,248,247,250,-1,253,247,248,-1,164,244,246,-1,164,166,244,-1,135,132,215,-1,135,142,132,-1,266,141,267,-1,136,141,266,-1,137,204,201,-1,204,137,205,-1,239,108,222,-1,108,239,268,-1,225,269,212,-1,225,236,269,-1,270,200,238,-1,200,270,199,-1,170,235,236,-1,170,228,235,-1,226,211,271,-1,226,124,211,-1,272,231,230,-1,272,273,231,-1,228,139,196,-1,228,170,139,-1,60,265,274,-1,59,265,60,-1,216,171,50,-1,213,171,216,-1,122,125,123,-1,122,126,125,-1,217,56,27,-1,56,217,57,-1,221,174,218,-1,221,274,174,-1,223,240,222,-1,240,223,275,-1,97,7,165,-1,97,8,7,-1,262,220,111,-1,262,219,220,-1,220,83,82,-1,83,220,218,-1,276,217,254,-1,276,25,217,-1,173,112,47,-1,173,153,112,-1,212,107,52,-1,212,269,107,-1,150,172,224,-1,149,172,150,-1,210,277,211,-1,277,210,272,-1,126,121,33,-1,122,121,126,-1,48,224,172,-1,48,125,224,-1,24,90,112,-1,23,90,24,-1,74,16,45,-1,75,16,74,-1,96,89,255,-1,89,96,207,-1,206,278,205,-1,206,243,278,-1,214,268,279,-1,214,216,268,-1,201,280,241,-1,201,203,280,-1,237,63,275,-1,237,200,63,-1,35,226,106,-1,35,198,226,-1,197,1,195,-1,1,197,2,-1,192,281,190,-1,281,192,161,-1,282,186,79,-1,282,189,186,-1,101,183,0,-1,283,183,101,-1,64,284,181,-1,284,64,199,-1,285,138,241,-1,285,179,138,-1,178,249,286,-1,178,176,249,-1,177,129,144,-1,177,287,129,-1,180,267,141,-1,180,288,267,-1,280,182,289,-1,182,280,167,-1,270,185,290,-1,185,270,184,-1,291,188,187,-1,291,100,188,-1,163,193,292,-1,193,163,191,-1,271,196,139,-1,196,271,194,-1,269,223,107,-1,269,293,223,-1,62,202,240,-1,62,203,202,-1,294,202,204,-1,294,239,202,-1,295,7,6,-1,242,7,295,-1,263,208,252,-1,263,87,208,-1,75,175,16,-1,21,175,75,-1,158,175,21,-1,91,22,128,-1,91,20,22,-1,15,257,152,-1,15,255,257,-1,17,91,18,-1,91,17,92,-1,3,104,4,-1,102,104,3,-1,99,230,209,-1,99,233,230,-1,32,68,33,-1,198,68,32,-1,169,68,198,-1,150,120,113,-1,148,120,150,-1,215,93,213,-1,215,132,93,-1,78,191,163,-1,78,110,191,-1,156,164,256,-1,156,98,164,-1,28,54,53,-1,28,49,54,-1,114,171,95,-1,171,114,51,-1,265,153,173,-1,265,55,153,-1,27,254,217,-1,27,29,254,-1,225,119,140,-1,168,119,225,-1,195,296,227,-1,296,195,1,-1,186,209,229,-1,188,209,186,-1,273,210,232,-1,272,210,273,-1,194,211,277,-1,211,194,271,-1,296,270,238,-1,296,184,270,-1,237,235,234,-1,293,235,237,-1,63,240,275,-1,240,63,62,-1,294,295,279,-1,278,295,294,-1,279,6,214,-1,279,295,6,-1,206,244,243,-1,206,245,244,-1,213,95,171,-1,213,93,95,-1,247,266,250,-1,247,245,266,-1,246,256,164,-1,256,246,251,-1,208,256,251,-1,208,207,256,-1,58,71,155,-1,58,145,71,-1,76,152,257,-1,46,152,76,-1,255,88,257,-1,88,255,89,-1,160,259,162,-1,160,264,259,-1,273,258,260,-1,232,258,273,-1,84,192,109,-1,192,84,161,-1,260,231,273,-1,261,231,260,-1,79,229,80,-1,186,229,79,-1,261,78,80,-1,261,262,78,-1,88,162,81,-1,160,162,88,-1,258,274,221,-1,258,60,274,-1,259,85,84,-1,259,264,85,-1,87,264,160,-1,263,264,87,-1,5,31,59,-1,5,4,31,-1,144,248,176,-1,144,131,248,-1,251,247,253,-1,251,246,247,-1,267,250,266,-1,250,267,249,-1,151,120,168,-1,151,113,120,-1,206,266,245,-1,206,136,266,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpreo1lc_Geo_5_721_coordIndex_3()
		{
			int[] value = {278,204,205,-1,278,294,204,-1,50,268,216,-1,50,108,268,-1,236,293,269,-1,236,235,293,-1,238,227,296,-1,234,227,238,-1,197,277,233,-1,277,197,194,-1,1,184,296,-1,184,1,0,-1,157,25,276,-1,157,127,25,-1,157,128,127,-1,274,173,174,-1,274,265,173,-1,98,165,164,-1,98,97,165,-1,262,110,78,-1,262,111,110,-1,82,111,220,-1,82,154,111,-1,134,254,94,-1,134,276,254,-1,38,149,116,-1,38,54,149,-1,113,39,116,-1,39,113,114,-1,39,95,37,-1,95,39,114,-1,148,118,120,-1,117,118,148,-1,277,230,233,-1,277,272,230,-1,121,3,33,-1,121,102,3,-1,48,155,125,-1,48,58,155,-1,74,112,90,-1,112,74,45,-1,130,252,131,-1,130,263,252,-1,276,133,157,-1,133,276,134,-1,242,278,243,-1,242,295,278,-1,239,279,268,-1,294,279,239,-1,167,203,62,-1,167,280,203,-1,275,293,237,-1,293,275,223,-1,139,226,271,-1,139,106,226,-1,297,161,86,-1,297,281,161,-1,163,282,79,-1,292,282,163,-1,283,100,291,-1,283,101,100,-1,290,199,270,-1,290,284,199,-1,289,241,280,-1,289,285,241,-1,267,286,249,-1,288,286,267,-1,287,86,129,-1,287,297,86,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpreo1lc_Geo_5_721_normalIndex_1()
		{
			int[] value = {237,227,214,-1,187,234,175,-1,218,180,141,-1,32,74,47,-1,32,101,111,-1,150,127,165,-1,152,145,108,-1,203,225,188,-1,210,201,160,-1,145,149,108,-1,207,90,105,-1,244,194,234,-1,187,157,124,-1,118,159,182,-1,119,107,106,-1,78,95,66,-1,102,94,149,-1,128,42,57,-1,207,179,136,-1,262,252,275,-1,137,99,107,-1,173,240,211,-1,207,236,179,-1,123,76,134,-1,282,287,280,-1,141,66,74,-1,46,38,58,-1,140,114,110,-1,255,251,259,-1,205,225,189,-1,57,30,29,-1,27,54,60,-1,13,4,15,-1,9,28,20,-1,39,22,35,-1,244,251,255,-1,195,210,205,-1,203,151,217,-1,47,66,95,-1,147,87,155,-1,150,94,70,-1,78,97,79,-1,191,198,224,-1,192,199,277,-1,187,134,176,-1,182,159,206,-1,279,265,262,-1,7,17,11,-1,211,201,139,-1,152,150,217,-1,172,252,170,-1,119,155,115,-1,107,116,106,-1,104,110,114,-1,129,204,166,-1,96,142,193,-1,178,157,187,-1,177,143,110,-1,244,173,194,-1,101,32,47,-1,188,148,138,-1,152,108,94,-1,36,51,59,-1,149,145,111,-1,101,47,95,-1,103,34,44,-1,103,58,34,-1,58,38,34,-1,141,74,153,-1,174,220,208,-1,226,253,206,-1,102,149,95,-1,208,168,174,-1,74,92,153,-1,111,40,32,-1,149,101,95,-1,149,111,101,-1,36,59,45,-1,94,150,152,-1,173,248,240,-1,173,239,248,-1,259,251,234,-1,244,239,173,-1,178,187,176,-1,96,193,199,-1,120,104,98,-1,104,120,110,-1,172,91,100,-1,172,116,91,-1,115,137,119,-1,172,241,252,-1,78,102,95,-1,89,42,128,-1,139,144,211,-1,103,87,147,-1,103,44,87,-1,0,7,11,-1,262,275,279,-1,229,259,177,-1,206,253,182,-1,187,175,134,-1,191,224,214,-1,118,129,114,-1,94,102,69,-1,94,69,70,-1,87,115,155,-1,138,145,151,-1,77,34,38,-1,217,219,203,-1,210,230,205,-1,39,21,22,-1,9,20,8,-1,13,5,4,-1,27,19,54,-1,57,42,30,-1,244,255,239,-1,205,230,225,-1,229,255,259,-1,138,77,111,-1,143,140,110,-1,111,145,138,-1,129,104,114,-1,88,135,154,-1,282,280,271,-1,243,166,204,-1,140,132,114,-1,118,114,132,-1,270,253,226,-1,134,175,123,-1,204,182,253,-1,259,193,177,-1,173,211,144,-1,107,119,137,-1,262,222,252,-1,90,207,136,-1,179,65,136,-1,75,57,37,-1,57,29,37,-1,57,139,128,-1,150,221,217,-1,94,108,149,-1,66,97,78,-1,140,143,124,-1,192,96,199,-1,277,259,234,-1,251,244,234,-1,239,255,248,-1,221,219,217,-1,160,148,210,-1,225,230,188,-1,221,150,165,-1,203,219,225,-1,46,40,38,-1,74,66,47,-1,74,46,92,-1,141,153,218,-1,66,141,97,-1,237,214,224,-1,71,48,45,-1,73,48,71,-1,202,168,208,-1,202,169,168,-1,278,271,280,-1,278,269,271,-1,246,257,237,-1,246,267,257,-1,122,158,162,-1,117,158,122,-1,3,14,6,-1,3,12,14,-1,213,232,231,-1,232,213,216,-1,118,167,159,-1,118,132,167,-1,288,287,291,-1,288,280,287,-1,254,263,266,-1,254,247,263,-1,223,174,181,-1,174,223,220,-1,40,74,32,-1,74,40,46,-1,92,58,103,-1,58,92,46,-1,40,77,38,-1,40,111,77,-1,50,39,35,-1,39,50,53,-1,165,89,128,-1,165,127,89,-1,248,207,240,-1,248,236,207,-1,198,171,162,-1,198,191,171,-1,178,163,185,-1,178,176,163,-1,129,182,204,-1,129,118,182,-1,105,137,115,-1,90,137,105,-1,91,136,65,-1,99,136,91,-1,241,275,252,-1,241,274,275,-1,190,215,164,-1,215,190,235,-1,160,211,183,-1,160,201,211,-1,29,24,37,-1,29,15,24,-1,17,6,14,-1,7,6,17,-1,25,24,10,-1,25,33,24,-1,153,215,218,-1,153,164,215,-1,273,279,283,-1,273,265,279,-1,120,177,110,-1,120,131,177,-1,243,274,241,-1,274,243,276,-1,167,178,196,-1,167,157,178,-1,268,231,232,-1,268,272,231,-1,121,161,113,-1,171,161,121,-1,176,112,163,-1,176,134,112,-1,186,214,216,-1,186,191,214,-1,272,295,297,-1,272,268,295,-1,253,290,276,-1,253,270,290,-1,295,291,292,-1,295,293,291,-1,273,263,260,-1,273,281,263,-1,220,249,208,-1,254,249,220,-1,212,135,180,-1,154,135,212,-1,154,200,146,-1,154,212,200,-1,133,86,146,-1,86,133,80,-1,72,84,71,-1,72,82,84,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpreo1lc_Geo_5_721_normalIndex_2()
		{
			int[] value = {102,79,69,-1,102,78,79,-1,67,61,53,-1,68,61,67,-1,83,115,87,-1,105,115,83,-1,188,210,148,-1,188,230,210,-1,70,127,150,-1,127,70,85,-1,63,70,69,-1,50,70,63,-1,51,20,28,-1,20,51,36,-1,56,13,30,-1,13,56,22,-1,112,76,62,-1,76,112,134,-1,2,7,0,-1,7,2,9,-1,49,33,25,-1,49,62,33,-1,113,60,121,-1,60,113,55,-1,55,25,26,-1,25,55,49,-1,0,5,2,-1,0,4,5,-1,30,15,29,-1,15,30,13,-1,28,41,51,-1,28,23,41,-1,123,173,93,-1,123,194,173,-1,199,259,277,-1,259,199,193,-1,131,98,100,-1,120,98,131,-1,68,59,61,-1,72,59,68,-1,72,80,82,-1,68,80,72,-1,88,146,86,-1,88,154,146,-1,153,103,164,-1,153,92,103,-1,125,168,126,-1,174,168,125,-1,220,247,254,-1,247,220,223,-1,260,265,273,-1,265,260,256,-1,276,284,274,-1,276,290,284,-1,294,291,293,-1,291,294,288,-1,270,297,290,-1,270,272,297,-1,196,185,209,-1,196,178,185,-1,156,113,161,-1,156,109,113,-1,272,226,231,-1,272,270,226,-1,76,93,52,-1,123,93,76,-1,235,222,262,-1,190,222,235,-1,142,177,193,-1,142,143,177,-1,183,240,207,-1,240,183,211,-1,33,37,24,-1,33,52,37,-1,283,281,273,-1,281,283,286,-1,97,180,135,-1,97,141,180,-1,26,10,11,-1,26,25,10,-1,10,15,4,-1,15,10,24,-1,64,183,83,-1,64,160,183,-1,75,139,57,-1,75,144,139,-1,274,279,275,-1,274,284,279,-1,100,65,131,-1,91,65,100,-1,163,184,185,-1,184,163,156,-1,143,96,124,-1,142,96,143,-1,179,131,65,-1,179,177,131,-1,201,195,139,-1,210,195,201,-1,205,165,128,-1,189,165,205,-1,70,35,85,-1,35,70,50,-1,181,233,223,-1,181,200,233,-1,215,256,242,-1,215,235,256,-1,254,264,249,-1,254,266,264,-1,292,287,286,-1,292,291,287,-1,159,196,206,-1,159,167,196,-1,216,227,232,-1,227,216,214,-1,6,1,3,-1,1,6,8,-1,43,122,54,-1,43,117,122,-1,224,246,237,-1,228,246,224,-1,280,289,278,-1,289,280,288,-1,250,208,249,-1,250,202,208,-1,73,84,81,-1,73,71,84,-1,48,36,45,-1,48,31,36,-1,169,126,168,-1,169,130,126,-1,264,269,261,-1,269,264,271,-1,294,267,296,-1,267,294,257,-1,197,162,158,-1,197,198,162,-1,19,12,18,-1,12,19,14,-1,209,231,226,-1,231,209,213,-1,284,283,279,-1,284,285,283,-1,282,263,281,-1,282,266,263,-1,245,263,247,-1,245,260,263,-1,238,180,218,-1,212,180,238,-1,41,53,61,-1,41,39,53,-1,189,221,165,-1,225,221,189,-1,219,221,225,-1,151,188,138,-1,151,203,188,-1,127,56,89,-1,127,85,56,-1,152,151,145,-1,151,152,217,-1,187,277,234,-1,192,277,187,-1,191,161,171,-1,191,186,161,-1,157,140,124,-1,167,140,157,-1,132,140,167,-1,100,166,172,-1,98,166,100,-1,164,147,190,-1,164,103,147,-1,27,14,19,-1,27,17,14,-1,69,88,63,-1,69,79,88,-1,90,99,137,-1,90,136,99,-1,170,222,155,-1,222,170,252,-1,93,144,75,-1,93,173,144,-1,207,83,183,-1,207,105,83,-1,276,204,253,-1,243,204,276,-1,232,258,268,-1,258,232,227,-1,122,171,121,-1,162,171,122,-1,109,163,112,-1,156,163,109,-1,213,185,184,-1,185,213,209,-1,258,294,293,-1,258,257,294,-1,292,297,295,-1,285,297,292,-1,287,281,286,-1,281,287,282,-1,245,238,242,-1,233,238,245,-1,242,218,215,-1,242,238,218,-1,181,146,200,-1,181,133,146,-1,190,155,222,-1,190,147,155,-1,80,125,82,-1,80,133,125,-1,86,63,88,-1,63,86,67,-1,53,63,67,-1,53,50,63,-1,236,255,229,-1,236,248,255,-1,30,89,56,-1,42,89,30,-1,85,22,56,-1,22,85,35,-1,21,2,5,-1,21,23,2,-1,109,62,49,-1,112,62,109,-1,9,6,7,-1,6,9,8,-1,49,113,109,-1,55,113,49,-1,54,121,60,-1,122,121,54,-1,55,27,60,-1,55,26,27,-1,22,5,13,-1,21,5,22,-1,62,52,33,-1,62,76,52,-1,2,28,9,-1,2,23,28,-1,39,23,21,-1,41,23,39,-1,175,194,123,-1,175,234,194,-1,45,72,71,-1,45,59,72,-1,67,80,68,-1,67,86,80,-1,126,82,125,-1,82,126,84,-1,241,166,243,-1,241,172,166,-1,181,125,133,-1,181,174,125,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpreo1lc_Geo_5_721_normalIndex_3()
		{
			int[] value = {233,247,223,-1,233,245,247,-1,262,256,235,-1,262,265,256,-1,290,285,284,-1,290,297,285,-1,293,268,258,-1,295,268,293,-1,216,184,186,-1,184,216,213,-1,227,257,258,-1,257,227,237,-1,77,160,64,-1,77,148,160,-1,77,138,148,-1,52,75,37,-1,52,93,75,-1,79,135,88,-1,79,97,135,-1,26,17,27,-1,26,11,17,-1,4,11,10,-1,4,0,11,-1,44,83,87,-1,44,64,83,-1,107,91,116,-1,107,99,91,-1,172,106,116,-1,106,172,170,-1,106,155,119,-1,155,106,170,-1,98,129,166,-1,104,129,98,-1,184,161,186,-1,184,156,161,-1,96,187,124,-1,96,192,187,-1,179,229,177,-1,179,236,229,-1,205,139,195,-1,139,205,128,-1,51,61,59,-1,51,41,61,-1,64,34,77,-1,34,64,44,-1,212,233,200,-1,212,238,233,-1,260,242,256,-1,245,242,260,-1,271,266,282,-1,271,264,266,-1,286,285,292,-1,285,286,283,-1,226,196,209,-1,226,206,196,-1,16,8,20,-1,16,1,8,-1,19,43,54,-1,18,43,19,-1,228,198,197,-1,228,224,198,-1,296,288,294,-1,296,289,288,-1,261,249,264,-1,261,250,249,-1,126,81,84,-1,130,81,126,-1,31,20,36,-1,31,16,20,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpreol1r_Geo_5_727_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,11,12,13,-1,14,15,16,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,26,27,28,-1,29,30,31,-1,32,33,34,-1,35,36,37,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,47,50,48,-1,51,52,19,-1,53,54,55,-1,54,56,57,-1,58,59,60,-1,17,42,46,-1,61,62,63,-1,64,65,66,-1,67,68,69,-1,6,70,15,-1,43,42,19,-1,71,72,73,-1,31,74,75,-1,22,21,76,-1,77,78,79,-1,80,81,82,-1,83,84,39,-1,85,86,87,-1,88,89,90,-1,91,92,93,-1,94,95,96,-1,97,98,99,-1,100,101,102,-1,99,103,104,-1,105,88,90,-1,106,107,61,-1,108,82,109,-1,110,111,112,-1,113,114,115,-1,116,117,118,-1,32,119,22,-1,46,45,120,-1,121,116,122,-1,123,52,114,-1,124,125,107,-1,126,49,127,-1,128,129,130,-1,128,131,129,-1,42,132,44,-1,133,134,135,-1,136,137,138,-1,139,140,141,-1,142,127,49,-1,143,144,37,-1,145,38,146,-1,147,148,149,-1,23,150,24,-1,151,152,153,-1,28,154,155,-1,120,45,156,-1,157,158,159,-1,15,160,56,-1,161,81,130,-1,13,12,162,-1,7,163,164,-1,4,165,5,-1,166,12,11,-1,167,168,161,-1,169,170,171,-1,172,66,173,-1,170,167,161,-1,166,174,12,-1,175,176,177,-1,7,164,8,-1,13,162,178,-1,161,168,81,-1,15,56,16,-1,157,179,158,-1,156,124,120,-1,28,63,154,-1,76,26,22,-1,148,147,17,-1,145,146,30,-1,143,37,180,-1,142,181,127,-1,139,182,140,-1,136,138,183,-1,133,135,184,-1,44,46,42,-1,126,47,49,-1,124,107,149,-1,123,114,113,-1,121,122,185,-1,46,120,148,-1,32,22,26,-1,116,118,122,-1,65,1,66,-1,186,167,187,-1,113,115,14,-1,112,188,110,-1,108,80,82,-1,107,125,61,-1,105,90,189,-1,99,190,103,-1,100,191,101,-1,98,190,99,-1,94,192,95,-1,91,93,193,-1,88,194,89,-1,85,195,86,-1,83,196,84,-1,80,197,81,-1,77,198,78,-1,18,17,147,-1,31,30,74,-1,71,73,55,-1,43,19,199,-1,15,14,6,-1,200,67,69,-1,64,66,201,-1,61,121,62,-1,46,148,17,-1,58,202,59,-1,58,20,203,-1,58,204,20,-1,63,28,27,-1,54,53,56,-1,54,205,55,-1,51,19,18,-1,120,124,149,-1,44,206,45,-1,41,132,42,-1,38,40,146,-1,37,144,35,-1,34,119,32,-1,29,145,30,-1,76,27,26,-1,149,148,120,-1,207,23,25,-1,208,172,209,-1,22,119,20,-1,17,19,42,-1,14,16,113,-1,13,9,11,-1,163,10,164,-1,163,210,10,-1,3,5,150,-1,0,2,211,-1,212,169,201,-1,213,69,68,-1,213,214,69,-1,215,216,217,-1,215,218,216,-1,65,219,220,-1,65,64,219,-1,168,186,221,-1,167,186,168,-1,12,222,162,-1,174,222,12,-1,165,177,5,-1,165,175,177,-1,223,163,224,-1,223,210,163,-1,115,6,14,-1,115,7,6,-1,217,225,226,-1,217,216,225,-1,211,227,228,-1,211,2,227,-1,130,229,161,-1,229,130,129,-1,160,57,56,-1,160,230,57,-1,179,59,158,-1,179,231,59,-1,232,110,233,-1,232,111,110,-1,234,235,153,-1,212,235,234,-1,212,208,235,-1,208,212,172,-1,164,236,8,-1,164,237,236,-1,212,187,169,-1,187,212,234,-1,151,238,200,-1,238,151,239,-1,240,209,241,-1,240,208,209,-1,242,107,106,-1,242,243,107,-1,104,244,245,-1,246,244,104,-1,247,248,249,-1,247,250,248,-1,251,143,180,-1,252,143,251,-1,181,141,127,-1,181,139,141,-1,183,253,136,-1,253,183,254,-1,95,255,256,-1,255,95,257,-1,258,87,86,-1,258,259,87,-1,260,261,262,-1,261,260,189,-1,134,263,135,-1,134,264,263,-1,265,71,84,-1,265,72,71,-1,266,131,267,-1,131,266,129,-1,268,78,269,-1,78,268,228,-1,140,270,271,-1,270,140,272,-1,273,57,274,-1,273,54,57,-1,21,242,76,-1,21,275,242,-1,116,124,117,-1,125,124,116,-1,123,73,199,-1,123,276,73,-1,114,51,277,-1,52,51,114,-1,278,138,279,-1,278,280,138,-1,62,185,226,-1,62,121,185,-1,75,202,281,-1,282,202,75,-1,204,110,188,-1,204,283,110,-1,32,28,155,-1,32,26,28,-1,200,284,67,-1,284,200,238,-1,167,169,187,-1,167,170,169,-1,218,240,285,-1,218,286,240,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpreol1r_Geo_5_727_coordIndex_2()
		{
			int[] value = {165,157,287,-1,157,165,4,-1,288,289,290,-1,289,288,222,-1,40,291,146,-1,40,205,291,-1,278,269,280,-1,278,292,269,-1,131,126,293,-1,126,131,128,-1,63,294,154,-1,63,62,294,-1,295,262,261,-1,262,295,206,-1,134,265,264,-1,134,41,265,-1,296,247,297,-1,296,29,247,-1,35,33,298,-1,35,144,33,-1,299,136,253,-1,299,256,136,-1,139,300,259,-1,300,139,181,-1,301,302,184,-1,301,303,302,-1,103,102,304,-1,190,102,103,-1,305,180,306,-1,305,251,180,-1,257,307,308,-1,309,307,257,-1,310,311,312,-1,310,306,311,-1,192,313,309,-1,314,313,192,-1,315,195,85,-1,315,316,195,-1,317,105,318,-1,317,319,105,-1,320,191,321,-1,191,320,101,-1,322,97,99,-1,323,97,322,-1,324,306,310,-1,324,305,306,-1,323,92,325,-1,322,92,323,-1,326,318,303,-1,326,317,318,-1,327,85,194,-1,327,315,85,-1,94,314,192,-1,328,314,94,-1,329,312,311,-1,312,329,330,-1,309,95,192,-1,309,257,95,-1,37,306,180,-1,311,306,37,-1,93,322,245,-1,92,322,93,-1,320,184,135,-1,320,301,184,-1,87,194,85,-1,194,87,89,-1,182,259,258,-1,259,182,139,-1,256,137,136,-1,256,255,137,-1,33,143,34,-1,144,143,33,-1,29,244,145,-1,296,244,29,-1,196,265,84,-1,196,264,265,-1,44,262,206,-1,331,262,44,-1,235,332,239,-1,333,235,208,-1,235,333,332,-1,267,293,271,-1,293,267,131,-1,198,269,78,-1,198,280,269,-1,20,248,203,-1,119,248,20,-1,146,74,30,-1,146,291,74,-1,199,72,43,-1,72,199,73,-1,9,178,334,-1,13,178,9,-1,4,179,157,-1,179,4,3,-1,241,285,240,-1,335,285,241,-1,336,68,337,-1,336,213,68,-1,171,201,169,-1,171,64,201,-1,238,215,284,-1,215,238,338,-1,274,339,273,-1,339,274,159,-1,60,204,58,-1,204,60,283,-1,281,58,203,-1,202,58,281,-1,62,225,294,-1,62,226,225,-1,155,278,279,-1,154,278,155,-1,53,16,56,-1,53,276,16,-1,55,276,53,-1,276,55,73,-1,48,156,45,-1,50,156,48,-1,156,117,124,-1,156,108,117,-1,243,275,340,-1,275,243,242,-1,188,275,21,-1,188,112,275,-1,272,77,270,-1,77,272,254,-1,228,79,78,-1,79,228,227,-1,72,41,43,-1,265,41,72,-1,103,246,104,-1,83,246,103,-1,262,302,260,-1,262,331,302,-1,259,89,87,-1,259,300,89,-1,96,256,299,-1,256,96,95,-1,254,341,253,-1,341,254,272,-1,193,252,251,-1,297,252,193,-1,249,119,34,-1,249,248,119,-1,245,296,93,-1,244,296,245,-1,149,243,147,-1,243,149,107,-1,209,173,241,-1,173,209,172,-1,239,338,238,-1,338,239,332,-1,187,153,214,-1,187,234,153,-1,8,342,343,-1,8,236,342,-1,239,153,235,-1,153,239,151,-1,232,344,111,-1,232,223,344,-1,231,60,59,-1,231,290,60,-1,82,336,109,-1,221,336,82,-1,2,345,227,-1,2,220,345,-1,346,225,216,-1,346,347,225,-1,122,337,348,-1,337,122,118,-1,10,237,164,-1,10,9,237,-1,160,175,230,-1,176,175,160,-1,6,343,70,-1,6,8,343,-1,207,222,288,-1,222,207,162,-1,64,229,219,-1,64,171,229,-1,0,349,335,-1,0,211,349,-1,284,217,350,-1,284,215,217,-1,68,348,337,-1,68,67,348,-1,216,285,346,-1,218,285,216,-1,1,220,2,-1,1,65,220,-1,221,213,336,-1,186,213,221,-1,351,150,23,-1,351,3,150,-1,150,352,24,-1,150,5,352,-1,166,233,174,-1,166,232,233,-1,109,337,118,-1,336,337,109,-1,350,226,185,-1,350,217,226,-1,349,228,268,-1,349,211,228,-1,219,129,266,-1,219,229,129,-1,230,274,57,-1,230,287,274,-1,289,110,283,-1,289,233,110,-1,277,115,114,-1,224,115,277,-1,352,342,334,-1,342,352,353,-1,207,178,162,-1,207,25,178,-1,353,5,177,-1,5,353,352,-1,200,152,151,-1,200,69,152,-1,286,208,240,-1,286,333,208,-1,76,106,27,-1,76,242,106,-1,298,32,155,-1,298,33,32,-1,29,250,247,-1,29,31,250,-1,354,36,35,-1,354,308,36,-1,308,255,257,-1,354,255,308,-1,355,86,356,-1,355,258,86,-1,357,189,90,-1,357,261,189,-1,264,304,263,-1,264,196,304,-1,71,39,84,-1,39,71,40,-1,48,206,295,-1,206,48,45,-1,267,345,266,-1,267,358,345,-1,280,183,138,-1,280,198,183,-1,141,271,293,-1,271,141,140,-1,359,111,344,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpreol1r_Geo_5_727_coordIndex_3()
		{
			int[] value = {359,112,111,-1,61,116,121,-1,61,125,116,-1,80,47,197,-1,50,47,80,-1,52,199,19,-1,52,123,199,-1,291,54,273,-1,291,205,54,-1,27,61,63,-1,61,27,106,-1,268,292,347,-1,269,292,268,-1,74,282,75,-1,339,282,74,-1,20,188,21,-1,204,188,20,-1,158,202,282,-1,202,158,59,-1,359,18,340,-1,359,51,18,-1,338,218,215,-1,218,338,286,-1,287,175,165,-1,287,230,175,-1,351,290,231,-1,290,351,288,-1,15,176,160,-1,15,70,176,-1,40,55,205,-1,40,71,55,-1,31,281,250,-1,31,75,281,-1,154,292,278,-1,154,294,292,-1,79,270,77,-1,270,79,358,-1,128,47,126,-1,47,128,197,-1,261,142,295,-1,261,357,142,-1,41,133,132,-1,134,133,41,-1,38,83,39,-1,246,83,38,-1,297,249,252,-1,297,247,249,-1,35,360,354,-1,35,298,360,-1,355,253,341,-1,355,299,253,-1,356,195,361,-1,195,356,86,-1,303,260,302,-1,303,318,260,-1,263,102,101,-1,102,263,304,-1,251,91,193,-1,305,91,251,-1,329,308,307,-1,329,36,308,-1,96,361,94,-1,361,96,356,-1,307,313,362,-1,307,309,313,-1,316,361,195,-1,316,363,361,-1,88,319,364,-1,319,88,105,-1,321,301,320,-1,321,365,301,-1,305,366,91,-1,366,305,324,-1,91,325,92,-1,325,91,366,-1,102,98,100,-1,98,102,190,-1,326,301,365,-1,326,303,301,-1,194,364,327,-1,364,194,88,-1,361,328,94,-1,363,328,361,-1,329,362,330,-1,329,307,362,-1,334,237,9,-1,334,236,237,-1,334,342,236,-1,36,311,37,-1,329,311,36,-1,99,245,322,-1,99,104,245,-1,101,135,263,-1,101,320,135,-1,189,318,105,-1,318,189,260,-1,341,258,355,-1,258,341,182,-1,137,354,360,-1,255,354,137,-1,252,34,143,-1,252,249,34,-1,145,246,38,-1,244,246,145,-1,133,44,132,-1,133,331,44,-1,181,357,300,-1,357,181,142,-1,118,108,109,-1,117,108,118,-1,358,271,270,-1,271,358,267,-1,250,203,248,-1,250,281,203,-1,224,7,115,-1,224,163,7,-1,3,231,179,-1,231,3,351,-1,0,241,173,-1,0,335,241,-1,186,214,213,-1,186,187,214,-1,173,1,0,-1,1,173,66,-1,340,112,359,-1,340,275,112,-1,282,159,158,-1,282,339,159,-1,339,291,273,-1,339,74,291,-1,294,347,292,-1,294,225,347,-1,123,16,276,-1,123,113,16,-1,50,108,156,-1,50,80,108,-1,147,340,18,-1,340,147,243,-1,359,277,51,-1,359,344,277,-1,293,127,141,-1,293,126,127,-1,254,198,77,-1,198,254,183,-1,227,358,79,-1,358,227,345,-1,81,128,130,-1,197,128,81,-1,304,83,103,-1,196,83,304,-1,184,331,133,-1,331,184,302,-1,300,90,89,-1,300,357,90,-1,299,356,96,-1,299,355,356,-1,360,138,137,-1,360,279,138,-1,182,272,140,-1,182,341,272,-1,49,295,142,-1,295,49,48,-1,93,297,193,-1,296,297,93,-1,279,298,155,-1,360,298,279,-1,172,201,66,-1,201,172,212,-1,338,333,286,-1,338,332,333,-1,214,152,69,-1,214,153,152,-1,353,343,342,-1,177,343,353,-1,25,334,178,-1,24,334,25,-1,352,334,24,-1,344,224,277,-1,223,224,344,-1,290,283,60,-1,290,289,283,-1,287,159,274,-1,287,157,159,-1,81,221,82,-1,168,221,81,-1,220,266,345,-1,220,219,266,-1,347,349,268,-1,346,349,347,-1,348,185,122,-1,348,350,185,-1,166,223,232,-1,210,223,166,-1,222,233,289,-1,222,174,233,-1,70,177,176,-1,70,343,177,-1,23,288,351,-1,288,23,207,-1,11,210,166,-1,210,11,10,-1,229,170,161,-1,171,170,229,-1,346,335,349,-1,285,335,346,-1,67,350,348,-1,67,284,350,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpreol1r_Geo_5_727_normalIndex_1()
		{
			int[] value = {338,319,308,-1,107,94,104,-1,119,143,139,-1,225,251,335,-1,335,357,247,-1,92,61,60,-1,177,211,149,-1,268,332,272,-1,169,174,205,-1,244,185,202,-1,76,55,100,-1,236,237,235,-1,256,276,250,-1,27,4,0,-1,95,142,124,-1,110,81,116,-1,173,131,186,-1,173,125,131,-1,190,134,149,-1,28,12,17,-1,12,34,25,-1,195,155,207,-1,177,142,116,-1,59,160,147,-1,263,275,288,-1,48,57,73,-1,119,89,61,-1,124,142,149,-1,9,41,62,-1,100,43,82,-1,272,332,269,-1,307,350,328,-1,118,176,141,-1,6,5,4,-1,282,285,267,-1,208,255,212,-1,152,83,75,-1,333,342,322,-1,23,11,24,-1,7,37,8,-1,24,13,33,-1,172,208,212,-1,144,103,59,-1,67,141,91,-1,360,349,341,-1,78,114,137,-1,20,14,21,-1,236,242,272,-1,116,81,45,-1,71,20,19,-1,98,134,114,-1,22,36,103,-1,222,186,239,-1,217,265,219,-1,217,258,265,-1,142,126,110,-1,99,77,66,-1,334,352,351,-1,271,295,278,-1,203,239,186,-1,234,245,250,-1,49,27,18,-1,181,112,54,-1,169,129,174,-1,121,123,164,-1,202,224,246,-1,45,81,65,-1,90,86,51,-1,61,50,34,-1,199,176,219,-1,247,357,301,-1,143,192,184,-1,94,74,104,-1,354,357,335,-1,183,167,199,-1,223,218,249,-1,215,288,303,-1,218,183,199,-1,354,363,357,-1,68,72,102,-1,143,184,139,-1,247,301,220,-1,199,167,176,-1,61,34,60,-1,90,115,86,-1,65,22,45,-1,202,147,224,-1,269,244,272,-1,112,181,177,-1,49,18,55,-1,234,250,233,-1,203,261,239,-1,271,280,295,-1,334,351,347,-1,99,66,85,-1,110,116,142,-1,222,173,186,-1,22,103,54,-1,98,114,78,-1,71,19,80,-1,116,45,112,-1,236,272,244,-1,20,21,19,-1,275,319,288,-1,151,183,178,-1,78,137,92,-1,341,356,360,-1,67,118,141,-1,103,36,59,-1,172,212,153,-1,24,10,13,-1,7,30,37,-1,11,10,24,-1,333,346,342,-1,152,75,133,-1,208,241,255,-1,282,296,285,-1,6,2,5,-1,118,171,176,-1,307,344,350,-1,211,177,181,-1,100,55,43,-1,9,62,17,-1,124,149,109,-1,61,92,119,-1,58,48,73,-1,263,288,257,-1,59,71,160,-1,116,112,177,-1,195,136,155,-1,195,268,206,-1,195,260,268,-1,147,202,185,-1,12,28,34,-1,12,1,17,-1,190,149,211,-1,45,22,54,-1,110,96,81,-1,95,126,142,-1,27,0,18,-1,250,245,256,-1,235,242,236,-1,76,49,55,-1,269,185,244,-1,54,112,45,-1,216,169,205,-1,221,215,243,-1,272,242,268,-1,177,149,142,-1,92,60,78,-1,247,225,335,-1,192,251,184,-1,192,270,251,-1,107,104,129,-1,338,308,337,-1,201,223,257,-1,117,73,57,-1,117,130,73,-1,161,226,157,-1,161,229,226,-1,275,277,292,-1,275,263,277,-1,167,151,150,-1,183,151,167,-1,357,304,301,-1,363,304,357,-1,74,102,104,-1,74,68,102,-1,283,192,196,-1,283,270,192,-1,137,119,92,-1,137,143,119,-1,157,230,158,-1,157,226,230,-1,337,312,343,-1,337,308,312,-1,219,253,199,-1,253,219,265,-1,50,25,34,-1,50,52,25,-1,115,155,86,-1,115,163,155,-1,362,360,359,-1,362,349,360,-1,182,179,164,-1,201,179,182,-1,201,221,179,-1,221,201,215,-1,184,166,139,-1,184,187,166,-1,201,178,223,-1,178,201,182,-1,121,101,58,-1,101,121,140,-1,293,243,321,-1,293,221,243,-1,238,103,144,-1,238,214,103,-1,33,47,46,-1,26,47,33,-1,132,200,193,-1,132,145,200,-1,198,234,233,-1,194,234,198,-1,261,278,239,-1,261,271,278,-1,347,320,334,-1,320,347,313,-1,342,361,336,-1,361,342,364,-1,281,267,285,-1,281,266,267,-1,120,148,105,-1,148,120,153,-1,77,38,66,-1,77,35,38,-1,44,9,5,-1,44,41,9,-1,289,258,291,-1,258,289,265,-1,353,350,355,-1,350,353,343,-1,295,302,290,-1,302,295,305,-1,15,25,31,-1,15,12,25,-1,332,238,269,-1,332,323,238,-1,20,22,14,-1,36,22,20,-1,98,62,109,-1,98,53,62,-1,114,190,188,-1,134,190,114,-1,298,351,299,-1,298,358,351,-1,160,80,158,-1,160,71,80,-1,82,136,146,-1,70,136,82,-1,260,360,356,-1,260,287,360,-1,236,202,246,-1,236,244,202,-1,58,93,48,-1,93,58,101,-1,183,223,178,-1,183,218,223,-1,229,293,311,-1,229,228,293,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpreol1r_Geo_5_727_normalIndex_2()
		{
			int[] value = {74,90,56,-1,90,74,94,-1,213,294,209,-1,294,213,304,-1,0,16,18,-1,0,1,16,-1,298,355,358,-1,298,310,355,-1,258,222,264,-1,222,258,217,-1,147,227,224,-1,147,160,227,-1,138,105,148,-1,105,138,96,-1,77,44,35,-1,77,95,44,-1,69,132,135,-1,69,76,132,-1,256,237,248,-1,256,245,237,-1,315,334,320,-1,315,336,334,-1,271,262,266,-1,262,271,261,-1,84,108,85,-1,84,111,108,-1,13,8,3,-1,10,8,13,-1,191,233,231,-1,191,198,233,-1,364,330,325,-1,366,330,364,-1,232,252,254,-1,232,231,252,-1,346,365,366,-1,348,365,346,-1,284,296,282,-1,284,306,296,-1,128,172,127,-1,128,168,172,-1,63,30,64,-1,30,63,37,-1,42,23,24,-1,29,23,42,-1,189,231,232,-1,189,191,231,-1,29,83,88,-1,42,83,29,-1,113,127,111,-1,113,128,127,-1,240,282,241,-1,240,284,282,-1,333,348,346,-1,339,348,333,-1,279,254,252,-1,254,279,286,-1,366,342,346,-1,366,364,342,-1,250,231,233,-1,252,231,250,-1,75,42,46,-1,83,42,75,-1,63,85,66,-1,63,84,85,-1,267,241,282,-1,241,267,255,-1,280,266,281,-1,266,280,271,-1,336,352,334,-1,336,361,352,-1,237,234,235,-1,245,234,237,-1,76,47,49,-1,69,47,76,-1,2,44,5,-1,2,35,44,-1,110,105,96,-1,106,105,110,-1,179,175,140,-1,204,179,221,-1,179,204,175,-1,291,264,290,-1,264,291,258,-1,344,355,350,-1,344,358,355,-1,268,200,206,-1,242,200,268,-1,18,43,55,-1,18,16,43,-1,109,41,124,-1,41,109,62,-1,225,220,180,-1,247,220,225,-1,94,115,90,-1,115,94,107,-1,321,311,293,-1,340,311,321,-1,97,57,40,-1,97,117,57,-1,249,257,223,-1,249,263,257,-1,101,161,93,-1,161,101,170,-1,31,39,15,-1,39,31,51,-1,207,260,195,-1,260,207,287,-1,146,195,206,-1,136,195,146,-1,160,230,227,-1,160,158,230,-1,246,298,299,-1,224,298,246,-1,28,60,34,-1,28,53,60,-1,17,53,28,-1,53,17,62,-1,131,65,81,-1,125,65,131,-1,65,14,22,-1,65,67,14,-1,214,323,274,-1,323,214,238,-1,356,323,332,-1,356,341,323,-1,305,307,302,-1,307,305,313,-1,343,328,350,-1,328,343,312,-1,41,95,124,-1,44,95,41,-1,13,26,33,-1,6,26,13,-1,105,108,120,-1,105,106,108,-1,266,255,267,-1,266,262,255,-1,322,336,315,-1,336,322,342,-1,313,314,320,-1,314,313,305,-1,133,194,198,-1,135,194,133,-1,193,242,235,-1,193,200,242,-1,46,69,75,-1,47,69,46,-1,54,214,181,-1,214,54,103,-1,243,303,321,-1,303,243,215,-1,140,170,101,-1,170,140,175,-1,178,164,130,-1,178,182,164,-1,139,159,122,-1,139,166,159,-1,140,164,179,-1,164,140,121,-1,362,259,349,-1,362,283,259,-1,163,207,155,-1,163,209,207,-1,141,97,91,-1,150,97,141,-1,308,297,312,-1,308,292,297,-1,324,230,226,-1,324,331,230,-1,19,40,32,-1,40,19,21,-1,251,187,184,-1,251,225,187,-1,50,68,52,-1,72,68,50,-1,119,122,89,-1,119,139,122,-1,216,304,213,-1,304,216,301,-1,263,253,277,-1,263,249,253,-1,338,345,340,-1,338,337,345,-1,93,157,87,-1,93,161,157,-1,57,32,40,-1,57,48,32,-1,226,311,324,-1,229,311,226,-1,319,292,308,-1,319,275,292,-1,150,117,97,-1,151,117,150,-1,165,129,169,-1,165,107,129,-1,129,162,174,-1,129,104,162,-1,354,359,363,-1,354,362,359,-1,91,40,21,-1,97,40,91,-1,87,158,80,-1,87,157,158,-1,345,343,353,-1,345,337,343,-1,277,265,289,-1,277,253,265,-1,52,31,25,-1,52,56,31,-1,294,360,287,-1,294,359,360,-1,188,137,114,-1,196,137,188,-1,162,159,180,-1,159,162,154,-1,216,220,301,-1,216,205,220,-1,154,104,102,-1,104,154,162,-1,58,123,121,-1,58,73,123,-1,228,221,293,-1,228,204,221,-1,269,144,185,-1,269,238,144,-1,248,236,246,-1,248,237,236,-1,76,145,132,-1,76,100,145,-1,329,276,256,-1,329,325,276,-1,325,361,364,-1,329,361,325,-1,317,285,316,-1,317,281,285,-1,210,153,212,-1,210,148,153,-1,35,3,38,-1,35,2,3,-1,9,4,5,-1,4,9,0,-1,131,96,138,-1,96,131,81,-1,291,297,289,-1,291,300,297,-1,358,347,351,-1,358,344,347,-1,278,290,264,-1,290,278,295,-1,273,349,259,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlpreol1r_Geo_5_727_normalIndex_3()
		{
			int[] value = {273,341,349,-1,59,20,71,-1,59,36,20,-1,118,173,171,-1,125,173,118,-1,134,109,149,-1,134,98,109,-1,16,12,15,-1,16,1,12,-1,185,59,147,-1,59,185,144,-1,353,310,331,-1,355,310,353,-1,43,70,82,-1,39,70,43,-1,268,356,332,-1,260,356,268,-1,86,136,70,-1,136,86,155,-1,273,211,274,-1,273,190,211,-1,170,229,161,-1,229,170,228,-1,56,68,74,-1,56,52,68,-1,165,209,163,-1,209,165,213,-1,61,72,50,-1,61,89,72,-1,0,17,1,-1,0,9,17,-1,100,146,145,-1,100,82,146,-1,224,310,298,-1,224,227,310,-1,328,302,307,-1,302,328,300,-1,217,173,222,-1,173,217,171,-1,148,203,138,-1,148,210,203,-1,95,99,126,-1,77,99,95,-1,27,6,4,-1,26,6,27,-1,135,193,194,-1,135,132,193,-1,256,309,329,-1,256,248,309,-1,317,320,314,-1,317,315,320,-1,316,296,318,-1,296,316,285,-1,111,120,108,-1,111,127,120,-1,38,8,37,-1,8,38,3,-1,198,152,133,-1,191,152,198,-1,279,325,330,-1,279,276,325,-1,322,318,333,-1,318,322,316,-1,330,365,327,-1,330,366,365,-1,306,318,296,-1,306,326,318,-1,208,168,197,-1,168,208,172,-1,64,84,63,-1,64,79,84,-1,191,156,152,-1,156,191,189,-1,152,88,83,-1,88,152,156,-1,8,11,7,-1,11,8,10,-1,113,84,79,-1,113,111,84,-1,241,197,240,-1,197,241,208,-1,318,339,333,-1,326,339,318,-1,279,327,286,-1,279,330,327,-1,180,187,225,-1,180,166,187,-1,180,159,166,-1,276,252,250,-1,279,252,276,-1,24,46,42,-1,24,33,46,-1,37,66,38,-1,37,63,66,-1,153,127,172,-1,127,153,120,-1,314,281,317,-1,281,314,280,-1,352,329,309,-1,361,329,352,-1,194,235,234,-1,194,193,235,-1,49,26,27,-1,47,26,49,-1,99,110,126,-1,99,106,110,-1,261,210,262,-1,210,261,203,-1,21,67,91,-1,14,67,21,-1,300,290,302,-1,290,300,291,-1,145,206,200,-1,145,146,206,-1,196,143,137,-1,196,192,143,-1,107,163,115,-1,163,107,165,-1,338,321,303,-1,338,340,321,-1,151,130,117,-1,151,178,130,-1,303,319,338,-1,319,303,288,-1,274,341,273,-1,274,323,341,-1,70,51,86,-1,70,39,51,-1,39,16,15,-1,39,43,16,-1,227,331,310,-1,227,230,331,-1,98,60,53,-1,98,78,60,-1,125,67,65,-1,125,118,67,-1,181,274,211,-1,274,181,214,-1,273,188,190,-1,273,259,188,-1,264,239,278,-1,264,222,239,-1,313,344,307,-1,344,313,347,-1,312,300,328,-1,300,312,297,-1,176,217,219,-1,171,217,176,-1,3,6,13,-1,2,6,3,-1,85,106,99,-1,106,85,108,-1,262,212,255,-1,262,210,212,-1,315,316,322,-1,315,317,316,-1,309,351,352,-1,309,299,351,-1,280,305,295,-1,280,314,305,-1,186,138,203,-1,138,186,131,-1,75,135,133,-1,69,135,75,-1,299,248,246,-1,309,248,299,-1,215,257,288,-1,257,215,201,-1,170,204,228,-1,170,175,204,-1,130,123,73,-1,130,164,123,-1,154,122,159,-1,102,122,154,-1,205,180,220,-1,174,180,205,-1,162,180,174,-1,259,196,188,-1,283,196,259,-1,209,287,207,-1,209,294,287,-1,56,51,31,-1,56,90,51,-1,176,150,141,-1,167,150,176,-1,292,289,297,-1,292,277,289,-1,331,345,353,-1,324,345,331,-1,32,80,19,-1,32,87,80,-1,354,283,362,-1,270,283,354,-1,304,359,294,-1,304,363,359,-1,89,102,72,-1,89,122,102,-1,169,213,165,-1,213,169,216,-1,335,270,354,-1,270,335,251,-1,253,218,199,-1,249,218,253,-1,324,340,345,-1,311,340,324,-1,48,87,32,-1,48,93,87,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpreol2c_Geo_5_733_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,16,20,-1,25,26,27,-1,25,28,26,-1,29,30,31,-1,32,33,34,-1,35,36,37,-1,38,39,40,-1,8,38,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,47,51,11,-1,52,53,42,-1,54,50,10,-1,55,56,57,-1,58,59,60,-1,61,62,63,-1,48,64,65,-1,66,67,68,-1,9,11,51,-1,69,70,71,-1,72,73,74,-1,75,76,29,-1,32,30,33,-1,77,78,79,-1,78,31,32,-1,2,1,80,-1,81,82,83,-1,84,85,86,-1,15,87,88,-1,24,17,16,-1,14,89,90,-1,91,92,93,-1,20,19,62,-1,26,94,95,-1,96,97,75,-1,7,6,77,-1,98,52,99,-1,100,66,43,-1,101,102,66,-1,99,52,42,-1,62,61,103,-1,55,104,105,-1,106,44,66,-1,64,48,107,-1,65,108,109,-1,108,110,109,-1,51,52,98,-1,99,111,22,-1,92,112,93,-1,41,111,99,-1,113,114,115,-1,116,12,117,-1,118,119,73,-1,120,121,24,-1,122,86,85,-1,21,123,124,-1,125,126,79,-1,34,127,128,-1,129,130,131,-1,71,61,69,-1,132,72,9,-1,102,91,93,-1,91,133,95,-1,115,62,19,-1,64,133,134,-1,69,63,48,-1,135,70,105,-1,136,137,60,-1,138,139,105,-1,56,139,69,-1,139,56,105,-1,74,140,54,-1,141,14,142,-1,65,64,134,-1,110,143,51,-1,43,65,100,-1,99,144,41,-1,39,7,40,-1,32,34,145,-1,28,146,26,-1,120,24,103,-1,22,40,23,-1,19,18,133,-1,147,148,31,-1,149,116,150,-1,6,151,77,-1,16,15,152,-1,87,15,17,-1,21,23,126,-1,22,111,40,-1,146,76,26,-1,78,32,145,-1,106,153,8,-1,53,143,43,-1,46,110,47,-1,65,134,100,-1,142,119,141,-1,54,10,74,-1,56,69,57,-1,57,69,48,-1,60,59,136,-1,70,138,105,-1,63,62,154,-1,64,113,133,-1,115,154,62,-1,102,101,91,-1,9,155,132,-1,110,46,109,-1,154,115,114,-1,140,74,73,-1,147,151,156,-1,157,21,126,-1,31,78,77,-1,34,37,127,-1,85,158,122,-1,118,73,72,-1,116,159,12,-1,8,153,160,-1,161,97,96,-1,22,124,99,-1,98,155,51,-1,65,109,48,-1,67,66,102,-1,106,66,153,-1,74,10,9,-1,42,144,99,-1,49,48,109,-1,68,160,153,-1,66,44,43,-1,98,99,124,-1,40,7,77,-1,77,23,40,-1,26,95,27,-1,20,62,103,-1,8,7,39,-1,137,105,140,-1,14,13,89,-1,162,119,118,-1,163,121,120,-1,24,121,17,-1,87,164,88,-1,86,165,84,-1,83,166,81,-1,2,80,167,-1,168,167,169,-1,21,124,22,-1,32,31,30,-1,96,75,29,-1,74,9,72,-1,63,107,48,-1,9,51,155,-1,94,75,97,-1,66,68,153,-1,133,18,95,-1,69,61,63,-1,58,60,90,-1,55,105,56,-1,45,109,46,-1,108,65,43,-1,47,110,51,-1,109,45,49,-1,42,53,43,-1,38,8,39,-1,35,129,36,-1,31,148,29,-1,146,170,76,-1,24,20,103,-1,157,126,125,-1,20,171,18,-1,14,141,12,-1,5,172,3,-1,2,173,0,-1,174,159,116,-1,159,174,175,-1,176,83,177,-1,166,83,176,-1,178,179,180,-1,181,179,178,-1,149,174,116,-1,174,149,182,-1,183,184,185,-1,186,184,183,-1,169,187,168,-1,169,188,187,-1,189,190,191,-1,189,192,190,-1,161,68,97,-1,156,68,161,-1,160,68,156,-1,55,48,50,-1,55,57,48,-1,135,137,136,-1,135,105,137,-1,97,92,94,-1,97,112,92,-1,91,134,133,-1,91,101,134,-1,64,114,113,-1,64,107,114,-1,163,193,121,-1,163,194,193,-1,195,124,123,-1,98,124,195,-1,30,35,33,-1,30,170,35,-1,183,128,127,-1,128,183,185,-1,196,168,187,-1,196,197,168,-1,125,198,157,-1,199,198,125,-1,123,157,200,-1,157,123,21,-1,189,201,202,-1,203,201,189,-1,204,190,117,-1,204,191,190,-1,28,88,130,-1,28,25,88,-1,129,205,36,-1,205,129,131,-1,81,206,207,-1,206,81,3,-1,158,82,208,-1,158,85,82,-1,158,193,122,-1,209,193,158,-1,210,122,211,-1,210,86,122,-1,141,117,12,-1,117,141,204,-1,211,212,210,-1,58,212,211,-1,51,53,52,-1,51,143,53,-1,104,140,105,-1,54,140,104,-1,213,210,212,-1,213,214,210,-1,215,89,13,-1,215,216,89,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpreol2c_Geo_5_733_coordIndex_2()
		{
			int[] value = {210,165,86,-1,214,165,210,-1,121,209,17,-1,121,193,209,-1,85,83,82,-1,85,84,83,-1,207,205,217,-1,205,207,206,-1,218,205,206,-1,218,36,205,-1,217,87,219,-1,164,87,217,-1,204,220,191,-1,220,204,162,-1,203,200,201,-1,221,200,203,-1,169,80,222,-1,167,80,169,-1,223,197,196,-1,224,197,223,-1,34,223,145,-1,34,128,223,-1,79,23,77,-1,126,23,79,-1,161,29,148,-1,161,96,29,-1,132,98,195,-1,155,98,132,-1,163,59,194,-1,163,136,59,-1,63,114,107,-1,63,154,114,-1,97,67,112,-1,67,97,68,-1,10,47,11,-1,10,45,47,-1,144,44,106,-1,144,42,44,-1,172,127,218,-1,183,127,172,-1,29,170,30,-1,170,29,76,-1,20,152,171,-1,152,20,16,-1,159,13,12,-1,215,13,159,-1,190,225,150,-1,190,192,225,-1,226,150,225,-1,226,149,150,-1,167,227,2,-1,227,167,168,-1,186,172,5,-1,186,183,172,-1,2,228,173,-1,228,2,227,-1,229,186,5,-1,229,230,186,-1,228,180,179,-1,228,227,180,-1,166,231,4,-1,176,231,166,-1,165,232,233,-1,165,214,232,-1,213,234,235,-1,234,213,216,-1,175,215,159,-1,175,236,215,-1,84,177,83,-1,237,177,84,-1,0,226,1,-1,226,0,238,-1,184,181,178,-1,239,181,184,-1,214,235,232,-1,214,213,235,-1,178,185,184,-1,178,224,185,-1,224,180,197,-1,224,178,180,-1,222,188,169,-1,222,202,188,-1,191,203,189,-1,191,220,203,-1,133,115,19,-1,133,113,115,-1,171,25,27,-1,171,152,25,-1,37,33,35,-1,33,37,34,-1,35,146,129,-1,35,170,146,-1,8,151,6,-1,151,160,156,-1,8,160,151,-1,50,45,10,-1,49,45,50,-1,104,50,54,-1,55,50,104,-1,58,89,212,-1,58,90,89,-1,95,92,91,-1,92,95,94,-1,134,66,100,-1,101,66,134,-1,76,94,26,-1,75,94,76,-1,79,145,240,-1,145,79,78,-1,187,240,196,-1,199,240,187,-1,188,199,187,-1,188,198,199,-1,200,198,201,-1,198,200,157,-1,192,80,225,-1,192,222,80,-1,117,150,116,-1,190,150,117,-1,241,195,221,-1,132,195,241,-1,81,208,82,-1,81,207,208,-1,4,81,166,-1,3,81,4,-1,164,130,88,-1,164,131,130,-1,209,208,219,-1,209,158,208,-1,88,152,15,-1,152,88,25,-1,193,211,122,-1,211,193,194,-1,204,119,162,-1,204,141,119,-1,14,60,142,-1,14,90,60,-1,194,58,211,-1,59,58,194,-1,27,18,171,-1,27,95,18,-1,61,120,103,-1,120,61,71,-1,135,71,70,-1,135,120,71,-1,120,136,163,-1,135,136,120,-1,219,17,209,-1,87,17,219,-1,164,205,131,-1,164,217,205,-1,206,172,218,-1,3,172,206,-1,219,207,217,-1,207,219,208,-1,162,241,220,-1,241,162,118,-1,221,123,200,-1,195,123,221,-1,201,188,202,-1,188,201,198,-1,240,125,79,-1,125,240,199,-1,196,145,223,-1,196,240,145,-1,185,223,128,-1,223,185,224,-1,130,146,28,-1,129,146,130,-1,148,156,161,-1,156,148,147,-1,142,137,140,-1,137,142,60,-1,241,72,132,-1,118,72,241,-1,112,102,93,-1,112,67,102,-1,69,138,70,-1,69,139,138,-1,216,212,89,-1,213,212,216,-1,140,119,142,-1,140,73,119,-1,43,110,108,-1,143,110,43,-1,41,106,8,-1,144,106,41,-1,37,218,127,-1,37,36,218,-1,41,40,111,-1,41,38,40,-1,220,221,203,-1,220,241,221,-1,202,192,189,-1,222,192,202,-1,1,225,80,-1,1,226,225,-1,151,31,77,-1,151,147,31,-1,197,227,168,-1,180,227,197,-1,4,229,5,-1,4,231,229,-1,239,186,230,-1,239,184,186,-1,238,149,226,-1,149,238,182,-1,165,237,84,-1,233,237,165,-1,215,234,216,-1,236,234,215,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpreol2c_Geo_5_733_normalIndex_1()
		{
			int[] value = {4,5,16,-1,192,213,168,-1,202,169,208,-1,159,197,214,-1,113,156,123,-1,235,189,221,-1,87,68,119,-1,44,116,100,-1,142,189,119,-1,200,114,138,-1,200,182,114,-1,67,97,65,-1,78,104,99,-1,155,174,133,-1,185,227,195,-1,208,185,219,-1,205,217,218,-1,191,216,223,-1,122,173,184,-1,223,226,214,-1,199,194,205,-1,186,184,197,-1,193,161,170,-1,146,135,129,-1,46,49,61,-1,122,81,127,-1,172,94,53,-1,159,214,226,-1,101,125,98,-1,86,96,126,-1,27,103,67,-1,78,97,104,-1,121,60,55,-1,60,65,78,-1,16,5,2,-1,231,236,237,-1,207,215,158,-1,235,239,228,-1,142,221,189,-1,123,150,132,-1,22,17,23,-1,119,68,49,-1,114,29,70,-1,25,30,27,-1,169,202,121,-1,136,199,188,-1,183,172,217,-1,82,88,172,-1,188,199,205,-1,49,46,90,-1,193,179,165,-1,222,218,172,-1,81,122,83,-1,127,187,190,-1,187,220,190,-1,226,199,136,-1,188,203,116,-1,17,45,23,-1,219,203,188,-1,72,56,39,-1,84,113,71,-1,74,95,96,-1,115,178,142,-1,171,158,215,-1,44,37,111,-1,43,50,55,-1,99,118,93,-1,180,201,210,-1,98,46,101,-1,80,86,159,-1,88,22,23,-1,22,28,70,-1,39,49,68,-1,81,28,66,-1,101,61,122,-1,143,125,165,-1,128,131,129,-1,110,7,165,-1,161,7,101,-1,7,161,165,-1,126,134,186,-1,102,123,117,-1,127,81,66,-1,220,206,226,-1,217,127,183,-1,188,212,219,-1,227,169,195,-1,78,99,64,-1,182,175,114,-1,115,142,90,-1,116,195,100,-1,68,87,28,-1,107,40,65,-1,34,84,36,-1,202,181,121,-1,189,235,198,-1,239,235,221,-1,44,100,50,-1,116,203,195,-1,175,103,114,-1,60,78,64,-1,222,163,208,-1,194,206,217,-1,216,220,223,-1,127,66,183,-1,117,95,102,-1,186,197,126,-1,161,101,170,-1,170,101,122,-1,129,135,128,-1,125,110,165,-1,61,49,48,-1,81,72,28,-1,39,48,49,-1,88,82,22,-1,159,177,80,-1,220,216,190,-1,48,39,56,-1,134,126,96,-1,107,181,106,-1,19,44,50,-1,65,60,121,-1,99,133,118,-1,215,224,171,-1,74,96,86,-1,84,120,113,-1,208,163,105,-1,41,30,25,-1,116,111,188,-1,136,177,226,-1,127,190,122,-1,94,172,88,-1,222,172,163,-1,126,197,159,-1,205,212,188,-1,173,122,190,-1,53,105,163,-1,172,218,217,-1,136,188,111,-1,195,169,121,-1,121,100,195,-1,114,70,138,-1,119,49,90,-1,208,169,227,-1,131,165,134,-1,123,156,150,-1,58,95,74,-1,145,178,115,-1,142,178,221,-1,239,232,228,-1,158,154,207,-1,237,230,231,-1,16,2,21,-1,33,21,20,-1,44,111,116,-1,78,65,97,-1,25,27,67,-1,126,159,86,-1,61,83,122,-1,159,226,177,-1,29,27,30,-1,172,53,163,-1,28,87,70,-1,101,46,61,-1,146,129,132,-1,193,165,161,-1,191,190,216,-1,187,127,217,-1,223,220,226,-1,190,191,173,-1,205,194,217,-1,185,208,227,-1,155,180,174,-1,65,40,67,-1,175,151,103,-1,142,119,90,-1,19,50,43,-1,119,130,87,-1,123,102,113,-1,168,164,192,-1,16,9,4,-1,85,120,84,-1,120,85,124,-1,229,237,238,-1,230,237,229,-1,77,73,69,-1,79,73,77,-1,34,85,84,-1,85,34,32,-1,112,92,91,-1,109,92,112,-1,20,38,33,-1,20,18,38,-1,14,42,35,-1,14,13,42,-1,41,53,30,-1,106,53,41,-1,105,53,106,-1,193,122,184,-1,193,170,122,-1,143,131,128,-1,143,165,131,-1,30,17,29,-1,30,45,17,-1,22,66,28,-1,22,82,66,-1,81,56,72,-1,81,83,56,-1,145,176,178,-1,145,149,176,-1,57,111,37,-1,136,111,57,-1,97,155,104,-1,97,151,155,-1,112,93,118,-1,93,112,91,-1,59,33,38,-1,59,62,33,-1,43,15,19,-1,31,15,43,-1,37,19,6,-1,19,37,44,-1,14,3,0,-1,12,3,14,-1,63,42,71,-1,63,35,42,-1,182,228,201,-1,182,200,228,-1,180,204,174,-1,204,180,210,-1,231,196,233,-1,196,231,192,-1,224,236,241,-1,224,215,236,-1,224,176,171,-1,225,176,224,-1,137,171,139,-1,137,158,171,-1,102,71,113,-1,71,102,63,-1,139,148,137,-1,146,148,139,-1,226,194,199,-1,226,206,194,-1,179,134,165,-1,186,134,179,-1,147,137,148,-1,147,141,137,-1,160,150,156,-1,160,152,150,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpreol2c_Geo_5_733_normalIndex_2()
		{
			int[] value = {137,154,158,-1,141,154,137,-1,178,225,221,-1,178,176,225,-1,215,237,236,-1,215,207,237,-1,233,204,234,-1,204,233,196,-1,166,204,196,-1,166,174,204,-1,234,239,240,-1,232,239,234,-1,63,26,35,-1,26,63,58,-1,12,6,3,-1,24,6,12,-1,20,2,1,-1,21,2,20,-1,75,62,59,-1,76,62,75,-1,99,75,64,-1,99,93,75,-1,55,100,121,-1,50,100,55,-1,41,67,40,-1,41,25,67,-1,80,136,57,-1,177,136,80,-1,145,135,149,-1,145,128,135,-1,61,56,83,-1,61,48,56,-1,30,94,45,-1,94,30,53,-1,197,223,214,-1,197,191,223,-1,212,218,222,-1,212,205,218,-1,164,118,166,-1,112,118,164,-1,67,151,97,-1,151,67,103,-1,119,198,130,-1,198,119,189,-1,120,156,113,-1,160,156,120,-1,42,8,36,-1,42,13,8,-1,10,36,8,-1,10,34,36,-1,21,47,16,-1,47,21,33,-1,109,164,168,-1,109,112,164,-1,16,51,9,-1,51,16,47,-1,167,109,168,-1,167,108,109,-1,51,69,73,-1,51,47,69,-1,230,211,213,-1,229,211,230,-1,154,140,157,-1,154,141,140,-1,147,153,144,-1,153,147,152,-1,124,160,120,-1,124,162,160,-1,207,238,237,-1,209,238,207,-1,4,10,5,-1,10,4,11,-1,92,79,77,-1,89,79,92,-1,141,144,140,-1,141,147,144,-1,77,91,92,-1,77,76,91,-1,76,69,62,-1,76,77,69,-1,1,18,20,-1,1,0,18,-1,35,12,14,-1,35,26,12,-1,28,39,68,-1,28,72,39,-1,130,200,138,-1,130,198,200,-1,133,104,155,-1,104,133,99,-1,155,175,180,-1,155,151,175,-1,208,181,202,-1,181,105,106,-1,208,105,181,-1,184,191,197,-1,173,191,184,-1,179,184,186,-1,193,184,179,-1,146,150,148,-1,146,132,150,-1,70,17,22,-1,17,70,29,-1,66,172,183,-1,82,172,66,-1,103,29,114,-1,27,29,103,-1,55,64,54,-1,64,55,60,-1,38,54,59,-1,31,54,38,-1,18,31,38,-1,18,15,31,-1,6,15,3,-1,15,6,19,-1,13,2,8,-1,13,1,2,-1,71,36,84,-1,42,36,71,-1,52,57,24,-1,80,57,52,-1,231,241,236,-1,231,233,241,-1,213,231,230,-1,192,231,213,-1,232,201,228,-1,232,210,201,-1,225,241,240,-1,225,224,241,-1,228,198,235,-1,198,228,200,-1,176,139,171,-1,139,176,149,-1,63,95,58,-1,63,102,95,-1,123,129,117,-1,123,132,129,-1,149,146,139,-1,135,146,149,-1,138,87,130,-1,138,70,87,-1,46,115,90,-1,115,46,98,-1,143,98,125,-1,143,115,98,-1,115,128,145,-1,143,128,115,-1,240,221,225,-1,239,221,240,-1,232,204,210,-1,232,234,204,-1,196,164,166,-1,192,164,196,-1,240,233,234,-1,233,240,241,-1,58,52,26,-1,52,58,74,-1,24,37,6,-1,57,37,24,-1,3,18,0,-1,18,3,15,-1,54,43,55,-1,43,54,31,-1,59,64,75,-1,59,54,64,-1,91,75,93,-1,75,91,76,-1,201,175,182,-1,180,175,201,-1,40,106,41,-1,106,40,107,-1,117,131,134,-1,131,117,129,-1,52,86,80,-1,74,86,52,-1,45,88,23,-1,45,94,88,-1,101,110,125,-1,101,7,110,-1,152,148,150,-1,147,148,152,-1,134,95,117,-1,134,96,95,-1,217,220,187,-1,206,220,217,-1,219,222,208,-1,212,222,219,-1,133,166,118,-1,133,174,166,-1,219,195,203,-1,219,185,195,-1,26,24,12,-1,26,52,24,-1,0,13,14,-1,1,13,0,-1,5,8,2,-1,5,10,8,-1,181,65,121,-1,181,107,65,-1,62,47,33,-1,69,47,62,-1,213,167,168,-1,213,211,167,-1,89,109,108,-1,89,92,109,-1,11,34,10,-1,34,11,32,-1,154,209,207,-1,157,209,154,-1,160,153,152,-1,162,153,160,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpreol2r_Geo_5_739_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,12,-1,20,21,22,-1,23,24,25,-1,26,27,25,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,37,38,39,-1,23,40,41,-1,23,25,40,-1,0,42,43,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,13,53,54,-1,55,56,57,-1,8,58,59,-1,5,60,61,-1,62,63,64,-1,5,61,65,-1,8,7,58,-1,56,66,57,-1,13,67,53,-1,50,68,51,-1,69,70,71,-1,69,72,70,-1,47,73,48,-1,44,74,45,-1,0,43,32,-1,38,75,39,-1,34,36,76,-1,77,28,30,-1,26,25,24,-1,18,78,19,-1,15,79,16,-1,12,19,13,-1,11,67,9,-1,8,51,6,-1,5,65,3,-1,39,80,37,-1,20,81,21,-1,20,82,81,-1,57,61,83,-1,61,57,65,-1,84,85,86,-1,84,87,85,-1,88,89,90,-1,88,91,89,-1,87,92,93,-1,92,87,84,-1,94,58,7,-1,94,95,58,-1,96,97,98,-1,97,96,99,-1,98,100,101,-1,100,98,97,-1,102,103,104,-1,102,55,103,-1,90,105,106,-1,105,90,107,-1,92,53,108,-1,53,92,109,-1,110,94,111,-1,110,4,94,-1,112,113,114,-1,113,112,115,-1,116,117,118,-1,119,117,116,-1,120,121,122,-1,120,123,121,-1,54,14,13,-1,14,54,124,-1,125,51,68,-1,125,6,51,-1,49,50,126,-1,49,68,50,-1,114,127,128,-1,127,114,113,-1,129,119,45,-1,129,117,119,-1,130,120,131,-1,130,123,120,-1,48,68,49,-1,48,125,68,-1,47,126,132,-1,47,49,126,-1,133,134,135,-1,133,136,134,-1,137,46,138,-1,137,44,46,-1,10,139,140,-1,139,10,9,-1,141,72,142,-1,141,18,72,-1,132,143,47,-1,144,143,132,-1,145,146,147,-1,145,148,146,-1,149,74,150,-1,149,151,74,-1,152,153,154,-1,153,152,155,-1,153,156,157,-1,156,153,158,-1,141,159,160,-1,159,141,142,-1,144,161,143,-1,162,161,144,-1,163,145,164,-1,163,148,145,-1,165,150,166,-1,165,149,150,-1,167,30,166,-1,77,30,167,-1,156,36,157,-1,168,36,156,-1,159,33,160,-1,31,33,159,-1,162,169,161,-1,170,169,162,-1,171,164,23,-1,171,163,164,-1,165,30,172,-1,30,165,166,-1,33,43,173,-1,33,32,43,-1,174,75,27,-1,39,75,174,-1,175,176,28,-1,177,176,175,-1,178,179,63,-1,178,170,179,-1,1,32,31,-1,1,0,32,-1,81,76,21,-1,76,81,180,-1,42,22,43,-1,42,20,22,-1,179,64,63,-1,179,181,64,-1,175,77,182,-1,175,28,77,-1,174,80,39,-1,174,29,80,-1,40,27,75,-1,25,27,40,-1,181,183,64,-1,171,183,181,-1,182,34,175,-1,35,34,182,-1,172,184,165,-1,172,26,184,-1,181,163,171,-1,181,185,163,-1,161,186,187,-1,169,186,161,-1,160,173,188,-1,33,173,160,-1,157,35,189,-1,36,35,157,-1,190,189,191,-1,189,190,154,-1,184,149,165,-1,184,192,149,-1,185,148,163,-1,185,193,148,-1,187,143,161,-1,187,194,143,-1,195,160,188,-1,160,195,141,-1,154,157,189,-1,157,154,153,-1,137,154,190,-1,154,137,152,-1,192,151,149,-1,192,135,151,-1,15,148,193,-1,148,15,146,-1,47,194,73,-1,143,194,47,-1,78,141,195,-1,141,78,18,-1,19,139,9,-1,78,139,19,-1,130,137,138,-1,152,137,130,-1,127,133,147,-1,133,127,136,-1,126,79,132,-1,79,126,16,-1,71,125,48,-1,71,196,125,-1,9,13,19,-1,9,67,13,-1,138,123,130,-1,138,197,123,-1,198,129,134,-1,129,198,117,-1,199,128,17,-1,128,199,114,-1,101,199,200,-1,199,101,100,-1,14,110,201,-1,14,124,110,-1,123,105,121,-1,123,197,105,-1,198,118,117,-1,198,104,118,-1,100,114,199,-1,114,100,112,-1,111,7,6,-1,111,94,7,-1,109,54,53,-1,54,109,60,-1,107,121,105,-1,121,107,202,-1,104,203,118,-1,104,103,203,-1,204,115,112,-1,115,204,56,-1,205,98,206,-1,98,205,96,-1,84,109,92,-1,109,84,86,-1,89,107,90,-1,107,89,207,-1,55,83,103,-1,55,57,83,-1,20,208,82,-1,20,42,208,-1,58,205,59,-1,58,96,205,-1,66,95,3,-1,209,95,66,-1,99,95,209,-1,95,96,58,-1,99,96,95,-1,203,91,88,-1,203,210,91,-1,85,93,202,-1,93,85,87,-1,4,95,94,-1,4,3,95,-1,99,204,97,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpreol2r_Geo_5_739_coordIndex_2()
		{
			int[] value = {204,99,209,-1,115,55,102,-1,115,56,55,-1,116,90,106,-1,116,88,90,-1,108,93,92,-1,108,122,93,-1,124,4,110,-1,124,5,4,-1,8,52,51,-1,52,8,206,-1,113,102,211,-1,113,115,102,-1,106,119,116,-1,212,119,106,-1,122,11,120,-1,11,122,108,-1,196,6,125,-1,196,111,6,-1,16,50,200,-1,16,126,50,-1,113,136,127,-1,136,113,211,-1,212,45,119,-1,46,45,212,-1,131,11,10,-1,131,120,11,-1,12,201,70,-1,12,14,201,-1,146,17,128,-1,146,15,17,-1,135,129,151,-1,135,134,129,-1,131,140,155,-1,140,131,10,-1,18,70,72,-1,18,12,70,-1,142,69,213,-1,142,72,69,-1,144,79,214,-1,144,132,79,-1,147,215,145,-1,215,147,133,-1,150,44,216,-1,150,74,44,-1,155,158,153,-1,158,155,140,-1,158,217,156,-1,217,158,218,-1,142,219,159,-1,219,142,213,-1,214,162,144,-1,220,162,214,-1,221,145,215,-1,221,164,145,-1,166,216,167,-1,166,150,216,-1,167,182,77,-1,182,167,191,-1,217,168,156,-1,222,168,217,-1,219,31,159,-1,223,31,219,-1,170,220,179,-1,170,162,220,-1,24,164,221,-1,24,23,164,-1,66,65,57,-1,65,66,3,-1,222,21,168,-1,222,22,21,-1,224,41,225,-1,224,183,41,-1,40,225,41,-1,226,225,40,-1,27,172,174,-1,27,26,172,-1,80,28,176,-1,29,28,80,-1,227,170,178,-1,169,170,227,-1,228,186,229,-1,228,223,186,-1,36,21,76,-1,168,21,36,-1,173,22,222,-1,22,173,43,-1,228,31,223,-1,1,31,228,-1,169,229,186,-1,227,229,169,-1,230,76,180,-1,230,34,76,-1,174,30,29,-1,172,30,174,-1,75,226,40,-1,75,38,226,-1,171,41,183,-1,23,41,171,-1,62,183,224,-1,62,64,183,-1,230,175,34,-1,230,177,175,-1,26,221,184,-1,26,24,221,-1,179,185,181,-1,179,220,185,-1,187,223,219,-1,186,223,187,-1,188,222,217,-1,173,222,188,-1,191,35,182,-1,35,191,189,-1,216,191,167,-1,191,216,190,-1,184,215,192,-1,184,221,215,-1,220,193,185,-1,220,214,193,-1,213,187,219,-1,187,213,194,-1,218,188,217,-1,188,218,195,-1,140,218,158,-1,218,140,139,-1,190,44,137,-1,190,216,44,-1,215,135,192,-1,215,133,135,-1,79,193,214,-1,193,79,15,-1,73,213,69,-1,194,213,73,-1,139,195,218,-1,195,139,78,-1,131,152,130,-1,155,152,131,-1,151,45,74,-1,151,129,45,-1,128,147,146,-1,147,128,127,-1,48,69,71,-1,73,69,48,-1,70,196,71,-1,70,201,196,-1,138,212,197,-1,138,46,212,-1,211,134,136,-1,134,211,198,-1,200,17,16,-1,17,200,199,-1,52,200,50,-1,200,52,101,-1,201,111,196,-1,201,110,111,-1,67,108,53,-1,67,11,108,-1,106,197,212,-1,197,106,105,-1,211,104,198,-1,211,102,104,-1,206,101,52,-1,101,206,98,-1,60,124,54,-1,124,60,5,-1,202,122,121,-1,122,202,93,-1,118,88,116,-1,118,203,88,-1,97,112,100,-1,112,97,204,-1,209,56,204,-1,56,209,66,-1,59,206,8,-1,206,59,205,-1,86,60,109,-1,60,86,61,-1,207,202,107,-1,202,207,85,-1,103,210,203,-1,103,83,210,-1,86,83,61,-1,91,207,89,-1,86,210,83,-1,85,210,86,-1,85,91,210,-1,85,207,91,-1,42,2,208,-1,42,0,2,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlpreol2r_Geo_5_739_normalIndex_1()
		{
			int[] value = {178,169,183,-1,112,128,131,-1,196,186,203,-1,195,151,139,-1,162,167,132,-1,190,211,182,-1,141,193,162,-1,174,115,170,-1,77,69,71,-1,52,50,71,-1,1,7,9,-1,148,152,137,-1,24,22,46,-1,29,44,31,-1,77,56,68,-1,77,71,56,-1,178,177,160,-1,14,21,15,-1,226,200,225,-1,219,216,215,-1,167,158,135,-1,84,88,109,-1,203,150,171,-1,131,142,149,-1,189,213,194,-1,131,149,119,-1,203,186,150,-1,88,94,109,-1,167,191,158,-1,219,218,216,-1,157,123,140,-1,157,143,123,-1,226,204,200,-1,14,18,21,-1,178,160,152,-1,44,45,31,-1,24,46,59,-1,2,1,9,-1,52,71,69,-1,141,173,193,-1,190,214,211,-1,162,193,167,-1,139,191,195,-1,203,216,196,-1,131,119,112,-1,31,10,29,-1,174,114,115,-1,174,181,114,-1,109,149,107,-1,149,109,119,-1,120,105,127,-1,120,111,105,-1,36,87,34,-1,36,82,87,-1,111,125,96,-1,125,111,120,-1,133,150,186,-1,133,118,150,-1,165,188,199,-1,188,165,122,-1,199,172,205,-1,172,199,188,-1,74,70,63,-1,74,84,70,-1,34,39,20,-1,39,34,54,-1,125,158,138,-1,158,125,154,-1,130,133,134,-1,130,128,133,-1,103,90,106,-1,90,103,85,-1,27,42,47,-1,19,42,27,-1,89,62,93,-1,89,57,62,-1,135,132,167,-1,132,135,136,-1,197,216,218,-1,197,196,216,-1,225,219,222,-1,225,218,219,-1,106,100,113,-1,100,106,90,-1,43,19,21,-1,43,42,19,-1,58,89,86,-1,58,57,89,-1,200,218,225,-1,200,197,218,-1,226,222,224,-1,226,225,222,-1,79,67,60,-1,79,81,67,-1,26,15,33,-1,26,14,15,-1,151,192,126,-1,192,151,195,-1,147,143,144,-1,147,141,143,-1,224,227,226,-1,223,227,224,-1,83,104,92,-1,83,101,104,-1,35,18,11,-1,35,40,18,-1,41,66,30,-1,66,41,78,-1,66,117,49,-1,117,66,121,-1,147,145,146,-1,145,147,144,-1,223,229,227,-1,220,229,223,-1,98,83,80,-1,98,101,83,-1,37,11,6,-1,37,35,11,-1,3,9,6,-1,2,9,3,-1,117,46,49,-1,116,46,117,-1,145,137,146,-1,148,137,145,-1,220,228,229,-1,221,228,220,-1,102,80,77,-1,102,98,80,-1,37,9,38,-1,9,37,6,-1,137,160,159,-1,137,152,160,-1,32,45,50,-1,31,45,32,-1,8,0,1,-1,5,0,8,-1,217,212,213,-1,217,221,212,-1,169,152,148,-1,169,178,152,-1,114,59,115,-1,59,114,64,-1,177,170,160,-1,177,174,170,-1,212,194,213,-1,212,185,194,-1,8,2,13,-1,8,1,2,-1,32,10,31,-1,32,7,10,-1,56,50,45,-1,71,50,56,-1,185,99,194,-1,102,99,185,-1,13,24,8,-1,22,24,13,-1,38,51,37,-1,38,52,51,-1,185,98,102,-1,185,166,98,-1,229,198,201,-1,228,198,229,-1,146,159,163,-1,137,159,146,-1,49,22,23,-1,46,22,49,-1,17,23,12,-1,23,17,30,-1,51,35,37,-1,51,55,35,-1,166,101,98,-1,166,175,101,-1,201,227,229,-1,201,202,227,-1,164,146,163,-1,146,164,147,-1,30,49,23,-1,49,30,66,-1,26,30,17,-1,30,26,41,-1,55,40,35,-1,55,60,40,-1,190,101,175,-1,101,190,104,-1,226,202,204,-1,227,202,226,-1,173,147,164,-1,147,173,141,-1,193,192,195,-1,173,192,193,-1,58,26,33,-1,41,26,58,-1,100,79,92,-1,79,100,81,-1,222,214,224,-1,214,222,211,-1,140,197,200,-1,140,129,197,-1,195,167,193,-1,195,191,167,-1,33,57,58,-1,33,28,57,-1,61,43,67,-1,43,61,42,-1,176,113,182,-1,113,176,106,-1,205,176,206,-1,176,205,172,-1,132,130,124,-1,132,136,130,-1,57,39,62,-1,57,28,39,-1,61,47,42,-1,61,63,47,-1,172,106,176,-1,106,172,103,-1,134,186,196,-1,134,133,186,-1,154,135,158,-1,135,154,142,-1,54,62,39,-1,62,54,76,-1,63,53,47,-1,63,70,53,-1,108,85,103,-1,85,108,88,-1,168,199,208,-1,199,168,165,-1,120,154,125,-1,154,120,127,-1,87,54,34,-1,54,87,95,-1,84,107,70,-1,84,109,107,-1,174,179,181,-1,174,177,179,-1,150,168,171,-1,150,165,168,-1,94,118,112,-1,110,118,94,-1,122,118,110,-1,118,165,150,-1,122,165,118,-1,53,82,36,-1,53,91,82,-1,105,96,76,-1,96,105,111,-1,128,118,133,-1,128,112,118,-1,122,108,188,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlpreol2r_Geo_5_739_normalIndex_2()
		{
			int[] value = {108,122,110,-1,85,84,74,-1,85,88,84,-1,27,34,20,-1,27,36,34,-1,138,96,125,-1,138,93,96,-1,136,128,130,-1,136,131,128,-1,203,215,216,-1,215,203,208,-1,90,74,75,-1,90,85,74,-1,20,19,27,-1,16,19,20,-1,93,139,89,-1,139,93,138,-1,129,196,197,-1,129,134,196,-1,211,219,206,-1,211,222,219,-1,90,81,100,-1,81,90,75,-1,16,21,19,-1,15,21,16,-1,86,139,151,-1,86,89,139,-1,162,124,123,-1,162,132,124,-1,104,182,113,-1,104,190,182,-1,60,43,40,-1,60,67,43,-1,86,126,78,-1,126,86,151,-1,141,123,143,-1,141,162,123,-1,144,157,161,-1,144,143,157,-1,223,214,210,-1,223,224,214,-1,92,73,83,-1,73,92,79,-1,11,14,4,-1,11,18,14,-1,78,121,66,-1,121,78,126,-1,121,184,117,-1,184,121,187,-1,144,156,145,-1,156,144,161,-1,210,220,223,-1,207,220,210,-1,72,83,73,-1,72,80,83,-1,6,4,3,-1,6,11,4,-1,3,13,2,-1,13,3,12,-1,184,116,117,-1,180,116,184,-1,156,148,145,-1,155,148,156,-1,221,207,212,-1,221,220,207,-1,69,80,72,-1,69,77,80,-1,94,119,109,-1,119,94,112,-1,180,115,116,-1,180,170,115,-1,97,68,65,-1,97,99,68,-1,56,65,68,-1,48,65,56,-1,50,38,32,-1,50,52,38,-1,10,1,0,-1,7,1,10,-1,230,221,217,-1,228,221,230,-1,153,198,209,-1,153,155,198,-1,46,115,59,-1,116,115,46,-1,159,170,180,-1,170,159,160,-1,153,148,155,-1,169,148,153,-1,228,209,198,-1,230,209,228,-1,25,59,64,-1,25,24,59,-1,32,9,7,-1,38,9,32,-1,45,48,56,-1,45,44,48,-1,102,68,99,-1,77,68,102,-1,189,99,97,-1,189,194,99,-1,25,8,24,-1,25,5,8,-1,52,72,51,-1,52,69,72,-1,212,166,185,-1,212,207,166,-1,201,155,156,-1,198,155,201,-1,163,180,184,-1,159,180,163,-1,12,22,13,-1,22,12,23,-1,4,12,3,-1,12,4,17,-1,51,73,55,-1,51,72,73,-1,207,175,166,-1,207,210,175,-1,161,201,156,-1,201,161,202,-1,187,163,184,-1,163,187,164,-1,126,187,121,-1,187,126,192,-1,17,14,26,-1,17,4,14,-1,73,60,55,-1,73,79,60,-1,214,175,210,-1,175,214,190,-1,204,161,157,-1,202,161,204,-1,192,164,187,-1,164,192,173,-1,86,41,58,-1,78,41,86,-1,40,21,18,-1,40,43,21,-1,113,92,104,-1,92,113,100,-1,200,157,140,-1,204,157,200,-1,123,129,140,-1,123,124,129,-1,33,16,28,-1,33,15,16,-1,75,67,81,-1,67,75,61,-1,206,182,211,-1,182,206,176,-1,215,206,219,-1,206,215,205,-1,124,134,129,-1,124,130,134,-1,191,138,158,-1,191,139,138,-1,20,28,16,-1,28,20,39,-1,75,63,61,-1,75,74,63,-1,208,205,215,-1,205,208,199,-1,142,136,135,-1,136,142,131,-1,76,93,62,-1,93,76,96,-1,47,36,27,-1,47,53,36,-1,188,103,172,-1,103,188,108,-1,110,88,108,-1,88,110,94,-1,171,208,203,-1,208,171,168,-1,127,142,154,-1,142,127,149,-1,95,76,54,-1,76,95,105,-1,70,91,53,-1,70,107,91,-1,127,107,149,-1,82,95,87,-1,127,91,107,-1,105,91,127,-1,105,82,91,-1,105,95,82,-1,177,183,179,-1,177,178,183,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlradius_Geo_5_745_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,4,6,5,-1,7,8,9,-1,8,10,9,-1,11,12,13,-1,14,15,16,-1,17,18,19,-1,17,20,18,-1,21,22,23,-1,24,25,26,-1,27,28,29,-1,30,31,32,-1,30,33,31,-1,34,35,36,-1,37,38,39,-1,39,40,37,-1,41,42,43,-1,42,44,43,-1,45,46,47,-1,45,48,46,-1,49,50,51,-1,52,53,54,-1,53,55,54,-1,56,57,58,-1,56,59,57,-1,60,61,62,-1,62,63,60,-1,60,64,65,-1,61,66,67,-1,67,68,61,-1,69,70,68,-1,68,67,69,-1,71,72,73,-1,74,75,76,-1,77,72,78,-1,72,79,73,-1,80,81,82,-1,83,84,85,-1,86,87,88,-1,89,90,91,-1,89,92,90,-1,93,94,95,-1,96,87,25,-1,33,30,96,-1,97,95,94,-1,97,31,98,-1,97,99,31,-1,33,25,24,-1,33,96,25,-1,100,101,102,-1,103,104,105,-1,106,107,108,-1,106,109,107,-1,110,111,112,-1,113,114,115,-1,116,114,113,-1,113,117,116,-1,118,119,120,-1,121,122,123,-1,121,124,122,-1,125,126,127,-1,128,129,127,-1,127,126,128,-1,130,131,132,-1,131,133,132,-1,134,135,136,-1,136,137,134,-1,138,139,140,-1,138,141,139,-1,142,143,144,-1,143,145,144,-1,146,147,148,-1,149,126,125,-1,125,150,149,-1,118,151,152,-1,153,154,155,-1,155,156,153,-1,157,147,158,-1,158,159,157,-1,159,160,157,-1,160,161,157,-1,157,162,147,-1,159,163,160,-1,161,164,157,-1,154,141,138,-1,138,165,154,-1,166,167,168,-1,166,142,167,-1,169,170,171,-1,169,172,170,-1,131,173,133,-1,173,10,133,-1,174,175,176,-1,174,177,175,-1,178,179,180,-1,179,181,180,-1,139,182,140,-1,182,183,140,-1,184,185,186,-1,184,187,185,-1,188,189,190,-1,190,191,188,-1,192,193,4,-1,193,194,4,-1,195,6,194,-1,6,4,194,-1,196,117,197,-1,198,199,200,-1,110,112,149,-1,112,201,149,-1,202,203,117,-1,117,196,202,-1,204,117,205,-1,206,152,207,-1,152,208,207,-1,199,209,200,-1,209,210,200,-1,211,113,115,-1,128,126,149,-1,149,201,128,-1,212,213,214,-1,212,215,213,-1,212,195,215,-1,101,216,217,-1,101,100,216,-1,218,219,220,-1,220,221,218,-1,125,101,217,-1,125,222,101,-1,217,150,125,-1,223,110,149,-1,224,101,222,-1,224,221,101,-1,225,226,227,-1,226,218,227,-1,228,229,230,-1,229,231,230,-1,232,233,234,-1,233,235,234,-1,216,236,237,-1,216,100,236,-1,238,239,219,-1,239,240,219,-1,241,242,243,-1,241,244,242,-1,245,246,247,-1,245,248,246,-1,249,85,250,-1,249,251,85,-1,252,249,253,-1,254,255,256,-1,256,257,254,-1,258,259,260,-1,241,248,261,-1,261,262,241,-1,263,264,265,-1,265,266,263,-1,267,268,45,-1,45,47,267,-1,269,41,270,-1,270,271,269,-1,272,273,274,-1,273,275,274,-1,34,38,37,-1,34,276,38,-1,277,278,40,-1,40,39,277,-1,279,280,281,-1,282,283,284,-1,282,285,283,-1,286,287,288,-1,286,289,287,-1,290,291,62,-1,62,78,290,-1,292,293,294,-1,295,296,297,-1,298,299,93,-1,299,94,93,-1,300,298,28,-1,300,301,298,-1,302,12,303,-1,12,11,303,-1,304,305,306,-1,305,307,306,-1,308,309,310,-1,309,311,310,-1,312,311,313,-1,312,310,311,-1,262,244,241,-1,262,314,244,-1,14,16,22,-1,16,23,22,-1,20,315,18,-1,20,316,315,-1,317,318,319,-1,64,60,63,-1,320,65,64,-1,61,68,62,-1,321,322,323,-1,322,316,323,-1,324,325,326,-1,325,327,326,-1,328,329,330,-1,328,331,329,-1,332,333,334,-1,335,106,108,-1,335,336,106,-1,337,87,86,-1,337,338,87,-1,339,92,89,-1,339,334,92,-1,335,332,340,-1,335,341,332,-1,109,237,236,-1,109,105,237,-1,342,104,103,-1,342,343,104,-1,344,343,342,-1,344,345,343,-1,91,346,89,-1,96,88,87,-1,63,87,338,-1,334,333,92,-1,333,347,92,-1,90,348,349,-1,332,341,350,-1,341,351,350,-1,341,308,310,-1,310,351,341,-1,326,327,352,-1,327,353,352,-1,318,353,327,-1,66,354,67,-1,66,355,354,-1,320,330,329,-1,320,64,330,-1,291,63,62,-1,356,316,20,-1,356,323,316,-1,23,314,262,-1,23,16,314,-1,309,240,311,-1,309,357,240,-1,53,358,306,-1,306,359,53,-1,59,360,57,-1,59,361,360,-1,27,362,26,-1,26,363,27,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlradius_Geo_5_745_coordIndex_2()
		{
			int[] value = {364,297,296,-1,364,344,297,-1,69,293,77,-1,293,292,77,-1,294,365,292,-1,294,366,365,-1,367,368,71,-1,367,369,368,-1,365,366,370,-1,284,371,372,-1,284,283,371,-1,290,373,291,-1,373,374,291,-1,285,375,376,-1,285,282,375,-1,279,278,280,-1,278,277,280,-1,38,48,39,-1,276,377,378,-1,378,46,276,-1,272,274,379,-1,43,380,41,-1,380,270,41,-1,268,381,382,-1,268,383,381,-1,384,252,253,-1,253,385,384,-1,386,387,302,-1,387,12,302,-1,388,261,389,-1,261,259,389,-1,387,258,12,-1,258,13,12,-1,258,390,13,-1,258,260,390,-1,256,391,257,-1,391,392,257,-1,250,84,392,-1,250,85,84,-1,307,76,75,-1,307,393,76,-1,260,247,394,-1,260,245,247,-1,242,244,238,-1,244,239,238,-1,357,220,240,-1,220,219,240,-1,395,224,396,-1,224,222,396,-1,234,235,228,-1,235,229,228,-1,151,223,232,-1,125,396,222,-1,125,127,396,-1,231,247,246,-1,231,229,247,-1,235,233,397,-1,397,394,235,-1,398,243,242,-1,398,399,243,-1,226,238,218,-1,238,219,218,-1,221,102,101,-1,221,220,102,-1,400,195,401,-1,195,194,401,-1,214,128,201,-1,214,213,128,-1,113,211,199,-1,211,209,199,-1,124,402,211,-1,211,115,124,-1,209,403,210,-1,403,404,210,-1,402,206,403,-1,206,207,403,-1,152,206,121,-1,118,120,405,-1,405,111,118,-1,111,110,118,-1,212,202,196,-1,196,195,212,-1,199,406,113,-1,196,6,195,-1,196,197,6,-1,407,408,409,-1,409,410,407,-1,9,3,7,-1,3,5,7,-1,411,182,139,-1,411,412,182,-1,183,413,178,-1,413,179,178,-1,185,414,186,-1,415,416,417,-1,415,418,416,-1,168,419,420,-1,168,167,419,-1,137,136,421,-1,136,174,421,-1,128,422,129,-1,128,213,422,-1,195,400,215,-1,117,204,116,-1,117,203,205,-1,119,152,123,-1,119,118,152,-1,152,121,123,-1,245,261,248,-1,109,423,107,-1,109,236,423,-1,424,397,233,-1,425,13,390,-1,426,99,427,-1,94,295,427,-1,363,26,25,-1,428,426,429,-1,428,32,426,-1,426,427,429,-1,430,96,30,-1,431,89,346,-1,330,432,328,-1,330,337,432,-1,330,338,337,-1,330,64,338,-1,72,71,368,-1,77,292,365,-1,79,77,365,-1,79,72,77,-1,290,368,369,-1,369,373,290,-1,370,79,365,-1,370,372,79,-1,304,306,358,-1,393,307,305,-1,338,64,63,-1,254,257,433,-1,433,81,281,-1,281,254,433,-1,74,81,433,-1,74,82,81,-1,57,360,49,-1,46,378,47,-1,276,34,36,-1,36,377,276,-1,293,434,35,-1,430,32,428,-1,430,30,32,-1,33,24,98,-1,98,31,33,-1,24,26,362,-1,263,435,436,-1,435,437,436,-1,263,266,435,-1,317,43,44,-1,421,179,137,-1,179,413,137,-1,198,406,199,-1,438,169,439,-1,169,438,440,-1,441,439,442,-1,441,438,439,-1,443,444,198,-1,444,443,187,-1,445,442,185,-1,445,441,442,-1,197,5,6,-1,446,5,197,-1,190,184,447,-1,184,190,448,-1,449,450,189,-1,450,449,451,-1,171,173,175,-1,170,173,171,-1,452,177,453,-1,454,177,452,-1,186,455,456,-1,414,455,186,-1,457,458,408,-1,458,457,459,-1,409,460,461,-1,460,409,462,-1,134,413,463,-1,137,413,134,-1,459,464,465,-1,459,457,464,-1,466,467,468,-1,467,466,132,-1,469,470,181,-1,130,470,469,-1,471,343,345,-1,303,343,471,-1,472,319,356,-1,380,319,472,-1,21,436,22,-1,263,436,21,-1,473,270,474,-1,473,271,270,-1,24,475,98,-1,24,362,475,-1,428,476,430,-1,476,428,477,-1,432,478,479,-1,432,480,478,-1,331,349,348,-1,331,328,349,-1,379,35,434,-1,379,36,35,-1,481,482,267,-1,482,481,269,-1,39,483,277,-1,483,39,484,-1,255,281,280,-1,254,281,255,-1,288,358,485,-1,288,304,358,-1,393,375,76,-1,393,376,375,-1,288,305,304,-1,287,305,288,-1,82,76,375,-1,74,76,82,-1,58,49,51,-1,49,58,57,-1,486,279,80,-1,279,486,278,-1,37,487,366,-1,40,487,37,-1,488,374,489,-1,488,490,374,-1,54,491,52,-1,54,492,491,-1,35,294,293,-1,294,35,34,-1,493,371,283,-1,367,371,493,-1,287,285,376,-1,287,289,285,-1,375,494,82,-1,375,282,494,-1,284,370,495,-1,372,370,284,-1,78,368,290,-1,78,72,368,-1,369,496,373,-1,369,497,496,-1,485,286,288,-1,485,498,286,-1,91,349,479,-1,349,91,90,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlradius_Geo_5_745_coordIndex_3()
		{
			int[] value = {478,431,346,-1,478,477,431,-1,93,475,29,-1,475,93,95,-1,309,423,357,-1,423,309,107,-1,390,424,425,-1,397,424,390,-1,237,13,425,-1,237,105,13,-1,100,423,236,-1,100,102,423,-1,204,499,116,-1,499,204,500,-1,501,203,502,-1,501,205,203,-1,215,422,213,-1,215,400,422,-1,467,503,465,-1,467,504,503,-1,188,465,503,-1,465,188,459,-1,458,505,462,-1,458,191,505,-1,174,469,421,-1,174,176,469,-1,411,506,507,-1,508,506,411,-1,509,510,511,-1,512,510,509,-1,419,513,514,-1,419,167,513,-1,416,515,516,-1,416,418,515,-1,147,517,148,-1,147,162,517,-1,518,519,520,-1,518,521,519,-1,147,522,158,-1,147,146,522,-1,156,161,523,-1,164,161,156,-1,524,163,525,-1,160,163,524,-1,526,146,417,-1,522,146,526,-1,148,165,415,-1,517,165,148,-1,527,524,528,-1,527,523,524,-1,525,420,529,-1,530,420,525,-1,520,166,168,-1,519,166,520,-1,158,518,159,-1,158,521,518,-1,508,527,506,-1,508,153,527,-1,529,419,510,-1,420,419,529,-1,143,417,416,-1,417,143,526,-1,415,138,418,-1,165,138,415,-1,452,185,442,-1,452,414,185,-1,135,453,136,-1,135,455,453,-1,470,531,532,-1,470,466,531,-1,183,463,413,-1,182,463,183,-1,144,532,531,-1,145,532,144,-1,516,178,180,-1,515,178,516,-1,444,450,533,-1,450,444,448,-1,7,446,451,-1,7,5,446,-1,505,456,534,-1,505,447,456,-1,504,449,503,-1,504,8,449,-1,461,410,409,-1,410,461,412,-1,408,535,457,-1,535,408,407,-1,536,464,537,-1,536,468,464,-1,412,507,410,-1,507,412,411,-1,407,511,535,-1,511,407,509,-1,537,513,536,-1,513,537,514,-1,438,538,1,-1,438,441,538,-1,443,539,445,-1,443,540,539,-1,202,214,541,-1,214,202,212,-1,541,111,502,-1,541,112,111,-1,501,120,500,-1,501,405,120,-1,116,122,114,-1,116,499,122,-1,542,543,544,-1,545,543,542,-1,546,547,548,-1,546,549,547,-1,542,550,551,-1,542,552,550,-1,545,553,548,-1,553,545,554,-1,403,546,404,-1,403,207,546,-1,124,206,402,-1,124,121,206,-1,555,554,551,-1,556,554,555,-1,553,210,404,-1,210,553,557,-1,403,211,402,-1,211,403,209,-1,1,555,2,-1,538,555,1,-1,556,540,557,-1,540,556,539,-1,552,558,550,-1,558,552,559,-1,193,2,560,-1,193,0,2,-1,395,561,559,-1,561,395,396,-1,194,560,401,-1,194,193,560,-1,562,129,422,-1,562,561,129,-1,226,242,238,-1,226,398,242,-1,231,243,399,-1,231,246,243,-1,247,235,394,-1,229,235,247,-1,399,563,564,-1,399,398,563,-1,227,395,565,-1,227,224,395,-1,563,544,543,-1,563,225,544,-1,549,564,547,-1,549,230,564,-1,228,152,234,-1,152,228,208,-1,260,397,390,-1,394,397,260,-1,392,75,257,-1,75,392,84,-1,391,250,392,-1,391,566,250,-1,258,389,259,-1,389,258,387,-1,261,23,262,-1,23,261,388,-1,567,387,386,-1,567,389,387,-1,21,388,568,-1,21,23,388,-1,386,569,567,-1,569,386,570,-1,263,568,264,-1,263,21,568,-1,571,570,384,-1,571,569,570,-1,384,572,571,-1,572,384,385,-1,573,265,574,-1,573,266,265,-1,385,575,572,-1,575,385,576,-1,574,577,573,-1,577,574,578,-1,381,576,579,-1,381,575,576,-1,578,482,577,-1,482,578,383,-1,382,579,580,-1,382,381,579,-1,267,383,268,-1,267,482,383,-1,484,580,483,-1,484,382,580,-1,269,577,482,-1,577,269,271,-1,275,44,42,-1,275,273,44,-1,267,378,481,-1,47,378,267,-1,48,276,46,-1,48,38,276,-1,486,82,494,-1,486,80,82,-1,52,498,485,-1,491,498,52,-1,489,373,496,-1,374,373,489,-1,497,367,493,-1,367,497,369,-1,495,366,487,-1,370,366,495,-1,79,371,73,-1,79,372,371,-1,68,78,62,-1,78,68,70,-1,300,58,301,-1,300,56,58,-1,364,299,581,-1,296,299,364,-1,95,98,475,-1,95,97,98,-1,28,363,582,-1,28,27,363,-1,363,490,488,-1,363,25,490,-1,54,583,584,-1,54,55,583,-1,306,59,359,-1,306,361,59,-1,303,585,302,-1,471,585,303,-1,251,50,49,-1,251,586,50,-1,360,83,85,-1,361,83,360,-1,437,472,17,-1,474,472,437,-1,314,239,244,-1,314,313,239,-1,312,15,587,-1,15,312,16,-1,273,353,44,-1,273,352,353,-1,588,379,434,-1,272,379,588,-1,355,329,324,-1,320,329,355,-1,434,354,588,-1,434,67,354,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlradius_Geo_5_745_coordIndex_4()
		{
			int[] value = {588,326,352,-1,588,354,326,-1,587,310,312,-1,351,310,587,-1,315,351,587,-1,350,351,315,-1,350,316,322,-1,350,315,316,-1,321,318,589,-1,321,323,318,-1,589,327,325,-1,589,318,327,-1,92,348,90,-1,92,347,348,-1,291,490,63,-1,291,374,490,-1,346,479,478,-1,346,91,479,-1,339,297,340,-1,339,295,297,-1,431,427,89,-1,431,429,427,-1,88,430,476,-1,430,88,96,-1,336,103,106,-1,336,342,103,-1,50,344,364,-1,50,345,344,-1,50,581,51,-1,364,581,50,-1,297,342,336,-1,297,344,342,-1,106,105,109,-1,106,103,105,-1,99,32,31,-1,32,99,426,-1,429,477,428,-1,477,429,431,-1,295,89,427,-1,89,295,339,-1,340,336,335,-1,340,297,336,-1,334,340,332,-1,340,334,339,-1,480,337,86,-1,337,480,432,-1,108,341,335,-1,341,108,308,-1,331,324,329,-1,331,325,324,-1,325,348,589,-1,331,348,325,-1,347,589,348,-1,347,321,589,-1,333,321,347,-1,333,322,321,-1,322,332,350,-1,333,332,322,-1,66,320,355,-1,66,65,320,-1,354,324,326,-1,354,355,324,-1,272,352,273,-1,272,588,352,-1,323,319,318,-1,323,356,319,-1,18,587,15,-1,18,315,587,-1,16,313,314,-1,16,312,313,-1,22,19,14,-1,436,19,22,-1,17,436,437,-1,17,19,436,-1,266,473,435,-1,573,473,266,-1,313,240,239,-1,313,311,240,-1,306,83,361,-1,306,307,83,-1,85,49,360,-1,85,251,49,-1,345,586,471,-1,345,50,586,-1,252,471,586,-1,585,471,252,-1,488,582,363,-1,492,582,488,-1,300,582,584,-1,300,28,582,-1,298,29,28,-1,298,93,29,-1,298,581,299,-1,298,301,581,-1,296,94,299,-1,94,296,295,-1,584,56,300,-1,584,583,56,-1,301,51,581,-1,58,51,301,-1,491,496,498,-1,489,496,491,-1,493,286,497,-1,493,289,286,-1,494,487,486,-1,495,487,494,-1,74,257,75,-1,74,433,257,-1,377,275,378,-1,275,377,274,-1,481,275,42,-1,275,481,378,-1,573,271,473,-1,271,573,577,-1,474,380,472,-1,474,270,380,-1,45,382,484,-1,45,268,382,-1,256,483,580,-1,483,256,255,-1,391,580,579,-1,580,391,256,-1,383,575,381,-1,383,578,575,-1,579,566,391,-1,579,576,566,-1,572,578,574,-1,578,572,575,-1,253,576,385,-1,576,253,566,-1,574,571,572,-1,574,265,571,-1,265,569,571,-1,265,264,569,-1,585,384,570,-1,384,585,252,-1,264,567,569,-1,264,568,567,-1,570,302,585,-1,570,386,302,-1,389,568,388,-1,568,389,567,-1,260,261,245,-1,261,260,259,-1,566,249,250,-1,566,253,249,-1,586,249,252,-1,586,251,249,-1,246,241,243,-1,246,248,241,-1,151,234,152,-1,151,232,234,-1,208,230,549,-1,208,228,230,-1,547,563,543,-1,547,564,563,-1,225,565,544,-1,225,227,565,-1,230,399,564,-1,230,231,399,-1,225,398,226,-1,563,398,225,-1,218,224,227,-1,218,221,224,-1,110,151,118,-1,110,223,151,-1,217,424,233,-1,217,216,424,-1,422,401,562,-1,422,400,401,-1,127,561,396,-1,129,561,127,-1,401,558,562,-1,401,560,558,-1,562,559,561,-1,562,558,559,-1,560,550,558,-1,560,2,550,-1,565,559,552,-1,559,565,395,-1,200,557,540,-1,200,210,557,-1,538,556,555,-1,539,556,538,-1,554,557,553,-1,557,554,556,-1,2,551,550,-1,555,551,2,-1,548,404,546,-1,404,548,553,-1,545,551,554,-1,545,542,551,-1,549,207,208,-1,207,549,546,-1,548,543,545,-1,548,547,543,-1,552,544,565,-1,542,544,552,-1,123,499,119,-1,122,499,123,-1,205,500,204,-1,205,501,500,-1,502,202,541,-1,203,202,502,-1,201,541,214,-1,201,112,541,-1,198,540,443,-1,198,200,540,-1,441,539,538,-1,441,445,539,-1,192,0,193,-1,0,192,440,-1,531,513,144,-1,531,536,513,-1,535,514,537,-1,514,535,511,-1,410,509,407,-1,509,410,507,-1,466,536,531,-1,466,468,536,-1,457,537,464,-1,537,457,535,-1,133,8,504,-1,133,10,8,-1,503,189,188,-1,503,449,189,-1,191,447,505,-1,191,190,447,-1,451,533,450,-1,451,446,533,-1,187,448,444,-1,448,187,184,-1,515,183,178,-1,140,183,515,-1,180,145,516,-1,180,532,145,-1,412,463,182,-1,412,461,463,-1,532,181,470,-1,180,181,532,-1,534,455,135,-1,534,456,455,-1,453,174,136,-1,453,177,174,-1,175,131,176,-1,175,173,131,-1,442,454,452,-1,442,439,454,-1,172,9,170,-1,9,172,3,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlradius_Geo_5_745_coordIndex_5()
		{
			int[] value = {142,526,143,-1,526,142,166,-1,512,529,510,-1,529,512,528,-1,154,508,141,-1,154,153,508,-1,506,528,512,-1,506,527,528,-1,166,522,526,-1,522,166,519,-1,530,168,420,-1,520,168,530,-1,525,528,524,-1,525,529,528,-1,153,523,527,-1,523,153,156,-1,517,154,165,-1,155,154,517,-1,417,148,415,-1,417,146,148,-1,113,197,117,-1,113,406,197,-1,150,223,149,-1,232,223,150,-1,530,163,159,-1,163,530,525,-1,523,160,524,-1,161,160,523,-1,157,156,155,-1,157,164,156,-1,519,158,522,-1,521,158,519,-1,162,155,517,-1,162,157,155,-1,159,520,530,-1,159,518,520,-1,418,140,515,-1,418,138,140,-1,145,416,516,-1,143,416,145,-1,167,144,513,-1,167,142,144,-1,510,514,511,-1,510,419,514,-1,507,512,509,-1,506,512,507,-1,141,411,139,-1,141,508,411,-1,460,135,134,-1,460,534,135,-1,130,176,131,-1,469,176,130,-1,462,534,460,-1,462,505,534,-1,459,191,458,-1,459,188,191,-1,132,504,467,-1,132,133,504,-1,233,150,217,-1,233,232,150,-1,502,405,501,-1,405,502,111,-1,124,114,122,-1,124,115,114,-1,119,500,120,-1,119,499,500,-1,11,105,104,-1,105,11,13,-1,216,425,424,-1,237,425,216,-1,357,102,220,-1,102,357,423,-1,107,308,108,-1,107,309,308,-1,94,99,97,-1,94,427,99,-1,476,86,88,-1,86,476,480,-1,84,307,75,-1,84,83,307,-1,497,498,496,-1,286,498,497,-1,282,495,494,-1,282,284,495,-1,78,69,77,-1,78,70,69,-1,289,283,285,-1,289,493,283,-1,367,73,371,-1,71,73,367,-1,434,69,67,-1,69,434,293,-1,366,34,37,-1,366,294,34,-1,489,492,488,-1,491,492,489,-1,60,66,61,-1,60,65,66,-1,486,40,278,-1,486,487,40,-1,80,281,81,-1,80,279,281,-1,87,490,25,-1,490,87,63,-1,359,55,53,-1,583,55,359,-1,359,56,583,-1,359,59,56,-1,305,376,393,-1,376,305,287,-1,485,53,52,-1,485,358,53,-1,492,584,582,-1,584,492,54,-1,277,255,280,-1,255,277,483,-1,48,484,39,-1,484,48,45,-1,42,269,481,-1,269,42,41,-1,318,44,353,-1,317,44,318,-1,36,274,377,-1,274,36,379,-1,328,479,349,-1,328,432,479,-1,477,480,476,-1,480,477,478,-1,362,29,475,-1,362,27,29,-1,435,474,437,-1,473,474,435,-1,317,380,43,-1,317,319,380,-1,20,472,356,-1,472,20,17,-1,15,19,18,-1,19,15,14,-1,104,303,11,-1,104,343,303,-1,421,181,179,-1,469,181,421,-1,130,466,470,-1,132,466,130,-1,468,465,464,-1,465,468,467,-1,461,134,463,-1,134,461,460,-1,408,462,409,-1,462,408,458,-1,447,186,456,-1,186,447,184,-1,455,452,453,-1,452,455,414,-1,175,454,171,-1,175,177,454,-1,170,10,173,-1,9,10,170,-1,8,451,449,-1,451,8,7,-1,189,448,190,-1,448,189,450,-1,192,3,172,-1,192,4,3,-1,406,446,197,-1,533,446,406,-1,440,172,169,-1,440,192,172,-1,198,533,406,-1,533,198,444,-1,187,445,185,-1,187,443,445,-1,439,171,454,-1,171,439,169,-1,440,1,0,-1,440,438,1,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlradius_Geo_5_745_normalIndex_1()
		{
			int[] value = {582,550,581,-1,392,399,262,-1,399,280,262,-1,236,231,376,-1,231,367,376,-1,174,69,106,-1,271,382,352,-1,304,355,249,-1,304,409,355,-1,94,160,171,-1,544,481,570,-1,552,517,551,-1,421,431,430,-1,421,473,431,-1,150,192,169,-1,163,72,80,-1,80,187,163,-1,255,257,343,-1,257,374,343,-1,59,44,41,-1,59,45,44,-1,285,329,381,-1,184,181,348,-1,181,317,348,-1,356,307,391,-1,356,256,307,-1,465,405,248,-1,248,439,465,-1,465,530,569,-1,405,478,402,-1,402,293,405,-1,261,189,293,-1,293,402,261,-1,183,179,196,-1,298,251,273,-1,200,179,173,-1,179,265,196,-1,314,235,345,-1,224,227,190,-1,502,485,493,-1,548,556,558,-1,548,585,556,-1,534,506,549,-1,464,485,481,-1,473,421,464,-1,532,549,506,-1,532,431,507,-1,532,461,431,-1,473,481,544,-1,473,464,481,-1,433,426,480,-1,353,258,336,-1,425,468,504,-1,425,410,468,-1,182,126,205,-1,83,131,109,-1,97,131,83,-1,83,132,97,-1,103,135,77,-1,87,117,155,-1,87,75,117,-1,338,292,332,-1,384,394,332,-1,332,292,384,-1,435,419,357,-1,419,358,357,-1,389,377,424,-1,424,460,389,-1,351,339,446,-1,351,286,339,-1,328,360,364,-1,360,450,364,-1,268,320,263,-1,254,292,338,-1,338,194,254,-1,103,122,40,-1,275,264,278,-1,278,322,275,-1,294,320,312,-1,312,305,294,-1,305,303,294,-1,303,318,294,-1,294,277,320,-1,305,334,303,-1,318,316,294,-1,264,286,351,-1,351,267,264,-1,301,270,308,-1,301,328,270,-1,561,467,525,-1,561,492,467,-1,419,444,358,-1,444,367,358,-1,427,472,448,-1,427,441,472,-1,568,538,555,-1,538,516,555,-1,339,388,446,-1,388,474,446,-1,176,370,330,-1,176,191,370,-1,90,79,93,-1,93,111,90,-1,490,522,399,-1,522,432,399,-1,342,280,432,-1,280,399,432,-1,222,132,143,-1,73,37,105,-1,182,205,254,-1,205,341,254,-1,239,145,132,-1,132,222,239,-1,81,132,89,-1,9,40,33,-1,40,14,33,-1,37,31,105,-1,31,128,105,-1,66,83,109,-1,384,292,254,-1,254,341,384,-1,380,415,385,-1,380,417,415,-1,380,342,417,-1,426,347,288,-1,426,433,347,-1,586,579,572,-1,572,514,586,-1,338,426,288,-1,338,418,426,-1,288,194,338,-1,170,182,254,-1,496,426,418,-1,496,514,426,-1,486,463,588,-1,463,586,588,-1,25,4,130,-1,4,100,130,-1,136,123,34,-1,123,30,34,-1,347,456,361,-1,347,433,456,-1,497,447,579,-1,447,574,579,-1,217,396,250,-1,217,354,396,-1,0,54,12,-1,0,67,54,-1,116,190,154,-1,116,172,190,-1,46,116,57,-1,118,52,124,-1,124,199,118,-1,6,2,1,-1,217,67,29,-1,29,157,217,-1,96,47,24,-1,24,18,96,-1,48,92,59,-1,59,41,48,-1,141,255,204,-1,204,115,141,-1,344,359,211,-1,359,247,211,-1,150,72,163,-1,150,84,72,-1,43,120,187,-1,187,80,43,-1,125,26,104,-1,335,282,340,-1,335,272,282,-1,175,245,197,-1,175,218,245,-1,133,279,248,-1,248,173,133,-1,216,241,207,-1,503,462,449,-1,501,477,534,-1,477,506,534,-1,440,501,517,-1,440,422,501,-1,60,69,158,-1,69,174,158,-1,209,253,198,-1,253,243,198,-1,578,584,529,-1,584,515,529,-1,443,515,445,-1,443,529,515,-1,157,354,217,-1,157,333,354,-1,271,352,160,-1,352,171,160,-1,409,413,355,-1,409,454,413,-1,395,458,393,-1,530,465,439,-1,563,569,530,-1,405,293,248,-1,523,505,453,-1,505,454,453,-1,524,540,488,-1,540,500,488,-1,537,554,543,-1,537,545,554,-1,577,564,583,-1,531,425,504,-1,531,438,425,-1,526,485,502,-1,526,512,485,-1,562,585,548,-1,562,583,585,-1,531,577,553,-1,531,576,577,-1,410,361,456,-1,410,336,361,-1,365,258,353,-1,365,281,258,-1,403,281,365,-1,403,326,281,-1,558,571,548,-1,464,493,485,-1,439,485,512,-1,583,564,585,-1,564,533,585,-1,556,547,546,-1,577,576,494,-1,576,476,494,-1,576,578,529,-1,529,476,576,-1,488,500,437,-1,500,423,437,-1,458,423,500,-1,478,459,402,-1,478,509,459,-1,563,543,554,-1,563,530,543,-1,279,439,248,-1,404,454,409,-1,404,453,454,-1,171,333,157,-1,171,352,333,-1,584,574,515,-1,584,557,574,-1,181,152,198,-1,198,244,181,-1,256,228,307,-1,256,208,228,-1,552,567,570,-1,570,519,552,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlradius_Geo_5_745_normalIndex_2()
		{
			int[] value = {411,449,462,-1,411,403,449,-1,261,241,200,-1,241,216,200,-1,207,296,216,-1,207,274,296,-1,201,159,183,-1,201,177,159,-1,296,274,346,-1,340,238,295,-1,340,282,238,-1,133,142,279,-1,142,202,279,-1,272,325,297,-1,272,335,325,-1,125,120,26,-1,120,43,26,-1,72,45,80,-1,84,146,121,-1,121,44,84,-1,344,211,306,-1,343,321,255,-1,321,204,255,-1,92,95,108,-1,92,74,95,-1,10,46,57,-1,57,35,10,-1,13,3,60,-1,3,69,60,-1,70,29,21,-1,29,2,21,-1,3,6,69,-1,6,106,69,-1,6,5,106,-1,6,1,5,-1,124,99,199,-1,99,178,199,-1,154,227,178,-1,154,190,227,-1,243,273,251,-1,243,289,273,-1,1,12,19,-1,1,0,12,-1,396,354,497,-1,354,447,497,-1,557,572,574,-1,572,579,574,-1,513,496,406,-1,496,418,406,-1,34,30,25,-1,30,4,25,-1,122,170,136,-1,338,406,418,-1,338,332,406,-1,100,12,54,-1,100,4,12,-1,30,123,17,-1,17,19,30,-1,371,250,396,-1,371,229,250,-1,463,497,586,-1,497,579,586,-1,514,480,426,-1,514,572,480,-1,436,342,452,-1,342,432,452,-1,385,384,341,-1,385,415,384,-1,83,66,37,-1,66,31,37,-1,75,23,66,-1,66,109,75,-1,31,27,128,-1,27,134,128,-1,23,9,27,-1,9,33,27,-1,40,9,87,-1,103,77,71,-1,71,126,103,-1,126,182,103,-1,380,239,222,-1,222,342,380,-1,37,38,83,-1,222,280,342,-1,222,143,280,-1,56,49,151,-1,151,164,56,-1,376,392,236,-1,392,262,236,-1,246,388,339,-1,246,259,388,-1,474,475,568,-1,475,538,568,-1,370,407,330,-1,240,379,266,-1,240,373,379,-1,308,223,311,-1,308,270,223,-1,460,424,470,-1,424,427,470,-1,384,412,394,-1,384,415,412,-1,342,436,417,-1,132,81,97,-1,132,145,89,-1,135,40,155,-1,135,103,40,-1,40,87,155,-1,0,29,67,-1,410,479,468,-1,410,456,479,-1,110,17,123,-1,101,106,5,-1,455,461,511,-1,506,503,511,-1,519,570,481,-1,484,455,508,-1,484,430,455,-1,455,511,508,-1,457,464,421,-1,566,548,571,-1,543,535,537,-1,543,526,535,-1,543,512,526,-1,543,530,512,-1,179,183,159,-1,200,216,296,-1,265,200,296,-1,265,179,200,-1,133,159,177,-1,177,142,133,-1,346,265,296,-1,346,295,265,-1,209,198,152,-1,289,243,253,-1,512,530,439,-1,118,199,195,-1,195,235,104,-1,104,118,195,-1,298,235,195,-1,298,345,235,-1,307,228,285,-1,44,121,41,-1,84,150,169,-1,169,146,84,-1,241,349,192,-1,457,430,484,-1,457,421,430,-1,473,544,507,-1,507,431,473,-1,544,570,567,-1,96,58,162,-1,58,161,162,-1,96,18,58,-1,395,343,374,-1,470,538,460,-1,538,475,460,-1,73,38,37,-1,528,561,518,-1,561,528,575,-1,482,518,469,-1,482,528,518,-1,193,51,73,-1,51,193,191,-1,386,469,370,-1,386,482,469,-1,143,262,280,-1,137,262,143,-1,93,176,185,-1,176,93,63,-1,148,32,79,-1,32,148,140,-1,525,444,472,-1,467,444,525,-1,442,441,408,-1,489,441,442,-1,330,397,323,-1,407,397,330,-1,20,86,49,-1,86,20,61,-1,151,283,276,-1,283,151,166,-1,389,475,387,-1,460,475,389,-1,61,129,149,-1,61,20,129,-1,368,233,221,-1,233,368,357,-1,471,451,516,-1,435,451,471,-1,165,281,326,-1,158,281,165,-1,310,393,404,-1,321,393,310,-1,94,162,160,-1,96,162,94,-1,88,204,180,-1,88,115,204,-1,544,559,507,-1,544,567,559,-1,484,536,457,-1,536,484,565,-1,535,573,542,-1,535,560,573,-1,545,546,547,-1,545,537,546,-1,306,192,349,-1,306,169,192,-1,98,65,48,-1,65,98,141,-1,80,42,43,-1,42,80,64,-1,52,104,26,-1,118,104,52,-1,197,152,144,-1,197,209,152,-1,289,325,273,-1,289,297,325,-1,197,253,209,-1,245,253,197,-1,345,273,325,-1,298,273,345,-1,391,285,381,-1,285,391,307,-1,300,125,314,-1,125,300,120,-1,163,313,274,-1,187,313,163,-1,400,202,220,-1,400,401,202,-1,348,203,184,-1,348,375,203,-1,192,207,241,-1,207,192,150,-1,206,238,282,-1,201,238,206,-1,245,272,297,-1,245,218,272,-1,325,390,345,-1,325,335,390,-1,340,346,369,-1,295,346,340,-1,173,159,133,-1,173,179,159,-1,177,153,142,-1,177,168,153,-1,144,175,197,-1,144,147,175,-1,558,546,542,-1,546,558,556,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlradius_Geo_5_745_normalIndex_3()
		{
			int[] value = {573,566,571,-1,573,565,566,-1,534,559,551,-1,559,534,549,-1,584,479,557,-1,479,584,468,-1,5,110,101,-1,17,110,5,-1,361,106,101,-1,361,336,106,-1,433,479,456,-1,433,480,479,-1,81,119,97,-1,119,81,62,-1,78,145,138,-1,78,89,145,-1,417,412,415,-1,417,436,412,-1,233,156,149,-1,233,237,156,-1,90,149,156,-1,149,90,61,-1,86,186,166,-1,86,111,186,-1,427,471,470,-1,427,448,471,-1,246,242,188,-1,252,242,246,-1,113,210,91,-1,226,210,113,-1,223,230,139,-1,223,270,230,-1,379,539,521,-1,379,373,539,-1,320,260,263,-1,320,277,260,-1,290,302,309,-1,290,284,302,-1,320,291,312,-1,320,268,291,-1,322,318,315,-1,316,318,322,-1,331,334,337,-1,303,334,331,-1,269,268,266,-1,291,268,269,-1,263,267,240,-1,260,267,263,-1,287,331,319,-1,287,315,331,-1,337,311,324,-1,327,311,337,-1,309,301,308,-1,302,301,309,-1,312,290,305,-1,312,284,290,-1,252,287,242,-1,252,275,287,-1,324,223,210,-1,311,223,324,-1,360,266,379,-1,266,360,269,-1,240,351,373,-1,267,351,240,-1,442,370,469,-1,442,407,370,-1,377,408,424,-1,377,397,408,-1,451,366,466,-1,451,368,366,-1,474,387,475,-1,388,387,474,-1,364,466,366,-1,450,466,364,-1,521,568,555,-1,539,568,521,-1,51,32,22,-1,32,51,63,-1,236,137,140,-1,236,262,137,-1,186,323,299,-1,186,185,323,-1,237,148,156,-1,237,231,148,-1,276,164,151,-1,164,276,259,-1,49,15,20,-1,15,49,56,-1,225,129,112,-1,225,221,129,-1,259,188,164,-1,188,259,246,-1,56,91,15,-1,91,56,113,-1,112,230,225,-1,230,112,139,-1,528,491,550,-1,528,482,491,-1,193,398,386,-1,193,232,398,-1,239,385,234,-1,385,239,380,-1,234,126,138,-1,234,205,126,-1,78,77,62,-1,78,71,77,-1,97,117,131,-1,97,119,117,-1,499,363,487,-1,372,363,499,-1,127,212,215,-1,127,114,212,-1,499,580,495,-1,499,589,580,-1,372,213,215,-1,213,372,378,-1,27,127,134,-1,27,33,127,-1,75,9,23,-1,75,87,9,-1,498,378,495,-1,383,378,498,-1,213,128,134,-1,128,213,219,-1,27,66,23,-1,66,27,31,-1,550,498,581,-1,491,498,550,-1,383,232,219,-1,232,383,398,-1,589,520,580,-1,520,589,510,-1,522,581,527,-1,522,582,581,-1,513,416,510,-1,416,513,406,-1,432,527,452,-1,432,522,527,-1,434,394,412,-1,434,416,394,-1,463,396,497,-1,463,371,396,-1,100,250,229,-1,100,54,250,-1,12,30,19,-1,4,30,12,-1,229,362,214,-1,229,371,362,-1,588,513,587,-1,588,496,513,-1,362,487,363,-1,362,486,487,-1,114,214,212,-1,114,130,214,-1,25,40,34,-1,40,25,14,-1,1,17,5,-1,19,17,1,-1,178,251,199,-1,251,178,227,-1,99,154,178,-1,99,85,154,-1,6,21,2,-1,21,6,3,-1,29,171,157,-1,171,29,70,-1,16,3,13,-1,16,21,3,-1,94,70,50,-1,94,171,70,-1,13,7,16,-1,7,13,8,-1,96,50,47,-1,96,94,50,-1,11,8,10,-1,11,7,8,-1,10,28,11,-1,28,10,35,-1,39,24,36,-1,39,18,24,-1,35,76,28,-1,76,35,82,-1,36,68,39,-1,68,36,53,-1,95,82,107,-1,95,76,82,-1,53,65,68,-1,65,53,74,-1,108,107,102,-1,108,95,107,-1,48,74,92,-1,48,65,74,-1,64,102,42,-1,64,108,102,-1,141,68,65,-1,68,141,115,-1,247,374,257,-1,247,359,374,-1,48,121,98,-1,41,121,48,-1,45,84,44,-1,45,72,84,-1,300,345,390,-1,300,314,345,-1,184,147,144,-1,203,147,184,-1,220,142,153,-1,202,142,220,-1,168,201,206,-1,201,168,177,-1,369,274,313,-1,346,274,369,-1,265,238,196,-1,265,295,238,-1,293,173,248,-1,173,293,189,-1,440,391,422,-1,440,356,391,-1,411,477,420,-1,462,477,411,-1,549,507,559,-1,549,532,507,-1,517,519,483,-1,517,552,519,-1,519,401,400,-1,519,481,401,-1,348,350,414,-1,348,317,350,-1,198,256,244,-1,198,208,256,-1,158,55,60,-1,165,55,158,-1,172,329,285,-1,172,167,329,-1,228,224,190,-1,208,224,228,-1,161,310,304,-1,180,310,161,-1,333,447,354,-1,333,445,447,-1,443,382,428,-1,382,443,352,-1,359,423,374,-1,359,437,423,-1,429,306,349,-1,344,306,429,-1,509,554,524,-1,563,554,509,-1,349,459,429,-1,349,402,459,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlradius_Geo_5_745_normalIndex_4()
		{
			int[] value = {429,488,437,-1,429,459,488,-1,428,529,443,-1,476,529,428,-1,413,476,428,-1,494,476,413,-1,494,454,505,-1,494,413,454,-1,523,458,541,-1,523,453,458,-1,541,500,540,-1,541,458,500,-1,585,547,556,-1,585,533,547,-1,279,401,439,-1,279,202,401,-1,571,542,573,-1,571,558,542,-1,562,449,553,-1,562,503,449,-1,566,511,548,-1,566,508,511,-1,493,457,536,-1,457,493,464,-1,438,353,425,-1,438,365,353,-1,329,403,411,-1,329,326,403,-1,329,420,381,-1,411,420,329,-1,449,365,438,-1,449,403,365,-1,425,336,410,-1,425,353,336,-1,461,430,431,-1,430,461,455,-1,508,565,484,-1,565,508,566,-1,503,548,511,-1,548,503,562,-1,553,438,531,-1,553,449,438,-1,583,553,577,-1,553,583,562,-1,560,526,502,-1,526,560,535,-1,504,576,531,-1,576,504,578,-1,545,524,554,-1,545,540,524,-1,540,547,541,-1,545,547,540,-1,533,541,547,-1,533,523,541,-1,564,523,533,-1,564,505,523,-1,505,577,494,-1,564,577,505,-1,478,563,509,-1,478,569,563,-1,459,524,488,-1,459,509,524,-1,344,437,359,-1,344,429,437,-1,453,393,458,-1,453,404,393,-1,355,428,382,-1,355,413,428,-1,352,445,333,-1,352,443,445,-1,160,249,271,-1,162,249,160,-1,304,162,161,-1,304,249,162,-1,18,88,58,-1,39,88,18,-1,445,574,447,-1,445,515,574,-1,198,224,208,-1,198,243,224,-1,190,285,228,-1,190,172,285,-1,326,167,165,-1,326,329,167,-1,46,165,167,-1,55,165,46,-1,400,483,519,-1,375,483,400,-1,440,483,414,-1,440,517,483,-1,501,551,517,-1,501,534,551,-1,501,420,477,-1,501,422,420,-1,462,506,477,-1,506,462,503,-1,414,356,440,-1,414,350,356,-1,422,381,420,-1,391,381,422,-1,203,153,147,-1,220,153,203,-1,206,175,168,-1,206,218,175,-1,390,313,300,-1,369,313,390,-1,298,199,251,-1,298,195,199,-1,146,247,121,-1,247,146,211,-1,98,247,257,-1,247,98,121,-1,39,115,88,-1,115,39,68,-1,180,321,310,-1,180,204,321,-1,59,108,64,-1,59,92,108,-1,124,42,102,-1,42,124,52,-1,99,102,107,-1,102,99,124,-1,74,76,95,-1,74,53,76,-1,107,85,99,-1,107,82,85,-1,28,53,36,-1,53,28,76,-1,57,82,35,-1,82,57,85,-1,36,11,28,-1,36,24,11,-1,24,7,11,-1,24,47,7,-1,55,10,8,-1,10,55,46,-1,47,16,7,-1,47,50,16,-1,8,60,55,-1,8,13,60,-1,21,50,70,-1,50,21,16,-1,1,29,0,-1,29,1,2,-1,85,116,154,-1,85,57,116,-1,167,116,46,-1,167,172,116,-1,54,217,250,-1,54,67,217,-1,122,34,40,-1,122,136,34,-1,14,130,114,-1,14,25,130,-1,212,362,363,-1,212,214,362,-1,486,587,487,-1,486,588,587,-1,130,229,214,-1,130,100,229,-1,486,371,463,-1,362,371,486,-1,586,496,588,-1,586,514,496,-1,182,122,103,-1,182,170,122,-1,288,110,123,-1,288,347,110,-1,412,452,434,-1,412,436,452,-1,332,416,406,-1,394,416,332,-1,452,520,434,-1,452,527,520,-1,434,510,416,-1,434,520,510,-1,527,580,520,-1,527,581,580,-1,587,510,589,-1,510,587,513,-1,105,219,232,-1,105,128,219,-1,491,383,498,-1,398,383,491,-1,378,219,213,-1,219,378,383,-1,581,495,580,-1,498,495,581,-1,215,134,127,-1,134,215,213,-1,372,495,378,-1,372,499,495,-1,114,33,14,-1,33,114,127,-1,215,363,372,-1,215,212,363,-1,589,487,587,-1,499,487,589,-1,155,119,135,-1,117,119,155,-1,89,62,81,-1,89,78,62,-1,138,239,234,-1,145,239,138,-1,341,234,385,-1,341,205,234,-1,73,232,193,-1,73,105,232,-1,482,398,491,-1,482,386,398,-1,490,582,522,-1,582,490,575,-1,366,230,364,-1,366,225,230,-1,15,139,112,-1,139,15,91,-1,164,113,56,-1,113,164,188,-1,368,225,366,-1,368,221,225,-1,20,112,129,-1,112,20,15,-1,358,231,237,-1,358,367,231,-1,156,79,90,-1,156,148,79,-1,111,185,186,-1,111,93,185,-1,140,22,32,-1,140,137,22,-1,191,63,51,-1,63,191,176,-1,539,474,568,-1,446,474,539,-1,555,450,521,-1,555,466,450,-1,259,387,388,-1,259,276,387,-1,466,516,451,-1,555,516,466,-1,299,397,377,-1,299,323,397,-1,408,427,424,-1,408,441,427,-1,472,419,448,-1,472,444,419,-1,469,489,442,-1,469,518,489,-1,492,376,467,-1,376,492,392,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlradius_Geo_5_745_normalIndex_5()
		{
			int[] value = {328,269,360,-1,269,328,301,-1,226,324,210,-1,324,226,319,-1,264,252,286,-1,264,275,252,-1,242,319,226,-1,242,287,319,-1,301,291,269,-1,291,301,302,-1,327,308,311,-1,309,308,327,-1,337,319,331,-1,337,324,319,-1,275,315,287,-1,315,275,322,-1,260,264,267,-1,278,264,260,-1,266,263,240,-1,266,268,263,-1,83,143,132,-1,83,38,143,-1,194,170,254,-1,136,170,194,-1,327,334,305,-1,334,327,337,-1,315,303,331,-1,318,303,315,-1,294,322,278,-1,294,316,322,-1,302,312,291,-1,284,312,302,-1,277,278,260,-1,277,294,278,-1,305,309,327,-1,305,290,309,-1,373,446,539,-1,373,351,446,-1,450,379,521,-1,360,379,450,-1,270,364,230,-1,270,328,364,-1,210,139,91,-1,210,223,139,-1,188,226,113,-1,242,226,188,-1,286,246,339,-1,286,252,246,-1,283,377,389,-1,283,299,377,-1,435,448,419,-1,471,448,435,-1,166,299,283,-1,166,186,299,-1,61,111,86,-1,61,90,111,-1,357,237,233,-1,357,358,237,-1,123,194,288,-1,123,136,194,-1,138,71,78,-1,71,138,126,-1,75,131,117,-1,75,109,131,-1,135,62,77,-1,135,119,62,-1,174,336,258,-1,336,174,106,-1,347,101,110,-1,361,101,347,-1,557,480,572,-1,480,557,479,-1,468,578,504,-1,468,584,578,-1,506,461,532,-1,506,511,461,-1,536,502,493,-1,502,536,560,-1,227,243,251,-1,227,224,243,-1,168,147,153,-1,175,147,168,-1,335,369,390,-1,335,340,369,-1,173,261,200,-1,173,189,261,-1,218,282,272,-1,218,206,282,-1,201,196,238,-1,183,196,201,-1,349,261,402,-1,261,349,241,-1,274,150,163,-1,274,207,150,-1,220,375,400,-1,203,375,220,-1,465,478,405,-1,465,569,478,-1,300,187,120,-1,300,313,187,-1,314,104,235,-1,314,125,104,-1,485,401,481,-1,401,485,439,-1,244,317,181,-1,350,317,244,-1,244,356,350,-1,244,256,356,-1,253,297,289,-1,297,253,245,-1,144,181,184,-1,144,152,181,-1,375,414,483,-1,414,375,348,-1,43,52,26,-1,52,43,42,-1,45,64,80,-1,64,45,59,-1,257,141,98,-1,141,257,255,-1,458,374,423,-1,395,374,458,-1,169,211,146,-1,211,169,306,-1,537,542,546,-1,537,535,542,-1,565,560,536,-1,560,565,573,-1,567,551,559,-1,567,552,551,-1,58,180,161,-1,88,180,58,-1,395,321,343,-1,395,393,321,-1,409,310,404,-1,310,409,304,-1,382,249,355,-1,249,382,271,-1,258,158,174,-1,258,281,158,-1,470,516,538,-1,471,516,470,-1,435,368,451,-1,357,368,435,-1,221,149,129,-1,149,221,233,-1,276,389,387,-1,389,276,283,-1,49,166,151,-1,166,49,86,-1,185,330,323,-1,330,185,176,-1,397,442,408,-1,442,397,407,-1,472,489,525,-1,472,441,489,-1,467,367,444,-1,376,367,467,-1,231,140,148,-1,140,231,236,-1,79,63,93,-1,63,79,32,-1,490,392,492,-1,490,399,392,-1,38,137,143,-1,22,137,38,-1,575,492,561,-1,575,490,492,-1,73,22,38,-1,22,73,51,-1,191,386,370,-1,191,193,386,-1,518,525,489,-1,525,518,561,-1,575,550,582,-1,575,528,550,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib10_Geo_5_751_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,7,10,8,-1,1,0,11,-1,12,13,14,-1,15,16,17,-1,17,18,15,-1,19,20,21,-1,20,22,21,-1,13,12,23,-1,12,24,23,-1,25,26,27,-1,27,28,25,-1,29,30,31,-1,29,32,30,-1,33,34,35,-1,33,36,34,-1,37,38,39,-1,38,40,39,-1,41,42,43,-1,44,45,46,-1,47,48,49,-1,50,51,52,-1,50,53,51,-1,54,55,56,-1,54,57,55,-1,58,59,60,-1,58,61,59,-1,62,63,64,-1,64,33,62,-1,65,64,63,-1,65,66,64,-1,67,0,2,-1,32,68,69,-1,68,70,69,-1,71,72,73,-1,72,74,73,-1,75,76,77,-1,78,51,11,-1,78,52,51,-1,79,75,77,-1,79,80,75,-1,81,32,69,-1,81,30,32,-1,53,50,82,-1,83,84,85,-1,83,86,84,-1,87,88,89,-1,89,90,87,-1,51,53,54,-1,11,0,79,-1,91,92,50,-1,50,93,91,-1,41,83,94,-1,41,43,95,-1,96,97,98,-1,96,99,97,-1,100,28,101,-1,101,102,100,-1,103,104,14,-1,14,13,103,-1,105,106,26,-1,106,27,26,-1,107,108,109,-1,107,110,108,-1,27,111,112,-1,27,106,111,-1,113,114,115,-1,115,116,113,-1,117,118,119,-1,118,120,119,-1,121,122,123,-1,122,124,123,-1,125,126,127,-1,126,128,127,-1,129,130,15,-1,130,131,15,-1,132,133,9,-1,134,135,136,-1,132,8,137,-1,8,138,137,-1,9,8,132,-1,139,140,47,-1,39,141,47,-1,45,142,143,-1,45,144,142,-1,145,57,146,-1,145,147,57,-1,148,46,45,-1,148,149,46,-1,150,151,152,-1,150,153,151,-1,154,91,93,-1,154,88,91,-1,155,156,2,-1,2,1,155,-1,41,157,87,-1,42,41,94,-1,81,69,85,-1,85,84,81,-1,32,29,74,-1,158,159,67,-1,67,2,158,-1,97,99,160,-1,160,67,97,-1,125,161,162,-1,161,163,162,-1,25,73,74,-1,74,29,25,-1,112,164,101,-1,164,104,101,-1,104,107,14,-1,104,164,107,-1,165,166,119,-1,165,167,166,-1,168,169,166,-1,166,167,168,-1,18,129,15,-1,18,170,129,-1,171,172,173,-1,172,174,173,-1,175,176,177,-1,178,179,180,-1,179,181,180,-1,182,4,180,-1,182,183,4,-1,3,132,137,-1,172,184,174,-1,184,185,174,-1,186,123,124,-1,186,187,123,-1,24,21,167,-1,21,168,167,-1,188,108,110,-1,188,189,108,-1,98,190,96,-1,100,191,71,-1,71,73,100,-1,127,128,98,-1,98,97,127,-1,192,193,194,-1,159,127,67,-1,127,97,67,-1,195,72,163,-1,163,196,195,-1,86,83,41,-1,41,90,86,-1,81,76,75,-1,197,198,82,-1,82,199,200,-1,82,198,199,-1,54,53,146,-1,146,57,54,-1,201,202,203,-1,201,204,202,-1,205,206,55,-1,47,207,48,-1,47,37,39,-1,49,139,47,-1,10,7,208,-1,7,135,134,-1,134,208,7,-1,5,4,183,-1,183,136,5,-1,137,138,209,-1,138,210,209,-1,211,212,213,-1,212,171,213,-1,214,215,201,-1,214,216,215,-1,125,159,161,-1,125,127,159,-1,217,164,112,-1,112,111,217,-1,218,217,111,-1,110,164,217,-1,110,107,164,-1,13,23,219,-1,219,103,13,-1,194,106,105,-1,105,192,194,-1,160,192,220,-1,160,99,192,-1,90,41,87,-1,95,157,41,-1,155,51,56,-1,56,221,155,-1,77,76,154,-1,154,78,77,-1,85,222,83,-1,222,94,83,-1,50,52,93,-1,79,160,220,-1,220,80,79,-1,195,68,74,-1,74,72,195,-1,153,199,198,-1,198,151,153,-1,223,68,224,-1,32,74,68,-1,225,226,48,-1,48,207,225,-1,49,35,34,-1,33,64,148,-1,148,36,33,-1,51,54,56,-1,207,47,141,-1,227,48,226,-1,228,216,214,-1,144,44,229,-1,144,45,44,-1,230,68,195,-1,230,224,68,-1,231,197,232,-1,231,223,197,-1,37,47,140,-1,25,29,26,-1,20,17,22,-1,20,18,17,-1,15,131,16,-1,1,11,51,-1,51,155,1,-1,10,208,233,-1,3,5,133,-1,133,132,3,-1,234,235,58,-1,225,235,234,-1,61,38,236,-1,40,38,61,-1,237,143,142,-1,237,238,143,-1,227,239,62,-1,227,226,239,-1,197,224,198,-1,223,224,197,-1,232,240,231,-1,240,232,241,-1,242,195,196,-1,242,230,195,-1,243,158,244,-1,243,245,158,-1,44,214,229,-1,214,44,228,-1,204,221,206,-1,221,204,246,-1,65,146,200,-1,145,146,65,-1,247,62,239,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib10_Geo_5_751_coordIndex_2()
		{
			int[] value = {63,62,247,-1,207,235,225,-1,235,207,141,-1,60,147,248,-1,147,60,205,-1,249,142,144,-1,249,236,142,-1,143,148,45,-1,143,36,148,-1,235,39,40,-1,235,141,39,-1,139,34,238,-1,34,139,49,-1,149,199,153,-1,149,66,199,-1,228,46,150,-1,44,46,228,-1,205,59,202,-1,205,60,59,-1,66,148,64,-1,149,148,66,-1,224,151,198,-1,151,224,230,-1,231,68,223,-1,70,68,231,-1,94,240,42,-1,222,240,94,-1,157,92,91,-1,92,157,95,-1,215,156,246,-1,244,156,215,-1,76,88,154,-1,76,89,88,-1,218,106,194,-1,218,111,106,-1,250,100,102,-1,100,250,191,-1,251,178,252,-1,179,178,251,-1,253,130,254,-1,253,255,130,-1,129,256,257,-1,256,129,170,-1,258,259,260,-1,259,258,261,-1,6,252,178,-1,6,209,252,-1,244,216,243,-1,216,244,215,-1,128,262,263,-1,128,126,262,-1,264,169,265,-1,264,166,169,-1,212,172,171,-1,172,212,266,-1,175,115,184,-1,115,175,116,-1,267,268,269,-1,267,270,268,-1,271,212,211,-1,271,272,212,-1,210,233,273,-1,138,233,210,-1,3,209,6,-1,3,137,209,-1,114,136,183,-1,134,136,114,-1,135,9,133,-1,135,7,9,-1,185,274,174,-1,181,274,185,-1,150,216,228,-1,152,216,150,-1,56,206,221,-1,206,56,55,-1,152,230,242,-1,230,152,151,-1,244,2,156,-1,2,244,158,-1,81,89,76,-1,81,84,89,-1,162,126,125,-1,162,275,126,-1,99,193,192,-1,99,96,193,-1,275,71,191,-1,71,275,162,-1,194,276,218,-1,193,276,194,-1,98,263,190,-1,128,263,98,-1,277,191,250,-1,191,277,275,-1,218,278,217,-1,276,278,218,-1,190,118,279,-1,263,118,190,-1,250,280,277,-1,250,219,280,-1,281,278,279,-1,281,188,278,-1,280,119,120,-1,165,119,280,-1,188,282,189,-1,281,282,188,-1,12,107,109,-1,107,12,14,-1,283,189,282,-1,283,284,189,-1,19,109,261,-1,109,19,12,-1,283,122,285,-1,265,122,283,-1,21,186,168,-1,21,22,186,-1,260,268,256,-1,286,268,260,-1,285,121,269,-1,122,121,285,-1,187,22,17,-1,186,22,187,-1,173,270,267,-1,270,173,287,-1,187,211,123,-1,187,271,211,-1,254,274,253,-1,287,274,254,-1,131,288,272,-1,131,289,288,-1,253,181,179,-1,181,253,274,-1,288,175,266,-1,288,176,175,-1,289,176,288,-1,289,290,176,-1,4,178,180,-1,4,6,178,-1,114,182,115,-1,114,183,182,-1,181,182,180,-1,181,185,182,-1,113,177,273,-1,291,113,116,-1,291,177,113,-1,251,292,290,-1,252,292,251,-1,292,273,177,-1,292,210,273,-1,177,290,292,-1,176,290,177,-1,210,252,209,-1,210,292,252,-1,177,116,175,-1,177,291,116,-1,185,115,182,-1,185,184,115,-1,255,290,289,-1,251,290,255,-1,289,130,255,-1,130,289,131,-1,272,266,212,-1,272,288,266,-1,174,287,173,-1,174,274,287,-1,287,257,270,-1,287,254,257,-1,271,17,16,-1,17,271,187,-1,267,171,173,-1,267,213,171,-1,18,258,170,-1,20,258,18,-1,269,286,285,-1,269,268,286,-1,261,20,19,-1,20,261,258,-1,124,168,186,-1,168,124,169,-1,285,284,283,-1,285,286,284,-1,265,282,264,-1,265,283,282,-1,284,108,189,-1,284,259,108,-1,23,167,165,-1,23,24,167,-1,281,264,282,-1,117,264,281,-1,219,165,280,-1,219,23,165,-1,279,117,281,-1,279,118,117,-1,188,217,278,-1,188,110,217,-1,219,102,103,-1,102,219,250,-1,120,277,280,-1,277,120,262,-1,276,279,278,-1,190,279,276,-1,27,101,28,-1,101,27,112,-1,275,262,126,-1,275,277,262,-1,72,162,163,-1,72,71,162,-1,192,31,220,-1,192,105,31,-1,196,161,245,-1,196,163,161,-1,220,30,80,-1,220,31,30,-1,231,222,70,-1,231,240,222,-1,154,52,78,-1,154,93,52,-1,152,243,216,-1,243,152,242,-1,215,204,201,-1,215,246,204,-1,66,200,199,-1,66,65,200,-1,286,259,284,-1,260,259,286,-1,8,233,138,-1,8,10,233,-1,136,133,5,-1,135,133,136,-1,233,113,273,-1,113,233,208,-1,113,134,114,-1,208,134,113,-1,272,16,131,-1,271,16,272,-1,123,213,121,-1,123,211,213,-1,270,256,268,-1,270,257,256,-1,144,203,249,-1,203,144,229,-1,266,184,172,-1,184,266,175,-1,265,124,122,-1,265,169,124,-1,117,166,264,-1,117,119,166,-1,263,120,118,-1,263,262,120,-1,245,159,158,-1,159,245,161,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib10_Geo_5_751_coordIndex_3()
		{
			int[] value = {105,29,31,-1,105,26,29,-1,260,170,258,-1,260,256,170,-1,108,261,109,-1,108,259,261,-1,130,257,254,-1,130,129,257,-1,255,179,251,-1,253,179,255,-1,101,103,102,-1,103,101,104,-1,193,190,276,-1,96,190,193,-1,70,85,69,-1,85,70,222,-1,92,232,50,-1,92,241,232,-1,160,0,67,-1,160,79,0,-1,88,157,91,-1,88,87,157,-1,95,241,92,-1,241,95,43,-1,84,90,89,-1,84,86,90,-1,77,11,79,-1,77,78,11,-1,81,80,30,-1,81,75,80,-1,232,82,50,-1,232,197,82,-1,48,35,49,-1,35,48,227,-1,202,249,203,-1,202,59,249,-1,248,145,247,-1,147,145,248,-1,229,201,203,-1,229,214,201,-1,153,46,149,-1,46,153,150,-1,140,238,237,-1,238,140,139,-1,239,248,247,-1,234,248,239,-1,236,59,61,-1,236,249,59,-1,205,57,147,-1,57,205,55,-1,58,248,234,-1,248,58,60,-1,145,63,247,-1,145,65,63,-1,53,200,146,-1,53,82,200,-1,246,155,221,-1,155,246,156,-1,202,206,205,-1,206,202,204,-1,242,245,243,-1,242,196,245,-1,241,42,240,-1,42,241,43,-1,237,37,140,-1,237,38,37,-1,35,62,33,-1,62,35,227,-1,238,36,143,-1,36,238,34,-1,236,237,142,-1,38,237,236,-1,58,40,61,-1,58,235,40,-1,226,234,239,-1,234,226,225,-1,73,28,100,-1,25,28,73,-1,12,21,24,-1,12,19,21,-1,213,269,121,-1,213,267,269,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib10_Geo_5_751_normalIndex_1()
		{
			int[] value = {107,87,84,-1,158,258,151,-1,158,220,258,-1,191,234,173,-1,191,252,234,-1,87,107,88,-1,82,72,80,-1,45,17,22,-1,22,32,45,-1,69,58,48,-1,58,52,48,-1,72,82,67,-1,82,61,67,-1,155,119,124,-1,124,159,155,-1,110,104,91,-1,110,123,104,-1,185,184,122,-1,185,222,184,-1,10,2,1,-1,2,8,1,-1,141,182,172,-1,242,239,275,-1,65,27,100,-1,47,46,26,-1,47,78,46,-1,64,30,51,-1,64,42,30,-1,21,28,40,-1,21,9,28,-1,97,145,205,-1,205,185,97,-1,131,205,145,-1,131,223,205,-1,144,107,84,-1,123,249,225,-1,249,238,225,-1,194,216,165,-1,216,147,165,-1,90,95,102,-1,77,46,88,-1,77,26,46,-1,96,90,102,-1,96,60,90,-1,143,123,225,-1,143,104,123,-1,78,47,129,-1,156,163,203,-1,156,116,163,-1,111,68,93,-1,93,106,111,-1,46,78,64,-1,88,107,96,-1,35,74,47,-1,47,24,35,-1,141,156,180,-1,141,172,117,-1,197,175,207,-1,197,171,175,-1,149,159,132,-1,132,125,149,-1,89,94,80,-1,80,72,89,-1,120,154,119,-1,154,124,119,-1,130,236,134,-1,130,211,236,-1,124,161,109,-1,124,154,161,-1,136,240,259,-1,259,146,136,-1,226,235,121,-1,235,168,121,-1,215,227,79,-1,227,101,79,-1,231,196,198,-1,196,221,198,-1,133,152,45,-1,152,25,45,-1,192,76,173,-1,189,55,92,-1,192,234,167,-1,234,204,167,-1,173,234,192,-1,157,73,65,-1,1,6,65,-1,239,142,206,-1,239,166,142,-1,53,42,66,-1,53,33,42,-1,254,275,239,-1,254,274,275,-1,280,268,270,-1,280,271,268,-1,54,35,24,-1,54,68,35,-1,62,75,84,-1,84,87,62,-1,141,114,111,-1,182,141,180,-1,143,225,203,-1,203,163,143,-1,123,110,147,-1,164,190,144,-1,144,84,164,-1,175,171,115,-1,115,144,175,-1,231,246,218,-1,246,264,218,-1,155,165,147,-1,147,110,155,-1,109,113,132,-1,113,94,132,-1,94,130,80,-1,94,113,130,-1,70,99,121,-1,70,50,99,-1,39,112,99,-1,99,50,39,-1,32,133,45,-1,32,128,133,-1,232,224,285,-1,224,286,285,-1,103,3,18,-1,247,263,281,-1,263,288,281,-1,291,258,281,-1,291,265,258,-1,158,192,167,-1,224,230,286,-1,230,292,286,-1,29,79,101,-1,29,15,79,-1,61,48,50,-1,48,39,50,-1,260,236,211,-1,260,273,236,-1,207,233,197,-1,149,176,194,-1,194,165,149,-1,198,221,207,-1,207,175,198,-1,153,193,181,-1,190,198,144,-1,198,175,144,-1,267,216,264,-1,264,266,267,-1,116,156,141,-1,141,106,116,-1,143,95,90,-1,170,201,129,-1,129,208,139,-1,129,201,208,-1,64,78,66,-1,66,42,64,-1,118,44,71,-1,118,43,44,-1,31,34,30,-1,65,19,27,-1,65,10,1,-1,100,157,65,-1,252,191,187,-1,191,55,189,-1,189,187,191,-1,151,258,265,-1,265,92,151,-1,167,204,162,-1,204,49,162,-1,81,108,217,-1,108,232,217,-1,212,169,118,-1,212,261,169,-1,231,190,246,-1,231,198,190,-1,195,113,109,-1,109,161,195,-1,199,195,161,-1,211,113,195,-1,211,130,113,-1,72,67,86,-1,86,89,72,-1,181,154,120,-1,120,153,181,-1,115,153,83,-1,115,171,153,-1,106,141,111,-1,117,114,141,-1,62,46,51,-1,51,56,62,-1,102,95,54,-1,54,77,102,-1,203,210,156,-1,210,180,156,-1,47,26,24,-1,96,115,83,-1,83,60,96,-1,267,249,147,-1,147,216,267,-1,271,208,201,-1,201,268,271,-1,186,249,214,-1,123,147,249,-1,14,38,27,-1,27,19,14,-1,100,122,184,-1,185,205,254,-1,254,222,185,-1,46,64,51,-1,19,65,6,-1,57,27,38,-1,262,261,212,-1,166,242,188,-1,166,239,242,-1,251,249,267,-1,251,214,249,-1,202,170,174,-1,202,186,170,-1,10,65,73,-1,155,110,119,-1,58,22,52,-1,58,32,22,-1,45,25,17,-1,87,88,46,-1,46,62,87,-1,252,187,209,-1,158,151,76,-1,76,192,158,-1,23,11,21,-1,14,11,23,-1,9,2,4,-1,8,2,9,-1,105,206,142,-1,105,178,206,-1,57,37,97,-1,57,38,37,-1,170,214,201,-1,186,214,170,-1,174,200,202,-1,200,174,177,-1,250,267,266,-1,250,251,267,-1,237,164,148,-1,237,241,164,-1,242,212,188,-1,212,242,262,-1,43,56,34,-1,56,43,63,-1,131,66,139,-1,53,66,131,-1,59,97,37,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib10_Geo_5_751_normalIndex_2()
		{
			int[] value = {145,97,59,-1,19,11,14,-1,11,19,6,-1,40,33,41,-1,33,40,31,-1,20,142,166,-1,20,4,142,-1,206,254,239,-1,206,222,254,-1,11,1,8,-1,11,6,1,-1,157,184,178,-1,184,157,100,-1,274,208,271,-1,274,223,208,-1,262,275,280,-1,242,275,262,-1,31,28,44,-1,31,40,28,-1,223,254,205,-1,274,254,223,-1,214,268,201,-1,268,214,251,-1,202,249,186,-1,238,249,202,-1,180,200,182,-1,210,200,180,-1,114,74,35,-1,74,114,117,-1,169,75,63,-1,148,75,169,-1,95,68,54,-1,95,93,68,-1,199,154,181,-1,199,161,154,-1,127,149,125,-1,149,127,176,-1,150,247,160,-1,263,247,150,-1,255,152,253,-1,255,135,152,-1,133,248,256,-1,248,133,128,-1,126,245,244,-1,245,126,137,-1,220,160,247,-1,220,162,160,-1,148,261,237,-1,261,148,169,-1,221,179,229,-1,221,196,179,-1,213,112,228,-1,213,99,112,-1,108,224,232,-1,224,108,85,-1,103,259,230,-1,259,103,146,-1,284,283,282,-1,284,287,283,-1,7,108,81,-1,7,5,108,-1,49,209,36,-1,204,209,49,-1,158,162,220,-1,158,167,162,-1,240,92,265,-1,189,92,240,-1,55,173,76,-1,55,191,173,-1,292,289,286,-1,288,289,292,-1,280,261,262,-1,270,261,280,-1,51,34,56,-1,34,51,30,-1,270,251,250,-1,251,270,268,-1,148,84,75,-1,84,148,164,-1,143,93,95,-1,143,163,93,-1,218,196,231,-1,218,183,196,-1,171,193,153,-1,171,197,193,-1,183,194,176,-1,194,183,218,-1,181,219,199,-1,193,219,181,-1,207,229,233,-1,221,229,207,-1,140,176,127,-1,176,140,183,-1,199,243,195,-1,219,243,199,-1,233,235,257,-1,229,235,233,-1,127,98,140,-1,127,86,98,-1,269,243,257,-1,269,260,243,-1,98,121,168,-1,70,121,98,-1,260,272,273,-1,269,272,260,-1,82,130,134,-1,130,82,80,-1,277,273,272,-1,277,276,273,-1,69,134,137,-1,134,69,82,-1,277,227,278,-1,228,227,277,-1,48,29,39,-1,48,52,29,-1,244,283,248,-1,279,283,244,-1,278,215,282,-1,227,215,278,-1,15,52,22,-1,29,52,15,-1,285,287,284,-1,287,285,290,-1,15,81,79,-1,15,7,81,-1,253,289,255,-1,290,289,253,-1,25,0,5,-1,25,16,0,-1,255,288,263,-1,288,255,289,-1,0,103,85,-1,0,3,103,-1,16,3,0,-1,16,13,3,-1,258,247,281,-1,258,220,247,-1,240,291,259,-1,240,265,291,-1,288,291,281,-1,288,292,291,-1,136,18,36,-1,138,136,146,-1,138,18,136,-1,150,12,13,-1,160,12,150,-1,12,36,18,-1,12,49,36,-1,18,13,12,-1,3,13,18,-1,49,160,162,-1,49,12,160,-1,18,146,103,-1,18,138,146,-1,292,259,291,-1,292,230,259,-1,135,13,16,-1,150,13,135,-1,16,152,135,-1,152,16,25,-1,5,85,108,-1,5,0,85,-1,286,290,285,-1,286,289,290,-1,290,256,287,-1,290,253,256,-1,7,22,17,-1,22,7,15,-1,284,232,285,-1,284,217,232,-1,32,126,128,-1,58,126,32,-1,282,279,278,-1,282,283,279,-1,137,58,69,-1,58,137,126,-1,101,39,29,-1,39,101,112,-1,278,276,277,-1,278,279,276,-1,228,272,213,-1,228,277,272,-1,276,236,273,-1,276,245,236,-1,67,50,70,-1,67,61,50,-1,269,213,272,-1,226,213,269,-1,86,70,98,-1,86,67,70,-1,257,226,269,-1,257,235,226,-1,260,195,243,-1,260,211,195,-1,86,125,89,-1,125,86,127,-1,168,140,98,-1,140,168,179,-1,219,257,243,-1,233,257,219,-1,124,132,159,-1,132,124,109,-1,183,179,196,-1,183,140,179,-1,216,218,264,-1,216,194,218,-1,153,91,83,-1,153,120,91,-1,266,246,241,-1,266,264,246,-1,83,104,60,-1,83,91,104,-1,202,210,238,-1,202,200,210,-1,54,26,77,-1,54,24,26,-1,270,237,261,-1,237,270,250,-1,169,43,118,-1,169,63,43,-1,223,139,208,-1,223,131,139,-1,279,245,276,-1,244,245,279,-1,234,209,204,-1,234,252,209,-1,92,76,151,-1,55,76,92,-1,209,136,36,-1,136,209,187,-1,136,189,240,-1,187,189,136,-1,5,17,25,-1,7,17,5,-1,79,217,215,-1,79,81,217,-1,287,248,283,-1,287,256,248,-1,166,71,20,-1,71,166,188,-1,85,230,224,-1,230,85,103,-1,228,101,227,-1,228,112,101,-1,226,99,213,-1,226,121,99,-1,229,168,235,-1,229,179,168,-1,241,190,164,-1,190,241,246,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib10_Geo_5_751_normalIndex_3()
		{
			int[] value = {120,110,91,-1,120,119,110,-1,244,128,126,-1,244,248,128,-1,236,137,134,-1,236,245,137,-1,152,256,253,-1,152,133,256,-1,135,263,150,-1,255,263,135,-1,132,89,125,-1,89,132,94,-1,193,233,219,-1,197,233,193,-1,238,203,225,-1,203,238,210,-1,74,174,47,-1,74,177,174,-1,115,107,144,-1,115,96,107,-1,68,114,35,-1,68,111,114,-1,117,177,74,-1,177,117,172,-1,163,106,93,-1,163,116,106,-1,102,88,96,-1,102,77,88,-1,143,60,104,-1,143,90,60,-1,174,129,47,-1,174,170,129,-1,27,122,100,-1,122,27,57,-1,44,20,71,-1,44,28,20,-1,41,53,59,-1,33,53,41,-1,188,118,71,-1,188,212,118,-1,271,275,274,-1,275,271,280,-1,73,178,105,-1,178,73,157,-1,37,41,59,-1,23,41,37,-1,4,28,9,-1,4,20,28,-1,31,42,33,-1,42,31,30,-1,21,41,23,-1,41,21,40,-1,53,145,59,-1,53,131,145,-1,78,139,66,-1,78,129,139,-1,63,62,56,-1,62,63,75,-1,44,34,31,-1,34,44,43,-1,250,241,237,-1,250,266,241,-1,177,182,200,-1,182,177,172,-1,105,10,73,-1,105,2,10,-1,122,97,185,-1,97,122,57,-1,178,222,206,-1,222,178,184,-1,4,105,142,-1,2,105,4,-1,21,8,9,-1,21,11,8,-1,38,23,37,-1,23,38,14,-1,165,159,149,-1,155,159,165,-1,82,48,61,-1,82,69,48,-1,217,282,215,-1,217,284,282,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib11_Geo_5_757_coordIndex_1()
		{
			int[] value = {0,1,2,-1,1,3,2,-1,4,5,6,-1,6,7,4,-1,8,9,10,-1,11,10,9,-1,11,12,10,-1,13,14,15,-1,15,16,13,-1,17,18,19,-1,17,20,18,-1,21,22,23,-1,21,24,22,-1,25,26,27,-1,27,28,25,-1,29,30,31,-1,32,33,34,-1,34,35,32,-1,36,37,38,-1,39,40,41,-1,40,36,41,-1,42,43,44,-1,45,46,47,-1,47,48,45,-1,49,50,51,-1,51,52,49,-1,53,54,55,-1,55,56,53,-1,57,58,59,-1,57,60,58,-1,61,62,54,-1,54,63,61,-1,21,49,64,-1,49,52,64,-1,65,24,37,-1,24,66,37,-1,22,67,44,-1,22,68,67,-1,69,70,71,-1,69,72,70,-1,36,73,41,-1,36,38,73,-1,55,54,62,-1,62,74,55,-1,75,76,77,-1,20,78,79,-1,28,79,25,-1,80,71,26,-1,71,70,26,-1,33,78,81,-1,33,79,78,-1,82,83,84,-1,84,85,82,-1,45,86,87,-1,86,27,87,-1,45,48,88,-1,82,85,89,-1,85,75,89,-1,90,91,92,-1,91,93,92,-1,94,95,29,-1,96,29,97,-1,82,98,83,-1,82,99,98,-1,100,101,102,-1,102,98,100,-1,7,103,104,-1,7,105,103,-1,106,107,108,-1,107,109,108,-1,110,111,112,-1,19,102,17,-1,102,14,17,-1,111,113,112,-1,111,114,113,-1,115,116,117,-1,116,118,117,-1,119,120,121,-1,120,122,121,-1,44,67,42,-1,42,123,124,-1,42,125,43,-1,55,126,58,-1,87,26,70,-1,70,127,87,-1,27,26,87,-1,128,77,129,-1,130,131,132,-1,130,133,131,-1,29,95,97,-1,30,29,134,-1,20,17,78,-1,135,99,82,-1,82,89,135,-1,13,136,78,-1,78,17,13,-1,137,138,121,-1,137,139,138,-1,140,141,142,-1,141,143,142,-1,144,145,146,-1,144,147,145,-1,9,8,147,-1,8,148,147,-1,149,106,150,-1,149,107,106,-1,151,152,109,-1,151,153,152,-1,109,8,108,-1,109,152,8,-1,154,108,10,-1,108,8,10,-1,11,9,144,-1,9,147,144,-1,7,6,155,-1,155,105,7,-1,156,157,158,-1,159,160,161,-1,161,136,159,-1,162,163,156,-1,156,135,162,-1,98,164,100,-1,165,162,89,-1,162,135,89,-1,83,98,19,-1,98,102,19,-1,166,167,168,-1,168,34,166,-1,84,83,18,-1,83,19,18,-1,169,170,29,-1,29,96,169,-1,130,132,171,-1,66,69,37,-1,69,38,37,-1,124,172,42,-1,67,173,42,-1,174,175,40,-1,40,176,174,-1,145,177,146,-1,145,178,177,-1,165,179,167,-1,179,168,167,-1,39,117,180,-1,39,115,117,-1,15,101,112,-1,112,113,15,-1,101,15,14,-1,14,102,101,-1,159,155,160,-1,159,105,155,-1,159,16,103,-1,103,105,159,-1,158,135,156,-1,158,99,135,-1,29,31,94,-1,29,170,134,-1,181,182,45,-1,45,88,181,-1,76,75,85,-1,47,46,57,-1,46,45,87,-1,130,20,91,-1,130,18,20,-1,84,171,183,-1,183,85,84,-1,93,79,28,-1,28,184,93,-1,171,132,183,-1,161,81,136,-1,81,78,136,-1,89,75,77,-1,176,39,180,-1,176,40,39,-1,125,185,43,-1,185,186,43,-1,44,23,22,-1,21,64,66,-1,66,24,21,-1,47,57,59,-1,60,55,58,-1,60,56,55,-1,125,42,172,-1,187,87,127,-1,187,46,87,-1,188,43,186,-1,41,115,39,-1,184,27,86,-1,184,28,27,-1,123,42,173,-1,49,21,23,-1,23,188,49,-1,65,68,22,-1,22,24,65,-1,63,189,190,-1,190,61,63,-1,13,17,14,-1,143,4,142,-1,191,192,193,-1,193,194,191,-1,195,1,0,-1,195,196,1,-1,197,198,199,-1,197,200,198,-1,3,201,202,-1,202,203,3,-1,204,202,205,-1,204,206,202,-1,207,198,208,-1,198,207,209,-1,200,202,206,-1,203,202,200,-1,3,210,201,-1,1,210,3,-1,211,205,196,-1,211,204,205,-1,198,191,199,-1,198,209,191,-1,212,200,197,-1,212,203,200,-1,211,195,192,-1,211,196,195,-1,199,194,213,-1,199,191,194,-1,153,197,214,-1,153,212,197,-1,2,215,0,-1,215,2,151,-1,192,216,193,-1,192,195,216,-1,194,217,218,-1,217,194,193,-1,201,205,202,-1,201,210,205,-1,4,219,5,-1,4,143,219,-1,220,189,63,-1,185,189,220,-1,221,61,190,-1,221,222,61,-1,223,65,224,-1,223,68,65,-1,49,186,50,-1,188,186,49,-1,190,123,221,-1,123,190,124,-1,86,225,184,-1,225,86,226,-1,179,116,168,-1,118,116,179,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib11_Geo_5_757_coordIndex_2()
		{
			int[] value = {227,228,126,-1,228,227,229,-1,230,187,127,-1,231,187,230,-1,185,172,189,-1,185,125,172,-1,174,224,175,-1,174,222,224,-1,189,124,190,-1,189,172,124,-1,72,52,230,-1,72,64,52,-1,44,188,23,-1,44,43,188,-1,130,84,18,-1,130,171,84,-1,183,76,85,-1,183,232,76,-1,169,131,133,-1,131,169,96,-1,92,170,90,-1,92,134,170,-1,182,31,226,-1,182,94,31,-1,97,181,233,-1,181,97,95,-1,232,132,234,-1,183,132,232,-1,47,228,129,-1,228,47,59,-1,45,226,86,-1,182,226,45,-1,235,158,157,-1,158,235,164,-1,111,140,114,-1,236,140,111,-1,237,238,239,-1,238,237,141,-1,167,162,165,-1,240,162,167,-1,163,241,242,-1,163,243,241,-1,146,244,138,-1,177,244,146,-1,178,245,246,-1,245,178,145,-1,213,218,247,-1,194,218,213,-1,240,163,162,-1,240,243,163,-1,227,176,180,-1,227,74,176,-1,72,127,70,-1,72,230,127,-1,60,46,187,-1,57,46,60,-1,229,180,117,-1,180,229,227,-1,115,35,116,-1,115,248,35,-1,76,129,77,-1,129,76,47,-1,90,130,91,-1,130,90,133,-1,89,179,165,-1,179,89,77,-1,240,249,243,-1,250,249,240,-1,167,250,240,-1,167,166,250,-1,164,99,158,-1,99,164,98,-1,250,160,249,-1,161,160,250,-1,110,164,235,-1,164,110,100,-1,163,157,156,-1,163,242,157,-1,249,155,251,-1,160,155,249,-1,111,235,252,-1,235,111,110,-1,253,242,120,-1,242,253,157,-1,251,6,254,-1,155,6,251,-1,114,103,113,-1,114,104,103,-1,253,255,252,-1,253,256,255,-1,137,122,254,-1,137,121,122,-1,140,104,114,-1,104,140,142,-1,256,257,255,-1,256,258,257,-1,258,259,257,-1,258,260,259,-1,139,146,138,-1,139,144,146,-1,237,143,141,-1,237,12,143,-1,259,261,262,-1,260,261,259,-1,262,106,263,-1,262,150,106,-1,246,261,178,-1,246,264,261,-1,148,247,245,-1,148,265,247,-1,8,265,148,-1,8,152,265,-1,265,213,247,-1,265,214,213,-1,152,214,265,-1,152,153,214,-1,216,107,149,-1,215,107,216,-1,264,218,217,-1,246,218,264,-1,147,245,145,-1,147,148,245,-1,264,262,261,-1,264,150,262,-1,260,178,261,-1,177,178,260,-1,259,263,239,-1,259,262,263,-1,219,144,139,-1,219,11,144,-1,258,177,260,-1,244,177,258,-1,239,257,259,-1,257,239,238,-1,219,137,5,-1,219,139,137,-1,244,256,119,-1,244,258,256,-1,255,238,236,-1,255,257,238,-1,5,254,6,-1,5,137,254,-1,120,256,253,-1,120,119,256,-1,252,236,111,-1,252,255,236,-1,241,254,122,-1,251,254,241,-1,252,157,253,-1,157,252,235,-1,16,113,103,-1,16,15,113,-1,243,251,241,-1,249,251,243,-1,161,166,81,-1,161,250,166,-1,34,81,166,-1,33,81,34,-1,184,92,93,-1,184,225,92,-1,234,48,232,-1,234,88,48,-1,118,77,128,-1,77,118,179,-1,248,32,35,-1,32,248,80,-1,88,233,181,-1,234,233,88,-1,73,80,248,-1,73,71,80,-1,59,126,228,-1,126,59,58,-1,41,248,115,-1,248,41,73,-1,187,56,60,-1,231,56,187,-1,224,37,175,-1,37,224,65,-1,217,150,264,-1,149,150,217,-1,246,247,218,-1,246,245,247,-1,119,138,244,-1,119,121,138,-1,242,122,120,-1,242,241,122,-1,236,141,140,-1,236,238,141,-1,154,239,263,-1,239,154,237,-1,108,263,106,-1,108,154,263,-1,107,151,109,-1,107,215,151,-1,112,100,110,-1,100,112,101,-1,131,234,132,-1,131,233,234,-1,117,128,229,-1,118,128,117,-1,131,97,233,-1,96,97,131,-1,95,182,181,-1,182,95,94,-1,134,225,30,-1,92,225,134,-1,170,133,90,-1,170,169,133,-1,232,47,76,-1,232,48,47,-1,80,25,32,-1,80,26,25,-1,72,66,64,-1,69,66,72,-1,91,79,93,-1,20,79,91,-1,74,174,176,-1,74,62,174,-1,231,53,56,-1,231,51,53,-1,38,71,73,-1,38,69,71,-1,173,68,223,-1,68,173,67,-1,51,220,53,-1,220,51,50,-1,222,62,61,-1,222,174,62,-1,63,53,220,-1,53,63,54,-1,230,51,231,-1,51,230,52,-1,229,129,228,-1,129,229,128,-1,126,74,227,-1,126,55,74,-1,36,175,37,-1,175,36,40,-1,116,34,168,-1,116,35,34,-1,79,32,25,-1,32,79,33,-1,226,30,225,-1,30,226,31,-1,223,123,173,-1,223,221,123,-1,222,223,224,-1,221,223,222,-1,50,185,220,-1,50,186,185,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib11_Geo_5_757_coordIndex_3()
		{
			int[] value = {16,136,13,-1,16,159,136,-1,11,143,12,-1,143,11,219,-1,10,237,154,-1,10,12,237,-1,193,149,217,-1,216,149,193,-1,7,142,4,-1,104,142,7,-1,215,195,0,-1,216,195,215,-1,151,212,153,-1,151,2,212,-1,199,214,197,-1,214,199,213,-1,209,192,191,-1,209,211,192,-1,3,212,2,-1,3,203,212,-1,209,204,211,-1,209,207,204,-1,196,210,1,-1,196,205,210,-1,200,208,198,-1,200,206,208,-1,207,206,204,-1,207,208,206,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib11_Geo_5_757_normalIndex_1()
		{
			int[] value = {113,101,5,-1,101,121,5,-1,54,62,94,-1,94,75,54,-1,27,29,23,-1,48,23,29,-1,48,41,23,-1,122,107,104,-1,104,119,122,-1,135,124,136,-1,135,160,124,-1,149,201,93,-1,149,232,201,-1,167,156,72,-1,72,134,167,-1,51,66,67,-1,224,220,230,-1,230,239,224,-1,246,255,256,-1,218,212,249,-1,212,246,249,-1,79,31,105,-1,2,13,92,-1,92,81,2,-1,38,10,8,-1,8,69,38,-1,1,4,44,-1,44,11,1,-1,50,59,82,-1,50,28,59,-1,37,57,4,-1,4,9,37,-1,149,38,157,-1,38,69,157,-1,235,232,255,-1,232,245,255,-1,201,172,105,-1,201,208,172,-1,242,173,228,-1,242,185,173,-1,246,252,249,-1,246,256,252,-1,44,4,57,-1,57,83,44,-1,143,126,125,-1,160,148,199,-1,134,199,167,-1,233,228,156,-1,228,173,156,-1,220,148,188,-1,220,199,148,-1,150,131,108,-1,108,132,150,-1,2,95,46,-1,95,72,46,-1,2,81,73,-1,150,132,166,-1,132,143,166,-1,196,205,161,-1,205,180,161,-1,12,7,51,-1,52,51,25,-1,150,168,131,-1,150,182,168,-1,170,127,129,-1,129,168,170,-1,75,112,87,-1,75,109,112,-1,162,139,6,-1,139,3,6,-1,189,159,128,-1,136,129,135,-1,129,107,135,-1,159,97,128,-1,159,71,97,-1,250,243,176,-1,243,163,176,-1,251,240,202,-1,240,198,202,-1,105,172,79,-1,79,49,33,-1,79,34,31,-1,44,89,59,-1,46,156,173,-1,173,88,46,-1,72,156,46,-1,96,125,100,-1,147,80,115,-1,147,145,80,-1,51,7,25,-1,66,51,102,-1,160,135,148,-1,187,182,150,-1,150,166,187,-1,122,138,148,-1,148,135,122,-1,114,192,202,-1,114,90,192,-1,53,43,70,-1,43,42,70,-1,78,158,193,-1,78,55,158,-1,29,27,55,-1,27,47,55,-1,227,162,237,-1,227,139,162,-1,0,18,3,-1,0,39,18,-1,3,27,6,-1,3,18,27,-1,17,6,23,-1,6,27,23,-1,48,29,78,-1,29,55,78,-1,75,94,116,-1,116,109,75,-1,213,219,206,-1,120,146,155,-1,155,138,120,-1,211,221,213,-1,213,187,211,-1,168,190,170,-1,194,211,166,-1,211,187,166,-1,131,168,136,-1,168,129,136,-1,215,217,234,-1,234,230,215,-1,108,131,124,-1,131,136,124,-1,99,137,51,-1,51,52,99,-1,147,115,103,-1,245,242,255,-1,242,256,255,-1,33,24,79,-1,172,110,79,-1,91,209,212,-1,212,123,91,-1,158,262,193,-1,158,261,262,-1,194,177,217,-1,177,234,217,-1,218,176,151,-1,218,250,176,-1,104,127,128,-1,128,97,104,-1,127,104,107,-1,107,129,127,-1,120,116,146,-1,120,109,116,-1,120,119,112,-1,112,109,120,-1,206,187,213,-1,206,182,187,-1,51,67,12,-1,51,137,102,-1,36,15,2,-1,2,73,36,-1,126,143,132,-1,92,13,50,-1,13,2,46,-1,147,160,205,-1,147,124,160,-1,108,103,118,-1,118,132,108,-1,180,199,134,-1,134,154,180,-1,103,115,118,-1,155,188,138,-1,188,148,138,-1,166,143,125,-1,123,218,151,-1,123,212,218,-1,34,19,31,-1,19,21,31,-1,105,93,201,-1,149,157,245,-1,245,232,149,-1,92,50,82,-1,28,44,59,-1,28,11,44,-1,34,79,24,-1,35,46,88,-1,35,13,46,-1,32,31,21,-1,249,250,218,-1,154,72,95,-1,154,134,72,-1,49,79,110,-1,38,149,93,-1,93,32,38,-1,235,208,201,-1,201,232,235,-1,9,16,30,-1,30,37,9,-1,122,135,107,-1,42,54,70,-1,244,236,254,-1,254,265,244,-1,210,101,113,-1,210,76,101,-1,64,111,178,-1,64,174,111,-1,121,200,203,-1,203,183,121,-1,45,203,56,-1,45,195,203,-1,22,111,153,-1,111,22,140,-1,174,203,195,-1,183,203,174,-1,121,130,200,-1,101,130,121,-1,86,56,76,-1,86,45,56,-1,111,244,178,-1,111,140,244,-1,40,174,64,-1,40,183,174,-1,86,210,236,-1,86,76,210,-1,178,265,186,-1,178,244,265,-1,39,64,65,-1,39,40,64,-1,5,133,113,-1,133,5,0,-1,236,223,254,-1,236,210,223,-1,265,257,264,-1,257,265,254,-1,200,56,203,-1,200,130,56,-1,54,58,62,-1,54,42,58,-1,14,16,9,-1,19,16,14,-1,61,37,30,-1,61,68,37,-1,144,235,191,-1,144,208,235,-1,38,21,10,-1,32,21,38,-1,30,49,61,-1,49,30,33,-1,95,142,154,-1,142,95,106,-1,177,243,234,-1,163,243,177,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib11_Geo_5_757_normalIndex_2()
		{
			int[] value = {85,84,89,-1,84,85,74,-1,77,35,88,-1,20,35,77,-1,19,24,16,-1,19,34,24,-1,91,191,209,-1,91,68,191,-1,16,33,30,-1,16,24,33,-1,185,69,77,-1,185,157,69,-1,105,32,93,-1,105,31,32,-1,147,108,124,-1,147,103,108,-1,118,126,132,-1,118,117,126,-1,99,80,145,-1,80,99,52,-1,161,137,196,-1,161,102,137,-1,15,67,106,-1,15,12,67,-1,25,36,63,-1,36,25,7,-1,117,115,98,-1,118,115,117,-1,92,84,100,-1,84,92,82,-1,2,106,95,-1,15,106,2,-1,214,206,219,-1,206,214,190,-1,159,53,71,-1,165,53,159,-1,26,179,169,-1,179,26,43,-1,217,211,194,-1,207,211,217,-1,221,197,226,-1,221,204,197,-1,193,259,192,-1,262,259,193,-1,261,171,263,-1,171,261,158,-1,186,264,184,-1,265,264,186,-1,207,221,211,-1,207,204,221,-1,85,123,151,-1,85,83,123,-1,185,88,173,-1,185,77,88,-1,28,13,35,-1,50,13,28,-1,74,151,176,-1,151,74,85,-1,250,239,243,-1,250,247,239,-1,126,100,125,-1,100,126,92,-1,196,147,205,-1,147,196,145,-1,166,177,194,-1,177,166,125,-1,207,164,204,-1,181,164,207,-1,217,181,207,-1,217,215,181,-1,190,182,206,-1,182,190,168,-1,181,146,164,-1,155,146,181,-1,189,190,214,-1,190,189,170,-1,221,219,213,-1,221,226,219,-1,164,116,152,-1,146,116,164,-1,159,214,216,-1,214,159,189,-1,225,226,240,-1,226,225,219,-1,152,94,141,-1,116,94,152,-1,71,112,97,-1,71,87,112,-1,225,222,216,-1,225,241,222,-1,114,198,141,-1,114,202,198,-1,53,87,71,-1,87,53,70,-1,241,231,222,-1,241,248,231,-1,248,229,231,-1,248,253,229,-1,90,193,192,-1,90,78,193,-1,26,42,43,-1,26,41,42,-1,229,258,238,-1,253,258,229,-1,238,162,175,-1,238,237,162,-1,263,258,261,-1,263,260,258,-1,47,184,171,-1,47,60,184,-1,27,60,47,-1,27,18,60,-1,60,186,184,-1,60,65,186,-1,18,65,60,-1,18,39,65,-1,223,139,227,-1,133,139,223,-1,260,264,257,-1,263,264,260,-1,55,171,158,-1,55,47,171,-1,260,238,258,-1,260,237,238,-1,253,261,258,-1,262,261,253,-1,229,175,169,-1,229,238,175,-1,58,78,90,-1,58,48,78,-1,248,262,253,-1,259,262,248,-1,169,231,229,-1,231,169,179,-1,58,114,62,-1,58,90,114,-1,259,241,251,-1,259,248,241,-1,222,179,165,-1,222,231,179,-1,62,141,94,-1,62,114,141,-1,240,241,225,-1,240,251,241,-1,216,165,159,-1,216,222,165,-1,197,141,198,-1,152,141,197,-1,216,219,225,-1,219,216,214,-1,119,97,112,-1,119,104,97,-1,204,152,197,-1,164,152,204,-1,155,215,188,-1,155,181,215,-1,230,188,215,-1,220,188,230,-1,154,161,180,-1,154,142,161,-1,98,81,117,-1,98,73,81,-1,163,125,96,-1,125,163,177,-1,247,224,239,-1,224,247,233,-1,73,63,36,-1,98,63,73,-1,252,233,247,-1,252,228,233,-1,82,89,84,-1,89,82,59,-1,249,247,250,-1,247,249,252,-1,35,11,28,-1,20,11,35,-1,191,255,209,-1,255,191,235,-1,257,237,260,-1,227,237,257,-1,263,184,264,-1,263,171,184,-1,251,192,259,-1,251,202,192,-1,226,198,240,-1,226,197,198,-1,165,43,53,-1,165,179,43,-1,17,169,175,-1,169,17,26,-1,6,175,162,-1,6,17,175,-1,139,0,3,-1,139,133,0,-1,128,170,189,-1,170,128,127,-1,80,98,115,-1,80,63,98,-1,176,96,74,-1,163,96,176,-1,80,25,63,-1,52,25,80,-1,7,15,36,-1,15,7,12,-1,102,142,66,-1,161,142,102,-1,137,145,196,-1,137,99,145,-1,117,92,126,-1,117,81,92,-1,233,167,224,-1,233,156,167,-1,185,245,157,-1,242,245,185,-1,205,199,180,-1,160,199,205,-1,83,91,123,-1,83,57,91,-1,20,1,11,-1,20,8,1,-1,256,228,252,-1,256,242,228,-1,110,208,144,-1,208,110,172,-1,8,14,1,-1,14,8,10,-1,68,57,37,-1,68,91,57,-1,9,1,14,-1,1,9,4,-1,77,8,20,-1,8,77,69,-1,74,100,84,-1,100,74,96,-1,89,83,85,-1,89,44,83,-1,246,209,255,-1,209,246,212,-1,243,230,234,-1,243,239,230,-1,199,224,167,-1,224,199,220,-1,106,66,142,-1,66,106,67,-1,144,49,110,-1,144,61,49,-1,68,144,191,-1,61,144,68,-1,10,19,14,-1,10,21,19,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib11_Geo_5_757_normalIndex_3()
		{
			int[] value = {119,138,122,-1,119,120,138,-1,48,42,41,-1,42,48,58,-1,23,26,17,-1,23,41,26,-1,254,227,257,-1,223,227,254,-1,75,70,54,-1,87,70,75,-1,133,210,113,-1,223,210,133,-1,0,40,39,-1,0,5,40,-1,178,65,64,-1,65,178,186,-1,140,236,244,-1,140,86,236,-1,121,40,5,-1,121,183,40,-1,140,45,86,-1,140,22,45,-1,76,130,101,-1,76,56,130,-1,174,153,111,-1,174,195,153,-1,22,195,45,-1,22,153,195,-1};
			return value;
		}

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

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

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

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib2_Geo_5_769_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,10,11,12,-1,12,13,10,-1,12,14,13,-1,15,16,17,-1,17,18,15,-1,19,20,21,-1,22,23,24,-1,25,26,27,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,34,37,35,-1,34,38,39,-1,39,37,34,-1,40,41,42,-1,42,43,40,-1,44,10,45,-1,46,41,47,-1,1,48,49,-1,1,0,48,-1,8,50,9,-1,8,51,50,-1,52,53,54,-1,54,55,52,-1,56,57,58,-1,57,59,58,-1,60,61,62,-1,63,64,65,-1,65,66,63,-1,67,68,69,-1,68,70,69,-1,65,71,66,-1,65,58,71,-1,72,73,74,-1,75,57,56,-1,76,77,60,-1,78,79,80,-1,81,82,83,-1,82,84,83,-1,85,86,87,-1,86,88,87,-1,89,90,91,-1,89,92,90,-1,93,94,95,-1,95,96,93,-1,97,98,99,-1,99,100,97,-1,101,102,90,-1,90,92,101,-1,95,91,103,-1,103,104,95,-1,85,98,86,-1,85,99,98,-1,105,106,107,-1,106,108,107,-1,109,110,88,-1,110,111,88,-1,112,87,113,-1,112,114,87,-1,115,116,81,-1,115,117,116,-1,118,103,91,-1,91,90,118,-1,119,120,121,-1,119,122,120,-1,123,124,125,-1,123,126,124,-1,127,128,129,-1,127,130,128,-1,131,132,133,-1,131,134,132,-1,62,76,60,-1,135,60,136,-1,36,137,49,-1,36,35,137,-1,138,67,139,-1,139,140,138,-1,55,141,142,-1,142,52,55,-1,39,143,144,-1,144,145,39,-1,137,146,147,-1,147,148,137,-1,149,150,11,-1,11,151,149,-1,152,153,154,-1,152,155,153,-1,156,157,158,-1,156,159,157,-1,160,161,162,-1,160,163,161,-1,164,165,166,-1,167,168,169,-1,170,171,172,-1,173,174,175,-1,176,177,178,-1,176,179,177,-1,0,10,44,-1,0,2,10,-1,11,150,180,-1,181,9,182,-1,181,7,9,-1,183,78,184,-1,78,185,184,-1,186,187,188,-1,186,189,187,-1,190,23,191,-1,190,24,23,-1,192,193,194,-1,192,195,193,-1,196,195,192,-1,196,154,195,-1,188,119,197,-1,188,187,119,-1,198,199,200,-1,198,121,199,-1,201,202,203,-1,201,204,202,-1,8,184,185,-1,8,29,184,-1,205,206,207,-1,205,208,206,-1,207,206,44,-1,44,45,207,-1,13,14,209,-1,18,210,15,-1,18,211,210,-1,212,213,214,-1,212,6,213,-1,157,215,155,-1,157,168,215,-1,108,216,217,-1,216,164,217,-1,132,168,218,-1,132,215,168,-1,158,157,155,-1,155,152,158,-1,108,193,216,-1,108,106,193,-1,219,211,220,-1,219,210,211,-1,221,222,223,-1,221,224,222,-1,147,225,222,-1,147,146,225,-1,226,60,227,-1,228,229,203,-1,203,202,228,-1,38,143,39,-1,38,32,143,-1,230,231,60,-1,135,61,60,-1,23,22,26,-1,22,232,26,-1,133,218,233,-1,133,132,218,-1,234,130,127,-1,234,235,130,-1,236,173,189,-1,236,174,173,-1,121,221,199,-1,121,120,221,-1,64,140,237,-1,66,238,63,-1,66,239,238,-1,82,81,116,-1,116,96,82,-1,240,99,85,-1,240,102,99,-1,241,216,195,-1,216,193,195,-1,105,110,242,-1,110,243,242,-1,244,113,107,-1,113,111,107,-1,110,105,111,-1,105,107,111,-1,245,93,116,-1,93,96,116,-1,246,247,115,-1,115,248,246,-1,115,81,248,-1,81,83,248,-1,136,60,226,-1,60,77,230,-1,249,250,251,-1,251,252,249,-1,77,253,254,-1,77,76,253,-1,255,51,256,-1,51,257,256,-1,258,259,237,-1,54,139,260,-1,260,74,54,-1,75,258,251,-1,258,261,251,-1,202,204,262,-1,227,60,231,-1,30,8,7,-1,0,206,48,-1,0,44,206,-1,45,13,46,-1,45,10,13,-1,263,184,29,-1,263,264,184,-1,265,181,182,-1,265,266,181,-1,137,267,146,-1,137,35,267,-1,268,264,269,-1,270,50,271,-1,270,31,50,-1,101,272,100,-1,101,273,272,-1,26,232,27,-1,179,274,275,-1,276,277,278,-1,278,279,276,-1,280,196,192,-1,192,281,280,-1,192,194,281,-1,194,191,281,-1,245,92,89,-1,180,197,198,-1,198,14,180,-1,71,58,59,-1,8,30,29,-1,270,229,282,-1,5,4,283,-1,151,213,149,-1,151,284,213,-1,285,79,78,-1,79,285,286,-1,148,2,1,-1,148,287,2,-1,272,97,100,-1,272,288,97,-1,273,92,245,-1,273,101,92,-1,124,236,125,-1,174,236,124,-1,279,196,280,-1,279,278,196,-1,289,277,276,-1,289,290,277,-1,290,291,292,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib2_Geo_5_769_coordIndex_2()
		{
			int[] value = {289,291,290,-1,293,15,294,-1,15,293,16,-1,295,186,188,-1,295,296,186,-1,297,17,298,-1,297,18,17,-1,299,171,300,-1,301,171,299,-1,175,302,173,-1,175,178,302,-1,303,304,305,-1,303,306,304,-1,194,106,307,-1,193,106,194,-1,268,308,309,-1,268,269,308,-1,269,43,310,-1,269,264,43,-1,311,35,37,-1,35,311,267,-1,312,309,308,-1,309,312,313,-1,312,146,267,-1,146,312,225,-1,265,314,208,-1,265,315,314,-1,205,316,266,-1,316,205,317,-1,266,28,181,-1,266,316,28,-1,182,315,265,-1,315,182,318,-1,29,316,263,-1,29,28,316,-1,200,14,198,-1,209,14,200,-1,207,317,205,-1,317,207,47,-1,318,32,38,-1,318,33,32,-1,208,48,206,-1,208,314,48,-1,141,73,319,-1,141,55,73,-1,64,138,140,-1,64,63,138,-1,228,74,260,-1,320,74,228,-1,262,250,321,-1,262,57,250,-1,54,140,139,-1,54,53,140,-1,321,202,262,-1,202,321,322,-1,261,237,323,-1,237,261,258,-1,258,56,259,-1,56,258,75,-1,71,255,256,-1,201,255,71,-1,262,59,57,-1,262,204,59,-1,324,325,249,-1,326,325,324,-1,201,271,255,-1,201,203,271,-1,142,227,231,-1,141,227,142,-1,327,136,328,-1,135,136,327,-1,62,253,76,-1,62,324,253,-1,329,77,254,-1,230,77,329,-1,320,72,74,-1,320,330,72,-1,325,322,321,-1,325,331,322,-1,261,252,251,-1,332,252,261,-1,52,323,53,-1,52,333,323,-1,333,254,332,-1,254,333,329,-1,80,185,78,-1,80,257,185,-1,144,334,335,-1,144,336,334,-1,143,31,337,-1,32,31,143,-1,103,338,104,-1,103,339,338,-1,118,114,340,-1,118,240,114,-1,341,246,109,-1,247,246,341,-1,117,245,116,-1,117,273,245,-1,288,342,343,-1,288,272,342,-1,344,345,346,-1,344,347,345,-1,24,344,22,-1,344,24,348,-1,84,349,83,-1,84,347,349,-1,350,351,352,-1,351,350,353,-1,244,354,355,-1,354,244,217,-1,352,112,355,-1,112,352,351,-1,217,107,108,-1,217,244,107,-1,232,350,27,-1,232,346,350,-1,190,242,356,-1,242,190,307,-1,243,109,246,-1,243,110,109,-1,83,357,248,-1,349,357,83,-1,241,154,153,-1,195,154,241,-1,326,331,325,-1,327,331,326,-1,343,86,98,-1,343,341,86,-1,239,79,238,-1,239,80,79,-1,65,237,259,-1,65,64,237,-1,286,238,79,-1,238,286,358,-1,183,309,359,-1,268,309,183,-1,360,221,223,-1,221,360,199,-1,173,187,189,-1,173,361,187,-1,172,234,362,-1,172,235,234,-1,218,363,233,-1,218,170,363,-1,364,26,365,-1,23,26,364,-1,345,339,353,-1,345,338,339,-1,142,333,52,-1,329,333,142,-1,337,270,282,-1,270,337,31,-1,331,328,330,-1,327,328,331,-1,366,285,359,-1,285,366,335,-1,367,222,225,-1,367,223,222,-1,366,311,145,-1,366,313,311,-1,336,68,334,-1,70,68,336,-1,260,229,228,-1,69,229,260,-1,368,214,369,-1,214,368,370,-1,368,221,120,-1,368,224,221,-1,222,371,147,-1,371,222,224,-1,369,287,371,-1,369,284,287,-1,372,5,373,-1,5,372,3,-1,220,374,283,-1,220,211,374,-1,219,375,210,-1,219,376,375,-1,377,375,376,-1,375,377,378,-1,379,132,134,-1,379,215,132,-1,365,166,165,-1,26,166,365,-1,111,87,88,-1,113,87,111,-1,215,153,155,-1,215,379,153,-1,157,169,168,-1,159,169,157,-1,380,163,20,-1,163,380,161,-1,301,305,304,-1,305,301,299,-1,300,20,299,-1,300,380,20,-1,304,235,301,-1,304,130,235,-1,381,173,302,-1,381,361,173,-1,214,381,212,-1,214,370,381,-1,382,6,212,-1,382,4,6,-1,383,219,275,-1,219,383,376,-1,283,179,220,-1,179,283,177,-1,179,384,274,-1,176,384,179,-1,126,385,124,-1,126,386,385,-1,306,130,304,-1,306,128,130,-1,19,383,387,-1,21,383,19,-1,274,303,387,-1,303,274,384,-1,18,374,211,-1,297,374,18,-1,296,372,373,-1,295,372,296,-1,14,11,180,-1,14,12,11,-1,46,209,41,-1,209,46,13,-1,264,40,43,-1,264,263,40,-1,255,50,51,-1,255,271,50,-1,259,58,65,-1,259,56,58,-1,200,360,42,-1,360,200,199,-1,119,198,197,-1,119,121,198,-1,125,298,17,-1,125,236,298,-1,129,16,293,-1,129,123,16,-1,388,234,127,-1,389,234,388,-1,291,363,362,-1,289,363,291,-1,279,233,276,-1,279,133,233,-1,281,131,280,-1,281,364,131,-1,243,356,242,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib2_Geo_5_769_coordIndex_3()
		{
			int[] value = {356,243,357,-1,154,278,152,-1,278,154,196,-1,158,290,156,-1,290,158,277,-1,292,160,162,-1,390,160,292,-1,375,391,294,-1,375,378,391,-1,294,210,375,-1,294,15,210,-1,390,378,160,-1,391,378,390,-1,292,156,290,-1,292,162,156,-1,277,152,278,-1,277,158,152,-1,191,307,190,-1,191,194,307,-1,349,356,357,-1,348,356,349,-1,191,364,281,-1,191,23,364,-1,280,133,279,-1,280,131,133,-1,276,363,289,-1,276,233,363,-1,389,362,234,-1,291,362,389,-1,127,293,388,-1,127,129,293,-1,123,17,16,-1,123,125,17,-1,236,186,298,-1,236,189,186,-1,264,183,184,-1,264,268,183,-1,257,239,256,-1,239,257,80,-1,295,150,372,-1,180,150,295,-1,373,297,296,-1,373,374,297,-1,151,10,2,-1,151,11,10,-1,275,387,383,-1,274,387,275,-1,305,387,303,-1,305,19,387,-1,386,128,306,-1,126,128,386,-1,176,386,384,-1,176,385,386,-1,220,275,219,-1,179,275,220,-1,4,177,283,-1,177,4,382,-1,376,21,377,-1,376,383,21,-1,175,124,385,-1,175,174,124,-1,178,382,302,-1,178,177,382,-1,122,381,370,-1,381,122,361,-1,302,212,381,-1,302,382,212,-1,172,301,235,-1,171,301,172,-1,170,168,167,-1,170,218,168,-1,167,380,300,-1,167,169,380,-1,19,299,20,-1,299,19,305,-1,377,20,163,-1,21,20,377,-1,161,169,159,-1,161,380,169,-1,379,241,153,-1,379,165,241,-1,26,354,166,-1,26,25,354,-1,134,165,379,-1,365,165,134,-1,378,163,160,-1,378,377,163,-1,162,159,156,-1,162,161,159,-1,283,373,5,-1,283,374,373,-1,3,150,149,-1,3,372,150,-1,284,214,213,-1,214,284,369,-1,147,287,148,-1,371,287,147,-1,224,369,371,-1,224,368,369,-1,120,370,368,-1,370,120,122,-1,145,37,39,-1,311,37,145,-1,337,70,336,-1,337,282,70,-1,72,319,73,-1,319,330,328,-1,72,330,319,-1,69,139,67,-1,69,260,139,-1,145,335,366,-1,145,144,335,-1,313,359,309,-1,359,313,366,-1,358,334,68,-1,358,286,334,-1,1,137,148,-1,1,49,137,-1,249,253,324,-1,249,252,253,-1,365,131,364,-1,365,134,131,-1,170,362,363,-1,170,172,362,-1,123,128,126,-1,129,128,123,-1,119,361,122,-1,187,361,119,-1,310,223,367,-1,310,360,223,-1,359,78,183,-1,285,78,359,-1,114,351,340,-1,114,112,351,-1,342,115,247,-1,342,117,115,-1,246,357,243,-1,357,246,248,-1,105,307,106,-1,105,242,307,-1,356,24,190,-1,356,348,24,-1,25,355,354,-1,355,25,352,-1,346,353,350,-1,346,345,353,-1,355,113,244,-1,355,112,113,-1,340,353,339,-1,340,351,353,-1,27,352,25,-1,352,27,350,-1,348,347,344,-1,347,348,349,-1,22,346,232,-1,22,344,346,-1,347,338,345,-1,347,84,338,-1,90,240,118,-1,102,240,90,-1,342,341,343,-1,342,247,341,-1,104,96,95,-1,104,82,96,-1,102,100,99,-1,102,101,100,-1,288,98,97,-1,288,343,98,-1,272,117,342,-1,272,273,117,-1,91,94,89,-1,94,91,95,-1,86,109,88,-1,109,86,341,-1,240,87,114,-1,240,85,87,-1,103,340,339,-1,103,118,340,-1,84,104,338,-1,82,104,84,-1,143,336,144,-1,337,336,143,-1,335,286,285,-1,286,335,334,-1,8,257,51,-1,8,185,257,-1,332,253,252,-1,332,254,253,-1,63,358,138,-1,63,238,358,-1,323,332,261,-1,333,332,323,-1,322,330,320,-1,330,322,331,-1,74,55,54,-1,55,74,73,-1,61,327,326,-1,61,135,327,-1,328,226,319,-1,136,226,328,-1,231,329,142,-1,231,230,329,-1,66,256,239,-1,66,71,256,-1,270,203,229,-1,270,271,203,-1,68,138,358,-1,138,68,67,-1,69,282,229,-1,69,70,282,-1,62,326,324,-1,61,326,62,-1,249,321,250,-1,325,321,249,-1,71,204,201,-1,204,71,59,-1,75,250,57,-1,250,75,251,-1,202,320,228,-1,320,202,322,-1,140,323,237,-1,323,140,53,-1,319,227,141,-1,227,319,226,-1,182,33,318,-1,33,182,9,-1,36,48,314,-1,36,49,48,-1,47,40,317,-1,41,40,47,-1,45,47,207,-1,46,47,45,-1,181,30,7,-1,28,30,181,-1,209,42,41,-1,209,200,42,-1,310,42,360,-1,310,43,42,-1,38,315,318,-1,34,315,38,-1,317,263,316,-1,263,317,40,-1,208,266,265,-1,266,208,205,-1,34,314,315,-1,34,36,314,-1,225,308,367,-1,312,308,225,-1,313,267,311,-1,267,313,312,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib2_Geo_5_769_coordIndex_4()
		{
			int[] value = {269,367,308,-1,269,310,367,-1,33,50,31,-1,33,9,50,-1,217,166,354,-1,217,164,166,-1,165,216,241,-1,165,164,216,-1,384,306,303,-1,384,386,306,-1,178,385,176,-1,175,385,178,-1,167,171,170,-1,171,167,300,-1,188,180,295,-1,180,188,197,-1,298,296,297,-1,296,298,186,-1,294,388,293,-1,388,294,391,-1,389,391,390,-1,389,388,391,-1,389,292,291,-1,389,390,292,-1,94,245,89,-1,245,94,93,-1,6,149,213,-1,149,6,3,-1,284,2,287,-1,2,284,151,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib2_Geo_5_769_normalIndex_1()
		{
			int[] value = {178,195,212,-1,335,377,367,-1,335,370,377,-1,131,172,89,-1,168,175,360,-1,360,182,168,-1,360,153,182,-1,126,133,122,-1,122,109,126,-1,348,362,368,-1,203,184,183,-1,285,271,265,-1,135,173,130,-1,97,77,74,-1,73,101,60,-1,73,105,101,-1,73,66,86,-1,86,105,73,-1,227,232,250,-1,250,256,227,-1,188,168,209,-1,210,232,228,-1,195,111,117,-1,195,178,111,-1,172,118,89,-1,172,199,118,-1,81,186,123,-1,123,71,81,-1,383,263,374,-1,263,301,374,-1,0,14,10,-1,372,381,380,-1,380,366,372,-1,276,247,181,-1,247,144,181,-1,380,311,366,-1,380,374,311,-1,46,62,88,-1,312,263,383,-1,12,6,0,-1,338,355,354,-1,116,79,28,-1,79,48,28,-1,4,19,230,-1,19,273,230,-1,44,33,55,-1,44,51,33,-1,47,39,96,-1,96,161,47,-1,83,3,30,-1,30,85,83,-1,50,42,33,-1,33,51,50,-1,96,55,70,-1,70,100,96,-1,4,3,19,-1,4,30,3,-1,272,264,326,-1,264,310,326,-1,244,275,273,-1,275,341,273,-1,290,230,328,-1,290,208,230,-1,69,191,116,-1,69,142,191,-1,29,70,55,-1,55,33,29,-1,102,269,167,-1,102,225,269,-1,16,200,23,-1,16,220,200,-1,9,197,18,-1,9,217,197,-1,132,242,99,-1,132,258,242,-1,10,12,0,-1,17,0,8,-1,60,158,117,-1,60,101,158,-1,356,276,251,-1,251,298,356,-1,71,40,38,-1,38,81,71,-1,86,75,128,-1,128,174,86,-1,158,219,259,-1,259,216,158,-1,293,193,175,-1,175,255,293,-1,224,339,215,-1,224,364,339,-1,277,384,248,-1,277,388,384,-1,289,387,321,-1,289,390,387,-1,325,318,309,-1,347,340,359,-1,249,314,239,-1,194,198,304,-1,343,376,357,-1,343,373,376,-1,178,168,188,-1,178,212,168,-1,175,193,108,-1,92,89,67,-1,92,131,89,-1,300,338,238,-1,338,262,238,-1,98,68,90,-1,98,43,68,-1,207,184,166,-1,207,183,184,-1,177,243,204,-1,177,223,243,-1,176,223,177,-1,176,215,223,-1,90,102,103,-1,90,68,102,-1,157,260,221,-1,157,167,260,-1,214,138,170,-1,214,229,138,-1,172,238,262,-1,172,173,238,-1,114,124,192,-1,114,56,124,-1,192,124,188,-1,188,209,192,-1,182,153,196,-1,109,236,126,-1,109,240,236,-1,375,345,365,-1,375,370,345,-1,384,330,364,-1,384,340,330,-1,310,322,317,-1,322,325,317,-1,242,340,261,-1,242,330,340,-1,248,384,364,-1,364,224,248,-1,310,243,322,-1,310,264,243,-1,385,240,382,-1,385,236,240,-1,308,299,331,-1,308,307,299,-1,259,274,299,-1,259,219,274,-1,13,0,15,-1,121,154,170,-1,170,138,121,-1,66,75,86,-1,66,77,75,-1,5,7,0,-1,17,14,0,-1,184,203,271,-1,203,226,271,-1,99,261,41,-1,99,242,261,-1,1,217,9,-1,1,234,217,-1,35,194,43,-1,35,198,194,-1,167,308,260,-1,167,269,308,-1,381,298,286,-1,366,363,372,-1,366,351,363,-1,79,116,191,-1,191,161,79,-1,22,30,4,-1,22,42,30,-1,319,322,223,-1,322,243,223,-1,272,275,235,-1,275,245,235,-1,313,328,326,-1,328,341,326,-1,275,272,341,-1,272,326,341,-1,76,47,191,-1,47,161,191,-1,151,52,69,-1,69,65,151,-1,69,116,65,-1,116,28,65,-1,8,0,13,-1,0,6,5,-1,58,120,113,-1,113,37,58,-1,6,24,20,-1,6,12,24,-1,189,199,283,-1,199,284,283,-1,281,386,286,-1,123,251,156,-1,156,88,123,-1,312,281,113,-1,281,78,113,-1,138,229,180,-1,15,0,7,-1,130,172,131,-1,178,124,111,-1,178,188,124,-1,209,182,210,-1,209,168,182,-1,206,238,173,-1,206,253,238,-1,61,92,67,-1,61,87,92,-1,158,185,219,-1,158,101,185,-1,296,253,302,-1,106,118,119,-1,106,97,118,-1,50,115,85,-1,50,82,115,-1,271,226,265,-1,373,352,371,-1,160,164,165,-1,165,146,160,-1,159,176,177,-1,177,152,159,-1,177,204,152,-1,204,166,152,-1,76,51,44,-1,108,103,157,-1,157,153,108,-1,311,374,301,-1,172,130,173,-1,106,154,107,-1,367,377,379,-1,255,345,293,-1,255,287,345,-1,323,355,338,-1,355,323,315,-1,216,212,195,-1,216,246,212,-1,115,83,85,-1,115,110,83,-1,82,51,76,-1,82,50,51,-1,200,35,23,-1,198,35,200,-1,146,176,159,-1,146,165,176,-1,139,164,160,-1,139,150,164,-1,150,155,143,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib2_Geo_5_769_normalIndex_2()
		{
			int[] value = {139,155,150,-1,148,126,137,-1,126,148,133,-1,91,98,90,-1,91,94,98,-1,104,122,112,-1,104,109,122,-1,336,314,346,-1,306,314,336,-1,304,358,194,-1,304,357,358,-1,316,294,324,-1,316,291,294,-1,204,264,222,-1,243,264,204,-1,296,342,344,-1,296,302,342,-1,302,256,303,-1,302,253,256,-1,190,101,105,-1,101,190,185,-1,266,344,342,-1,344,266,268,-1,266,219,185,-1,219,266,274,-1,61,49,56,-1,61,64,49,-1,114,162,87,-1,162,114,202,-1,87,135,92,-1,87,162,135,-1,67,64,61,-1,64,67,59,-1,173,162,206,-1,173,135,162,-1,221,153,157,-1,196,153,221,-1,192,202,114,-1,202,192,228,-1,59,77,66,-1,59,74,77,-1,56,111,124,-1,56,49,111,-1,40,62,27,-1,40,71,62,-1,381,356,298,-1,381,372,356,-1,121,88,156,-1,57,88,121,-1,180,120,93,-1,180,263,120,-1,123,298,251,-1,123,186,298,-1,93,138,180,-1,138,93,84,-1,78,286,125,-1,286,78,281,-1,281,383,386,-1,383,281,312,-1,311,189,283,-1,214,189,311,-1,180,301,263,-1,180,229,301,-1,25,53,58,-1,26,53,25,-1,214,119,189,-1,214,170,119,-1,38,15,7,-1,40,15,38,-1,32,8,21,-1,17,8,32,-1,10,24,12,-1,10,25,24,-1,31,6,20,-1,5,6,31,-1,57,46,88,-1,57,34,46,-1,53,84,93,-1,53,45,84,-1,78,37,113,-1,36,37,78,-1,81,125,186,-1,81,63,125,-1,63,20,36,-1,20,63,31,-1,354,262,338,-1,354,284,262,-1,128,241,237,-1,128,147,241,-1,75,97,95,-1,77,97,75,-1,70,80,100,-1,70,129,80,-1,29,208,187,-1,29,22,208,-1,72,151,244,-1,52,151,72,-1,142,76,191,-1,142,82,76,-1,110,149,54,-1,110,115,149,-1,171,179,205,-1,171,145,179,-1,183,171,203,-1,171,183,169,-1,48,136,28,-1,48,145,136,-1,252,278,279,-1,278,252,233,-1,313,305,295,-1,305,313,317,-1,279,290,295,-1,290,279,278,-1,317,326,310,-1,317,313,326,-1,226,252,265,-1,226,205,252,-1,207,235,218,-1,235,207,222,-1,245,244,151,-1,245,275,244,-1,28,211,65,-1,136,211,28,-1,319,215,339,-1,223,215,319,-1,26,45,53,-1,32,45,26,-1,54,19,3,-1,54,72,19,-1,351,355,363,-1,351,354,355,-1,380,286,386,-1,380,381,286,-1,315,363,355,-1,363,315,334,-1,300,344,333,-1,296,344,300,-1,288,308,331,-1,308,288,260,-1,194,68,43,-1,194,213,68,-1,239,1,2,-1,239,234,1,-1,261,11,41,-1,261,249,11,-1,163,271,267,-1,184,271,163,-1,179,129,233,-1,179,80,129,-1,38,63,81,-1,31,63,38,-1,95,106,107,-1,106,95,97,-1,45,21,34,-1,32,21,45,-1,257,323,333,-1,323,257,237,-1,337,299,274,-1,337,331,299,-1,257,190,174,-1,257,268,190,-1,147,247,241,-1,144,247,147,-1,156,154,121,-1,181,154,156,-1,332,365,329,-1,365,332,353,-1,332,308,269,-1,332,307,308,-1,299,280,259,-1,280,299,307,-1,329,246,280,-1,329,287,246,-1,201,367,231,-1,367,201,335,-1,382,254,379,-1,382,240,254,-1,385,270,236,-1,385,389,270,-1,391,270,389,-1,270,391,282,-1,320,242,258,-1,320,330,242,-1,267,309,318,-1,271,309,267,-1,341,230,273,-1,328,230,341,-1,330,339,364,-1,330,320,339,-1,384,359,340,-1,388,359,384,-1,361,390,362,-1,390,361,387,-1,306,324,294,-1,324,306,336,-1,346,362,336,-1,346,361,362,-1,294,234,306,-1,294,217,234,-1,350,194,358,-1,350,213,194,-1,365,350,375,-1,365,353,350,-1,378,370,375,-1,378,377,370,-1,369,385,371,-1,385,369,389,-1,379,373,382,-1,373,379,376,-1,373,327,352,-1,343,327,373,-1,220,297,200,-1,220,292,297,-1,291,217,294,-1,291,197,217,-1,348,369,349,-1,368,369,348,-1,352,316,349,-1,316,352,327,-1,109,254,240,-1,104,254,109,-1,94,201,231,-1,91,201,94,-1,153,175,108,-1,153,360,175,-1,210,196,232,-1,196,210,182,-1,253,227,256,-1,253,206,227,-1,189,118,199,-1,189,119,118,-1,386,374,380,-1,386,383,374,-1,221,288,250,-1,288,221,260,-1,102,157,103,-1,102,167,157,-1,23,112,122,-1,23,35,112,-1,18,133,148,-1,18,16,133,-1,141,1,9,-1,140,1,141,-1,155,11,2,-1,139,11,155,-1,146,41,160,-1,146,99,41,-1,152,132,159,-1,152,163,132,-1,245,218,235,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib2_Geo_5_769_normalIndex_3()
		{
			int[] value = {218,245,211,-1,215,165,224,-1,165,215,176,-1,248,150,277,-1,150,248,164,-1,143,289,321,-1,127,289,143,-1,270,134,137,-1,270,282,134,-1,137,236,270,-1,137,126,236,-1,127,282,289,-1,134,282,127,-1,143,277,150,-1,143,321,277,-1,164,224,165,-1,164,248,224,-1,166,222,207,-1,166,204,222,-1,136,218,211,-1,169,218,136,-1,166,163,152,-1,166,184,163,-1,159,99,146,-1,159,132,99,-1,160,11,139,-1,160,41,11,-1,140,2,1,-1,155,2,140,-1,9,148,141,-1,9,18,148,-1,16,122,133,-1,16,23,122,-1,35,98,112,-1,35,43,98,-1,253,300,238,-1,253,296,300,-1,284,351,283,-1,351,284,354,-1,91,193,201,-1,108,193,91,-1,231,104,94,-1,231,254,104,-1,255,168,212,-1,255,175,168,-1,371,349,369,-1,352,349,371,-1,324,349,316,-1,324,348,349,-1,292,197,291,-1,220,197,292,-1,343,292,327,-1,343,297,292,-1,382,371,385,-1,373,371,382,-1,377,376,379,-1,376,377,378,-1,389,368,391,-1,389,369,368,-1,304,200,297,-1,304,198,200,-1,357,378,358,-1,357,376,378,-1,225,350,353,-1,350,225,213,-1,358,375,350,-1,358,378,375,-1,239,306,234,-1,314,306,239,-1,249,340,347,-1,249,261,340,-1,347,361,346,-1,347,359,361,-1,348,336,362,-1,336,348,324,-1,391,362,390,-1,368,362,391,-1,387,359,388,-1,387,361,359,-1,320,319,339,-1,320,318,319,-1,271,305,309,-1,271,285,305,-1,258,318,320,-1,267,318,258,-1,282,390,289,-1,282,391,390,-1,321,388,277,-1,321,387,388,-1,379,231,367,-1,379,254,231,-1,335,193,293,-1,335,201,193,-1,287,365,345,-1,365,287,329,-1,259,246,216,-1,280,246,259,-1,307,329,280,-1,307,332,329,-1,269,353,332,-1,353,269,225,-1,174,105,86,-1,190,105,174,-1,95,144,147,-1,95,107,144,-1,46,27,62,-1,27,34,21,-1,46,34,27,-1,181,251,276,-1,181,156,251,-1,174,237,257,-1,174,128,237,-1,268,333,344,-1,333,268,257,-1,334,241,247,-1,334,315,241,-1,195,158,216,-1,195,117,158,-1,58,24,25,-1,58,37,24,-1,267,132,163,-1,267,258,132,-1,249,2,11,-1,249,239,2,-1,16,197,220,-1,18,197,16,-1,102,213,225,-1,68,213,102,-1,303,331,337,-1,303,288,331,-1,333,338,300,-1,323,338,333,-1,208,278,187,-1,208,290,278,-1,149,69,52,-1,149,142,69,-1,151,211,245,-1,211,151,65,-1,272,222,264,-1,272,235,222,-1,218,183,207,-1,218,169,183,-1,285,295,305,-1,295,285,279,-1,205,233,252,-1,205,179,233,-1,295,328,313,-1,295,290,328,-1,187,233,129,-1,187,278,233,-1,265,279,285,-1,279,265,252,-1,169,145,171,-1,145,169,136,-1,203,205,226,-1,203,171,205,-1,145,80,179,-1,145,48,80,-1,33,22,29,-1,42,22,33,-1,149,72,54,-1,149,52,72,-1,100,161,96,-1,100,79,161,-1,42,85,30,-1,42,50,85,-1,110,3,83,-1,110,54,3,-1,115,142,149,-1,115,82,142,-1,55,39,44,-1,39,55,96,-1,19,244,273,-1,244,19,72,-1,22,230,208,-1,22,4,230,-1,70,187,129,-1,70,29,187,-1,48,100,80,-1,79,100,48,-1,75,147,128,-1,95,147,75,-1,237,315,323,-1,315,237,241,-1,172,284,199,-1,172,262,284,-1,36,24,37,-1,36,20,24,-1,372,334,356,-1,372,363,334,-1,125,36,78,-1,63,36,125,-1,84,34,57,-1,34,84,45,-1,88,71,123,-1,71,88,62,-1,14,32,26,-1,14,17,32,-1,21,13,27,-1,8,13,21,-1,7,31,38,-1,7,5,31,-1,366,283,351,-1,366,311,283,-1,106,170,154,-1,106,119,170,-1,247,356,334,-1,356,247,276,-1,181,107,154,-1,181,144,107,-1,10,26,25,-1,14,26,10,-1,58,93,120,-1,53,93,58,-1,311,229,214,-1,229,311,301,-1,312,120,263,-1,120,312,113,-1,138,57,121,-1,57,138,84,-1,298,125,286,-1,125,298,186,-1,27,15,40,-1,15,27,13,-1,67,74,59,-1,74,67,89,-1,60,111,49,-1,60,117,111,-1,228,227,202,-1,232,227,228,-1,209,228,192,-1,210,228,209,-1,92,130,131,-1,135,130,92,-1,196,250,232,-1,196,221,250,-1,303,250,288,-1,303,256,250,-1,66,64,59,-1,73,64,66,-1,202,206,162,-1,206,202,227,-1,56,87,61,-1,87,56,114,-1,73,49,64,-1,73,60,49,-1,274,342,337,-1,266,342,274,-1,268,185,190,-1,185,268,266,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib2_Geo_5_769_normalIndex_4()
		{
			int[] value = {302,337,342,-1,302,303,337,-1,74,118,97,-1,74,89,118,-1,317,309,305,-1,317,325,309,-1,318,322,319,-1,318,325,322,-1,327,291,316,-1,327,292,291,-1,357,297,343,-1,304,297,357,-1,347,314,249,-1,314,347,346,-1,90,108,91,-1,108,90,103,-1,112,94,104,-1,94,112,98,-1,137,141,148,-1,141,137,134,-1,140,134,127,-1,140,141,134,-1,140,143,155,-1,140,127,143,-1,39,76,44,-1,76,39,47,-1,370,293,345,-1,293,370,335,-1,287,212,246,-1,212,287,255,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib3_Geo_5_775_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,5,6,3,-1,7,8,9,-1,10,11,12,-1,13,14,15,-1,15,16,17,-1,17,13,15,-1,18,19,20,-1,19,21,20,-1,22,23,19,-1,24,25,26,-1,24,27,25,-1,28,29,30,-1,28,31,29,-1,32,33,34,-1,34,35,32,-1,36,37,38,-1,37,39,38,-1,40,41,42,-1,41,43,42,-1,44,45,46,-1,47,37,36,-1,36,48,47,-1,49,50,51,-1,50,52,51,-1,53,54,55,-1,53,56,54,-1,57,58,59,-1,59,60,57,-1,61,62,46,-1,46,63,61,-1,64,65,66,-1,67,66,68,-1,44,66,69,-1,6,70,71,-1,71,3,6,-1,72,23,22,-1,73,74,75,-1,75,76,73,-1,77,27,24,-1,24,78,77,-1,79,80,81,-1,81,82,79,-1,79,83,84,-1,85,86,87,-1,85,88,86,-1,89,87,90,-1,90,91,89,-1,92,93,94,-1,95,96,97,-1,98,99,100,-1,98,101,99,-1,102,103,104,-1,102,105,103,-1,96,106,107,-1,96,108,106,-1,102,109,110,-1,102,53,109,-1,111,23,112,-1,112,113,111,-1,114,115,116,-1,116,117,114,-1,118,119,120,-1,118,121,119,-1,122,123,124,-1,123,125,124,-1,7,126,127,-1,128,129,130,-1,128,131,129,-1,132,133,134,-1,134,135,132,-1,136,137,138,-1,138,139,136,-1,140,141,142,-1,142,143,140,-1,144,145,146,-1,146,147,144,-1,148,149,150,-1,150,151,148,-1,150,152,153,-1,150,149,152,-1,154,153,152,-1,154,155,153,-1,156,157,158,-1,159,160,161,-1,161,162,159,-1,163,164,165,-1,163,166,164,-1,167,168,169,-1,170,171,172,-1,170,173,171,-1,174,175,176,-1,174,177,175,-1,178,179,176,-1,176,21,178,-1,180,181,182,-1,181,183,182,-1,103,184,185,-1,103,186,184,-1,99,187,100,-1,187,188,100,-1,189,190,191,-1,192,193,194,-1,195,196,197,-1,198,199,200,-1,201,116,121,-1,121,202,201,-1,190,203,204,-1,205,206,207,-1,206,208,207,-1,194,209,202,-1,210,211,190,-1,212,153,213,-1,212,150,153,-1,211,214,190,-1,215,180,216,-1,215,217,180,-1,218,219,220,-1,218,221,219,-1,222,223,224,-1,224,225,222,-1,226,120,119,-1,119,227,226,-1,228,229,220,-1,220,219,228,-1,230,231,232,-1,231,197,232,-1,233,200,117,-1,200,234,117,-1,206,235,236,-1,206,205,235,-1,134,133,237,-1,133,238,237,-1,78,239,240,-1,240,77,78,-1,241,242,243,-1,243,244,241,-1,245,246,247,-1,246,248,247,-1,10,249,250,-1,10,12,249,-1,251,172,171,-1,177,29,26,-1,26,25,177,-1,252,253,254,-1,254,255,252,-1,256,257,258,-1,258,259,256,-1,13,260,14,-1,261,262,250,-1,262,263,250,-1,264,132,135,-1,135,265,264,-1,266,140,143,-1,238,267,237,-1,268,269,143,-1,268,270,269,-1,271,245,272,-1,271,246,245,-1,126,273,274,-1,126,248,273,-1,273,275,274,-1,275,276,274,-1,277,278,279,-1,278,280,279,-1,274,276,281,-1,276,282,281,-1,283,284,280,-1,283,285,284,-1,286,287,285,-1,285,283,286,-1,288,289,290,-1,288,291,289,-1,254,292,293,-1,254,170,292,-1,289,32,290,-1,32,294,290,-1,2,295,0,-1,295,252,0,-1,167,169,49,-1,173,170,296,-1,297,298,1,-1,1,0,297,-1,48,50,299,-1,50,300,299,-1,301,5,28,-1,28,83,301,-1,300,63,299,-1,300,61,63,-1,66,44,64,-1,302,295,303,-1,303,73,302,-1,23,178,21,-1,21,19,23,-1,48,299,304,-1,304,47,48,-1,305,306,307,-1,306,308,307,-1,111,91,90,-1,111,113,91,-1,309,310,95,-1,104,185,311,-1,104,103,185,-1,312,182,313,-1,312,314,182,-1,315,316,317,-1,203,190,318,-1,319,190,320,-1,321,190,322,-1,214,322,190,-1,189,320,190,-1,323,324,236,-1,324,325,236,-1,217,215,311,-1,311,326,217,-1,223,187,99,-1,99,224,223,-1,81,327,328,-1,327,86,328,-1,329,94,91,-1,91,113,329,-1,112,330,306,-1,306,305,112,-1,331,332,39,-1,332,38,39,-1,178,23,111,-1,111,333,178,-1,19,18,22,-1,18,334,22,-1,30,84,83,-1,30,174,84,-1,71,335,336,-1,71,70,335,-1,337,306,298,-1,337,308,306,-1,32,35,297,-1,294,0,255,-1,0,252,255,-1,251,167,172,-1,251,168,167,-1,290,294,255,-1,338,339,340,-1,338,341,339,-1,241,291,342,-1,343,288,259,-1,288,256,259,-1,344,340,345,-1,344,338,340,-1,283,278,345,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib3_Geo_5_775_coordIndex_2()
		{
			int[] value = {283,280,278,-1,344,346,347,-1,344,348,346,-1,276,275,349,-1,349,342,276,-1,350,351,352,-1,350,353,351,-1,279,284,354,-1,279,280,284,-1,355,356,9,-1,355,357,356,-1,7,247,248,-1,248,126,7,-1,272,358,359,-1,272,245,358,-1,360,361,362,-1,363,277,268,-1,277,270,268,-1,364,268,143,-1,143,142,364,-1,365,353,350,-1,365,366,353,-1,367,368,369,-1,367,370,368,-1,371,372,151,-1,372,148,151,-1,28,4,31,-1,28,5,4,-1,259,258,352,-1,352,351,259,-1,190,321,373,-1,169,61,300,-1,69,67,58,-1,58,57,69,-1,60,3,71,-1,60,374,3,-1,60,59,374,-1,354,273,248,-1,248,246,354,-1,332,331,375,-1,331,376,375,-1,95,310,377,-1,310,378,377,-1,1,72,2,-1,1,330,72,-1,257,293,379,-1,293,292,379,-1,352,258,346,-1,258,347,346,-1,380,365,142,-1,365,364,142,-1,138,372,129,-1,138,381,372,-1,382,383,384,-1,385,386,387,-1,387,388,385,-1,235,323,236,-1,235,389,323,-1,390,183,384,-1,384,391,390,-1,54,215,216,-1,54,56,215,-1,217,181,180,-1,217,392,181,-1,230,386,382,-1,230,232,386,-1,393,394,395,-1,395,325,393,-1,396,397,17,-1,191,190,204,-1,398,119,115,-1,398,227,119,-1,206,395,208,-1,395,399,208,-1,100,188,399,-1,400,202,209,-1,400,201,202,-1,389,401,114,-1,190,373,318,-1,234,402,389,-1,401,389,235,-1,398,401,403,-1,404,387,386,-1,198,405,318,-1,123,192,118,-1,192,194,118,-1,190,319,210,-1,406,407,387,-1,408,391,409,-1,408,221,391,-1,180,182,314,-1,314,216,180,-1,20,21,176,-1,176,175,20,-1,25,410,175,-1,175,177,25,-1,240,173,296,-1,296,411,240,-1,293,412,255,-1,255,254,293,-1,295,302,253,-1,253,252,295,-1,413,12,414,-1,413,249,12,-1,249,413,415,-1,415,416,249,-1,417,165,418,-1,165,164,418,-1,260,419,14,-1,260,420,419,-1,421,422,423,-1,421,424,422,-1,425,416,415,-1,425,426,416,-1,427,160,159,-1,427,428,160,-1,166,425,423,-1,423,422,166,-1,16,212,396,-1,16,429,212,-1,430,162,161,-1,430,431,162,-1,432,263,262,-1,432,433,263,-1,434,435,436,-1,436,437,434,-1,438,381,439,-1,438,440,381,-1,441,155,154,-1,441,442,155,-1,443,359,444,-1,140,238,141,-1,140,144,238,-1,445,264,265,-1,445,446,264,-1,447,370,367,-1,448,449,450,-1,450,451,448,-1,7,127,452,-1,452,8,7,-1,385,388,315,-1,388,316,315,-1,120,123,118,-1,120,125,123,-1,121,116,115,-1,115,119,121,-1,114,117,234,-1,234,389,114,-1,382,386,385,-1,453,454,110,-1,110,109,453,-1,79,82,455,-1,329,112,305,-1,329,113,112,-1,108,377,55,-1,377,456,55,-1,85,100,394,-1,85,98,100,-1,88,394,393,-1,88,85,394,-1,457,458,459,-1,82,81,328,-1,328,460,82,-1,73,303,74,-1,303,334,74,-1,18,20,461,-1,374,59,462,-1,462,239,374,-1,66,67,69,-1,65,68,66,-1,58,462,59,-1,58,463,462,-1,109,53,464,-1,45,63,46,-1,45,465,63,-1,456,378,466,-1,456,377,378,-1,42,51,40,-1,51,467,40,-1,37,466,39,-1,466,378,39,-1,54,216,106,-1,307,375,376,-1,307,308,375,-1,24,26,468,-1,29,31,468,-1,468,26,29,-1,83,28,30,-1,16,396,17,-1,421,414,427,-1,9,448,355,-1,9,8,448,-1,368,469,369,-1,368,380,469,-1,366,281,353,-1,366,470,281,-1,349,287,242,-1,349,285,287,-1,301,6,5,-1,342,242,241,-1,342,349,242,-1,457,301,455,-1,457,6,301,-1,43,340,339,-1,286,340,43,-1,368,470,366,-1,368,370,470,-1,281,351,353,-1,281,282,351,-1,451,355,448,-1,355,451,471,-1,472,424,473,-1,472,422,424,-1,474,421,423,-1,474,475,421,-1,410,74,461,-1,75,74,410,-1,375,337,476,-1,308,337,375,-1,477,376,309,-1,477,307,376,-1,478,479,480,-1,479,478,97,-1,312,481,482,-1,225,481,312,-1,96,377,108,-1,377,96,95,-1,106,55,54,-1,55,106,108,-1,51,483,467,-1,51,52,483,-1,299,465,336,-1,299,63,465,-1,456,484,464,-1,484,456,466,-1,464,453,109,-1,453,464,484,-1,67,463,58,-1,67,68,463,-1,61,168,62,-1,61,169,168,-1,460,485,186,-1,460,328,485,-1,82,105,458,-1,82,460,105,-1,393,485,88,-1,485,393,486,-1,478,95,97,-1,478,487,95,-1,225,488,481,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib3_Geo_5_775_coordIndex_3()
		{
			int[] value = {488,225,224,-1,477,94,329,-1,477,480,94,-1,331,378,310,-1,378,331,39,-1,80,327,81,-1,80,333,327,-1,459,110,454,-1,459,458,110,-1,234,199,402,-1,234,200,199,-1,383,391,384,-1,383,409,391,-1,489,388,490,-1,489,316,388,-1,8,449,448,-1,8,452,449,-1,451,491,492,-1,451,450,491,-1,493,494,495,-1,493,496,494,-1,496,497,492,-1,437,497,496,-1,11,493,498,-1,11,434,493,-1,264,447,367,-1,446,447,264,-1,445,499,500,-1,445,265,499,-1,501,502,503,-1,504,502,501,-1,504,494,502,-1,504,495,494,-1,505,438,506,-1,505,440,438,-1,238,147,267,-1,144,147,238,-1,507,444,362,-1,507,443,444,-1,361,508,509,-1,508,361,510,-1,441,157,511,-1,441,154,157,-1,512,146,513,-1,512,156,146,-1,509,511,512,-1,509,508,511,-1,381,137,439,-1,137,381,138,-1,135,499,265,-1,135,136,499,-1,438,237,267,-1,438,439,237,-1,491,502,494,-1,500,502,491,-1,514,433,515,-1,514,436,433,-1,360,510,361,-1,360,432,510,-1,433,435,263,-1,433,436,435,-1,432,516,510,-1,432,262,516,-1,151,212,429,-1,151,150,212,-1,128,430,517,-1,128,420,430,-1,425,163,426,-1,166,163,425,-1,498,160,428,-1,498,518,160,-1,519,416,426,-1,519,261,416,-1,474,425,415,-1,423,425,474,-1,475,414,421,-1,414,475,413,-1,430,260,431,-1,430,420,260,-1,17,418,520,-1,418,17,397,-1,153,417,213,-1,155,417,153,-1,521,14,419,-1,521,15,14,-1,213,396,212,-1,213,397,396,-1,414,428,427,-1,12,428,414,-1,292,172,341,-1,292,170,172,-1,77,411,76,-1,77,240,411,-1,80,84,179,-1,80,79,84,-1,461,175,410,-1,461,20,175,-1,314,106,216,-1,107,106,314,-1,522,523,524,-1,522,226,523,-1,525,228,526,-1,229,228,525,-1,225,313,222,-1,225,312,313,-1,391,218,390,-1,221,218,391,-1,317,408,409,-1,527,408,317,-1,490,387,407,-1,490,388,387,-1,210,406,387,-1,319,406,210,-1,406,320,528,-1,406,319,320,-1,191,209,194,-1,209,191,204,-1,405,203,318,-1,405,400,203,-1,318,199,198,-1,199,318,373,-1,232,404,386,-1,529,404,232,-1,227,403,530,-1,227,398,403,-1,531,524,532,-1,531,522,524,-1,315,409,383,-1,315,317,409,-1,403,235,205,-1,403,401,235,-1,523,207,526,-1,523,530,207,-1,408,219,221,-1,408,532,219,-1,486,533,184,-1,533,486,324,-1,402,323,389,-1,402,534,323,-1,114,398,115,-1,401,398,114,-1,201,117,116,-1,233,117,201,-1,98,87,89,-1,85,87,98,-1,394,399,395,-1,100,399,394,-1,199,321,195,-1,199,373,321,-1,407,528,535,-1,407,406,528,-1,404,214,211,-1,214,404,529,-1,87,327,90,-1,87,86,327,-1,392,382,181,-1,392,230,382,-1,122,407,535,-1,490,407,122,-1,325,206,236,-1,325,395,206,-1,399,525,208,-1,188,525,399,-1,534,536,537,-1,534,402,536,-1,230,538,231,-1,392,538,230,-1,122,192,123,-1,192,122,535,-1,371,129,372,-1,371,130,129,-1,380,141,469,-1,380,142,141,-1,365,539,364,-1,365,350,539,-1,258,379,347,-1,258,257,379,-1,346,350,352,-1,350,346,539,-1,302,296,253,-1,296,302,411,-1,70,454,335,-1,70,459,454,-1,476,540,541,-1,476,34,540,-1,540,33,542,-1,540,34,33,-1,285,275,284,-1,275,285,349,-1,356,543,358,-1,543,356,357,-1,515,544,514,-1,515,545,544,-1,250,435,10,-1,250,263,435,-1,419,128,130,-1,420,128,419,-1,155,165,417,-1,165,155,442,-1,428,11,498,-1,12,11,428,-1,475,415,413,-1,474,415,475,-1,166,472,164,-1,166,422,472,-1,336,304,299,-1,336,335,304,-1,45,69,57,-1,45,44,69,-1,463,65,546,-1,68,65,463,-1,537,533,534,-1,537,547,533,-1,72,295,2,-1,295,72,303,-1,4,468,31,-1,4,548,468,-1,162,549,473,-1,162,431,549,-1,550,441,551,-1,442,441,550,-1,517,131,128,-1,517,501,131,-1,264,369,132,-1,369,264,367,-1,380,366,365,-1,366,380,368,-1,539,268,364,-1,268,539,363,-1,511,551,441,-1,511,508,551,-1,552,266,553,-1,266,552,145,-1,277,271,270,-1,271,277,279,-1,272,553,269,-1,359,553,272,-1,513,443,507,-1,443,513,552,-1,360,545,515,-1,362,545,360,-1,358,444,359,-1,358,543,444,-1,247,9,356,-1,7,9,247,-1,471,357,355,-1,471,544,357,-1,500,450,445,-1,500,491,450,-1,452,446,449,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib3_Geo_5_775_coordIndex_4()
		{
			int[] value = {452,447,446,-1,127,470,370,-1,126,470,127,-1,346,363,539,-1,346,348,363,-1,282,259,351,-1,282,343,259,-1,344,278,348,-1,345,278,344,-1,344,379,338,-1,347,379,344,-1,342,288,343,-1,342,291,288,-1,41,286,43,-1,41,287,286,-1,292,338,379,-1,292,341,338,-1,243,287,41,-1,287,243,242,-1,339,42,43,-1,339,167,42,-1,297,294,32,-1,297,0,294,-1,306,1,298,-1,306,330,1,-1,483,332,541,-1,483,38,332,-1,3,548,4,-1,3,374,548,-1,6,459,70,-1,6,457,459,-1,30,177,174,-1,177,30,29,-1,95,478,309,-1,95,487,478,-1,104,215,56,-1,104,311,215,-1,93,488,101,-1,93,92,488,-1,325,486,393,-1,324,486,325,-1,390,182,183,-1,390,313,182,-1,538,547,537,-1,538,326,547,-1,392,326,538,-1,392,217,326,-1,522,124,125,-1,522,531,124,-1,326,185,547,-1,185,326,311,-1,97,107,482,-1,97,96,107,-1,484,304,453,-1,484,47,304,-1,335,453,304,-1,335,454,453,-1,462,171,239,-1,171,462,251,-1,168,546,62,-1,546,168,251,-1,78,374,239,-1,78,548,374,-1,169,50,49,-1,169,300,50,-1,467,541,540,-1,467,483,541,-1,297,337,298,-1,35,337,297,-1,40,540,542,-1,40,467,540,-1,244,32,289,-1,244,33,32,-1,412,290,255,-1,290,412,554,-1,341,167,339,-1,341,172,167,-1,542,41,40,-1,41,542,243,-1,241,289,291,-1,244,289,241,-1,256,554,412,-1,256,290,554,-1,288,290,256,-1,276,343,282,-1,276,342,343,-1,348,277,363,-1,348,278,277,-1,281,126,274,-1,126,281,470,-1,447,127,370,-1,127,447,452,-1,449,445,450,-1,446,445,449,-1,497,544,471,-1,544,497,514,-1,279,246,271,-1,279,354,246,-1,362,543,545,-1,444,543,362,-1,359,552,553,-1,359,443,552,-1,269,271,272,-1,269,270,271,-1,143,553,266,-1,143,269,553,-1,145,513,146,-1,145,552,513,-1,381,148,372,-1,381,440,148,-1,140,145,144,-1,145,140,266,-1,503,131,501,-1,131,503,139,-1,518,504,555,-1,495,504,518,-1,516,550,551,-1,550,516,519,-1,434,10,435,-1,10,434,11,-1,421,159,424,-1,421,427,159,-1,112,72,330,-1,112,23,72,-1,257,412,293,-1,256,412,257,-1,547,184,533,-1,547,185,184,-1,462,546,251,-1,463,546,462,-1,336,60,71,-1,465,60,336,-1,520,164,472,-1,520,418,164,-1,521,130,371,-1,521,419,130,-1,550,165,442,-1,550,163,165,-1,371,429,521,-1,151,429,371,-1,160,555,161,-1,160,518,555,-1,357,545,543,-1,544,545,357,-1,416,250,249,-1,250,416,261,-1,284,273,354,-1,273,284,275,-1,358,247,356,-1,358,245,247,-1,375,541,332,-1,375,476,541,-1,243,33,244,-1,243,542,33,-1,171,240,239,-1,240,171,173,-1,170,253,296,-1,254,253,170,-1,469,238,133,-1,469,141,238,-1,187,220,229,-1,187,223,220,-1,536,197,231,-1,536,195,197,-1,402,195,536,-1,402,199,195,-1,231,537,536,-1,538,537,231,-1,208,526,207,-1,525,526,208,-1,194,121,118,-1,194,202,121,-1,479,488,92,-1,479,481,488,-1,223,218,220,-1,222,218,223,-1,531,489,124,-1,527,489,531,-1,214,196,322,-1,214,529,196,-1,211,387,404,-1,211,210,387,-1,535,193,192,-1,528,193,535,-1,405,200,233,-1,200,405,198,-1,195,322,196,-1,321,322,195,-1,400,233,201,-1,400,405,233,-1,534,324,323,-1,534,533,324,-1,385,383,382,-1,315,383,385,-1,228,532,524,-1,228,219,532,-1,530,205,207,-1,530,403,205,-1,532,527,531,-1,408,527,532,-1,226,530,523,-1,226,227,530,-1,197,529,232,-1,196,529,197,-1,204,400,209,-1,400,204,203,-1,528,189,193,-1,528,320,189,-1,193,191,194,-1,193,189,191,-1,527,316,489,-1,527,317,316,-1,222,390,218,-1,222,313,390,-1,101,89,93,-1,101,98,89,-1,188,229,525,-1,187,229,188,-1,524,526,228,-1,524,523,526,-1,226,125,120,-1,522,125,226,-1,384,181,382,-1,181,384,183,-1,302,76,411,-1,302,73,76,-1,179,333,80,-1,178,333,179,-1,176,84,174,-1,84,176,179,-1,429,15,521,-1,429,16,15,-1,473,159,162,-1,473,424,159,-1,213,418,397,-1,417,418,213,-1,431,13,549,-1,431,260,13,-1,517,161,555,-1,161,517,430,-1,426,550,519,-1,163,550,426,-1,515,432,360,-1,515,433,432,-1,437,514,497,-1,437,436,514,-1,507,512,513,-1,507,509,512,-1,439,134,237,-1,439,137,134,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlrib3_Geo_5_775_coordIndex_5()
		{
			int[] value = {499,139,503,-1,136,139,499,-1,262,519,516,-1,519,262,261,-1,511,156,512,-1,511,157,156,-1,158,154,152,-1,157,154,158,-1,505,152,149,-1,505,158,152,-1,158,506,156,-1,506,158,505,-1,156,147,146,-1,506,147,156,-1,510,551,508,-1,551,510,516,-1,362,509,507,-1,509,362,361,-1,267,506,438,-1,147,506,267,-1,149,440,505,-1,149,148,440,-1,138,131,139,-1,131,138,129,-1,134,136,135,-1,136,134,137,-1,133,369,469,-1,132,369,133,-1,555,501,517,-1,555,504,501,-1,500,503,502,-1,500,499,503,-1,434,496,493,-1,434,437,496,-1,495,498,493,-1,498,495,518,-1,494,492,491,-1,496,492,494,-1,490,124,489,-1,490,122,124,-1,333,90,327,-1,333,111,90,-1,310,376,331,-1,310,309,376,-1,458,102,110,-1,105,102,458,-1,56,102,104,-1,56,53,102,-1,101,224,99,-1,101,488,224,-1,482,314,312,-1,482,107,314,-1,92,480,479,-1,480,92,94,-1,94,89,91,-1,93,89,94,-1,186,486,184,-1,186,485,486,-1,88,328,86,-1,88,485,328,-1,105,186,103,-1,460,186,105,-1,24,548,78,-1,548,24,468,-1,76,27,77,-1,76,75,27,-1,455,83,79,-1,455,301,83,-1,65,62,546,-1,65,64,62,-1,64,46,62,-1,64,44,46,-1,465,57,60,-1,465,45,57,-1,51,167,49,-1,167,51,42,-1,50,36,52,-1,50,48,36,-1,466,47,484,-1,47,466,37,-1,55,464,53,-1,464,55,456,-1,52,38,483,-1,52,36,38,-1,307,329,305,-1,477,329,307,-1,482,479,97,-1,481,479,482,-1,480,309,478,-1,480,477,309,-1,476,35,34,-1,337,35,476,-1,75,25,27,-1,75,410,25,-1,334,461,74,-1,18,461,334,-1,72,334,303,-1,72,22,334,-1,473,520,472,-1,473,549,520,-1,549,17,520,-1,17,549,13,-1,492,471,451,-1,471,492,497,-1,340,283,345,-1,283,340,286,-1,458,455,82,-1,458,457,455,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib3_Geo_5_775_normalIndex_1()
		{
			int[] value = {242,276,251,-1,150,221,104,-1,104,121,150,-1,47,71,77,-1,78,96,12,-1,227,147,68,-1,68,54,9,-1,9,227,68,-1,262,213,98,-1,213,79,98,-1,311,291,213,-1,345,273,218,-1,345,375,273,-1,82,110,59,-1,82,202,110,-1,301,332,350,-1,350,330,301,-1,352,295,409,-1,295,387,409,-1,404,432,392,-1,432,436,392,-1,328,266,324,-1,247,295,352,-1,352,318,247,-1,389,394,388,-1,394,402,388,-1,278,300,286,-1,278,302,300,-1,211,293,209,-1,209,108,211,-1,403,372,324,-1,324,305,403,-1,338,355,346,-1,356,346,370,-1,328,346,329,-1,121,171,138,-1,138,150,121,-1,353,291,311,-1,325,359,377,-1,377,380,325,-1,450,375,345,-1,345,415,450,-1,73,43,70,-1,70,103,73,-1,73,66,55,-1,258,122,212,-1,258,170,122,-1,366,212,99,-1,99,316,366,-1,449,424,417,-1,446,443,457,-1,390,431,395,-1,390,425,431,-1,267,195,263,-1,267,177,195,-1,443,363,447,-1,443,358,363,-1,267,257,253,-1,267,278,257,-1,175,291,386,-1,386,354,175,-1,193,274,67,-1,67,64,193,-1,254,422,523,-1,254,145,422,-1,426,348,547,-1,348,543,547,-1,47,31,51,-1,173,308,297,-1,173,201,308,-1,89,289,261,-1,261,94,89,-1,126,275,309,-1,309,172,126,-1,531,520,536,-1,536,546,531,-1,527,526,521,-1,521,519,527,-1,513,507,497,-1,497,498,513,-1,497,495,462,-1,497,507,495,-1,479,462,495,-1,479,421,462,-1,503,482,490,-1,265,15,11,-1,11,230,265,-1,156,36,130,-1,156,49,36,-1,364,368,401,-1,269,320,331,-1,269,306,320,-1,45,81,42,-1,45,90,81,-1,102,52,42,-1,42,79,102,-1,435,423,485,-1,423,511,485,-1,195,165,197,-1,195,155,165,-1,431,477,395,-1,477,448,395,-1,6,22,17,-1,116,25,44,-1,28,29,34,-1,5,30,20,-1,16,67,145,-1,145,39,16,-1,22,1,8,-1,319,327,439,-1,327,465,439,-1,44,10,39,-1,53,41,22,-1,290,462,214,-1,290,497,462,-1,41,35,22,-1,310,435,343,-1,310,322,435,-1,524,528,525,-1,524,529,528,-1,501,488,466,-1,466,476,501,-1,539,523,422,-1,422,444,539,-1,502,491,525,-1,525,528,502,-1,205,88,60,-1,88,34,60,-1,23,20,64,-1,20,69,64,-1,327,256,236,-1,327,319,256,-1,261,289,483,-1,289,499,483,-1,415,374,357,-1,357,450,415,-1,231,292,335,-1,335,299,231,-1,241,321,57,-1,321,65,57,-1,78,46,149,-1,78,12,46,-1,340,331,320,-1,90,110,218,-1,218,273,90,-1,220,223,219,-1,219,243,220,-1,185,198,176,-1,176,128,185,-1,227,225,147,-1,315,385,149,-1,385,248,149,-1,84,89,94,-1,94,115,84,-1,533,531,546,-1,499,518,483,-1,552,532,546,-1,552,535,532,-1,475,241,428,-1,475,321,241,-1,31,137,40,-1,31,65,137,-1,137,141,40,-1,141,74,40,-1,540,517,481,-1,517,478,481,-1,40,74,85,-1,74,91,85,-1,486,381,478,-1,486,408,381,-1,473,458,408,-1,408,486,473,-1,178,250,235,-1,178,194,250,-1,219,296,222,-1,219,269,296,-1,250,301,235,-1,301,270,235,-1,251,279,242,-1,279,220,242,-1,364,401,389,-1,306,269,288,-1,312,333,276,-1,276,242,312,-1,318,394,326,-1,394,410,326,-1,80,104,82,-1,82,66,80,-1,410,305,326,-1,410,403,305,-1,346,328,338,-1,268,279,342,-1,342,325,268,-1,291,102,79,-1,79,213,291,-1,318,326,264,-1,264,247,318,-1,400,382,419,-1,382,383,419,-1,175,316,99,-1,175,354,316,-1,452,454,446,-1,263,197,249,-1,263,195,197,-1,472,485,506,-1,472,461,485,-1,534,551,555,-1,1,22,7,-1,48,22,32,-1,14,22,26,-1,35,26,22,-1,6,32,22,-1,179,158,236,-1,158,199,236,-1,322,310,249,-1,249,207,322,-1,488,477,431,-1,431,466,488,-1,70,62,92,-1,62,122,92,-1,399,417,316,-1,316,354,399,-1,386,365,382,-1,382,400,386,-1,440,407,387,-1,407,409,387,-1,102,291,175,-1,175,58,102,-1,213,262,311,-1,262,347,311,-1,59,55,66,-1,59,45,55,-1,138,240,224,-1,138,171,240,-1,360,382,333,-1,360,383,382,-1,301,330,312,-1,270,242,243,-1,242,220,243,-1,340,364,331,-1,340,368,364,-1,235,270,243,-1,434,411,470,-1,434,371,411,-1,231,194,111,-1,120,178,128,-1,178,185,128,-1,487,470,496,-1,487,434,470,-1,486,517,496,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib3_Geo_5_775_normalIndex_2()
		{
			int[] value = {486,478,517,-1,487,464,384,-1,487,530,464,-1,74,141,215,-1,215,111,74,-1,228,117,210,-1,228,124,117,-1,481,381,337,-1,481,478,381,-1,113,83,77,-1,113,93,83,-1,47,57,65,-1,65,31,47,-1,428,281,429,-1,428,241,281,-1,391,433,405,-1,548,540,552,-1,540,535,552,-1,538,552,546,-1,546,536,538,-1,280,124,228,-1,280,200,124,-1,114,196,123,-1,114,100,196,-1,469,494,498,-1,494,513,498,-1,82,221,202,-1,82,104,221,-1,128,176,210,-1,210,117,128,-1,22,14,19,-1,401,403,410,-1,329,356,293,-1,293,211,329,-1,108,150,138,-1,108,233,150,-1,108,209,233,-1,337,137,65,-1,65,321,337,-1,407,440,393,-1,440,427,393,-1,446,454,336,-1,454,369,336,-1,276,353,251,-1,276,365,353,-1,198,222,334,-1,222,296,334,-1,210,176,464,-1,176,384,464,-1,313,280,536,-1,280,538,536,-1,309,494,308,-1,309,493,494,-1,349,542,515,-1,367,119,184,-1,184,416,367,-1,256,179,236,-1,256,139,179,-1,512,511,515,-1,515,537,512,-1,300,310,343,-1,300,302,310,-1,322,423,435,-1,322,272,423,-1,205,119,349,-1,205,60,119,-1,183,260,307,-1,307,199,183,-1,27,4,9,-1,17,22,8,-1,341,422,274,-1,341,444,422,-1,327,307,465,-1,307,445,465,-1,395,448,445,-1,0,39,10,-1,0,16,39,-1,139,239,193,-1,22,19,7,-1,69,75,139,-1,239,139,256,-1,341,239,323,-1,50,184,119,-1,5,2,7,-1,348,116,254,-1,116,44,254,-1,22,48,53,-1,61,189,184,-1,545,537,550,-1,545,529,537,-1,435,485,461,-1,461,343,435,-1,98,79,42,-1,42,81,98,-1,273,298,81,-1,81,90,273,-1,357,306,288,-1,288,339,357,-1,222,232,243,-1,243,219,222,-1,279,268,223,-1,223,220,279,-1,187,12,303,-1,187,46,12,-1,46,187,136,-1,136,127,46,-1,186,130,18,-1,130,36,18,-1,225,97,147,-1,225,33,97,-1,238,56,105,-1,238,234,56,-1,63,127,136,-1,63,151,127,-1,304,15,265,-1,304,21,15,-1,49,63,105,-1,105,56,49,-1,54,290,27,-1,54,283,290,-1,24,230,11,-1,24,216,230,-1,376,248,385,-1,376,271,248,-1,148,125,133,-1,133,157,148,-1,510,493,484,-1,510,505,493,-1,468,421,479,-1,468,396,421,-1,467,429,398,-1,531,499,520,-1,531,527,499,-1,129,84,115,-1,129,106,84,-1,101,100,114,-1,87,86,135,-1,135,134,87,-1,47,51,72,-1,72,71,47,-1,367,416,534,-1,416,551,534,-1,523,348,254,-1,523,543,348,-1,145,67,274,-1,274,422,145,-1,193,64,69,-1,69,139,193,-1,349,119,367,-1,237,226,253,-1,253,257,237,-1,73,103,107,-1,399,386,400,-1,399,354,386,-1,358,336,286,-1,336,259,286,-1,258,395,260,-1,258,390,395,-1,170,260,183,-1,170,258,260,-1,140,174,181,-1,103,70,92,-1,92,118,103,-1,325,342,359,-1,342,347,359,-1,262,98,255,-1,233,209,344,-1,344,374,233,-1,346,356,329,-1,355,370,346,-1,293,344,209,-1,293,361,344,-1,257,278,244,-1,266,305,324,-1,266,204,305,-1,259,369,252,-1,259,336,369,-1,392,388,404,-1,388,414,404,-1,295,252,387,-1,252,369,387,-1,300,343,363,-1,419,393,427,-1,419,383,393,-1,345,218,282,-1,110,202,282,-1,282,218,110,-1,66,82,59,-1,54,27,9,-1,238,303,304,-1,77,87,113,-1,77,71,87,-1,196,287,123,-1,196,313,287,-1,200,85,124,-1,200,95,85,-1,215,458,292,-1,215,408,458,-1,80,121,104,-1,111,292,231,-1,111,215,292,-1,140,80,107,-1,140,121,80,-1,436,470,411,-1,473,470,436,-1,196,95,200,-1,196,100,95,-1,85,117,124,-1,85,91,117,-1,134,113,87,-1,113,134,142,-1,13,234,206,-1,13,56,234,-1,182,238,105,-1,182,284,238,-1,298,359,255,-1,377,359,298,-1,393,360,378,-1,383,360,393,-1,420,427,452,-1,420,419,427,-1,437,459,441,-1,459,437,457,-1,472,455,456,-1,476,455,472,-1,443,336,358,-1,336,443,446,-1,363,286,300,-1,286,363,358,-1,388,430,414,-1,388,402,430,-1,326,204,224,-1,326,305,204,-1,259,217,244,-1,217,259,252,-1,244,237,257,-1,237,244,217,-1,356,361,293,-1,356,370,361,-1,403,368,372,-1,403,401,368,-1,118,144,155,-1,118,92,144,-1,103,177,174,-1,103,118,177,-1,183,144,170,-1,144,183,168,-1,437,446,457,-1,437,314,446,-1,476,442,455,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib3_Geo_5_775_normalIndex_3()
		{
			int[] value = {442,476,466,-1,420,417,399,-1,420,441,417,-1,440,369,454,-1,369,440,387,-1,43,62,70,-1,43,58,62,-1,181,253,226,-1,181,174,253,-1,69,30,75,-1,69,20,30,-1,542,537,515,-1,542,550,537,-1,549,416,418,-1,549,551,416,-1,71,86,87,-1,71,72,86,-1,134,159,160,-1,134,135,159,-1,166,180,191,-1,166,167,180,-1,167,162,160,-1,157,162,167,-1,96,166,112,-1,96,148,166,-1,84,101,114,-1,106,101,84,-1,129,152,164,-1,129,115,152,-1,208,188,192,-1,203,188,208,-1,203,180,188,-1,203,191,180,-1,500,510,509,-1,500,505,510,-1,499,519,518,-1,527,519,499,-1,460,398,405,-1,460,467,398,-1,433,451,463,-1,451,433,412,-1,468,482,471,-1,468,479,482,-1,480,521,492,-1,480,503,521,-1,463,471,480,-1,463,451,471,-1,493,275,484,-1,275,493,309,-1,94,152,115,-1,94,126,152,-1,510,483,518,-1,510,484,483,-1,159,188,180,-1,164,188,159,-1,131,271,277,-1,131,133,271,-1,391,412,433,-1,391,376,412,-1,271,125,248,-1,271,133,125,-1,376,406,412,-1,376,385,406,-1,498,290,283,-1,498,497,290,-1,173,24,169,-1,173,33,24,-1,63,156,151,-1,49,156,63,-1,112,15,21,-1,112,154,15,-1,362,127,151,-1,362,315,127,-1,182,63,136,-1,105,63,182,-1,284,303,238,-1,303,284,187,-1,24,225,216,-1,24,33,225,-1,9,18,3,-1,18,9,4,-1,462,186,214,-1,421,186,462,-1,246,147,97,-1,246,68,147,-1,214,27,290,-1,214,4,27,-1,303,21,304,-1,12,21,303,-1,296,331,371,-1,296,269,331,-1,450,339,380,-1,450,357,339,-1,43,55,52,-1,43,73,55,-1,255,81,298,-1,255,98,81,-1,461,363,343,-1,447,363,461,-1,544,508,522,-1,544,539,508,-1,474,502,489,-1,491,502,474,-1,476,506,501,-1,476,472,506,-1,537,524,512,-1,529,524,537,-1,555,545,550,-1,554,545,555,-1,418,184,189,-1,418,416,184,-1,53,61,184,-1,48,61,53,-1,61,32,38,-1,61,48,32,-1,17,10,44,-1,10,17,8,-1,2,1,7,-1,2,0,1,-1,7,30,5,-1,30,7,19,-1,60,50,119,-1,37,50,60,-1,444,323,453,-1,444,341,323,-1,553,522,541,-1,553,544,522,-1,534,550,542,-1,534,555,550,-1,323,256,319,-1,323,239,256,-1,508,439,489,-1,508,453,439,-1,545,528,529,-1,545,541,528,-1,168,146,165,-1,146,168,158,-1,75,179,139,-1,75,132,179,-1,193,341,274,-1,239,341,193,-1,16,64,67,-1,23,64,16,-1,390,212,366,-1,258,212,390,-1,260,445,307,-1,395,445,260,-1,30,14,28,-1,30,19,14,-1,189,38,153,-1,189,61,38,-1,50,35,41,-1,35,50,37,-1,212,62,99,-1,212,122,62,-1,272,349,423,-1,272,205,349,-1,426,189,153,-1,418,189,426,-1,199,327,236,-1,199,307,327,-1,445,474,465,-1,448,474,445,-1,132,76,143,-1,132,75,76,-1,205,190,88,-1,272,190,205,-1,426,116,348,-1,116,426,153,-1,469,308,494,-1,469,297,308,-1,313,520,287,-1,313,536,520,-1,280,504,538,-1,280,228,504,-1,176,334,384,-1,176,198,334,-1,464,228,210,-1,228,464,504,-1,268,288,223,-1,288,268,339,-1,171,226,240,-1,171,181,226,-1,378,397,413,-1,378,350,397,-1,397,332,373,-1,397,350,332,-1,408,141,381,-1,141,408,215,-1,83,294,281,-1,294,83,93,-1,277,109,131,-1,277,285,109,-1,149,125,78,-1,149,248,125,-1,97,173,297,-1,33,173,97,-1,421,130,186,-1,130,421,396,-1,21,96,112,-1,12,96,21,-1,284,136,187,-1,182,136,284,-1,49,13,36,-1,49,56,13,-1,224,264,326,-1,224,240,264,-1,266,329,211,-1,266,328,329,-1,361,355,351,-1,370,355,361,-1,143,146,132,-1,143,163,146,-1,353,279,251,-1,279,353,342,-1,221,282,202,-1,221,317,282,-1,230,229,206,-1,230,216,229,-1,379,468,438,-1,396,468,379,-1,169,201,173,-1,169,208,201,-1,84,123,89,-1,123,84,114,-1,313,200,280,-1,200,313,196,-1,504,552,538,-1,552,504,548,-1,471,438,468,-1,471,451,438,-1,514,533,516,-1,533,514,526,-1,540,475,535,-1,475,540,481,-1,428,516,532,-1,429,516,428,-1,492,467,460,-1,467,492,514,-1,391,285,277,-1,405,285,391,-1,281,398,429,-1,281,294,398,-1,57,77,83,-1,47,77,57,-1,142,93,113,-1,142,109,93,-1,164,135,129,-1,164,159,135,-1,72,106,86,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib3_Geo_5_775_normalIndex_4()
		{
			int[] value = {72,101,106,-1,51,95,100,-1,31,95,51,-1,464,548,504,-1,464,530,548,-1,91,128,117,-1,91,120,128,-1,487,517,530,-1,496,517,487,-1,487,334,434,-1,384,334,487,-1,111,178,120,-1,111,194,178,-1,432,473,436,-1,432,458,473,-1,296,434,334,-1,296,371,434,-1,335,458,432,-1,458,335,292,-1,411,392,436,-1,411,364,392,-1,312,270,301,-1,312,242,270,-1,382,276,333,-1,382,365,276,-1,430,407,413,-1,430,409,407,-1,150,317,221,-1,150,233,317,-1,121,181,171,-1,121,140,181,-1,59,90,45,-1,90,59,110,-1,446,437,452,-1,446,314,437,-1,263,310,302,-1,263,249,310,-1,424,442,425,-1,424,449,442,-1,199,168,183,-1,158,168,199,-1,512,485,511,-1,512,506,485,-1,190,163,143,-1,190,207,163,-1,272,207,190,-1,272,322,207,-1,544,547,543,-1,544,553,547,-1,207,197,163,-1,197,207,249,-1,457,447,456,-1,457,443,447,-1,217,264,237,-1,217,247,264,-1,240,237,264,-1,240,226,237,-1,344,320,374,-1,320,344,340,-1,368,351,372,-1,351,368,340,-1,415,233,374,-1,415,317,233,-1,401,394,389,-1,401,410,394,-1,414,413,397,-1,414,430,413,-1,312,360,333,-1,330,360,312,-1,404,397,373,-1,404,414,397,-1,299,301,250,-1,299,332,301,-1,232,235,243,-1,235,232,245,-1,371,364,411,-1,371,331,364,-1,373,432,404,-1,432,373,335,-1,231,250,194,-1,299,250,231,-1,185,245,232,-1,185,235,245,-1,178,235,185,-1,74,120,91,-1,74,111,120,-1,530,540,548,-1,530,517,540,-1,85,31,40,-1,31,85,95,-1,101,51,100,-1,51,101,72,-1,86,129,135,-1,106,129,86,-1,162,109,142,-1,109,162,131,-1,481,321,475,-1,481,337,321,-1,405,294,285,-1,398,294,405,-1,429,514,516,-1,429,467,514,-1,532,475,428,-1,532,535,475,-1,546,516,533,-1,546,532,516,-1,526,492,521,-1,526,514,492,-1,493,513,494,-1,493,505,513,-1,531,526,527,-1,526,531,533,-1,192,201,208,-1,201,192,172,-1,154,203,161,-1,191,203,154,-1,406,379,438,-1,379,406,362,-1,148,78,125,-1,78,148,96,-1,238,265,234,-1,238,304,265,-1,386,353,365,-1,386,291,353,-1,198,232,222,-1,185,232,198,-1,163,165,146,-1,163,197,165,-1,344,351,340,-1,361,351,344,-1,224,108,138,-1,204,108,224,-1,3,36,13,-1,3,18,36,-1,246,297,469,-1,246,97,297,-1,379,130,396,-1,379,156,130,-1,469,283,246,-1,498,283,469,-1,15,161,11,-1,15,154,161,-1,93,285,294,-1,109,285,93,-1,127,149,46,-1,149,127,315,-1,381,137,337,-1,137,381,141,-1,281,57,83,-1,281,241,57,-1,393,413,407,-1,393,378,413,-1,335,332,299,-1,335,373,332,-1,320,357,374,-1,357,320,306,-1,269,223,288,-1,219,223,269,-1,287,499,289,-1,287,520,499,-1,477,525,491,-1,477,488,525,-1,76,34,88,-1,76,28,34,-1,75,28,76,-1,75,30,28,-1,88,143,76,-1,190,143,88,-1,465,489,439,-1,474,489,465,-1,44,145,254,-1,44,39,145,-1,459,442,449,-1,459,455,442,-1,488,524,525,-1,501,524,488,-1,553,549,547,-1,554,549,553,-1,35,29,26,-1,35,37,29,-1,41,184,50,-1,41,53,184,-1,153,25,116,-1,38,25,153,-1,2,20,23,-1,20,2,5,-1,28,26,29,-1,14,26,28,-1,0,23,16,-1,0,2,23,-1,132,158,179,-1,132,146,158,-1,367,542,349,-1,534,542,367,-1,502,541,522,-1,502,528,541,-1,453,319,439,-1,453,323,319,-1,541,554,553,-1,545,554,541,-1,539,453,508,-1,539,444,453,-1,34,37,60,-1,29,37,34,-1,8,0,10,-1,0,8,1,-1,38,6,25,-1,38,32,6,-1,25,17,44,-1,25,6,17,-1,554,551,549,-1,554,555,551,-1,501,512,524,-1,501,506,512,-1,425,366,424,-1,425,390,366,-1,448,491,474,-1,477,491,448,-1,522,489,502,-1,522,508,489,-1,539,543,523,-1,544,543,539,-1,515,423,349,-1,423,515,511,-1,268,380,339,-1,268,325,380,-1,52,58,43,-1,102,58,52,-1,42,55,45,-1,55,42,52,-1,283,68,246,-1,283,54,68,-1,206,265,230,-1,206,234,265,-1,214,18,4,-1,186,18,214,-1,216,227,229,-1,216,225,227,-1,169,11,161,-1,11,169,24,-1,151,379,362,-1,156,379,151,-1,277,376,391,-1,277,271,376,-1,157,131,162,-1,157,133,131,-1,460,480,492,-1,460,463,480,-1,484,261,483,-1,484,275,261,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlrib3_Geo_5_775_normalIndex_5()
		{
			int[] value = {152,172,192,-1,126,172,152,-1,385,362,406,-1,362,385,315,-1,471,503,480,-1,471,482,503,-1,490,479,495,-1,482,479,490,-1,500,495,507,-1,500,490,495,-1,490,509,503,-1,509,490,500,-1,503,519,521,-1,509,519,503,-1,412,438,451,-1,438,412,406,-1,405,463,460,-1,463,405,433,-1,518,509,510,-1,519,509,518,-1,507,505,500,-1,507,513,505,-1,309,201,172,-1,201,309,308,-1,261,126,94,-1,126,261,275,-1,289,123,287,-1,89,123,289,-1,161,208,169,-1,161,203,208,-1,164,192,188,-1,164,152,192,-1,148,167,166,-1,148,157,167,-1,191,112,166,-1,112,191,154,-1,180,160,159,-1,167,160,180,-1,418,547,549,-1,418,426,547,-1,58,99,62,-1,58,175,99,-1,454,427,440,-1,454,452,427,-1,174,267,253,-1,177,267,174,-1,302,267,263,-1,302,278,267,-1,425,466,431,-1,425,442,466,-1,456,461,472,-1,456,447,461,-1,449,441,459,-1,441,449,417,-1,417,366,316,-1,424,366,417,-1,155,168,165,-1,155,144,168,-1,170,92,122,-1,170,144,92,-1,177,155,195,-1,118,155,177,-1,345,317,415,-1,317,345,282,-1,380,375,450,-1,380,377,375,-1,107,66,73,-1,107,80,66,-1,355,372,351,-1,355,338,372,-1,338,324,372,-1,338,328,324,-1,204,211,108,-1,204,266,211,-1,388,364,389,-1,364,388,392,-1,394,352,402,-1,394,318,352,-1,252,247,217,-1,247,252,295,-1,286,244,278,-1,244,286,259,-1,402,409,430,-1,402,352,409,-1,419,399,400,-1,420,399,419,-1,456,459,457,-1,455,459,456,-1,441,452,437,-1,441,420,452,-1,378,330,350,-1,360,330,378,-1,377,273,375,-1,377,298,273,-1,347,255,359,-1,262,255,347,-1,353,347,342,-1,353,311,347,-1,206,3,13,-1,206,229,3,-1,229,9,3,-1,9,229,227,-1,160,142,134,-1,142,160,162,-1,470,486,496,-1,486,470,473,-1,174,107,103,-1,174,140,107,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib4_Geo_5_781_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,3,6,4,-1,7,8,9,-1,7,10,8,-1,11,12,13,-1,14,15,16,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,25,26,23,-1,27,28,15,-1,29,30,31,-1,32,33,34,-1,32,35,33,-1,36,3,37,-1,36,9,3,-1,38,39,40,-1,38,32,39,-1,41,42,43,-1,43,44,41,-1,45,46,47,-1,45,48,46,-1,49,50,51,-1,49,52,50,-1,53,54,55,-1,54,56,55,-1,57,58,59,-1,60,61,62,-1,62,63,60,-1,64,65,66,-1,65,67,66,-1,61,68,69,-1,61,60,68,-1,70,71,72,-1,71,73,72,-1,74,75,76,-1,75,77,76,-1,76,78,74,-1,78,79,74,-1,80,81,82,-1,81,23,82,-1,21,83,26,-1,26,25,21,-1,84,85,86,-1,84,87,85,-1,88,89,30,-1,89,90,30,-1,84,86,91,-1,91,92,84,-1,93,15,94,-1,94,15,28,-1,95,96,97,-1,95,87,96,-1,95,85,87,-1,98,99,100,-1,100,101,98,-1,23,102,103,-1,23,26,102,-1,100,104,105,-1,106,81,80,-1,80,17,106,-1,107,104,108,-1,109,104,102,-1,110,111,77,-1,110,112,111,-1,20,113,21,-1,20,114,113,-1,115,116,117,-1,115,118,116,-1,119,120,121,-1,121,122,119,-1,123,122,121,-1,123,124,122,-1,125,126,127,-1,127,128,125,-1,129,130,131,-1,130,132,131,-1,133,134,135,-1,134,136,135,-1,137,138,139,-1,139,140,137,-1,141,142,143,-1,141,144,142,-1,145,146,147,-1,148,146,149,-1,150,146,151,-1,146,152,147,-1,153,154,142,-1,142,155,153,-1,49,156,52,-1,156,157,52,-1,158,143,159,-1,158,141,143,-1,160,161,162,-1,160,163,161,-1,164,165,166,-1,165,167,166,-1,168,169,170,-1,169,171,170,-1,172,169,168,-1,172,173,169,-1,174,6,47,-1,174,4,6,-1,175,176,177,-1,177,178,175,-1,179,180,181,-1,180,182,181,-1,183,43,42,-1,42,184,183,-1,185,186,187,-1,185,188,186,-1,189,90,190,-1,86,35,91,-1,33,191,34,-1,192,193,194,-1,194,195,192,-1,196,197,198,-1,196,117,197,-1,199,192,195,-1,195,59,199,-1,71,57,200,-1,71,58,57,-1,201,202,190,-1,203,88,204,-1,203,89,88,-1,84,92,205,-1,205,206,84,-1,207,96,87,-1,87,206,207,-1,103,104,107,-1,77,208,76,-1,77,111,208,-1,209,210,211,-1,209,212,210,-1,120,213,214,-1,120,119,213,-1,215,216,217,-1,216,218,217,-1,139,219,220,-1,139,138,219,-1,221,222,223,-1,221,224,222,-1,225,226,227,-1,227,228,225,-1,225,229,226,-1,229,230,226,-1,229,231,230,-1,231,232,230,-1,233,112,110,-1,233,204,112,-1,108,104,99,-1,87,84,206,-1,92,17,205,-1,201,190,89,-1,89,203,201,-1,13,12,234,-1,234,235,13,-1,70,236,58,-1,58,71,70,-1,195,237,238,-1,195,194,237,-1,19,18,193,-1,239,240,34,-1,240,241,34,-1,191,33,86,-1,86,85,191,-1,237,242,238,-1,242,185,238,-1,187,186,243,-1,186,244,243,-1,185,242,188,-1,245,246,247,-1,245,248,246,-1,181,182,184,-1,182,183,184,-1,36,249,250,-1,250,251,36,-1,45,10,252,-1,45,8,10,-1,175,253,176,-1,253,254,176,-1,255,164,256,-1,164,166,256,-1,169,161,171,-1,161,257,171,-1,159,167,165,-1,159,143,167,-1,152,146,150,-1,149,146,145,-1,258,259,211,-1,211,210,258,-1,227,129,260,-1,129,131,260,-1,261,262,258,-1,258,210,261,-1,263,212,209,-1,263,223,212,-1,264,226,230,-1,264,265,226,-1,102,104,103,-1,112,20,111,-1,112,114,20,-1,266,75,267,-1,266,268,75,-1,206,269,270,-1,270,207,206,-1,24,213,25,-1,205,80,271,-1,205,17,80,-1,105,104,109,-1,99,104,100,-1,98,272,108,-1,108,99,98,-1,96,207,97,-1,207,114,97,-1,204,273,112,-1,15,14,27,-1,93,16,15,-1,12,16,93,-1,93,234,12,-1,236,199,59,-1,59,58,236,-1,90,89,190,-1,81,24,23,-1,101,270,269,-1,269,98,101,-1,274,225,228,-1,200,73,71,-1,200,275,73,-1,110,77,268,-1,77,75,268,-1,72,233,70,-1,233,276,70,-1,1,145,147,-1,147,277,1,-1,68,278,150,-1,278,152,150,-1,151,146,148,-1,65,64,279,-1,64,280,279,-1,0,281,67,-1,67,65,0,-1,282,64,283,-1,64,66,283,-1,284,60,63,-1,63,285,284,-1,54,144,56,-1,144,141,56,-1,174,171,286,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib4_Geo_5_781_coordIndex_2()
		{
			int[] value = {174,170,171,-1,287,288,289,-1,288,290,289,-1,156,283,157,-1,156,62,283,-1,282,61,69,-1,85,13,235,-1,235,191,85,-1,7,248,10,-1,248,245,10,-1,186,251,250,-1,186,188,251,-1,170,47,46,-1,170,174,47,-1,182,291,178,-1,182,180,291,-1,33,35,86,-1,143,142,154,-1,154,167,143,-1,81,106,292,-1,292,214,81,-1,213,293,25,-1,137,294,138,-1,17,116,106,-1,17,19,116,-1,197,193,192,-1,197,19,193,-1,241,32,34,-1,241,39,32,-1,38,35,32,-1,295,296,297,-1,296,298,299,-1,298,296,295,-1,10,44,252,-1,10,245,44,-1,41,39,241,-1,41,247,39,-1,106,118,292,-1,106,116,118,-1,300,301,302,-1,300,303,301,-1,302,304,300,-1,302,305,304,-1,302,306,305,-1,21,293,22,-1,21,25,293,-1,18,35,193,-1,35,18,91,-1,40,194,38,-1,237,194,40,-1,180,307,291,-1,180,244,307,-1,252,43,308,-1,44,43,252,-1,183,178,177,-1,183,182,178,-1,253,309,172,-1,309,253,310,-1,46,168,170,-1,168,46,254,-1,244,250,307,-1,244,186,250,-1,251,248,7,-1,188,248,251,-1,311,312,249,-1,312,311,313,-1,191,239,34,-1,191,235,239,-1,157,314,52,-1,315,314,157,-1,61,283,62,-1,282,283,61,-1,290,316,257,-1,288,316,290,-1,51,287,289,-1,50,287,51,-1,317,318,319,-1,318,317,281,-1,320,321,309,-1,321,320,322,-1,291,312,323,-1,307,312,291,-1,200,179,275,-1,179,200,243,-1,285,324,284,-1,324,285,325,-1,277,284,324,-1,284,277,278,-1,65,1,0,-1,65,279,1,-1,64,69,280,-1,64,282,69,-1,68,151,69,-1,68,150,151,-1,147,278,277,-1,278,147,152,-1,279,145,1,-1,279,149,145,-1,268,233,110,-1,233,268,276,-1,231,120,326,-1,231,121,120,-1,123,225,274,-1,229,225,123,-1,270,327,113,-1,101,327,270,-1,272,269,271,-1,269,272,98,-1,11,328,29,-1,11,95,328,-1,236,198,199,-1,236,329,198,-1,196,267,330,-1,266,267,196,-1,331,332,333,-1,334,332,331,-1,118,335,336,-1,115,335,118,-1,232,264,230,-1,337,264,232,-1,338,189,190,-1,338,234,189,-1,93,189,234,-1,189,93,94,-1,27,11,29,-1,11,27,14,-1,107,272,82,-1,272,107,108,-1,327,109,83,-1,327,105,109,-1,271,206,205,-1,206,271,269,-1,117,330,115,-1,117,196,330,-1,339,340,341,-1,339,342,340,-1,343,344,345,-1,343,346,344,-1,335,333,337,-1,335,331,333,-1,208,78,76,-1,208,221,78,-1,224,340,342,-1,347,340,224,-1,263,216,215,-1,263,209,216,-1,125,274,228,-1,125,348,274,-1,349,264,350,-1,265,264,349,-1,129,226,265,-1,129,227,226,-1,222,212,223,-1,222,351,212,-1,259,134,211,-1,134,259,136,-1,352,262,261,-1,352,353,262,-1,227,354,228,-1,227,260,354,-1,355,126,354,-1,126,355,356,-1,131,357,260,-1,131,358,357,-1,359,132,135,-1,132,359,360,-1,136,220,361,-1,136,259,220,-1,262,139,258,-1,262,140,139,-1,362,353,127,-1,353,362,363,-1,355,306,302,-1,355,357,306,-1,300,360,359,-1,300,304,360,-1,325,319,318,-1,364,319,325,-1,285,365,366,-1,365,285,63,-1,157,66,315,-1,157,283,66,-1,364,53,319,-1,53,364,367,-1,368,366,365,-1,369,366,368,-1,55,370,371,-1,370,55,56,-1,372,367,369,-1,373,367,372,-1,368,51,374,-1,368,49,51,-1,375,371,370,-1,375,314,371,-1,144,373,376,-1,144,54,373,-1,377,372,374,-1,378,372,377,-1,287,375,379,-1,287,50,375,-1,379,288,287,-1,288,379,297,-1,142,376,155,-1,144,376,142,-1,163,378,377,-1,160,378,163,-1,257,163,290,-1,161,163,257,-1,159,295,297,-1,295,159,165,-1,316,299,286,-1,316,296,299,-1,321,162,173,-1,321,153,162,-1,164,5,298,-1,5,164,255,-1,256,322,320,-1,256,166,322,-1,37,256,311,-1,37,255,256,-1,175,310,253,-1,175,323,310,-1,307,249,312,-1,249,307,250,-1,36,7,9,-1,7,36,251,-1,188,246,248,-1,242,246,188,-1,57,243,200,-1,57,187,243,-1,202,184,380,-1,202,181,184,-1,247,40,39,-1,247,246,40,-1,238,187,57,-1,238,185,187,-1,239,380,240,-1,380,239,338,-1,117,19,197,-1,117,116,19,-1,329,70,276,-1,329,236,70,-1,201,72,73,-1,201,203,72,-1,90,31,30,-1,189,31,90,-1,95,273,328,-1,273,95,97,-1,268,329,276,-1,266,329,268,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib4_Geo_5_781_coordIndex_3()
		{
			int[] value = {347,22,340,-1,347,20,22,-1,115,331,335,-1,115,330,331,-1,343,124,348,-1,343,345,124,-1,337,350,264,-1,337,333,350,-1,218,134,133,-1,218,216,134,-1,350,218,349,-1,217,218,350,-1,358,306,357,-1,358,305,306,-1,219,361,220,-1,219,303,361,-1,351,210,212,-1,210,351,261,-1,301,362,356,-1,301,381,362,-1,222,342,344,-1,222,224,342,-1,128,348,125,-1,128,343,348,-1,345,122,124,-1,345,339,122,-1,261,346,352,-1,351,346,261,-1,362,294,363,-1,362,381,294,-1,360,305,358,-1,360,304,305,-1,349,133,130,-1,349,218,133,-1,332,215,217,-1,332,79,215,-1,75,334,267,-1,334,75,74,-1,292,336,326,-1,292,118,336,-1,341,213,119,-1,341,293,213,-1,208,20,347,-1,208,111,20,-1,263,221,223,-1,78,221,263,-1,97,112,273,-1,97,114,112,-1,204,328,273,-1,204,88,328,-1,202,73,275,-1,73,202,201,-1,233,203,204,-1,233,72,203,-1,57,195,238,-1,59,195,57,-1,199,197,192,-1,198,197,199,-1,92,18,17,-1,18,92,91,-1,380,190,202,-1,338,190,380,-1,239,234,338,-1,239,235,234,-1,240,184,42,-1,240,380,184,-1,275,181,202,-1,275,179,181,-1,178,323,175,-1,178,291,323,-1,311,320,313,-1,256,320,311,-1,255,3,5,-1,3,255,37,-1,48,254,46,-1,48,176,254,-1,309,173,172,-1,309,321,173,-1,299,174,286,-1,299,4,174,-1,169,162,161,-1,173,162,169,-1,166,154,322,-1,166,167,154,-1,164,295,165,-1,298,295,164,-1,153,160,162,-1,153,155,160,-1,296,288,297,-1,316,288,296,-1,160,376,378,-1,155,376,160,-1,158,297,379,-1,297,158,159,-1,377,290,163,-1,377,289,290,-1,370,379,375,-1,379,370,158,-1,289,374,51,-1,377,374,289,-1,373,378,376,-1,373,372,378,-1,56,158,370,-1,141,158,56,-1,375,52,314,-1,50,52,375,-1,369,374,372,-1,369,368,374,-1,367,54,53,-1,54,367,373,-1,314,382,371,-1,314,315,382,-1,49,365,156,-1,368,365,49,-1,369,364,366,-1,367,364,369,-1,317,371,382,-1,371,317,55,-1,315,67,382,-1,315,66,67,-1,156,63,62,-1,156,365,63,-1,325,366,364,-1,366,325,285,-1,281,382,67,-1,317,382,281,-1,151,280,69,-1,148,280,151,-1,176,308,177,-1,308,176,48,-1,363,137,140,-1,137,363,294,-1,356,302,301,-1,356,355,302,-1,303,359,361,-1,300,359,303,-1,356,127,126,-1,356,362,127,-1,353,140,262,-1,353,363,140,-1,258,220,259,-1,258,139,220,-1,361,135,136,-1,135,361,359,-1,132,358,131,-1,132,360,358,-1,260,355,354,-1,260,357,355,-1,135,130,133,-1,130,135,132,-1,354,125,228,-1,125,354,126,-1,127,352,128,-1,352,127,353,-1,351,344,346,-1,222,344,351,-1,265,130,129,-1,265,349,130,-1,274,124,123,-1,274,348,124,-1,209,134,216,-1,209,211,134,-1,339,119,122,-1,339,341,119,-1,221,347,224,-1,208,347,221,-1,74,332,334,-1,332,74,79,-1,326,232,231,-1,326,336,232,-1,341,22,293,-1,340,22,341,-1,345,342,339,-1,345,344,342,-1,128,346,343,-1,128,352,346,-1,270,114,207,-1,114,270,113,-1,109,26,83,-1,26,109,102,-1,23,107,82,-1,23,103,107,-1,101,105,327,-1,101,100,105,-1,94,31,189,-1,31,94,28,-1,215,78,263,-1,78,215,79,-1,336,337,232,-1,335,337,336,-1,217,333,332,-1,217,350,333,-1,330,334,331,-1,267,334,330,-1,266,198,329,-1,266,196,198,-1,11,85,95,-1,13,85,11,-1,88,29,328,-1,88,30,29,-1,327,21,113,-1,327,83,21,-1,80,272,271,-1,80,82,272,-1,121,229,123,-1,231,229,121,-1,326,214,292,-1,326,120,214,-1,148,279,280,-1,279,148,149,-1,1,324,2,-1,1,277,324,-1,284,68,60,-1,284,278,68,-1,324,318,2,-1,324,325,318,-1,243,180,179,-1,243,244,180,-1,310,320,309,-1,320,310,313,-1,322,153,321,-1,153,322,154,-1,281,2,318,-1,281,0,2,-1,319,55,317,-1,319,53,55,-1,257,286,171,-1,316,286,257,-1,45,308,48,-1,45,252,308,-1,42,241,240,-1,41,241,42,-1,45,6,8,-1,45,47,6,-1,311,36,37,-1,249,36,311,-1,172,254,253,-1,172,168,254,-1,177,43,183,-1,43,177,308,-1,313,323,312,-1,323,313,310,-1,38,193,35,-1,194,193,38,-1,246,237,40,-1,242,237,246,-1,31,27,29,-1,31,28,27,-1,214,24,81,-1,24,214,213,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib4_Geo_5_781_coordIndex_4()
		{
			int[] value = {303,381,301,-1,303,219,381,-1,219,294,381,-1,219,138,294,-1,14,12,11,-1,14,16,12,-1,44,247,41,-1,44,245,247,-1,3,8,6,-1,9,8,3,-1,299,5,4,-1,5,299,298,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib4_Geo_5_781_normalIndex_1()
		{
			int[] value = {51,28,112,-1,84,132,113,-1,84,78,132,-1,82,85,81,-1,82,80,85,-1,148,207,164,-1,227,192,214,-1,286,267,290,-1,76,36,68,-1,118,114,63,-1,63,57,118,-1,194,161,192,-1,199,220,183,-1,196,197,185,-1,196,212,197,-1,33,84,10,-1,33,81,84,-1,201,181,178,-1,201,196,181,-1,166,261,272,-1,272,143,166,-1,163,344,176,-1,163,333,344,-1,341,280,353,-1,341,243,280,-1,186,200,99,-1,200,77,99,-1,257,273,266,-1,210,158,292,-1,292,309,210,-1,90,101,187,-1,101,156,187,-1,158,12,13,-1,158,210,12,-1,293,285,258,-1,285,279,258,-1,315,308,211,-1,308,221,211,-1,211,247,315,-1,247,338,315,-1,235,162,170,-1,162,118,170,-1,36,22,57,-1,57,63,36,-1,203,151,193,-1,203,137,151,-1,259,254,220,-1,254,226,220,-1,203,193,236,-1,236,274,203,-1,189,192,172,-1,172,192,161,-1,75,39,89,-1,75,137,39,-1,75,151,137,-1,125,47,41,-1,41,128,125,-1,118,52,71,-1,118,57,52,-1,41,42,45,-1,268,162,235,-1,235,286,268,-1,79,42,70,-1,40,42,52,-1,234,131,221,-1,234,135,131,-1,76,69,36,-1,76,83,69,-1,331,302,311,-1,331,328,302,-1,88,191,240,-1,240,121,88,-1,244,121,240,-1,244,134,121,-1,92,18,11,-1,11,56,92,-1,320,323,129,-1,323,155,129,-1,334,263,171,-1,263,54,171,-1,20,21,23,-1,23,14,20,-1,73,205,66,-1,73,219,205,-1,180,46,55,-1,216,46,223,-1,32,46,65,-1,46,38,55,-1,299,238,205,-1,205,304,299,-1,341,326,243,-1,326,230,243,-1,98,66,74,-1,98,73,66,-1,336,376,349,-1,336,356,376,-1,30,50,95,-1,50,103,95,-1,382,380,359,-1,380,373,359,-1,368,380,382,-1,368,354,380,-1,217,78,176,-1,217,132,78,-1,374,379,363,-1,363,357,374,-1,318,321,300,-1,321,345,300,-1,335,272,261,-1,261,283,335,-1,175,177,213,-1,175,94,177,-1,208,226,250,-1,193,212,236,-1,197,184,185,-1,252,229,215,-1,215,248,252,-1,316,288,297,-1,316,311,288,-1,277,252,248,-1,248,266,277,-1,285,257,289,-1,285,273,257,-1,264,270,250,-1,241,259,209,-1,241,254,259,-1,203,274,255,-1,255,152,203,-1,59,39,137,-1,137,152,59,-1,71,42,79,-1,221,117,211,-1,221,131,117,-1,276,153,202,-1,276,160,153,-1,191,102,218,-1,191,88,102,-1,351,364,371,-1,364,378,371,-1,23,29,43,-1,23,21,29,-1,141,123,145,-1,141,106,123,-1,332,366,228,-1,228,159,332,-1,332,340,366,-1,340,362,366,-1,340,330,362,-1,330,352,362,-1,251,135,234,-1,251,209,135,-1,70,42,47,-1,137,203,152,-1,274,286,255,-1,264,250,254,-1,254,241,264,-1,164,207,206,-1,206,190,164,-1,293,284,273,-1,273,285,293,-1,248,188,224,-1,248,215,188,-1,290,267,229,-1,198,204,185,-1,204,165,185,-1,184,197,193,-1,193,151,184,-1,188,138,224,-1,138,175,224,-1,213,177,278,-1,177,269,278,-1,175,138,94,-1,104,140,139,-1,104,108,140,-1,300,345,283,-1,345,335,283,-1,33,107,122,-1,122,58,33,-1,163,80,144,-1,163,85,80,-1,374,377,379,-1,377,381,379,-1,2,30,105,-1,30,95,105,-1,380,376,373,-1,376,375,373,-1,74,103,50,-1,74,66,103,-1,38,46,32,-1,223,46,180,-1,64,48,202,-1,202,153,64,-1,228,320,34,-1,320,129,34,-1,91,35,64,-1,64,153,91,-1,256,160,276,-1,256,145,160,-1,361,366,362,-1,361,370,366,-1,52,42,71,-1,135,76,131,-1,135,83,76,-1,314,308,339,-1,314,301,308,-1,152,195,109,-1,109,59,152,-1,114,102,63,-1,255,235,233,-1,255,286,235,-1,45,42,40,-1,47,42,41,-1,125,169,70,-1,70,47,125,-1,39,59,89,-1,59,83,89,-1,209,167,135,-1,192,227,194,-1,189,214,192,-1,207,214,189,-1,189,206,207,-1,284,277,266,-1,266,273,284,-1,226,254,250,-1,162,114,118,-1,128,109,195,-1,195,125,128,-1,265,332,159,-1,289,279,285,-1,289,291,279,-1,234,221,301,-1,221,308,301,-1,258,251,293,-1,251,305,293,-1,28,180,55,-1,55,53,28,-1,12,24,32,-1,24,38,32,-1,65,46,216,-1,101,90,60,-1,90,61,60,-1,51,133,156,-1,156,101,51,-1,142,90,231,-1,90,187,231,-1,253,210,309,-1,309,296,253,-1,200,219,77,-1,219,73,77,-1,217,373,237,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib4_Geo_5_781_normalIndex_2()
		{
			int[] value = {217,359,373,-1,282,245,369,-1,245,367,369,-1,326,231,230,-1,326,292,231,-1,142,158,13,-1,151,164,190,-1,190,184,151,-1,82,108,80,-1,108,104,80,-1,177,58,122,-1,177,94,58,-1,359,176,344,-1,359,217,176,-1,345,312,357,-1,345,321,312,-1,197,212,193,-1,66,205,238,-1,238,103,66,-1,162,268,306,-1,306,218,162,-1,102,72,63,-1,20,17,21,-1,286,302,268,-1,286,290,302,-1,288,229,252,-1,288,290,229,-1,165,196,185,-1,165,181,196,-1,201,212,196,-1,126,146,124,-1,146,127,157,-1,127,146,126,-1,80,143,144,-1,80,104,143,-1,166,181,165,-1,166,139,181,-1,268,328,306,-1,268,302,328,-1,31,6,5,-1,31,27,6,-1,5,25,31,-1,5,16,25,-1,5,3,16,-1,36,72,68,-1,36,63,72,-1,267,212,229,-1,212,267,236,-1,178,215,201,-1,188,215,178,-1,321,260,312,-1,321,269,260,-1,144,272,294,-1,143,272,144,-1,335,357,363,-1,335,345,357,-1,377,319,368,-1,319,377,317,-1,344,382,359,-1,382,344,381,-1,269,122,260,-1,269,177,122,-1,58,108,82,-1,94,108,58,-1,96,262,107,-1,262,96,246,-1,184,198,185,-1,184,190,198,-1,230,168,243,-1,179,168,230,-1,158,231,292,-1,142,231,158,-1,367,232,375,-1,245,232,367,-1,353,282,369,-1,280,282,353,-1,110,174,182,-1,174,110,133,-1,242,310,319,-1,310,242,239,-1,312,262,327,-1,260,262,312,-1,289,318,291,-1,318,289,278,-1,296,222,253,-1,222,296,271,-1,53,253,222,-1,253,53,24,-1,101,28,51,-1,101,60,28,-1,90,13,61,-1,90,142,13,-1,12,65,13,-1,12,32,65,-1,55,24,53,-1,24,55,38,-1,60,180,28,-1,60,223,180,-1,301,251,234,-1,251,301,305,-1,330,191,325,-1,330,240,191,-1,244,332,265,-1,340,332,244,-1,109,62,69,-1,128,62,109,-1,169,195,233,-1,195,169,125,-1,148,173,199,-1,148,75,173,-1,284,297,277,-1,284,307,297,-1,316,339,337,-1,314,339,316,-1,346,360,358,-1,348,360,346,-1,328,347,343,-1,331,347,328,-1,352,361,362,-1,355,361,352,-1,225,208,250,-1,225,206,208,-1,189,208,206,-1,208,189,172,-1,194,148,199,-1,148,194,227,-1,79,169,170,-1,169,79,70,-1,62,40,22,-1,62,45,40,-1,233,152,255,-1,152,233,195,-1,311,337,331,-1,311,316,337,-1,97,86,93,-1,97,100,86,-1,115,116,111,-1,115,120,116,-1,347,358,355,-1,347,346,358,-1,117,247,211,-1,117,141,247,-1,106,86,100,-1,87,86,106,-1,256,364,351,-1,256,276,364,-1,92,265,159,-1,92,149,265,-1,372,361,365,-1,370,361,372,-1,320,366,370,-1,320,228,366,-1,123,160,145,-1,123,136,160,-1,48,263,202,-1,263,48,54,-1,67,35,91,-1,67,26,35,-1,228,8,159,-1,228,34,8,-1,1,18,8,-1,18,1,4,-1,129,0,34,-1,129,19,0,-1,44,155,171,-1,155,44,37,-1,54,43,49,-1,54,48,43,-1,35,23,64,-1,35,14,23,-1,7,26,11,-1,26,7,15,-1,1,3,5,-1,1,0,3,-1,31,37,44,-1,31,25,37,-1,271,182,174,-1,275,182,271,-1,296,322,298,-1,322,296,309,-1,230,187,179,-1,230,231,187,-1,275,186,182,-1,186,275,281,-1,324,298,322,-1,303,298,324,-1,99,119,147,-1,119,99,77,-1,313,281,303,-1,287,281,313,-1,324,353,342,-1,324,341,353,-1,150,147,119,-1,150,168,147,-1,219,287,295,-1,219,200,287,-1,350,313,342,-1,329,313,350,-1,282,150,130,-1,282,280,150,-1,130,245,282,-1,245,130,124,-1,205,295,304,-1,219,295,205,-1,356,329,350,-1,336,329,356,-1,375,356,367,-1,376,356,375,-1,74,126,124,-1,126,74,50,-1,232,157,237,-1,232,146,157,-1,310,349,354,-1,310,299,349,-1,30,113,127,-1,113,30,2,-1,105,239,242,-1,105,95,239,-1,10,105,96,-1,10,2,105,-1,374,317,377,-1,374,327,317,-1,260,107,262,-1,107,260,122,-1,33,82,81,-1,82,33,58,-1,94,140,108,-1,138,140,94,-1,257,278,289,-1,257,213,278,-1,270,283,249,-1,270,300,283,-1,139,178,181,-1,139,140,178,-1,224,213,257,-1,224,175,213,-1,198,249,204,-1,249,198,225,-1,311,290,288,-1,311,302,290,-1,307,293,305,-1,307,284,293,-1,264,258,279,-1,264,241,258,-1,226,183,220,-1,208,183,226,-1,75,167,173,-1,167,75,89,-1,301,307,305,-1,314,307,301,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib4_Geo_5_781_normalIndex_3()
		{
			int[] value = {87,68,86,-1,87,76,68,-1,331,346,347,-1,331,337,346,-1,115,134,149,-1,115,111,134,-1,355,365,361,-1,355,358,365,-1,378,263,334,-1,378,364,263,-1,365,378,372,-1,371,378,365,-1,19,3,0,-1,19,16,3,-1,29,49,43,-1,29,27,49,-1,136,153,160,-1,153,136,91,-1,6,7,4,-1,6,9,7,-1,123,100,116,-1,123,106,100,-1,56,149,92,-1,56,115,149,-1,111,121,134,-1,111,97,121,-1,91,120,67,-1,136,120,91,-1,7,17,15,-1,7,9,17,-1,37,16,19,-1,37,25,16,-1,372,334,323,-1,372,378,334,-1,360,351,371,-1,360,338,351,-1,308,348,339,-1,348,308,315,-1,306,343,325,-1,306,328,343,-1,93,102,88,-1,93,72,102,-1,117,76,87,-1,117,131,76,-1,256,141,145,-1,247,141,256,-1,89,135,167,-1,89,83,135,-1,209,173,167,-1,209,259,173,-1,270,279,291,-1,279,270,264,-1,251,241,209,-1,251,258,241,-1,257,248,224,-1,266,248,257,-1,277,288,252,-1,297,288,277,-1,274,267,286,-1,267,274,236,-1,249,250,270,-1,225,250,249,-1,198,206,225,-1,198,190,206,-1,204,283,261,-1,204,249,283,-1,291,300,270,-1,291,318,300,-1,357,327,374,-1,357,312,327,-1,96,242,246,-1,105,242,96,-1,2,84,113,-1,84,2,10,-1,333,381,344,-1,333,379,381,-1,319,354,368,-1,319,310,354,-1,157,217,237,-1,157,132,217,-1,380,349,376,-1,354,349,380,-1,95,238,239,-1,95,103,238,-1,30,126,50,-1,127,126,30,-1,299,336,349,-1,299,304,336,-1,146,245,124,-1,232,245,146,-1,336,295,329,-1,304,295,336,-1,98,124,130,-1,124,98,74,-1,350,367,356,-1,350,369,367,-1,119,130,150,-1,130,119,98,-1,369,342,353,-1,350,342,369,-1,287,329,295,-1,287,313,329,-1,77,98,119,-1,73,98,77,-1,150,243,168,-1,280,243,150,-1,303,342,313,-1,303,324,342,-1,281,200,186,-1,200,281,287,-1,168,154,147,-1,168,179,154,-1,341,322,326,-1,324,322,341,-1,303,275,298,-1,281,275,303,-1,110,147,154,-1,147,110,99,-1,179,156,154,-1,179,187,156,-1,326,309,292,-1,326,322,309,-1,271,298,275,-1,298,271,296,-1,133,154,156,-1,110,154,133,-1,65,61,13,-1,216,61,65,-1,379,294,363,-1,294,379,333,-1,15,20,14,-1,20,15,17,-1,4,5,6,-1,4,1,5,-1,27,44,49,-1,31,44,27,-1,4,11,18,-1,4,7,11,-1,26,14,35,-1,26,15,14,-1,64,43,48,-1,64,23,43,-1,49,171,54,-1,171,49,44,-1,155,19,129,-1,155,37,19,-1,34,1,8,-1,34,0,1,-1,171,323,334,-1,323,171,155,-1,8,92,159,-1,92,8,18,-1,11,67,56,-1,67,11,26,-1,136,116,120,-1,123,116,136,-1,370,323,320,-1,370,372,323,-1,265,134,244,-1,265,149,134,-1,276,263,364,-1,276,202,263,-1,97,88,121,-1,97,93,88,-1,141,87,106,-1,117,87,141,-1,315,360,348,-1,360,315,338,-1,325,352,330,-1,325,343,352,-1,93,68,72,-1,86,68,93,-1,111,100,97,-1,111,116,100,-1,56,120,115,-1,56,67,120,-1,109,83,59,-1,83,109,69,-1,40,57,22,-1,57,40,52,-1,118,79,170,-1,118,71,79,-1,128,45,62,-1,128,41,45,-1,172,183,208,-1,183,172,161,-1,351,247,256,-1,247,351,338,-1,343,355,352,-1,347,355,343,-1,371,358,360,-1,371,365,358,-1,337,348,346,-1,339,348,337,-1,314,297,307,-1,314,316,297,-1,148,151,75,-1,164,151,148,-1,259,199,173,-1,259,220,199,-1,62,36,69,-1,62,22,36,-1,235,169,233,-1,235,170,169,-1,240,340,244,-1,330,340,240,-1,325,218,306,-1,325,191,218,-1,216,60,61,-1,60,216,223,-1,28,222,112,-1,28,53,222,-1,253,12,210,-1,253,24,12,-1,222,174,112,-1,222,271,174,-1,278,321,318,-1,278,269,321,-1,317,242,319,-1,242,317,246,-1,239,299,310,-1,299,239,238,-1,133,112,174,-1,133,51,112,-1,182,99,110,-1,182,186,99,-1,375,237,373,-1,232,237,375,-1,163,294,333,-1,163,144,294,-1,261,165,204,-1,166,165,261,-1,163,78,85,-1,163,176,78,-1,96,33,10,-1,107,33,96,-1,368,381,377,-1,368,382,381,-1,363,272,335,-1,272,363,294,-1,246,327,262,-1,327,246,317,-1,201,229,212,-1,215,229,201,-1,140,188,178,-1,138,188,140,-1,183,194,199,-1,183,161,194,-1,218,114,162,-1,114,218,102,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib4_Geo_5_781_normalIndex_4()
		{
			int[] value = {27,9,6,-1,27,29,9,-1,29,17,9,-1,29,21,17,-1,227,207,148,-1,227,214,207,-1,143,139,166,-1,143,104,139,-1,84,85,78,-1,81,85,84,-1,157,113,132,-1,113,157,127,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib5_Geo_5_787_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,3,1,-1,4,5,6,-1,7,8,9,-1,7,10,8,-1,11,12,13,-1,13,14,11,-1,15,16,17,-1,15,18,16,-1,19,20,21,-1,19,22,20,-1,23,24,25,-1,25,26,23,-1,27,28,29,-1,28,30,29,-1,31,32,33,-1,32,34,33,-1,35,36,23,-1,23,20,35,-1,29,30,37,-1,37,38,29,-1,39,40,41,-1,40,42,41,-1,43,44,45,-1,44,46,45,-1,47,48,49,-1,49,50,47,-1,18,51,16,-1,18,52,51,-1,53,49,54,-1,49,55,54,-1,56,53,54,-1,56,57,53,-1,58,54,59,-1,58,56,54,-1,60,61,62,-1,61,63,62,-1,64,65,66,-1,64,60,65,-1,67,68,69,-1,13,70,68,-1,47,50,71,-1,50,72,71,-1,66,67,73,-1,66,65,67,-1,74,75,76,-1,75,77,76,-1,78,79,80,-1,80,81,78,-1,82,83,84,-1,85,86,87,-1,87,88,85,-1,89,83,90,-1,89,91,83,-1,92,93,94,-1,92,94,95,-1,96,87,97,-1,98,99,100,-1,100,101,98,-1,80,95,81,-1,102,103,104,-1,102,105,103,-1,106,107,108,-1,109,110,111,-1,109,112,110,-1,113,114,115,-1,116,117,118,-1,116,119,117,-1,120,113,121,-1,121,122,120,-1,123,124,125,-1,69,73,67,-1,69,126,73,-1,127,128,12,-1,127,129,128,-1,130,131,132,-1,132,133,130,-1,134,135,132,-1,134,115,135,-1,136,137,138,-1,138,139,136,-1,140,141,142,-1,140,143,141,-1,134,132,144,-1,144,145,134,-1,146,116,147,-1,148,149,4,-1,148,150,149,-1,151,152,153,-1,151,154,152,-1,155,137,156,-1,156,11,155,-1,142,157,158,-1,142,159,157,-1,131,144,132,-1,133,160,161,-1,133,162,160,-1,12,163,127,-1,132,135,133,-1,164,133,135,-1,139,165,136,-1,12,128,13,-1,115,166,113,-1,167,168,169,-1,169,170,167,-1,168,171,169,-1,172,173,174,-1,173,175,174,-1,176,177,178,-1,177,179,178,-1,180,181,182,-1,180,183,181,-1,184,43,185,-1,184,44,43,-1,186,187,188,-1,188,189,186,-1,190,1,191,-1,1,3,191,-1,192,188,193,-1,188,194,193,-1,195,196,16,-1,196,17,16,-1,197,41,42,-1,42,198,197,-1,199,200,201,-1,200,202,201,-1,54,198,59,-1,54,203,198,-1,204,205,206,-1,206,207,204,-1,208,209,210,-1,208,211,209,-1,212,213,214,-1,213,215,214,-1,216,217,218,-1,217,219,218,-1,220,221,222,-1,220,223,221,-1,109,155,224,-1,224,225,109,-1,112,225,226,-1,112,109,225,-1,227,228,226,-1,228,112,226,-1,70,6,68,-1,229,159,142,-1,142,152,229,-1,160,230,161,-1,113,231,121,-1,113,166,231,-1,232,233,234,-1,234,235,232,-1,79,108,236,-1,108,237,236,-1,236,238,80,-1,80,79,236,-1,98,239,99,-1,98,89,239,-1,240,88,241,-1,241,242,240,-1,243,239,90,-1,244,245,236,-1,236,237,244,-1,246,83,91,-1,75,247,77,-1,247,82,77,-1,108,248,249,-1,108,107,248,-1,78,108,79,-1,233,250,251,-1,251,234,233,-1,122,147,120,-1,122,146,147,-1,252,120,153,-1,120,147,153,-1,253,254,255,-1,255,154,253,-1,256,257,123,-1,123,125,256,-1,225,258,259,-1,225,224,258,-1,6,70,148,-1,148,4,6,-1,258,209,259,-1,209,260,259,-1,261,262,263,-1,261,264,262,-1,265,50,53,-1,50,49,53,-1,201,266,267,-1,201,202,266,-1,267,266,72,-1,266,71,72,-1,200,174,268,-1,268,202,200,-1,197,269,41,-1,269,270,41,-1,271,192,272,-1,192,193,272,-1,273,188,192,-1,273,189,188,-1,194,187,274,-1,194,188,187,-1,46,275,276,-1,276,45,46,-1,182,1,190,-1,182,181,1,-1,168,277,278,-1,278,171,168,-1,70,13,279,-1,279,148,70,-1,130,165,131,-1,120,252,141,-1,280,281,160,-1,282,230,281,-1,160,140,280,-1,160,162,140,-1,130,133,161,-1,140,162,143,-1,141,252,142,-1,137,155,283,-1,12,156,163,-1,12,11,156,-1,284,285,286,-1,287,4,149,-1,287,5,4,-1,288,7,9,-1,154,229,152,-1,154,255,229,-1,125,289,290,-1,125,124,289,-1,291,257,256,-1,292,123,126,-1,126,69,292,-1,139,145,144,-1,139,138,145,-1,164,141,143,-1,164,114,141,-1,282,156,137,-1,137,136,282,-1,120,114,113,-1,120,141,114,-1,138,293,145,-1,138,294,293,-1,13,128,279,-1,159,10,7,-1,159,229,10,-1,255,254,285,-1,254,286,285,-1,295,296,124,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib5_Geo_5_787_coordIndex_2()
		{
			int[] value = {296,289,124,-1,297,244,298,-1,151,116,118,-1,105,106,103,-1,105,107,106,-1,299,300,301,-1,239,89,90,-1,83,82,90,-1,302,81,303,-1,81,95,303,-1,108,78,106,-1,304,305,256,-1,306,307,264,-1,306,308,307,-1,191,196,194,-1,196,193,194,-1,6,292,69,-1,69,68,6,-1,279,128,129,-1,217,212,214,-1,217,260,212,-1,309,310,311,-1,309,312,310,-1,55,203,54,-1,195,313,196,-1,182,190,314,-1,190,274,314,-1,36,180,277,-1,180,278,277,-1,25,315,316,-1,315,317,316,-1,32,318,34,-1,318,22,34,-1,31,33,28,-1,28,319,31,-1,27,29,320,-1,320,321,27,-1,33,34,322,-1,34,323,322,-1,22,35,20,-1,22,318,35,-1,283,138,137,-1,324,256,305,-1,324,325,256,-1,325,291,256,-1,2,181,326,-1,2,1,181,-1,160,281,230,-1,327,181,183,-1,326,181,327,-1,328,329,330,-1,331,329,328,-1,331,332,329,-1,331,333,332,-1,321,167,170,-1,321,334,167,-1,320,335,336,-1,320,337,335,-1,338,339,340,-1,330,339,338,-1,33,30,28,-1,33,322,30,-1,19,34,22,-1,34,19,323,-1,315,334,336,-1,341,334,315,-1,168,24,277,-1,168,341,24,-1,27,170,342,-1,170,27,321,-1,30,343,37,-1,30,322,343,-1,339,323,19,-1,323,339,344,-1,345,25,316,-1,26,25,345,-1,336,317,315,-1,336,335,317,-1,333,38,37,-1,331,38,333,-1,46,346,275,-1,346,46,347,-1,182,278,180,-1,182,314,278,-1,264,348,306,-1,261,348,264,-1,349,177,176,-1,177,349,350,-1,270,173,172,-1,347,173,270,-1,63,351,62,-1,351,63,352,-1,353,50,265,-1,72,50,353,-1,354,309,311,-1,64,309,354,-1,213,263,215,-1,213,355,263,-1,205,201,267,-1,201,205,204,-1,310,356,357,-1,312,356,310,-1,215,262,358,-1,215,263,262,-1,62,211,208,-1,62,351,211,-1,214,358,359,-1,215,358,214,-1,360,312,361,-1,356,312,360,-1,64,362,309,-1,64,66,362,-1,67,363,68,-1,67,210,363,-1,364,354,365,-1,364,61,354,-1,193,313,272,-1,196,313,193,-1,357,264,307,-1,264,357,262,-1,218,366,367,-1,366,218,219,-1,368,82,84,-1,368,77,82,-1,304,369,370,-1,304,371,369,-1,372,117,119,-1,372,373,117,-1,374,375,376,-1,374,377,375,-1,228,324,305,-1,325,228,227,-1,325,324,228,-1,374,297,298,-1,374,76,297,-1,378,86,85,-1,378,300,86,-1,302,379,81,-1,379,302,301,-1,94,98,101,-1,98,94,93,-1,241,243,247,-1,96,243,241,-1,244,368,245,-1,244,297,368,-1,300,380,86,-1,300,299,380,-1,302,101,100,-1,303,101,302,-1,381,236,245,-1,381,238,236,-1,75,382,242,-1,74,382,75,-1,383,244,237,-1,244,383,298,-1,384,166,385,-1,231,166,384,-1,248,231,384,-1,231,248,386,-1,103,379,378,-1,103,106,379,-1,146,376,375,-1,146,387,376,-1,388,121,389,-1,122,121,388,-1,296,254,289,-1,254,296,286,-1,255,10,229,-1,285,10,255,-1,159,288,157,-1,159,7,288,-1,129,148,279,-1,150,148,129,-1,294,390,293,-1,294,391,390,-1,163,280,158,-1,163,281,280,-1,282,163,156,-1,282,281,163,-1,292,5,295,-1,292,6,5,-1,125,304,256,-1,125,290,304,-1,296,284,286,-1,296,287,284,-1,222,291,220,-1,222,257,291,-1,287,295,5,-1,295,287,296,-1,8,150,9,-1,8,149,150,-1,117,253,118,-1,117,371,253,-1,142,153,152,-1,142,252,153,-1,282,165,230,-1,165,282,136,-1,232,134,145,-1,232,385,134,-1,294,283,111,-1,294,138,283,-1,333,343,332,-1,343,333,37,-1,330,344,339,-1,330,329,344,-1,392,316,393,-1,316,392,345,-1,331,337,38,-1,328,337,331,-1,177,342,179,-1,177,319,342,-1,183,318,327,-1,183,35,318,-1,394,169,171,-1,395,169,394,-1,396,45,276,-1,396,349,45,-1,186,178,395,-1,185,178,186,-1,394,274,187,-1,394,314,274,-1,2,396,276,-1,2,326,396,-1,275,15,0,-1,15,275,346,-1,273,184,189,-1,175,184,273,-1,44,347,46,-1,44,173,347,-1,268,175,273,-1,268,174,175,-1,271,71,266,-1,271,272,71,-1,269,52,18,-1,52,269,197,-1,172,200,39,-1,172,174,200,-1,268,266,202,-1,268,271,266,-1,49,51,55,-1,49,48,51,-1,206,353,365,-1,206,205,353,-1,40,308,306,-1,40,199,308,-1,357,207,310,-1,307,207,357,-1,364,63,61,-1,364,57,63,-1,263,58,261,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib5_Geo_5_787_coordIndex_3()
		{
			int[] value = {58,263,355,-1,223,362,221,-1,223,361,362,-1,210,258,363,-1,258,210,209,-1,259,217,216,-1,259,260,217,-1,144,165,139,-1,144,131,165,-1,250,293,390,-1,250,233,293,-1,369,110,370,-1,369,391,110,-1,220,325,367,-1,325,220,291,-1,289,253,290,-1,254,253,289,-1,372,390,373,-1,250,390,372,-1,375,116,146,-1,119,116,375,-1,242,247,75,-1,242,241,247,-1,377,250,372,-1,251,250,377,-1,106,81,379,-1,78,81,106,-1,235,383,249,-1,235,234,383,-1,251,374,298,-1,251,377,374,-1,91,92,246,-1,92,91,93,-1,382,388,397,-1,387,388,382,-1,243,97,239,-1,96,97,243,-1,380,239,97,-1,99,239,380,-1,104,88,240,-1,104,85,88,-1,386,102,389,-1,102,386,105,-1,378,104,103,-1,104,378,85,-1,397,389,102,-1,388,389,397,-1,298,234,251,-1,298,383,234,-1,385,235,384,-1,385,232,235,-1,387,74,376,-1,387,382,74,-1,154,118,253,-1,154,151,118,-1,158,127,163,-1,127,158,157,-1,129,9,150,-1,129,288,9,-1,226,218,227,-1,226,216,218,-1,371,290,253,-1,371,304,290,-1,225,216,226,-1,225,259,216,-1,391,111,110,-1,391,294,111,-1,155,14,224,-1,14,155,11,-1,126,221,73,-1,222,221,126,-1,367,223,220,-1,367,366,223,-1,217,359,219,-1,217,214,359,-1,211,260,209,-1,260,211,212,-1,73,362,66,-1,73,221,362,-1,361,366,360,-1,223,366,361,-1,56,355,352,-1,56,58,355,-1,310,206,311,-1,207,206,310,-1,207,308,204,-1,207,307,308,-1,348,198,42,-1,59,198,348,-1,199,39,200,-1,40,39,199,-1,197,203,52,-1,203,197,198,-1,16,48,195,-1,48,16,51,-1,271,273,192,-1,273,271,268,-1,346,18,15,-1,18,346,269,-1,184,173,44,-1,173,184,175,-1,191,17,196,-1,17,191,3,-1,276,0,2,-1,0,276,275,-1,185,189,184,-1,185,186,189,-1,395,187,186,-1,395,394,187,-1,178,43,176,-1,43,178,185,-1,398,326,327,-1,326,398,396,-1,171,314,394,-1,171,278,314,-1,395,179,169,-1,178,179,395,-1,350,396,398,-1,396,350,349,-1,327,32,398,-1,327,318,32,-1,169,342,170,-1,179,342,169,-1,31,398,32,-1,398,31,350,-1,335,399,317,-1,335,400,399,-1,340,392,338,-1,340,345,392,-1,344,332,343,-1,344,329,332,-1,365,311,206,-1,354,311,365,-1,233,145,293,-1,233,232,145,-1,130,230,165,-1,130,161,230,-1,164,162,133,-1,143,162,164,-1,287,8,284,-1,8,287,149,-1,153,116,151,-1,116,153,147,-1,363,224,14,-1,258,224,363,-1,140,158,280,-1,140,142,158,-1,164,115,114,-1,115,164,135,-1,373,391,369,-1,391,373,390,-1,124,292,295,-1,124,123,292,-1,157,129,127,-1,157,288,129,-1,123,222,126,-1,257,222,123,-1,389,231,386,-1,121,231,389,-1,122,387,146,-1,122,388,387,-1,107,386,248,-1,105,386,107,-1,384,249,248,-1,384,235,249,-1,385,115,134,-1,385,166,115,-1,237,249,383,-1,237,108,249,-1,370,112,228,-1,112,370,110,-1,111,155,109,-1,155,111,283,-1,240,102,104,-1,397,102,240,-1,242,397,240,-1,382,397,242,-1,76,368,297,-1,76,77,368,-1,100,301,302,-1,299,301,100,-1,299,99,380,-1,99,299,100,-1,86,97,87,-1,86,380,97,-1,84,245,368,-1,381,245,84,-1,246,238,381,-1,238,246,92,-1,82,243,90,-1,82,247,243,-1,88,96,241,-1,88,87,96,-1,98,91,89,-1,98,93,91,-1,101,95,94,-1,101,303,95,-1,301,378,379,-1,378,301,300,-1,83,381,84,-1,246,381,83,-1,92,80,238,-1,92,95,80,-1,305,370,228,-1,305,304,370,-1,367,227,218,-1,367,325,227,-1,376,76,374,-1,376,74,76,-1,377,119,375,-1,377,372,119,-1,371,373,369,-1,371,117,373,-1,219,360,366,-1,219,359,360,-1,274,191,194,-1,274,190,191,-1,71,313,47,-1,313,71,272,-1,265,365,353,-1,364,365,265,-1,65,210,67,-1,65,208,210,-1,68,14,13,-1,363,14,68,-1,309,361,312,-1,309,362,361,-1,359,356,360,-1,358,356,359,-1,351,212,211,-1,351,213,212,-1,60,208,65,-1,60,62,208,-1,358,357,356,-1,358,262,357,-1,204,199,201,-1,199,204,308,-1,213,352,355,-1,213,351,352,-1,53,364,265,-1,364,53,57,-1,261,59,348,-1,261,58,59,-1,354,60,64,-1,60,354,61,-1,205,72,353,-1,267,72,205,-1,57,352,63,-1,352,57,56,-1,55,52,203,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib5_Geo_5_787_coordIndex_4()
		{
			int[] value = {52,55,51,-1,47,195,48,-1,47,313,195,-1,350,319,177,-1,319,350,31,-1,45,176,43,-1,176,45,349,-1,172,41,270,-1,172,39,41,-1,306,42,40,-1,306,348,42,-1,347,269,346,-1,269,347,270,-1,393,317,399,-1,317,393,316,-1,38,320,29,-1,320,38,337,-1,345,21,26,-1,345,340,21,-1,323,343,322,-1,323,344,343,-1,28,342,319,-1,342,28,27,-1,167,341,168,-1,341,167,334,-1,24,36,277,-1,36,24,23,-1,25,341,315,-1,24,341,25,-1,26,20,23,-1,26,21,20,-1,340,19,21,-1,339,19,340,-1,337,400,335,-1,337,328,400,-1,321,336,334,-1,321,320,336,-1,183,36,35,-1,180,36,183,-1,285,8,10,-1,285,284,8,-1,393,338,392,-1,338,393,399,-1,330,400,328,-1,338,400,330,-1,399,400,338,-1,3,15,17,-1,15,3,0,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib5_Geo_5_787_normalIndex_1()
		{
			int[] value = {141,151,129,-1,141,204,151,-1,127,130,175,-1,134,107,135,-1,134,57,107,-1,227,150,205,-1,205,241,227,-1,106,71,180,-1,106,36,71,-1,246,76,222,-1,246,126,76,-1,52,56,22,-1,22,108,52,-1,99,118,60,-1,118,164,60,-1,25,38,29,-1,38,93,29,-1,61,184,52,-1,52,76,61,-1,60,164,136,-1,136,39,60,-1,229,263,110,-1,263,185,110,-1,223,226,69,-1,226,105,69,-1,196,95,66,-1,66,160,196,-1,36,74,71,-1,36,35,74,-1,80,66,77,-1,66,73,77,-1,122,80,77,-1,122,128,80,-1,119,77,55,-1,119,122,77,-1,176,162,166,-1,162,145,166,-1,252,190,243,-1,252,176,190,-1,199,191,169,-1,205,167,191,-1,196,160,335,-1,160,308,335,-1,243,199,212,-1,243,190,199,-1,305,319,379,-1,319,390,379,-1,202,337,313,-1,313,120,202,-1,389,380,398,-1,21,6,32,-1,32,47,21,-1,248,380,256,-1,248,384,380,-1,395,369,370,-1,395,370,330,-1,88,32,49,-1,194,44,37,-1,37,188,194,-1,313,330,120,-1,82,51,63,-1,82,75,51,-1,96,203,320,-1,314,331,348,-1,314,309,331,-1,146,147,171,-1,114,261,221,-1,114,251,261,-1,70,146,103,-1,103,91,70,-1,193,216,247,-1,169,212,199,-1,169,198,212,-1,116,142,150,-1,116,92,142,-1,220,289,214,-1,214,58,220,-1,269,68,214,-1,269,171,68,-1,288,290,363,-1,363,346,288,-1,33,54,42,-1,33,15,54,-1,269,214,310,-1,310,326,269,-1,138,114,43,-1,102,78,127,-1,102,72,78,-1,111,8,19,-1,111,115,8,-1,300,290,168,-1,168,227,300,-1,42,133,139,-1,42,89,133,-1,289,310,214,-1,58,132,173,-1,58,9,132,-1,150,124,116,-1,214,68,58,-1,28,58,68,-1,346,286,288,-1,150,142,205,-1,171,192,146,-1,280,273,332,-1,332,281,280,-1,273,351,332,-1,208,234,321,-1,234,329,321,-1,213,201,306,-1,201,295,306,-1,265,144,244,-1,265,183,144,-1,317,223,316,-1,317,226,223,-1,354,373,375,-1,375,361,354,-1,237,151,274,-1,151,204,274,-1,391,375,366,-1,375,376,366,-1,98,231,71,-1,231,180,71,-1,3,110,185,-1,185,26,3,-1,356,338,383,-1,338,388,383,-1,77,26,55,-1,77,53,26,-1,377,372,350,-1,350,362,377,-1,187,211,209,-1,187,182,211,-1,207,170,253,-1,170,235,253,-1,284,275,294,-1,275,293,294,-1,250,255,225,-1,250,277,255,-1,314,300,259,-1,259,283,314,-1,309,283,298,-1,309,314,283,-1,304,302,298,-1,302,309,298,-1,167,175,191,-1,4,89,42,-1,42,8,4,-1,132,195,173,-1,146,155,103,-1,146,192,155,-1,333,357,360,-1,360,328,333,-1,337,320,385,-1,320,374,385,-1,385,394,313,-1,313,337,385,-1,194,67,44,-1,194,248,67,-1,84,47,157,-1,157,181,84,-1,267,67,256,-1,381,393,385,-1,385,374,381,-1,397,380,384,-1,319,303,390,-1,303,389,390,-1,320,242,336,-1,320,203,242,-1,202,320,337,-1,357,352,364,-1,364,360,357,-1,91,43,70,-1,91,138,43,-1,34,70,19,-1,70,43,19,-1,236,200,104,-1,104,115,236,-1,233,177,193,-1,193,247,233,-1,283,238,272,-1,283,259,238,-1,175,167,102,-1,102,127,175,-1,238,211,272,-1,211,239,272,-1,206,301,228,-1,206,287,301,-1,149,160,80,-1,160,66,80,-1,383,399,386,-1,383,388,399,-1,386,399,308,-1,399,335,308,-1,338,321,387,-1,387,388,338,-1,3,2,110,-1,2,65,110,-1,400,391,341,-1,391,366,341,-1,378,375,391,-1,378,361,375,-1,376,373,355,-1,376,375,373,-1,105,45,87,-1,87,69,105,-1,244,151,237,-1,244,144,151,-1,273,240,345,-1,345,351,273,-1,167,205,97,-1,97,102,167,-1,220,286,289,-1,70,34,54,-1,163,154,132,-1,179,195,154,-1,132,33,163,-1,132,9,33,-1,220,58,173,-1,33,9,15,-1,54,34,42,-1,290,300,347,-1,150,168,124,-1,150,227,168,-1,85,48,64,-1,81,127,78,-1,81,130,127,-1,143,134,135,-1,115,4,8,-1,115,104,4,-1,247,219,245,-1,247,216,219,-1,215,177,233,-1,186,193,198,-1,198,169,186,-1,346,326,310,-1,346,363,326,-1,28,54,15,-1,28,147,54,-1,179,168,290,-1,290,288,179,-1,70,147,146,-1,70,54,147,-1,363,359,326,-1,363,365,359,-1,205,142,97,-1,89,57,134,-1,89,4,57,-1,104,200,48,-1,200,64,48,-1,152,123,216,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib5_Geo_5_787_normalIndex_2()
		{
			int[] value = {123,219,216,-1,382,381,371,-1,111,114,221,-1,75,96,51,-1,75,203,96,-1,24,0,23,-1,67,248,256,-1,380,389,256,-1,50,120,172,-1,120,330,172,-1,320,202,96,-1,262,268,233,-1,264,343,287,-1,264,342,343,-1,274,231,376,-1,231,366,376,-1,175,186,169,-1,169,191,175,-1,97,142,92,-1,275,207,253,-1,275,239,207,-1,307,340,325,-1,307,322,340,-1,73,53,77,-1,98,210,231,-1,244,237,358,-1,237,355,358,-1,184,265,240,-1,265,345,240,-1,22,1,11,-1,1,5,11,-1,38,40,93,-1,40,126,93,-1,25,29,118,-1,118,165,25,-1,99,60,16,-1,16,59,99,-1,29,93,197,-1,93,260,197,-1,126,61,76,-1,126,40,61,-1,347,363,290,-1,278,233,268,-1,278,270,233,-1,270,215,233,-1,129,144,148,-1,129,151,144,-1,132,154,195,-1,178,144,183,-1,148,144,178,-1,12,125,121,-1,27,125,12,-1,27,112,125,-1,27,79,112,-1,59,280,281,-1,59,41,280,-1,16,7,10,-1,16,14,7,-1,113,232,218,-1,121,232,113,-1,29,164,118,-1,29,197,164,-1,246,93,126,-1,93,246,260,-1,1,41,10,-1,62,41,1,-1,273,56,240,-1,273,62,56,-1,99,281,254,-1,281,99,59,-1,164,217,136,-1,164,197,217,-1,232,260,246,-1,260,232,230,-1,156,22,11,-1,108,22,156,-1,10,5,1,-1,10,7,5,-1,79,39,136,-1,27,39,79,-1,105,31,45,-1,31,105,117,-1,244,345,265,-1,244,358,345,-1,287,189,264,-1,206,189,287,-1,94,201,213,-1,201,94,100,-1,65,234,208,-1,117,234,65,-1,145,161,166,-1,161,145,137,-1,291,160,149,-1,308,160,291,-1,257,307,325,-1,252,307,257,-1,170,228,235,-1,170,140,228,-1,372,383,386,-1,383,372,377,-1,340,324,334,-1,322,324,340,-1,235,301,297,-1,235,228,301,-1,166,182,187,-1,166,161,182,-1,253,297,292,-1,235,297,253,-1,312,322,299,-1,324,322,312,-1,252,285,307,-1,252,243,285,-1,199,224,191,-1,199,209,224,-1,159,257,276,-1,159,162,257,-1,366,210,341,-1,231,210,366,-1,334,287,343,-1,287,334,301,-1,294,296,282,-1,296,294,293,-1,392,389,398,-1,392,390,389,-1,262,318,311,-1,262,266,318,-1,323,261,251,-1,323,315,261,-1,344,249,271,-1,344,327,249,-1,302,278,268,-1,270,302,304,-1,270,278,302,-1,344,382,371,-1,344,379,382,-1,13,6,21,-1,13,0,6,-1,50,46,120,-1,46,50,23,-1,370,194,188,-1,194,370,369,-1,157,267,303,-1,88,267,157,-1,381,392,393,-1,381,382,392,-1,0,30,6,-1,0,24,30,-1,50,188,37,-1,172,188,50,-1,396,385,393,-1,396,394,385,-1,319,174,181,-1,305,174,319,-1,367,381,374,-1,381,367,371,-1,258,192,279,-1,155,192,258,-1,242,155,258,-1,155,242,109,-1,51,46,13,-1,51,96,46,-1,138,271,249,-1,138,153,271,-1,83,103,86,-1,91,103,83,-1,123,200,219,-1,200,123,64,-1,104,57,4,-1,48,57,104,-1,89,143,133,-1,89,134,143,-1,92,102,97,-1,72,102,92,-1,365,353,359,-1,365,349,353,-1,124,163,139,-1,124,154,163,-1,179,124,168,-1,179,154,124,-1,186,130,152,-1,186,175,130,-1,247,262,233,-1,247,245,262,-1,123,85,64,-1,123,81,85,-1,225,215,250,-1,225,177,215,-1,81,152,130,-1,152,81,123,-1,107,72,135,-1,107,78,72,-1,261,236,221,-1,261,266,236,-1,42,19,8,-1,42,34,19,-1,179,286,195,-1,286,179,288,-1,333,269,326,-1,333,279,269,-1,365,347,348,-1,365,363,347,-1,79,217,112,-1,217,79,136,-1,121,230,232,-1,121,125,230,-1,101,11,20,-1,11,101,156,-1,27,14,39,-1,12,14,27,-1,201,254,295,-1,201,165,254,-1,183,40,178,-1,183,61,40,-1,368,332,351,-1,339,332,368,-1,131,69,87,-1,131,94,69,-1,354,306,339,-1,316,306,354,-1,368,355,373,-1,368,358,355,-1,129,131,87,-1,129,148,131,-1,45,106,141,-1,106,45,31,-1,378,317,361,-1,329,317,378,-1,226,117,105,-1,226,234,117,-1,387,329,378,-1,387,321,329,-1,400,335,399,-1,400,341,335,-1,2,35,36,-1,35,2,3,-1,208,338,229,-1,208,321,338,-1,387,399,388,-1,387,400,399,-1,66,74,73,-1,66,95,74,-1,350,291,276,-1,350,372,291,-1,263,342,264,-1,263,356,342,-1,334,362,340,-1,343,362,334,-1,159,145,162,-1,159,128,145,-1,228,119,206,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib5_Geo_5_787_normalIndex_3()
		{
			int[] value = {119,228,140,-1,277,285,255,-1,277,299,285,-1,209,238,224,-1,238,209,211,-1,272,275,284,-1,272,239,275,-1,310,286,346,-1,310,289,286,-1,352,359,353,-1,352,357,359,-1,318,331,311,-1,318,349,331,-1,250,270,282,-1,270,250,215,-1,219,236,245,-1,200,236,219,-1,323,353,315,-1,352,353,323,-1,249,114,138,-1,251,114,249,-1,181,303,319,-1,181,157,303,-1,327,352,323,-1,364,352,327,-1,96,120,46,-1,202,120,96,-1,328,367,336,-1,328,360,367,-1,364,344,371,-1,364,327,344,-1,384,395,397,-1,395,384,369,-1,174,83,90,-1,153,83,174,-1,267,49,67,-1,88,49,267,-1,30,67,49,-1,44,67,30,-1,63,47,84,-1,63,21,47,-1,109,82,86,-1,82,109,75,-1,13,63,51,-1,63,13,21,-1,90,86,82,-1,83,86,90,-1,371,360,364,-1,371,367,360,-1,279,328,258,-1,279,333,328,-1,153,305,271,-1,153,174,305,-1,115,221,236,-1,115,111,221,-1,139,116,124,-1,116,139,133,-1,92,135,72,-1,92,143,135,-1,298,294,304,-1,298,284,294,-1,266,245,236,-1,266,262,245,-1,283,284,298,-1,283,272,284,-1,349,348,331,-1,349,365,348,-1,300,241,259,-1,241,300,227,-1,198,255,212,-1,225,255,198,-1,282,277,250,-1,282,296,277,-1,275,292,293,-1,275,253,292,-1,182,239,211,-1,239,182,207,-1,212,285,243,-1,212,255,285,-1,299,296,312,-1,277,296,299,-1,122,140,137,-1,122,119,140,-1,340,350,325,-1,362,350,340,-1,362,342,377,-1,362,343,342,-1,189,26,185,-1,55,26,189,-1,356,229,338,-1,263,229,356,-1,3,53,35,-1,53,3,26,-1,71,95,98,-1,95,71,74,-1,400,378,391,-1,378,400,387,-1,31,36,106,-1,36,31,2,-1,317,234,226,-1,234,317,329,-1,274,180,231,-1,180,274,204,-1,87,141,129,-1,141,87,45,-1,316,361,317,-1,316,354,361,-1,339,373,354,-1,339,368,373,-1,306,223,213,-1,223,306,316,-1,158,148,178,-1,148,158,131,-1,351,358,368,-1,351,345,358,-1,339,295,332,-1,306,295,339,-1,100,131,158,-1,131,100,94,-1,178,38,158,-1,178,40,38,-1,332,254,281,-1,295,254,332,-1,25,158,38,-1,158,25,100,-1,7,18,5,-1,7,17,18,-1,218,101,113,-1,218,156,101,-1,230,112,217,-1,230,125,112,-1,276,325,350,-1,257,325,276,-1,357,326,359,-1,357,333,326,-1,220,195,286,-1,220,173,195,-1,28,9,58,-1,15,9,28,-1,81,107,85,-1,107,81,78,-1,19,114,111,-1,114,19,43,-1,224,259,241,-1,238,259,224,-1,33,139,163,-1,33,42,139,-1,28,171,147,-1,171,28,68,-1,315,349,318,-1,349,315,353,-1,216,186,152,-1,216,193,186,-1,133,92,116,-1,133,143,92,-1,193,225,198,-1,177,225,193,-1,86,155,109,-1,103,155,86,-1,91,153,138,-1,91,83,153,-1,203,109,242,-1,75,109,203,-1,258,336,242,-1,258,328,336,-1,279,171,269,-1,279,192,171,-1,374,336,367,-1,374,320,336,-1,311,309,302,-1,309,311,331,-1,348,300,314,-1,300,348,347,-1,84,82,63,-1,90,82,84,-1,181,90,84,-1,174,90,181,-1,379,392,382,-1,379,390,392,-1,37,23,50,-1,24,23,37,-1,24,44,30,-1,44,24,37,-1,6,49,32,-1,6,30,49,-1,398,393,392,-1,396,393,398,-1,397,394,396,-1,394,397,395,-1,389,267,256,-1,389,303,267,-1,47,88,157,-1,47,32,88,-1,194,384,248,-1,194,369,384,-1,188,330,370,-1,188,172,330,-1,23,13,46,-1,13,23,0,-1,380,396,398,-1,397,396,380,-1,395,313,394,-1,395,330,313,-1,268,311,302,-1,268,262,311,-1,282,304,294,-1,282,270,304,-1,271,379,344,-1,271,305,379,-1,327,251,249,-1,327,323,251,-1,266,315,318,-1,266,261,315,-1,293,312,296,-1,293,292,312,-1,355,274,376,-1,355,237,274,-1,335,210,196,-1,210,335,341,-1,149,276,291,-1,159,276,149,-1,190,209,199,-1,190,187,209,-1,191,241,205,-1,224,241,191,-1,307,299,322,-1,307,285,299,-1,292,324,312,-1,297,324,292,-1,161,207,182,-1,161,170,207,-1,176,187,190,-1,176,166,187,-1,297,334,324,-1,297,301,334,-1,377,356,383,-1,356,377,342,-1,170,137,140,-1,170,161,137,-1,80,159,149,-1,159,80,128,-1,206,55,189,-1,206,119,55,-1,257,176,252,-1,176,257,162,-1,372,308,291,-1,386,308,372,-1,128,137,145,-1,137,128,122,-1,73,35,53,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib5_Geo_5_787_normalIndex_4()
		{
			int[] value = {35,73,74,-1,196,98,95,-1,196,210,98,-1,100,165,201,-1,165,100,25,-1,69,213,223,-1,213,69,94,-1,208,110,65,-1,208,229,110,-1,264,185,263,-1,264,189,185,-1,117,2,31,-1,2,117,65,-1,20,5,18,-1,5,20,11,-1,39,16,60,-1,16,39,14,-1,156,222,108,-1,156,218,222,-1,260,217,197,-1,260,230,217,-1,118,254,165,-1,254,118,99,-1,280,62,273,-1,62,280,41,-1,56,184,240,-1,184,56,52,-1,22,62,1,-1,56,62,22,-1,108,76,52,-1,108,222,76,-1,218,246,222,-1,232,246,218,-1,14,17,7,-1,14,12,17,-1,59,10,41,-1,59,16,10,-1,183,184,61,-1,265,184,183,-1,48,107,57,-1,48,85,107,-1,20,113,101,-1,113,20,18,-1,121,17,12,-1,113,17,121,-1,18,17,113,-1,204,106,180,-1,106,204,141,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib6_Geo_5_793_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,11,12,9,-1,13,14,15,-1,14,16,15,-1,17,18,19,-1,20,21,22,-1,23,24,25,-1,25,26,23,-1,27,28,29,-1,30,31,32,-1,30,33,31,-1,34,35,36,-1,34,37,35,-1,38,39,40,-1,38,41,39,-1,42,19,43,-1,44,45,46,-1,44,47,45,-1,28,36,48,-1,48,41,28,-1,36,28,27,-1,27,34,36,-1,49,50,51,-1,49,52,50,-1,25,53,26,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,60,63,61,-1,64,65,66,-1,66,58,64,-1,67,68,55,-1,68,56,55,-1,69,70,71,-1,72,73,74,-1,72,75,73,-1,76,77,78,-1,76,79,77,-1,35,37,80,-1,81,74,73,-1,81,82,74,-1,83,84,85,-1,83,86,84,-1,87,88,89,-1,87,90,88,-1,91,92,32,-1,91,93,92,-1,71,94,95,-1,57,96,97,-1,57,59,96,-1,98,99,100,-1,99,62,100,-1,101,102,103,-1,101,104,102,-1,105,69,106,-1,106,107,105,-1,108,109,110,-1,110,111,108,-1,112,113,13,-1,13,15,112,-1,114,13,104,-1,115,109,116,-1,109,108,116,-1,98,100,117,-1,117,118,98,-1,37,119,120,-1,37,34,119,-1,39,121,122,-1,121,123,122,-1,124,125,126,-1,126,125,127,-1,127,128,126,-1,129,130,45,-1,130,46,45,-1,131,47,48,-1,47,44,48,-1,132,133,134,-1,135,136,137,-1,138,139,140,-1,139,141,140,-1,142,143,144,-1,144,145,142,-1,146,147,148,-1,148,149,146,-1,150,151,152,-1,152,153,150,-1,145,154,155,-1,145,152,154,-1,156,128,157,-1,156,126,128,-1,155,154,158,-1,124,159,160,-1,161,155,158,-1,158,162,161,-1,163,164,165,-1,166,163,167,-1,163,165,167,-1,159,168,169,-1,159,170,168,-1,171,172,173,-1,21,20,174,-1,175,176,132,-1,175,177,176,-1,178,38,179,-1,162,180,181,-1,162,182,180,-1,163,183,164,-1,115,116,184,-1,116,185,184,-1,107,106,186,-1,186,187,107,-1,188,97,189,-1,190,16,191,-1,192,6,8,-1,192,193,6,-1,113,102,13,-1,102,104,13,-1,5,4,194,-1,4,195,194,-1,196,197,198,-1,199,200,201,-1,199,202,200,-1,203,204,205,-1,203,206,204,-1,207,120,119,-1,207,208,120,-1,189,96,111,-1,189,97,96,-1,209,71,70,-1,209,94,71,-1,210,211,212,-1,212,213,210,-1,65,93,66,-1,65,92,93,-1,67,214,68,-1,67,215,214,-1,72,216,217,-1,217,78,72,-1,218,219,54,-1,218,220,219,-1,221,68,214,-1,221,222,68,-1,74,216,72,-1,74,223,216,-1,224,220,225,-1,220,218,225,-1,224,226,220,-1,224,227,226,-1,228,227,224,-1,224,229,228,-1,230,231,232,-1,230,233,231,-1,60,234,235,-1,60,236,234,-1,237,238,239,-1,239,89,237,-1,63,240,61,-1,63,241,240,-1,98,242,243,-1,243,99,98,-1,18,244,19,-1,245,246,118,-1,245,247,246,-1,29,178,27,-1,248,50,178,-1,17,249,18,-1,249,250,18,-1,251,252,194,-1,194,253,251,-1,121,39,254,-1,39,41,254,-1,255,125,256,-1,255,127,125,-1,257,256,258,-1,257,255,256,-1,259,260,261,-1,261,262,259,-1,263,127,255,-1,263,130,127,-1,134,133,264,-1,133,265,264,-1,266,267,268,-1,266,269,267,-1,252,251,270,-1,248,178,179,-1,179,4,248,-1,52,27,178,-1,178,50,52,-1,271,272,252,-1,252,273,271,-1,29,38,178,-1,246,247,274,-1,247,275,274,-1,26,174,20,-1,26,53,174,-1,246,274,242,-1,274,276,242,-1,277,244,18,-1,278,241,279,-1,278,240,241,-1,241,63,280,-1,280,281,241,-1,232,281,280,-1,232,231,281,-1,282,283,284,-1,282,285,283,-1,286,81,287,-1,286,288,81,-1,223,214,216,-1,223,221,214,-1,289,54,56,-1,289,218,54,-1,216,214,217,-1,214,215,217,-1,211,210,217,-1,217,215,211,-1,92,30,32,-1,78,210,76,-1,78,217,210,-1,290,206,203,-1,290,291,206,-1,292,293,294,-1,292,295,293,-1,73,287,81,-1,15,16,190,-1,296,86,297,-1,297,276,296,-1,298,1,299,-1,298,300,1,-1,301,192,12,-1,192,8,12,-1,14,13,114,-1,71,95,106,-1,106,69,71,-1,302,187,303,-1,187,186,303,-1,110,189,111,-1,110,304,189,-1,103,184,305,-1,184,185,305,-1,24,134,25,-1,175,132,306,-1,307,17,308,-1,309,166,310,-1,310,311,309,-1,138,312,142,-1,312,143,142,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib6_Geo_5_793_coordIndex_2()
		{
			int[] value = {160,159,169,-1,313,309,180,-1,181,314,141,-1,141,139,181,-1,315,257,258,-1,315,316,257,-1,317,183,171,-1,317,164,183,-1,162,318,182,-1,162,158,318,-1,145,155,161,-1,161,142,145,-1,165,169,168,-1,169,258,160,-1,258,256,160,-1,319,320,321,-1,153,152,145,-1,147,322,148,-1,322,151,148,-1,323,149,148,-1,142,139,138,-1,142,161,139,-1,135,324,201,-1,135,325,324,-1,326,317,171,-1,171,173,326,-1,44,46,254,-1,47,327,45,-1,201,328,199,-1,329,270,251,-1,308,42,49,-1,49,51,308,-1,271,273,249,-1,308,19,42,-1,274,296,276,-1,274,330,296,-1,209,331,94,-1,331,332,94,-1,215,64,211,-1,215,67,64,-1,204,206,70,-1,70,69,204,-1,190,191,333,-1,105,334,204,-1,204,69,105,-1,12,335,301,-1,12,11,335,-1,115,10,109,-1,115,336,10,-1,337,104,101,-1,337,114,104,-1,297,242,276,-1,297,243,242,-1,292,294,338,-1,332,292,94,-1,332,213,292,-1,339,290,340,-1,208,341,120,-1,208,84,341,-1,89,85,237,-1,89,88,85,-1,342,343,344,-1,344,345,342,-1,43,345,344,-1,80,330,346,-1,346,35,80,-1,83,297,86,-1,347,207,348,-1,347,238,207,-1,82,288,349,-1,82,81,288,-1,73,227,287,-1,73,226,227,-1,78,75,72,-1,78,77,75,-1,291,70,206,-1,291,209,70,-1,21,174,100,-1,174,117,100,-1,67,65,64,-1,67,55,65,-1,289,350,351,-1,289,222,350,-1,62,21,100,-1,62,61,21,-1,352,116,108,-1,352,353,116,-1,66,354,355,-1,244,277,22,-1,22,21,244,-1,249,273,177,-1,248,51,50,-1,248,356,51,-1,17,19,308,-1,44,41,48,-1,44,254,41,-1,34,52,343,-1,34,27,52,-1,179,195,4,-1,40,179,38,-1,76,332,331,-1,23,20,22,-1,23,26,20,-1,24,132,134,-1,24,306,132,-1,177,273,176,-1,273,357,176,-1,85,88,83,-1,11,10,336,-1,9,12,8,-1,8,7,9,-1,5,272,3,-1,272,271,3,-1,358,154,322,-1,359,360,361,-1,133,132,176,-1,362,359,363,-1,362,364,359,-1,364,360,359,-1,363,365,362,-1,259,153,145,-1,196,153,259,-1,365,310,362,-1,311,310,365,-1,320,366,172,-1,366,320,146,-1,196,150,153,-1,150,196,198,-1,356,4,3,-1,248,4,356,-1,307,3,271,-1,307,356,3,-1,357,133,176,-1,133,357,328,-1,52,344,343,-1,49,344,52,-1,41,29,28,-1,41,38,29,-1,367,368,122,-1,367,253,368,-1,1,265,2,-1,1,300,265,-1,369,174,53,-1,117,174,369,-1,280,283,232,-1,280,235,283,-1,351,230,285,-1,351,350,230,-1,289,68,222,-1,56,68,289,-1,53,370,369,-1,53,264,370,-1,209,371,331,-1,209,291,371,-1,288,372,349,-1,288,373,372,-1,239,347,374,-1,239,238,347,-1,348,119,342,-1,348,207,119,-1,84,296,341,-1,84,86,296,-1,267,35,346,-1,35,267,131,-1,342,278,348,-1,278,342,345,-1,227,286,287,-1,227,228,286,-1,237,84,208,-1,237,85,84,-1,375,290,203,-1,375,340,290,-1,376,377,378,-1,379,377,376,-1,94,338,95,-1,94,292,338,-1,14,337,334,-1,14,114,337,-1,187,191,107,-1,187,333,191,-1,380,381,302,-1,380,193,381,-1,382,7,6,-1,304,7,382,-1,109,9,110,-1,109,10,9,-1,184,336,115,-1,184,383,336,-1,384,193,192,-1,381,193,384,-1,113,383,102,-1,113,335,383,-1,188,293,97,-1,188,385,293,-1,380,303,385,-1,303,380,302,-1,101,205,337,-1,101,386,205,-1,305,375,386,-1,379,375,305,-1,211,58,212,-1,211,64,58,-1,213,295,292,-1,213,212,295,-1,93,354,66,-1,354,93,378,-1,291,339,371,-1,290,339,291,-1,275,330,274,-1,275,346,330,-1,387,369,370,-1,245,369,387,-1,51,307,308,-1,356,307,51,-1,388,329,367,-1,388,202,329,-1,270,328,357,-1,270,199,328,-1,135,366,325,-1,135,137,366,-1,328,324,133,-1,201,324,328,-1,358,147,319,-1,358,322,147,-1,323,151,150,-1,148,151,323,-1,389,136,200,-1,389,390,136,-1,45,391,129,-1,391,45,327,-1,258,165,315,-1,165,258,169,-1,321,182,318,-1,182,321,392,-1,164,315,165,-1,315,164,317,-1,143,156,144,-1,143,393,156,-1,125,160,256,-1,124,160,125,-1,394,395,396,-1,395,394,397,-1,138,398,312,-1,140,398,138,-1,309,181,180,-1,309,314,181,-1,395,399,396,-1,395,170,399,-1,400,170,395,-1,400,361,360,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib6_Geo_5_793_coordIndex_3()
		{
			int[] value = {361,400,395,-1,140,401,398,-1,359,401,140,-1,398,402,397,-1,401,402,398,-1,360,403,400,-1,360,364,403,-1,18,404,277,-1,404,18,250,-1,306,250,175,-1,306,404,250,-1,24,404,306,-1,24,23,404,-1,395,402,361,-1,402,395,397,-1,311,314,309,-1,311,365,314,-1,334,205,204,-1,337,205,334,-1,304,188,189,-1,188,304,382,-1,15,384,112,-1,384,15,190,-1,133,2,265,-1,133,324,2,-1,370,298,387,-1,370,300,298,-1,405,266,268,-1,405,406,266,-1,197,407,408,-1,407,197,262,-1,409,47,269,-1,47,409,327,-1,391,260,157,-1,391,261,260,-1,323,2,149,-1,2,323,0,-1,168,167,165,-1,168,403,167,-1,410,123,121,-1,123,410,411,-1,185,353,377,-1,185,116,353,-1,186,95,338,-1,186,106,95,-1,379,340,375,-1,376,340,379,-1,31,371,339,-1,31,79,371,-1,77,31,33,-1,77,79,31,-1,30,65,55,-1,65,30,92,-1,412,30,219,-1,30,412,33,-1,226,219,220,-1,226,412,219,-1,413,221,223,-1,413,414,221,-1,233,350,414,-1,233,230,350,-1,413,349,415,-1,349,413,82,-1,416,349,372,-1,415,349,416,-1,282,417,229,-1,282,284,417,-1,373,286,87,-1,373,288,286,-1,231,418,281,-1,231,416,418,-1,235,284,283,-1,284,235,234,-1,88,417,419,-1,90,417,88,-1,419,83,88,-1,420,83,419,-1,279,281,418,-1,279,241,281,-1,279,348,278,-1,348,279,347,-1,83,243,297,-1,83,420,243,-1,278,244,240,-1,345,244,278,-1,246,98,118,-1,242,98,246,-1,25,264,53,-1,264,25,134,-1,247,268,275,-1,247,405,268,-1,131,36,35,-1,131,48,36,-1,272,194,252,-1,194,272,5,-1,387,406,405,-1,298,406,387,-1,298,408,406,-1,298,299,408,-1,121,46,410,-1,121,254,46,-1,389,202,388,-1,200,202,389,-1,130,410,46,-1,410,130,263,-1,390,411,421,-1,389,411,390,-1,262,409,407,-1,262,261,409,-1,257,263,255,-1,421,263,257,-1,358,321,318,-1,321,358,319,-1,173,136,326,-1,137,136,173,-1,394,143,312,-1,394,393,143,-1,163,392,183,-1,392,163,313,-1,316,421,257,-1,316,390,421,-1,145,260,259,-1,145,144,260,-1,200,135,201,-1,200,136,135,-1,411,263,421,-1,411,410,263,-1,1,198,299,-1,0,198,1,-1,388,411,389,-1,388,123,411,-1,269,407,409,-1,269,266,407,-1,368,194,195,-1,194,368,253,-1,405,245,387,-1,247,245,405,-1,345,19,244,-1,345,43,19,-1,240,21,61,-1,244,21,240,-1,99,420,236,-1,99,243,420,-1,237,207,238,-1,208,207,237,-1,99,60,62,-1,99,236,60,-1,374,279,418,-1,347,279,374,-1,419,236,420,-1,236,419,234,-1,87,239,373,-1,87,89,239,-1,234,417,284,-1,417,234,419,-1,372,418,416,-1,372,374,418,-1,229,90,228,-1,229,417,90,-1,233,416,231,-1,233,415,416,-1,229,225,282,-1,229,224,225,-1,415,414,413,-1,415,233,414,-1,225,285,282,-1,285,225,351,-1,82,223,74,-1,82,413,223,-1,222,414,350,-1,414,222,221,-1,351,218,289,-1,218,351,225,-1,412,73,75,-1,226,73,412,-1,219,55,54,-1,219,30,55,-1,33,75,77,-1,412,75,33,-1,91,31,339,-1,32,31,91,-1,213,76,210,-1,76,213,332,-1,354,352,355,-1,353,352,354,-1,338,303,186,-1,303,338,294,-1,185,379,305,-1,379,185,377,-1,80,120,341,-1,120,80,37,-1,172,321,320,-1,172,171,321,-1,262,196,259,-1,262,197,196,-1,299,197,408,-1,198,197,299,-1,157,144,156,-1,157,260,144,-1,261,327,409,-1,261,391,327,-1,131,269,47,-1,131,267,269,-1,408,266,406,-1,266,408,407,-1,40,195,179,-1,368,195,40,-1,320,147,146,-1,319,147,320,-1,383,11,336,-1,383,335,11,-1,190,381,384,-1,190,333,381,-1,295,97,293,-1,295,57,97,-1,365,141,314,-1,141,365,363,-1,394,124,393,-1,394,396,124,-1,403,362,167,-1,403,364,362,-1,313,182,392,-1,313,180,182,-1,162,139,161,-1,139,162,181,-1,277,23,22,-1,404,23,277,-1,249,175,250,-1,175,249,177,-1,273,270,357,-1,273,252,270,-1,167,310,166,-1,362,310,167,-1,396,159,124,-1,159,399,170,-1,396,399,159,-1,163,309,313,-1,163,166,309,-1,312,397,394,-1,397,312,398,-1,400,168,170,-1,400,403,168,-1,317,316,315,-1,326,316,317,-1,183,321,171,-1,183,392,321,-1,126,393,124,-1,156,393,126,-1,129,157,128,-1,157,129,391,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib6_Geo_5_793_coordIndex_4()
		{
			int[] value = {390,326,136,-1,390,316,326,-1,154,151,322,-1,152,151,154,-1,0,150,198,-1,323,150,0,-1,318,154,358,-1,318,158,154,-1,141,359,140,-1,141,363,359,-1,325,146,149,-1,146,325,366,-1,137,172,366,-1,137,173,172,-1,128,130,129,-1,128,127,130,-1,367,123,388,-1,122,123,367,-1,117,245,118,-1,117,369,245,-1,267,275,268,-1,267,346,275,-1,339,376,91,-1,376,339,340,-1,57,212,58,-1,295,212,57,-1,386,103,305,-1,386,101,103,-1,203,386,375,-1,205,386,203,-1,385,294,293,-1,294,385,303,-1,385,382,380,-1,382,385,188,-1,113,301,335,-1,301,113,112,-1,112,192,301,-1,112,384,192,-1,16,107,191,-1,16,105,107,-1,9,304,110,-1,9,7,304,-1,6,380,382,-1,6,193,380,-1,302,333,187,-1,302,381,333,-1,16,334,105,-1,16,14,334,-1,103,383,184,-1,103,102,383,-1,91,378,93,-1,376,378,91,-1,378,353,354,-1,378,377,353,-1,87,228,90,-1,286,228,87,-1,341,330,80,-1,330,341,296,-1,342,34,343,-1,342,119,34,-1,373,374,372,-1,373,239,374,-1,331,79,76,-1,331,371,79,-1,59,66,355,-1,59,58,66,-1,355,96,59,-1,355,352,96,-1,232,285,230,-1,232,283,285,-1,63,235,280,-1,235,63,60,-1,300,264,265,-1,370,264,300,-1,251,367,329,-1,251,253,367,-1,122,40,39,-1,122,368,40,-1,43,49,42,-1,344,49,43,-1,270,202,199,-1,329,202,270,-1,307,249,17,-1,307,271,249,-1,352,111,96,-1,352,108,111,-1,149,324,325,-1,324,149,2,-1,361,401,359,-1,402,401,361,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib6_Geo_5_793_normalIndex_1()
		{
			int[] value = {368,346,311,-1,128,75,76,-1,49,42,152,-1,54,67,218,-1,218,165,54,-1,92,55,5,-1,55,6,5,-1,159,180,193,-1,232,269,190,-1,127,87,129,-1,129,201,127,-1,251,321,292,-1,19,170,69,-1,19,82,170,-1,267,367,381,-1,267,284,367,-1,253,158,132,-1,253,275,158,-1,182,193,185,-1,247,280,197,-1,247,323,280,-1,321,381,340,-1,340,275,321,-1,381,321,251,-1,251,267,381,-1,156,172,143,-1,156,212,172,-1,129,286,201,-1,94,148,258,-1,322,273,255,-1,301,293,297,-1,301,317,293,-1,298,102,89,-1,89,273,298,-1,325,335,148,-1,335,258,148,-1,315,345,366,-1,409,225,350,-1,409,277,225,-1,410,287,412,-1,410,316,287,-1,367,284,295,-1,223,350,225,-1,223,349,350,-1,221,266,231,-1,221,270,266,-1,178,183,196,-1,178,142,183,-1,125,44,69,-1,125,98,44,-1,366,373,372,-1,322,246,314,-1,322,255,246,-1,306,279,300,-1,279,297,300,-1,32,126,9,-1,32,93,126,-1,202,315,319,-1,319,150,202,-1,121,3,35,-1,35,188,121,-1,31,111,92,-1,92,5,31,-1,123,92,93,-1,26,3,100,-1,3,121,100,-1,306,300,327,-1,327,336,306,-1,284,241,252,-1,284,267,241,-1,158,162,114,-1,162,130,114,-1,78,222,245,-1,245,222,249,-1,249,304,245,-1,307,240,280,-1,240,197,280,-1,371,323,340,-1,323,247,340,-1,133,194,199,-1,73,63,56,-1,208,203,219,-1,203,213,219,-1,244,226,341,-1,341,390,244,-1,294,384,398,-1,398,320,294,-1,395,418,400,-1,400,386,395,-1,390,419,387,-1,390,400,419,-1,276,304,364,-1,276,245,304,-1,387,419,385,-1,78,24,112,-1,243,387,385,-1,385,257,243,-1,20,15,21,-1,11,20,1,-1,20,21,1,-1,24,14,22,-1,24,34,14,-1,60,62,36,-1,269,232,291,-1,161,120,133,-1,161,186,120,-1,227,253,174,-1,257,228,224,-1,257,242,228,-1,20,48,15,-1,26,100,18,-1,100,77,18,-1,150,319,313,-1,313,155,150,-1,248,314,216,-1,10,6,8,-1,50,49,152,-1,50,39,49,-1,111,126,92,-1,126,93,92,-1,76,75,70,-1,75,71,70,-1,406,401,396,-1,140,85,113,-1,140,106,85,-1,214,250,189,-1,214,281,250,-1,234,252,241,-1,234,254,252,-1,216,246,188,-1,216,314,246,-1,370,366,345,-1,370,373,366,-1,403,382,360,-1,360,388,403,-1,102,98,89,-1,102,44,98,-1,325,411,335,-1,325,407,411,-1,409,420,415,-1,415,412,409,-1,176,2,94,-1,176,7,2,-1,413,335,411,-1,413,324,335,-1,350,420,409,-1,350,421,420,-1,51,7,205,-1,7,176,205,-1,51,65,7,-1,51,38,65,-1,57,38,51,-1,51,90,57,-1,355,379,329,-1,355,408,379,-1,301,256,309,-1,301,271,256,-1,233,230,217,-1,217,196,233,-1,317,272,293,-1,317,305,272,-1,306,310,263,-1,263,279,306,-1,180,237,193,-1,348,343,336,-1,348,358,343,-1,292,227,251,-1,118,172,227,-1,159,151,180,-1,151,171,180,-1,61,47,70,-1,70,101,61,-1,162,158,210,-1,158,275,210,-1,181,222,154,-1,181,249,222,-1,131,154,134,-1,131,181,154,-1,405,404,393,-1,393,402,405,-1,167,249,181,-1,167,240,249,-1,199,194,285,-1,194,282,285,-1,383,369,363,-1,383,389,369,-1,47,61,88,-1,118,227,174,-1,174,75,118,-1,212,251,227,-1,227,172,212,-1,80,81,47,-1,47,74,80,-1,292,253,227,-1,343,358,353,-1,358,375,353,-1,201,291,232,-1,201,286,291,-1,343,353,310,-1,353,308,310,-1,168,237,180,-1,262,305,289,-1,262,272,305,-1,305,317,330,-1,330,339,305,-1,329,339,330,-1,329,379,339,-1,215,302,239,-1,215,290,302,-1,122,223,136,-1,122,187,223,-1,421,411,420,-1,421,413,411,-1,274,94,258,-1,274,176,94,-1,420,411,415,-1,411,407,415,-1,382,403,415,-1,415,407,382,-1,44,19,69,-1,412,403,410,-1,412,415,403,-1,235,281,214,-1,235,312,281,-1,365,331,351,-1,365,342,331,-1,225,136,223,-1,5,6,10,-1,299,270,264,-1,264,308,299,-1,352,346,359,-1,352,337,346,-1,53,50,165,-1,50,152,165,-1,55,92,123,-1,366,372,319,-1,319,315,366,-1,104,155,278,-1,155,313,278,-1,35,216,188,-1,35,41,216,-1,9,18,108,-1,18,77,108,-1,87,199,129,-1,161,133,84,-1,116,159,146,-1,179,11,37,-1,37,95,179,-1,208,177,244,-1,177,226,244,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib6_Geo_5_793_normalIndex_2()
		{
			int[] value = {112,24,22,-1,135,179,228,-1,224,229,213,-1,213,203,224,-1,86,131,134,-1,86,79,131,-1,66,48,60,-1,66,15,48,-1,257,333,242,-1,257,385,333,-1,390,387,243,-1,243,244,390,-1,21,22,14,-1,22,134,112,-1,134,154,112,-1,332,268,265,-1,386,400,390,-1,384,416,398,-1,416,418,398,-1,377,320,398,-1,244,203,208,-1,244,243,203,-1,73,192,113,-1,73,198,192,-1,58,66,60,-1,60,36,58,-1,247,197,210,-1,323,374,280,-1,113,147,140,-1,99,88,61,-1,146,182,156,-1,156,143,146,-1,80,74,151,-1,146,193,182,-1,353,299,308,-1,353,338,299,-1,370,397,373,-1,397,391,373,-1,407,298,382,-1,407,325,298,-1,250,281,345,-1,345,315,250,-1,10,8,16,-1,202,107,250,-1,250,315,202,-1,165,138,53,-1,165,218,138,-1,26,67,3,-1,26,149,67,-1,43,93,32,-1,43,123,93,-1,264,310,308,-1,264,263,310,-1,365,351,362,-1,391,365,373,-1,391,388,365,-1,206,235,195,-1,254,261,252,-1,254,266,261,-1,196,231,233,-1,196,183,231,-1,211,207,175,-1,175,220,211,-1,185,220,175,-1,295,338,376,-1,376,367,295,-1,221,264,270,-1,259,234,238,-1,259,230,234,-1,349,187,303,-1,349,223,187,-1,225,38,136,-1,225,65,38,-1,412,277,409,-1,412,287,277,-1,312,345,281,-1,312,370,345,-1,269,291,300,-1,291,327,300,-1,325,102,298,-1,325,148,102,-1,274,347,288,-1,274,324,347,-1,297,269,300,-1,297,293,269,-1,160,100,121,-1,160,139,100,-1,89,137,164,-1,237,168,190,-1,190,269,237,-1,151,74,186,-1,118,143,172,-1,118,117,143,-1,159,193,146,-1,247,275,340,-1,247,210,275,-1,267,212,207,-1,267,251,212,-1,174,71,75,-1,132,174,253,-1,410,391,397,-1,127,232,190,-1,127,201,232,-1,87,133,199,-1,87,84,133,-1,186,74,120,-1,74,83,120,-1,231,183,221,-1,218,67,149,-1,54,165,152,-1,152,42,54,-1,76,81,128,-1,81,80,128,-1,380,419,416,-1,59,17,0,-1,194,133,120,-1,25,59,103,-1,25,13,59,-1,13,17,59,-1,103,109,25,-1,405,386,390,-1,406,386,405,-1,109,37,25,-1,95,37,109,-1,268,141,62,-1,141,268,294,-1,406,395,386,-1,395,406,396,-1,117,75,128,-1,118,75,117,-1,116,128,80,-1,116,117,128,-1,83,194,120,-1,194,83,147,-1,212,175,207,-1,156,175,212,-1,275,292,321,-1,275,253,292,-1,124,96,114,-1,124,101,96,-1,346,282,311,-1,346,337,282,-1,328,291,286,-1,327,291,328,-1,330,302,329,-1,330,309,302,-1,288,355,290,-1,288,347,355,-1,274,335,324,-1,258,335,274,-1,286,334,328,-1,286,285,334,-1,370,318,397,-1,370,312,318,-1,187,296,303,-1,187,209,296,-1,217,259,283,-1,217,230,259,-1,238,241,211,-1,238,234,241,-1,266,299,261,-1,266,270,299,-1,369,367,376,-1,367,369,371,-1,211,262,238,-1,262,211,220,-1,38,122,136,-1,38,57,122,-1,233,266,254,-1,233,231,266,-1,184,235,214,-1,184,195,235,-1,173,157,153,-1,169,157,173,-1,373,362,372,-1,373,365,362,-1,55,43,107,-1,55,123,43,-1,155,8,150,-1,155,16,8,-1,68,30,104,-1,68,39,30,-1,46,42,49,-1,41,42,46,-1,3,54,35,-1,3,67,54,-1,18,149,26,-1,18,144,149,-1,27,39,50,-1,30,39,27,-1,111,144,126,-1,111,138,144,-1,248,331,314,-1,248,260,331,-1,68,278,260,-1,278,68,104,-1,32,189,43,-1,32,145,189,-1,108,184,145,-1,169,184,108,-1,382,273,360,-1,382,298,273,-1,388,342,365,-1,388,360,342,-1,98,137,89,-1,137,98,153,-1,312,206,318,-1,235,206,312,-1,375,338,353,-1,375,376,338,-1,344,328,334,-1,348,328,344,-1,143,116,146,-1,117,116,143,-1,110,99,124,-1,110,106,99,-1,88,147,83,-1,88,140,147,-1,73,141,198,-1,73,56,141,-1,147,192,194,-1,113,192,147,-1,380,384,332,-1,380,416,384,-1,377,418,395,-1,398,418,377,-1,91,63,85,-1,91,72,63,-1,280,356,307,-1,356,280,374,-1,134,21,86,-1,21,134,22,-1,265,242,333,-1,242,265,200,-1,15,86,21,-1,86,15,66,-1,226,276,341,-1,226,115,276,-1,222,112,154,-1,78,112,222,-1,45,28,23,-1,28,45,52,-1,208,191,177,-1,219,191,208,-1,179,224,228,-1,179,229,224,-1,28,33,23,-1,28,34,33,-1,29,34,28,-1,29,0,17,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib6_Geo_5_793_normalIndex_3()
		{
			int[] value = {0,29,28,-1,219,40,191,-1,59,40,219,-1,191,4,52,-1,40,4,191,-1,17,12,29,-1,17,13,12,-1,180,105,168,-1,105,180,171,-1,84,171,161,-1,84,105,171,-1,87,105,84,-1,87,127,105,-1,28,4,0,-1,4,28,52,-1,95,229,179,-1,95,109,229,-1,107,189,250,-1,43,189,107,-1,41,248,216,-1,248,41,46,-1,5,27,31,-1,27,5,10,-1,194,311,282,-1,194,192,311,-1,334,352,344,-1,334,337,352,-1,354,383,363,-1,354,361,383,-1,401,392,378,-1,392,401,402,-1,399,323,389,-1,323,399,374,-1,356,404,364,-1,356,393,404,-1,377,311,320,-1,311,377,368,-1,14,1,21,-1,14,12,1,-1,166,130,162,-1,130,166,119,-1,77,139,157,-1,77,100,139,-1,313,372,362,-1,313,319,372,-1,169,195,184,-1,173,195,169,-1,170,318,206,-1,170,316,318,-1,287,170,82,-1,287,316,170,-1,19,102,148,-1,102,19,44,-1,64,19,2,-1,19,64,82,-1,65,2,7,-1,65,64,2,-1,414,413,421,-1,414,417,413,-1,408,347,417,-1,408,355,347,-1,414,303,394,-1,303,414,349,-1,357,303,296,-1,394,303,357,-1,215,163,90,-1,215,239,163,-1,209,122,178,-1,209,187,122,-1,379,326,339,-1,379,357,326,-1,309,239,302,-1,239,309,256,-1,183,163,204,-1,142,163,183,-1,204,221,183,-1,236,221,204,-1,289,339,326,-1,289,305,339,-1,289,238,262,-1,238,289,259,-1,221,263,264,-1,221,236,263,-1,262,237,272,-1,220,237,262,-1,343,306,336,-1,310,306,343,-1,129,285,286,-1,285,129,199,-1,358,363,375,-1,358,354,363,-1,371,381,367,-1,371,340,381,-1,81,70,47,-1,70,81,76,-1,344,361,354,-1,352,361,344,-1,352,378,361,-1,352,359,378,-1,162,197,166,-1,162,210,197,-1,91,106,110,-1,85,106,91,-1,240,166,197,-1,166,240,167,-1,72,119,97,-1,91,119,72,-1,402,399,392,-1,402,393,399,-1,131,167,181,-1,97,167,131,-1,380,265,333,-1,265,380,332,-1,36,63,58,-1,56,63,36,-1,45,226,177,-1,45,115,226,-1,20,200,48,-1,200,20,135,-1,79,97,131,-1,79,72,97,-1,390,404,405,-1,390,341,404,-1,85,73,113,-1,85,63,73,-1,119,167,97,-1,119,166,167,-1,346,396,359,-1,368,396,346,-1,110,119,91,-1,110,130,119,-1,389,392,399,-1,389,383,392,-1,96,70,71,-1,70,96,101,-1,354,348,344,-1,358,348,354,-1,220,193,237,-1,220,185,193,-1,272,269,293,-1,237,269,272,-1,279,236,271,-1,279,263,236,-1,233,234,230,-1,254,234,233,-1,279,301,297,-1,279,271,301,-1,283,289,326,-1,259,289,283,-1,204,271,236,-1,271,204,256,-1,178,217,209,-1,178,196,217,-1,256,163,239,-1,163,256,204,-1,296,326,357,-1,296,283,326,-1,90,142,57,-1,90,163,142,-1,408,357,379,-1,408,394,357,-1,90,205,215,-1,90,51,205,-1,394,417,414,-1,394,408,417,-1,205,290,215,-1,290,205,288,-1,349,421,350,-1,349,414,421,-1,324,417,347,-1,417,324,413,-1,288,176,274,-1,176,288,205,-1,64,225,277,-1,65,225,64,-1,2,148,94,-1,2,19,148,-1,82,277,287,-1,64,277,82,-1,125,170,206,-1,69,170,125,-1,388,410,403,-1,410,388,391,-1,137,160,164,-1,139,160,137,-1,362,278,313,-1,278,362,351,-1,77,169,108,-1,169,77,157,-1,295,252,261,-1,252,295,284,-1,62,265,268,-1,62,60,265,-1,402,406,405,-1,402,401,406,-1,359,401,378,-1,396,401,359,-1,364,341,276,-1,364,404,341,-1,393,374,399,-1,393,356,374,-1,371,389,323,-1,371,369,389,-1,378,383,361,-1,383,378,392,-1,132,71,174,-1,96,71,132,-1,268,384,294,-1,332,384,268,-1,144,218,149,-1,144,138,218,-1,10,30,27,-1,10,16,30,-1,342,314,331,-1,342,322,314,-1,109,213,229,-1,213,109,103,-1,45,78,115,-1,45,23,78,-1,12,25,1,-1,12,13,25,-1,135,242,200,-1,135,228,242,-1,257,203,243,-1,203,257,224,-1,168,127,190,-1,105,127,168,-1,151,161,171,-1,161,151,186,-1,74,88,83,-1,74,47,88,-1,1,37,11,-1,25,37,1,-1,23,24,78,-1,24,33,34,-1,23,33,24,-1,20,179,135,-1,20,11,179,-1,177,52,45,-1,52,177,191,-1,29,14,34,-1,29,12,14,-1,66,79,86,-1,58,79,66,-1,48,265,60,-1,48,200,265,-1,245,115,78,-1,276,115,245,-1,307,364,304,-1,364,307,356,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrib6_Geo_5_793_normalIndex_4()
		{
			int[] value = {72,58,63,-1,72,79,58,-1,419,418,416,-1,400,418,419,-1,368,395,396,-1,377,395,368,-1,333,419,380,-1,333,385,419,-1,213,59,219,-1,213,103,59,-1,198,294,320,-1,294,198,141,-1,56,62,141,-1,56,36,62,-1,304,240,307,-1,304,249,240,-1,124,130,110,-1,114,130,124,-1,327,348,336,-1,327,328,348,-1,369,375,363,-1,369,376,375,-1,206,173,125,-1,173,206,195,-1,322,360,273,-1,342,360,322,-1,145,9,108,-1,145,32,9,-1,214,145,184,-1,189,145,214,-1,260,351,331,-1,351,260,278,-1,260,46,68,-1,46,260,248,-1,111,53,138,-1,53,111,31,-1,31,50,53,-1,31,27,50,-1,6,150,8,-1,6,202,150,-1,54,41,35,-1,54,42,41,-1,49,68,46,-1,49,39,68,-1,104,16,155,-1,104,30,16,-1,6,107,202,-1,6,55,107,-1,9,144,18,-1,9,126,144,-1,125,153,98,-1,173,153,125,-1,153,139,137,-1,153,157,139,-1,178,57,142,-1,122,57,178,-1,261,338,295,-1,338,261,299,-1,211,267,207,-1,211,241,267,-1,209,283,296,-1,209,217,283,-1,397,316,410,-1,397,318,316,-1,255,89,164,-1,255,273,89,-1,164,246,255,-1,164,160,246,-1,329,290,355,-1,329,302,290,-1,317,309,330,-1,309,317,301,-1,337,285,282,-1,334,285,337,-1,61,124,99,-1,61,101,124,-1,114,132,158,-1,114,96,132,-1,185,156,182,-1,175,156,185,-1,88,106,140,-1,99,106,88,-1,116,151,159,-1,116,80,151,-1,160,188,246,-1,160,121,188,-1,320,192,198,-1,192,320,311,-1,0,40,59,-1,4,40,0,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib7_Geo_5_799_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,17,18,15,-1,19,20,21,-1,20,22,21,-1,23,24,15,-1,17,5,6,-1,17,16,5,-1,25,26,27,-1,28,18,17,-1,29,30,31,-1,30,32,31,-1,13,33,14,-1,30,29,34,-1,35,36,37,-1,36,34,37,-1,38,39,40,-1,40,41,38,-1,42,13,43,-1,42,44,13,-1,45,46,47,-1,48,49,50,-1,1,0,51,-1,52,53,54,-1,55,56,57,-1,57,58,55,-1,59,60,54,-1,61,62,63,-1,61,64,62,-1,53,65,58,-1,53,64,65,-1,58,66,55,-1,58,65,66,-1,67,66,68,-1,68,69,67,-1,70,71,72,-1,73,74,72,-1,72,71,73,-1,75,76,77,-1,76,78,77,-1,79,80,81,-1,80,82,81,-1,83,84,85,-1,85,86,83,-1,87,86,85,-1,87,88,86,-1,89,90,91,-1,92,93,94,-1,93,95,94,-1,4,96,97,-1,96,89,97,-1,98,94,99,-1,19,95,100,-1,101,96,4,-1,102,103,104,-1,103,105,104,-1,106,107,108,-1,107,29,108,-1,109,110,42,-1,42,43,109,-1,111,15,24,-1,24,112,111,-1,100,113,20,-1,20,19,100,-1,110,114,112,-1,101,3,111,-1,111,112,101,-1,115,116,117,-1,25,118,119,-1,119,26,25,-1,84,83,120,-1,120,121,84,-1,122,123,124,-1,122,115,123,-1,125,126,127,-1,128,129,130,-1,129,131,130,-1,77,132,75,-1,132,133,75,-1,134,135,136,-1,137,138,139,-1,137,140,138,-1,137,141,142,-1,137,143,141,-1,144,145,146,-1,144,147,145,-1,148,44,149,-1,2,150,151,-1,151,0,2,-1,152,153,1,-1,153,154,1,-1,126,155,156,-1,155,157,156,-1,93,109,158,-1,93,92,109,-1,159,32,160,-1,72,74,161,-1,161,162,72,-1,77,163,144,-1,144,132,77,-1,164,68,165,-1,164,166,68,-1,167,168,169,-1,168,170,169,-1,171,172,173,-1,172,167,173,-1,174,169,175,-1,169,176,175,-1,177,178,179,-1,178,180,179,-1,70,181,182,-1,181,183,182,-1,184,183,185,-1,184,186,183,-1,187,179,188,-1,188,189,187,-1,190,191,162,-1,190,192,191,-1,193,182,194,-1,182,186,194,-1,71,193,195,-1,195,73,71,-1,196,197,198,-1,196,194,197,-1,147,141,145,-1,147,199,141,-1,78,195,200,-1,78,73,195,-1,75,133,201,-1,133,202,201,-1,203,204,205,-1,205,206,203,-1,12,0,207,-1,12,51,0,-1,35,208,126,-1,209,210,211,-1,212,210,213,-1,214,210,215,-1,210,216,211,-1,46,48,217,-1,218,219,220,-1,218,221,219,-1,51,152,1,-1,159,222,223,-1,222,27,223,-1,224,225,226,-1,4,3,101,-1,89,98,90,-1,98,99,90,-1,91,97,89,-1,13,227,43,-1,227,228,41,-1,41,229,227,-1,149,119,148,-1,119,230,148,-1,118,123,231,-1,123,232,231,-1,233,217,154,-1,154,153,233,-1,234,235,218,-1,235,221,218,-1,135,123,136,-1,135,232,123,-1,128,48,46,-1,46,129,128,-1,122,139,138,-1,122,234,139,-1,216,210,214,-1,215,210,212,-1,213,210,209,-1,38,41,228,-1,228,207,38,-1,202,203,206,-1,206,201,202,-1,236,237,238,-1,237,239,238,-1,196,239,237,-1,196,198,239,-1,86,187,240,-1,187,189,240,-1,71,182,193,-1,71,70,182,-1,188,192,190,-1,190,189,188,-1,88,177,187,-1,177,179,187,-1,185,241,184,-1,185,242,241,-1,186,182,183,-1,243,244,191,-1,191,192,243,-1,179,180,188,-1,180,245,188,-1,246,247,248,-1,247,249,248,-1,173,167,174,-1,167,169,174,-1,250,251,252,-1,252,249,250,-1,79,166,247,-1,166,164,247,-1,87,85,197,-1,85,198,197,-1,78,163,77,-1,78,200,163,-1,253,254,69,-1,254,255,69,-1,186,197,194,-1,186,184,197,-1,23,224,44,-1,152,14,33,-1,256,151,257,-1,257,258,256,-1,259,260,38,-1,260,39,38,-1,126,125,155,-1,163,261,147,-1,147,144,163,-1,262,263,220,-1,263,264,220,-1,155,130,157,-1,130,265,157,-1,237,261,266,-1,237,236,261,-1,118,25,124,-1,124,123,118,-1,123,115,136,-1,152,148,230,-1,152,33,148,-1,149,44,226,-1,44,224,226,-1,33,44,148,-1,33,13,44,-1,267,268,269,-1,270,271,272,-1,99,95,21,-1,99,94,95,-1,11,268,267,-1,11,10,268,-1,105,100,95,-1,95,93,105,-1,109,92,110,-1,92,114,110,-1,252,251,172,-1,251,273,172,-1,86,88,187,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib7_Geo_5_799_coordIndex_2()
		{
			int[] value = {73,78,74,-1,78,76,74,-1,196,237,266,-1,166,69,68,-1,166,253,69,-1,67,255,274,-1,67,69,255,-1,275,55,66,-1,66,67,275,-1,65,68,66,-1,65,165,68,-1,64,165,65,-1,64,61,165,-1,276,63,62,-1,276,277,63,-1,278,279,280,-1,278,281,279,-1,274,255,281,-1,281,278,274,-1,56,275,282,-1,56,55,275,-1,54,60,52,-1,153,231,232,-1,232,233,153,-1,12,14,152,-1,152,51,12,-1,207,228,12,-1,34,29,37,-1,260,283,208,-1,16,111,3,-1,3,5,16,-1,15,111,16,-1,268,10,7,-1,7,284,268,-1,20,269,22,-1,269,285,22,-1,95,19,21,-1,15,224,23,-1,15,18,224,-1,224,18,225,-1,286,17,6,-1,6,8,286,-1,7,10,8,-1,10,9,8,-1,4,7,5,-1,7,6,5,-1,287,221,235,-1,287,288,221,-1,24,44,42,-1,24,23,44,-1,284,269,268,-1,269,284,285,-1,226,289,223,-1,226,225,289,-1,9,103,290,-1,9,11,103,-1,108,272,102,-1,108,270,272,-1,35,260,208,-1,35,39,260,-1,40,29,107,-1,29,40,37,-1,12,227,13,-1,12,228,227,-1,232,47,233,-1,47,232,135,-1,57,282,291,-1,57,56,282,-1,278,282,274,-1,282,278,291,-1,280,291,278,-1,291,280,59,-1,60,280,276,-1,59,280,60,-1,276,52,60,-1,276,62,52,-1,274,275,67,-1,275,274,282,-1,244,70,191,-1,181,70,244,-1,250,63,251,-1,250,61,63,-1,273,279,168,-1,273,277,279,-1,178,241,242,-1,241,178,177,-1,292,172,171,-1,292,252,172,-1,113,105,103,-1,113,100,105,-1,92,98,114,-1,94,98,92,-1,22,91,90,-1,91,22,285,-1,293,104,158,-1,104,293,106,-1,289,271,294,-1,271,289,28,-1,230,153,152,-1,153,230,231,-1,223,294,159,-1,294,223,289,-1,295,296,297,-1,298,296,295,-1,299,298,295,-1,299,140,298,-1,300,301,302,-1,301,300,303,-1,204,304,305,-1,204,203,304,-1,133,306,202,-1,133,302,306,-1,47,134,45,-1,47,135,134,-1,307,308,303,-1,307,263,308,-1,309,310,264,-1,309,143,310,-1,146,309,307,-1,309,146,145,-1,311,265,219,-1,157,265,311,-1,262,219,265,-1,262,220,219,-1,312,38,207,-1,312,259,38,-1,151,313,0,-1,256,313,151,-1,283,257,208,-1,283,258,257,-1,256,209,313,-1,256,213,209,-1,215,258,283,-1,258,215,212,-1,259,214,260,-1,259,216,214,-1,314,305,304,-1,305,314,315,-1,198,84,239,-1,198,85,84,-1,170,279,281,-1,170,168,279,-1,277,251,63,-1,273,251,277,-1,81,254,253,-1,176,254,81,-1,247,250,249,-1,247,164,250,-1,79,246,80,-1,79,247,246,-1,249,292,248,-1,249,252,292,-1,173,245,180,-1,173,174,245,-1,175,244,243,-1,175,82,244,-1,183,248,185,-1,183,246,248,-1,245,192,188,-1,245,243,192,-1,241,197,184,-1,197,241,87,-1,189,316,240,-1,189,190,316,-1,200,196,266,-1,200,195,196,-1,86,317,83,-1,86,240,317,-1,318,316,161,-1,319,316,318,-1,319,201,206,-1,318,201,319,-1,205,83,317,-1,205,120,83,-1,266,163,200,-1,163,266,261,-1,296,238,121,-1,238,296,320,-1,321,302,301,-1,302,321,306,-1,299,305,315,-1,305,299,295,-1,320,141,199,-1,320,142,141,-1,127,49,125,-1,127,150,49,-1,131,263,262,-1,263,131,308,-1,116,315,117,-1,116,299,315,-1,322,321,301,-1,322,45,321,-1,264,218,220,-1,218,264,310,-1,131,265,130,-1,262,265,131,-1,122,235,234,-1,122,124,235,-1,48,125,49,-1,128,125,48,-1,25,235,124,-1,287,235,25,-1,27,287,25,-1,222,287,27,-1,36,30,34,-1,36,323,30,-1,272,286,290,-1,271,286,272,-1,227,293,43,-1,227,229,293,-1,285,97,91,-1,97,285,284,-1,8,290,286,-1,290,8,9,-1,229,106,293,-1,229,107,106,-1,271,17,286,-1,28,17,271,-1,324,311,288,-1,325,311,324,-1,119,231,230,-1,231,119,118,-1,288,219,221,-1,311,219,288,-1,218,139,234,-1,310,139,218,-1,321,134,314,-1,45,134,321,-1,117,314,134,-1,117,315,314,-1,325,157,311,-1,325,156,157,-1,150,257,151,-1,150,127,257,-1,323,156,325,-1,323,36,156,-1,126,257,127,-1,126,208,257,-1,298,320,296,-1,320,298,142,-1,314,306,321,-1,314,304,306,-1,199,238,320,-1,199,236,238,-1,204,120,205,-1,204,297,120,-1,121,239,84,-1,239,121,238,-1,317,206,205,-1,319,206,317,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib7_Geo_5_799_coordIndex_3()
		{
			int[] value = {318,75,201,-1,76,75,318,-1,161,76,318,-1,161,74,76,-1,319,240,316,-1,317,240,319,-1,236,147,261,-1,236,199,147,-1,144,300,132,-1,146,300,144,-1,194,195,193,-1,195,194,196,-1,190,161,316,-1,190,162,161,-1,242,248,292,-1,248,242,185,-1,181,246,183,-1,181,80,246,-1,174,243,245,-1,174,175,243,-1,173,178,171,-1,178,173,180,-1,82,176,81,-1,175,176,82,-1,176,170,254,-1,169,170,176,-1,172,168,167,-1,172,273,168,-1,165,250,164,-1,250,165,61,-1,281,254,170,-1,254,281,255,-1,159,324,222,-1,159,160,324,-1,104,93,158,-1,105,93,104,-1,211,259,312,-1,259,211,216,-1,260,215,283,-1,260,214,215,-1,212,256,258,-1,256,212,213,-1,313,211,312,-1,313,209,211,-1,0,312,207,-1,313,312,0,-1,146,303,300,-1,307,303,146,-1,141,309,145,-1,143,309,141,-1,140,142,298,-1,140,137,142,-1,143,139,310,-1,143,137,139,-1,264,307,309,-1,307,264,263,-1,134,115,117,-1,134,136,115,-1,129,45,322,-1,129,46,45,-1,306,203,202,-1,203,306,304,-1,305,297,204,-1,297,305,295,-1,301,308,322,-1,308,301,303,-1,155,128,130,-1,155,125,128,-1,322,131,129,-1,322,308,131,-1,132,302,133,-1,302,132,300,-1,116,122,138,-1,116,115,122,-1,119,226,26,-1,119,149,226,-1,299,138,140,-1,299,116,138,-1,297,121,120,-1,296,121,297,-1,21,90,99,-1,21,22,90,-1,271,31,294,-1,271,270,31,-1,42,112,24,-1,110,112,42,-1,158,43,293,-1,158,109,43,-1,106,102,104,-1,106,108,102,-1,126,36,35,-1,156,36,126,-1,114,101,112,-1,114,96,101,-1,113,269,20,-1,113,267,269,-1,97,7,4,-1,97,284,7,-1,11,113,103,-1,113,11,267,-1,98,96,114,-1,98,89,96,-1,242,171,178,-1,242,292,171,-1,177,87,241,-1,177,88,87,-1,291,54,57,-1,291,59,54,-1,253,79,81,-1,166,79,253,-1,82,181,244,-1,80,181,82,-1,72,191,70,-1,72,162,191,-1,64,52,62,-1,64,53,52,-1,276,279,277,-1,280,279,276,-1,57,53,58,-1,53,57,54,-1,50,150,2,-1,50,49,150,-1,233,46,217,-1,46,233,47,-1,217,50,154,-1,217,48,50,-1,37,39,35,-1,39,37,40,-1,41,107,229,-1,107,41,40,-1,294,32,159,-1,294,31,32,-1,323,32,30,-1,323,160,32,-1,29,270,108,-1,29,31,270,-1,102,290,103,-1,102,272,290,-1,289,18,28,-1,225,18,289,-1,223,26,226,-1,26,223,27,-1,160,325,324,-1,323,325,160,-1,288,222,324,-1,287,222,288,-1,154,2,1,-1,154,50,2,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib7_Geo_5_799_normalIndex_1()
		{
			int[] value = {99,144,131,-1,299,260,320,-1,317,272,316,-1,315,279,273,-1,61,71,88,-1,291,318,307,-1,307,298,291,-1,3,16,0,-1,16,6,0,-1,232,229,291,-1,307,320,317,-1,307,318,320,-1,258,252,274,-1,300,298,307,-1,230,270,284,-1,270,275,284,-1,71,97,88,-1,270,230,261,-1,133,237,183,-1,237,261,183,-1,43,53,80,-1,80,56,43,-1,112,71,55,-1,112,135,71,-1,164,130,152,-1,106,102,121,-1,144,99,109,-1,203,195,67,-1,93,11,36,-1,36,215,93,-1,33,124,67,-1,23,129,1,-1,23,128,129,-1,195,100,215,-1,195,128,100,-1,215,104,93,-1,215,100,104,-1,21,104,155,-1,155,196,21,-1,247,72,264,-1,173,251,264,-1,264,72,173,-1,224,256,107,-1,256,113,107,-1,228,236,293,-1,236,304,293,-1,233,122,119,-1,119,254,233,-1,76,254,119,-1,76,217,254,-1,32,9,26,-1,22,68,7,-1,68,19,7,-1,260,78,103,-1,78,32,103,-1,13,7,2,-1,3,19,35,-1,171,78,260,-1,255,227,116,-1,227,82,116,-1,120,96,248,-1,96,230,248,-1,39,81,112,-1,112,55,39,-1,276,291,229,-1,229,138,276,-1,35,98,16,-1,16,3,35,-1,81,46,138,-1,171,299,276,-1,276,138,171,-1,202,214,201,-1,258,210,199,-1,199,252,258,-1,122,233,242,-1,242,156,122,-1,226,180,244,-1,226,202,180,-1,110,213,142,-1,105,118,147,-1,118,172,147,-1,107,159,224,-1,159,219,224,-1,176,165,170,-1,187,209,208,-1,187,192,209,-1,187,161,160,-1,187,181,161,-1,140,162,163,-1,140,137,162,-1,127,135,198,-1,131,146,139,-1,139,99,131,-1,148,177,144,-1,177,143,144,-1,213,189,240,-1,189,207,240,-1,68,39,79,-1,68,22,39,-1,280,275,271,-1,264,251,302,-1,302,314,264,-1,107,114,140,-1,140,159,107,-1,89,155,65,-1,89,194,155,-1,249,253,286,-1,253,281,286,-1,145,134,250,-1,134,249,250,-1,303,286,312,-1,286,301,312,-1,184,158,289,-1,158,262,289,-1,247,231,87,-1,231,52,87,-1,4,52,24,-1,4,28,52,-1,311,289,323,-1,323,324,311,-1,319,322,314,-1,319,325,322,-1,10,87,15,-1,87,28,15,-1,72,10,84,-1,84,173,72,-1,27,5,29,-1,27,15,5,-1,137,161,162,-1,137,132,161,-1,113,84,62,-1,113,173,84,-1,224,219,263,-1,219,241,263,-1,239,234,268,-1,268,267,239,-1,61,99,30,-1,61,109,99,-1,133,117,213,-1,70,51,85,-1,42,51,45,-1,44,51,38,-1,51,69,85,-1,130,106,126,-1,204,220,193,-1,204,238,220,-1,109,148,144,-1,280,278,277,-1,278,274,277,-1,245,283,266,-1,260,299,171,-1,32,13,9,-1,13,2,9,-1,26,103,32,-1,71,64,55,-1,64,40,56,-1,56,77,64,-1,198,199,127,-1,199,186,127,-1,210,180,174,-1,180,150,174,-1,153,126,143,-1,143,177,153,-1,225,243,204,-1,243,238,204,-1,165,180,170,-1,165,150,180,-1,105,106,130,-1,130,118,105,-1,226,208,209,-1,226,225,208,-1,69,51,44,-1,38,51,42,-1,45,51,70,-1,43,56,40,-1,40,30,43,-1,241,239,267,-1,267,263,241,-1,101,58,108,-1,58,75,108,-1,27,75,58,-1,27,29,75,-1,254,311,308,-1,311,324,308,-1,72,87,10,-1,72,247,87,-1,323,325,319,-1,319,324,323,-1,217,184,311,-1,184,289,311,-1,24,60,4,-1,24,14,60,-1,28,87,52,-1,321,313,322,-1,322,325,321,-1,289,262,323,-1,262,309,323,-1,66,92,31,-1,92,63,31,-1,250,249,303,-1,249,286,303,-1,74,59,48,-1,48,63,74,-1,228,194,92,-1,194,89,92,-1,76,119,5,-1,119,29,5,-1,113,114,107,-1,113,62,114,-1,282,294,196,-1,294,216,196,-1,28,5,15,-1,28,4,5,-1,232,245,135,-1,148,88,97,-1,94,139,149,-1,149,83,94,-1,41,37,43,-1,37,53,43,-1,213,110,189,-1,114,115,137,-1,137,140,114,-1,206,179,193,-1,179,166,193,-1,189,147,207,-1,147,191,207,-1,58,115,86,-1,58,101,115,-1,210,258,244,-1,244,180,210,-1,180,202,170,-1,148,127,186,-1,148,97,127,-1,198,135,266,-1,135,245,266,-1,97,135,127,-1,97,71,135,-1,111,125,20,-1,288,297,292,-1,2,19,0,-1,2,7,19,-1,273,125,111,-1,273,279,125,-1,82,35,19,-1,19,68,82,-1,39,22,81,-1,22,46,81,-1,48,59,134,-1,59,136,134,-1,254,217,311,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib7_Geo_5_799_normalIndex_2()
		{
			int[] value = {173,113,251,-1,113,256,251,-1,27,58,86,-1,194,196,155,-1,194,282,196,-1,21,216,49,-1,21,196,216,-1,8,93,104,-1,104,21,8,-1,100,155,104,-1,100,65,155,-1,128,65,100,-1,128,23,65,-1,54,1,129,-1,54,90,1,-1,25,175,47,-1,25,190,175,-1,49,216,190,-1,190,25,49,-1,11,8,12,-1,11,93,8,-1,67,124,203,-1,177,174,150,-1,150,153,177,-1,61,88,148,-1,148,109,61,-1,30,40,61,-1,261,230,183,-1,37,57,117,-1,318,276,299,-1,299,320,318,-1,291,276,318,-1,125,279,272,-1,272,95,125,-1,16,20,6,-1,20,18,6,-1,19,3,0,-1,291,245,232,-1,291,298,245,-1,245,298,283,-1,306,307,317,-1,317,316,306,-1,272,279,316,-1,279,315,316,-1,260,272,320,-1,272,317,320,-1,265,238,243,-1,265,257,238,-1,229,135,112,-1,229,232,135,-1,95,20,125,-1,20,95,18,-1,266,290,277,-1,266,283,290,-1,315,227,305,-1,315,273,227,-1,248,292,255,-1,248,288,292,-1,133,37,117,-1,133,53,37,-1,80,230,96,-1,230,80,183,-1,61,64,71,-1,61,40,64,-1,150,152,153,-1,152,150,165,-1,36,12,17,-1,36,11,12,-1,25,12,49,-1,12,25,17,-1,47,17,25,-1,17,47,33,-1,124,47,54,-1,33,47,124,-1,54,203,124,-1,54,129,203,-1,49,8,21,-1,8,49,12,-1,313,247,322,-1,231,247,313,-1,74,1,59,-1,74,23,1,-1,136,175,253,-1,136,90,175,-1,158,60,14,-1,60,158,184,-1,34,134,145,-1,34,48,134,-1,98,82,227,-1,98,35,82,-1,22,13,46,-1,7,13,22,-1,6,26,9,-1,26,6,18,-1,73,116,79,-1,116,73,120,-1,290,297,285,-1,297,290,300,-1,186,177,148,-1,177,186,174,-1,277,285,280,-1,285,277,290,-1,211,178,221,-1,182,178,211,-1,212,182,211,-1,212,192,182,-1,167,151,197,-1,151,167,157,-1,234,223,222,-1,234,239,223,-1,219,218,241,-1,219,197,218,-1,152,176,164,-1,152,165,176,-1,169,154,157,-1,169,179,154,-1,168,188,166,-1,168,181,188,-1,163,168,169,-1,168,163,162,-1,235,191,220,-1,207,191,235,-1,206,220,191,-1,206,193,220,-1,50,43,30,-1,50,41,43,-1,139,91,99,-1,94,91,139,-1,57,149,117,-1,57,83,149,-1,94,70,91,-1,94,45,70,-1,38,83,57,-1,83,38,42,-1,41,44,37,-1,41,69,44,-1,200,222,223,-1,222,200,205,-1,29,122,75,-1,29,119,122,-1,281,175,190,-1,281,253,175,-1,90,59,1,-1,136,59,90,-1,293,294,282,-1,301,294,293,-1,92,74,63,-1,92,89,74,-1,228,66,236,-1,228,92,66,-1,63,34,31,-1,63,48,34,-1,250,309,262,-1,250,303,309,-1,312,313,321,-1,312,304,313,-1,52,31,24,-1,52,66,31,-1,309,325,323,-1,309,321,325,-1,60,5,4,-1,5,60,76,-1,324,310,308,-1,324,319,310,-1,62,27,86,-1,62,84,27,-1,254,295,233,-1,254,308,295,-1,287,310,302,-1,296,310,287,-1,296,263,267,-1,287,263,296,-1,268,233,295,-1,268,242,233,-1,86,114,62,-1,114,86,115,-1,178,108,156,-1,108,178,141,-1,185,197,151,-1,197,185,218,-1,212,222,205,-1,222,212,211,-1,141,161,132,-1,141,160,161,-1,142,102,110,-1,142,146,102,-1,172,179,206,-1,179,172,154,-1,214,205,201,-1,214,212,205,-1,123,185,151,-1,123,164,185,-1,166,204,193,-1,204,166,188,-1,172,191,147,-1,206,191,172,-1,226,243,225,-1,226,244,243,-1,106,110,102,-1,105,110,106,-1,258,243,244,-1,265,243,258,-1,274,265,258,-1,278,265,274,-1,237,270,261,-1,237,259,270,-1,292,306,305,-1,297,306,292,-1,64,73,55,-1,64,77,73,-1,18,103,26,-1,103,18,95,-1,316,305,306,-1,305,316,315,-1,77,120,73,-1,77,96,120,-1,297,307,306,-1,300,307,297,-1,269,235,257,-1,246,235,269,-1,199,174,186,-1,174,199,210,-1,257,220,238,-1,235,220,257,-1,204,208,225,-1,188,208,204,-1,185,176,200,-1,164,176,185,-1,201,200,176,-1,201,205,200,-1,246,207,235,-1,246,240,207,-1,146,149,139,-1,146,142,149,-1,259,240,246,-1,259,237,240,-1,213,149,142,-1,213,117,149,-1,182,141,178,-1,141,182,160,-1,200,218,185,-1,200,223,218,-1,132,108,141,-1,132,101,108,-1,234,242,268,-1,234,221,242,-1,156,75,122,-1,75,156,108,-1,295,267,268,-1,296,267,295,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib7_Geo_5_799_normalIndex_3()
		{
			int[] value = {287,224,263,-1,256,224,287,-1,302,256,287,-1,302,251,256,-1,296,308,310,-1,295,308,296,-1,101,137,115,-1,101,132,137,-1,140,167,159,-1,163,167,140,-1,15,84,10,-1,84,15,27,-1,319,302,310,-1,319,314,302,-1,14,31,34,-1,31,14,24,-1,231,66,52,-1,231,236,66,-1,303,321,309,-1,303,312,321,-1,250,158,145,-1,158,250,262,-1,304,301,293,-1,312,301,304,-1,301,281,294,-1,286,281,301,-1,134,253,249,-1,134,136,253,-1,65,74,89,-1,74,65,23,-1,190,294,281,-1,294,190,216,-1,280,269,278,-1,280,271,269,-1,116,68,79,-1,82,68,116,-1,85,41,50,-1,41,85,69,-1,37,38,57,-1,37,44,38,-1,42,94,83,-1,94,42,45,-1,91,85,50,-1,91,70,85,-1,99,50,30,-1,91,50,99,-1,163,157,167,-1,169,157,163,-1,161,168,162,-1,181,168,161,-1,192,160,182,-1,192,187,160,-1,181,208,188,-1,181,187,208,-1,166,169,168,-1,169,166,179,-1,176,202,201,-1,176,170,202,-1,118,164,123,-1,118,130,164,-1,218,239,241,-1,239,218,223,-1,222,221,234,-1,221,222,211,-1,151,154,123,-1,154,151,157,-1,189,105,147,-1,189,110,105,-1,123,172,118,-1,123,154,172,-1,159,197,219,-1,197,159,167,-1,214,226,209,-1,214,202,226,-1,199,266,252,-1,199,198,266,-1,212,209,192,-1,212,214,209,-1,221,156,242,-1,178,156,221,-1,0,9,2,-1,0,6,9,-1,297,284,285,-1,297,288,284,-1,112,138,229,-1,81,138,112,-1,79,55,73,-1,79,39,55,-1,120,255,116,-1,120,248,255,-1,213,237,133,-1,240,237,213,-1,46,171,138,-1,46,78,171,-1,98,20,16,-1,98,111,20,-1,103,272,260,-1,103,95,272,-1,273,98,227,-1,98,273,111,-1,13,78,46,-1,13,32,78,-1,14,145,158,-1,14,34,145,-1,184,76,60,-1,184,217,76,-1,17,67,36,-1,17,33,67,-1,282,228,293,-1,194,228,282,-1,304,231,313,-1,236,231,304,-1,264,322,247,-1,264,314,322,-1,128,203,129,-1,128,195,203,-1,54,175,90,-1,47,175,54,-1,36,195,215,-1,195,36,67,-1,121,146,131,-1,121,102,146,-1,153,130,126,-1,130,153,152,-1,126,121,143,-1,126,106,121,-1,183,53,133,-1,53,183,80,-1,56,96,77,-1,96,56,80,-1,285,275,280,-1,285,284,275,-1,259,275,270,-1,259,271,275,-1,230,288,248,-1,230,284,288,-1,255,305,227,-1,255,292,305,-1,290,298,300,-1,283,298,290,-1,277,252,266,-1,252,277,274,-1,271,246,269,-1,259,246,271,-1,257,278,269,-1,265,278,257,-1,143,131,144,-1,143,121,131,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib8_Geo_5_805_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,3,1,-1,4,5,6,-1,4,7,5,-1,8,9,10,-1,8,11,9,-1,12,13,14,-1,12,15,13,-1,16,17,18,-1,19,20,21,-1,22,23,24,-1,25,26,24,-1,26,27,24,-1,28,29,30,-1,29,31,30,-1,32,33,34,-1,35,36,37,-1,26,38,39,-1,39,27,26,-1,40,41,42,-1,40,15,43,-1,40,13,15,-1,42,44,13,-1,13,40,42,-1,21,45,46,-1,21,47,45,-1,48,49,50,-1,51,52,53,-1,54,55,56,-1,55,4,56,-1,57,58,59,-1,59,60,57,-1,61,62,63,-1,64,65,10,-1,64,66,65,-1,67,68,69,-1,67,70,68,-1,71,72,73,-1,74,75,76,-1,75,77,76,-1,78,79,80,-1,78,81,79,-1,73,82,83,-1,83,71,73,-1,56,84,54,-1,56,85,84,-1,86,87,88,-1,86,89,87,-1,90,91,92,-1,92,93,90,-1,94,95,96,-1,97,98,99,-1,97,100,98,-1,33,101,102,-1,103,104,105,-1,103,57,104,-1,92,106,107,-1,92,62,106,-1,30,108,109,-1,109,28,30,-1,110,111,112,-1,110,113,111,-1,114,115,116,-1,115,117,116,-1,115,114,118,-1,118,119,115,-1,120,121,122,-1,120,123,121,-1,117,124,125,-1,117,126,124,-1,127,115,119,-1,128,95,129,-1,95,94,129,-1,39,130,131,-1,39,38,130,-1,110,78,113,-1,110,132,78,-1,133,132,134,-1,134,71,133,-1,135,136,137,-1,137,138,135,-1,139,140,141,-1,139,55,140,-1,142,23,22,-1,143,17,144,-1,143,18,17,-1,51,74,5,-1,74,145,5,-1,4,6,56,-1,146,71,134,-1,146,72,71,-1,147,109,148,-1,109,108,148,-1,134,149,150,-1,150,146,134,-1,14,13,44,-1,151,152,86,-1,151,153,152,-1,154,155,156,-1,157,158,159,-1,159,160,157,-1,3,161,162,-1,3,0,161,-1,111,163,164,-1,111,113,163,-1,0,2,165,-1,166,167,112,-1,167,168,112,-1,154,169,155,-1,169,170,155,-1,98,65,171,-1,171,99,98,-1,59,172,173,-1,8,10,174,-1,175,176,49,-1,175,177,176,-1,170,178,179,-1,179,155,170,-1,179,180,155,-1,180,156,155,-1,29,181,180,-1,29,182,181,-1,182,109,150,-1,182,28,109,-1,181,156,180,-1,181,183,156,-1,180,179,29,-1,179,31,29,-1,31,179,184,-1,179,178,184,-1,49,185,50,-1,49,176,185,-1,186,187,188,-1,186,101,187,-1,189,190,129,-1,129,94,189,-1,32,191,190,-1,190,187,32,-1,192,193,102,-1,193,33,102,-1,194,61,63,-1,93,92,195,-1,92,196,195,-1,166,197,198,-1,198,167,166,-1,198,183,167,-1,183,181,167,-1,199,200,201,-1,201,162,199,-1,201,3,162,-1,201,202,3,-1,197,153,198,-1,197,203,153,-1,159,158,152,-1,158,204,152,-1,151,183,198,-1,198,153,151,-1,152,204,86,-1,204,89,86,-1,205,156,183,-1,183,151,205,-1,206,207,208,-1,208,209,206,-1,12,14,210,-1,150,109,147,-1,147,146,150,-1,139,52,7,-1,139,20,52,-1,211,207,212,-1,87,82,77,-1,87,89,82,-1,20,213,214,-1,20,19,213,-1,54,137,136,-1,54,84,137,-1,204,215,83,-1,204,158,215,-1,126,127,216,-1,127,217,216,-1,145,76,218,-1,145,74,76,-1,131,130,41,-1,130,42,41,-1,219,128,220,-1,128,129,220,-1,221,222,124,-1,222,125,124,-1,117,115,126,-1,115,127,126,-1,223,224,123,-1,123,120,223,-1,225,116,226,-1,225,114,116,-1,116,125,224,-1,116,117,125,-1,175,227,228,-1,228,184,175,-1,140,136,135,-1,135,229,140,-1,57,60,104,-1,105,104,230,-1,104,171,230,-1,231,232,138,-1,232,233,138,-1,234,8,174,-1,234,186,8,-1,91,63,62,-1,62,92,91,-1,93,235,90,-1,207,53,212,-1,53,52,212,-1,6,85,56,-1,6,236,85,-1,133,81,78,-1,133,215,81,-1,82,76,77,-1,82,73,76,-1,78,132,133,-1,66,70,67,-1,66,64,70,-1,192,237,193,-1,213,143,41,-1,41,40,213,-1,25,23,36,-1,36,238,25,-1,45,16,46,-1,136,55,54,-1,136,140,55,-1,84,239,137,-1,84,240,239,-1,137,231,138,-1,137,239,231,-1,241,10,9,-1,241,64,10,-1,57,130,38,-1,57,103,130,-1,130,103,42,-1,103,44,42,-1,19,242,213,-1,219,220,243,-1,243,220,244,-1,28,182,29,-1,238,58,26,-1,26,25,238,-1,140,229,141,-1,245,27,39,-1,17,16,246,-1,37,233,247,-1,247,35,37,-1,24,23,25,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib8_Geo_5_805_coordIndex_2()
		{
			int[] value = {92,107,196,-1,223,225,226,-1,120,225,223,-1,120,248,225,-1,249,250,122,-1,249,251,250,-1,242,16,18,-1,242,46,16,-1,144,252,245,-1,144,17,252,-1,21,229,47,-1,21,141,229,-1,172,58,238,-1,172,59,58,-1,207,253,208,-1,207,211,253,-1,106,61,237,-1,62,61,106,-1,254,220,191,-1,254,244,220,-1,38,58,57,-1,38,26,58,-1,37,255,256,-1,37,142,255,-1,238,35,172,-1,238,36,35,-1,257,258,259,-1,257,260,258,-1,241,70,64,-1,185,70,241,-1,30,236,108,-1,30,228,236,-1,85,240,84,-1,85,227,240,-1,213,18,143,-1,18,213,242,-1,142,261,255,-1,261,142,22,-1,194,237,61,-1,237,194,193,-1,97,60,59,-1,99,60,97,-1,192,97,262,-1,192,100,97,-1,133,83,215,-1,71,83,133,-1,263,264,265,-1,264,263,222,-1,208,266,209,-1,266,208,267,-1,234,98,100,-1,174,98,234,-1,11,189,268,-1,189,11,188,-1,172,195,196,-1,35,195,172,-1,235,243,90,-1,243,235,219,-1,233,256,138,-1,233,37,256,-1,231,259,232,-1,257,259,231,-1,65,230,171,-1,230,65,66,-1,240,175,49,-1,240,227,175,-1,269,270,271,-1,270,269,272,-1,273,200,199,-1,121,200,273,-1,225,118,114,-1,248,118,225,-1,224,226,116,-1,226,224,223,-1,251,273,270,-1,249,273,251,-1,118,250,272,-1,250,118,248,-1,274,127,119,-1,217,127,274,-1,222,275,125,-1,275,222,263,-1,214,211,212,-1,214,43,211,-1,163,78,80,-1,78,163,113,-1,222,79,264,-1,79,222,221,-1,157,215,158,-1,157,81,215,-1,276,219,235,-1,128,219,276,-1,233,95,247,-1,233,232,95,-1,20,141,21,-1,20,139,141,-1,41,144,131,-1,41,143,144,-1,82,204,83,-1,89,204,82,-1,53,206,75,-1,53,207,206,-1,20,212,52,-1,20,214,212,-1,7,55,139,-1,4,55,7,-1,145,147,148,-1,147,145,218,-1,99,104,60,-1,171,104,99,-1,253,12,277,-1,253,15,12,-1,88,206,209,-1,88,87,206,-1,88,151,86,-1,88,205,151,-1,205,209,266,-1,205,88,209,-1,203,152,153,-1,203,159,152,-1,203,1,278,-1,203,197,1,-1,278,3,202,-1,3,278,1,-1,263,200,275,-1,201,200,263,-1,199,161,271,-1,199,162,161,-1,271,279,269,-1,279,271,161,-1,164,279,165,-1,274,279,164,-1,112,2,166,-1,112,111,2,-1,112,149,110,-1,112,168,149,-1,280,170,169,-1,281,170,280,-1,67,12,210,-1,67,69,12,-1,244,63,91,-1,254,63,244,-1,34,193,194,-1,33,193,34,-1,32,101,33,-1,101,32,187,-1,191,129,190,-1,191,220,129,-1,188,190,189,-1,188,187,190,-1,259,268,96,-1,258,268,259,-1,260,185,241,-1,185,260,50,-1,69,281,280,-1,281,69,68,-1,177,170,281,-1,178,170,177,-1,31,228,30,-1,31,184,228,-1,167,182,168,-1,182,167,181,-1,177,184,178,-1,177,175,184,-1,240,48,239,-1,49,48,240,-1,281,176,177,-1,68,176,281,-1,239,257,231,-1,257,239,48,-1,268,9,11,-1,9,268,258,-1,254,194,63,-1,34,194,254,-1,210,66,67,-1,66,210,230,-1,277,69,280,-1,277,12,69,-1,277,208,253,-1,267,208,277,-1,267,154,266,-1,154,267,169,-1,166,1,197,-1,1,166,2,-1,111,165,2,-1,111,164,165,-1,163,274,164,-1,163,217,274,-1,165,161,0,-1,279,161,165,-1,269,274,119,-1,279,274,269,-1,201,265,202,-1,263,265,201,-1,160,202,265,-1,160,278,202,-1,278,159,203,-1,278,160,159,-1,266,156,205,-1,266,154,156,-1,44,105,14,-1,44,103,105,-1,24,245,252,-1,245,24,27,-1,108,6,148,-1,108,236,6,-1,218,146,147,-1,146,218,72,-1,148,5,145,-1,148,6,5,-1,51,7,52,-1,7,51,5,-1,72,76,73,-1,76,72,218,-1,245,131,144,-1,245,39,131,-1,261,17,246,-1,261,252,17,-1,246,255,261,-1,246,282,255,-1,47,135,283,-1,229,135,47,-1,138,283,135,-1,138,256,283,-1,128,247,95,-1,128,276,247,-1,264,81,157,-1,81,264,79,-1,134,110,149,-1,132,110,134,-1,80,217,163,-1,80,216,217,-1,91,243,244,-1,243,91,90,-1,213,43,214,-1,213,40,43,-1,96,232,259,-1,96,95,232,-1,272,251,270,-1,251,272,250,-1,249,121,273,-1,122,121,249,-1,275,224,125,-1,275,123,224,-1,121,275,200,-1,123,275,121,-1,271,273,199,-1,273,271,270,-1,119,272,269,-1,272,119,118,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib8_Geo_5_805_coordIndex_3()
		{
			int[] value = {150,168,182,-1,150,149,168,-1,258,241,9,-1,241,258,260,-1,100,102,234,-1,100,192,102,-1,101,234,102,-1,234,101,186,-1,235,195,276,-1,195,235,93,-1,230,14,105,-1,210,14,230,-1,189,96,268,-1,94,96,189,-1,65,174,10,-1,174,65,98,-1,87,75,206,-1,87,77,75,-1,216,124,126,-1,124,216,221,-1,221,80,79,-1,80,221,216,-1,75,51,53,-1,75,74,51,-1,196,173,172,-1,196,107,173,-1,173,106,262,-1,173,107,106,-1,59,262,97,-1,59,173,262,-1,228,85,236,-1,228,227,85,-1,185,68,70,-1,185,176,68,-1,48,260,257,-1,48,50,260,-1,16,282,246,-1,45,282,16,-1,283,45,47,-1,283,282,45,-1,256,282,283,-1,256,255,282,-1,36,142,37,-1,36,23,142,-1,211,15,253,-1,43,15,211,-1,276,35,247,-1,35,276,195,-1,191,34,254,-1,32,34,191,-1,262,237,192,-1,106,237,262,-1,277,169,267,-1,277,280,169,-1,252,22,24,-1,22,252,261,-1,242,21,46,-1,19,21,242,-1,188,8,186,-1,188,11,8,-1,122,248,120,-1,250,248,122,-1,265,157,160,-1,265,264,157,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib8_Geo_5_805_normalIndex_1()
		{
			int[] value = {46,180,27,-1,46,188,180,-1,171,104,149,-1,171,147,104,-1,214,227,200,-1,214,222,227,-1,141,136,125,-1,141,139,136,-1,101,67,93,-1,120,115,132,-1,94,55,61,-1,17,10,61,-1,10,76,61,-1,32,37,78,-1,37,91,78,-1,272,212,213,-1,83,58,150,-1,10,31,52,-1,52,76,10,-1,119,74,96,-1,119,139,123,-1,119,136,139,-1,96,135,136,-1,136,119,96,-1,132,137,128,-1,132,138,137,-1,217,209,219,-1,118,106,160,-1,176,195,168,-1,195,171,168,-1,45,18,53,-1,53,59,45,-1,14,0,38,-1,204,145,200,-1,204,156,145,-1,165,199,166,-1,165,207,199,-1,56,24,185,-1,161,202,201,-1,202,241,201,-1,113,261,158,-1,113,257,261,-1,185,259,238,-1,238,56,185,-1,168,182,176,-1,168,173,182,-1,276,258,265,-1,276,274,258,-1,72,41,9,-1,9,33,72,-1,236,229,235,-1,75,114,77,-1,75,105,114,-1,212,249,186,-1,80,73,92,-1,80,45,73,-1,9,11,44,-1,9,0,11,-1,78,62,26,-1,26,32,78,-1,3,13,4,-1,3,19,13,-1,95,51,129,-1,51,157,129,-1,51,95,34,-1,34,30,51,-1,54,146,47,-1,54,155,146,-1,157,245,246,-1,157,162,245,-1,64,51,30,-1,247,229,252,-1,229,236,252,-1,52,42,35,-1,52,31,42,-1,3,113,19,-1,3,6,113,-1,87,6,2,-1,2,56,87,-1,175,178,194,-1,194,172,175,-1,167,210,170,-1,167,195,210,-1,103,55,94,-1,69,67,50,-1,69,93,67,-1,118,161,104,-1,161,63,104,-1,171,149,168,-1,5,56,2,-1,5,24,56,-1,25,26,81,-1,26,62,81,-1,2,1,8,-1,8,5,2,-1,125,136,135,-1,281,283,276,-1,281,282,283,-1,243,205,250,-1,277,279,280,-1,280,269,277,-1,188,40,164,-1,188,46,40,-1,13,43,39,-1,13,19,43,-1,46,27,29,-1,21,88,4,-1,88,7,4,-1,243,208,205,-1,208,183,205,-1,114,145,90,-1,90,77,114,-1,53,85,70,-1,214,200,193,-1,187,203,209,-1,187,179,203,-1,183,144,108,-1,108,205,183,-1,108,154,205,-1,154,250,205,-1,37,111,154,-1,37,16,111,-1,16,26,8,-1,16,32,26,-1,111,250,154,-1,111,264,250,-1,154,108,37,-1,108,91,37,-1,91,108,159,-1,108,144,159,-1,209,215,219,-1,209,203,215,-1,225,251,221,-1,225,249,251,-1,237,255,252,-1,252,236,237,-1,272,268,255,-1,255,251,272,-1,84,97,186,-1,97,212,186,-1,65,14,38,-1,33,9,66,-1,9,60,66,-1,21,190,262,-1,262,88,21,-1,262,264,88,-1,264,111,88,-1,133,224,242,-1,242,164,133,-1,242,188,164,-1,242,256,188,-1,190,282,262,-1,190,275,282,-1,280,279,283,-1,279,278,283,-1,281,264,262,-1,262,282,281,-1,283,278,276,-1,278,274,276,-1,271,250,264,-1,264,281,271,-1,220,169,184,-1,184,239,220,-1,141,125,124,-1,8,26,25,-1,25,5,8,-1,167,106,147,-1,167,115,106,-1,130,169,122,-1,258,259,241,-1,258,274,259,-1,115,109,116,-1,115,120,109,-1,176,194,178,-1,176,182,194,-1,278,248,238,-1,278,279,248,-1,162,64,153,-1,64,57,153,-1,63,201,48,-1,63,161,201,-1,35,42,74,-1,42,96,74,-1,240,247,270,-1,247,252,270,-1,253,267,245,-1,267,246,245,-1,157,51,162,-1,51,64,162,-1,82,181,155,-1,155,54,82,-1,121,129,126,-1,121,95,129,-1,129,246,181,-1,129,157,246,-1,187,191,152,-1,152,159,187,-1,210,178,175,-1,175,197,210,-1,45,59,73,-1,92,73,99,-1,73,90,99,-1,230,218,172,-1,218,174,172,-1,196,214,193,-1,196,225,214,-1,41,38,0,-1,0,9,41,-1,33,98,72,-1,169,160,122,-1,160,106,122,-1,149,173,168,-1,149,143,173,-1,87,257,113,-1,87,248,257,-1,259,201,241,-1,259,185,201,-1,113,6,87,-1,156,207,165,-1,156,204,207,-1,84,20,97,-1,109,69,74,-1,74,119,109,-1,17,55,58,-1,58,22,17,-1,137,101,128,-1,178,195,176,-1,178,210,195,-1,182,223,194,-1,182,211,223,-1,194,230,172,-1,194,223,230,-1,226,200,227,-1,226,204,200,-1,45,42,31,-1,45,80,42,-1,42,80,96,-1,80,135,96,-1,120,107,109,-1,240,270,216,-1,216,270,206,-1,32,16,37,-1,22,18,10,-1,10,17,22,-1,210,197,170,-1,71,76,52,-1,67,101,102,-1,150,174,142,-1,142,83,150,-1,61,55,17,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib8_Geo_5_805_normalIndex_2()
		{
			int[] value = {9,44,60,-1,82,121,126,-1,54,121,82,-1,54,117,121,-1,89,112,47,-1,89,110,112,-1,107,101,93,-1,107,128,101,-1,50,79,71,-1,50,67,79,-1,132,197,138,-1,132,170,197,-1,85,18,22,-1,85,53,18,-1,169,151,184,-1,169,130,151,-1,11,14,20,-1,0,14,11,-1,189,270,268,-1,189,206,270,-1,31,18,45,-1,31,10,18,-1,150,127,148,-1,150,103,127,-1,22,83,85,-1,22,58,83,-1,231,232,234,-1,231,228,232,-1,226,207,204,-1,215,207,226,-1,78,143,62,-1,78,152,143,-1,173,211,182,-1,173,191,211,-1,109,93,69,-1,93,109,107,-1,103,100,127,-1,100,103,94,-1,65,20,14,-1,20,65,97,-1,75,59,53,-1,77,59,75,-1,84,75,68,-1,84,105,75,-1,87,238,248,-1,56,238,87,-1,260,273,263,-1,273,260,267,-1,184,244,239,-1,244,184,198,-1,196,114,105,-1,193,114,196,-1,222,237,233,-1,237,222,221,-1,85,66,60,-1,83,66,85,-1,98,216,72,-1,216,98,240,-1,174,148,172,-1,174,150,148,-1,230,234,218,-1,231,234,230,-1,145,99,90,-1,99,145,156,-1,211,187,209,-1,211,191,187,-1,12,15,23,-1,15,12,28,-1,86,224,133,-1,146,224,86,-1,121,34,95,-1,117,34,121,-1,181,126,129,-1,126,181,82,-1,110,86,15,-1,89,86,110,-1,34,112,28,-1,112,34,117,-1,49,64,30,-1,57,64,49,-1,267,254,246,-1,254,267,260,-1,116,130,122,-1,116,123,130,-1,43,113,158,-1,113,43,19,-1,267,261,273,-1,261,267,253,-1,277,248,279,-1,277,257,248,-1,134,240,98,-1,247,240,134,-1,174,229,142,-1,174,218,229,-1,115,170,132,-1,115,167,170,-1,74,50,35,-1,74,69,50,-1,259,278,238,-1,274,278,259,-1,160,220,202,-1,160,169,220,-1,115,122,106,-1,115,116,122,-1,147,195,167,-1,171,195,147,-1,63,25,81,-1,25,63,48,-1,77,73,59,-1,90,73,77,-1,151,141,163,-1,151,139,141,-1,265,220,239,-1,265,258,220,-1,265,281,276,-1,265,271,281,-1,271,239,244,-1,271,265,239,-1,275,283,282,-1,275,280,283,-1,275,180,266,-1,275,190,180,-1,266,188,256,-1,188,266,180,-1,260,224,254,-1,242,224,260,-1,133,40,23,-1,133,164,40,-1,23,36,12,-1,36,23,40,-1,39,36,29,-1,49,36,39,-1,4,27,21,-1,4,13,27,-1,4,1,3,-1,4,7,1,-1,177,183,208,-1,192,183,177,-1,165,141,124,-1,165,166,141,-1,206,38,41,-1,189,38,206,-1,213,97,65,-1,212,97,213,-1,272,249,212,-1,249,272,251,-1,268,252,255,-1,268,270,252,-1,221,255,237,-1,221,251,255,-1,234,233,235,-1,232,233,234,-1,228,215,226,-1,215,228,219,-1,166,192,177,-1,192,166,199,-1,179,183,192,-1,144,183,179,-1,91,152,78,-1,91,159,152,-1,88,16,7,-1,16,88,111,-1,179,159,144,-1,179,187,159,-1,211,217,223,-1,209,217,211,-1,192,203,179,-1,199,203,192,-1,223,231,230,-1,231,223,217,-1,233,227,222,-1,227,233,232,-1,189,65,38,-1,213,65,189,-1,124,156,165,-1,156,124,99,-1,163,166,177,-1,163,141,166,-1,163,184,151,-1,198,184,163,-1,198,243,244,-1,243,198,208,-1,21,180,190,-1,180,21,27,-1,13,29,27,-1,13,39,29,-1,43,49,39,-1,43,57,49,-1,29,40,46,-1,36,40,29,-1,12,49,30,-1,36,49,12,-1,242,263,256,-1,260,263,242,-1,269,256,263,-1,269,266,256,-1,266,280,275,-1,266,269,280,-1,244,250,271,-1,244,243,250,-1,135,92,125,-1,135,80,92,-1,61,71,79,-1,71,61,76,-1,62,149,81,-1,62,143,149,-1,48,5,25,-1,5,48,24,-1,81,104,63,-1,81,149,104,-1,118,147,106,-1,147,118,104,-1,24,201,185,-1,201,24,48,-1,71,35,50,-1,71,52,35,-1,100,67,102,-1,100,79,67,-1,102,127,100,-1,102,131,127,-1,138,175,140,-1,197,175,138,-1,172,140,175,-1,172,148,140,-1,247,142,229,-1,247,134,142,-1,273,257,277,-1,257,273,261,-1,2,3,1,-1,6,3,2,-1,158,57,43,-1,158,153,57,-1,41,216,206,-1,216,41,72,-1,109,123,116,-1,109,119,123,-1,235,218,234,-1,235,229,218,-1,28,110,15,-1,110,28,112,-1,89,146,86,-1,47,146,89,-1,254,181,246,-1,254,155,181,-1,146,254,224,-1,155,254,146,-1,23,86,133,-1,86,23,15,-1,30,28,12,-1,28,30,34,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib8_Geo_5_805_normalIndex_3()
		{
			int[] value = {8,7,16,-1,8,1,7,-1,232,226,227,-1,226,232,228,-1,105,186,196,-1,105,84,186,-1,249,196,186,-1,196,249,225,-1,98,66,134,-1,66,98,33,-1,99,125,92,-1,124,125,99,-1,237,235,233,-1,236,235,237,-1,145,193,200,-1,193,145,114,-1,258,202,220,-1,258,241,202,-1,153,245,162,-1,245,153,253,-1,253,158,261,-1,158,253,153,-1,202,118,160,-1,202,161,118,-1,60,70,85,-1,60,44,70,-1,70,11,68,-1,70,44,11,-1,53,68,75,-1,53,70,68,-1,152,173,143,-1,152,191,173,-1,215,199,207,-1,215,203,199,-1,217,228,231,-1,217,219,228,-1,101,131,102,-1,137,131,101,-1,140,137,138,-1,140,131,137,-1,148,131,140,-1,148,127,131,-1,58,103,150,-1,58,55,103,-1,130,139,151,-1,123,139,130,-1,134,83,142,-1,83,134,66,-1,268,213,189,-1,272,213,268,-1,68,20,84,-1,11,20,68,-1,163,208,198,-1,163,177,208,-1,79,94,61,-1,94,79,100,-1,107,132,128,-1,120,132,107,-1,221,214,225,-1,221,222,214,-1,47,117,54,-1,112,117,47,-1,263,277,269,-1,263,273,277,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib9_Geo_5_811_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,7,9,8,-1,10,11,12,-1,10,13,11,-1,14,15,16,-1,17,18,19,-1,19,20,17,-1,21,22,23,-1,24,25,26,-1,26,27,24,-1,28,29,30,-1,30,31,28,-1,32,33,34,-1,32,35,33,-1,36,37,38,-1,2,39,40,-1,2,1,39,-1,4,41,42,-1,42,43,4,-1,39,44,45,-1,45,40,39,-1,46,47,48,-1,48,49,46,-1,50,51,52,-1,52,53,50,-1,54,55,56,-1,55,57,56,-1,13,10,58,-1,59,60,61,-1,59,8,60,-1,62,63,64,-1,62,65,63,-1,66,67,68,-1,66,69,67,-1,70,71,72,-1,70,73,71,-1,64,74,75,-1,74,76,75,-1,77,78,79,-1,41,80,81,-1,80,82,81,-1,83,84,85,-1,85,82,83,-1,82,80,83,-1,15,86,84,-1,84,16,15,-1,87,88,89,-1,87,90,88,-1,17,91,92,-1,92,93,17,-1,94,95,96,-1,94,97,95,-1,98,99,100,-1,99,96,100,-1,101,102,103,-1,103,104,101,-1,105,106,107,-1,106,108,107,-1,109,110,94,-1,110,111,94,-1,112,113,114,-1,114,115,112,-1,116,117,109,-1,117,110,109,-1,118,99,98,-1,98,119,118,-1,120,121,104,-1,121,101,104,-1,121,120,122,-1,122,119,121,-1,122,117,116,-1,122,113,112,-1,122,120,123,-1,124,125,126,-1,125,127,126,-1,128,34,129,-1,34,130,129,-1,131,132,133,-1,132,134,133,-1,67,135,68,-1,130,33,136,-1,130,34,33,-1,90,137,138,-1,137,139,138,-1,140,141,142,-1,141,143,142,-1,144,145,146,-1,146,147,144,-1,148,149,150,-1,149,151,150,-1,152,153,154,-1,153,155,154,-1,156,90,138,-1,156,157,90,-1,54,158,55,-1,85,159,160,-1,159,161,160,-1,162,163,164,-1,163,165,164,-1,100,166,102,-1,166,93,102,-1,111,167,94,-1,167,97,94,-1,137,90,87,-1,168,169,170,-1,169,171,170,-1,172,173,147,-1,143,174,175,-1,174,176,175,-1,149,148,177,-1,178,179,180,-1,178,181,179,-1,182,183,181,-1,183,184,181,-1,185,178,186,-1,186,187,185,-1,133,134,26,-1,26,15,133,-1,188,76,74,-1,189,188,131,-1,189,76,188,-1,63,61,190,-1,190,191,63,-1,191,64,63,-1,191,74,64,-1,192,160,193,-1,192,194,160,-1,77,3,78,-1,3,5,78,-1,3,80,41,-1,41,4,3,-1,195,196,197,-1,198,199,200,-1,200,56,198,-1,201,202,203,-1,56,204,198,-1,56,57,204,-1,205,206,207,-1,205,208,206,-1,209,210,211,-1,209,205,210,-1,212,51,48,-1,48,213,212,-1,51,212,214,-1,214,52,51,-1,215,204,216,-1,216,217,215,-1,208,205,209,-1,206,69,66,-1,66,207,206,-1,218,219,220,-1,218,221,219,-1,222,204,57,-1,5,4,43,-1,43,223,5,-1,201,198,224,-1,224,197,201,-1,225,196,226,-1,227,200,73,-1,228,77,79,-1,228,229,77,-1,82,160,194,-1,82,85,160,-1,65,230,231,-1,65,62,230,-1,191,190,232,-1,190,233,232,-1,133,15,14,-1,14,234,133,-1,235,74,236,-1,235,188,74,-1,237,238,235,-1,239,240,152,-1,240,153,152,-1,178,180,240,-1,240,186,178,-1,134,27,26,-1,134,129,27,-1,181,185,182,-1,181,178,185,-1,180,179,151,-1,179,150,151,-1,241,36,32,-1,145,174,146,-1,145,242,174,-1,176,183,30,-1,176,184,183,-1,141,147,146,-1,141,172,147,-1,175,30,29,-1,175,176,30,-1,243,126,127,-1,243,244,126,-1,171,245,246,-1,245,247,246,-1,157,248,249,-1,95,89,166,-1,89,250,166,-1,251,252,253,-1,252,254,253,-1,141,140,172,-1,140,255,172,-1,123,256,122,-1,257,258,259,-1,257,260,258,-1,72,152,154,-1,72,261,152,-1,142,262,140,-1,262,263,140,-1,248,157,264,-1,157,156,264,-1,137,167,139,-1,167,254,139,-1,5,265,78,-1,5,266,265,-1,23,267,169,-1,267,268,169,-1,258,269,270,-1,269,223,270,-1,33,127,136,-1,127,125,136,-1,126,271,124,-1,271,272,124,-1,273,268,274,-1,268,267,274,-1,91,21,275,-1,21,168,275,-1,226,276,277,-1,277,225,226,-1,116,118,122,-1,113,122,256,-1,117,122,112,-1,119,122,118,-1,123,120,106,-1,120,104,106,-1,118,109,99,-1,118,116,109,-1,105,107,251,-1,251,114,105,-1,101,98,102,-1,98,100,102,-1,102,93,103,-1,93,92,103,-1,87,89,95,-1,95,97,87,-1,81,278,41,-1,278,42,41,-1,159,84,86,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib9_Geo_5_811_coordIndex_2()
		{
			int[] value = {159,85,84,-1,234,14,279,-1,280,83,3,-1,83,80,3,-1,229,280,3,-1,3,77,229,-1,70,72,154,-1,154,237,70,-1,73,276,226,-1,226,71,73,-1,73,200,199,-1,199,276,73,-1,230,62,281,-1,201,197,202,-1,211,282,283,-1,211,210,282,-1,284,285,9,-1,284,79,285,-1,62,64,75,-1,75,281,62,-1,65,59,63,-1,59,61,63,-1,227,73,70,-1,70,236,227,-1,238,286,188,-1,188,235,238,-1,232,54,200,-1,54,56,200,-1,216,204,222,-1,55,287,57,-1,287,222,57,-1,44,43,42,-1,214,215,217,-1,222,287,206,-1,206,208,222,-1,39,1,135,-1,135,288,39,-1,220,2,289,-1,2,40,289,-1,214,212,215,-1,46,194,47,-1,35,127,33,-1,290,31,183,-1,31,30,183,-1,291,292,293,-1,292,162,293,-1,294,22,21,-1,21,20,294,-1,25,15,26,-1,25,86,15,-1,88,165,295,-1,88,249,165,-1,17,93,18,-1,59,6,8,-1,7,284,9,-1,200,227,191,-1,191,232,200,-1,207,210,205,-1,207,221,210,-1,44,42,45,-1,282,221,218,-1,221,282,210,-1,296,195,192,-1,196,195,296,-1,164,249,248,-1,249,164,165,-1,292,297,298,-1,297,292,291,-1,290,299,300,-1,290,301,299,-1,28,302,303,-1,302,28,31,-1,304,291,305,-1,304,297,291,-1,163,292,294,-1,292,163,162,-1,305,293,306,-1,305,291,293,-1,136,299,130,-1,300,299,136,-1,241,238,177,-1,238,241,286,-1,243,172,244,-1,173,172,243,-1,287,260,257,-1,260,287,55,-1,53,220,289,-1,218,220,53,-1,211,214,217,-1,211,283,214,-1,222,209,216,-1,208,209,222,-1,259,69,257,-1,67,69,259,-1,52,283,282,-1,214,283,52,-1,135,259,288,-1,67,259,135,-1,258,288,259,-1,288,258,270,-1,307,158,233,-1,158,307,308,-1,238,154,155,-1,238,237,154,-1,70,235,236,-1,70,237,235,-1,229,279,14,-1,229,228,279,-1,83,16,84,-1,83,280,16,-1,309,281,75,-1,58,281,309,-1,79,11,228,-1,11,79,284,-1,66,221,207,-1,66,219,221,-1,281,10,230,-1,10,281,58,-1,6,65,231,-1,6,59,65,-1,269,307,266,-1,308,307,269,-1,310,233,190,-1,233,310,307,-1,7,231,12,-1,7,6,231,-1,285,78,265,-1,79,78,285,-1,301,185,24,-1,301,182,185,-1,159,25,187,-1,159,86,25,-1,311,42,278,-1,45,42,311,-1,115,251,253,-1,115,114,251,-1,105,123,106,-1,256,123,105,-1,225,197,196,-1,225,202,197,-1,312,91,275,-1,92,91,312,-1,168,23,169,-1,21,23,168,-1,274,271,273,-1,274,272,271,-1,223,266,5,-1,223,269,266,-1,253,167,111,-1,167,253,254,-1,264,262,248,-1,262,264,263,-1,215,198,204,-1,198,215,224,-1,251,313,252,-1,107,313,251,-1,18,166,250,-1,166,18,93,-1,87,167,137,-1,167,87,97,-1,252,314,315,-1,313,314,252,-1,19,250,295,-1,250,19,18,-1,315,170,316,-1,314,170,315,-1,295,163,19,-1,295,165,163,-1,138,246,156,-1,316,246,138,-1,247,156,246,-1,247,264,156,-1,171,268,245,-1,169,268,171,-1,274,298,297,-1,298,274,267,-1,248,317,164,-1,248,262,317,-1,247,318,319,-1,318,247,245,-1,306,317,320,-1,317,306,293,-1,255,263,319,-1,255,140,263,-1,318,271,321,-1,271,318,273,-1,124,304,303,-1,304,124,272,-1,175,142,143,-1,142,175,320,-1,125,303,302,-1,125,124,303,-1,144,173,37,-1,144,147,173,-1,302,136,125,-1,302,300,136,-1,242,176,174,-1,242,184,176,-1,150,242,145,-1,150,179,242,-1,148,37,36,-1,148,144,37,-1,27,130,299,-1,130,27,129,-1,131,286,132,-1,131,188,286,-1,151,240,180,-1,240,151,153,-1,155,177,238,-1,177,155,149,-1,186,239,161,-1,186,240,239,-1,193,161,239,-1,160,161,193,-1,284,12,11,-1,7,12,284,-1,310,266,307,-1,265,266,310,-1,74,227,236,-1,74,191,227,-1,47,192,195,-1,192,47,194,-1,202,277,203,-1,202,225,277,-1,197,213,195,-1,213,197,224,-1,81,49,278,-1,81,46,49,-1,223,44,270,-1,223,43,44,-1,0,135,1,-1,135,0,68,-1,68,219,66,-1,0,219,68,-1,289,50,53,-1,50,289,311,-1,278,50,311,-1,49,50,278,-1,215,213,224,-1,213,215,212,-1,233,54,232,-1,233,158,54,-1,195,48,47,-1,48,195,213,-1,198,203,199,-1,201,203,198,-1,199,277,276,-1,277,199,203,-1,46,82,194,-1,46,81,82,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib9_Geo_5_811_coordIndex_3()
		{
			int[] value = {261,192,193,-1,192,261,296,-1,265,60,285,-1,265,310,60,-1,76,309,75,-1,76,189,309,-1,152,193,239,-1,193,152,261,-1,161,187,186,-1,159,187,161,-1,241,132,286,-1,132,241,128,-1,183,301,290,-1,183,182,301,-1,184,179,181,-1,184,242,179,-1,35,36,38,-1,36,35,32,-1,35,243,127,-1,35,38,243,-1,255,244,172,-1,244,255,321,-1,320,29,306,-1,320,175,29,-1,321,126,244,-1,271,126,321,-1,319,321,255,-1,319,318,321,-1,320,262,142,-1,262,320,317,-1,272,297,304,-1,274,297,272,-1,264,319,263,-1,264,247,319,-1,293,164,317,-1,164,293,162,-1,245,273,318,-1,268,273,245,-1,171,316,170,-1,171,246,316,-1,249,90,157,-1,249,88,90,-1,168,314,275,-1,168,170,314,-1,139,316,138,-1,315,316,139,-1,295,89,88,-1,89,295,250,-1,313,275,314,-1,312,275,313,-1,315,254,252,-1,315,139,254,-1,312,107,108,-1,312,313,107,-1,166,96,95,-1,96,166,100,-1,71,196,296,-1,226,196,71,-1,72,296,261,-1,72,71,296,-1,153,149,155,-1,153,151,149,-1,148,145,144,-1,150,145,148,-1,146,143,141,-1,174,143,146,-1,131,234,189,-1,131,133,234,-1,128,134,132,-1,129,134,128,-1,92,108,103,-1,92,312,108,-1,121,98,101,-1,121,119,98,-1,117,115,110,-1,117,112,115,-1,114,256,105,-1,113,256,114,-1,96,109,94,-1,99,109,96,-1,110,253,111,-1,253,110,115,-1,106,103,108,-1,103,106,104,-1,21,17,20,-1,17,21,91,-1,267,22,298,-1,22,267,23,-1,189,279,309,-1,279,189,234,-1,289,45,311,-1,40,45,289,-1,24,187,25,-1,185,187,24,-1,61,310,190,-1,61,60,310,-1,260,269,258,-1,260,308,269,-1,13,309,279,-1,13,58,309,-1,8,285,60,-1,8,9,285,-1,14,280,229,-1,280,14,16,-1,13,228,11,-1,228,13,279,-1,158,260,55,-1,158,308,260,-1,49,51,50,-1,49,48,51,-1,39,270,44,-1,39,288,270,-1,206,257,69,-1,287,257,206,-1,209,217,216,-1,209,211,217,-1,282,53,52,-1,282,218,53,-1,37,243,38,-1,37,173,243,-1,32,128,241,-1,32,34,128,-1,36,177,148,-1,177,36,241,-1,306,28,305,-1,28,306,29,-1,305,303,304,-1,303,305,28,-1,31,300,302,-1,300,31,290,-1,299,24,27,-1,301,24,299,-1,298,294,292,-1,298,22,294,-1,19,294,20,-1,294,19,163,-1,12,230,10,-1,230,12,231,-1,0,220,219,-1,0,2,220,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrib9_Geo_5_811_normalIndex_1()
		{
			int[] value = {65,120,109,-1,193,173,156,-1,68,63,85,-1,63,82,85,-1,101,137,64,-1,101,176,137,-1,238,219,260,-1,91,35,12,-1,12,51,91,-1,131,3,87,-1,195,211,221,-1,221,215,195,-1,61,59,106,-1,106,102,61,-1,191,183,135,-1,191,216,183,-1,207,253,237,-1,109,226,240,-1,109,120,226,-1,173,228,285,-1,285,233,173,-1,226,250,299,-1,299,240,226,-1,297,298,308,-1,308,303,297,-1,301,300,217,-1,217,236,301,-1,54,58,50,-1,58,73,50,-1,176,101,139,-1,41,45,25,-1,41,85,45,-1,46,38,114,-1,46,7,38,-1,9,56,78,-1,9,6,56,-1,150,161,190,-1,150,129,161,-1,114,166,146,-1,166,143,146,-1,170,105,133,-1,228,252,294,-1,252,290,294,-1,282,281,286,-1,286,290,282,-1,290,252,282,-1,219,220,281,-1,281,260,219,-1,48,40,30,-1,48,140,40,-1,91,163,198,-1,198,53,91,-1,31,33,27,-1,31,76,33,-1,214,231,23,-1,231,27,23,-1,174,42,149,-1,149,162,174,-1,72,144,268,-1,144,232,268,-1,197,136,31,-1,136,108,31,-1,118,29,130,-1,130,142,118,-1,194,172,197,-1,172,136,197,-1,225,231,214,-1,214,222,225,-1,160,206,162,-1,206,174,162,-1,206,160,112,-1,112,222,206,-1,112,172,194,-1,112,29,118,-1,112,160,62,-1,81,99,235,-1,99,202,235,-1,121,135,157,-1,135,151,157,-1,128,116,175,-1,116,179,175,-1,56,125,78,-1,151,183,123,-1,151,135,183,-1,140,126,279,-1,126,256,279,-1,289,266,132,-1,266,165,132,-1,269,262,277,-1,277,287,269,-1,227,203,246,-1,203,230,246,-1,249,241,196,-1,241,199,196,-1,270,140,279,-1,270,107,140,-1,54,77,58,-1,286,248,278,-1,248,259,278,-1,4,8,17,-1,8,13,17,-1,23,20,42,-1,20,53,42,-1,108,148,31,-1,148,76,31,-1,126,140,48,-1,283,272,316,-1,272,315,316,-1,302,280,287,-1,165,192,97,-1,192,138,97,-1,203,227,189,-1,242,229,245,-1,242,213,229,-1,177,134,213,-1,134,182,213,-1,210,242,257,-1,257,223,210,-1,175,179,221,-1,221,219,175,-1,153,143,166,-1,168,153,128,-1,168,143,153,-1,38,25,83,-1,83,141,38,-1,141,114,38,-1,141,166,114,-1,276,278,271,-1,276,284,278,-1,170,193,105,-1,193,156,105,-1,193,252,228,-1,228,173,193,-1,295,255,264,-1,88,52,75,-1,75,50,88,-1,93,201,90,-1,50,119,88,-1,50,73,119,-1,44,5,26,-1,44,55,5,-1,74,11,60,-1,74,44,11,-1,296,300,308,-1,308,307,296,-1,300,296,208,-1,208,217,300,-1,239,119,127,-1,127,164,239,-1,55,44,74,-1,5,6,9,-1,9,26,5,-1,66,22,122,-1,66,2,22,-1,69,119,73,-1,156,173,233,-1,233,188,156,-1,93,88,234,-1,234,264,93,-1,218,255,200,-1,147,75,129,-1,204,170,133,-1,204,224,170,-1,290,278,284,-1,290,286,278,-1,7,47,34,-1,7,46,47,-1,141,83,92,-1,83,96,92,-1,175,219,238,-1,238,178,175,-1,185,166,169,-1,185,153,166,-1,171,180,185,-1,263,265,249,-1,265,241,249,-1,242,245,265,-1,265,257,242,-1,179,215,221,-1,179,157,215,-1,213,210,177,-1,213,242,210,-1,245,229,230,-1,229,246,230,-1,167,207,191,-1,262,192,277,-1,262,212,192,-1,138,134,106,-1,138,182,134,-1,266,287,277,-1,266,302,287,-1,97,106,59,-1,97,138,106,-1,261,235,202,-1,261,291,235,-1,315,317,319,-1,317,321,319,-1,107,86,43,-1,33,30,20,-1,30,16,20,-1,275,309,205,-1,309,267,205,-1,266,289,302,-1,289,312,302,-1,62,10,112,-1,36,111,95,-1,36,80,111,-1,190,249,196,-1,190,247,249,-1,132,94,289,-1,94,273,289,-1,86,107,254,-1,107,270,254,-1,126,148,256,-1,148,267,256,-1,156,104,105,-1,156,152,104,-1,87,89,272,-1,89,288,272,-1,111,110,186,-1,110,188,186,-1,183,202,123,-1,202,99,123,-1,235,258,81,-1,258,70,81,-1,274,288,57,-1,288,89,57,-1,163,131,292,-1,131,283,292,-1,200,158,159,-1,159,218,200,-1,194,225,112,-1,29,112,10,-1,172,112,118,-1,222,112,225,-1,62,160,144,-1,160,162,144,-1,225,197,231,-1,225,194,197,-1,72,268,275,-1,275,130,72,-1,174,214,42,-1,214,23,42,-1,42,53,149,-1,53,198,149,-1,48,30,33,-1,33,76,48,-1,294,304,228,-1,304,285,228,-1,248,281,220,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrib9_Geo_5_811_normalIndex_2()
		{
			int[] value = {248,286,281,-1,178,238,209,-1,244,282,193,-1,282,252,193,-1,224,244,193,-1,193,170,224,-1,150,190,196,-1,196,171,150,-1,129,158,200,-1,200,161,129,-1,129,75,52,-1,52,158,129,-1,47,46,103,-1,93,264,201,-1,60,67,100,-1,60,11,67,-1,115,84,82,-1,115,133,84,-1,46,114,146,-1,146,103,46,-1,7,41,38,-1,41,25,38,-1,147,129,150,-1,150,169,147,-1,180,154,153,-1,153,185,180,-1,92,54,75,-1,54,50,75,-1,127,119,69,-1,58,32,73,-1,32,69,73,-1,250,233,285,-1,208,239,164,-1,69,32,5,-1,5,55,69,-1,226,120,125,-1,125,187,226,-1,122,109,251,-1,109,240,251,-1,208,296,239,-1,297,284,298,-1,216,202,183,-1,124,102,134,-1,102,106,134,-1,37,18,15,-1,18,4,15,-1,28,3,131,-1,131,51,28,-1,211,219,221,-1,211,220,219,-1,40,13,14,-1,40,43,13,-1,91,53,35,-1,41,68,85,-1,63,115,82,-1,75,147,141,-1,141,92,75,-1,26,11,44,-1,26,2,11,-1,250,285,299,-1,67,2,66,-1,2,67,11,-1,243,295,276,-1,255,295,243,-1,17,43,86,-1,43,17,13,-1,18,1,0,-1,1,18,37,-1,124,184,145,-1,124,155,184,-1,61,117,71,-1,117,61,102,-1,19,37,39,-1,19,1,37,-1,8,18,28,-1,18,8,4,-1,39,15,24,-1,39,37,15,-1,123,184,151,-1,145,184,123,-1,167,180,189,-1,180,167,154,-1,261,302,291,-1,280,302,261,-1,32,80,36,-1,80,32,58,-1,236,122,251,-1,66,122,236,-1,60,208,164,-1,60,100,208,-1,69,74,127,-1,55,74,69,-1,95,6,36,-1,56,6,95,-1,217,100,67,-1,208,100,217,-1,125,95,187,-1,56,95,125,-1,111,187,95,-1,187,111,186,-1,113,77,96,-1,77,113,79,-1,180,196,199,-1,180,171,196,-1,150,185,169,-1,150,171,185,-1,224,209,238,-1,224,204,209,-1,282,260,281,-1,282,244,260,-1,181,103,146,-1,139,103,181,-1,133,137,204,-1,137,133,115,-1,9,2,26,-1,9,22,2,-1,103,101,47,-1,101,103,139,-1,68,7,34,-1,68,41,7,-1,110,113,152,-1,79,113,110,-1,98,96,83,-1,96,98,113,-1,63,34,64,-1,63,68,34,-1,84,105,104,-1,133,105,84,-1,155,210,195,-1,155,177,210,-1,248,211,223,-1,248,220,211,-1,305,285,304,-1,299,285,305,-1,142,275,205,-1,142,130,275,-1,72,62,144,-1,10,62,72,-1,218,264,255,-1,218,201,264,-1,293,163,292,-1,198,163,293,-1,283,87,272,-1,131,87,283,-1,57,258,274,-1,57,70,258,-1,188,152,156,-1,188,110,152,-1,205,148,108,-1,148,205,267,-1,254,94,86,-1,94,254,273,-1,239,88,119,-1,88,239,234,-1,275,311,309,-1,268,311,275,-1,35,20,16,-1,20,35,53,-1,48,148,126,-1,148,48,76,-1,309,314,310,-1,311,314,309,-1,12,16,14,-1,16,12,35,-1,310,316,318,-1,314,316,310,-1,14,8,12,-1,14,13,8,-1,279,319,270,-1,318,319,279,-1,321,270,319,-1,321,254,270,-1,315,288,317,-1,272,288,315,-1,57,0,1,-1,0,57,89,-1,86,21,17,-1,86,94,21,-1,321,313,320,-1,313,321,317,-1,24,21,49,-1,21,24,15,-1,312,273,320,-1,312,289,273,-1,313,258,306,-1,258,313,274,-1,81,19,71,-1,19,81,70,-1,97,132,165,-1,132,97,49,-1,99,71,117,-1,99,81,71,-1,269,280,253,-1,269,287,280,-1,117,123,99,-1,117,145,123,-1,212,138,192,-1,212,182,138,-1,246,212,262,-1,246,229,212,-1,227,253,207,-1,227,269,253,-1,215,151,184,-1,151,215,157,-1,128,154,116,-1,128,153,154,-1,230,265,245,-1,265,230,241,-1,199,189,180,-1,189,199,203,-1,257,263,259,-1,257,265,263,-1,271,259,263,-1,278,259,271,-1,115,64,137,-1,63,64,115,-1,98,152,113,-1,104,152,98,-1,166,147,169,-1,166,141,147,-1,298,276,295,-1,276,298,284,-1,201,159,90,-1,201,218,159,-1,264,307,295,-1,307,264,234,-1,294,303,304,-1,294,297,303,-1,188,250,186,-1,188,233,250,-1,65,125,120,-1,125,65,78,-1,78,22,9,-1,65,22,78,-1,251,301,236,-1,301,251,305,-1,304,301,305,-1,303,301,304,-1,239,307,234,-1,307,239,296,-1,96,54,92,-1,96,77,54,-1,295,308,298,-1,308,295,307,-1,88,90,52,-1,93,90,88,-1,52,159,158,-1,159,52,90,-1,297,290,284,-1,297,294,290,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrib9_Geo_5_811_normalIndex_3()
		{
			int[] value = {247,276,271,-1,276,247,243,-1,104,45,84,-1,104,98,45,-1,143,181,146,-1,143,168,181,-1,249,271,263,-1,271,249,247,-1,259,223,257,-1,248,223,259,-1,167,116,154,-1,116,167,121,-1,134,155,124,-1,134,177,155,-1,182,229,213,-1,182,212,229,-1,216,207,237,-1,207,216,191,-1,216,261,202,-1,216,237,261,-1,312,291,302,-1,291,312,306,-1,49,59,24,-1,49,97,59,-1,306,235,291,-1,258,235,306,-1,320,306,312,-1,320,313,306,-1,49,94,132,-1,94,49,21,-1,70,1,19,-1,57,1,70,-1,254,320,273,-1,254,321,320,-1,15,17,21,-1,17,15,4,-1,317,274,313,-1,288,274,317,-1,315,318,316,-1,315,319,318,-1,43,140,107,-1,43,40,140,-1,283,314,292,-1,283,316,314,-1,256,318,279,-1,310,318,256,-1,14,30,40,-1,30,14,16,-1,311,292,314,-1,293,292,311,-1,310,267,309,-1,310,256,267,-1,293,268,232,-1,293,311,268,-1,20,27,33,-1,27,20,23,-1,161,255,243,-1,200,255,161,-1,190,243,247,-1,190,161,243,-1,241,203,199,-1,241,230,203,-1,227,262,269,-1,246,262,227,-1,277,165,266,-1,192,165,277,-1,128,178,168,-1,128,175,178,-1,121,179,116,-1,157,179,121,-1,198,232,149,-1,198,293,232,-1,206,214,174,-1,206,222,214,-1,172,142,136,-1,172,118,142,-1,130,10,72,-1,29,10,130,-1,27,197,31,-1,231,197,27,-1,136,205,108,-1,205,136,142,-1,144,149,232,-1,149,144,162,-1,131,91,51,-1,91,131,163,-1,89,3,0,-1,3,89,87,-1,168,209,181,-1,209,168,178,-1,251,299,305,-1,240,299,251,-1,195,223,211,-1,210,223,195,-1,25,98,83,-1,25,45,98,-1,80,110,111,-1,80,79,110,-1,176,181,209,-1,176,139,181,-1,85,84,45,-1,85,82,84,-1,238,244,224,-1,244,238,260,-1,176,204,137,-1,204,176,209,-1,77,80,58,-1,77,79,80,-1,303,300,301,-1,303,308,300,-1,226,186,250,-1,226,187,186,-1,5,36,6,-1,32,36,5,-1,74,164,127,-1,74,60,164,-1,67,236,217,-1,67,66,236,-1,253,261,237,-1,253,280,261,-1,191,121,167,-1,191,135,121,-1,207,189,227,-1,189,207,167,-1,24,61,39,-1,61,24,59,-1,39,71,19,-1,71,39,61,-1,102,145,117,-1,145,102,124,-1,184,195,215,-1,155,195,184,-1,0,28,18,-1,0,3,28,-1,12,28,51,-1,28,12,8,-1,64,47,101,-1,47,64,34,-1,65,122,22,-1,65,109,122,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrrib_Geo_5_817_coordIndex_1()
		{
			int[] value = {0,1,2,-1,1,3,2,-1,4,5,6,-1,7,8,9,-1,10,11,12,-1,13,14,15,-1,13,16,14,-1,17,18,19,-1,20,21,22,-1,23,24,2,-1,23,25,24,-1,26,27,2,-1,2,3,26,-1,28,29,30,-1,31,32,33,-1,34,35,36,-1,34,37,35,-1,38,39,40,-1,41,42,43,-1,43,44,41,-1,45,46,43,-1,47,36,48,-1,45,42,49,-1,50,51,52,-1,53,54,55,-1,56,47,48,-1,44,24,25,-1,26,3,57,-1,58,59,60,-1,61,62,63,-1,28,30,64,-1,64,65,28,-1,60,66,58,-1,60,67,66,-1,60,68,67,-1,69,70,71,-1,70,72,71,-1,73,74,23,-1,23,27,73,-1,4,75,76,-1,76,77,4,-1,78,79,80,-1,78,81,79,-1,53,12,82,-1,53,5,12,-1,46,45,83,-1,84,85,86,-1,87,88,89,-1,87,90,88,-1,91,92,93,-1,92,94,93,-1,95,96,97,-1,96,98,97,-1,99,100,101,-1,100,102,101,-1,103,104,105,-1,106,102,100,-1,106,107,102,-1,108,109,110,-1,109,111,110,-1,12,78,82,-1,12,81,78,-1,112,113,114,-1,115,116,117,-1,118,119,120,-1,121,122,123,-1,124,125,126,-1,127,128,129,-1,129,130,127,-1,16,131,132,-1,16,133,131,-1,72,134,71,-1,135,136,137,-1,135,138,136,-1,139,140,141,-1,139,142,140,-1,139,131,143,-1,143,144,139,-1,145,144,143,-1,145,146,144,-1,147,148,149,-1,147,150,148,-1,151,152,153,-1,151,154,152,-1,155,156,157,-1,155,158,156,-1,159,160,161,-1,160,162,161,-1,163,164,165,-1,165,166,163,-1,167,168,169,-1,168,170,169,-1,171,172,173,-1,172,174,173,-1,175,161,176,-1,175,159,161,-1,177,176,178,-1,179,178,180,-1,181,182,183,-1,184,112,185,-1,186,187,171,-1,186,188,187,-1,148,189,149,-1,169,170,190,-1,170,191,190,-1,149,189,192,-1,173,174,193,-1,174,194,193,-1,195,194,196,-1,163,197,167,-1,163,198,197,-1,167,199,168,-1,167,197,199,-1,200,201,202,-1,202,203,200,-1,61,204,205,-1,61,17,204,-1,99,206,124,-1,206,207,124,-1,179,208,209,-1,179,180,208,-1,210,211,147,-1,211,191,147,-1,212,213,214,-1,215,216,217,-1,218,219,220,-1,53,55,221,-1,222,223,224,-1,224,225,222,-1,226,227,228,-1,229,230,231,-1,231,232,229,-1,233,214,213,-1,233,234,214,-1,235,236,237,-1,236,238,237,-1,239,240,213,-1,240,233,213,-1,241,242,243,-1,220,219,244,-1,219,245,244,-1,233,246,247,-1,233,240,246,-1,248,249,243,-1,250,251,252,-1,250,253,251,-1,253,254,251,-1,255,256,257,-1,258,259,260,-1,260,261,258,-1,262,263,264,-1,263,265,264,-1,264,266,259,-1,267,268,263,-1,263,269,267,-1,270,253,271,-1,253,272,271,-1,273,266,274,-1,275,274,266,-1,276,45,49,-1,277,278,279,-1,269,280,281,-1,282,283,284,-1,282,285,283,-1,286,287,288,-1,288,289,286,-1,243,290,291,-1,292,293,294,-1,293,19,294,-1,244,295,242,-1,244,234,295,-1,296,297,298,-1,298,103,296,-1,299,300,301,-1,299,302,300,-1,303,304,305,-1,303,306,304,-1,239,307,308,-1,309,9,8,-1,310,311,312,-1,235,212,313,-1,212,232,313,-1,307,237,314,-1,291,241,243,-1,315,62,61,-1,316,154,151,-1,70,317,72,-1,156,318,157,-1,319,320,321,-1,322,20,22,-1,322,323,20,-1,214,245,311,-1,247,243,295,-1,324,325,326,-1,325,327,326,-1,260,266,328,-1,265,266,264,-1,266,273,329,-1,330,236,331,-1,236,332,331,-1,266,333,334,-1,335,215,217,-1,266,336,275,-1,324,326,337,-1,326,338,337,-1,259,266,260,-1,236,235,332,-1,235,313,332,-1,295,243,242,-1,339,50,340,-1,339,51,50,-1,145,341,342,-1,145,343,341,-1,344,345,346,-1,306,104,347,-1,306,303,104,-1,348,349,350,-1,243,246,248,-1,210,193,211,-1,210,351,193,-1,352,353,354,-1,352,355,353,-1,356,339,357,-1,356,51,339,-1,314,238,358,-1,314,237,238,-1,3,1,359,-1,234,233,247,-1,247,295,234,-1,360,361,362,-1,249,290,243,-1,363,364,365,-1,365,366,363,-1,367,368,369,-1,368,370,369,-1,371,372,373,-1,372,297,373,-1,328,266,334,-1,374,227,375,-1,227,376,375,-1,333,266,329,-1,265,336,266,-1,254,377,251,-1,377,335,251,-1,268,267,270,-1,270,271,268,-1,262,258,378,-1,258,379,378,-1,380,381,382,-1,263,268,265,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrrib_Geo_5_817_coordIndex_2()
		{
			int[] value = {268,336,265,-1,258,262,264,-1,264,259,258,-1,223,222,334,-1,281,383,384,-1,358,238,216,-1,216,215,358,-1,335,385,215,-1,335,386,385,-1,387,366,365,-1,387,388,366,-1,388,249,248,-1,248,389,388,-1,390,366,308,-1,390,391,366,-1,364,360,365,-1,360,362,365,-1,1,0,37,-1,37,312,1,-1,212,239,213,-1,212,307,239,-1,311,245,392,-1,245,219,392,-1,242,241,220,-1,220,244,242,-1,243,247,246,-1,237,307,235,-1,307,212,235,-1,214,244,245,-1,393,394,395,-1,394,309,395,-1,385,358,215,-1,396,329,382,-1,257,333,255,-1,397,398,399,-1,397,400,398,-1,401,210,149,-1,402,403,404,-1,404,405,402,-1,406,201,200,-1,195,191,211,-1,195,190,191,-1,170,147,191,-1,170,150,147,-1,147,149,210,-1,185,407,408,-1,185,112,407,-1,113,153,409,-1,153,152,409,-1,116,400,410,-1,116,398,400,-1,210,401,351,-1,198,166,318,-1,198,163,166,-1,178,176,180,-1,176,161,180,-1,411,178,179,-1,399,176,177,-1,399,412,176,-1,172,413,174,-1,413,414,174,-1,415,186,171,-1,171,173,415,-1,407,114,192,-1,192,189,407,-1,168,150,170,-1,168,416,150,-1,114,407,112,-1,127,132,128,-1,132,141,128,-1,145,342,146,-1,342,417,146,-1,418,417,342,-1,418,121,417,-1,419,420,421,-1,419,422,420,-1,52,72,50,-1,52,134,72,-1,423,424,425,-1,426,406,427,-1,426,424,406,-1,428,429,430,-1,431,70,69,-1,69,432,431,-1,433,68,60,-1,433,434,68,-1,435,436,373,-1,436,437,373,-1,109,108,26,-1,26,57,109,-1,244,214,234,-1,403,438,107,-1,107,106,403,-1,305,87,89,-1,86,85,439,-1,439,440,86,-1,296,103,105,-1,105,441,296,-1,303,305,442,-1,305,89,442,-1,107,438,117,-1,438,115,117,-1,443,394,339,-1,394,357,339,-1,37,34,444,-1,444,312,37,-1,33,445,76,-1,76,75,33,-1,51,446,52,-1,51,356,446,-1,447,448,449,-1,18,109,57,-1,61,450,315,-1,24,0,2,-1,309,451,395,-1,449,452,447,-1,43,42,45,-1,44,35,24,-1,83,45,276,-1,453,83,276,-1,276,39,453,-1,41,49,42,-1,41,449,49,-1,454,39,38,-1,33,32,455,-1,456,29,28,-1,27,23,2,-1,18,3,19,-1,18,57,3,-1,7,80,79,-1,457,16,13,-1,457,133,16,-1,458,81,459,-1,458,79,81,-1,293,17,19,-1,12,5,10,-1,143,131,133,-1,425,97,423,-1,97,425,91,-1,460,461,462,-1,461,460,98,-1,344,463,464,-1,344,346,463,-1,439,465,440,-1,439,436,465,-1,11,81,12,-1,459,81,11,-1,101,428,430,-1,102,428,101,-1,466,403,402,-1,466,438,403,-1,373,467,371,-1,467,373,437,-1,437,344,467,-1,437,345,344,-1,468,23,74,-1,468,25,23,-1,40,456,455,-1,456,40,448,-1,277,469,278,-1,56,469,277,-1,447,30,29,-1,447,452,30,-1,38,455,32,-1,38,40,455,-1,470,56,277,-1,470,47,56,-1,276,449,39,-1,449,276,49,-1,46,453,48,-1,453,46,83,-1,465,471,472,-1,473,471,465,-1,279,31,474,-1,279,278,31,-1,422,350,349,-1,422,419,350,-1,315,475,476,-1,450,475,315,-1,477,420,478,-1,421,420,477,-1,111,479,110,-1,480,479,111,-1,448,39,449,-1,448,40,39,-1,481,349,482,-1,481,422,349,-1,483,484,485,-1,484,483,486,-1,487,446,356,-1,487,482,446,-1,62,476,480,-1,62,315,476,-1,486,65,478,-1,28,65,486,-1,488,489,490,-1,488,491,489,-1,490,393,395,-1,393,490,492,-1,487,493,494,-1,493,487,495,-1,82,496,53,-1,496,82,497,-1,455,483,498,-1,455,456,483,-1,499,34,470,-1,444,34,499,-1,357,393,495,-1,357,394,393,-1,445,500,501,-1,500,445,498,-1,443,340,130,-1,443,339,340,-1,430,461,101,-1,461,430,462,-1,104,442,105,-1,104,303,442,-1,435,441,473,-1,435,296,441,-1,502,84,503,-1,84,502,504,-1,159,402,405,-1,402,159,175,-1,66,350,58,-1,66,348,350,-1,66,67,348,-1,361,359,505,-1,361,294,359,-1,506,499,507,-1,499,506,444,-1,475,419,421,-1,475,59,419,-1,479,478,65,-1,478,479,477,-1,11,488,459,-1,491,488,11,-1,508,509,510,-1,509,508,511,-1,203,512,513,-1,512,203,514,-1,200,427,406,-1,515,427,200,-1,429,516,517,-1,516,429,518,-1,158,519,520,-1,155,519,158,-1,521,124,321,-1,521,125,124,-1,522,523,524,-1,525,523,522,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrrib_Geo_5_817_coordIndex_3()
		{
			int[] value = {526,155,404,-1,519,155,526,-1,68,432,69,-1,434,432,68,-1,70,527,317,-1,431,527,70,-1,341,418,342,-1,528,418,341,-1,316,528,529,-1,418,528,316,-1,512,530,531,-1,512,510,530,-1,518,428,117,-1,429,428,518,-1,514,202,517,-1,514,203,202,-1,532,528,341,-1,531,528,532,-1,427,533,426,-1,533,427,534,-1,424,460,406,-1,424,423,460,-1,535,424,426,-1,424,535,425,-1,533,13,536,-1,533,457,13,-1,504,537,538,-1,504,502,537,-1,67,134,348,-1,134,67,71,-1,61,60,450,-1,61,433,60,-1,485,481,494,-1,484,481,485,-1,539,9,129,-1,540,9,539,-1,541,542,543,-1,541,544,542,-1,96,541,545,-1,95,541,96,-1,546,142,547,-1,543,142,546,-1,119,121,525,-1,121,119,417,-1,321,548,521,-1,320,548,321,-1,126,106,100,-1,126,526,106,-1,524,548,522,-1,548,524,549,-1,316,121,418,-1,121,316,122,-1,122,151,550,-1,151,122,316,-1,112,153,113,-1,112,184,153,-1,400,551,181,-1,551,400,397,-1,399,552,412,-1,399,398,552,-1,553,192,114,-1,553,554,192,-1,408,555,185,-1,416,555,408,-1,188,553,409,-1,186,553,188,-1,556,557,558,-1,556,559,557,-1,511,560,509,-1,511,183,560,-1,561,562,563,-1,562,561,564,-1,565,566,567,-1,566,565,568,-1,189,408,407,-1,189,148,408,-1,186,554,553,-1,186,415,554,-1,413,569,414,-1,413,551,569,-1,397,177,570,-1,397,399,177,-1,571,414,569,-1,571,572,414,-1,573,208,574,-1,209,208,573,-1,405,155,157,-1,155,405,404,-1,198,156,564,-1,198,318,156,-1,116,552,398,-1,115,552,116,-1,166,157,318,-1,166,160,157,-1,196,574,575,-1,196,573,574,-1,572,174,414,-1,194,174,572,-1,195,193,194,-1,211,193,195,-1,404,106,526,-1,403,106,404,-1,401,415,351,-1,415,401,554,-1,162,180,161,-1,180,162,208,-1,558,530,556,-1,558,529,530,-1,576,577,343,-1,577,576,534,-1,183,578,560,-1,182,578,183,-1,527,425,535,-1,527,579,425,-1,464,434,433,-1,434,464,463,-1,140,128,141,-1,580,128,140,-1,118,417,119,-1,118,146,417,-1,555,568,565,-1,555,199,568,-1,93,581,544,-1,93,94,581,-1,578,171,187,-1,171,578,172,-1,582,402,175,-1,582,466,402,-1,329,255,333,-1,329,396,255,-1,382,273,380,-1,329,273,382,-1,583,382,381,-1,382,583,396,-1,17,584,204,-1,584,17,293,-1,585,586,587,-1,585,588,586,-1,228,374,589,-1,228,227,374,-1,590,591,592,-1,593,591,590,-1,583,594,256,-1,583,595,594,-1,596,332,597,-1,331,332,596,-1,506,312,444,-1,506,310,312,-1,230,376,231,-1,375,376,230,-1,597,313,598,-1,597,332,313,-1,594,599,600,-1,599,594,596,-1,330,217,216,-1,217,330,601,-1,312,392,1,-1,392,312,311,-1,252,601,381,-1,252,217,601,-1,449,468,452,-1,468,449,41,-1,390,386,391,-1,386,390,385,-1,366,389,308,-1,366,388,389,-1,307,390,308,-1,390,307,314,-1,90,281,280,-1,90,370,281,-1,302,383,368,-1,302,602,383,-1,386,377,299,-1,386,335,377,-1,603,267,384,-1,270,267,603,-1,379,604,378,-1,379,327,604,-1,605,326,606,-1,605,338,326,-1,224,599,592,-1,224,600,599,-1,328,222,607,-1,222,328,334,-1,275,268,271,-1,268,275,336,-1,273,272,380,-1,272,273,274,-1,257,224,223,-1,257,600,224,-1,261,605,606,-1,605,261,607,-1,379,261,606,-1,258,261,379,-1,250,381,380,-1,252,381,250,-1,63,17,61,-1,63,18,17,-1,588,375,507,-1,588,374,375,-1,376,226,608,-1,227,226,376,-1,592,609,590,-1,609,592,599,-1,337,591,593,-1,591,337,338,-1,610,589,611,-1,228,589,610,-1,587,353,585,-1,587,354,353,-1,84,612,135,-1,84,86,612,-1,472,440,465,-1,472,613,440,-1,105,614,441,-1,105,615,614,-1,89,616,442,-1,89,617,616,-1,88,327,325,-1,88,604,327,-1,297,286,298,-1,372,286,297,-1,289,306,347,-1,289,285,306,-1,369,282,367,-1,282,369,304,-1,300,368,367,-1,368,300,302,-1,372,204,584,-1,372,371,204,-1,301,366,391,-1,301,363,366,-1,387,249,388,-1,387,290,249,-1,618,365,362,-1,618,387,365,-1,389,246,240,-1,389,248,246,-1,505,362,361,-1,505,218,362,-1,288,292,360,-1,292,288,287,-1,135,323,138,-1,135,612,323,-1,21,619,497,-1,21,20,619,-1,615,352,614,-1,352,615,355,-1,617,620,616,-1,620,617,621,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrrib_Geo_5_817_coordIndex_4()
		{
			int[] value = {505,1,392,-1,1,505,359,-1,205,371,467,-1,371,205,204,-1,283,360,364,-1,288,360,283,-1,87,304,369,-1,87,305,304,-1,373,296,435,-1,296,373,297,-1,346,538,463,-1,504,538,346,-1,510,556,530,-1,556,510,509,-1,515,534,427,-1,577,534,515,-1,16,127,14,-1,127,16,132,-1,133,576,143,-1,133,457,576,-1,560,187,559,-1,578,187,560,-1,206,101,461,-1,99,101,206,-1,579,91,425,-1,92,91,579,-1,622,539,580,-1,622,136,539,-1,118,546,547,-1,319,546,118,-1,563,549,524,-1,562,549,563,-1,544,622,542,-1,622,544,581,-1,612,20,323,-1,20,612,613,-1,355,616,620,-1,616,355,615,-1,337,621,324,-1,621,337,610,-1,78,497,82,-1,21,497,78,-1,495,356,357,-1,495,487,356,-1,456,486,483,-1,456,28,486,-1,453,56,48,-1,453,469,56,-1,310,214,311,-1,310,229,214,-1,377,603,602,-1,377,254,603,-1,217,251,335,-1,217,252,251,-1,378,280,269,-1,378,604,280,-1,586,470,54,-1,586,499,470,-1,492,489,501,-1,492,490,489,-1,482,348,446,-1,349,348,482,-1,80,322,22,-1,322,80,7,-1,496,352,354,-1,623,352,496,-1,620,353,355,-1,620,611,353,-1,324,617,325,-1,324,621,617,-1,623,614,352,-1,623,471,614,-1,581,136,622,-1,581,137,136,-1,207,546,319,-1,207,545,546,-1,562,520,549,-1,562,158,520,-1,199,561,568,-1,199,197,561,-1,120,319,118,-1,320,319,120,-1,542,580,140,-1,622,580,542,-1,537,92,579,-1,92,537,502,-1,406,462,201,-1,462,406,460,-1,117,410,518,-1,116,410,117,-1,557,409,152,-1,557,188,409,-1,50,317,15,-1,317,50,72,-1,317,535,536,-1,317,527,535,-1,513,577,515,-1,577,513,532,-1,85,504,346,-1,504,85,84,-1,301,284,363,-1,284,301,300,-1,293,287,584,-1,293,292,287,-1,26,73,27,-1,73,26,108,-1,618,218,220,-1,218,618,362,-1,621,611,620,-1,621,610,611,-1,214,232,212,-1,214,229,232,-1,613,619,20,-1,613,472,619,-1,474,33,75,-1,474,31,33,-1,138,322,540,-1,138,323,322,-1,363,283,364,-1,363,284,283,-1,369,90,87,-1,90,369,370,-1,104,298,347,-1,104,103,298,-1,240,308,389,-1,239,308,240,-1,220,291,618,-1,220,241,291,-1,291,387,618,-1,290,387,291,-1,391,299,301,-1,386,299,391,-1,584,286,372,-1,584,287,286,-1,288,285,289,-1,285,288,283,-1,367,284,300,-1,367,282,284,-1,384,602,603,-1,384,383,602,-1,306,282,304,-1,285,282,306,-1,347,286,289,-1,286,347,298,-1,325,89,88,-1,89,325,617,-1,615,442,616,-1,105,442,615,-1,471,441,614,-1,473,441,471,-1,86,613,612,-1,86,440,613,-1,354,53,496,-1,587,53,354,-1,611,585,353,-1,589,585,611,-1,593,610,337,-1,593,228,610,-1,590,608,226,-1,590,609,608,-1,588,499,586,-1,588,507,499,-1,498,485,500,-1,485,498,483,-1,64,108,110,-1,64,73,108,-1,380,253,250,-1,380,272,253,-1,269,262,378,-1,269,263,262,-1,225,607,222,-1,225,605,607,-1,381,595,583,-1,381,601,595,-1,274,271,272,-1,271,274,275,-1,260,607,261,-1,607,260,328,-1,331,601,330,-1,601,331,595,-1,338,225,591,-1,605,225,338,-1,606,327,379,-1,606,326,327,-1,253,603,254,-1,253,270,603,-1,299,602,302,-1,299,377,602,-1,370,383,281,-1,370,368,383,-1,314,385,390,-1,385,314,358,-1,25,41,44,-1,468,41,25,-1,236,216,238,-1,236,330,216,-1,256,600,257,-1,600,256,594,-1,599,597,609,-1,599,596,597,-1,608,231,376,-1,608,598,231,-1,507,230,506,-1,507,375,230,-1,506,229,310,-1,229,506,230,-1,609,598,608,-1,609,597,598,-1,596,595,331,-1,595,596,594,-1,598,232,231,-1,313,232,598,-1,592,225,224,-1,592,591,225,-1,593,226,228,-1,593,590,226,-1,588,589,374,-1,585,589,588,-1,587,54,53,-1,587,586,54,-1,6,53,221,-1,6,5,53,-1,392,218,505,-1,392,219,218,-1,223,333,257,-1,333,223,334,-1,256,396,583,-1,256,255,396,-1,571,179,209,-1,571,411,179,-1,199,416,168,-1,199,555,416,-1,94,137,581,-1,94,503,137,-1,545,206,96,-1,207,206,545,-1,567,523,123,-1,567,566,523,-1,146,547,144,-1,146,118,547,-1,580,129,128,-1,129,580,539,-1,205,433,61,-1,433,205,464,-1,431,579,527,-1,579,431,537,-1,516,511,508,-1,516,624,511,-1,15,536,13,-1,15,317,536,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlrrib_Geo_5_817_coordIndex_5()
		{
			int[] value = {532,343,577,-1,341,343,532,-1,559,188,557,-1,187,188,559,-1,195,575,190,-1,196,575,195,-1,569,411,571,-1,569,570,411,-1,173,351,415,-1,173,193,351,-1,190,164,169,-1,164,190,575,-1,197,564,561,-1,197,198,564,-1,172,182,413,-1,172,578,182,-1,194,573,196,-1,194,572,573,-1,164,574,165,-1,164,575,574,-1,413,181,551,-1,181,413,182,-1,412,466,582,-1,466,412,552,-1,405,160,159,-1,157,160,405,-1,165,208,162,-1,208,165,574,-1,572,209,573,-1,571,209,572,-1,178,570,177,-1,411,570,178,-1,570,551,397,-1,551,570,569,-1,163,169,164,-1,163,167,169,-1,165,160,166,-1,160,165,162,-1,567,184,565,-1,567,550,184,-1,563,568,561,-1,563,566,568,-1,564,158,562,-1,158,564,156,-1,624,183,511,-1,624,181,183,-1,509,559,556,-1,509,560,559,-1,152,558,557,-1,154,558,152,-1,412,175,176,-1,412,582,175,-1,416,148,150,-1,416,408,148,-1,554,149,192,-1,554,401,149,-1,114,409,553,-1,409,114,113,-1,410,181,624,-1,181,410,400,-1,443,309,394,-1,9,309,443,-1,153,550,151,-1,184,550,153,-1,123,525,121,-1,525,123,523,-1,521,549,520,-1,548,549,521,-1,100,124,126,-1,100,99,124,-1,522,320,120,-1,548,320,522,-1,547,139,144,-1,142,139,547,-1,545,543,546,-1,541,543,545,-1,95,544,541,-1,95,93,544,-1,543,140,142,-1,543,542,140,-1,141,131,139,-1,131,141,132,-1,136,540,539,-1,138,540,136,-1,503,135,137,-1,84,135,503,-1,134,446,348,-1,134,52,446,-1,463,432,434,-1,538,432,463,-1,538,431,432,-1,538,537,431,-1,536,426,533,-1,426,536,535,-1,534,457,533,-1,457,534,576,-1,513,531,532,-1,512,531,513,-1,508,517,516,-1,517,508,514,-1,531,529,528,-1,531,530,529,-1,185,565,184,-1,555,565,185,-1,343,143,576,-1,343,145,143,-1,9,130,129,-1,9,443,130,-1,130,14,127,-1,14,130,340,-1,126,519,526,-1,125,519,126,-1,550,123,122,-1,550,567,123,-1,566,524,523,-1,566,563,524,-1,120,525,522,-1,119,525,120,-1,321,207,319,-1,321,124,207,-1,520,125,521,-1,520,519,125,-1,552,438,466,-1,438,552,115,-1,430,517,202,-1,517,430,429,-1,518,624,516,-1,624,518,410,-1,203,515,200,-1,513,515,203,-1,514,510,512,-1,510,514,508,-1,529,154,316,-1,529,558,154,-1,494,500,485,-1,494,493,500,-1,309,458,451,-1,309,8,458,-1,540,7,9,-1,540,322,7,-1,480,477,479,-1,480,476,477,-1,3,294,19,-1,294,3,359,-1,439,346,345,-1,439,85,346,-1,473,436,435,-1,473,465,436,-1,461,96,206,-1,461,98,96,-1,93,97,91,-1,93,95,97,-1,92,503,94,-1,92,502,503,-1,280,88,90,-1,604,88,280,-1,462,202,201,-1,202,462,430,-1,33,498,445,-1,498,33,455,-1,493,501,500,-1,492,501,493,-1,501,76,445,-1,501,489,76,-1,11,77,491,-1,10,77,11,-1,623,497,619,-1,623,496,497,-1,492,495,393,-1,492,493,495,-1,451,459,488,-1,459,451,458,-1,75,6,474,-1,4,6,75,-1,489,77,76,-1,491,77,489,-1,395,488,490,-1,451,488,395,-1,73,30,74,-1,73,64,30,-1,484,422,481,-1,484,420,422,-1,68,71,67,-1,68,69,71,-1,450,59,475,-1,450,60,59,-1,18,111,109,-1,18,63,111,-1,478,484,486,-1,420,484,478,-1,494,482,487,-1,494,481,482,-1,110,65,64,-1,479,65,110,-1,63,480,111,-1,62,480,63,-1,476,421,477,-1,475,421,476,-1,419,58,350,-1,419,59,58,-1,454,453,39,-1,469,453,454,-1,474,221,279,-1,221,474,6,-1,36,44,48,-1,36,35,44,-1,277,54,470,-1,277,55,54,-1,472,623,619,-1,471,623,472,-1,44,46,48,-1,44,43,46,-1,454,32,31,-1,38,32,454,-1,448,29,456,-1,447,29,448,-1,35,0,24,-1,37,0,35,-1,34,47,470,-1,34,36,47,-1,454,278,469,-1,454,31,278,-1,74,452,468,-1,452,74,30,-1,279,55,277,-1,221,55,279,-1,22,78,80,-1,21,78,22,-1,292,361,360,-1,294,361,292,-1,269,384,267,-1,269,281,384,-1,117,102,107,-1,117,428,102,-1,15,340,50,-1,15,14,340,-1,7,458,8,-1,7,79,458,-1,5,77,10,-1,4,77,5,-1,436,345,437,-1,345,436,439,-1,467,464,205,-1,467,344,464,-1,98,423,97,-1,98,460,423,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlrrib_Geo_5_817_normalIndex_1()
		{
			int[] value = {116,270,246,-1,270,333,246,-1,165,119,99,-1,235,283,351,-1,183,259,166,-1,601,620,609,-1,601,616,620,-1,441,392,370,-1,194,216,204,-1,157,112,246,-1,157,105,112,-1,237,184,246,-1,246,333,237,-1,429,398,325,-1,134,272,303,-1,101,77,82,-1,101,117,77,-1,231,104,378,-1,92,83,86,-1,86,97,92,-1,68,69,86,-1,94,82,80,-1,68,83,95,-1,613,617,615,-1,148,125,108,-1,85,94,80,-1,97,112,105,-1,237,333,251,-1,503,499,417,-1,403,418,447,-1,429,325,342,-1,342,458,429,-1,417,513,503,-1,417,534,513,-1,417,464,534,-1,497,566,560,-1,566,604,560,-1,198,172,157,-1,157,184,198,-1,165,197,350,-1,350,263,165,-1,205,227,229,-1,205,211,227,-1,148,166,175,-1,148,119,166,-1,69,68,57,-1,67,115,96,-1,486,496,485,-1,486,483,496,-1,143,154,34,-1,154,54,34,-1,42,32,132,-1,32,164,132,-1,71,100,273,-1,100,332,273,-1,334,376,369,-1,102,332,100,-1,102,257,332,-1,289,346,426,-1,346,449,426,-1,166,205,175,-1,166,211,205,-1,383,507,366,-1,460,478,471,-1,293,287,250,-1,427,433,304,-1,149,160,141,-1,621,436,367,-1,367,598,621,-1,616,623,624,-1,616,579,623,-1,604,600,560,-1,121,139,106,-1,121,153,139,-1,595,245,501,-1,595,306,245,-1,595,623,622,-1,622,541,595,-1,618,541,622,-1,618,493,541,-1,84,49,0,-1,84,45,49,-1,578,577,543,-1,578,585,577,-1,191,224,266,-1,191,180,224,-1,62,78,48,-1,78,51,48,-1,53,16,41,-1,41,81,53,-1,64,70,35,-1,70,60,35,-1,357,340,39,-1,340,44,39,-1,38,48,46,-1,38,62,48,-1,4,46,43,-1,14,43,123,-1,531,540,527,-1,393,383,291,-1,354,529,357,-1,354,554,529,-1,49,73,0,-1,35,60,124,-1,60,118,124,-1,0,73,90,-1,39,44,36,-1,44,19,36,-1,17,19,28,-1,53,147,64,-1,53,146,147,-1,64,188,70,-1,64,147,188,-1,546,528,532,-1,532,549,546,-1,403,430,404,-1,403,441,430,-1,71,52,149,-1,52,161,149,-1,14,128,22,-1,14,123,128,-1,1,8,84,-1,8,118,84,-1,208,179,315,-1,435,276,241,-1,490,481,509,-1,148,108,91,-1,155,88,185,-1,185,285,155,-1,339,322,343,-1,326,327,337,-1,337,321,326,-1,232,315,179,-1,232,328,315,-1,223,162,248,-1,162,218,248,-1,213,190,179,-1,190,232,179,-1,494,380,331,-1,509,481,409,-1,481,397,409,-1,232,202,268,-1,232,190,202,-1,252,278,331,-1,324,454,243,-1,324,181,454,-1,181,461,454,-1,29,72,74,-1,98,31,79,-1,79,158,98,-1,37,61,2,-1,61,30,2,-1,2,27,31,-1,329,33,61,-1,61,385,329,-1,265,181,10,-1,181,11,10,-1,25,27,6,-1,7,6,27,-1,76,68,95,-1,103,93,89,-1,385,571,548,-1,438,410,406,-1,438,431,410,-1,437,479,428,-1,428,408,437,-1,331,411,474,-1,489,468,439,-1,468,370,439,-1,409,316,380,-1,409,328,316,-1,290,336,372,-1,372,334,290,-1,405,415,355,-1,405,451,415,-1,470,480,492,-1,470,450,480,-1,213,230,302,-1,423,351,283,-1,280,320,219,-1,223,208,307,-1,208,321,307,-1,230,248,323,-1,474,494,331,-1,371,418,403,-1,591,585,578,-1,566,589,604,-1,224,244,266,-1,207,206,193,-1,200,194,204,-1,200,163,194,-1,315,397,320,-1,268,331,316,-1,457,475,448,-1,475,500,448,-1,79,27,87,-1,30,27,2,-1,27,25,26,-1,131,162,145,-1,162,225,145,-1,27,12,55,-1,402,435,241,-1,27,15,7,-1,457,448,377,-1,448,356,377,-1,31,27,79,-1,162,223,225,-1,223,307,225,-1,316,331,380,-1,614,613,619,-1,614,617,613,-1,618,569,599,-1,618,573,569,-1,375,260,203,-1,450,376,394,-1,450,470,376,-1,596,602,561,-1,331,202,252,-1,1,36,8,-1,1,40,36,-1,282,335,262,-1,282,341,335,-1,611,614,607,-1,611,617,614,-1,323,218,374,-1,323,248,218,-1,333,270,416,-1,328,232,268,-1,268,316,328,-1,442,459,466,-1,278,411,331,-1,359,387,386,-1,386,308,359,-1,453,472,477,-1,472,491,477,-1,425,424,300,-1,424,336,300,-1,87,27,55,-1,309,322,312,-1,322,347,312,-1,12,27,26,-1,30,15,27,-1,461,473,454,-1,473,402,454,-1,33,329,265,-1,265,10,33,-1,37,98,368,-1,98,361,368,-1,56,66,21,-1,61,33,30,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlrrib_Geo_5_817_normalIndex_2()
		{
			int[] value = {33,15,30,-1,98,37,2,-1,2,31,98,-1,88,155,55,-1,548,537,553,-1,374,218,276,-1,276,435,374,-1,402,338,435,-1,402,362,338,-1,399,308,386,-1,399,292,308,-1,292,278,252,-1,252,254,292,-1,299,308,302,-1,299,317,308,-1,387,442,386,-1,442,466,386,-1,270,116,117,-1,117,219,270,-1,208,213,179,-1,208,230,213,-1,320,397,419,-1,397,481,419,-1,380,494,509,-1,509,409,380,-1,331,268,202,-1,248,230,223,-1,230,208,223,-1,315,409,397,-1,593,588,522,-1,588,423,522,-1,338,374,435,-1,13,26,21,-1,74,12,29,-1,288,476,222,-1,288,530,476,-1,47,1,0,-1,196,152,187,-1,187,286,196,-1,526,528,546,-1,17,118,8,-1,17,124,118,-1,60,84,118,-1,60,45,84,-1,84,0,1,-1,291,319,186,-1,291,383,319,-1,507,543,545,-1,543,577,545,-1,478,530,508,-1,478,476,530,-1,1,47,40,-1,146,81,244,-1,146,53,81,-1,43,46,123,-1,46,48,123,-1,23,43,14,-1,222,46,4,-1,222,159,46,-1,340,330,44,-1,330,9,44,-1,50,354,357,-1,357,39,50,-1,319,366,90,-1,90,73,319,-1,70,45,60,-1,70,129,45,-1,366,319,383,-1,621,624,436,-1,624,501,436,-1,618,599,493,-1,599,422,493,-1,594,422,599,-1,594,427,422,-1,539,558,512,-1,539,592,558,-1,615,604,613,-1,615,600,604,-1,488,484,465,-1,535,526,551,-1,535,484,526,-1,482,514,495,-1,463,566,497,-1,497,414,463,-1,379,464,417,-1,379,388,464,-1,176,169,300,-1,169,296,300,-1,346,289,237,-1,237,251,346,-1,409,315,328,-1,152,314,257,-1,257,102,152,-1,492,486,485,-1,96,115,130,-1,130,174,96,-1,290,334,369,-1,369,298,290,-1,470,492,443,-1,492,485,443,-1,257,314,471,-1,314,460,471,-1,590,588,614,-1,588,607,614,-1,117,101,177,-1,177,219,117,-1,303,444,350,-1,350,197,303,-1,617,612,615,-1,617,611,612,-1,365,391,138,-1,392,346,251,-1,403,395,371,-1,112,116,246,-1,423,421,522,-1,138,281,365,-1,86,83,68,-1,97,77,112,-1,57,68,76,-1,59,57,76,-1,76,104,59,-1,92,95,83,-1,92,138,95,-1,111,104,231,-1,303,272,467,-1,519,398,429,-1,184,157,246,-1,392,333,370,-1,392,251,333,-1,235,229,227,-1,583,616,601,-1,583,579,616,-1,311,211,301,-1,311,227,211,-1,468,441,370,-1,166,119,183,-1,622,623,579,-1,465,132,488,-1,132,465,143,-1,498,217,506,-1,217,498,164,-1,375,373,384,-1,375,203,373,-1,130,201,174,-1,130,169,201,-1,259,211,166,-1,301,211,259,-1,273,482,495,-1,332,482,273,-1,305,152,196,-1,305,314,152,-1,300,390,425,-1,390,300,296,-1,296,375,390,-1,296,260,375,-1,133,157,172,-1,133,105,157,-1,378,519,467,-1,519,378,391,-1,103,75,93,-1,85,75,103,-1,365,325,398,-1,365,281,325,-1,231,467,272,-1,231,378,467,-1,110,85,103,-1,110,94,85,-1,76,138,104,-1,138,76,95,-1,69,59,80,-1,59,69,57,-1,201,234,220,-1,215,234,201,-1,89,134,120,-1,89,93,134,-1,592,561,602,-1,592,539,561,-1,371,445,412,-1,395,445,371,-1,462,558,515,-1,512,558,462,-1,449,440,426,-1,432,440,449,-1,391,104,138,-1,391,378,104,-1,605,602,610,-1,605,592,602,-1,517,584,587,-1,584,517,536,-1,608,612,611,-1,608,610,612,-1,418,412,432,-1,418,371,412,-1,536,458,515,-1,429,458,536,-1,401,434,504,-1,401,360,434,-1,504,593,522,-1,593,504,586,-1,608,597,603,-1,597,608,606,-1,175,233,148,-1,233,175,236,-1,467,517,505,-1,467,519,517,-1,168,101,110,-1,177,101,168,-1,607,593,606,-1,607,588,593,-1,444,582,547,-1,582,444,505,-1,590,619,598,-1,590,614,619,-1,495,217,273,-1,217,495,506,-1,376,443,369,-1,376,470,443,-1,176,298,215,-1,176,290,298,-1,156,67,58,-1,67,156,189,-1,62,196,286,-1,196,62,38,-1,513,561,503,-1,513,596,561,-1,513,534,596,-1,459,416,455,-1,459,439,416,-1,274,168,269,-1,168,274,177,-1,445,539,512,-1,445,499,539,-1,440,515,458,-1,515,440,462,-1,259,401,301,-1,360,401,259,-1,533,544,552,-1,544,533,525,-1,549,557,555,-1,557,549,538,-1,546,551,526,-1,556,551,546,-1,514,518,524,-1,518,514,511,-1,180,150,173,-1,191,150,180,-1,199,149,193,-1,199,160,149,-1,240,258,253,-1,261,258,240,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlrrib_Geo_5_817_normalIndex_3()
		{
			int[] value = {136,191,187,-1,150,191,136,-1,464,414,497,-1,388,414,464,-1,566,502,589,-1,463,502,566,-1,569,594,599,-1,574,594,569,-1,591,574,581,-1,594,574,591,-1,557,570,568,-1,557,552,570,-1,511,482,471,-1,514,482,511,-1,538,532,524,-1,538,549,532,-1,559,574,569,-1,568,574,559,-1,551,572,535,-1,572,551,562,-1,484,498,526,-1,484,488,498,-1,516,484,535,-1,484,516,465,-1,572,601,580,-1,572,583,601,-1,189,407,396,-1,189,156,407,-1,534,600,596,-1,600,534,560,-1,403,417,395,-1,403,379,417,-1,587,605,603,-1,584,605,587,-1,214,351,367,-1,195,351,214,-1,135,171,210,-1,135,114,171,-1,32,135,151,-1,42,135,32,-1,209,306,294,-1,210,306,209,-1,287,427,261,-1,427,287,422,-1,193,239,199,-1,206,239,193,-1,141,102,100,-1,141,136,102,-1,253,239,240,-1,239,253,238,-1,591,427,594,-1,427,591,433,-1,433,578,389,-1,578,433,591,-1,383,543,507,-1,383,393,543,-1,530,295,531,-1,295,530,288,-1,222,456,159,-1,222,476,456,-1,344,90,366,-1,344,65,90,-1,186,249,291,-1,129,249,186,-1,554,344,545,-1,354,344,554,-1,563,567,575,-1,563,564,567,-1,525,542,544,-1,525,527,542,-1,264,226,256,-1,226,264,228,-1,279,255,271,-1,255,279,277,-1,73,186,319,-1,73,49,186,-1,354,65,344,-1,354,50,65,-1,330,3,9,-1,330,295,3,-1,288,4,5,-1,288,222,4,-1,24,9,3,-1,24,20,9,-1,18,128,137,-1,22,128,18,-1,286,191,266,-1,191,286,187,-1,146,224,228,-1,146,244,224,-1,478,456,476,-1,460,456,478,-1,81,266,244,-1,81,78,266,-1,28,137,127,-1,28,18,137,-1,20,44,9,-1,19,44,20,-1,17,36,19,-1,8,36,17,-1,187,102,136,-1,152,102,187,-1,47,50,40,-1,50,47,65,-1,51,123,48,-1,123,51,128,-1,575,570,563,-1,575,581,570,-1,576,565,573,-1,565,576,562,-1,527,520,542,-1,540,520,527,-1,502,465,516,-1,502,452,465,-1,384,388,379,-1,388,384,373,-1,245,436,501,-1,212,436,245,-1,293,422,287,-1,293,493,422,-1,249,277,279,-1,249,188,277,-1,34,107,114,-1,34,54,107,-1,520,357,529,-1,357,520,340,-1,122,196,38,-1,122,305,196,-1,26,29,12,-1,26,13,29,-1,21,25,56,-1,26,25,21,-1,63,21,66,-1,21,63,13,-1,441,469,430,-1,469,441,468,-1,313,178,221,-1,313,275,178,-1,343,309,353,-1,343,322,309,-1,345,348,284,-1,358,348,345,-1,63,126,72,-1,63,113,126,-1,167,225,267,-1,145,225,167,-1,274,219,177,-1,274,280,219,-1,327,347,337,-1,312,347,327,-1,267,307,352,-1,267,225,307,-1,126,192,142,-1,192,126,167,-1,131,241,276,-1,241,131,109,-1,219,419,270,-1,419,219,320,-1,243,109,66,-1,243,241,109,-1,138,133,281,-1,133,138,92,-1,299,362,317,-1,362,299,338,-1,308,254,302,-1,308,292,254,-1,230,299,302,-1,299,230,323,-1,483,548,571,-1,483,491,548,-1,451,537,472,-1,451,521,537,-1,362,473,405,-1,362,402,473,-1,523,329,553,-1,265,329,523,-1,361,550,368,-1,361,500,550,-1,297,448,349,-1,297,356,448,-1,185,192,284,-1,185,142,192,-1,87,155,170,-1,155,87,55,-1,7,33,10,-1,33,7,15,-1,25,11,56,-1,11,25,6,-1,74,185,88,-1,74,142,185,-1,158,297,349,-1,297,158,170,-1,361,158,349,-1,98,158,361,-1,324,66,56,-1,243,66,324,-1,447,441,403,-1,447,392,441,-1,275,312,269,-1,275,309,312,-1,347,339,363,-1,322,339,347,-1,284,318,345,-1,318,284,192,-1,377,348,358,-1,348,377,356,-1,382,353,381,-1,343,353,382,-1,221,335,313,-1,221,262,335,-1,67,140,121,-1,67,96,140,-1,220,174,201,-1,220,182,174,-1,369,310,298,-1,369,364,310,-1,485,420,443,-1,485,446,420,-1,496,500,475,-1,496,550,500,-1,336,437,372,-1,424,437,336,-1,408,450,394,-1,408,431,450,-1,477,438,453,-1,438,477,480,-1,415,472,453,-1,472,415,451,-1,424,430,469,-1,424,425,430,-1,355,308,317,-1,355,359,308,-1,399,278,292,-1,399,411,278,-1,487,386,466,-1,487,399,386,-1,254,202,190,-1,254,252,202,-1,455,466,459,-1,455,490,466,-1,428,489,442,-1,489,428,479,-1,121,163,153,-1,121,140,163,-1,216,242,236,-1,216,194,242,-1,364,282,310,-1,282,364,341,-1,446,400,420,-1,400,446,413,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlrrib_Geo_5_817_normalIndex_4()
		{
			int[] value = {455,270,419,-1,270,455,416,-1,404,425,390,-1,425,404,430,-1,410,442,387,-1,428,442,410,-1,486,480,477,-1,486,492,480,-1,300,290,176,-1,290,300,336,-1,203,396,373,-1,189,396,203,-1,552,563,570,-1,563,552,544,-1,556,562,551,-1,565,562,556,-1,616,621,620,-1,621,616,624,-1,579,576,622,-1,579,583,576,-1,542,529,564,-1,520,529,542,-1,52,273,217,-1,71,273,52,-1,452,143,465,-1,154,143,452,-1,144,214,212,-1,144,139,214,-1,293,209,294,-1,207,209,293,-1,256,238,253,-1,226,238,256,-1,114,144,171,-1,144,114,107,-1,140,194,163,-1,194,140,182,-1,341,420,400,-1,420,341,364,-1,377,413,457,-1,413,377,382,-1,205,236,175,-1,216,236,205,-1,606,611,607,-1,606,608,611,-1,519,536,517,-1,519,429,536,-1,59,85,80,-1,59,75,85,-1,280,315,320,-1,280,326,315,-1,473,523,521,-1,473,461,523,-1,241,454,402,-1,241,243,454,-1,368,571,385,-1,368,550,571,-1,178,110,125,-1,178,168,110,-1,586,434,547,-1,586,504,434,-1,610,596,612,-1,602,596,610,-1,229,200,204,-1,200,229,235,-1,233,282,262,-1,247,282,233,-1,400,335,341,-1,400,381,335,-1,457,446,475,-1,457,413,446,-1,247,310,282,-1,247,234,310,-1,107,139,144,-1,107,106,139,-1,161,209,207,-1,161,151,209,-1,226,173,238,-1,226,180,173,-1,188,264,277,-1,188,147,264,-1,250,207,293,-1,206,207,250,-1,171,212,245,-1,144,212,171,-1,407,154,452,-1,154,407,156,-1,526,506,528,-1,506,526,498,-1,471,508,511,-1,478,508,471,-1,567,545,577,-1,567,554,545,-1,613,589,609,-1,589,613,604,-1,589,516,580,-1,589,502,516,-1,555,565,556,-1,565,555,559,-1,115,189,203,-1,189,115,67,-1,355,406,359,-1,406,355,415,-1,468,479,469,-1,468,489,479,-1,237,198,184,-1,198,237,289,-1,487,490,509,-1,490,487,466,-1,413,381,400,-1,413,382,381,-1,315,321,208,-1,315,326,321,-1,182,242,194,-1,182,220,242,-1,120,303,197,-1,120,134,303,-1,153,200,195,-1,153,163,200,-1,359,410,387,-1,359,406,410,-1,477,483,486,-1,483,477,491,-1,376,372,394,-1,376,334,372,-1,190,302,254,-1,213,302,190,-1,509,474,487,-1,509,494,474,-1,474,399,487,-1,411,399,474,-1,317,405,355,-1,362,405,317,-1,469,437,424,-1,469,479,437,-1,428,431,408,-1,431,428,410,-1,453,406,415,-1,453,438,406,-1,553,521,523,-1,553,537,521,-1,450,438,480,-1,431,438,450,-1,394,437,408,-1,437,394,372,-1,475,485,496,-1,485,475,446,-1,364,443,420,-1,369,443,364,-1,234,298,310,-1,215,298,234,-1,96,182,140,-1,96,174,182,-1,262,148,233,-1,221,148,262,-1,381,313,335,-1,353,313,381,-1,358,382,377,-1,358,343,382,-1,345,363,339,-1,345,318,363,-1,275,168,178,-1,275,269,168,-1,505,587,582,-1,587,505,517,-1,342,289,426,-1,342,198,289,-1,56,181,324,-1,56,11,181,-1,385,37,368,-1,385,61,37,-1,285,170,155,-1,285,297,170,-1,66,113,63,-1,66,109,113,-1,6,10,11,-1,10,6,7,-1,79,170,158,-1,170,79,87,-1,145,109,131,-1,109,145,113,-1,356,285,348,-1,297,285,356,-1,349,500,361,-1,349,448,500,-1,181,523,461,-1,181,265,523,-1,405,521,451,-1,405,473,521,-1,491,537,548,-1,491,472,537,-1,323,338,299,-1,338,323,374,-1,105,92,97,-1,133,92,105,-1,162,276,218,-1,162,131,276,-1,72,142,74,-1,142,72,126,-1,192,267,318,-1,192,167,267,-1,363,337,347,-1,363,352,337,-1,269,327,274,-1,269,312,327,-1,274,326,280,-1,326,274,327,-1,318,352,363,-1,318,267,352,-1,167,113,145,-1,113,167,126,-1,352,321,337,-1,307,321,352,-1,284,285,185,-1,284,348,285,-1,358,339,343,-1,358,345,339,-1,275,353,309,-1,313,353,275,-1,221,125,148,-1,221,178,125,-1,99,148,91,-1,99,119,148,-1,419,490,455,-1,419,481,490,-1,88,12,74,-1,12,88,55,-1,72,13,63,-1,72,29,13,-1,24,14,22,-1,24,23,14,-1,188,129,70,-1,188,249,129,-1,54,106,107,-1,54,58,106,-1,151,52,32,-1,161,52,151,-1,271,258,304,-1,271,255,258,-1,493,294,541,-1,493,293,294,-1,212,367,436,-1,367,212,214,-1,404,379,403,-1,379,404,384,-1,463,452,502,-1,452,463,407,-1,518,525,533,-1,518,510,525,-1,609,580,601,-1,609,589,580,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlrrib_Geo_5_817_normalIndex_5()
		{
			int[] value = {559,573,565,-1,569,573,559,-1,564,554,567,-1,529,554,564,-1,17,127,124,-1,28,127,17,-1,3,23,24,-1,3,5,23,-1,39,40,50,-1,39,36,40,-1,124,16,35,-1,16,124,127,-1,147,228,264,-1,147,146,228,-1,340,540,330,-1,340,520,540,-1,19,18,28,-1,19,20,18,-1,16,137,41,-1,16,127,137,-1,330,531,295,-1,531,330,540,-1,159,305,122,-1,305,159,456,-1,286,78,62,-1,266,78,286,-1,41,128,51,-1,128,41,137,-1,20,22,18,-1,24,22,20,-1,43,5,4,-1,23,5,43,-1,5,295,288,-1,295,5,3,-1,53,35,16,-1,53,64,35,-1,41,78,81,-1,78,41,51,-1,271,393,279,-1,271,389,393,-1,256,277,264,-1,256,255,277,-1,228,180,226,-1,180,228,224,-1,510,527,525,-1,510,531,527,-1,544,564,563,-1,544,542,564,-1,577,575,567,-1,585,575,577,-1,159,38,46,-1,159,122,38,-1,129,49,45,-1,129,186,49,-1,65,0,90,-1,65,47,0,-1,366,545,344,-1,545,366,507,-1,508,531,510,-1,531,508,530,-1,590,423,588,-1,351,423,590,-1,543,389,578,-1,393,389,543,-1,304,261,427,-1,261,304,258,-1,199,238,173,-1,239,238,199,-1,100,149,141,-1,100,71,149,-1,240,206,250,-1,239,206,240,-1,294,595,541,-1,306,595,294,-1,151,210,209,-1,135,210,151,-1,42,114,135,-1,42,34,114,-1,210,245,306,-1,210,171,245,-1,501,623,595,-1,623,501,624,-1,139,195,214,-1,153,195,139,-1,58,121,106,-1,67,121,58,-1,600,612,596,-1,600,615,612,-1,373,414,388,-1,396,414,373,-1,396,463,414,-1,396,407,463,-1,580,535,572,-1,535,580,516,-1,562,583,572,-1,583,562,576,-1,555,568,559,-1,557,568,555,-1,533,524,518,-1,524,533,538,-1,568,581,574,-1,568,570,581,-1,291,279,393,-1,249,279,291,-1,573,622,576,-1,573,618,622,-1,351,598,367,-1,351,590,598,-1,598,620,621,-1,620,598,619,-1,141,150,136,-1,160,150,141,-1,389,304,433,-1,389,271,304,-1,255,253,258,-1,255,256,253,-1,250,261,240,-1,287,261,250,-1,193,161,207,-1,193,149,161,-1,173,160,199,-1,173,150,160,-1,456,314,305,-1,314,456,460,-1,495,524,532,-1,524,495,514,-1,511,510,518,-1,510,511,508,-1,549,556,546,-1,555,556,549,-1,538,552,557,-1,552,538,533,-1,581,585,591,-1,581,575,585,-1,603,582,587,-1,603,597,582,-1,423,311,421,-1,423,283,311,-1,195,235,351,-1,195,200,235,-1,432,462,440,-1,432,412,462,-1,333,439,370,-1,439,333,416,-1,130,203,260,-1,130,115,203,-1,215,169,176,-1,215,201,169,-1,217,32,52,-1,217,164,32,-1,34,132,143,-1,34,42,132,-1,154,58,54,-1,154,156,58,-1,571,496,483,-1,550,496,571,-1,506,532,528,-1,532,506,495,-1,303,505,444,-1,505,303,467,-1,597,547,582,-1,586,547,597,-1,547,350,444,-1,547,434,350,-1,259,263,360,-1,183,263,259,-1,247,236,242,-1,247,233,236,-1,586,606,593,-1,586,597,606,-1,421,301,401,-1,301,421,311,-1,197,99,120,-1,165,99,197,-1,434,263,350,-1,360,263,434,-1,522,401,504,-1,421,401,522,-1,198,325,172,-1,198,342,325,-1,584,592,605,-1,584,558,592,-1,464,560,534,-1,464,497,560,-1,395,499,445,-1,395,417,499,-1,392,449,346,-1,392,447,449,-1,515,584,536,-1,558,584,515,-1,603,610,608,-1,603,605,610,-1,426,458,342,-1,440,458,426,-1,447,432,449,-1,418,432,447,-1,412,512,462,-1,445,512,412,-1,539,503,561,-1,539,499,503,-1,111,59,104,-1,75,59,111,-1,120,91,89,-1,91,120,99,-1,82,97,80,-1,82,77,97,-1,103,125,110,-1,103,108,125,-1,220,247,242,-1,234,247,220,-1,97,69,80,-1,97,86,69,-1,111,272,134,-1,231,272,111,-1,391,398,519,-1,365,398,391,-1,77,116,112,-1,117,116,77,-1,101,94,110,-1,101,82,94,-1,111,93,75,-1,111,134,93,-1,172,281,133,-1,281,172,325,-1,89,108,103,-1,91,108,89,-1,204,205,229,-1,216,205,204,-1,489,459,442,-1,439,459,489,-1,385,553,329,-1,385,548,553,-1,471,332,257,-1,471,482,332,-1,609,619,613,-1,609,620,619,-1,235,311,283,-1,235,227,311,-1,119,263,183,-1,165,263,119,-1,169,260,296,-1,260,169,130,-1,390,384,404,-1,390,375,384,-1,164,488,132,-1,164,498,488,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlscapula_Geo_5_823_coordIndex_2()
		{
			int[] value = {465,464,466,-1,467,468,469,-1,469,470,467,-1,471,469,472,-1,471,473,469,-1,451,474,475,-1,475,419,451,-1,476,477,478,-1,478,479,476,-1,480,481,474,-1,481,475,474,-1,482,483,484,-1,483,485,484,-1,486,487,320,-1,486,488,487,-1,380,489,476,-1,476,378,380,-1,490,392,394,-1,159,135,491,-1,135,388,491,-1,492,493,494,-1,494,495,492,-1,496,494,497,-1,496,495,494,-1,351,353,498,-1,499,305,25,-1,25,500,499,-1,501,502,503,-1,501,499,502,-1,397,377,504,-1,505,402,401,-1,398,505,506,-1,507,508,509,-1,509,510,507,-1,432,511,512,-1,513,512,514,-1,318,515,516,-1,517,438,515,-1,517,518,438,-1,315,519,316,-1,520,521,522,-1,520,314,521,-1,523,524,525,-1,526,168,527,-1,526,528,168,-1,529,530,128,-1,529,531,530,-1,169,44,406,-1,44,43,406,-1,40,42,405,-1,40,405,532,-1,532,533,40,-1,534,535,536,-1,537,533,538,-1,537,536,533,-1,539,540,541,-1,540,542,541,-1,341,543,339,-1,323,322,544,-1,545,546,323,-1,546,547,323,-1,548,549,538,-1,549,537,538,-1,550,551,552,-1,550,553,551,-1,554,555,556,-1,554,557,555,-1,558,559,560,-1,558,561,559,-1,562,520,522,-1,562,563,520,-1,564,545,549,-1,564,546,545,-1,562,565,566,-1,567,565,568,-1,568,569,567,-1,570,571,572,-1,326,360,359,-1,359,327,326,-1,327,334,328,-1,327,573,334,-1,574,575,335,-1,324,325,576,-1,577,578,579,-1,580,581,582,-1,580,361,581,-1,583,370,584,-1,370,585,584,-1,117,586,587,-1,587,145,117,-1,321,588,589,-1,590,591,592,-1,592,593,590,-1,418,594,416,-1,418,595,594,-1,596,593,592,-1,592,597,596,-1,420,417,389,-1,389,390,420,-1,598,586,599,-1,600,601,10,-1,10,13,600,-1,6,12,7,-1,6,602,12,-1,603,604,218,-1,223,605,606,-1,223,604,605,-1,607,112,608,-1,608,609,607,-1,610,611,612,-1,610,613,611,-1,614,615,616,-1,614,617,615,-1,618,619,620,-1,618,621,619,-1,622,623,624,-1,624,625,622,-1,626,624,623,-1,626,627,624,-1,628,629,630,-1,630,631,628,-1,632,633,634,-1,632,635,633,-1,628,636,637,-1,637,638,628,-1,639,626,629,-1,640,641,642,-1,640,643,641,-1,644,645,643,-1,643,646,644,-1,200,646,201,-1,200,647,646,-1,237,66,236,-1,237,87,66,-1,181,648,649,-1,181,650,648,-1,208,651,652,-1,208,653,651,-1,63,654,237,-1,237,64,63,-1,654,97,655,-1,654,63,97,-1,656,657,658,-1,658,659,656,-1,660,77,651,-1,661,662,663,-1,664,655,97,-1,665,666,667,-1,668,669,670,-1,670,671,668,-1,671,672,673,-1,673,674,671,-1,675,676,677,-1,678,440,679,-1,678,680,440,-1,174,435,681,-1,174,239,435,-1,682,214,683,-1,682,212,214,-1,684,685,686,-1,686,110,684,-1,113,687,688,-1,113,115,687,-1,114,116,689,-1,689,690,114,-1,691,257,692,-1,691,247,257,-1,272,260,259,-1,272,693,260,-1,271,694,695,-1,271,273,694,-1,696,697,698,-1,696,699,697,-1,700,697,701,-1,701,702,700,-1,703,704,700,-1,700,705,703,-1,703,706,707,-1,707,708,703,-1,625,709,622,-1,625,710,709,-1,711,710,625,-1,711,712,710,-1,644,711,645,-1,644,713,711,-1,224,221,714,-1,221,715,714,-1,224,714,716,-1,716,717,224,-1,718,689,219,-1,219,719,718,-1,720,721,722,-1,722,448,720,-1,723,724,725,-1,725,449,723,-1,452,725,724,-1,721,726,727,-1,383,728,454,-1,728,729,454,-1,730,731,732,-1,730,733,731,-1,734,729,735,-1,734,454,729,-1,22,736,737,-1,17,16,447,-1,447,446,17,-1,738,739,740,-1,741,737,740,-1,694,742,743,-1,694,744,742,-1,745,746,747,-1,746,748,747,-1,292,749,750,-1,750,290,292,-1,751,752,753,-1,751,754,752,-1,755,753,752,-1,755,756,753,-1,754,757,758,-1,758,752,754,-1,759,760,761,-1,762,461,465,-1,762,462,461,-1,762,763,462,-1,764,765,766,-1,767,768,769,-1,769,770,767,-1,771,462,772,-1,773,764,766,-1,773,774,764,-1,773,74,775,-1,776,773,775,-1,776,774,773,-1,777,74,76,-1,776,778,779,-1,776,775,778,-1,250,780,781,-1,782,778,777,-1,777,783,782,-1,8,279,249,-1,279,252,249,-1,242,241,276,-1,276,784,242,-1,100,785,98,-1,100,253,785,-1,786,787,788,-1,788,789,786,-1,790,48,791,-1,790,46,48,-1,442,46,790,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlscapula_Geo_5_823_coordIndex_3()
		{
			int[] value = {792,793,192,-1,792,794,793,-1,795,796,797,-1,795,761,796,-1,798,799,797,-1,797,800,798,-1,786,644,787,-1,786,713,644,-1,789,98,785,-1,785,786,789,-1,99,101,801,-1,801,802,99,-1,802,749,803,-1,802,750,749,-1,804,240,805,-1,805,806,804,-1,276,807,784,-1,276,808,807,-1,809,810,811,-1,809,812,810,-1,813,692,814,-1,813,691,692,-1,815,777,76,-1,815,783,777,-1,775,74,777,-1,777,778,775,-1,74,816,75,-1,817,774,776,-1,817,818,774,-1,819,820,781,-1,781,821,819,-1,462,771,822,-1,771,821,822,-1,74,773,766,-1,766,816,74,-1,818,768,764,-1,764,774,818,-1,769,823,771,-1,772,769,771,-1,772,770,769,-1,763,772,462,-1,264,744,824,-1,824,267,264,-1,758,796,752,-1,796,755,752,-1,760,756,755,-1,825,826,827,-1,828,827,829,-1,286,830,284,-1,286,275,830,-1,828,829,716,-1,829,717,716,-1,286,285,831,-1,831,832,286,-1,743,695,694,-1,743,833,695,-1,280,834,742,-1,742,283,280,-1,835,740,836,-1,835,741,740,-1,741,20,22,-1,22,737,741,-1,739,836,740,-1,739,837,836,-1,739,838,839,-1,739,840,838,-1,840,738,16,-1,16,18,840,-1,841,842,839,-1,839,843,841,-1,844,732,731,-1,844,841,732,-1,843,845,846,-1,155,726,847,-1,155,727,726,-1,449,725,450,-1,720,718,721,-1,718,848,721,-1,719,222,718,-1,222,848,718,-1,849,850,714,-1,714,715,849,-1,645,625,624,-1,645,711,625,-1,709,707,706,-1,709,710,707,-1,700,702,851,-1,851,705,700,-1,697,700,704,-1,852,853,854,-1,854,855,852,-1,696,698,854,-1,854,856,696,-1,701,715,702,-1,715,221,702,-1,272,271,699,-1,699,696,272,-1,857,695,849,-1,824,744,694,-1,694,273,824,-1,257,858,692,-1,257,260,858,-1,685,113,688,-1,685,684,113,-1,115,859,687,-1,115,120,859,-1,111,686,412,-1,111,110,686,-1,860,688,687,-1,686,861,410,-1,410,412,686,-1,682,414,212,-1,862,673,863,-1,864,681,678,-1,678,865,864,-1,668,674,676,-1,668,671,674,-1,863,673,672,-1,672,866,863,-1,431,663,662,-1,431,867,663,-1,868,865,190,-1,869,666,660,-1,655,664,870,-1,78,660,871,-1,78,77,660,-1,870,872,655,-1,872,654,655,-1,232,61,60,-1,232,231,61,-1,237,872,87,-1,237,654,872,-1,659,873,182,-1,637,650,638,-1,637,648,650,-1,646,647,644,-1,627,642,641,-1,627,874,642,-1,641,643,645,-1,645,624,641,-1,617,709,615,-1,617,622,709,-1,875,876,615,-1,615,877,875,-1,615,876,616,-1,878,879,880,-1,878,881,879,-1,881,878,882,-1,882,883,881,-1,883,606,605,-1,883,882,606,-1,607,884,885,-1,607,609,884,-1,886,887,603,-1,606,702,223,-1,702,221,223,-1,607,109,112,-1,607,218,109,-1,607,886,218,-1,886,603,218,-1,7,12,601,-1,12,10,601,-1,598,599,420,-1,888,593,596,-1,888,594,593,-1,55,599,586,-1,55,56,599,-1,148,889,890,-1,148,589,889,-1,891,588,321,-1,891,371,588,-1,367,301,892,-1,300,893,894,-1,145,587,578,-1,587,579,578,-1,577,895,896,-1,577,897,895,-1,898,899,900,-1,898,901,899,-1,359,573,327,-1,359,902,573,-1,358,903,359,-1,904,571,905,-1,572,900,906,-1,572,898,900,-1,907,908,570,-1,908,909,570,-1,566,330,563,-1,563,562,566,-1,553,910,548,-1,167,554,556,-1,167,166,554,-1,550,552,555,-1,555,557,550,-1,549,911,537,-1,549,545,911,-1,325,323,547,-1,366,912,543,-1,343,913,344,-1,914,510,539,-1,915,543,341,-1,343,914,916,-1,917,918,916,-1,918,919,916,-1,920,918,911,-1,918,921,911,-1,347,922,348,-1,347,534,922,-1,923,535,924,-1,923,40,535,-1,405,42,406,-1,925,534,347,-1,336,926,924,-1,924,925,336,-1,338,45,927,-1,338,130,45,-1,170,926,927,-1,927,44,170,-1,928,128,530,-1,928,126,128,-1,929,930,931,-1,930,932,931,-1,930,933,934,-1,935,936,937,-1,937,156,935,-1,938,166,168,-1,168,528,938,-1,524,939,525,-1,939,938,525,-1,940,941,942,-1,940,523,941,-1,943,944,308,-1,945,939,524,-1,943,124,944,-1,943,122,124,-1,946,947,948,-1,948,949,946,-1,209,429,210,-1,209,430,429,-1,432,434,511,-1,512,513,432,-1,513,415,432,-1,507,31,508,-1,507,950,31,-1,510,345,357,-1,357,507,510,-1,352,355,342,-1,400,399,395,-1,399,951,395,-1,504,503,505,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlscapula_Geo_5_823_coordIndex_4()
		{
			int[] value = {304,137,305,-1,304,952,137,-1,500,502,499,-1,500,953,502,-1,954,366,365,-1,954,353,366,-1,496,953,500,-1,496,497,953,-1,497,494,409,-1,388,387,30,-1,30,491,388,-1,393,453,955,-1,955,391,393,-1,394,893,490,-1,893,956,490,-1,487,957,891,-1,957,958,891,-1,487,488,957,-1,484,959,482,-1,483,474,485,-1,483,480,474,-1,960,961,489,-1,962,590,595,-1,962,591,590,-1,595,477,962,-1,963,471,472,-1,472,964,963,-1,468,472,469,-1,468,965,472,-1,966,467,470,-1,470,967,966,-1,968,969,970,-1,969,971,970,-1,972,2,425,-1,972,0,2,-1,9,461,14,-1,9,465,461,-1,464,11,602,-1,15,14,973,-1,14,460,973,-1,14,461,460,-1,21,458,19,-1,381,397,396,-1,138,734,139,-1,138,454,734,-1,974,54,448,-1,448,723,974,-1,55,119,114,-1,114,690,55,-1,791,48,457,-1,975,440,680,-1,975,441,440,-1,439,518,238,-1,439,438,518,-1,433,432,415,-1,415,414,433,-1,231,427,429,-1,429,61,231,-1,55,586,117,-1,117,119,55,-1,890,889,976,-1,977,413,411,-1,423,294,293,-1,293,859,423,-1,45,44,927,-1,978,979,980,-1,979,368,980,-1,369,301,367,-1,369,390,301,-1,598,390,369,-1,598,420,390,-1,488,480,957,-1,488,481,480,-1,306,501,376,-1,501,377,376,-1,981,268,444,-1,982,983,984,-1,984,951,982,-1,301,303,892,-1,368,585,370,-1,368,979,585,-1,402,505,503,-1,503,502,402,-1,581,363,978,-1,581,361,363,-1,912,339,543,-1,339,912,985,-1,954,498,353,-1,918,917,986,-1,985,350,339,-1,325,982,576,-1,325,547,982,-1,570,572,906,-1,166,938,558,-1,487,321,320,-1,487,891,321,-1,987,313,316,-1,316,988,987,-1,315,314,559,-1,314,520,559,-1,930,934,932,-1,934,989,932,-1,526,307,941,-1,939,519,561,-1,142,990,991,-1,362,575,899,-1,379,146,297,-1,146,298,297,-1,897,992,895,-1,992,901,895,-1,993,992,979,-1,992,585,979,-1,909,905,571,-1,571,570,909,-1,994,285,284,-1,284,995,994,-1,996,826,825,-1,996,997,826,-1,998,285,994,-1,998,831,285,-1,833,999,746,-1,833,743,999,-1,832,282,463,-1,832,280,282,-1,464,465,11,-1,465,9,11,-1,824,259,258,-1,824,273,259,-1,824,258,246,-1,246,267,824,-1,261,266,265,-1,265,262,261,-1,281,266,261,-1,257,246,258,-1,257,247,246,-1,256,852,254,-1,256,1000,852,-1,75,245,1001,-1,245,244,1001,-1,248,243,245,-1,808,602,6,-1,808,1002,602,-1,739,738,840,-1,171,238,239,-1,239,174,171,-1,683,1003,682,-1,217,234,93,-1,217,233,234,-1,72,1004,235,-1,72,226,1004,-1,425,1005,972,-1,425,884,1005,-1,93,216,217,-1,93,65,216,-1,426,2,1,-1,1,1006,426,-1,726,721,848,-1,848,717,726,-1,717,848,222,-1,222,224,717,-1,219,689,220,-1,689,116,220,-1,851,702,606,-1,215,4,213,-1,215,5,4,-1,869,1007,1008,-1,192,647,200,-1,192,793,647,-1,202,201,640,-1,640,1009,202,-1,192,193,792,-1,198,759,196,-1,198,1010,759,-1,1011,188,190,-1,190,865,1011,-1,189,186,191,-1,189,185,186,-1,1009,207,202,-1,1009,187,207,-1,183,191,186,-1,650,175,177,-1,641,624,627,-1,874,639,177,-1,676,675,668,-1,40,923,41,-1,311,989,935,-1,397,504,395,-1,504,400,395,-1,23,981,24,-1,23,139,981,-1,24,444,495,-1,24,981,444,-1,130,129,204,-1,204,45,130,-1,121,1012,124,-1,382,1013,727,-1,591,962,961,-1,114,120,115,-1,114,119,120,-1,991,143,142,-1,991,456,143,-1,136,159,158,-1,136,135,159,-1,127,45,204,-1,127,126,45,-1,382,727,152,-1,727,155,152,-1,960,591,961,-1,960,592,591,-1,116,684,220,-1,116,113,684,-1,1014,1015,1016,-1,1016,1017,1014,-1,1018,1019,78,-1,1019,79,78,-1,1020,810,81,-1,810,82,81,-1,76,75,1001,-1,101,789,798,-1,101,98,789,-1,805,1021,806,-1,805,1022,1021,-1,1023,1024,870,-1,1025,613,426,-1,1004,1006,568,-1,968,1016,905,-1,235,1026,234,-1,235,1027,1026,-1,1004,568,1027,-1,1027,235,1004,-1,969,908,229,-1,969,909,908,-1,86,1028,1029,-1,1029,85,86,-1,1030,1031,84,-1,84,83,1030,-1,1032,1033,134,-1,1033,386,134,-1,811,810,1020,-1,442,1019,1018,-1,970,971,1005,-1,230,95,94,-1,72,312,70,-1,236,216,65,-1,65,64,236,-1,66,216,236,-1,431,662,62,-1,579,897,577,-1,579,584,897,-1,598,583,587,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlscapula_Geo_5_823_coordIndex_5()
		{
			int[] value = {587,586,598,-1,690,53,55,-1,48,459,457,-1,48,47,459,-1,27,26,1033,-1,1033,1032,27,-1,42,169,406,-1,42,41,169,-1,1034,1035,34,-1,1035,39,34,-1,39,1035,37,-1,1036,31,30,-1,1036,508,31,-1,35,38,36,-1,1034,34,33,-1,387,1036,30,-1,796,761,760,-1,760,755,796,-1,790,198,195,-1,195,104,790,-1,496,24,495,-1,21,20,457,-1,735,1037,269,-1,729,846,735,-1,885,886,607,-1,13,10,9,-1,9,14,13,-1,602,11,12,-1,516,4,3,-1,57,1038,862,-1,57,1039,1038,-1,862,863,57,-1,866,57,863,-1,866,58,57,-1,1040,1038,173,-1,862,1038,1040,-1,675,172,864,-1,677,172,675,-1,279,600,277,-1,279,601,600,-1,1041,1042,1043,-1,52,1042,1041,-1,1041,1044,1045,-1,1046,1044,1041,-1,269,1047,1048,-1,1047,269,1037,-1,1010,790,791,-1,1010,198,790,-1,32,542,1049,-1,32,36,542,-1,540,1050,1051,-1,540,509,1050,-1,39,35,34,-1,39,38,35,-1,859,860,687,-1,859,293,860,-1,1041,50,52,-1,1045,50,1041,-1,1045,1052,50,-1,1045,1053,1052,-1,587,584,579,-1,587,583,584,-1,312,67,70,-1,68,67,312,-1,1028,1030,1029,-1,1028,1031,1030,-1,1028,84,1031,-1,1028,86,84,-1,972,90,0,-1,90,972,228,-1,905,969,968,-1,909,969,905,-1,90,908,91,-1,229,908,90,-1,1006,569,568,-1,1,569,1006,-1,93,1026,94,-1,234,1026,93,-1,610,426,613,-1,426,610,424,-1,225,621,1054,-1,227,621,225,-1,1055,71,73,-1,1055,619,71,-1,1024,1056,1057,-1,1056,1024,1023,-1,60,63,232,-1,60,97,63,-1,664,96,1058,-1,664,97,96,-1,886,424,610,-1,885,424,886,-1,1057,59,58,-1,1057,1056,59,-1,1059,813,814,-1,1059,815,813,-1,812,82,810,-1,82,812,1060,-1,195,102,104,-1,102,195,193,-1,1061,792,197,-1,792,1061,794,-1,1020,1022,805,-1,1022,1020,81,-1,1062,806,1021,-1,1062,1063,806,-1,798,788,799,-1,788,798,789,-1,665,205,206,-1,665,667,205,-1,871,206,1064,-1,665,206,871,-1,1065,1017,1016,-1,1017,1065,1066,-1,1015,473,896,-1,473,1015,1014,-1,577,963,578,-1,963,577,471,-1,109,684,110,-1,220,684,109,-1,299,890,976,-1,298,890,299,-1,592,1067,597,-1,1067,592,960,-1,1013,149,151,-1,149,1013,382,-1,455,154,385,-1,152,154,455,-1,529,975,937,-1,975,529,441,-1,443,1034,49,-1,443,1068,1034,-1,27,459,28,-1,459,27,458,-1,492,157,159,-1,157,492,445,-1,456,163,162,-1,163,456,991,-1,33,49,1034,-1,47,49,33,-1,527,167,931,-1,168,167,527,-1,311,932,989,-1,310,932,311,-1,665,660,666,-1,665,871,660,-1,105,1011,679,-1,105,1069,1011,-1,105,108,1069,-1,667,1069,108,-1,666,1069,667,-1,669,675,868,-1,675,669,668,-1,679,865,678,-1,679,1011,865,-1,178,874,177,-1,642,874,178,-1,874,626,639,-1,874,627,626,-1,652,199,208,-1,203,199,652,-1,1070,760,1071,-1,1070,756,760,-1,1072,869,653,-1,869,1072,1007,-1,1073,632,634,-1,1073,1074,632,-1,882,851,606,-1,875,851,882,-1,1004,225,1025,-1,1004,226,225,-1,184,1075,1076,-1,184,873,1075,-1,238,1012,121,-1,238,518,1012,-1,6,1077,808,-1,1077,6,1078,-1,602,463,464,-1,602,1002,463,-1,1079,82,1080,-1,80,82,1079,-1,1000,853,852,-1,1000,1081,853,-1,246,1082,267,-1,248,1082,246,-1,1082,245,75,-1,1082,248,245,-1,16,740,737,-1,740,16,738,-1,733,1083,1084,-1,730,1083,733,-1,743,834,999,-1,743,742,834,-1,828,825,827,-1,828,747,825,-1,1085,826,997,-1,1085,1086,826,-1,747,996,825,-1,748,996,747,-1,1087,995,284,-1,1088,995,1087,-1,1046,1089,1090,-1,1091,1089,1046,-1,572,904,898,-1,572,571,904,-1,992,899,901,-1,899,992,993,-1,496,25,24,-1,500,25,496,-1,398,504,505,-1,504,398,400,-1,1092,375,990,-1,1092,376,375,-1,316,939,945,-1,316,519,939,-1,528,941,523,-1,526,941,528,-1,940,524,523,-1,940,945,524,-1,512,948,514,-1,512,949,948,-1,147,379,320,-1,147,146,379,-1,1093,560,559,-1,560,1093,1094,-1,549,910,564,-1,549,548,910,-1,166,560,554,-1,558,560,166,-1,1095,1096,1097,-1,1095,1098,1096,-1,1099,211,988,-1,1099,946,211,-1,352,985,353,-1,352,350,985,-1,403,954,401,-1,403,498,954,-1,926,338,927,-1,338,926,336,-1,541,917,916,-1,349,917,541,-1,900,1100,906,-1,574,1100,900,-1,306,499,501,-1,305,499,306,-1,991,375,163,-1,375,991,990,-1,486,481,488,-1,486,479,481,-1,381,955,453,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlscapula_Geo_5_823_coordIndex_6()
		{
			int[] value = {396,955,381,-1,162,381,152,-1,162,164,381,-1,596,976,889,-1,596,597,976,-1,1101,589,588,-1,888,589,1101,-1,979,363,993,-1,363,979,978,-1,408,356,354,-1,356,408,950,-1,544,920,323,-1,1102,920,544,-1,1103,531,933,-1,1103,530,531,-1,688,1104,685,-1,688,860,1104,-1,422,294,423,-1,1089,294,422,-1,1090,422,964,-1,1090,1089,422,-1,1053,468,467,-1,1045,468,1053,-1,411,967,977,-1,967,411,966,-1,1017,977,967,-1,977,1017,1066,-1,970,1016,968,-1,970,1065,1016,-1,884,424,885,-1,884,425,424,-1,123,680,435,-1,123,975,680,-1,125,106,441,-1,125,107,106,-1,204,1064,206,-1,204,129,1064,-1,445,1105,157,-1,445,270,1105,-1,133,22,19,-1,133,736,22,-1,958,300,302,-1,958,893,300,-1,725,485,450,-1,484,485,725,-1,452,149,453,-1,452,150,149,-1,849,701,857,-1,849,715,701,-1,969,228,971,-1,969,229,228,-1,1052,411,50,-1,411,1052,966,-1,1044,1090,965,-1,1046,1090,1044,-1,963,422,144,-1,963,964,422,-1,419,974,451,-1,419,421,974,-1,477,418,478,-1,418,477,595,-1,489,477,476,-1,489,962,477,-1,961,962,489,-1,490,959,392,-1,482,959,490,-1,483,957,480,-1,483,956,957,-1,893,957,956,-1,893,958,957,-1,391,372,894,-1,955,372,391,-1,493,30,29,-1,493,491,30,-1,29,494,493,-1,409,494,29,-1,403,497,409,-1,403,953,497,-1,953,402,502,-1,953,403,402,-1,990,141,1092,-1,990,142,141,-1,396,951,984,-1,396,395,951,-1,353,912,366,-1,985,912,353,-1,355,345,342,-1,345,355,357,-1,357,950,507,-1,357,356,950,-1,386,1051,1050,-1,1033,1051,386,-1,349,542,36,-1,349,541,542,-1,5,415,513,-1,215,415,5,-1,5,319,3,-1,5,514,319,-1,514,5,513,-1,209,434,430,-1,209,511,434,-1,949,211,946,-1,949,209,211,-1,516,319,318,-1,516,3,319,-1,1106,948,947,-1,1106,317,948,-1,988,210,987,-1,988,211,210,-1,313,427,428,-1,987,427,313,-1,1107,1108,1109,-1,1107,1106,1108,-1,124,517,944,-1,1012,517,124,-1,1012,518,517,-1,1109,942,309,-1,942,1109,1108,-1,946,1110,947,-1,946,1099,1110,-1,521,230,94,-1,230,521,428,-1,309,941,307,-1,942,941,309,-1,523,938,528,-1,525,938,523,-1,559,519,315,-1,559,561,519,-1,943,311,935,-1,311,943,308,-1,531,937,936,-1,531,529,937,-1,989,936,935,-1,989,934,936,-1,929,167,556,-1,929,931,167,-1,930,1111,1112,-1,930,929,1111,-1,407,1103,1112,-1,407,404,1103,-1,552,1111,555,-1,552,1113,1111,-1,532,407,1113,-1,407,532,405,-1,126,43,45,-1,126,928,43,-1,336,347,337,-1,925,347,336,-1,925,535,534,-1,535,925,924,-1,923,926,170,-1,923,924,926,-1,921,534,536,-1,534,921,922,-1,1035,1068,346,-1,1034,1068,1035,-1,922,918,986,-1,921,918,922,-1,915,919,1102,-1,915,913,919,-1,919,343,916,-1,343,919,913,-1,539,509,540,-1,539,510,509,-1,343,510,914,-1,345,510,343,-1,951,576,982,-1,951,399,576,-1,323,911,545,-1,323,920,911,-1,902,910,553,-1,910,902,359,-1,557,1097,550,-1,1095,1097,557,-1,560,1114,554,-1,560,1094,1114,-1,1097,573,902,-1,1097,1096,573,-1,330,1115,331,-1,1115,330,566,-1,1116,569,91,-1,1116,567,569,-1,91,907,1116,-1,908,907,91,-1,907,906,1100,-1,906,907,570,-1,1117,574,335,-1,574,1117,1100,-1,905,1015,904,-1,905,1016,1015,-1,895,898,904,-1,898,895,901,-1,85,1118,903,-1,1029,1118,85,-1,360,83,358,-1,83,360,1030,-1,564,1118,546,-1,564,903,1118,-1,580,326,329,-1,580,983,326,-1,899,363,362,-1,899,993,363,-1,984,374,396,-1,374,984,582,-1,980,303,373,-1,892,303,980,-1,894,303,300,-1,894,372,303,-1,891,302,371,-1,958,302,891,-1,589,147,321,-1,589,148,147,-1,416,888,1101,-1,416,594,888,-1,1119,973,460,-1,973,1119,278,-1,887,604,603,-1,604,887,605,-1,705,875,877,-1,705,851,875,-1,605,612,883,-1,612,605,887,-1,883,611,881,-1,883,612,611,-1,1120,881,611,-1,881,1120,879,-1,616,878,880,-1,616,876,878,-1,878,875,882,-1,876,875,878,-1,706,615,709,-1,706,877,615,-1,1121,879,1122,-1,1121,880,879,-1,1123,1122,1124,-1,1123,1121,1122,-1,631,617,614,-1,617,631,630,-1,636,1124,635,-1,636,1123,1124,-1,1055,620,619,-1,1055,633,620,-1,639,650,177,-1,639,638,650,-1,1125,1074,1073,-1,1125,1126,1074,-1,176,180,186,-1,176,175,180,-1,180,183,186,-1,180,179,183,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlscapula_Geo_5_823_coordIndex_7()
		{
			int[] value = {656,649,1126,-1,656,659,649,-1,1125,1127,1128,-1,1127,1125,89,-1,1128,1024,1129,-1,1128,1127,1024,-1,179,873,184,-1,873,179,182,-1,189,1072,185,-1,189,1007,1072,-1,1023,661,1056,-1,1023,1058,661,-1,657,1130,1131,-1,657,1129,1130,-1,670,1075,658,-1,1075,670,669,-1,190,1076,868,-1,191,1076,190,-1,1069,188,1011,-1,1069,1008,188,-1,1131,866,672,-1,866,1131,1130,-1,1056,663,59,-1,1056,661,663,-1,59,867,57,-1,59,663,867,-1,674,862,1040,-1,862,674,673,-1,57,1003,1039,-1,1003,57,867,-1,1038,1132,1133,-1,1038,1039,1132,-1,1133,436,439,-1,436,1133,1132,-1,414,1003,433,-1,1003,414,682,-1,861,51,410,-1,51,861,52,-1,1043,1104,860,-1,1042,1104,1043,-1,1104,52,861,-1,52,1104,1042,-1,413,111,412,-1,1134,111,413,-1,118,859,120,-1,118,423,859,-1,833,849,695,-1,849,833,850,-1,699,695,857,-1,271,695,699,-1,856,272,696,-1,693,272,856,-1,857,697,699,-1,701,697,857,-1,1079,854,853,-1,1079,856,854,-1,698,855,854,-1,1135,855,698,-1,1135,703,708,-1,1135,704,703,-1,855,254,852,-1,855,1136,254,-1,1136,255,254,-1,1136,1137,255,-1,710,1137,707,-1,710,712,1137,-1,720,53,690,-1,720,448,53,-1,151,452,724,-1,151,150,452,-1,1013,721,727,-1,1013,722,721,-1,154,1083,728,-1,154,153,1083,-1,735,845,1037,-1,735,846,845,-1,841,846,732,-1,841,843,846,-1,841,1138,842,-1,841,844,1138,-1,845,839,838,-1,845,843,839,-1,270,1048,1105,-1,270,269,1048,-1,840,1047,838,-1,840,18,1047,-1,839,837,739,-1,837,839,842,-1,1139,837,1140,-1,837,1139,836,-1,836,1141,835,-1,1141,836,1139,-1,457,741,835,-1,20,741,457,-1,281,464,282,-1,281,466,464,-1,746,850,833,-1,746,745,850,-1,286,274,275,-1,832,274,286,-1,831,999,834,-1,998,999,831,-1,1087,830,1142,-1,1087,284,830,-1,748,994,996,-1,748,998,994,-1,827,847,829,-1,847,827,1084,-1,995,996,994,-1,995,997,996,-1,827,1086,1143,-1,827,826,1086,-1,1144,733,1143,-1,1144,731,733,-1,291,1085,1088,-1,291,287,1085,-1,288,1144,289,-1,1144,288,1145,-1,1146,844,1145,-1,1146,1138,844,-1,290,751,288,-1,754,751,290,-1,1138,1147,1140,-1,1138,1146,1147,-1,1071,1139,1070,-1,1139,1071,1141,-1,283,744,264,-1,283,742,744,-1,261,466,281,-1,466,261,1148,-1,263,1148,261,-1,263,1149,1148,-1,770,763,1149,-1,770,772,763,-1,1082,265,267,-1,1150,265,1082,-1,768,823,769,-1,818,823,768,-1,819,771,823,-1,771,819,821,-1,820,817,1151,-1,819,817,820,-1,781,822,821,-1,822,781,780,-1,251,781,820,-1,251,250,781,-1,1151,1152,1153,-1,1152,1151,779,-1,244,813,1001,-1,691,813,244,-1,1059,783,815,-1,783,1059,1154,-1,1152,1155,1077,-1,1152,782,1155,-1,1077,807,808,-1,1077,1155,807,-1,812,1154,1059,-1,812,809,1154,-1,1060,1080,82,-1,1060,858,1080,-1,807,811,784,-1,807,809,811,-1,276,1002,808,-1,276,274,1002,-1,81,1081,1022,-1,81,80,1081,-1,804,830,240,-1,804,1142,830,-1,1021,1081,1000,-1,1081,1021,1022,-1,1021,256,1062,-1,1021,1000,256,-1,1142,803,749,-1,1142,804,803,-1,99,803,1063,-1,99,802,803,-1,750,801,757,-1,750,802,801,-1,798,801,101,-1,798,800,801,-1,1156,786,785,-1,713,786,1156,-1,797,758,800,-1,758,797,796,-1,797,1061,795,-1,1061,797,799,-1,787,647,793,-1,647,787,644,-1,197,795,1061,-1,795,197,196,-1,790,1019,442,-1,790,104,1019,-1,196,761,795,-1,761,196,759,-1,794,787,793,-1,794,788,787,-1,757,800,758,-1,800,757,801,-1,1062,253,100,-1,1062,256,253,-1,1063,804,806,-1,804,1063,803,-1,255,785,253,-1,255,1156,785,-1,242,805,240,-1,242,1020,805,-1,1020,784,811,-1,1020,242,784,-1,240,275,241,-1,275,240,830,-1,858,814,692,-1,1060,814,858,-1,809,1155,1154,-1,809,807,1155,-1,8,1078,6,-1,1078,8,249,-1,1077,1153,1152,-1,1153,1077,1078,-1,1154,782,783,-1,782,1154,1155,-1,779,782,1152,-1,782,779,778,-1,251,1151,1153,-1,251,820,1151,-1,278,250,252,-1,278,780,250,-1,779,817,776,-1,817,779,1151,-1,823,817,819,-1,823,818,817,-1,764,767,765,-1,768,767,764,-1,1150,75,816,-1,1082,75,1150,-1,767,1149,263,-1,767,770,1149,-1,1148,763,762,-1,1148,1149,763,-1,243,691,244,-1,243,247,691,-1,762,466,1148,-1,762,465,466,-1,281,264,266,-1,281,283,264,-1,756,1147,753,-1,756,1070,1147,-1,1140,1070,1139,-1,1140,1147,1070,-1,753,1146,751,-1,1146,753,1147,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlscapula_Geo_5_823_coordIndex_8()
		{
			int[] value = {757,290,750,-1,757,754,290,-1,751,1145,288,-1,751,1146,1145,-1,1145,731,1144,-1,731,1145,844,-1,288,291,290,-1,287,291,288,-1,1143,289,1144,-1,289,1143,1086,-1,1084,1143,733,-1,1084,827,1143,-1,1088,997,995,-1,997,1088,1085,-1,1142,292,1087,-1,292,1142,749,-1,746,998,748,-1,746,999,998,-1,714,745,716,-1,714,850,745,-1,832,834,280,-1,832,831,834,-1,835,791,457,-1,835,1141,791,-1,1140,842,1138,-1,1140,837,842,-1,17,1105,1048,-1,17,446,1105,-1,737,447,16,-1,447,737,736,-1,838,1037,845,-1,1037,838,1047,-1,268,735,269,-1,735,268,734,-1,729,732,846,-1,729,730,732,-1,728,730,729,-1,1083,730,728,-1,728,385,154,-1,728,383,385,-1,151,722,1013,-1,151,724,722,-1,722,723,448,-1,723,722,724,-1,718,690,689,-1,720,690,718,-1,223,719,604,-1,223,222,719,-1,1156,711,713,-1,711,1156,712,-1,712,255,1137,-1,712,1156,255,-1,1136,707,1137,-1,1136,708,707,-1,703,877,706,-1,703,705,877,-1,1135,1136,855,-1,1135,708,1136,-1,704,698,697,-1,704,1135,698,-1,1080,856,1079,-1,1080,693,856,-1,1080,260,693,-1,260,1080,858,-1,604,219,218,-1,219,604,719,-1,1134,977,1066,-1,1134,413,977,-1,685,861,686,-1,685,1104,861,-1,683,1039,1003,-1,683,1132,1039,-1,214,1132,683,-1,214,436,1132,-1,439,171,1133,-1,439,238,171,-1,173,1133,171,-1,173,1038,1133,-1,433,867,431,-1,433,1003,867,-1,680,681,435,-1,680,678,681,-1,58,1130,1057,-1,1130,58,866,-1,672,670,1131,-1,672,671,670,-1,1008,189,188,-1,1008,1007,189,-1,1076,669,868,-1,1076,1075,669,-1,1131,658,657,-1,658,1131,670,-1,1057,1129,1024,-1,1129,1057,1130,-1,661,96,662,-1,96,661,1058,-1,660,653,869,-1,653,660,651,-1,183,1076,191,-1,183,184,1076,-1,873,658,1075,-1,873,659,658,-1,1129,656,1128,-1,656,1129,657,-1,1128,1126,1125,-1,1128,656,1126,-1,185,207,187,-1,185,1072,207,-1,176,1009,178,-1,176,187,1009,-1,181,175,650,-1,175,181,180,-1,1126,648,1074,-1,1126,649,648,-1,89,1073,88,-1,89,1125,1073,-1,642,1009,640,-1,178,1009,642,-1,646,640,201,-1,643,640,646,-1,638,629,628,-1,639,629,638,-1,635,637,636,-1,637,635,632,-1,633,92,634,-1,633,1055,92,-1,635,620,633,-1,635,1124,620,-1,628,1123,636,-1,1123,628,631,-1,629,623,630,-1,629,626,623,-1,622,630,623,-1,622,617,630,-1,614,1123,631,-1,614,1121,1123,-1,618,1124,1122,-1,618,620,1124,-1,618,879,1120,-1,618,1122,879,-1,616,1121,614,-1,1121,616,880,-1,1054,611,613,-1,1120,611,1054,-1,887,610,612,-1,887,886,610,-1,277,973,278,-1,277,15,973,-1,822,460,462,-1,822,1119,460,-1,417,1101,389,-1,417,416,1101,-1,595,593,594,-1,595,590,593,-1,892,368,367,-1,980,368,892,-1,582,373,374,-1,373,582,581,-1,582,983,580,-1,983,582,984,-1,584,992,897,-1,992,584,585,-1,361,329,362,-1,361,580,329,-1,982,1118,360,-1,547,1118,982,-1,1118,547,546,-1,575,334,335,-1,575,328,334,-1,360,983,982,-1,360,326,983,-1,903,910,359,-1,903,564,910,-1,1029,360,1118,-1,1030,360,1029,-1,358,85,903,-1,85,358,83,-1,896,904,1015,-1,895,904,896,-1,331,1117,335,-1,1117,331,1115,-1,1100,1116,907,-1,1100,1117,1116,-1,1117,567,1116,-1,1117,1115,567,-1,1115,565,567,-1,1115,566,565,-1,334,1096,333,-1,573,1096,334,-1,568,562,1027,-1,568,565,562,-1,554,1095,557,-1,1114,1095,554,-1,550,902,553,-1,1097,902,550,-1,522,1027,562,-1,1027,522,1026,-1,563,559,520,-1,563,1093,559,-1,551,548,538,-1,553,548,551,-1,364,1102,544,-1,364,915,1102,-1,324,506,322,-1,398,506,324,-1,366,915,364,-1,543,915,366,-1,341,913,915,-1,341,344,913,-1,346,131,337,-1,131,346,1068,-1,536,911,921,-1,536,537,911,-1,536,40,533,-1,536,535,40,-1,538,532,551,-1,538,533,532,-1,406,928,404,-1,43,928,406,-1,551,1113,552,-1,1113,551,532,-1,1112,1113,407,-1,1113,1112,1111,-1,1112,933,930,-1,933,1112,1103,-1,555,929,556,-1,929,555,1111,-1,527,307,526,-1,307,527,310,-1,521,1026,522,-1,521,94,1026,-1,428,314,313,-1,428,521,314,-1,1108,940,942,-1,940,1108,1110,-1,944,1107,1109,-1,517,1107,944,-1,1106,1110,1108,-1,1106,947,1110,-1,429,987,210,-1,427,987,429,-1,318,517,515,-1,318,1107,517,-1,437,515,438,-1,437,516,515,-1,514,317,319,-1,514,948,317,-1,949,511,209,-1,949,512,511,-1,4,437,213,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getlscapula_Geo_5_823_coordIndex_9()
		{
			int[] value = {437,4,516,-1,1051,26,1049,-1,1051,1033,26,-1,28,1049,26,-1,1049,28,32,-1,1050,387,386,-1,1050,1036,387,-1,340,352,342,-1,340,350,352,-1,372,396,374,-1,372,955,396,-1,1157,505,401,-1,505,1157,506,-1,397,160,377,-1,397,161,160,-1,503,377,501,-1,503,504,377,-1,351,403,409,-1,498,403,351,-1,354,409,408,-1,351,409,354,-1,491,492,159,-1,492,491,493,-1,386,135,134,-1,135,386,388,-1,486,379,378,-1,486,320,379,-1,482,956,483,-1,482,490,956,-1,475,479,478,-1,481,479,475,-1,478,419,475,-1,478,418,419,-1,450,474,451,-1,450,485,474,-1,54,421,56,-1,54,974,421,-1,470,473,1014,-1,473,470,469,-1,1067,489,380,-1,1067,960,489,-1,164,397,381,-1,164,161,397,-1,452,392,959,-1,452,393,392,-1,959,725,452,-1,959,484,725,-1,723,451,974,-1,449,451,723,-1,133,447,736,-1,133,136,447,-1,446,157,1105,-1,446,158,157,-1,981,734,268,-1,981,139,734,-1,1018,443,442,-1,132,443,1018,-1,205,125,127,-1,205,107,125,-1,436,213,437,-1,214,213,436,-1,430,431,62,-1,430,434,431,-1,1120,621,618,-1,1054,621,1120,-1,71,226,72,-1,226,71,227,-1,970,884,609,-1,970,1005,884,-1,609,1065,970,-1,1065,609,608,-1,421,599,56,-1,599,421,420,-1,829,726,717,-1,726,829,847,-1,369,583,598,-1,583,369,370,-1,967,1014,1017,-1,967,470,1014,-1,410,50,411,-1,50,410,51,-1,1045,965,468,-1,1044,965,1045,-1,1052,467,966,-1,1053,467,1052,-1,950,29,31,-1,408,29,950,-1,936,933,531,-1,933,936,934,-1,530,404,928,-1,404,530,1103,-1,401,365,1157,-1,401,954,365,-1,1102,918,920,-1,919,918,1102,-1,914,541,916,-1,914,539,541,-1,324,399,398,-1,324,576,399,-1,382,453,149,-1,453,382,381,-1,389,588,371,-1,1101,588,389,-1,889,888,596,-1,889,589,888,-1,952,1092,141,-1,952,304,1092,-1,152,456,162,-1,152,455,456,-1,394,894,893,-1,394,391,894,-1,299,380,297,-1,380,299,1067,-1,479,378,476,-1,378,479,486,-1,163,377,160,-1,163,375,377,-1,581,980,373,-1,978,980,581,-1,574,899,575,-1,574,900,899,-1,354,355,352,-1,354,356,355,-1,986,348,922,-1,986,37,348,-1,37,346,348,-1,1035,346,37,-1,365,544,1157,-1,365,364,544,-1,37,917,349,-1,37,986,917,-1,340,344,341,-1,340,342,344,-1,130,337,131,-1,337,130,338,-1,988,945,1099,-1,316,945,988,-1,1093,330,332,-1,330,1093,563,-1,333,1098,332,-1,1096,1098,333,-1,1098,1114,1094,-1,1098,1095,1114,-1,1094,332,1098,-1,332,1094,1093,-1,362,328,575,-1,329,328,362,-1,318,1106,1107,-1,1106,318,317,-1,944,309,308,-1,309,944,1109,-1,156,943,935,-1,943,156,122,-1,940,1099,945,-1,940,1110,1099,-1,939,558,938,-1,558,939,561,-1,304,376,1092,-1,304,306,376,-1,322,1157,544,-1,1157,322,506,-1,1089,295,294,-1,295,1089,1091,-1,965,964,472,-1,965,1090,964,-1,292,1088,1087,-1,291,1088,292,-1,287,1086,1085,-1,287,289,1086,-1,716,747,828,-1,716,745,747,-1,1002,832,463,-1,1002,274,832,-1,1141,1010,791,-1,1071,1010,1141,-1,153,1084,1083,-1,1084,155,847,-1,153,155,1084,-1,263,765,767,-1,765,263,262,-1,1150,262,265,-1,1150,765,262,-1,765,816,766,-1,765,1150,816,-1,1079,1081,80,-1,1081,1079,853,-1,1153,249,251,-1,1078,249,1153,-1,1119,780,278,-1,1119,822,780,-1,132,1064,129,-1,1064,132,1018,-1,88,634,92,-1,88,1073,634,-1,1074,637,632,-1,1074,648,637,-1,207,653,208,-1,207,1072,653,-1,77,652,651,-1,652,77,79,-1,203,200,199,-1,203,194,200,-1,1071,759,1010,-1,1071,760,759,-1,79,203,652,-1,103,203,79,-1,659,181,649,-1,659,182,181,-1,172,681,864,-1,174,681,172,-1,868,864,865,-1,868,675,864,-1,106,679,440,-1,106,105,679,-1,666,1008,1069,-1,666,869,1008,-1,923,169,41,-1,170,169,923,-1,310,931,932,-1,527,931,310,-1,134,19,1032,-1,134,133,19,-1,165,952,141,-1,384,952,165,-1,384,137,952,-1,138,137,384,-1,495,445,492,-1,445,495,444,-1,458,1032,19,-1,458,27,1032,-1,28,47,33,-1,47,28,459,-1,132,1068,443,-1,132,131,1068,-1,128,441,529,-1,441,128,125,-1,156,975,123,-1,156,937,975,-1,165,455,385,-1,165,140,455,-1,299,597,1067,-1,299,976,597,-1,148,298,146,-1,148,890,298,-1,608,1066,1065,-1,608,1134,1066,-1,145,963,144,-1,145,578,963,-1,896,471,577,-1,471,896,473,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getlscapula_Geo_5_823_coordIndex_10()
		{
			int[] value = {112,1134,608,-1,112,111,1134,-1,78,1064,1018,-1,78,871,1064,-1,667,107,205,-1,108,107,667,-1,1063,100,99,-1,1063,1062,100,-1,794,799,788,-1,799,794,1061,-1,197,193,195,-1,197,792,193,-1,103,1019,104,-1,79,1019,103,-1,1059,1060,812,-1,1059,814,1060,-1,1001,815,76,-1,1001,813,815,-1,62,96,60,-1,96,62,662,-1,1127,870,1024,-1,872,870,1127,-1,1023,664,1058,-1,664,1023,870,-1,65,232,63,-1,232,65,95,-1,89,872,1127,-1,89,87,872,-1,73,92,1055,-1,69,92,73,-1,227,619,621,-1,71,619,227,-1,1025,1054,613,-1,225,1054,1025,-1,1,91,569,-1,0,91,1,-1,1006,1025,426,-1,1025,1006,1004,-1,971,972,1005,-1,971,228,972,-1,70,69,73,-1,67,69,70,-1,293,1043,860,-1,293,296,1043,-1,509,1036,1050,-1,508,1036,509,-1,1049,540,1051,-1,1049,542,540,-1,18,1048,1047,-1,1048,18,17,-1,1043,295,1091,-1,1043,296,295,-1,1091,1041,1043,-1,1091,1046,1041,-1,600,15,277,-1,600,13,15,-1,601,8,7,-1,601,279,8,-1,1040,676,674,-1,677,676,1040,-1,173,677,1040,-1,173,172,677,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlscapula_Geo_5_823_normalIndex_1()
		{
			int[] value = {904,952,1084,-1,242,268,336,-1,468,391,501,-1,55,5,26,-1,5,104,26,-1,41,216,93,-1,984,1025,1018,-1,440,1062,497,-1,440,990,1062,-1,876,838,685,-1,15,12,0,-1,115,149,172,-1,30,0,2,-1,22,40,2,-1,30,40,260,-1,30,2,40,-1,316,320,324,-1,387,389,429,-1,52,23,1,-1,208,14,289,-1,208,18,14,-1,1085,1030,1095,-1,703,701,1120,-1,701,1080,1120,-1,744,628,826,-1,1058,1034,1093,-1,1032,989,1074,-1,930,1091,1129,-1,930,1086,1091,-1,1116,1139,1142,-1,1116,1117,1139,-1,1027,672,866,-1,926,642,867,-1,694,868,719,-1,99,151,253,-1,151,70,253,-1,927,676,930,-1,927,745,676,-1,904,877,525,-1,785,1086,930,-1,930,676,785,-1,1150,1003,1099,-1,1099,1074,1150,-1,1024,997,1058,-1,807,848,821,-1,807,825,848,-1,566,787,477,-1,892,516,319,-1,319,752,892,-1,1079,1135,1114,-1,1114,1137,1079,-1,1151,1020,1152,-1,1151,1075,1020,-1,646,1064,1105,-1,1064,1107,1105,-1,11,37,46,-1,11,50,37,-1,29,4,80,-1,29,17,4,-1,42,10,20,-1,20,36,42,-1,464,89,189,-1,189,649,464,-1,267,753,1053,-1,1053,876,267,-1,734,663,570,-1,570,1069,734,-1,1082,1064,569,-1,1064,646,569,-1,398,386,444,-1,105,406,530,-1,1008,991,1056,-1,1008,900,991,-1,46,37,43,-1,805,777,280,-1,1000,615,850,-1,850,611,1000,-1,615,426,850,-1,897,663,734,-1,343,401,396,-1,23,218,72,-1,823,884,919,-1,823,837,884,-1,743,721,783,-1,721,718,783,-1,714,697,765,-1,765,776,714,-1,772,714,781,-1,791,721,779,-1,791,682,721,-1,994,912,956,-1,912,872,956,-1,483,566,445,-1,483,590,566,-1,394,427,417,-1,394,382,427,-1,835,612,684,-1,684,774,835,-1,844,566,590,-1,844,787,566,-1,612,590,483,-1,84,453,80,-1,84,419,453,-1,803,932,774,-1,932,835,774,-1,261,224,197,-1,874,449,769,-1,874,506,449,-1,1094,1129,1149,-1,1094,930,1129,-1,794,665,1079,-1,665,959,1079,-1,1078,746,768,-1,1078,1067,746,-1,1113,1101,1140,-1,877,1038,857,-1,1099,923,962,-1,962,1061,1099,-1,1121,1142,1143,-1,1142,1133,1143,-1,982,989,958,-1,266,11,375,-1,691,592,695,-1,473,504,564,-1,473,534,517,-1,473,479,534,-1,552,493,512,-1,552,724,493,-1,650,631,573,-1,650,736,631,-1,661,666,762,-1,762,740,661,-1,441,515,528,-1,455,513,422,-1,455,537,513,-1,1009,987,1028,-1,801,764,762,-1,762,757,801,-1,162,592,169,-1,162,550,592,-1,134,270,724,-1,724,720,134,-1,183,347,292,-1,183,366,347,-1,113,142,83,-1,405,481,472,-1,424,380,303,-1,1127,1154,1136,-1,1136,1128,1127,-1,514,482,799,-1,381,577,433,-1,381,371,577,-1,255,145,293,-1,443,344,368,-1,407,328,443,-1,328,344,443,-1,1090,1121,1149,-1,1149,1129,1090,-1,286,147,157,-1,157,252,286,-1,235,305,230,-1,165,300,386,-1,86,194,69,-1,194,100,69,-1,47,68,59,-1,59,54,47,-1,342,282,125,-1,282,101,125,-1,71,282,238,-1,71,101,282,-1,76,79,63,-1,217,184,205,-1,155,228,211,-1,155,199,228,-1,177,126,225,-1,177,79,126,-1,388,320,316,-1,388,260,320,-1,184,217,209,-1,146,163,212,-1,146,128,163,-1,144,154,176,-1,331,108,35,-1,81,102,168,-1,351,337,341,-1,467,418,543,-1,418,461,543,-1,485,433,577,-1,164,269,371,-1,164,148,269,-1,145,267,685,-1,267,876,685,-1,408,350,399,-1,390,233,514,-1,514,656,390,-1,220,425,1008,-1,974,653,897,-1,897,1057,974,-1,95,119,78,-1,713,485,577,-1,577,651,713,-1,8,44,33,-1,8,51,44,-1,127,16,325,-1,87,82,214,-1,171,107,131,-1,202,353,362,-1,202,315,353,-1,124,94,115,-1,1045,1066,996,-1,1066,995,996,-1,506,874,1049,-1,1049,498,506,-1,975,1048,1016,-1,1048,1103,1016,-1,905,1103,1048,-1,905,1104,1103,-1,1082,1157,1141,-1,1141,1064,1082,-1,1084,1046,1068,-1,1084,1087,1046,-1,1142,1121,1090,-1,499,923,465,-1,499,962,923,-1,562,908,1093,-1,1093,1034,562,-1,1071,598,1047,-1,1071,842,598,-1,375,46,460,-1,375,11,46,-1,480,109,34,-1,34,361,480,-1,516,377,21,-1,18,392,48,-1,18,208,392,-1,961,1028,890,-1,961,1009,1028,-1,649,777,1021,-1,1021,1006,649,-1,703,585,701,-1,797,808,846,-1,33,348,57,-1,753,974,973,-1,753,653,974,-1,1145,734,1069,-1,1069,1102,1145,-1,524,56,497,-1,524,25,56,-1,448,456,924,-1,133,292,188,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlscapula_Geo_5_823_normalIndex_2()
		{
			int[] value = {335,188,372,-1,1111,1119,1063,-1,1063,1036,1111,-1,1017,1063,1134,-1,1017,1060,1063,-1,846,669,609,-1,609,1103,846,-1,490,732,647,-1,647,411,490,-1,491,404,669,-1,404,609,669,-1,272,436,484,-1,436,618,484,-1,276,174,165,-1,276,352,174,-1,656,817,490,-1,490,390,656,-1,106,44,51,-1,280,189,77,-1,189,78,77,-1,415,110,287,-1,287,613,415,-1,487,287,136,-1,487,613,287,-1,146,212,215,-1,332,145,685,-1,685,458,332,-1,329,130,158,-1,329,332,130,-1,325,399,210,-1,137,107,171,-1,87,137,116,-1,259,231,173,-1,173,232,259,-1,598,249,203,-1,277,203,213,-1,305,140,120,-1,226,34,140,-1,226,32,34,-1,157,221,252,-1,384,470,544,-1,384,147,470,-1,357,299,290,-1,412,396,410,-1,412,373,396,-1,9,90,17,-1,9,61,90,-1,218,23,362,-1,23,52,362,-1,387,429,353,-1,387,353,409,-1,409,395,387,-1,265,307,359,-1,376,395,363,-1,376,359,395,-1,258,178,385,-1,178,288,385,-1,205,237,217,-1,194,86,262,-1,251,118,194,-1,118,96,194,-1,229,295,363,-1,295,376,363,-1,138,308,234,-1,138,180,308,-1,281,306,358,-1,281,191,306,-1,240,196,198,-1,240,236,196,-1,556,384,544,-1,556,413,384,-1,190,251,295,-1,190,118,251,-1,556,546,529,-1,527,546,608,-1,608,540,527,-1,457,478,471,-1,47,35,108,-1,108,68,47,-1,68,71,59,-1,68,103,71,-1,364,132,238,-1,69,100,85,-1,500,474,285,-1,64,161,112,-1,64,81,161,-1,442,461,326,-1,461,338,326,-1,646,582,403,-1,403,569,646,-1,300,495,508,-1,988,1089,1083,-1,1083,865,988,-1,1016,790,975,-1,1016,901,790,-1,735,865,1083,-1,1083,937,735,-1,905,1048,713,-1,713,651,905,-1,640,582,861,-1,192,283,5,-1,5,41,192,-1,468,104,391,-1,468,38,104,-1,561,576,794,-1,768,595,831,-1,768,576,595,-1,964,1137,1124,-1,1124,888,964,-1,730,616,560,-1,730,760,616,-1,1031,944,1022,-1,1031,943,944,-1,627,851,610,-1,627,896,851,-1,853,938,870,-1,870,716,853,-1,862,870,938,-1,862,737,870,-1,1004,936,980,-1,980,1050,1004,-1,820,630,637,-1,820,802,630,-1,1004,1010,947,-1,947,895,1004,-1,871,862,936,-1,645,706,639,-1,645,602,706,-1,521,747,602,-1,602,547,521,-1,612,547,684,-1,612,509,547,-1,958,930,982,-1,958,927,930,-1,765,880,829,-1,765,839,880,-1,932,1037,977,-1,932,1002,1037,-1,1032,945,958,-1,958,989,1032,-1,945,997,985,-1,945,1032,997,-1,748,728,782,-1,782,770,748,-1,1014,926,1037,-1,921,1026,949,-1,1013,985,997,-1,793,1005,819,-1,946,902,854,-1,854,875,946,-1,875,726,725,-1,725,971,875,-1,918,986,910,-1,928,377,967,-1,928,430,377,-1,837,460,891,-1,837,375,460,-1,1023,769,950,-1,1023,874,769,-1,1132,1073,1029,-1,1029,1135,1132,-1,1151,1081,1059,-1,1151,1152,1081,-1,1020,1075,822,-1,822,704,1020,-1,519,661,571,-1,519,517,661,-1,764,740,762,-1,764,766,740,-1,801,604,881,-1,801,757,604,-1,693,683,635,-1,693,786,683,-1,689,683,907,-1,907,969,689,-1,696,621,689,-1,689,741,696,-1,696,784,641,-1,641,638,696,-1,716,754,853,-1,716,601,754,-1,600,601,716,-1,600,548,601,-1,521,600,747,-1,521,507,600,-1,1067,1078,1097,-1,1078,1098,1097,-1,1067,1097,778,-1,778,756,1067,-1,586,822,665,-1,665,584,586,-1,558,554,533,-1,533,585,558,-1,678,629,553,-1,553,797,678,-1,348,553,629,-1,554,700,606,-1,974,916,973,-1,916,882,973,-1,806,715,792,-1,806,815,715,-1,1033,882,935,-1,1033,973,882,-1,990,992,999,-1,1025,984,1006,-1,1006,1021,1025,-1,847,852,972,-1,1044,999,972,-1,604,369,438,-1,604,549,369,-1,619,476,520,-1,476,437,520,-1,303,383,488,-1,488,424,303,-1,511,492,597,-1,511,414,492,-1,583,597,492,-1,583,624,597,-1,414,459,510,-1,510,492,414,-1,505,599,532,-1,496,456,335,-1,496,924,456,-1,496,541,924,-1,1077,603,966,-1,634,1011,885,-1,885,557,634,-1,1096,924,731,-1,1112,1077,966,-1,1112,1110,1077,-1,1112,1027,879,-1,841,1112,879,-1,841,1110,1112,-1,828,1027,866,-1,841,667,594,-1,841,879,667,-1,493,523,643,-1,658,667,828,-1,828,742,658,-1,501,720,552,-1,720,724,552,-1,695,592,550,-1,550,677,695,-1,821,588,807,-1,821,650,588,-1,463,431,450,-1,450,559,463,-1,416,289,591,-1,416,208,289,-1,392,208,416,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlscapula_Geo_5_823_normalIndex_3()
		{
			int[] value = {435,447,483,-1,435,421,447,-1,466,542,545,-1,466,532,542,-1,702,522,545,-1,545,699,702,-1,463,521,431,-1,463,507,521,-1,559,807,588,-1,588,463,559,-1,848,825,717,-1,717,733,848,-1,733,383,708,-1,733,488,383,-1,686,691,925,-1,925,914,686,-1,550,660,677,-1,550,538,660,-1,845,878,795,-1,845,858,878,-1,574,571,605,-1,574,519,571,-1,692,828,866,-1,692,742,828,-1,879,1027,828,-1,828,667,879,-1,1027,687,672,-1,788,1110,841,-1,788,1125,1110,-1,775,578,643,-1,643,814,775,-1,924,1096,636,-1,1096,814,636,-1,1027,1112,966,-1,966,687,1027,-1,1125,1011,1077,-1,1077,1110,1125,-1,885,1148,1096,-1,731,885,1096,-1,731,557,885,-1,541,731,924,-1,455,549,670,-1,670,537,455,-1,510,542,492,-1,542,583,492,-1,599,624,583,-1,432,393,567,-1,572,567,690,-1,83,263,113,-1,83,169,263,-1,572,690,778,-1,690,756,778,-1,83,142,98,-1,98,73,83,-1,438,881,604,-1,438,655,881,-1,183,139,369,-1,369,366,183,-1,1012,972,898,-1,1012,1044,972,-1,1044,1062,990,-1,990,999,1044,-1,852,898,972,-1,852,758,898,-1,852,1019,920,-1,852,940,1019,-1,940,847,984,-1,984,1018,940,-1,864,810,920,-1,920,953,864,-1,751,792,715,-1,751,864,792,-1,953,931,886,-1,900,700,827,-1,900,606,700,-1,797,553,808,-1,558,586,554,-1,586,614,554,-1,584,746,586,-1,746,614,586,-1,957,939,1097,-1,1097,1098,957,-1,747,716,870,-1,747,600,716,-1,754,641,784,-1,754,601,641,-1,689,969,800,-1,800,741,689,-1,683,689,621,-1,738,818,723,-1,723,659,738,-1,693,635,723,-1,723,755,693,-1,907,1098,969,-1,1098,1078,969,-1,764,801,786,-1,786,693,764,-1,873,881,957,-1,670,549,604,-1,604,757,670,-1,661,652,571,-1,661,740,652,-1,1073,1151,1059,-1,1073,1132,1151,-1,1152,1088,1081,-1,1152,1107,1088,-1,1114,1029,996,-1,1114,1135,1029,-1,1072,1059,1081,-1,1029,1051,1045,-1,1045,996,1029,-1,1023,1049,874,-1,811,725,587,-1,909,891,928,-1,928,976,909,-1,946,971,986,-1,946,875,971,-1,587,725,726,-1,726,607,587,-1,1071,949,1026,-1,1071,978,949,-1,903,976,956,-1,1007,1005,1014,-1,985,1013,960,-1,642,1014,750,-1,642,926,1014,-1,960,899,985,-1,899,945,985,-1,1061,1034,1058,-1,1061,962,1034,-1,958,899,927,-1,958,945,899,-1,770,796,776,-1,947,839,895,-1,947,880,839,-1,547,509,521,-1,737,639,706,-1,737,707,639,-1,706,602,747,-1,747,870,706,-1,943,754,944,-1,943,853,754,-1,911,1001,944,-1,944,849,911,-1,944,1001,1022,-1,941,804,922,-1,941,773,804,-1,773,941,887,-1,887,626,773,-1,626,831,595,-1,626,887,831,-1,964,965,979,-1,964,888,965,-1,763,579,561,-1,831,969,768,-1,969,1078,768,-1,964,1079,1137,-1,964,794,1079,-1,964,763,794,-1,763,561,794,-1,391,104,283,-1,104,5,283,-1,640,861,905,-1,644,865,735,-1,644,790,865,-1,1120,861,582,-1,1120,1080,861,-1,444,555,486,-1,444,508,555,-1,256,495,300,-1,256,485,495,-1,467,577,397,-1,381,122,200,-1,569,403,474,-1,403,285,474,-1,500,434,625,-1,500,298,434,-1,446,271,420,-1,446,367,271,-1,108,103,68,-1,108,166,103,-1,331,246,108,-1,469,478,551,-1,471,420,475,-1,471,446,420,-1,462,502,457,-1,502,581,457,-1,529,342,413,-1,413,556,529,-1,180,206,229,-1,401,281,358,-1,401,343,281,-1,138,234,306,-1,306,191,138,-1,295,340,376,-1,295,251,340,-1,100,194,96,-1,341,264,237,-1,228,254,211,-1,312,232,258,-1,301,237,205,-1,228,312,302,-1,354,330,302,-1,330,279,302,-1,314,330,340,-1,330,346,340,-1,126,296,225,-1,126,265,296,-1,239,307,135,-1,239,387,307,-1,353,429,362,-1,114,265,126,-1,76,92,135,-1,135,114,76,-1,63,1,27,-1,63,10,1,-1,72,92,27,-1,27,23,72,-1,58,17,90,-1,58,4,17,-1,360,195,349,-1,195,185,349,-1,195,153,97,-1,67,53,19,-1,19,43,67,-1,318,343,396,-1,396,373,318,-1,299,207,290,-1,207,318,290,-1,322,365,321,-1,322,357,365,-1,91,223,344,-1,250,207,299,-1,91,50,223,-1,91,37,50,-1,219,304,222,-1,222,170,219,-1,261,562,224,-1,261,908,562,-1,598,842,249,-1,203,277,598,-1,277,498,598,-1,259,172,231,-1,259,159,172,-1,232,199,176,-1,176,259,232,-1,163,144,155,-1,214,82,127,-1,82,74,127,-1,210,158,137,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlscapula_Geo_5_823_normalIndex_4()
		{
			int[] value = {255,267,145,-1,255,370,267,-1,458,130,332,-1,458,123,130,-1,284,341,337,-1,284,212,341,-1,487,123,458,-1,487,136,123,-1,136,287,94,-1,78,119,149,-1,149,77,78,-1,33,57,6,-1,6,8,33,-1,51,122,106,-1,122,141,106,-1,174,323,256,-1,323,245,256,-1,174,352,323,-1,484,186,272,-1,436,669,618,-1,436,491,669,-1,1100,1065,817,-1,894,988,901,-1,894,1089,988,-1,901,732,894,-1,1054,1017,1134,-1,1134,1156,1054,-1,1119,1134,1063,-1,1119,1146,1134,-1,1092,1111,1036,-1,1036,1035,1092,-1,632,780,767,-1,780,913,767,-1,1070,1084,1068,-1,1070,904,1084,-1,55,456,216,-1,55,335,456,-1,188,26,38,-1,93,216,88,-1,216,448,88,-1,216,456,448,-1,497,56,440,-1,220,325,16,-1,753,1033,1053,-1,753,973,1033,-1,749,701,585,-1,585,678,749,-1,1120,1105,1020,-1,1020,704,1120,-1,591,289,524,-1,31,377,430,-1,31,21,377,-1,361,32,266,-1,361,34,32,-1,1047,598,498,-1,498,1049,1047,-1,962,499,562,-1,562,1034,962,-1,1120,582,646,-1,646,1105,1120,-1,486,555,843,-1,1015,995,1066,-1,1141,1154,1127,-1,1127,1088,1141,-1,1,23,27,-1,204,241,334,-1,241,418,334,-1,543,577,467,-1,543,651,577,-1,640,651,543,-1,640,905,651,-1,352,491,323,-1,352,404,491,-1,293,329,350,-1,329,399,350,-1,1043,1009,961,-1,66,49,75,-1,75,74,66,-1,577,371,397,-1,418,338,461,-1,418,241,338,-1,107,137,158,-1,158,130,107,-1,161,168,204,-1,161,81,168,-1,264,217,237,-1,217,264,227,-1,284,215,212,-1,330,354,345,-1,227,209,217,-1,100,66,85,-1,100,96,66,-1,457,471,475,-1,343,318,240,-1,174,300,165,-1,174,256,300,-1,257,286,252,-1,252,201,257,-1,157,147,196,-1,147,384,196,-1,195,97,185,-1,97,160,185,-1,412,443,365,-1,207,221,236,-1,570,356,589,-1,102,132,271,-1,233,398,514,-1,398,482,514,-1,298,247,434,-1,247,367,434,-1,187,247,241,-1,247,338,241,-1,581,551,478,-1,478,457,581,-1,156,142,113,-1,113,273,156,-1,374,393,432,-1,374,333,393,-1,244,142,156,-1,244,98,142,-1,655,311,476,-1,655,438,311,-1,73,292,133,-1,73,183,292,-1,188,335,26,-1,335,55,26,-1,670,762,666,-1,670,757,762,-1,670,666,534,-1,534,537,670,-1,441,422,513,-1,513,515,441,-1,347,422,441,-1,661,534,666,-1,661,517,534,-1,736,738,631,-1,736,833,738,-1,672,564,705,-1,564,504,705,-1,479,473,564,-1,538,38,468,-1,538,60,38,-1,852,847,940,-1,823,266,375,-1,375,837,823,-1,950,998,1023,-1,1149,1143,1150,-1,1149,1121,1143,-1,1142,1052,1133,-1,1142,1101,1052,-1,1068,954,1070,-1,1068,965,954,-1,1150,1094,1149,-1,1150,1074,1094,-1,1087,1084,952,-1,952,948,1087,-1,700,554,614,-1,614,756,700,-1,756,614,746,-1,746,1067,756,-1,665,822,959,-1,822,1075,959,-1,800,969,831,-1,506,268,449,-1,506,336,268,-1,1007,934,963,-1,483,509,612,-1,483,447,509,-1,774,684,645,-1,645,712,774,-1,483,445,435,-1,382,505,427,-1,382,494,505,-1,983,994,956,-1,956,976,983,-1,912,779,872,-1,912,791,779,-1,712,803,774,-1,712,682,803,-1,772,872,779,-1,839,743,783,-1,706,870,737,-1,707,871,783,-1,986,918,946,-1,387,239,389,-1,328,160,67,-1,325,210,127,-1,210,214,127,-1,876,1043,838,-1,876,1053,1043,-1,838,961,613,-1,838,1043,961,-1,10,42,84,-1,84,1,10,-1,11,7,50,-1,425,454,606,-1,1089,894,1065,-1,1020,1107,1152,-1,1020,1105,1107,-1,589,1069,570,-1,589,1102,1069,-1,649,280,777,-1,649,189,280,-1,80,1,84,-1,80,4,1,-1,425,606,1008,-1,606,900,1008,-1,1100,1089,1065,-1,1100,1083,1089,-1,1075,1132,959,-1,1075,1151,1132,-1,1109,729,889,-1,889,1126,1109,-1,423,580,642,-1,580,867,642,-1,893,878,868,-1,878,719,868,-1,866,672,705,-1,825,559,702,-1,825,807,559,-1,925,929,914,-1,925,942,929,-1,869,709,960,-1,1076,760,1087,-1,1052,948,608,-1,632,889,551,-1,1133,915,1143,-1,1133,836,915,-1,1052,608,836,-1,836,1133,1052,-1,780,502,857,-1,780,581,502,-1,70,274,294,-1,294,253,70,-1,13,3,151,-1,151,99,13,-1,62,45,89,-1,45,95,89,-1,795,878,893,-1,392,580,423,-1,767,913,954,-1,923,1099,1003,-1,1142,1090,1116,-1,982,1094,1074,-1,1074,989,982,-1,930,1094,982,-1,1071,1026,1093,-1,285,298,500,-1,285,326,298,-1,640,442,403,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlscapula_Geo_5_823_normalIndex_5()
		{
			int[] value = {403,582,640,-1,704,703,1120,-1,289,25,524,-1,289,14,25,-1,12,15,45,-1,45,62,12,-1,429,218,362,-1,429,389,218,-1,28,355,22,-1,355,324,22,-1,324,355,316,-1,152,172,149,-1,152,231,172,-1,40,320,260,-1,28,22,2,-1,119,152,149,-1,542,532,599,-1,599,583,542,-1,416,382,394,-1,394,477,416,-1,487,838,613,-1,497,1062,524,-1,935,933,987,-1,882,886,935,-1,979,763,964,-1,41,5,55,-1,55,216,41,-1,38,26,104,-1,120,268,242,-1,744,856,811,-1,744,863,856,-1,811,587,744,-1,607,744,587,-1,607,628,744,-1,981,856,919,-1,811,856,981,-1,918,884,909,-1,910,884,918,-1,720,192,134,-1,720,283,192,-1,1131,1106,1122,-1,1095,1106,1131,-1,1131,1138,1130,-1,1144,1138,1131,-1,987,1042,1041,-1,1042,987,933,-1,494,416,591,-1,494,382,416,-1,30,288,39,-1,30,260,288,-1,178,111,65,-1,178,173,111,-1,324,40,22,-1,324,320,40,-1,1088,1072,1081,-1,1088,1127,1072,-1,1131,1085,1095,-1,1130,1085,1131,-1,1130,1115,1085,-1,1130,1123,1115,-1,403,326,285,-1,403,442,326,-1,1090,1091,1116,-1,1129,1091,1090,-1,274,13,294,-1,274,3,13,-1,274,151,3,-1,274,70,151,-1,1070,877,904,-1,877,1070,1038,-1,551,780,632,-1,581,780,551,-1,877,502,525,-1,857,502,877,-1,948,540,608,-1,952,540,948,-1,1150,915,1003,-1,1143,915,1150,-1,730,1087,760,-1,1087,730,1046,-1,1113,896,855,-1,1140,896,1113,-1,832,1139,1117,-1,832,851,1139,-1,709,812,680,-1,812,709,869,-1,1058,1032,1061,-1,1058,997,1032,-1,1013,1024,951,-1,1013,997,1024,-1,763,1046,730,-1,979,1046,763,-1,680,826,628,-1,680,812,826,-1,761,574,605,-1,761,692,574,-1,858,719,878,-1,719,858,681,-1,394,566,477,-1,566,394,445,-1,439,435,417,-1,435,439,421,-1,893,942,925,-1,942,893,868,-1,859,914,929,-1,859,883,914,-1,702,450,522,-1,450,702,559,-1,793,453,419,-1,793,819,453,-1,750,419,428,-1,793,419,750,-1,1055,1126,889,-1,1126,1055,1118,-1,729,1060,625,-1,1060,729,1109,-1,500,1054,474,-1,1054,500,1017,-1,1079,1132,1135,-1,959,1132,1079,-1,799,486,843,-1,482,486,799,-1,1083,955,937,-1,955,1083,1100,-1,454,105,530,-1,105,454,425,-1,1145,1056,1057,-1,1008,1056,1145,-1,9,31,19,-1,31,9,21,-1,48,28,18,-1,48,24,28,-1,12,25,0,-1,25,12,56,-1,415,805,280,-1,805,415,890,-1,1102,611,850,-1,611,1102,589,-1,2,18,28,-1,14,18,2,-1,410,401,349,-1,396,401,410,-1,328,185,160,-1,407,185,328,-1,793,1014,1005,-1,793,750,1014,-1,892,983,967,-1,892,970,983,-1,892,752,970,-1,819,970,752,-1,1005,970,819,-1,902,918,903,-1,918,902,946,-1,967,976,928,-1,967,983,976,-1,718,707,783,-1,639,707,718,-1,707,862,871,-1,707,737,862,-1,977,835,932,-1,844,835,977,-1,633,599,620,-1,633,624,599,-1,906,1007,1002,-1,1007,906,934,-1,675,820,637,-1,675,809,820,-1,887,800,831,-1,911,800,887,-1,1052,1113,1076,-1,1052,1101,1113,-1,781,830,840,-1,781,796,830,-1,266,7,11,-1,266,32,7,-1,468,593,538,-1,593,468,536,-1,38,133,188,-1,38,60,133,-1,722,719,679,-1,694,719,722,-1,833,818,738,-1,833,816,818,-1,534,535,537,-1,479,535,534,-1,535,564,672,-1,535,479,564,-1,984,972,999,-1,972,984,847,-1,815,917,860,-1,806,917,815,-1,438,139,311,-1,438,369,139,-1,572,432,567,-1,572,520,432,-1,310,393,333,-1,310,402,393,-1,520,374,432,-1,437,374,520,-1,182,273,113,-1,309,273,182,-1,1144,1155,1153,-1,1147,1155,1144,-1,471,469,446,-1,471,478,469,-1,247,271,367,-1,271,247,187,-1,487,685,838,-1,458,685,487,-1,87,210,137,-1,210,87,214,-1,278,408,356,-1,278,350,408,-1,252,207,250,-1,252,221,207,-1,373,365,357,-1,412,365,373,-1,322,299,357,-1,322,250,299,-1,203,222,213,-1,203,170,222,-1,386,233,165,-1,386,398,233,-1,143,198,196,-1,198,143,150,-1,295,206,190,-1,295,229,206,-1,343,198,281,-1,240,198,343,-1,167,117,179,-1,167,129,117,-1,243,197,201,-1,243,219,197,-1,163,227,212,-1,163,209,227,-1,131,284,171,-1,131,215,284,-1,92,63,27,-1,63,92,76,-1,385,354,302,-1,388,354,385,-1,420,452,475,-1,364,452,420,-1,293,332,329,-1,145,332,293,-1,589,408,611,-1,408,589,356,-1,276,404,352,-1,276,411,404,-1,220,6,57,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlscapula_Geo_5_823_normalIndex_6()
		{
			int[] value = {16,6,220,-1,850,220,1008,-1,850,426,220,-1,735,843,555,-1,735,937,843,-1,711,508,495,-1,644,508,711,-1,241,168,187,-1,168,241,204,-1,124,154,128,-1,154,124,159,-1,262,314,194,-1,317,314,262,-1,175,61,153,-1,175,90,61,-1,1059,1039,1073,-1,1059,1072,1039,-1,1157,1154,1141,-1,1155,1154,1157,-1,1153,1157,1156,-1,1153,1155,1157,-1,1123,1119,1111,-1,1130,1119,1123,-1,1066,1035,1015,-1,1035,1066,1092,-1,1126,1015,1035,-1,1015,1126,1118,-1,767,889,632,-1,767,1055,889,-1,965,1046,979,-1,965,1068,1046,-1,46,430,460,-1,46,31,430,-1,29,516,21,-1,29,319,516,-1,84,428,419,-1,84,42,428,-1,890,1040,805,-1,890,1028,1040,-1,464,990,440,-1,464,992,990,-1,245,381,433,-1,245,122,381,-1,553,618,808,-1,484,618,553,-1,348,105,57,-1,348,406,105,-1,957,907,873,-1,957,1098,907,-1,780,1038,913,-1,780,857,1038,-1,1115,1066,1085,-1,1066,1115,1092,-1,1138,1153,1146,-1,1144,1153,1138,-1,1054,1157,1082,-1,1054,1156,1157,-1,1103,749,846,-1,1103,1104,749,-1,732,1016,647,-1,1016,732,901,-1,817,732,490,-1,817,894,732,-1,1065,894,817,-1,106,186,44,-1,272,186,106,-1,436,323,491,-1,436,141,323,-1,122,323,141,-1,122,245,323,-1,8,164,200,-1,6,164,8,-1,110,149,115,-1,110,77,149,-1,115,287,110,-1,94,287,115,-1,131,136,94,-1,131,123,136,-1,123,107,130,-1,123,131,107,-1,356,663,278,-1,356,570,663,-1,16,74,75,-1,16,127,74,-1,212,264,341,-1,227,264,212,-1,144,199,155,-1,199,144,176,-1,176,159,259,-1,176,154,159,-1,95,65,111,-1,45,65,95,-1,388,288,260,-1,388,385,288,-1,336,498,277,-1,506,498,336,-1,336,230,242,-1,336,213,230,-1,213,336,277,-1,261,842,908,-1,261,249,842,-1,170,197,219,-1,170,261,197,-1,120,230,305,-1,120,242,230,-1,248,222,304,-1,248,235,222,-1,201,224,257,-1,201,197,224,-1,286,499,465,-1,257,499,286,-1,327,275,339,-1,327,248,275,-1,50,226,223,-1,7,226,50,-1,7,32,226,-1,339,321,368,-1,321,339,275,-1,219,291,304,-1,219,243,291,-1,470,923,1003,-1,923,470,465,-1,368,365,443,-1,321,365,368,-1,357,318,373,-1,290,318,357,-1,196,221,157,-1,196,236,221,-1,91,328,67,-1,328,91,344,-1,61,19,53,-1,61,9,19,-1,160,53,67,-1,160,97,53,-1,360,401,358,-1,360,349,401,-1,195,378,297,-1,195,360,378,-1,315,175,297,-1,315,202,175,-1,234,378,306,-1,234,400,378,-1,409,315,400,-1,315,409,353,-1,4,52,1,-1,4,58,52,-1,76,126,79,-1,114,126,76,-1,114,307,265,-1,307,114,135,-1,239,92,72,-1,239,135,92,-1,346,265,359,-1,265,346,296,-1,355,24,177,-1,28,24,355,-1,296,330,345,-1,346,330,296,-1,301,279,317,-1,301,254,279,-1,279,228,302,-1,228,279,254,-1,258,173,178,-1,258,232,173,-1,228,232,312,-1,199,232,228,-1,74,85,66,-1,74,82,85,-1,194,340,251,-1,194,314,340,-1,166,206,180,-1,206,166,108,-1,191,179,138,-1,167,179,191,-1,198,181,281,-1,198,150,181,-1,179,103,166,-1,179,117,103,-1,342,518,282,-1,518,342,529,-1,503,540,525,-1,503,527,540,-1,525,462,503,-1,502,462,525,-1,462,475,452,-1,475,462,457,-1,489,364,238,-1,364,489,452,-1,551,729,469,-1,551,889,729,-1,434,446,469,-1,446,434,367,-1,253,121,246,-1,294,121,253,-1,35,99,331,-1,99,35,13,-1,190,121,118,-1,190,246,121,-1,64,47,54,-1,64,49,47,-1,271,168,102,-1,271,187,168,-1,75,148,16,-1,148,75,112,-1,334,371,269,-1,397,371,334,-1,200,371,381,-1,200,164,371,-1,256,433,485,-1,245,433,256,-1,508,386,300,-1,508,444,386,-1,975,644,711,-1,975,790,644,-1,379,88,448,-1,88,379,270,-1,579,576,561,-1,576,579,595,-1,741,911,849,-1,741,800,911,-1,595,560,626,-1,560,595,579,-1,626,616,773,-1,626,560,616,-1,662,773,616,-1,773,662,804,-1,1022,941,922,-1,1022,1001,941,-1,941,911,887,-1,1001,911,941,-1,784,944,754,-1,784,849,944,-1,968,804,771,-1,968,922,804,-1,993,771,789,-1,993,968,771,-1,1050,943,1031,-1,943,1050,980,-1,1010,789,802,-1,1010,993,789,-1,832,610,851,-1,832,630,610,-1,871,839,783,-1,871,895,839,-1,668,809,675,-1,668,759,809,-1,721,697,779,-1,721,743,697,-1,697,772,779,-1,697,714,772,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlscapula_Geo_5_823_normalIndex_7()
		{
			int[] value = {748,829,759,-1,748,770,829,-1,668,674,654,-1,674,668,745,-1,654,709,671,-1,654,674,709,-1,714,796,781,-1,796,714,776,-1,912,906,791,-1,912,934,906,-1,869,921,812,-1,869,951,921,-1,728,657,727,-1,728,671,657,-1,854,830,782,-1,830,854,902,-1,956,840,903,-1,872,840,956,-1,970,994,983,-1,970,963,994,-1,727,607,726,-1,607,727,657,-1,812,949,826,-1,812,921,949,-1,826,978,744,-1,826,949,978,-1,971,811,981,-1,811,971,725,-1,744,998,863,-1,998,744,978,-1,856,824,798,-1,856,863,824,-1,798,480,361,-1,480,798,824,-1,1049,998,1047,-1,998,1049,1023,-1,1051,1030,1045,-1,1030,1051,1095,-1,1122,1039,1072,-1,1106,1039,1122,-1,1039,1095,1051,-1,1095,1039,1106,-1,995,1114,996,-1,1108,1114,995,-1,1064,1088,1107,-1,1064,1141,1088,-1,655,957,881,-1,957,655,939,-1,786,881,873,-1,801,881,786,-1,755,764,693,-1,766,764,755,-1,873,683,786,-1,907,683,873,-1,722,723,818,-1,722,755,723,-1,635,659,723,-1,648,659,635,-1,648,696,638,-1,648,621,696,-1,659,631,738,-1,659,617,631,-1,617,573,631,-1,617,565,573,-1,601,565,641,-1,601,548,565,-1,558,703,704,-1,558,585,703,-1,530,348,629,-1,530,406,348,-1,454,554,606,-1,454,533,554,-1,1056,917,916,-1,1056,991,917,-1,935,931,933,-1,935,886,931,-1,864,886,792,-1,864,953,886,-1,864,739,810,-1,864,751,739,-1,931,920,1019,-1,931,953,920,-1,1028,1041,1040,-1,1028,987,1041,-1,940,1042,1019,-1,940,1018,1042,-1,920,758,852,-1,758,920,810,-1,710,758,688,-1,758,710,898,-1,898,813,1012,-1,813,898,710,-1,524,1044,1012,-1,1062,1044,524,-1,347,188,292,-1,347,372,188,-1,476,939,655,-1,476,619,939,-1,83,162,169,-1,73,162,83,-1,98,311,139,-1,244,311,98,-1,182,263,313,-1,182,113,263,-1,437,156,374,-1,437,244,156,-1,567,827,690,-1,827,567,860,-1,273,374,156,-1,273,333,374,-1,567,402,596,-1,567,393,402,-1,622,815,596,-1,622,715,815,-1,380,310,309,-1,380,405,310,-1,481,622,472,-1,622,481,623,-1,664,751,623,-1,664,739,751,-1,424,511,481,-1,414,511,424,-1,739,673,688,-1,739,664,673,-1,620,710,633,-1,710,620,813,-1,366,549,455,-1,366,369,549,-1,441,372,347,-1,372,441,451,-1,528,451,441,-1,528,531,451,-1,557,541,531,-1,557,731,541,-1,535,513,537,-1,563,513,535,-1,1011,1148,885,-1,1125,1148,1011,-1,775,1096,1148,-1,1096,775,814,-1,578,788,575,-1,775,788,578,-1,643,636,814,-1,636,643,523,-1,512,643,578,-1,512,493,643,-1,575,568,526,-1,568,575,594,-1,504,574,705,-1,519,574,504,-1,761,742,692,-1,742,761,834,-1,568,698,593,-1,568,658,698,-1,593,660,538,-1,593,698,660,-1,858,834,761,-1,858,845,834,-1,681,679,719,-1,681,652,679,-1,660,795,677,-1,660,845,795,-1,550,60,538,-1,550,162,60,-1,868,816,942,-1,868,694,816,-1,686,263,691,-1,686,313,263,-1,929,816,833,-1,816,929,942,-1,929,736,859,-1,929,833,736,-1,313,708,383,-1,313,686,708,-1,848,708,883,-1,848,733,708,-1,488,717,459,-1,488,733,717,-1,702,717,825,-1,702,699,717,-1,539,463,588,-1,507,463,539,-1,545,510,699,-1,510,545,542,-1,545,439,466,-1,439,545,522,-1,431,509,447,-1,509,431,521,-1,417,466,439,-1,466,417,427,-1,416,580,392,-1,416,477,580,-1,427,532,466,-1,532,427,505,-1,421,431,447,-1,421,450,431,-1,459,699,510,-1,699,459,717,-1,859,650,821,-1,859,736,650,-1,883,686,914,-1,686,883,708,-1,573,588,650,-1,573,539,588,-1,695,925,691,-1,695,893,925,-1,893,677,795,-1,893,695,677,-1,691,169,592,-1,169,691,263,-1,652,605,571,-1,681,605,652,-1,845,698,834,-1,845,660,698,-1,501,536,468,-1,536,501,552,-1,593,526,568,-1,526,593,536,-1,834,658,742,-1,658,834,698,-1,594,658,568,-1,658,594,667,-1,512,575,526,-1,512,578,575,-1,270,493,724,-1,270,523,493,-1,594,788,841,-1,788,594,575,-1,1148,788,775,-1,1148,1125,788,-1,1077,634,603,-1,1011,634,1077,-1,563,672,687,-1,535,672,563,-1,634,531,528,-1,634,557,531,-1,451,541,496,-1,451,531,541,-1,473,519,504,-1,473,517,519,-1,496,372,451,-1,496,335,372,-1,347,455,422,-1,347,366,455,-1,624,673,597,-1,624,633,673,-1,688,633,710,-1,688,673,633,-1,597,664,511,-1,664,597,673,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlscapula_Geo_5_823_normalIndex_8()
		{
			int[] value = {459,424,488,-1,459,414,424,-1,511,623,481,-1,511,664,623,-1,623,715,622,-1,715,623,751,-1,481,380,424,-1,405,380,481,-1,596,472,622,-1,472,596,402,-1,860,596,815,-1,860,567,596,-1,309,333,273,-1,333,309,310,-1,313,303,182,-1,303,313,383,-1,476,244,437,-1,476,311,244,-1,1097,619,778,-1,1097,939,619,-1,73,139,183,-1,73,98,139,-1,1012,591,524,-1,1012,813,591,-1,688,810,739,-1,688,758,810,-1,1025,1040,1041,-1,1025,1021,1040,-1,999,1006,984,-1,1006,999,992,-1,1019,933,931,-1,933,1019,1042,-1,1009,935,987,-1,935,1009,1033,-1,882,792,886,-1,882,806,792,-1,916,806,882,-1,917,806,916,-1,916,1057,1056,-1,916,974,1057,-1,530,533,454,-1,530,629,533,-1,533,678,585,-1,678,533,629,-1,586,704,822,-1,558,704,586,-1,768,584,576,-1,768,746,584,-1,539,600,507,-1,600,539,548,-1,548,573,565,-1,548,539,573,-1,617,641,565,-1,617,638,641,-1,696,849,784,-1,696,741,849,-1,648,617,659,-1,648,638,617,-1,621,635,683,-1,621,648,635,-1,679,755,722,-1,679,766,755,-1,679,740,766,-1,740,679,652,-1,576,665,794,-1,665,576,584,-1,1108,1015,1118,-1,1108,995,1015,-1,1073,1051,1029,-1,1073,1039,1051,-1,950,863,998,-1,950,824,863,-1,769,824,950,-1,769,480,824,-1,361,823,798,-1,361,266,823,-1,919,798,823,-1,919,856,798,-1,1047,978,1071,-1,1047,998,978,-1,430,891,460,-1,430,928,891,-1,628,657,680,-1,657,628,607,-1,726,854,727,-1,726,875,854,-1,963,912,994,-1,963,934,912,-1,840,902,903,-1,840,830,902,-1,727,782,728,-1,782,727,854,-1,680,671,709,-1,671,680,657,-1,921,1024,1026,-1,1024,921,951,-1,1014,1002,1007,-1,1002,1014,1037,-1,772,840,872,-1,772,781,840,-1,796,782,830,-1,796,770,782,-1,671,748,654,-1,748,671,728,-1,654,759,668,-1,654,748,759,-1,791,803,682,-1,791,906,803,-1,721,712,718,-1,721,682,712,-1,765,743,839,-1,743,765,697,-1,759,880,809,-1,759,829,880,-1,745,675,676,-1,745,668,675,-1,639,712,645,-1,718,712,639,-1,547,645,684,-1,602,645,547,-1,895,936,1004,-1,871,936,895,-1,802,947,1010,-1,947,802,820,-1,630,785,637,-1,630,832,785,-1,802,610,630,-1,802,789,610,-1,1004,993,1010,-1,993,1004,1050,-1,936,938,980,-1,936,862,938,-1,853,980,938,-1,853,943,980,-1,1031,993,1050,-1,1031,968,993,-1,627,789,771,-1,627,610,789,-1,627,804,662,-1,627,771,804,-1,1022,968,1031,-1,968,1022,922,-1,855,616,760,-1,662,616,855,-1,579,730,560,-1,579,763,730,-1,134,88,270,-1,134,93,88,-1,636,448,924,-1,636,379,448,-1,1048,711,713,-1,1048,975,711,-1,901,865,790,-1,901,988,865,-1,397,418,467,-1,334,418,397,-1,112,269,148,-1,269,112,161,-1,112,49,64,-1,49,112,75,-1,326,247,298,-1,247,326,338,-1,81,54,102,-1,81,64,54,-1,66,121,35,-1,96,121,66,-1,121,96,118,-1,132,71,238,-1,132,59,71,-1,35,49,66,-1,35,47,49,-1,246,206,108,-1,246,190,206,-1,294,35,121,-1,13,35,294,-1,331,253,246,-1,253,331,99,-1,625,469,729,-1,434,469,625,-1,282,489,238,-1,489,282,518,-1,452,503,462,-1,452,489,503,-1,489,527,503,-1,489,518,527,-1,518,546,527,-1,518,529,546,-1,71,117,101,-1,103,117,71,-1,608,556,836,-1,608,546,556,-1,281,167,191,-1,181,167,281,-1,138,166,180,-1,179,166,138,-1,544,836,556,-1,836,544,915,-1,413,196,384,-1,413,143,196,-1,308,229,363,-1,180,229,308,-1,351,317,262,-1,351,301,317,-1,69,116,86,-1,87,116,69,-1,341,301,351,-1,237,301,341,-1,205,254,301,-1,205,211,254,-1,177,20,79,-1,20,177,24,-1,359,340,346,-1,359,376,340,-1,359,387,395,-1,359,307,387,-1,363,409,308,-1,363,395,409,-1,362,58,202,-1,52,58,362,-1,308,400,234,-1,400,308,409,-1,297,400,315,-1,400,297,378,-1,297,153,195,-1,153,297,175,-1,306,360,358,-1,360,306,378,-1,410,443,412,-1,443,410,407,-1,470,915,544,-1,470,1003,915,-1,465,147,286,-1,465,470,147,-1,275,322,321,-1,322,275,291,-1,223,327,339,-1,226,327,223,-1,248,291,275,-1,248,304,291,-1,562,257,224,-1,499,257,562,-1,305,226,140,-1,305,327,226,-1,109,140,34,-1,109,120,140,-1,213,235,230,-1,213,222,235,-1,170,249,261,-1,170,203,249,-1,268,109,449,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getlscapula_Geo_5_823_normalIndex_9()
		{
			int[] value = {109,268,120,-1,65,15,39,-1,65,45,15,-1,0,39,15,-1,39,0,30,-1,111,119,95,-1,111,152,119,-1,184,163,155,-1,184,209,163,-1,164,16,148,-1,164,6,16,-1,193,137,171,-1,137,193,116,-1,325,1000,399,-1,325,615,1000,-1,158,399,329,-1,158,210,399,-1,146,131,94,-1,215,131,146,-1,128,94,124,-1,146,94,128,-1,77,415,280,-1,415,77,110,-1,95,189,89,-1,189,95,78,-1,276,233,390,-1,276,165,233,-1,272,141,436,-1,272,106,141,-1,609,411,647,-1,404,411,609,-1,647,1103,609,-1,647,1016,1103,-1,808,669,846,-1,808,618,669,-1,701,1104,1080,-1,701,749,1104,-1,1036,1060,1109,-1,1060,1036,1063,-1,955,817,656,-1,955,1100,817,-1,426,325,220,-1,426,615,325,-1,348,44,186,-1,348,33,44,-1,186,553,348,-1,186,484,553,-1,678,846,749,-1,797,846,678,-1,464,1006,992,-1,464,649,1006,-1,1021,805,1040,-1,1021,777,805,-1,1043,1033,1009,-1,1043,1053,1033,-1,423,48,392,-1,36,48,423,-1,453,29,80,-1,453,319,29,-1,480,449,109,-1,769,449,480,-1,908,1071,1093,-1,908,842,1071,-1,662,896,627,-1,855,896,662,-1,1139,1101,1142,-1,1101,1139,1140,-1,767,965,888,-1,767,954,965,-1,888,1055,767,-1,1055,888,1124,-1,1104,861,1080,-1,861,1104,905,-1,690,700,756,-1,700,690,827,-1,543,442,640,-1,442,543,461,-1,1035,1109,1126,-1,1035,1036,1109,-1,1045,1085,1066,-1,1085,1045,1030,-1,1130,1146,1119,-1,1138,1146,1130,-1,1115,1111,1092,-1,1123,1111,1115,-1,159,115,172,-1,124,115,159,-1,53,153,61,-1,153,53,97,-1,90,202,58,-1,202,90,175,-1,171,337,193,-1,171,284,337,-1,317,330,314,-1,279,330,317,-1,312,385,302,-1,312,258,385,-1,69,82,87,-1,69,85,82,-1,425,57,105,-1,57,425,220,-1,713,495,485,-1,711,495,713,-1,555,644,735,-1,555,508,644,-1,370,278,663,-1,370,255,278,-1,1008,1102,850,-1,1008,1145,1102,-1,51,200,122,-1,51,8,200,-1,799,656,514,-1,656,799,955,-1,411,390,490,-1,390,411,276,-1,611,399,1000,-1,611,408,399,-1,161,334,269,-1,204,334,161,-1,364,271,132,-1,364,420,271,-1,128,144,163,-1,128,154,144,-1,345,225,296,-1,345,316,225,-1,316,177,225,-1,355,177,316,-1,337,262,193,-1,337,351,262,-1,316,354,388,-1,316,345,354,-1,184,211,205,-1,184,155,211,-1,10,79,20,-1,79,10,63,-1,201,250,243,-1,252,250,201,-1,143,342,125,-1,342,143,413,-1,101,129,125,-1,117,129,101,-1,129,181,150,-1,129,167,181,-1,150,125,129,-1,125,150,143,-1,102,59,132,-1,54,59,102,-1,305,248,327,-1,248,305,235,-1,223,368,344,-1,368,223,339,-1,43,91,67,-1,91,43,37,-1,322,243,250,-1,322,291,243,-1,207,240,318,-1,240,207,236,-1,255,350,278,-1,255,293,350,-1,86,193,262,-1,193,86,116,-1,1155,1136,1154,-1,1136,1155,1147,-1,1146,1156,1134,-1,1146,1153,1156,-1,303,309,182,-1,380,309,303,-1,405,402,310,-1,405,472,402,-1,778,520,572,-1,778,619,520,-1,60,73,133,-1,60,162,73,-1,813,494,591,-1,620,494,813,-1,991,860,917,-1,860,900,827,-1,991,900,860,-1,528,603,634,-1,603,528,515,-1,563,515,513,-1,563,603,515,-1,603,687,966,-1,603,563,687,-1,722,816,694,-1,816,722,818,-1,526,552,512,-1,536,552,526,-1,379,523,270,-1,379,636,523,-1,36,428,42,-1,428,36,423,-1,676,637,785,-1,676,675,637,-1,809,947,820,-1,809,880,947,-1,803,1002,932,-1,803,906,1002,-1,926,977,1037,-1,977,926,867,-1,844,612,835,-1,844,590,612,-1,620,505,494,-1,620,599,505,-1,867,844,977,-1,787,844,867,-1,770,765,829,-1,770,776,765,-1,884,891,909,-1,837,891,884,-1,903,909,976,-1,903,918,909,-1,516,967,377,-1,516,892,967,-1,1005,963,970,-1,1005,1007,963,-1,239,218,389,-1,72,218,239,-1,407,349,185,-1,410,349,407,-1,89,440,62,-1,89,464,440,-1,897,370,663,-1,653,370,897,-1,653,267,370,-1,753,267,653,-1,613,890,415,-1,890,613,961,-1,56,62,440,-1,56,12,62,-1,0,14,2,-1,14,0,25,-1,36,24,48,-1,36,20,24,-1,17,21,9,-1,21,17,29,-1,43,31,46,-1,43,19,31,-1,897,1145,1057,-1,897,734,1145,-1,799,937,955,-1,799,843,937,-1,444,482,398,-1,444,486,482,-1,1124,1118,1055,-1,1124,1108,1118,-1,569,1054,1082,-1,569,474,1054,-1,625,1017,500,-1,1017,625,1060,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getlscapula_Geo_5_823_normalIndex_10()
		{
			int[] value = {1137,1108,1124,-1,1137,1114,1108,-1,642,428,423,-1,642,750,428,-1,819,319,453,-1,752,319,819,-1,883,821,848,-1,883,859,821,-1,421,522,450,-1,522,421,439,-1,417,445,394,-1,417,435,445,-1,787,580,477,-1,867,580,787,-1,761,681,858,-1,761,605,681,-1,705,692,866,-1,705,574,692,-1,1093,1024,1058,-1,1024,1093,1026,-1,674,960,709,-1,899,960,674,-1,869,1013,951,-1,1013,869,960,-1,1074,1061,1032,-1,1061,1074,1099,-1,745,899,674,-1,745,927,899,-1,1117,785,832,-1,1086,785,1117,-1,1140,851,896,-1,1139,851,1140,-1,1076,855,760,-1,1113,855,1076,-1,952,525,540,-1,904,525,952,-1,948,1076,1087,-1,1076,948,1052,-1,913,1070,954,-1,913,1038,1070,-1,1116,1086,1117,-1,1091,1086,1116,-1,1127,1122,1072,-1,1127,1128,1122,-1,173,152,111,-1,231,152,173,-1,39,178,65,-1,39,288,178,-1,1018,1041,1042,-1,1041,1018,1025,-1,1122,1136,1147,-1,1122,1128,1136,-1,1147,1131,1122,-1,1147,1144,1131,-1,192,93,134,-1,192,41,93,-1,283,501,391,-1,283,720,501,-1,981,986,971,-1,910,986,981,-1,919,910,981,-1,919,884,910,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getlscapula_Coord_6_823_point_1()
		{
			double[] value = {5.5856,48.6059,-1.942,5.5183,48.5621,-2.0224,5.5744,48.6558,-2.0486,3.896,47.1492,-3.5194,3.9025,47.078,-3.5703,4.0495,47.1514,-3.4308,5.8377,50.0058,-1.4171,5.8596,49.9795,-1.2382,5.8961,49.984,-1.2321,5.8393,49.929,-1.0811,5.8325,49.9523,-1.0762,5.8237,49.9464,-1.2689,5.8394,49.9684,-1.2393,5.8932,49.9043,-0.8513,5.9331,49.8763,-0.8384,5.9295,49.8932,-0.8273,3.3139,50.4986,-2.1251,3.5164,50.4685,-1.9717,3.5213,50.4467,-1.9825,2.8908,50.6133,-2.4599,2.8377,50.5203,-2.587,2.8042,50.5333,-2.6286,2.952,50.5979,-2.4203,4.1839,50.058,-1.4458,4.0551,50.1923,-1.4249,4.1793,50.0239,-1.4302,2.7721,50.4307,-2.5756,2.7618,50.4854,-2.6168,2.7415,50.3507,-2.6737,3.7552,50.2757,-1.7379,3.5425,50.4063,-1.8374,3.5505,50.387,-1.8505,2.7608,50.3157,-2.6052,2.7468,50.1985,-2.7674,2.735,50.1794,-2.7388,2.7383,50.1824,-2.7364,2.7837,50.301,-2.5878,2.9427,50.1651,-2.6262,2.8041,50.1882,-2.6967,2.8046,50.1735,-2.6981,3.2104,49.478,-2.7434,3.1111,49.4652,-2.7734,3.1551,49.4482,-2.7909,2.7692,49.4251,-3.1491,2.7591,49.4604,-3.1305,2.7315,49.5013,-3.2378,2.8617,50.2458,-2.8919,2.7466,50.2077,-2.7755,2.8631,50.3229,-2.8577,2.7503,50.1792,-2.8059,5.6539,49.1017,-1.4829,5.6599,49.1207,-1.4833,5.6533,49.1355,-1.4781,5.4757,49.5648,-1.2334,5.4878,49.5767,-1.1227,5.74,49.4532,-1.0666,5.6873,49.4714,-0.993,4.196,47.7233,-3.3878,4.382,47.8347,-3.2506,4.4059,47.8224,-3.2495,5.0132,47.8532,-2.8746,5.0104,47.8036,-2.7997,4.8716,47.6477,-2.9329,5.1441,47.9298,-2.7673,5.2473,48.0213,-2.6473,5.2604,48.006,-2.634,5.2414,48.2466,-2.6947,5.3473,48.3114,-2.5538,5.3459,48.3013,-2.5317,5.3465,48.3314,-2.5934,5.3858,48.3714,-2.459,5.4414,48.4753,-2.3917,5.4267,48.448,-2.3063,5.3862,48.3952,-2.5157,6.6335,49.7218,-1.9277,6.5327,49.6564,-1.8664,6.4737,49.7031,-2.0215,2.8742,49.8301,-3.1293,2.8398,49.8819,-3.128,2.9565,50.0128,-3.0479,5.4079,49.9855,-2.4679,5.4203,50.0222,-2.4879,5.6247,49.9501,-2.3815,4.6195,49.3087,-2.1852,4.6152,49.3242,-2.1395,4.5929,49.3532,-2.1897,4.6027,49.3583,-2.1533,5.103,48.171,-2.7868,5.2213,48.261,-2.6965,5.0817,48.1846,-2.7937,5.601,48.6184,-1.9166,5.5708,48.6088,-1.9265,5.3334,48.3409,-2.6003,5.3916,48.223,-2.4073,5.3849,48.2169,-2.3925,5.2669,47.9967,-2.6225,4.9939,47.8535,-2.8989,5.0045,47.8669,-2.8879,4.552,50.0046,-3.0249,4.6583,50.0612,-2.9858,4.6655,50.044,-2.9762,4.549,50.02,-3.036,3.0994,50.1991,-2.979,3.0925,50.195,-2.9814,3.0753,50.217,-2.9826,2.8653,49.0854,-3.488,2.8618,49.0864,-3.4908,2.8508,49.0965,-3.4759,2.8688,49.1015,-3.4732,5.9709,49.0339,-1.8181,5.9739,49.0307,-1.7992,5.9797,48.9433,-1.7829,5.9812,48.9418,-1.8016,5.7705,49.4008,-1.4914,5.7587,49.4695,-1.4004,5.7676,49.4546,-1.3945,5.7638,49.4175,-1.5005,5.6294,49.2993,-1.0628,5.6413,49.297,-1.0782,5.7294,49.4251,-1.1103,5.7255,49.4098,-1.1256,3.2891,47.9557,-3.6801,3.1427,48.2897,-3.6716,3.1435,48.2944,-3.6951,3.2914,47.9635,-3.6589,2.8177,49.097,-3.4426,2.7628,49.3522,-3.3264,2.7691,49.3559,-3.3465,2.8144,49.0935,-3.4217,2.7218,49.6762,-3.1902,2.7196,49.6678,-3.1717,2.7647,49.8908,-3.0651,2.7628,49.9003,-3.0797,3.0221,50.6841,-2.2929,3.0189,50.6678,-2.2794,3.2195,50.6989,-2.0878,3.2283,50.7101,-2.0984,4.3689,49.8357,-1.3778,4.3751,49.845,-1.3837,4.1888,50.0684,-1.4589,4.6684,49.6674,-1.2634,4.6631,49.6731,-1.2577,4.6711,49.6634,-1.2691,4.6814,49.6684,-1.2696,5.5938,49.1826,-1.1448,5.5772,49.1826,-1.1363,5.691,49.2236,-0.3457,5.6833,49.2201,-0.3606,5.7008,49.2164,-0.3634,4.8042,49.5976,-1.3211,4.8097,49.6112,-1.3219,4.8236,49.6055,-1.3222,4.7091,49.6156,-1.5908,4.7045,49.6268,-1.6096,4.7021,49.63,-1.6028,4.7169,49.6185,-1.607,3.1328,48.3039,-3.6684,3.4832,50.6265,-1.7707,3.4688,50.6364,-1.794,3.4715,50.626,-1.7702,4.6647,49.5384,-1.4907,4.667,49.5273,-1.4871,4.6759,49.5415,-1.503,4.6594,49.5449,-1.4841,4.6809,49.5295,-1.484,4.66,49.6829,-1.2645,4.5794,48.6044,-2.5916,4.2552,48.6771,-2.6716,4.2637,48.659,-2.6795,2.8758,49.4327,-2.9379,2.8636,49.4651,-2.9448,3.4556,47.7724,-3.7445,3.4758,48.0285,-3.6616,3.6199,47.86,-3.6022,3.3821,47.9646,-3.7277,4.0624,49.0358,-2.8115,3.6989,49.2197,-2.8951,4.1284,49.0946,-2.7748,3.8486,49.3099,-2.7645,3.8913,48.9333,-2.8833,3.9735,48.9613,-2.8641,4.1892,48.7852,-2.838,4.1263,48.7468,-2.8765,3.6196,49.0247,-2.947,3.7897,48.903,-2.9432,3.3937,49.2153,-2.9865,3.566,49.1122,-2.9556,3.5331,49.315,-2.8835,3.1294,49.0525,-3.2978,3.2504,49.1422,-3.1311,3.2581,48.8987,-3.2098,3.3837,48.9972,-3.0907,3.4123,50.15,-2.9693,3.2678,50.1952,-3.0257,3.2455,50.117,-2.8973,3.2606,50.2127,-3.0376,3.3906,50.2509,-3.0949,3.45,50.204,-3.0977,3.1629,50.2607,-3.0042,3.2944,49.8726,-2.8181,3.4155,50.0387,-2.8136,3.5158,49.8597,-2.7248,3.4602,49.661,-2.7606,3.1824,50.0517,-2.8973,2.7493,49.5024,-3.2664,2.8123,49.3523,-3.366,2.8038,49.4836,-3.3137,3.3503,49.4346,-2.8629,3.1893,49.6105,-2.8868,4.721,47.6259,-2.8325,4.8529,47.8226,-2.7316,4.7266,47.8244,-2.8141,4.1407,47.0324,-3.5161,3.9399,47.0356,-3.6604,3.9683,47.0536,-3.6781,4.125,47.0296,-3.4868,5.305,48.1742,-2.6438,5.3401,48.286,-2.4942,5.9098,49.0316,-1.864,5.7632,49.2855,-1.737,5.8219,49.2826,-1.7147,5.2654,49.2424,-1.93,5.3294,49.3238,-1.7756,5.3818,49.1153,-1.86,5.2752,49.3475,-1.8624,5.503,48.5924,-2.2201,5.4521,48.5269,-2.2055,5.4744,48.5449,-2.284,5.6656,48.6831,-1.9156,5.6463,48.6545,-1.8434,5.2499,47.9851,-2.5834,5.1433,47.8885,-2.6903,5.1537,47.9168,-2.7509,5.3733,48.3597,-2.4168,5.4012,48.3113,-2.3255,5.4371,48.4109,-2.2221,5.2864,48.1587,-2.6612,5.17,48.1047,-2.7054,3.3846,47.7377,-3.7747,3.3298,47.9265,-3.765,5.1386,50.1493,-2.51,5.3373,50.1005,-2.261,5.3674,50.0993,-2.3408,6.3498,49.6532,-1.9359,6.3909,49.6686,-1.9809,6.4279,49.6377,-1.9265,6.2195,49.659,-1.9064,6.2262,49.676,-1.9521,6.3451,49.6481,-1.8861,5.9454,49.9832,-1.2189,6.1936,50.0098,-0.9732,6.1863,49.9876,-1.1567,5.9654,49.9744,-1.014,4.6879,49.973,-2.8566,4.8768,49.9007,-2.6316,4.6522,49.8933,-2.6559,4.8722,49.9885,-2.7887,6.0061,49.6936,-2.0621,5.9766,49.659,-2.0301,5.75,49.6483,-2.1402,5.793,49.7155,-2.1651,6.1273,49.7643,-1.5185,6.3684,49.7379,-1.5092,6.3776,49.7768,-1.3918,6.0018,49.6612,-1.7535,6.3026,49.7084,-1.6144,6.1023,49.7424,-1.5638,6.1845,49.6616,-1.7788,3.9743,50.2525,-1.5028,3.8609,50.279,-1.6724,3.7745,50.3907,-1.6033,5.5713,49.5757,-2.1402,5.5728,49.6406,-2.2181,5.7285,49.5994,-2.0575,5.529,50.0561,-1.7789,5.2804,50.1036,-2.1022,5.5114,50.0903,-2.0578,5.9563,49.9524,-0.8041,5.9897,49.9693,-0.7677,5.9196,50.0281,-1.0499,5.677,49.8397,-1.7534,5.9035,49.836,-1.6158,5.774,49.8811,-1.625,5.8213,49.7466,-1.7596,5.0935,50.0201,-2.3772,5.2973,49.9967,-2.1172,5.3274,50.0331,-2.1173,4.6176,49.8937,-2.5935,4.3606,49.952,-2.6997,4.5859,49.8334,-2.5435,4.4064,50.149,-2.7837,4.6561,50.0404,-2.6646,4.6714,50.0974,-2.6919,5.6176,49.206,-1.3802,5.6117,49.17,-1.3535,5.622,49.1534,-1.4084,5.6286,49.1609,-1.4239,5.9363,49.2147,-0.1882,5.9373,49.1886,-0.2637,6.0415,49.1978,-0.248,5.0134,49.3486,-0.9356,5.2409,49.3216,-0.8549,5.1824,49.2856,-0.7911,4.9644,49.3567,-1.063,4.4741,49.7272,-1.3788,4.344,49.8513,-1.4079,4.4664,49.7114,-1.3981,3.4711,48.6399,-3.1214,3.2617,48.3361,-3.4385,3.5527,48.3568,-3.3108,3.4349,48.7001,-3.0251,3.1783,48.4793,-3.3672,5.3829,48.3636,-2.4371,5.0482,48.0622,-2.5778,5.1715,48.251,-2.4122,5.0878,48.2822,-2.489,4.9416,48.0933,-2.6175,3.9299,47.613,-3.3665,3.6757,47.5949,-3.5435,3.9109,47.3654,-3.4356,5.4943,49.3329,-0.3895,5.5168,49.262,-0.4526,4.3944,49.6703,-2.0193,4.2002,49.7493,-2.2763,4.5081,49.5626,-1.9271,4.5061,49.5408,-2.0088,4.7574,49.1851,-1.9926,4.7143,49.1255,-2.078,4.8855,48.9744,-1.9314,4.8889,49.0416,-1.8533,5.128,48.5819,-2.0404,5.0994,48.6696,-1.9205,4.9276,48.6923,-2.1601,4.8833,48.8066,-2.0961,4.8752,48.9092,-2.0242,5.0927,48.7364,-1.8377,2.8916,49.654,-2.9737,2.8438,49.8526,-2.9799,2.815,49.659,-3.0674,3.799,50.0114,-1.9823,3.6865,50.0869,-2.0163,3.7024,50.0624,-2.0467,3.5679,50.1669,-2.0523,3.3101,50.2568,-2.2597,3.5593,50.1316,-2.1333,3.3489,50.3395,-2.1292,2.8473,50.0373,-2.8619,3.0235,49.8097,-2.8253,2.9957,50.009,-2.7675,2.9087,50.2945,-2.5513,3.7826,50.0551,-1.9324,3.9521,50.0446,-1.7258,3.7659,50.0999,-1.883,3.968,49.962,-1.8479,3.7663,50.1809,-1.8127,3.5738,50.2458,-1.9661,3.5749,50.2817,-1.9284,3.4101,50.3591,-2.0276,4.6048,49.292,-2.1877,4.5955,49.2282,-2.1847,4.6844,49.2931,-2.0817,4.9874,49.0932,-1.5556,5.0358,48.9134,-1.6971,5.1107,49.0363,-1.4569,4.0711,49.8722,-2.0686,4.1395,49.8653,-1.9382,4.0083,49.9026,-1.946,5.1966,49.2851,-1.0397,5.1709,49.2281,-1.1893,5.3475,49.295,-1.0449,5.3276,49.2175,-1.1754,5.3964,49.2616,-0.6404,4.7884,49.4104,-1.162,4.9299,49.3071,-1.2605,4.8008,49.3885,-1.3174,4.5671,49.6246,-1.4124,4.5625,49.6283,-1.4111,4.5416,49.6083,-1.4382,5.7321,49.3613,-0.2529,5.6483,49.2865,-0.2633,5.9945,49.285,-0.1992,4.724,49.5065,-1.4322,4.7724,49.5448,-1.4797,4.4902,49.8189,-1.5078,4.4968,49.7761,-1.3426,4.654,49.6906,-1.4251,3.0542,50.6031,-2.223,3.2382,50.5693,-2.0444,3.2126,50.6078,-2.0505,5.4704,49.3196,-0.7096,5.3927,49.3548,-0.8873,4.7011,49.5087,-1.166,4.7616,49.588,-1.0117,4.7203,49.592,-1.2128,4.7921,49.5161,-0.9403,4.6603,49.4826,-1.4928,4.6935,49.4658,-1.4097,4.65,49.5071,-1.4664,4.5161,49.5958,-1.7796,4.631,49.4811,-1.6881,4.5704,49.521,-1.6103,4.2481,49.809,-1.7738,4.2501,49.8073,-1.6781,4.1156,49.9339,-1.6537,2.9682,49.29,-3.0483,3.2254,49.4049,-2.7944,2.9133,49.4236,-2.9656,3.2729,49.2448,-2.8669,3.7613,50.235,-1.7692,3.9502,50.1034,-1.6515,5.7399,49.0645,-1.5871,5.7086,49.0192,-1.5647,5.838,49.0008,-1.6843,5.8509,48.9354,-1.6686,4.3886,47.1771,-3.3335,4.3625,47.1846,-3.2845,5.6789,49.35,-0.6045,5.5509,49.3787,-0.7788,5.7057,49.4701,-0.5635,5.5817,49.4904,-0.7677,5.5092,49.3861,-0.9358,5.628,49.4797,-0.9022,5.5992,49.1421,-1.2491,5.603,49.1967,-1.2644,5.6669,48.7677,-2.0159,5.652,48.7204,-1.9541,5.5989,48.686,-2.0959,5.0363,47.8788,-2.6079,5.162,48.0174,-2.5203,4.9604,47.783,-2.6719,4.8832,47.6152,-2.772,4.7814,47.4405,-2.9461,4.6519,47.32,-3.0111,4.6436,47.3166,-3.0725,4.8008,47.4268,-2.8488,3.1755,48.2707,-3.7228,3.75,47.186,-3.7777,3.7045,47.1774,-3.7423,3.4633,47.5219,-3.6847,3.4936,47.5517,-3.7862,2.9221,48.7963,-3.6644,2.8766,48.8754,-3.5765,2.8588,50.0615,-3.0236,2.7611,50.0568,-2.9683,3.9469,50.3264,-1.4529,3.6901,50.5364,-1.5952,3.4495,50.6042,-1.9098,3.2295,50.6699,-2.1166,5.3242,49.5892,-1.2911,5.1949,49.6688,-1.0093,5.1953,49.6924,-0.9379,5.4017,49.6016,-0.829,4.7999,49.6882,-1.2615,4.7474,49.5377,-1.262,4.4016,49.8928,-1.5062,4.6623,49.6737,-1.4162,4.6591,49.6162,-1.395,2.841,50.4457,-2.7316,2.7652,50.501,-2.6323,2.7441,50.3639,-2.6897,6.1328,49.8213,-0.6594,6.0849,49.8185,-0.7747,6.4378,49.874,-0.6578,5.6951,49.9443,-1.596,5.8161,49.9251,-1.3326,5.9157,49.8721,-1.089,5.924,49.8788,-1.3254,5.6587,49.0212,-1.4688,5.6384,49.044,-1.4292,5.6979,48.8883,-1.4122,5.7493,48.8689,-1.4824,5.6277,48.8807,-1.1853,5.6149,48.9889,-1.3278,5.7726,48.7795,-1.2804,5.3439,49.6246,-0.7759,5.5224,49.5713,-0.5784,5.7933,49.445,-0.263,5.8669,49.4779,-0.3785,5.6852,49.5216,-0.4651,5.5821,49.4898,-0.4175,5.2582,49.5934,-0.6509,5.4339,49.5293,-0.5334,4.9173,49.6696,-0.9234,5.0788,49.6418,-0.7621,4.9555,49.7417,-1.0234,5.1592,49.7119,-0.8848,5.5291,49.4093,-0.3964,5.3155,49.3782,-0.5166,5.3504,49.4232,-0.5216,6.0549,49.3476,-0.2251,4.8601,49.5738,-0.8738,3.4832,50.5282,-1.7505,3.6821,50.5315,-1.5884,3.687,50.4396,-1.5667,3.8864,50.2658,-1.4213,3.9413,50.3163,-1.444,4.0471,50.1196,-1.4067,4.0135,50.0767,-1.4479,4.0758,49.9285,-1.7291,4.3254,49.8462,-1.4205,4.1674,49.9826,-1.414,4.4553,49.687,-1.4168,4.2784,49.7914,-1.4686,4.42,49.6255,-1.4896,4.4947,49.5605,-1.5156,4.3865,49.6958,-1.7007,4.4422,49.6678,-1.8333,3.3448,50.4421,-2.0181,3.2858,50.4662,-2.016,3.1068,50.4934,-2.1768,3.1472,50.4515,-2.1777,4.6465,47.4431,-2.9241,4.488,47.4283,-3.058,4.2966,47.3065,-3.2377,4.2961,47.3678,-3.2224,3.4968,47.5084,-3.6299,3.7236,47.2052,-3.6297,3.4189,47.7617,-3.5951,3.3627,47.7357,-3.663,5.0365,48.2893,-2.5221,5.2141,48.3438,-2.2488,5.2659,48.2235,-2.3414,5.2673,48.332,-2.2535,4.3536,48.456,-2.8419,4.6926,48.3615,-2.7187,4.6467,48.4771,-2.66,3.8276,48.6533,-2.8881,3.7935,48.7053,-2.8148,4.3001,48.598,-2.7304,2.8723,48.8708,-3.5541,2.8805,49.0687,-3.3462,2.9211,48.8548,-3.4486,3.6803,49.3312,-2.6487,3.6536,49.4684,-2.5972,3.1526,49.7621,-2.7195,3.1674,49.6095,-2.7353,3.5844,49.7166,-2.563,3.9354,49.5984,-2.4306,4.0297,49.4329,-2.5081,2.9153,50.4077,-2.4017,2.8678,50.4563,-2.3996,2.9077,50.3431,-2.4969,2.8084,50.3541,-2.5163,3.8102,49.9834,-2.047,4.1454,49.8136,-2.186,4.222,49.6752,-2.3039,4.517,49.4661,-2.1746,4.519,49.5057,-2.0892,4.2273,49.384,-2.3917,4.2401,49.4986,-2.3466,4.2441,49.0901,-2.5255,4.1125,49.258,-2.5608,4.1693,49.1138,-2.6063,4.2394,49.2198,-2.4654,4.5497,48.6797,-2.5717,4.2224,48.9271,-2.6648,4.2785,48.7509,-2.7107,4.3252,48.9129,-2.5801,4.7477,48.5335,-2.5259,4.9876,48.4037,-2.4144,4.7719,48.5398,-2.5043,4.9459,48.368,-2.4978,5.2593,48.4567,-2.1507,5.167,48.4821,-2.1143,4.5026,49.3913,-2.2283,5.3023,48.5399,-2.078,5.2409,48.5511,-2.059,5.3463,48.6029,-2.0062,5.4313,48.5031,-2.1118,5.5042,48.5629,-2.0077,5.5639,48.747,-1.6762,5.6277,48.7684,-1.5796,5.4477,48.7866,-1.5771,4.6739,49.0352,-2.1892,5.1924,48.7898,-1.7145,5.0525,48.8478,-1.7497,4.6059,49.4595,-1.8652,5.6129,48.8775,-1.181,5.5662,49.0216,-1.139,5.5259,49.0325,-1.1586,4.8685,49.1799,-1.6737,4.9733,49.21,-1.4325,4.8596,49.2747,-1.5024,5.4553,49.2026,-1.1777,5.4322,49.0609,-1.2089,5.3128,49.0902,-1.259,5.6054,49.3176,-1.0668,5.5306,49.1888,-1.1465,5.559,49.2445,-0.498,5.721,49.2127,-0.3976,6.1032,49.37,-0.3649,6.1267,49.3599,-0.3268,6.1372,49.2585,-0.2964,6.0567,49.2595,-0.3678,5.8161,49.3152,-0.4899,5.8871,49.4287,-0.4699,5.9965,49.2101,-0.3533,6.0903,49.2277,-0.2797,5.5053,49.2983,-1.0438,5.566,49.371,-1.0081,5.9164,49.9567,-0.8296,5.8898,50.0239,-1.0501,5.7292,49.9775,-1.4158,5.6888,48.9487,-1.9287,5.5559,49.0759,-1.8674,5.508,48.9784,-1.9309,5.304,49.0644,-1.9316,5.9146,48.9186,-1.8794,5.9873,48.8552,-1.7587,5.8921,48.824,-1.824,5.6496,48.7801,-2.0243,5.3638,48.7718,-2.0481,5.4859,48.8552,-1.9966,5.5818,48.6957,-2.1041,4.7074,49.0772,-2.3322,4.6609,49.2961,-2.3498,4.8015,49.09,-2.223,4.5659,49.2486,-2.4266,5.2466,48.6336,-2.2559,5.4302,48.4829,-2.3996,5.2019,48.5521,-2.3363,5.464,48.5526,-2.2934,4.4361,49.4155,-2.4532,4.3133,49.4072,-2.5471,4.1577,49.5829,-2.5632,4.3184,49.6069,-2.4934,4.235,49.3267,-2.6479,4.0671,49.4693,-2.6574,4.5551,48.964,-2.5778,4.3809,49.1495,-2.6074,4.4755,49.194,-2.5072,4.6028,49.03,-2.4399,4.9819,48.4785,-2.5423,5.1959,48.4735,-2.4619,5.1408,48.4018,-2.5408,5.0332,48.5467,-2.431,4.7519,48.7478,-2.4628,4.7071,48.6769,-2.5911,4.4448,48.9101,-2.6745,4.2925,49.0765,-2.6938,3.687,49.6411,-2.6819,3.9929,49.5428,-2.6714,3.9079,49.4318,-2.6952,3.8834,49.7294,-2.6755,3.9797,49.9509,-2.7209,4.0592,49.7666,-2.6224,3.7564,49.9419,-2.7139,3.7339,49.9999,-2.7659,4.641,48.6037,-2.6854,4.5321,48.5265,-2.801,4.3548,48.8467,-2.7497,2.9996,49.6546,-3.0653,3.0625,49.863,-2.9594,3.1319,49.473,-3.01,5.0422,48.0081,-2.8171,4.9206,47.9161,-2.9069,4.6469,48.2489,-2.8574,4.532,48.1718,-2.9558,4.2764,48.3047,-2.9805,4.3912,48.4358,-2.8996,2.9073,49.5632,-3.2178,4.7647,47.7903,-3.0518,4.8591,47.6526,-2.9548,4.636,47.6988,-3.1323,4.8935,47.8895,-2.9633,2.824,49.4781,-3.3138,2.9159,49.3771,-3.2654,2.8326,49.3469,-3.3655,3.7367,48.3026,-3.3348,3.8118,48.4421,-3.183,4.1413,48.1838,-3.1085,3.9926,48.0648,-3.2538,4.2103,47.9184,-3.217,4.0236,47.8023,-3.3171,3.8277,47.96,-3.3824,3.5232,48.4278,-3.4285,3.6218,48.1818,-3.4929,3.5751,48.13,-3.5628,3.0682,48.6759,-3.6395,2.983,48.86,-3.5559,2.9876,48.6323,-3.7004,3.2112,48.3372,-3.6669,4.2383,47.1773,-3.5064,4.1619,47.2139,-3.5589,5.8316,49.2733,-1.6972,5.7892,49.209,-1.5862,5.8317,49.0705,-1.6721,5.7062,49.3101,-1.4016,5.7372,49.2894,-1.4674,5.6718,49.4693,-1.5687,5.5765,49.5404,-1.4398,6.2352,49.692,-2.0113,6.0352,49.7292,-2.0943,5.5727,49.7295,-2.2589,5.7117,49.5583,-1.9777,5.5707,49.5128,-2.0627,5.3455,49.6038,-2.2825,5.2255,49.4553,-2.23,5.192,49.6004,-2.3065,5.365,49.5225,-2.2149,5.0661,49.3821,-2.2078,5.2365,49.3206,-2.0731,5.173,49.2375,-2.0393,4.8614,49.4579,-2.3005,5.0261,49.4558,-2.2709,4.8998,49.3508,-2.2443,4.729,49.4392,-2.3482,4.6889,49.5878,-2.4196,4.8537,49.5959,-2.3912,4.5948,49.4335,-2.396,4.5387,49.599,-2.4478,4.2758,49.755,-2.5583,4.5002,49.7742,-2.5593,4.2599,49.8978,-2.6728,5.2677,49.3701,-1.9128,5.2471,49.3215,-1.9775,5.0745,49.4279,-1.8765,5.0607,49.4503,-1.7696,5.4643,49.4945,-1.6361,5.5116,49.3078,-1.7732,5.3824,49.565,-1.4965,5.0742,49.5105,-1.5688,5.0138,49.578,-1.4195,5.2396,49.6177,-1.1432,4.9721,49.6215,-1.2626,4.9244,49.7228,-1.1361,4.9123,49.514,-1.6654,4.7854,49.5486,-1.4951,4.5168,49.7557,-1.6587,4.3555,49.8235,-1.6846,4.4336,49.7251,-1.918,4.3269,49.7387,-2.2116,4.2269,49.7765,-2.0384,4.5411,49.6553,-2.064,4.1786,50.0635,-1.5107,4.1396,50.0393,-1.7086,3.027,50.6292,-2.3241,3.0895,50.5123,-2.3346,3.4128,50.2538,-2.115,3.5558,50.1393,-2.1344,3.304,50.2246,-2.2062,2.9939,50.4172,-2.4264,5.7152,49.667,-1.8826,5.6263,49.5901,-1.9576,5.8456,49.6013,-1.8936,5.1622,49.5371,-1.9822,5.3334,49.6242,-2.0273,5.0778,49.5945,-2.0096,5.2121,49.697,-2.0911,4.6517,50.2246,-2.6744,4.4313,50.2602,-2.8045,4.1529,50.0258,-2.7802,3.9665,50.2033,-2.9381,3.9552,50.1012,-2.8394,4.1802,50.1881,-2.871,3.7094,50.2505,-2.9628,3.6765,50.219,-2.9066,4.2079,50.2749,-2.8893,3.9834,50.2806,-2.9781,3.3701,50.3243,-3.021,3.4495,50.3034,-2.9877,3.5029,50.3087,-3.0488,6.1238,49.838,-1.018,6.4007,49.8408,-0.9119,6.7061,49.7746,-1.592,6.5214,49.7227,-1.5777,6.6815,49.6851,-1.7396,6.5365,49.8043,-1.3479,6.6571,49.8433,-1.3329,6.6353,49.8488,-1.0615,6.533,49.8357,-1.1063,6.6055,49.9045,-0.8761,6.5265,49.8632,-0.8557,6.7234,49.8142,-1.8087,6.7071,49.8679,-1.6281,6.6072,49.8725,-1.8419,6.6026,49.9554,-1.6478,6.4715,49.8495,-2.0035,6.4714,49.9129,-1.8758,6.4685,49.9837,-1.6479,6.2692,49.9834,-0.7064,6.388,50.0215,-0.9315,6.2309,49.9366,-1.9057,6.2708,49.896,-2.053,5.529,50.0708,-2.2089,4.5177,49.9437,-2.8613,4.2812,49.96,-2.9081,4.02,50.0578,-2.9481,4.0477,50.0392,-3.1581,4.3296,49.9879,-3.1178,3.0275,50.2638,-2.9536,2.9911,50.3456,-2.8659,3.4541,50.189,-3.0827,3.7095,50.1266,-2.9905,3.7642,50.0927,-3.1486,3.6313,50.2374,-3.1468,3.7381,50.2954,-3.0086,3.9286,50.2519,-3.1906,4.3308,49.9996,-3.1294,4.0471,50.0488,-3.1699,4.1896,50.2351,-3.1112,4.3678,50.2334,-3.0156,4.5653,50.2101,-2.9125,4.7442,50.2023,-2.8264,4.9623,50.1864,-2.6777,5.2159,50.0848,-2.6262,5.0799,50.0853,-2.7304,5.8099,50.0418,-2.0375,5.7209,50.0436,-1.7585,5.8435,49.9773,-2.2378,5.6212,49.9706,-2.3876,5.6067,50.0125,-2.3614,5.8549,49.8897,-2.2614,6.2601,49.7334,-2.0939,6.0302,49.7943,-2.1618,6.2641,49.7495,-2.1025,6.5814,49.6668,-1.8387,6.5761,49.9684,-1.3767,6.6883,49.9085,-1.3609,6.5433,49.9816,-1.0909,6.4276,50.008,-1.1109,6.4858,49.9569,-0.8947,6.3462,49.9395,-0.6604,6.6914,49.9061,-1.0975,5.9113,49.6293,-1.9615,4.973,49.6528,-2.1091,4.9206,49.6826,-2.1839,4.8075,49.5553,-2.021,4.9721,49.5026,-1.8939,4.9445,49.477,-1.8616,5.0566,50.1479,-2.3399,5.4456,49.914,-2.0099,5.5704,49.9983,-1.7879,5.52,49.511,-2.0091,5.5699,49.8002,-1.9036,3.0082,50.3186,-2.5918,3.311,50.0678,-2.3644,3.6294,49.997,-2.3003,3.7199,50.2153,-1.8741,3.785,50.0708,-2.0272,3.5136,50.2972,-2.0606,3.9968,49.877,-2.1624,3.8244,49.9311,-2.2258,3.9234,49.9886,-1.9259,4.0741,49.8165,-2.3227,3.8757,50.0967,-1.7784,4.1481,49.8813,-1.8115,4.8073,49.5273,-1.7495,5.1863,49.425,-1.6773,5.3281,49.3819,-2.0447,5.315,49.4207,-1.9778,5.0334,49.1668,-2.0921,5.0575,49.9246,-2.5953,5.2193,49.9551,-2.528,5.2207,49.7834,-2.432,5.0504,49.7728,-2.4751,5.3787,49.767,-2.3602,5.3539,49.3959,-2.093,5.8474,49.8059,-2.1981,5.6471,49.2688,-1.288,5.6475,49.217,-1.459,5.7189,49.1156,-1.5769,3.9274,47.7394,-3.4428,4.1095,47.7628,-3.3524,3.3079,48.4597,-3.5653,3.1506,48.757,-3.477,4.3208,47.8644,-3.2154,4.4459,47.5427,-3.276,3.4914,48.6362,-3.2902,3.0706,49.3317,-3.1458,4.8407,48.0019,-2.9871,2.8245,49.6611,-3.2483,4.9344,48.1128,-2.889,4.0546,48.7046,-2.9369,4.0812,49.2813,-2.7161,4.9082,49.1317,-2.1248,4.8186,49.1085,-2.2077,4.7725,49.3411,-2.2978,4.9677,48.9913,-2.1209,5.1286,48.7937,-2.1252,4.933,48.9507,-2.1512,5.1756,48.8561,-2.0435,5.0555,49.0126,-2.029,5.3349,48.9117,-1.9769,5.7653,48.787,-1.879,5.7849,48.8482,-1.9396,5.7767,48.8661,-1.9455,5.6293,48.9256,-1.9401,5.7671,49.2634,-0.4437,5.9376,49.1678,-0.328,5.9375,49.1813,-0.2858,5.3305,49.3555,-0.5399,5.0636,49.3297,-1.0445,4.9782,49.443,-0.7407,4.8316,49.4093,-1.0538,5.6232,48.7705,-1.3351,5.7636,48.774,-1.279,5.4957,48.8976,-1.2212,5.4255,48.784,-1.5478,5.1915,48.8615,-1.5983,5.3183,48.801,-1.5987,5.4266,48.7941,-1.4419,4.4833,49.1142,-2.3202,4.5536,49.3592,-2.1955,5.6752,48.7417,-1.4474,5.7916,48.751,-1.6443,5.3901,48.7902,-1.6125,5.4631,48.7277,-1.8188,5.6291,48.6568,-1.8314,5.7095,48.7182,-1.7158,4.4335,49.3072,-2.2982,3.8894,49.8257,-2.4164,3.8916,49.9629,-1.9664,3.5462,50.1059,-2.2736,3.0911,50.3505,-2.3683,3.853,49.9477,-2.2038,3.1249,50.3042,-2.3919,3.049,50.2502,-2.5178,3.4999,50.0619,-2.4639,3.5314,50.0754,-2.3771,3.8698,49.8937,-2.3961,3.5332,49.949,-2.5531,3.1045,49.9788,-2.7035,3.092,49.4925,-2.7821,3.0657,49.5705,-2.8095,3.033,49.694,-2.8225,2.8738,49.5401,-2.9747,2.7758,49.5133,-3.092,2.8031,49.3126,-3.2255,3.7859,48.8027,-2.8505,3.4208,48.8136,-3.0375,3.7745,48.7238,-2.8079,3.4106,48.7184,-3.0218,3.0915,48.8472,-3.2686,3.1111,48.6534,-3.3534,3.0662,48.4349,-3.4983,2.9945,48.6069,-3.5166,2.9462,48.6282,-3.6202,4.6298,48.5042,-2.6443,4.8545,48.3139,-2.6445,4.3877,48.2233,-2.9442,3.8712,48.5594,-2.9849,3.9477,48.3048,-3.1376,3.1889,48.2647,-3.5433,3.3507,47.9928,-3.5782,4.6072,48.1795,-2.8426,4.4374,47.8154,-3.0351,4.3476,47.8092,-3.0811,4.3146,47.6043,-3.1349,4.5346,47.5622,-2.9746,3.5713,50.3328,-1.8842,4.6874,49.4237,-1.6334,4.493,49.7671,-1.3375,4.1442,49.9372,-1.4664,4.1401,49.8664,-1.8132,4.7044,49.4818,-1.2364,4.9817,49.5295,-0.715,5.1614,49.4733,-0.5843,5.1482,49.388,-0.6291,4.8227,49.6995,-1.088,6.1396,49.2663,-0.2797,6.127,49.3557,-0.3053,6.1236,49.3613,-0.3163,5.5825,49.0213,-1.1448,5.6039,49.0763,-1.2826,5.6172,49.073,-1.3894,5.6821,49.007,-1.5169,5.7853,48.883,-1.559,5.8108,48.7527,-1.661,5.7254,48.7177,-1.7329,5.8635,48.7778,-1.7689,5.7472,48.7472,-1.8278,5.6668,48.6894,-1.9407,5.9639,49.8863,-0.7752,5.4407,49.5707,-0.9893,2.9486,48.6336,-3.6432,6.0468,49.1946,-0.2664,5.8191,48.889,-1.6138,5.0749,49.1642,-1.3769,5.1824,49.1201,-1.3213,5.0449,49.2655,-1.2255,4.052,50.2086,-1.4402,4.7012,49.373,-1.8695,4.7991,49.2593,-1.738,4.795,49.3301,-1.5513,3.8701,49.9924,-1.9339,3.0414,50.1404,-2.5801,4.9613,47.952,-2.638,4.778,47.9863,-2.7529,3.1549,48.4967,-3.3686,4.593,49.6363,-1.3809,4.6477,49.6092,-1.3902,5.3627,48.9449,-1.289,5.2292,48.991,-1.3746,5.2388,49.8792,-2.1683,5.0534,49.9294,-2.333,5.1187,49.7528,-2.1627,4.9941,49.806,-2.2698,5.3262,49.818,-2.0853,5.4368,49.7317,-2.0097};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getlscapula_Coord_6_823_point_2()
		{
			double[] value = {5.0739,50.0,-2.6645,6.4589,49.6878,-2.0152,5.6361,50.0091,-1.594,4.3164,47.3587,-3.4009,5.4456,48.503,-2.1273,5.7553,48.7565,-1.8475,5.465,48.5159,-2.103,3.1505,49.2316,-3.1252,3.0629,49.1968,-3.2319,3.6709,49.4494,-2.7496,3.1969,50.3298,-2.9751,3.0393,48.9165,-3.4605,3.2877,47.9484,-3.6684,4.7919,49.5518,-1.4828,5.8697,48.7368,-1.4235,5.8629,48.7301,-1.4249,5.9196,48.749,-1.5841,5.9226,48.7573,-1.5758,2.8184,49.8904,-3.124,2.9365,50.0296,-3.0509,5.4199,50.0376,-2.4836,5.0871,50.0674,-2.7252,5.2191,50.069,-2.6273,4.824,47.9903,-3.0015,4.8152,48.0116,-2.9964,5.5731,48.6681,-2.1215,5.3927,48.3078,-2.3092,5.4258,48.4094,-2.2062,4.6381,49.3826,-2.1559,4.6123,49.381,-2.1482,4.6748,49.3083,-2.1112,4.6841,49.3285,-2.1282,2.8827,50.5947,-2.4468,2.8437,50.5083,-2.4199,2.7508,50.1738,-2.7933,2.8086,50.1632,-2.7209,3.2678,50.4917,-2.0176,3.8637,50.26,-1.6875,3.8245,47.6712,-3.562,4.0345,47.5583,-3.5276,3.7403,47.9207,-3.5003,5.6351,49.1252,-1.4408,5.6459,49.1502,-1.4651,5.6379,49.1596,-1.4458,5.625,49.1079,-1.4166,5.6335,49.0911,-1.4357,5.6217,49.127,-1.4052,3.6931,50.3518,-1.8226,3.684,50.3741,-1.8134,2.7852,50.3705,-2.5314,3.0905,50.5145,-2.1811,2.8471,50.4761,-2.4103,5.6493,49.089,-1.4718,5.6422,49.0843,-1.4553,5.4934,48.6023,-2.2267,5.3751,48.4042,-2.5229,4.6457,47.8895,-3.1027,4.6248,47.9036,-3.103,4.881,47.8798,-2.9758,6.0365,49.8128,-2.1684,5.8495,49.8704,-2.2567,3.7641,50.1036,-3.1625,4.8515,50.0552,-2.8852,4.847,50.0731,-2.8909,2.8048,49.6671,-3.246,5.9722,48.7854,-1.6929,5.972,48.7931,-1.6806,6.0936,49.2356,-0.265,2.7628,50.0469,-2.9539,2.9273,49.1324,-3.401,3.615,50.174,-2.8178,3.3596,50.274,-2.8941,3.2485,49.3308,-2.9872,5.0407,48.33,-2.6579,4.8975,48.4007,-2.6568,3.9106,48.5961,-3.0454,3.5975,48.7874,-3.109,5.9649,50.0179,-1.7132,5.9359,50.0074,-1.4037,5.3873,49.943,-2.432,5.6266,49.8794,-2.3119,5.221,50.0168,-2.5813,6.4064,49.6555,-1.7997,4.5812,49.6862,-1.7588,4.6895,49.5873,-1.9003,4.843,49.8412,-2.4206,4.7967,49.7381,-2.3486,4.9149,50.0429,-2.5357,4.8914,49.9751,-2.4975,5.6099,49.1424,-1.3458,5.6126,49.1095,-1.3626,5.6216,49.1426,-1.4027,4.5832,49.6439,-1.3782,5.0047,48.5387,-2.2522,4.818,48.6354,-2.368,4.5752,48.8864,-2.3866,4.669,48.9348,-2.2585,4.4914,49.0355,-2.3621,4.7013,48.8192,-2.3072,4.4312,47.9748,-2.9903,5.2639,48.7622,-1.7174,5.6171,49.2967,-0.5512,3.859,49.9211,-2.2991,3.0392,49.0579,-3.1777,5.6903,49.1744,-1.535,3.5948,50.5127,-1.7521,3.9542,47.8272,-3.2883,3.5964,47.8218,-3.521,3.9653,48.0395,-3.2307,3.5776,48.0681,-3.4527,4.3767,47.9873,-3.0179,3.7656,48.9894,-2.7872,3.3521,49.0264,-2.9559,3.7319,49.1527,-2.7108,4.6505,48.7634,-2.4124,5.2324,48.6237,-1.9443,5.3936,48.6682,-1.9065,5.232,48.6934,-1.8409,4.6035,49.3894,-2.141,6.1159,49.8891,-0.6751,5.3046,48.6947,-2.1593,4.8753,48.8798,-2.2392,5.0811,48.7236,-2.2158,4.7958,48.8152,-2.3477,5.0444,48.6274,-2.3031,4.9128,48.262,-2.7755,4.7874,48.3267,-2.7721,4.9114,48.126,-2.8933,4.737,48.1995,-2.8538,4.6169,48.1171,-2.9558,4.4803,47.9722,-3.0789,4.3837,48.0291,-3.0746,3.8927,47.34,-3.7277,3.6614,47.5514,-3.7262,5.9851,48.8595,-1.7414,5.0234,49.5964,-2.3486,4.8653,49.7706,-2.5218,4.6662,49.784,-2.5584,3.8871,49.8985,-2.412,3.3836,50.0768,-2.5806,3.6957,49.9828,-2.4976,3.1746,50.2198,-2.7155,4.8836,50.1804,-2.5028,4.6701,49.6119,-2.1645,4.4408,49.7337,-2.3796,4.221,49.8477,-2.5496,4.0434,49.9524,-2.6514,3.862,50.0542,-2.7296,6.1416,49.8264,-1.2393,6.3902,49.8259,-1.1266,6.462,49.678,-1.7203,6.4261,50.0084,-1.3739,6.2105,49.9808,-1.6595,6.1769,49.9861,-1.3682,6.0338,49.9396,-2.1383,5.995,50.0004,-1.9722,4.4891,49.8842,-2.6618,4.2818,49.7816,-1.8994};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_824_vector_1()
		{
			double[] value = {-0.9959,0.0112,0.0902,-0.9943,-0.014,-0.1059,-0.9921,0.0715,-0.1032,-0.9919,-0.063,0.1106,-0.9822,-0.1779,-0.0596,-0.9739,0.1787,0.1398,-0.9734,-0.228,-0.0208,-0.9679,-0.1547,0.1983,-0.9671,-0.1749,0.1846,-0.9607,-0.2725,0.0537,-0.9572,-0.0914,0.2745,-0.9503,-0.2732,-0.1496,-0.9486,0.2447,0.2006,-0.9454,-0.0763,0.3168,-0.941,0.1567,-0.2998,-0.941,0.0558,0.3337,-0.9392,-0.1793,0.2929,-0.9298,-0.3273,0.1683,-0.9283,0.2099,-0.3068,-0.924,-0.3801,0.0423,-0.917,-0.1214,0.38,-0.9133,-0.0191,-0.4068,-0.9092,-0.2941,0.2947,-0.9034,-0.2389,0.356,-0.9016,-0.3132,0.2983,-0.8967,0.2643,-0.3551,-0.8965,-0.2881,0.3366,-0.8958,0.0937,0.4345,-0.8944,-0.4296,0.1242,-0.8892,0.028,-0.4567,-0.8852,-0.221,0.4094,-0.8802,-0.3165,-0.3537,-0.8802,-0.3888,0.2722,-0.8787,0.4284,-0.2104,-0.8767,-0.4805,0.0224,-0.8725,-0.2434,0.4238,-0.8682,0.3097,-0.3877,-0.8676,-0.4963,0.0312,-0.8638,0.2373,0.4445,-0.8478,-0.1904,0.495,-0.8444,0.1031,0.5257,-0.8433,-0.3288,0.4251,-0.8427,0.2462,-0.4788,-0.8399,-0.5425,-0.0125,-0.8384,0.3765,0.3941,-0.8381,0.2534,0.4831,-0.8368,-0.4031,-0.3705,-0.8356,-0.3398,0.4317,-0.8347,0.3835,-0.3954,-0.8304,-0.5055,0.2344,-0.8291,-0.3068,0.4675,-0.8257,-0.2232,0.5181,-0.825,-0.4413,0.3529,-0.8196,-0.3281,0.4696,-0.8147,-0.4586,0.3548,-0.8072,-0.5845,0.0827,-0.8047,0.5356,-0.2562,-0.8024,0.4618,-0.378,-0.7981,-0.4511,0.3995,-0.798,-0.4362,0.4157,-0.7938,0.3564,0.4928,-0.7913,-0.3753,0.4826,-0.7899,0.5133,0.3354,-0.7867,-0.0755,0.6127,-0.7815,-0.5415,0.3099,-0.7798,-0.0913,0.6193,-0.7756,-0.6043,0.1823,-0.7735,-0.4801,0.4137,-0.7569,-0.3297,0.5643,-0.7497,-0.6308,0.2003,-0.7494,0.1293,0.6493,-0.7434,-0.4576,0.4878,-0.7428,0.0761,0.6652,-0.7401,-0.4979,0.4521,-0.7267,-0.6744,0.1304,-0.7255,-0.6635,0.183,-0.7252,-0.0243,0.6881,-0.7247,-0.2742,0.6322,-0.7235,-0.0085,0.6903,-0.7233,-0.2588,0.6402,-0.7229,0.1835,-0.6662,-0.72,-0.5462,0.428,-0.719,-0.6884,0.0963,-0.7184,-0.1412,0.6811,-0.7162,0.2266,-0.6601,-0.7156,-0.6878,0.1221,-0.7151,-0.629,0.3049,-0.715,-0.6986,0.0253,-0.7149,-0.2906,0.636,-0.7136,0.4029,0.5731,-0.7111,-0.4597,0.532,-0.7103,-0.5144,0.4805,-0.7089,0.2137,0.6722,-0.7058,-0.2744,0.6531,-0.7042,-0.6314,0.3248,-0.7008,0.1413,0.6992,-0.6987,-0.6717,0.2464,-0.6978,-0.2944,0.653,-0.6973,-0.1192,0.7068,-0.697,-0.0619,0.7144,-0.6952,-0.6939,0.1878,-0.695,-0.4854,0.5304,-0.6929,-0.5576,0.4572,-0.6928,-0.3659,0.6214,-0.6898,0.7165,0.1036,-0.6884,0.5851,-0.4287,-0.6875,0.3737,0.6226,-0.6835,-0.7299,0.0086,-0.677,-0.1404,0.7225,-0.6767,-0.6645,-0.3171,-0.6763,-0.2259,0.7011,-0.6741,-0.1344,0.7263,-0.6736,-0.6887,0.2682,-0.672,0.0821,0.736,-0.6688,-0.077,0.7394,-0.6686,-0.599,0.4408,-0.6685,-0.7421,0.0489,-0.6627,-0.4269,0.6153,-0.6624,-0.5333,0.526,-0.6619,-0.17,0.73,-0.6607,-0.5264,0.5352,-0.6576,-0.6475,0.3852,-0.6574,-0.508,0.5565,-0.6539,-0.6357,0.4102,-0.6535,-0.516,0.5538,-0.6523,-0.5845,0.4826,-0.6512,-0.1842,0.7362,-0.6482,-0.7326,0.2078,-0.6464,-0.5143,0.5636,-0.6447,-0.5045,0.5743,-0.6444,-0.5957,0.4795,-0.6425,-0.7378,0.207,-0.6416,-0.5997,0.4782,-0.639,-0.7381,0.2167,-0.6355,0.5824,0.5069,-0.6355,0.0029,0.7721,-0.6354,-0.5871,0.5015,-0.6351,-0.7653,-0.1049,-0.635,-0.4124,0.6532,-0.6331,-0.3298,0.7003,-0.6324,-0.4003,0.6632,-0.6311,0.2461,0.7357,-0.63,0.2881,0.7212,-0.6273,-0.5811,0.5185,-0.6256,-0.5552,0.5481,-0.6253,-0.5312,0.5717,-0.624,-0.6427,0.4444,-0.6216,-0.4802,0.6189,-0.62,-0.7715,0.1429,-0.6182,-0.61,0.4958,-0.6175,-0.5587,0.5536,-0.6171,-0.3389,0.7102,-0.617,-0.1621,0.7701,-0.6157,-0.4067,0.6749,-0.6143,-0.5514,0.5644,-0.6133,-0.6379,0.4658,-0.6124,0.279,0.7397,-0.612,-0.4731,0.6337,-0.6117,-0.7162,0.3359,-0.6114,-0.5564,0.5627,-0.6105,-0.435,0.6619,-0.6103,-0.685,0.3979,-0.6084,0.527,0.5934,-0.608,-0.6129,0.5046,-0.6078,-0.769,0.198,-0.6074,-0.2147,0.7648,-0.604,-0.3349,0.7232,-0.6039,-0.4749,0.6401,-0.6037,-0.5865,0.5399,-0.6004,0.5122,0.6142,-0.5976,-0.1523,0.7872,-0.5965,-0.8013,0.047,-0.5951,-0.5978,0.5372,-0.5949,-0.4547,0.6628,-0.5946,-0.3,0.746,-0.5945,-0.4773,0.6471,-0.5944,-0.5901,0.5462,-0.5931,-0.5542,0.584,-0.5929,-0.4365,0.6768,-0.5922,-0.4366,0.6773,-0.5917,-0.3466,0.7278,-0.5895,-0.5321,0.6078,-0.5874,0.1362,0.7977,-0.5862,-0.5018,0.6361,-0.5862,-0.7209,0.3697,-0.5858,-0.194,0.7869,-0.584,0.7953,0.1623,-0.5835,-0.5815,0.5669,-0.5818,-0.788,0.2013,-0.5802,0.5782,0.5736,-0.5787,-0.2805,0.7657,-0.5769,-0.4976,0.6477,-0.5747,0.5422,0.613,-0.5721,-0.8151,0.0913,-0.5661,-0.6432,0.5156,-0.566,-0.1523,0.8102,-0.5654,-0.6345,0.527,-0.5647,-0.1043,0.8187,-0.5647,-0.486,0.667,-0.5618,-0.6486,0.5136,-0.5615,-0.7885,0.2508,-0.5585,-0.1399,0.8176,-0.5568,-0.5496,0.6228,-0.5567,-0.329,0.7628,-0.5565,-0.654,0.5124,-0.5564,-0.7985,0.2298,-0.5544,-0.2545,0.7924,-0.5536,-0.3864,0.7377,-0.5525,0.4244,-0.7174,-0.5502,-0.7052,0.4472,-0.5494,-0.8002,0.2407,-0.549,-0.7852,0.2864,-0.5458,-0.7663,0.3389,-0.544,-0.229,0.8072,-0.5439,-0.8381,-0.043,-0.5438,-0.7769,0.3174,-0.5428,-0.8108,0.2189,-0.5384,-0.7654,0.3524,-0.5381,-0.6627,0.5208,-0.5344,-0.1589,0.8301,-0.5343,0.7859,0.3113,-0.5342,-0.4423,0.7205,-0.5339,-0.1914,0.8236,-0.5319,-0.3574,0.7677,-0.5307,-0.1202,0.839,-0.5298,-0.4978,0.6867,-0.5272,-0.2498,0.8122,-0.5271,-0.7539,0.392,-0.527,-0.7255,0.4427,-0.5258,-0.3318,0.7832,-0.5233,-0.2391,0.8179,-0.5229,-0.6708,0.5259,-0.5223,-0.6081,0.5979,-0.5223,-0.2887,0.8024,-0.5218,-0.4188,0.7432,-0.5208,-0.2227,0.8241,-0.5205,-0.6527,0.5505,-0.52,-0.8421,0.143,-0.5199,-0.6844,0.5112,-0.5197,-0.0208,0.8541,-0.5159,-0.5399,0.6651,-0.5154,-0.611,0.6009,-0.5138,-0.4196,0.7483,-0.5134,-0.2227,0.8288,-0.5122,0.1798,0.8398,-0.5115,-0.5977,0.6174,-0.5114,-0.2501,0.8222,-0.509,-0.5449,0.6663,-0.5078,-0.2172,0.8337,-0.5078,-0.368,0.779,-0.5072,-0.2305,0.8304,-0.5058,-0.3529,0.7871,-0.5052,-0.1789,0.8442,-0.505,-0.3899,0.77,-0.5026,-0.8256,0.2563,-0.5023,-0.5414,0.6742,-0.4985,-0.7565,0.4233,-0.498,-0.1588,0.8525,-0.4973,-0.6614,0.5614,-0.4963,-0.7553,0.4279,-0.4963,-0.5931,0.634,-0.4962,-0.1607,0.8532,-0.4961,-0.8403,0.2186,-0.4954,0.5695,0.6559,-0.492,-0.8134,0.3103,-0.4917,-0.1385,0.8597,-0.4902,-0.1906,-0.8505,-0.4894,-0.1795,0.8534,-0.4859,-0.741,0.4635,-0.4856,-0.8297,0.2752,-0.4837,0.6906,0.5377,-0.4835,-0.7341,0.4769,-0.4822,0.7232,0.4945,-0.4817,0.5514,0.6812,-0.4812,-0.7658,0.4267,-0.4801,-0.263,0.8368,-0.4796,0.4132,0.7741,-0.4789,-0.3534,0.8036,-0.4784,-0.6714,0.5659,-0.4776,-0.8242,0.3044,-0.4774,0.5749,0.6645,-0.4766,-0.4203,0.7722,-0.4753,-0.7187,0.5076,-0.4749,0.8746,0.0976,-0.4729,-0.8672,0.1558,-0.4725,-0.1879,0.8611,-0.4722,-0.214,0.8551,-0.4719,-0.134,0.8714,-0.4714,-0.5775,0.6666,-0.4712,0.5059,-0.7225,-0.4709,-0.6083,0.6389,-0.4706,-0.2397,0.8492,-0.4695,-0.81,0.3513,-0.465,-0.4929,0.7354,-0.4639,-0.794,0.3928,-0.4629,-0.2848,0.8394,-0.4612,-0.442,0.7694,-0.4585,-0.4576,0.7619,-0.4576,-0.5828,0.6715,-0.4573,-0.449,0.7677,-0.4567,-0.8448,0.2789,-0.4557,-0.8744,0.1665,-0.4541,-0.7123,0.5351,-0.4512,0.164,0.8772,-0.4506,-0.1942,0.8713,-0.4504,-0.2335,0.8617,-0.4496,-0.4014,0.798,-0.4444,-0.119,0.8879,-0.4434,-0.4049,0.7996,-0.4428,0.5554,0.7039,-0.4426,0.5982,0.668,-0.4419,-0.0118,0.897,-0.4395,-0.7036,0.5584,-0.4372,0.6084,0.6623,-0.4371,-0.669,0.6011,-0.4363,-0.4759,0.7636,-0.4345,-0.601,0.6708,-0.4345,-0.8761,0.209,-0.4317,-0.6123,0.6624,-0.4311,0.4139,-0.8018,-0.4297,-0.4163,0.8013,-0.4291,-0.4553,0.7801,-0.4286,-0.3441,0.8354,-0.4271,0.1635,0.8893,-0.4267,-0.5692,0.7028,-0.4256,-0.1157,0.8975,-0.425,-0.2547,0.8686,-0.4228,-0.2332,0.8757,-0.4196,-0.5873,0.6921,-0.4194,-0.4992,0.7583,-0.4154,-0.7413,0.5272,-0.4144,0.1603,0.8959,-0.414,-0.3532,0.839,-0.4131,0.6181,0.6688,-0.4113,-0.8283,0.3804,-0.4108,-0.9111,0.0344,-0.4095,-0.4417,0.7983,-0.4093,-0.9085,0.0846,-0.4091,-0.4521,0.7926,-0.4084,-0.3538,0.8415,-0.4045,-0.2787,0.871,-0.4043,-0.8994,0.1664,-0.4042,-0.7336,0.5463,-0.4039,-0.4801,0.7786,-0.3944,-0.5266,0.7531,-0.393,-0.5533,0.7345,-0.3912,-0.4158,0.821,-0.3897,-0.825,0.4094,-0.3873,0.7928,-0.4705,-0.3861,-0.0703,0.9198,-0.386,-0.6422,0.6623,-0.382,-0.914,0.1362,-0.3816,0.4352,0.8155,-0.378,-0.5548,0.7411,-0.3771,-0.6188,0.6891,-0.372,-0.8337,0.408,-0.3697,-0.7742,0.5137,-0.3685,-0.5358,0.7597,-0.3666,0.07,0.9277,-0.3663,-0.1635,0.916,-0.3634,0.0765,0.9285,-0.3615,-0.1829,-0.9142,-0.359,-0.8455,0.3952,-0.359,-0.4635,0.8101,-0.3569,-0.7816,0.5115,-0.3554,-0.6489,0.6728,-0.3553,-0.6603,0.6617,-0.3546,-0.8782,0.3209,-0.3534,-0.5131,0.7822,-0.3517,-0.5756,0.7382,-0.3463,-0.0195,0.9379,-0.3419,-0.9191,0.1957,-0.3405,-0.936,0.0894,-0.3396,-0.691,0.6381,-0.3391,0.5959,0.7279,-0.3375,-0.0186,-0.9412,-0.3361,-0.3042,0.8913,-0.3346,0.2841,-0.8985,-0.3328,-0.3991,0.8543,-0.3258,0.3019,0.8959,-0.3254,0.4796,0.815,-0.3254,-0.9364,0.1314,-0.3246,0.2311,-0.9172,-0.3237,0.7023,0.6341,-0.3193,-0.6804,0.6596,-0.3187,-0.7149,0.6224,-0.3187,-0.9224,0.2184,-0.3183,-0.3844,0.8666,-0.3183,-0.6603,0.6803,-0.3182,-0.4728,0.8217,-0.3167,0.2954,0.9014,-0.3167,0.9485,0.0102,-0.3165,0.5368,-0.7821,-0.3147,0.7742,0.5491,-0.3133,-0.3716,-0.8739,-0.3109,-0.3305,0.8911,-0.3103,-0.6074,0.7313,-0.31,-0.9029,0.2979,-0.3071,-0.876,0.3718,-0.307,-0.6397,0.7046,-0.3057,-0.4231,0.853,-0.3045,-0.0031,0.9525,-0.3029,0.7587,0.5767,-0.3014,-0.3491,0.8873,-0.3013,0.7054,0.6416,-0.3006,0.5823,0.7554,-0.2978,0.3789,-0.8762,-0.2974,-0.7368,0.6071,-0.2952,-0.733,0.6128,-0.2929,-0.3988,0.869,-0.2867,-0.7204,0.6315,-0.2834,0.7179,0.6358,-0.2827,-0.7975,0.533,-0.2823,-0.6832,0.6735,-0.2737,0.4089,0.8706,-0.2724,0.545,0.793,-0.2708,0.5104,-0.8162,-0.2707,-0.4674,-0.8416,-0.2699,-0.8058,0.5271,-0.2661,0.3331,-0.9046,-0.2649,-0.8703,0.4153,-0.2639,-0.9244,-0.2754,-0.2638,-0.815,0.516,-0.2635,0.4877,-0.8323,-0.2611,0.3478,0.9005,-0.26,0.9435,0.2052,-0.256,0.7848,0.5645,-0.253,0.2329,-0.939,-0.2517,0.4029,-0.8799,-0.2497,-0.7498,0.6127,-0.2443,0.0015,-0.9697,-0.2373,-0.9504,-0.2009,-0.2347,0.7893,0.5674,-0.2333,-0.9724,-0.0038,-0.2315,-0.9028,0.3626,-0.2314,-0.8451,-0.482,-0.2312,0.7828,0.5777,-0.2268,0.5255,0.82,-0.2234,-0.5439,0.8089,-0.2165,-0.458,-0.8622,-0.2154,0.9389,-0.2685,-0.2145,-0.9146,0.3429,-0.2084,-0.5021,0.8393,-0.208,-0.761,0.6145,-0.2069,-0.9713,0.1174,-0.1948,-0.7874,-0.5848,-0.1928,-0.9812,-0.006,-0.1873,-0.9618,-0.1999,-0.1858,-0.6502,0.7367,-0.1836,-0.9476,-0.2616,-0.1717,-0.9216,-0.3482,-0.1607,-0.9784,0.1297,-0.1576,-0.8863,0.4354,-0.1557,0.3576,-0.9208,-0.153,0.9569,-0.2468,-0.1527,-0.9008,0.4065,-0.1499,-0.9878,0.0433,-0.1481,-0.9389,0.3106,-0.147,-0.1555,0.9768,-0.1454,0.859,0.4909,-0.138,0.0605,-0.9886,-0.1355,-0.6772,0.7232,-0.1324,-0.8808,0.4547,-0.1295,-0.9677,-0.2163,-0.1294,0.9762,-0.1739,-0.1289,-0.5439,0.8292,-0.1281,0.4551,-0.8812,-0.1277,-0.9453,0.3002,-0.1247,0.9828,0.1365,-0.1232,-0.9912,0.0478,-0.123,-0.6634,0.7381,-0.1224,-0.9925,0.0079,-0.1178,0.7765,0.619,-0.1137,-0.9582,-0.2624,-0.1116,-0.1948,0.9745,-0.11,-0.9726,0.2047,-0.1055,0.2531,0.9617,-0.1053,0.2198,-0.9698,-0.1033,-0.9934,0.0508,-0.1021,-0.9938,0.045,-0.1006,-0.353,-0.9302,-0.1005,0.645,0.7576,-0.1003,-0.9431,0.317,-0.0987,-0.8758,-0.4724,-0.0953,0.9902,0.1017,-0.0927,-0.9957,-0.0009,-0.0916,-0.9482,0.3043,-0.0884,-0.1153,0.9894,-0.0878,0.8531,0.5143,-0.0856,-0.8401,0.5356,-0.0853,0.6759,0.7321,-0.0774,0.8127,0.5776,-0.0766,0.5828,0.809,-0.0764,0.9971,0.0033,-0.0686,0.938,-0.3398,-0.0636,-0.9798,-0.1894,-0.0597,-0.9982,-0.0094,-0.0597,0.8963,-0.4394,-0.0569,-0.8042,0.5916,-0.0567,-0.5343,0.8434,-0.0532,-0.5174,0.8541,-0.0454,0.9982,-0.0387,-0.0433,-0.8949,0.4441,-0.043,-0.824,0.565,-0.0429,-0.8885,-0.4569,-0.0413,0.9685,-0.2456,-0.0408,-0.9076,0.4178,-0.0393,-0.8255,-0.563,-0.0393,-0.9436,-0.3286,-0.0391,-0.7809,-0.6235,-0.0385,0.9139,0.404,-0.0364,0.6779,0.7342,-0.0351,0.9976,-0.0597,-0.0341,-0.9495,0.3118,-0.0341,-0.491,0.8705,-0.032,-0.9504,0.3094,-0.03,0.6681,-0.7435,-0.0277,-0.9495,-0.3127,-0.0191,-0.8299,0.5577,-0.0167,-0.9258,-0.3777,-0.0166,0.6902,0.7234,-0.0159,-0.6944,-0.7194,-0.0131,-0.4465,-0.8947,-0.0127,0.8603,0.5096,-0.0126,0.8083,-0.5887,-0.0125,-0.8758,0.4825,-0.01,0.9999,0.012,-0.0042,-0.8016,0.5978,-0.001,-0.9668,0.2555,-0.0001,-0.7609,0.6488,0.0061,0.7988,-0.6016,0.0078,-0.9937,0.1116,0.0094,0.9488,-0.3159,0.0121,0.9503,-0.3113,0.0125,-0.9892,-0.1459,0.0201,-0.982,0.1881,0.0224,0.9964,0.0819,0.027,-0.9874,0.156,0.0325,0.9933,0.111,0.0327,-0.8435,-0.5361,0.036,-0.8787,0.4759,0.0361,-0.9938,0.1056,0.0361,0.9708,0.237,0.0376,-0.9189,0.3927,0.0429,-0.648,0.7604,0.0435,0.5934,-0.8037,0.0435,-0.7322,0.6797,0.0458,-0.4118,-0.9101,0.047,-0.6052,-0.7947,0.0523,-0.9323,0.3579,0.0584,0.9976,0.036,0.0586,-0.9962,0.0647,0.0586,0.998,-0.0256,0.0618,0.956,-0.2867,0.0624,0.904,-0.4229,0.0631,-0.9718,-0.2272,0.0663,-0.6706,0.7388,0.0698,-0.9911,0.1133,0.0706,0.958,-0.2781,0.0709,-0.8792,-0.4712,0.0729,0.4667,-0.8814,0.0733,0.3872,-0.9191,0.0735,-0.6513,0.7553,0.0737,-0.966,0.2479,0.0754,-0.9775,-0.1968,0.0784,-0.6112,-0.7876,0.0789,-0.3958,-0.9149,0.0804,0.9421,0.3256,0.0804,0.9934,-0.0824,0.0811,-0.2901,0.9535,0.0823,-0.8654,0.4944,0.0825,-0.7334,-0.6748,0.0833,0.7373,0.6705,0.0853,-0.8303,-0.5507,0.0871,-0.7091,-0.6997,0.0872,0.9958,-0.0267,0.0881,0.4593,-0.8839,0.0886,-0.9855,-0.1446,0.0897,0.9955,-0.0316,0.0946,0.4534,-0.8863,0.0965,0.3462,-0.9332,0.0996,-0.9371,0.3344,0.1003,-0.3967,0.9124,0.1071,0.75,0.6527,0.1106,0.501,-0.8584,0.1116,0.9893,-0.0939,0.1126,0.7955,-0.5954,0.1131,0.7605,-0.6394,0.1156,-0.9448,-0.3065,0.1168,-0.8662,0.4858,0.1201,-0.5826,-0.8038,0.1201,0.9233,-0.3647,0.1208,0.992,0.0364,0.1245,0.9922,0.0104,0.1246,0.9793,-0.1594,0.1272,0.4724,-0.8722,0.1281,0.9429,0.3073,0.1311,0.7624,0.6337,0.1312,-0.8827,0.4512,0.1333,0.9258,0.3536,0.1341,-0.4822,-0.8657,0.1349,-0.3839,-0.9135,0.1354,-0.0871,-0.987,0.1357,-0.9402,0.3126,0.1394,-0.9656,0.2194,0.1429,-0.5738,-0.8065,0.1436,0.9854,0.0912,0.1458,0.6763,-0.722,0.1479,-0.8004,0.5809,0.1482,0.9744,0.169,0.1486,0.7557,-0.6379,0.1518,-0.749,0.6449,0.1534,-0.5555,-0.8172,0.1552,0.4669,0.8706,0.1555,0.8424,-0.5159,0.1556,0.6551,0.7393,0.1563,0.6257,-0.7642,0.1577,-0.6164,-0.7715,0.1583,0.968,0.1948,0.1586,0.4802,0.8627,0.1595,0.8838,0.4398,0.1615,-0.5312,-0.8317,0.1621,0.9168,0.365,0.1626,0.8807,0.445,0.1646,0.8242,0.5419,0.1657,-0.7583,0.6305,0.1673,0.3922,-0.9045,0.1691,0.7182,-0.675,0.1698,0.6606,-0.7312,0.1725,0.888,-0.4262,0.173,0.7765,-0.6059,0.1745,-0.7702,-0.6135,0.176,-0.9837,-0.0375,0.1785,0.8437,0.5062,0.1787,-0.9605,0.2132,0.1799,-0.5107,-0.8407,0.1814,0.5743,0.7983,0.1825,0.6968,-0.6937,0.1843,-0.5657,-0.8038,0.1862,0.277,-0.9427,0.1879,-0.7588,0.6236,0.1896,-0.463,-0.8658,0.1899,0.3938,-0.8994,0.1901,0.9728,0.132,0.1926,-0.7421,-0.6421,0.1985,0.1,-0.975,0.2007,-0.3582,0.9118,0.2022,0.977,0.0684,0.2028,-0.5403,-0.8167,0.2028,0.962,-0.1829,0.2033,-0.8599,-0.4682,0.2038,-0.9779,0.046,0.2038,-0.5956,-0.7769,0.21,0.7821,0.5867,0.2126,0.5536,-0.8052,0.2129,-0.5466,0.8099,0.2138,0.0695,0.9744,0.214,0.5844,-0.7827,0.2167,0.9513,-0.2193,0.2183,-0.602,-0.7681,0.2194,0.9686,-0.1168,0.2204,-0.7435,-0.6313,0.2252,0.7439,-0.6292,0.2269,-0.1309,0.9651,0.2273,0.8489,0.4771,0.2303,0.592,-0.7723,0.2304,-0.8764,-0.4229,0.2312,0.8984,-0.3734,0.2339,0.6303,-0.7403,0.2347,0.9569,0.1712,0.237,-0.9593,-0.1532,0.2394,0.5436,-0.8045,0.2395,-0.9664,-0.0937,0.24,0.8415,0.4839,0.2415,0.5418,-0.8051,0.2442,0.6935,-0.6778,0.2453,0.5808,-0.7762,0.2457,0.9551,-0.1656,0.2465,0.9507,-0.188,0.2466,-0.5631,-0.7888,0.247,0.5367,-0.8068,0.2483,-0.5039,-0.8273,0.2484,0.5256,-0.8137,0.2594,-0.5926,-0.7626,0.2596,-0.1424,-0.9552,0.26,0.3008,0.9176,0.2601,0.9316,-0.2538,0.2604,-0.963,-0.0701,0.2614,0.9326,0.2488,0.2618,-0.5663,-0.7815,0.2634,0.9388,0.2221,0.2659,0.9607,-0.0795,0.2664,-0.1359,-0.9542,0.2666,-0.5119,-0.8166,0.2669,-0.6168,-0.7405,0.2682,0.9559,-0.1199,0.2697,-0.4209,-0.8661,0.2713,0.1691,-0.9475,0.2719,0.9491,-0.1593,0.2729,0.714,-0.6448,0.2736,0.9487,-0.1585,0.2741,0.9617,0.0016,0.2746,-0.2708,-0.9226,0.2746,0.9595,-0.0622,0.275,0.9519,-0.135,0.2763,-0.756,-0.5934,0.2772,0.113,-0.9541,0.2781,0.3235,-0.9044,0.2793,0.8723,-0.4014,0.2798,0.4795,-0.8317,0.281,0.909,0.3079,0.2812,-0.822,-0.4952,0.2844,0.3953,-0.8734,0.2853,-0.8862,-0.3651,0.2916,0.2284,-0.9289,0.2942,0.9529,0.0736,0.2972,-0.1589,-0.9415,0.2985,0.775,-0.557,0.2995,0.4557,-0.8382,0.2996,-0.4583,-0.8368,0.3015,0.9531,0.0263,0.303,0.3808,-0.8736,0.3031,-0.5516,-0.7771,0.3037,-0.5038,-0.8087,0.3045,0.9507,0.0595,0.306,0.5669,-0.7648,0.3104,0.4705,-0.826,0.3109,0.4751,-0.8232,0.3117,0.4744,-0.8233,0.313,-0.9218,0.2286,0.313,0.4092,-0.8571,0.3148,-0.9275,0.2017,0.3182,0.9475,0.0302,0.3186,0.834,-0.4504,0.3204,-0.3609,0.8759,0.3228,-0.6968,-0.6405,0.3229,-0.7717,-0.5479,0.3229,0.2912,-0.9005,0.326,-0.6467,-0.6896,0.3267,0.9295,0.1709,0.3272,-0.4833,-0.812,0.3276,-0.4049,-0.8537,0.3295,0.7153,-0.6162,0.3296,0.2343,-0.9146,0.3299,0.5023,-0.7993,0.3308,0.4755,-0.8152,0.3308,0.6557,-0.6787,0.3316,-0.2013,-0.9217,0.3324,0.4243,-0.8423,0.3328,0.9429,0.0155,0.3329,0.3784,-0.8637,0.3338,0.9371,0.1017,0.3342,0.515,-0.7893,0.3346,0.6771,0.6554,0.3352,-0.1172,-0.9348,0.3372,-0.415,-0.845,0.3398,0.9277,-0.1544,0.3402,-0.8548,-0.3919,0.3409,0.9127,-0.2254,0.3412,0.4789,-0.8088,0.3424,0.5293,-0.7763,0.3437,-0.0993,-0.9338,0.3443,-0.7084,-0.6161,0.3452,0.1796,-0.9212,0.3477,-0.562,-0.7505,0.349,0.3131,-0.8833,0.3499,-0.4044,-0.845,0.3502,-0.8812,-0.3177,0.3504,0.4353,-0.8293,0.3506,-0.5101,-0.7854,0.354,0.3116,-0.8818,0.3561,0.6017,-0.7149,0.3569,0.2728,-0.8934,0.3584,0.4984,-0.7894,0.3588,0.1565,-0.9202,0.3609,0.9297,0.0735,0.3642,0.3968,-0.8426,0.3657,0.928,0.0714,0.3661,0.8567,0.3633,0.3666,0.2144,-0.9053,0.3667,-0.9262,0.0873,0.3673,0.4545,-0.8115,0.3677,0.3584,-0.8581,0.3693,0.3089,-0.8765,0.3701,-0.2753,-0.8873,0.3708,0.5407,-0.7551,0.3713,-0.6164,-0.6944,0.3739,0.0025,-0.9275,0.3758,0.9263,-0.027,0.3776,0.6587,-0.6507,0.3784,-0.4574,-0.8047,0.3789,0.5035,-0.7765,0.3795,0.9134,-0.1476,0.3804,0.3235,-0.8664,0.3815,0.3849,-0.8404,0.382,0.7996,-0.4634,0.3829,0.4005,-0.8325,0.3834,0.8889,-0.2508,0.3841,0.3188,-0.8665,0.3844,-0.7213,0.5762,0.3865,-0.3741,-0.843,0.3877,-0.7363,-0.5546,0.39,0.7359,-0.5536,0.3902,0.3889,-0.8345,0.3908,0.6044,-0.6943,0.3909,0.9138,0.1105,0.391,0.9031,-0.1776,0.3922,-0.7403,-0.546,0.3929,0.9007,-0.1852,0.3947,0.5765,-0.7154,0.3951,0.8835,-0.2517,0.3971,0.6377,-0.66,0.3987,0.2577,-0.8801,0.3994,0.8721,0.2826,0.4006,0.8767,0.2662,0.4015,0.9158,-0.0112,0.4027,-0.6058,-0.6861,0.4032,0.4601,0.791,0.4034,-0.54,-0.7387,0.404,0.3954,-0.8249,0.4045,0.6266,-0.6661,0.4062,-0.5813,-0.705,0.4062,0.8163,-0.4107,0.4077,0.2446,-0.8797,0.4079,0.2072,-0.8892,0.4092,-0.1046,-0.9064,0.4117,0.3551,-0.8393,0.413,0.9019,-0.1263,0.4131,0.5546,-0.7223,0.4148,0.4159,-0.8093,0.4158,0.3951,-0.8192,0.416,0.2108,-0.8846,0.4202,0.6226,-0.6601,0.4204,-0.6527,-0.6303,0.4219,0.6584,-0.6233,0.4232,-0.0656,-0.9036,0.424,-0.6694,0.61,0.4247,0.2762,-0.8622,0.4285,0.4284,0.7956,0.4287,0.2785,-0.8595,0.4291,0.4882,-0.76,0.4328,0.8897,-0.1453,0.4349,-0.6872,0.5819,0.4369,-0.8994,0.0094,0.4377,-0.1844,-0.88,0.4377,0.6831,-0.5846,0.4387,0.8956,-0.0733,0.4388,0.3811,-0.8138,0.4396,0.1687,-0.8822,0.4405,-0.3151,-0.8406,0.4406,0.4689,0.7655,0.4433,0.653,-0.6141,0.4434,0.6717,-0.5935,0.4435,0.1649,-0.881,0.4439,0.4041,-0.7998,0.4497,0.5812,-0.6782,0.4506,0.4452,-0.7738,0.4526,-0.8768,0.1627,0.4545,-0.015,-0.8906,0.4566,-0.4662,-0.7577,0.457,0.8889,-0.0322,0.4573,-0.6522,0.6046,0.4575,0.3225,-0.8286,0.4587,0.3439,-0.8194,0.4605,0.8661,-0.1945,0.4607,-0.452,-0.7639,0.4611,-0.3589,-0.8115,0.4628,0.086,-0.8823,0.4638,-0.1599,-0.8714,0.4639,0.2277,-0.8561,0.4647,0.135,-0.8751,0.4651,0.3202,-0.8253,0.4659,0.342,-0.8161,0.4662,-0.8092,-0.3576,0.4667,-0.8156,-0.342,0.4679,0.3054,-0.8294,0.469,0.4681,0.7489,0.4763,-0.8682,0.1395,0.4784,0.1946,-0.8563,0.4788,0.7259,-0.4938,0.4806,0.4625,-0.7451,0.4809,-0.8642,-0.1477,0.4812,0.7983,-0.3623,0.485,0.2755,-0.83,0.4857,0.2865,-0.8258,0.4866,-0.8537,0.1853,0.488,0.7398,-0.4633,0.4909,0.1355,-0.8606,0.4922,-0.644,-0.5856,0.4954,-0.8681,0.0327,0.4958,0.8617,0.1081,0.497,0.3325,-0.8015,0.4971,0.6245,-0.6024,0.498,0.6421,-0.5828,0.4985,0.8504,0.1682,0.4985,0.3158,-0.8073,0.4988,0.6185,-0.6072,0.4992,0.7151,0.4893,0.4996,0.8314,-0.2433,0.5008,0.2206,-0.837,0.5023,0.859,0.0991,0.5036,0.4439,-0.7411,0.5068,0.4508,-0.7348,0.5068,0.5375,-0.674,0.5113,-0.8592,0.0209,0.5115,-0.8064,0.2967,0.5122,0.4485,-0.7325,0.5177,-0.745,-0.4206,0.5181,-0.5799,0.6287,0.5242,0.4051,-0.7491,0.528,0.3514,-0.7731,0.5288,-0.1148,-0.841,0.5293,0.4369,-0.7273,0.5299,-0.8332,-0.1584,0.5301,0.4042,-0.7454,0.5303,-0.6436,0.5519,0.5315,0.814,-0.2342,0.5319,0.8271,-0.1815,0.532,0.464,-0.7084,0.533,0.2927,-0.7939,0.5347,0.7492,-0.3909,0.5347,-0.0244,-0.8447,0.5364,0.3123,-0.784,0.5385,-0.7464,0.391,0.5388,-0.3019,0.7865,0.5424,0.5986,-0.5895,0.5431,0.2519,-0.801,0.5444,-0.0376,-0.838,0.5472,0.4222,-0.7227,0.5484,-0.3367,-0.7654,0.5491,0.1693,-0.8184,0.5499,0.5871,-0.5941,0.5527,0.214,-0.8054,0.5532,0.5138,-0.6557,0.5553,0.4863,-0.6747,0.556,0.6363,-0.5347,0.5563,0.3403,-0.7581,0.5572,-0.829,-0.0484,0.5593,0.3692,-0.7422,0.5606,-0.0874,0.8234,0.5653,0.3591,-0.7426,0.5664,0.295,-0.7695,0.5665,-0.1989,-0.7997,0.5676,0.1433,-0.8107,0.5677,-0.0654,-0.8207,0.5683,0.1582,-0.8075,0.569,0.3857,-0.7263,0.5703,0.4913,-0.6584,0.5703,-0.8209,0.0284,0.5712,-0.0207,-0.8205,0.5713,0.1101,-0.8133,0.5721,0.0742,-0.8169,0.5722,-0.8174,0.0666,0.5769,0.7681,-0.2779,0.5769,-0.7415,-0.3425,0.5786,-0.5165,0.6312,0.5792,0.442,-0.6849,0.5797,-0.7909,0.1961,0.5798,-0.085,-0.8103,0.5803,0.6436,-0.499,0.5803,0.2316,-0.7808,0.5804,0.7761,0.2466,0.5839,-0.808,0.0788,0.5854,0.4743,-0.6575,0.5872,-0.1752,-0.7902,0.5882,-0.6592,-0.4686,0.5893,-0.8051,0.068,0.5898,0.5107,-0.6255,0.5921,0.4166,-0.6898,0.5925,-0.3477,-0.7267,0.5956,0.4431,-0.67,0.5958,0.3403,-0.7275,0.5984,0.4535,-0.6605,0.6013,0.7988,0.0187,0.6018,0.7986,-0.0041,0.6035,-0.4468,-0.6604,0.6037,0.5349,-0.5912,0.6037,0.0334,-0.7965,0.6043,0.0671,-0.794,0.6061,-0.3705,-0.7038,0.6071,0.3114,-0.7311,0.6086,0.3444,-0.7148,0.6142,-0.1399,-0.7767,0.6151,0.4687,-0.634,0.6169,0.2857,-0.7334,0.62,0.3396,-0.7073,0.6239,0.3597,-0.6938,0.6264,0.6555,-0.4218,0.6265,0.5365,-0.5653,0.6279,-0.0715,-0.775,0.6299,0.3901,-0.6716,0.6304,0.7755,-0.0362,0.6328,0.413,-0.655,0.6335,0.4539,-0.6266,0.6336,0.3999,-0.6622,0.6337,0.342,0.6939,0.6341,0.0921,0.7677,0.6345,0.1216,-0.7633,0.6357,0.1309,-0.7607,0.6359,0.2524,-0.7293};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_824_vector_2()
		{
			double[] value = {0.6379,0.1445,0.7564,0.6422,0.076,-0.7627,0.6437,0.3489,-0.6811,0.6443,-0.6031,0.4703,0.6471,0.3934,-0.653,0.6475,0.3082,-0.697,0.6475,0.3571,-0.6732,0.6498,0.3465,-0.6765,0.6506,0.6927,0.3113,0.6546,0.6571,-0.3737,0.6553,0.5337,-0.5345,0.6562,-0.7397,0.1493,0.6576,0.7402,-0.1404,0.6577,0.2815,-0.6987,0.6581,0.2802,-0.6988,0.6599,0.4825,0.576,0.6639,0.4958,-0.5599,0.6681,0.042,0.7429,0.6691,0.3854,-0.6354,0.6699,0.5041,-0.545,0.6733,0.7367,-0.0625,0.6755,0.6274,-0.3875,0.6764,0.154,-0.7202,0.6777,-0.1264,-0.7244,0.678,-0.0816,-0.7305,0.6812,0.4975,-0.5371,0.6816,-0.2633,-0.6827,0.6822,-0.3129,-0.6608,0.6834,0.5644,-0.4631,0.6879,-0.02,0.7255,0.6881,-0.0117,0.7255,0.6882,0.1905,-0.7001,0.6884,-0.0332,-0.7245,0.6886,0.6972,-0.1994,0.6936,-0.71,-0.1222,0.6937,0.5631,0.4492,0.6948,0.6145,0.3736,0.6988,0.2562,-0.6678,0.6993,-0.7043,-0.1223,0.7012,-0.2901,0.6513,0.7022,0.5804,-0.4125,0.7034,0.5667,-0.4291,0.7051,0.4285,-0.565,0.7071,0.6964,0.1227,0.7106,0.4187,-0.5655,0.712,-0.0009,0.7021,0.7129,-0.2632,-0.6499,0.7136,-0.5668,-0.4118,0.7154,-0.5953,-0.3658,0.7161,-0.6316,-0.2973,0.718,0.3247,-0.6157,0.7189,-0.0336,0.6943,0.7263,-0.6643,0.1766,0.7279,0.6585,0.1909,0.7307,-0.0224,0.6824,0.7432,-0.6558,-0.1325,0.7432,0.6679,-0.0394,0.7486,0.6629,-0.0154,0.7501,-0.3784,-0.5423,0.7529,-0.3856,0.5334,0.7537,0.0398,0.656,0.7551,-0.4792,-0.4474,0.7551,0.4655,-0.4617,0.7553,0.5672,0.3284,0.7589,-0.507,0.4088,0.7625,0.5495,0.3416,0.7655,0.1349,0.6291,0.7677,0.6265,-0.1349,0.7786,-0.3355,-0.5304,0.7885,0.2722,0.5516,0.7916,-0.3857,-0.4739,0.7951,-0.4076,-0.4491,0.7961,-0.3989,0.4551,0.797,-0.2177,0.5633,0.7976,-0.1254,-0.59,0.8029,0.5635,-0.1945,0.8112,-0.1948,-0.5513,0.8116,-0.5243,0.2578,0.8172,0.1932,-0.543,0.818,0.3358,-0.4669,0.819,0.2163,0.5314,0.8194,-0.4647,0.3356,0.8219,-0.3234,0.4689,0.822,-0.5098,-0.254,0.8281,-0.5507,-0.1047,0.8312,-0.051,0.5536,0.8314,-0.0978,-0.5469,0.8317,-0.2104,-0.5137,0.8423,-0.5256,0.119,0.8436,0.4859,-0.2285,0.8443,-0.5301,0.0781,0.8459,-0.4883,-0.2144,0.8478,0.3103,0.43,0.8486,-0.4027,-0.3431,0.8504,-0.0303,-0.5253,0.8513,0.007,0.5246,0.8517,0.1082,0.5127,0.8519,0.3355,0.4022,0.8617,-0.4707,-0.1894,0.8651,-0.4399,-0.2412,0.8679,-0.2227,0.4441,0.8704,-0.492,-0.0177,0.8718,-0.4233,0.2465,0.8754,0.4126,-0.2517,0.8788,0.1519,0.4524,0.8822,-0.4528,0.1293,0.8831,-0.0837,0.4616,0.8858,-0.4434,0.1371,0.888,0.2132,0.4075,0.8897,-0.079,0.4496,0.891,0.4539,-0.0101,0.8935,0.2916,0.3414,0.8944,0.2389,-0.3781,0.8946,-0.1962,-0.4014,0.896,0.1918,0.4004,0.899,0.0784,0.431,0.9,-0.4259,-0.0925,0.9005,0.0111,-0.4347,0.9033,0.0638,0.4241,0.9053,0.2394,0.3508,0.9061,0.1997,0.373,0.9085,-0.4137,-0.0591,0.9126,-0.0561,0.405,0.9131,0.0954,0.3964,0.9151,-0.2832,-0.287,0.9169,0.3959,0.0505,0.9176,0.0523,0.394,0.9177,-0.3384,0.2082,0.9197,-0.0872,0.3828,0.9199,-0.3692,-0.1322,0.9218,0.0764,0.3801,0.922,-0.0107,0.3871,0.9231,0.3677,0.1128,0.9254,-0.348,0.1504,0.9312,0.2696,0.2455,0.9343,0.2466,0.2575,0.9456,0.0455,0.322,0.9459,-0.0237,-0.3236,0.9461,0.0064,0.3238,0.9469,0.0015,-0.3217,0.9536,-0.1413,-0.266,0.9587,-0.2718,0.0843,0.9592,-0.2723,-0.0762,0.9601,-0.2797,-0.0005,0.9614,-0.0193,0.2746,0.9615,0.2693,0.0541,0.962,0.0899,0.2577,0.9626,0.0295,0.2693,0.9673,0.1868,0.1714,0.9712,-0.1219,-0.2047,0.979,-0.1829,-0.0895,0.9838,0.0692,0.1655,0.9852,0.1397,0.0994,0.9868,0.0049,0.1621,0.9884,-0.0379,0.1471,0.9898,-0.0063,0.1424,0.99,0.0249,0.1391,0.9942,-0.0315,0.1029};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlscphoid_Geo_5_829_coordIndex_1()
		{
			int[] value = {0,1,2,-1,2,3,0,-1,4,5,6,-1,7,8,9,-1,9,8,10,-1,11,12,13,-1,14,12,15,-1,16,17,18,-1,17,19,18,-1,20,21,22,-1,21,23,22,-1,24,25,26,-1,26,27,24,-1,28,29,30,-1,28,31,29,-1,28,32,31,-1,32,33,31,-1,34,35,36,-1,37,38,39,-1,37,40,41,-1,42,43,44,-1,45,46,47,-1,48,49,50,-1,51,40,52,-1,53,54,55,-1,56,54,57,-1,58,54,59,-1,60,54,61,-1,62,63,64,-1,65,66,67,-1,66,68,67,-1,69,70,71,-1,1,72,73,-1,73,2,1,-1,74,75,76,-1,77,11,78,-1,13,79,11,-1,80,81,6,-1,82,83,84,-1,84,85,82,-1,86,83,87,-1,88,89,90,-1,91,27,92,-1,91,93,27,-1,94,31,95,-1,90,96,97,-1,98,90,99,-1,100,90,101,-1,102,90,103,-1,90,104,88,-1,105,90,106,-1,107,90,108,-1,92,109,91,-1,92,110,109,-1,94,111,29,-1,112,113,114,-1,115,8,7,-1,116,117,7,-1,118,79,14,-1,119,51,120,-1,52,121,51,-1,122,123,124,-1,125,126,127,-1,128,129,130,-1,131,132,133,-1,26,25,16,-1,16,18,26,-1,22,134,135,-1,135,20,22,-1,23,136,137,-1,137,138,23,-1,139,140,141,-1,140,142,141,-1,143,144,145,-1,145,95,143,-1,30,146,28,-1,146,147,148,-1,146,30,147,-1,148,149,5,-1,150,80,132,-1,151,152,153,-1,151,132,152,-1,48,50,154,-1,155,154,156,-1,154,34,156,-1,157,158,159,-1,160,161,162,-1,160,163,161,-1,161,164,2,-1,2,73,161,-1,165,166,167,-1,166,4,167,-1,168,166,1,-1,169,3,170,-1,169,71,3,-1,71,169,69,-1,69,171,172,-1,69,169,171,-1,32,28,69,-1,69,75,32,-1,173,174,74,-1,175,32,74,-1,32,75,74,-1,176,37,39,-1,38,177,178,-1,38,41,177,-1,179,180,181,-1,180,182,181,-1,36,156,34,-1,183,184,35,-1,183,159,185,-1,185,186,187,-1,187,183,185,-1,186,188,189,-1,186,190,188,-1,191,177,41,-1,191,78,177,-1,78,174,177,-1,150,131,188,-1,150,132,131,-1,192,165,167,-1,190,81,150,-1,74,11,175,-1,11,79,175,-1,41,40,119,-1,193,187,189,-1,193,184,187,-1,186,189,187,-1,159,183,157,-1,183,187,184,-1,34,157,35,-1,157,183,35,-1,121,194,195,-1,121,52,194,-1,38,37,41,-1,39,38,178,-1,196,39,197,-1,43,39,178,-1,69,28,146,-1,44,198,42,-1,69,146,70,-1,146,199,0,-1,0,70,146,-1,200,169,170,-1,200,171,169,-1,166,168,4,-1,1,166,72,-1,162,73,201,-1,162,161,73,-1,180,155,156,-1,155,180,202,-1,202,180,179,-1,45,47,203,-1,204,205,206,-1,85,110,207,-1,91,208,209,-1,91,109,208,-1,80,150,81,-1,82,148,147,-1,82,149,148,-1,210,108,90,-1,148,5,199,-1,199,146,148,-1,94,95,145,-1,145,111,94,-1,9,211,116,-1,9,10,211,-1,22,211,10,-1,10,134,22,-1,25,212,21,-1,21,16,25,-1,133,132,151,-1,123,122,184,-1,126,65,67,-1,67,129,126,-1,126,125,213,-1,214,54,53,-1,215,54,216,-1,216,54,214,-1,121,122,124,-1,121,124,51,-1,119,40,51,-1,119,120,191,-1,120,217,191,-1,7,9,116,-1,115,7,112,-1,115,112,114,-1,218,115,114,-1,84,110,85,-1,24,27,93,-1,93,219,24,-1,106,90,107,-1,104,90,220,-1,103,90,89,-1,101,90,102,-1,99,90,100,-1,96,90,98,-1,29,31,94,-1,209,93,91,-1,209,221,93,-1,90,105,220,-1,84,83,86,-1,97,210,90,-1,153,26,151,-1,78,74,174,-1,78,11,74,-1,113,112,222,-1,125,223,213,-1,51,124,224,-1,225,226,227,-1,61,54,215,-1,59,54,60,-1,57,54,58,-1,55,54,56,-1,181,196,179,-1,181,176,196,-1,52,37,194,-1,52,40,37,-1,76,173,74,-1,163,228,229,-1,163,230,228,-1,150,188,190,-1,196,176,39,-1,119,191,41,-1,156,182,180,-1,79,118,231,-1,118,232,231,-1,29,147,30,-1,175,233,33,-1,33,32,175,-1,234,25,24,-1,234,212,25,-1,14,13,12,-1,138,22,23,-1,138,211,22,-1,17,21,20,-1,17,16,21,-1,79,13,14,-1,188,131,235,-1,184,193,236,-1,12,116,15,-1,12,117,116,-1,202,47,46,-1,46,48,202,-1,237,203,47,-1,47,202,237,-1,238,206,203,-1,203,237,238,-1,204,238,239,-1,204,206,238,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlscphoid_Geo_5_829_coordIndex_2()
		{
			int[] value = {229,240,200,-1,229,228,240,-1,170,2,164,-1,3,2,170,-1,241,159,242,-1,159,241,185,-1,243,48,46,-1,48,243,49,-1,186,192,190,-1,186,244,192,-1,158,242,159,-1,158,245,242,-1,115,10,8,-1,115,218,10,-1,134,246,135,-1,134,247,246,-1,248,249,250,-1,251,249,248,-1,252,253,254,-1,255,253,252,-1,256,193,257,-1,256,236,193,-1,138,116,211,-1,138,15,116,-1,133,19,258,-1,133,18,19,-1,207,80,149,-1,207,259,80,-1,136,234,260,-1,136,212,234,-1,261,262,137,-1,263,262,261,-1,79,233,175,-1,79,231,233,-1,149,6,5,-1,80,6,149,-1,27,153,92,-1,26,153,27,-1,160,230,163,-1,160,264,230,-1,200,198,171,-1,200,240,198,-1,173,172,44,-1,172,173,76,-1,181,37,176,-1,194,37,181,-1,196,202,179,-1,196,237,202,-1,265,216,266,-1,216,265,215,-1,267,268,269,-1,268,267,270,-1,271,272,273,-1,271,274,272,-1,275,276,277,-1,275,278,276,-1,226,279,280,-1,279,226,225,-1,265,227,226,-1,227,265,270,-1,224,123,281,-1,224,124,123,-1,282,283,284,-1,285,283,282,-1,128,286,287,-1,130,286,128,-1,288,125,127,-1,288,223,125,-1,289,112,120,-1,222,112,289,-1,151,18,133,-1,151,26,18,-1,290,263,261,-1,263,290,291,-1,210,292,293,-1,292,210,97,-1,209,105,221,-1,220,105,209,-1,233,143,33,-1,143,233,294,-1,232,141,231,-1,141,232,139,-1,295,261,260,-1,290,261,295,-1,234,219,296,-1,234,24,219,-1,294,144,143,-1,294,297,144,-1,298,82,147,-1,298,83,82,-1,295,299,300,-1,296,299,295,-1,247,213,246,-1,301,213,247,-1,218,301,247,-1,218,302,301,-1,114,302,218,-1,114,113,302,-1,77,191,217,-1,77,78,191,-1,262,14,15,-1,262,118,14,-1,224,269,51,-1,267,269,224,-1,268,289,269,-1,268,273,289,-1,270,266,268,-1,266,270,265,-1,273,222,289,-1,273,272,222,-1,53,63,274,-1,53,55,63,-1,62,302,113,-1,62,64,302,-1,63,56,278,-1,55,56,63,-1,278,57,276,-1,278,56,57,-1,58,68,66,-1,58,59,68,-1,280,61,226,-1,60,61,280,-1,277,126,213,-1,65,126,277,-1,223,250,249,-1,223,288,250,-1,287,254,253,-1,286,254,287,-1,303,225,304,-1,279,225,303,-1,270,305,227,-1,270,267,305,-1,303,285,282,-1,303,304,285,-1,236,123,184,-1,283,123,236,-1,284,236,256,-1,236,284,283,-1,252,258,255,-1,252,235,258,-1,212,23,21,-1,212,136,23,-1,93,306,219,-1,93,221,306,-1,300,290,295,-1,300,293,290,-1,101,111,145,-1,102,111,101,-1,142,99,297,-1,99,142,98,-1,97,140,292,-1,97,96,140,-1,106,299,306,-1,107,299,106,-1,208,220,209,-1,220,208,104,-1,103,83,298,-1,89,83,103,-1,86,208,109,-1,86,87,208,-1,264,205,230,-1,45,205,264,-1,204,230,205,-1,204,228,230,-1,206,45,203,-1,206,205,45,-1,197,237,196,-1,237,197,238,-1,42,240,239,-1,42,198,240,-1,48,155,202,-1,155,48,154,-1,242,201,241,-1,162,201,242,-1,201,72,307,-1,201,73,72,-1,307,166,165,-1,166,307,72,-1,43,173,44,-1,43,178,173,-1,197,43,42,-1,43,197,39,-1,182,194,181,-1,195,194,182,-1,121,36,122,-1,36,121,195,-1,188,193,189,-1,257,193,188,-1,235,257,188,-1,235,252,257,-1,35,122,36,-1,35,184,122,-1,195,156,36,-1,182,156,195,-1,178,174,173,-1,178,177,174,-1,76,69,172,-1,76,75,69,-1,165,244,307,-1,165,192,244,-1,161,229,164,-1,163,229,161,-1,307,241,201,-1,307,244,241,-1,245,162,242,-1,160,162,245,-1,157,154,50,-1,154,157,34,-1,239,197,42,-1,197,239,238,-1,243,45,264,-1,45,243,46,-1,259,132,80,-1,132,259,152,-1,87,104,208,-1,88,104,87,-1,106,221,105,-1,221,106,306,-1,140,98,142,-1,98,140,96,-1,144,101,145,-1,101,144,100,-1,102,298,111,-1,102,103,298,-1,141,297,294,-1,297,141,142,-1,292,139,291,-1,292,140,139,-1,296,306,299,-1,219,306,296,-1,135,17,20,-1,135,251,17,-1,17,248,19,-1,248,17,251,-1,256,286,284,-1,256,254,286,-1,285,305,281,-1,285,304,305,-1,129,282,130,-1,303,282,129,-1,304,227,305,-1,225,227,304,-1,129,279,303,-1,67,279,129,-1,288,253,250,-1,288,287,253,-1,128,126,129,-1,127,126,128,-1,226,215,265,-1,61,215,226,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlscphoid_Geo_5_829_coordIndex_3()
		{
			int[] value = {68,60,280,-1,59,60,68,-1,57,66,276,-1,57,58,66,-1,301,277,213,-1,275,277,301,-1,302,275,301,-1,64,275,302,-1,113,272,62,-1,222,272,113,-1,267,281,305,-1,281,267,224,-1,137,15,138,-1,137,262,15,-1,217,117,77,-1,217,7,117,-1,7,120,112,-1,7,217,120,-1,246,223,249,-1,213,223,246,-1,107,300,299,-1,300,107,108,-1,111,147,29,-1,111,298,147,-1,297,100,144,-1,297,99,100,-1,84,109,110,-1,109,84,86,-1,296,260,234,-1,295,260,296,-1,263,139,232,-1,139,263,291,-1,294,231,141,-1,294,233,231,-1,33,95,31,-1,95,33,143,-1,108,293,300,-1,210,293,108,-1,83,88,87,-1,83,89,88,-1,207,82,85,-1,207,149,82,-1,293,291,290,-1,291,293,292,-1,255,19,248,-1,258,19,255,-1,77,12,11,-1,117,12,77,-1,269,120,51,-1,289,120,269,-1,71,0,3,-1,71,70,0,-1,287,127,128,-1,287,288,127,-1,130,284,286,-1,282,284,130,-1,283,281,123,-1,281,283,285,-1,67,280,279,-1,67,68,280,-1,276,65,277,-1,276,66,65,-1,64,278,275,-1,64,63,278,-1,274,62,272,-1,274,63,62,-1,266,273,268,-1,266,271,273,-1,216,271,266,-1,214,271,216,-1,214,274,271,-1,53,274,214,-1,44,171,198,-1,171,44,172,-1,243,160,245,-1,243,264,160,-1,50,158,157,-1,50,49,158,-1,92,152,110,-1,92,153,152,-1,168,5,4,-1,168,199,5,-1,262,232,118,-1,232,262,263,-1,260,137,136,-1,261,137,260,-1,259,110,152,-1,110,259,207,-1,199,1,0,-1,199,168,1,-1,235,133,258,-1,133,235,131,-1,254,257,252,-1,254,256,257,-1,250,255,248,-1,250,253,255,-1,135,249,251,-1,135,246,249,-1,134,218,247,-1,10,218,134,-1,241,186,185,-1,186,241,244,-1,192,81,190,-1,81,192,167,-1,245,49,243,-1,245,158,49,-1,6,167,4,-1,6,81,167,-1,200,164,229,-1,170,164,200,-1,228,239,240,-1,228,204,239,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlscphoid_Geo_5_829_normalIndex_1()
		{
			int[] value = {219,218,148,-1,148,158,219,-1,292,305,288,-1,81,165,184,-1,184,165,258,-1,59,137,120,-1,178,137,220,-1,307,306,280,-1,306,275,280,-1,297,294,277,-1,294,261,277,-1,226,296,300,-1,300,251,226,-1,234,273,278,-1,234,286,273,-1,234,171,286,-1,171,287,286,-1,56,58,23,-1,50,76,86,-1,50,17,28,-1,124,129,181,-1,53,27,9,-1,14,52,41,-1,2,17,13,-1,49,73,78,-1,110,73,108,-1,94,73,92,-1,91,73,68,-1,61,74,97,-1,132,104,100,-1,104,96,100,-1,201,214,182,-1,218,175,146,-1,146,148,218,-1,149,185,239,-1,80,59,93,-1,120,113,59,-1,252,268,288,-1,224,199,126,-1,126,169,224,-1,142,199,179,-1,216,250,249,-1,157,251,236,-1,157,191,251,-1,263,286,272,-1,249,256,237,-1,269,249,264,-1,271,249,253,-1,245,249,257,-1,249,210,216,-1,207,249,204,-1,227,249,242,-1,236,143,157,-1,236,222,143,-1,263,260,273,-1,30,62,65,-1,123,165,81,-1,195,116,81,-1,213,113,178,-1,4,2,7,-1,13,8,2,-1,21,39,5,-1,150,138,147,-1,128,106,109,-1,186,230,241,-1,300,296,307,-1,307,280,300,-1,277,293,303,-1,303,297,277,-1,261,246,229,-1,229,240,261,-1,270,265,289,-1,265,276,289,-1,304,291,283,-1,283,272,304,-1,278,282,234,-1,282,266,298,-1,282,278,266,-1,298,274,305,-1,193,252,230,-1,255,290,302,-1,255,230,290,-1,14,41,35,-1,18,35,33,-1,35,56,33,-1,63,71,82,-1,107,121,127,-1,107,112,121,-1,121,133,148,-1,148,146,121,-1,198,223,259,-1,223,292,259,-1,285,223,218,-1,176,158,152,-1,176,182,158,-1,182,176,201,-1,201,200,248,-1,201,176,200,-1,171,234,201,-1,201,185,171,-1,164,131,149,-1,166,171,149,-1,171,185,149,-1,40,50,86,-1,76,75,105,-1,76,28,75,-1,10,0,37,-1,0,29,37,-1,23,33,56,-1,88,67,58,-1,88,82,98,-1,98,136,111,-1,111,88,98,-1,136,162,144,-1,136,196,162,-1,51,75,28,-1,51,93,75,-1,93,131,75,-1,193,186,162,-1,193,230,186,-1,194,198,259,-1,196,268,193,-1,149,59,166,-1,59,113,166,-1,28,17,4,-1,135,111,144,-1,135,67,111,-1,136,144,111,-1,82,88,63,-1,88,111,67,-1,56,63,58,-1,63,88,58,-1,8,31,19,-1,8,13,31,-1,76,50,28,-1,86,76,105,-1,20,86,64,-1,129,86,105,-1,201,234,282,-1,181,177,124,-1,201,282,214,-1,282,301,219,-1,219,214,282,-1,173,176,152,-1,173,200,176,-1,223,285,292,-1,218,223,175,-1,127,146,141,-1,127,121,146,-1,0,18,33,-1,18,0,1,-1,1,0,10,-1,53,9,25,-1,70,57,34,-1,169,222,208,-1,157,174,183,-1,157,143,174,-1,252,193,268,-1,224,298,266,-1,224,274,298,-1,225,242,249,-1,298,305,301,-1,301,282,298,-1,263,272,283,-1,283,260,263,-1,184,244,195,-1,184,258,244,-1,277,244,258,-1,258,293,277,-1,296,281,294,-1,294,307,296,-1,241,230,255,-1,39,21,67,-1,138,132,100,-1,100,106,138,-1,138,150,161,-1,44,73,49,-1,55,73,46,-1,46,73,44,-1,8,21,5,-1,8,5,2,-1,4,17,2,-1,4,7,51,-1,7,54,51,-1,81,184,195,-1,123,81,30,-1,123,30,65,-1,180,123,65,-1,126,222,169,-1,226,251,191,-1,191,168,226,-1,204,249,227,-1,210,249,209,-1,257,249,250,-1,253,249,245,-1,264,249,271,-1,256,249,269,-1,273,286,263,-1,183,191,157,-1,183,192,191,-1,249,207,209,-1,126,199,142,-1,237,225,249,-1,302,300,255,-1,93,149,131,-1,93,59,149,-1,62,30,36,-1,150,167,161,-1,2,5,3,-1,79,66,60,-1,68,73,55,-1,92,73,91,-1,108,73,94,-1,78,73,110,-1,37,20,10,-1,37,40,20,-1,13,50,31,-1,13,17,50,-1,239,164,149,-1,112,118,154,-1,112,84,118,-1,193,162,196,-1,20,40,86,-1,4,51,28,-1,33,29,0,-1,113,213,231,-1,213,262,231,-1,273,266,278,-1,166,284,287,-1,287,171,166,-1,205,296,226,-1,205,281,296,-1,178,120,137,-1,240,277,261,-1,240,244,277,-1,306,294,297,-1,306,307,294,-1,113,120,178,-1,162,186,187,-1,67,135,99,-1,137,195,220,-1,137,116,195,-1,1,9,27,-1,27,14,1,-1,16,25,9,-1,9,1,16,-1,43,34,25,-1,25,16,43,-1,70,43,90,-1,70,34,43,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlscphoid_Geo_5_829_normalIndex_2()
		{
			int[] value = {154,155,173,-1,154,118,155,-1,152,148,133,-1,158,148,152,-1,130,82,117,-1,82,130,98,-1,69,14,27,-1,14,69,52,-1,136,194,196,-1,136,153,194,-1,71,117,82,-1,71,102,117,-1,123,258,165,-1,123,180,258,-1,293,228,303,-1,293,212,228,-1,267,217,190,-1,295,217,267,-1,170,163,140,-1,202,163,170,-1,125,135,156,-1,125,99,135,-1,240,195,244,-1,240,220,195,-1,241,275,232,-1,241,280,275,-1,208,252,274,-1,208,235,252,-1,246,205,197,-1,246,281,205,-1,211,233,229,-1,247,233,211,-1,113,284,166,-1,113,231,284,-1,274,288,305,-1,252,288,274,-1,251,302,236,-1,300,302,251,-1,107,84,112,-1,107,77,84,-1,173,177,200,-1,173,155,177,-1,164,248,181,-1,248,164,239,-1,37,50,40,-1,31,50,37,-1,20,1,10,-1,20,16,1,-1,45,46,24,-1,46,45,55,-1,11,12,6,-1,12,11,26,-1,32,38,22,-1,32,48,38,-1,134,122,145,-1,134,115,122,-1,66,85,87,-1,85,66,79,-1,45,60,66,-1,60,45,26,-1,3,39,42,-1,3,5,39,-1,101,89,103,-1,83,89,101,-1,128,114,139,-1,109,114,128,-1,160,150,147,-1,160,167,150,-1,15,30,7,-1,36,30,15,-1,255,280,241,-1,255,300,280,-1,206,247,211,-1,247,206,238,-1,225,243,221,-1,243,225,237,-1,183,207,192,-1,209,207,183,-1,284,304,287,-1,304,284,299,-1,262,289,231,-1,289,262,270,-1,188,211,197,-1,206,211,188,-1,205,168,172,-1,205,226,168,-1,299,291,304,-1,299,279,291,-1,254,224,266,-1,254,199,224,-1,188,203,215,-1,172,203,188,-1,212,161,228,-1,151,161,212,-1,180,151,212,-1,180,119,151,-1,65,119,180,-1,65,62,119,-1,80,51,54,-1,80,93,51,-1,233,178,220,-1,233,213,178,-1,3,6,2,-1,11,6,3,-1,12,15,6,-1,12,22,15,-1,26,24,12,-1,24,26,45,-1,22,36,15,-1,22,38,36,-1,49,74,48,-1,49,78,74,-1,61,119,62,-1,61,97,119,-1,74,110,115,-1,78,110,74,-1,115,108,122,-1,115,110,108,-1,94,96,104,-1,94,92,96,-1,87,68,66,-1,91,68,87,-1,145,138,161,-1,132,138,145,-1,167,190,217,-1,167,160,190,-1,139,140,163,-1,114,140,139,-1,95,79,72,-1,85,79,95,-1,26,47,60,-1,26,11,47,-1,95,83,101,-1,95,72,83,-1,99,39,67,-1,89,39,99,-1,103,99,125,-1,99,103,89,-1,170,232,202,-1,170,187,232,-1,281,261,294,-1,281,246,261,-1,191,189,168,-1,191,192,189,-1,215,206,188,-1,215,221,206,-1,253,260,283,-1,245,260,253,-1,276,264,279,-1,264,276,269,-1,237,265,243,-1,237,256,265,-1,204,203,189,-1,227,203,204,-1,174,209,183,-1,209,174,210,-1,257,199,254,-1,250,199,257,-1,142,174,143,-1,142,179,174,-1,77,57,84,-1,53,57,77,-1,70,84,57,-1,70,118,84,-1,34,53,25,-1,34,57,53,-1,64,16,20,-1,16,64,43,-1,124,155,90,-1,124,177,155,-1,14,18,1,-1,18,14,35,-1,117,141,130,-1,127,141,117,-1,141,175,159,-1,141,146,175,-1,159,223,198,-1,223,159,175,-1,129,164,181,-1,129,105,164,-1,64,129,124,-1,129,64,86,-1,29,31,37,-1,19,31,29,-1,8,23,21,-1,23,8,19,-1,162,135,144,-1,156,135,162,-1,187,156,162,-1,187,170,156,-1,58,21,23,-1,58,67,21,-1,19,33,23,-1,29,33,19,-1,105,131,164,-1,105,75,131,-1,239,201,248,-1,239,185,201,-1,198,153,159,-1,198,194,153,-1,121,154,133,-1,112,154,121,-1,159,130,141,-1,159,153,130,-1,102,127,117,-1,107,127,102,-1,63,35,41,-1,35,63,56,-1,90,64,124,-1,64,90,43,-1,69,53,77,-1,53,69,27,-1,235,230,252,-1,230,235,290,-1,179,210,174,-1,216,210,179,-1,204,192,207,-1,192,204,189,-1,265,269,276,-1,269,265,256,-1,291,253,283,-1,253,291,271,-1,245,254,260,-1,245,257,254,-1,289,279,299,-1,279,289,276,-1,243,270,238,-1,243,265,270,-1,172,189,203,-1,168,189,172,-1,303,306,297,-1,303,295,306,-1,306,267,275,-1,267,306,295,-1,125,114,103,-1,125,140,114,-1,83,47,42,-1,83,72,47,-1,106,101,109,-1,95,101,106,-1,72,60,47,-1,79,60,72,-1,106,85,95,-1,100,85,106,-1,160,163,190,-1,160,139,163,-1,128,138,106,-1,147,138,128,-1,66,55,45,-1,68,55,66,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlscphoid_Geo_5_829_normalIndex_3()
		{
			int[] value = {96,91,87,-1,92,91,96,-1,108,104,122,-1,108,94,104,-1,151,145,161,-1,134,145,151,-1,119,134,151,-1,97,134,119,-1,62,38,61,-1,36,38,62,-1,11,42,47,-1,42,11,3,-1,229,220,240,-1,229,233,220,-1,54,116,80,-1,54,81,116,-1,81,7,30,-1,81,54,7,-1,228,167,217,-1,161,167,228,-1,227,215,203,-1,215,227,242,-1,260,266,273,-1,260,254,266,-1,279,271,291,-1,279,264,271,-1,126,143,222,-1,143,126,142,-1,172,197,205,-1,188,197,172,-1,247,270,262,-1,270,247,238,-1,299,231,289,-1,299,284,231,-1,287,272,286,-1,272,287,304,-1,242,221,215,-1,225,221,242,-1,199,216,179,-1,199,250,216,-1,208,224,169,-1,208,274,224,-1,221,238,206,-1,238,221,243,-1,202,275,267,-1,232,275,202,-1,80,137,59,-1,116,137,80,-1,6,7,2,-1,15,7,6,-1,182,219,158,-1,182,214,219,-1,139,147,128,-1,139,160,147,-1,109,103,114,-1,101,103,109,-1,89,42,39,-1,42,89,83,-1,100,87,85,-1,100,96,87,-1,122,132,145,-1,122,104,132,-1,97,115,134,-1,97,74,115,-1,48,61,38,-1,48,74,61,-1,24,22,12,-1,24,32,22,-1,46,32,24,-1,44,32,46,-1,44,48,32,-1,49,48,44,-1,181,200,177,-1,200,181,248,-1,69,107,102,-1,69,77,107,-1,41,71,63,-1,41,52,71,-1,236,290,222,-1,236,302,290,-1,285,305,292,-1,285,301,305,-1,233,262,213,-1,262,233,247,-1,197,229,246,-1,211,229,197,-1,235,222,290,-1,222,235,208,-1,301,218,219,-1,301,285,218,-1,187,241,232,-1,241,187,186,-1,140,156,170,-1,140,125,156,-1,190,202,267,-1,190,163,202,-1,303,217,295,-1,303,228,217,-1,293,180,212,-1,258,180,293,-1,130,136,98,-1,136,130,153,-1,194,268,196,-1,268,194,259,-1,102,52,69,-1,102,71,52,-1,288,259,292,-1,288,268,259,-1,173,133,154,-1,152,133,173,-1,118,90,155,-1,118,70,90,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltalus_Geo_5_835_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,3,1,-1,4,5,6,-1,7,8,9,-1,10,11,7,-1,12,13,14,-1,15,16,17,-1,18,19,16,-1,20,21,22,-1,23,24,25,-1,8,26,13,-1,13,26,27,-1,27,14,13,-1,28,29,30,-1,31,32,33,-1,32,34,33,-1,28,35,36,-1,4,32,2,-1,32,37,2,-1,38,39,40,-1,41,42,43,-1,44,45,46,-1,45,47,46,-1,48,49,50,-1,50,51,48,-1,52,53,54,-1,55,56,57,-1,56,58,57,-1,59,60,61,-1,62,63,64,-1,65,66,67,-1,68,69,70,-1,68,71,69,-1,65,67,72,-1,72,73,65,-1,74,75,76,-1,77,78,79,-1,80,81,82,-1,77,83,84,-1,77,79,83,-1,85,86,80,-1,80,87,85,-1,88,89,90,-1,91,57,92,-1,93,94,95,-1,94,96,95,-1,97,90,98,-1,97,99,90,-1,100,93,95,-1,100,101,93,-1,102,103,104,-1,105,106,107,-1,108,109,110,-1,111,112,113,-1,113,114,111,-1,115,112,111,-1,115,116,112,-1,117,118,119,-1,117,120,118,-1,121,122,123,-1,123,124,125,-1,123,126,124,-1,127,128,129,-1,130,131,132,-1,130,133,131,-1,134,135,136,-1,136,137,134,-1,112,116,138,-1,139,140,141,-1,142,143,144,-1,142,145,143,-1,146,147,145,-1,148,149,150,-1,151,152,153,-1,152,154,153,-1,155,156,157,-1,155,158,156,-1,146,154,56,-1,159,160,161,-1,159,162,160,-1,163,164,165,-1,30,166,167,-1,168,89,169,-1,58,152,170,-1,171,91,94,-1,172,129,128,-1,128,173,172,-1,41,174,42,-1,41,175,174,-1,175,176,177,-1,175,178,176,-1,179,180,181,-1,59,182,183,-1,156,61,184,-1,185,186,171,-1,187,188,189,-1,187,55,188,-1,190,191,60,-1,190,192,191,-1,144,143,192,-1,140,193,190,-1,182,140,183,-1,182,141,140,-1,146,194,154,-1,195,196,197,-1,196,198,197,-1,162,199,148,-1,162,200,199,-1,201,202,203,-1,201,204,202,-1,205,206,207,-1,207,208,205,-1,209,210,211,-1,210,212,211,-1,213,214,215,-1,213,216,214,-1,217,218,219,-1,218,220,219,-1,46,174,221,-1,46,42,174,-1,222,223,224,-1,223,225,224,-1,174,175,226,-1,44,221,227,-1,44,46,221,-1,228,109,108,-1,141,202,139,-1,141,203,202,-1,229,230,231,-1,232,233,234,-1,113,235,236,-1,235,237,236,-1,103,238,239,-1,228,239,240,-1,241,236,104,-1,236,237,104,-1,112,242,113,-1,242,235,113,-1,243,244,245,-1,246,247,138,-1,138,116,246,-1,248,105,107,-1,249,115,111,-1,249,250,158,-1,158,244,249,-1,186,248,107,-1,186,251,248,-1,162,150,160,-1,162,148,150,-1,150,252,160,-1,253,252,150,-1,150,229,253,-1,254,231,255,-1,254,256,231,-1,257,258,259,-1,259,260,257,-1,164,261,262,-1,262,165,164,-1,263,264,165,-1,64,265,62,-1,266,260,259,-1,266,64,260,-1,267,268,269,-1,270,271,272,-1,273,274,275,-1,275,276,277,-1,15,273,275,-1,278,279,280,-1,278,281,279,-1,282,283,284,-1,273,15,17,-1,17,285,273,-1,286,287,288,-1,286,289,287,-1,286,290,289,-1,280,291,292,-1,280,279,291,-1,133,293,294,-1,133,130,293,-1,295,296,297,-1,296,298,297,-1,299,1,3,-1,3,300,299,-1,2,37,0,-1,301,302,0,-1,0,37,301,-1,303,304,305,-1,305,306,303,-1,307,308,305,-1,307,309,308,-1,308,125,310,-1,308,311,125,-1,312,313,314,-1,315,118,316,-1,118,317,316,-1,318,319,320,-1,318,321,319,-1,322,323,324,-1,322,325,323,-1,323,326,327,-1,326,328,75,-1,326,329,328,-1,330,331,332,-1,333,169,334,-1,333,168,169,-1,335,77,336,-1,335,337,77,-1,66,338,339,-1,66,340,338,-1,341,342,50,-1,50,52,341,-1,343,344,345,-1,346,347,348,-1,346,349,347,-1,350,345,351,-1,350,343,345,-1,351,352,350,-1,351,353,352,-1,348,354,346,-1,348,355,354,-1,356,357,358,-1,359,360,361,-1,359,362,360,-1,354,362,353,-1,354,360,362,-1,363,364,87,-1,365,366,367,-1,365,85,366,-1,367,97,368,-1,368,369,367,-1,100,169,88,-1,100,320,169,-1,28,370,371,-1,28,372,370,-1,28,36,39,-1,6,373,374,-1,6,375,373,-1,376,377,167,-1,377,30,167,-1,378,377,376,-1,378,379,377,-1,337,380,381,-1,337,335,380,-1,381,378,382,-1,382,337,381,-1,383,379,384,-1,385,53,386,-1,385,54,53,-1,387,70,69,-1,69,388,387,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltalus_Geo_5_835_coordIndex_2()
		{
			int[] value = {40,389,38,-1,390,391,392,-1,175,41,178,-1,51,393,394,-1,57,91,188,-1,91,171,189,-1,189,188,91,-1,51,394,48,-1,248,395,396,-1,396,397,248,-1,398,38,389,-1,398,399,38,-1,400,401,385,-1,401,54,385,-1,34,32,4,-1,301,31,33,-1,381,301,384,-1,381,380,301,-1,402,403,404,-1,402,405,403,-1,9,406,10,-1,407,373,375,-1,371,35,28,-1,372,408,370,-1,30,372,28,-1,90,168,98,-1,90,89,168,-1,85,365,86,-1,366,409,99,-1,366,410,409,-1,251,411,395,-1,251,410,411,-1,87,80,363,-1,80,82,363,-1,412,362,359,-1,412,413,362,-1,361,358,357,-1,361,360,358,-1,81,352,82,-1,350,414,343,-1,415,48,394,-1,65,416,340,-1,340,66,65,-1,386,417,418,-1,386,53,417,-1,338,78,339,-1,78,382,339,-1,347,419,418,-1,418,417,347,-1,420,421,329,-1,420,422,421,-1,328,423,424,-1,328,425,423,-1,426,329,326,-1,426,420,329,-1,75,327,326,-1,75,74,327,-1,326,325,426,-1,326,323,325,-1,303,427,180,-1,303,428,427,-1,22,21,429,-1,430,302,431,-1,432,433,434,-1,316,435,124,-1,316,433,435,-1,436,437,312,-1,437,313,312,-1,428,303,306,-1,306,438,428,-1,439,133,294,-1,439,127,133,-1,440,441,442,-1,440,443,441,-1,444,445,446,-1,445,447,446,-1,130,136,293,-1,136,448,293,-1,293,292,449,-1,449,294,293,-1,280,292,293,-1,293,448,280,-1,448,450,280,-1,290,451,289,-1,290,452,451,-1,18,275,453,-1,274,273,454,-1,454,268,274,-1,268,288,269,-1,268,454,288,-1,265,287,62,-1,287,455,62,-1,21,456,457,-1,21,20,456,-1,64,269,265,-1,165,262,257,-1,257,263,165,-1,458,163,165,-1,264,459,458,-1,460,461,456,-1,461,457,456,-1,254,462,256,-1,254,463,462,-1,231,256,253,-1,253,229,231,-1,464,462,465,-1,462,463,465,-1,160,252,161,-1,252,466,161,-1,244,158,155,-1,227,138,44,-1,138,247,44,-1,138,227,112,-1,227,242,112,-1,467,114,468,-1,468,469,467,-1,108,239,228,-1,108,103,239,-1,470,240,238,-1,240,239,238,-1,471,472,232,-1,472,233,232,-1,230,229,473,-1,468,474,469,-1,475,227,221,-1,195,197,218,-1,218,476,195,-1,477,478,479,-1,479,220,477,-1,480,218,217,-1,480,476,218,-1,219,220,481,-1,220,479,481,-1,207,213,204,-1,207,482,213,-1,483,208,201,-1,195,458,459,-1,459,196,195,-1,142,214,484,-1,484,145,142,-1,143,485,486,-1,155,189,245,-1,183,60,59,-1,93,185,171,-1,171,94,93,-1,181,173,179,-1,27,457,461,-1,27,487,457,-1,114,467,111,-1,41,223,488,-1,41,43,223,-1,248,397,489,-1,395,248,251,-1,224,490,491,-1,492,493,494,-1,120,317,118,-1,89,88,169,-1,495,166,30,-1,30,29,495,-1,108,474,241,-1,201,203,483,-1,496,55,187,-1,496,56,55,-1,141,182,110,-1,182,469,110,-1,58,56,154,-1,154,152,58,-1,240,497,483,-1,483,228,240,-1,187,189,155,-1,498,148,199,-1,498,149,148,-1,455,196,62,-1,196,459,62,-1,260,263,257,-1,499,149,498,-1,146,56,147,-1,244,155,245,-1,500,501,135,-1,135,134,500,-1,136,132,137,-1,136,130,132,-1,131,133,127,-1,127,129,131,-1,492,494,279,-1,494,291,279,-1,270,272,19,-1,272,16,19,-1,126,316,124,-1,502,503,504,-1,330,117,505,-1,330,120,117,-1,506,315,314,-1,105,116,243,-1,116,115,243,-1,103,241,104,-1,103,108,241,-1,474,110,469,-1,474,108,110,-1,245,189,106,-1,189,171,106,-1,88,99,409,-1,88,90,99,-1,507,91,92,-1,101,185,93,-1,412,411,364,-1,412,395,411,-1,491,415,508,-1,491,356,415,-1,78,338,418,-1,338,386,418,-1,412,359,395,-1,359,396,395,-1,416,509,400,-1,509,401,400,-1,81,414,350,-1,350,352,81,-1,510,414,81,-1,77,84,336,-1,511,512,513,-1,120,434,317,-1,120,514,434,-1,264,458,165,-1,63,260,64,-1,188,55,57,-1,187,155,157,-1,387,512,70,-1,515,516,68,-1,68,511,515,-1,393,50,342,-1,393,51,50,-1,81,80,510,-1,248,489,246,-1,40,39,406,-1,39,36,406,-1,299,517,5,-1,5,1,299,-1,39,177,28,-1,301,37,31,-1,377,373,407,-1,377,379,373,-1,37,32,31,-1,461,518,14,-1,14,27,461,-1,258,464,519,-1,520,521,19,-1,456,23,25,-1,25,460,456,-1,465,460,25,-1,520,453,22,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltalus_Geo_5_835_coordIndex_3()
		{
			int[] value = {275,18,16,-1,16,15,275,-1,7,9,10,-1,390,26,391,-1,390,27,26,-1,33,383,384,-1,384,301,33,-1,6,374,34,-1,4,6,34,-1,33,374,383,-1,34,374,33,-1,26,7,391,-1,26,8,7,-1,20,23,456,-1,20,522,23,-1,522,22,277,-1,522,20,22,-1,24,522,523,-1,522,24,23,-1,461,465,518,-1,460,465,461,-1,524,221,174,-1,524,475,221,-1,373,383,374,-1,379,383,373,-1,406,12,40,-1,406,9,12,-1,403,392,11,-1,392,403,295,-1,405,299,296,-1,405,517,299,-1,247,489,525,-1,247,246,489,-1,515,342,516,-1,515,393,342,-1,70,511,68,-1,512,511,70,-1,401,526,341,-1,526,401,509,-1,514,527,434,-1,514,528,527,-1,76,83,529,-1,76,84,83,-1,323,530,324,-1,323,327,530,-1,415,531,508,-1,531,415,394,-1,532,359,361,-1,359,532,396,-1,85,364,411,-1,87,364,85,-1,510,86,324,-1,86,510,80,-1,79,418,419,-1,418,79,78,-1,340,386,338,-1,340,385,386,-1,531,393,515,-1,531,394,393,-1,361,490,532,-1,357,490,361,-1,344,533,529,-1,344,343,533,-1,534,97,98,-1,368,97,534,-1,241,468,236,-1,474,468,241,-1,331,535,536,-1,331,537,535,-1,537,330,505,-1,537,331,330,-1,447,437,446,-1,447,313,437,-1,504,538,539,-1,538,504,540,-1,541,19,521,-1,19,541,270,-1,16,284,17,-1,272,284,16,-1,281,492,279,-1,281,283,492,-1,494,542,291,-1,494,543,542,-1,544,545,546,-1,545,544,547,-1,502,539,548,-1,502,504,539,-1,145,485,143,-1,147,485,145,-1,196,451,198,-1,451,196,455,-1,459,63,62,-1,459,264,63,-1,264,260,63,-1,260,264,263,-1,549,550,551,-1,550,549,452,-1,552,151,153,-1,151,552,553,-1,250,59,61,-1,467,59,250,-1,240,554,497,-1,470,554,240,-1,469,59,467,-1,182,59,469,-1,110,203,141,-1,110,109,203,-1,470,555,554,-1,555,470,556,-1,501,290,286,-1,500,290,501,-1,471,473,557,-1,471,230,473,-1,102,499,558,-1,102,557,499,-1,559,280,450,-1,278,280,559,-1,560,561,562,-1,561,560,563,-1,564,503,502,-1,564,565,503,-1,563,271,561,-1,563,282,271,-1,546,566,567,-1,546,545,566,-1,543,493,568,-1,543,494,493,-1,126,315,316,-1,126,314,315,-1,126,312,314,-1,433,317,434,-1,317,433,316,-1,222,491,508,-1,224,491,222,-1,525,397,569,-1,525,489,397,-1,389,12,14,-1,12,389,40,-1,226,254,255,-1,399,254,226,-1,412,363,413,-1,412,364,363,-1,186,101,251,-1,185,101,186,-1,156,570,157,-1,184,570,156,-1,496,486,485,-1,496,570,486,-1,215,142,571,-1,215,214,142,-1,194,145,484,-1,194,146,145,-1,153,572,552,-1,572,153,573,-1,477,551,478,-1,477,549,551,-1,163,195,476,-1,458,195,163,-1,574,159,261,-1,574,575,159,-1,576,554,555,-1,576,577,554,-1,205,483,497,-1,208,483,205,-1,577,209,211,-1,576,209,577,-1,213,202,204,-1,213,215,202,-1,578,207,206,-1,578,482,207,-1,481,482,578,-1,481,579,482,-1,212,217,219,-1,210,217,212,-1,216,484,214,-1,216,580,484,-1,481,581,579,-1,481,479,581,-1,194,580,573,-1,580,194,484,-1,572,479,478,-1,479,572,581,-1,220,197,477,-1,218,197,220,-1,227,234,242,-1,227,475,234,-1,490,225,582,-1,225,490,224,-1,558,103,102,-1,558,238,103,-1,569,45,525,-1,45,569,582,-1,466,262,161,-1,466,257,262,-1,462,258,583,-1,258,462,464,-1,558,498,556,-1,558,499,498,-1,102,237,472,-1,104,237,102,-1,583,256,462,-1,583,253,256,-1,175,399,226,-1,175,38,399,-1,519,24,584,-1,25,24,519,-1,268,585,274,-1,585,268,267,-1,276,586,523,-1,586,276,585,-1,523,584,24,-1,523,586,584,-1,269,287,265,-1,269,288,287,-1,500,452,290,-1,452,500,550,-1,134,550,500,-1,550,134,553,-1,135,448,136,-1,135,450,448,-1,501,450,135,-1,501,559,450,-1,449,291,542,-1,292,291,449,-1,152,137,132,-1,137,152,151,-1,538,520,587,-1,520,538,521,-1,429,588,22,-1,429,589,588,-1,590,27,390,-1,590,487,27,-1,588,591,587,-1,588,592,591,-1,593,590,594,-1,590,593,589,-1,392,297,390,-1,392,295,297,-1,592,595,591,-1,592,596,595,-1,594,597,593,-1,594,598,597,-1,595,599,444,-1,596,599,595,-1,597,600,601,-1,598,600,597,-1,298,299,300,-1,296,299,298,-1,599,445,444,-1,599,442,445,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltalus_Geo_5_835_coordIndex_4()
		{
			int[] value = {602,601,600,-1,602,440,601,-1,442,603,445,-1,442,441,603,-1,604,440,602,-1,604,443,440,-1,605,441,606,-1,441,605,603,-1,430,443,604,-1,430,607,443,-1,128,439,307,-1,128,127,439,-1,432,428,438,-1,432,608,428,-1,435,306,310,-1,306,435,438,-1,439,449,609,-1,294,449,439,-1,547,309,609,-1,547,544,309,-1,565,122,567,-1,565,564,122,-1,568,282,563,-1,568,493,282,-1,540,503,562,-1,504,503,540,-1,436,502,437,-1,436,564,502,-1,608,434,527,-1,432,434,608,-1,380,423,431,-1,380,335,423,-1,425,431,423,-1,425,430,431,-1,606,421,422,-1,606,607,421,-1,429,457,487,-1,429,21,457,-1,181,427,610,-1,181,180,427,-1,180,304,303,-1,180,179,304,-1,608,427,428,-1,608,321,427,-1,369,535,611,-1,369,368,535,-1,332,536,612,-1,332,331,536,-1,325,613,426,-1,325,611,613,-1,84,424,336,-1,76,424,84,-1,426,614,420,-1,613,614,426,-1,528,319,527,-1,528,334,319,-1,335,424,423,-1,424,335,336,-1,329,425,328,-1,329,421,425,-1,420,615,422,-1,614,615,420,-1,117,614,505,-1,615,614,117,-1,77,382,78,-1,382,77,337,-1,416,73,509,-1,65,73,416,-1,531,511,513,-1,515,511,531,-1,616,415,356,-1,48,415,616,-1,617,48,616,-1,617,49,48,-1,417,49,617,-1,417,53,49,-1,86,322,324,-1,322,86,365,-1,358,354,355,-1,358,360,354,-1,82,413,363,-1,82,352,413,-1,409,251,101,-1,409,410,251,-1,411,366,85,-1,366,411,410,-1,98,333,534,-1,98,168,333,-1,318,96,610,-1,95,96,318,-1,172,92,57,-1,172,173,92,-1,72,388,69,-1,495,388,72,-1,495,67,166,-1,67,495,72,-1,377,372,30,-1,377,407,372,-1,407,408,372,-1,408,407,375,-1,10,371,404,-1,371,10,35,-1,370,618,402,-1,408,618,370,-1,404,11,10,-1,404,403,11,-1,402,517,405,-1,618,517,402,-1,618,5,517,-1,618,6,5,-1,431,301,380,-1,431,302,301,-1,518,463,398,-1,465,463,518,-1,561,270,541,-1,561,271,270,-1,396,569,397,-1,532,569,396,-1,178,488,387,-1,488,178,41,-1,398,14,518,-1,398,389,14,-1,177,38,175,-1,177,39,38,-1,387,176,178,-1,176,387,388,-1,513,387,488,-1,512,387,513,-1,381,379,378,-1,384,379,381,-1,382,376,339,-1,382,378,376,-1,339,167,66,-1,339,376,167,-1,408,6,618,-1,375,6,408,-1,371,402,404,-1,370,402,371,-1,406,35,10,-1,35,406,36,-1,166,66,167,-1,66,166,67,-1,495,176,388,-1,495,29,176,-1,170,57,58,-1,172,57,170,-1,610,507,181,-1,96,507,610,-1,320,95,318,-1,100,95,320,-1,365,369,322,-1,365,367,369,-1,97,366,99,-1,97,367,366,-1,352,362,413,-1,353,362,352,-1,356,355,616,-1,356,358,355,-1,616,348,617,-1,616,355,348,-1,351,354,353,-1,346,354,351,-1,346,345,349,-1,351,345,346,-1,347,617,348,-1,347,417,617,-1,53,50,49,-1,53,52,50,-1,619,347,349,-1,419,347,619,-1,349,344,619,-1,344,349,345,-1,68,526,71,-1,68,516,526,-1,509,71,526,-1,509,73,71,-1,330,514,120,-1,330,332,514,-1,332,528,514,-1,528,332,612,-1,334,320,319,-1,334,169,320,-1,528,333,334,-1,333,528,612,-1,613,505,614,-1,613,537,505,-1,424,75,328,-1,75,424,76,-1,611,537,613,-1,611,535,537,-1,612,534,333,-1,612,536,534,-1,322,611,325,-1,369,611,322,-1,527,321,608,-1,527,319,321,-1,179,128,304,-1,179,173,128,-1,610,321,318,-1,610,427,321,-1,606,615,605,-1,615,606,422,-1,425,607,430,-1,421,607,425,-1,605,117,119,-1,605,615,117,-1,123,564,436,-1,122,564,123,-1,541,562,561,-1,541,540,562,-1,567,560,565,-1,566,560,567,-1,609,542,547,-1,449,542,609,-1,544,308,309,-1,544,311,308,-1,435,125,124,-1,310,125,435,-1,307,609,309,-1,439,609,307,-1,306,308,310,-1,305,308,306,-1,433,438,435,-1,438,433,432,-1,307,304,128,-1,305,304,307,-1,604,302,430,-1,0,302,604,-1,606,443,607,-1,443,606,441,-1,605,506,603,-1,605,119,506,-1,0,602,3,-1,0,604,602,-1,603,447,445,-1,603,506,447,-1,600,3,602,-1,300,3,600,-1,440,599,601,-1,440,442,599,-1,598,300,600,-1,298,300,598,-1,601,596,597,-1,601,599,596,-1,444,548,595,-1,444,446,548,-1,594,298,598,-1,297,298,594,-1,596,593,597,-1,593,596,592,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getltalus_Geo_5_835_coordIndex_5()
		{
			int[] value = {591,548,539,-1,591,595,548,-1,390,594,590,-1,390,297,594,-1,589,592,588,-1,589,593,592,-1,539,587,591,-1,587,539,538,-1,589,487,590,-1,487,589,429,-1,22,587,520,-1,22,588,587,-1,170,132,131,-1,170,152,132,-1,493,283,282,-1,492,283,493,-1,553,137,151,-1,134,137,553,-1,286,559,501,-1,286,620,559,-1,454,286,288,-1,620,286,454,-1,273,620,454,-1,620,273,285,-1,282,272,271,-1,284,272,282,-1,287,451,455,-1,289,451,287,-1,285,281,278,-1,17,281,285,-1,274,276,275,-1,585,276,274,-1,266,269,64,-1,267,269,266,-1,586,259,584,-1,266,259,586,-1,585,266,586,-1,585,267,266,-1,258,584,259,-1,258,519,584,-1,253,466,252,-1,466,253,583,-1,231,524,255,-1,231,232,524,-1,472,557,102,-1,471,557,472,-1,257,583,258,-1,257,466,583,-1,150,473,229,-1,473,150,149,-1,261,161,262,-1,261,159,161,-1,243,249,244,-1,243,115,249,-1,186,106,171,-1,107,106,186,-1,250,111,467,-1,249,111,250,-1,116,248,246,-1,116,105,248,-1,238,556,470,-1,556,238,558,-1,235,472,237,-1,472,235,233,-1,233,242,234,-1,235,242,233,-1,582,532,490,-1,582,569,532,-1,47,582,225,-1,582,47,45,-1,255,174,226,-1,174,255,524,-1,488,222,513,-1,488,223,222,-1,43,225,223,-1,47,225,43,-1,573,581,572,-1,581,573,580,-1,581,216,579,-1,581,580,216,-1,574,217,210,-1,574,480,217,-1,578,219,481,-1,212,219,578,-1,213,579,216,-1,482,579,213,-1,209,574,210,-1,575,574,209,-1,206,212,578,-1,211,212,206,-1,209,200,575,-1,200,209,576,-1,205,211,206,-1,577,211,205,-1,207,201,208,-1,207,204,201,-1,497,577,205,-1,577,497,554,-1,555,200,576,-1,200,555,199,-1,575,162,159,-1,575,200,162,-1,480,261,164,-1,480,574,261,-1,197,549,477,-1,197,198,549,-1,478,552,572,-1,478,551,552,-1,573,154,194,-1,573,153,154,-1,56,485,147,-1,485,56,496,-1,571,202,215,-1,571,139,202,-1,140,60,183,-1,140,190,60,-1,192,193,144,-1,192,190,193,-1,486,192,143,-1,191,192,486,-1,191,570,184,-1,191,486,570,-1,187,570,496,-1,570,187,157,-1,184,60,191,-1,60,184,61,-1,463,399,398,-1,463,254,399,-1,177,29,28,-1,177,176,29,-1,131,172,170,-1,131,129,172,-1,181,92,173,-1,92,181,507,-1,513,508,531,-1,222,508,513,-1,436,126,123,-1,312,126,436,-1,568,545,543,-1,566,545,568,-1,567,121,546,-1,122,121,567,-1,562,565,560,-1,503,565,562,-1,566,563,560,-1,563,566,568,-1,620,278,559,-1,285,278,620,-1,164,476,480,-1,164,163,476,-1,230,232,231,-1,471,232,230,-1,557,149,499,-1,557,473,149,-1,109,483,203,-1,109,228,483,-1,61,158,250,-1,158,61,156,-1,198,452,549,-1,451,452,198,-1,551,553,552,-1,553,551,550,-1,556,199,555,-1,498,199,556,-1,139,193,140,-1,193,139,571,-1,144,571,142,-1,144,193,571,-1,125,121,123,-1,125,311,121,-1,315,119,118,-1,315,506,119,-1,311,546,121,-1,546,311,544,-1,543,547,542,-1,543,545,547,-1,17,283,281,-1,17,284,283,-1,540,521,538,-1,521,540,541,-1,437,548,446,-1,548,437,502,-1,314,447,506,-1,314,313,447,-1,105,245,106,-1,105,243,245,-1,114,236,468,-1,113,236,114,-1,368,536,535,-1,368,534,536,-1,88,101,100,-1,409,101,88,-1,91,96,94,-1,91,507,96,-1,419,83,79,-1,419,619,83,-1,533,414,530,-1,533,343,414,-1,341,516,342,-1,341,526,516,-1,529,619,344,-1,529,83,619,-1,416,385,340,-1,416,400,385,-1,490,356,491,-1,490,357,356,-1,529,74,76,-1,529,533,74,-1,533,327,74,-1,327,533,530,-1,324,414,510,-1,530,414,324,-1,69,73,72,-1,71,73,69,-1,52,401,341,-1,52,54,401,-1,525,44,247,-1,45,44,525,-1,46,43,42,-1,46,47,43,-1,405,295,403,-1,295,405,296,-1,391,11,392,-1,11,391,7,-1,232,475,524,-1,232,234,475,-1,25,464,465,-1,25,519,464,-1,277,523,522,-1,277,276,523,-1,453,277,22,-1,453,275,277,-1,18,520,19,-1,453,520,18,-1,8,12,9,-1,8,13,12,-1,1,4,2,-1,1,5,4,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltalus_Geo_5_835_normalIndex_1()
		{
			int[] value = {348,392,354,-1,348,325,392,-1,472,498,590,-1,513,493,528,-1,585,514,513,-1,433,417,406,-1,174,149,115,-1,303,177,149,-1,269,294,316,-1,257,265,400,-1,493,405,417,-1,417,405,363,-1,363,406,417,-1,607,574,593,-1,418,453,496,-1,453,525,496,-1,607,605,561,-1,472,453,354,-1,453,371,354,-1,478,507,455,-1,382,300,288,-1,217,195,246,-1,195,219,246,-1,334,298,296,-1,296,261,334,-1,266,292,281,-1,147,97,36,-1,97,19,36,-1,452,317,369,-1,203,349,255,-1,571,495,534,-1,502,541,474,-1,502,577,541,-1,571,534,560,-1,560,592,571,-1,309,272,425,-1,511,504,510,-1,437,450,451,-1,511,520,486,-1,511,510,520,-1,376,302,437,-1,437,421,376,-1,144,142,165,-1,108,36,34,-1,156,126,74,-1,126,45,74,-1,197,165,181,-1,197,211,165,-1,122,156,74,-1,122,222,156,-1,572,557,552,-1,384,390,375,-1,564,540,527,-1,530,499,566,-1,566,599,530,-1,480,499,530,-1,480,415,499,-1,186,117,167,-1,186,146,117,-1,28,32,12,-1,12,10,18,-1,12,69,10,-1,58,90,57,-1,17,25,41,-1,17,8,25,-1,94,16,33,-1,33,109,94,-1,499,415,373,-1,244,259,353,-1,274,236,337,-1,274,163,236,-1,110,145,163,-1,613,604,618,-1,66,20,14,-1,20,11,14,-1,260,237,194,-1,260,380,237,-1,110,11,97,-1,547,603,587,-1,547,578,603,-1,458,481,484,-1,593,542,543,-1,157,142,104,-1,19,20,7,-1,230,108,126,-1,15,57,90,-1,90,50,15,-1,382,409,300,-1,382,465,409,-1,465,521,529,-1,465,467,521,-1,81,83,2,-1,452,448,355,-1,237,369,213,-1,336,391,230,-1,209,105,159,-1,209,147,105,-1,356,271,317,-1,356,352,271,-1,337,236,352,-1,259,368,356,-1,448,259,355,-1,448,353,259,-1,110,87,11,-1,326,168,162,-1,168,136,162,-1,578,570,613,-1,578,512,570,-1,386,331,414,-1,386,378,331,-1,444,383,367,-1,367,438,444,-1,463,395,411,-1,395,343,411,-1,293,212,357,-1,293,172,212,-1,351,240,227,-1,240,173,227,-1,246,409,379,-1,246,300,409,-1,205,225,188,-1,225,210,188,-1,409,465,473,-1,217,379,432,-1,217,246,379,-1,558,540,564,-1,353,331,244,-1,353,414,331,-1,594,591,580,-1,549,545,516,-1,566,546,562,-1,546,536,562,-1,557,573,568,-1,558,568,553,-1,559,562,552,-1,562,536,552,-1,499,523,566,-1,523,546,566,-1,441,374,364,-1,280,199,373,-1,373,415,280,-1,218,384,375,-1,489,480,530,-1,489,471,380,-1,380,374,489,-1,391,218,375,-1,391,344,218,-1,578,618,603,-1,578,613,618,-1,618,615,603,-1,620,615,618,-1,618,594,620,-1,526,580,522,-1,526,606,580,-1,503,457,276,-1,276,404,503,-1,481,509,538,-1,538,484,481,-1,456,422,484,-1,255,169,203,-1,270,404,276,-1,270,255,404,-1,287,223,200,-1,112,60,103,-1,185,275,305,-1,305,290,315,-1,174,185,305,-1,63,44,38,-1,63,78,44,-1,55,52,79,-1,185,174,115,-1,115,123,185,-1,130,138,154,-1,130,135,138,-1,130,121,135,-1,38,72,107,-1,38,44,72,-1,8,13,39,-1,8,17,13,-1,449,428,346,-1,428,313,346,-1,419,392,325,-1,325,299,419,-1,354,371,348,-1,446,393,348,-1,348,371,446,-1,76,95,27,-1,27,23,76,-1,22,37,27,-1,22,93,37,-1,37,18,5,-1,37,82,18,-1,120,152,134,-1,125,117,67,-1,117,84,67,-1,4,64,21,-1,4,61,64,-1,254,189,215,-1,254,279,189,-1,189,208,202,-1,208,289,272,-1,208,263,289,-1,190,204,158,-1,150,104,101,-1,150,157,104,-1,479,511,476,-1,479,500,511,-1,495,524,506,-1,495,551,524,-1,447,461,296,-1,296,266,447,-1,439,462,434,-1,402,385,365,-1,402,424,385,-1,445,434,416,-1,445,439,434,-1,416,429,445,-1,416,397,429,-1,365,377,402,-1,365,358,377,-1,252,243,335,-1,229,342,221,-1,229,366,342,-1,377,366,397,-1,377,342,366,-1,435,408,421,-1,307,360,231,-1,307,376,360,-1,231,197,224,-1,224,323,231,-1,122,104,144,-1,122,21,104,-1,607,617,619,-1,607,610,617,-1,607,561,507,-1,590,583,550,-1,590,614,583,-1,535,601,543,-1,601,593,543,-1,563,601,535,-1,563,565,601,-1,500,482,537,-1,500,479,482,-1,537,563,518,-1,518,500,537,-1,548,565,519,-1,459,292,420,-1,459,281,292,-1,466,474,541,-1,541,505,466,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltalus_Geo_5_835_normalIndex_2()
		{
			int[] value = {455,413,478,-1,327,431,440,-1,465,382,467,-1,261,398,347,-1,36,108,105,-1,108,230,159,-1,159,105,108,-1,261,347,334,-1,218,216,161,-1,161,153,218,-1,483,478,413,-1,483,494,478,-1,501,442,459,-1,442,281,459,-1,525,453,472,-1,446,418,496,-1,537,446,519,-1,537,482,446,-1,598,533,581,-1,598,532,533,-1,528,544,585,-1,612,583,614,-1,619,605,607,-1,610,616,617,-1,593,610,607,-1,165,157,181,-1,165,142,157,-1,376,307,302,-1,360,214,211,-1,360,381,214,-1,344,410,216,-1,344,381,410,-1,421,437,435,-1,437,451,435,-1,339,366,229,-1,339,388,366,-1,221,335,243,-1,221,342,335,-1,450,429,451,-1,445,399,439,-1,297,334,347,-1,571,608,551,-1,551,495,571,-1,420,350,426,-1,420,292,350,-1,524,504,506,-1,504,518,506,-1,385,454,426,-1,426,350,385,-1,319,291,263,-1,319,340,291,-1,289,401,387,-1,289,328,401,-1,295,263,208,-1,295,319,263,-1,272,202,208,-1,272,309,202,-1,208,279,295,-1,208,189,279,-1,76,59,83,-1,76,75,59,-1,316,294,284,-1,314,393,403,-1,51,30,98,-1,67,0,10,-1,67,30,0,-1,80,139,120,-1,139,152,120,-1,75,76,23,-1,23,35,75,-1,40,8,39,-1,40,58,8,-1,267,304,345,-1,267,251,304,-1,301,253,191,-1,253,180,191,-1,17,33,13,-1,33,24,13,-1,13,107,106,-1,106,39,13,-1,38,107,13,-1,13,24,38,-1,24,1,38,-1,121,127,135,-1,121,118,127,-1,303,305,312,-1,275,185,178,-1,178,223,275,-1,223,154,200,-1,223,178,154,-1,169,138,203,-1,138,143,203,-1,294,308,338,-1,294,269,308,-1,255,200,169,-1,484,538,503,-1,503,456,484,-1,430,458,484,-1,422,361,430,-1,412,427,308,-1,427,338,308,-1,526,576,606,-1,526,517,576,-1,580,606,620,-1,620,594,580,-1,508,576,487,-1,576,517,487,-1,603,615,587,-1,615,579,587,-1,374,380,260,-1,432,373,217,-1,373,199,217,-1,373,432,499,-1,432,523,499,-1,555,599,611,-1,611,588,555,-1,564,568,558,-1,564,557,568,-1,554,553,573,-1,553,568,573,-1,589,569,549,-1,569,545,549,-1,591,594,596,-1,611,595,588,-1,469,432,379,-1,326,162,240,-1,240,396,326,-1,141,89,140,-1,140,173,141,-1,423,240,351,-1,423,396,240,-1,227,173,171,-1,173,140,171,-1,367,293,378,-1,367,248,293,-1,488,438,386,-1,326,430,361,-1,361,168,326,-1,274,212,148,-1,148,163,274,-1,236,184,242,-1,260,159,364,-1,355,317,452,-1,156,336,230,-1,230,126,156,-1,2,50,81,-1,363,338,427,-1,363,283,338,-1,599,555,530,-1,382,225,372,-1,382,288,225,-1,218,153,175,-1,216,218,344,-1,188,187,182,-1,26,56,3,-1,146,84,117,-1,142,144,104,-1,539,542,593,-1,593,574,539,-1,564,595,559,-1,386,414,488,-1,170,147,209,-1,170,97,147,-1,353,448,527,-1,448,588,527,-1,19,97,11,-1,11,20,19,-1,553,477,488,-1,488,558,553,-1,209,159,260,-1,600,613,570,-1,600,604,613,-1,143,168,203,-1,168,361,203,-1,404,456,503,-1,582,604,600,-1,110,97,145,-1,374,260,364,-1,91,54,16,-1,16,94,91,-1,33,41,109,-1,33,17,41,-1,25,8,58,-1,58,57,25,-1,26,3,44,-1,3,72,44,-1,112,103,177,-1,103,149,177,-1,69,67,10,-1,137,99,129,-1,190,186,206,-1,190,146,186,-1,164,125,134,-1,384,415,441,-1,415,480,441,-1,557,559,552,-1,557,564,559,-1,595,527,588,-1,595,564,527,-1,364,159,390,-1,159,230,390,-1,144,211,214,-1,144,165,211,-1,46,108,34,-1,222,336,156,-1,339,410,408,-1,339,216,410,-1,182,297,226,-1,182,252,297,-1,504,524,426,-1,524,420,426,-1,339,229,216,-1,229,161,216,-1,608,609,501,-1,609,442,501,-1,450,399,445,-1,445,429,450,-1,407,399,450,-1,511,486,476,-1,443,436,370,-1,146,98,84,-1,146,131,98,-1,422,430,484,-1,349,404,255,-1,105,147,36,-1,209,260,194,-1,466,436,474,-1,475,556,502,-1,502,443,475,-1,398,296,461,-1,398,261,296,-1,450,437,407,-1,218,175,280,-1,455,507,544,-1,507,561,544,-1,419,531,498,-1,498,392,419,-1,507,529,607,-1,446,371,418,-1,601,583,612,-1,601,565,583,-1,371,453,418,-1,427,464,406,-1,406,363,427,-1,457,508,394,-1,311,201,177,-1,308,257,400,-1,400,412,308,-1,487,412,400,-1,311,312,316,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltalus_Geo_5_835_normalIndex_3()
		{
			int[] value = {305,303,149,-1,149,174,305,-1,513,528,585,-1,327,405,431,-1,327,363,405,-1,496,548,519,-1,519,446,496,-1,590,550,525,-1,472,590,525,-1,496,550,548,-1,525,550,496,-1,405,513,431,-1,405,493,513,-1,269,257,308,-1,269,245,257,-1,245,316,315,-1,245,269,316,-1,265,245,278,-1,245,265,257,-1,427,487,464,-1,412,487,427,-1,491,379,409,-1,491,469,379,-1,583,548,550,-1,565,548,583,-1,544,433,455,-1,544,528,433,-1,533,440,514,-1,440,533,449,-1,532,419,428,-1,532,531,419,-1,199,175,160,-1,199,280,175,-1,475,461,556,-1,475,398,461,-1,474,443,502,-1,436,443,474,-1,442,586,447,-1,586,442,609,-1,131,100,98,-1,131,114,100,-1,425,520,470,-1,425,486,520,-1,189,228,215,-1,189,202,228,-1,297,389,226,-1,389,297,347,-1,166,229,221,-1,229,166,161,-1,376,408,410,-1,421,408,376,-1,407,302,215,-1,302,407,437,-1,510,426,454,-1,426,510,504,-1,551,420,524,-1,551,459,420,-1,389,398,475,-1,389,347,398,-1,221,187,166,-1,243,187,221,-1,462,362,470,-1,462,439,362,-1,193,197,181,-1,224,197,193,-1,559,611,562,-1,595,611,559,-1,204,234,183,-1,204,220,234,-1,220,190,206,-1,220,204,190,-1,180,139,191,-1,180,152,139,-1,129,196,198,-1,196,129,124,-1,119,177,201,-1,177,119,112,-1,149,79,115,-1,103,79,149,-1,78,26,44,-1,78,52,26,-1,3,96,72,-1,3,29,96,-1,102,42,31,-1,42,102,113,-1,137,198,192,-1,137,129,198,-1,163,184,236,-1,145,184,163,-1,168,127,136,-1,127,168,143,-1,361,349,203,-1,361,422,349,-1,422,404,349,-1,404,422,456,-1,116,86,47,-1,86,116,118,-1,9,66,14,-1,66,9,85,-1,471,452,369,-1,555,452,471,-1,553,492,477,-1,554,492,553,-1,588,452,555,-1,448,452,588,-1,527,414,353,-1,527,540,414,-1,554,515,492,-1,515,554,575,-1,54,121,130,-1,91,121,54,-1,589,596,597,-1,589,591,596,-1,572,582,567,-1,572,597,582,-1,49,38,1,-1,63,38,49,-1,68,77,92,-1,77,68,62,-1,73,99,137,-1,73,71,99,-1,62,60,77,-1,62,55,60,-1,31,48,43,-1,31,42,48,-1,29,56,65,-1,29,3,56,-1,69,125,67,-1,69,134,125,-1,69,120,134,-1,30,84,98,-1,84,30,67,-1,205,182,226,-1,188,182,205,-1,160,153,155,-1,160,175,153,-1,413,433,406,-1,433,413,455,-1,473,526,522,-1,494,526,473,-1,339,435,388,-1,339,408,435,-1,391,222,344,-1,336,222,391,-1,237,207,194,-1,213,207,237,-1,170,242,184,-1,170,207,242,-1,357,274,359,-1,357,212,274,-1,87,163,148,-1,87,110,163,-1,14,70,9,-1,70,14,53,-1,141,47,89,-1,141,116,47,-1,458,326,396,-1,430,326,458,-1,468,547,509,-1,468,497,547,-1,485,492,515,-1,485,460,492,-1,444,488,477,-1,438,488,444,-1,460,463,411,-1,485,463,460,-1,293,331,378,-1,293,357,331,-1,249,367,383,-1,249,248,367,-1,171,248,249,-1,171,176,248,-1,343,351,227,-1,395,351,343,-1,172,148,212,-1,172,133,148,-1,171,132,176,-1,171,140,132,-1,87,133,53,-1,133,87,148,-1,70,140,89,-1,140,70,132,-1,173,162,141,-1,240,162,173,-1,432,516,523,-1,432,469,516,-1,187,210,179,-1,210,187,188,-1,567,557,572,-1,567,573,557,-1,155,195,160,-1,195,155,179,-1,579,538,587,-1,579,503,538,-1,576,457,584,-1,457,576,508,-1,567,600,575,-1,567,582,600,-1,572,536,569,-1,552,536,572,-1,584,606,576,-1,584,620,606,-1,465,494,473,-1,465,478,494,-1,394,265,282,-1,400,265,394,-1,223,277,275,-1,277,223,287,-1,290,256,278,-1,256,290,277,-1,278,282,265,-1,278,256,282,-1,200,138,169,-1,200,154,138,-1,91,118,121,-1,118,91,86,-1,94,86,91,-1,86,94,85,-1,16,24,33,-1,16,1,24,-1,54,1,16,-1,54,49,1,-1,106,72,96,-1,107,72,106,-1,20,109,41,-1,109,20,66,-1,196,311,318,-1,311,196,201,-1,284,332,316,-1,284,286,332,-1,258,363,327,-1,258,283,363,-1,332,324,318,-1,332,341,324,-1,273,258,247,-1,258,273,286,-1,440,346,327,-1,440,449,346,-1,341,306,324,-1,341,321,306,-1,247,233,273,-1,247,262,233,-1,306,320,301,-1,321,320,306,-1,233,250,235,-1,262,250,233,-1,313,419,299,-1,428,419,313,-1,320,253,301,-1,320,345,253,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltalus_Geo_5_835_normalIndex_4()
		{
			int[] value = {239,235,250,-1,239,267,235,-1,345,238,253,-1,345,304,238,-1,268,267,239,-1,268,251,267,-1,241,304,322,-1,304,241,238,-1,314,251,268,-1,314,285,251,-1,90,40,22,-1,90,58,40,-1,51,75,35,-1,51,88,75,-1,0,23,5,-1,23,0,35,-1,40,106,111,-1,39,106,40,-1,113,93,111,-1,113,102,93,-1,71,32,43,-1,71,73,32,-1,65,55,62,-1,65,56,55,-1,124,99,92,-1,129,99,124,-1,80,137,139,-1,80,73,137,-1,88,98,100,-1,51,98,88,-1,482,401,403,-1,482,479,401,-1,328,403,401,-1,328,314,403,-1,322,291,340,-1,322,285,291,-1,284,338,283,-1,284,294,338,-1,2,59,6,-1,2,83,59,-1,83,95,76,-1,83,81,95,-1,88,59,75,-1,88,61,59,-1,323,234,333,-1,323,224,234,-1,158,183,151,-1,158,204,183,-1,279,310,295,-1,279,333,310,-1,486,387,476,-1,425,387,486,-1,295,264,319,-1,310,264,295,-1,114,64,100,-1,114,101,64,-1,479,387,401,-1,387,479,476,-1,263,328,289,-1,263,291,328,-1,319,232,340,-1,264,232,319,-1,186,264,206,-1,232,264,186,-1,511,518,504,-1,518,511,500,-1,608,592,609,-1,571,592,608,-1,389,443,370,-1,475,443,389,-1,330,297,252,-1,334,297,330,-1,329,334,330,-1,329,298,334,-1,350,298,329,-1,350,292,298,-1,302,254,215,-1,254,302,307,-1,335,377,358,-1,335,342,377,-1,451,388,435,-1,451,429,388,-1,214,344,222,-1,214,381,344,-1,410,360,376,-1,360,410,381,-1,181,150,193,-1,181,157,150,-1,4,45,6,-1,74,45,4,-1,15,34,36,-1,15,50,34,-1,560,505,541,-1,539,505,560,-1,539,534,542,-1,534,539,560,-1,601,610,593,-1,601,612,610,-1,612,616,610,-1,616,612,614,-1,585,619,581,-1,619,585,605,-1,617,602,598,-1,616,602,617,-1,581,514,585,-1,581,533,514,-1,598,531,532,-1,602,531,598,-1,602,498,531,-1,602,590,498,-1,403,446,482,-1,403,393,446,-1,464,517,483,-1,487,517,464,-1,77,112,119,-1,77,60,112,-1,161,155,153,-1,166,155,161,-1,467,372,466,-1,372,467,382,-1,483,406,464,-1,483,413,406,-1,529,478,465,-1,529,507,478,-1,466,521,467,-1,521,466,505,-1,370,466,372,-1,436,466,370,-1,537,565,563,-1,519,565,537,-1,518,535,506,-1,518,563,535,-1,506,543,495,-1,506,535,543,-1,616,590,602,-1,614,590,616,-1,619,598,581,-1,617,598,619,-1,544,605,585,-1,605,544,561,-1,542,495,543,-1,495,542,534,-1,539,521,505,-1,539,574,521,-1,7,36,19,-1,15,36,7,-1,6,46,2,-1,45,46,6,-1,21,74,4,-1,122,74,21,-1,307,323,254,-1,307,231,323,-1,197,360,211,-1,197,231,360,-1,429,366,388,-1,397,366,429,-1,252,358,330,-1,252,335,358,-1,330,365,329,-1,330,358,365,-1,416,377,397,-1,402,377,416,-1,402,434,424,-1,416,434,402,-1,385,329,365,-1,385,350,329,-1,292,296,298,-1,292,266,296,-1,490,385,424,-1,454,385,490,-1,424,462,490,-1,462,424,434,-1,502,586,577,-1,502,556,586,-1,609,577,586,-1,609,592,577,-1,190,131,146,-1,190,158,131,-1,158,114,131,-1,114,158,151,-1,101,21,64,-1,101,104,21,-1,114,150,101,-1,150,114,151,-1,310,206,264,-1,310,220,206,-1,387,272,289,-1,272,387,425,-1,333,220,310,-1,333,234,220,-1,151,193,150,-1,151,183,193,-1,254,333,279,-1,323,333,254,-1,100,61,88,-1,100,64,61,-1,81,90,95,-1,81,50,90,-1,6,61,4,-1,6,59,61,-1,322,232,241,-1,232,322,340,-1,328,285,314,-1,291,285,328,-1,241,186,167,-1,241,232,186,-1,12,73,80,-1,32,73,12,-1,119,92,77,-1,119,124,92,-1,43,68,71,-1,48,68,43,-1,111,96,113,-1,106,96,111,-1,102,37,93,-1,102,82,37,-1,0,18,10,-1,5,18,0,-1,22,111,93,-1,40,111,22,-1,23,37,5,-1,27,37,23,-1,30,35,0,-1,35,30,51,-1,22,95,90,-1,27,95,22,-1,268,393,314,-1,348,393,268,-1,322,251,285,-1,251,322,304,-1,241,164,238,-1,241,167,164,-1,348,239,325,-1,348,268,239,-1,238,180,253,-1,238,164,180,-1,250,325,239,-1,299,325,250,-1,267,320,235,-1,267,345,320,-1,262,299,250,-1,313,299,262,-1,235,321,233,-1,235,320,321,-1,301,192,306,-1,301,191,192,-1,247,313,262,-1,346,313,247,-1,321,273,233,-1,273,321,341,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getltalus_Geo_5_835_normalIndex_5()
		{
			int[] value = {324,192,198,-1,324,306,192,-1,327,247,258,-1,327,346,247,-1,286,341,332,-1,286,273,341,-1,198,318,324,-1,318,198,196,-1,286,283,258,-1,283,286,284,-1,316,318,311,-1,316,332,318,-1,7,41,25,-1,7,20,41,-1,56,52,55,-1,26,52,56,-1,85,109,66,-1,94,109,85,-1,130,49,54,-1,130,128,49,-1,178,130,154,-1,128,130,178,-1,185,128,178,-1,128,185,123,-1,55,103,60,-1,79,103,55,-1,138,127,143,-1,135,127,138,-1,123,78,63,-1,115,78,123,-1,275,290,305,-1,277,290,275,-1,270,200,255,-1,287,200,270,-1,256,276,282,-1,270,276,256,-1,277,270,256,-1,277,287,270,-1,457,282,276,-1,457,394,282,-1,620,579,615,-1,579,620,584,-1,580,491,522,-1,580,549,491,-1,569,597,572,-1,589,597,569,-1,503,584,457,-1,503,579,584,-1,618,596,594,-1,596,618,604,-1,509,587,538,-1,509,547,587,-1,441,489,374,-1,441,480,489,-1,391,390,230,-1,375,390,391,-1,471,530,555,-1,489,530,471,-1,415,218,280,-1,415,384,218,-1,573,575,554,-1,575,573,567,-1,546,569,536,-1,569,546,545,-1,545,523,516,-1,546,523,545,-1,179,166,187,-1,179,155,166,-1,219,179,210,-1,179,219,195,-1,522,409,473,-1,409,522,491,-1,372,205,370,-1,372,225,205,-1,288,210,225,-1,219,210,288,-1,53,132,70,-1,132,53,133,-1,132,172,176,-1,132,133,172,-1,468,351,395,-1,468,423,351,-1,249,227,171,-1,343,227,249,-1,293,176,172,-1,248,176,293,-1,463,468,395,-1,497,468,463,-1,383,343,249,-1,411,343,383,-1,463,512,497,-1,512,463,485,-1,444,411,383,-1,460,411,444,-1,367,386,438,-1,367,378,386,-1,477,460,444,-1,460,477,492,-1,515,512,485,-1,512,515,570,-1,497,578,547,-1,497,512,578,-1,423,509,481,-1,423,468,509,-1,162,116,141,-1,162,136,116,-1,89,9,70,-1,89,47,9,-1,53,11,87,-1,53,14,11,-1,97,184,145,-1,184,97,170,-1,359,331,357,-1,359,244,331,-1,259,317,355,-1,259,356,317,-1,352,368,337,-1,352,356,368,-1,242,352,236,-1,271,352,242,-1,271,207,213,-1,271,242,207,-1,209,207,170,-1,207,209,194,-1,213,317,271,-1,317,213,369,-1,517,494,483,-1,517,526,494,-1,529,574,607,-1,529,521,574,-1,25,15,7,-1,25,57,15,-1,2,34,50,-1,34,2,46,-1,370,226,389,-1,205,226,370,-1,80,69,12,-1,120,69,80,-1,65,42,29,-1,48,42,65,-1,43,28,31,-1,32,28,43,-1,92,71,68,-1,99,71,92,-1,48,62,68,-1,62,48,65,-1,128,63,49,-1,123,63,128,-1,481,396,423,-1,481,458,396,-1,591,549,580,-1,589,549,591,-1,597,604,582,-1,597,596,604,-1,540,488,414,-1,540,558,488,-1,369,380,471,-1,380,369,237,-1,136,118,116,-1,127,118,136,-1,47,85,9,-1,85,47,86,-1,575,570,515,-1,600,570,575,-1,244,368,259,-1,368,244,359,-1,337,359,274,-1,337,368,359,-1,18,28,12,-1,18,82,28,-1,125,167,117,-1,125,164,167,-1,82,31,28,-1,31,82,102,-1,29,113,96,-1,29,42,113,-1,115,52,78,-1,115,79,52,-1,124,201,196,-1,201,124,119,-1,139,192,191,-1,192,139,137,-1,134,180,164,-1,134,152,180,-1,384,364,390,-1,384,441,364,-1,599,562,611,-1,566,562,599,-1,224,183,234,-1,224,193,183,-1,144,222,122,-1,214,222,144,-1,108,45,126,-1,108,46,45,-1,454,520,510,-1,454,490,520,-1,362,399,228,-1,362,439,399,-1,447,556,461,-1,447,586,556,-1,470,490,462,-1,470,520,490,-1,608,459,551,-1,608,501,459,-1,187,252,182,-1,187,243,252,-1,470,309,425,-1,470,362,309,-1,362,202,309,-1,202,362,228,-1,215,399,407,-1,228,399,215,-1,541,592,560,-1,577,592,541,-1,266,442,447,-1,266,281,442,-1,160,217,199,-1,195,217,160,-1,246,288,300,-1,246,219,288,-1,532,449,533,-1,449,532,428,-1,431,514,440,-1,514,431,513,-1,549,469,491,-1,549,516,469,-1,400,508,487,-1,400,394,508,-1,315,278,245,-1,315,290,278,-1,312,315,316,-1,312,305,315,-1,303,311,177,-1,312,311,303,-1,493,433,528,-1,493,417,433,-1,392,472,354,-1,392,498,472,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltibia_Geo_5_841_coordIndex_1()
		{
			int[] value = {0,1,2,-1,0,3,1,-1,4,5,6,-1,6,7,4,-1,8,9,7,-1,10,11,12,-1,13,14,15,-1,16,17,18,-1,19,20,21,-1,21,22,19,-1,22,23,19,-1,24,25,26,-1,25,27,26,-1,28,29,30,-1,29,31,30,-1,32,33,34,-1,34,29,32,-1,35,36,37,-1,38,39,40,-1,38,41,39,-1,42,43,44,-1,45,46,47,-1,48,49,2,-1,2,50,48,-1,8,51,9,-1,51,52,9,-1,53,54,55,-1,56,57,58,-1,56,59,57,-1,60,61,62,-1,63,64,65,-1,66,67,68,-1,69,46,70,-1,46,71,70,-1,72,73,74,-1,73,75,74,-1,76,77,78,-1,78,79,76,-1,80,81,63,-1,63,82,80,-1,83,84,85,-1,85,86,83,-1,86,85,87,-1,87,68,86,-1,88,67,89,-1,89,90,88,-1,91,92,93,-1,94,43,48,-1,94,95,43,-1,96,97,45,-1,45,98,96,-1,99,27,59,-1,99,100,27,-1,101,102,103,-1,102,104,103,-1,105,106,107,-1,106,108,107,-1,109,110,111,-1,110,112,111,-1,113,114,115,-1,114,116,115,-1,117,118,119,-1,120,121,122,-1,122,123,120,-1,124,125,126,-1,126,127,124,-1,128,129,130,-1,128,131,129,-1,132,133,134,-1,132,135,133,-1,136,137,138,-1,136,90,137,-1,139,140,53,-1,140,141,53,-1,53,55,139,-1,142,12,11,-1,142,3,12,-1,143,144,145,-1,145,146,143,-1,147,148,20,-1,20,149,147,-1,150,151,152,-1,153,154,155,-1,156,157,158,-1,159,160,161,-1,162,163,164,-1,162,165,163,-1,166,167,168,-1,169,170,171,-1,172,173,174,-1,172,175,173,-1,176,177,159,-1,178,152,151,-1,151,179,178,-1,180,181,182,-1,33,183,34,-1,33,184,183,-1,185,186,187,-1,188,189,190,-1,190,191,188,-1,187,192,193,-1,192,194,193,-1,195,196,197,-1,198,199,200,-1,199,201,200,-1,202,203,204,-1,205,206,207,-1,206,208,207,-1,209,210,211,-1,209,212,210,-1,213,214,215,-1,158,216,217,-1,218,219,220,-1,221,222,223,-1,224,225,226,-1,224,227,225,-1,228,229,181,-1,230,231,232,-1,233,234,235,-1,233,236,234,-1,237,238,236,-1,236,233,237,-1,239,240,241,-1,241,242,239,-1,243,244,245,-1,244,246,245,-1,247,248,249,-1,247,250,248,-1,251,252,253,-1,251,254,252,-1,255,256,257,-1,255,258,256,-1,259,208,206,-1,259,157,208,-1,260,261,262,-1,260,263,261,-1,262,264,265,-1,262,266,264,-1,267,268,269,-1,268,270,269,-1,271,272,273,-1,271,274,272,-1,152,275,276,-1,152,178,275,-1,277,176,278,-1,277,177,176,-1,279,202,204,-1,204,280,279,-1,258,255,281,-1,282,283,284,-1,285,286,287,-1,287,288,285,-1,289,290,291,-1,291,229,289,-1,292,293,294,-1,295,296,297,-1,295,298,296,-1,299,263,283,-1,300,172,301,-1,302,303,304,-1,303,305,304,-1,306,307,308,-1,309,310,311,-1,309,312,310,-1,313,314,315,-1,316,249,317,-1,317,318,316,-1,175,305,303,-1,303,319,175,-1,320,321,322,-1,323,324,325,-1,323,326,324,-1,327,328,329,-1,329,330,327,-1,331,319,332,-1,331,237,319,-1,333,334,335,-1,334,336,335,-1,337,338,339,-1,337,340,338,-1,338,340,341,-1,341,342,338,-1,35,341,343,-1,341,344,343,-1,198,258,199,-1,345,346,347,-1,346,348,347,-1,203,349,350,-1,351,352,353,-1,354,355,356,-1,356,357,354,-1,358,359,360,-1,37,36,361,-1,223,338,362,-1,338,342,362,-1,221,363,364,-1,221,223,363,-1,365,366,367,-1,367,368,365,-1,369,370,344,-1,371,370,369,-1,371,372,370,-1,373,374,375,-1,376,377,378,-1,376,379,377,-1,327,330,380,-1,381,358,382,-1,381,383,358,-1,177,384,385,-1,384,386,385,-1,387,388,389,-1,387,390,388,-1,391,132,392,-1,391,138,132,-1,393,394,395,-1,394,396,395,-1,397,398,399,-1,397,366,398,-1,288,400,284,-1,400,401,284,-1,262,265,260,-1,350,204,203,-1,350,402,204,-1,205,211,206,-1,205,209,211,-1,403,202,404,-1,207,405,406,-1,406,215,207,-1,407,143,146,-1,146,408,407,-1,138,409,136,-1,138,391,409,-1,279,410,411,-1,279,280,410,-1,412,413,414,-1,413,415,414,-1,144,416,145,-1,417,385,418,-1,385,386,418,-1,419,420,421,-1,420,422,421,-1,423,424,419,-1,424,420,419,-1,425,419,426,-1,419,421,426,-1,427,428,429,-1,429,430,427,-1,125,431,126,-1,125,432,431,-1,433,434,435,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltibia_Geo_5_841_coordIndex_2()
		{
			int[] value = {433,436,434,-1,437,438,439,-1,437,433,438,-1,52,437,439,-1,52,51,437,-1,50,94,48,-1,23,440,19,-1,440,441,19,-1,442,443,444,-1,445,446,5,-1,446,6,5,-1,93,447,91,-1,448,449,83,-1,83,450,448,-1,451,85,452,-1,85,84,452,-1,453,451,454,-1,451,452,454,-1,58,455,56,-1,58,456,455,-1,136,457,458,-1,136,409,457,-1,458,90,136,-1,458,88,90,-1,63,81,135,-1,81,133,135,-1,459,302,304,-1,459,460,302,-1,301,172,174,-1,174,461,301,-1,462,171,463,-1,171,170,463,-1,464,465,466,-1,466,467,464,-1,468,469,470,-1,468,471,469,-1,472,470,473,-1,472,474,470,-1,475,476,477,-1,475,478,476,-1,479,480,481,-1,479,482,480,-1,483,484,485,-1,483,486,484,-1,174,487,461,-1,174,488,487,-1,489,490,491,-1,489,492,490,-1,274,232,231,-1,231,272,274,-1,493,167,489,-1,276,494,495,-1,495,496,276,-1,497,150,498,-1,150,496,498,-1,150,497,151,-1,499,30,31,-1,500,183,184,-1,291,290,501,-1,501,32,291,-1,270,316,502,-1,316,318,502,-1,270,503,316,-1,270,268,503,-1,271,504,503,-1,503,268,271,-1,231,230,505,-1,505,495,231,-1,506,507,508,-1,507,509,508,-1,510,511,512,-1,511,513,512,-1,514,515,516,-1,514,517,515,-1,180,518,181,-1,518,228,181,-1,510,519,520,-1,521,522,523,-1,522,524,523,-1,322,525,320,-1,322,526,525,-1,527,528,529,-1,422,530,531,-1,122,532,533,-1,106,105,534,-1,105,535,534,-1,536,537,111,-1,537,108,111,-1,110,109,538,-1,109,539,538,-1,428,426,540,-1,426,541,540,-1,133,81,542,-1,543,544,545,-1,543,546,544,-1,25,24,547,-1,547,548,25,-1,549,547,550,-1,549,548,547,-1,551,552,553,-1,551,554,552,-1,555,556,77,-1,556,557,77,-1,140,139,558,-1,559,76,79,-1,559,560,76,-1,75,561,562,-1,562,561,563,-1,563,54,562,-1,550,547,564,-1,564,565,550,-1,566,567,568,-1,566,569,567,-1,296,570,566,-1,296,298,570,-1,571,572,573,-1,573,293,571,-1,395,396,574,-1,396,575,574,-1,538,574,576,-1,538,577,574,-1,578,579,580,-1,578,130,579,-1,581,540,582,-1,540,583,582,-1,126,581,127,-1,581,582,127,-1,580,584,585,-1,585,578,580,-1,130,129,579,-1,147,580,586,-1,587,588,104,-1,587,589,588,-1,569,570,101,-1,569,566,570,-1,103,590,101,-1,590,569,101,-1,591,579,129,-1,591,592,579,-1,593,568,567,-1,567,594,593,-1,564,595,596,-1,595,597,596,-1,564,24,595,-1,564,547,24,-1,598,73,599,-1,598,61,73,-1,600,601,602,-1,602,594,600,-1,603,604,605,-1,605,606,603,-1,607,601,608,-1,601,605,608,-1,559,79,609,-1,79,74,609,-1,557,553,552,-1,27,610,26,-1,611,58,57,-1,611,612,58,-1,543,613,614,-1,614,546,543,-1,615,546,616,-1,615,544,546,-1,617,618,81,-1,618,542,81,-1,105,619,535,-1,619,620,535,-1,621,622,623,-1,122,531,532,-1,122,422,531,-1,530,624,531,-1,624,625,531,-1,626,523,524,-1,527,627,628,-1,527,629,627,-1,630,631,632,-1,630,633,631,-1,634,635,526,-1,636,637,522,-1,638,626,524,-1,638,639,626,-1,640,641,182,-1,641,180,182,-1,512,513,642,-1,642,643,512,-1,510,520,644,-1,644,511,510,-1,269,513,267,-1,269,642,513,-1,194,290,193,-1,194,501,290,-1,29,291,32,-1,29,28,291,-1,184,645,500,-1,184,646,645,-1,168,647,648,-1,647,649,648,-1,504,273,649,-1,504,271,273,-1,647,650,649,-1,650,504,649,-1,460,459,651,-1,651,652,460,-1,249,316,503,-1,503,247,249,-1,226,244,653,-1,653,224,226,-1,654,655,246,-1,654,656,655,-1,657,485,658,-1,657,483,485,-1,319,659,332,-1,319,660,659,-1,480,477,481,-1,480,475,477,-1,468,470,474,-1,474,315,468,-1,236,661,234,-1,661,314,234,-1,238,661,236,-1,238,662,661,-1,303,660,319,-1,460,663,302,-1,663,482,302,-1,460,664,663,-1,460,652,664,-1,665,478,475,-1,665,666,478,-1,667,668,669,-1,667,670,668,-1,88,86,68,-1,68,67,88,-1,450,88,671,-1,88,458,671,-1,672,673,671,-1,672,674,673,-1,71,675,676,-1,677,449,678,-1,449,448,678,-1,679,677,678,-1,679,680,677,-1,95,69,44,-1,44,43,95,-1,679,445,49,-1,49,42,679,-1,98,681,96,-1,98,1,681,-1,97,96,682,-1,682,683,97,-1,18,20,441,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltibia_Geo_5_841_coordIndex_3()
		{
			int[] value = {20,19,441,-1,0,684,685,-1,0,686,684,-1,436,433,437,-1,437,674,436,-1,435,687,438,-1,438,433,435,-1,688,584,689,-1,688,585,584,-1,690,691,692,-1,690,693,691,-1,126,429,581,-1,126,431,429,-1,427,425,428,-1,425,426,428,-1,522,694,636,-1,522,695,694,-1,420,696,422,-1,696,530,422,-1,414,697,698,-1,699,700,424,-1,701,702,703,-1,701,704,702,-1,254,162,705,-1,254,165,162,-1,706,144,143,-1,706,707,144,-1,708,412,698,-1,412,414,698,-1,413,709,415,-1,709,710,415,-1,411,711,712,-1,411,713,711,-1,714,715,716,-1,716,410,714,-1,405,404,406,-1,405,403,404,-1,209,205,214,-1,206,211,259,-1,211,717,259,-1,261,259,717,-1,261,718,259,-1,719,720,721,-1,719,219,720,-1,345,257,722,-1,257,723,722,-1,400,724,401,-1,400,725,724,-1,366,726,367,-1,366,397,726,-1,394,727,396,-1,727,728,396,-1,729,293,292,-1,729,571,293,-1,730,731,732,-1,730,603,731,-1,392,604,603,-1,603,730,392,-1,620,733,734,-1,620,619,733,-1,264,286,285,-1,264,735,286,-1,641,640,736,-1,736,737,641,-1,287,738,739,-1,400,387,389,-1,389,725,400,-1,239,242,389,-1,389,388,239,-1,740,361,724,-1,724,725,740,-1,741,742,743,-1,741,744,742,-1,352,383,381,-1,381,745,352,-1,746,355,658,-1,355,657,658,-1,747,748,749,-1,750,747,751,-1,750,752,747,-1,278,753,752,-1,331,332,754,-1,754,755,331,-1,327,756,328,-1,372,371,757,-1,374,371,369,-1,374,373,371,-1,344,340,369,-1,344,341,340,-1,324,368,343,-1,324,365,368,-1,339,222,336,-1,336,334,339,-1,364,464,467,-1,467,221,364,-1,223,362,363,-1,362,758,363,-1,362,41,38,-1,362,342,41,-1,38,360,359,-1,38,40,360,-1,740,310,361,-1,310,312,361,-1,240,759,241,-1,758,383,352,-1,352,351,758,-1,357,356,358,-1,358,360,357,-1,354,657,355,-1,354,760,657,-1,257,345,255,-1,345,347,255,-1,256,258,198,-1,198,761,256,-1,40,309,360,-1,762,763,375,-1,464,364,471,-1,364,353,471,-1,363,758,351,-1,374,369,337,-1,369,340,337,-1,327,380,764,-1,764,161,327,-1,381,382,765,-1,765,745,381,-1,765,746,745,-1,746,658,484,-1,658,485,484,-1,243,192,317,-1,192,318,317,-1,189,766,190,-1,767,768,769,-1,465,314,661,-1,323,380,326,-1,718,263,299,-1,718,261,263,-1,770,664,667,-1,770,663,664,-1,643,517,630,-1,690,689,771,-1,690,688,689,-1,116,119,772,-1,118,298,295,-1,118,117,298,-1,272,494,273,-1,494,648,273,-1,266,262,261,-1,157,259,158,-1,402,723,773,-1,774,720,219,-1,219,218,774,-1,249,653,317,-1,249,248,653,-1,323,372,757,-1,757,775,323,-1,276,275,648,-1,648,494,276,-1,269,502,776,-1,269,270,502,-1,777,193,289,-1,193,290,289,-1,216,299,778,-1,216,718,299,-1,718,158,259,-1,718,216,158,-1,721,308,719,-1,721,348,308,-1,507,498,509,-1,507,497,498,-1,168,493,647,-1,168,167,493,-1,244,243,653,-1,243,317,653,-1,779,378,755,-1,378,377,755,-1,331,238,237,-1,331,780,238,-1,376,781,379,-1,376,757,781,-1,235,782,783,-1,235,234,782,-1,648,649,273,-1,232,513,511,-1,227,783,782,-1,227,224,783,-1,370,325,344,-1,218,784,774,-1,307,785,156,-1,282,284,401,-1,211,786,717,-1,211,210,786,-1,202,279,404,-1,185,193,777,-1,185,187,193,-1,194,192,243,-1,501,184,33,-1,179,787,178,-1,788,767,769,-1,769,789,788,-1,161,790,159,-1,161,764,790,-1,314,313,782,-1,782,234,314,-1,321,320,631,-1,656,791,655,-1,173,235,783,-1,783,792,173,-1,652,651,166,-1,756,161,160,-1,756,327,161,-1,155,154,793,-1,742,747,749,-1,742,751,747,-1,477,476,741,-1,741,481,477,-1,21,20,794,-1,20,148,794,-1,584,580,147,-1,147,149,584,-1,586,597,795,-1,146,145,796,-1,796,797,146,-1,83,86,88,-1,88,450,83,-1,798,448,450,-1,450,671,798,-1,446,679,678,-1,446,445,679,-1,551,549,799,-1,799,554,551,-1,800,80,82,-1,82,801,800,-1,616,802,615,-1,616,803,802,-1,598,565,804,-1,804,805,598,-1,123,122,533,-1,533,806,123,-1,570,298,117,-1,117,807,570,-1,116,808,119,-1,116,114,808,-1,106,109,111,-1,111,108,106,-1,619,105,809,-1,105,107,809,-1,552,77,557,-1,683,100,97,-1,683,27,100,-1,97,100,45,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltibia_Geo_5_841_coordIndex_4()
		{
			int[] value = {808,102,807,-1,66,89,67,-1,802,66,68,-1,68,87,802,-1,617,81,80,-1,80,800,617,-1,78,74,79,-1,78,72,74,-1,83,449,84,-1,449,92,84,-1,70,810,811,-1,87,85,812,-1,813,56,455,-1,56,675,59,-1,675,99,59,-1,71,814,70,-1,71,676,814,-1,7,9,4,-1,50,443,94,-1,50,444,443,-1,815,47,46,-1,31,29,34,-1,32,501,33,-1,24,26,595,-1,441,816,817,-1,441,440,816,-1,818,142,819,-1,142,11,819,-1,816,820,817,-1,536,821,822,-1,821,583,822,-1,2,49,0,-1,49,686,0,-1,446,798,823,-1,823,6,446,-1,437,51,674,-1,51,673,674,-1,8,7,823,-1,7,6,823,-1,672,436,674,-1,142,681,3,-1,681,1,3,-1,685,10,12,-1,685,3,0,-1,685,12,3,-1,8,673,51,-1,8,823,673,-1,5,49,445,-1,49,5,686,-1,824,583,821,-1,824,582,583,-1,819,440,818,-1,440,819,816,-1,682,681,825,-1,682,96,681,-1,758,38,359,-1,758,362,38,-1,1,50,2,-1,444,50,1,-1,95,443,815,-1,95,94,443,-1,813,814,676,-1,813,826,814,-1,71,99,675,-1,71,46,99,-1,612,456,58,-1,612,827,456,-1,828,829,558,-1,828,830,829,-1,447,677,680,-1,677,447,93,-1,76,555,77,-1,555,76,560,-1,65,82,63,-1,82,65,803,-1,826,455,831,-1,455,826,813,-1,812,544,615,-1,812,832,544,-1,833,834,545,-1,833,831,834,-1,536,120,537,-1,822,120,536,-1,808,117,119,-1,807,117,808,-1,806,623,123,-1,621,623,806,-1,804,835,805,-1,835,804,591,-1,599,565,598,-1,599,550,565,-1,57,548,611,-1,25,548,57,-1,77,554,78,-1,554,77,552,-1,618,608,542,-1,608,618,607,-1,803,801,82,-1,801,803,616,-1,558,618,617,-1,618,558,139,-1,811,91,447,-1,91,811,810,-1,446,448,798,-1,446,678,448,-1,836,687,435,-1,837,687,836,-1,838,839,840,-1,693,839,838,-1,691,414,841,-1,691,697,414,-1,797,842,843,-1,797,796,842,-1,844,597,595,-1,844,795,597,-1,845,479,743,-1,845,659,479,-1,749,743,742,-1,743,749,845,-1,783,653,792,-1,653,783,224,-1,488,173,792,-1,488,174,173,-1,651,492,489,-1,492,651,459,-1,305,846,304,-1,305,300,846,-1,847,764,775,-1,847,790,764,-1,848,519,628,-1,520,519,848,-1,788,848,849,-1,848,788,789,-1,31,390,739,-1,850,390,31,-1,191,516,188,-1,514,516,191,-1,633,321,631,-1,633,851,321,-1,212,214,213,-1,214,212,209,-1,261,786,266,-1,261,717,786,-1,169,654,852,-1,654,169,656,-1,222,467,336,-1,222,221,467,-1,781,853,379,-1,781,763,853,-1,775,376,847,-1,757,376,775,-1,331,377,780,-1,755,377,331,-1,779,854,378,-1,779,855,854,-1,753,176,856,-1,278,176,753,-1,857,171,462,-1,645,171,857,-1,645,791,171,-1,647,858,650,-1,647,493,858,-1,859,166,168,-1,859,860,166,-1,384,861,862,-1,384,863,861,-1,668,864,865,-1,668,670,864,-1,153,866,154,-1,153,151,866,-1,497,866,151,-1,866,497,507,-1,769,505,230,-1,769,768,505,-1,508,867,506,-1,867,508,868,-1,869,870,871,-1,869,793,870,-1,872,774,873,-1,872,720,774,-1,258,874,199,-1,258,281,874,-1,722,402,350,-1,722,723,402,-1,347,721,875,-1,348,721,347,-1,308,217,719,-1,308,307,217,-1,876,785,877,-1,878,785,876,-1,778,283,282,-1,778,299,283,-1,286,738,287,-1,736,738,286,-1,182,28,30,-1,181,28,182,-1,187,776,502,-1,776,187,186,-1,853,762,662,-1,763,762,853,-1,655,645,646,-1,645,655,791,-1,879,793,869,-1,879,155,793,-1,307,158,217,-1,156,158,307,-1,708,880,727,-1,708,706,880,-1,60,881,882,-1,62,881,60,-1,119,128,772,-1,128,119,118,-1,431,430,429,-1,430,431,883,-1,692,688,690,-1,692,432,688,-1,17,771,689,-1,771,17,884,-1,112,824,821,-1,112,115,824,-1,482,659,660,-1,479,659,482,-1,663,480,482,-1,663,770,480,-1,885,380,330,-1,326,380,885,-1,747,753,855,-1,747,752,753,-1,380,775,764,-1,775,380,323,-1,661,466,465,-1,661,662,466,-1,191,886,851,-1,191,190,886,-1,468,314,465,-1,468,315,314,-1,163,887,164,-1,887,163,888,-1,856,159,790,-1,159,856,176,-1,339,333,337,-1,334,333,339,-1,352,471,353,-1,471,352,469,-1,35,342,341,-1,35,41,342,-1,15,404,712,-1,15,889,404,-1,198,890,761,-1,198,200,890,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getltibia_Geo_5_841_coordIndex_5()
		{
			int[] value = {888,399,887,-1,888,873,399,-1,555,613,556,-1,613,555,830,-1,522,891,695,-1,522,521,891,-1,760,759,463,-1,760,354,759,-1,240,463,759,-1,240,462,463,-1,310,759,311,-1,241,759,310,-1,311,360,309,-1,311,357,360,-1,36,367,892,-1,368,367,36,-1,339,223,222,-1,339,338,223,-1,375,337,333,-1,374,337,375,-1,885,366,365,-1,885,398,366,-1,763,373,375,-1,763,781,373,-1,398,330,329,-1,398,885,330,-1,779,754,748,-1,755,754,779,-1,278,750,277,-1,278,752,750,-1,861,893,894,-1,861,863,893,-1,895,750,751,-1,893,750,895,-1,845,748,754,-1,845,749,748,-1,744,666,895,-1,666,744,478,-1,746,356,355,-1,765,356,746,-1,469,745,896,-1,469,352,745,-1,476,744,741,-1,476,478,744,-1,892,361,36,-1,361,892,724,-1,725,242,740,-1,242,725,389,-1,388,857,239,-1,857,388,897,-1,739,499,31,-1,738,499,739,-1,287,400,288,-1,400,287,387,-1,735,736,286,-1,735,737,736,-1,898,737,899,-1,898,641,737,-1,264,900,735,-1,266,900,264,-1,901,900,902,-1,901,899,900,-1,903,734,733,-1,903,901,734,-1,904,786,210,-1,904,902,786,-1,904,620,734,-1,905,620,904,-1,905,535,620,-1,906,535,905,-1,534,906,907,-1,534,535,906,-1,197,908,907,-1,908,197,196,-1,909,574,577,-1,574,909,395,-1,910,392,730,-1,910,391,392,-1,730,911,910,-1,730,732,911,-1,911,729,408,-1,911,732,729,-1,292,408,729,-1,408,292,407,-1,294,727,880,-1,727,294,728,-1,909,912,913,-1,909,196,912,-1,914,367,726,-1,914,892,367,-1,401,915,282,-1,401,914,915,-1,220,282,915,-1,778,282,220,-1,915,218,220,-1,915,784,218,-1,873,397,399,-1,774,397,873,-1,714,256,761,-1,256,714,773,-1,916,306,346,-1,877,306,916,-1,307,877,785,-1,307,306,877,-1,876,203,917,-1,349,203,876,-1,918,157,878,-1,918,208,157,-1,202,917,203,-1,403,917,202,-1,919,404,889,-1,919,406,404,-1,920,913,912,-1,913,920,709,-1,394,413,412,-1,394,393,413,-1,843,911,797,-1,910,911,843,-1,715,761,890,-1,715,714,761,-1,410,713,411,-1,410,716,713,-1,13,712,711,-1,15,712,13,-1,920,710,709,-1,920,14,710,-1,706,698,707,-1,708,698,706,-1,756,705,162,-1,756,160,705,-1,704,201,251,-1,200,201,704,-1,921,890,701,-1,715,890,921,-1,699,716,922,-1,713,716,699,-1,385,705,160,-1,705,385,417,-1,702,251,253,-1,704,251,702,-1,701,923,921,-1,701,703,923,-1,922,700,699,-1,922,924,700,-1,423,711,424,-1,13,711,423,-1,14,925,710,-1,14,926,925,-1,841,415,927,-1,414,415,841,-1,707,697,838,-1,698,697,707,-1,144,836,416,-1,144,840,836,-1,694,253,879,-1,702,253,694,-1,695,923,703,-1,695,891,923,-1,696,924,928,-1,700,924,696,-1,427,926,425,-1,925,926,427,-1,927,883,841,-1,927,430,883,-1,418,929,930,-1,418,386,929,-1,869,694,879,-1,694,869,636,-1,521,928,891,-1,624,928,521,-1,585,432,125,-1,585,688,432,-1,693,771,839,-1,771,693,690,-1,839,884,837,-1,839,771,884,-1,17,584,149,-1,584,17,689,-1,687,931,438,-1,687,932,931,-1,52,933,9,-1,52,934,933,-1,4,686,5,-1,686,4,684,-1,935,936,934,-1,936,935,820,-1,820,931,817,-1,935,931,820,-1,818,681,142,-1,825,681,818,-1,794,22,21,-1,794,937,22,-1,683,610,27,-1,683,937,610,-1,595,610,844,-1,595,26,610,-1,25,59,27,-1,57,59,25,-1,680,42,44,-1,680,679,42,-1,69,815,46,-1,815,69,95,-1,673,798,671,-1,798,673,823,-1,814,453,454,-1,826,453,814,-1,451,833,832,-1,451,453,833,-1,796,436,842,-1,796,434,436,-1,671,457,672,-1,458,457,671,-1,90,64,137,-1,90,89,64,-1,667,860,670,-1,667,664,860,-1,894,668,861,-1,669,668,894,-1,666,669,894,-1,665,669,666,-1,475,770,665,-1,770,475,480,-1,782,938,227,-1,938,782,313,-1,225,939,852,-1,225,940,939,-1,465,471,468,-1,465,464,471,-1,938,472,940,-1,938,474,472,-1,941,939,942,-1,170,939,941,-1,942,483,941,-1,942,486,483,-1,743,481,741,-1,479,481,743,-1,896,470,469,-1,470,943,473,-1,896,943,470,-1,233,173,175,-1,233,235,173,-1,490,301,461,-1,490,944,301,-1,858,487,250,-1,491,487,858,-1,654,244,226,-1,654,246,244,-1,248,792,653,-1,792,248,488,-1,504,247,503,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getltibia_Geo_5_841_coordIndex_6()
		{
			int[] value = {247,504,650,-1,493,491,858,-1,493,489,491,-1,272,495,494,-1,495,272,231,-1,864,275,178,-1,864,859,275,-1,787,930,929,-1,930,787,179,-1,897,645,857,-1,500,645,897,-1,245,194,243,-1,194,245,501,-1,502,192,187,-1,502,318,192,-1,766,777,289,-1,189,777,766,-1,793,866,870,-1,154,866,793,-1,867,637,871,-1,638,637,867,-1,788,639,868,-1,849,639,788,-1,641,635,180,-1,641,898,635,-1,190,634,886,-1,190,518,634,-1,643,945,512,-1,643,630,945,-1,639,627,626,-1,639,849,627,-1,638,522,637,-1,638,524,522,-1,526,898,903,-1,635,898,526,-1,886,526,322,-1,886,634,526,-1,630,946,945,-1,630,632,946,-1,528,628,519,-1,628,528,527,-1,523,627,629,-1,523,626,627,-1,946,947,948,-1,946,632,947,-1,629,625,523,-1,629,949,625,-1,733,809,525,-1,809,733,619,-1,947,622,621,-1,947,320,622,-1,948,533,529,-1,948,806,533,-1,949,531,625,-1,949,532,531,-1,809,623,622,-1,107,623,809,-1,123,537,120,-1,123,623,537,-1,421,541,426,-1,541,421,121,-1,539,907,908,-1,907,539,534,-1,616,614,801,-1,614,616,546,-1,950,545,834,-1,950,543,545,-1,834,827,950,-1,456,827,834,-1,829,140,558,-1,829,141,140,-1,78,799,72,-1,799,78,554,-1,55,601,607,-1,55,602,601,-1,604,608,605,-1,134,608,604,-1,601,606,605,-1,600,606,601,-1,594,563,593,-1,594,602,563,-1,60,561,75,-1,882,561,60,-1,794,795,844,-1,795,794,148,-1,804,564,596,-1,564,804,565,-1,882,568,593,-1,882,881,568,-1,594,951,600,-1,594,567,951,-1,606,731,603,-1,606,952,731,-1,572,951,590,-1,572,952,951,-1,805,297,62,-1,835,297,805,-1,592,597,586,-1,596,597,592,-1,586,579,592,-1,586,580,579,-1,835,295,297,-1,835,131,295,-1,103,588,573,-1,104,588,103,-1,588,728,294,-1,589,728,588,-1,575,587,953,-1,589,587,575,-1,570,102,101,-1,102,570,807,-1,587,102,808,-1,104,102,587,-1,125,578,585,-1,578,125,124,-1,954,127,955,-1,124,127,954,-1,114,576,953,-1,576,114,113,-1,538,113,110,-1,538,576,113,-1,581,428,540,-1,581,429,428,-1,808,953,587,-1,114,953,808,-1,124,130,578,-1,954,130,124,-1,953,574,575,-1,574,953,576,-1,589,396,728,-1,589,575,396,-1,294,573,588,-1,294,293,573,-1,590,573,572,-1,103,573,590,-1,148,586,795,-1,586,148,147,-1,596,591,804,-1,592,591,596,-1,566,881,296,-1,566,568,881,-1,951,569,590,-1,569,951,567,-1,952,571,731,-1,572,571,952,-1,952,600,951,-1,606,600,952,-1,805,61,598,-1,805,62,61,-1,593,561,882,-1,593,563,561,-1,54,602,55,-1,602,54,563,-1,609,141,559,-1,141,609,53,-1,599,72,799,-1,599,73,72,-1,559,829,560,-1,559,141,829,-1,801,828,800,-1,801,614,828,-1,551,612,611,-1,612,551,553,-1,557,950,827,-1,556,950,557,-1,556,543,950,-1,556,613,543,-1,583,541,822,-1,583,540,541,-1,908,538,539,-1,908,577,538,-1,534,109,106,-1,109,534,539,-1,822,121,120,-1,822,541,121,-1,422,121,421,-1,422,122,121,-1,107,537,623,-1,107,108,537,-1,529,532,949,-1,529,533,532,-1,621,948,947,-1,806,948,621,-1,809,320,525,-1,809,622,320,-1,523,624,521,-1,624,523,625,-1,949,527,529,-1,629,527,949,-1,948,528,946,-1,948,529,528,-1,947,631,320,-1,632,631,947,-1,525,903,733,-1,526,903,525,-1,946,519,945,-1,519,946,528,-1,628,849,848,-1,849,628,627,-1,945,510,512,-1,510,945,519,-1,633,517,514,-1,517,633,630,-1,635,518,180,-1,518,635,634,-1,766,518,190,-1,518,766,228,-1,868,638,867,-1,639,638,868,-1,871,636,869,-1,637,636,871,-1,507,870,866,-1,507,506,870,-1,768,508,509,-1,768,767,508,-1,513,274,267,-1,232,274,513,-1,515,269,776,-1,642,269,515,-1,776,516,515,-1,516,776,186,-1,289,228,766,-1,228,289,229,-1,501,646,184,-1,501,245,646,-1,850,500,897,-1,183,500,850,-1,179,153,930,-1,179,151,153,-1,929,865,787,-1,929,862,865,-1,787,864,178,-1,787,865,864,-1,496,152,276,-1,150,152,496,-1,505,496,495,-1,498,496,505,-1,648,859,168,-1,275,859,648,-1,492,944,490,-1,846,944,492,-1,491,461,487,-1,491,490,461,-1,488,250,487,-1,488,248,250,-1,175,237,233,-1,175,319,237,-1,473,484,486,-1,473,943,484,-1,659,754,332,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getltibia_Geo_5_841_coordIndex_7()
		{
			int[] value = {754,659,845,-1,760,483,657,-1,760,941,483,-1,472,486,942,-1,472,473,486,-1,463,941,760,-1,463,170,941,-1,940,942,939,-1,940,472,942,-1,315,938,313,-1,938,315,474,-1,170,852,939,-1,852,170,169,-1,227,940,225,-1,227,938,940,-1,665,667,669,-1,665,770,667,-1,664,166,860,-1,664,652,166,-1,137,63,135,-1,137,64,63,-1,843,457,409,-1,843,842,457,-1,842,672,457,-1,436,672,842,-1,85,832,812,-1,451,832,85,-1,453,831,833,-1,453,826,831,-1,676,56,813,-1,676,675,56,-1,454,70,814,-1,810,70,454,-1,452,810,454,-1,91,810,452,-1,84,91,452,-1,92,91,84,-1,937,844,610,-1,794,844,937,-1,682,937,683,-1,682,22,937,-1,825,440,23,-1,825,818,440,-1,932,817,931,-1,16,817,932,-1,816,936,820,-1,816,819,936,-1,10,934,936,-1,933,934,10,-1,684,9,933,-1,4,9,684,-1,439,934,52,-1,439,935,934,-1,935,438,931,-1,438,935,439,-1,18,149,20,-1,17,149,18,-1,16,884,17,-1,16,932,884,-1,837,932,687,-1,932,837,884,-1,530,928,624,-1,530,696,928,-1,418,153,155,-1,153,418,930,-1,692,841,883,-1,691,841,692,-1,430,925,427,-1,927,925,430,-1,423,425,926,-1,423,419,425,-1,700,420,424,-1,700,696,420,-1,923,928,924,-1,923,891,928,-1,703,694,695,-1,703,702,694,-1,155,417,418,-1,252,417,155,-1,416,435,434,-1,416,836,435,-1,707,840,144,-1,840,707,838,-1,710,927,415,-1,710,925,927,-1,926,13,423,-1,14,13,926,-1,924,921,923,-1,922,921,924,-1,705,252,254,-1,705,417,252,-1,713,424,711,-1,713,699,424,-1,715,922,716,-1,715,921,922,-1,200,701,890,-1,704,701,200,-1,145,434,796,-1,145,416,434,-1,920,15,14,-1,920,889,15,-1,398,887,399,-1,398,329,887,-1,714,280,773,-1,280,714,410,-1,910,409,391,-1,910,843,409,-1,408,797,911,-1,408,146,797,-1,412,727,394,-1,727,412,708,-1,709,393,913,-1,393,709,413,-1,889,912,919,-1,912,889,920,-1,406,195,215,-1,919,195,406,-1,403,918,917,-1,405,918,403,-1,878,917,918,-1,876,917,878,-1,220,719,217,-1,220,219,719,-1,281,872,874,-1,875,872,281,-1,774,726,397,-1,774,784,726,-1,914,784,915,-1,914,726,784,-1,217,778,220,-1,217,216,778,-1,284,265,288,-1,265,284,260,-1,724,914,401,-1,724,892,914,-1,196,919,912,-1,919,196,195,-1,913,395,909,-1,393,395,913,-1,880,292,294,-1,880,407,292,-1,731,729,732,-1,731,571,729,-1,392,134,604,-1,134,392,132,-1,577,196,909,-1,577,908,196,-1,907,213,197,-1,907,906,213,-1,212,906,905,-1,906,212,213,-1,905,210,212,-1,905,904,210,-1,734,902,904,-1,734,901,902,-1,266,902,900,-1,902,266,786,-1,898,901,903,-1,901,898,899,-1,899,735,900,-1,899,737,735,-1,390,897,388,-1,390,850,897,-1,177,160,159,-1,385,160,177,-1,862,386,384,-1,862,929,386,-1,356,382,358,-1,382,356,765,-1,894,895,666,-1,894,893,895,-1,277,893,863,-1,277,750,893,-1,780,379,853,-1,379,780,377,-1,781,371,373,-1,781,757,371,-1,365,326,885,-1,326,365,324,-1,762,333,335,-1,333,762,375,-1,35,368,36,-1,343,368,35,-1,354,311,759,-1,354,357,311,-1,363,353,364,-1,351,353,363,-1,614,830,828,-1,614,613,830,-1,208,405,207,-1,208,918,405,-1,279,712,404,-1,712,279,411,-1,722,346,345,-1,722,916,346,-1,875,720,872,-1,875,721,720,-1,309,39,312,-1,40,39,309,-1,312,37,361,-1,312,39,37,-1,378,847,376,-1,854,847,378,-1,238,853,662,-1,238,780,853,-1,329,164,887,-1,329,328,164,-1,344,324,343,-1,325,324,344,-1,746,896,745,-1,746,943,896,-1,746,484,943,-1,322,851,886,-1,851,322,321,-1,517,642,515,-1,642,517,643,-1,855,748,747,-1,748,855,779,-1,346,308,348,-1,306,308,346,-1,790,854,856,-1,854,790,847,-1,301,846,300,-1,846,301,944,-1,660,302,482,-1,660,303,302,-1,751,744,895,-1,751,742,744,-1,116,824,115,-1,824,116,955,-1,112,536,111,-1,536,112,821,-1,432,883,431,-1,883,432,692,-1,131,118,295,-1,131,128,118,-1,296,62,297,-1,296,881,62,-1,407,706,143,-1,880,706,407,-1,28,229,291,-1,28,181,229,-1,165,251,201,-1,254,251,165,-1,232,644,230,-1,644,232,511,-1,466,336,467,-1,466,335,336,-1,271,267,274,-1,271,268,267,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getltibia_Geo_5_841_coordIndex_8()
		{
			int[] value = {738,640,499,-1,640,738,736,-1,264,288,265,-1,264,285,288,-1,283,260,284,-1,283,263,260,-1,156,878,157,-1,156,785,878,-1,349,877,916,-1,876,877,349,-1,350,916,722,-1,349,916,350,-1,773,257,256,-1,257,773,723,-1,255,875,281,-1,255,347,875,-1,874,873,888,-1,872,873,874,-1,280,402,773,-1,280,204,402,-1,879,252,155,-1,253,252,879,-1,506,871,870,-1,871,506,867,-1,767,868,508,-1,868,767,788,-1,505,509,498,-1,509,505,768,-1,670,859,864,-1,670,860,859,-1,865,861,668,-1,862,861,865,-1,863,177,277,-1,177,863,384,-1,650,250,247,-1,650,858,250,-1,246,646,245,-1,246,655,646,-1,239,462,240,-1,857,462,239,-1,241,740,242,-1,241,310,740,-1,856,855,753,-1,854,855,856,-1,325,372,323,-1,372,325,370,-1,662,335,466,-1,335,662,762,-1,171,656,169,-1,791,656,171,-1,226,852,654,-1,226,225,852,-1,214,207,215,-1,214,205,207,-1,215,197,213,-1,195,197,215,-1,888,199,874,-1,888,163,199,-1,201,163,165,-1,199,163,201,-1,189,185,777,-1,188,185,189,-1,514,851,633,-1,514,191,851,-1,186,188,516,-1,186,185,188,-1,182,499,640,-1,499,182,30,-1,34,850,31,-1,183,850,34,-1,739,387,287,-1,390,387,739,-1,644,848,789,-1,644,520,848,-1,175,300,305,-1,172,300,175,-1,846,459,304,-1,459,846,492,-1,167,651,489,-1,167,166,651,-1,328,162,164,-1,756,162,328,-1,789,230,644,-1,769,230,789,-1,838,691,693,-1,691,838,697,-1,840,837,836,-1,839,837,840,-1,819,10,936,-1,819,11,10,-1,100,46,45,-1,100,99,46,-1,135,138,137,-1,138,135,132,-1,134,542,608,-1,134,133,542,-1,139,607,618,-1,607,139,55,-1,549,611,548,-1,549,551,611,-1,550,799,549,-1,599,799,550,-1,591,131,835,-1,131,591,129,-1,772,130,954,-1,128,130,772,-1,954,116,772,-1,116,954,955,-1,112,113,115,-1,110,113,112,-1,47,443,442,-1,443,47,815,-1,65,89,66,-1,64,89,65,-1,831,456,834,-1,455,456,831,-1,832,545,544,-1,832,833,545,-1,87,615,802,-1,87,812,615,-1,69,811,44,-1,69,70,811,-1,44,447,680,-1,811,447,44,-1,93,449,677,-1,449,93,92,-1,802,65,66,-1,802,803,65,-1,617,828,558,-1,617,800,828,-1,560,830,555,-1,830,560,829,-1,73,60,75,-1,60,73,61,-1,827,553,557,-1,612,553,827,-1,53,562,54,-1,53,609,562,-1,75,609,74,-1,75,562,609,-1,98,444,1,-1,98,442,444,-1,48,42,49,-1,48,43,42,-1,47,98,45,-1,98,47,442,-1,37,41,35,-1,41,37,39,-1,359,383,758,-1,383,359,358,-1,825,22,682,-1,22,825,23,-1,18,817,16,-1,18,441,817,-1,582,955,127,-1,824,955,582,-1,933,685,684,-1,933,10,685,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltibia_Geo_5_841_normalIndex_1()
		{
			int[] value = {9,183,164,-1,9,104,183,-1,48,61,184,-1,184,153,48,-1,174,52,153,-1,24,37,40,-1,99,96,140,-1,19,46,72,-1,180,110,90,-1,90,123,180,-1,123,228,180,-1,133,125,106,-1,125,167,106,-1,865,899,877,-1,899,897,877,-1,923,895,886,-1,886,899,923,-1,414,429,366,-1,362,297,300,-1,362,317,297,-1,328,337,632,-1,292,645,504,-1,312,141,164,-1,164,510,312,-1,174,182,52,-1,182,69,52,-1,891,873,862,-1,667,168,299,-1,667,348,168,-1,907,747,840,-1,534,478,459,-1,295,281,188,-1,652,645,820,-1,645,757,820,-1,651,706,815,-1,706,901,815,-1,814,689,804,-1,804,927,814,-1,630,801,534,-1,534,379,630,-1,700,787,368,-1,368,410,700,-1,410,368,172,-1,172,188,410,-1,353,281,404,-1,404,432,353,-1,848,809,800,-1,600,337,312,-1,600,470,337,-1,138,108,292,-1,292,205,138,-1,670,167,348,-1,670,308,167,-1,796,766,955,-1,766,940,955,-1,915,860,819,-1,860,789,819,-1,808,710,716,-1,710,597,716,-1,661,714,525,-1,714,604,525,-1,677,697,638,-1,419,333,381,-1,381,518,419,-1,352,211,288,-1,288,406,352,-1,655,550,475,-1,655,682,550,-1,735,858,855,-1,735,707,858,-1,560,543,605,-1,560,432,543,-1,866,874,891,-1,874,885,891,-1,891,862,866,-1,176,40,37,-1,176,104,40,-1,489,247,473,-1,473,625,489,-1,124,134,110,-1,110,115,124,-1,258,117,272,-1,27,25,43,-1,687,649,679,-1,286,199,405,-1,230,193,236,-1,230,186,193,-1,606,731,628,-1,715,533,781,-1,376,357,334,-1,376,386,357,-1,313,143,286,-1,231,272,117,-1,117,95,231,-1,785,772,818,-1,895,926,886,-1,895,904,926,-1,603,450,545,-1,574,659,690,-1,690,594,574,-1,545,579,663,-1,579,717,663,-1,839,883,894,-1,100,165,129,-1,165,179,129,-1,215,238,132,-1,918,902,736,-1,902,702,736,-1,947,914,937,-1,947,936,914,-1,878,920,835,-1,679,699,544,-1,446,444,481,-1,323,225,271,-1,436,618,641,-1,436,515,618,-1,598,723,772,-1,485,474,589,-1,428,488,393,-1,428,563,488,-1,455,576,563,-1,563,428,455,-1,828,671,601,-1,601,745,828,-1,656,686,790,-1,686,777,790,-1,622,424,487,-1,622,575,424,-1,163,101,122,-1,163,162,101,-1,194,59,127,-1,194,151,59,-1,812,702,902,-1,812,649,702,-1,672,861,793,-1,672,713,861,-1,793,739,648,-1,793,825,739,-1,734,740,613,-1,740,635,613,-1,642,517,557,-1,642,595,517,-1,272,370,344,-1,272,231,370,-1,280,313,356,-1,280,143,313,-1,148,215,132,-1,132,88,148,-1,151,194,192,-1,507,587,582,-1,750,797,830,-1,830,685,750,-1,722,791,912,-1,912,723,722,-1,762,813,798,-1,749,924,811,-1,749,817,924,-1,636,713,587,-1,536,376,524,-1,239,270,394,-1,270,482,394,-1,503,608,460,-1,371,501,402,-1,371,365,501,-1,678,592,696,-1,572,487,468,-1,468,448,572,-1,386,482,270,-1,270,289,386,-1,761,756,760,-1,617,538,629,-1,617,403,538,-1,411,268,298,-1,298,398,411,-1,372,289,208,-1,372,455,289,-1,359,185,263,-1,185,169,263,-1,326,329,189,-1,326,584,329,-1,329,584,461,-1,461,265,329,-1,414,461,626,-1,461,676,626,-1,100,151,165,-1,220,294,274,-1,294,301,274,-1,238,261,158,-1,764,721,770,-1,345,351,443,-1,443,388,345,-1,516,519,418,-1,366,429,401,-1,271,329,303,-1,329,265,303,-1,323,607,570,-1,323,271,607,-1,498,454,511,-1,511,573,498,-1,619,637,676,-1,788,637,619,-1,788,765,637,-1,775,472,646,-1,654,590,469,-1,654,725,590,-1,411,398,521,-1,542,516,506,-1,542,620,516,-1,143,29,94,-1,29,28,94,-1,852,900,823,-1,852,903,900,-1,640,735,751,-1,640,605,735,-1,769,719,896,-1,719,845,896,-1,375,355,283,-1,375,454,355,-1,685,711,582,-1,711,477,582,-1,793,648,672,-1,158,132,238,-1,158,93,132,-1,918,937,902,-1,918,947,937,-1,343,215,310,-1,736,451,727,-1,727,835,736,-1,694,489,625,-1,625,728,694,-1,605,624,560,-1,605,640,624,-1,148,91,121,-1,148,88,91,-1,373,360,177,-1,360,152,177,-1,247,245,473,-1,78,94,22,-1,94,28,22,-1,12,13,203,-1,13,178,203,-1,34,20,12,-1,20,13,12,-1,1,12,144,-1,12,203,144,-1,0,120,85,-1,85,11,0,-1,211,60,288,-1,211,32,60,-1,139,304,150,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltibia_Geo_5_841_normalIndex_2()
		{
			int[] value = {139,321,304,-1,171,65,97,-1,171,139,65,-1,69,171,97,-1,69,182,171,-1,510,600,312,-1,228,197,180,-1,197,142,180,-1,467,695,569,-1,136,259,61,-1,259,184,61,-1,800,794,848,-1,483,674,700,-1,700,427,483,-1,442,368,795,-1,368,787,795,-1,566,442,837,-1,442,795,837,-1,299,491,667,-1,299,332,491,-1,560,508,408,-1,560,624,508,-1,408,432,560,-1,408,353,432,-1,534,801,707,-1,801,858,707,-1,539,239,394,-1,539,390,239,-1,524,376,334,-1,334,399,524,-1,732,781,435,-1,781,533,435,-1,546,666,392,-1,392,285,546,-1,726,729,662,-1,726,778,729,-1,529,662,526,-1,529,611,662,-1,417,434,378,-1,417,445,434,-1,212,335,248,-1,212,219,335,-1,377,499,479,-1,377,440,499,-1,334,490,399,-1,334,367,490,-1,784,746,733,-1,784,803,746,-1,595,589,474,-1,474,517,595,-1,776,731,784,-1,344,484,476,-1,476,325,344,-1,246,258,331,-1,258,325,331,-1,258,246,117,-1,857,877,897,-1,941,926,904,-1,912,791,783,-1,783,923,912,-1,635,572,465,-1,572,448,465,-1,635,718,572,-1,635,740,718,-1,642,708,718,-1,718,740,642,-1,474,485,438,-1,438,476,474,-1,221,232,315,-1,232,341,315,-1,568,535,703,-1,535,738,703,-1,527,464,412,-1,527,588,464,-1,785,742,772,-1,742,598,772,-1,568,665,578,-1,128,111,254,-1,111,173,254,-1,760,859,761,-1,760,838,859,-1,554,647,577,-1,178,102,260,-1,381,415,530,-1,860,915,939,-1,915,929,939,-1,634,705,716,-1,705,789,716,-1,710,808,938,-1,808,950,938,-1,120,144,275,-1,144,347,275,-1,858,801,933,-1,227,191,210,-1,227,240,191,-1,125,133,126,-1,126,51,125,-1,224,126,250,-1,224,51,126,-1,243,532,278,-1,243,609,532,-1,681,364,689,-1,364,389,689,-1,874,866,758,-1,954,814,927,-1,954,844,814,-1,901,946,932,-1,932,946,892,-1,892,873,932,-1,250,126,262,-1,262,338,250,-1,879,849,893,-1,879,868,849,-1,924,754,879,-1,924,817,754,-1,841,880,867,-1,867,813,841,-1,896,845,935,-1,845,913,935,-1,938,935,921,-1,938,931,935,-1,305,302,207,-1,305,475,302,-1,374,275,493,-1,275,380,493,-1,288,374,406,-1,374,493,406,-1,207,154,200,-1,200,305,207,-1,475,550,302,-1,124,207,149,-1,934,875,940,-1,934,911,875,-1,868,754,796,-1,868,879,754,-1,955,949,796,-1,949,868,796,-1,497,302,550,-1,497,216,302,-1,888,893,849,-1,849,834,888,-1,262,187,223,-1,187,146,223,-1,262,133,187,-1,262,126,133,-1,512,706,385,-1,512,747,706,-1,942,953,870,-1,870,834,942,-1,843,833,884,-1,884,872,843,-1,951,953,919,-1,953,884,919,-1,954,927,944,-1,927,815,944,-1,389,278,532,-1,167,75,106,-1,105,299,168,-1,105,242,299,-1,227,284,251,-1,251,240,227,-1,206,240,264,-1,206,191,240,-1,773,925,801,-1,925,933,801,-1,915,948,929,-1,948,887,929,-1,583,741,704,-1,381,260,415,-1,381,178,260,-1,102,131,260,-1,131,276,260,-1,252,254,173,-1,554,486,643,-1,554,387,486,-1,657,748,701,-1,657,673,748,-1,780,846,838,-1,81,156,111,-1,226,252,173,-1,226,309,252,-1,810,822,818,-1,822,785,818,-1,703,738,610,-1,610,650,703,-1,568,578,456,-1,456,535,568,-1,613,738,734,-1,613,610,738,-1,717,791,663,-1,717,783,791,-1,899,912,923,-1,899,865,912,-1,904,928,941,-1,904,864,928,-1,628,755,531,-1,755,658,531,-1,708,557,658,-1,708,642,557,-1,755,753,658,-1,753,708,658,-1,390,539,693,-1,693,528,390,-1,487,572,718,-1,718,622,487,-1,641,686,463,-1,463,436,641,-1,743,821,777,-1,743,767,821,-1,349,479,558,-1,349,377,479,-1,289,170,208,-1,289,175,170,-1,335,378,248,-1,335,417,378,-1,726,662,611,-1,611,696,726,-1,563,585,488,-1,585,592,488,-1,576,585,563,-1,576,571,585,-1,270,175,289,-1,390,307,239,-1,307,219,239,-1,390,396,307,-1,390,528,396,-1,502,445,417,-1,502,553,445,-1,431,255,458,-1,431,342,255,-1,353,410,188,-1,188,281,353,-1,427,353,346,-1,353,408,346,-1,319,267,346,-1,319,234,267,-1,757,779,826,-1,631,674,433,-1,674,483,433,-1,340,631,433,-1,340,653,631,-1,470,652,632,-1,632,337,470,-1,340,136,141,-1,141,328,340,-1,205,217,138,-1,205,183,217,-1,108,138,130,-1,130,98,108,-1,72,110,142,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltibia_Geo_5_841_normalIndex_3()
		{
			int[] value = {110,180,142,-1,9,6,33,-1,9,7,6,-1,321,139,171,-1,171,234,321,-1,150,41,65,-1,65,139,150,-1,45,154,50,-1,45,200,154,-1,4,76,17,-1,4,62,76,-1,288,85,374,-1,288,60,85,-1,0,1,120,-1,1,144,120,-1,111,83,81,-1,111,36,83,-1,13,8,178,-1,8,102,178,-1,177,137,204,-1,53,10,20,-1,116,119,79,-1,116,147,119,-1,162,230,181,-1,162,186,230,-1,383,247,489,-1,383,209,247,-1,391,373,204,-1,373,177,204,-1,360,339,152,-1,339,109,152,-1,121,118,161,-1,121,86,118,-1,55,66,82,-1,82,91,55,-1,451,310,727,-1,451,343,310,-1,947,918,920,-1,902,937,812,-1,937,889,812,-1,861,812,889,-1,861,836,812,-1,430,290,279,-1,430,444,290,-1,220,127,157,-1,127,92,157,-1,711,457,477,-1,711,691,457,-1,454,449,511,-1,454,375,449,-1,719,644,845,-1,644,807,845,-1,786,813,762,-1,786,841,813,-1,774,831,771,-1,774,843,831,-1,751,833,843,-1,843,774,751,-1,887,922,898,-1,887,948,922,-1,739,797,750,-1,739,802,797,-1,822,810,824,-1,824,832,822,-1,830,856,906,-1,711,852,823,-1,823,691,711,-1,828,745,823,-1,823,900,828,-1,615,401,457,-1,457,691,615,-1,306,296,202,-1,306,480,296,-1,721,620,542,-1,542,599,721,-1,556,351,558,-1,351,349,558,-1,293,222,198,-1,439,293,453,-1,439,358,293,-1,356,330,358,-1,372,208,241,-1,241,421,372,-1,411,269,268,-1,765,788,792,-1,472,788,619,-1,472,775,788,-1,676,584,619,-1,676,461,584,-1,538,573,626,-1,538,498,573,-1,189,225,169,-1,169,185,189,-1,570,546,285,-1,285,323,570,-1,271,303,607,-1,303,541,607,-1,303,317,362,-1,303,265,317,-1,362,418,519,-1,362,300,418,-1,615,501,401,-1,501,365,401,-1,671,407,601,-1,541,620,721,-1,721,764,541,-1,388,443,516,-1,516,418,388,-1,345,349,351,-1,345,324,349,-1,127,220,194,-1,220,274,194,-1,59,151,100,-1,100,49,59,-1,300,371,418,-1,522,752,646,-1,546,570,778,-1,570,770,778,-1,607,541,764,-1,472,619,326,-1,619,584,326,-1,411,521,580,-1,580,405,411,-1,542,506,552,-1,552,599,542,-1,552,556,599,-1,556,558,499,-1,558,479,499,-1,656,579,468,-1,579,448,468,-1,659,602,690,-1,492,471,612,-1,666,592,585,-1,617,521,403,-1,836,713,636,-1,836,861,713,-1,382,396,431,-1,382,307,396,-1,650,588,657,-1,4,50,3,-1,4,45,50,-1,604,638,669,-1,697,817,749,-1,697,677,817,-1,517,484,557,-1,484,531,557,-1,825,793,861,-1,649,812,679,-1,93,92,68,-1,327,290,444,-1,444,446,327,-1,487,463,468,-1,487,424,463,-1,617,765,792,-1,792,712,617,-1,344,370,531,-1,531,484,344,-1,613,465,423,-1,613,635,465,-1,623,663,722,-1,663,791,722,-1,699,636,514,-1,699,836,636,-1,836,679,812,-1,836,699,679,-1,279,460,430,-1,279,301,460,-1,232,331,341,-1,232,246,331,-1,628,776,755,-1,628,731,776,-1,686,656,463,-1,656,468,463,-1,318,469,421,-1,469,590,421,-1,372,576,455,-1,372,551,576,-1,654,827,725,-1,654,792,827,-1,393,500,350,-1,393,488,500,-1,531,658,557,-1,589,738,535,-1,515,350,500,-1,515,436,350,-1,637,629,676,-1,446,426,327,-1,608,614,687,-1,507,582,477,-1,937,869,889,-1,937,914,869,-1,215,148,310,-1,603,663,623,-1,603,545,663,-1,717,579,656,-1,783,904,895,-1,95,84,231,-1,505,492,612,-1,612,593,505,-1,405,513,286,-1,405,580,513,-1,592,678,500,-1,500,488,592,-1,756,761,748,-1,767,829,821,-1,357,393,350,-1,350,320,357,-1,528,693,606,-1,269,405,199,-1,269,411,405,-1,43,25,42,-1,296,293,198,-1,296,453,293,-1,378,434,306,-1,306,248,378,-1,90,110,103,-1,110,134,103,-1,154,207,124,-1,124,115,154,-1,149,146,155,-1,625,473,555,-1,555,683,625,-1,700,410,353,-1,353,427,700,-1,354,483,427,-1,427,346,354,-1,259,340,433,-1,259,136,340,-1,243,224,523,-1,523,609,243,-1,462,630,379,-1,379,273,462,-1,264,237,206,-1,264,322,237,-1,512,338,413,-1,413,621,512,-1,518,381,530,-1,530,549,518,-1,754,817,677,-1,677,668,754,-1,604,763,638,-1,604,714,763,-1,860,808,716,-1,716,789,860,-1,948,915,853,-1,915,819,853,-1,532,689,389,-1,98,308,108,-1,98,167,308,-1,108,308,292,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltibia_Geo_5_841_normalIndex_4()
		{
			int[] value = {763,766,668,-1,295,404,281,-1,237,295,188,-1,188,172,237,-1,773,801,630,-1,630,462,773,-1,804,815,927,-1,804,651,815,-1,700,674,787,-1,674,809,787,-1,820,847,805,-1,172,368,195,-1,730,667,491,-1,667,779,348,-1,779,670,348,-1,757,851,820,-1,757,826,851,-1,153,52,48,-1,510,695,600,-1,510,569,695,-1,581,504,645,-1,897,899,886,-1,923,783,895,-1,133,106,187,-1,142,89,54,-1,142,197,89,-1,190,176,63,-1,176,37,63,-1,89,57,54,-1,634,564,420,-1,564,380,420,-1,164,141,9,-1,141,7,9,-1,259,354,277,-1,277,184,259,-1,171,182,234,-1,182,267,234,-1,174,153,277,-1,153,184,277,-1,319,321,234,-1,176,217,104,-1,217,183,104,-1,33,24,40,-1,33,104,9,-1,33,40,104,-1,174,267,182,-1,174,277,267,-1,61,141,136,-1,141,61,7,-1,547,380,564,-1,547,493,380,-1,63,197,190,-1,197,63,89,-1,130,217,214,-1,130,138,217,-1,541,362,519,-1,541,303,362,-1,183,510,164,-1,569,510,183,-1,470,695,581,-1,470,600,695,-1,730,851,826,-1,730,692,851,-1,757,670,779,-1,757,645,670,-1,242,332,299,-1,242,314,332,-1,416,806,758,-1,416,559,806,-1,794,631,653,-1,631,794,800,-1,814,681,689,-1,681,814,844,-1,459,379,534,-1,379,459,322,-1,692,491,361,-1,491,692,730,-1,195,191,206,-1,195,196,191,-1,244,287,210,-1,244,361,287,-1,634,419,705,-1,420,419,634,-1,763,677,638,-1,668,677,763,-1,549,704,518,-1,583,704,549,-1,413,680,621,-1,680,413,497,-1,385,338,512,-1,385,250,338,-1,168,51,105,-1,125,51,168,-1,689,609,804,-1,609,689,532,-1,925,919,933,-1,919,925,951,-1,322,273,379,-1,273,322,264,-1,758,925,773,-1,925,758,866,-1,805,848,794,-1,848,805,847,-1,259,483,354,-1,259,433,483,-1,145,41,150,-1,38,41,145,-1,160,58,159,-1,62,58,160,-1,76,177,74,-1,76,137,177,-1,683,567,684,-1,683,555,567,-1,114,146,187,-1,114,155,146,-1,166,212,202,-1,166,170,212,-1,198,202,296,-1,202,198,166,-1,350,463,320,-1,463,350,436,-1,367,357,320,-1,367,334,357,-1,693,803,784,-1,803,693,539,-1,482,744,394,-1,482,536,744,-1,633,580,712,-1,633,513,580,-1,627,665,643,-1,578,665,627,-1,505,627,520,-1,627,505,593,-1,897,903,906,-1,909,903,897,-1,594,412,574,-1,527,412,594,-1,673,756,748,-1,673,698,756,-1,936,920,878,-1,920,936,947,-1,861,869,825,-1,861,889,869,-1,715,743,660,-1,743,715,767,-1,225,285,169,-1,225,323,285,-1,827,688,725,-1,827,752,688,-1,712,654,633,-1,792,654,712,-1,372,590,551,-1,421,590,372,-1,318,496,469,-1,318,336,496,-1,330,313,384,-1,356,313,330,-1,881,781,732,-1,928,781,881,-1,928,829,781,-1,755,768,753,-1,755,776,768,-1,425,606,628,-1,425,447,606,-1,29,218,26,-1,29,233,218,-1,255,235,112,-1,255,342,235,-1,27,107,25,-1,27,117,107,-1,246,107,117,-1,107,246,232,-1,612,438,485,-1,612,471,438,-1,315,229,221,-1,229,315,311,-1,70,113,135,-1,70,42,113,-1,253,327,249,-1,253,290,327,-1,151,201,165,-1,151,192,201,-1,157,93,158,-1,157,92,93,-1,274,279,266,-1,301,279,274,-1,460,544,430,-1,460,608,544,-1,400,614,452,-1,540,614,400,-1,514,587,507,-1,514,636,587,-1,797,856,830,-1,824,856,797,-1,818,865,877,-1,772,865,818,-1,545,423,465,-1,423,545,450,-1,688,522,571,-1,752,522,688,-1,821,928,864,-1,928,821,829,-1,77,42,70,-1,77,43,42,-1,608,679,544,-1,687,679,608,-1,391,616,644,-1,391,383,616,-1,907,945,952,-1,840,945,907,-1,638,655,669,-1,655,638,697,-1,60,11,85,-1,11,60,14,-1,17,45,4,-1,17,32,45,-1,46,3,50,-1,3,46,5,-1,597,547,564,-1,597,525,547,-1,219,170,175,-1,212,170,219,-1,307,335,219,-1,307,382,335,-1,395,521,398,-1,403,521,395,-1,293,330,336,-1,293,358,330,-1,521,712,580,-1,712,521,617,-1,585,392,666,-1,585,571,392,-1,594,720,698,-1,594,690,720,-1,726,592,666,-1,726,696,592,-1,193,257,236,-1,257,193,213,-1,384,286,513,-1,286,384,313,-1,189,359,326,-1,185,359,189,-1,721,778,770,-1,778,721,729,-1,414,265,461,-1,414,317,265,-1,140,310,161,-1,140,316,310,-1,100,87,49,-1,100,129,87,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getltibia_Geo_5_841_normalIndex_5()
		{
			int[] value = {213,283,257,-1,213,249,283,-1,681,284,364,-1,284,681,559,-1,111,18,36,-1,111,128,18,-1,324,407,435,-1,324,345,407,-1,671,435,407,-1,671,732,435,-1,501,407,402,-1,601,407,501,-1,402,418,371,-1,402,388,418,-1,429,511,397,-1,573,511,429,-1,189,271,225,-1,189,329,271,-1,646,326,359,-1,472,326,646,-1,395,454,498,-1,395,355,454,-1,752,775,646,-1,752,827,775,-1,355,398,298,-1,355,395,398,-1,318,241,222,-1,421,241,318,-1,356,439,280,-1,356,358,439,-1,218,494,466,-1,218,233,494,-1,565,439,453,-1,494,439,565,-1,166,222,241,-1,166,198,222,-1,480,553,565,-1,553,480,445,-1,556,443,351,-1,552,443,556,-1,729,599,591,-1,729,721,599,-1,434,480,306,-1,434,445,480,-1,397,401,429,-1,401,397,457,-1,691,745,615,-1,745,691,823,-1,900,881,828,-1,881,900,916,-1,906,857,897,-1,856,857,906,-1,830,711,685,-1,711,830,852,-1,802,824,797,-1,802,832,824,-1,854,832,850,-1,854,822,832,-1,739,816,802,-1,825,816,739,-1,871,816,842,-1,871,850,816,-1,890,898,922,-1,890,871,898,-1,863,869,914,-1,863,842,869,-1,863,887,898,-1,882,887,863,-1,882,929,887,-1,905,929,882,-1,939,905,908,-1,939,929,905,-1,894,917,908,-1,917,894,883,-1,910,935,931,-1,935,910,896,-1,709,751,774,-1,709,640,751,-1,774,724,709,-1,774,771,724,-1,724,786,728,-1,724,771,786,-1,762,728,786,-1,728,762,694,-1,798,644,616,-1,644,798,807,-1,910,759,782,-1,910,883,759,-1,422,511,449,-1,422,397,511,-1,477,441,507,-1,477,422,441,-1,481,507,441,-1,514,507,481,-1,441,446,481,-1,441,426,446,-1,249,375,283,-1,327,375,249,-1,55,59,49,-1,59,55,68,-1,256,503,294,-1,452,503,256,-1,608,452,614,-1,608,503,452,-1,400,238,363,-1,261,238,400,-1,495,649,540,-1,495,702,649,-1,215,363,238,-1,343,363,215,-1,737,310,316,-1,737,727,310,-1,291,782,759,-1,782,291,339,-1,719,360,373,-1,719,769,360,-1,684,724,683,-1,709,724,684,-1,66,49,87,-1,66,55,49,-1,91,86,121,-1,91,82,86,-1,99,161,118,-1,140,161,99,-1,291,109,339,-1,291,96,109,-1,383,204,209,-1,391,204,383,-1,269,181,230,-1,269,199,181,-1,147,179,163,-1,129,179,147,-1,80,87,116,-1,66,87,80,-1,53,82,64,-1,86,82,53,-1,94,181,199,-1,181,94,78,-1,119,163,122,-1,147,163,119,-1,116,35,80,-1,116,79,35,-1,64,10,53,-1,64,23,10,-1,34,118,20,-1,99,118,34,-1,96,56,109,-1,96,44,56,-1,74,152,67,-1,177,152,74,-1,209,137,160,-1,204,137,209,-1,247,145,245,-1,247,159,145,-1,83,122,77,-1,119,122,83,-1,36,35,79,-1,36,18,35,-1,8,23,16,-1,10,23,8,-1,0,44,1,-1,56,44,0,-1,67,14,74,-1,67,11,14,-1,22,15,21,-1,22,28,15,-1,70,83,77,-1,83,70,81,-1,128,16,18,-1,131,16,128,-1,200,32,211,-1,200,45,32,-1,62,3,58,-1,3,62,4,-1,58,5,38,-1,58,3,5,-1,46,154,115,-1,154,46,50,-1,41,31,65,-1,41,2,31,-1,69,30,52,-1,69,47,30,-1,48,7,61,-1,7,48,6,-1,71,39,47,-1,39,71,57,-1,57,31,54,-1,71,31,57,-1,190,217,176,-1,214,217,190,-1,103,123,90,-1,103,73,123,-1,98,75,167,-1,98,73,75,-1,187,75,114,-1,187,106,75,-1,125,348,167,-1,168,348,125,-1,653,328,632,-1,653,340,328,-1,652,581,645,-1,581,652,470,-1,267,354,346,-1,354,267,277,-1,851,566,837,-1,692,566,851,-1,442,244,196,-1,442,566,244,-1,555,321,567,-1,555,304,321,-1,346,508,319,-1,408,508,346,-1,432,478,543,-1,432,404,478,-1,431,447,342,-1,431,396,447,-1,466,255,218,-1,458,255,466,-1,553,458,466,-1,502,458,553,-1,417,382,502,-1,382,417,335,-1,500,596,515,-1,596,500,678,-1,618,509,660,-1,618,561,509,-1,666,778,726,-1,666,546,778,-1,596,529,561,-1,596,611,529,-1,369,509,437,-1,533,509,369,-1,437,377,369,-1,437,440,377,-1,202,248,306,-1,212,248,202,-1,591,662,729,-1,662,562,526,-1,591,562,662,-1,428,357,386,-1,428,393,357,-1,746,524,399,-1,746,799,524,-1,768,490,575,-1,733,490,768,-1,743,686,641,-1,743,777,686,-1,424,320,463,-1,320,424,367,-1,708,622,718,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getltibia_Geo_5_841_normalIndex_6()
		{
			int[] value = {622,708,753,-1,776,733,768,-1,776,784,733,-1,517,476,484,-1,476,517,474,-1,235,370,231,-1,235,425,370,-1,84,21,15,-1,21,84,95,-1,916,928,881,-1,941,928,916,-1,790,717,656,-1,717,790,783,-1,465,579,545,-1,465,448,579,-1,602,623,722,-1,659,623,602,-1,42,107,113,-1,25,107,42,-1,229,156,135,-1,226,156,229,-1,505,309,311,-1,520,309,505,-1,822,846,785,-1,822,854,846,-1,690,780,720,-1,690,742,780,-1,650,675,703,-1,650,657,675,-1,309,486,252,-1,309,520,486,-1,226,111,156,-1,226,173,111,-1,838,854,890,-1,846,854,838,-1,720,838,760,-1,720,780,838,-1,657,639,675,-1,657,701,639,-1,647,643,665,-1,643,647,554,-1,254,486,387,-1,254,252,486,-1,639,664,586,-1,639,701,664,-1,387,276,254,-1,387,409,276,-1,922,853,859,-1,853,922,948,-1,664,741,583,-1,664,761,741,-1,586,530,577,-1,586,549,530,-1,409,260,276,-1,409,415,260,-1,853,704,741,-1,819,704,853,-1,518,705,419,-1,518,704,705,-1,203,347,144,-1,347,203,333,-1,950,908,917,-1,908,950,939,-1,264,251,273,-1,251,264,240,-1,282,210,287,-1,282,227,210,-1,287,314,282,-1,332,314,287,-1,806,874,758,-1,806,885,874,-1,804,523,651,-1,523,804,609,-1,862,953,951,-1,862,870,953,-1,833,919,884,-1,855,919,833,-1,953,872,884,-1,942,872,953,-1,834,892,888,-1,834,870,892,-1,907,946,901,-1,952,946,907,-1,103,155,114,-1,155,103,134,-1,413,262,223,-1,262,413,338,-1,952,893,888,-1,952,945,893,-1,834,943,942,-1,834,849,943,-1,872,831,843,-1,872,876,831,-1,880,943,949,-1,880,876,943,-1,621,811,840,-1,680,811,621,-1,216,146,149,-1,223,146,216,-1,149,302,216,-1,149,207,302,-1,680,749,811,-1,680,682,749,-1,955,875,867,-1,940,875,955,-1,875,807,798,-1,911,807,875,-1,913,934,930,-1,911,934,913,-1,754,766,796,-1,766,754,668,-1,934,766,763,-1,940,766,934,-1,211,305,200,-1,305,211,352,-1,537,406,548,-1,352,406,537,-1,714,921,930,-1,921,714,661,-1,938,661,710,-1,938,921,661,-1,374,120,275,-1,374,85,120,-1,763,930,934,-1,714,930,763,-1,352,475,305,-1,537,475,352,-1,930,935,913,-1,935,930,921,-1,911,845,807,-1,911,913,845,-1,798,867,875,-1,798,813,867,-1,949,867,880,-1,955,867,949,-1,134,149,155,-1,149,134,124,-1,223,497,413,-1,216,497,223,-1,879,945,924,-1,879,893,945,-1,943,868,949,-1,868,943,849,-1,876,841,831,-1,880,841,876,-1,876,942,943,-1,872,942,876,-1,621,747,512,-1,621,840,747,-1,888,946,952,-1,888,892,946,-1,873,870,862,-1,870,873,892,-1,944,885,954,-1,885,944,891,-1,385,651,523,-1,385,706,651,-1,954,806,844,-1,954,885,806,-1,273,416,462,-1,273,251,416,-1,243,242,105,-1,242,243,278,-1,389,282,314,-1,364,282,389,-1,364,227,282,-1,364,284,227,-1,380,347,420,-1,380,275,347,-1,917,938,950,-1,917,931,938,-1,939,808,860,-1,808,939,950,-1,420,333,419,-1,420,347,333,-1,178,333,203,-1,178,381,333,-1,819,705,704,-1,819,789,705,-1,577,415,409,-1,577,530,415,-1,583,586,664,-1,549,586,583,-1,853,761,859,-1,853,741,761,-1,254,131,128,-1,131,254,276,-1,409,554,577,-1,387,554,409,-1,586,647,639,-1,586,577,647,-1,664,748,761,-1,701,748,664,-1,859,890,922,-1,838,890,859,-1,639,665,675,-1,665,639,647,-1,643,520,627,-1,520,643,486,-1,675,568,703,-1,568,675,665,-1,673,588,527,-1,588,673,657,-1,846,742,785,-1,742,846,780,-1,602,742,690,-1,742,602,598,-1,311,226,229,-1,309,226,311,-1,135,81,70,-1,156,81,135,-1,232,113,107,-1,232,221,113,-1,471,315,341,-1,471,492,315,-1,738,595,734,-1,589,595,738,-1,464,613,423,-1,610,613,464,-1,423,412,464,-1,412,423,450,-1,722,598,602,-1,598,722,723,-1,783,864,904,-1,783,790,864,-1,909,941,916,-1,926,941,909,-1,95,27,21,-1,95,117,27,-1,15,112,84,-1,15,26,112,-1,84,235,231,-1,84,112,235,-1,325,272,344,-1,258,272,325,-1,438,325,476,-1,331,325,438,-1,531,425,628,-1,370,425,531,-1,803,799,746,-1,744,799,803,-1,733,399,490,-1,733,746,399,-1,367,575,490,-1,367,424,575,-1,386,455,428,-1,386,289,455,-1,526,499,440,-1,526,562,499,-1,170,241,208,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getltibia_Geo_5_841_normalIndex_7()
		{
			int[] value = {241,170,166,-1,324,377,349,-1,324,369,377,-1,529,440,437,-1,529,526,440,-1,435,369,324,-1,435,533,369,-1,561,437,509,-1,561,529,437,-1,696,596,678,-1,596,696,611,-1,533,660,509,-1,660,533,715,-1,515,561,618,-1,515,596,561,-1,502,431,458,-1,502,382,431,-1,396,606,447,-1,396,528,606,-1,543,534,707,-1,543,478,534,-1,684,508,624,-1,684,567,508,-1,567,319,508,-1,321,319,567,-1,368,196,195,-1,442,196,368,-1,566,361,244,-1,566,692,361,-1,826,667,730,-1,826,779,667,-1,837,820,851,-1,847,820,837,-1,795,847,837,-1,848,847,795,-1,787,848,795,-1,809,848,787,-1,73,114,75,-1,103,114,73,-1,130,73,98,-1,130,123,73,-1,214,197,228,-1,214,190,197,-1,2,54,31,-1,19,54,2,-1,89,39,57,-1,89,63,39,-1,24,47,39,-1,30,47,24,-1,6,52,30,-1,48,52,6,-1,97,47,69,-1,97,71,47,-1,71,65,31,-1,65,71,97,-1,72,115,110,-1,46,115,72,-1,19,5,46,-1,19,2,5,-1,38,2,41,-1,2,38,5,-1,102,16,131,-1,102,8,16,-1,22,27,43,-1,27,22,21,-1,17,74,14,-1,76,74,17,-1,11,56,0,-1,67,56,11,-1,34,1,44,-1,34,12,1,-1,10,13,20,-1,10,8,13,-1,35,16,23,-1,35,18,16,-1,79,83,36,-1,79,119,83,-1,43,78,22,-1,101,78,43,-1,245,150,304,-1,245,145,150,-1,209,159,247,-1,159,209,160,-1,109,67,152,-1,109,56,67,-1,44,99,34,-1,96,99,44,-1,23,80,35,-1,64,80,23,-1,181,101,162,-1,181,78,101,-1,86,20,118,-1,86,53,20,-1,66,64,82,-1,66,80,64,-1,129,116,87,-1,147,116,129,-1,473,304,555,-1,473,245,304,-1,291,140,96,-1,291,316,140,-1,355,257,283,-1,355,298,257,-1,55,88,68,-1,88,55,91,-1,709,624,640,-1,709,684,624,-1,728,683,724,-1,728,625,683,-1,373,644,719,-1,644,373,391,-1,339,769,782,-1,769,339,360,-1,316,759,737,-1,759,316,291,-1,727,839,835,-1,737,839,727,-1,343,495,363,-1,451,495,343,-1,540,363,495,-1,400,363,540,-1,481,430,544,-1,481,444,430,-1,192,253,201,-1,266,253,192,-1,327,449,375,-1,327,426,449,-1,422,426,441,-1,422,449,426,-1,544,514,481,-1,544,699,514,-1,582,648,685,-1,648,582,672,-1,457,422,477,-1,457,397,422,-1,883,737,759,-1,737,883,839,-1,782,896,910,-1,769,896,782,-1,616,762,798,-1,616,694,762,-1,831,786,771,-1,831,841,786,-1,751,855,833,-1,855,751,735,-1,931,883,910,-1,931,917,883,-1,908,878,894,-1,908,905,878,-1,936,905,882,-1,905,936,878,-1,882,914,936,-1,882,863,914,-1,898,842,863,-1,898,871,842,-1,825,842,816,-1,842,825,869,-1,854,871,890,-1,871,854,850,-1,850,802,816,-1,850,832,802,-1,903,916,900,-1,903,909,916,-1,143,199,286,-1,94,199,143,-1,26,28,29,-1,26,15,28,-1,443,506,516,-1,506,443,552,-1,466,565,553,-1,466,494,565,-1,280,494,233,-1,280,439,494,-1,551,725,688,-1,725,551,590,-1,827,788,775,-1,827,792,788,-1,498,403,395,-1,403,498,538,-1,522,359,263,-1,359,522,646,-1,414,573,429,-1,626,573,414,-1,345,402,407,-1,345,388,402,-1,607,770,570,-1,764,770,607,-1,251,559,416,-1,251,284,559,-1,702,451,736,-1,702,495,451,-1,148,161,310,-1,161,148,121,-1,157,294,220,-1,157,256,294,-1,266,290,253,-1,266,279,290,-1,371,297,365,-1,300,297,371,-1,365,366,401,-1,365,297,366,-1,469,633,654,-1,496,633,469,-1,576,688,571,-1,576,551,688,-1,298,236,257,-1,298,268,236,-1,676,538,626,-1,629,538,676,-1,556,591,599,-1,556,562,591,-1,556,499,562,-1,760,698,720,-1,698,760,756,-1,588,610,464,-1,610,588,650,-1,336,222,293,-1,222,336,318,-1,294,460,301,-1,503,460,294,-1,513,496,384,-1,496,513,633,-1,524,744,536,-1,744,524,799,-1,175,239,219,-1,175,270,239,-1,453,480,565,-1,453,296,480,-1,604,547,525,-1,547,604,548,-1,597,634,716,-1,634,597,564,-1,32,14,60,-1,14,32,17,-1,682,697,749,-1,682,655,697,-1,924,840,811,-1,924,945,840,-1,694,383,489,-1,616,383,694,-1,865,723,912,-1,865,772,723,-1,186,163,179,-1,162,163,186,-1,589,456,485,-1,456,589,535,-1,392,169,285,-1,392,263,169,-1,642,734,595,-1,642,740,734,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getltibia_Geo_5_841_normalIndex_8()
		{
			int[] value = {856,810,857,-1,810,856,824,-1,739,685,648,-1,739,750,685,-1,587,672,582,-1,587,713,672,-1,687,540,649,-1,687,614,540,-1,261,452,256,-1,400,452,261,-1,158,256,157,-1,261,256,158,-1,68,127,59,-1,127,68,92,-1,194,266,192,-1,194,274,266,-1,201,249,213,-1,253,249,201,-1,88,93,68,-1,88,132,93,-1,77,101,43,-1,122,101,77,-1,221,135,113,-1,135,221,229,-1,492,311,315,-1,311,492,505,-1,438,341,331,-1,341,438,471,-1,342,425,235,-1,342,447,425,-1,112,218,255,-1,26,218,112,-1,233,143,280,-1,143,233,29,-1,753,575,622,-1,753,768,575,-1,777,864,790,-1,777,821,864,-1,828,732,671,-1,881,732,828,-1,601,615,745,-1,601,501,615,-1,384,336,330,-1,496,336,384,-1,629,765,617,-1,765,629,637,-1,571,263,392,-1,263,571,522,-1,781,767,715,-1,829,767,781,-1,641,660,743,-1,641,618,660,-1,920,736,835,-1,920,918,736,-1,835,894,878,-1,839,894,835,-1,213,165,201,-1,213,193,165,-1,179,193,186,-1,165,193,179,-1,659,603,623,-1,574,603,659,-1,527,698,673,-1,527,594,698,-1,450,574,412,-1,450,603,574,-1,818,857,810,-1,857,818,877,-1,886,909,897,-1,926,909,886,-1,906,852,830,-1,903,852,906,-1,456,627,593,-1,456,578,627,-1,386,536,482,-1,376,536,386,-1,744,539,394,-1,539,744,803,-1,731,693,784,-1,731,606,693,-1,268,230,236,-1,269,230,268,-1,593,485,456,-1,612,485,593,-1,160,76,62,-1,76,160,137,-1,159,38,145,-1,58,38,159,-1,63,24,39,-1,63,37,24,-1,308,645,292,-1,308,670,645,-1,707,605,543,-1,605,707,735,-1,855,933,919,-1,855,858,933,-1,866,951,925,-1,951,866,862,-1,224,105,51,-1,224,243,105,-1,250,523,224,-1,385,523,250,-1,497,682,680,-1,682,497,550,-1,669,475,537,-1,655,475,669,-1,537,604,669,-1,604,537,548,-1,597,661,525,-1,710,661,597,-1,504,695,467,-1,695,504,581,-1,459,404,295,-1,478,404,459,-1,361,332,287,-1,491,332,361,-1,196,210,191,-1,196,244,210,-1,172,206,237,-1,172,195,206,-1,652,805,632,-1,652,820,805,-1,632,794,653,-1,805,794,632,-1,800,674,631,-1,674,800,809,-1,237,459,295,-1,237,322,459,-1,773,416,758,-1,773,462,416,-1,844,559,681,-1,559,844,806,-1,706,907,901,-1,907,706,747,-1,314,278,389,-1,242,278,314,-1,891,932,873,-1,891,944,932,-1,901,944,815,-1,901,932,944,-1,205,569,183,-1,205,467,569,-1,312,328,141,-1,312,337,328,-1,504,205,292,-1,205,504,467,-1,366,317,414,-1,317,366,297,-1,519,620,541,-1,620,519,516,-1,214,123,130,-1,123,214,228,-1,72,54,19,-1,72,142,54,-1,493,548,406,-1,547,548,493,-1,30,33,6,-1,30,24,33,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltrpzium_Geo_5_847_coordIndex_1()
		{
			int[] value = {0,1,2,-1,2,3,4,-1,2,1,3,-1,5,6,7,-1,5,8,9,-1,5,10,8,-1,10,5,7,-1,11,12,13,-1,14,15,16,-1,16,17,14,-1,18,19,20,-1,21,22,23,-1,22,24,23,-1,25,26,27,-1,28,29,30,-1,30,31,28,-1,32,33,34,-1,33,35,34,-1,36,37,38,-1,36,39,37,-1,40,41,42,-1,43,44,45,-1,46,47,48,-1,48,49,46,-1,47,46,50,-1,50,51,47,-1,52,53,54,-1,55,56,57,-1,58,59,60,-1,20,35,61,-1,62,63,24,-1,31,64,65,-1,42,41,66,-1,41,67,66,-1,68,69,70,-1,71,72,73,-1,74,75,76,-1,47,51,77,-1,78,79,80,-1,81,82,83,-1,83,84,81,-1,21,15,85,-1,86,25,27,-1,87,88,89,-1,90,91,92,-1,91,93,92,-1,94,95,84,-1,94,96,95,-1,97,98,99,-1,100,101,102,-1,102,103,100,-1,104,105,106,-1,107,108,109,-1,110,111,112,-1,110,113,111,-1,45,114,115,-1,116,117,118,-1,119,120,121,-1,119,108,120,-1,122,123,124,-1,125,126,127,-1,125,68,126,-1,128,129,130,-1,131,109,119,-1,109,108,119,-1,132,101,133,-1,132,134,101,-1,135,136,137,-1,135,138,136,-1,139,140,141,-1,139,142,140,-1,128,143,144,-1,128,130,143,-1,88,145,89,-1,88,146,145,-1,147,148,122,-1,39,149,37,-1,150,151,152,-1,153,8,10,-1,9,154,5,-1,9,155,154,-1,156,157,158,-1,159,157,160,-1,161,162,163,-1,163,164,161,-1,29,0,165,-1,166,167,168,-1,169,67,170,-1,35,33,26,-1,18,17,16,-1,28,62,29,-1,165,171,172,-1,173,53,174,-1,141,175,176,-1,175,177,176,-1,178,127,126,-1,56,74,179,-1,165,0,2,-1,180,181,182,-1,182,183,180,-1,87,86,88,-1,87,184,86,-1,185,186,187,-1,185,188,186,-1,189,190,191,-1,192,193,194,-1,34,195,196,-1,196,32,34,-1,162,161,99,-1,31,30,197,-1,144,198,199,-1,144,143,198,-1,200,142,198,-1,198,143,200,-1,165,97,29,-1,126,201,178,-1,114,168,202,-1,168,167,202,-1,195,34,19,-1,36,38,203,-1,135,204,205,-1,135,137,204,-1,7,69,206,-1,140,175,141,-1,140,207,175,-1,208,52,209,-1,161,164,210,-1,64,211,58,-1,63,212,213,-1,214,215,17,-1,216,40,97,-1,97,40,29,-1,22,21,217,-1,217,218,22,-1,219,72,220,-1,201,118,221,-1,222,223,224,-1,225,226,227,-1,228,104,152,-1,141,176,229,-1,229,139,141,-1,120,100,230,-1,230,121,120,-1,107,132,133,-1,200,143,231,-1,143,130,231,-1,232,148,147,-1,39,233,149,-1,39,234,233,-1,235,236,237,-1,238,208,209,-1,104,150,152,-1,167,166,161,-1,161,210,167,-1,112,103,102,-1,112,111,103,-1,133,108,107,-1,133,120,108,-1,239,240,115,-1,239,241,240,-1,242,230,103,-1,230,100,103,-1,102,101,243,-1,101,134,243,-1,244,162,245,-1,244,163,162,-1,245,98,172,-1,46,175,207,-1,207,50,46,-1,246,247,248,-1,249,250,251,-1,249,252,250,-1,253,195,19,-1,254,255,256,-1,48,205,257,-1,257,205,204,-1,79,194,193,-1,228,105,104,-1,258,105,228,-1,47,77,48,-1,259,260,224,-1,261,223,262,-1,263,264,265,-1,263,266,264,-1,18,214,17,-1,66,58,211,-1,42,197,30,-1,174,53,52,-1,52,208,174,-1,78,194,79,-1,54,267,268,-1,268,52,54,-1,36,269,39,-1,259,126,68,-1,201,261,270,-1,270,118,201,-1,213,60,19,-1,19,18,213,-1,30,40,42,-1,30,29,40,-1,271,272,273,-1,271,6,272,-1,70,259,68,-1,70,260,259,-1,274,275,276,-1,274,277,275,-1,39,278,234,-1,62,279,0,-1,17,185,14,-1,185,280,14,-1,62,0,29,-1,215,281,188,-1,281,282,188,-1,3,1,283,-1,284,186,285,-1,151,227,210,-1,210,227,167,-1,286,113,287,-1,288,289,290,-1,288,291,289,-1,113,292,287,-1,110,292,113,-1,80,293,294,-1,80,295,293,-1,296,297,298,-1,296,299,297,-1,300,258,228,-1,301,258,300,-1,150,302,225,-1,150,104,302,-1,303,304,305,-1,303,306,304,-1,153,7,206,-1,153,10,7,-1,228,307,300,-1,228,152,307,-1,307,151,210,-1,152,151,307,-1,306,192,127,-1,306,303,192,-1,1,279,283,-1,0,279,1,-1,308,187,309,-1,308,310,187,-1,186,282,285,-1,188,282,186,-1,215,61,281,-1,214,61,215,-1,24,279,62,-1,279,24,22,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltrpzium_Geo_5_847_coordIndex_2()
		{
			int[] value = {311,33,32,-1,312,33,311,-1,196,313,314,-1,196,315,313,-1,316,317,318,-1,316,169,317,-1,319,170,320,-1,321,170,319,-1,274,278,277,-1,234,278,274,-1,322,275,323,-1,276,275,322,-1,324,325,43,-1,326,325,324,-1,325,327,328,-1,325,323,327,-1,275,329,330,-1,275,277,329,-1,269,278,39,-1,331,278,269,-1,320,332,319,-1,332,320,216,-1,333,334,335,-1,333,146,334,-1,145,269,36,-1,145,336,269,-1,337,43,45,-1,337,324,43,-1,338,118,270,-1,118,338,116,-1,70,271,260,-1,6,271,70,-1,272,339,273,-1,272,189,339,-1,147,128,232,-1,147,129,128,-1,31,212,28,-1,31,65,212,-1,20,34,35,-1,20,19,34,-1,259,201,126,-1,201,259,261,-1,191,339,189,-1,191,124,339,-1,340,232,128,-1,340,341,232,-1,342,157,343,-1,157,342,158,-1,254,246,255,-1,246,254,344,-1,155,345,154,-1,345,155,73,-1,209,268,346,-1,52,268,209,-1,235,230,347,-1,230,235,121,-1,348,74,286,-1,348,75,74,-1,349,350,351,-1,349,136,350,-1,352,136,349,-1,136,352,137,-1,73,353,71,-1,73,155,353,-1,119,238,131,-1,119,237,238,-1,354,55,242,-1,56,55,354,-1,48,355,49,-1,48,257,355,-1,80,193,295,-1,80,79,193,-1,208,356,174,-1,236,356,208,-1,235,357,358,-1,347,357,235,-1,42,211,197,-1,66,211,42,-1,265,321,319,-1,265,264,321,-1,359,266,263,-1,359,360,266,-1,338,326,324,-1,338,361,326,-1,270,262,362,-1,261,262,270,-1,259,223,261,-1,259,224,223,-1,78,153,194,-1,78,8,153,-1,173,363,220,-1,364,363,173,-1,365,366,367,-1,368,366,365,-1,369,370,371,-1,179,370,369,-1,287,372,373,-1,292,372,287,-1,291,374,375,-1,288,374,291,-1,376,96,94,-1,3,96,376,-1,22,283,279,-1,22,218,283,-1,105,297,377,-1,297,105,258,-1,295,378,299,-1,295,193,378,-1,379,342,343,-1,379,380,342,-1,381,273,339,-1,381,382,273,-1,383,384,385,-1,384,383,386,-1,387,274,276,-1,387,388,274,-1,251,389,249,-1,251,390,389,-1,313,391,392,-1,318,391,313,-1,156,345,219,-1,156,158,345,-1,393,394,395,-1,396,394,393,-1,397,398,399,-1,400,398,397,-1,401,138,402,-1,403,138,401,-1,351,404,349,-1,405,404,351,-1,406,407,408,-1,406,409,407,-1,410,95,217,-1,410,411,95,-1,412,184,91,-1,412,413,184,-1,90,182,181,-1,414,182,90,-1,229,415,416,-1,176,415,229,-1,417,49,355,-1,49,417,177,-1,418,48,77,-1,418,205,48,-1,51,256,419,-1,254,256,51,-1,195,315,196,-1,315,195,253,-1,420,251,250,-1,251,420,392,-1,329,252,249,-1,329,331,252,-1,421,352,422,-1,352,421,423,-1,246,424,425,-1,246,248,424,-1,246,426,247,-1,344,426,246,-1,177,46,49,-1,177,175,46,-1,144,340,128,-1,144,427,340,-1,13,284,180,-1,13,309,284,-1,245,171,428,-1,245,172,171,-1,162,98,245,-1,162,99,98,-1,419,429,430,-1,419,256,429,-1,244,134,163,-1,243,134,244,-1,357,369,368,-1,357,57,369,-1,240,45,115,-1,240,337,45,-1,239,431,241,-1,432,431,239,-1,101,120,133,-1,101,100,120,-1,114,239,115,-1,239,114,202,-1,118,433,221,-1,118,117,433,-1,227,202,167,-1,226,202,227,-1,432,225,302,-1,432,226,225,-1,233,434,149,-1,233,435,434,-1,436,387,437,-1,436,385,387,-1,438,306,439,-1,304,306,438,-1,296,131,346,-1,131,296,298,-1,356,365,364,-1,356,358,365,-1,395,440,160,-1,395,394,440,-1,424,441,190,-1,424,248,441,-1,435,148,434,-1,435,442,148,-1,406,11,443,-1,406,82,11,-1,198,139,444,-1,139,198,142,-1,182,445,183,-1,182,416,445,-1,375,83,408,-1,375,374,83,-1,243,446,447,-1,243,244,446,-1,164,307,210,-1,307,164,132,-1,447,102,243,-1,102,447,112,-1,393,220,363,-1,393,219,220,-1,440,256,255,-1,256,440,429,-1,430,418,419,-1,448,418,430,-1,57,179,369,-1,57,56,179,-1,372,408,407,-1,372,375,408,-1,414,92,444,-1,414,90,92,-1,199,444,92,-1,199,198,444,-1,449,385,436,-1,449,383,385,-1,232,434,148,-1,232,341,434,-1,437,276,322,-1,437,387,276,-1,390,450,389,-1,390,451,450,-1,300,132,107,-1,132,300,307,-1,298,109,131,-1,298,301,109,-1,127,439,306,-1,178,439,127,-1,293,346,268,-1,293,296,346,-1,117,337,240,-1,116,337,117,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltrpzium_Geo_5_847_coordIndex_3()
		{
			int[] value = {442,381,123,-1,381,442,386,-1,380,154,342,-1,380,5,154,-1,86,146,88,-1,146,86,334,-1,282,26,25,-1,282,281,26,-1,85,14,280,-1,85,15,14,-1,11,180,183,-1,11,13,180,-1,310,411,410,-1,310,308,411,-1,84,374,94,-1,84,83,374,-1,311,420,335,-1,311,314,420,-1,391,451,390,-1,451,391,452,-1,318,452,391,-1,317,452,318,-1,281,35,26,-1,61,35,281,-1,60,64,58,-1,60,65,64,-1,367,397,396,-1,397,367,366,-1,416,453,445,-1,416,415,453,-1,174,364,173,-1,174,356,364,-1,348,405,351,-1,348,373,405,-1,453,422,454,-1,453,421,422,-1,247,455,456,-1,247,426,455,-1,379,190,189,-1,379,424,190,-1,382,271,273,-1,271,382,222,-1,289,112,447,-1,289,110,112,-1,54,173,71,-1,173,54,53,-1,2,171,165,-1,2,4,171,-1,166,99,161,-1,166,332,99,-1,331,336,252,-1,331,269,336,-1,328,450,360,-1,328,327,450,-1,58,67,169,-1,58,66,67,-1,433,431,438,-1,433,241,431,-1,106,377,305,-1,106,105,377,-1,203,457,89,-1,203,427,457,-1,455,142,200,-1,455,140,142,-1,50,426,344,-1,426,50,207,-1,426,140,455,-1,426,207,140,-1,427,199,457,-1,427,144,199,-1,36,89,145,-1,36,203,89,-1,178,221,439,-1,178,201,221,-1,23,63,213,-1,23,24,63,-1,6,69,7,-1,6,70,69,-1,129,231,130,-1,458,231,129,-1,389,327,330,-1,327,389,450,-1,217,96,218,-1,217,95,96,-1,280,410,85,-1,280,310,410,-1,285,25,413,-1,282,25,285,-1,73,219,345,-1,219,73,72,-1,284,413,412,-1,285,413,284,-1,446,459,290,-1,459,446,428,-1,354,113,286,-1,113,354,111,-1,370,403,401,-1,76,403,370,-1,222,260,271,-1,260,222,224,-1,248,456,441,-1,248,247,456,-1,415,421,453,-1,415,417,421,-1,454,404,409,-1,454,422,404,-1,242,111,354,-1,242,103,111,-1,445,454,443,-1,445,453,454,-1,371,401,400,-1,371,370,401,-1,309,186,284,-1,186,309,187,-1,59,19,60,-1,19,59,253,-1,169,59,58,-1,59,169,316,-1,317,264,452,-1,321,264,317,-1,452,266,451,-1,452,264,266,-1,335,250,333,-1,250,335,420,-1,165,98,97,-1,165,172,98,-1,244,428,446,-1,428,244,245,-1,82,12,11,-1,82,81,12,-1,185,215,188,-1,185,17,215,-1,87,91,184,-1,91,87,93,-1,27,334,86,-1,312,334,27,-1,124,381,339,-1,123,381,124,-1,156,160,157,-1,156,395,160,-1,5,272,6,-1,380,272,5,-1,383,222,382,-1,383,449,222,-1,353,294,267,-1,353,460,294,-1,193,303,378,-1,192,303,193,-1,431,304,438,-1,431,461,304,-1,360,451,266,-1,451,360,450,-1,252,333,250,-1,333,252,336,-1,388,234,274,-1,234,388,233,-1,437,326,361,-1,326,437,322,-1,384,442,435,-1,442,384,386,-1,362,449,436,-1,362,262,449,-1,458,456,231,-1,458,441,456,-1,38,427,203,-1,38,340,427,-1,456,200,231,-1,456,455,200,-1,93,89,457,-1,93,87,89,-1,443,409,406,-1,454,409,443,-1,76,350,403,-1,75,350,76,-1,448,398,402,-1,448,430,398,-1,394,429,440,-1,394,399,429,-1,358,368,365,-1,358,357,368,-1,448,205,418,-1,135,205,448,-1,402,135,448,-1,402,138,135,-1,238,236,208,-1,236,238,237,-1,163,132,164,-1,163,134,132,-1,447,290,289,-1,447,446,290,-1,443,183,445,-1,443,11,183,-1,444,229,414,-1,229,444,139,-1,449,223,222,-1,262,223,449,-1,123,148,442,-1,148,123,122,-1,191,441,458,-1,191,190,441,-1,255,160,440,-1,255,159,160,-1,363,396,393,-1,363,367,396,-1,378,305,377,-1,378,303,305,-1,439,433,438,-1,439,221,433,-1,361,436,437,-1,361,362,436,-1,388,435,233,-1,388,384,435,-1,434,37,149,-1,434,341,37,-1,226,239,202,-1,239,226,432,-1,433,240,241,-1,117,240,433,-1,373,407,405,-1,373,372,407,-1,301,107,109,-1,107,301,300,-1,432,461,431,-1,302,461,432,-1,366,400,397,-1,366,371,400,-1,332,97,99,-1,97,332,216,-1,399,430,429,-1,399,398,430,-1,4,428,171,-1,428,4,459,-1,308,81,411,-1,81,308,12,-1,180,412,181,-1,284,412,180,-1,92,457,199,-1,92,93,457,-1,422,349,404,-1,349,422,352,-1,425,379,343,-1,425,424,379,-1,421,355,423,-1,421,417,355,-1,314,392,420,-1,313,392,314,-1,77,419,418,-1,51,419,77,-1,176,417,415,-1,177,417,176,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltrpzium_Geo_5_847_coordIndex_4()
		{
			int[] value = {416,414,229,-1,416,182,414,-1,181,91,90,-1,181,412,91,-1,184,25,86,-1,184,413,25,-1,217,85,410,-1,21,85,217,-1,411,84,95,-1,411,81,84,-1,82,408,83,-1,82,406,408,-1,409,405,407,-1,409,404,405,-1,403,136,138,-1,350,136,403,-1,402,400,401,-1,402,398,400,-1,396,399,394,-1,397,399,396,-1,219,395,156,-1,393,395,219,-1,316,253,59,-1,253,316,315,-1,392,390,251,-1,392,391,390,-1,249,330,329,-1,249,389,330,-1,385,388,387,-1,388,385,384,-1,386,382,381,-1,386,383,382,-1,189,380,379,-1,189,272,380,-1,299,377,297,-1,299,378,377,-1,218,3,283,-1,218,96,3,-1,94,288,376,-1,94,374,288,-1,292,375,372,-1,291,375,292,-1,286,373,348,-1,287,373,286,-1,179,76,370,-1,74,76,179,-1,368,371,366,-1,369,371,368,-1,364,367,363,-1,365,367,364,-1,220,71,173,-1,220,72,71,-1,155,460,353,-1,155,9,460,-1,125,69,68,-1,125,206,69,-1,338,362,361,-1,270,362,338,-1,44,360,359,-1,44,328,360,-1,320,67,41,-1,320,170,67,-1,64,197,211,-1,197,64,31,-1,28,63,62,-1,28,212,63,-1,213,16,23,-1,213,18,16,-1,347,57,357,-1,55,57,347,-1,236,358,356,-1,235,358,236,-1,267,293,268,-1,267,294,293,-1,286,56,354,-1,74,56,286,-1,121,237,119,-1,235,237,121,-1,255,425,159,-1,246,425,255,-1,159,343,157,-1,159,425,343,-1,257,423,355,-1,257,204,423,-1,423,137,352,-1,137,423,204,-1,75,351,350,-1,351,75,348,-1,347,242,55,-1,242,347,230,-1,238,346,131,-1,209,346,238,-1,71,267,54,-1,71,353,267,-1,154,158,342,-1,154,345,158,-1,51,344,254,-1,344,51,50,-1,124,458,122,-1,124,191,458,-1,114,44,359,-1,114,45,44,-1,265,168,263,-1,166,168,265,-1,37,340,38,-1,37,341,340,-1,122,129,147,-1,129,122,458,-1,116,324,337,-1,116,338,324,-1,359,168,114,-1,359,263,168,-1,336,146,333,-1,336,145,146,-1,335,312,311,-1,335,334,312,-1,213,65,60,-1,213,212,65,-1,41,216,320,-1,216,41,40,-1,265,332,166,-1,265,319,332,-1,331,277,278,-1,331,329,277,-1,323,330,327,-1,323,275,330,-1,328,43,325,-1,328,44,43,-1,326,323,325,-1,322,323,326,-1,169,321,317,-1,169,170,321,-1,315,318,313,-1,315,316,318,-1,32,314,311,-1,32,196,314,-1,26,312,27,-1,26,33,312,-1,16,21,23,-1,21,16,15,-1,20,214,18,-1,61,214,20,-1,187,280,185,-1,280,187,310,-1,12,309,13,-1,308,309,12,-1,153,125,194,-1,153,206,125,-1,106,302,104,-1,106,461,302,-1,78,294,460,-1,78,80,294,-1,194,127,192,-1,194,125,127,-1,106,304,461,-1,305,304,106,-1,151,225,227,-1,150,225,151,-1,298,258,301,-1,298,297,258,-1,295,296,293,-1,295,299,296,-1,8,460,9,-1,8,78,460,-1,3,459,4,-1,3,376,459,-1,291,110,289,-1,291,292,110,-1,376,290,459,-1,376,288,290,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltrpzium_Geo_5_847_normalIndex_1()
		{
			int[] value = {126,60,71,-1,71,52,65,-1,71,60,52,-1,246,291,256,-1,246,340,250,-1,246,258,340,-1,258,246,256,-1,148,122,142,-1,133,110,228,-1,228,292,133,-1,348,387,367,-1,99,88,184,-1,88,202,184,-1,204,360,332,-1,341,174,264,-1,264,372,341,-1,452,418,460,-1,418,393,460,-1,401,327,333,-1,401,379,327,-1,355,416,391,-1,404,409,359,-1,216,78,59,-1,59,158,216,-1,78,216,168,-1,168,57,78,-1,56,47,75,-1,74,58,41,-1,420,442,370,-1,367,393,362,-1,242,301,202,-1,372,380,368,-1,391,416,426,-1,416,435,426,-1,208,209,304,-1,67,53,85,-1,43,36,21,-1,78,57,38,-1,337,377,347,-1,107,123,106,-1,106,84,107,-1,99,110,80,-1,306,204,332,-1,260,310,321,-1,287,263,289,-1,263,277,289,-1,79,72,84,-1,79,61,72,-1,192,102,190,-1,125,129,164,-1,164,170,125,-1,378,414,388,-1,241,116,187,-1,152,194,181,-1,152,163,194,-1,359,352,290,-1,282,185,212,-1,105,101,92,-1,105,116,101,-1,300,339,315,-1,205,199,257,-1,205,208,199,-1,214,179,134,-1,173,187,105,-1,187,116,105,-1,229,129,141,-1,229,146,129,-1,24,14,40,-1,24,13,14,-1,302,279,331,-1,302,265,279,-1,214,191,243,-1,214,134,191,-1,310,398,321,-1,310,396,398,-1,286,307,300,-1,379,308,327,-1,329,316,366,-1,323,340,258,-1,250,177,246,-1,250,144,177,-1,45,66,90,-1,63,66,35,-1,218,118,145,-1,145,232,218,-1,174,126,96,-1,364,252,330,-1,444,435,424,-1,393,418,360,-1,348,292,228,-1,341,242,174,-1,96,77,89,-1,27,47,46,-1,331,312,262,-1,312,248,262,-1,196,257,199,-1,58,43,26,-1,96,126,71,-1,203,244,237,-1,237,198,203,-1,260,306,310,-1,260,245,306,-1,169,175,127,-1,169,213,175,-1,267,220,251,-1,374,392,345,-1,460,449,450,-1,450,452,460,-1,118,218,190,-1,372,264,373,-1,243,255,271,-1,243,191,255,-1,230,265,255,-1,255,191,230,-1,96,192,174,-1,199,200,196,-1,352,330,261,-1,330,252,261,-1,449,460,387,-1,401,333,342,-1,24,42,39,-1,24,40,42,-1,256,209,195,-1,279,312,331,-1,279,269,312,-1,64,56,87,-1,218,232,284,-1,380,384,420,-1,301,346,319,-1,376,309,292,-1,344,355,192,-1,192,355,174,-1,88,99,69,-1,69,55,88,-1,37,53,16,-1,200,212,165,-1,350,294,296,-1,270,235,259,-1,399,378,366,-1,331,262,275,-1,275,302,331,-1,101,125,113,-1,113,92,101,-1,241,229,141,-1,230,191,183,-1,191,134,183,-1,274,307,286,-1,379,314,308,-1,379,354,314,-1,73,68,93,-1,100,64,87,-1,378,329,366,-1,252,364,218,-1,218,284,252,-1,181,170,164,-1,181,194,170,-1,141,116,241,-1,141,101,116,-1,247,253,290,-1,247,217,253,-1,157,113,170,-1,113,125,170,-1,164,129,171,-1,129,146,171,-1,139,118,114,-1,139,145,118,-1,114,102,89,-1,216,312,269,-1,269,168,216,-1,153,238,221,-1,456,438,440,-1,456,461,438,-1,451,449,387,-1,54,62,25,-1,59,39,50,-1,50,39,42,-1,377,345,392,-1,399,414,378,-1,403,414,399,-1,78,38,59,-1,240,343,296,-1,285,294,349,-1,413,429,417,-1,413,454,429,-1,348,376,292,-1,426,420,384,-1,391,373,264,-1,46,47,56,-1,56,64,46,-1,337,345,377,-1,75,120,111,-1,111,56,75,-1,401,434,379,-1,240,199,208,-1,200,285,313,-1,313,212,200,-1,319,370,387,-1,387,348,319,-1,264,355,391,-1,264,174,355,-1,324,278,336,-1,324,291,278,-1,304,240,208,-1,304,343,240,-1,369,395,381,-1,369,386,395,-1,379,382,354,-1,242,81,126,-1,292,169,133,-1,169,103,133,-1,242,126,174,-1,309,305,213,-1,305,210,213,-1,52,60,51,-1,189,175,207,-1,316,259,284,-1,284,259,252,-1,117,163,156,-1,119,155,128,-1,119,138,155,-1,163,135,156,-1,152,135,163,-1,347,233,224,-1,347,358,233,-1,298,394,320,-1,298,383,394,-1,363,403,399,-1,356,403,363,-1,329,288,270,-1,329,378,288,-1,385,280,390,-1,385,272,280,-1,323,256,195,-1,323,258,256,-1,399,334,363,-1,399,366,334,-1,334,316,284,-1,366,316,334,-1,272,374,257,-1,272,385,374,-1,60,81,51,-1,126,81,60,-1,115,127,130,-1,115,108,127,-1,175,210,207,-1,213,210,175,-1,309,362,305,-1,376,362,309,-1,202,81,242,-1,81,202,88,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltrpzium_Geo_5_847_normalIndex_2()
		{
			int[] value = {441,418,452,-1,412,418,441,-1,450,446,445,-1,450,455,446,-1,448,433,439,-1,448,444,433,-1,406,424,407,-1,425,424,406,-1,369,382,386,-1,354,382,369,-1,389,395,405,-1,381,395,389,-1,402,410,404,-1,400,410,402,-1,410,436,428,-1,410,405,436,-1,395,422,427,-1,395,386,422,-1,434,382,379,-1,423,382,434,-1,407,357,406,-1,357,407,344,-1,421,397,419,-1,421,396,397,-1,398,434,401,-1,398,457,434,-1,335,404,359,-1,335,402,404,-1,365,212,313,-1,212,365,282,-1,304,324,343,-1,291,324,304,-1,278,322,336,-1,278,267,322,-1,286,214,274,-1,286,179,214,-1,372,346,341,-1,372,368,346,-1,367,460,393,-1,367,387,460,-1,240,200,199,-1,200,240,285,-1,251,322,267,-1,251,315,322,-1,268,274,214,-1,268,293,274,-1,178,66,159,-1,66,178,90,-1,54,153,62,-1,153,54,161,-1,144,94,177,-1,94,144,85,-1,87,111,162,-1,56,111,87,-1,73,113,70,-1,113,73,92,-1,97,43,117,-1,97,36,43,-1,82,9,83,-1,82,14,9,-1,104,14,82,-1,14,104,40,-1,85,121,67,-1,85,144,121,-1,105,100,173,-1,105,93,100,-1,136,74,157,-1,58,74,136,-1,59,124,158,-1,59,50,124,-1,347,392,358,-1,347,377,392,-1,64,48,46,-1,68,48,64,-1,73,44,49,-1,70,44,73,-1,391,384,373,-1,426,384,391,-1,417,425,406,-1,417,429,425,-1,415,454,413,-1,415,453,454,-1,365,400,402,-1,365,375,400,-1,313,349,328,-1,285,349,313,-1,240,294,285,-1,240,296,294,-1,337,323,345,-1,337,340,323,-1,27,6,16,-1,31,6,27,-1,32,11,10,-1,23,11,32,-1,20,18,12,-1,26,18,20,-1,156,137,151,-1,135,137,156,-1,138,109,131,-1,119,109,138,-1,76,61,79,-1,52,61,76,-1,88,51,81,-1,88,55,51,-1,414,394,411,-1,394,414,403,-1,358,408,383,-1,358,392,408,-1,239,178,159,-1,239,236,178,-1,353,336,322,-1,353,361,336,-1,326,295,303,-1,295,326,318,-1,351,369,381,-1,351,325,369,-1,440,458,456,-1,440,443,458,-1,446,432,437,-1,439,432,446,-1,45,94,37,-1,45,90,94,-1,3,15,28,-1,2,15,3,-1,0,5,7,-1,1,5,0,-1,4,13,17,-1,8,13,4,-1,83,150,82,-1,149,150,83,-1,143,147,132,-1,143,160,147,-1,91,72,69,-1,91,95,72,-1,222,245,263,-1,222,211,245,-1,287,237,244,-1,273,237,287,-1,275,215,226,-1,262,215,275,-1,206,158,124,-1,158,206,248,-1,34,59,38,-1,34,39,59,-1,57,25,30,-1,54,25,57,-1,449,455,450,-1,455,449,451,-1,430,440,438,-1,440,430,437,-1,422,461,456,-1,422,423,461,-1,188,104,167,-1,104,188,112,-1,153,225,154,-1,153,221,225,-1,153,254,238,-1,161,254,153,-1,248,216,158,-1,248,312,216,-1,243,268,214,-1,243,266,268,-1,142,189,203,-1,142,130,189,-1,114,77,98,-1,114,89,77,-1,118,102,114,-1,118,190,102,-1,30,19,22,-1,30,25,19,-1,139,146,145,-1,171,146,139,-1,44,20,23,-1,44,41,20,-1,253,359,290,-1,253,335,359,-1,247,197,217,-1,219,197,247,-1,129,101,141,-1,129,125,101,-1,352,247,290,-1,247,352,261,-1,212,186,165,-1,212,185,186,-1,259,261,252,-1,235,261,259,-1,219,270,288,-1,219,235,270,-1,314,299,308,-1,314,297,299,-1,317,351,371,-1,317,303,351,-1,180,272,176,-1,280,272,180,-1,298,173,162,-1,173,298,320,-1,48,32,31,-1,48,49,32,-1,28,29,35,-1,28,15,29,-1,225,223,220,-1,225,221,223,-1,297,307,299,-1,297,311,307,-1,143,148,166,-1,143,123,148,-1,255,302,283,-1,302,255,265,-1,237,201,198,-1,237,226,201,-1,131,106,132,-1,131,109,106,-1,171,140,182,-1,171,139,140,-1,232,334,284,-1,334,232,229,-1,182,164,171,-1,164,182,181,-1,3,16,6,-1,3,37,16,-1,29,25,62,-1,25,29,19,-1,22,34,30,-1,33,34,22,-1,41,26,20,-1,41,58,26,-1,137,132,147,-1,137,131,132,-1,273,289,283,-1,273,287,289,-1,271,283,289,-1,271,255,283,-1,338,303,317,-1,338,326,303,-1,274,299,307,-1,274,293,299,-1,371,381,389,-1,371,351,381,-1,443,459,458,-1,443,447,459,-1,363,229,241,-1,229,363,334,-1,320,187,173,-1,320,356,187,-1,257,176,272,-1,196,176,257,-1,233,162,111,-1,233,298,162,-1,185,335,253,-1,282,335,185,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltrpzium_Geo_5_847_normalIndex_3()
		{
			int[] value = {311,353,339,-1,353,311,318,-1,236,177,178,-1,236,246,177,-1,306,396,310,-1,396,306,397,-1,210,360,204,-1,210,305,360,-1,80,133,103,-1,80,110,133,-1,148,203,198,-1,148,142,203,-1,108,95,91,-1,108,115,95,-1,84,109,79,-1,84,106,109,-1,441,430,419,-1,441,445,430,-1,432,447,443,-1,447,432,431,-1,439,431,432,-1,433,431,439,-1,305,393,360,-1,362,393,305,-1,370,380,420,-1,370,368,380,-1,10,0,2,-1,0,10,11,-1,226,193,201,-1,226,215,193,-1,46,31,27,-1,46,48,31,-1,97,149,83,-1,97,151,149,-1,193,167,172,-1,193,188,167,-1,238,249,234,-1,238,254,249,-1,239,220,267,-1,239,225,220,-1,361,324,336,-1,324,361,350,-1,155,181,182,-1,155,152,181,-1,75,27,67,-1,27,75,47,-1,71,77,96,-1,71,65,77,-1,364,190,218,-1,364,357,190,-1,423,457,461,-1,423,434,457,-1,428,459,453,-1,428,436,459,-1,420,435,444,-1,420,426,435,-1,186,197,180,-1,186,217,197,-1,388,411,390,-1,388,414,411,-1,342,276,321,-1,342,266,276,-1,249,265,230,-1,249,279,265,-1,168,254,161,-1,254,168,269,-1,254,279,249,-1,254,269,279,-1,266,271,276,-1,266,243,271,-1,401,321,398,-1,401,342,321,-1,196,165,176,-1,196,200,165,-1,184,301,319,-1,184,202,301,-1,291,209,256,-1,291,304,209,-1,179,183,134,-1,227,183,179,-1,458,436,427,-1,436,458,459,-1,69,61,55,-1,69,72,61,-1,103,91,80,-1,103,108,91,-1,207,204,211,-1,210,204,207,-1,85,37,94,-1,37,85,53,-1,189,211,222,-1,207,211,189,-1,140,86,128,-1,86,140,98,-1,136,163,117,-1,163,136,194,-1,18,8,4,-1,21,8,18,-1,350,343,324,-1,343,350,296,-1,221,234,223,-1,221,238,234,-1,215,188,193,-1,215,206,188,-1,172,150,160,-1,172,167,150,-1,157,194,136,-1,157,170,194,-1,201,172,166,-1,201,193,172,-1,12,4,1,-1,12,18,4,-1,130,175,189,-1,175,130,127,-1,442,387,370,-1,387,442,451,-1,444,442,420,-1,442,444,448,-1,433,429,431,-1,425,429,433,-1,431,454,447,-1,431,429,454,-1,419,438,421,-1,438,419,430,-1,96,102,192,-1,96,89,102,-1,139,98,140,-1,98,139,114,-1,123,122,148,-1,123,107,122,-1,169,309,213,-1,169,292,309,-1,260,263,245,-1,263,260,277,-1,332,397,306,-1,412,397,332,-1,315,353,322,-1,339,353,315,-1,45,35,66,-1,45,28,35,-1,246,278,291,-1,236,278,246,-1,326,350,361,-1,326,338,350,-1,121,224,120,-1,121,231,224,-1,392,385,408,-1,374,385,392,-1,197,280,180,-1,197,281,280,-1,453,447,454,-1,447,453,459,-1,461,421,438,-1,421,461,457,-1,325,354,369,-1,354,325,314,-1,371,400,375,-1,400,371,389,-1,295,311,297,-1,311,295,318,-1,328,338,317,-1,328,349,338,-1,227,234,183,-1,227,223,234,-1,333,266,342,-1,333,268,266,-1,234,230,183,-1,234,249,230,-1,277,321,276,-1,277,260,321,-1,166,160,143,-1,172,160,166,-1,21,9,8,-1,36,9,21,-1,33,5,17,-1,33,22,5,-1,15,19,29,-1,15,7,19,-1,49,23,32,-1,49,44,23,-1,33,39,34,-1,24,39,33,-1,17,24,33,-1,17,13,24,-1,100,68,64,-1,68,100,93,-1,145,229,232,-1,145,146,229,-1,182,128,155,-1,182,140,128,-1,166,198,201,-1,166,148,198,-1,283,275,273,-1,275,283,302,-1,338,294,350,-1,349,294,338,-1,339,307,311,-1,307,339,300,-1,251,223,227,-1,251,220,223,-1,62,35,29,-1,62,63,35,-1,6,2,3,-1,6,10,2,-1,408,390,411,-1,408,385,390,-1,176,186,180,-1,176,165,186,-1,375,317,371,-1,375,328,317,-1,325,297,314,-1,325,295,297,-1,299,327,308,-1,299,293,327,-1,235,247,261,-1,247,235,219,-1,186,253,217,-1,185,253,186,-1,151,147,149,-1,151,137,147,-1,356,241,187,-1,241,356,363,-1,219,281,197,-1,288,281,219,-1,11,1,0,-1,11,12,1,-1,357,192,190,-1,192,357,344,-1,7,22,19,-1,7,5,22,-1,65,98,77,-1,98,65,86,-1,115,107,95,-1,107,115,122,-1,203,222,244,-1,189,222,203,-1,289,276,271,-1,289,277,276,-1,167,82,150,-1,82,167,104,-1,154,239,159,-1,154,225,239,-1,188,124,112,-1,188,206,124,-1,445,437,430,-1,446,437,445,-1,38,30,34,-1,57,30,38,-1,262,206,215,-1,248,206,262,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltrpzium_Geo_5_847_normalIndex_4()
		{
			int[] value = {226,273,275,-1,226,237,273,-1,244,263,287,-1,244,222,263,-1,245,204,306,-1,245,211,204,-1,69,80,91,-1,99,80,69,-1,95,84,72,-1,95,107,84,-1,123,132,106,-1,123,143,132,-1,160,149,147,-1,160,150,149,-1,8,14,13,-1,9,14,8,-1,17,1,4,-1,17,5,1,-1,2,7,15,-1,0,7,2,-1,37,28,45,-1,3,28,37,-1,448,451,442,-1,451,448,455,-1,437,443,440,-1,437,432,443,-1,456,427,422,-1,456,458,427,-1,303,325,351,-1,325,303,295,-1,318,361,353,-1,318,326,361,-1,267,236,239,-1,267,278,236,-1,383,411,394,-1,383,408,411,-1,55,52,51,-1,55,61,52,-1,79,119,76,-1,79,109,119,-1,135,131,137,-1,138,131,135,-1,117,151,97,-1,156,151,117,-1,26,21,18,-1,43,21,26,-1,23,12,11,-1,20,12,23,-1,31,10,6,-1,32,10,31,-1,16,67,27,-1,16,53,67,-1,144,231,121,-1,144,250,231,-1,205,209,208,-1,205,195,209,-1,365,328,375,-1,313,328,365,-1,409,453,415,-1,409,428,453,-1,407,435,416,-1,407,424,435,-1,380,373,384,-1,373,380,372,-1,341,301,242,-1,341,346,301,-1,319,228,184,-1,319,348,228,-1,70,41,44,-1,74,41,70,-1,68,49,48,-1,73,49,68,-1,120,233,111,-1,120,224,233,-1,117,58,136,-1,43,58,117,-1,92,93,105,-1,73,93,92,-1,62,154,63,-1,153,154,62,-1,63,159,66,-1,63,154,159,-1,50,112,124,-1,50,42,112,-1,112,40,104,-1,40,112,42,-1,36,83,9,-1,83,36,97,-1,70,157,74,-1,157,70,113,-1,100,162,173,-1,87,162,100,-1,67,120,75,-1,67,121,120,-1,177,90,178,-1,177,94,90,-1,57,161,54,-1,161,57,168,-1,315,227,300,-1,315,251,227,-1,352,409,415,-1,352,359,409,-1,417,330,413,-1,364,330,417,-1,327,268,333,-1,327,293,268,-1,300,179,286,-1,179,300,227,-1,282,402,335,-1,282,365,402,-1,415,330,352,-1,415,413,330,-1,457,396,421,-1,457,398,396,-1,419,412,441,-1,419,397,412,-1,319,368,370,-1,319,346,368,-1,416,344,407,-1,344,416,355,-1,417,357,364,-1,417,406,357,-1,423,386,382,-1,423,422,386,-1,405,427,436,-1,405,395,427,-1,428,404,410,-1,428,409,404,-1,400,405,410,-1,389,405,400,-1,444,425,433,-1,444,424,425,-1,455,439,446,-1,455,448,439,-1,452,445,441,-1,452,450,445,-1,360,412,332,-1,360,418,412,-1,228,99,184,-1,99,228,110,-1,367,376,348,-1,362,376,367,-1,127,103,169,-1,103,127,108,-1,122,130,142,-1,115,130,122,-1,323,205,345,-1,323,195,205,-1,388,288,378,-1,388,281,288,-1,337,224,231,-1,337,347,224,-1,345,257,374,-1,345,205,257,-1,388,280,281,-1,390,280,388,-1,316,270,259,-1,329,270,316,-1,320,403,356,-1,320,394,403,-1,358,298,233,-1,358,383,298,-1,340,231,250,-1,340,337,231,-1,52,86,65,-1,52,76,86,-1,138,152,155,-1,138,135,152,-1,76,128,86,-1,76,119,128,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltrpzoid_Geo_5_853_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,19,21,20,-1,17,16,22,-1,23,24,25,-1,23,26,24,-1,9,27,28,-1,28,10,9,-1,29,30,31,-1,29,32,30,-1,33,34,35,-1,35,36,33,-1,1,37,2,-1,1,38,37,-1,39,40,17,-1,9,41,42,-1,9,11,41,-1,6,26,7,-1,26,23,7,-1,43,44,45,-1,46,43,47,-1,47,48,46,-1,38,1,49,-1,50,51,52,-1,53,25,2,-1,54,55,56,-1,57,58,59,-1,60,61,62,-1,60,63,61,-1,64,65,66,-1,64,67,65,-1,68,69,70,-1,71,72,73,-1,74,75,76,-1,76,77,74,-1,78,79,80,-1,81,36,82,-1,83,84,85,-1,85,86,83,-1,87,88,75,-1,75,89,87,-1,76,90,77,-1,90,91,77,-1,92,93,94,-1,92,21,93,-1,31,95,96,-1,31,97,95,-1,5,98,99,-1,5,100,3,-1,5,24,101,-1,2,37,53,-1,102,103,104,-1,102,105,103,-1,106,107,18,-1,67,108,109,-1,7,95,97,-1,110,111,109,-1,111,65,109,-1,111,112,65,-1,67,64,3,-1,64,113,3,-1,114,115,35,-1,35,34,114,-1,116,117,118,-1,117,19,118,-1,119,18,120,-1,68,71,121,-1,72,71,122,-1,123,71,124,-1,125,71,126,-1,127,71,128,-1,59,129,130,-1,86,131,132,-1,132,133,86,-1,134,135,136,-1,134,57,135,-1,137,138,48,-1,32,46,138,-1,46,48,138,-1,139,29,140,-1,29,96,141,-1,29,31,96,-1,142,143,144,-1,145,144,146,-1,147,144,148,-1,149,144,150,-1,151,152,144,-1,34,16,114,-1,34,153,16,-1,52,22,154,-1,52,51,155,-1,52,156,17,-1,157,158,159,-1,157,94,158,-1,160,78,161,-1,162,60,163,-1,60,62,163,-1,50,79,164,-1,50,154,79,-1,10,28,165,-1,52,155,156,-1,155,51,166,-1,52,17,22,-1,154,50,52,-1,150,144,152,-1,148,144,149,-1,146,144,147,-1,167,144,145,-1,29,141,140,-1,43,45,47,-1,168,111,169,-1,170,171,172,-1,170,173,171,-1,14,174,175,-1,12,47,45,-1,12,137,47,-1,77,173,176,-1,77,91,173,-1,86,177,131,-1,86,85,177,-1,135,57,59,-1,126,71,127,-1,124,71,125,-1,122,71,123,-1,121,71,73,-1,71,68,128,-1,81,94,157,-1,81,92,94,-1,66,178,64,-1,66,179,178,-1,101,6,100,-1,110,109,8,-1,108,8,109,-1,178,4,113,-1,178,98,4,-1,101,24,26,-1,5,101,100,-1,5,4,98,-1,5,99,0,-1,180,181,182,-1,180,183,181,-1,184,185,161,-1,93,186,158,-1,158,94,93,-1,91,187,188,-1,91,90,187,-1,89,75,74,-1,85,88,87,-1,85,84,88,-1,133,11,83,-1,83,86,133,-1,58,41,129,-1,134,174,57,-1,157,36,81,-1,157,33,36,-1,80,79,159,-1,176,69,77,-1,69,74,77,-1,172,189,190,-1,190,170,172,-1,4,3,113,-1,116,191,63,-1,63,60,116,-1,59,58,129,-1,26,6,101,-1,182,95,180,-1,182,96,95,-1,144,167,142,-1,144,143,151,-1,164,51,50,-1,169,138,168,-1,48,47,137,-1,140,192,139,-1,110,7,97,-1,110,8,7,-1,29,139,32,-1,139,46,32,-1,42,41,193,-1,28,27,194,-1,194,155,28,-1,195,37,38,-1,153,79,154,-1,155,194,196,-1,196,156,155,-1,79,34,33,-1,79,153,34,-1,186,162,163,-1,163,185,186,-1,36,35,103,-1,102,197,105,-1,102,198,197,-1,1,199,49,-1,188,200,91,-1,45,193,201,-1,45,44,193,-1,164,160,75,-1,160,76,75,-1,163,188,187,-1,42,193,44,-1,187,185,163,-1,2,202,0,-1,18,107,120,-1,67,109,65,-1,178,113,64,-1,8,100,6,-1,8,108,100,-1,99,203,199,-1,99,98,203,-1,0,199,1,-1,199,0,99,-1,107,178,120,-1,178,107,204,-1,62,171,200,-1,61,171,62,-1,76,161,90,-1,161,76,160,-1,166,83,165,-1,166,84,83,-1,13,45,201,-1,45,13,12,-1,172,61,205,-1,172,171,61,-1,175,206,207,-1,175,189,206,-1,90,185,187,-1,161,185,90,-1,51,75,88,-1,51,164,75,-1,199,102,49,-1,199,198,102,-1,105,36,103,-1,36,105,82,-1,20,197,18,-1,208,197,20,-1,186,117,162,-1,93,117,186,-1,115,103,35,-1,115,104,103,-1,209,210,211,-1,15,210,209,-1,156,39,17,-1,156,196,39,-1,153,22,16,-1,153,154,22,-1,44,192,42,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltrpzoid_Geo_5_853_coordIndex_2()
		{
			int[] value = {192,44,43,-1,30,138,169,-1,30,32,138,-1,204,106,203,-1,106,204,107,-1,212,143,213,-1,151,143,212,-1,214,215,55,-1,216,215,214,-1,217,181,183,-1,218,181,217,-1,142,219,220,-1,142,167,219,-1,140,221,222,-1,221,140,56,-1,182,141,96,-1,54,141,182,-1,95,23,180,-1,95,7,23,-1,223,151,212,-1,223,152,151,-1,149,224,225,-1,150,224,149,-1,226,148,227,-1,148,226,147,-1,228,146,229,-1,146,228,145,-1,213,142,220,-1,213,143,142,-1,230,196,194,-1,231,196,230,-1,9,232,27,-1,232,9,233,-1,192,234,42,-1,234,192,235,-1,55,221,56,-1,55,215,221,-1,225,231,230,-1,224,231,225,-1,233,227,232,-1,227,233,226,-1,235,229,234,-1,229,235,228,-1,220,215,213,-1,221,215,220,-1,179,120,178,-1,120,179,119,-1,191,118,236,-1,118,191,116,-1,237,238,239,-1,237,112,238,-1,240,206,205,-1,240,241,206,-1,190,242,170,-1,190,243,242,-1,244,68,70,-1,244,128,68,-1,121,245,246,-1,73,245,121,-1,135,127,136,-1,127,135,126,-1,124,59,130,-1,125,59,124,-1,131,123,132,-1,123,131,122,-1,79,157,159,-1,79,33,157,-1,174,243,190,-1,243,174,134,-1,58,13,201,-1,57,13,58,-1,11,129,41,-1,129,11,133,-1,186,184,158,-1,186,185,184,-1,211,218,217,-1,211,210,218,-1,0,24,5,-1,0,202,24,-1,25,180,23,-1,183,180,25,-1,237,179,66,-1,237,236,179,-1,92,82,208,-1,82,92,81,-1,87,177,85,-1,87,245,177,-1,246,74,69,-1,89,74,246,-1,176,70,69,-1,176,242,70,-1,207,137,12,-1,207,247,137,-1,175,190,189,-1,174,190,175,-1,173,200,171,-1,173,91,200,-1,63,205,61,-1,205,63,240,-1,238,247,241,-1,238,168,247,-1,112,168,238,-1,168,112,111,-1,166,28,155,-1,28,166,165,-1,80,158,184,-1,80,159,158,-1,117,60,162,-1,60,117,116,-1,78,184,161,-1,78,80,184,-1,210,214,218,-1,214,210,40,-1,54,181,55,-1,182,181,54,-1,110,169,111,-1,169,110,30,-1,247,138,137,-1,247,168,138,-1,240,191,239,-1,240,63,191,-1,241,207,206,-1,207,241,247,-1,134,244,243,-1,134,136,244,-1,246,87,89,-1,246,245,87,-1,132,129,133,-1,130,129,132,-1,18,118,19,-1,18,248,118,-1,248,18,119,-1,21,208,20,-1,21,92,208,-1,115,209,195,-1,114,209,115,-1,236,239,191,-1,239,236,237,-1,197,106,18,-1,197,198,106,-1,49,104,38,-1,104,49,102,-1,37,217,53,-1,37,211,217,-1,114,15,209,-1,15,114,16,-1,201,41,58,-1,201,193,41,-1,14,57,174,-1,14,13,57,-1,173,242,176,-1,173,170,242,-1,78,164,79,-1,160,164,78,-1,177,122,131,-1,122,177,72,-1,123,130,132,-1,124,130,123,-1,125,135,59,-1,126,135,125,-1,136,128,244,-1,128,136,127,-1,68,246,69,-1,121,246,68,-1,245,72,177,-1,72,245,73,-1,70,243,244,-1,242,243,70,-1,241,239,238,-1,239,241,240,-1,112,66,65,-1,66,112,237,-1,248,236,118,-1,236,119,179,-1,248,119,236,-1,249,212,216,-1,249,223,212,-1,219,235,222,-1,228,235,219,-1,234,226,233,-1,226,234,229,-1,227,230,232,-1,225,230,227,-1,231,223,249,-1,223,231,224,-1,40,216,214,-1,39,216,40,-1,39,249,216,-1,222,192,140,-1,235,192,222,-1,42,233,9,-1,233,42,234,-1,232,194,27,-1,230,194,232,-1,196,249,39,-1,249,196,231,-1,167,228,219,-1,145,228,167,-1,229,147,226,-1,147,229,146,-1,148,225,227,-1,149,225,148,-1,224,152,223,-1,152,224,150,-1,54,140,141,-1,56,140,54,-1,222,220,219,-1,220,222,221,-1,53,183,25,-1,217,183,53,-1,218,55,181,-1,214,55,218,-1,216,213,215,-1,212,213,216,-1,198,203,106,-1,198,199,203,-1,24,2,25,-1,24,202,2,-1,97,30,110,-1,31,30,97,-1,46,192,43,-1,192,46,139,-1,40,15,17,-1,15,40,210,-1,195,211,37,-1,209,211,195,-1,104,195,38,-1,195,104,115,-1,21,117,93,-1,117,21,19,-1,208,105,197,-1,82,105,208,-1,189,205,206,-1,189,172,205,-1,14,207,12,-1,175,207,14,-1,11,165,83,-1,165,11,10,-1,51,84,166,-1,51,88,84,-1,163,200,188,-1,62,200,163,-1,178,203,98,-1,178,204,203,-1,3,108,67,-1,3,100,108,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltrpzoid_Geo_5_853_normalIndex_1()
		{
			int[] value = {42,67,64,-1,32,40,47,-1,56,101,48,-1,243,249,238,-1,68,86,78,-1,242,237,211,-1,29,36,57,-1,36,69,57,-1,211,237,222,-1,207,66,143,-1,207,74,66,-1,243,210,244,-1,244,249,243,-1,109,61,83,-1,109,70,61,-1,219,247,223,-1,223,121,219,-1,67,208,64,-1,67,107,208,-1,173,228,211,-1,243,226,221,-1,243,238,226,-1,56,74,101,-1,74,207,101,-1,108,125,93,-1,85,108,76,-1,76,60,85,-1,107,67,73,-1,104,122,160,-1,175,143,64,-1,209,220,183,-1,99,123,152,-1,3,17,34,-1,3,1,17,-1,15,13,12,-1,15,21,13,-1,147,116,100,-1,156,164,130,-1,148,129,176,-1,176,128,148,-1,161,197,159,-1,98,121,89,-1,231,218,196,-1,196,191,231,-1,133,158,129,-1,129,120,133,-1,176,145,128,-1,145,119,128,-1,92,82,132,-1,92,69,82,-1,83,199,205,-1,83,75,199,-1,47,50,51,-1,47,39,32,-1,47,66,43,-1,64,208,175,-1,72,112,102,-1,72,88,112,-1,52,30,29,-1,21,38,31,-1,101,199,75,-1,59,24,31,-1,24,13,31,-1,24,7,13,-1,21,15,32,-1,15,23,32,-1,245,230,223,-1,223,247,245,-1,16,35,22,-1,35,36,22,-1,19,29,8,-1,147,156,153,-1,164,156,186,-1,182,156,184,-1,174,156,140,-1,127,156,124,-1,152,206,203,-1,191,177,195,-1,195,217,191,-1,96,113,110,-1,96,99,113,-1,54,53,60,-1,70,85,53,-1,85,60,53,-1,131,109,167,-1,109,205,201,-1,109,83,205,-1,187,202,162,-1,163,162,157,-1,142,162,126,-1,141,162,165,-1,212,185,162,-1,247,237,245,-1,247,239,237,-1,160,222,190,-1,160,122,194,-1,160,118,211,-1,170,151,188,-1,170,132,151,-1,180,161,155,-1,25,3,44,-1,3,34,44,-1,104,197,114,-1,104,190,197,-1,249,244,248,-1,160,194,118,-1,194,122,224,-1,160,211,222,-1,190,104,160,-1,165,162,185,-1,126,162,141,-1,157,162,142,-1,178,162,163,-1,109,201,167,-1,108,93,76,-1,27,24,45,-1,95,62,58,-1,95,105,62,-1,78,80,55,-1,68,76,93,-1,68,54,76,-1,128,105,91,-1,128,119,105,-1,191,171,177,-1,191,196,171,-1,113,99,152,-1,140,156,127,-1,184,156,174,-1,186,156,182,-1,153,156,130,-1,156,147,124,-1,98,132,170,-1,98,92,132,-1,12,6,15,-1,12,11,6,-1,43,56,39,-1,59,31,48,-1,38,48,31,-1,6,40,23,-1,6,50,40,-1,43,66,74,-1,47,43,39,-1,47,40,50,-1,47,51,42,-1,233,227,225,-1,233,232,227,-1,137,94,155,-1,82,77,151,-1,151,132,82,-1,119,103,87,-1,119,145,103,-1,120,129,148,-1,196,158,133,-1,196,218,158,-1,217,238,231,-1,231,191,217,-1,123,226,206,-1,96,80,99,-1,170,121,98,-1,170,219,121,-1,159,197,188,-1,91,116,128,-1,116,148,128,-1,58,41,84,-1,84,95,58,-1,40,32,23,-1,16,0,1,-1,1,3,16,-1,152,123,206,-1,74,56,43,-1,225,199,233,-1,225,205,199,-1,162,178,187,-1,162,202,212,-1,114,122,104,-1,45,53,27,-1,60,76,54,-1,167,136,131,-1,59,101,75,-1,59,48,101,-1,109,131,70,-1,131,85,70,-1,221,226,189,-1,244,210,192,-1,192,194,244,-1,236,208,107,-1,239,197,190,-1,194,192,150,-1,150,118,194,-1,197,247,219,-1,197,239,247,-1,77,25,44,-1,44,94,77,-1,121,223,112,-1,72,71,88,-1,72,65,71,-1,67,63,73,-1,87,79,119,-1,93,189,111,-1,93,125,189,-1,114,180,129,-1,180,176,129,-1,44,87,103,-1,221,189,125,-1,103,94,44,-1,64,46,42,-1,29,30,8,-1,21,31,13,-1,6,23,15,-1,48,39,56,-1,48,38,39,-1,51,49,63,-1,51,50,49,-1,42,63,67,-1,63,42,51,-1,30,6,8,-1,6,30,28,-1,34,62,79,-1,17,62,34,-1,176,155,145,-1,155,176,180,-1,224,231,248,-1,224,218,231,-1,86,93,111,-1,93,86,68,-1,58,17,18,-1,58,62,17,-1,55,20,37,-1,55,41,20,-1,145,94,103,-1,155,94,145,-1,122,129,158,-1,122,114,129,-1,63,72,73,-1,63,65,72,-1,88,121,112,-1,121,88,89,-1,57,71,29,-1,81,71,57,-1,77,35,25,-1,82,35,77,-1,230,112,223,-1,230,102,112,-1,246,240,241,-1,242,240,246,-1,118,173,211,-1,118,150,173,-1,239,222,237,-1,239,190,222,-1,125,136,221,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltrpzoid_Geo_5_853_normalIndex_2()
		{
			int[] value = {136,125,108,-1,61,53,45,-1,61,70,53,-1,28,52,49,-1,52,28,30,-1,215,202,213,-1,212,202,215,-1,229,214,220,-1,216,214,229,-1,234,227,232,-1,235,227,234,-1,187,193,204,-1,187,178,193,-1,167,198,179,-1,198,167,183,-1,225,201,205,-1,209,201,225,-1,199,207,233,-1,199,101,207,-1,200,212,215,-1,200,185,212,-1,141,169,139,-1,165,169,141,-1,134,126,117,-1,126,134,142,-1,172,157,149,-1,157,172,163,-1,213,187,204,-1,213,202,187,-1,146,150,192,-1,168,150,146,-1,243,115,210,-1,115,243,144,-1,136,154,221,-1,154,136,166,-1,220,198,183,-1,220,214,198,-1,139,168,146,-1,169,168,139,-1,144,117,115,-1,117,144,134,-1,166,149,154,-1,149,166,172,-1,204,214,213,-1,198,214,204,-1,11,8,6,-1,8,11,19,-1,0,22,2,-1,22,0,16,-1,5,10,4,-1,5,7,10,-1,9,20,18,-1,9,14,20,-1,84,90,95,-1,84,97,90,-1,106,147,100,-1,106,124,147,-1,153,135,138,-1,130,135,153,-1,113,127,110,-1,127,113,140,-1,184,152,203,-1,174,152,184,-1,177,182,195,-1,182,177,186,-1,197,170,188,-1,197,219,170,-1,80,97,84,-1,97,80,96,-1,123,86,111,-1,99,86,123,-1,238,206,226,-1,206,238,217,-1,77,137,151,-1,77,94,137,-1,241,235,234,-1,241,240,235,-1,42,66,47,-1,42,46,66,-1,143,233,207,-1,232,233,143,-1,5,11,12,-1,5,2,11,-1,92,89,81,-1,89,92,98,-1,133,171,196,-1,133,135,171,-1,138,148,116,-1,120,148,138,-1,91,100,116,-1,91,90,100,-1,37,54,68,-1,37,33,54,-1,55,84,41,-1,80,84,55,-1,105,79,62,-1,105,119,79,-1,1,18,17,-1,18,1,9,-1,10,33,14,-1,10,27,33,-1,7,27,10,-1,27,7,24,-1,224,244,194,-1,244,224,248,-1,159,151,137,-1,159,188,151,-1,35,3,25,-1,3,35,16,-1,161,137,155,-1,161,159,137,-1,240,229,235,-1,229,240,228,-1,209,227,220,-1,225,227,209,-1,59,45,24,-1,45,59,61,-1,33,53,54,-1,33,27,53,-1,9,0,4,-1,9,1,0,-1,14,37,20,-1,37,14,33,-1,96,106,97,-1,96,110,106,-1,138,133,120,-1,138,135,133,-1,195,206,217,-1,203,206,195,-1,29,22,36,-1,29,26,22,-1,26,29,19,-1,69,81,57,-1,69,92,81,-1,230,246,236,-1,245,246,230,-1,2,4,0,-1,4,2,5,-1,71,52,29,-1,71,65,52,-1,73,102,107,-1,102,73,72,-1,208,234,175,-1,208,241,234,-1,245,242,246,-1,242,245,237,-1,111,226,123,-1,111,189,226,-1,78,99,80,-1,78,86,99,-1,105,90,91,-1,105,95,90,-1,161,114,197,-1,180,114,161,-1,171,186,177,-1,186,171,164,-1,182,203,195,-1,184,203,182,-1,174,113,152,-1,140,113,174,-1,110,124,106,-1,124,110,127,-1,147,138,116,-1,153,138,147,-1,135,164,171,-1,164,135,130,-1,100,97,106,-1,90,97,100,-1,14,4,10,-1,4,14,9,-1,7,12,13,-1,12,7,5,-1,26,2,22,-1,2,19,11,-1,26,19,2,-1,181,215,216,-1,181,200,215,-1,193,166,179,-1,172,166,193,-1,154,134,144,-1,134,154,149,-1,117,146,115,-1,139,146,117,-1,168,200,181,-1,200,168,169,-1,228,216,229,-1,173,216,228,-1,173,181,216,-1,179,136,167,-1,166,136,179,-1,221,144,243,-1,144,221,154,-1,115,192,210,-1,146,192,115,-1,150,181,173,-1,181,150,168,-1,178,172,193,-1,163,172,178,-1,149,142,134,-1,142,149,157,-1,126,139,117,-1,141,139,126,-1,169,185,200,-1,185,169,165,-1,209,167,201,-1,183,167,209,-1,179,204,193,-1,204,179,198,-1,175,232,143,-1,234,232,175,-1,235,220,227,-1,229,220,235,-1,216,213,214,-1,215,213,216,-1,65,49,52,-1,65,63,49,-1,66,64,143,-1,66,46,64,-1,75,61,59,-1,83,61,75,-1,85,136,108,-1,136,85,131,-1,228,242,211,-1,242,228,240,-1,236,241,208,-1,246,241,236,-1,102,236,107,-1,236,102,230,-1,69,35,82,-1,35,69,36,-1,81,88,71,-1,89,88,81,-1,41,18,20,-1,41,58,18,-1,78,37,68,-1,55,37,78,-1,238,248,231,-1,248,238,249,-1,122,218,224,-1,122,158,218,-1,44,79,87,-1,34,79,44,-1,6,49,50,-1,6,28,49,-1,32,38,21,-1,32,39,38,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltrqtral_Geo_5_859_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,9,10,11,-1,12,13,14,-1,12,15,13,-1,16,17,18,-1,18,19,16,-1,20,21,22,-1,20,23,21,-1,24,25,26,-1,27,28,29,-1,27,30,28,-1,31,32,33,-1,34,35,36,-1,37,38,39,-1,40,41,42,-1,43,44,45,-1,46,47,48,-1,46,44,47,-1,49,50,51,-1,52,6,53,-1,54,55,56,-1,57,58,59,-1,57,60,58,-1,61,62,63,-1,0,64,65,-1,66,67,68,-1,67,69,68,-1,52,70,71,-1,72,73,74,-1,75,76,77,-1,75,78,76,-1,79,80,81,-1,79,82,80,-1,40,83,84,-1,85,68,86,-1,85,87,68,-1,88,89,90,-1,91,92,93,-1,93,94,91,-1,95,96,97,-1,95,98,96,-1,99,100,101,-1,102,103,104,-1,105,106,107,-1,107,108,105,-1,109,70,52,-1,110,111,112,-1,113,114,115,-1,113,116,114,-1,117,118,11,-1,117,119,118,-1,120,121,122,-1,0,123,1,-1,33,30,31,-1,33,28,30,-1,107,124,108,-1,125,126,74,-1,127,128,129,-1,130,131,132,-1,133,112,111,-1,134,135,136,-1,130,65,64,-1,50,137,138,-1,137,139,138,-1,140,141,142,-1,105,143,106,-1,143,58,106,-1,144,145,146,-1,144,147,145,-1,148,149,150,-1,42,41,151,-1,41,152,153,-1,89,83,90,-1,89,84,83,-1,154,6,8,-1,155,3,108,-1,3,156,108,-1,91,157,92,-1,158,159,93,-1,160,161,162,-1,163,15,12,-1,163,147,15,-1,164,165,166,-1,167,168,169,-1,170,100,171,-1,16,172,173,-1,16,19,172,-1,172,174,175,-1,175,173,172,-1,176,18,17,-1,177,178,179,-1,180,181,182,-1,152,8,7,-1,7,153,152,-1,183,184,71,-1,184,52,71,-1,185,43,186,-1,43,187,186,-1,188,45,189,-1,189,190,188,-1,18,104,191,-1,191,19,18,-1,62,192,193,-1,62,61,192,-1,14,194,195,-1,194,196,195,-1,54,197,198,-1,197,199,198,-1,55,143,105,-1,105,200,55,-1,201,202,48,-1,136,203,204,-1,136,205,203,-1,107,202,201,-1,107,166,202,-1,202,166,135,-1,166,165,135,-1,185,186,124,-1,185,201,47,-1,200,105,156,-1,156,206,200,-1,207,12,14,-1,14,195,207,-1,208,142,141,-1,141,169,208,-1,209,18,176,-1,209,104,18,-1,191,210,19,-1,210,172,19,-1,120,49,211,-1,212,27,213,-1,27,86,213,-1,29,88,85,-1,29,214,88,-1,34,215,37,-1,128,72,216,-1,214,94,88,-1,210,217,218,-1,219,217,210,-1,210,191,219,-1,220,221,222,-1,221,39,222,-1,144,57,15,-1,15,147,144,-1,220,223,221,-1,149,224,157,-1,225,7,6,-1,52,53,109,-1,226,152,41,-1,83,87,90,-1,83,227,87,-1,228,28,33,-1,33,229,228,-1,229,33,182,-1,196,230,96,-1,106,58,60,-1,60,166,106,-1,111,231,63,-1,168,232,170,-1,10,233,234,-1,235,236,237,-1,237,116,235,-1,238,45,44,-1,44,46,238,-1,166,107,106,-1,239,240,241,-1,111,110,242,-1,243,76,78,-1,243,244,76,-1,223,245,246,-1,223,220,245,-1,124,155,108,-1,32,182,33,-1,68,227,66,-1,68,87,227,-1,0,247,123,-1,2,248,0,-1,249,250,251,-1,249,252,250,-1,11,253,254,-1,11,118,253,-1,111,63,133,-1,63,62,133,-1,108,156,105,-1,196,96,195,-1,96,98,195,-1,2,119,250,-1,250,255,2,-1,137,234,139,-1,234,233,139,-1,55,109,56,-1,213,256,257,-1,213,69,256,-1,258,259,243,-1,243,80,260,-1,243,78,80,-1,227,83,40,-1,40,42,227,-1,261,67,66,-1,261,262,67,-1,68,69,86,-1,69,213,86,-1,70,200,206,-1,47,201,48,-1,56,109,53,-1,53,6,154,-1,263,217,219,-1,138,51,50,-1,185,44,43,-1,185,47,44,-1,264,265,114,-1,265,266,114,-1,267,162,268,-1,37,39,221,-1,24,26,269,-1,29,28,214,-1,28,228,214,-1,270,271,272,-1,209,273,102,-1,102,104,209,-1,274,275,276,-1,140,277,278,-1,141,145,163,-1,145,147,163,-1,13,199,194,-1,194,14,13,-1,8,152,279,-1,52,225,6,-1,280,281,282,-1,159,283,284,-1,159,158,283,-1,285,286,287,-1,288,286,285,-1,289,175,174,-1,289,290,175,-1,217,291,292,-1,263,291,217,-1,230,197,293,-1,196,197,230,-1,140,145,141,-1,140,278,145,-1,276,211,274,-1,276,294,211,-1,295,275,274,-1,295,296,275,-1,176,297,298,-1,176,17,297,-1,299,300,301,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltrqtral_Geo_5_859_coordIndex_2()
		{
			int[] value = {299,302,300,-1,272,303,270,-1,272,304,303,-1,305,306,307,-1,305,308,306,-1,309,180,310,-1,180,309,311,-1,312,313,212,-1,312,314,313,-1,178,129,315,-1,178,127,129,-1,25,316,26,-1,317,316,25,-1,318,319,216,-1,318,320,319,-1,321,322,323,-1,322,321,324,-1,325,326,327,-1,325,328,326,-1,282,329,330,-1,331,329,282,-1,332,333,334,-1,281,333,332,-1,335,268,336,-1,267,268,335,-1,110,337,242,-1,110,338,337,-1,266,115,114,-1,266,339,115,-1,132,265,264,-1,132,340,265,-1,341,342,343,-1,344,342,341,-1,345,346,347,-1,346,345,348,-1,205,164,349,-1,205,165,164,-1,100,232,101,-1,232,100,170,-1,122,350,252,-1,308,350,122,-1,351,352,353,-1,352,351,354,-1,95,273,101,-1,95,102,273,-1,219,97,263,-1,219,103,97,-1,292,53,154,-1,292,291,53,-1,355,356,146,-1,355,231,356,-1,235,247,236,-1,247,235,357,-1,313,31,30,-1,313,358,31,-1,359,261,360,-1,359,262,261,-1,257,361,362,-1,256,361,257,-1,363,364,365,-1,363,366,364,-1,367,368,4,-1,367,369,368,-1,359,4,368,-1,359,183,4,-1,227,261,66,-1,261,227,42,-1,81,366,363,-1,75,366,81,-1,243,370,258,-1,370,243,260,-1,161,126,244,-1,126,161,160,-1,77,362,361,-1,362,77,179,-1,371,301,300,-1,371,288,301,-1,288,303,301,-1,288,285,303,-1,293,54,56,-1,293,197,54,-1,200,109,55,-1,200,70,109,-1,139,372,354,-1,139,233,372,-1,117,250,119,-1,250,117,251,-1,2,373,248,-1,373,2,255,-1,348,374,375,-1,348,344,374,-1,320,376,319,-1,320,377,376,-1,190,378,188,-1,190,379,378,-1,338,241,337,-1,338,380,241,-1,233,208,372,-1,208,233,10,-1,381,382,328,-1,382,381,383,-1,253,192,254,-1,253,357,192,-1,350,373,255,-1,350,384,373,-1,65,237,236,-1,237,65,130,-1,340,385,265,-1,385,340,386,-1,272,294,276,-1,294,272,271,-1,42,360,261,-1,42,151,360,-1,346,375,387,-1,375,346,348,-1,26,388,310,-1,26,316,388,-1,380,389,390,-1,380,338,389,-1,391,323,386,-1,391,321,323,-1,244,259,161,-1,244,243,259,-1,378,80,82,-1,260,80,378,-1,376,347,388,-1,347,376,345,-1,392,386,340,-1,386,392,391,-1,237,114,116,-1,237,264,114,-1,393,242,337,-1,242,393,204,-1,222,45,238,-1,189,45,222,-1,203,349,111,-1,349,203,205,-1,308,121,306,-1,122,121,308,-1,21,346,387,-1,21,23,346,-1,373,387,375,-1,373,384,387,-1,118,2,1,-1,118,119,2,-1,123,357,253,-1,123,247,357,-1,169,372,208,-1,169,171,372,-1,394,273,209,-1,394,395,273,-1,349,231,111,-1,349,356,231,-1,355,277,61,-1,278,277,355,-1,59,15,57,-1,59,13,15,-1,198,13,59,-1,13,198,199,-1,314,358,313,-1,314,396,358,-1,364,69,67,-1,364,256,69,-1,262,368,365,-1,262,359,368,-1,291,56,53,-1,293,56,291,-1,285,270,303,-1,270,285,397,-1,371,284,283,-1,371,398,284,-1,279,290,289,-1,279,399,290,-1,181,149,157,-1,150,149,181,-1,92,224,400,-1,224,92,157,-1,401,321,391,-1,321,401,402,-1,392,341,343,-1,392,131,341,-1,259,336,268,-1,259,258,336,-1,370,334,333,-1,370,379,334,-1,222,38,189,-1,222,39,38,-1,36,239,241,-1,239,36,35,-1,60,144,403,-1,144,60,57,-1,404,48,134,-1,404,46,48,-1,220,238,245,-1,220,222,238,-1,99,353,352,-1,99,395,353,-1,298,405,406,-1,298,297,405,-1,302,407,300,-1,408,407,302,-1,226,159,399,-1,159,226,84,-1,94,89,88,-1,89,94,93,-1,86,29,85,-1,27,29,86,-1,257,212,213,-1,312,212,257,-1,178,362,179,-1,178,315,362,-1,72,127,73,-1,72,128,127,-1,396,25,358,-1,317,25,396,-1,269,31,24,-1,32,31,269,-1,181,229,182,-1,181,157,229,-1,91,229,157,-1,228,229,91,-1,318,126,409,-1,318,74,126,-1,324,162,322,-1,324,160,162,-1,267,325,327,-1,325,267,335,-1,331,281,332,-1,331,282,281,-1,153,225,410,-1,153,7,225,-1,3,367,4,-1,367,3,155,-1,411,37,215,-1,38,37,411,-1,8,289,412,-1,8,279,289,-1,218,172,210,-1,218,174,172,-1,209,298,394,-1,176,298,209,-1,413,295,414,-1,406,295,413,-1,211,51,274,-1,51,211,49,-1,271,121,294,-1,271,306,121,-1,397,307,270,-1,22,307,397,-1,311,148,150,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltrqtral_Geo_5_859_coordIndex_3()
		{
			int[] value = {311,20,148,-1,249,49,120,-1,249,50,49,-1,234,251,117,-1,234,137,251,-1,10,142,208,-1,10,9,142,-1,163,169,141,-1,169,163,167,-1,277,11,254,-1,277,9,11,-1,113,112,133,-1,113,115,112,-1,390,339,383,-1,339,390,389,-1,280,330,381,-1,280,282,330,-1,3,206,156,-1,5,206,3,-1,165,136,135,-1,165,205,136,-1,240,415,393,-1,240,246,415,-1,35,223,239,-1,35,221,223,-1,37,35,34,-1,35,37,221,-1,239,246,240,-1,223,246,239,-1,393,136,204,-1,415,136,393,-1,124,201,185,-1,124,107,201,-1,143,54,198,-1,143,55,54,-1,196,199,197,-1,196,194,199,-1,390,381,330,-1,383,381,390,-1,115,389,112,-1,389,115,339,-1,133,193,113,-1,133,62,193,-1,61,254,192,-1,254,61,277,-1,12,167,163,-1,12,207,167,-1,10,117,11,-1,117,10,234,-1,249,137,50,-1,249,251,137,-1,311,181,180,-1,311,150,181,-1,20,397,148,-1,20,22,397,-1,306,270,307,-1,271,270,306,-1,211,121,120,-1,211,294,121,-1,414,274,51,-1,295,274,414,-1,394,406,413,-1,298,406,394,-1,412,174,218,-1,289,174,412,-1,38,190,189,-1,411,190,38,-1,187,45,188,-1,43,45,187,-1,367,124,186,-1,367,155,124,-1,183,5,4,-1,71,5,183,-1,52,410,225,-1,52,184,410,-1,332,34,331,-1,34,332,215,-1,280,335,281,-1,280,325,335,-1,267,322,162,-1,327,322,267,-1,160,409,126,-1,324,409,160,-1,216,74,318,-1,216,72,74,-1,228,94,214,-1,228,91,94,-1,32,180,182,-1,269,180,32,-1,358,24,31,-1,25,24,358,-1,317,128,216,-1,317,396,128,-1,73,178,177,-1,127,178,73,-1,362,312,257,-1,315,312,362,-1,84,93,159,-1,89,93,84,-1,399,152,226,-1,152,399,279,-1,300,398,371,-1,407,398,300,-1,297,302,405,-1,297,408,302,-1,413,395,394,-1,395,413,353,-1,100,352,171,-1,100,99,352,-1,168,171,169,-1,168,170,171,-1,245,46,404,-1,245,238,46,-1,202,134,48,-1,135,134,202,-1,60,164,166,-1,403,164,60,-1,380,330,329,-1,380,390,330,-1,411,379,190,-1,379,411,334,-1,258,333,336,-1,258,370,333,-1,268,161,259,-1,161,268,162,-1,341,130,64,-1,131,130,341,-1,391,343,401,-1,391,392,343,-1,402,324,321,-1,324,402,409,-1,400,93,92,-1,400,158,93,-1,276,304,272,-1,304,276,275,-1,17,408,297,-1,17,16,408,-1,398,290,284,-1,175,290,398,-1,287,149,148,-1,149,287,224,-1,407,175,398,-1,173,175,407,-1,154,412,292,-1,8,412,154,-1,41,84,226,-1,40,84,41,-1,41,410,151,-1,41,153,410,-1,403,349,164,-1,403,356,349,-1,198,58,143,-1,59,58,198,-1,195,232,207,-1,195,98,232,-1,146,278,355,-1,146,145,278,-1,414,353,413,-1,414,351,353,-1,1,253,118,-1,1,123,253,-1,374,0,248,-1,64,0,374,-1,252,255,250,-1,252,350,255,-1,305,387,384,-1,305,21,387,-1,347,310,388,-1,347,309,310,-1,404,246,245,-1,404,415,246,-1,242,203,111,-1,242,204,203,-1,344,64,374,-1,344,341,64,-1,382,265,385,-1,382,266,265,-1,343,377,401,-1,343,342,377,-1,388,319,376,-1,388,316,319,-1,361,75,77,-1,361,366,75,-1,260,379,370,-1,260,378,379,-1,402,377,320,-1,377,402,401,-1,385,328,382,-1,385,326,328,-1,79,363,369,-1,81,363,79,-1,151,184,360,-1,151,410,184,-1,386,326,385,-1,323,326,386,-1,130,264,237,-1,132,264,130,-1,384,308,305,-1,350,308,384,-1,235,113,193,-1,235,116,113,-1,383,266,382,-1,339,266,383,-1,140,9,277,-1,140,142,9,-1,51,351,414,-1,138,351,51,-1,241,329,36,-1,241,380,329,-1,188,82,187,-1,378,82,188,-1,103,191,104,-1,103,219,191,-1,342,376,377,-1,342,345,376,-1,375,248,373,-1,375,374,248,-1,354,171,352,-1,354,372,171,-1,98,101,232,-1,101,98,95,-1,97,230,263,-1,97,96,230,-1,296,304,275,-1,296,299,304,-1,287,400,224,-1,400,287,286,-1,158,286,283,-1,158,400,286,-1,405,299,296,-1,302,299,405,-1,88,87,85,-1,88,90,87,-1,244,125,76,-1,125,244,126,-1,67,365,364,-1,67,262,365,-1,79,187,82,-1,186,187,79,-1,75,80,78,-1,81,80,75,-1,177,76,125,-1,177,77,76,-1,77,177,179,-1,186,369,367,-1,79,369,186,-1,70,5,71,-1,5,70,206,-1,369,365,368,-1,369,363,365,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltrqtral_Geo_5_859_coordIndex_4()
		{
			int[] value = {256,366,361,-1,364,366,256,-1,396,129,128,-1,314,129,396,-1,183,360,184,-1,183,359,360,-1,236,0,65,-1,0,236,247,-1,193,357,235,-1,357,193,192,-1,231,61,63,-1,61,231,355,-1,403,146,356,-1,146,403,144,-1,97,102,95,-1,97,103,102,-1,395,101,273,-1,101,395,99,-1,138,354,351,-1,354,138,139,-1,120,252,249,-1,122,252,120,-1,168,207,232,-1,207,168,167,-1,134,415,404,-1,136,415,134,-1,346,309,347,-1,23,309,346,-1,348,342,344,-1,348,345,342,-1,340,131,392,-1,131,340,132,-1,389,110,112,-1,389,338,110,-1,240,337,241,-1,240,393,337,-1,281,336,333,-1,335,336,281,-1,334,215,332,-1,334,411,215,-1,36,331,34,-1,36,329,331,-1,280,328,325,-1,280,381,328,-1,323,327,326,-1,327,323,322,-1,409,320,318,-1,409,402,320,-1,316,216,319,-1,216,316,317,-1,74,177,125,-1,74,73,177,-1,314,315,129,-1,315,314,312,-1,212,30,27,-1,212,313,30,-1,310,269,26,-1,269,310,180,-1,23,311,309,-1,311,23,20,-1,307,21,305,-1,22,21,307,-1,304,301,303,-1,304,299,301,-1,408,173,407,-1,408,16,173,-1,406,296,295,-1,406,405,296,-1,263,293,291,-1,230,293,263,-1,218,292,412,-1,217,292,218,-1,288,283,286,-1,371,283,288,-1,397,287,148,-1,285,287,397,-1,284,399,159,-1,284,290,399,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getltrqtral_Geo_5_859_normalIndex_1()
		{
			int[] value = {352,375,360,-1,180,25,161,-1,101,63,145,-1,392,377,413,-1,307,313,271,-1,307,301,313,-1,95,40,55,-1,55,112,95,-1,231,317,252,-1,231,292,317,-1,190,199,237,-1,20,47,34,-1,20,23,47,-1,67,94,39,-1,248,298,326,-1,196,146,179,-1,5,27,14,-1,108,189,77,-1,211,218,220,-1,211,189,218,-1,290,346,247,-1,72,101,153,-1,242,209,192,-1,275,323,348,-1,275,265,323,-1,407,415,408,-1,352,325,351,-1,26,7,69,-1,7,32,69,-1,72,187,122,-1,148,97,167,-1,66,103,81,-1,66,70,103,-1,42,51,52,-1,42,30,51,-1,5,107,12,-1,59,69,48,-1,59,147,69,-1,22,82,116,-1,58,127,84,-1,84,43,58,-1,208,215,171,-1,208,241,215,-1,272,287,257,-1,191,159,132,-1,243,297,251,-1,251,239,243,-1,162,187,72,-1,397,402,400,-1,410,403,401,-1,410,405,403,-1,406,386,413,-1,406,379,386,-1,322,288,342,-1,352,373,375,-1,39,23,67,-1,39,47,23,-1,251,183,239,-1,137,156,167,-1,49,104,38,-1,355,332,357,-1,412,400,402,-1,201,214,246,-1,355,351,325,-1,346,361,289,-1,361,300,289,-1,384,354,376,-1,243,285,297,-1,285,323,297,-1,250,347,324,-1,250,286,347,-1,155,110,158,-1,14,27,46,-1,27,15,6,-1,82,107,116,-1,82,12,107,-1,177,101,145,-1,193,180,239,-1,180,216,239,-1,58,86,127,-1,140,87,84,-1,154,100,163,-1,305,301,307,-1,305,286,301,-1,228,223,240,-1,299,274,309,-1,282,287,294,-1,95,98,102,-1,95,112,98,-1,98,128,120,-1,120,102,98,-1,99,55,40,-1,92,45,71,-1,213,150,113,-1,15,145,63,-1,63,6,15,-1,3,2,122,-1,2,72,122,-1,169,108,31,-1,108,11,31,-1,18,77,85,-1,85,61,18,-1,55,132,144,-1,144,112,55,-1,415,411,409,-1,415,407,411,-1,271,295,256,-1,295,224,256,-1,242,230,321,-1,230,311,321,-1,209,285,243,-1,243,204,209,-1,235,219,220,-1,246,359,365,-1,246,319,359,-1,251,219,235,-1,251,240,219,-1,219,240,214,-1,240,223,214,-1,169,31,183,-1,169,235,218,-1,204,243,216,-1,216,210,204,-1,279,307,271,-1,271,256,279,-1,350,376,354,-1,354,309,350,-1,203,55,99,-1,203,132,55,-1,144,135,112,-1,135,98,112,-1,322,290,225,-1,21,20,24,-1,20,48,24,-1,34,22,59,-1,34,8,22,-1,248,168,196,-1,104,148,198,-1,8,43,22,-1,135,170,151,-1,157,170,135,-1,135,144,157,-1,207,221,166,-1,221,179,166,-1,250,275,301,-1,301,286,250,-1,207,245,221,-1,110,139,86,-1,62,63,101,-1,72,153,162,-1,9,15,27,-1,107,147,116,-1,107,57,147,-1,41,47,39,-1,39,73,41,-1,73,39,113,-1,224,185,215,-1,297,323,265,-1,265,240,297,-1,402,389,408,-1,274,258,282,-1,377,318,374,-1,399,378,380,-1,380,405,399,-1,182,77,189,-1,189,211,182,-1,240,251,297,-1,314,358,363,-1,402,397,396,-1,75,103,70,-1,75,105,103,-1,245,206,259,-1,245,207,206,-1,183,193,239,-1,94,113,39,-1,69,57,26,-1,69,147,57,-1,352,371,373,-1,360,340,352,-1,368,367,390,-1,368,353,367,-1,413,398,414,-1,413,386,398,-1,402,408,412,-1,408,415,412,-1,239,216,243,-1,224,215,256,-1,215,241,256,-1,360,379,367,-1,367,349,360,-1,361,374,300,-1,374,318,300,-1,209,162,192,-1,24,35,36,-1,24,32,35,-1,79,88,75,-1,75,51,65,-1,75,70,51,-1,57,107,5,-1,5,14,57,-1,1,7,26,-1,1,0,7,-1,69,32,48,-1,32,24,48,-1,187,204,210,-1,218,235,220,-1,192,162,153,-1,153,101,177,-1,173,170,157,-1,289,247,346,-1,169,189,108,-1,169,218,189,-1,382,381,403,-1,381,393,403,-1,178,163,93,-1,196,179,221,-1,190,237,202,-1,34,47,8,-1,47,41,8,-1,174,195,149,-1,203,262,191,-1,191,132,203,-1,184,134,152,-1,384,404,385,-1,354,347,305,-1,347,286,305,-1,313,311,295,-1,295,271,313,-1,145,15,83,-1,72,62,101,-1,276,186,270,-1,87,131,141,-1,87,140,131,-1,111,130,133,-1,106,130,111,-1,125,120,128,-1,125,119,120,-1,170,188,194,-1,173,188,170,-1,185,230,197,-1,224,230,185,-1,384,347,354,-1,384,385,347,-1,152,225,184,-1,152,212,225,-1,172,134,184,-1,172,143,134,-1,99,109,160,-1,99,40,109,-1,142,121,124,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getltrqtral_Geo_5_859_normalIndex_2()
		{
			int[] value = {142,129,121,-1,149,115,174,-1,149,126,115,-1,333,269,264,-1,333,328,269,-1,273,213,254,-1,213,273,227,-1,28,29,21,-1,28,37,29,-1,45,38,33,-1,45,49,38,-1,199,236,237,-1,200,236,199,-1,217,229,198,-1,217,244,229,-1,278,249,306,-1,249,278,226,-1,267,337,266,-1,267,343,337,-1,270,336,344,-1,261,336,270,-1,175,90,96,-1,186,90,175,-1,176,93,91,-1,178,93,176,-1,397,387,396,-1,397,383,387,-1,393,401,403,-1,393,394,401,-1,357,381,382,-1,357,356,381,-1,320,302,315,-1,312,302,320,-1,296,303,284,-1,303,296,310,-1,319,228,335,-1,319,223,228,-1,287,258,257,-1,258,287,282,-1,342,339,353,-1,328,339,342,-1,281,283,277,-1,283,281,293,-1,208,262,257,-1,208,191,262,-1,157,171,173,-1,157,159,171,-1,194,153,177,-1,194,188,153,-1,388,316,324,-1,388,389,316,-1,399,371,378,-1,371,399,395,-1,29,67,23,-1,29,76,67,-1,4,1,13,-1,4,0,1,-1,36,64,44,-1,35,64,36,-1,56,19,16,-1,56,60,19,-1,50,17,25,-1,50,53,17,-1,4,25,17,-1,4,3,25,-1,57,1,26,-1,1,57,14,-1,52,60,56,-1,66,60,52,-1,75,78,79,-1,78,75,65,-1,100,156,105,-1,156,100,154,-1,81,44,64,-1,44,81,71,-1,118,124,121,-1,118,106,124,-1,106,115,124,-1,106,111,115,-1,197,242,192,-1,197,230,242,-1,204,162,209,-1,204,187,162,-1,300,308,293,-1,300,318,308,-1,406,367,379,-1,367,406,390,-1,360,341,340,-1,341,360,349,-1,310,327,330,-1,310,312,327,-1,244,260,229,-1,244,268,260,-1,61,54,18,-1,61,74,54,-1,383,363,387,-1,383,364,363,-1,318,350,308,-1,350,318,377,-1,345,369,343,-1,369,345,372,-1,398,411,414,-1,398,395,411,-1,339,341,349,-1,339,331,341,-1,351,380,378,-1,380,351,355,-1,356,362,381,-1,362,356,338,-1,149,212,152,-1,212,149,195,-1,14,13,1,-1,14,46,13,-1,303,330,334,-1,330,303,310,-1,237,253,254,-1,237,236,253,-1,364,391,370,-1,364,383,391,-1,304,306,338,-1,304,278,306,-1,105,88,100,-1,105,75,88,-1,54,51,30,-1,65,51,54,-1,260,284,253,-1,284,260,296,-1,329,338,356,-1,338,329,304,-1,380,403,405,-1,380,382,403,-1,366,396,387,-1,396,366,365,-1,166,77,182,-1,85,77,166,-1,359,335,402,-1,335,359,319,-1,328,288,269,-1,342,288,328,-1,317,303,334,-1,317,292,303,-1,341,334,330,-1,341,331,334,-1,386,360,375,-1,386,379,360,-1,373,395,398,-1,373,371,395,-1,309,308,350,-1,309,294,308,-1,234,262,203,-1,234,280,262,-1,335,389,402,-1,335,316,389,-1,388,404,407,-1,385,404,388,-1,348,301,275,-1,348,313,301,-1,321,313,348,-1,313,321,311,-1,37,76,29,-1,37,80,76,-1,19,32,7,-1,19,35,32,-1,0,17,16,-1,0,4,17,-1,188,192,153,-1,197,192,188,-1,111,174,115,-1,174,111,165,-1,118,141,131,-1,118,136,141,-1,83,119,125,-1,83,68,119,-1,150,110,86,-1,158,110,150,-1,127,139,138,-1,139,127,86,-1,291,278,304,-1,278,291,263,-1,329,320,315,-1,329,332,320,-1,88,91,93,-1,88,79,91,-1,78,96,90,-1,78,74,96,-1,166,146,85,-1,166,179,146,-1,326,314,363,-1,314,326,298,-1,265,250,233,-1,250,265,275,-1,205,220,201,-1,205,211,220,-1,207,182,206,-1,207,166,182,-1,272,277,283,-1,272,280,277,-1,160,123,164,-1,160,109,123,-1,129,117,121,-1,114,117,129,-1,9,87,68,-1,87,9,12,-1,43,82,22,-1,82,43,84,-1,48,34,59,-1,20,34,48,-1,36,21,24,-1,28,21,36,-1,45,44,71,-1,45,33,44,-1,148,49,97,-1,148,104,49,-1,80,199,76,-1,200,199,80,-1,202,67,190,-1,94,67,202,-1,150,73,113,-1,150,86,73,-1,58,73,86,-1,41,73,58,-1,217,156,222,-1,217,167,156,-1,226,163,249,-1,226,154,163,-1,178,267,266,-1,267,178,176,-1,261,186,175,-1,261,270,186,-1,6,62,10,-1,6,63,62,-1,180,50,25,-1,50,180,193,-1,89,196,168,-1,146,196,89,-1,145,125,181,-1,145,83,125,-1,151,98,135,-1,151,128,98,-1,203,160,234,-1,99,160,203,-1,232,172,238,-1,164,172,232,-1,225,247,184,-1,247,225,290,-1,195,288,212,-1,195,269,288,-1,165,264,174,-1,252,264,165,-1,227,155,158,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getltrqtral_Geo_5_859_normalIndex_3()
		{
			int[] value = {227,231,155,-1,368,290,322,-1,368,346,290,-1,374,390,406,-1,374,361,390,-1,377,376,350,-1,377,392,376,-1,305,309,354,-1,309,305,299,-1,404,413,414,-1,404,392,413,-1,410,400,412,-1,410,401,400,-1,370,394,372,-1,394,370,391,-1,276,344,345,-1,276,270,344,-1,180,210,216,-1,161,210,180,-1,223,246,214,-1,223,319,246,-1,358,255,366,-1,358,259,255,-1,298,245,314,-1,298,221,245,-1,196,298,248,-1,298,196,221,-1,314,259,358,-1,245,259,314,-1,366,246,365,-1,255,246,366,-1,183,235,169,-1,183,251,235,-1,285,242,321,-1,285,209,242,-1,224,311,230,-1,224,295,311,-1,370,345,344,-1,372,345,370,-1,401,391,400,-1,391,401,394,-1,412,409,410,-1,412,415,409,-1,407,414,411,-1,414,407,404,-1,307,299,305,-1,307,279,299,-1,377,406,413,-1,406,377,374,-1,368,361,346,-1,368,390,361,-1,227,150,213,-1,227,158,150,-1,231,165,155,-1,231,252,165,-1,269,174,264,-1,195,174,269,-1,225,288,322,-1,225,212,288,-1,238,184,247,-1,172,184,238,-1,234,164,232,-1,160,164,234,-1,181,128,151,-1,125,128,181,-1,146,61,85,-1,89,61,146,-1,11,77,18,-1,108,77,11,-1,50,183,31,-1,50,193,183,-1,3,161,25,-1,122,161,3,-1,72,10,62,-1,72,2,10,-1,175,248,261,-1,248,175,168,-1,276,176,186,-1,276,267,176,-1,178,249,163,-1,266,249,178,-1,154,222,156,-1,226,222,154,-1,198,167,217,-1,198,148,167,-1,41,43,8,-1,41,58,43,-1,94,213,113,-1,202,213,94,-1,76,190,67,-1,199,190,76,-1,200,104,198,-1,200,80,104,-1,97,45,92,-1,49,45,97,-1,44,28,36,-1,33,28,44,-1,12,84,87,-1,82,84,12,-1,68,15,9,-1,15,68,83,-1,121,136,118,-1,117,136,121,-1,109,129,123,-1,109,114,129,-1,232,280,234,-1,280,232,277,-1,287,283,294,-1,287,272,283,-1,274,294,309,-1,274,282,294,-1,206,211,205,-1,206,182,211,-1,219,201,220,-1,214,201,219,-1,265,228,240,-1,233,228,265,-1,364,344,336,-1,364,370,344,-1,89,74,61,-1,74,89,96,-1,79,90,91,-1,79,78,90,-1,93,100,88,-1,100,93,163,-1,320,355,325,-1,332,355,320,-1,304,315,291,-1,304,329,315,-1,263,226,278,-1,226,263,222,-1,138,84,127,-1,138,140,84,-1,152,126,149,-1,126,152,134,-1,40,114,109,-1,40,95,114,-1,136,119,141,-1,120,119,136,-1,133,110,155,-1,110,133,139,-1,117,120,136,-1,102,120,117,-1,177,181,194,-1,145,181,177,-1,27,12,9,-1,5,12,27,-1,27,10,46,-1,27,6,10,-1,233,335,228,-1,233,316,335,-1,321,323,285,-1,348,323,321,-1,256,258,279,-1,256,241,258,-1,324,385,388,-1,324,347,385,-1,238,277,232,-1,238,281,277,-1,375,398,386,-1,375,373,398,-1,327,352,340,-1,325,352,327,-1,353,349,367,-1,353,339,349,-1,333,334,331,-1,333,317,334,-1,284,254,253,-1,284,273,254,-1,205,259,206,-1,205,255,259,-1,396,359,402,-1,396,365,359,-1,312,325,327,-1,312,320,325,-1,369,381,362,-1,369,393,381,-1,315,268,291,-1,315,302,268,-1,253,229,260,-1,253,236,229,-1,64,66,81,-1,64,60,66,-1,65,74,78,-1,65,54,74,-1,263,268,244,-1,268,263,291,-1,362,343,369,-1,362,337,343,-1,42,56,53,-1,52,56,42,-1,46,2,13,-1,46,10,2,-1,338,337,362,-1,306,337,338,-1,355,382,380,-1,357,382,355,-1,331,328,333,-1,339,328,331,-1,399,410,409,-1,399,405,410,-1,372,393,369,-1,394,393,372,-1,384,392,404,-1,384,376,392,-1,247,281,238,-1,289,281,247,-1,363,336,326,-1,363,364,336,-1,18,30,11,-1,54,30,18,-1,159,144,132,-1,159,157,144,-1,302,260,268,-1,302,296,260,-1,330,340,341,-1,330,327,340,-1,293,294,283,-1,293,308,294,-1,241,257,258,-1,257,241,208,-1,171,185,173,-1,171,215,185,-1,143,126,134,-1,143,142,126,-1,133,138,139,-1,138,133,130,-1,140,130,131,-1,140,138,130,-1,123,142,143,-1,129,142,123,-1,22,147,59,-1,22,116,147,-1,105,137,103,-1,137,105,156,-1,7,16,19,-1,7,0,16,-1,42,11,30,-1,31,11,42,-1,66,51,70,-1,52,51,66,-1,92,103,137,-1,92,81,103,-1,81,92,71,-1,31,53,50,-1,42,53,31,-1,187,161,122,-1,161,187,210,-1,53,16,17,-1,53,56,16,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getltrqtral_Geo_5_859_normalIndex_4()
		{
			int[] value = {35,60,64,-1,19,60,35,-1,80,38,104,-1,37,38,80,-1,3,13,2,-1,3,4,13,-1,378,352,351,-1,352,378,371,-1,409,395,399,-1,395,409,411,-1,389,407,408,-1,407,389,388,-1,233,324,316,-1,324,233,250,-1,171,191,208,-1,171,159,191,-1,280,257,262,-1,257,280,272,-1,289,293,281,-1,293,289,300,-1,322,353,368,-1,342,353,322,-1,274,279,258,-1,279,274,299,-1,201,255,205,-1,246,255,201,-1,303,273,284,-1,292,273,303,-1,310,302,312,-1,310,296,302,-1,356,332,329,-1,332,356,357,-1,391,397,400,-1,391,383,397,-1,358,387,363,-1,358,366,387,-1,186,91,90,-1,176,91,186,-1,96,168,175,-1,96,89,168,-1,326,261,248,-1,326,336,261,-1,276,343,267,-1,276,345,343,-1,306,266,337,-1,266,306,249,-1,222,244,217,-1,222,263,244,-1,236,198,229,-1,198,236,200,-1,167,92,137,-1,167,97,92,-1,37,33,38,-1,33,37,28,-1,21,23,20,-1,21,29,23,-1,254,202,237,-1,202,254,213,-1,292,227,273,-1,227,292,231,-1,264,317,333,-1,252,317,264,-1,126,124,115,-1,126,142,124,-1,114,102,117,-1,114,95,102,-1,164,143,172,-1,164,123,143,-1,173,197,188,-1,185,197,173,-1,151,194,181,-1,170,194,151,-1,106,131,130,-1,118,131,106,-1,165,133,155,-1,111,133,165,-1,141,68,87,-1,141,119,68,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlulna_Geo_5_865_coordIndex_1()
		{
			int[] value = {0,1,2,-1,3,4,5,-1,6,7,8,-1,8,9,6,-1,10,11,12,-1,13,14,11,-1,15,16,17,-1,18,19,20,-1,21,22,23,-1,21,24,22,-1,25,26,27,-1,25,28,26,-1,29,30,31,-1,29,32,30,-1,33,34,35,-1,36,37,38,-1,39,40,41,-1,39,42,40,-1,43,44,45,-1,46,47,48,-1,45,49,43,-1,50,51,52,-1,53,54,55,-1,54,56,57,-1,54,53,56,-1,58,59,60,-1,54,61,55,-1,61,54,62,-1,54,63,62,-1,64,65,66,-1,67,68,69,-1,67,70,68,-1,71,72,73,-1,71,74,72,-1,75,76,77,-1,78,79,80,-1,78,81,79,-1,4,3,82,-1,83,84,85,-1,86,87,88,-1,86,89,87,-1,90,91,92,-1,93,94,95,-1,96,97,98,-1,97,99,98,-1,100,99,101,-1,101,102,100,-1,103,104,105,-1,105,106,103,-1,107,108,109,-1,109,110,107,-1,111,112,113,-1,114,115,116,-1,116,117,114,-1,118,119,120,-1,118,121,119,-1,122,116,115,-1,25,123,124,-1,124,125,25,-1,126,127,128,-1,129,130,131,-1,34,132,133,-1,34,33,132,-1,134,135,66,-1,136,137,138,-1,139,140,141,-1,141,142,139,-1,143,144,145,-1,143,146,144,-1,147,148,62,-1,147,146,148,-1,41,149,150,-1,41,151,149,-1,35,152,153,-1,153,33,35,-1,33,154,132,-1,33,155,154,-1,156,157,77,-1,158,159,160,-1,160,76,158,-1,161,162,163,-1,164,165,166,-1,167,168,169,-1,143,148,146,-1,59,58,170,-1,170,58,171,-1,171,74,170,-1,172,173,174,-1,172,175,173,-1,176,80,177,-1,81,178,179,-1,81,78,178,-1,180,181,182,-1,182,178,180,-1,183,184,185,-1,186,187,188,-1,157,156,189,-1,131,190,191,-1,131,192,190,-1,193,194,195,-1,195,196,193,-1,197,125,124,-1,197,198,125,-1,199,200,201,-1,199,202,200,-1,203,204,205,-1,206,207,208,-1,209,210,211,-1,209,212,210,-1,213,214,215,-1,216,217,218,-1,219,220,221,-1,220,222,221,-1,223,224,225,-1,223,64,224,-1,36,38,226,-1,227,41,150,-1,227,39,41,-1,228,229,82,-1,230,37,36,-1,230,5,37,-1,231,232,233,-1,234,235,236,-1,237,238,239,-1,240,241,235,-1,242,67,243,-1,244,245,246,-1,244,247,245,-1,248,249,143,-1,249,250,143,-1,251,207,252,-1,207,253,252,-1,254,255,154,-1,254,256,255,-1,75,177,76,-1,46,257,258,-1,202,259,260,-1,202,199,259,-1,140,216,261,-1,216,262,261,-1,263,264,265,-1,263,266,264,-1,244,267,268,-1,244,246,267,-1,9,269,270,-1,9,8,269,-1,69,68,271,-1,224,272,32,-1,272,30,32,-1,273,274,275,-1,273,276,274,-1,277,278,279,-1,279,280,277,-1,281,282,283,-1,282,284,283,-1,250,285,286,-1,250,249,285,-1,191,129,131,-1,191,287,129,-1,288,289,290,-1,289,291,290,-1,292,293,294,-1,293,295,294,-1,296,297,298,-1,296,299,297,-1,300,301,302,-1,300,14,301,-1,303,56,128,-1,56,53,128,-1,213,304,305,-1,213,306,304,-1,307,308,309,-1,308,310,309,-1,311,312,313,-1,314,315,316,-1,314,317,315,-1,318,319,320,-1,318,321,319,-1,322,20,323,-1,322,15,20,-1,324,325,326,-1,325,91,326,-1,325,92,91,-1,95,94,327,-1,328,329,330,-1,328,331,329,-1,332,18,333,-1,18,17,333,-1,334,335,336,-1,335,337,336,-1,2,338,0,-1,339,340,341,-1,342,343,109,-1,344,273,345,-1,346,347,348,-1,349,350,351,-1,349,352,350,-1,353,354,355,-1,355,356,353,-1,160,357,358,-1,160,159,357,-1,359,360,361,-1,360,299,361,-1,204,203,294,-1,203,362,294,-1,202,260,363,-1,363,205,202,-1,52,175,261,-1,175,172,261,-1,302,209,364,-1,209,365,364,-1,228,42,366,-1,228,40,42,-1,127,126,367,-1,368,276,369,-1,370,180,186,-1,370,371,180,-1,293,292,372,-1,372,373,293,-1,374,375,344,-1,344,345,374,-1,376,110,86,-1,376,107,110,-1,377,378,379,-1,380,381,382,-1,380,383,381,-1,384,385,386,-1,384,387,385,-1,388,84,389,-1,265,390,263,-1,320,23,318,-1,320,21,23,-1,391,392,393,-1,392,394,393,-1,22,24,395,-1,24,396,395,-1,351,397,349,-1,351,398,397,-1,399,400,401,-1,399,402,400,-1,403,402,399,-1,403,404,402,-1,405,406,407,-1,405,408,406,-1,310,409,309,-1,310,410,409,-1,411,404,403,-1,411,16,404,-1,411,412,413,-1,414,415,416,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlulna_Geo_5_865_coordIndex_2()
		{
			int[] value = {415,417,416,-1,418,419,420,-1,418,421,419,-1,336,337,422,-1,423,424,425,-1,334,426,427,-1,334,336,426,-1,426,428,429,-1,429,427,426,-1,430,431,432,-1,430,433,431,-1,434,435,436,-1,435,437,436,-1,386,385,438,-1,112,439,440,-1,112,114,439,-1,340,441,442,-1,441,443,442,-1,444,445,446,-1,447,97,96,-1,447,448,97,-1,350,299,360,-1,350,297,299,-1,24,449,396,-1,24,450,449,-1,450,451,449,-1,450,452,451,-1,241,453,235,-1,241,454,453,-1,70,455,456,-1,243,255,256,-1,243,67,255,-1,254,457,198,-1,252,458,362,-1,252,253,458,-1,459,460,354,-1,459,461,460,-1,462,134,463,-1,464,79,51,-1,465,466,157,-1,157,189,465,-1,467,468,469,-1,467,306,468,-1,214,470,215,-1,214,471,470,-1,61,62,148,-1,47,472,473,-1,473,183,47,-1,221,474,475,-1,221,222,474,-1,258,257,476,-1,477,219,478,-1,477,479,219,-1,201,200,357,-1,200,295,357,-1,78,80,176,-1,176,480,78,-1,481,482,483,-1,482,484,483,-1,482,485,484,-1,482,195,485,-1,482,486,196,-1,196,195,482,-1,487,488,278,-1,489,126,55,-1,490,460,461,-1,364,469,491,-1,492,493,208,-1,208,494,492,-1,493,13,495,-1,493,492,13,-1,168,496,169,-1,168,355,496,-1,150,149,460,-1,149,496,460,-1,151,5,497,-1,151,3,5,-1,238,498,239,-1,238,499,498,-1,452,123,451,-1,452,454,123,-1,86,110,89,-1,500,501,502,-1,500,503,501,-1,504,505,503,-1,329,331,506,-1,506,507,329,-1,508,439,379,-1,379,378,508,-1,509,510,511,-1,511,440,509,-1,512,513,514,-1,514,515,512,-1,389,84,83,-1,93,0,338,-1,516,517,518,-1,519,520,521,-1,520,522,521,-1,415,523,417,-1,415,332,523,-1,420,425,524,-1,425,424,524,-1,418,420,525,-1,420,524,525,-1,526,419,421,-1,527,528,337,-1,527,529,528,-1,413,16,411,-1,413,17,16,-1,309,418,525,-1,309,409,418,-1,529,406,317,-1,529,527,406,-1,408,317,406,-1,408,315,317,-1,308,307,399,-1,307,403,399,-1,530,321,531,-1,530,319,321,-1,532,533,534,-1,533,535,534,-1,223,68,536,-1,537,538,539,-1,538,280,539,-1,540,541,542,-1,541,330,542,-1,108,543,342,-1,342,109,108,-1,543,117,116,-1,427,544,521,-1,427,429,544,-1,88,545,104,-1,88,87,545,-1,379,117,546,-1,546,547,379,-1,106,100,102,-1,102,103,106,-1,548,549,381,-1,381,383,548,-1,379,550,377,-1,379,547,550,-1,549,551,552,-1,549,548,551,-1,71,170,74,-1,71,145,170,-1,294,295,204,-1,295,200,204,-1,130,553,192,-1,554,372,555,-1,372,292,555,-1,368,274,276,-1,368,556,274,-1,57,479,477,-1,477,63,57,-1,490,470,557,-1,490,461,470,-1,558,158,464,-1,464,51,558,-1,158,76,177,-1,177,464,158,-1,357,159,201,-1,159,559,201,-1,560,561,293,-1,560,156,561,-1,215,306,213,-1,562,350,360,-1,563,564,565,-1,566,389,567,-1,566,388,389,-1,507,568,329,-1,118,120,90,-1,91,569,570,-1,91,120,569,-1,334,521,522,-1,334,427,521,-1,115,571,572,-1,115,111,571,-1,341,567,339,-1,341,566,567,-1,95,0,93,-1,573,512,574,-1,512,515,574,-1,91,570,326,-1,343,575,109,-1,343,327,575,-1,576,378,387,-1,576,508,378,-1,510,509,577,-1,577,578,510,-1,378,385,387,-1,317,314,416,-1,416,529,317,-1,579,320,319,-1,579,236,320,-1,237,239,580,-1,239,232,580,-1,581,408,405,-1,581,531,408,-1,582,583,312,-1,467,365,584,-1,532,534,585,-1,585,586,532,-1,212,302,301,-1,212,209,302,-1,14,587,11,-1,14,300,587,-1,297,401,298,-1,588,589,292,-1,292,294,588,-1,590,591,592,-1,590,593,591,-1,290,594,288,-1,290,595,594,-1,69,132,255,-1,132,154,255,-1,55,61,286,-1,61,250,286,-1,596,73,72,-1,205,363,211,-1,265,285,249,-1,597,279,598,-1,279,29,31,-1,31,598,279,-1,599,7,600,-1,7,6,600,-1,273,344,565,-1,344,601,565,-1,602,499,238,-1,602,603,499,-1,604,282,263,-1,282,266,263,-1,305,214,213,-1,305,218,214,-1,605,48,606,-1,160,358,77,-1,607,608,609,-1,608,610,609,-1,253,152,458,-1,253,611,152,-1,248,265,249,-1,248,390,265,-1,612,246,245,-1,563,613,614,-1,607,267,242,-1,267,615,242,-1,499,616,498,-1,617,618,234,-1,235,234,618,-1,618,240,235,-1,239,498,579,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlulna_Geo_5_865_coordIndex_3()
		{
			int[] value = {369,276,564,-1,276,565,564,-1,619,229,620,-1,227,535,39,-1,535,533,39,-1,621,368,369,-1,55,6,489,-1,31,30,600,-1,600,286,31,-1,66,135,64,-1,220,219,622,-1,471,218,217,-1,471,214,218,-1,495,11,10,-1,495,13,11,-1,224,623,225,-1,224,32,623,-1,218,262,216,-1,218,624,262,-1,625,559,558,-1,182,179,178,-1,464,80,79,-1,464,177,80,-1,179,182,173,-1,173,175,179,-1,139,142,626,-1,626,627,139,-1,628,596,72,-1,72,629,628,-1,605,630,48,-1,630,631,48,-1,475,474,162,-1,162,632,475,-1,312,633,313,-1,312,634,633,-1,481,554,287,-1,255,67,69,-1,45,635,626,-1,626,142,45,-1,136,138,141,-1,138,142,141,-1,48,631,161,-1,160,77,76,-1,357,561,358,-1,192,636,637,-1,152,611,153,-1,638,291,639,-1,291,289,639,-1,277,280,538,-1,164,137,165,-1,621,238,237,-1,621,602,238,-1,36,580,230,-1,36,226,580,-1,640,219,641,-1,640,622,219,-1,144,60,59,-1,191,190,486,-1,625,558,642,-1,161,163,48,-1,131,130,192,-1,128,643,303,-1,644,641,219,-1,115,572,122,-1,106,105,645,-1,646,96,647,-1,96,98,647,-1,543,122,324,-1,543,116,122,-1,120,91,90,-1,424,423,634,-1,2,1,389,-1,340,442,341,-1,37,4,82,-1,368,38,648,-1,156,77,358,-1,358,561,156,-1,81,51,79,-1,52,51,81,-1,74,629,72,-1,74,171,629,-1,70,536,68,-1,147,478,60,-1,147,477,478,-1,171,649,650,-1,650,629,171,-1,219,479,651,-1,54,57,63,-1,644,219,651,-1,46,652,472,-1,472,47,46,-1,49,45,137,-1,45,138,137,-1,138,45,142,-1,46,653,652,-1,258,653,46,-1,40,3,41,-1,3,151,41,-1,640,654,622,-1,225,591,271,-1,588,362,594,-1,362,458,594,-1,362,588,294,-1,595,130,129,-1,595,290,130,-1,129,555,589,-1,589,595,129,-1,589,555,292,-1,17,20,15,-1,17,18,20,-1,451,25,27,-1,451,123,25,-1,415,18,332,-1,452,453,454,-1,252,362,203,-1,492,14,13,-1,492,301,14,-1,251,212,494,-1,251,210,212,-1,10,655,495,-1,10,28,655,-1,656,489,9,-1,489,6,9,-1,656,657,367,-1,657,658,367,-1,565,276,273,-1,5,4,37,-1,389,83,2,-1,148,250,61,-1,148,143,250,-1,659,242,615,-1,659,455,242,-1,660,456,661,-1,660,662,456,-1,269,663,275,-1,269,664,663,-1,274,657,270,-1,556,657,274,-1,665,666,620,-1,665,658,666,-1,367,665,127,-1,367,658,665,-1,667,668,669,-1,668,667,670,-1,210,252,203,-1,210,251,252,-1,492,212,301,-1,492,494,212,-1,449,27,671,-1,449,451,27,-1,322,402,404,-1,672,402,322,-1,673,674,400,-1,675,674,673,-1,676,452,450,-1,676,453,452,-1,677,678,679,-1,677,680,678,-1,415,19,18,-1,415,414,19,-1,68,225,271,-1,225,68,223,-1,638,553,291,-1,638,681,553,-1,487,590,592,-1,487,682,590,-1,29,623,32,-1,488,623,29,-1,130,291,553,-1,290,291,130,-1,152,289,288,-1,35,289,152,-1,34,593,639,-1,34,133,593,-1,152,594,458,-1,288,594,152,-1,683,654,640,-1,683,586,654,-1,532,684,533,-1,684,532,685,-1,686,43,687,-1,686,44,43,-1,653,476,688,-1,653,258,476,-1,472,689,690,-1,689,472,652,-1,49,164,691,-1,49,137,164,-1,651,57,56,-1,651,479,57,-1,650,628,629,-1,650,630,628,-1,477,62,63,-1,62,477,147,-1,621,38,368,-1,38,621,226,-1,619,38,37,-1,648,38,619,-1,388,573,574,-1,566,573,388,-1,692,339,567,-1,339,692,569,-1,1,567,389,-1,567,1,692,-1,97,101,99,-1,97,448,101,-1,693,446,694,-1,447,446,693,-1,445,695,696,-1,445,444,695,-1,697,646,647,-1,698,646,697,-1,699,98,700,-1,699,647,98,-1,694,701,693,-1,694,552,701,-1,696,381,549,-1,381,696,695,-1,88,551,86,-1,88,702,551,-1,548,703,376,-1,548,383,703,-1,704,705,706,-1,380,705,704,-1,706,707,708,-1,705,707,706,-1,709,710,711,-1,710,709,545,-1,712,713,714,-1,712,715,713,-1,547,716,550,-1,717,716,547,-1,575,110,109,-1,110,575,89,-1,502,718,719,-1,502,501,718,-1,503,720,721,-1,503,505,720,-1,722,723,724,-1,504,723,722,-1,641,303,725,-1,644,303,641,-1,50,558,51,-1,558,50,642,-1,625,624,726,-1,625,642,624,-1,640,725,683,-1,641,725,640,-1,226,237,580,-1,226,621,237,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlulna_Geo_5_865_coordIndex_4()
		{
			int[] value = {727,728,729,-1,727,730,728,-1,201,625,199,-1,201,559,625,-1,682,636,681,-1,636,682,277,-1,75,157,731,-1,75,77,157,-1,689,687,691,-1,687,689,688,-1,172,136,141,-1,172,174,136,-1,732,45,44,-1,45,732,635,-1,628,733,596,-1,734,733,628,-1,338,727,729,-1,338,633,727,-1,735,162,474,-1,162,735,163,-1,475,650,649,-1,650,475,632,-1,605,736,734,-1,605,606,736,-1,473,184,183,-1,371,184,473,-1,283,737,281,-1,737,283,738,-1,262,642,50,-1,624,642,262,-1,558,159,158,-1,559,159,558,-1,488,279,278,-1,279,488,29,-1,177,731,176,-1,177,75,731,-1,537,189,739,-1,537,740,189,-1,483,373,372,-1,483,484,373,-1,373,485,741,-1,484,485,373,-1,493,655,742,-1,495,655,493,-1,198,256,254,-1,256,198,197,-1,622,743,220,-1,622,744,743,-1,685,745,684,-1,745,685,746,-1,127,643,128,-1,127,747,643,-1,456,463,65,-1,456,662,463,-1,748,374,345,-1,374,748,462,-1,668,749,664,-1,749,668,670,-1,134,750,135,-1,134,751,750,-1,656,270,657,-1,9,270,656,-1,564,621,369,-1,602,621,564,-1,665,747,127,-1,665,752,747,-1,616,234,498,-1,234,616,617,-1,609,267,607,-1,609,268,267,-1,564,603,602,-1,603,564,563,-1,245,613,612,-1,245,614,613,-1,603,616,499,-1,616,603,753,-1,71,143,145,-1,71,248,143,-1,284,734,736,-1,734,284,733,-1,754,755,188,-1,755,754,466,-1,264,597,265,-1,264,539,597,-1,608,242,243,-1,242,608,607,-1,612,601,756,-1,612,613,601,-1,600,272,599,-1,600,30,272,-1,739,156,560,-1,739,189,156,-1,265,598,285,-1,597,598,265,-1,604,390,73,-1,263,390,604,-1,259,305,304,-1,305,259,726,-1,370,184,371,-1,370,738,184,-1,370,188,755,-1,370,186,188,-1,757,163,735,-1,163,757,257,-1,594,589,588,-1,594,595,589,-1,587,12,11,-1,587,361,12,-1,272,750,599,-1,750,272,135,-1,725,643,746,-1,643,725,303,-1,758,535,557,-1,758,534,535,-1,308,349,310,-1,308,352,349,-1,517,582,759,-1,517,516,582,-1,760,761,412,-1,761,760,583,-1,407,762,405,-1,762,407,763,-1,764,765,766,-1,765,764,767,-1,768,497,5,-1,497,768,769,-1,232,579,233,-1,232,239,579,-1,528,416,417,-1,528,529,416,-1,770,673,672,-1,673,770,395,-1,675,771,674,-1,771,675,671,-1,25,655,28,-1,125,655,25,-1,742,457,206,-1,742,198,457,-1,772,412,411,-1,772,760,412,-1,773,429,428,-1,773,384,429,-1,432,774,775,-1,774,432,431,-1,776,777,435,-1,776,778,777,-1,437,517,779,-1,437,780,517,-1,781,311,83,-1,781,759,311,-1,2,633,338,-1,2,313,633,-1,509,576,577,-1,509,508,576,-1,540,578,782,-1,540,510,578,-1,436,541,434,-1,783,541,436,-1,784,514,785,-1,515,514,784,-1,85,515,784,-1,85,574,515,-1,343,95,327,-1,343,570,95,-1,441,719,786,-1,441,119,719,-1,787,722,571,-1,787,720,722,-1,119,340,120,-1,119,441,340,-1,571,724,572,-1,724,571,722,-1,326,543,324,-1,543,326,342,-1,0,692,1,-1,692,0,95,-1,542,113,511,-1,113,542,568,-1,512,788,513,-1,512,443,788,-1,573,443,512,-1,573,442,443,-1,572,324,122,-1,325,324,572,-1,777,789,780,-1,777,790,789,-1,516,583,582,-1,583,516,761,-1,526,334,522,-1,335,334,526,-1,113,571,111,-1,787,571,113,-1,530,766,233,-1,530,764,766,-1,791,398,767,-1,398,791,397,-1,346,360,359,-1,346,562,360,-1,215,468,306,-1,468,215,459,-1,346,168,167,-1,346,348,168,-1,293,741,560,-1,741,293,373,-1,792,793,794,-1,792,347,793,-1,166,182,181,-1,173,182,166,-1,470,459,215,-1,461,459,470,-1,229,37,82,-1,229,619,37,-1,128,55,126,-1,128,53,55,-1,467,304,306,-1,467,584,304,-1,287,555,129,-1,287,554,555,-1,637,194,193,-1,194,637,739,-1,553,636,192,-1,553,681,636,-1,73,248,71,-1,390,248,73,-1,750,7,599,-1,750,669,7,-1,649,221,475,-1,649,795,221,-1,8,664,269,-1,668,664,8,-1,65,134,66,-1,65,463,134,-1,717,706,716,-1,717,704,706,-1,106,700,100,-1,106,707,700,-1,103,701,702,-1,103,102,701,-1,796,704,717,-1,704,796,703,-1,394,797,94,-1,797,394,710,-1,385,377,798,-1,385,378,377,-1,708,715,712,-1,708,645,715,-1,376,796,107,-1,376,703,796,-1,575,94,797,-1,575,327,94,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlulna_Geo_5_865_coordIndex_5()
		{
			int[] value = {392,710,394,-1,392,711,710,-1,645,709,715,-1,645,105,709,-1,787,568,507,-1,113,568,787,-1,93,729,393,-1,729,93,338,-1,747,746,643,-1,746,747,745,-1,799,391,438,-1,391,799,392,-1,350,401,297,-1,401,350,352,-1,531,315,408,-1,531,321,315,-1,349,410,310,-1,349,397,410,-1,314,680,677,-1,314,316,680,-1,677,416,314,-1,414,416,677,-1,527,407,406,-1,407,527,800,-1,409,421,418,-1,409,763,421,-1,800,337,335,-1,800,527,337,-1,801,412,761,-1,413,412,801,-1,333,413,801,-1,333,17,413,-1,802,417,523,-1,528,417,802,-1,420,520,425,-1,420,419,520,-1,803,332,790,-1,332,803,523,-1,422,433,430,-1,422,802,433,-1,730,423,519,-1,423,730,727,-1,778,790,777,-1,803,790,778,-1,801,789,333,-1,801,518,789,-1,423,633,634,-1,423,727,633,-1,781,785,779,-1,781,784,785,-1,774,782,578,-1,774,776,782,-1,773,577,576,-1,773,775,577,-1,391,729,728,-1,729,391,393,-1,83,784,781,-1,83,85,784,-1,514,328,783,-1,514,513,328,-1,542,510,540,-1,542,511,510,-1,440,508,509,-1,439,508,440,-1,786,331,788,-1,786,506,331,-1,543,546,117,-1,546,543,108,-1,714,799,798,-1,714,713,799,-1,646,447,96,-1,698,447,646,-1,444,447,698,-1,446,447,444,-1,804,765,805,-1,765,804,769,-1,562,167,806,-1,562,346,167,-1,233,768,231,-1,233,766,768,-1,167,807,804,-1,169,807,167,-1,10,26,28,-1,12,26,10,-1,231,5,230,-1,231,768,5,-1,82,40,228,-1,82,3,40,-1,169,149,807,-1,149,169,496,-1,355,460,496,-1,355,354,460,-1,491,794,364,-1,491,792,794,-1,610,241,609,-1,454,241,610,-1,247,616,753,-1,247,617,616,-1,33,611,155,-1,611,33,153,-1,300,364,794,-1,302,364,300,-1,227,557,535,-1,227,490,557,-1,366,684,745,-1,366,42,684,-1,656,126,489,-1,367,126,656,-1,463,660,462,-1,463,662,660,-1,462,751,134,-1,462,667,751,-1,462,670,667,-1,462,749,670,-1,462,808,749,-1,462,748,808,-1,277,487,278,-1,277,682,487,-1,266,740,264,-1,809,740,266,-1,755,738,370,-1,737,738,755,-1,604,596,733,-1,596,604,73,-1,165,173,166,-1,165,174,173,-1,81,175,52,-1,175,81,179,-1,141,261,172,-1,261,141,140,-1,810,471,217,-1,758,471,810,-1,627,585,810,-1,585,627,811,-1,654,744,622,-1,744,654,811,-1,743,222,220,-1,743,812,222,-1,757,44,686,-1,757,732,44,-1,630,632,631,-1,632,630,650,-1,476,757,686,-1,476,257,757,-1,257,48,163,-1,48,257,46,-1,757,812,732,-1,757,735,812,-1,606,47,183,-1,606,48,47,-1,162,631,632,-1,162,161,631,-1,732,743,635,-1,812,743,732,-1,586,811,654,-1,811,586,585,-1,534,810,585,-1,810,534,758,-1,627,744,811,-1,627,626,744,-1,627,217,139,-1,627,810,217,-1,726,218,305,-1,726,624,218,-1,211,365,209,-1,211,363,365,-1,164,181,690,-1,164,166,181,-1,473,690,181,-1,690,473,472,-1,282,733,284,-1,604,733,282,-1,178,186,180,-1,178,187,186,-1,187,78,480,-1,187,178,78,-1,285,31,286,-1,285,598,31,-1,752,745,747,-1,752,366,745,-1,491,468,353,-1,469,468,491,-1,610,197,124,-1,610,608,197,-1,615,375,659,-1,615,756,375,-1,753,245,247,-1,753,614,245,-1,240,244,268,-1,618,244,240,-1,587,794,793,-1,587,300,794,-1,356,347,792,-1,348,347,356,-1,361,793,359,-1,361,587,793,-1,769,807,497,-1,769,804,807,-1,235,676,236,-1,235,453,676,-1,771,12,296,-1,26,12,771,-1,167,805,806,-1,805,167,804,-1,676,320,236,-1,320,676,21,-1,296,674,771,-1,298,674,296,-1,398,806,805,-1,398,351,806,-1,702,552,551,-1,702,701,552,-1,502,118,500,-1,502,121,118,-1,500,504,503,-1,500,723,504,-1,441,788,443,-1,788,441,786,-1,328,541,783,-1,328,330,541,-1,438,728,386,-1,728,438,391,-1,384,576,387,-1,384,773,576,-1,578,775,774,-1,577,775,578,-1,434,776,435,-1,782,776,434,-1,436,779,785,-1,779,436,437,-1,518,780,789,-1,518,517,780,-1,433,778,431,-1,433,803,778,-1,426,432,428,-1,426,430,432,-1,519,544,730,-1,519,521,544,-1,336,430,426,-1,336,422,430,-1,802,803,433,-1,802,523,803,-1,424,312,583,-1,424,634,312,-1,519,425,520,-1,425,519,423,-1,419,522,520,-1,419,526,522,-1,337,802,422,-1,337,528,802,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlulna_Geo_5_865_coordIndex_6()
		{
			int[] value = {763,800,421,-1,763,407,800,-1,323,19,679,-1,20,19,323,-1,411,307,772,-1,403,307,411,-1,763,410,762,-1,763,409,410,-1,679,770,323,-1,679,678,770,-1,791,405,762,-1,791,581,405,-1,316,23,680,-1,318,23,316,-1,399,352,308,-1,401,352,399,-1,400,298,401,-1,400,674,298,-1,550,798,377,-1,714,798,550,-1,678,395,770,-1,22,395,678,-1,319,233,579,-1,530,233,319,-1,379,114,117,-1,379,439,114,-1,545,105,104,-1,105,545,709,-1,713,392,799,-1,392,713,711,-1,706,712,716,-1,708,712,706,-1,438,798,799,-1,385,798,438,-1,393,94,93,-1,94,393,394,-1,700,705,699,-1,700,707,705,-1,380,699,705,-1,380,382,699,-1,374,659,375,-1,661,659,374,-1,275,345,273,-1,663,345,275,-1,737,466,465,-1,466,737,755,-1,281,266,282,-1,809,266,281,-1,194,560,741,-1,194,739,560,-1,176,754,480,-1,731,754,176,-1,353,792,491,-1,353,356,792,-1,55,600,6,-1,55,286,600,-1,293,357,295,-1,293,561,357,-1,620,648,619,-1,620,666,648,-1,460,227,150,-1,490,227,460,-1,216,139,217,-1,139,216,140,-1,199,726,259,-1,199,625,726,-1,611,207,206,-1,611,253,207,-1,155,206,457,-1,155,611,206,-1,347,359,793,-1,347,346,359,-1,355,348,356,-1,348,355,168,-1,353,459,354,-1,353,468,459,-1,767,805,765,-1,805,767,398,-1,350,806,351,-1,562,806,350,-1,531,764,530,-1,531,581,764,-1,565,613,563,-1,565,601,613,-1,236,498,234,-1,498,236,579,-1,335,421,800,-1,335,526,421,-1,759,312,311,-1,312,759,582,-1,333,790,332,-1,790,333,789,-1,112,511,113,-1,440,511,112,-1,788,328,513,-1,788,331,328,-1,329,542,330,-1,568,542,329,-1,95,569,692,-1,95,570,569,-1,343,326,570,-1,326,343,342,-1,723,92,724,-1,92,723,500,-1,507,720,787,-1,720,507,721,-1,718,507,506,-1,507,718,721,-1,719,506,786,-1,719,718,506,-1,340,569,120,-1,339,569,340,-1,783,785,514,-1,783,436,785,-1,541,782,434,-1,782,541,540,-1,83,313,2,-1,83,311,313,-1,759,779,517,-1,781,779,759,-1,780,435,777,-1,437,435,780,-1,776,431,778,-1,776,774,431,-1,428,775,773,-1,775,428,432,-1,544,384,386,-1,384,544,429,-1,583,524,424,-1,760,524,583,-1,742,125,198,-1,742,655,125,-1,26,671,27,-1,671,26,771,-1,395,675,673,-1,675,395,396,-1,672,323,770,-1,672,322,323,-1,321,316,315,-1,316,321,318,-1,229,366,752,-1,366,229,228,-1,769,766,765,-1,768,766,769,-1,581,767,764,-1,767,581,791,-1,518,761,516,-1,518,801,761,-1,397,762,410,-1,791,762,397,-1,772,309,525,-1,772,307,309,-1,525,760,772,-1,525,524,760,-1,758,470,471,-1,758,557,470,-1,64,536,65,-1,223,536,64,-1,296,361,299,-1,12,361,296,-1,480,188,187,-1,188,480,754,-1,283,736,185,-1,283,284,736,-1,365,260,584,-1,260,365,363,-1,193,192,637,-1,193,190,192,-1,623,591,225,-1,623,592,591,-1,455,67,242,-1,455,70,67,-1,344,756,601,-1,344,375,756,-1,267,756,615,-1,267,612,756,-1,246,612,267,-1,539,279,597,-1,279,539,280,-1,740,539,264,-1,740,537,539,-1,261,50,52,-1,261,262,50,-1,304,260,259,-1,260,304,584,-1,271,132,69,-1,271,133,132,-1,618,247,244,-1,618,617,247,-1,603,614,753,-1,603,563,614,-1,241,268,609,-1,241,240,268,-1,232,230,580,-1,232,231,230,-1,497,149,151,-1,497,807,149,-1,368,666,556,-1,368,648,666,-1,751,669,750,-1,667,669,751,-1,663,748,345,-1,748,663,808,-1,462,661,374,-1,661,462,660,-1,70,65,536,-1,70,456,65,-1,683,746,685,-1,746,683,725,-1,644,56,303,-1,644,651,56,-1,221,478,219,-1,478,221,795,-1,467,364,365,-1,469,364,467,-1,494,207,251,-1,494,208,207,-1,203,211,210,-1,211,203,205,-1,200,205,204,-1,205,200,202,-1,493,206,208,-1,493,742,206,-1,197,243,256,-1,197,608,243,-1,454,124,123,-1,124,454,610,-1,741,195,194,-1,485,195,741,-1,196,190,193,-1,486,190,196,-1,481,372,554,-1,481,483,372,-1,191,481,287,-1,486,481,191,-1,482,481,486,-1,739,538,537,-1,637,538,739,-1,466,731,157,-1,731,466,754,-1,740,465,189,-1,740,809,465,-1,465,281,737,-1,465,809,281,-1,738,185,184,-1,738,283,185,-1,185,606,183,-1,185,736,606,-1,181,371,473,-1,180,371,181,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlulna_Geo_5_865_coordIndex_7()
		{
			int[] value = {812,474,222,-1,812,735,474,-1,145,59,170,-1,145,144,59,-1,635,744,626,-1,744,635,743,-1,49,687,43,-1,49,691,687,-1,652,688,689,-1,688,652,653,-1,457,154,155,-1,457,254,154,-1,386,730,544,-1,730,386,728,-1,144,147,60,-1,146,147,144,-1,137,174,165,-1,136,174,137,-1,637,277,538,-1,637,636,277,-1,638,593,590,-1,638,639,593,-1,724,325,572,-1,724,92,325,-1,720,504,722,-1,505,504,720,-1,501,721,718,-1,501,503,721,-1,119,502,719,-1,121,502,119,-1,500,90,92,-1,500,118,90,-1,112,115,114,-1,111,115,112,-1,546,717,547,-1,546,796,717,-1,108,796,546,-1,107,796,108,-1,716,714,550,-1,716,712,714,-1,715,711,713,-1,711,715,709,-1,710,87,797,-1,710,545,87,-1,707,645,708,-1,707,106,645,-1,703,380,704,-1,383,380,703,-1,86,548,376,-1,551,548,86,-1,104,702,88,-1,103,702,104,-1,381,697,382,-1,381,695,697,-1,696,552,694,-1,549,552,696,-1,102,693,701,-1,102,101,693,-1,98,100,700,-1,100,98,99,-1,382,647,699,-1,697,647,382,-1,695,698,697,-1,444,698,695,-1,694,445,696,-1,446,445,694,-1,448,693,101,-1,448,447,693,-1,797,89,575,-1,89,797,87,-1,566,442,573,-1,341,442,566,-1,84,574,85,-1,388,574,84,-1,64,272,224,-1,272,64,135,-1,58,478,795,-1,478,58,60,-1,171,795,649,-1,58,795,171,-1,734,630,605,-1,628,630,734,-1,690,691,164,-1,691,690,689,-1,688,686,687,-1,688,476,686,-1,42,533,684,-1,533,42,39,-1,586,685,532,-1,685,586,683,-1,133,591,593,-1,271,591,133,-1,289,34,639,-1,289,35,34,-1,488,592,623,-1,488,487,592,-1,590,681,638,-1,590,682,681,-1,679,414,677,-1,19,414,679,-1,680,22,678,-1,680,23,22,-1,450,21,676,-1,24,21,450,-1,672,400,402,-1,673,400,672,-1,404,15,322,-1,404,16,15,-1,396,671,675,-1,396,449,671,-1,7,668,8,-1,7,669,668,-1,752,620,229,-1,752,665,620,-1,658,556,666,-1,658,657,556,-1,270,275,274,-1,270,269,275,-1,664,808,663,-1,664,749,808,-1,661,455,659,-1,661,456,455,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlulna_Geo_5_865_normalIndex_1()
		{
			int[] value = {197,249,166,-1,715,765,760,-1,722,693,723,-1,723,710,722,-1,113,52,73,-1,116,23,52,-1,141,72,41,-1,155,165,144,-1,361,188,272,-1,361,257,188,-1,284,202,282,-1,284,173,202,-1,552,577,511,-1,552,589,577,-1,329,327,243,-1,767,751,725,-1,570,748,617,-1,570,711,748,-1,460,412,326,-1,503,495,525,-1,326,433,460,-1,70,21,40,-1,801,795,752,-1,795,633,575,-1,795,801,633,-1,812,762,787,-1,795,798,752,-1,798,795,687,-1,795,583,687,-1,714,702,686,-1,454,594,431,-1,454,646,594,-1,574,564,500,-1,574,610,564,-1,153,164,150,-1,111,58,151,-1,111,1,58,-1,765,715,764,-1,125,205,149,-1,162,216,277,-1,162,122,216,-1,305,240,260,-1,213,184,157,-1,482,469,514,-1,469,527,514,-1,543,527,445,-1,445,421,543,-1,416,410,550,-1,550,569,416,-1,215,189,43,-1,43,89,215,-1,371,477,384,-1,437,354,319,-1,319,362,437,-1,322,442,397,-1,322,289,442,-1,250,319,354,-1,284,357,251,-1,251,185,284,-1,775,769,789,-1,309,222,307,-1,327,380,428,-1,327,329,380,-1,657,658,686,-1,245,344,291,-1,241,161,193,-1,193,247,241,-1,685,733,673,-1,685,727,733,-1,682,744,687,-1,682,727,744,-1,617,556,496,-1,617,627,556,-1,243,172,267,-1,267,329,243,-1,329,312,380,-1,329,274,312,-1,168,142,150,-1,121,114,208,-1,208,164,121,-1,517,559,515,-1,379,297,237,-1,298,146,330,-1,685,744,727,-1,762,812,720,-1,720,812,770,-1,770,610,720,-1,126,106,196,-1,126,37,106,-1,175,151,174,-1,1,148,15,-1,1,111,148,-1,103,221,44,-1,44,148,103,-1,406,199,349,-1,177,225,183,-1,142,168,244,-1,307,269,341,-1,307,235,269,-1,223,217,287,-1,287,301,223,-1,317,185,251,-1,317,261,185,-1,62,65,27,-1,62,128,65,-1,9,48,110,-1,278,203,226,-1,56,18,74,-1,56,22,18,-1,34,35,46,-1,140,214,107,-1,675,568,587,-1,568,534,587,-1,651,662,628,-1,651,714,662,-1,767,725,742,-1,458,617,496,-1,458,570,617,-1,773,734,764,-1,794,751,767,-1,794,760,751,-1,790,804,802,-1,618,491,508,-1,811,584,759,-1,665,426,491,-1,555,454,369,-1,772,674,669,-1,772,736,674,-1,576,513,685,-1,513,689,685,-1,76,203,25,-1,203,186,25,-1,292,335,312,-1,292,343,335,-1,153,174,164,-1,503,457,472,-1,128,93,130,-1,128,62,93,-1,161,140,104,-1,140,68,104,-1,459,464,476,-1,459,438,464,-1,772,614,654,-1,772,669,614,-1,710,757,703,-1,710,723,757,-1,431,594,523,-1,662,677,589,-1,677,577,589,-1,678,732,745,-1,678,782,732,-1,455,554,520,-1,520,480,455,-1,342,429,336,-1,429,414,336,-1,689,522,608,-1,689,513,522,-1,341,309,307,-1,341,439,309,-1,60,96,132,-1,96,88,132,-1,258,232,69,-1,232,120,69,-1,54,12,33,-1,54,5,12,-1,20,16,30,-1,20,23,16,-1,719,633,789,-1,633,801,789,-1,34,66,71,-1,34,47,66,-1,57,127,256,-1,127,270,256,-1,119,97,163,-1,489,708,448,-1,489,663,708,-1,411,729,483,-1,411,664,729,-1,178,144,190,-1,178,141,144,-1,179,228,124,-1,228,240,124,-1,228,260,240,-1,157,184,82,-1,320,391,328,-1,320,468,391,-1,195,155,55,-1,155,41,55,-1,780,792,777,-1,792,659,777,-1,166,239,197,-1,541,538,572,-1,80,39,43,-1,634,678,613,-1,129,139,135,-1,264,67,288,-1,264,112,67,-1,78,86,109,-1,109,102,78,-1,208,134,242,-1,208,114,134,-1,50,42,8,-1,42,5,8,-1,48,9,69,-1,9,31,69,-1,128,130,138,-1,138,110,128,-1,40,37,104,-1,37,126,104,-1,30,56,87,-1,56,137,87,-1,773,711,758,-1,773,748,711,-1,769,775,747,-1,670,782,788,-1,123,103,177,-1,123,143,103,-1,232,258,443,-1,443,373,232,-1,700,731,634,-1,634,613,700,-1,233,89,162,-1,233,215,89,-1,746,793,595,-1,512,430,528,-1,512,409,430,-1,786,803,712,-1,786,807,803,-1,254,205,253,-1,476,502,459,-1,483,272,411,-1,483,361,272,-1,531,533,388,-1,533,376,388,-1,188,257,176,-1,257,224,176,-1,288,451,264,-1,288,518,451,-1,6,156,14,-1,6,117,156,-1,0,117,6,-1,0,49,117,-1,774,754,791,-1,774,809,754,-1,270,441,256,-1,270,422,441,-1,7,49,0,-1,7,72,49,-1,7,13,10,-1,283,303,382,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlulna_Geo_5_865_normalIndex_2()
		{
			int[] value = {303,396,382,-1,418,592,385,-1,418,601,592,-1,777,659,630,-1,393,159,351,-1,780,783,785,-1,780,777,783,-1,783,784,781,-1,781,785,783,-1,624,490,621,-1,624,504,490,-1,252,218,101,-1,218,90,101,-1,712,803,647,-1,477,578,558,-1,477,437,578,-1,538,566,524,-1,566,488,524,-1,499,415,417,-1,405,469,482,-1,405,434,469,-1,67,5,42,-1,67,12,5,-1,257,259,224,-1,257,293,259,-1,293,296,259,-1,293,332,296,-1,426,366,491,-1,426,347,366,-1,646,705,730,-1,369,335,343,-1,369,454,335,-1,292,275,261,-1,25,61,31,-1,25,186,61,-1,59,276,86,-1,59,167,276,-1,713,657,704,-1,94,58,21,-1,209,171,142,-1,142,244,209,-1,99,64,105,-1,99,47,64,-1,35,152,46,-1,35,147,152,-1,798,687,744,-1,495,453,339,-1,339,406,495,-1,587,553,580,-1,587,534,553,-1,472,457,440,-1,521,675,737,-1,521,519,675,-1,27,65,134,-1,65,120,134,-1,111,151,175,-1,175,219,111,-1,356,565,424,-1,565,360,424,-1,565,280,360,-1,565,287,280,-1,565,337,301,-1,301,287,565,-1,571,582,554,-1,728,775,752,-1,358,276,167,-1,87,105,115,-1,136,315,226,-1,226,95,136,-1,315,116,246,-1,315,136,116,-1,146,324,330,-1,146,109,324,-1,496,556,276,-1,556,324,276,-1,627,760,661,-1,627,715,760,-1,584,635,759,-1,584,563,635,-1,332,357,296,-1,332,347,357,-1,162,89,122,-1,308,395,370,-1,308,372,395,-1,334,340,372,-1,391,468,544,-1,544,378,391,-1,706,578,595,-1,595,793,706,-1,598,487,466,-1,466,558,598,-1,238,266,108,-1,108,81,238,-1,253,205,125,-1,213,197,239,-1,29,28,26,-1,557,590,697,-1,590,699,697,-1,303,331,396,-1,303,195,331,-1,385,351,200,-1,351,159,200,-1,418,385,231,-1,385,200,231,-1,694,592,601,-1,684,470,659,-1,684,536,470,-1,10,72,7,-1,10,41,72,-1,256,418,231,-1,256,441,418,-1,536,754,663,-1,536,684,754,-1,809,663,754,-1,809,708,663,-1,127,57,6,-1,57,0,6,-1,796,664,808,-1,796,729,664,-1,549,596,425,-1,596,479,425,-1,651,594,691,-1,413,436,461,-1,436,480,461,-1,390,279,394,-1,279,328,394,-1,189,187,80,-1,80,43,189,-1,187,362,319,-1,785,701,697,-1,785,781,701,-1,277,398,410,-1,277,216,398,-1,595,362,359,-1,359,510,595,-1,569,543,421,-1,421,416,569,-1,299,333,430,-1,430,409,299,-1,595,698,746,-1,595,510,698,-1,333,268,348,-1,333,299,268,-1,574,720,610,-1,574,673,720,-1,69,120,48,-1,120,65,48,-1,222,201,235,-1,462,443,435,-1,443,258,435,-1,670,732,782,-1,670,652,732,-1,575,519,521,-1,521,583,575,-1,358,152,338,-1,358,167,152,-1,19,121,94,-1,94,21,19,-1,121,164,174,-1,174,94,121,-1,134,114,27,-1,114,3,27,-1,227,255,232,-1,227,168,255,-1,46,47,34,-1,145,67,42,-1,605,612,692,-1,392,253,407,-1,392,254,253,-1,378,355,391,-1,322,397,305,-1,240,365,158,-1,240,397,365,-1,780,697,699,-1,780,785,697,-1,354,281,295,-1,354,371,281,-1,572,407,541,-1,572,392,407,-1,157,197,213,-1,321,238,170,-1,238,81,170,-1,240,158,124,-1,39,98,43,-1,39,82,98,-1,799,793,807,-1,799,706,793,-1,487,598,620,-1,620,501,487,-1,793,803,807,-1,663,489,382,-1,382,536,663,-1,738,483,729,-1,738,508,483,-1,811,759,776,-1,759,804,776,-1,740,809,774,-1,740,808,809,-1,36,53,97,-1,99,137,118,-1,549,425,473,-1,473,591,549,-1,22,30,16,-1,22,56,30,-1,23,11,52,-1,23,20,11,-1,12,14,33,-1,131,263,258,-1,258,69,131,-1,493,593,588,-1,493,447,593,-1,132,92,60,-1,132,212,92,-1,431,380,335,-1,380,312,335,-1,752,798,608,-1,798,689,608,-1,494,500,564,-1,110,138,74,-1,476,522,513,-1,492,520,540,-1,520,552,511,-1,511,540,520,-1,645,693,615,-1,693,722,615,-1,678,634,692,-1,634,642,692,-1,606,563,584,-1,606,603,563,-1,465,429,459,-1,429,438,459,-1,71,35,34,-1,71,107,35,-1,562,525,530,-1,208,242,150,-1,432,387,444,-1,387,367,444,-1,186,172,61,-1,186,294,172,-1,576,476,513,-1,576,502,476,-1,632,669,674,-1,605,616,655,-1,432,614,555,-1,614,672,555,-1,563,690,635,-1,721,761,618,-1,491,618,761,-1,761,665,491,-1,759,635,738,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlulna_Geo_5_865_normalIndex_3()
		{
			int[] value = {788,782,612,-1,782,692,612,-1,724,734,726,-1,458,479,570,-1,479,596,570,-1,805,670,788,-1,752,722,728,-1,511,577,615,-1,615,608,511,-1,686,658,714,-1,568,675,599,-1,147,107,214,-1,147,35,107,-1,246,52,113,-1,246,116,52,-1,662,623,628,-1,662,589,623,-1,107,68,140,-1,107,91,68,-1,51,3,19,-1,44,15,148,-1,94,151,58,-1,94,174,151,-1,15,44,106,-1,106,37,15,-1,241,247,368,-1,368,364,241,-1,567,494,564,-1,564,656,567,-1,562,609,525,-1,609,561,525,-1,580,553,559,-1,559,581,580,-1,97,236,163,-1,97,220,236,-1,356,462,439,-1,335,454,431,-1,326,408,368,-1,368,247,326,-1,245,291,193,-1,291,247,193,-1,525,561,517,-1,208,150,164,-1,134,255,242,-1,235,325,285,-1,172,294,267,-1,265,88,234,-1,88,96,234,-1,455,480,436,-1,379,344,297,-1,805,584,811,-1,805,606,584,-1,767,776,794,-1,767,742,776,-1,653,675,676,-1,653,599,675,-1,733,787,762,-1,341,269,337,-1,51,19,75,-1,517,515,525,-1,307,222,235,-1,789,778,719,-1,660,676,675,-1,354,295,250,-1,569,550,636,-1,539,482,506,-1,482,514,506,-1,187,250,179,-1,187,319,250,-1,397,240,305,-1,159,393,220,-1,166,249,253,-1,538,524,572,-1,751,765,764,-1,670,725,718,-1,168,150,242,-1,242,255,168,-1,1,21,58,-1,40,21,1,-1,610,656,564,-1,610,770,656,-1,646,691,594,-1,682,737,787,-1,682,521,737,-1,770,680,650,-1,650,656,770,-1,675,519,626,-1,795,575,583,-1,660,675,626,-1,503,516,453,-1,453,495,503,-1,433,326,344,-1,326,291,344,-1,291,326,247,-1,503,537,516,-1,472,537,503,-1,748,715,617,-1,715,627,617,-1,653,585,599,-1,628,593,523,-1,131,31,92,-1,31,61,92,-1,31,131,69,-1,212,222,309,-1,212,132,222,-1,309,435,263,-1,263,212,309,-1,263,435,258,-1,41,144,141,-1,41,155,144,-1,296,284,282,-1,296,357,284,-1,303,155,195,-1,332,366,347,-1,25,31,9,-1,136,23,116,-1,136,16,23,-1,76,22,95,-1,76,18,22,-1,113,271,246,-1,113,173,271,-1,679,728,710,-1,728,722,710,-1,679,649,747,-1,649,716,747,-1,692,782,678,-1,760,765,751,-1,253,125,166,-1,744,689,798,-1,744,685,689,-1,763,555,672,-1,763,705,555,-1,771,730,768,-1,771,750,730,-1,757,600,745,-1,757,597,600,-1,732,649,703,-1,652,649,732,-1,735,717,726,-1,735,716,717,-1,747,735,769,-1,747,716,735,-1,631,611,604,-1,611,631,637,-1,18,25,9,-1,18,76,25,-1,136,22,16,-1,136,95,22,-1,259,282,262,-1,259,296,282,-1,178,117,49,-1,169,117,178,-1,198,194,156,-1,230,194,198,-1,353,332,293,-1,353,366,332,-1,311,210,191,-1,311,302,210,-1,303,165,155,-1,303,283,165,-1,594,628,523,-1,628,594,651,-1,265,201,88,-1,265,316,201,-1,571,493,588,-1,571,456,493,-1,552,623,589,-1,582,623,552,-1,222,88,201,-1,132,88,222,-1,172,96,60,-1,243,96,172,-1,327,447,234,-1,327,428,447,-1,172,92,61,-1,60,92,172,-1,695,585,653,-1,695,591,585,-1,549,709,596,-1,709,549,681,-1,423,460,471,-1,423,412,460,-1,537,440,474,-1,537,472,440,-1,453,450,402,-1,450,453,516,-1,433,379,446,-1,433,344,379,-1,626,575,633,-1,626,519,575,-1,650,567,656,-1,650,609,567,-1,521,687,583,-1,687,521,682,-1,805,725,670,-1,725,805,742,-1,724,725,751,-1,718,725,724,-1,254,321,170,-1,392,321,254,-1,306,541,407,-1,541,306,365,-1,249,407,253,-1,407,249,306,-1,469,445,527,-1,469,434,445,-1,363,417,352,-1,405,417,363,-1,415,478,386,-1,415,499,478,-1,542,539,506,-1,546,539,542,-1,532,514,560,-1,532,506,514,-1,352,313,363,-1,352,348,313,-1,386,430,333,-1,430,386,478,-1,277,268,162,-1,277,318,268,-1,299,399,233,-1,299,409,399,-1,509,573,629,-1,512,573,509,-1,629,602,707,-1,573,602,629,-1,535,401,551,-1,401,535,398,-1,779,688,800,-1,779,671,688,-1,510,666,698,-1,507,666,510,-1,98,89,43,-1,89,98,122,-1,370,452,463,-1,370,395,452,-1,372,323,375,-1,372,340,323,-1,300,314,286,-1,334,314,300,-1,676,719,741,-1,660,719,676,-1,70,19,21,-1,19,70,75,-1,51,91,83,-1,51,75,91,-1,653,741,695,-1,676,741,653,-1,742,811,776,-1,742,805,811,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlulna_Geo_5_865_normalIndex_4()
		{
			int[] value = {400,547,383,-1,400,545,547,-1,27,51,62,-1,27,3,51,-1,456,325,316,-1,325,456,455,-1,153,142,180,-1,153,150,142,-1,450,471,446,-1,471,450,474,-1,126,245,193,-1,126,196,245,-1,420,326,412,-1,326,420,408,-1,567,427,494,-1,475,427,567,-1,239,400,383,-1,239,236,400,-1,497,559,553,-1,559,497,515,-1,580,650,680,-1,650,580,581,-1,562,449,475,-1,562,530,449,-1,339,199,406,-1,143,199,339,-1,336,192,342,-1,192,336,160,-1,68,75,70,-1,91,75,68,-1,19,114,121,-1,3,114,19,-1,582,520,554,-1,520,582,552,-1,174,180,175,-1,174,153,180,-1,413,244,273,-1,413,403,244,-1,424,373,443,-1,424,360,373,-1,373,280,248,-1,360,280,373,-1,315,271,310,-1,246,271,315,-1,261,343,292,-1,343,261,317,-1,599,486,568,-1,599,484,486,-1,681,756,709,-1,756,681,755,-1,769,778,789,-1,769,766,778,-1,730,704,702,-1,730,750,704,-1,648,700,613,-1,700,648,713,-1,611,641,597,-1,641,611,637,-1,657,619,658,-1,657,625,619,-1,679,703,649,-1,710,703,679,-1,612,805,788,-1,606,805,612,-1,735,766,769,-1,735,743,766,-1,690,618,635,-1,618,690,721,-1,444,614,432,-1,444,654,614,-1,612,603,606,-1,603,612,605,-1,674,616,632,-1,674,655,616,-1,603,690,563,-1,690,603,683,-1,574,685,673,-1,574,576,685,-1,414,475,449,-1,475,414,427,-1,206,154,183,-1,154,206,171,-1,464,492,476,-1,464,461,492,-1,387,555,369,-1,555,387,432,-1,632,642,668,-1,632,616,642,-1,615,677,645,-1,615,577,677,-1,273,168,227,-1,273,244,168,-1,476,540,522,-1,492,540,476,-1,465,502,500,-1,459,502,465,-1,93,71,66,-1,71,93,83,-1,123,199,143,-1,123,160,199,-1,123,183,154,-1,123,177,183,-1,419,515,497,-1,515,419,457,-1,92,263,131,-1,92,212,263,-1,11,73,52,-1,11,8,73,-1,677,619,645,-1,619,677,658,-1,741,778,755,-1,778,741,719,-1,345,479,338,-1,345,425,479,-1,127,264,270,-1,127,112,264,-1,28,36,45,-1,28,29,36,-1,85,17,13,-1,17,85,53,-1,791,607,774,-1,607,791,586,-1,739,640,749,-1,640,739,643,-1,753,661,760,-1,661,753,644,-1,804,738,802,-1,804,759,738,-1,470,382,396,-1,470,536,382,-1,181,198,169,-1,198,181,176,-1,230,204,194,-1,204,230,262,-1,284,271,173,-1,185,271,284,-1,310,275,278,-1,310,261,275,-1,79,13,7,-1,79,85,13,-1,806,781,784,-1,806,786,781,-1,621,505,639,-1,505,621,490,-1,389,229,218,-1,389,377,229,-1,90,28,2,-1,90,100,28,-1,32,119,125,-1,32,45,119,-1,166,236,239,-1,166,163,236,-1,598,799,620,-1,598,706,799,-1,390,501,404,-1,390,487,501,-1,101,279,252,-1,182,279,101,-1,38,108,24,-1,81,108,38,-1,149,81,38,-1,149,170,81,-1,39,157,82,-1,39,158,157,-1,566,463,579,-1,566,442,463,-1,290,300,281,-1,290,323,300,-1,442,538,397,-1,442,566,538,-1,281,286,295,-1,286,281,300,-1,124,187,179,-1,187,124,80,-1,197,306,249,-1,306,197,157,-1,394,384,466,-1,384,394,355,-1,238,498,266,-1,238,488,498,-1,321,488,238,-1,321,524,488,-1,295,179,250,-1,228,179,295,-1,229,77,100,-1,229,211,77,-1,29,53,36,-1,53,29,17,-1,694,780,699,-1,792,780,694,-1,384,281,371,-1,290,281,384,-1,796,749,802,-1,796,739,749,-1,622,518,643,-1,518,622,451,-1,129,42,50,-1,129,145,42,-1,46,64,47,-1,64,46,59,-1,129,146,298,-1,129,135,146,-1,232,248,227,-1,248,232,373,-1,133,63,84,-1,133,139,63,-1,237,44,221,-1,106,44,237,-1,152,59,46,-1,167,59,152,-1,734,751,764,-1,734,724,751,-1,789,752,775,-1,789,801,752,-1,99,66,47,-1,99,118,66,-1,439,435,309,-1,439,462,435,-1,285,217,223,-1,217,285,273,-1,201,325,235,-1,201,316,325,-1,500,576,574,-1,502,576,500,-1,619,693,645,-1,619,604,693,-1,680,587,580,-1,680,696,587,-1,723,597,757,-1,611,597,723,-1,702,657,686,-1,702,704,657,-1,507,629,666,-1,507,509,629,-1,569,560,543,-1,569,602,560,-1,416,313,318,-1,416,421,313,-1,381,509,507,-1,509,381,399,-1,376,207,184,-1,207,376,401,-1,803,746,810,-1,803,793,746,-1,707,671,779,-1,707,636,671,-1,233,381,215,-1,233,399,381,-1,98,184,207,-1,98,82,184,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlulna_Geo_5_865_normalIndex_5()
		{
			int[] value = {533,401,376,-1,533,551,401,-1,636,535,671,-1,636,550,535,-1,290,355,378,-1,384,355,290,-1,213,383,388,-1,383,213,239,-1,766,755,778,-1,755,766,756,-1,667,531,647,-1,531,667,533,-1,67,14,12,-1,14,67,112,-1,808,708,809,-1,808,664,708,-1,264,422,270,-1,264,451,422,-1,489,302,311,-1,489,448,302,-1,311,382,489,-1,283,382,311,-1,684,791,754,-1,791,684,797,-1,441,601,418,-1,441,586,601,-1,797,659,792,-1,797,684,659,-1,4,13,17,-1,10,13,4,-1,55,10,4,-1,55,41,10,-1,467,396,331,-1,470,396,467,-1,385,590,351,-1,385,592,590,-1,346,195,211,-1,195,346,331,-1,630,504,624,-1,630,467,504,-1,545,393,557,-1,393,545,400,-1,377,211,229,-1,346,211,377,-1,4,77,55,-1,4,26,77,-1,393,236,220,-1,393,400,236,-1,32,24,2,-1,32,38,24,-1,505,404,501,-1,505,389,404,-1,806,620,799,-1,806,639,620,-1,531,383,547,-1,383,531,388,-1,125,38,32,-1,125,149,38,-1,108,320,182,-1,108,266,320,-1,394,487,390,-1,394,466,487,-1,558,706,598,-1,578,706,558,-1,579,468,498,-1,579,544,468,-1,187,359,362,-1,359,187,189,-1,800,667,810,-1,800,688,667,-1,539,405,482,-1,546,405,539,-1,499,405,546,-1,417,405,499,-1,529,640,526,-1,640,529,644,-1,145,298,304,-1,145,129,298,-1,802,753,790,-1,802,749,753,-1,298,548,529,-1,330,548,298,-1,113,202,173,-1,73,202,113,-1,790,760,794,-1,790,753,760,-1,764,748,773,-1,764,715,748,-1,330,556,548,-1,556,330,324,-1,109,276,324,-1,109,86,276,-1,115,84,87,-1,115,133,84,-1,367,426,444,-1,347,426,367,-1,736,690,683,-1,736,721,690,-1,329,294,274,-1,294,329,267,-1,20,87,84,-1,30,87,20,-1,458,338,479,-1,458,358,338,-1,758,709,756,-1,758,711,709,-1,679,775,728,-1,747,775,679,-1,704,771,713,-1,704,750,771,-1,713,625,657,-1,713,631,625,-1,713,637,631,-1,713,641,637,-1,713,638,641,-1,713,648,638,-1,455,571,554,-1,455,456,571,-1,438,403,464,-1,374,403,438,-1,154,160,123,-1,192,160,154,-1,465,494,427,-1,494,465,500,-1,297,106,237,-1,297,196,106,-1,1,37,40,-1,37,1,15,-1,193,104,126,-1,104,193,161,-1,350,147,214,-1,345,147,350,-1,364,473,350,-1,473,364,481,-1,585,484,599,-1,484,585,481,-1,486,534,568,-1,486,485,534,-1,419,412,423,-1,419,420,412,-1,609,581,561,-1,581,609,650,-1,440,419,423,-1,440,457,419,-1,457,525,515,-1,525,457,503,-1,419,485,420,-1,419,497,485,-1,530,495,406,-1,530,525,495,-1,559,561,581,-1,559,517,561,-1,420,486,408,-1,485,486,420,-1,591,481,585,-1,481,591,473,-1,425,350,473,-1,350,425,345,-1,364,484,481,-1,364,368,484,-1,364,214,241,-1,364,350,214,-1,83,107,71,-1,83,91,107,-1,74,137,56,-1,74,138,137,-1,379,221,402,-1,379,237,221,-1,339,402,221,-1,402,339,453,-1,429,427,414,-1,465,427,429,-1,148,177,103,-1,148,225,177,-1,225,111,219,-1,225,148,111,-1,522,511,608,-1,522,540,511,-1,743,756,766,-1,743,758,756,-1,115,64,78,-1,105,64,115,-1,367,317,251,-1,367,387,317,-1,672,731,763,-1,672,668,731,-1,683,674,736,-1,683,655,674,-1,665,772,654,-1,761,772,665,-1,11,84,63,-1,11,20,84,-1,102,139,133,-1,135,139,102,-1,8,63,50,-1,8,11,63,-1,644,548,661,-1,644,529,548,-1,491,353,508,-1,491,366,353,-1,204,73,54,-1,202,73,204,-1,298,526,304,-1,526,298,529,-1,353,483,508,-1,483,353,361,-1,54,194,204,-1,33,194,54,-1,518,304,526,-1,518,288,304,-1,318,348,268,-1,318,313,348,-1,370,322,308,-1,370,289,322,-1,308,334,372,-1,308,314,334,-1,566,498,488,-1,498,566,579,-1,320,279,182,-1,320,328,279,-1,647,547,712,-1,547,647,531,-1,786,799,807,-1,786,806,799,-1,501,639,505,-1,620,639,501,-1,252,389,218,-1,404,389,252,-1,101,2,24,-1,2,101,90,-1,26,100,77,-1,26,28,100,-1,504,377,490,-1,504,346,377,-1,783,621,784,-1,783,624,621,-1,557,701,545,-1,557,697,701,-1,777,624,783,-1,777,630,624,-1,467,346,504,-1,467,331,346,-1,159,97,53,-1,159,220,97,-1,557,351,590,-1,351,557,393,-1,592,699,590,-1,592,694,699,-1,659,467,630,-1,659,470,467,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlulna_Geo_5_865_normalIndex_6()
		{
			int[] value = {586,797,601,-1,586,791,797,-1,190,165,191,-1,144,165,190,-1,7,57,79,-1,0,57,7,-1,586,422,607,-1,586,441,422,-1,191,181,190,-1,191,210,181,-1,622,774,607,-1,622,740,774,-1,448,272,302,-1,411,272,448,-1,6,112,127,-1,14,112,6,-1,156,33,14,-1,156,194,33,-1,698,810,746,-1,800,810,698,-1,210,176,181,-1,188,176,210,-1,729,802,738,-1,796,802,729,-1,595,437,362,-1,595,578,437,-1,398,550,410,-1,550,398,535,-1,688,533,667,-1,533,688,551,-1,629,779,666,-1,707,779,629,-1,647,810,667,-1,803,810,647,-1,388,184,213,-1,184,388,376,-1,560,573,532,-1,560,602,573,-1,512,532,573,-1,512,528,532,-1,700,763,731,-1,768,763,700,-1,745,613,678,-1,600,613,745,-1,192,171,209,-1,171,192,154,-1,342,438,429,-1,374,438,342,-1,217,227,248,-1,217,273,227,-1,175,206,219,-1,180,206,175,-1,78,133,115,-1,78,102,133,-1,752,615,722,-1,752,608,615,-1,232,134,120,-1,232,255,134,-1,726,718,724,-1,726,717,718,-1,276,458,496,-1,358,458,276,-1,140,241,214,-1,241,140,161,-1,62,83,93,-1,62,51,83,-1,294,203,278,-1,294,186,203,-1,274,278,275,-1,274,294,278,-1,139,50,63,-1,139,129,50,-1,109,135,102,-1,135,109,146,-1,78,59,86,-1,78,64,59,-1,643,526,640,-1,526,643,518,-1,67,304,288,-1,145,304,67,-1,808,739,796,-1,808,740,739,-1,692,616,605,-1,692,642,616,-1,508,635,618,-1,635,508,738,-1,792,601,797,-1,792,694,601,-1,45,97,119,-1,97,45,36,-1,55,211,195,-1,211,55,77,-1,477,466,384,-1,558,466,477,-1,498,320,266,-1,498,468,320,-1,391,394,328,-1,355,394,391,-1,157,365,306,-1,157,158,365,-1,39,124,158,-1,124,39,80,-1,314,260,286,-1,260,314,308,-1,378,323,290,-1,323,378,375,-1,452,378,544,-1,378,452,375,-1,463,544,579,-1,463,452,544,-1,538,365,397,-1,541,365,538,-1,182,24,108,-1,182,101,24,-1,279,404,252,-1,404,279,390,-1,125,163,166,-1,125,119,163,-1,45,2,28,-1,32,2,45,-1,100,218,229,-1,90,218,100,-1,389,490,377,-1,389,505,490,-1,784,639,806,-1,639,784,621,-1,701,786,712,-1,786,701,781,-1,53,200,159,-1,85,200,53,-1,310,185,261,-1,310,271,185,-1,202,262,282,-1,262,202,204,-1,176,230,198,-1,230,176,224,-1,169,190,181,-1,169,178,190,-1,664,448,708,-1,448,664,411,-1,734,758,743,-1,758,734,773,-1,644,749,640,-1,753,749,644,-1,740,643,739,-1,643,740,622,-1,26,17,29,-1,26,4,17,-1,451,607,422,-1,622,607,451,-1,79,256,231,-1,79,57,256,-1,231,85,79,-1,231,200,85,-1,345,152,147,-1,345,338,152,-1,714,691,702,-1,651,691,714,-1,54,8,5,-1,73,8,54,-1,219,183,225,-1,183,219,206,-1,336,449,349,-1,336,414,449,-1,137,130,118,-1,130,137,138,-1,223,235,285,-1,223,269,235,-1,623,593,628,-1,623,588,593,-1,705,454,555,-1,705,646,454,-1,634,668,642,-1,634,731,668,-1,614,668,672,-1,614,632,668,-1,669,632,614,-1,461,520,492,-1,520,461,480,-1,403,461,464,-1,403,413,461,-1,104,70,40,-1,104,68,70,-1,66,130,93,-1,130,66,118,-1,523,380,431,-1,523,428,380,-1,761,736,772,-1,761,721,736,-1,603,655,683,-1,603,605,655,-1,426,654,444,-1,426,665,654,-1,804,794,776,-1,804,790,794,-1,661,556,627,-1,661,548,556,-1,670,717,652,-1,670,718,717,-1,625,604,619,-1,631,604,625,-1,600,648,613,-1,648,600,638,-1,713,768,700,-1,768,713,771,-1,646,702,691,-1,646,730,702,-1,695,755,681,-1,755,695,741,-1,660,633,719,-1,660,626,633,-1,587,737,675,-1,737,587,696,-1,99,87,137,-1,105,87,99,-1,95,203,76,-1,95,226,203,-1,9,74,18,-1,74,9,110,-1,65,110,48,-1,110,65,128,-1,315,278,226,-1,315,310,278,-1,317,369,343,-1,317,387,369,-1,347,251,357,-1,251,347,367,-1,248,287,217,-1,280,287,248,-1,301,269,223,-1,337,269,301,-1,356,443,462,-1,356,424,443,-1,341,356,439,-1,337,356,341,-1,565,356,337,-1,273,436,413,-1,285,436,273,-1,171,180,142,-1,180,171,206,-1,403,209,244,-1,403,374,209,-1,209,342,192,-1,209,374,342,-1,160,349,199,-1,160,336,349,-1,349,530,406,-1,349,449,530,-1,221,143,339,-1,103,143,221,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlulna_Geo_5_865_normalIndex_7()
		{
			int[] value = {485,553,534,-1,485,497,553,-1,673,762,720,-1,673,733,762,-1,408,484,368,-1,484,408,486,-1,433,471,460,-1,433,446,471,-1,516,474,450,-1,474,516,537,-1,275,312,274,-1,275,292,312,-1,712,545,701,-1,545,712,547,-1,733,682,787,-1,727,682,733,-1,344,196,297,-1,245,196,344,-1,285,455,436,-1,285,325,455,-1,265,447,493,-1,265,234,447,-1,286,228,295,-1,286,260,228,-1,323,334,300,-1,340,334,323,-1,395,375,452,-1,395,372,375,-1,442,370,463,-1,289,370,442,-1,308,305,260,-1,308,322,305,-1,477,354,437,-1,371,354,477,-1,359,507,510,-1,359,381,507,-1,189,381,359,-1,215,381,189,-1,666,800,698,-1,666,779,800,-1,671,551,688,-1,551,671,535,-1,401,216,207,-1,401,398,216,-1,602,636,707,-1,602,569,636,-1,399,512,509,-1,409,512,399,-1,162,299,233,-1,268,299,162,-1,410,318,277,-1,416,318,410,-1,430,542,528,-1,430,478,542,-1,386,348,352,-1,333,348,386,-1,421,363,313,-1,421,445,363,-1,514,543,560,-1,543,514,527,-1,528,506,532,-1,542,506,528,-1,478,546,542,-1,499,546,478,-1,352,415,386,-1,417,415,352,-1,434,363,445,-1,434,405,363,-1,207,122,98,-1,122,207,216,-1,392,524,321,-1,572,524,392,-1,205,170,149,-1,254,170,205,-1,714,677,662,-1,677,714,658,-1,812,737,696,-1,737,812,787,-1,770,696,680,-1,812,696,770,-1,475,609,562,-1,567,609,475,-1,402,446,379,-1,446,402,450,-1,474,423,471,-1,474,440,423,-1,711,596,709,-1,596,711,570,-1,591,681,549,-1,681,591,695,-1,428,593,447,-1,523,593,428,-1,96,327,234,-1,96,243,327,-1,582,588,623,-1,582,571,588,-1,493,316,265,-1,493,456,316,-1,191,283,311,-1,165,283,191,-1,302,188,210,-1,302,272,188,-1,293,361,353,-1,257,361,293,-1,169,156,117,-1,198,156,169,-1,49,141,178,-1,49,72,141,-1,224,262,230,-1,224,259,262,-1,693,611,723,-1,693,604,611,-1,743,726,734,-1,743,735,726,-1,716,652,717,-1,716,649,652,-1,703,745,732,-1,703,757,745,-1,597,638,600,-1,597,641,638,-1,768,705,763,-1,768,730,705,-1};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlum_Geo_5_871_coordIndex_2()
		{
			int[] value = {609,610,611,-1,612,613,614,-1,615,616,617,-1,612,618,613,-1,601,619,620,-1,344,594,593,-1,344,343,446,-1,596,621,622,-1,593,592,623,-1,590,624,625,-1,626,627,362,-1,589,628,627,-1,441,629,630,-1,631,632,633,-1,634,355,628,-1,361,359,510,-1,360,635,636,-1,585,637,473,-1,464,638,465,-1,583,639,584,-1,640,421,420,-1,573,457,574,-1,641,642,643,-1,643,642,563,-1,644,568,567,-1,645,442,646,-1,647,648,649,-1,486,650,629,-1,651,408,416,-1,561,606,274,-1,652,559,653,-1,197,654,653,-1,414,552,655,-1,656,657,658,-1,659,660,661,-1,402,662,663,-1,664,392,387,-1,396,665,666,-1,547,546,396,-1,542,667,668,-1,374,251,250,-1,538,539,540,-1,669,670,671,-1,539,672,537,-1,673,412,674,-1,537,533,675,-1,527,676,677,-1,678,677,679,-1,680,681,682,-1,683,684,520,-1,519,685,686,-1,687,688,689,-1,690,691,513,-1,431,424,511,-1,692,693,513,-1,426,513,512,-1,425,694,695,-1,556,555,696,-1,433,503,697,-1,500,698,699,-1,204,700,701,-1,483,482,551,-1,351,440,702,-1,703,704,705,-1,706,654,197,-1,367,707,496,-1,708,709,703,-1,425,369,372,-1,489,710,711,-1,712,488,487,-1,564,481,554,-1,339,350,340,-1,713,714,171,-1,715,648,645,-1,582,475,477,-1,716,717,569,-1,464,463,461,-1,718,581,719,-1,465,720,585,-1,469,721,719,-1,410,409,562,-1,583,722,578,-1,723,724,459,-1,649,484,336,-1,639,583,725,-1,726,727,728,-1,455,454,729,-1,730,590,731,-1,445,591,590,-1,646,442,732,-1,733,668,734,-1,668,735,736,-1,404,737,438,-1,665,738,736,-1,433,432,739,-1,508,709,708,-1,503,551,625,-1,740,741,742,-1,743,744,695,-1,469,429,431,-1,426,370,427,-1,425,424,431,-1,745,746,747,-1,704,748,749,-1,750,747,746,-1,718,751,752,-1,753,754,755,-1,414,413,534,-1,674,412,411,-1,756,757,758,-1,402,391,403,-1,738,401,759,-1,394,397,395,-1,760,411,415,-1,400,663,662,-1,543,761,389,-1,657,656,762,-1,499,329,50,-1,536,535,671,-1,538,380,763,-1,375,545,734,-1,380,10,763,-1,691,690,365,-1,509,363,362,-1,636,472,358,-1,356,360,357,-1,764,595,353,-1,515,514,688,-1,765,481,564,-1,514,366,365,-1,447,446,343,-1,763,1,326,-1,338,337,766,-1,334,341,335,-1,327,1,767,-1,768,196,275,-1,769,770,771,-1,772,773,774,-1,775,776,777,-1,778,317,779,-1,12,780,314,-1,311,302,312,-1,781,23,303,-1,308,307,782,-1,783,119,122,-1,301,300,123,-1,25,299,784,-1,300,785,786,-1,159,151,158,-1,133,787,167,-1,97,150,149,-1,788,789,790,-1,791,792,145,-1,288,147,146,-1,283,793,794,-1,164,795,295,-1,280,283,163,-1,796,797,170,-1,798,799,126,-1,310,800,194,-1,801,195,272,-1,800,783,802,-1,214,803,804,-1,805,269,177,-1,806,807,808,-1,253,57,809,-1,810,255,811,-1,544,250,812,-1,107,58,253,-1,813,811,814,-1,246,815,43,-1,52,45,54,-1,248,247,816,-1,249,175,817,-1,176,814,818,-1,819,77,176,-1,247,817,820,-1,80,79,821,-1,822,823,824,-1,825,826,827,-1,828,829,241,-1,830,831,832,-1,833,830,230,-1,229,834,835,-1,836,837,838,-1,21,15,839,-1,839,840,225,-1,31,218,217,-1,841,842,100,-1,713,212,211,-1,109,843,806,-1,844,845,846,-1,52,53,55,-1,19,847,17,-1,838,837,848,-1,184,213,188,-1,849,850,851,-1,850,179,851,-1,852,796,853,-1,854,203,202,-1,19,855,856,-1,18,177,807,-1,175,174,817,-1,166,165,293,-1,793,791,857,-1,858,158,151,-1,859,860,861,-1,862,863,157,-1,289,864,865,-1,181,866,124,-1,125,867,868,-1,850,131,130,-1,12,120,119,-1,869,117,116,-1,786,854,202,-1,870,871,62,-1,872,873,381,-1,98,100,874,-1,219,16,20,-1,183,185,94,-1,93,95,216,-1,875,86,85,-1,36,876,423,-1,290,875,877,-1,87,878,278,-1,78,80,76,-1,879,880,78,-1,144,143,279,-1,405,37,36,-1,69,261,63,-1,61,60,256,-1,254,257,881,-1,882,259,70,-1,883,884,58,-1,260,66,65,-1,885,886,846,-1,846,886,887,-1,243,44,816,-1,381,873,39,-1,810,813,873,-1,888,41,40,-1,2,9,43,-1,92,889,890,-1,35,891,876,-1,183,892,848,-1,213,191,193,-1,893,840,839,-1,30,303,31,-1,26,894,895,-1,25,27,896,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlum_Geo_5_871_coordIndex_3()
		{
			int[] value = {897,23,22,-1,203,898,856,-1,899,6,900,-1,900,901,899,-1,309,11,310,-1,298,5,4,-1,7,137,136,-1,902,903,904,-1,7,853,137,-1,51,50,767,-1,2,1,9,-1,51,767,0,-1,3,5,905,-1,902,904,906,-1,8,7,136,-1,4,907,298,-1,15,20,16,-1,900,908,901,-1,28,29,158,-1,303,909,31,-1,839,14,893,-1,213,184,191,-1,892,219,848,-1,876,36,35,-1,92,910,889,-1,43,815,2,-1,888,40,252,-1,810,811,813,-1,873,813,39,-1,887,844,846,-1,911,912,267,-1,258,260,65,-1,913,258,65,-1,881,818,254,-1,61,256,67,-1,63,62,871,-1,871,69,63,-1,405,914,37,-1,144,279,278,-1,78,76,879,-1,878,915,278,-1,291,290,877,-1,423,405,36,-1,916,917,918,-1,94,892,183,-1,219,20,838,-1,93,216,97,-1,381,436,872,-1,112,111,68,-1,125,798,126,-1,202,123,786,-1,869,919,117,-1,119,13,12,-1,850,920,131,-1,868,798,125,-1,124,182,181,-1,133,167,134,-1,289,288,864,-1,921,794,793,-1,862,282,863,-1,859,861,922,-1,151,153,858,-1,857,921,793,-1,161,96,149,-1,293,148,166,-1,168,170,797,-1,281,162,164,-1,807,855,18,-1,19,18,855,-1,854,298,203,-1,298,898,203,-1,795,896,27,-1,184,188,923,-1,802,783,803,-1,837,191,848,-1,109,806,924,-1,17,144,925,-1,713,173,212,-1,841,99,103,-1,100,99,841,-1,31,909,218,-1,839,225,21,-1,836,838,20,-1,834,926,927,-1,830,832,928,-1,241,240,828,-1,846,845,885,-1,821,825,827,-1,822,824,929,-1,80,821,930,-1,818,931,176,-1,249,817,246,-1,248,816,46,-1,54,53,52,-1,815,246,248,-1,813,814,249,-1,64,881,932,-1,58,57,253,-1,250,40,812,-1,255,254,811,-1,809,111,253,-1,913,933,71,-1,56,267,912,-1,924,806,808,-1,177,925,805,-1,804,189,214,-1,800,802,272,-1,801,272,273,-1,306,310,194,-1,17,847,142,-1,796,934,797,-1,163,162,280,-1,164,295,281,-1,141,865,864,-1,857,791,145,-1,790,935,788,-1,133,936,922,-1,299,25,896,-1,300,786,123,-1,30,25,784,-1,301,123,121,-1,937,783,122,-1,308,782,315,-1,303,311,781,-1,11,13,310,-1,779,938,778,-1,775,939,776,-1,940,772,774,-1,769,941,770,-1,768,275,942,-1,327,767,328,-1,943,944,945,-1,338,766,347,-1,333,946,486,-1,763,10,1,-1,690,514,365,-1,514,428,688,-1,764,353,352,-1,358,360,636,-1,365,947,691,-1,407,406,948,-1,380,381,10,-1,375,734,376,-1,763,326,538,-1,536,671,670,-1,949,699,698,-1,50,950,499,-1,497,951,498,-1,388,543,389,-1,662,401,400,-1,401,662,437,-1,738,665,401,-1,402,952,391,-1,953,762,954,-1,674,411,955,-1,534,552,414,-1,755,956,753,-1,753,957,754,-1,752,958,718,-1,746,651,750,-1,651,746,959,-1,749,705,704,-1,745,507,746,-1,431,694,425,-1,469,431,470,-1,695,506,743,-1,740,697,741,-1,708,434,508,-1,736,666,665,-1,737,960,438,-1,736,548,668,-1,733,735,668,-1,442,961,732,-1,730,445,590,-1,439,730,731,-1,729,962,455,-1,963,448,711,-1,964,965,584,-1,336,966,649,-1,459,967,723,-1,562,564,410,-1,573,572,575,-1,719,581,469,-1,720,637,585,-1,464,461,968,-1,716,569,568,-1,647,717,716,-1,713,505,714,-1,554,553,564,-1,489,711,450,-1,454,969,970,-1,425,491,369,-1,708,703,971,-1,496,368,367,-1,607,560,972,-1,197,199,706,-1,973,703,705,-1,707,367,974,-1,204,701,205,-1,697,434,433,-1,492,556,696,-1,425,695,491,-1,430,958,959,-1,512,371,426,-1,511,510,431,-1,513,426,690,-1,688,496,689,-1,527,526,676,-1,975,976,977,-1,537,531,533,-1,978,673,674,-1,537,478,539,-1,951,669,671,-1,380,538,540,-1,739,432,979,-1,250,375,374,-1,548,542,668,-1,377,380,540,-1,396,666,547,-1,396,399,665,-1,659,760,660,-1,414,655,980,-1,653,981,197,-1,653,495,652,-1,276,561,274,-1,416,750,651,-1,982,983,984,-1,452,985,453,-1,986,487,450,-1,629,339,486,-1,565,645,646,-1,567,987,644,-1,641,988,642,-1,640,420,719,-1,720,465,638,-1,473,472,463,-1,635,462,636,-1,989,631,633,-1,441,339,629,-1,589,588,628,-1,362,364,626,-1,731,590,625,-1,593,623,990,-1,991,626,364,-1,621,626,622,-1,446,597,344,-1,344,599,594,-1,601,620,602,-1,612,600,618,-1,615,605,616,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlum_Geo_5_871_coordIndex_4()
		{
			int[] value = {610,992,611,-1,608,993,606,-1,600,994,601,-1,344,597,598,-1,622,626,991,-1,595,991,364,-1,594,995,592,-1,590,494,624,-1,730,439,589,-1,587,588,439,-1,355,357,628,-1,639,728,584,-1,580,996,578,-1,576,466,577,-1,459,458,967,-1,567,569,571,-1,485,715,565,-1,997,985,452,-1,559,652,560,-1,558,652,495,-1,557,493,555,-1,554,655,552,-1,550,483,551,-1,960,656,761,-1,952,998,999,-1,548,543,542,-1,378,546,379,-1,375,250,544,-1,542,388,739,-1,1000,395,398,-1,541,378,377,-1,672,539,373,-1,535,537,672,-1,978,674,1001,-1,675,478,537,-1,1002,530,413,-1,536,976,975,-1,531,1003,532,-1,529,1004,530,-1,384,500,382,-1,525,1005,526,-1,523,679,524,-1,1006,330,518,-1,516,366,514,-1,516,1007,366,-1,513,693,363,-1,509,361,510,-1,506,508,743,-1,740,743,508,-1,211,505,713,-1,553,410,564,-1,502,551,503,-1,564,563,765,-1,427,370,368,-1,492,696,369,-1,489,450,487,-1,946,484,486,-1,484,649,485,-1,483,554,481,-1,716,568,644,-1,565,715,645,-1,475,721,476,-1,474,358,472,-1,466,468,577,-1,465,585,463,-1,462,987,460,-1,467,570,468,-1,459,574,457,-1,965,582,584,-1,456,969,454,-1,453,1008,451,-1,711,448,450,-1,591,445,447,-1,961,442,444,-1,441,586,439,-1,997,452,451,-1,738,548,736,-1,381,1009,435,-1,434,708,432,-1,1010,506,695,-1,428,690,426,-1,372,371,424,-1,430,694,431,-1,957,1011,1012,-1,422,406,405,-1,419,1013,420,-1,416,418,750,-1,411,413,414,-1,410,416,408,-1,407,914,405,-1,665,399,401,-1,397,1014,398,-1,396,546,394,-1,385,387,999,-1,386,664,387,-1,656,960,737,-1,536,670,976,-1,377,1009,381,-1,379,1009,377,-1,374,376,1015,-1,373,538,326,-1,370,426,371,-1,369,696,367,-1,331,366,1007,-1,363,693,364,-1,361,509,362,-1,463,472,636,-1,347,766,348,-1,690,428,514,-1,341,334,339,-1,336,484,337,-1,484,946,337,-1,330,1006,331,-1,328,767,50,-1,1016,323,325,-1,320,322,1017,-1,322,1018,1019,-1,317,319,779,-1,308,315,309,-1,309,780,12,-1,312,302,313,-1,306,308,310,-1,306,1020,307,-1,304,937,122,-1,30,784,302,-1,784,299,301,-1,296,298,854,-1,299,896,1021,-1,223,894,1022,-1,28,863,295,-1,159,152,151,-1,153,292,858,-1,133,922,787,-1,292,294,293,-1,291,1023,155,-1,285,287,1024,-1,847,286,285,-1,284,793,283,-1,280,162,281,-1,118,168,797,-1,138,169,1025,-1,850,849,1026,-1,868,799,798,-1,129,1027,1028,-1,277,87,278,-1,275,801,276,-1,272,802,270,-1,197,981,270,-1,269,805,78,-1,1029,262,264,-1,110,67,257,-1,257,254,110,-1,249,39,813,-1,114,1030,253,-1,250,252,40,-1,1031,108,107,-1,249,43,39,-1,45,44,209,-1,246,817,247,-1,176,77,76,-1,239,1032,240,-1,832,239,1033,-1,238,1034,236,-1,16,219,218,-1,225,840,226,-1,224,94,93,-1,220,222,24,-1,218,909,1035,-1,219,892,217,-1,923,98,185,-1,214,189,188,-1,211,37,914,-1,210,843,109,-1,48,47,845,-1,209,44,207,-1,206,1036,204,-1,806,855,807,-1,92,187,910,-1,197,271,198,-1,191,837,192,-1,187,106,105,-1,184,923,185,-1,850,130,179,-1,849,851,1037,-1,17,925,177,-1,907,898,298,-1,176,245,174,-1,171,173,713,-1,164,1038,1025,-1,163,1038,164,-1,152,160,96,-1,158,858,156,-1,154,86,155,-1,152,294,153,-1,150,155,148,-1,144,17,142,-1,788,1039,787,-1,141,864,139,-1,138,1040,136,-1,861,787,922,-1,936,1041,1042,-1,127,129,1028,-1,126,1043,124,-1,123,305,122,-1,121,122,119,-1,1044,116,118,-1,42,114,115,-1,113,114,111,-1,110,112,68,-1,841,104,106,-1,304,806,843,-1,102,210,103,-1,98,190,99,-1,96,97,149,-1,838,848,219,-1,94,185,95,-1,891,90,92,-1,215,88,277,-1,87,277,88,-1,86,154,84,-1,83,1045,81,-1,82,918,83,-1,78,805,79,-1,75,879,76,-1,1046,1047,1048,-1,69,71,261,-1,1049,61,68,-1,64,66,1050,-1,881,931,818,-1,880,879,263,-1,61,63,59,-1,884,56,58,-1,1047,267,266,-1,52,950,50,-1,44,46,816,-1,43,9,38,-1,42,812,40,-1,10,381,39,-1,33,14,16,-1,1035,909,303,-1,26,895,29,-1,23,781,24,-1,836,20,21,-1,14,839,15,-1,9,10,38,-1,852,853,905,-1,8,900,6,-1,902,906,1051,-1,0,767,1,-1,34,893,14,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlum_Geo_5_871_coordIndex_5()
		{
			int[] value = {893,34,927,-1,903,136,904,-1,903,8,136,-1,6,3,7,-1,6,899,3,-1,1052,1053,1054,-1,1052,1055,1053,-1,238,940,1056,-1,772,940,238,-1,1057,240,1058,-1,1057,828,240,-1,1059,1060,1061,-1,1060,1059,232,-1,23,1035,303,-1,23,897,1035,-1,200,213,193,-1,214,213,200,-1,0,815,248,-1,0,2,815,-1,115,873,872,-1,115,810,873,-1,209,206,1062,-1,209,208,206,-1,912,1049,809,-1,912,870,1049,-1,260,1063,66,-1,260,1064,1063,-1,259,1064,260,-1,882,1064,259,-1,932,60,1065,-1,60,932,256,-1,59,71,933,-1,59,261,71,-1,1050,1063,819,-1,1063,1050,66,-1,1066,918,82,-1,916,918,1066,-1,90,35,878,-1,35,90,891,-1,89,842,1067,-1,89,88,842,-1,154,216,84,-1,154,97,216,-1,154,150,97,-1,98,216,95,-1,98,874,216,-1,255,112,110,-1,113,112,255,-1,1068,1043,126,-1,1069,1043,1068,-1,132,1028,1027,-1,132,131,1028,-1,1070,1071,296,-1,1070,1072,1071,-1,1043,182,124,-1,1073,182,1043,-1,157,28,158,-1,157,863,28,-1,935,156,1074,-1,935,1075,156,-1,86,290,155,-1,86,875,290,-1,860,146,1076,-1,146,860,1024,-1,1077,825,1078,-1,72,825,1077,-1,852,5,298,-1,852,905,5,-1,1079,128,1080,-1,129,128,1079,-1,1073,1081,1082,-1,1083,1081,1073,-1,32,217,224,-1,31,217,32,-1,886,1084,887,-1,1085,1084,886,-1,844,48,845,-1,844,1086,48,-1,937,102,804,-1,937,304,102,-1,1031,1087,186,-1,1087,1031,888,-1,218,1088,33,-1,1035,1088,218,-1,1053,1089,1090,-1,1089,1053,1055,-1,1091,226,840,-1,1091,1092,226,-1,1093,1092,1094,-1,1092,1093,1095,-1,833,1096,1097,-1,1096,833,230,-1,221,1097,1098,-1,221,236,1097,-1,1033,928,832,-1,928,1033,233,-1,831,1099,832,-1,1056,1099,831,-1,829,1100,241,-1,1100,829,1101,-1,1102,172,1103,-1,172,1102,173,-1,277,1104,85,-1,1104,277,279,-1,823,1102,824,-1,1102,823,1105,-1,827,823,822,-1,827,826,823,-1,821,1106,930,-1,821,827,1106,-1,1106,817,174,-1,1106,820,817,-1,249,176,175,-1,814,176,249,-1,254,814,811,-1,814,254,818,-1,1030,107,253,-1,1031,107,1030,-1,808,265,924,-1,265,808,266,-1,783,804,803,-1,783,937,804,-1,194,1020,306,-1,196,1020,194,-1,1079,867,1107,-1,1079,868,867,-1,799,1108,1109,-1,799,1080,1108,-1,298,1110,852,-1,297,1110,298,-1,182,1082,180,-1,182,1073,1082,-1,847,904,286,-1,847,906,904,-1,140,1025,1038,-1,140,138,1025,-1,794,865,141,-1,794,921,865,-1,285,1045,847,-1,285,81,1045,-1,789,792,790,-1,792,789,1076,-1,1066,135,291,-1,1041,135,1066,-1,165,1074,292,-1,1039,1074,165,-1,919,896,795,-1,869,896,919,-1,1111,1109,1108,-1,1111,1112,1109,-1,1071,297,296,-1,1071,1113,297,-1,1114,128,127,-1,1114,1115,128,-1,120,301,121,-1,313,301,120,-1,311,1116,1117,-1,1116,311,312,-1,1118,317,778,-1,1118,1119,317,-1,1120,1121,1122,-1,1121,1120,1123,-1,1124,1125,1126,-1,1125,1124,1127,-1,1116,776,1128,-1,777,776,1116,-1,939,1129,1130,-1,1131,1129,939,-1,1132,773,772,-1,1133,773,1132,-1,1134,1130,1129,-1,1134,1135,1130,-1,1136,774,1137,-1,1138,774,1136,-1,1126,1129,1139,-1,1134,1129,1126,-1,321,941,1127,-1,941,321,320,-1,320,770,941,-1,1140,770,320,-1,1141,1142,1143,-1,1141,1140,1142,-1,938,942,1144,-1,938,768,942,-1,1144,1145,1146,-1,1147,1145,1144,-1,1141,1148,1149,-1,1148,1141,1150,-1,1151,1152,1153,-1,1151,1154,1152,-1,771,1155,769,-1,771,1156,1155,-1,1157,1158,1159,-1,1157,1160,1158,-1,1160,1161,1162,-1,1157,1161,1160,-1,992,323,1163,-1,323,992,324,-1,944,1164,945,-1,944,1165,1164,-1,345,335,945,-1,335,345,348,-1,959,1010,430,-1,746,1010,959,-1,1166,1167,1005,-1,1166,1168,1167,-1,1169,1170,1171,-1,1170,1169,1172,-1,684,1173,680,-1,684,683,1173,-1,1006,517,947,-1,1006,518,517,-1,973,1174,1175,-1,1174,973,705,-1,734,435,733,-1,545,435,734,-1,499,535,329,-1,499,671,535,-1,384,1176,500,-1,384,714,1176,-1,700,1177,701,-1,700,1178,1177,-1,543,960,761,-1,543,549,960,-1,400,998,663,-1,400,1179,998,-1,1000,385,1179,-1,1000,398,385,-1,1180,757,417,-1,757,1180,758,-1,421,1012,419,-1,421,1181,1012,-1,418,747,750,-1,748,747,418,-1,748,745,747,-1,704,745,748,-1,752,419,1182,-1,752,1013,419,-1,752,751,1013,-1,744,740,742,-1,743,740,744,-1,745,508,507,-1,745,709,508,-1,545,436,435,-1,436,545,544,-1,732,1183,646,-1,1183,732,1184,-1,983,1185,1186,-1,983,963,1185,-1,1187,1188,1189,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlum_Geo_5_871_coordIndex_6()
		{
			int[] value = {1190,1188,1187,-1,963,710,1185,-1,963,711,710,-1,728,964,584,-1,727,964,728,-1,724,649,966,-1,724,723,649,-1,579,722,1191,-1,722,579,578,-1,1011,562,409,-1,957,562,1011,-1,957,753,562,-1,575,457,573,-1,457,575,577,-1,1192,466,1193,-1,1192,467,466,-1,574,641,572,-1,988,641,574,-1,582,722,583,-1,582,477,722,-1,645,647,716,-1,648,647,645,-1,481,349,482,-1,349,481,765,-1,984,1186,1194,-1,1186,984,983,-1,962,1195,1183,-1,962,729,1195,-1,986,1190,1196,-1,986,1188,1190,-1,973,971,703,-1,1197,971,973,-1,695,492,491,-1,492,695,744,-1,654,707,974,-1,706,707,654,-1,199,689,706,-1,199,1089,689,-1,494,342,558,-1,591,342,494,-1,342,591,447,-1,1084,700,204,-1,1084,1198,700,-1,1175,1199,1200,-1,1175,1174,1199,-1,708,979,432,-1,708,971,979,-1,506,746,507,-1,1010,746,506,-1,352,685,764,-1,352,686,685,-1,428,496,688,-1,428,427,496,-1,1201,1202,1203,-1,1202,1201,1052,-1,1204,1095,1205,-1,1206,1095,1204,-1,1207,520,1208,-1,1207,683,520,-1,1209,680,1173,-1,1209,1210,680,-1,1210,681,680,-1,1210,1211,681,-1,1212,1213,1214,-1,522,1213,1212,-1,1211,1215,1216,-1,1217,1215,1211,-1,679,676,1171,-1,679,677,676,-1,1215,525,1216,-1,1215,1218,525,-1,505,1219,1220,-1,504,1219,505,-1,417,948,418,-1,417,757,948,-1,532,756,529,-1,756,532,1219,-1,975,537,536,-1,975,531,537,-1,675,528,1221,-1,675,533,528,-1,479,1002,673,-1,1002,479,1221,-1,978,394,541,-1,978,397,394,-1,498,671,499,-1,671,498,951,-1,667,1015,376,-1,667,979,1015,-1,659,393,1222,-1,659,661,393,-1,403,737,404,-1,403,954,737,-1,762,661,660,-1,661,762,953,-1,660,657,762,-1,660,980,657,-1,980,550,657,-1,980,655,550,-1,276,559,561,-1,559,276,1223,-1,453,1224,1194,-1,453,985,1224,-1,450,1188,986,-1,450,449,1188,-1,565,1183,1195,-1,565,646,1183,-1,1225,650,566,-1,650,1225,712,-1,570,569,967,-1,571,569,570,-1,490,644,635,-1,644,490,716,-1,562,956,563,-1,562,753,956,-1,1226,641,643,-1,1226,1227,641,-1,1191,464,968,-1,638,464,1191,-1,356,635,360,-1,356,490,635,-1,961,355,1228,-1,355,961,444,-1,631,1184,732,-1,631,989,1184,-1,588,634,628,-1,587,634,588,-1,1229,1230,1231,-1,1230,1229,1187,-1,626,589,627,-1,621,589,626,-1,1232,1233,1234,-1,1232,1235,1233,-1,622,1236,596,-1,622,1237,1236,-1,601,608,619,-1,601,994,608,-1,1238,995,1234,-1,995,1238,1239,-1,1240,1233,1235,-1,1241,1233,1240,-1,1242,1236,1243,-1,1236,1242,598,-1,1244,1235,1232,-1,1244,1245,1235,-1,1246,1247,1248,-1,1247,1246,1249,-1,1250,1251,1248,-1,1251,1250,1172,-1,1252,1248,1251,-1,1248,1252,1246,-1,1253,1254,1255,-1,1254,1253,1256,-1,1257,616,1258,-1,617,616,1257,-1,1259,1260,615,-1,1260,1259,1261,-1,1262,1259,1263,-1,1264,1259,1262,-1,600,1265,994,-1,1265,600,1266,-1,1267,1145,1266,-1,1268,1145,1267,-1,1269,1148,1262,-1,1148,1269,1270,-1,1271,1272,1273,-1,1272,1271,1274,-1,1275,1276,1277,-1,1275,1278,1276,-1,1279,1280,1281,-1,1282,1280,1279,-1,609,1283,1284,-1,609,611,1283,-1,1163,1285,1286,-1,1163,1287,1285,-1,1288,610,609,-1,1288,1289,610,-1,1285,1270,1269,-1,1285,1287,1270,-1,1286,1283,611,-1,1283,1286,1278,-1,1282,1284,1273,-1,1282,1279,1284,-1,1277,1290,1257,-1,1277,1276,1290,-1,1274,1275,1256,-1,1274,1271,1275,-1,1148,1264,1262,-1,1150,1264,1148,-1,1145,1265,1266,-1,1265,1145,1147,-1,993,994,1265,-1,993,608,994,-1,1261,1264,1291,-1,1261,1259,1264,-1,1263,615,617,-1,615,1263,1259,-1,1245,1240,1235,-1,1240,1245,1255,-1,1251,1272,1252,-1,1272,1251,1292,-1,1293,1255,1245,-1,1293,1253,1255,-1,1248,1294,1250,-1,1294,1248,1247,-1,1245,1242,1293,-1,1242,1245,1244,-1,1243,1237,1249,-1,1237,1243,1236,-1,1258,1241,1240,-1,616,1241,1258,-1,1239,592,995,-1,620,592,1239,-1,619,607,623,-1,608,607,619,-1,598,596,1236,-1,597,596,598,-1,342,593,990,-1,342,344,593,-1,589,445,730,-1,445,589,621,-1,1295,1189,1296,-1,1295,1297,1189,-1,629,1190,630,-1,629,1196,1190,-1,964,1181,421,-1,1181,964,727,-1,576,996,580,-1,1298,996,576,-1,458,570,967,-1,458,468,570,-1,987,635,644,-1,987,462,635,-1,486,566,650,-1,486,485,566,-1,488,970,489,-1,1299,970,488,-1,633,985,989,-1,633,1224,985,-1,1008,1194,1186,-1,1008,453,1194,-1,623,972,990,-1,972,623,607,-1,557,494,493,-1,557,624,494,-1,658,550,502,-1,657,550,658,-1,739,667,542,-1,667,739,979,-1,541,546,378,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlum_Geo_5_871_coordIndex_7()
		{
			int[] value = {394,546,541,-1,978,540,480,-1,540,978,541,-1,478,1221,479,-1,478,675,1221,-1,673,413,412,-1,673,1002,413,-1,531,1300,1003,-1,975,1300,531,-1,758,529,756,-1,758,1004,529,-1,698,1300,949,-1,698,1176,1300,-1,1176,698,500,-1,504,756,1219,-1,407,756,504,-1,525,1166,1005,-1,1218,1166,525,-1,1301,1214,1213,-1,1214,1301,1302,-1,523,678,679,-1,682,678,523,-1,1212,1303,1304,-1,1212,1214,1303,-1,1208,522,1212,-1,520,522,1208,-1,1205,1093,1305,-1,1095,1093,1205,-1,1204,1306,1007,-1,1204,1205,1306,-1,1089,687,689,-1,1055,687,1089,-1,1307,513,691,-1,513,1307,692,-1,709,704,703,-1,745,704,709,-1,504,914,407,-1,914,504,211,-1,741,624,557,-1,741,625,624,-1,497,1308,1309,-1,1308,497,1310,-1,653,974,495,-1,974,653,654,-1,555,495,974,-1,555,493,495,-1,1200,1311,1175,-1,1311,1200,1312,-1,1230,633,632,-1,1297,633,1230,-1,487,1196,712,-1,487,986,1196,-1,997,989,985,-1,997,1184,989,-1,480,673,978,-1,479,673,480,-1,572,1227,1298,-1,641,1227,572,-1,637,474,473,-1,637,470,474,-1,470,637,471,-1,1193,460,1192,-1,460,1193,1313,-1,727,754,1181,-1,727,726,754,-1,1185,969,456,-1,1185,710,969,-1,731,440,439,-1,731,702,440,-1,1190,1229,630,-1,1190,1187,1229,-1,982,963,983,-1,982,448,963,-1,962,1184,997,-1,1184,962,1183,-1,419,1011,1182,-1,1011,419,1012,-1,948,748,418,-1,749,748,948,-1,957,1181,754,-1,1181,957,1012,-1,1314,1014,1001,-1,386,1014,1314,-1,952,663,998,-1,952,402,663,-1,400,1000,1179,-1,399,1000,400,-1,760,955,411,-1,955,760,659,-1,385,998,1179,-1,385,999,998,-1,501,700,1198,-1,700,501,1178,-1,1315,714,384,-1,1315,171,714,-1,699,977,1316,-1,699,949,977,-1,1311,1015,1197,-1,1311,374,1015,-1,705,422,1174,-1,422,705,749,-1,372,368,370,-1,368,372,369,-1,1307,519,686,-1,1307,517,519,-1,1173,1207,1317,-1,683,1207,1173,-1,526,1167,1281,-1,526,1005,1167,-1,1172,1301,1170,-1,1301,1172,1250,-1,687,1052,1201,-1,687,1055,1052,-1,335,766,337,-1,335,348,766,-1,336,1164,1165,-1,336,338,1164,-1,331,947,365,-1,1006,947,331,-1,1162,1168,1057,-1,1162,1289,1168,-1,1318,1163,323,-1,1318,1287,1163,-1,325,1161,1157,-1,325,324,1161,-1,1319,1160,1058,-1,1160,1319,1158,-1,1156,1151,1155,-1,1156,1016,1151,-1,1136,1154,1159,-1,1152,1154,1136,-1,1148,1320,1149,-1,1270,1320,1148,-1,1145,1321,1146,-1,1321,1145,1268,-1,1144,778,938,-1,1146,778,1144,-1,1140,1149,770,-1,1149,1140,1141,-1,1019,1017,322,-1,1017,1019,1142,-1,1127,769,1125,-1,769,1127,941,-1,1322,1135,1134,-1,1153,1135,1322,-1,773,1137,774,-1,1323,1137,773,-1,1134,1125,1322,-1,1134,1126,1125,-1,776,1130,1324,-1,939,1130,776,-1,1128,1117,1116,-1,1128,1133,1117,-1,1121,1126,1139,-1,1126,1121,1124,-1,782,1120,1122,-1,1325,1120,782,-1,768,779,319,-1,768,938,779,-1,775,309,316,-1,775,780,309,-1,1117,781,311,-1,1326,781,1117,-1,305,806,304,-1,305,201,806,-1,1327,1070,1328,-1,1072,1070,1327,-1,1021,300,299,-1,300,1021,785,-1,1068,1112,1044,-1,1068,1109,1112,-1,896,116,1329,-1,869,116,896,-1,295,27,26,-1,295,795,27,-1,858,1074,156,-1,1074,858,292,-1,1024,859,285,-1,1024,860,859,-1,1045,142,847,-1,1045,83,142,-1,164,919,795,-1,168,919,164,-1,168,117,919,-1,170,138,796,-1,138,170,169,-1,934,1083,797,-1,934,1081,1083,-1,1113,1110,297,-1,1113,1037,1110,-1,180,178,181,-1,179,178,180,-1,273,276,801,-1,1223,276,273,-1,808,268,266,-1,808,269,268,-1,266,262,1047,-1,266,268,262,-1,1029,1047,262,-1,1048,1047,1029,-1,911,69,871,-1,911,1046,69,-1,882,264,1064,-1,882,1029,264,-1,888,1030,41,-1,888,1031,1030,-1,247,243,816,-1,247,244,243,-1,244,247,929,-1,74,823,826,-1,1105,823,74,-1,35,915,878,-1,35,73,915,-1,1105,173,1102,-1,173,1105,212,-1,829,1215,1101,-1,829,1218,1215,-1,1032,832,1099,-1,1032,239,832,-1,1215,1330,1101,-1,1330,1215,1217,-1,1034,1097,236,-1,1097,1034,833,-1,234,1331,235,-1,234,1330,1331,-1,235,1332,1060,-1,235,1331,1332,-1,230,1059,1096,-1,230,232,1059,-1,1095,226,1092,-1,226,1095,1206,-1,1202,1054,227,-1,1052,1054,1202,-1,835,33,1088,-1,835,34,33,-1,88,100,842,-1,100,88,874,-1,1031,105,108,-1,1031,186,105,-1,1199,889,1200,-1,1199,890,889,-1,1036,1084,204,-1,1036,887,1084,-1,1310,52,55,-1,1310,950,52,-1,1090,192,837,-1,1090,198,192,-1,272,194,800,-1,194,272,195,-1,804,101,189,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlum_Geo_5_871_coordIndex_8()
		{
			int[] value = {101,804,102,-1,103,104,841,-1,104,103,210,-1,224,892,94,-1,217,892,224,-1,1072,1115,1114,-1,1072,1327,1115,-1,1037,1082,1081,-1,1037,851,1082,-1,1080,1115,1108,-1,128,1115,1080,-1,1025,168,164,-1,168,1025,169,-1,1039,167,787,-1,1039,165,167,-1,1024,288,146,-1,288,1024,287,-1,160,29,895,-1,160,159,29,-1,152,293,294,-1,161,293,152,-1,161,148,293,-1,148,161,149,-1,142,917,143,-1,142,918,917,-1,142,83,918,-1,1039,935,1074,-1,788,935,1039,-1,138,139,1040,-1,138,140,139,-1,135,936,133,-1,936,135,1041,-1,178,132,1333,-1,178,130,132,-1,1334,1072,1114,-1,1072,1334,1071,-1,1333,1027,1107,-1,1333,132,1027,-1,1069,1044,118,-1,1068,1044,1069,-1,436,812,872,-1,544,812,436,-1,108,104,109,-1,104,108,105,-1,210,304,843,-1,102,304,210,-1,1067,90,89,-1,90,1067,91,-1,89,878,87,-1,878,89,90,-1,916,291,877,-1,916,1066,291,-1,73,1077,915,-1,72,1077,73,-1,259,71,70,-1,258,71,259,-1,258,913,71,-1,809,68,111,-1,809,1049,68,-1,933,60,59,-1,933,1065,60,-1,912,57,56,-1,912,809,57,-1,54,1062,55,-1,54,209,1062,-1,243,207,44,-1,243,242,207,-1,1087,889,910,-1,1087,1335,889,-1,1035,228,1088,-1,1035,22,228,-1,897,22,1035,-1,1060,231,235,-1,1060,232,231,-1,1056,1336,1099,-1,940,1336,1056,-1,1057,1166,828,-1,1057,1168,1166,-1,874,215,216,-1,215,874,88,-1,3,901,902,-1,899,901,3,-1,902,4,3,-1,902,1051,4,-1,1337,927,926,-1,1337,893,927,-1,908,8,903,-1,908,900,8,-1,904,1040,286,-1,1040,904,136,-1,907,1051,19,-1,4,1051,907,-1,836,1054,1053,-1,21,1054,836,-1,772,237,1132,-1,772,238,237,-1,1058,1032,1319,-1,1058,240,1032,-1,1326,24,781,-1,24,1326,220,-1,1059,1091,1337,-1,1061,1091,1059,-1,30,1022,25,-1,30,32,1022,-1,835,927,34,-1,835,834,927,-1,872,42,115,-1,42,872,812,-1,46,52,51,-1,46,45,52,-1,1103,885,845,-1,1103,172,885,-1,208,1036,206,-1,208,1086,1036,-1,1049,62,61,-1,870,62,1049,-1,1064,75,1063,-1,1064,264,75,-1,881,1050,931,-1,881,64,1050,-1,65,932,1065,-1,65,64,932,-1,70,1046,1048,-1,69,1046,70,-1,75,819,1063,-1,75,77,819,-1,1078,805,925,-1,805,1078,79,-1,85,215,277,-1,85,84,215,-1,890,423,876,-1,423,890,1199,-1,85,877,875,-1,85,1104,877,-1,103,190,101,-1,190,103,99,-1,841,1067,842,-1,841,106,1067,-1,113,810,115,-1,113,255,810,-1,866,125,124,-1,866,867,125,-1,127,131,920,-1,131,127,1028,-1,786,296,854,-1,296,786,1070,-1,936,859,922,-1,936,1042,859,-1,157,1075,862,-1,1075,157,156,-1,289,145,147,-1,857,145,289,-1,791,284,1338,-1,791,793,284,-1,141,1038,163,-1,141,140,1038,-1,861,1076,789,-1,1076,861,860,-1,886,1315,1085,-1,886,885,1315,-1,796,137,853,-1,796,138,137,-1,1107,129,1079,-1,1027,129,1107,-1,1083,1043,1069,-1,1083,1073,1043,-1,1071,1026,1113,-1,1071,1334,1026,-1,186,910,187,-1,910,186,1087,-1,188,98,923,-1,190,98,188,-1,192,271,200,-1,271,192,198,-1,1090,199,198,-1,1090,1089,199,-1,310,783,800,-1,310,119,783,-1,13,119,310,-1,205,1062,206,-1,1308,1062,205,-1,1086,207,48,-1,208,207,1086,-1,252,1312,1335,-1,251,1312,252,-1,1022,224,223,-1,224,1022,32,-1,222,22,24,-1,222,228,22,-1,21,227,1054,-1,21,225,227,-1,237,221,220,-1,237,236,221,-1,1091,1094,1092,-1,1091,1061,1094,-1,1093,1332,1339,-1,1094,1332,1093,-1,1096,1098,1097,-1,926,1098,1096,-1,231,233,235,-1,231,928,233,-1,1098,222,221,-1,229,222,1098,-1,1100,233,1033,-1,233,1100,234,-1,1056,1034,238,-1,1056,831,1034,-1,241,1033,239,-1,1033,241,1100,-1,73,37,74,-1,73,35,37,-1,1103,824,1102,-1,1103,1340,824,-1,244,49,242,-1,49,244,1340,-1,827,820,1106,-1,827,822,820,-1,930,174,245,-1,1106,174,930,-1,42,1030,114,-1,1030,42,41,-1,265,56,884,-1,56,265,267,-1,924,883,109,-1,884,924,265,-1,884,883,924,-1,981,273,270,-1,981,1223,273,-1,1080,868,1079,-1,1080,799,868,-1,1334,850,1026,-1,1334,920,850,-1,1069,797,1083,-1,1069,118,797,-1,1110,1081,934,-1,1037,1081,1110,-1,163,794,141,-1,794,163,283,-1,284,282,862,-1,284,280,282,-1,1042,285,859,-1,82,285,1042,-1,82,81,285,-1,791,790,792,-1,791,1338,790,-1,143,1104,279,-1,143,917,1104,-1,148,1023,166,-1,155,1023,148,-1,223,96,160,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getlum_Geo_5_871_coordIndex_9()
		{
			int[] value = {223,93,96,-1,895,223,160,-1,223,895,894,-1,1329,1021,896,-1,1021,1329,1341,-1,1044,1329,116,-1,1044,1112,1329,-1,1328,1111,1327,-1,1328,1341,1111,-1,301,302,784,-1,302,301,313,-1,1121,1342,1122,-1,1121,1139,1342,-1,313,12,314,-1,313,120,12,-1,777,312,314,-1,777,1116,312,-1,1020,318,307,-1,318,1020,319,-1,318,1119,1325,-1,1119,318,317,-1,1118,1123,1120,-1,1123,1118,1018,-1,316,1342,1131,-1,315,1342,316,-1,1139,1131,1342,-1,1139,1129,1131,-1,1133,1323,773,-1,1128,1323,1133,-1,1135,1324,1130,-1,1135,1343,1324,-1,1152,1137,1343,-1,1136,1137,1152,-1,1123,1124,1121,-1,1123,1344,1124,-1,321,1018,322,-1,321,1123,1018,-1,321,1344,1123,-1,1017,1140,320,-1,1142,1140,1017,-1,1143,1019,1321,-1,1143,1142,1019,-1,1345,1144,942,-1,1345,1147,1144,-1,1143,1150,1141,-1,1143,1346,1150,-1,1155,1153,1322,-1,1155,1151,1153,-1,1158,1336,1138,-1,1319,1336,1158,-1,325,1159,1154,-1,325,1157,1159,-1,1320,1156,771,-1,1320,1318,1156,-1,1057,1160,1162,-1,1057,1058,1160,-1,1161,992,610,-1,324,992,1161,-1,944,765,563,-1,765,944,943,-1,337,333,335,-1,946,333,337,-1,346,945,1164,-1,945,346,345,-1,640,964,421,-1,640,965,964,-1,765,350,349,-1,765,340,350,-1,1347,1294,1348,-1,1347,1302,1294,-1,1171,1280,1169,-1,1171,676,1280,-1,1239,618,1349,-1,1239,1238,618,-1,332,1007,1306,-1,332,331,1007,-1,360,361,357,-1,359,361,360,-1,693,353,364,-1,692,353,693,-1,692,354,353,-1,696,974,367,-1,974,696,555,-1,373,328,672,-1,373,327,328,-1,1009,733,435,-1,1009,379,733,-1,701,669,1309,-1,701,1177,669,-1,759,960,549,-1,759,438,960,-1,1314,664,386,-1,1314,1222,664,-1,1222,392,664,-1,392,1222,393,-1,386,398,1014,-1,386,385,398,-1,395,399,396,-1,395,1000,399,-1,1180,416,410,-1,417,416,1180,-1,1350,410,553,-1,1350,1180,410,-1,430,718,958,-1,429,718,430,-1,429,581,718,-1,430,695,694,-1,430,1010,695,-1,739,390,433,-1,739,388,390,-1,736,547,666,-1,547,736,735,-1,456,1186,1185,-1,1008,1186,456,-1,449,1189,1188,-1,449,1296,1189,-1,997,455,962,-1,997,451,455,-1,1296,984,1295,-1,982,984,1296,-1,636,461,463,-1,636,462,461,-1,968,579,1191,-1,968,1313,579,-1,420,718,719,-1,420,751,718,-1,420,1013,751,-1,577,458,457,-1,458,577,468,-1,574,724,988,-1,724,574,459,-1,996,583,578,-1,725,583,996,-1,965,475,582,-1,640,475,965,-1,1004,1180,1350,-1,1180,1004,758,-1,334,486,339,-1,334,333,486,-1,1295,1194,1224,-1,1194,1295,984,-1,1225,729,1299,-1,729,1225,1195,-1,512,509,511,-1,509,512,363,-1,556,744,742,-1,744,556,492,-1,482,702,551,-1,349,702,482,-1,702,349,351,-1,1084,383,1198,-1,383,1084,1085,-1,1177,670,669,-1,1177,1316,670,-1,699,501,500,-1,699,1178,501,-1,1350,530,1004,-1,1350,534,530,-1,1197,979,971,-1,1015,979,1197,-1,685,1347,764,-1,685,1303,1347,-1,1007,1203,1204,-1,1203,1007,516,-1,1202,1204,1203,-1,1206,1204,1202,-1,519,330,1304,-1,518,330,519,-1,332,1208,330,-1,332,1207,1208,-1,1317,1209,1173,-1,1305,1209,1317,-1,1339,1210,1209,-1,1339,1351,1210,-1,520,523,521,-1,684,523,520,-1,1210,1217,1211,-1,1351,1217,1210,-1,522,524,1213,-1,521,524,522,-1,681,1216,1352,-1,1211,1216,681,-1,1171,524,679,-1,524,1171,1170,-1,1352,525,527,-1,1216,525,1352,-1,714,1220,1176,-1,505,1220,714,-1,1182,651,752,-1,408,651,1182,-1,1220,532,1003,-1,1219,532,1220,-1,532,528,533,-1,532,529,528,-1,1221,530,1002,-1,1221,528,530,-1,1001,397,978,-1,1014,397,1001,-1,535,328,329,-1,535,672,328,-1,393,953,391,-1,953,393,661,-1,737,762,656,-1,954,762,737,-1,415,660,760,-1,415,980,660,-1,415,414,980,-1,655,483,550,-1,655,554,483,-1,606,560,607,-1,560,606,561,-1,1299,454,970,-1,1299,729,454,-1,1165,563,642,-1,1165,944,563,-1,647,723,717,-1,647,649,723,-1,567,467,1192,-1,571,467,567,-1,642,724,966,-1,988,724,642,-1,956,643,563,-1,956,755,643,-1,575,1298,576,-1,572,1298,575,-1,1193,579,1313,-1,580,579,1193,-1,720,477,476,-1,477,720,638,-1,1191,477,638,-1,477,1191,722,-1,355,443,490,-1,443,355,444,-1,1353,631,1228,-1,631,1353,632,-1,587,1353,634,-1,1231,1353,587,-1,1229,587,586,-1,1231,587,1229,-1,594,1234,995,-1,594,1232,1234,-1,1237,991,1354,-1,622,991,1237,-1,602,618,600,-1,602,1349,618,-1,1233,1238,1234,-1,603,1238,1233,-1,598,1244,599,-1,598,1242,1244,-1,1348,1247,1354,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getlum_Geo_5_871_coordIndex_10()
		{
			int[] value = {1348,1294,1247,-1,1249,1355,1243,-1,1249,1246,1355,-1,1292,1172,1169,-1,1251,1172,1292,-1,1356,1246,1252,-1,1246,1356,1355,-1,1356,1256,1253,-1,1256,1356,1274,-1,616,604,1241,-1,605,604,616,-1,615,614,605,-1,1260,614,615,-1,1262,1290,1269,-1,1262,1263,1290,-1,1266,612,1267,-1,1266,600,612,-1,993,274,606,-1,1345,274,993,-1,1346,1267,1291,-1,1346,1268,1267,-1,1254,1257,1258,-1,1254,1277,1257,-1,1273,1292,1282,-1,1292,1273,1272,-1,1271,1278,1275,-1,1271,1283,1278,-1,1278,1285,1276,-1,1285,1278,1286,-1,609,1279,1288,-1,1279,609,1284,-1,1286,992,1163,-1,611,992,1286,-1,1168,1288,1167,-1,1168,1289,1288,-1,1279,1167,1288,-1,1279,1281,1167,-1,1276,1269,1290,-1,1276,1285,1269,-1,1273,1283,1271,-1,1273,1284,1283,-1,1169,1282,1292,-1,1282,1169,1280,-1,1256,1277,1254,-1,1256,1275,1277,-1,1150,1291,1264,-1,1150,1346,1291,-1,1265,1345,993,-1,1265,1147,1345,-1,612,1291,1267,-1,612,1261,1291,-1,1263,1257,1290,-1,1263,617,1257,-1,1260,612,614,-1,1261,612,1260,-1,605,613,603,-1,605,614,613,-1,1241,603,1233,-1,1241,604,603,-1,1252,1274,1356,-1,1274,1252,1272,-1,1355,1253,1293,-1,1355,1356,1253,-1,1258,1255,1254,-1,1258,1240,1255,-1,1293,1243,1355,-1,1243,1293,1242,-1,1354,1249,1237,-1,1354,1247,1249,-1,1232,599,1244,-1,599,1232,594,-1,603,618,1238,-1,613,618,603,-1,1349,620,1239,-1,602,620,1349,-1,620,623,592,-1,619,623,620,-1,595,1354,991,-1,1354,595,1348,-1,446,621,596,-1,446,445,621,-1,551,731,625,-1,551,702,731,-1,627,357,362,-1,627,628,357,-1,632,1231,1230,-1,632,1353,1231,-1,1228,732,961,-1,1228,631,732,-1,634,1228,355,-1,1353,1228,634,-1,510,358,474,-1,359,358,510,-1,470,510,474,-1,470,431,510,-1,640,721,475,-1,721,640,719,-1,1182,409,408,-1,1182,1011,409,-1,580,466,576,-1,580,1193,466,-1,643,726,1226,-1,643,754,726,-1,643,755,754,-1,987,1192,460,-1,987,567,1192,-1,443,716,490,-1,443,645,716,-1,443,442,645,-1,649,715,485,-1,648,715,649,-1,1195,566,565,-1,1195,1225,566,-1,650,1196,629,-1,650,712,1196,-1,710,970,969,-1,970,710,489,-1,558,990,972,-1,558,342,990,-1,559,981,653,-1,559,1223,981,-1,390,502,433,-1,502,389,658,-1,502,390,389,-1,761,658,389,-1,656,658,761,-1,667,734,668,-1,376,734,667,-1,480,539,478,-1,539,480,540,-1,949,975,977,-1,1300,975,949,-1,1003,1176,1220,-1,1003,1300,1176,-1,407,757,756,-1,407,948,757,-1,678,527,677,-1,1352,527,678,-1,1213,1170,1301,-1,1213,524,1170,-1,682,1352,678,-1,681,1352,682,-1,685,1304,1303,-1,1304,685,519,-1,682,684,680,-1,682,523,684,-1,1304,1208,1212,-1,1208,1304,330,-1,1209,1093,1339,-1,1093,1209,1305,-1,1305,1306,1205,-1,1305,1317,1306,-1,1303,1302,1347,-1,1303,1214,1302,-1,1203,515,1201,-1,1203,516,515,-1,691,517,1307,-1,691,947,517,-1,1312,374,1311,-1,374,1312,251,-1,1316,1178,699,-1,1178,1316,1177,-1,1309,205,701,-1,205,1309,1308,-1,499,1310,497,-1,499,950,1310,-1,707,689,496,-1,707,706,689,-1,972,652,558,-1,560,652,972,-1,742,557,556,-1,741,557,742,-1,434,740,508,-1,697,740,434,-1,371,511,424,-1,511,371,512,-1,1297,1187,1189,-1,1297,1230,1187,-1,1299,712,1225,-1,1299,488,712,-1,1297,1224,633,-1,1224,1297,1295,-1,440,350,441,-1,440,351,350,-1,1315,383,1085,-1,1315,384,383,-1,1298,725,996,-1,1227,725,1298,-1,717,967,569,-1,717,723,967,-1,476,637,720,-1,637,476,471,-1,721,471,476,-1,469,471,721,-1,639,1227,1226,-1,639,725,1227,-1,1313,461,460,-1,968,461,1313,-1,1226,728,639,-1,1226,726,728,-1,630,586,441,-1,1229,586,630,-1,448,1296,449,-1,982,1296,448,-1,451,456,455,-1,451,1008,456,-1,379,735,733,-1,379,547,735,-1,625,697,503,-1,697,625,741,-1,423,1174,422,-1,1199,1174,423,-1,959,752,651,-1,959,958,752,-1,552,1350,553,-1,534,1350,552,-1,1001,955,1314,-1,1001,674,955,-1,954,391,953,-1,391,954,403,-1,952,387,391,-1,952,999,387,-1,437,402,404,-1,437,662,402,-1,738,549,548,-1,738,759,549,-1,955,1222,1314,-1,955,659,1222,-1,437,759,401,-1,759,437,438,-1,382,1198,383,-1,1198,382,501,-1,1309,951,497,-1,1309,669,951,-1,1316,976,670,-1,1316,977,976,-1,1175,1197,973,-1,1175,1311,1197,-1,749,406,422,-1,406,749,948,-1,686,692,1307,-1,352,692,686,-1,692,352,354,-1,1306,1207,332,-1,1207,1306,1317,-1,764,1348,595,-1,1347,1348,764,-1,676,1281,1280,-1,676,526,1281,-1,1302,1250,1294,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getlum_Geo_5_871_coordIndex_11()
		{
			int[] value = {1302,1301,1250,-1,1201,688,687,-1,688,1201,515,-1,943,340,765,-1,340,943,341,-1,966,1165,642,-1,336,1165,966,-1,338,346,1164,-1,338,347,346,-1,341,945,335,-1,341,943,945,-1,610,1162,1161,-1,610,1289,1162,-1,1270,1318,1320,-1,1270,1287,1318,-1,1318,1016,1156,-1,323,1016,1318,-1,1016,1154,1151,-1,1016,325,1154,-1,1138,1159,1158,-1,1136,1159,1138,-1,769,1322,1125,-1,769,1155,1322,-1,1321,1346,1143,-1,1321,1268,1346,-1,274,942,275,-1,942,274,1345,-1,1019,1146,1321,-1,1019,778,1146,-1,771,1149,1320,-1,771,770,1149,-1,1344,1127,1124,-1,1127,1344,321,-1,1153,1343,1135,-1,1152,1343,1153,-1,1323,1343,1137,-1,1324,1343,1323,-1,940,1138,1336,-1,1138,940,774,-1,1324,1128,776,-1,1324,1323,1128,-1,1133,1326,1117,-1,1133,1132,1326,-1,1131,775,316,-1,1131,939,775,-1,1018,778,1019,-1,1018,1118,778,-1,307,1325,782,-1,1325,307,318,-1,196,319,1020,-1,319,196,768,-1,314,775,777,-1,775,314,780,-1,1122,315,782,-1,1122,1342,315,-1,785,1070,786,-1,1070,785,1328,-1,1341,785,1021,-1,785,1341,1328,-1,1112,1341,1329,-1,1111,1341,1112,-1,935,1338,1075,-1,1338,935,790,-1,1076,145,792,-1,145,1076,146,-1,139,286,1040,-1,286,139,287,-1,295,282,281,-1,295,863,282,-1,934,852,1110,-1,934,796,852,-1,180,851,179,-1,851,180,1082,-1,195,275,196,-1,801,275,195,-1,807,269,808,-1,807,177,269,-1,262,880,263,-1,268,880,262,-1,268,78,880,-1,1047,911,267,-1,911,1047,1046,-1,1048,882,70,-1,1029,882,1048,-1,0,46,51,-1,0,248,46,-1,931,819,176,-1,819,931,1050,-1,820,929,247,-1,820,822,929,-1,80,245,76,-1,80,930,245,-1,1340,929,824,-1,929,1340,244,-1,826,72,74,-1,826,825,72,-1,1340,47,49,-1,1103,47,1340,-1,845,47,1103,-1,74,212,1105,-1,212,74,37,-1,1166,829,828,-1,829,1166,1218,-1,1101,234,1100,-1,234,1101,1330,-1,831,833,1034,-1,833,831,830,-1,1217,1331,1330,-1,1331,1217,1351,-1,928,230,830,-1,230,928,231,-1,1331,1339,1332,-1,1331,1351,1339,-1,1332,1061,1060,-1,1061,1332,1094,-1,1096,1337,926,-1,1096,1059,1337,-1,926,229,1098,-1,229,926,834,-1,226,1202,227,-1,1202,226,1206,-1,837,1053,1090,-1,837,836,1053,-1,91,106,187,-1,106,91,1067,-1,821,1078,825,-1,821,79,1078,-1,1308,55,1062,-1,1310,55,1308,-1,201,855,806,-1,201,856,855,-1,203,856,201,-1,200,270,802,-1,271,270,200,-1,802,214,200,-1,802,803,214,-1,1335,1200,889,-1,1312,1200,1335,-1,1108,1327,1111,-1,1327,1108,1115,-1,1113,849,1037,-1,1113,1026,849,-1,1109,126,799,-1,1109,1068,126,-1,166,134,167,-1,134,166,1023,-1,787,789,788,-1,789,787,861,-1,139,288,287,-1,864,288,139,-1,865,857,289,-1,921,857,865,-1,862,1338,284,-1,1075,1338,862,-1,82,1041,1066,-1,82,1042,1041,-1,181,1333,866,-1,181,178,1333,-1,202,305,123,-1,202,201,305,-1,1114,920,1334,-1,1114,127,920,-1,1107,866,1333,-1,866,1107,867,-1,911,870,912,-1,870,911,871,-1,883,107,109,-1,883,58,107,-1,917,877,1104,-1,916,877,917,-1,144,1078,925,-1,144,1077,1078,-1,278,1077,144,-1,1077,278,915,-1,256,881,257,-1,256,932,881,-1,75,263,879,-1,264,263,75,-1,933,65,1065,-1,933,913,65,-1,1036,844,887,-1,1086,844,1036,-1,172,1315,885,-1,172,171,1315,-1,242,48,207,-1,242,49,48,-1,888,1335,1087,-1,888,252,1335,-1,876,92,890,-1,891,92,876,-1,191,183,848,-1,184,183,191,-1,229,1088,228,-1,229,835,1088,-1,1022,26,25,-1,26,1022,894,-1,840,1337,1091,-1,840,893,1337,-1,1118,1325,1119,-1,1118,1120,1325,-1,1319,1099,1336,-1,1319,1032,1099,-1,1132,220,1326,-1,1132,237,220,-1,898,19,856,-1,898,907,19,-1,135,1023,291,-1,135,134,1023,-1,902,908,903,-1,901,908,902,-1,905,7,3,-1,7,905,853,-1,19,906,847,-1,1051,906,19,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getlum_Geo_5_871_normalIndex_1()
		{
			int[] value = {158,651,246,-1,214,533,251,-1,129,71,342,-1,284,651,655,-1,180,77,248,-1,735,822,836,-1,588,315,713,-1,871,822,829,-1,194,202,99,-1,200,229,215,-1,236,229,390,-1,151,204,255,-1,546,729,735,-1,447,774,299,-1,483,655,617,-1,995,973,984,-1,483,617,457,-1,76,84,98,-1,107,48,37,-1,705,266,332,-1,296,149,311,-1,530,1053,919,-1,183,609,1010,-1,475,372,1010,-1,957,580,597,-1,1010,1219,1294,-1,81,5,8,-1,313,275,144,-1,489,564,784,-1,358,415,494,-1,1198,1114,1005,-1,1341,1197,1128,-1,539,1132,1033,-1,1119,1116,1050,-1,1186,1142,1276,-1,1148,1186,1228,-1,1311,1169,1235,-1,1236,1248,1167,-1,1074,993,1110,-1,946,899,840,-1,1294,1219,1155,-1,1191,1175,1032,-1,1022,1032,1028,-1,364,263,421,-1,247,30,139,-1,517,139,317,-1,451,366,445,-1,452,388,212,-1,466,391,165,-1,1058,827,866,-1,396,153,143,-1,369,117,113,-1,985,1073,723,-1,1199,1350,1163,-1,1045,1353,1333,-1,1020,1162,987,-1,1319,961,1333,-1,914,371,540,-1,1162,800,785,-1,1266,1162,1148,-1,64,36,122,-1,1004,804,1015,-1,209,148,285,-1,656,267,221,-1,130,154,438,-1,118,315,588,-1,466,414,826,-1,790,435,567,-1,1171,1284,1264,-1,993,1017,1076,-1,1325,1218,1242,-1,1218,1236,1242,-1,1093,943,1031,-1,808,903,726,-1,693,944,695,-1,1050,1116,1076,-1,1026,1031,943,-1,746,789,783,-1,701,699,273,-1,69,51,27,-1,840,1074,1182,-1,653,211,299,-1,1325,1204,1138,-1,1311,1276,1264,-1,1329,1341,1253,-1,492,480,888,-1,60,354,355,-1,1186,744,583,-1,648,659,794,-1,480,546,836,-1,304,355,823,-1,742,770,572,-1,757,732,721,-1,327,61,100,-1,383,434,513,-1,63,110,13,-1,564,307,438,-1,203,9,85,-1,84,27,149,-1,487,203,457,-1,752,663,864,-1,1022,1131,1191,-1,1113,1061,1155,-1,1219,1068,1133,-1,192,29,199,-1,183,372,91,-1,115,308,218,-1,233,42,193,-1,96,152,358,-1,693,862,901,-1,951,862,835,-1,710,646,733,-1,897,464,935,-1,421,263,209,-1,28,72,89,-1,67,28,195,-1,1282,1059,1047,-1,1024,748,1163,-1,961,979,887,-1,952,1091,1004,-1,952,987,1083,-1,540,390,800,-1,236,136,229,-1,523,801,769,-1,207,253,74,-1,18,82,151,-1,1071,517,760,-1,455,555,252,-1,252,171,347,-1,82,18,116,-1,78,1,57,-1,77,180,171,-1,128,145,171,-1,882,833,793,-1,734,763,854,-1,510,529,382,-1,1101,651,1130,-1,1196,705,1079,-1,596,759,810,-1,1304,1108,1140,-1,956,1286,1013,-1,558,600,824,-1,1019,1176,1184,-1,562,520,941,-1,941,1127,562,-1,775,544,581,-1,1160,1144,1075,-1,1067,1139,1153,-1,1036,1043,1129,-1,1086,1203,1153,-1,1151,1273,1203,-1,759,621,806,-1,300,242,95,-1,324,262,184,-1,1077,1101,1130,-1,472,341,402,-1,478,290,254,-1,745,478,717,-1,1211,1001,1035,-1,773,755,1174,-1,432,860,620,-1,1354,1332,1315,-1,506,282,223,-1,595,407,282,-1,293,747,344,-1,1269,1275,1126,-1,1174,1332,1354,-1,654,602,1060,-1,418,283,635,-1,870,805,856,-1,1006,1084,870,-1,892,953,636,-1,351,443,468,-1,442,654,623,-1,225,87,184,-1,467,385,473,-1,120,103,169,-1,458,484,292,-1,305,662,717,-1,883,1126,786,-1,1027,559,727,-1,1088,1165,1062,-1,1330,1290,1106,-1,962,731,542,-1,994,998,1134,-1,788,908,1109,-1,606,1070,989,-1,1085,975,1209,-1,813,393,381,-1,485,1092,996,-1,2,217,90,-1,947,553,571,-1,548,271,350,-1,1261,1221,1192,-1,1052,1107,1356,-1,544,558,727,-1,1207,1094,1112,-1,474,505,552,-1,1139,1067,1181,-1,95,4,35,-1,230,428,320,-1,242,410,385,-1,1049,1099,1025,-1,1211,1312,1271,-1,1125,348,484,-1,653,1135,1137,-1,121,175,206,-1,1105,607,738,-1,869,880,1151,-1,551,507,627,-1,599,543,534,-1,612,579,547,-1,592,955,579,-1,753,916,845,-1,1200,1187,1064,-1,1345,1298,1265,-1,1064,937,856,-1,1263,1289,1347,-1,898,1077,1147,-1,876,598,478,-1,227,270,432,-1,716,303,341,-1,243,291,254,-1,156,234,270,-1,1331,925,1125,-1,997,976,1239,-1,220,134,138,-1,320,428,536,-1,516,471,519,-1,374,379,768,-1,859,737,1094,-1,1324,1291,1320,-1,1217,1092,1279,-1,6,190,330,-1,162,124,490,-1,132,167,131,-1,2,24,120,-1,339,141,301,-1,813,356,553,-1,1027,978,970,-1,1027,1097,1285,-1,853,1037,428,-1,820,1100,1224,-1,1273,1144,1252,-1,1299,1244,1290,-1,1019,1106,1176,-1,1184,1231,1212,-1,561,514,476,-1,528,576,593,-1,630,632,591,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getlum_Geo_5_871_normalIndex_2()
		{
			int[] value = {849,641,838,-1,556,503,504,-1,594,929,877,-1,556,499,503,-1,514,563,518,-1,1184,1224,1100,-1,1184,1176,1290,-1,1299,1355,1278,-1,1100,820,776,-1,853,346,287,-1,1338,1302,1203,-1,1285,1149,1302,-1,727,577,858,-1,940,967,928,-1,1023,1067,1149,-1,1086,1043,607,-1,1129,1220,1123,-1,356,191,553,-1,393,395,381,-1,141,94,301,-1,582,468,443,-1,190,606,330,-1,10,286,79,-1,79,286,379,-1,1280,1291,1324,-1,1145,1088,933,-1,1245,1208,1214,-1,1112,569,577,-1,460,418,892,-1,519,630,710,-1,423,516,498,-1,693,454,498,-1,1006,997,1202,-1,1161,1313,1121,-1,1136,1241,1316,-1,1269,977,1172,-1,1157,1332,1174,-1,223,135,237,-1,291,243,223,-1,227,409,337,-1,472,663,752,-1,898,1147,876,-1,1323,1277,1272,-1,1147,1267,1347,-1,1048,805,605,-1,1347,1265,1232,-1,845,1104,960,-1,778,960,969,-1,637,624,601,-1,782,586,612,-1,534,1002,1056,-1,453,459,441,-1,522,809,880,-1,169,225,738,-1,1021,1166,880,-1,467,880,869,-1,87,70,45,-1,134,220,168,-1,484,348,174,-1,1312,1249,1307,-1,701,1118,1081,-1,1356,1107,925,-1,581,559,610,-1,277,226,316,-1,411,454,693,-1,300,449,410,-1,363,244,277,-1,87,95,184,-1,552,938,889,-1,481,505,474,-1,768,1052,1239,-1,558,544,600,-1,643,1087,656,-1,1072,1208,1145,-1,339,548,350,-1,1237,1328,1320,-1,393,813,975,-1,43,24,403,-1,381,278,356,-1,2,312,403,-1,635,283,374,-1,141,201,132,-1,1247,980,989,-1,1214,1207,956,-1,94,141,32,-1,274,456,256,-1,908,788,706,-1,1210,853,608,-1,1330,1037,853,-1,933,1088,968,-1,328,337,375,-1,337,333,181,-1,1126,1173,786,-1,135,52,181,-1,484,458,406,-1,206,244,363,-1,348,925,287,-1,188,108,119,-1,186,114,45,-1,2,120,169,-1,467,324,385,-1,87,225,169,-1,238,216,326,-1,226,228,309,-1,816,326,216,-1,43,240,160,-1,352,241,157,-1,1006,856,937,-1,605,805,870,-1,1213,1078,1046,-1,1269,1354,1275,-1,52,344,196,-1,506,595,282,-1,1051,870,1084,-1,747,1172,977,-1,270,825,860,-1,1313,1161,1334,-1,1025,1079,705,-1,1289,1263,1272,-1,898,745,884,-1,341,303,375,-1,745,655,884,-1,809,522,621,-1,1105,1151,1203,-1,1123,947,1036,-1,1139,1129,1153,-1,1257,1252,1144,-1,507,551,459,-1,631,1052,768,-1,551,806,621,-1,1106,1290,1176,-1,884,651,1101,-1,1013,1286,1229,-1,1108,824,1140,-1,1130,651,704,-1,764,726,646,-1,302,525,429,-1,54,97,137,-1,126,14,66,-1,798,882,855,-1,77,111,57,-1,116,18,78,-1,104,202,82,-1,252,555,450,-1,922,247,517,-1,74,253,317,-1,200,207,55,-1,253,397,398,-1,800,1020,540,-1,1058,1216,1015,-1,1228,1333,1353,-1,1226,1321,1227,-1,873,1238,1199,-1,1024,1163,1350,-1,67,281,140,-1,122,179,136,-1,28,67,36,-1,258,500,285,-1,361,367,445,-1,347,802,808,-1,815,903,951,-1,802,922,1040,-1,1138,1124,1222,-1,362,152,118,-1,446,0,23,-1,1131,1053,1117,-1,1098,1061,1066,-1,716,752,1044,-1,946,919,1131,-1,874,1066,762,-1,203,276,457,-1,332,84,149,-1,85,9,80,-1,487,154,92,-1,438,762,851,-1,837,784,438,-1,9,92,112,-1,494,415,288,-1,83,58,16,-1,334,173,159,-1,565,613,513,-1,771,408,380,-1,807,771,742,-1,823,812,761,-1,904,971,939,-1,829,822,560,-1,560,550,648,-1,204,480,492,-1,1154,1177,1235,-1,643,211,653,-1,840,988,446,-1,86,44,146,-1,332,296,311,-1,713,972,588,-1,939,971,1008,-1,1284,1204,1325,-1,865,819,847,-1,819,826,847,-1,245,258,65,-1,647,783,789,-1,713,260,573,-1,315,118,0,-1,154,130,92,-1,804,1004,1091,-1,281,873,867,-1,958,540,1020,-1,1281,1340,1327,-1,268,147,371,-1,748,360,289,-1,435,259,451,-1,366,164,222,-1,819,391,466,-1,77,30,247,-1,298,263,364,-1,398,647,789,-1,570,219,475,-1,1055,999,717,-1,1311,1235,1251,-1,888,836,871,-1,1171,1264,1142,-1,1186,1276,1253,-1,1034,1128,1197,-1,774,906,623,-1,979,1034,1007,-1,539,722,464,-1,358,494,564,-1,486,269,358,-1,723,1073,935,-1,654,299,774,-1,81,91,372,-1,1010,609,1068,-1,1113,1133,1039,-1,40,29,5,-1,736,493,919,-1,199,597,580,-1,323,357,146,-1,146,357,264,-1,110,76,80,-1,717,999,617,-1,1098,874,999,-1,974,973,995,-1,246,284,457,-1,1050,950,983,-1,447,1069,906,-1,1171,1095,1008,-1,1204,1093,1031,-1,604,550,560,-1,151,82,204,-1,229,314,318,-1,200,215,294,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getlum_Geo_5_871_normalIndex_3()
		{
			int[] value = {280,202,194,-1,783,777,573,-1,224,129,413,-1,413,791,224,-1,171,180,347,-1,769,251,533,-1,71,153,396,-1,891,893,861,-1,71,65,153,-1,266,705,704,-1,246,651,284,-1,266,704,158,-1,214,251,53,-1,891,861,1041,-1,342,71,396,-1,533,758,769,-1,822,871,836,-1,413,839,791,-1,236,390,540,-1,82,210,204,-1,560,735,604,-1,1204,1284,1093,-1,1095,888,1008,-1,906,774,447,-1,1050,1030,950,-1,457,276,246,-1,974,995,864,-1,1098,1066,874,-1,999,874,617,-1,264,86,146,-1,182,508,193,-1,192,199,580,-1,176,192,580,-1,1039,851,1113,-1,1010,1068,1219,-1,372,475,219,-1,219,81,372,-1,654,714,299,-1,723,935,464,-1,358,564,486,-1,722,401,464,-1,887,979,1007,-1,623,654,774,-1,1009,1054,1016,-1,1142,1095,1171,-1,888,871,939,-1,1186,1253,1228,-1,717,662,1055,-1,1175,1191,1294,-1,366,361,445,-1,789,317,398,-1,298,189,263,-1,247,248,77,-1,819,625,391,-1,222,361,366,-1,451,567,435,-1,1058,1015,827,-1,748,1024,360,-1,365,140,281,-1,268,89,147,-1,1281,1327,1246,-1,1020,987,958,-1,867,365,281,-1,1266,1148,1353,-1,1091,1045,804,-1,209,285,500,-1,72,64,122,-1,0,260,315,-1,713,315,260,-1,647,769,783,-1,769,777,783,-1,179,294,215,-1,1284,1325,1351,-1,1040,922,1124,-1,971,1093,1008,-1,840,446,231,-1,588,723,378,-1,643,221,211,-1,1154,1169,1167,-1,1235,1169,1154,-1,204,210,480,-1,560,648,829,-1,904,939,871,-1,812,756,749,-1,771,380,750,-1,513,434,565,-1,146,44,323,-1,288,334,159,-1,83,16,12,-1,494,288,319,-1,851,754,438,-1,487,92,203,-1,85,80,98,-1,149,296,332,-1,276,203,85,-1,874,762,487,-1,957,1039,1018,-1,919,1053,1131,-1,752,995,1044,-1,1061,1113,1066,-1,1117,1191,1131,-1,176,187,8,-1,530,193,508,-1,231,446,23,-1,118,378,362,-1,1222,1218,1138,-1,802,1040,951,-1,815,951,835,-1,455,347,808,-1,588,972,985,-1,258,619,500,-1,36,64,28,-1,122,136,72,-1,113,289,360,-1,867,873,1199,-1,1227,1188,1226,-1,1058,1103,1246,-1,207,200,294,-1,253,398,317,-1,151,200,55,-1,74,317,139,-1,1011,922,517,-1,252,450,128,-1,82,116,104,-1,180,248,347,-1,855,781,798,-1,126,102,14,-1,125,54,137,-1,302,482,525,-1,764,646,711,-1,1130,704,1196,-1,461,322,463,-1,1013,1229,941,-1,1304,1309,1112,-1,884,655,651,-1,522,551,621,-1,551,473,459,-1,1257,1144,1160,-1,1036,1129,1123,-1,621,628,809,-1,1060,602,931,-1,745,717,655,-1,341,375,402,-1,884,1101,898,-1,1289,1272,1277,-1,1318,1307,1249,-1,705,678,1025,-1,1049,1206,1099,-1,432,270,860,-1,977,344,747,-1,344,977,883,-1,52,135,344,-1,1269,1346,1354,-1,1352,1334,1301,-1,605,870,852,-1,937,997,1006,-1,157,359,352,-1,352,338,241,-1,160,15,43,-1,216,460,816,-1,460,216,25,-1,309,316,226,-1,238,175,216,-1,169,70,87,-1,2,169,217,-1,45,121,186,-1,188,174,108,-1,363,292,206,-1,181,237,135,-1,1173,846,786,-1,181,156,337,-1,328,333,337,-1,1088,992,968,-1,1210,1330,853,-1,1027,1210,608,-1,706,878,908,-1,1190,962,889,-1,496,531,301,-1,956,942,1214,-1,989,1243,1247,-1,374,768,635,-1,190,6,162,-1,403,24,2,-1,278,191,356,-1,393,975,439,-1,1237,1320,1291,-1,1245,1328,1237,-1,643,1137,1087,-1,1239,976,768,-1,552,889,542,-1,788,917,566,-1,87,4,95,-1,363,277,336,-1,410,242,300,-1,632,471,532,-1,693,695,411,-1,345,277,316,-1,449,300,329,-1,701,1081,699,-1,174,292,484,-1,35,134,168,-1,87,45,4,-1,103,15,25,-1,869,262,467,-1,738,607,169,-1,880,467,522,-1,459,410,441,-1,845,916,1104,-1,1342,1255,1292,-1,1347,1345,1265,-1,911,1048,605,-1,1347,1261,1147,-1,1206,1323,1272,-1,745,898,876,-1,406,458,376,-1,752,341,472,-1,156,227,337,-1,478,745,876,-1,223,237,291,-1,223,293,135,-1,1136,1051,1241,-1,1006,1202,1260,-1,498,694,693,-1,498,320,423,-1,733,519,710,-1,892,816,460,-1,1096,1336,1143,-1,998,991,1134,-1,479,474,542,-1,577,558,1112,-1,859,1145,933,-1,1324,1268,1280,-1,10,310,286,-1,582,443,403,-1,278,381,395,-1,553,947,813,-1,1220,1209,1123,-1,907,940,928,-1,727,558,577,-1,1285,1097,1149,-1,1203,1273,1338,-1,608,853,287,-1,1100,776,913,-1,1240,1338,1273,-1,1355,1338,1278,-1,1290,1244,1184,-1,1184,1212,1224,-1,514,518,476,-1,556,561,499,-1,594,593,929,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getlum_Geo_5_871_normalIndex_4()
		{
			int[] value = {641,640,838,-1,591,645,630,-1,561,574,514,-1,1184,1244,1231,-1,1278,1338,1240,-1,1252,1240,1273,-1,1224,905,820,-1,853,428,346,-1,1210,1027,1285,-1,970,1097,1027,-1,1067,1153,1149,-1,94,256,301,-1,131,34,132,-1,124,485,490,-1,989,1070,1243,-1,1324,1320,1279,-1,1094,1072,859,-1,912,991,998,-1,516,423,471,-1,536,423,320,-1,138,230,220,-1,1239,1202,997,-1,1331,1356,925,-1,846,1161,825,-1,1346,1168,1180,-1,156,270,227,-1,290,243,254,-1,341,752,716,-1,227,432,406,-1,335,282,407,-1,598,290,478,-1,1267,1147,1077,-1,1263,1347,1267,-1,911,605,521,-1,1232,1261,1347,-1,1042,1064,856,-1,1289,1255,1342,-1,1345,1344,1298,-1,1187,1014,1064,-1,1035,1312,1211,-1,753,795,916,-1,592,969,955,-1,587,596,543,-1,627,806,551,-1,627,792,806,-1,880,1166,1151,-1,1105,1086,607,-1,121,206,186,-1,188,186,206,-1,653,1137,643,-1,976,635,768,-1,1125,925,348,-1,768,379,631,-1,385,324,242,-1,35,168,95,-1,552,542,474,-1,1309,1207,1112,-1,1207,1214,1094,-1,1356,1239,1052,-1,1237,1291,1280,-1,859,1072,1145,-1,548,312,271,-1,571,1036,947,-1,485,996,490,-1,381,356,813,-1,1209,1268,1085,-1,1092,1217,996,-1,989,330,606,-1,531,339,301,-1,1109,917,788,-1,1134,1193,994,-1,889,962,542,-1,1037,1330,1106,-1,992,1088,1062,-1,727,978,1027,-1,912,998,994,-1,52,156,181,-1,717,353,305,-1,292,363,458,-1,105,121,45,-1,473,522,467,-1,184,262,225,-1,103,70,169,-1,338,306,349,-1,442,602,654,-1,351,325,443,-1,892,636,816,-1,870,856,1006,-1,635,892,418,-1,1060,714,654,-1,135,293,344,-1,595,437,407,-1,223,243,506,-1,773,1174,1180,-1,755,1157,1174,-1,1161,846,1173,-1,1289,1277,1255,-1,478,353,717,-1,254,353,478,-1,472,402,386,-1,1077,898,1101,-1,324,467,262,-1,95,168,300,-1,759,806,792,-1,1151,1166,1273,-1,1086,1105,1203,-1,813,947,1123,-1,941,1229,1127,-1,522,473,551,-1,824,1108,558,-1,956,1207,1286,-1,1207,1309,1286,-1,596,587,759,-1,1196,704,705,-1,387,510,382,-1,734,854,875,-1,854,848,803,-1,882,793,855,-1,252,128,171,-1,171,111,77,-1,78,18,1,-1,455,252,347,-1,455,618,555,-1,1071,1011,517,-1,151,55,18,-1,55,207,74,-1,523,769,647,-1,207,294,331,-1,744,314,279,-1,236,147,136,-1,800,1162,1020,-1,987,952,958,-1,1058,1246,1216,-1,952,1083,1091,-1,887,765,961,-1,1282,1047,1348,-1,972,1059,1282,-1,195,281,67,-1,28,64,72,-1,421,209,500,-1,143,148,109,-1,819,865,881,-1,222,367,361,-1,212,20,261,-1,897,539,464,-1,646,815,733,-1,951,1040,862,-1,693,694,862,-1,152,362,358,-1,39,115,218,-1,1155,1219,1133,-1,1133,1113,1155,-1,487,617,874,-1,1022,945,1131,-1,752,864,995,-1,982,899,946,-1,487,457,617,-1,84,76,27,-1,203,92,9,-1,438,784,564,-1,383,249,434,-1,380,383,578,-1,100,392,327,-1,836,888,480,-1,648,550,659,-1,583,1142,1186,-1,60,355,99,-1,480,210,340,-1,888,1095,492,-1,1351,1311,1264,-1,1138,1218,1325,-1,653,299,714,-1,1182,988,840,-1,48,107,44,-1,27,76,69,-1,273,235,701,-1,446,260,0,-1,1050,1076,1030,-1,693,901,944,-1,1093,971,943,-1,1076,1110,993,-1,1284,1351,1264,-1,819,466,826,-1,865,847,879,-1,588,378,118,-1,758,777,769,-1,438,307,130,-1,656,221,643,-1,122,26,109,-1,36,26,122,-1,1162,785,1148,-1,540,958,914,-1,1319,1128,961,-1,1162,1083,987,-1,1333,961,1045,-1,723,588,985,-1,1226,1152,1216,-1,113,360,369,-1,143,412,396,-1,1327,1216,1246,-1,1103,900,1080,-1,452,212,261,-1,445,477,451,-1,317,760,517,-1,139,517,247,-1,384,364,421,-1,984,1022,1028,-1,1032,1022,1191,-1,1155,1175,1294,-1,1154,1074,1110,-1,1071,446,988,-1,1248,1182,1167,-1,1311,1242,1169,-1,1148,1228,1353,-1,939,1008,888,-1,1142,1264,1276,-1,1069,1119,1050,-1,1329,1132,897,-1,539,897,1132,-1,1128,1319,1341,-1,1005,1000,1198,-1,1114,1016,1005,-1,358,362,415,-1,489,486,564,-1,56,22,3,-1,81,8,91,-1,1159,1010,1294,-1,957,597,932,-1,1039,754,851,-1,269,486,308,-1,1010,372,183,-1,493,530,919,-1,22,193,42,-1,332,678,705,-1,76,98,80,-1,457,284,483,-1,984,1044,995,-1,655,717,617,-1,546,735,836,-1,340,210,82,-1,229,318,390,-1,202,104,99,-1,904,871,829,-1,735,560,822,-1,284,655,483,-1,245,65,53,-1,342,413,129,-1,891,1041,896,-1,158,704,651,-1,729,604,735,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getlum_Geo_5_871_normalIndex_5()
		{
			int[] value = {604,729,749,-1,893,396,861,-1,893,342,396,-1,129,214,71,-1,129,224,214,-1,690,894,857,-1,690,698,894,-1,100,125,163,-1,54,125,100,-1,557,434,419,-1,557,565,434,-1,554,616,584,-1,616,554,572,-1,202,340,82,-1,202,280,340,-1,1026,1204,1031,-1,1138,1204,1026,-1,158,276,85,-1,158,246,276,-1,1028,999,1055,-1,1028,1098,999,-1,27,273,257,-1,27,51,273,-1,508,1159,1117,-1,508,570,1159,-1,199,568,597,-1,199,213,568,-1,29,213,199,-1,40,213,29,-1,1018,609,719,-1,609,1018,1068,-1,183,8,187,-1,183,91,8,-1,932,568,837,-1,568,932,597,-1,927,1016,1114,-1,1009,1016,927,-1,1119,447,722,-1,447,1119,1069,-1,1033,1177,1120,-1,1033,1132,1177,-1,1319,1253,1341,-1,1319,1228,1253,-1,1319,1333,1228,-1,1311,1253,1276,-1,1311,1251,1253,-1,1061,1175,1155,-1,1032,1175,1061,-1,462,477,445,-1,495,477,462,-1,165,261,20,-1,165,391,261,-1,404,590,523,-1,404,430,590,-1,477,567,451,-1,622,567,477,-1,371,236,540,-1,371,147,236,-1,1188,914,1146,-1,1188,885,914,-1,1128,979,961,-1,1128,1034,979,-1,1340,1350,1335,-1,1350,1340,1348,-1,448,334,465,-1,313,334,448,-1,245,251,769,-1,245,53,251,-1,197,388,368,-1,212,388,197,-1,622,844,841,-1,638,844,622,-1,255,492,583,-1,204,492,255,-1,357,700,264,-1,691,700,357,-1,86,48,44,-1,86,47,48,-1,1011,1248,1222,-1,1011,1071,1248,-1,982,981,1017,-1,981,982,974,-1,480,426,546,-1,340,426,480,-1,894,697,910,-1,697,894,698,-1,575,659,550,-1,575,707,659,-1,684,707,633,-1,707,684,683,-1,807,730,818,-1,730,807,742,-1,354,818,831,-1,354,327,818,-1,578,750,380,-1,750,578,757,-1,408,185,380,-1,163,185,408,-1,613,611,513,-1,611,613,644,-1,38,267,50,-1,267,38,221,-1,897,1063,1197,-1,1063,897,935,-1,58,38,16,-1,38,58,49,-1,159,58,83,-1,159,173,58,-1,288,142,319,-1,288,159,142,-1,142,92,130,-1,142,112,92,-1,487,438,154,-1,762,438,487,-1,1113,762,1066,-1,762,1113,851,-1,945,946,1131,-1,982,946,945,-1,23,233,231,-1,233,23,42,-1,922,1222,1124,-1,922,1011,1222,-1,808,618,455,-1,726,618,808,-1,197,164,41,-1,197,222,164,-1,367,417,444,-1,367,368,417,-1,769,796,245,-1,801,796,769,-1,567,841,790,-1,567,622,841,-1,972,861,1059,-1,972,1041,861,-1,117,109,26,-1,117,143,109,-1,140,289,113,-1,140,365,289,-1,1282,1000,972,-1,1282,1198,1000,-1,1321,1238,1227,-1,1238,1321,1335,-1,927,866,887,-1,900,866,927,-1,1004,1146,952,-1,1152,1146,1004,-1,189,294,179,-1,298,294,189,-1,394,444,417,-1,394,422,444,-1,590,801,523,-1,590,863,801,-1,469,388,452,-1,469,431,388,-1,30,74,139,-1,1,74,30,-1,116,75,93,-1,75,116,78,-1,850,882,798,-1,850,205,882,-1,834,389,440,-1,389,834,828,-1,400,177,88,-1,177,400,433,-1,75,14,19,-1,66,14,75,-1,102,127,133,-1,101,127,102,-1,11,97,54,-1,62,97,11,-1,161,133,127,-1,161,172,133,-1,155,137,106,-1,178,137,155,-1,88,127,33,-1,161,127,88,-1,763,482,433,-1,482,763,734,-1,734,525,482,-1,751,525,734,-1,709,811,703,-1,709,751,811,-1,781,711,715,-1,781,764,711,-1,715,674,708,-1,673,674,715,-1,709,671,589,-1,671,709,677,-1,295,166,198,-1,295,265,166,-1,429,321,302,-1,429,425,321,-1,405,272,250,-1,405,420,272,-1,420,512,538,-1,405,512,420,-1,640,510,668,-1,510,640,529,-1,322,436,463,-1,322,501,436,-1,562,1140,463,-1,1140,562,1127,-1,25,105,103,-1,216,105,25,-1,670,797,795,-1,670,664,797,-1,1185,1194,1170,-1,1194,1185,1233,-1,586,739,637,-1,586,782,739,-1,587,599,628,-1,587,543,599,-1,345,370,399,-1,370,345,316,-1,375,305,328,-1,303,305,375,-1,1025,1263,1079,-1,1025,1272,1263,-1,1035,1305,1312,-1,1035,1087,1305,-1,1118,1300,1081,-1,1118,1308,1300,-1,270,846,825,-1,270,234,846,-1,747,1168,1172,-1,747,639,1168,-1,335,773,639,-1,335,407,773,-1,909,1078,953,-1,1078,909,1046,-1,468,349,351,-1,468,424,349,-1,636,326,816,-1,228,326,636,-1,228,238,326,-1,226,238,228,-1,160,351,297,-1,160,325,351,-1,160,240,325,-1,114,188,119,-1,186,188,114,-1,238,206,175,-1,238,244,206,-1,303,662,305,-1,662,303,716,-1,968,868,933,-1,868,968,895,-1,1336,1205,1314,-1,1336,1190,1205,-1,920,615,886,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getlum_Geo_5_871_normalIndex_6()
		{
			int[] value = {766,615,920,-1,1190,938,1205,-1,1190,889,938,-1,256,496,301,-1,456,496,256,-1,980,1214,942,-1,980,1247,1214,-1,167,201,208,-1,201,167,132,-1,306,374,283,-1,338,374,306,-1,338,352,374,-1,162,606,190,-1,606,162,490,-1,1164,485,511,-1,1164,1092,485,-1,330,10,6,-1,310,10,330,-1,339,201,141,-1,339,350,201,-1,1145,1245,1237,-1,1208,1245,1145,-1,1052,775,1107,-1,775,1052,631,-1,1143,1314,1158,-1,1314,1143,1336,-1,878,720,868,-1,878,706,720,-1,479,766,497,-1,479,615,766,-1,345,336,277,-1,377,336,345,-1,45,35,4,-1,35,45,114,-1,454,449,329,-1,411,449,454,-1,695,441,411,-1,695,697,441,-1,428,1019,536,-1,1037,1019,428,-1,1019,1037,1106,-1,700,1118,701,-1,700,1090,1118,-1,399,667,666,-1,399,370,667,-1,363,376,458,-1,363,336,376,-1,121,216,175,-1,105,216,121,-1,1160,1002,1257,-1,1160,1056,1002,-1,473,410,459,-1,473,385,410,-1,502,681,585,-1,681,502,690,-1,718,683,652,-1,680,683,718,-1,799,612,626,-1,799,782,612,-1,741,637,739,-1,741,728,637,-1,728,624,637,-1,728,702,624,-1,537,959,1029,-1,547,959,537,-1,702,682,712,-1,686,682,702,-1,969,1104,1170,-1,969,960,1104,-1,682,753,712,-1,682,675,753,-1,1137,1306,1317,-1,1135,1306,1137,-1,953,931,636,-1,953,1078,931,-1,1298,1213,1187,-1,1213,1298,1306,-1,1342,1347,1289,-1,1342,1345,1347,-1,1232,1200,1215,-1,1232,1265,1200,-1,1221,1042,1048,-1,1042,1221,1215,-1,911,506,598,-1,911,595,506,-1,1099,1272,1025,-1,1272,1099,1206,-1,409,386,402,-1,409,376,386,-1,1136,1315,1141,-1,1136,1316,1315,-1,1275,1173,1126,-1,1275,1301,1173,-1,1334,1316,1241,-1,1316,1334,1352,-1,1241,1313,1334,-1,1241,1260,1313,-1,1260,1331,1313,-1,1260,1202,1331,-1,733,516,519,-1,516,733,696,-1,1134,990,1158,-1,1134,991,990,-1,542,615,479,-1,542,731,615,-1,859,868,720,-1,859,933,868,-1,509,569,737,-1,569,509,481,-1,1217,1320,1243,-1,1279,1320,1217,-1,1181,1280,1220,-1,1280,1181,1237,-1,374,359,379,-1,374,352,359,-1,73,10,79,-1,73,17,10,-1,208,393,439,-1,395,393,208,-1,1139,1220,1129,-1,1139,1181,1220,-1,992,1067,1012,-1,1067,992,1062,-1,940,895,968,-1,940,907,895,-1,1097,1023,1149,-1,970,1023,1097,-1,949,936,923,-1,936,949,920,-1,1338,1285,1302,-1,1355,1285,1338,-1,1310,963,915,-1,1310,1322,963,-1,1278,1287,1299,-1,1278,1283,1287,-1,514,591,563,-1,514,574,591,-1,524,905,915,-1,905,524,541,-1,1270,963,1322,-1,954,963,1270,-1,1259,1287,1339,-1,1287,1259,1231,-1,1254,1322,1310,-1,1254,1230,1322,-1,1297,1293,1258,-1,1293,1297,1337,-1,1303,1223,1258,-1,1223,1303,1233,-1,1250,1258,1223,-1,1258,1250,1297,-1,1183,1122,1195,-1,1122,1183,1156,-1,1057,929,1179,-1,877,929,1057,-1,603,488,594,-1,488,603,545,-1,767,603,832,-1,649,603,767,-1,561,642,574,-1,642,561,650,-1,724,674,650,-1,676,674,724,-1,821,671,767,-1,671,821,661,-1,1089,1201,1111,-1,1201,1089,1189,-1,1065,926,1038,-1,1065,965,926,-1,930,1115,934,-1,1082,1115,930,-1,849,966,948,-1,849,838,966,-1,668,830,843,-1,668,669,830,-1,817,641,849,-1,817,660,641,-1,830,661,821,-1,830,669,661,-1,843,966,838,-1,966,843,965,-1,1082,948,1111,-1,1082,930,948,-1,1038,921,1057,-1,1038,926,921,-1,1189,1065,1156,-1,1189,1089,1065,-1,671,649,767,-1,677,649,671,-1,674,642,650,-1,642,674,673,-1,645,574,642,-1,645,591,574,-1,545,649,657,-1,545,603,649,-1,832,594,877,-1,594,832,603,-1,1230,1270,1322,-1,1270,1230,1195,-1,1223,1201,1250,-1,1201,1223,1178,-1,1225,1195,1230,-1,1225,1183,1195,-1,1258,1343,1303,-1,1343,1258,1293,-1,1230,1259,1225,-1,1259,1230,1254,-1,1339,1283,1337,-1,1283,1339,1287,-1,1179,954,1270,-1,929,954,1179,-1,541,820,905,-1,518,820,541,-1,563,632,776,-1,591,632,563,-1,1231,1299,1287,-1,1244,1299,1231,-1,1019,1100,913,-1,1019,1184,1100,-1,1285,1330,1210,-1,1330,1285,1355,-1,964,886,902,-1,964,918,886,-1,577,766,858,-1,577,497,766,-1,496,424,468,-1,424,496,456,-1,124,34,131,-1,21,34,124,-1,1070,1217,1243,-1,1070,996,1217,-1,1268,1220,1280,-1,1268,1209,1220,-1,1112,737,569,-1,1112,1094,737,-1,505,566,552,-1,515,566,505,-1,928,991,907,-1,928,990,991,-1,1193,1158,1314,-1,1193,1134,1158,-1,776,532,913,-1,532,776,632,-1,138,428,230,-1,138,346,428,-1,1121,1331,1125,-1,1313,1331,1121,-1,406,409,227,-1,409,406,376,-1,598,243,290,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getlum_Geo_5_871_normalIndex_7()
		{
			int[] value = {506,243,598,-1,911,876,1192,-1,876,911,598,-1,1261,1215,1221,-1,1261,1232,1215,-1,1048,856,805,-1,1048,1042,856,-1,1345,1349,1344,-1,1342,1349,1345,-1,1046,1187,1213,-1,1046,1014,1187,-1,1249,1349,1318,-1,1249,1305,1349,-1,1305,1249,1312,-1,1135,1213,1306,-1,1060,1213,1135,-1,753,670,795,-1,675,670,753,-1,1256,1029,959,-1,1029,1256,1295,-1,592,778,969,-1,601,778,592,-1,537,1003,526,-1,537,1029,1003,-1,626,547,537,-1,612,547,626,-1,652,684,725,-1,683,684,652,-1,718,780,792,-1,718,652,780,-1,697,453,441,-1,698,453,697,-1,924,880,809,-1,880,924,1021,-1,244,226,277,-1,238,226,244,-1,1135,714,1060,-1,714,1135,653,-1,108,346,138,-1,108,287,346,-1,1049,692,1102,-1,692,1049,688,-1,498,329,320,-1,329,498,454,-1,220,320,329,-1,220,230,320,-1,666,491,399,-1,491,666,665,-1,936,928,967,-1,918,928,936,-1,474,497,481,-1,474,479,497,-1,912,907,991,-1,912,895,907,-1,1192,1048,911,-1,1221,1048,1192,-1,6,17,21,-1,10,17,6,-1,191,571,553,-1,191,217,571,-1,217,191,90,-1,511,1085,1164,-1,1085,511,470,-1,456,241,424,-1,456,274,241,-1,1205,917,1109,-1,1205,938,917,-1,608,559,1027,-1,608,610,559,-1,766,949,858,-1,766,920,949,-1,1096,1190,1336,-1,1096,962,1190,-1,878,895,912,-1,895,878,868,-1,351,306,297,-1,306,351,349,-1,931,228,636,-1,309,228,931,-1,338,424,241,-1,424,338,349,-1,787,437,521,-1,755,437,787,-1,1346,1172,1168,-1,1346,1269,1172,-1,747,335,639,-1,293,335,747,-1,1051,852,870,-1,852,1051,1136,-1,773,1168,639,-1,773,1180,1168,-1,1271,1118,1090,-1,1118,1271,1308,-1,689,1087,1035,-1,689,656,1087,-1,1307,1292,1274,-1,1307,1318,1292,-1,491,386,377,-1,491,472,386,-1,316,442,370,-1,442,316,309,-1,184,242,324,-1,242,184,95,-1,924,534,1056,-1,924,599,534,-1,739,799,772,-1,782,799,739,-1,916,797,934,-1,916,795,797,-1,1233,1256,1194,-1,1256,1233,1303,-1,453,690,502,-1,453,698,690,-1,1140,1229,1286,-1,1140,1127,1229,-1,956,436,501,-1,956,1013,436,-1,759,628,621,-1,587,628,759,-1,538,664,557,-1,538,660,664,-1,527,668,510,-1,527,669,668,-1,382,512,405,-1,382,529,512,-1,239,420,419,-1,420,239,272,-1,425,295,321,-1,425,387,295,-1,155,265,250,-1,166,265,155,-1,671,535,589,-1,661,535,671,-1,674,634,708,-1,634,674,676,-1,715,798,781,-1,708,798,715,-1,751,589,525,-1,589,751,709,-1,803,875,854,-1,875,803,811,-1,433,302,177,-1,302,433,482,-1,232,172,161,-1,198,172,232,-1,97,106,137,-1,59,106,97,-1,161,177,232,-1,161,88,177,-1,14,133,68,-1,102,133,14,-1,19,93,75,-1,19,62,93,-1,389,88,33,-1,88,389,400,-1,450,834,440,-1,814,834,450,-1,764,855,793,-1,764,781,855,-1,126,171,145,-1,126,111,171,-1,93,104,116,-1,31,104,93,-1,760,446,1071,-1,760,746,446,-1,416,404,427,-1,430,404,416,-1,331,253,207,-1,253,331,397,-1,462,422,384,-1,462,444,422,-1,294,364,343,-1,298,364,294,-1,136,215,229,-1,136,179,215,-1,958,1146,914,-1,1146,958,952,-1,1348,1281,1282,-1,1348,1340,1281,-1,1000,985,972,-1,1000,1005,985,-1,122,189,179,-1,209,189,122,-1,209,263,189,-1,285,143,258,-1,143,285,148,-1,619,638,500,-1,619,844,638,-1,863,796,801,-1,863,879,796,-1,790,414,435,-1,826,414,790,-1,835,733,815,-1,696,733,835,-1,23,96,42,-1,23,152,96,-1,42,115,22,-1,42,96,115,-1,39,22,115,-1,3,22,39,-1,182,81,219,-1,182,56,81,-1,40,218,213,-1,40,39,218,-1,974,945,973,-1,974,982,945,-1,9,110,80,-1,9,13,110,-1,13,9,12,-1,144,58,173,-1,49,58,144,-1,447,401,722,-1,447,275,401,-1,49,221,38,-1,221,49,211,-1,613,682,644,-1,613,675,682,-1,249,380,185,-1,249,383,380,-1,682,658,644,-1,658,682,686,-1,392,818,327,-1,818,392,807,-1,732,629,721,-1,732,658,629,-1,721,614,616,-1,721,629,614,-1,742,554,730,-1,742,572,554,-1,683,659,707,-1,659,683,680,-1,681,857,794,-1,690,857,681,-1,761,546,426,-1,761,729,546,-1,1132,1235,1177,-1,1235,1132,1251,-1,982,993,899,-1,982,1017,993,-1,667,950,666,-1,667,983,950,-1,235,700,701,-1,235,264,700,-1,688,332,311,-1,688,678,332,-1,910,943,971,-1,910,944,943,-1,951,808,802,-1,808,951,903,-1,1222,1236,1218,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getlum_Geo_5_871_normalIndex_8()
		{
			int[] value = {1236,1222,1248,-1,1167,1074,1154,-1,1074,1167,1182,-1,583,1095,1142,-1,492,1095,583,-1,430,431,469,-1,430,416,431,-1,879,841,844,-1,879,847,841,-1,368,431,417,-1,388,431,368,-1,109,209,122,-1,209,109,148,-1,1152,1015,1216,-1,1152,1004,1015,-1,1348,1024,1350,-1,1024,1348,1047,-1,785,390,318,-1,785,800,390,-1,1162,1091,1083,-1,1266,1091,1162,-1,1266,1045,1091,-1,1045,1266,1353,-1,985,1054,1073,-1,985,1016,1054,-1,985,1005,1016,-1,1152,1188,1146,-1,1226,1188,1152,-1,143,369,412,-1,143,117,369,-1,866,1103,1058,-1,1103,866,900,-1,414,165,150,-1,414,466,165,-1,740,430,469,-1,430,740,590,-1,150,20,41,-1,150,165,20,-1,495,384,421,-1,462,384,495,-1,662,1044,1055,-1,716,1044,662,-1,899,1074,840,-1,1074,899,993,-1,1182,1071,988,-1,1248,1071,1182,-1,1120,1119,1033,-1,1119,1120,1116,-1,1033,722,539,-1,722,1033,1119,-1,1009,887,1007,-1,1009,927,887,-1,275,448,401,-1,313,448,275,-1,29,8,5,-1,192,8,29,-1,192,176,8,-1,1117,1294,1191,-1,1117,1159,1294,-1,187,609,183,-1,187,719,609,-1,508,1053,530,-1,508,1117,1053,-1,149,257,311,-1,149,27,257,-1,110,69,76,-1,110,63,69,-1,981,950,1030,-1,981,872,950,-1,340,304,426,-1,340,194,304,-1,280,194,340,-1,616,770,721,-1,616,572,770,-1,163,170,185,-1,125,170,163,-1,557,670,565,-1,557,664,670,-1,1251,1329,1253,-1,1329,1251,1132,-1,214,791,891,-1,224,791,214,-1,891,533,214,-1,891,896,533,-1,549,749,756,-1,549,604,749,-1,839,342,893,-1,839,413,342,-1,861,412,1059,-1,412,861,396,-1,758,896,713,-1,533,896,758,-1,904,857,894,-1,829,857,904,-1,54,61,11,-1,54,100,61,-1,419,249,239,-1,419,434,249,-1,31,99,104,-1,99,31,60,-1,554,575,549,-1,584,575,554,-1,151,279,200,-1,151,255,279,-1,761,749,729,-1,761,812,749,-1,1055,984,1028,-1,984,1055,1044,-1,98,332,266,-1,98,84,332,-1,50,323,44,-1,50,267,323,-1,51,235,273,-1,51,47,235,-1,1159,475,1010,-1,570,475,1159,-1,213,489,568,-1,213,218,489,-1,1039,932,754,-1,1039,957,932,-1,580,1018,719,-1,580,957,1018,-1,5,56,3,-1,81,56,5,-1,489,837,568,-1,489,784,837,-1,465,362,378,-1,362,465,415,-1,1197,1329,897,-1,1197,1341,1329,-1,983,623,906,-1,623,983,667,-1,1197,1007,1034,-1,1197,1063,1007,-1,1167,1242,1236,-1,1242,1167,1169,-1,1154,1120,1177,-1,1154,1110,1120,-1,1032,1098,1028,-1,1032,1061,1098,-1,259,366,451,-1,259,164,366,-1,452,391,625,-1,391,452,261,-1,398,523,647,-1,523,398,404,-1,1103,1281,1246,-1,1103,1080,1281,-1,371,885,268,-1,885,371,914,-1,748,1199,1163,-1,867,1199,748,-1,873,195,842,-1,873,281,195,-1,113,26,36,-1,113,117,26,-1,1327,1335,1321,-1,1335,1327,1340,-1,357,689,691,-1,357,323,689,-1,258,153,65,-1,258,143,153,-1,41,212,197,-1,20,212,41,-1,638,477,495,-1,638,622,477,-1,590,881,863,-1,590,740,881,-1,1017,1030,1076,-1,1030,1017,981,-1,1325,1311,1351,-1,1242,1311,1325,-1,943,901,1026,-1,901,943,944,-1,910,695,944,-1,910,697,695,-1,347,922,802,-1,347,247,922,-1,248,247,347,-1,699,257,273,-1,692,257,699,-1,47,69,48,-1,51,69,47,-1,864,665,872,-1,663,665,864,-1,279,583,744,-1,583,279,255,-1,355,194,99,-1,355,304,194,-1,829,794,857,-1,829,648,794,-1,61,354,60,-1,61,327,354,-1,575,633,707,-1,575,584,633,-1,684,614,685,-1,633,614,684,-1,730,831,818,-1,756,831,730,-1,770,757,721,-1,770,750,757,-1,831,355,354,-1,823,355,831,-1,611,757,578,-1,757,611,732,-1,163,392,100,-1,163,408,392,-1,513,578,383,-1,578,513,611,-1,275,299,144,-1,275,447,299,-1,50,16,38,-1,50,7,16,-1,13,37,63,-1,37,13,7,-1,159,112,142,-1,159,83,112,-1,319,130,307,-1,142,130,319,-1,984,945,1022,-1,945,984,973,-1,233,530,493,-1,530,233,193,-1,231,736,840,-1,493,231,233,-1,493,736,231,-1,694,835,862,-1,694,696,835,-1,368,222,197,-1,368,367,222,-1,740,819,881,-1,740,625,819,-1,495,500,638,-1,495,421,500,-1,796,844,619,-1,879,844,796,-1,36,140,113,-1,140,36,67,-1,195,89,268,-1,195,28,89,-1,1080,1282,1281,-1,1114,1282,1080,-1,1114,1198,1282,-1,873,1227,1238,-1,873,842,1227,-1,1073,1063,935,-1,1073,1054,1063,-1,1045,765,804,-1,961,765,1045,-1,744,1148,785,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getlum_Geo_5_871_normalIndex_9()
		{
			int[] value = {744,1186,1148,-1,318,744,785,-1,744,318,314,-1,343,331,294,-1,331,343,373,-1,384,343,364,-1,384,422,343,-1,427,394,416,-1,427,373,394,-1,74,18,55,-1,18,74,1,-1,389,46,440,-1,389,33,46,-1,1,77,57,-1,1,30,77,-1,66,78,57,-1,66,75,78,-1,618,833,555,-1,833,618,793,-1,833,205,814,-1,205,833,882,-1,850,828,834,-1,828,850,848,-1,145,46,101,-1,128,46,145,-1,33,101,46,-1,33,127,101,-1,62,59,97,-1,19,59,62,-1,172,68,133,-1,172,123,68,-1,166,106,123,-1,155,106,166,-1,828,400,389,-1,828,779,400,-1,763,848,854,-1,763,828,848,-1,763,779,828,-1,875,751,734,-1,811,751,875,-1,703,803,634,-1,703,811,803,-1,672,715,711,-1,672,673,715,-1,703,677,709,-1,703,679,677,-1,321,198,232,-1,321,295,198,-1,272,170,178,-1,239,170,272,-1,382,250,265,-1,382,405,250,-1,535,425,429,-1,535,527,425,-1,557,420,538,-1,557,419,420,-1,512,640,641,-1,529,640,512,-1,322,631,379,-1,631,322,461,-1,1286,1304,1140,-1,1309,1304,1286,-1,520,463,436,-1,463,520,562,-1,582,496,468,-1,582,531,496,-1,631,544,775,-1,631,600,544,-1,1296,1343,1326,-1,1296,1295,1343,-1,1170,1115,1185,-1,1170,1104,1115,-1,541,499,1150,-1,541,524,499,-1,810,792,780,-1,810,759,792,-1,1129,1086,1153,-1,1043,1086,1129,-1,1166,1144,1273,-1,1021,1144,1166,-1,1021,1075,1144,-1,168,329,300,-1,329,168,220,-1,1077,1196,1267,-1,1077,1130,1196,-1,353,328,305,-1,353,254,328,-1,1081,1323,1102,-1,1081,1300,1323,-1,196,846,234,-1,196,786,846,-1,787,1157,755,-1,787,1141,1157,-1,1141,1332,1157,-1,1332,1141,1315,-1,755,407,437,-1,755,773,407,-1,282,293,223,-1,282,335,293,-1,909,892,635,-1,953,892,909,-1,890,635,976,-1,890,909,635,-1,103,43,15,-1,120,43,103,-1,120,24,43,-1,103,45,70,-1,103,105,45,-1,406,620,484,-1,406,432,620,-1,181,291,237,-1,291,181,333,-1,1109,1314,1205,-1,1193,1314,1109,-1,731,886,615,-1,731,902,886,-1,912,908,878,-1,912,994,908,-1,902,1143,964,-1,1096,1143,902,-1,1123,975,813,-1,1123,1209,975,-1,439,167,208,-1,439,470,167,-1,443,43,403,-1,443,240,43,-1,443,325,240,-1,490,1070,606,-1,1070,490,996,-1,330,980,310,-1,980,330,989,-1,34,141,132,-1,32,141,34,-1,531,548,339,-1,582,548,531,-1,1014,909,890,-1,909,1014,1046,-1,1108,1112,558,-1,1108,1304,1112,-1,964,1158,990,-1,1158,964,1143,-1,509,706,515,-1,706,509,720,-1,869,1105,738,-1,1105,869,1151,-1,134,114,119,-1,114,134,35,-1,1107,610,925,-1,775,610,1107,-1,610,775,581,-1,700,1001,1090,-1,1001,700,691,-1,1300,1277,1323,-1,1300,1274,1277,-1,1307,1271,1312,-1,1307,1308,1271,-1,890,1064,1014,-1,890,937,1064,-1,377,376,336,-1,386,376,377,-1,1002,1296,1257,-1,1002,1003,1296,-1,792,585,718,-1,585,792,627,-1,681,718,585,-1,680,718,681,-1,534,596,526,-1,543,596,534,-1,810,626,596,-1,810,799,626,-1,772,741,739,-1,725,741,772,-1,685,728,741,-1,685,687,728,-1,612,592,579,-1,586,592,612,-1,728,686,702,-1,687,686,728,-1,547,955,959,-1,579,955,547,-1,624,712,743,-1,702,712,624,-1,1170,955,969,-1,955,1170,1194,-1,743,753,845,-1,712,753,743,-1,1087,1317,1305,-1,1137,1317,1087,-1,297,460,160,-1,418,460,297,-1,1317,1298,1344,-1,1306,1298,1317,-1,1298,1200,1265,-1,1298,1187,1200,-1,1215,1064,1042,-1,1215,1200,1064,-1,521,595,911,-1,437,595,521,-1,1263,1196,1079,-1,1263,1267,1196,-1,1315,1352,1354,-1,1352,1315,1316,-1,1173,1334,1161,-1,1301,1334,1173,-1,1084,1241,1051,-1,1084,1260,1241,-1,1084,1006,1260,-1,1202,1356,1331,-1,1202,1239,1356,-1,630,471,632,-1,471,630,519,-1,515,788,566,-1,515,706,788,-1,501,379,286,-1,501,322,379,-1,1245,1247,1328,-1,1245,1214,1247,-1,1324,1092,1164,-1,1279,1092,1324,-1,286,980,942,-1,310,980,286,-1,359,79,379,-1,359,157,79,-1,162,21,124,-1,6,21,162,-1,511,167,470,-1,131,167,511,-1,278,350,271,-1,350,278,395,-1,208,350,395,-1,350,208,201,-1,1067,1165,1181,-1,1165,1067,1062,-1,986,940,1012,-1,940,986,967,-1,970,986,1023,-1,923,986,970,-1,949,970,978,-1,923,970,949,-1,1224,915,905,-1,1224,1310,915,-1,1283,1240,1262,-1,1278,1240,1283,-1,476,499,561,-1,476,1150,499,-1,963,524,915,-1,528,524,963,-1,1231,1254,1212,-1,1231,1259,1254,-1,1326,1293,1262,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getlum_Geo_5_871_normalIndex_10()
		{
			int[] value = {1326,1343,1293,-1,1337,1288,1339,-1,1337,1297,1288,-1,1178,1233,1185,-1,1223,1233,1178,-1,1234,1297,1250,-1,1297,1234,1288,-1,1234,1156,1183,-1,1156,1234,1189,-1,929,576,954,-1,593,576,929,-1,594,504,593,-1,488,504,594,-1,767,921,821,-1,767,832,921,-1,650,556,724,-1,650,561,556,-1,645,710,630,-1,672,710,645,-1,679,724,657,-1,679,676,724,-1,1122,1057,1179,-1,1122,1038,1057,-1,1111,1178,1082,-1,1178,1111,1201,-1,1089,965,1065,-1,1089,966,965,-1,965,830,926,-1,830,965,843,-1,849,930,817,-1,930,849,948,-1,843,640,668,-1,838,640,843,-1,664,817,797,-1,664,660,817,-1,930,797,817,-1,930,934,797,-1,926,821,921,-1,926,830,821,-1,1111,966,1089,-1,1111,948,966,-1,1185,1082,1178,-1,1082,1185,1115,-1,1156,1038,1122,-1,1156,1065,1038,-1,677,657,649,-1,677,679,657,-1,642,672,645,-1,642,673,672,-1,556,657,724,-1,556,545,657,-1,832,1057,921,-1,832,877,1057,-1,488,556,504,-1,545,556,488,-1,593,503,528,-1,593,504,503,-1,954,528,963,-1,954,576,528,-1,1250,1189,1234,-1,1189,1250,1201,-1,1288,1183,1225,-1,1288,1234,1183,-1,1179,1195,1122,-1,1179,1270,1195,-1,1225,1339,1288,-1,1339,1225,1259,-1,1262,1337,1283,-1,1262,1293,1337,-1,1310,1212,1254,-1,1212,1310,1224,-1,528,499,524,-1,503,499,528,-1,1150,518,541,-1,476,518,1150,-1,518,776,820,-1,563,776,518,-1,1252,1262,1240,-1,1262,1252,1326,-1,1290,1355,1299,-1,1290,1330,1355,-1,925,608,287,-1,925,610,608,-1,1302,1153,1203,-1,1302,1149,1153,-1,967,923,936,-1,967,986,923,-1,1012,968,992,-1,1012,940,968,-1,1023,1012,1067,-1,986,1012,1023,-1,607,1036,571,-1,1043,1036,607,-1,217,607,571,-1,217,169,607,-1,582,312,548,-1,312,582,403,-1,297,283,418,-1,297,306,283,-1,131,485,124,-1,131,511,485,-1,79,274,73,-1,79,241,274,-1,79,157,241,-1,1268,1164,1085,-1,1268,1324,1164,-1,1165,1237,1181,-1,1165,1145,1237,-1,1165,1088,1145,-1,1214,1072,1094,-1,1208,1072,1214,-1,720,737,859,-1,720,509,737,-1,569,497,577,-1,569,481,497,-1,938,566,917,-1,566,938,552,-1,536,913,532,-1,536,1019,913,-1,516,694,498,-1,516,696,694,-1,620,1125,484,-1,1125,860,1121,-1,1125,620,860,-1,825,1121,860,-1,1161,1121,825,-1,409,375,337,-1,402,375,409,-1,1192,1147,1261,-1,1147,1192,876,-1,1318,1342,1292,-1,1349,1342,1318,-1,1344,1305,1317,-1,1344,1349,1305,-1,1060,1078,1213,-1,1060,931,1078,-1,778,845,960,-1,743,845,778,-1,959,1194,1256,-1,959,955,1194,-1,601,743,778,-1,624,743,601,-1,1002,526,1003,-1,526,1002,534,-1,601,586,637,-1,601,592,586,-1,526,626,537,-1,626,526,596,-1,741,684,685,-1,684,741,725,-1,725,780,652,-1,725,772,780,-1,1003,1295,1296,-1,1003,1029,1295,-1,585,507,502,-1,585,627,507,-1,809,599,924,-1,809,628,599,-1,665,472,491,-1,472,665,663,-1,1274,1308,1307,-1,1308,1274,1300,-1,1102,699,1081,-1,699,1102,692,-1,1025,688,1049,-1,1025,678,688,-1,449,441,410,-1,449,411,441,-1,532,423,536,-1,471,423,532,-1,119,138,134,-1,108,138,119,-1,292,188,206,-1,174,188,292,-1,262,738,225,-1,738,262,869,-1,918,920,886,-1,918,936,920,-1,515,481,509,-1,515,505,481,-1,918,990,928,-1,990,918,964,-1,559,544,727,-1,559,581,544,-1,689,1001,691,-1,689,1035,1001,-1,21,32,34,-1,17,32,21,-1,1328,1243,1320,-1,1328,1247,1243,-1,271,191,278,-1,191,271,90,-1,312,90,271,-1,2,90,312,-1,94,17,73,-1,94,32,17,-1,470,975,1085,-1,439,975,470,-1,73,256,94,-1,73,274,256,-1,858,978,727,-1,949,978,858,-1,962,902,731,-1,1096,902,962,-1,994,1109,908,-1,994,1193,1109,-1,254,333,328,-1,254,291,333,-1,287,174,348,-1,174,287,108,-1,623,370,442,-1,667,370,623,-1,25,160,460,-1,25,15,160,-1,997,890,976,-1,937,890,997,-1,521,852,787,-1,521,605,852,-1,1301,1354,1352,-1,1354,1301,1275,-1,1346,1174,1354,-1,1346,1180,1174,-1,883,1269,1126,-1,883,977,1269,-1,52,234,156,-1,52,196,234,-1,852,1141,787,-1,852,1136,1141,-1,883,196,344,-1,196,883,786,-1,1211,1090,1001,-1,1090,1211,1271,-1,1102,1206,1049,-1,1102,1323,1206,-1,1274,1255,1277,-1,1274,1292,1255,-1,399,377,345,-1,399,491,377,-1,309,602,442,-1,602,309,931,-1,1056,1021,924,-1,1160,1021,1056,-1,1021,1160,1075,-1,780,799,810,-1,799,780,772,-1,1257,1326,1252,-1,1296,1326,1257,-1,1104,934,1115,-1,1104,916,934,-1,1295,1303,1343,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getlum_Geo_5_871_normalIndex_11()
		{
			int[] value = {1295,1256,1303,-1,502,459,453,-1,459,502,507,-1,461,600,631,-1,600,461,824,-1,942,501,286,-1,956,501,942,-1,1013,520,436,-1,1013,941,520,-1,824,463,1140,-1,824,461,463,-1,641,538,512,-1,641,660,538,-1,661,527,535,-1,661,669,527,-1,527,387,425,-1,510,387,527,-1,387,265,295,-1,387,382,265,-1,178,250,272,-1,155,250,178,-1,302,232,177,-1,302,321,232,-1,634,679,703,-1,634,676,679,-1,710,711,646,-1,711,710,672,-1,803,708,634,-1,803,798,708,-1,429,589,535,-1,429,525,589,-1,779,433,400,-1,433,779,763,-1,198,123,172,-1,166,123,198,-1,59,123,106,-1,68,123,59,-1,125,178,170,-1,178,125,137,-1,68,19,14,-1,68,59,19,-1,62,31,93,-1,62,11,31,-1,101,126,145,-1,101,102,126,-1,848,798,803,-1,848,850,798,-1,555,814,450,-1,814,555,833,-1,726,793,618,-1,793,726,764,-1,57,126,66,-1,126,57,111,-1,440,128,450,-1,440,46,128,-1,397,404,398,-1,404,397,427,-1,373,397,331,-1,397,373,427,-1,422,373,343,-1,394,373,422,-1,1188,842,885,-1,842,1188,1227,-1,1335,1199,1238,-1,1199,1335,1350,-1,369,1059,412,-1,1059,369,1047,-1,136,89,72,-1,136,147,89,-1,619,245,796,-1,619,258,245,-1,790,847,826,-1,847,790,841,-1,903,646,726,-1,815,646,903,-1,0,152,23,-1,0,118,152,-1,115,269,308,-1,96,269,115,-1,96,358,269,-1,22,182,193,-1,182,22,56,-1,3,40,5,-1,39,40,3,-1,158,98,266,-1,158,85,98,-1,754,837,438,-1,837,754,932,-1,112,12,9,-1,112,83,12,-1,494,307,564,-1,494,319,307,-1,7,12,16,-1,12,7,13,-1,173,313,144,-1,173,334,313,-1,7,107,37,-1,50,107,7,-1,44,107,50,-1,144,211,49,-1,211,144,299,-1,670,613,565,-1,613,670,675,-1,644,732,611,-1,732,644,658,-1,408,807,392,-1,807,408,771,-1,686,629,658,-1,629,686,687,-1,750,742,771,-1,742,750,770,-1,629,685,614,-1,629,687,685,-1,614,584,616,-1,584,614,633,-1,730,549,756,-1,730,554,549,-1,756,823,831,-1,823,756,812,-1,659,681,794,-1,681,659,680,-1,971,894,910,-1,971,904,894,-1,1116,1110,1076,-1,1110,1116,1120,-1,288,465,334,-1,288,415,465,-1,692,311,257,-1,688,311,692,-1,746,260,446,-1,746,573,260,-1,783,573,746,-1,1026,862,1040,-1,901,862,1026,-1,1040,1138,1026,-1,1040,1124,1138,-1,872,666,950,-1,665,666,872,-1,417,416,394,-1,416,417,431,-1,863,865,879,-1,863,881,865,-1,444,445,367,-1,444,462,445,-1,804,827,1015,-1,827,804,765,-1,1216,1321,1226,-1,1321,1216,1327,-1,369,1024,1047,-1,360,1024,369,-1,289,867,748,-1,365,867,289,-1,268,842,195,-1,885,842,268,-1,1114,900,927,-1,1114,1080,900,-1,435,150,259,-1,435,414,150,-1,789,760,317,-1,789,746,760,-1,469,625,740,-1,469,452,625,-1,41,259,150,-1,259,41,164,-1,182,570,508,-1,570,182,219,-1,736,946,840,-1,736,919,946,-1,1054,1007,1063,-1,1009,1007,1054,-1,723,465,378,-1,723,448,465,-1,464,448,723,-1,448,464,401,-1,1068,1039,1133,-1,1068,1018,1039,-1,489,308,486,-1,218,308,489,-1,187,580,719,-1,187,176,580,-1,235,86,264,-1,47,86,235,-1,267,689,323,-1,267,656,689,-1,63,48,69,-1,63,37,48,-1,974,872,981,-1,974,864,872,-1,906,1050,983,-1,1069,1050,906,-1,1093,1171,1008,-1,1284,1171,1093,-1,823,426,304,-1,823,761,426,-1,279,229,200,-1,229,279,314,-1,550,549,575,-1,550,604,549,-1,850,814,205,-1,850,834,814,-1,239,185,170,-1,239,249,185,-1,11,60,31,-1,11,61,60,-1,777,713,573,-1,777,758,713,-1,866,765,887,-1,866,827,765,-1,891,839,893,-1,791,839,891,-1,53,71,214,-1,71,53,65,-1,713,1041,972,-1,896,1041,713,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getlum_Coord_6_871_point_1()
		{
			double[] value = {-0.0045,40.1969,-3.0499,0.0,40.1816,-2.9203,-0.0076,40.19,-2.9237,-0.716,40.8152,-2.7874,-0.6813,40.7829,-2.7138,-0.7161,40.7925,-2.7069,-0.7157,40.8482,-2.8236,-0.7145,40.8688,-2.8079,-0.7027,40.8658,-2.8314,-0.0081,40.1896,-2.9175,0.0,40.2003,-2.7892,-0.5915,40.6766,-2.0484,-0.5775,40.7181,-2.0802,-0.565,40.6848,-2.0961,-0.3521,41.351,-2.2114,-0.3029,41.3368,-2.3039,-0.3705,41.3429,-2.3207,-0.5024,40.7606,-2.6564,-0.4969,40.7161,-2.5811,-0.6161,40.7317,-2.5999,-0.3078,41.3169,-2.3119,-0.2402,41.3403,-2.2896,-0.6128,41.2752,-2.2567,-0.6122,41.2562,-2.2624,-0.6969,41.255,-2.1109,-0.6013,41.1406,-2.4608,-0.58,41.2904,-2.578,-0.656,41.1507,-2.5621,-0.5852,41.3697,-2.6199,-0.5341,41.379,-2.5938,-0.5733,41.1434,-2.3749,-0.526,41.1915,-2.3844,-0.5262,41.1968,-2.4052,-0.4641,41.3567,-2.3144,-0.4106,41.3477,-2.1952,-0.1323,40.8984,-2.7246,-0.0662,40.893,-2.7664,-0.0593,40.8828,-2.8446,-0.0089,40.2019,-2.7937,-0.0366,40.2082,-2.7852,-0.0755,40.4209,-2.6167,-0.151,40.4323,-2.5707,-0.1542,40.3344,-2.6232,-0.0871,40.2364,-2.8951,-0.1366,40.3117,-3.3622,-0.1358,40.2247,-3.3412,-0.1265,40.2327,-3.3098,-0.0873,40.5459,-3.4741,-0.1087,40.4879,-3.4747,-0.0915,40.497,-3.4401,0.0,40.1047,-3.2715,-0.0135,40.1133,-3.2725,-0.0277,40.1055,-3.3085,-0.072,40.1217,-3.3671,-0.1253,40.1505,-3.4113,-0.107,40.1309,-3.4298,-0.4159,40.3457,-2.4459,-0.397,40.3441,-2.4502,-0.394,40.484,-2.4716,-0.5057,39.9339,-2.5206,-0.4983,39.9294,-2.5209,-0.4371,39.9928,-2.453,-0.442,40.0105,-2.4467,-0.4483,39.9914,-2.4553,-0.4386,39.9871,-2.6696,-0.4952,39.9722,-2.688,-0.4898,40.0251,-2.7355,-0.4086,40.0381,-2.5006,-0.397,40.1309,-2.4755,-0.5007,40.1065,-2.5351,-0.5199,40.11,-2.6369,-0.5117,39.9828,-2.6168,-0.1805,40.7668,-2.7004,-0.1567,40.8303,-2.7096,-0.1016,40.7714,-2.7904,-0.4625,40.2186,-2.7723,-0.3427,40.3201,-2.7315,-0.3954,40.2029,-2.7634,-0.4371,40.4395,-2.6619,-0.312,40.5378,-2.6764,-0.3292,40.4327,-2.6902,-0.5084,40.9844,-2.7667,-0.5056,40.9917,-2.7575,-0.5015,40.9775,-2.7578,-0.2941,41.0862,-2.6363,-0.2967,41.0808,-2.6461,-0.3006,41.1442,-2.6771,-0.2372,41.0018,-2.6607,-0.2842,41.0143,-2.6094,-0.2278,41.0034,-2.6492,-0.1784,40.9666,-2.6846,-0.1698,40.9049,-2.655,-0.1056,40.8452,-2.6849,-0.364,41.2093,-2.5531,-0.3803,41.2016,-2.4653,-0.3447,41.123,-2.5121,-0.3432,41.262,-2.6043,-0.3319,41.1925,-2.6163,-0.3254,41.0366,-2.4712,-0.296,40.9191,-2.498,-0.2919,40.9881,-2.5239,-0.3815,40.8495,-2.3992,-0.4182,40.7673,-2.3562,-0.3121,40.8725,-2.4786,-0.3087,40.7519,-2.5182,-0.2605,40.7277,-2.5383,-0.2014,40.8668,-2.5877,-0.3686,40.5082,-2.4889,-0.3217,40.588,-2.4957,-0.4095,40.5887,-2.4768,-0.3755,40.0801,-2.5484,-0.378,40.266,-2.5061,-0.3819,40.1561,-2.5251,-0.2933,40.1794,-2.5721,-0.2946,40.3416,-2.5665,-0.1662,40.2221,-2.6476,-0.7855,41.0725,-2.6484,-0.7783,41.0786,-2.6616,-0.9004,41.0028,-2.679,-0.5579,40.7062,-2.1149,-0.5694,40.7222,-2.118,-0.5919,40.6965,-2.2278,-0.5703,40.6875,-2.2268,-0.6139,40.6682,-2.3281,-1.1628,40.9188,-2.7167,-1.1678,40.9242,-2.7047,-1.1058,40.9419,-2.689,-1.2193,40.6594,-2.6116,-1.1897,40.7466,-2.5974,-1.2753,40.7028,-2.6298,-1.2604,40.6839,-2.6907,-1.2605,40.6534,-2.6425,-1.2842,40.6887,-2.6724,-0.5172,41.1544,-2.707,-0.4681,41.1579,-2.6984,-0.4584,41.0979,-2.7016,-0.6849,40.8929,-2.8384,-0.7081,40.9075,-2.8146,-0.7047,41.0026,-2.8355,-0.6373,41.0027,-2.9385,-0.6892,41.0418,-2.9104,-0.6737,41.081,-2.9853,-0.4645,40.9048,-2.7308,-0.3935,40.9306,-2.6783,-0.3483,40.8187,-2.6351,-0.5688,41.155,-3.0675,-0.5526,41.1078,-2.9612,-0.5637,41.0823,-3.0464,-0.2976,41.248,-2.6819,-0.2933,41.2468,-2.674,-0.2998,41.1757,-2.6795,-0.4144,41.4417,-2.6801,-0.3426,41.3733,-2.6663,-0.415,41.439,-2.6896,-0.2962,41.156,-2.6754,-0.3071,41.1727,-2.6875,-0.5474,41.4676,-2.7481,-0.5592,41.4672,-2.7422,-0.5154,41.4696,-2.6724,-0.4781,41.383,-2.5757,-0.4804,41.3296,-2.5285,-0.3053,41.3115,-2.666,-0.6729,41.1962,-2.8172,-0.6797,41.1643,-2.8767,-0.7102,41.144,-2.7517,-0.499,41.2923,-2.7033,-0.4261,41.2306,-2.688,-0.5117,41.2225,-2.7028,-0.7637,41.0768,-2.7145,-0.7423,41.0499,-2.7583,-0.7598,41.0299,-2.7215,0.0,40.7798,-3.3773,-0.0213,40.7768,-3.3772,-0.0213,40.8272,-3.1443,-0.2102,40.3355,-2.838,-0.2242,40.2771,-2.856,-0.2871,40.1789,-2.766,-0.4599,40.6419,-2.5808,-1.255,40.7565,-2.7143,-1.1904,40.7252,-2.7027,-1.168,40.7958,-2.727,-1.231,40.8334,-2.7323,-1.1464,40.8975,-2.7383,-0.3626,41.151,-2.3697,-0.3287,41.1081,-2.3619,-0.3537,41.137,-2.4409,-0.214,40.7031,-2.5614,-0.1601,40.8383,-2.6174,-0.3562,40.966,-2.3628,-0.3835,40.8615,-2.3045,-0.3493,40.9427,-2.4381,-0.2993,41.1709,-2.3141,-0.2307,41.0693,-2.2497,-0.2678,41.0501,-2.2543,-0.3444,40.3831,-2.0019,-0.2827,40.3859,-1.9717,-0.3232,40.3841,-1.9021,0.0,40.985,-2.1102,-0.1106,41.0863,-2.1992,0.0,41.1085,-2.1569,-0.2483,40.932,-2.1717,-0.5792,40.6613,-2.3459,-0.6093,40.6605,-2.359,-0.6067,40.6818,-2.4139,0.0,40.426,-3.6039,0.0,40.3336,-3.5855,-0.1084,40.3772,-3.5617,-0.1121,40.4004,-3.4367,-0.123,40.3845,-3.5345,-0.1453,40.2387,-3.5045,-0.3676,40.7606,-2.4388,0.0,40.873,-3.0139,-0.0236,40.8675,-2.9963,-0.3272,40.9958,-2.295,-0.3309,40.8864,-2.2243,-0.2908,41.0293,-2.6082,-0.3255,41.1146,-2.5821,-0.4787,41.2395,-2.3939,-0.4721,41.2861,-2.3438,-0.397,41.2673,-2.3383,-0.746,41.2873,-1.9395,-0.7007,41.3792,-1.9119,-0.6629,41.3567,-2.0995,-0.4827,41.2762,-2.4813,-0.4791,41.2502,-2.4356,-0.2335,41.364,-2.227,-0.1183,41.3488,-2.1026,-0.1273,41.3539,-2.1896,-0.6109,41.3384,-2.22,-0.5625,41.3417,-2.0818,-0.4743,41.4434,-1.6275,-0.3875,41.4889,-1.5219,-0.3744,41.4584,-1.6232,-0.332,41.5546,-1.3915,-0.266,41.5633,-1.358,-0.263,41.5045,-1.4713,-0.713,41.4123,-1.7895,-0.7459,41.3355,-1.8114,-0.7287,41.4076,-1.6502,-0.4427,41.5717,-1.2737,-0.3171,41.5506,-1.1412,-0.3096,41.5919,-1.1992,-0.0924,40.4174,-3.4055,-0.1115,40.3468,-3.3551,-0.0908,40.4328,-3.3403,-0.2674,40.3209,-2.7447,-0.1236,40.3007,-2.9888,-0.1034,40.3831,-3.1402,-0.0959,40.2881,-3.1303,-0.1957,40.2239,-2.848,0.0,40.4095,-2.6627,0.0,40.5221,-2.6072,-0.0788,40.5408,-2.5998,-0.374,40.3759,-2.4871,-0.2799,40.0873,-2.6284,-0.273,40.1284,-2.5895,-0.4373,39.9598,-2.5517,-0.3691,40.004,-2.5716,-0.5042,39.9819,-2.6913,-0.5179,40.0589,-2.6978,-0.5007,40.0307,-2.7309,-0.5067,39.9968,-2.523,-0.5077,40.3361,-2.6537,-0.4607,40.3224,-2.7148,-0.4757,40.2206,-2.7619,-0.4574,40.4548,-2.492,-0.4955,40.4372,-2.5534,-0.4709,40.3425,-2.478,-0.492,40.4474,-2.5986,-0.4773,40.541,-2.5935,-0.127,40.7805,-2.0018,-0.1214,40.9724,-2.1382,-0.2789,40.5366,-2.0017,-0.1254,40.5739,-1.974,0.0,40.4113,-1.8055,-0.1664,40.3907,-1.8503,0.0,40.3886,-1.8916,-0.2997,41.005,-2.6232,-0.2938,40.9106,-2.6516,-0.3453,40.948,-2.6426,-0.6584,41.3091,-2.8655,-0.6684,41.2401,-2.7589,-0.6329,41.3557,-2.7984,-0.6539,41.2457,-2.9707,-0.6398,41.3854,-2.9062,-0.5496,40.99,-2.8377,-0.5687,40.9587,-2.875,-0.5678,40.9944,-2.9491,-0.5696,41.0249,-3.0176,-0.5885,41.105,-3.0654,-0.312,41.1509,-2.6863,-0.3986,41.0482,-2.7011,-0.4689,41.4208,-2.7029,-0.3102,41.3165,-2.6737,-0.3517,41.3829,-2.6773,-0.6504,41.2695,-2.6782,-0.8626,40.6681,-2.4748,-0.8755,40.6907,-2.5626,-0.7432,40.6994,-2.5367,-0.6449,41.0208,-2.4112,-0.6391,40.8438,-2.3878,-0.5697,40.8574,-2.2972,-0.5982,41.001,-2.2303,-0.5956,41.1296,-2.2448,-0.442,40.6909,-2.3506,-0.5827,40.6672,-2.3235,-0.551,40.383,-1.9636,-0.6643,40.4005,-1.7653,-0.7017,40.4242,-1.8564,-0.6746,40.5872,-1.9001,-0.553,40.5646,-2.0133,-0.6338,41.12,-2.0983,-0.5801,41.0081,-2.0504,-0.5535,40.8504,-2.17,-0.5713,40.873,-1.9881,-0.8387,40.4697,-1.6816,-0.7739,40.6182,-1.7296,-0.4417,40.4959,-1.6049,-0.5838,40.4232,-1.7108,-0.494,40.4098,-1.7909,-0.485,40.5939,-1.0368,-0.5835,40.5869,-1.1347,-0.4544,40.5819,-1.2614,-0.1459,41.0047,-0.9626,-0.1224,41.16,-1.0506,-0.2822,41.1488,-1.0924,0.0081,40.1896,-2.9175,0.0076,40.19,-2.9237,0.0045,40.1969,-3.0499,0.0135,40.1133,-3.2725,0.49,41.3459,-1.9207,0.3756,41.3192,-2.114,0.3705,41.3657,-1.9128,0.7228,40.8336,-2.7523,0.7161,40.7925,-2.7069,0.716,40.8152,-2.7874,0.6849,40.8929,-2.8384,0.7145,40.8688,-2.8079,0.7027,40.8658,-2.8314,0.7432,40.6994,-2.5367,0.6305,40.7296,-2.5956,0.6813,40.7829,-2.7138,0.553,40.5646,-2.0133,0.5915,40.6766,-2.0484,0.6746,40.5872,-1.9001,0.7,40.8213,-2.8154,0.6956,40.8401,-2.8281,0.7086,40.848,-2.83,0.7143,40.8231,-2.8099,0.611,40.6946,-2.4635,0.6259,40.6955,-2.4659,0.6067,40.6818,-2.4139,0.6128,41.2752,-2.2567,0.6122,41.2562,-2.2624,0.5789,41.2719,-2.2889,0.7294,41.0533,-2.5444,0.656,41.1507,-2.5621,0.6013,41.1406,-2.4608,0.5327,41.3127,-2.5492,0.5333,41.2853,-2.5274,0.58,41.2904,-2.578,0.5439,41.2104,-2.4688,0.5733,41.1434,-2.3749,0.526,41.1915,-2.3844,0.5956,41.1296,-2.2448,0.3521,41.351,-2.2114,0.2936,41.3543,-2.2276,0.2678,41.0501,-2.2543,0.2993,41.1709,-2.3141,0.3287,41.1081,-2.3619,0.3361,41.2165,-2.3324,0.3965,41.1939,-2.3776,0.3626,41.151,-2.3697,0.0741,40.2551,-2.9634,0.0788,40.5408,-2.5998,0.0755,40.4209,-2.6167,0.151,40.4323,-2.5707,0.1156,40.2056,-2.7391,0.1824,40.159,-2.6759,0.1657,40.184,-2.6544,0.0366,40.2082,-2.7852,0.0,40.224,-2.7597,0.0483,40.7126,-3.5351,0.0273,40.7242,-3.5507,0.0236,40.7601,-3.51,0.4952,39.9722,-2.688,0.4898,40.0251,-2.7355,0.5042,39.9819,-2.6913,0.394,40.484,-2.4716,0.411,40.4726,-2.4698,0.4069,40.5465,-2.4731,0.5199,40.11,-2.6369,0.5179,40.0589,-2.6978,0.5186,40.1131,-2.7024,0.3302,40.0767,-2.711,0.3752,40.0038,-2.6489,0.3691,40.004,-2.5716,0.3502,40.088,-2.7138,0.4386,39.9871,-2.6696,0.4373,39.9598,-2.5517,0.4983,39.9294,-2.5209,0.4371,39.9928,-2.453,0.5067,39.9968,-2.523,0.5007,40.1065,-2.5351,0.4505,40.1056,-2.4504,0.0,40.8875,-2.8083,0.0662,40.893,-2.7664,0.0593,40.8828,-2.8446,0.3453,40.948,-2.6426,0.3935,40.9306,-2.6783,0.3483,40.8187,-2.6351,0.4481,40.3209,-2.7224,0.3427,40.3201,-2.7315,0.3292,40.4327,-2.6902,0.4371,40.4395,-2.6619,0.4448,40.3842,-2.6878,0.2938,40.9106,-2.6516,0.2251,40.8789,-2.6789,0.1859,40.9649,-2.6936,0.3895,41.0372,-2.6974,0.312,41.1509,-2.6863,0.3986,41.0482,-2.7011,0.0631,40.8928,-2.7443,0.0,40.8814,-2.7757,0.3803,41.2016,-2.4653,0.3537,41.137,-2.4409,0.397,41.2673,-2.3383,0.3224,41.2506,-2.313,0.3078,41.3169,-2.3119,0.3319,41.1925,-2.6163,0.3255,41.1146,-2.5821,0.364,41.2093,-2.5531,0.3217,40.588,-2.4957,0.4095,40.5887,-2.4768,0.3087,40.7519,-2.5182,0.0798,40.2556,-2.695,0.0,40.2691,-2.7548,0.442,40.0105,-2.4467,0.4185,40.1057,-2.4299,0.6139,40.6682,-2.3281,0.6093,40.6605,-2.359,0.7258,40.6427,-2.425,0.7783,41.0786,-2.6616,0.751,41.1133,-2.6582,0.7698,41.0736,-2.6317,0.5694,40.7222,-2.118,0.5775,40.7181,-2.0802,0.565,40.6848,-2.0961,1.2605,40.6534,-2.6425,1.2156,40.6531,-2.6188,1.2131,40.667,-2.6711,1.1678,40.9242,-2.7047,1.1665,40.9169,-2.6872,1.2348,40.8615,-2.6874,1.1464,40.8975,-2.7383,1.1628,40.9188,-2.7167,1.2398,40.8498,-2.7221,0.5885,41.105,-3.0654,0.6339,41.12,-3.0538,0.6297,41.0317,-3.0104,0.5984,41.447,-2.8107,0.5592,41.4672,-2.7422,0.6094,41.3769,-2.6968,0.5154,41.4696,-2.6724,0.4922,41.4626,-2.7011,0.415,41.439,-2.6896,0.6172,41.2793,-3.0193,0.6274,41.277,-3.0166,0.6243,41.17,-3.0708,0.2933,41.2468,-2.674,0.3432,41.262,-2.6043,0.3053,41.3115,-2.666,0.5341,41.379,-2.5938,0.4781,41.383,-2.5757,0.4804,41.3296,-2.5285,0.4261,41.2306,-2.688,0.3102,41.3165,-2.6737,0.499,41.2923,-2.7033,0.1571,40.3662,-2.9777,0.2102,40.3355,-2.838,0.2242,40.2771,-2.856,0.4969,40.7161,-2.5811,0.4786,40.6838,-2.5018,0.4596,40.6188,-2.5128,0.7081,40.9075,-2.8146,0.7534,40.9532,-2.7329,0.7378,40.8454,-2.7137,1.108,40.7088,-2.677,1.0963,40.7621,-2.6958,1.1904,40.7252,-2.7027,0.7107,41.1608,-2.6635,0.3271,41.0724,-2.4165,0.3562,40.966,-2.3628,0.3422,40.7899,-2.1714,0.3992,40.6651,-2.1391,0.2815,40.7447,-2.058,0.2477,41.2363,-2.2791,0.107,40.1309,-3.4298,0.072,40.1217,-3.3671,0.0277,40.1055,-3.3085,0.0809,40.6185,-3.4952,0.0903,40.5727,-3.5464,0.4682,40.5499,-2.5022,0.4084,40.6496,-2.4146,0.0236,40.8675,-2.9963,0.0213,40.8272,-3.1443,0.2919,40.9881,-2.5239,0.2648,40.9577,-2.5845,0.2427,40.8954,-2.5579,0.5262,41.1968,-2.4052,0.4827,41.2762,-2.4813,0.4791,41.2502,-2.4356,0.4787,41.2395,-2.3939,0.4721,41.2861,-2.3438,0.3029,41.3368,-2.3039,0.2402,41.3403,-2.2896,0.2335,41.364,-2.227,0.4697,41.3449,-2.1682,0.4809,41.3247,-2.0843,0.5625,41.3417,-2.0818,0.4743,41.4434,-1.6275,0.5366,41.4908,-1.5636,0.5781,41.4521,-1.6438,0.4365,41.5307,-1.4688,0.6262,41.5035,-1.5409,0.1293,41.5936,-1.1752,0.3171,41.5506,-1.1412,0.3096,41.5919,-1.1992,0.1698,40.5272,-2.7868,0.1438,40.6277,-2.7771,0.2225,40.5391,-2.7144,0.0911,40.4724,-3.146,0.0768,40.6122,-2.966,0.1103,40.494,-2.9622,0.312,40.5378,-2.6764,0.1265,40.2327,-3.3098,0.12,40.3232,-3.3359,0.1034,40.3831,-3.1402,0.0871,40.2364,-2.8951,0.1236,40.3007,-2.9888,0.1957,40.2239,-2.848,0.2492,40.1495,-2.773,0.374,40.3759,-2.4871,0.397,40.3441,-2.4502,0.0,40.3396,-2.7405,0.0771,40.337,-2.6819,0.2799,40.0873,-2.6284,0.273,40.1284,-2.5895,0.378,40.266,-2.5061,0.4036,40.217,-2.425,0.485,40.5223,-2.5416,0.4481,40.6646,-2.4208,0.4015,40.5365,-2.6384,0.4094,40.6574,-2.6555,0.4599,40.6419,-2.5808,0.3309,40.8864,-2.2243,0.3835,40.8615,-2.3045,0.4284,40.7886,-2.26,0.3783,40.5275,-2.0558,0.1254,40.5739,-1.974,0.2827,40.3859,-1.9717,0.1591,40.3886,-1.9087,0.4645,40.9048,-2.7308,0.5785,40.8638,-2.7572,0.5024,40.7606,-2.6564,0.8878,40.9869,-2.7045,0.8834,40.9198,-2.6948,0.6584,41.3091,-2.8655,0.6729,41.1962,-2.8172,0.6797,41.1643,-2.8767,0.6547,41.1879,-3.0342,0.6539,41.2457,-2.9707,0.5526,41.1078,-2.9612,0.5637,41.0823,-3.0464,0.5696,41.0249,-3.0176,0.5688,41.155,-3.0675,0.585,41.2385,-3.0045,0.5859,41.1608,-3.0808,0.5626,41.2996,-2.7768,0.5697,41.3991,-2.816,0.6023,41.3534,-2.8887,0.2998,41.1757,-2.6795,0.5117,41.2225,-2.7028,0.5435,41.2261,-2.7395,0.5172,41.1544,-2.707,0.4144,41.4417,-2.6801,0.7325,40.6507,-2.4153,0.7365,40.8177,-2.4352,0.6391,40.8438,-2.3878,0.5697,40.8574,-2.2972,0.5703,40.6875,-2.2268,0.5579,40.7062,-2.1149,0.6643,40.4005,-1.7653,0.7017,40.4242,-1.8564,0.8387,40.4697,-1.6816,0.6958,41.2412,-2.111,0.5713,40.873,-1.9881,0.6176,40.7441,-1.9413,0.6944,40.7782,-1.7651,0.7739,40.6182,-1.7296,0.3209,40.5526,-1.5039,0.3957,40.5026,-1.6486,0.4417,40.4959,-1.6049,0.6711,40.5258,-1.3555,0.646,40.5569,-1.2411,0.5835,40.5869,-1.1347,0.1664,40.3907,-1.8503,0.3232,40.3841,-1.9021,0.3209,40.4222,-1.8037,0.1283,41.2913,-1.1065,0.0,41.3085,-1.0868,0.1224,41.16,-1.0506,0.325,40.6091,-1.3473,0.4926,40.5583,-1.3466,0.4544,40.5819,-1.2614,0.485,40.5939,-1.0368,0.7027,40.5935,-1.0532,0.5588,40.6266,-0.9294,0.4846,40.5264,-1.4894,0.494,40.4098,-1.7909,0.5838,40.4232,-1.7108,0.5535,40.8504,-2.17,0.5801,41.0081,-2.0504,0.5443,40.3828,-1.8869,0.4568,40.6921,-2.2347,0.442,40.6909,-2.3506,0.5982,41.001,-2.2303,0.6091,41.0151,-2.3318,0.6449,41.0208,-2.4112,0.8755,40.6907,-2.5626,0.8626,40.6681,-2.4748,0.9599,40.9447,-2.5994,0.9826,40.8795,-2.5552,1.0914,40.8555,-2.5953,0.7557,40.9698,-2.4654,0.6504,41.2695,-2.6782,0.5852,41.3697,-2.6199,0.3426,41.3733,-2.6663,0.4689,41.4208,-2.7029,0.5405,41.1411,-2.7535,0.3963,41.1641,-2.6883,0.5511,41.0489,-2.8995,0.5687,40.9587,-2.875,0.5496,40.99,-2.8377,0.6684,41.2401,-2.7589,0.7637,41.0768,-2.7145,0.9004,41.0028,-2.679,0.7081,41.0887,-2.7845,0.7423,41.0499,-2.7583,0.7047,41.0026,-2.8355,0.8924,40.7951,-2.6659,0.2997,41.005,-2.6232,0.2789,40.5366,-2.0017,0.127,40.7805,-2.0018,0.1214,40.9724,-2.1382,0.4773,40.541,-2.5935,0.4709,40.3425,-2.478,0.4955,40.4372,-2.5534,0.4574,40.4548,-2.492,0.4757,40.2206,-2.7619,0.5077,40.3361,-2.6537,0.5153,40.223,-2.6863,0.4483,39.9914,-2.4553,0.5057,39.9339,-2.5206,0.5007,40.0307,-2.7309,0.4086,40.0381,-2.5006,0.3755,40.0801,-2.5484,0.238,40.4411,-2.534,0.2946,40.3416,-2.5665,0.1453,40.2387,-3.5045,0.1366,40.3117,-3.3622,0.1358,40.2247,-3.3412,0.0959,40.2881,-3.1303,0.2674,40.3209,-2.7447,0.3954,40.2029,-2.7634,0.1324,40.4313,-2.9615,0.4733,41.5206,-1.2424,0.4427,41.5717,-1.2737,0.3925,41.5753,-1.3125,0.523,41.5477,-1.3838,0.263,41.5045,-1.4713,0.266,41.5633,-1.358,0.332,41.5546,-1.3915,0.3744,41.4584,-1.6232,0.3875,41.4889,-1.5219,0.6629,41.3567,-2.0995,0.6109,41.3384,-2.22,0.1077,41.326,-2.2361,0.2386,41.3305,-2.2951,0.1013,41.2173,-2.2276,0.3705,41.3429,-2.3207,0.4641,41.3567,-2.3144,0.5482,41.2793,-2.3117,0.5339,41.2078,-2.2943,0.3447,41.123,-2.5121,0.3254,41.0366,-2.4712,0.3272,40.9958,-2.295,0.3676,40.7606,-2.4388,0.0873,40.5459,-3.4741,0.1087,40.4879,-3.4747,0.0948,40.4715,-3.5578,0.1084,40.3772,-3.5617,0.5792,40.6613,-2.3459,0.1601,40.8383,-2.6174,0.1698,40.9049,-2.655,0.1056,40.8452,-2.6849,0.1106,41.0863,-2.1992,0.2307,41.0693,-2.2497,0.2605,40.7277,-2.5383,0.2014,40.8668,-2.5877,1.255,40.7565,-2.7143,1.2604,40.6839,-2.6907,1.0031,40.763,-2.6755,0.0,40.8357,-3.1348,0.0213,40.7768,-3.3772,0.7598,41.0299,-2.7215,0.7102,41.144,-2.7517,0.6997,41.1189,-2.8207,0.2962,41.156,-2.6754,0.3071,41.1727,-2.6875,0.3517,41.3829,-2.6773,0.2976,41.248,-2.6819,0.5308,41.2959,-2.7401,0.6892,41.0418,-2.9104,0.6373,41.0027,-2.9385,0.5623,41.199,-2.8008,0.5107,41.0358,-2.7423,0.4744,41.055,-2.7232,0.5145,41.0887,-2.7271,1.0853,40.9216,-2.7298,0.5919,40.6965,-2.2278,0.5827,40.6672,-2.3235,0.9031,41.0033,-2.6662,0.1662,40.2221,-2.6476,0.1542,40.3344,-2.6232,0.2933,40.1794,-2.5721,0.3819,40.1561,-2.5251,0.4614,40.2063,-2.4618,0.397,40.1309,-2.4755,0.3686,40.5082,-2.4889,0.3121,40.8725,-2.4786,0.4182,40.7673,-2.3562,0.3815,40.8495,-2.3992,0.296,40.9191,-2.498,0.3493,40.9427,-2.4381,0.2173,40.9313,-2.6197,0.2842,41.0143,-2.6094,0.2278,41.0034,-2.6492,0.1784,40.9666,-2.6846,0.1262,40.9041,-2.7129,0.2372,41.0018,-2.6607,0.3006,41.1442,-2.6771,0.2967,41.0808,-2.6461,0.5015,40.9775,-2.7578,0.5056,40.9917,-2.7575,0.5084,40.9844,-2.7667,0.1016,40.7714,-2.7904,0.1567,40.8303,-2.7096,0.1805,40.7668,-2.7004,0.4101,40.1063,-2.4331,0.4607,40.3224,-2.7148,0.4159,40.3457,-2.4459,0.5107,40.3236,-2.5712,0.0089,40.2019,-2.7937,0.6969,41.255,-2.1109,0.6161,40.7317,-2.5999,0.7157,40.8482,-2.8236,0.0,40.1851,-3.0486,-0.3209,40.4222,-1.8037,-0.5695,40.6864,-0.901,-0.3637,40.6736,-0.8192,-0.3606,40.7372,-0.7965,-0.7297,41.395,-1.6456,-0.6844,41.283,-1.6246,-0.6458,41.3385,-1.4988,-0.6944,40.7782,-1.7651,-0.6755,40.9615,-1.7027,-0.6553,40.9362,-1.8235,-0.3209,40.5526,-1.5039,-0.3957,40.5026,-1.6486,-0.6176,40.7441,-1.9413,-0.6958,41.2412,-2.111,-0.7831,40.4264,-1.6393,-0.3992,40.6651,-2.1391,-0.6091,41.0151,-2.3318,-0.7365,40.8177,-2.4352,-0.7325,40.6507,-2.4153,-0.5435,41.2261,-2.7395,-0.5626,41.2996,-2.7768,-0.5761,41.268,-2.8516,-0.6023,41.3534,-2.8887,-0.6172,41.2793,-3.0193,-0.585,41.2385,-3.0045,-0.6274,41.277,-3.0166,-0.6547,41.1879,-3.0342,-0.7107,41.1608,-2.6635,-0.7534,40.9532,-2.7329,-0.8878,40.9869,-2.7045,-1.1665,40.9169,-2.6872,-1.1604,40.9014,-2.6525,-0.3783,40.5275,-2.0558,-0.1591,40.3886,-1.9087,-0.2815,40.7447,-2.058,-0.3422,40.7899,-2.1714,-0.4284,40.7886,-2.26,-0.4015,40.5365,-2.6384,-0.4481,40.6646,-2.4208,-0.4596,40.6188,-2.5128,-0.485,40.5223,-2.5416,-0.4036,40.217,-2.425,-0.1657,40.184,-2.6544,-0.1824,40.159,-2.6759,-0.0771,40.337,-2.6819,-0.1156,40.2056,-2.7391,-0.2492,40.1495,-2.773,-0.0741,40.2551,-2.9634,-0.12,40.3232,-3.3359,-0.1571,40.3662,-2.9777,-0.3302,40.0767,-2.711,-0.4027,40.1369,-2.7615,-0.1324,40.4313,-2.9615,-0.2225,40.5391,-2.7144,-0.1103,40.494,-2.9622,-0.0768,40.6122,-2.966,-0.0877,40.5538,-3.1536,-0.2076,40.6449,-2.711,-0.1438,40.6277,-2.7771,-0.1698,40.5272,-2.7868,-0.1454,41.5608,-1.1109,-0.1293,41.5936,-1.1752,-0.5366,41.4908,-1.5636,-0.6262,41.5035,-1.5409,-0.523,41.5477,-1.3838,-0.5781,41.4521,-1.6438,-0.4809,41.3247,-2.0843,-0.4697,41.3449,-2.1682,-0.2386,41.3305,-2.2951,-0.2477,41.2363,-2.2791,-0.3224,41.2506,-2.313,-0.2936,41.3543,-2.2276,-0.2601,41.3405,-2.1265,-0.2427,40.8954,-2.5579,-0.2648,40.9577,-2.5845,-0.4084,40.6496,-2.4146,-0.0903,40.5727,-3.5464,-0.0809,40.6185,-3.4952,-0.0483,40.7126,-3.5351,-0.5785,40.8638,-2.7572,-0.3361,41.2165,-2.3324,-1.108,40.7088,-2.677,-1.2131,40.667,-2.6711,-1.0963,40.7621,-2.6958,-0.7378,40.8454,-2.7137,-0.7223,40.8581,-2.7642,-0.7258,40.6427,-2.425,-0.4786,40.6838,-2.5018,-0.611,40.6946,-2.4635,-0.5859,41.1608,-3.0808,-0.4922,41.4626,-2.7011,-0.544,41.0643,-2.7928,-0.5587,41.1292,-2.8614,-0.5623,41.199,-2.8008,-0.5984,41.447,-2.8107,-0.6094,41.3769,-2.6968,-0.6297,41.0317,-3.0104,-0.6339,41.12,-3.0538,-1.2398,40.8498,-2.7221,-1.2438,40.8543,-2.7099,-1.2348,40.8615,-2.6874,-0.7698,41.0736,-2.6317,-0.4185,40.1057,-2.4299,-0.4505,40.1056,-2.4504,-0.0798,40.2556,-2.695,-0.0825,40.2147,-2.7053,-0.3062,41.0283,-2.5411,-0.3098,41.1414,-2.6829,-0.0631,40.8928,-2.7443,-0.3895,41.0372,-2.6974,-0.1859,40.9649,-2.6936,-0.4481,40.3209,-2.7224,-0.4448,40.3842,-2.6878,-0.3752,40.0038,-2.6489,-0.5186,40.1131,-2.7024,-0.4069,40.5465,-2.4731,-0.411,40.4726,-2.4698,-0.0236,40.7601,-3.51,-0.0273,40.7242,-3.5507,-0.0741,40.5714,-3.573,-0.1542,40.5628,-2.5788,-0.0406,40.754,-2.6516,-0.0431,40.8205,-2.7038,-0.1262,40.9041,-2.7129,-0.3965,41.1939,-2.3776,-0.3756,41.3192,-2.114,-0.5333,41.2853,-2.5274,-0.5327,41.3127,-2.5492,-0.7294,41.0533,-2.5444,-0.5789,41.2719,-2.2889,-0.6259,40.6955,-2.4659,-0.7143,40.8231,-2.8099,-0.7086,40.848,-2.83,-0.7,40.8213,-2.8154,-0.6887,40.8143,-2.7959,-0.6798,40.8518,-2.8279,-0.6582,40.8749,-2.8345,-0.7228,40.8336,-2.7523,-0.656,40.8362,-2.7799,-0.6305,40.7296,-2.5956,-0.6956,40.8401,-2.8281,-0.5339,41.2078,-2.2943,-0.0971,40.7987,-2.6433,-0.4614,40.2063,-2.4618,-0.4151,40.2161,-2.4217,-0.5035,39.9722,-2.6796,0.0,40.8877,-2.8819,-0.2251,40.8789,-2.6789,-0.4293,41.0159,-2.7189,-0.4127,40.9764,-2.7001,-0.4919,40.9828,-2.7518,-0.751,41.1133,-2.6582,-1.2156,40.6531,-2.6188,-0.6243,41.17,-3.0708,-0.5405,41.1411,-2.7535,-0.3271,41.0724,-2.4165,-0.4682,40.5499,-2.5022,-0.4094,40.6574,-2.6555,-0.49,41.3459,-1.9207,-0.4283,41.322,-2.0992,-0.4365,41.5307,-1.4688,-0.0911,40.4724,-3.146,-0.2503,40.4231,-2.7084,-0.3502,40.088,-2.7138,-0.4359,39.9548,-2.6271,-0.5034,39.9226,-2.6042,-0.8834,40.9198,-2.6948,-0.5697,41.3991,-2.816,-0.5145,41.0887,-2.7271,-0.4568,40.6921,-2.2347,-0.3346,40.5052,-1.6523,-0.7293,40.8084,-1.6488,-0.673,41.4369,-1.5195,-0.5588,40.6266,-0.9294,-0.1635,40.4712,-1.7593,0.6643,40.7879,-2.7276,0.656,40.8362,-2.7799,0.6887,40.8143,-2.7959,0.7223,40.8581,-2.7642,0.4106,41.3477,-2.1952,0.1323,40.8984,-2.7246,0.0915,40.497,-3.4401,0.0,40.0986,-3.3066,0.1253,40.1505,-3.4113,0.5117,39.9828,-2.6168,0.5124,40.2154,-2.6241,0.5054,40.2077,-2.552,0.4625,40.2186,-2.7723,0.5086,40.9775,-2.76,0.4919,40.9828,-2.7518,0.2941,41.0862,-2.6363,0.2908,41.0293,-2.6082,0.4151,40.2161,-2.4217,0.7855,41.0725,-2.6484,1.0947,40.9438,-2.7012,1.2842,40.6887,-2.6724,0.4584,41.0979,-2.7016,0.4681,41.1579,-2.6984,0.6449,40.9649,-2.8641,0.6737,41.081,-2.9853,0.5474,41.4676,-2.7481,1.231,40.8334,-2.7323,1.168,40.7958,-2.727,0.214,40.7031,-2.5614,0.3444,40.3831,-2.0019,0.0971,40.7987,-2.6433,0.2483,40.932,-2.1717,0.0908,40.4328,-3.3403,0.1115,40.3468,-3.3551,0.0924,40.4174,-3.4055,0.2871,40.1789,-2.766,0.2351,40.5667,-2.5309,0.492,40.4474,-2.5986,0.0,40.7733,-1.9911,1.2644,40.6606,-2.6325,1.2873,40.6944,-2.6606,1.2753,40.7028,-2.6298,1.1604,40.9014,-2.6525,1.1065,40.677,-2.64,0.6329,41.3557,-2.7984,0.5678,40.9944,-2.9491,1.0536,40.9295,-2.6247,0.551,40.383,-1.9636,0.6338,41.12,-2.0983,0.0,41.1596,-1.0421,0.1635,40.4712,-1.7593,0.3346,40.5052,-1.6523,0.7831,40.4264,-1.6393,0.5761,41.268,-2.8516,1.1058,40.9419,-2.689,0.5034,39.9226,-2.6042,0.5035,39.9722,-2.6796};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getlum_Coord_6_871_point_2()
		{
			double[] value = {0.4359,39.9548,-2.6271,0.4027,40.1369,-2.7615,0.2503,40.4231,-2.7084,0.0877,40.5538,-3.1536,0.2076,40.6449,-2.711,0.1454,41.5608,-1.1109,0.4283,41.322,-2.0992,0.2601,41.3405,-2.1265,1.2438,40.8543,-2.7099,0.0825,40.2147,-2.7053,0.3062,41.0283,-2.5411,0.4127,40.9764,-2.7001,0.4293,41.0159,-2.7189,0.3098,41.1414,-2.6829,0.4207,40.062,-2.7156,0.1542,40.5628,-2.5788,-0.2885,40.9923,-1.0179,-0.3806,40.6088,-1.1923,-0.4926,40.5583,-1.3466,-0.325,40.6091,-1.3473,-0.5443,40.3828,-1.8869,-0.7557,40.9698,-2.4654,-0.5439,41.2104,-2.4688,-0.3963,41.1641,-2.6883,-0.5511,41.0489,-2.8995,-0.7081,41.0887,-2.7845,-1.1065,40.677,-2.64,-1.2873,40.6944,-2.6606,-1.2644,40.6606,-2.6325,-0.5153,40.223,-2.6863,-0.238,40.4411,-2.534,-0.2351,40.5667,-2.5309,-0.4733,41.5206,-1.2424,-0.3925,41.5753,-1.3125,-0.681,41.466,-1.6472,-0.5482,41.2793,-2.3117,-0.0948,40.4715,-3.5578,-1.0031,40.763,-2.6755,-0.6997,41.1189,-2.8207,-0.5308,41.2959,-2.7401,-0.6449,40.9649,-2.8641,-0.4744,41.055,-2.7232,-0.5107,41.0358,-2.7423,-1.0947,40.9438,-2.7012,-0.9031,41.0033,-2.6662,-0.5086,40.9775,-2.76,-0.5054,40.2077,-2.552,-0.5107,40.3236,-2.5712,-0.5124,40.2154,-2.6241,-0.4101,40.1063,-2.4331,-0.4207,40.062,-2.7156,-0.6643,40.7879,-2.7276,0.0,41.336,-2.2079,-0.1077,41.326,-2.2361,-0.1108,41.3362,-2.2302,0.0,41.3267,-2.2136,-0.6715,41.4496,-1.5245,-0.1442,41.5494,-1.1051,-0.3171,41.5389,-1.1363,-0.3701,41.4048,-1.7559,-0.2749,41.4654,-1.6148,-0.2576,41.42,-1.7562,-0.1324,40.2253,-3.53,-0.4771,40.0879,-2.7671,-0.4907,40.0907,-2.7588,-0.4953,39.9184,-2.6051,-0.4359,41.0286,-2.7207,-0.2173,40.9313,-2.6197,-1.0183,40.9717,-2.6811,-1.0167,40.9705,-2.6937,-0.8663,40.6778,-2.4633,-1.0134,40.683,-2.5396,-1.0142,40.6935,-2.5276,-1.0853,40.9216,-2.7298,-0.5251,41.4097,-2.7557,-0.5904,41.4476,-2.815,-0.5688,41.1897,-2.9213,-0.2642,40.7929,-2.6642,-0.3085,40.6511,-2.6833,-1.2651,40.7837,-2.6589,-1.1767,40.8253,-2.622,-0.9963,40.8581,-2.7104,-1.0822,40.827,-2.7187,-1.0242,40.9457,-2.7213,0.0,40.5677,-3.6054,0.0,40.7225,-3.5631,-0.1101,40.4732,-3.5302,-0.1361,40.681,-2.6042,-0.543,41.352,-2.2753,0.0,41.2334,-2.1985,-0.1013,41.2173,-2.2276,-0.2513,41.3803,-1.9038,-0.1257,41.3867,-1.9115,0.0,41.4269,-1.743,-0.1373,41.4259,-1.7413,0.0,41.3761,-1.904,-0.4826,41.3896,-1.7555,-0.5926,41.405,-1.7713,-0.5739,41.3681,-1.908,-0.5812,41.4841,-1.3759,-0.2931,41.5894,-1.2595,-0.1346,41.5947,-1.2469,-0.0555,40.7062,-3.1444,-0.0688,40.6607,-3.3523,-0.3689,40.9956,-2.6718,-0.0486,40.7552,-2.9547,-0.1893,40.4225,-2.8111,-1.2769,40.7733,-2.687,-1.0914,40.8555,-2.5953,-1.0536,40.9295,-2.6247,-0.8924,40.7951,-2.6659,-0.9826,40.8795,-2.5552,-0.9599,40.9447,-2.5994,-1.0002,40.6993,-2.6016,-1.1192,40.6777,-2.5688,-1.097,40.7604,-2.565,-0.6663,41.0634,-1.8682,-0.7092,41.1886,-1.8996,-0.4846,40.5264,-1.4894,-0.4631,40.5112,-1.5471,-0.6707,40.4784,-1.4793,-0.8163,40.5081,-1.3474,-0.8189,40.4592,-1.4903,-0.6711,40.5258,-1.3555,-0.7751,40.5493,-1.2036,-0.7283,40.6372,-1.045,-0.8046,40.5875,-1.2148,-0.7027,40.5935,-1.0532,-0.6801,41.101,-1.7543,-0.7993,40.7122,-1.4493,-0.7055,40.8635,-1.4977,-0.8114,40.6687,-1.5925,-0.7476,41.3226,-1.8072,-0.7193,41.2276,-1.7859,-0.755,40.7447,-1.2904,-0.651,40.8887,-1.3812,-0.5444,41.224,-1.3609,-0.5987,41.1854,-1.4738,-0.5809,41.3718,-1.3794,-0.8613,40.5503,-1.3848,-0.3416,40.6163,-0.96,-0.183,40.6284,-0.9484,-0.3243,40.6253,-1.1594,-0.1704,40.6237,-1.1211,-0.1556,40.5249,-1.64,0.0,40.5571,-1.5022,-0.1727,40.557,-1.4949,0.0,40.5101,-1.6488,0.0,40.6845,-0.7813,-0.1867,40.6852,-0.7918,0.0,40.6212,-0.9565,-0.4618,40.9573,-1.1082,-0.5424,41.0879,-1.3039,-0.5696,40.937,-1.2335,-0.4343,41.0934,-1.178,-0.511,40.8276,-1.0062,-0.3204,40.8673,-0.8945,-0.2917,41.2933,-1.1428,-0.448,41.4135,-1.2376,-0.4303,41.2486,-1.2271,-0.3089,41.4564,-1.1492,-0.1283,41.2913,-1.1065,-0.1316,41.471,-1.1123,0.0,40.9894,-0.9443,0.6798,40.8518,-2.8279,0.6582,40.8749,-2.8345,0.0,41.5662,-1.1069,0.1442,41.5494,-1.1051,0.0,41.5536,-1.1018,0.5827,41.4711,-1.3715,0.6715,41.4496,-1.5245,0.5812,41.4841,-1.3759,0.673,41.4369,-1.5195,0.2749,41.4654,-1.6148,0.0431,40.8205,-2.7038,0.0406,40.754,-2.6516,0.0688,40.6607,-3.3523,0.123,40.3845,-3.5345,0.1101,40.4732,-3.5302,0.4953,39.9184,-2.6051,0.2642,40.7929,-2.6642,0.4359,41.0286,-2.7207,0.3689,40.9956,-2.6718,1.0167,40.9705,-2.6937,1.0183,40.9717,-2.6811,1.2744,40.7678,-2.698,1.2769,40.7733,-2.687,1.0142,40.6935,-2.5276,1.1128,40.6667,-2.5804,1.1192,40.6777,-2.5688,1.0134,40.683,-2.5396,0.5251,41.4097,-2.7557,0.6398,41.3854,-2.9062,0.6315,41.3879,-2.9078,1.2651,40.7837,-2.6589,1.0242,40.9457,-2.7213,1.0002,40.6993,-2.6016,0.1361,40.681,-2.6042,0.0741,40.5714,-3.573,0.0,40.8033,-2.7168,0.0,40.7192,-2.6534,0.1108,41.3362,-2.2302,0.0,41.3531,-2.144,0.1273,41.3539,-2.1896,0.1183,41.3488,-2.1026,0.1257,41.3867,-1.9115,0.0,41.3456,-2.0944,0.3701,41.4048,-1.7559,0.4826,41.3896,-1.7555,0.1363,41.4701,-1.6038,0.1294,41.5214,-1.4409,0.131,41.5754,-1.3196,0.5926,41.405,-1.7713,0.681,41.466,-1.6472,0.713,41.4123,-1.7895,0.0,41.5941,-1.2457,0.1346,41.5947,-1.2469,0.0,41.5755,-1.3245,0.0,41.5954,-1.1702,0.0486,40.7552,-2.9547,0.0555,40.7062,-3.1444,0.1893,40.4225,-2.8111,0.4907,40.0907,-2.7588,0.0,40.5666,-1.9557,1.1767,40.8253,-2.622,0.9963,40.8581,-2.7104,0.544,41.0643,-2.7928,0.5587,41.1292,-2.8614,0.8545,40.9889,-2.5703,0.8663,40.6778,-2.4633,1.0028,40.773,-2.5356,0.8514,40.8001,-2.4694,0.8746,40.5027,-1.533,0.8163,40.5081,-1.3474,0.8189,40.4592,-1.4903,0.8613,40.5503,-1.3848,0.6553,40.9362,-1.8235,0.6663,41.0634,-1.8682,0.6707,40.4784,-1.4793,0.648,40.4385,-1.6009,0.8046,40.5875,-1.2148,0.7751,40.5493,-1.2036,0.7293,40.8084,-1.6488,0.6755,40.9615,-1.7027,0.8114,40.6687,-1.5925,0.7993,40.7122,-1.4493,0.6558,41.1433,-1.5998,0.7193,41.2276,-1.7859,0.6844,41.283,-1.6246,0.6801,41.101,-1.7543,0.7297,41.395,-1.6456,0.6458,41.3385,-1.4988,0.5987,41.1854,-1.4738,0.651,40.8887,-1.3812,0.6631,40.8007,-1.1402,0.755,40.7447,-1.2904,0.5696,40.937,-1.2335,0.5695,40.6864,-0.901,0.7283,40.6372,-1.045,0.3416,40.6163,-0.96,0.3806,40.6088,-1.1923,0.3243,40.6253,-1.1594,0.1867,40.6852,-0.7918,0.3637,40.6736,-0.8192,0.183,40.6284,-0.9484,0.1556,40.5249,-1.64,0.1727,40.557,-1.4949,0.1622,40.6008,-1.3594,0.0,40.6,-1.3444,0.155,40.7623,-0.7483,0.0,40.7602,-0.7401,0.4343,41.0934,-1.178,0.5444,41.224,-1.3609,0.4303,41.2486,-1.2271,0.5424,41.0879,-1.3039,0.4618,40.9573,-1.1082,0.3204,40.8673,-0.8945,0.511,40.8276,-1.0062,0.2885,40.9923,-1.0179,0.3089,41.4564,-1.1492,0.4747,41.5077,-1.2388,0.3171,41.5389,-1.1363,0.448,41.4135,-1.2376,0.2822,41.1488,-1.0924,0.2917,41.2933,-1.1428,0.1398,40.8814,-0.8416,0.1459,41.0047,-0.9626,0.0,40.8795,-0.8248,0.1316,41.471,-1.1123,0.0,41.4823,-1.1016,0.3606,40.7372,-0.7965,0.1704,40.6237,-1.1211,0.5809,41.3718,-1.3794,0.7055,40.8635,-1.4977,0.7476,41.3226,-1.8072,1.1897,40.7466,-2.5974,1.2193,40.6594,-2.6116,1.097,40.7604,-2.565,0.5688,41.1897,-2.9213,1.0822,40.827,-2.7187,0.0883,40.5215,-3.3532,0.7287,41.4076,-1.6502,0.7459,41.3355,-1.8114,0.7007,41.3792,-1.9119,0.5739,41.3681,-1.908,0.1373,41.4259,-1.7413,0.2513,41.3803,-1.9038,0.543,41.352,-2.2753,0.0,40.2008,-3.5611,0.1324,40.2253,-3.53,0.0,40.0986,-3.4539,0.0605,40.6466,-2.6291,0.0,40.6207,-2.6303,0.5904,41.4476,-2.815,0.4771,40.0879,-2.7671,0.0,40.7614,-3.5122,0.1121,40.4004,-3.4367,0.2576,41.42,-1.7562,-0.1398,40.8814,-0.8416,-0.4747,41.5077,-1.2388,-0.155,40.7623,-0.7483,-0.1622,40.6008,-1.3594,-0.6631,40.8007,-1.1402,-0.6558,41.1433,-1.5998,-0.6607,41.0218,-1.5501,-0.648,40.4385,-1.6009,-0.7468,41.2743,-1.9355,-1.0028,40.773,-2.5356,-0.8514,40.8001,-2.4694,-0.8545,40.9889,-2.5703,-0.131,41.5754,-1.3196,-0.1294,41.5214,-1.4409,-0.1363,41.4701,-1.6038,-1.2744,40.7678,-2.698,-1.1128,40.6667,-2.5804,-0.0605,40.6466,-2.6291,-0.5827,41.4711,-1.3715,-0.3705,41.3657,-1.9128,-0.6315,41.3879,-2.9078,0.0,41.4804,-1.597,-0.0883,40.5215,-3.3532,-0.8742,40.9014,-2.5063,-0.8746,40.5027,-1.533,-0.6064,41.0427,-1.4332,-0.646,40.5569,-1.2411,0.0,40.483,-1.7228,0.0,40.6327,-1.1201,0.746,41.2873,-1.9395,0.7468,41.2743,-1.9355,0.4631,40.5112,-1.5471,0.3085,40.6511,-2.6833,0.0,41.5206,-1.4495,0.2931,41.5894,-1.2595,0.8742,40.9014,-2.5063,0.7092,41.1886,-1.8996,0.6607,41.0218,-1.5501,0.6064,41.0427,-1.4332};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_872_vector_1()
		{
			double[] value = {-0.9989,0.0116,0.0447,-0.9988,-0.0212,0.0439,-0.9987,0.0461,0.022,-0.9978,0.0171,0.0644,-0.9977,0.0668,-0.0133,-0.9973,0.0031,0.0729,-0.9967,0.0561,-0.0584,-0.9965,0.0836,0.0054,-0.9959,-0.0907,-0.0059,-0.9946,0.0451,-0.0933,-0.9944,-0.0645,-0.084,-0.9926,-0.0719,0.0974,-0.9925,0.092,-0.0808,-0.9923,0.1237,-0.0043,-0.9916,0.1076,-0.0719,-0.9909,0.0945,0.0956,-0.9906,0.1347,-0.0242,-0.99,0.1236,-0.0678,-0.9897,-0.1413,0.0208,-0.9867,-0.1522,0.0567,-0.9858,-0.1381,0.0951,-0.9829,0.1767,-0.0519,-0.9809,0.0549,0.1867,-0.9798,0.1096,0.1673,-0.9783,0.041,-0.203,-0.9768,0.2028,-0.0686,-0.9752,0.117,-0.1877,-0.975,-0.0981,-0.1994,-0.9747,0.2236,0.0017,-0.9739,-0.0855,-0.2104,-0.9736,-0.2279,-0.0127,-0.9735,-0.2048,-0.1015,-0.9729,0.0977,-0.2095,-0.9724,-0.0817,0.2185,-0.9724,0.166,-0.1642,-0.9722,-0.2322,-0.0286,-0.9721,0.193,-0.133,-0.9693,0.1522,0.1929,-0.9689,0.2466,-0.0206,-0.9684,0.0921,-0.2317,-0.9673,0.0309,-0.2517,-0.9672,0.2531,-0.0235,-0.967,0.1182,0.2255,-0.9667,0.0511,-0.2508,-0.9666,0.2562,0.0051,-0.9665,0.133,0.2193,-0.9665,-0.255,-0.029,-0.9646,0.1345,-0.2266,-0.9643,0.1852,0.189,-0.9641,0.1779,-0.1969,-0.964,0.2656,-0.0087,-0.964,0.1272,-0.2336,-0.9625,-0.1384,0.2333,-0.9622,-0.1904,-0.1948,-0.9604,-0.0537,0.2733,-0.9598,0.1017,0.2617,-0.9586,0.0165,0.2843,-0.9576,-0.007,-0.288,-0.956,0.2353,-0.1752,-0.9551,-0.0073,0.2962,-0.955,0.2245,-0.1941,-0.9548,0.2865,-0.0796,-0.9542,-0.2575,0.152,-0.9541,0.2281,0.1941,-0.954,0.2875,-0.0845,-0.9534,-0.1081,-0.2816,-0.9525,-0.0433,-0.3016,-0.9514,0.2181,-0.2175,-0.9507,0.2216,0.2171,-0.9489,0.2501,0.1927,-0.9486,0.2811,0.1452,-0.948,0.1481,-0.2816,-0.9472,0.3203,0.0159,-0.9466,0.1281,-0.2959,-0.9463,-0.002,0.3232,-0.9452,-0.2682,-0.1861,-0.944,0.2503,0.2152,-0.9436,0.0009,-0.331,-0.9403,-0.315,-0.1287,-0.9387,-0.1871,-0.2897,-0.9374,0.2849,0.2002,-0.9371,0.0034,0.3491,-0.9359,-0.0266,-0.3512,-0.9345,0.2755,-0.2256,-0.9336,-0.2454,0.2612,-0.9331,-0.3522,0.0724,-0.9312,0.2113,-0.2972,-0.93,0.3674,0.01,-0.9299,-0.0493,0.3646,-0.9277,0.3478,0.1359,-0.9266,0.3324,0.1756,-0.9252,0.0485,0.3764,-0.9218,0.0642,-0.3822,-0.921,-0.3816,-0.0787,-0.9207,0.1414,-0.3638,-0.9185,0.1248,-0.3753,-0.9177,0.2113,-0.3363,-0.9172,-0.2215,0.3311,-0.9169,-0.2664,0.2972,-0.916,0.1162,-0.3841,-0.9143,0.3901,0.1092,-0.912,0.3585,-0.1993,-0.9118,0.3654,-0.1874,-0.9113,0.2781,0.3036,-0.911,-0.2545,-0.3247,-0.9098,0.3583,0.2097,-0.9095,-0.0097,0.4156,-0.9082,0.2092,0.3626,-0.9075,-0.2549,0.3338,-0.9059,0.1893,-0.3787,-0.9056,0.3943,0.156,-0.9053,0.2113,-0.3685,-0.9039,0.3356,-0.2653,-0.9025,-0.2045,-0.3789,-0.902,-0.0938,0.4214,-0.9013,0.2621,-0.3449,-0.9011,-0.3998,-0.1678,-0.9001,-0.2806,-0.3332,-0.9001,-0.2492,-0.3573,-0.8967,-0.1727,0.4076,-0.8966,0.0646,0.4382,-0.8936,0.2934,0.3396,-0.8935,0.3914,-0.22,-0.8934,0.2655,0.3625,-0.893,0.3597,-0.2704,-0.8926,0.0721,0.4451,-0.8909,0.2283,-0.3926,-0.8905,0.4521,0.0521,-0.8879,-0.3409,-0.309,-0.8859,-0.0243,-0.4632,-0.8845,0.296,-0.3606,-0.8826,0.2934,-0.3673,-0.8825,-0.0379,-0.4689,-0.8819,0.4568,0.117,-0.8808,-0.4553,-0.1301,-0.8777,-0.2807,0.3883,-0.8777,0.4027,0.2597,-0.8747,-0.18,0.4499,-0.8743,-0.4275,-0.2299,-0.8685,-0.4172,0.2676,-0.8661,0.168,-0.4708,-0.8643,-0.0129,-0.5028,-0.8633,0.2885,-0.4142,-0.8619,-0.1194,-0.4929,-0.8604,0.1516,-0.4865,-0.8593,0.2697,-0.4347,-0.8587,0.4228,-0.2895,-0.8543,0.4607,0.2405,-0.8502,0.148,-0.5053,-0.8473,-0.5212,0.1022,-0.8448,0.0546,-0.5322,-0.8439,0.5214,0.126,-0.8439,0.2443,-0.4777,-0.8412,-0.0663,-0.5366,-0.8385,-0.0433,-0.5432,-0.8367,0.0187,0.5473,-0.8356,-0.0996,0.5403,-0.8347,-0.0896,-0.5433,-0.8337,-0.5474,0.073,-0.8325,0.2501,-0.4944,-0.8308,-0.1947,-0.5214,-0.8308,0.5158,0.2092,-0.83,0.1385,-0.5403,-0.8272,0.4736,0.3023,-0.827,0.5377,-0.1641,-0.8248,-0.3978,-0.4019,-0.8242,0.2839,0.49,-0.8241,0.1472,-0.5469,-0.8191,-0.3183,-0.4773,-0.8172,0.391,0.4234,-0.8123,0.0925,0.5759,-0.8102,0.0401,-0.5848,-0.8092,0.5201,0.2734,-0.8089,0.2364,-0.5383,-0.8088,-0.2352,0.539,-0.8058,0.4489,0.3862,-0.8022,-0.4963,-0.3318,-0.8017,0.0269,0.5971,-0.7996,-0.0928,0.5933,-0.7994,0.5728,0.1811,-0.7944,-0.2647,-0.5467,-0.7929,-0.1294,0.5955,-0.7854,0.0073,0.619,-0.7806,-0.4561,0.4274,-0.7787,0.4731,-0.4121,-0.7742,0.475,0.4183,-0.7732,0.0721,0.6301,-0.7712,-0.6189,-0.1489,-0.7681,-0.0742,0.636,-0.7635,0.6298,0.1427,-0.7621,-0.2722,-0.5874,-0.7614,0.582,0.2855,-0.7603,-0.4465,-0.4718,-0.7596,0.0976,0.643,-0.7565,0.2686,-0.5963,-0.7551,0.5771,-0.3111,-0.7541,-0.1963,0.6267,-0.7539,0.3786,0.5369,-0.7499,0.5218,0.4067,-0.7496,-0.2909,-0.5946,-0.7477,0.5223,0.4101,-0.7474,-0.1436,-0.6486,-0.7471,-0.0313,-0.664,-0.7467,-0.5644,-0.3519,-0.7455,0.6665,-0.0005,-0.7436,-0.6584,-0.1167,-0.7434,0.2077,0.6358,-0.7423,0.3256,0.5856,-0.7361,0.1126,-0.6674,-0.7348,0.4734,-0.4858,-0.7322,0.1589,-0.6623,-0.73,0.6503,-0.2104,-0.7274,0.0461,0.6847,-0.7271,-0.0679,-0.6831,-0.7246,-0.6364,-0.2645,-0.7228,0.5322,0.4408,-0.722,0.6852,-0.0961,-0.7162,0.3011,0.6296,-0.7154,0.2221,-0.6625,-0.7134,-0.0121,0.7007,-0.7126,-0.4403,-0.5463,-0.7126,0.6828,-0.1615,-0.7114,0.5908,0.3806,-0.7029,-0.633,0.3245,-0.7019,-0.5734,-0.4224,-0.7017,0.6918,0.1704,-0.6994,0.4219,0.5769,-0.6989,-0.0967,0.7086,-0.6942,0.7192,0.0283,-0.6932,0.4302,0.5783,-0.691,-0.4254,-0.5844,-0.6891,-0.1628,0.7061,-0.6883,0.6182,0.3796,-0.6872,0.1048,0.7189,-0.6867,0.0062,0.7269,-0.6844,0.0793,-0.7248,-0.6826,0.4733,0.5567,-0.6783,-0.162,0.7167,-0.6771,0.4289,0.598,-0.6755,0.0465,0.7359,-0.6754,-0.2179,-0.7045,-0.673,0.2476,-0.697,-0.6728,0.0471,-0.7383,-0.6694,-0.7358,0.1026,-0.6682,0.2429,0.7032,-0.6651,-0.4135,-0.6218,-0.6639,-0.7406,-0.1036,-0.6623,-0.7078,-0.2456,-0.6605,-0.3796,-0.6478,-0.6587,0.463,0.5931,-0.6577,0.1091,0.7453,-0.6521,-0.6655,-0.3632,-0.651,-0.5797,-0.49,-0.649,0.0993,0.7542,-0.649,-0.4648,0.6023,-0.6472,0.7176,0.2572,-0.6452,0.2574,-0.7193,-0.6444,-0.3724,-0.6679,-0.64,-0.0836,-0.7638,-0.6394,0.397,-0.6585,-0.6381,-0.7683,-0.0513,-0.638,-0.5327,0.5561,-0.6375,0.6588,-0.3995,-0.6334,0.7736,0.0197,-0.632,0.143,-0.7617,-0.6315,0.3561,0.6888,-0.6268,-0.7046,0.3327,-0.6265,0.7705,-0.1173,-0.626,0.7768,-0.0689,-0.6253,0.4123,-0.6626,-0.6252,0.0767,0.7767,-0.625,0.3062,-0.7181,-0.6246,-0.0841,0.7764,-0.6237,-0.0015,-0.7817,-0.6229,0.2882,-0.7273,-0.6213,0.0686,-0.7805,-0.6212,-0.7609,-0.1874,-0.6172,0.3052,0.7252,-0.6157,0.4949,-0.6132,-0.6154,0.633,0.4697,-0.6145,0.119,-0.7799,-0.6144,0.4539,-0.6453,-0.6118,-0.7163,-0.3355,-0.6087,-0.0972,-0.7874,-0.6072,-0.7945,-0.0003,-0.6049,0.0674,-0.7934,-0.6022,-0.6211,-0.5015,-0.6022,-0.7122,0.3608,-0.6011,0.1234,-0.7896,-0.5993,-0.2471,-0.7615,-0.599,-0.7993,0.0474,-0.5987,-0.3244,0.7324,-0.598,-0.0726,0.7982,-0.5945,-0.7803,0.1942,-0.5912,0.6447,0.4845,-0.584,0.556,0.5915,-0.5832,-0.7813,0.2223,-0.5829,-0.1952,-0.7888,-0.5818,0.7106,0.3957,-0.5803,0.7677,-0.2717,-0.5788,-0.3213,-0.7495,-0.5773,0.1254,-0.8069,-0.5768,0.1076,0.8098,-0.5766,-0.3458,0.7402,-0.5764,0.7332,-0.3609,-0.5717,-0.1932,0.7974,-0.5705,-0.1353,-0.8101,-0.5654,0.2843,-0.7743,-0.5619,0.4313,-0.7059,-0.5609,0.8187,0.1226,-0.5607,-0.7493,-0.3523,-0.5594,-0.798,-0.2241,-0.5557,0.0969,-0.8257,-0.5532,0.1341,-0.8222,-0.5475,0.5466,0.6336,-0.5468,-0.7713,-0.3258,-0.5447,0.5487,0.6342,-0.5444,-0.661,0.5164,-0.5405,0.5034,0.6741,-0.5377,0.2287,-0.8115,-0.5335,-0.3844,-0.7534,-0.5304,0.6431,0.5523,-0.5284,-0.6777,-0.5114,-0.5253,0.7989,-0.2929,-0.5247,0.2737,-0.8061,-0.5239,-0.25,-0.8143,-0.5178,0.8299,0.2079,-0.5164,0.8193,-0.249,-0.5147,-0.1628,0.8418,-0.5113,-0.4849,-0.7095,-0.5075,-0.6543,-0.5606,-0.5075,0.4149,0.7552,-0.5045,-0.831,0.2344,-0.502,-0.0607,0.8627,-0.501,0.1722,-0.8481,-0.4975,-0.83,-0.2521,-0.4974,0.1293,0.8578,-0.4967,-0.2866,0.8192,-0.4935,0.0262,-0.8694,-0.4927,-0.039,-0.8693,-0.4902,0.0961,-0.8663,-0.4895,-0.331,0.8067,-0.489,0.1405,-0.8609,-0.4888,0.7067,0.5116,-0.4886,-0.553,0.6749,-0.4883,0.4127,0.7689,-0.4873,-0.8378,-0.2461,-0.4871,-0.3821,-0.7853,-0.4868,-0.5875,0.6465,-0.4858,-0.0431,-0.873,-0.4843,-0.0927,-0.87,-0.484,-0.1372,-0.8642,-0.4815,-0.0932,-0.8715,-0.4794,-0.7028,0.5255,-0.4784,0.8475,-0.2297,-0.4776,0.8269,-0.2967,-0.4736,0.8655,0.1631,-0.4725,0.5303,-0.704,-0.472,0.3432,-0.812,-0.4704,-0.4703,-0.7467,-0.4685,-0.6626,-0.5844,-0.4673,0.7895,0.398,-0.4658,0.1733,-0.8677,-0.4645,0.0954,0.8804,-0.4635,0.8495,0.2521,-0.4623,0.1175,-0.8789,-0.4602,0.8821,-0.1007,-0.4545,0.6359,0.6238,-0.4542,0.3782,0.8066,-0.4523,-0.7796,-0.4331,-0.4506,0.5567,0.6979,-0.4498,0.8866,0.108,-0.4483,-0.3889,0.8049,-0.4467,0.3868,0.8067,-0.4422,-0.2528,-0.8605,-0.4393,-0.352,0.8265,-0.4359,0.0247,0.8996,-0.4349,0.1312,0.8909,-0.4295,-0.1338,-0.8931,-0.4225,-0.6283,-0.6533,-0.4202,0.9064,0.0433,-0.42,0.5853,-0.6936,-0.413,0.3613,0.836,-0.4126,0.8779,0.2432,-0.4124,0.8985,0.1501,-0.4116,0.0889,-0.907,-0.4096,0.0921,0.9076,-0.4091,0.5604,0.7201,-0.4077,0.186,0.894,-0.4075,-0.8409,0.356,-0.4068,0.5737,0.7109,-0.4061,-0.9127,-0.0464,-0.4037,0.9004,-0.1624,-0.4018,0.8097,-0.4276,-0.4014,0.4192,0.8143,-0.3998,0.0847,-0.9127,-0.3993,-0.1439,-0.9055,-0.3992,0.1233,0.9085,-0.3991,-0.4759,0.7837,-0.3976,0.3728,0.8384,-0.3964,-0.8308,0.3907,-0.3941,0.0117,-0.919,-0.3941,-0.2236,0.8915,-0.3924,-0.0231,-0.9195,-0.391,-0.3632,0.8457,-0.39,0.1311,0.9114,-0.3879,0.0077,0.9217,-0.3866,-0.6637,-0.6404,-0.3834,0.9201,-0.0807,-0.383,-0.2034,0.9011,-0.3819,-0.1115,-0.9175,-0.3805,-0.3304,-0.8638,-0.3782,-0.515,-0.7693,-0.3763,-0.1814,-0.9086,-0.3726,-0.1894,-0.9085,-0.3726,0.0862,-0.924,-0.3724,0.1947,0.9074,-0.3723,0.3861,0.844,-0.3713,-0.0227,-0.9282,-0.3693,0.1,0.9239,-0.366,-0.0877,0.9265,-0.3645,0.8614,-0.3539,-0.3633,0.726,0.5839,-0.3631,-0.2012,-0.9098,-0.3629,0.2168,-0.9062,-0.3627,0.6601,0.6578,-0.3579,0.829,-0.4297,-0.3576,0.1688,0.9185,-0.3559,-0.6363,-0.6845,-0.3518,0.1817,0.9183,-0.3501,-0.3149,0.8822,-0.3476,0.194,0.9174,-0.3473,0.0578,0.936,-0.3469,-0.7995,0.4904,-0.3449,0.5865,0.7329,-0.3437,0.0576,-0.9373,-0.3433,-0.4748,-0.8104,-0.3421,-0.5395,-0.7694,-0.3415,-0.1741,-0.9236,-0.341,0.8613,-0.3767,-0.3399,-0.9112,0.2329,-0.3393,-0.1552,-0.9278,-0.3375,0.8461,0.4126,-0.3361,-0.0987,-0.9367,-0.336,0.708,0.6212,-0.3321,0.9304,0.155,-0.3313,-0.8857,0.3252,-0.3311,0.5777,-0.7461,-0.3254,0.1061,-0.9396,-0.3203,-0.3085,-0.8957,-0.3168,-0.9458,0.071,-0.3141,0.7063,-0.6344,-0.3139,-0.4814,0.8184,-0.313,0.2446,-0.9177,-0.3127,-0.5171,-0.7967,-0.3101,-0.751,-0.583,-0.3096,0.3247,-0.8937,-0.3063,-0.9061,-0.2918,-0.3053,0.014,0.9521,-0.3029,0.1966,-0.9325,-0.3018,0.2259,-0.9262,-0.3016,-0.8343,-0.4615,-0.2988,0.9393,0.1684,-0.2968,-0.8361,-0.4614,-0.2908,0.0745,-0.9539,-0.2891,0.0821,-0.9538,-0.2878,-0.55,-0.784,-0.2872,0.318,-0.9036,-0.2822,0.0896,-0.9552,-0.2811,-0.3961,0.8741,-0.2803,0.8011,-0.5288,-0.2735,-0.7816,-0.5606,-0.2704,0.0431,0.9618,-0.2679,0.1043,-0.9578,-0.2661,-0.5704,-0.7771,-0.2651,-0.1817,0.9469,-0.2619,-0.9311,0.2538,-0.2608,0.8783,-0.4006,-0.2604,-0.9608,-0.095,-0.2596,-0.8752,-0.4081,-0.2588,0.4719,-0.8428,-0.258,-0.5388,-0.802,-0.2574,-0.7723,0.5808,-0.2568,-0.9656,0.04,-0.2556,-0.2934,0.9212,-0.2552,0.623,-0.7394,-0.2492,0.4574,-0.8536,-0.2491,-0.7378,-0.6273,-0.2476,-0.9669,0.0624,-0.2471,0.1914,-0.9499,-0.2467,0.1371,-0.9593,-0.2444,0.1878,0.9513,-0.2371,0.9355,-0.2618,-0.2346,0.1271,0.9638,-0.233,0.2409,-0.9422,-0.2319,0.8899,-0.3929,-0.2303,0.2086,-0.9505,-0.2255,-0.8583,-0.461,-0.2245,-0.3632,-0.9043,-0.2217,-0.927,0.3025,-0.2206,0.3267,-0.919,-0.2183,-0.5394,-0.8133,-0.2162,0.7846,-0.581,-0.2157,-0.9556,0.2006,-0.2124,-0.9685,0.1302,-0.2084,-0.3676,-0.9064,-0.2077,-0.7255,-0.6562,-0.1966,0.7528,-0.6282,-0.192,0.034,0.9808,-0.1915,-0.2049,-0.9599,-0.1893,0.5868,0.7873,-0.1891,0.7577,-0.6245,-0.1864,0.1905,0.9638,-0.1838,0.9439,0.2745,-0.1836,-0.9248,0.3332,-0.1821,-0.2432,-0.9527,-0.1815,-0.2229,-0.9578,-0.1809,-0.9703,0.1608,-0.1795,-0.9441,0.2766,-0.1793,-0.8706,-0.4582,-0.1716,-0.4598,-0.8713,-0.1687,-0.3013,-0.9385,-0.1673,0.7105,-0.6835,-0.1654,-0.9764,0.1387,-0.165,-0.9309,0.3258,-0.1632,-0.6617,0.7318,-0.1601,0.9687,-0.1899,-0.1587,0.6608,0.7336,-0.1573,-0.9477,0.2776,-0.1546,0.4442,0.8825,-0.1545,0.1747,0.9724,-0.1539,0.0645,-0.986,-0.1472,-0.7513,-0.6434,-0.1449,-0.9111,-0.386,-0.1443,0.9886,-0.0431,-0.143,0.1159,0.9829,-0.1421,-0.3572,-0.9231,-0.1393,0.9424,-0.3042,-0.1362,-0.0234,0.9904,-0.1361,0.7203,-0.6801,-0.1358,0.9221,0.3624,-0.1349,-0.9479,0.2887,-0.1342,-0.8056,-0.577,-0.1321,0.9899,0.0511,-0.1309,-0.9402,-0.3145,-0.1304,-0.9909,0.0322,-0.1293,0.8251,-0.5499,-0.1282,0.906,-0.4033,-0.1253,0.0109,-0.9921,-0.1252,0.9686,-0.2148,-0.1199,0.9926,0.0186,-0.1191,0.7497,-0.651,-0.1181,-0.4097,-0.9045,-0.117,0.6833,0.7207,-0.1164,0.9459,-0.3029,-0.1157,-0.9911,0.0659,-0.1126,-0.9733,0.2,-0.1123,0.1665,0.9796,-0.1079,-0.8725,-0.4765,-0.1073,-0.9931,-0.0468,-0.1066,0.9936,-0.0365,-0.1032,-0.9472,0.3034,-0.1031,-0.7581,-0.6439,-0.1031,-0.9353,0.3385,-0.1016,0.327,-0.9395,-0.0973,0.6905,0.7168,-0.0972,-0.2555,-0.9619,-0.0864,0.2885,-0.9536,-0.084,-0.2967,-0.9513,-0.0836,-0.5167,-0.8521,-0.083,-0.1028,0.9912,-0.0829,0.624,0.777,-0.0803,0.9382,-0.3368,-0.08,-0.9651,-0.2492,-0.0797,-0.9179,0.3887,-0.0773,0.9738,-0.2139,-0.0761,-0.9674,0.2415,-0.076,-0.868,-0.4907,-0.0758,0.9827,-0.1688,-0.0747,0.886,-0.4577,-0.0724,-0.7543,-0.6525,-0.0723,-0.9527,-0.2952,-0.0722,0.0686,-0.995,-0.0693,0.9336,0.3515,-0.0693,0.9556,-0.2865,-0.0685,0.9898,-0.1249,-0.0676,0.9078,-0.414,-0.066,0.9954,0.0698,-0.0634,-0.5995,-0.7979,-0.0631,-0.7318,0.6786,-0.0621,-0.969,0.2393,-0.0614,-0.8881,0.4555,-0.0614,0.9193,-0.3888,-0.059,-0.9889,0.136,-0.0579,-0.985,0.1628,-0.0566,-0.548,-0.8346,-0.0558,0.9773,-0.2043,-0.0554,-0.5536,-0.8309,-0.0553,-0.7481,-0.6613,-0.0549,0.9862,0.1561,-0.0502,-0.9387,-0.3411,-0.0501,0.9301,-0.364,-0.0485,0.9958,-0.0776,-0.0445,-0.9784,0.2018,-0.0424,0.9984,0.0373,-0.0407,0.132,-0.9904,-0.0406,-0.349,-0.9362,-0.0401,0.7565,0.6527,-0.0398,-0.9675,0.2498,-0.0386,-0.9115,0.4094,-0.0376,-0.9964,0.0754,-0.0356,0.9895,-0.14,-0.035,0.907,-0.4197,-0.0342,0.9718,0.2332,-0.0324,0.9527,-0.3021,-0.0317,-0.9636,0.2656,-0.0312,0.9536,-0.2996,-0.0306,-0.9969,0.0721,-0.0286,-0.9945,0.1004,-0.0276,-0.173,-0.9845,-0.0248,0.0908,0.9956,-0.024,0.9915,0.1281,-0.0238,0.3684,-0.9293,-0.0227,0.8911,0.4533,-0.0221,0.9378,-0.3464,-0.022,-0.9784,0.2055,-0.0216,0.9491,-0.3143,-0.0212,0.9958,-0.0888,-0.0204,0.9823,0.1862,-0.0196,0.9324,-0.361,-0.0185,-0.94,0.3406,-0.0184,-0.9107,-0.4127,-0.0175,-0.9879,0.1543,-0.016,0.9619,-0.2729,-0.016,-0.9777,0.2095,-0.0159,-0.0289,-0.9995,-0.0158,0.5379,-0.8429,-0.0144,0.9258,-0.3777,-0.0139,0.3965,-0.9179,-0.0134,-0.9837,-0.1794,-0.0133,0.411,0.9115,-0.0115,0.1761,0.9843,-0.0111,-0.9455,0.3253,-0.0103,0.9656,-0.2599,-0.0102,0.993,-0.1179,-0.0101,-0.8376,0.5462,-0.0096,-0.9352,0.3539,-0.0079,-0.9999,0.0119,-0.0079,0.9923,-0.1238,-0.007,-0.983,0.1833,-0.007,-0.9632,0.2688,-0.0069,-1.0,0.0048,-0.0055,0.9753,-0.2209,-0.0053,0.9719,-0.2353,-0.0046,1.0,0.0076,-0.0034,-0.9364,0.3509,-0.0022,0.9841,-0.1775,-0.0011,-0.999,0.0455,-0.0008,0.9466,-0.3224,-0.0002,0.9991,-0.0421,0.0,0.0415,0.9991,0.0,0.0668,0.9978,0.0,-0.151,0.9885,0.0,-0.1659,0.9861,0.0,0.1799,0.9837,0.0,0.2356,0.9719,0.0,0.3166,0.9486,0.0,0.6119,0.7909,0.0,0.6237,0.7817,0.0,0.6568,0.7541,0.0,0.6902,0.7236,0.0,-0.7522,0.6589,0.0,-0.8656,0.5007,0.0,-0.9455,0.3256,0.0,-0.9621,0.2727,0.0,0.9775,0.2109,0.0,-0.9797,0.2003,0.0,-0.9878,0.1556,0.0,-0.996,0.0895,0.0,-0.9998,0.0221,0.0,0.9999,-0.0107,0.0,0.9992,-0.0409,0.0,0.9925,-0.1225,0.0,0.9703,-0.2421,0.0,0.957,-0.29,0.0,0.9499,-0.3126,0.0,0.9473,-0.3204,0.0,0.9437,-0.3308,0.0,-0.9194,-0.3933,0.0,0.9123,-0.4096,0.0,0.8253,-0.5647,0.0,0.5145,-0.8575,0.0,-0.4971,-0.8677,0.0,-0.4942,-0.8693,0.0,-0.3144,-0.9493,0.0,-0.3123,-0.95,0.0,-0.2599,-0.9656,0.0,-0.2083,-0.9781,0.0,0.2061,-0.9785,0.0,-0.1801,-0.9836,0.0,0.1083,-0.9941,0.0,-0.0498,-0.9988,0.0008,0.9466,-0.3224,0.0011,-0.999,0.0455,0.0027,-0.985,0.1726,0.0039,-0.9412,0.3378,0.0045,0.3636,-0.9316,0.0055,0.9753,-0.2209,0.007,-0.9632,0.2688,0.007,-0.983,0.1833,0.0097,-0.8679,0.4967,0.0101,-0.8376,0.5462,0.0102,0.993,-0.1179,0.0106,-0.9074,-0.4202,0.0107,0.9965,-0.083,0.0111,-0.9455,0.3253,0.0113,-0.4383,0.8988,0.0123,-0.6927,0.7212,0.0127,0.9984,-0.0555,0.0134,-0.9837,-0.1794,0.0139,0.3965,-0.9179,0.0144,0.9258,-0.3777,0.0158,0.5379,-0.8429,0.0159,-0.0289,-0.9995,0.016,-0.9777,0.2095,0.016,0.9619,-0.2729,0.0175,-0.9879,0.1543,0.0183,-0.9997,0.0142,0.0196,0.9324,-0.361,0.0204,0.9823,0.1862,0.0216,0.9491,-0.3143,0.022,-0.9784,0.2055,0.0221,0.9378,-0.3464,0.0237,-0.8999,-0.4354,0.0239,-0.986,0.1649,0.024,0.9915,0.1281,0.0248,0.0908,0.9956,0.0276,-0.173,-0.9845,0.0293,0.9283,0.3706,0.0312,0.9536,-0.2996,0.0317,-0.9636,0.2656,0.0324,0.9527,-0.3021,0.035,0.907,-0.4197,0.0356,0.9895,-0.14,0.0357,0.7492,0.6613,0.0363,-0.9942,0.1014,0.0376,-0.9964,0.0754,0.038,-0.9149,0.4019,0.0406,-0.349,-0.9362,0.0423,0.9983,0.0398,0.0429,0.9193,-0.3912,0.0445,-0.9784,0.2018,0.0451,-0.5599,0.8274,0.0464,0.9698,0.2394,0.0486,-0.5556,-0.83,0.0496,-0.5477,-0.8352,0.0499,0.9787,-0.1993,0.0501,0.9301,-0.364,0.0502,-0.9387,-0.3411,0.0512,0.9974,0.05,0.0545,-0.9719,0.2291,0.0549,0.9862,0.1561,0.0553,-0.7481,-0.6613,0.0577,-0.984,0.1683,0.0614,-0.8881,0.4555,0.0619,0.0756,-0.9952,0.0621,-0.969,0.2393,0.0631,-0.7318,0.6786,0.0634,-0.5995,-0.7979,0.0676,-0.8843,-0.4619,0.0676,0.9078,-0.414,0.0677,0.9033,-0.4237,0.0693,0.9556,-0.2865,0.071,-0.7576,-0.6488,0.0715,0.9959,-0.0559,0.0735,-0.9636,-0.2572,0.0735,-0.9932,0.0898,0.074,-0.9584,-0.2757,0.0758,0.9827,-0.1688,0.0761,-0.9674,0.2415,0.0773,0.9738,-0.2139,0.0797,-0.9179,0.3887,0.0803,0.9382,-0.3368,0.0804,-0.9479,-0.3081,0.0826,0.0911,-0.9924,0.0829,0.624,0.777,0.083,-0.1028,0.9912,0.084,-0.2967,-0.9513,0.0866,0.2696,-0.9591,0.0919,-0.9949,-0.0412,0.0972,-0.2555,-0.9619,0.1031,-0.7581,-0.6439,0.1034,0.9946,0.009,0.1036,-0.9401,0.3248,0.1053,0.983,-0.1504,0.1098,0.6984,0.7072,0.1117,-0.5304,-0.8403,0.1123,0.1665,0.9796,0.1161,-0.9497,0.2909,0.1164,0.9459,-0.3029,0.117,0.6833,0.7207,0.1177,-0.8621,-0.4929,0.1192,-0.3836,-0.9158,0.1247,-0.9693,0.2121,0.1253,0.0109,-0.9921,0.1268,0.3353,-0.9335,0.1269,0.9918,-0.0133,0.1282,0.906,-0.4033,0.1283,-0.745,-0.6546,0.1293,0.8251,-0.5499,0.1301,0.9665,-0.2214,0.1304,-0.9909,0.0322,0.1321,0.9899,0.0511,0.1339,0.9256,0.3542,0.1349,-0.9479,0.2887,0.136,-0.8513,-0.5068,0.1361,0.7203,-0.6801,0.1362,-0.0234,0.9904,0.1393,0.9424,-0.3042,0.1418,-0.8014,-0.5811,0.1428,-0.9882,0.0555,0.143,0.1159,0.9829,0.1442,0.7512,-0.6442,0.1443,0.9886,-0.0431,0.1449,-0.9111,-0.386,0.1495,0.182,0.9719,0.1526,-0.4337,-0.888,0.1539,0.0645,-0.986,0.1573,-0.9477,0.2776,0.1581,0.7685,-0.6201,0.1587,0.6608,0.7336,0.1601,0.9687,-0.1899,0.1632,-0.6617,0.7318,0.1648,-0.9469,0.2759,0.165,-0.9309,0.3258,0.167,-0.2387,-0.9566,0.1673,0.7105,-0.6835,0.1687,-0.3013,-0.9385,0.1699,0.4285,0.8874,0.1716,-0.4598,-0.8713,0.1744,-0.2543,0.9513,0.1821,-0.2432,-0.9527,0.1891,0.7577,-0.6245,0.1893,0.5868,0.7873,0.1915,-0.2049,-0.9599,0.1919,0.9372,0.2913,0.192,0.034,0.9808,0.1992,-0.377,-0.9045,0.2009,-0.9558,0.2145,0.2015,0.2033,0.9582,0.2058,-0.9353,0.2878,0.2066,-0.7046,-0.6789,0.2089,0.2253,-0.9516,0.2096,-0.9635,0.1667,0.2124,-0.9685,0.1302,0.2136,-0.9165,0.3382,0.216,0.2562,-0.9422,0.2162,0.7846,-0.581,0.219,-0.9596,0.1764,0.2206,0.3267,-0.919,0.2208,0.1154,0.9685,0.2214,-0.532,-0.8173,0.2245,-0.3632,-0.9043,0.2255,-0.8583,-0.461,0.2276,0.0024,0.9737,0.2302,-0.5529,-0.8008,0.2303,0.2086,-0.9505,0.2318,0.1215,-0.9651,0.2319,0.8899,-0.3929,0.2371,0.9355,-0.2618,0.2423,0.4161,-0.8764,0.2425,0.1377,-0.9603,0.2444,0.1878,0.9513,0.2456,0.6143,-0.7499,0.2473,-0.9642,-0.0957,0.2476,-0.9669,0.0624,0.2488,-0.7475,-0.6159,0.2525,-0.7606,0.5981,0.2527,0.8851,-0.3909,0.258,-0.5388,-0.802,0.2588,0.4719,-0.8428,0.2596,-0.8752,-0.4081,0.2643,-0.9207,0.2871,0.2651,-0.1817,0.9469,0.2698,-0.9615,0.0528,0.2803,0.8011,-0.5288,0.2811,-0.3961,0.8741,0.2811,0.0872,-0.9557,0.2872,0.318,-0.9036,0.2878,-0.55,-0.784,0.2891,0.0821,-0.9538,0.2896,-0.8413,-0.4565,0.2908,0.0745,-0.9539,0.2945,-0.4608,-0.8372,0.298,0.2299,-0.9265,0.2988,0.9393,0.1684,0.3016,-0.8343,-0.4615,0.3018,0.2259,-0.9262,0.3036,-0.9064,-0.2938,0.3053,0.014,0.9521,0.3096,0.3247,-0.8937,0.3127,-0.5171,-0.7967,0.3139,-0.4814,0.8184,0.314,-0.7614,-0.5671,0.3153,0.204,-0.9268,0.3167,-0.9475,0.0432,0.317,0.8626,0.3942,0.319,0.6913,0.6483,0.3252,0.7115,-0.623,0.3254,0.1061,-0.9396,0.3297,-0.1451,-0.9329,0.3315,-0.1989,-0.9223,0.3321,0.9304,0.155,0.3329,-0.7614,-0.5563,0.3341,0.8456,-0.4163,0.3399,-0.9112,0.2329,0.34,0.6014,0.723,0.3473,0.045,-0.9367,0.3476,0.194,0.9174,0.3492,0.0624,0.935,0.3501,-0.3149,0.8822,0.3518,0.1817,0.9183,0.3559,-0.6363,-0.6845,0.3576,0.1688,0.9185,0.3579,0.829,-0.4297,0.3612,-0.8646,0.3492,0.3627,0.6601,0.6578,0.3629,0.2168,-0.9062,0.3637,0.393,0.8446,0.3642,-0.7947,0.4856,0.366,-0.0877,0.9265,0.3664,0.5642,-0.7399,0.3673,-0.5576,-0.7445,0.3687,0.8576,-0.3585,0.3693,0.1,0.9239,0.3713,-0.0227,-0.9282,0.3724,0.1947,0.9074,0.3726,0.0862,-0.924,0.3726,-0.1894,-0.9085,0.3747,0.1197,-0.9194,0.3763,0.7172,0.5865,0.3763,-0.1814,-0.9086,0.3782,-0.515,-0.7693,0.3791,-0.3474,-0.8577,0.3805,-0.3304,-0.8638,0.383,-0.2034,0.9011,0.3879,0.0077,0.9217,0.3886,0.5931,0.7052,0.39,0.1311,0.9114,0.391,-0.3632,0.8457,0.3928,0.3821,0.8365,0.3938,-0.229,-0.8902,0.3939,0.0928,-0.9145,0.3941,0.0117,-0.919,0.3964,-0.8308,0.3907,0.3973,0.9136,-0.0864,0.3993,-0.1439,-0.9055,0.3994,-0.652,-0.6445,0.4018,0.8043,-0.4377,0.4037,0.9004,-0.1624,0.4054,0.8749,0.2649,0.4056,-0.0039,-0.9141,0.4061,-0.9127,-0.0464,0.4075,-0.8409,0.356,0.4077,0.186,0.894,0.4091,0.5604,0.7201,0.413,0.3613,0.836,0.417,0.433,0.7991,0.4179,0.8955,0.1531,0.4192,0.9061,0.0568,0.4204,0.1427,0.8961,0.4207,-0.0939,-0.9023,0.4225,-0.6283,-0.6533,0.4249,-0.1948,0.884,0.4255,0.0686,0.9024,0.4294,0.8954,0.1182,0.4295,-0.1338,-0.8931,0.4306,-0.3913,0.8133,0.4308,-0.4821,0.7629,0.4322,-0.1557,-0.8882,0.4334,-0.7997,-0.4155,0.4349,0.1312,0.8909,0.4359,0.0247,0.8996,0.4367,0.5499,0.712,0.4393,-0.352,0.8265,0.4422,-0.2528,-0.8605,0.4467,0.3868,0.8067,0.447,0.5632,-0.695,0.4516,-0.6427,0.6188,0.4517,-0.6605,-0.5998,0.4542,0.3782,0.8066,0.4545,0.6359,0.6238,0.4572,0.8505,0.26,0.4602,0.1147,0.8804,0.4602,0.8821,-0.1007,0.4652,-0.2987,0.8333,0.4658,0.1115,-0.8778,0.4658,0.1733,-0.8677,0.4673,0.7895,0.398,0.4695,-0.6943,0.5455};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_872_vector_2()
		{
			double[] value = {0.4704,-0.4703,-0.7467,0.4725,0.5303,-0.704,0.4776,0.8269,-0.2967,0.4784,0.8475,-0.2297,0.4801,-0.0968,-0.8719,0.4815,-0.0932,-0.8715,0.4821,0.3552,-0.8009,0.484,-0.1372,-0.8642,0.4844,0.2682,-0.8327,0.4858,-0.0431,-0.873,0.4865,-0.5556,0.6742,0.4873,-0.8378,-0.2461,0.4888,0.7067,0.5116,0.489,0.1405,-0.8609,0.4926,0.1549,-0.8564,0.4927,-0.039,-0.8693,0.4935,0.0262,-0.8694,0.4974,0.1293,0.8578,0.4975,-0.83,-0.2521,0.499,-0.3676,-0.7847,0.4993,0.849,0.1728,0.5005,0.0798,-0.862,0.5026,-0.2769,0.8189,0.5075,0.4149,0.7552,0.5075,-0.6543,-0.5606,0.5084,-0.8294,0.2315,0.5113,-0.4849,-0.7095,0.5124,-0.6643,0.5442,0.5147,-0.1628,0.8418,0.5164,0.8193,-0.249,0.5166,0.4217,0.7452,0.523,-0.3493,-0.7775,0.5231,-0.0806,0.8484,0.5232,0.8323,0.183,0.5239,-0.25,-0.8143,0.5253,0.7989,-0.2929,0.5271,0.4942,0.6914,0.5302,-0.742,-0.4102,0.5304,0.6431,0.5523,0.5311,-0.7545,-0.3855,0.5335,-0.3844,-0.7534,0.5351,-0.6796,-0.5019,0.5377,0.2287,-0.8115,0.5475,0.5466,0.6336,0.5499,-0.3794,0.7441,0.5518,0.1059,-0.8272,0.5532,0.1341,-0.8222,0.5533,-0.7461,-0.3705,0.5574,0.3194,-0.7663,0.5594,-0.798,-0.2241,0.5598,0.5285,0.6383,0.5619,0.4313,-0.7059,0.5641,-0.7694,-0.2997,0.5671,0.1228,0.8144,0.5705,-0.1353,-0.8101,0.5717,-0.1932,0.7974,0.5764,0.7332,-0.3609,0.5768,0.1076,0.8098,0.5773,0.1254,-0.8069,0.5778,-0.6573,-0.4838,0.5787,0.7679,-0.2747,0.579,-0.3762,0.7233,0.5818,0.7106,0.3957,0.5829,-0.1952,-0.7888,0.5832,0.1401,-0.8002,0.584,0.556,0.5915,0.5885,-0.8043,0.0824,0.5912,0.6447,0.4845,0.5945,-0.7803,0.1942,0.5948,0.803,0.0369,0.5993,-0.2471,-0.7615,0.6022,-0.7122,0.3608,0.6049,0.0674,-0.7934,0.6087,-0.0972,-0.7874,0.6112,-0.0647,0.7888,0.6145,0.119,-0.7799,0.6172,0.3052,0.7252,0.62,-0.7623,-0.1855,0.6213,0.0686,-0.7805,0.6218,-0.7049,0.3413,0.6229,0.2882,-0.7273,0.6237,-0.0015,-0.7817,0.6246,-0.0841,0.7764,0.6252,0.5468,-0.5569,0.6253,0.4123,-0.6626,0.626,0.7768,-0.0689,0.6278,0.6269,0.4613,0.6282,0.7686,-0.1206,0.6305,0.7759,0.0187,0.6315,0.3561,0.6888,0.632,0.143,-0.7617,0.6322,0.3002,-0.7143,0.6342,0.4695,-0.6143,0.6365,0.006,-0.7712,0.6374,-0.0889,-0.7653,0.6375,0.6588,-0.3995,0.638,-0.5327,0.5561,0.6382,0.1228,0.76,0.6391,-0.4762,0.604,0.6412,-0.7044,0.3044,0.6429,-0.5964,-0.4806,0.6434,-0.7645,-0.0392,0.6444,-0.3724,-0.6679,0.6452,0.2574,-0.7193,0.6501,0.4711,0.5962,0.6502,0.712,0.2652,0.6509,-0.4251,-0.6291,0.6511,-0.7565,-0.0612,0.6521,-0.6655,-0.3632,0.6531,0.3929,-0.6474,0.6565,0.2363,0.7164,0.6577,0.1091,0.7453,0.658,-0.4001,-0.6379,0.6675,-0.72,0.1901,0.673,0.2476,-0.697,0.6755,0.0465,0.7359,0.6772,0.4146,0.6079,0.6832,-0.0024,0.7302,0.6844,0.0793,-0.7248,0.6855,0.7276,0.0276,0.6869,0.4152,0.5964,0.6872,0.1048,0.7189,0.6883,0.6182,0.3796,0.6909,0.4809,0.5398,0.691,-0.4254,-0.5844,0.6947,-0.1718,0.6985,0.6999,0.008,0.7142,0.7019,-0.5734,-0.4224,0.7023,-0.2366,-0.6714,0.7034,0.4121,0.5791,0.7056,-0.7054,-0.0675,0.7056,-0.0787,0.7042,0.706,0.702,-0.0934,0.7098,-0.6131,0.3467,0.7114,0.5908,0.3806,0.7134,0.6766,-0.1823,0.7154,0.2221,-0.6625,0.7169,0.6784,-0.1608,0.7197,-0.4498,-0.5289,0.7228,0.5322,0.4408,0.7246,-0.6364,-0.2645,0.7271,-0.0679,-0.6831,0.7273,0.6698,0.1497,0.7274,0.0461,0.6847,0.7321,-0.0472,-0.6795,0.7348,0.4734,-0.4858,0.7361,0.1126,-0.6674,0.7364,-0.5691,-0.3658,0.7383,0.25,0.6265,0.7423,0.3256,0.5856,0.7436,-0.6584,-0.1167,0.7455,0.6665,-0.0005,0.7474,-0.1436,-0.6486,0.7477,0.5223,0.4101,0.748,0.19,0.6359,0.7494,-0.203,0.6302,0.7499,0.5218,0.4067,0.7515,-0.283,-0.596,0.7539,0.3786,0.5369,0.7541,-0.1963,0.6267,0.7565,0.2686,-0.5963,0.7596,0.0976,0.643,0.7598,0.5845,0.2846,0.7621,-0.2722,-0.5874,0.7632,0.5622,-0.3186,0.7635,0.6298,0.1427,0.7663,0.1773,-0.6176,0.7681,-0.0742,0.636,0.7712,-0.6189,-0.1489,0.7732,0.0721,0.6301,0.7742,0.475,0.4183,0.7787,0.4731,-0.4121,0.7837,-0.4555,0.4222,0.7854,0.0073,0.619,0.7876,-0.4301,-0.4411,0.7938,-0.1196,0.5963,0.7944,-0.2647,-0.5467,0.796,0.4346,0.4213,0.7996,-0.0928,0.5933,0.8017,0.0269,0.5971,0.8022,-0.4963,-0.3318,0.8042,0.5613,0.1958,0.8088,-0.2352,0.539,0.8092,0.5201,0.2734,0.8102,0.0401,-0.5848,0.8123,0.0925,0.5759,0.8212,0.3859,0.4203,0.8229,0.2197,-0.524,0.8241,0.1472,-0.5469,0.8242,0.2839,0.49,0.8248,-0.3978,-0.4019,0.8252,-0.0952,0.5567,0.826,-0.0526,-0.5613,0.827,0.5377,-0.1641,0.8272,0.4736,0.3023,0.8308,0.5158,0.2092,0.8332,-0.5499,0.0591,0.8336,-0.1833,-0.5211,0.8347,-0.0896,-0.5433,0.8354,0.1174,-0.5369,0.8358,0.2671,-0.4797,0.8367,0.0187,0.5473,0.8439,0.2443,-0.4777,0.8439,0.5214,0.126,0.844,-0.2526,-0.4731,0.8448,0.0546,-0.5322,0.8449,-0.5227,0.1138,0.8451,-0.0685,-0.5302,0.8502,0.148,-0.5053,0.8543,0.4607,0.2405,0.8548,-0.4441,0.2684,0.8587,0.4228,-0.2895,0.8593,0.2697,-0.4347,0.8604,0.1516,-0.4865,0.8619,-0.1194,-0.4929,0.8633,0.2885,-0.4142,0.8643,-0.0129,-0.5028,0.8661,0.168,-0.4708,0.8663,-0.4806,-0.1361,0.8706,-0.2975,0.3919,0.8712,0.4126,0.2661,0.8713,0.3193,-0.3727,0.8743,-0.4275,-0.2299,0.8747,-0.18,0.4499,0.8783,-0.3563,-0.3189,0.8819,0.4568,0.117,0.8825,-0.0379,-0.4689,0.8826,0.2934,-0.3673,0.8854,0.1247,0.4479,0.8859,-0.0243,-0.4632,0.8905,0.4521,0.0521,0.8915,0.2079,-0.4024,0.8922,0.348,-0.288,0.8926,0.0721,0.4451,0.8934,0.2655,0.3625,0.8936,0.2934,0.3396,0.8967,-0.1727,0.4076,0.8971,0.3775,-0.2296,0.8975,0.3627,-0.2508,0.9001,-0.2492,-0.3573,0.9011,-0.3998,-0.1678,0.9013,0.2621,-0.3449,0.902,-0.0938,0.4214,0.9044,-0.1786,-0.3874,0.9053,0.2113,-0.3685,0.9059,0.1893,-0.3787,0.9063,0.1357,-0.4002,0.9073,-0.278,-0.3156,0.9075,-0.2549,0.3338,0.9082,0.2092,0.3626,0.9095,-0.0097,0.4156,0.9098,0.3583,0.2097,0.911,-0.2545,-0.3247,0.9113,0.2781,0.3036,0.912,0.3585,-0.1993,0.9142,0.3881,0.1168,0.9143,0.3901,0.1092,0.916,0.1162,-0.3841,0.9172,-0.2215,0.3311,0.9173,0.3579,-0.1746,0.9177,0.2113,-0.3363,0.9186,0.0764,-0.3877,0.921,-0.3816,-0.0787,0.9247,-0.2691,0.2692,0.9253,0.3791,-0.012,0.9257,0.2731,-0.2617,0.9266,0.3324,0.1756,0.9274,-0.3624,0.093,0.9277,0.3478,0.1359,0.928,0.0063,0.3725,0.9299,-0.0493,0.3646,0.9312,0.2113,-0.2972,0.9347,-0.2301,0.2711,0.9351,-0.0203,-0.3539,0.9355,0.2866,0.2068,0.9369,0.0413,0.3471,0.9377,0.3084,0.1598,0.9398,0.2308,0.2521,0.9403,-0.315,-0.1287,0.9412,0.2646,-0.2099,0.9419,0.3359,-0.0081,0.9436,0.1446,-0.2977,0.9451,-0.1886,-0.2668,0.9452,-0.2682,-0.1861,0.946,0.1103,-0.3049,0.9463,-0.002,0.3232,0.948,0.1481,-0.2816,0.9486,-0.0357,-0.3146,0.9507,0.2216,0.2171,0.9517,0.2538,0.1726,0.9537,0.0151,-0.3004,0.954,0.2875,-0.0845,0.9541,0.2281,0.1941,0.9542,-0.2575,0.152,0.9546,-0.1169,0.2741,0.9548,0.2865,-0.0796,0.955,0.2245,-0.1941,0.9551,-0.0073,0.2962,0.9571,0.2216,-0.1865,0.9576,-0.007,-0.288,0.9582,0.1376,-0.2507,0.9586,0.0165,0.2843,0.9598,0.1017,0.2617,0.9604,-0.0537,0.2733,0.9622,-0.1904,-0.1948,0.964,0.2656,-0.0087,0.9641,0.1779,-0.1969,0.9643,0.1852,0.189,0.9646,0.1345,-0.2266,0.9665,-0.0471,-0.2524,0.9665,-0.255,-0.029,0.9665,0.133,0.2193,0.9666,0.2562,0.0051,0.967,0.1182,0.2255,0.9672,0.2531,-0.0235,0.9673,0.0309,-0.2517,0.9684,0.0921,-0.2317,0.9689,0.2466,-0.0206,0.9693,0.1522,0.1929,0.9721,0.0489,-0.2295,0.9721,0.193,-0.133,0.9724,0.166,-0.1642,0.9724,-0.0817,0.2185,0.9729,-0.1089,-0.2038,0.9735,0.2277,-0.0228,0.9735,-0.2212,-0.0581,0.9735,-0.2048,-0.1015,0.9748,0.0775,-0.2092,0.9752,0.117,-0.1877,0.9768,0.2028,-0.0686,0.9768,-0.1937,-0.0908,0.9798,0.1096,0.1673,0.9799,-0.1094,-0.1669,0.9801,0.0302,-0.196,0.9809,0.0549,0.1867,0.9829,0.1767,-0.0519,0.9858,-0.1381,0.0951,0.9867,-0.1522,0.0567,0.9897,-0.1413,0.0208,0.9898,0.1283,-0.0612,0.9911,0.125,-0.0447,0.9913,0.1002,0.0854,0.9916,0.1292,-0.0069,0.9926,-0.0719,0.0974,0.9933,0.1148,0.0112,0.9935,0.1052,-0.0429,0.9948,-0.0972,-0.0313,0.995,0.0686,-0.0729,0.9953,-0.0441,-0.086,0.9965,0.0836,0.0054,0.9967,0.0561,-0.0584,0.9977,0.0668,-0.0133,0.9978,0.0171,0.0644,0.998,0.0514,0.0381,0.9984,0.0043,0.0572,0.9988,-0.0212,0.0439,0.9989,0.0116,0.0447};
			return value;
		}

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

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getmand_Geo_5_877_coordIndex_2()
		{
			int[] value = {624,625,626,-1,627,628,629,-1,630,631,632,-1,630,632,627,-1,633,634,635,-1,636,637,638,-1,639,640,641,-1,642,643,644,-1,645,646,647,-1,648,649,650,-1,649,648,651,-1,652,653,654,-1,616,655,656,-1,646,657,647,-1,658,659,637,-1,660,661,662,-1,633,663,634,-1,664,649,665,-1,666,667,668,-1,527,532,315,-1,669,670,671,-1,470,469,672,-1,553,555,673,-1,674,533,556,-1,675,676,677,-1,676,678,677,-1,678,679,677,-1,680,681,682,-1,683,684,685,-1,686,687,688,-1,689,690,691,-1,692,693,694,-1,695,696,697,-1,698,699,700,-1,701,702,703,-1,704,705,706,-1,707,708,709,-1,710,711,712,-1,713,714,715,-1,710,716,717,-1,718,719,720,-1,721,722,723,-1,724,725,726,-1,727,728,729,-1,708,730,731,-1,732,733,734,-1,735,736,737,-1,738,739,740,-1,741,742,743,-1,744,745,746,-1,747,748,749,-1,750,751,739,-1,740,752,753,-1,754,755,742,-1,756,757,758,-1,759,760,761,-1,762,763,764,-1,765,766,706,-1,763,762,767,-1,768,769,770,-1,771,772,747,-1,773,774,775,-1,776,775,777,-1,765,778,779,-1,749,780,771,-1,781,710,717,-1,782,783,781,-1,784,725,724,-1,785,786,787,-1,788,789,790,-1,789,791,790,-1,786,785,792,-1,793,794,739,-1,795,796,722,-1,797,798,799,-1,788,800,801,-1,802,803,804,-1,805,806,807,-1,708,707,720,-1,738,740,785,-1,750,808,809,-1,810,811,812,-1,813,814,815,-1,816,817,699,-1,818,819,774,-1,774,698,775,-1,757,820,821,-1,761,760,822,-1,711,710,781,-1,823,824,825,-1,826,827,828,-1,829,828,830,-1,831,832,826,-1,833,825,834,-1,835,836,834,-1,837,838,839,-1,840,9,8,-1,841,842,843,-1,844,845,779,-1,846,803,802,-1,847,848,849,-1,850,851,852,-1,853,676,821,-1,685,854,855,-1,856,817,857,-1,857,858,859,-1,860,861,853,-1,862,863,864,-1,815,814,865,-1,684,866,867,-1,866,868,867,-1,717,716,869,-1,870,871,872,-1,873,874,875,-1,876,877,878,-1,879,880,881,-1,373,874,882,-1,371,390,389,-1,880,883,884,-1,885,886,887,-1,888,882,876,-1,889,805,890,-1,891,892,893,-1,894,895,896,-1,897,898,899,-1,900,901,902,-1,903,904,905,-1,906,907,908,-1,909,886,902,-1,910,911,901,-1,912,280,282,-1,371,269,372,-1,913,914,915,-1,916,917,918,-1,919,920,921,-1,922,923,924,-1,925,926,927,-1,928,929,916,-1,930,931,932,-1,933,934,935,-1,936,937,938,-1,393,939,940,-1,941,400,942,-1,943,944,945,-1,910,946,947,-1,250,381,306,-1,948,394,949,-1,300,352,950,-1,951,952,953,-1,416,954,417,-1,955,956,957,-1,958,959,960,-1,961,955,962,-1,963,964,965,-1,966,967,922,-1,964,963,406,-1,968,969,970,-1,419,418,971,-1,963,972,973,-1,974,975,976,-1,977,975,974,-1,978,979,980,-1,981,982,983,-1,984,408,985,-1,986,987,988,-1,989,990,991,-1,992,993,994,-1,995,996,997,-1,998,999,1000,-1,1001,1002,1003,-1,422,1004,1005,-1,442,970,443,-1,442,1006,1007,-1,1008,1009,1010,-1,1011,961,1012,-1,1013,1014,1015,-1,1016,959,1017,-1,1018,956,375,-1,1019,285,1020,-1,1021,944,943,-1,1022,1023,1024,-1,1025,332,1026,-1,1013,1027,1028,-1,1012,1029,1030,-1,918,1031,1032,-1,416,1033,953,-1,1034,1035,1036,-1,1037,1038,349,-1,1039,302,1040,-1,1041,1042,1043,-1,1044,382,383,-1,1045,1046,1047,-1,1019,1045,285,-1,1048,1049,913,-1,1050,1051,1052,-1,1050,1053,1054,-1,1055,1056,1057,-1,1058,1059,1060,-1,1061,1062,1063,-1,1064,1065,1066,-1,1067,1068,1069,-1,1070,1071,1072,-1,1073,1074,1075,-1,1076,1077,1078,-1,1079,1080,1081,-1,1082,1083,1084,-1,1085,1086,1087,-1,1088,1089,1090,-1,1091,1092,1093,-1,1094,1095,1096,-1,1097,1098,1099,-1,1100,1101,1102,-1,1103,1104,1105,-1,1106,1107,1108,-1,1109,1110,1111,-1,1112,1113,1114,-1,1091,1111,1115,-1,1116,1117,1076,-1,1118,1119,1120,-1,1121,1122,1123,-1,1124,1125,1126,-1,1127,1128,1129,-1,1130,1131,1132,-1,1133,1134,1135,-1,1136,1137,1138,-1,1139,1140,1141,-1,1142,1143,1144,-1,1143,1132,1144,-1,1145,1146,1147,-1,1141,1144,1148,-1,1149,1135,1134,-1,1150,1151,1148,-1,1152,1153,1154,-1,1155,1156,1157,-1,1158,1159,1160,-1,1161,1162,1163,-1,1164,1165,1166,-1,1167,1122,1057,-1,1168,1169,1170,-1,1171,1172,1173,-1,1174,1175,1176,-1,1177,1178,1179,-1,1180,1181,1182,-1,1183,1184,1185,-1,1186,1187,1188,-1,1189,1190,1191,-1,1192,1193,1176,-1,1194,1195,1169,-1,1196,1197,1198,-1,1199,1200,1201,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getmand_Geo_5_877_coordIndex_3()
		{
			int[] value = {1202,1203,1204,-1,1205,1206,1207,-1,1208,1209,1210,-1,1211,1209,1212,-1,1213,1214,1215,-1,1216,1217,1218,-1,1219,1220,1221,-1,1222,1223,1224,-1,1225,1226,1227,-1,1228,1229,1230,-1,1231,1232,1233,-1,1234,1235,1236,-1,1237,1238,1239,-1,1240,1241,1242,-1,1243,1244,1245,-1,1246,1247,1248,-1,1249,1250,1251,-1,1252,1253,1254,-1,1255,1256,1257,-1,1258,1259,1260,-1,1261,1262,1263,-1,1264,1265,1266,-1,1267,1260,1268,-1,1269,1270,1271,-1,1272,1273,1274,-1,1270,1275,1276,-1,1277,1278,1279,-1,1280,1281,1282,-1,1283,1284,1285,-1,1286,1287,1288,-1,1289,1290,1291,-1,1292,1293,1294,-1,1282,1281,1295,-1,1296,1285,1297,-1,1298,1299,1300,-1,1301,1302,1303,-1,1304,1305,1306,-1,1307,1308,1309,-1,1310,1311,1312,-1,1313,1314,1315,-1,1316,1317,1318,-1,1319,1320,1321,-1,1322,1323,1324,-1,1325,1326,1327,-1,1328,1329,1330,-1,1331,1332,1333,-1,1334,1335,1336,-1,1337,1338,1339,-1,1340,1341,1342,-1,1340,1343,1341,-1,1344,1345,1346,-1,1347,1348,1349,-1,1350,1351,1352,-1,1352,1353,1350,-1,1354,1355,1356,-1,1357,1358,1359,-1,1360,1361,1362,-1,1363,1364,1365,-1,1366,1367,1368,-1,1366,1369,1367,-1,1370,1371,1372,-1,1373,1367,1374,-1,1368,1375,1376,-1,1377,1348,1378,-1,1379,1376,1380,-1,1376,1379,1381,-1,1382,1383,1346,-1,1384,1385,1386,-1,1387,1388,1349,-1,1378,1379,1380,-1,1389,1390,1391,-1,1392,1393,1394,-1,1395,1396,1397,-1,1398,1399,1400,-1,1401,1402,1403,-1,1404,1405,1406,-1,1407,1408,1409,-1,1410,1411,1412,-1,1413,1414,1415,-1,1416,1417,1418,-1,1419,1420,1421,-1,1422,1423,1417,-1,1424,1425,1426,-1,1427,1428,1429,-1,1430,1431,1432,-1,1433,1434,1435,-1,1436,1437,1438,-1,1439,1440,1441,-1,1387,1442,1388,-1,1443,1444,1445,-1,1446,1447,1448,-1,1449,1450,1451,-1,1452,1444,1443,-1,1453,1454,1445,-1,1455,1456,1371,-1,1457,1369,1381,-1,1458,1459,1460,-1,1461,1413,1462,-1,1463,1461,1464,-1,1465,1458,1466,-1,1467,1468,1469,-1,1470,1468,1471,-1,1472,1473,1474,-1,1475,1476,1477,-1,1478,1474,1479,-1,1478,1480,1474,-1,1481,1482,1483,-1,1484,1485,1486,-1,1487,1488,1489,-1,1490,1491,1492,-1,1493,1494,1495,-1,1496,1497,1498,-1,1479,1499,1500,-1,1492,1501,1502,-1,1478,1500,1480,-1,1503,1504,1505,-1,1506,1507,1508,-1,1509,1510,1511,-1,1512,1513,1514,-1,1515,1516,1517,-1,1518,1509,1519,-1,1520,1521,1522,-1,1523,1524,1525,-1,1526,1527,1523,-1,1527,1528,1524,-1,1529,1530,1531,-1,1532,1533,1534,-1,1535,1536,1537,-1,1538,1539,1540,-1,1541,1542,1543,-1,1544,1545,1546,-1,1547,1548,1549,-1,1550,1551,1552,-1,1553,1554,1555,-1,1556,1321,1557,-1,1558,1559,1554,-1,1560,1561,1562,-1,1563,1564,1565,-1,1566,1567,1568,-1,1566,1569,1570,-1,1540,1571,1572,-1,1573,1574,1575,-1,1576,1577,1578,-1,1579,1580,1578,-1,1581,1582,1583,-1,1584,1585,1586,-1,1587,1588,1589,-1,1590,1591,1592,-1,1593,1594,1595,-1,1596,1597,1598,-1,1597,1599,1598,-1,1600,1601,1602,-1,1603,1604,1605,-1,1606,1607,1608,-1,1609,1610,1611,-1,1612,1611,1613,-1,1614,1615,1616,-1,1617,1618,1619,-1,1620,1621,1389,-1,1622,1392,1623,-1,1619,1624,1625,-1,1625,1626,1627,-1,1628,1629,1406,-1,1630,1631,671,-1,535,1632,1633,-1,1634,1635,1636,-1,1637,1635,1638,-1,1639,1640,1641,-1,1642,1643,1644,-1,1645,1646,1647,-1,1647,1648,1649,-1,1650,1651,1652,-1,1589,1653,1654,-1,1655,1656,1584,-1,1587,1589,1657,-1,1607,1658,1659,-1,1660,1661,1662,-1,1592,1663,1664,-1,1657,1665,1586,-1,1607,1666,1658,-1,1667,1655,1668,-1,1669,1670,1612,-1,1671,1672,1673,-1,1674,1675,1676,-1,1677,1672,1678,-1,1679,1598,1599,-1,1680,1681,1682,-1,1683,1684,1685,-1,1592,1591,1683,-1,1686,1687,1688,-1,1689,1690,1691,-1,1692,1693,1694,-1,1695,1696,1686,-1,1584,1586,1665,-1,1612,1670,1666,-1,1697,1698,1699,-1,1699,1700,1697,-1,1701,1535,1702,-1,1703,1704,1705,-1,1597,1706,1707,-1,1708,1709,539,-1,1710,1711,1712,-1,1713,1714,1715,-1,1716,1596,1714,-1,1717,1605,1718,-1,1719,1720,1721,-1,1722,1723,1724,-1,1716,1725,1726,-1,1727,1728,1726,-1,1729,1730,1731,-1,1732,1733,644,-1,1734,1735,1736,-1,1737,1738,1739,-1,1740,1741,1742,-1,1743,1744,1731,-1,1745,1734,1746,-1,1747,1748,1749,-1,1750,1751,1734,-1,1752,1753,1713,-1,1754,1755,1756,-1,1757,1758,1759,-1,1760,1761,1762,-1,1760,1763,1764,-1,1765,1724,1766,-1,1749,1767,1768,-1,1769,1770,1771,-1,1772,1773,1774,-1,1775,1776,1777,-1,1778,1389,1621,-1,1741,643,1779,-1,1780,1704,1781,-1,1782,1783,1784,-1,1636,1785,1786,-1,1787,1402,1401,-1,1783,1788,1567,-1,1789,1790,1570,-1,1791,1535,1701,-1,1792,1793,1794,-1,1795,1562,1796,-1,1797,1798,1799,-1,1800,1801,1802,-1,1803,1804,1805,-1,1806,1807,1808,-1,1809,1805,1804,-1,1577,1810,1811,-1,1812,1813,1814,-1,1815,1816,1817,-1,1818,1819,1820,-1,1821,1822,1823,-1,1824,1528,1825,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getmand_Geo_5_877_coordIndex_4()
		{
			int[] value = {1826,1827,1828,-1,1829,1830,1831,-1,1827,1832,1833,-1,1834,1835,1836,-1,1837,1838,1839,-1,1840,1841,1838,-1,1838,1841,1842,-1,1827,1843,1828,-1,1826,1844,1845,-1,1846,1840,1847,-1,1848,1849,1850,-1,1579,1851,1852,-1,1853,1577,1854,-1,1855,1856,1857,-1,1858,1859,1860,-1,1861,1862,1863,-1,1862,1861,1864,-1,1865,1866,1867,-1,1868,1869,1870,-1,1871,1872,1873,-1,1874,1875,1876,-1,1877,1878,1879,-1,1880,1881,1882,-1,1883,1884,1885,-1,1879,1886,1887,-1,1888,1889,1890,-1,1891,1892,1893,-1,1841,1894,1895,-1,1837,1896,1897,-1,1898,1899,1847,-1,1579,1853,1900,-1,1838,1837,1897,-1,1901,1902,1903,-1,1814,1904,1905,-1,1906,1808,1907,-1,1866,1865,1862,-1,1908,1909,1910,-1,1911,1912,1913,-1,1914,1915,1916,-1,1868,1917,1918,-1,1919,1920,1921,-1,1922,1921,1923,-1,1924,1925,1926,-1,1927,1928,1929,-1,1930,1931,1932,-1,1876,1933,1081,-1,1934,1935,1936,-1,1937,1938,1895,-1,1893,1892,1939,-1,1822,1940,1941,-1,1525,1521,1942,-1,1526,1845,1943,-1,1944,1910,1909,-1,1844,1909,1845,-1,1945,1946,1947,-1,1948,1949,1950,-1,1328,1951,1952,-1,1953,1946,1945,-1,1440,1954,1441,-1,1955,1956,1957,-1,1956,1955,1958,-1,1959,1960,1961,-1,1962,1963,1964,-1,1963,1960,1820,-1,1965,1966,1826,-1,1967,1961,1968,-1,1607,1969,1608,-1,1970,1971,1972,-1,1973,1974,1975,-1,1976,1977,1978,-1,1979,1980,1360,-1,1385,1384,1981,-1,1982,1983,1984,-1,1985,1986,1987,-1,1988,1989,1990,-1,1991,1992,1993,-1,1434,1994,1995,-1,1433,1996,1482,-1,1997,1998,1977,-1,1999,2000,2001,-1,2002,2000,2003,-1,1972,2004,2005,-1,1327,2006,2007,-1,2008,2009,2010,-1,2011,1994,1431,-1,2012,1452,2013,-1,2014,1994,2015,-1,2016,2017,1506,-1,2018,2019,2020,-1,2021,2022,2023,-1,2024,2011,2025,-1,2024,2026,2027,-1,2023,2022,2026,-1,2028,1428,2029,-1,2030,2031,2032,-1,2033,2034,2035,-1,2036,2037,2038,-1,2039,2040,2035,-1,2041,2042,2043,-1,2044,2045,2046,-1,2047,2048,2049,-1,2050,2051,2052,-1,2053,2054,2055,-1,2056,2057,2058,-1,2059,2060,2061,-1,2062,2063,2064,-1,1452,1443,2065,-1,2066,2060,2059,-1,2067,2068,2069,-1,2070,2071,2072,-1,2073,2074,2075,-1,2076,2077,2078,-1,2076,2079,2077,-1,2049,2080,2081,-1,2082,2083,2084,-1,2085,2086,2087,-1,2047,2088,2089,-1,2090,1488,1487,-1,1519,2091,2092,-1,2020,2093,2094,-1,2092,2095,2096,-1,2097,2098,2012,-1,1449,2099,2100,-1,2101,2102,2103,-1,2104,2105,2106,-1,2107,2103,2108,-1,2021,1518,2022,-1,1984,2109,1494,-1,2110,2111,2004,-1,2112,2113,2114,-1,2115,2116,1422,-1,2117,2014,2118,-1,2119,2120,2121,-1,2122,2123,1460,-1,1466,2124,2125,-1,2099,2126,2127,-1,1331,1461,2128,-1,2124,2129,2130,-1,1360,2131,1979,-1,2132,2133,2134,-1,2135,2006,2136,-1,1382,1463,1464,-1,2137,2010,2124,-1,2110,2004,2138,-1,2139,2140,2141,-1,1430,2033,2025,-1,2075,2142,2143,-1,2144,2145,1989,-1,1511,1510,2146,-1,2091,2147,2092,-1,2103,2148,2104,-1,2149,1534,1533,-1,2150,2151,2152,-1,2153,2154,1453,-1,2155,2156,1446,-1,2146,2018,2157,-1,2158,2159,2160,-1,1982,2054,1489,-1,2083,2161,2162,-1,2163,2068,2067,-1,2164,2165,2166,-1,2167,2168,1479,-1,2169,2170,2171,-1,2172,2085,1501,-1,2173,2174,1498,-1,2058,2175,2084,-1,2176,2177,2178,-1,2172,2059,2061,-1,2179,2180,2175,-1,2181,2090,2182,-1,2143,2183,2075,-1,1499,2170,2164,-1,1487,2182,2090,-1,2052,2051,2184,-1,2037,1488,2038,-1,2096,2185,2092,-1,1486,2186,2052,-1,2014,2015,2187,-1,2188,1484,2021,-1,2189,2156,2190,-1,1364,2191,1365,-1,2192,1419,2193,-1,2194,2195,2141,-1,2196,2065,2197,-1,2198,1413,1461,-1,2194,2199,2200,-1,1327,1977,1998,-1,2201,2111,2202,-1,2203,1465,1466,-1,2003,2000,2123,-1,1994,1434,1432,-1,2204,2205,2206,-1,2207,1986,2208,-1,2117,2209,1995,-1,1421,2210,2211,-1,1430,2025,2011,-1,2212,1384,2132,-1,1949,2213,2214,-1,1950,2215,1439,-1,1327,1326,1978,-1,1382,1464,2216,-1,1976,2217,2218,-1,1467,1327,2007,-1,2219,2220,2221,-1,2222,1976,1978,-1,1836,1835,2223,-1,2224,1609,2225,-1,1901,2226,2227,-1,1820,2228,2229,-1,1954,1981,2230,-1,2231,2232,1945,-1,1947,1946,2217,-1,2233,2234,2235,-1,1441,2236,1948,-1,1949,2237,2238,-1,2239,1948,2240,-1,2241,2233,1972,-1,1824,1825,2241,-1,1981,1953,2230,-1,2240,2236,2242,-1,2243,2231,1947,-1,2244,1885,1890,-1,1866,1864,2245,-1,1880,1862,2246,-1,1858,2247,2248,-1,1965,1526,1523,-1,1917,1470,1471,-1,2249,1528,1527,-1,1527,1526,1941,-1,1940,1822,2250,-1,2251,2252,1895,-1,2253,2254,2255,-1,1884,2256,2257,-1,2258,2259,2260,-1,2261,2262,2263,-1,2264,2265,2266,-1,2267,2268,2269,-1,2270,2269,2262,-1,1924,2271,2272,-1,2269,1923,2262,-1,2273,2274,2275,-1,2276,2277,2278,-1,2279,2280,2281,-1,2282,1918,2235,-1,2283,1802,1917,-1,1863,1880,2284,-1,1912,1911,1908,-1,1823,1943,2285,-1,2246,1865,2286,-1,2287,2288,1877,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getmand_Geo_5_877_coordIndex_5()
		{
			int[] value = {2289,2290,2291,-1,2292,2293,2294,-1,2295,2255,2296,-1,2297,2298,2299,-1,1851,2300,2301,-1,1896,2302,1897,-1,2303,2304,2305,-1,2306,2307,2308,-1,2289,2309,1936,-1,1900,1854,2299,-1,2291,2310,2309,-1,1841,2311,1894,-1,2312,2275,2313,-1,2244,2312,2314,-1,1877,2315,2316,-1,1884,2317,1890,-1,1913,1912,1933,-1,1912,2318,2319,-1,2320,2321,2316,-1,2322,1886,1883,-1,1882,2323,2284,-1,2324,1830,1888,-1,2325,2326,2323,-1,2283,1870,2327,-1,1817,1858,1860,-1,2328,2329,2288,-1,1877,1871,2315,-1,1914,1916,2330,-1,1803,2331,2332,-1,2291,2290,1860,-1,1577,2333,1810,-1,2334,1966,2335,-1,2336,2337,2294,-1,1841,1840,1846,-1,2338,2302,1898,-1,2292,2294,2339,-1,2244,1889,2273,-1,2340,1843,1833,-1,2341,2274,2273,-1,2274,2342,2293,-1,1944,2343,1830,-1,2344,1844,1826,-1,2345,1821,1823,-1,1815,2346,1904,-1,1812,1816,1813,-1,2347,2248,2247,-1,2348,2349,1861,-1,2250,2350,2351,-1,1808,2352,1805,-1,2353,1806,1906,-1,2354,1866,2245,-1,2355,1802,1801,-1,2356,2357,2358,-1,1787,2359,2360,-1,1782,2361,1783,-1,2362,1780,1789,-1,1631,2363,2364,-1,1623,1733,1739,-1,1618,1395,1778,-1,2365,1768,2366,-1,2367,2368,2369,-1,1752,1713,2370,-1,2371,1762,2372,-1,2373,2374,1617,-1,1603,2375,2376,-1,2377,1741,1740,-1,1746,1736,2367,-1,1747,2367,2375,-1,1743,1738,2378,-1,644,643,1732,-1,2379,1729,2380,-1,1729,2381,2380,-1,1391,1390,2382,-1,2383,1763,1762,-1,1723,1717,1727,-1,1753,1752,2384,-1,2384,2385,2386,-1,1725,1753,2386,-1,2387,2388,2389,-1,1757,2373,2390,-1,1714,1596,2391,-1,2370,1715,2389,-1,2392,1718,1605,-1,2393,614,2394,-1,2395,2396,2397,-1,1782,2398,2399,-1,1536,2400,1537,-1,2401,1557,2402,-1,1792,1696,2403,-1,2404,2405,2406,-1,1563,2407,1564,-1,2408,2409,2410,-1,2411,2412,2413,-1,1555,2414,2415,-1,2416,2417,2418,-1,1538,2419,1539,-1,1593,2419,2420,-1,1694,2417,2416,-1,2421,2422,2423,-1,2424,2425,1674,-1,2426,2427,2428,-1,2429,1660,2430,-1,1683,1591,1684,-1,2422,2430,1682,-1,1671,2427,1678,-1,1683,2431,2432,-1,2433,1698,2434,-1,2433,2410,1699,-1,1671,2435,1592,-1,1661,2429,1675,-1,2436,1654,2437,-1,1584,1665,2410,-1,1657,1589,1654,-1,2438,1611,1610,-1,2439,1405,2360,-1,2440,1689,2441,-1,2442,2443,1644,-1,1573,1575,2444,-1,2445,2446,1643,-1,2447,1576,1642,-1,2445,1642,1580,-1,1635,1785,1636,-1,2448,2449,1632,-1,2450,1730,2451,-1,2360,1405,1404,-1,1626,2452,2453,-1,2450,2454,1730,-1,1620,1776,2455,-1,2456,1395,1618,-1,2422,1681,2423,-1,2457,1609,1611,-1,1582,1581,1565,-1,1600,2397,2396,-1,1598,2391,1596,-1,2458,2459,2460,-1,1665,2461,2410,-1,1579,1578,1853,-1,1579,2462,1645,-1,1642,1576,1578,-1,2463,2333,1577,-1,2464,2465,1572,-1,2398,1784,1781,-1,1561,2466,1562,-1,2415,1322,2467,-1,1324,2468,2469,-1,1544,243,2470,-1,2471,2472,456,-1,1530,2473,1521,-1,1521,2473,2474,-1,1504,1503,2475,-1,1356,1355,2476,-1,2475,2477,2478,-1,2479,1518,1519,-1,2480,2481,2482,-1,1506,2017,2483,-1,1496,1498,2484,-1,1510,2485,1475,-1,1502,1501,2486,-1,2487,1493,2057,-1,1496,2484,2045,-1,1489,2044,1487,-1,1489,2053,2044,-1,2488,1983,1982,-1,2109,2141,2140,-1,1983,1481,1483,-1,2489,1472,1480,-1,2186,1486,1473,-1,2177,2490,2089,-1,1466,1999,2129,-1,2491,1333,1332,-1,2137,1414,2010,-1,2120,2199,2492,-1,2493,2494,1448,-1,2495,1440,2496,-1,1350,2495,2496,-1,2497,2197,1445,-1,1450,2100,1447,-1,2498,2494,1456,-1,1456,2499,2500,-1,1373,1374,1372,-1,2501,1980,1457,-1,1444,1453,1445,-1,2502,1374,2131,-1,1948,1950,1439,-1,1438,2503,2504,-1,1422,1424,1423,-1,2112,2505,2506,-1,2507,2508,2509,-1,2114,2510,2505,-1,1419,1421,2193,-1,2511,2141,2195,-1,1413,2008,1414,-1,2512,2513,2514,-1,2515,2516,2517,-1,2518,2519,2520,-1,2520,2519,2028,-1,2478,2521,1504,-1,2522,2523,1634,-1,2439,2524,2525,-1,2526,2527,2528,-1,1641,2529,2524,-1,1389,2530,1390,-1,1392,2531,1393,-1,2532,1396,1395,-1,2533,2534,2535,-1,1377,2536,2537,-1,1375,2538,2533,-1,1946,1953,2539,-1,1382,2540,1383,-1,1373,1368,1367,-1,1352,2476,2541,-1,2534,2533,2542,-1,2500,2543,1371,-1,1369,1374,1367,-1,1371,1368,1372,-1,2544,2545,1363,-1,2545,2544,2152,-1,2546,2547,2548,-1,2549,1374,2502,-1,1980,2541,2476,-1,1351,1354,1356,-1,1353,1388,1442,-1,1442,2495,1350,-1,2098,2099,2012,-1,1338,1342,2550,-1,2551,2552,1337,-1,1337,1339,2553,-1,1336,1332,1331,-1,1331,1334,1336,-1,2554,2555,2556,-1,2557,2558,1542,-1,2558,1543,1542,-1,2559,1305,1304,-1,2560,2561,2562,-1,2563,1312,1311,-1,2564,2565,2566,-1,1308,1301,2567,-1,2568,2569,2560,-1,2560,1306,2561,-1,2570,1315,2571,-1,2572,2573,2574,-1,2575,2576,2577,-1,2566,1301,1303,-1,1310,2566,2578,-1,1299,2579,1300,-1,2580,2581,2582,-1,2583,2584,2585,-1,2586,1283,2587,-1,2588,2589,2590,-1,2591,2592,2593,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getmand_Geo_5_877_coordIndex_6()
		{
			int[] value = {2594,2595,2591,-1,2596,1269,1271,-1,2597,1273,1272,-1,2598,2599,2600,-1,2601,2602,2603,-1,1260,1259,1268,-1,2604,1267,2605,-1,1266,2606,2607,-1,2608,2609,2606,-1,2610,2611,1264,-1,2612,2600,2602,-1,2612,2613,2600,-1,1261,2614,1262,-1,2615,1258,2616,-1,2617,2618,2619,-1,1251,2620,1256,-1,2621,2622,2623,-1,2624,1237,1239,-1,1230,2625,2626,-1,1219,2627,1231,-1,2628,1218,1225,-1,2629,2630,2631,-1,2632,2633,2424,-1,2634,1196,1198,-1,1169,1195,2635,-1,2636,2637,2638,-1,1183,2639,1204,-1,2640,2641,1199,-1,2642,2643,1182,-1,2644,1176,2645,-1,2646,2647,1186,-1,1184,1183,2641,-1,1177,2648,2649,-1,2650,1169,1168,-1,2651,2652,2653,-1,1171,1178,2649,-1,2654,2655,2656,-1,2654,2657,2655,-1,2658,2659,2660,-1,2661,2662,2658,-1,2663,2662,2661,-1,2664,2665,2666,-1,2667,2668,2669,-1,1137,2670,2671,-1,1136,1138,1134,-1,1121,1123,2672,-1,1119,1116,1078,-1,2673,2674,2675,-1,2676,1114,2677,-1,1111,2678,2679,-1,2680,2681,1113,-1,2682,2683,2684,-1,2685,1110,1109,-1,2686,2687,2683,-1,2688,2689,2690,-1,2691,2692,2693,-1,2694,2695,2696,-1,2697,2698,2699,-1,2690,2700,2701,-1,2702,2703,1095,-1,2704,2705,1092,-1,1097,2685,1098,-1,2685,2706,1098,-1,2707,2708,2691,-1,2709,2710,2711,-1,2712,2713,2714,-1,2715,2716,2717,-1,2718,1068,1067,-1,1163,1066,1065,-1,1062,2719,1063,-1,1055,1077,2720,-1,1079,2721,2722,-1,1070,1060,2723,-1,2724,1073,1059,-1,2725,2726,2261,-1,2727,2673,2728,-1,2729,2730,2731,-1,2732,2733,2729,-1,1049,2734,913,-1,378,290,261,-1,349,348,1037,-1,2735,300,2736,-1,385,393,2737,-1,400,941,1037,-1,934,938,935,-1,2738,2739,2740,-1,931,922,932,-1,2741,364,2742,-1,2743,417,2744,-1,431,2745,2746,-1,2747,921,2748,-1,2749,2750,2751,-1,444,973,972,-1,2752,1027,1013,-1,1028,1008,2753,-1,1013,2754,2755,-1,385,2737,2756,-1,2757,2758,2759,-1,969,2760,970,-1,2761,375,956,-1,2762,970,442,-1,420,419,974,-1,401,2763,2764,-1,988,2765,2766,-1,2767,1003,2768,-1,2769,2770,995,-1,989,2771,2772,-1,2773,2774,2775,-1,994,2776,2777,-1,994,993,2776,-1,982,2778,2779,-1,952,2780,2781,-1,2769,1000,2770,-1,981,2778,982,-1,979,2782,2783,-1,421,2784,2785,-1,2786,2787,2788,-1,2764,2789,2790,-1,976,975,2777,-1,2791,2792,2793,-1,2794,2795,2796,-1,968,2797,969,-1,2798,2799,2800,-1,2801,2802,2803,-1,2804,2805,2806,-1,2805,2804,966,-1,2807,918,917,-1,2807,2806,972,-1,961,2808,2809,-1,956,2810,957,-1,2811,1012,2812,-1,2813,437,1022,-1,967,929,923,-1,2756,2781,2780,-1,929,967,917,-1,247,257,939,-1,350,1038,2814,-1,2815,301,2816,-1,906,1042,910,-1,2817,1034,2818,-1,2819,941,2820,-1,936,2821,2822,-1,2822,2821,398,-1,2823,947,2824,-1,366,2740,367,-1,928,368,929,-1,1023,2825,2826,-1,2827,2828,2829,-1,2830,2831,2832,-1,1005,1004,2744,-1,878,2833,2834,-1,261,273,378,-1,901,911,2823,-1,2835,2836,2837,-1,2818,2838,2839,-1,517,2840,727,-1,2841,892,891,-1,702,733,732,-1,2842,890,805,-1,2843,805,889,-1,892,890,875,-1,2844,2845,2846,-1,2847,2848,2849,-1,2850,2851,872,-1,2850,2852,2851,-1,900,2853,2854,-1,372,2855,373,-1,900,870,2856,-1,870,2849,871,-1,2857,2858,706,-1,2859,705,703,-1,2860,706,705,-1,817,2859,863,-1,716,2861,766,-1,2862,2863,884,-1,856,855,854,-1,847,851,850,-1,2864,2865,2866,-1,2867,2868,2869,-1,2870,2871,759,-1,831,2872,2873,-1,828,827,2874,-1,831,826,828,-1,2875,2876,824,-1,2877,2878,744,-1,700,777,775,-1,2857,2860,816,-1,2879,814,813,-1,2880,680,2881,-1,2882,792,2883,-1,2884,806,805,-1,807,2885,2886,-1,2887,2888,2889,-1,2890,2891,728,-1,795,2892,2887,-1,2888,2893,2894,-1,2894,2895,2896,-1,2897,724,2898,-1,782,2899,783,-1,2899,2900,783,-1,869,716,766,-1,2901,769,2902,-1,768,770,869,-1,767,2903,2904,-1,2902,780,749,-1,2869,867,868,-1,875,2905,2906,-1,2907,820,757,-1,813,2908,2909,-1,750,749,751,-1,743,2910,2911,-1,2912,680,2880,-1,790,791,2913,-1,483,2914,2915,-1,2888,2887,726,-1,702,864,2859,-1,2840,896,728,-1,2898,724,721,-1,899,898,2916,-1,2900,711,783,-1,2900,707,711,-1,2917,2918,714,-1,703,705,704,-1,2919,2918,733,-1,881,858,2920,-1,699,854,2921,-1,807,2922,2885,-1,753,692,697,-1,692,2923,689,-1,735,737,791,-1,690,2924,811,-1,2904,686,688,-1,681,2912,2925,-1,2926,2881,680,-1,686,865,814,-1,2927,682,681,-1,676,675,758,-1,2928,2929,2930,-1,2931,2932,603,-1,2933,2934,474,-1,2935,2936,2937,-1,2938,673,470,-1,2939,542,541,-1,476,470,672,-1,475,2940,2941,-1,1779,2942,2943,-1,315,532,2944,-1,314,2945,331,-1,2946,2947,2948,-1,2949,2950,2951,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getmand_Geo_5_877_coordIndex_7()
		{
			int[] value = {2952,666,2953,-1,2954,2955,663,-1,2956,2957,2958,-1,2956,638,637,-1,2959,2960,2961,-1,2962,2963,2964,-1,2965,620,627,-1,1750,651,1751,-1,2952,2966,655,-1,2967,2968,665,-1,2969,2970,2971,-1,2950,2972,2973,-1,2943,2942,654,-1,646,645,2951,-1,648,612,651,-1,644,2974,642,-1,2969,2975,2976,-1,2977,2978,634,-1,2979,629,628,-1,2954,633,2980,-1,661,2981,2982,-1,2979,2983,2984,-1,628,627,620,-1,618,620,2965,-1,2985,2986,2987,-1,539,538,2988,-1,613,2989,2990,-1,509,508,611,-1,2991,2941,2940,-1,2992,2993,2933,-1,2994,605,2995,-1,2996,514,2997,-1,2998,2999,519,-1,593,592,3000,-1,3001,3002,554,-1,3003,3004,3005,-1,578,574,498,-1,3006,574,3007,-1,3008,575,3009,-1,3010,3011,3012,-1,3010,3012,582,-1,3013,587,3014,-1,568,3015,507,-1,2999,3016,519,-1,571,565,3007,-1,727,3017,2998,-1,492,3018,561,-1,3019,3020,498,-1,3013,567,586,-1,3021,3017,727,-1,561,512,492,-1,565,563,502,-1,3022,510,512,-1,3023,3024,3025,-1,3026,547,3027,-1,544,3026,3028,-1,3022,3023,546,-1,490,549,482,-1,3029,3030,3031,-1,3032,543,3033,-1,541,3034,327,-1,3035,3036,469,-1,1633,536,535,-1,3037,3038,3039,-1,3040,3041,529,-1,567,523,584,-1,3042,3043,519,-1,558,895,3044,-1,2978,2984,2989,-1,3045,504,513,-1,3011,3010,496,-1,3046,503,3047,-1,596,559,561,-1,512,493,492,-1,493,3048,562,-1,480,484,483,-1,3049,3050,479,-1,473,3051,474,-1,554,553,3052,-1,462,461,1559,-1,1559,461,3053,-1,3054,3055,3056,-1,3057,3058,463,-1,3059,3060,459,-1,243,3061,459,-1,2992,606,608,-1,2994,2995,3062,-1,3063,3064,3065,-1,450,449,3066,-1,3067,2920,858,-1,862,3067,857,-1,862,3068,3069,-1,3070,448,3071,-1,443,3072,444,-1,3073,3074,3075,-1,3076,3077,3078,-1,1030,1029,433,-1,3079,3080,441,-1,3081,438,437,-1,447,446,3082,-1,436,3083,3084,-1,410,996,3085,-1,996,2772,992,-1,430,429,435,-1,426,2743,427,-1,3086,3087,3088,-1,1005,419,420,-1,3089,404,410,-1,992,3089,3085,-1,409,984,432,-1,3089,405,404,-1,861,3090,853,-1,3091,3090,908,-1,400,399,933,-1,1039,300,302,-1,352,1039,3092,-1,934,933,399,-1,293,3093,275,-1,377,388,3094,-1,951,3095,2780,-1,2780,3096,386,-1,1017,392,384,-1,287,286,379,-1,376,951,387,-1,1044,275,382,-1,370,3097,925,-1,928,367,369,-1,365,916,1032,-1,2803,3098,3099,-1,363,3100,3101,-1,362,364,2741,-1,920,3102,3103,-1,2828,3104,3105,-1,954,3106,3107,-1,3092,347,350,-1,3108,3109,3110,-1,1025,3111,3112,-1,323,557,321,-1,542,2939,3113,-1,312,2985,313,-1,318,324,319,-1,316,3114,311,-1,2985,330,3115,-1,3040,3116,3117,-1,2816,255,3118,-1,264,3119,3120,-1,3121,3122,3123,-1,3124,3125,3126,-1,3125,3124,3127,-1,302,301,3128,-1,305,251,250,-1,3129,3130,3131,-1,3129,295,294,-1,3123,3122,3132,-1,287,3131,3130,-1,374,289,379,-1,275,374,286,-1,3131,287,289,-1,269,270,3133,-1,274,3134,262,-1,277,279,3135,-1,3136,3137,958,-1,266,260,269,-1,297,3138,294,-1,3139,3140,259,-1,247,3141,256,-1,2815,3126,3128,-1,251,3142,252,-1,3143,258,3142,-1,239,3144,248,-1,397,2736,300,-1,246,3141,247,-1,888,2834,263,-1,3145,2854,2853,-1,244,459,2994,-1,3146,3147,451,-1,451,3148,3149,-1,2735,2736,3150,-1,3151,3060,3059,-1,3152,3153,3154,-1,3155,3156,3157,-1,230,3158,3159,-1,3160,224,3161,-1,3162,3163,3164,-1,3162,3165,3163,-1,3166,229,3167,-1,3168,237,236,-1,3169,3170,217,-1,3171,3172,3173,-1,3174,211,3175,-1,3176,3177,3178,-1,3179,3180,3181,-1,3182,3183,3184,-1,3173,3172,3185,-1,3186,3187,3175,-1,3188,3189,3190,-1,3191,3192,3193,-1,3194,3195,196,-1,199,3193,3196,-1,189,3197,190,-1,184,187,3198,-1,3199,176,3200,-1,175,3201,3197,-1,3202,168,3203,-1,3204,3205,3206,-1,3203,170,3207,-1,3208,3209,3210,-1,3210,3211,3212,-1,3213,3214,3215,-1,3216,161,3217,-1,3218,154,165,-1,3219,166,3220,-1,162,3221,3222,-1,3223,3224,3225,-1,165,156,3226,-1,163,3222,153,-1,160,3227,3228,-1,3229,3230,3231,-1,3232,3233,3228,-1,153,3234,3235,-1,3236,3237,145,-1,3238,3239,3240,-1,3241,3239,3242,-1,3243,134,3244,-1,3245,3246,3247,-1,3248,3249,3250,-1,3251,3252,138,-1,116,3253,117,-1,3254,127,129,-1,3255,123,3256,-1,119,133,3257,-1,3258,3259,3260,-1,3261,129,128,-1,3262,126,125,-1,3263,3264,3260,-1,116,115,141,-1,3265,3266,3267,-1,3268,3269,3270,-1,109,111,3271,-1,25,3272,3273,-1,3273,3272,3274,-1,3275,3276,3277,-1,3275,3278,3276,-1,3279,3280,3281,-1,3282,3283,3284,-1,97,83,3285,-1,94,3286,3287,-1,3288,3284,3289,-1,3290,3291,3292,-1,3293,3294,3295,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getmand_Geo_5_877_coordIndex_8()
		{
			int[] value = {3289,3296,3297,-1,3298,3299,82,-1,84,88,85,-1,3285,83,3300,-1,3296,3301,3302,-1,3295,3303,3304,-1,3305,3306,3307,-1,78,3308,79,-1,3309,3310,75,-1,3311,67,69,-1,71,3312,72,-1,39,69,61,-1,3313,3314,3315,-1,3316,3317,3318,-1,3319,3320,3321,-1,3322,3323,44,-1,3324,3325,3326,-1,37,39,60,-1,3327,3328,3329,-1,3330,30,3331,-1,3332,3333,3334,-1,3335,3336,3337,-1,26,3338,3339,-1,3340,3341,3309,-1,3342,3343,11,-1,3344,3345,13,-1,3346,22,21,-1,3347,3345,3348,-1,3349,3350,21,-1,3339,13,20,-1,3308,3351,3352,-1,3353,3354,3355,-1,3356,3357,3358,-1,3359,3360,3356,-1,3359,3356,3358,-1,3357,3361,3358,-1,3362,3363,3364,-1,3364,3365,3362,-1,3353,3366,3354,-1,3308,3270,3351,-1,3339,3367,13,-1,3350,3346,21,-1,3348,23,3347,-1,19,3368,17,-1,22,3369,20,-1,11,3367,3342,-1,3341,3370,3309,-1,3350,3335,3337,-1,3332,3334,16,-1,3371,1,3358,-1,30,3372,3331,-1,3327,3373,3328,-1,3374,37,60,-1,3325,42,3326,-1,43,3322,44,-1,3375,3376,3377,-1,3318,3378,3316,-1,3313,3315,3379,-1,39,61,60,-1,71,64,3312,-1,3311,69,39,-1,3340,3309,75,-1,74,76,3380,-1,78,3268,3308,-1,3307,3381,3305,-1,3382,3295,3304,-1,3296,3302,3297,-1,3300,3383,3285,-1,84,86,88,-1,81,3298,82,-1,3289,3297,3384,-1,3293,3295,3382,-1,3292,3385,3290,-1,3288,3289,3298,-1,94,3386,3286,-1,3285,3387,97,-1,3284,3288,3282,-1,3279,3388,3280,-1,3273,3274,3389,-1,25,24,3272,-1,3271,3390,109,-1,3270,3308,3268,-1,3265,3391,3266,-1,3392,116,141,-1,3260,3393,3263,-1,125,3394,3262,-1,128,3395,3261,-1,3258,3260,3264,-1,3257,120,119,-1,3255,121,123,-1,3254,129,125,-1,138,3396,3397,-1,138,3252,3396,-1,116,3398,3253,-1,3251,3399,3252,-1,3248,3250,130,-1,3245,3247,132,-1,3243,3400,134,-1,3241,3242,3401,-1,3238,3242,3239,-1,3402,3236,145,-1,153,3403,3234,-1,3228,3404,3232,-1,3229,3231,3405,-1,160,3228,3233,-1,163,153,152,-1,165,154,156,-1,3223,3225,3406,-1,3222,163,162,-1,3219,164,166,-1,3218,3407,154,-1,3216,3408,161,-1,3213,3215,3409,-1,3210,3209,3211,-1,3208,3410,3209,-1,3203,3207,3411,-1,3206,3412,3204,-1,3202,3203,3413,-1,3197,193,175,-1,3200,177,3199,-1,184,3198,185,-1,189,191,3197,-1,199,3196,200,-1,3194,3414,3195,-1,3191,3415,3192,-1,3188,3416,3189,-1,3175,3417,3186,-1,3172,3418,3185,-1,3184,3419,3182,-1,3179,3420,3180,-1,3176,3178,3421,-1,3174,3175,3187,-1,3171,3422,3172,-1,3423,3424,3425,-1,3423,3426,3424,-1,3168,221,219,-1,217,216,3169,-1,221,3168,236,-1,238,3166,3167,-1,233,3165,223,-1,3165,3162,223,-1,3160,3161,3427,-1,230,3159,3428,-1,3155,3157,3429,-1,3152,3154,3430,-1,3151,3431,3060,-1,465,580,579,-1,3149,3146,451,-1,910,3432,907,-1,3145,3433,2854,-1,300,249,397,-1,3434,3144,3150,-1,3143,3435,258,-1,254,253,3436,-1,253,3139,3436,-1,3128,301,2815,-1,298,297,294,-1,299,3437,268,-1,268,265,299,-1,269,267,266,-1,3438,3135,3439,-1,274,262,261,-1,1044,284,283,-1,289,291,3131,-1,286,293,275,-1,3440,308,306,-1,3130,304,287,-1,3132,3138,3123,-1,3129,294,3132,-1,3122,3130,3129,-1,3131,295,3129,-1,3128,1040,302,-1,3441,2834,2833,-1,3120,297,264,-1,3122,3129,3132,-1,2815,2816,3118,-1,3040,529,3116,-1,331,312,314,-1,320,315,3040,-1,3442,317,3029,-1,3442,318,317,-1,312,330,2985,-1,323,3039,557,-1,3443,3109,3444,-1,3108,3444,3109,-1,350,352,3092,-1,3445,954,3107,-1,3446,3447,2741,-1,920,3448,3102,-1,2741,3447,362,-1,363,3449,3100,-1,3099,3450,2803,-1,3451,365,1032,-1,368,928,369,-1,370,925,3452,-1,882,390,371,-1,264,263,3119,-1,387,377,376,-1,1017,384,1016,-1,2780,3095,3096,-1,951,376,3095,-1,377,3453,1018,-1,3093,382,275,-1,3106,3454,3107,-1,2821,399,398,-1,352,300,1039,-1,400,933,942,-1,3455,405,3089,-1,3089,410,3085,-1,406,3456,964,-1,420,422,1005,-1,2746,3086,3088,-1,426,415,2743,-1,435,434,430,-1,996,992,3085,-1,3088,431,2746,-1,410,997,996,-1,3082,3457,447,-1,3081,3458,438,-1,441,3459,3079,-1,280,912,3460,-1,1030,433,3072,-1,1012,1030,2812,-1,2841,3461,3462,-1,3463,276,3464,-1,3069,3067,862,-1,862,857,863,-1,3067,858,857,-1,3465,450,3066,-1,1021,3063,3065,-1,2995,3466,3062,-1,608,2993,2992,-1,3050,3467,3468,-1,3469,3470,3471,-1,243,1546,3061,-1,459,3061,3059,-1,3472,3057,463,-1,3056,462,3054,-1,3473,3431,3474,-1,462,1559,3475,-1,467,3476,3477,-1,514,2996,601,-1,3478,2938,3479,-1,2935,3480,3479,-1,479,472,3049,-1,550,3481,489,-1,550,486,3482,-1,545,481,737,-1,562,494,493,-1,512,511,493,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getmand_Geo_5_877_coordIndex_9()
		{
			int[] value = {498,3483,499,-1,3147,3146,3484,-1,3011,496,495,-1,3010,509,496,-1,513,3485,3045,-1,2978,2989,656,-1,517,727,518,-1,558,3486,895,-1,3042,558,3043,-1,3487,3020,3488,-1,623,527,526,-1,3040,2944,3041,-1,3489,3115,3490,-1,622,530,623,-1,660,3491,622,-1,3037,3039,323,-1,671,670,1630,-1,1633,3492,536,-1,541,543,3034,-1,3032,3034,543,-1,3029,524,3030,-1,482,491,490,-1,3022,3024,3023,-1,3028,485,544,-1,3027,3493,3026,-1,3024,3494,3025,-1,560,3022,512,-1,596,561,3018,-1,563,562,502,-1,3495,3021,727,-1,3496,3013,586,-1,3497,3019,498,-1,3015,568,500,-1,492,494,3018,-1,2998,518,727,-1,573,571,3007,-1,2999,3498,3016,-1,3499,3055,464,-1,507,583,568,-1,3014,566,3013,-1,582,583,3010,-1,3011,3500,3012,-1,575,585,3009,-1,3007,501,3006,-1,567,584,577,-1,574,3483,498,-1,319,3009,585,-1,508,504,611,-1,3005,3501,3003,-1,3001,3502,3002,-1,593,3000,3503,-1,3018,494,562,-1,519,518,2998,-1,2994,604,605,-1,2933,3504,2992,-1,2940,3505,2991,-1,509,611,496,-1,612,615,613,-1,613,616,2989,-1,644,539,2988,-1,2985,2987,3506,-1,2965,3507,618,-1,628,620,495,-1,2979,2984,2978,-1,662,661,2982,-1,633,635,2980,-1,2979,2977,629,-1,2977,2979,2978,-1,3508,2969,2976,-1,644,2988,2974,-1,648,615,612,-1,2973,646,2951,-1,2943,654,3509,-1,2973,2951,2950,-1,2969,2971,647,-1,665,651,2967,-1,2952,655,650,-1,617,2983,2979,-1,1750,2967,651,-1,2965,627,3510,-1,2964,3511,2962,-1,2990,2931,613,-1,2960,3512,2961,-1,637,659,2956,-1,2958,638,2956,-1,633,2954,663,-1,2953,3513,2952,-1,2949,3514,2950,-1,314,528,2945,-1,2944,3040,315,-1,1779,643,2942,-1,2938,3478,673,-1,475,2941,3515,-1,476,672,477,-1,2939,541,3035,-1,3516,674,3517,-1,3516,3518,674,-1,673,471,470,-1,2933,2993,2934,-1,603,3519,2931,-1,468,467,3520,-1,2928,2930,3521,-1,757,676,758,-1,681,3522,743,-1,680,3523,2926,-1,2925,3522,681,-1,791,3524,735,-1,2883,3525,694,-1,692,753,2923,-1,3526,685,684,-1,884,2863,880,-1,2919,733,702,-1,704,701,703,-1,3527,766,2861,-1,2917,3528,2918,-1,898,2929,2916,-1,721,3529,2892,-1,3529,724,2887,-1,724,3529,721,-1,2919,714,2918,-1,2859,703,702,-1,3530,2888,726,-1,2915,799,483,-1,791,737,2913,-1,743,742,2910,-1,749,748,751,-1,752,3531,2923,-1,686,814,687,-1,3532,687,814,-1,2909,2879,813,-1,756,2907,757,-1,684,867,3526,-1,2869,868,3533,-1,2902,749,809,-1,2903,865,2904,-1,869,779,768,-1,809,2901,2902,-1,869,766,765,-1,2898,847,2897,-1,795,722,2892,-1,2894,2889,2888,-1,790,2913,483,-1,2892,3529,2887,-1,728,2895,2890,-1,3534,2884,805,-1,792,695,2883,-1,2879,3532,814,-1,2857,816,819,-1,700,775,698,-1,860,3535,761,-1,861,860,822,-1,824,3536,2875,-1,823,3536,824,-1,830,828,2874,-1,832,831,2873,-1,2870,759,3537,-1,2869,3332,2867,-1,2866,786,2864,-1,848,847,850,-1,692,3525,697,-1,3068,448,3069,-1,3068,3071,448,-1,2859,864,863,-1,2860,2857,706,-1,2859,2860,705,-1,2857,818,2858,-1,870,887,2849,-1,900,885,870,-1,372,3538,2855,-1,900,2856,2853,-1,2849,887,2847,-1,882,888,390,-1,890,2842,875,-1,807,2842,805,-1,702,732,864,-1,2928,2916,2929,-1,2839,883,2818,-1,901,2823,902,-1,277,3135,3438,-1,2834,888,878,-1,2744,414,1005,-1,948,3539,3540,-1,2830,2832,3541,-1,2826,1024,1023,-1,3542,1036,3543,-1,368,923,929,-1,366,3544,2740,-1,2823,911,947,-1,3545,927,926,-1,936,2822,1041,-1,2819,2814,941,-1,2817,1035,1034,-1,1042,946,910,-1,2814,351,350,-1,939,393,247,-1,916,929,917,-1,2780,386,2756,-1,967,923,922,-1,437,3084,1022,-1,2811,1011,1012,-1,2809,956,961,-1,965,2807,972,-1,2804,2807,917,-1,3546,2805,966,-1,2804,2806,2807,-1,2801,2803,3547,-1,3546,2798,2800,-1,2794,2796,1031,-1,3548,971,3549,-1,2791,962,2792,-1,2777,424,976,-1,2790,3550,2764,-1,2786,963,2787,-1,2785,422,421,-1,980,979,2783,-1,2769,3551,1000,-1,952,951,2780,-1,2775,2751,2773,-1,989,2772,990,-1,3552,3553,2790,-1,978,2767,2768,-1,988,2766,3554,-1,3555,401,2764,-1,419,3548,974,-1,970,3556,443,-1,956,2809,2761,-1,969,3557,2760,-1,385,2756,386,-1,3558,3559,3560,-1,3561,3562,2759,-1,2753,1014,1028,-1,1013,2755,2752,-1,3563,2808,1011,-1,2806,444,972,-1,409,408,984,-1,2750,2773,2751,-1,417,412,2744,-1,1035,3564,1036,-1,2742,3545,2741,-1,2740,396,2738,-1,1037,3565,400,-1,393,940,2737,-1,348,3565,1037,-1,276,283,3464,-1,2729,3566,2732,-1,2729,2731,3566,-1,2728,3567,2727,-1,2725,3568,2726,-1,1058,2724,1059,-1,1071,1070,2723,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getmand_Geo_5_877_coordIndex_10()
		{
			int[] value = {1079,2722,3569,-1,1069,3570,1067,-1,1072,1061,1070,-1,1163,1162,1066,-1,2715,2717,2723,-1,2713,1084,3571,-1,2714,3572,2712,-1,2711,3573,2709,-1,2708,3574,2691,-1,1091,2704,1092,-1,2702,3575,2703,-1,2700,3576,2701,-1,3577,3578,3579,-1,2695,3580,2696,-1,2693,2698,2691,-1,2689,3581,2690,-1,2683,2682,2686,-1,2685,3582,1110,-1,2682,2684,2674,-1,2680,3583,2681,-1,1111,2679,1115,-1,2676,1112,1114,-1,2675,2728,2673,-1,1119,1078,1120,-1,1116,1119,3584,-1,3585,3586,3587,-1,3585,3588,3586,-1,1139,3589,3590,-1,1139,3591,3589,-1,1134,1133,1136,-1,2670,3592,2671,-1,2669,3593,2667,-1,2666,3594,2664,-1,2663,3595,2662,-1,2661,2658,3596,-1,2658,3597,2659,-1,3598,3599,3600,-1,1171,1173,1178,-1,2653,3601,2651,-1,2650,1168,2636,-1,2649,1178,1177,-1,3602,1184,2641,-1,2646,3603,2647,-1,1176,1193,2645,-1,1182,3604,2642,-1,2640,1199,3605,-1,1183,1204,1200,-1,2636,1168,2637,-1,1169,2635,1170,-1,2634,1198,3606,-1,2632,3607,2633,-1,2629,3608,2630,-1,2628,1216,1218,-1,1219,1231,3609,-1,2626,1228,1230,-1,2624,1239,1235,-1,2621,2623,3610,-1,1251,1250,2620,-1,2618,3611,2619,-1,2614,2601,1262,-1,1264,1266,2610,-1,1265,2608,2606,-1,1266,2607,3612,-1,1267,3613,2605,-1,1259,3614,1268,-1,2601,2603,3615,-1,2600,2610,2598,-1,2597,2605,1273,-1,2596,1271,3616,-1,2594,3617,2595,-1,2591,2595,2592,-1,3618,2588,2590,-1,1283,1296,2587,-1,2583,1295,2584,-1,3619,3620,3621,-1,3619,3622,3620,-1,2580,3623,2581,-1,3624,3625,2578,-1,1299,3626,2579,-1,1310,2578,3625,-1,2566,1303,2578,-1,2575,2577,2569,-1,2573,3627,2574,-1,3628,2570,2571,-1,2560,3629,1306,-1,2569,3629,2560,-1,1308,2567,3630,-1,2566,1310,2564,-1,1311,3631,2563,-1,2562,3626,2560,-1,2559,3632,1305,-1,3633,3634,3635,-1,2470,243,3636,-1,2493,3637,2494,-1,3635,1333,2491,-1,2551,2553,3638,-1,2550,1342,1341,-1,2493,3639,3640,-1,2551,3641,2552,-1,1361,1360,1355,-1,1350,1353,1442,-1,1351,1356,1352,-1,3642,1355,2215,-1,1980,2501,2541,-1,2549,1370,1374,-1,3643,3644,3645,-1,3646,2214,2213,-1,2545,1364,1363,-1,1371,2538,1368,-1,1369,2131,1374,-1,2538,1371,2543,-1,1352,1356,2476,-1,1348,1347,1378,-1,1388,3647,1349,-1,1353,3647,1388,-1,1463,1346,1461,-1,1375,1368,2538,-1,3648,3638,3649,-1,2535,1375,2533,-1,2532,1395,2456,-1,1777,3650,3651,-1,1395,1397,1778,-1,1398,1400,3652,-1,1778,1397,2530,-1,1629,3653,1404,-1,2524,1399,2525,-1,1634,2527,2522,-1,2531,3651,1393,-1,1504,2475,2478,-1,3654,3655,3656,-1,2518,2520,3657,-1,2517,3658,2515,-1,2514,3659,2512,-1,2137,2130,1415,-1,1413,2198,2008,-1,2510,2114,3660,-1,2505,2112,2114,-1,2509,3661,2507,-1,2506,3662,2112,-1,1424,1426,1423,-1,2503,1435,2504,-1,1948,1439,1441,-1,2502,2131,1360,-1,1444,2153,1453,-1,1980,1979,1457,-1,2500,1371,1456,-1,2498,1456,1455,-1,1450,1449,2100,-1,1454,3663,1445,-1,2496,1351,1350,-1,2127,2493,1448,-1,1462,1415,2130,-1,2137,1415,1414,-1,1464,1997,2216,-1,2129,1999,1997,-1,1997,2130,2129,-1,1466,1458,1999,-1,2089,2178,2177,-1,1473,1472,2186,-1,1480,2490,2489,-1,1983,1483,1984,-1,2140,1494,2109,-1,1983,2488,1481,-1,1982,1488,2488,-1,2045,3664,1496,-1,1493,1495,2057,-1,2486,1497,1502,-1,1475,1477,1510,-1,1507,3665,1508,-1,3666,1506,2483,-1,2480,2482,3667,-1,2022,1518,2479,-1,1519,2158,2479,-1,3668,3669,2185,-1,3670,3671,1532,-1,3672,1964,1963,-1,1521,1525,1530,-1,3673,3674,3675,-1,3676,1571,2356,-1,1324,2467,1322,-1,1551,1554,1553,-1,1553,1552,1551,-1,2469,2467,1324,-1,1688,1687,1550,-1,1796,1562,3677,-1,3678,1783,2361,-1,1791,3679,1572,-1,2398,1781,1703,-1,2464,1572,3680,-1,1642,1578,1580,-1,1579,1645,1580,-1,2447,1644,1573,-1,1586,1585,1587,-1,2395,1597,1596,-1,2435,1590,1592,-1,2459,1656,1685,-1,1600,2396,2403,-1,1707,1706,1673,-1,1589,1588,3681,-1,1706,1600,3682,-1,1565,3683,1582,-1,1612,1606,1608,-1,2438,3684,2412,-1,2423,1640,2421,-1,2456,1618,1617,-1,1620,1777,1776,-1,3685,2452,1624,-1,3685,1621,2452,-1,1621,2453,2452,-1,1404,3686,2360,-1,2448,1632,535,-1,540,539,1709,-1,1635,1403,1785,-1,1580,1645,2445,-1,2447,2463,1576,-1,1643,1642,2445,-1,2442,1644,1643,-1,2439,2360,2359,-1,2438,1610,3684,-1,1657,1654,3687,-1,2410,2433,1584,-1,2436,3687,1654,-1,2429,2421,1675,-1,1592,1664,1671,-1,2433,1699,1698,-1,1655,2433,2434,-1,1683,1667,2431,-1,1667,1668,2431,-1,1683,2432,3688,-1,3689,3690,1552,-1,1678,1672,1671,-1,1682,1681,2422,-1,1660,3691,2430,-1,2426,1212,2427,-1,2424,3692,2425,-1,1694,1693,2417,-1,2416,2418,3693,-1,2415,2467,1555,-1,2411,2438,2412,-1,2408,2410,2461,-1,1680,3694,2413,-1,2413,2412,1680,-1,2457,1612,1608,-1,1563,3695,2407,-1,2404,3696,2405,-1,1792,3697,1696,-1,2402,3698,2401,-1,1536,2358,2400,-1,1782,2399,2364,-1,2397,1597,2395,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getmand_Geo_5_877_coordIndex_11()
		{
			int[] value = {1735,2393,2394,-1,2394,2376,3699,-1,2396,2395,3700,-1,2370,2389,1627,-1,1714,2391,3701,-1,1715,2370,1713,-1,3702,1757,2390,-1,2388,3703,2389,-1,1725,1716,1753,-1,1753,2384,2386,-1,1723,1727,1766,-1,2383,1762,3704,-1,1391,2382,1637,-1,3705,3706,1748,-1,1748,3707,3705,-1,1745,1746,2369,-1,1738,1737,2378,-1,2367,1736,2375,-1,1746,1734,1736,-1,1740,3708,2377,-1,2376,1604,1603,-1,2454,1622,1738,-1,1738,1743,2454,-1,2390,2373,1617,-1,1762,1761,2372,-1,1727,1765,1766,-1,2370,3709,1752,-1,1746,2367,2369,-1,2365,3710,1768,-1,1778,3685,1618,-1,1596,1716,2395,-1,1733,3711,1739,-1,2364,671,1631,-1,1780,1781,1789,-1,1403,1637,2382,-1,1403,1635,1637,-1,1790,1783,1567,-1,1790,1784,1783,-1,1787,2360,3712,-1,2356,2358,1536,-1,2355,3713,3714,-1,2353,1906,2348,-1,1805,1809,1808,-1,1940,3715,2278,-1,2348,1861,1863,-1,3716,3717,3718,-1,1812,3719,1816,-1,2345,1823,1911,-1,1826,1828,2344,-1,3720,1944,1830,-1,2341,1829,1831,-1,2274,3721,2342,-1,2340,1833,3722,-1,1831,3723,3721,-1,3724,3725,3726,-1,1958,3727,3728,-1,1841,1846,2311,-1,2336,2294,2342,-1,1832,1827,1955,-1,1812,2333,3729,-1,1860,2328,2291,-1,2332,1804,1803,-1,2330,3730,1914,-1,2328,2288,2306,-1,1817,1860,2290,-1,1858,1872,1859,-1,2355,1801,1914,-1,3731,3732,3733,-1,3733,2331,3731,-1,1800,2283,2327,-1,2325,3734,2326,-1,2324,3720,1830,-1,2323,2326,2284,-1,1885,2322,1883,-1,2315,2320,2316,-1,2318,3735,2319,-1,1912,2319,1933,-1,2317,1888,1890,-1,2316,1878,1877,-1,2244,2273,2312,-1,2275,1893,2313,-1,2311,2254,1894,-1,2309,2289,2291,-1,1854,3736,2299,-1,1905,2289,1936,-1,2328,2306,2308,-1,1849,2303,2305,-1,1851,2301,3737,-1,2298,3738,2299,-1,2295,3739,2255,-1,2293,2342,2294,-1,2289,2346,2290,-1,1877,1887,2287,-1,2246,1862,1865,-1,1908,2318,1912,-1,1917,1868,2283,-1,2282,2235,3740,-1,2275,2312,2273,-1,2269,1922,1923,-1,2271,1926,3741,-1,2272,3742,1924,-1,3741,3743,1929,-1,2262,2726,2270,-1,2269,2270,2267,-1,2264,3744,2265,-1,2261,2726,2262,-1,3733,3732,2263,-1,1884,1883,2256,-1,2253,2255,3739,-1,1895,1894,2251,-1,3745,1938,1937,-1,1917,1802,1470,-1,1822,1821,2250,-1,1526,1943,1941,-1,2249,1527,1941,-1,1917,1471,1918,-1,1523,2335,1965,-1,3746,1880,2246,-1,2244,1890,1889,-1,1947,1951,2243,-1,3747,2240,2242,-1,1981,2539,1953,-1,3748,1824,2241,-1,2241,1972,2005,-1,2239,2237,1948,-1,2236,2240,1948,-1,2496,1440,1439,-1,2234,2233,2241,-1,1947,2217,2222,-1,1954,2230,1441,-1,1960,1963,1962,-1,2239,1961,1967,-1,3749,2224,2225,-1,1583,1836,2223,-1,2222,1978,1952,-1,2219,3750,2220,-1,1467,1325,1327,-1,1976,2222,2217,-1,1327,1978,1977,-1,3646,2213,3751,-1,2215,1354,1439,-1,2212,3752,1384,-1,2011,1431,1430,-1,1421,2211,2193,-1,2117,1995,2014,-1,3753,3754,1436,-1,1431,1994,1432,-1,2117,2118,3755,-1,2122,1460,1459,-1,2003,2123,3756,-1,2126,3757,2127,-1,1466,2125,2203,-1,2111,2149,2202,-1,1998,2136,1327,-1,3648,2500,3638,-1,2194,2492,2199,-1,2198,1461,1333,-1,2065,1443,2197,-1,2141,2109,2194,-1,3758,2020,3759,-1,2189,2190,3760,-1,1484,2052,2021,-1,2015,3761,2187,-1,1486,2052,1484,-1,2096,3762,2185,-1,2037,2488,1488,-1,2184,2021,2052,-1,1487,2044,2182,-1,2164,1500,1499,-1,2143,2039,2183,-1,2182,2073,2181,-1,2058,2179,2175,-1,2176,2178,1476,-1,3763,2058,2084,-1,2173,3764,2174,-1,2085,2486,1501,-1,3765,2169,2171,-1,2167,1479,2074,-1,2166,1500,2164,-1,2162,2084,2083,-1,1982,3766,2054,-1,1519,2092,2158,-1,2158,2160,2479,-1,3767,3768,2106,-1,2146,2019,2018,-1,3769,2148,2103,-1,2155,2190,2156,-1,2153,2020,2154,-1,2150,2152,2544,-1,2202,2149,1533,-1,1991,3770,2016,-1,3771,2521,1409,-1,2104,2108,2103,-1,1510,2041,2146,-1,2075,2074,2142,-1,2196,2139,2141,-1,2110,2138,3772,-1,3756,3773,3774,-1,3775,1345,1344,-1,2135,2136,2002,-1,2546,2548,3776,-1,2544,3776,2150,-1,2132,2134,3777,-1,3778,1363,2549,-1,2124,2130,2137,-1,2099,2127,2100,-1,1466,2129,2124,-1,2120,1996,2121,-1,1422,1416,2115,-1,2112,3779,2113,-1,1984,1483,2109,-1,1492,3780,1501,-1,3781,2193,2211,-1,1476,2178,1477,-1,2021,2184,1518,-1,2157,2018,3782,-1,2107,2101,2103,-1,2104,2148,2105,-1,3783,3784,3785,-1,3786,3787,3788,-1,1449,2012,2099,-1,2097,2012,3789,-1,3783,3790,3791,-1,2092,2147,2095,-1,2020,2153,2093,-1,2158,2092,2159,-1,2090,2038,1488,-1,2047,2089,3792,-1,2085,2087,2173,-1,2082,2084,2175,-1,2164,2062,2165,-1,2073,2167,2074,-1,2070,2072,3793,-1,2067,2069,3794,-1,2013,1452,2065,-1,2062,2064,2165,-1,2057,2179,2058,-1,2053,1489,2054,-1,2050,2052,2186,-1,2049,3795,2047,-1,2046,2182,2044,-1,2043,3796,2041,-1,2035,2183,2039,-1,2033,2035,2040,-1,2096,3797,3762,-1,2030,2032,2027,-1,2028,2029,3798,-1,2023,2026,2024,-1,3761,2024,2027,-1,2025,2023,2024,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getmand_Geo_5_877_coordIndex_12()
		{
			int[] value = {2021,2023,2188,-1,2020,2094,2018,-1,3758,2154,2020,-1,2016,1506,3799,-1,2014,1995,1994,-1,2012,1449,1452,-1,2011,2015,1994,-1,1414,2008,2010,-1,3800,1346,1345,-1,1327,2136,2006,-1,1972,2138,2004,-1,2002,2001,2000,-1,3754,3753,2115,-1,1997,1977,2216,-1,1433,1482,3801,-1,1995,1435,1434,-1,2205,2110,3772,-1,1993,3770,1991,-1,1985,2208,1986,-1,3802,3803,2200,-1,1984,3766,1982,-1,1385,1981,1954,-1,1359,1358,3645,-1,1976,2216,1977,-1,1970,1972,2233,-1,1799,1834,3804,-1,1965,2335,1966,-1,1960,1959,1820,-1,3747,1959,1961,-1,1955,1957,1832,-1,1953,1945,2232,-1,1952,3805,1328,-1,1948,2237,1949,-1,2231,1945,1947,-1,1844,1944,1909,-1,1944,3720,1910,-1,1526,1965,1845,-1,1830,1829,1889,-1,2234,3806,2280,-1,1521,1520,1942,-1,1815,1813,1816,-1,1939,3807,1893,-1,1937,1895,2252,-1,1936,2309,1934,-1,1933,3808,1081,-1,3809,1930,1932,-1,1927,1929,3743,-1,1926,2271,1924,-1,2271,3741,1929,-1,1921,1922,1919,-1,3810,1868,1918,-1,2235,1918,1471,-1,2282,3810,1918,-1,1913,2345,1911,-1,1908,2285,1909,-1,1862,1864,1866,-1,1814,1905,3811,-1,2229,1818,1820,-1,2338,1847,1840,-1,1901,2227,1902,-1,1897,1840,1838,-1,1847,2338,1898,-1,3812,1903,1898,-1,1895,1842,1841,-1,2275,1891,1893,-1,1888,1830,1889,-1,1886,2322,1887,-1,1884,1890,1885,-1,2284,1880,1882,-1,1879,1887,1877,-1,1874,3813,1875,-1,3814,1875,2350,-1,2315,1871,1873,-1,2242,3815,3747,-1,2283,1868,1870,-1,1865,1867,3816,-1,1907,1808,1809,-1,1855,3817,1856,-1,1853,1854,1900,-1,1852,2462,1579,-1,3737,1848,1850,-1,1846,1847,2303,-1,1826,1845,1965,-1,1901,3749,1969,-1,1842,1839,1838,-1,1834,1799,1835,-1,2275,2293,1891,-1,2275,2274,2293,-1,1833,1843,1827,-1,1944,1844,2344,-1,2344,2343,1944,-1,1826,1966,1827,-1,2241,3806,2234,-1,2350,2250,3814,-1,1811,1854,1577,-1,3818,1873,2248,-1,2348,1863,2284,-1,1804,2245,1809,-1,1806,1808,1906,-1,1862,1880,1863,-1,1805,2352,3819,-1,1800,1802,2283,-1,1797,1799,3804,-1,1794,3697,1792,-1,1791,3676,1535,-1,1783,3678,1788,-1,1787,3712,1402,-1,1786,3820,1636,-1,1784,2398,1782,-1,1704,1703,1781,-1,1788,1568,1567,-1,1742,1741,1779,-1,1621,3685,1778,-1,2531,1775,1777,-1,3821,1769,1771,-1,1767,3822,1768,-1,1765,3823,1724,-1,1764,3824,1760,-1,1762,1763,1760,-1,3825,1757,1759,-1,2394,1793,3826,-1,1756,2371,1754,-1,1753,1714,1713,-1,1734,3827,1750,-1,1728,1718,3700,-1,1747,2375,1748,-1,1745,3827,1734,-1,1743,2378,1744,-1,3828,1740,1742,-1,3821,1737,1739,-1,1735,3699,1736,-1,1733,1708,644,-1,1729,1731,2381,-1,1727,1717,1728,-1,1726,1728,1716,-1,1723,1766,1724,-1,3829,1719,1721,-1,1717,1718,1728,-1,1714,1753,1716,-1,1714,3701,1715,-1,1710,1712,1394,-1,1708,539,644,-1,2394,3699,1735,-1,1597,2397,1706,-1,1703,1705,3830,-1,1701,1702,3831,-1,3683,1565,1564,-1,1666,1606,1612,-1,1686,3832,1695,-1,1694,3833,1692,-1,1689,1691,3834,-1,1688,3835,1686,-1,2397,1600,1706,-1,1681,1680,1398,-1,1592,1683,3688,-1,2430,2422,2429,-1,1667,1683,1685,-1,1680,1682,3694,-1,1677,1679,1599,-1,1677,1599,1672,-1,1674,1661,1675,-1,1673,3836,1671,-1,2468,3690,3689,-1,1612,3837,1669,-1,1655,2434,1668,-1,1607,1606,1666,-1,1657,1586,1587,-1,2435,1671,3836,-1,1592,1615,1663,-1,1660,2429,1661,-1,1658,3838,1659,-1,1584,2433,1655,-1,1665,1657,2461,-1,1589,3681,1653,-1,1650,1652,3839,-1,1649,3840,1647,-1,1647,2445,1645,-1,1644,2447,1642,-1,1639,2374,1640,-1,1635,2523,1638,-1,1634,2523,1635,-1,2361,3841,3820,-1,1632,3842,1633,-1,1406,3843,1628,-1,1620,2455,1621,-1,2422,2421,2429,-1,1612,2457,1611,-1,1609,2224,1610,-1,1603,1605,1717,-1,1602,3682,1600,-1,1597,1707,1599,-1,2460,2459,3844,-1,1657,3687,2461,-1,1587,1585,1588,-1,1584,2458,1585,-1,1583,2223,1581,-1,1577,1576,2463,-1,1575,3845,3729,-1,1577,1853,1578,-1,1572,2465,1540,-1,1791,3846,3679,-1,3847,2441,1689,-1,1558,1554,1551,-1,3053,1554,1559,-1,1555,3848,1553,-1,1552,3690,1550,-1,1556,1547,1549,-1,1546,243,1544,-1,1702,1535,1537,-1,1534,3670,1532,-1,1529,2473,1530,-1,1528,1824,1524,-1,1527,1524,1523,-1,1525,1942,1523,-1,3778,2549,3849,-1,3850,3851,1968,-1,3852,1511,2146,-1,1509,2485,1510,-1,3853,3751,2213,-1,1506,3666,1507,-1,1505,3854,1503,-1,2017,3855,2483,-1,1500,2166,1480,-1,1478,1479,1500,-1,1497,2486,1498,-1,1494,2140,1495,-1,1502,1490,1492,-1,1488,1982,1489,-1,1482,2492,1483,-1,1480,1472,1474,-1,1474,1473,2142,-1,1465,1459,1458,-1,1462,1464,1461,-1,1999,1458,2000,-1,3856,3857,2511,-1,1369,1366,1381,-1,1371,1370,1455,-1,3663,2497,1445,-1,1452,1451,1444,-1,1451,1452,1449,-1,1446,1448,2155,-1,1373,1372,1368,-1,1443,1445,2197,-1,1455,1370,1365,-1,2504,1436,1438,-1,2503,1433,1435,-1,1430,1432,3858,-1,1429,3859,1427,-1,1424,3860,1425,-1,1417,1416,1422,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getmand_Geo_5_877_coordIndex_13()
		{
			int[] value = {1420,3861,1421,-1,3862,2144,1989,-1,1415,1462,1413,-1,1410,1412,3863,-1,1412,1411,3864,-1,1404,1406,1629,-1,1401,1403,2382,-1,3865,1786,1785,-1,3652,1400,2529,-1,1641,3652,2529,-1,1389,1778,2530,-1,1777,3651,2531,-1,1391,1620,1389,-1,1349,2537,1387,-1,1377,1380,2536,-1,1344,3866,3775,-1,3867,3775,3866,-1,1463,1382,1346,-1,3638,2553,3649,-1,1381,1366,1376,-1,1378,1380,1377,-1,1376,1366,1368,-1,3648,2534,2542,-1,1372,1374,1370,-1,3868,3642,2215,-1,1360,1362,2502,-1,1358,3643,3645,-1,3760,3869,2189,-1,1354,2215,1355,-1,1347,1349,3647,-1,3641,3870,1343,-1,3640,3871,2493,-1,1346,1383,1344,-1,2551,1337,2553,-1,1337,2552,1338,-1,2491,1335,3635,-1,1333,1461,1331,-1,2493,3871,3637,-1,1442,1385,1954,-1,1328,3805,1329,-1,3872,1544,2470,-1,1334,1331,2128,-1,1321,3873,1319,-1,1316,1318,3874,-1,1313,3875,1314,-1,3876,1304,2577,-1,3876,2559,1304,-1,1310,1312,2564,-1,1308,3630,1309,-1,3629,1304,1306,-1,1301,1308,1302,-1,1300,3877,1298,-1,2578,1303,1302,-1,3878,3619,3879,-1,3878,3880,3619,-1,1296,1297,3881,-1,1295,2583,1282,-1,1294,3882,1292,-1,1289,1291,3883,-1,1288,3884,1286,-1,1283,1285,1296,-1,1280,3885,1281,-1,1277,1279,3886,-1,1270,1276,3887,-1,1272,1274,3888,-1,1269,3889,1270,-1,1267,1268,3613,-1,1265,2606,1266,-1,1263,2615,1261,-1,1260,3890,1258,-1,1255,1251,1256,-1,1252,1254,3891,-1,1249,3892,1250,-1,1247,3893,1248,-1,1243,1245,3894,-1,1240,3895,1241,-1,1237,2625,1238,-1,1234,2624,1235,-1,1231,3896,1232,-1,1228,3897,1229,-1,1225,1218,1226,-1,3898,1222,1224,-1,1221,3899,1219,-1,1217,3900,1218,-1,3901,1228,2626,-1,3901,3902,1228,-1,3903,1213,1215,-1,1211,1210,1209,-1,1208,1210,3904,-1,1205,3905,1206,-1,1204,3906,1202,-1,1199,1201,3907,-1,1197,3908,1198,-1,1169,2650,1194,-1,1176,3909,1192,-1,1189,1191,3910,-1,1188,2646,1186,-1,1185,2639,1183,-1,1181,3604,1182,-1,1179,3909,1177,-1,1176,2644,1174,-1,1172,3911,1173,-1,1170,3912,1168,-1,1167,1057,1056,-1,1164,3913,1165,-1,1161,1160,1162,-1,1158,1160,1161,-1,1155,1157,3914,-1,1152,1154,3915,-1,1148,3916,1150,-1,1134,2665,1149,-1,1141,1148,1151,-1,1147,3917,1145,-1,1139,1141,3591,-1,1137,2671,1138,-1,1135,3918,1133,-1,1143,1130,1132,-1,1127,1129,3919,-1,1124,1126,3920,-1,1121,1057,1122,-1,1116,1076,1078,-1,1091,1115,2704,-1,1112,2680,1113,-1,1109,1111,1091,-1,1106,1108,3921,-1,1105,3922,1103,-1,1100,3578,1101,-1,3923,2688,3924,-1,1094,2702,1095,-1,1109,1091,1093,-1,1089,3925,1090,-1,1085,1087,3926,-1,1082,1084,3927,-1,1050,3566,3928,-1,1081,2721,1079,-1,1060,2715,2723,-1,1076,3929,1077,-1,1075,1059,1073,-1,1058,1064,3930,-1,1061,1072,3931,-1,1066,3932,1064,-1,1061,3931,1062,-1,1060,1070,1058,-1,1055,3933,1056,-1,3934,3935,3936,-1,3935,3937,3936,-1,1050,1054,1051,-1,1051,3938,1052,-1,1044,383,3939,-1,1041,946,1042,-1,3126,2815,3124,-1,3940,3941,937,-1,1036,3542,1034,-1,416,415,1033,-1,2828,3942,3104,-1,1012,2791,1029,-1,970,2760,3556,-1,1013,1028,1014,-1,3063,1021,943,-1,1020,3943,1019,-1,1018,2810,956,-1,1016,960,959,-1,1011,2808,961,-1,1007,2762,442,-1,422,2785,1004,-1,1003,2767,1001,-1,3944,3945,3946,-1,1000,3947,998,-1,997,2769,995,-1,994,3948,992,-1,990,3949,991,-1,988,434,986,-1,408,403,985,-1,978,3950,979,-1,974,3951,977,-1,974,976,420,-1,973,2787,963,-1,3548,419,971,-1,970,3952,968,-1,963,2786,406,-1,3953,966,922,-1,972,963,965,-1,961,956,955,-1,958,960,3136,-1,1044,3939,284,-1,921,3103,3954,-1,954,949,417,-1,953,387,951,-1,249,300,950,-1,948,395,394,-1,910,947,911,-1,944,3564,945,-1,2820,941,942,-1,938,2821,936,-1,365,928,916,-1,3955,3543,3956,-1,2832,2831,3957,-1,922,924,932,-1,921,2747,919,-1,1032,916,918,-1,913,2833,914,-1,281,280,3538,-1,371,267,269,-1,901,3432,910,-1,2823,1039,1040,-1,886,885,902,-1,906,910,907,-1,903,3958,904,-1,900,902,885,-1,897,899,3959,-1,894,3044,895,-1,2891,729,728,-1,2886,3960,807,-1,876,878,888,-1,2849,2848,871,-1,885,887,870,-1,822,884,883,-1,874,873,882,-1,3961,2855,3538,-1,881,2920,879,-1,876,2847,877,-1,2906,873,875,-1,872,2856,870,-1,869,770,717,-1,2925,3532,2879,-1,815,865,3962,-1,690,689,2923,-1,864,732,862,-1,860,853,821,-1,856,857,859,-1,817,863,857,-1,685,2921,854,-1,849,2897,847,-1,802,784,846,-1,845,768,779,-1,840,755,754,-1,840,833,9,-1,837,3963,838,-1,834,825,835,-1,834,9,833,-1,829,3964,828,-1,833,823,825,-1,781,783,711,-1,3965,3966,3967,-1,3968,2862,3969,-1,822,860,761,-1,757,821,676,-1,2904,865,686,-1,774,819,698,-1,818,2857,819,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getmand_Geo_5_877_coordIndex_14()
		{
			int[] value = {3970,813,815,-1,810,3971,811,-1,809,749,750,-1,740,696,785,-1,720,719,708,-1,806,2922,807,-1,3972,802,804,-1,788,801,3973,-1,799,3974,797,-1,3975,793,739,-1,2864,786,792,-1,787,738,785,-1,2897,784,724,-1,3976,782,781,-1,3977,781,717,-1,771,747,749,-1,869,765,779,-1,2868,776,777,-1,776,773,775,-1,772,812,747,-1,769,2901,770,-1,2904,763,767,-1,765,706,2858,-1,762,764,3978,-1,761,3979,759,-1,3980,756,758,-1,755,2910,742,-1,744,675,677,-1,3531,3981,2923,-1,752,2923,753,-1,739,794,750,-1,746,2877,744,-1,741,743,3522,-1,739,752,740,-1,486,736,694,-1,2845,2918,3528,-1,708,719,730,-1,727,2840,728,-1,726,2887,724,-1,2894,796,2889,-1,721,2892,722,-1,3982,3983,2844,-1,3984,3985,3986,-1,709,3987,3527,-1,713,2917,714,-1,707,709,711,-1,3527,2861,712,-1,706,766,704,-1,701,2919,702,-1,699,2921,700,-1,3525,692,694,-1,3988,3989,3990,-1,687,3991,688,-1,3965,3992,855,-1,680,2912,681,-1,2925,2879,3993,-1,676,853,678,-1,674,556,3517,-1,3478,553,673,-1,671,609,669,-1,497,628,495,-1,315,311,527,-1,3994,666,668,-1,664,3995,649,-1,662,3491,660,-1,658,637,2962,-1,646,3490,657,-1,616,656,2989,-1,654,2942,652,-1,649,651,665,-1,655,648,650,-1,2971,645,647,-1,664,665,2968,-1,2966,639,641,-1,3996,3508,3997,-1,3508,2976,3997,-1,638,3998,636,-1,634,2978,635,-1,632,3510,627,-1,630,627,629,-1,3999,624,626,-1,4000,621,623,-1,2965,4001,3507,-1,619,495,620,-1,2984,2983,4002,-1,614,2393,612,-1,497,496,506,-1,609,477,672,-1,606,4003,607,-1,604,3473,581,-1,603,2932,505,-1,2996,599,601,-1,517,519,3043,-1,3472,2414,3057,-1,3472,2415,2414,-1,595,4004,591,-1,3467,4005,3468,-1,4006,4005,3484,-1,591,4004,592,-1,580,4007,590,-1,587,589,4008,-1,577,4009,586,-1,3006,3483,574,-1,575,577,584,-1,582,4010,568,-1,579,581,3473,-1,3056,3055,3499,-1,578,4011,572,-1,575,4012,576,-1,573,3007,574,-1,569,563,565,-1,570,564,563,-1,568,3497,498,-1,566,567,3013,-1,501,3007,565,-1,564,3018,562,-1,560,512,561,-1,521,3486,558,-1,556,533,557,-1,552,549,490,-1,549,548,544,-1,546,3023,547,-1,545,491,482,-1,544,485,484,-1,542,4013,543,-1,535,537,2448,-1,4014,2975,4015,-1,321,557,533,-1,4016,531,3491,-1,2975,657,4015,-1,529,3041,528,-1,527,311,310,-1,525,585,584,-1,558,3044,3043,-1,516,2997,514,-1,506,611,504,-1,495,619,3011,-1,3047,503,3048,-1,564,596,3018,-1,2913,480,483,-1,485,2914,483,-1,484,480,482,-1,737,736,545,-1,478,479,4017,-1,2940,475,477,-1,467,4018,3476,-1,3472,579,2415,-1,465,3472,463,-1,462,3056,460,-1,579,3472,465,-1,4019,3049,2934,-1,455,242,244,-1,450,3069,448,-1,805,2843,4020,-1,3064,4021,3065,-1,3952,4022,4023,-1,444,1006,442,-1,1006,444,2806,-1,441,3080,439,-1,436,3084,437,-1,3081,4024,3458,-1,433,1029,409,-1,431,3088,429,-1,2782,426,428,-1,425,435,423,-1,420,976,421,-1,419,1005,414,-1,417,2743,415,-1,2744,412,414,-1,411,402,410,-1,409,2793,407,-1,406,2786,404,-1,401,403,408,-1,3565,398,400,-1,398,3565,348,-1,348,2824,398,-1,2823,2824,1039,-1,1038,350,349,-1,348,347,3092,-1,245,247,393,-1,265,268,389,-1,377,3094,3453,-1,384,386,3096,-1,382,3093,245,-1,380,3093,293,-1,296,273,272,-1,377,1018,375,-1,261,290,374,-1,373,882,371,-1,3452,368,370,-1,928,365,367,-1,363,3101,364,-1,361,4025,360,-1,359,4026,357,-1,356,360,355,-1,921,920,3103,-1,954,416,3106,-1,351,950,352,-1,346,4027,344,-1,343,4028,341,-1,338,340,4029,-1,3547,340,339,-1,334,447,332,-1,327,3034,328,-1,326,4030,324,-1,4031,329,4032,-1,325,3442,3029,-1,3117,320,3040,-1,330,331,3115,-1,311,3114,309,-1,303,304,307,-1,3120,3121,3123,-1,303,288,287,-1,877,2847,887,-1,3128,4033,1040,-1,289,287,379,-1,296,272,294,-1,3132,294,3138,-1,4034,266,3437,-1,4034,271,266,-1,3440,303,308,-1,293,292,381,-1,289,374,290,-1,288,293,286,-1,284,4035,285,-1,1020,285,4035,-1,1046,4036,1047,-1,274,374,275,-1,271,4034,272,-1,3437,266,268,-1,265,391,263,-1,264,299,265,-1,2756,2737,4037,-1,255,254,3435,-1,3142,258,252,-1,251,3143,3142,-1,2736,397,3434,-1,3434,3150,2736,-1,4038,4039,4040,-1,3470,455,454,-1,3470,3469,455,-1,238,3167,220,-1,235,4041,236,-1,232,234,216,-1,233,223,234,-1,230,4042,231,-1,226,228,4043,-1,223,3162,224,-1,221,236,222,-1,219,222,220,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getmand_Geo_5_877_coordIndex_15()
		{
			int[] value = {217,4044,215,-1,219,218,4045,-1,212,214,4046,-1,4047,4048,3426,-1,4047,4049,4048,-1,209,211,3174,-1,206,208,4050,-1,204,4051,205,-1,201,205,202,-1,198,200,4052,-1,196,3195,188,-1,4053,183,180,-1,4053,4054,183,-1,194,4055,195,-1,191,193,3197,-1,188,190,4056,-1,186,4057,187,-1,183,185,4058,-1,195,180,182,-1,177,179,3199,-1,171,173,4059,-1,168,170,3203,-1,167,4060,159,-1,164,3218,165,-1,161,163,4061,-1,158,160,3230,-1,3227,3406,3228,-1,3406,4062,3228,-1,153,3235,151,-1,148,150,4063,-1,145,3237,146,-1,144,4008,142,-1,140,4064,141,-1,137,3251,138,-1,134,136,127,-1,140,115,4065,-1,4065,4066,140,-1,3250,132,119,-1,4067,130,131,-1,127,136,128,-1,124,3254,125,-1,121,4068,122,-1,118,120,4069,-1,117,4065,115,-1,114,4070,112,-1,109,4071,110,-1,4072,4073,4074,-1,4072,4075,4073,-1,107,4076,108,-1,104,106,101,-1,101,106,102,-1,98,100,4077,-1,95,4078,96,-1,92,94,4079,-1,89,91,4080,-1,86,4081,87,-1,85,3300,83,-1,82,4082,80,-1,4083,76,75,-1,74,3340,75,-1,6,63,7,-1,70,72,4084,-1,67,4085,68,-1,64,66,3312,-1,63,4086,58,-1,60,62,4087,-1,57,59,4088,-1,45,56,3376,-1,52,54,4089,-1,51,47,49,-1,54,4090,4091,-1,4092,43,45,-1,3325,40,42,-1,38,3311,39,-1,4093,34,36,-1,33,4094,32,-1,26,28,3338,-1,17,3368,4095,-1,25,3347,23,-1,3349,3335,3350,-1,4096,3341,3352,-1,14,16,3334,-1,13,3367,11,-1,8,10,4097,-1,5,7,4098,-1,2,1,3,-1,2,4099,0,-1,4100,4101,4102,-1,4100,4103,4101,-1,4104,4105,4106,-1,4104,4107,4105,-1,801,4100,3973,-1,801,4108,4100,-1,846,4109,4104,-1,849,4109,846,-1,4110,3363,3362,-1,4110,4111,3363,-1,4112,4113,4114,-1,4112,4115,4113,-1,4116,4117,4118,-1,4116,4119,4117,-1,3363,4120,3364,-1,3363,4121,4120,-1,4117,4122,4123,-1,4117,4124,4122,-1,4120,4125,4126,-1,4120,4127,4125,-1,4114,4128,3493,-1,4114,4113,4128,-1,4129,4099,2,-1,4099,4129,4130,-1,4131,4132,4133,-1,4131,4134,4132,-1,4135,4136,4137,-1,4135,4138,4136,-1,4139,4140,4141,-1,4139,4142,4140,-1,4143,4135,4144,-1,4143,4145,4135,-1,4146,4147,4148,-1,4146,4139,4147,-1,4129,4,4149,-1,4,4129,2,-1,4150,4151,4152,-1,4153,4151,4150,-1,4154,167,4155,-1,4154,4060,167,-1,4153,4156,4157,-1,4156,4153,4158,-1,4159,4154,4110,-1,4159,4160,4154,-1,4161,4162,4121,-1,4161,4156,4162,-1,4163,4164,4165,-1,4163,10,4164,-1,4166,4167,2876,-1,4168,4167,4166,-1,4169,4170,4171,-1,4169,4172,4170,-1,3323,4173,4174,-1,4175,4173,3323,-1,4176,3354,3366,-1,4176,4177,3354,-1,4178,70,4179,-1,4178,4180,70,-1,65,10,4163,-1,4097,10,65,-1,4181,4085,4182,-1,4181,4183,4085,-1,4184,4185,4186,-1,4185,4184,4187,-1,4188,4189,4168,-1,4189,4188,4190,-1,3353,4191,3366,-1,4192,4191,3353,-1,4193,4194,4195,-1,4193,4196,4194,-1,4180,4197,4198,-1,4197,4180,4178,-1,4199,2874,4200,-1,2874,4199,4201,-1,4202,4191,4203,-1,4202,4204,4191,-1,4205,837,839,-1,837,4205,4206,-1,4207,4208,4209,-1,4207,4210,4208,-1,4211,4212,4213,-1,4214,4212,4211,-1,4215,4216,4217,-1,4215,4218,4216,-1,3351,4219,4220,-1,3270,4219,3351,-1,4221,77,18,-1,4222,77,4221,-1,4223,4224,4225,-1,4226,4224,4223,-1,4227,4228,4229,-1,4227,4230,4228,-1,4231,4232,4233,-1,4231,27,4232,-1,21,3347,3349,-1,3347,21,3345,-1,3352,3368,19,-1,3352,3341,3368,-1,13,21,20,-1,13,3345,21,-1,4222,78,77,-1,4222,4234,78,-1,17,4233,4235,-1,4233,17,4095,-1,4236,4237,4238,-1,4237,4236,4239,-1,4235,4232,4240,-1,4235,4233,4232,-1,4241,14,4218,-1,14,4241,4242,-1,4237,4219,4238,-1,4243,4219,4237,-1,4244,3341,4096,-1,4244,3370,3341,-1,12,4245,4246,-1,4245,12,4229,-1,2867,16,4247,-1,2867,3332,16,-1,4248,4249,4250,-1,4251,4249,4248,-1,4252,4253,4254,-1,4252,4225,4253,-1,4255,844,4256,-1,4255,845,844,-1,4257,33,31,-1,4257,4258,33,-1,4259,4260,4261,-1,4259,4262,4260,-1,4263,4264,4265,-1,4263,4266,4264,-1,4267,3361,3357,-1,4268,3361,4267,-1,3372,4269,3331,-1,3372,4270,4269,-1,4263,4271,4272,-1,4263,4265,4271,-1,4273,4266,4263,-1,4273,4274,4266,-1,4268,2865,3361,-1,2866,2865,4268,-1,4275,848,850,-1,848,4275,4276,-1,4270,4277,4278,-1,4277,4270,3372,-1,4279,4280,4281,-1,4279,4282,4280,-1,46,4283,4284,-1,46,48,4283,-1,47,3315,49,-1,47,46,3315,-1,3321,4285,4087,-1,3320,4285,3321,-1,4286,4287,4288,-1,4286,4289,4287,-1,54,4290,4089,-1,54,4091,4290,-1,3324,4291,4292,-1,3324,3326,4291,-1,4293,4294,4295,-1,4293,4296,4294,-1,4297,4298,4299,-1,4297,4300,4298,-1,4301,4302,4303,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getmand_Geo_5_877_coordIndex_16()
		{
			int[] value = {4302,4301,4304,-1,3322,4188,4305,-1,4306,4188,3322,-1,4307,4308,4309,-1,4307,4310,4308,-1,4311,4312,4313,-1,4311,4314,4312,-1,4285,4311,3374,-1,4315,4311,4285,-1,4316,4317,4318,-1,4316,4319,4317,-1,4320,40,3325,-1,4320,4321,40,-1,4322,4087,62,-1,4087,4322,3321,-1,4323,4286,4324,-1,4323,4325,4286,-1,3378,4279,4326,-1,3378,3318,4279,-1,4327,59,4328,-1,59,4327,34,-1,4329,4330,4331,-1,4329,4324,4330,-1,4332,4333,4334,-1,4332,4326,4333,-1,4335,3379,4328,-1,4335,3313,3379,-1,4336,4337,4338,-1,4337,4336,4339,-1,4340,4341,4342,-1,4341,4340,4343,-1,4344,4345,4346,-1,4345,4344,4347,-1,4312,4303,4302,-1,4312,4314,4303,-1,4348,4338,4349,-1,4348,4350,4338,-1,4351,4352,4353,-1,4352,4351,4342,-1,66,4346,3312,-1,66,4354,4346,-1,4174,44,3323,-1,4174,4355,44,-1,4177,4356,3354,-1,4177,4357,4356,-1,4358,4098,7,-1,4098,4358,4359,-1,4170,4302,4165,-1,4170,4312,4302,-1,4187,4360,4361,-1,4187,4362,4360,-1,4363,4364,4365,-1,4364,4363,4086,-1,4364,4366,4367,-1,4366,4364,73,-1,48,4368,4283,-1,48,35,4368,-1,4369,35,48,-1,4369,36,35,-1,4369,4370,36,-1,4369,4371,4370,-1,4369,4282,4371,-1,4372,4282,4369,-1,4372,4280,4282,-1,4372,4373,4280,-1,3377,4373,4372,-1,3377,4374,4373,-1,3377,4289,4374,-1,3377,4287,4289,-1,3377,4375,4287,-1,4376,4377,4378,-1,4376,90,4377,-1,4379,4380,4381,-1,4382,4380,4379,-1,4383,4384,4385,-1,4386,4384,4383,-1,4387,3381,3290,-1,3305,3381,4387,-1,4388,4389,4390,-1,4388,4391,4389,-1,4392,4393,4394,-1,4393,4392,4395,-1,3273,3335,25,-1,3335,3273,4396,-1,4396,4397,4398,-1,4397,4396,4399,-1,4400,4401,4402,-1,4401,4400,4403,-1,4404,4405,4406,-1,4404,4407,4405,-1,4408,4388,4409,-1,4408,4410,4388,-1,4234,4393,78,-1,4234,4411,4393,-1,4412,4378,4413,-1,4412,4376,4378,-1,4414,4380,4382,-1,4414,4415,4380,-1,104,4416,4417,-1,4418,4416,104,-1,4419,4420,4421,-1,4422,4420,4419,-1,4423,4424,4425,-1,4424,4423,4426,-1,3307,4407,4404,-1,3307,3306,4407,-1,4427,4428,4429,-1,4427,4430,4428,-1,3285,4431,3286,-1,3285,3383,4431,-1,3384,3298,3289,-1,3298,3384,3299,-1,4427,4432,4433,-1,4432,4427,4429,-1,4425,4434,4435,-1,4434,4425,4424,-1,4436,4404,4437,-1,4436,3307,4404,-1,4438,3289,3284,-1,4438,3296,3289,-1,3387,3286,3386,-1,3387,3285,3286,-1,4439,4081,86,-1,4439,4080,4081,-1,4401,4437,4440,-1,4401,4436,4437,-1,4433,4441,4442,-1,4441,4433,4432,-1,4435,4443,4444,-1,4443,4435,4434,-1,3288,4421,3282,-1,4421,3288,4419,-1,4445,3386,4446,-1,4445,3387,3386,-1,4447,4448,4449,-1,4448,4447,4450,-1,4442,4451,4452,-1,4451,4442,4441,-1,3281,4445,4453,-1,3281,95,4445,-1,4454,90,89,-1,4454,4377,90,-1,3283,4455,4456,-1,4457,4455,3283,-1,4453,4446,4458,-1,4453,4445,4446,-1,4459,4460,4461,-1,4460,4459,4462,-1,4463,4410,4408,-1,4463,4402,4410,-1,4452,4464,4465,-1,4464,4452,4451,-1,3279,4453,4466,-1,3279,3281,4453,-1,4377,3276,4467,-1,3276,4377,4454,-1,4468,4469,4470,-1,4469,4468,4471,-1,4472,4473,4474,-1,4473,4472,4475,-1,4476,4477,4478,-1,4476,4479,4477,-1,106,108,4480,-1,105,108,106,-1,4481,4482,4483,-1,4481,4484,4482,-1,3277,4485,3275,-1,4485,3277,3388,-1,4397,4486,4487,-1,4397,4488,4486,-1,4489,4490,4491,-1,4490,4489,4492,-1,4493,4494,4495,-1,4494,4493,4496,-1,4418,4415,4416,-1,4415,4418,4497,-1,4498,4483,4499,-1,4498,4481,4483,-1,3275,4500,4501,-1,4500,3275,4485,-1,4502,4503,4504,-1,4236,4503,4502,-1,4505,3272,4506,-1,3272,4505,3274,-1,4507,4508,4509,-1,4508,4507,4510,-1,4511,4512,4501,-1,4511,4513,4512,-1,3271,107,4514,-1,3271,4076,107,-1,4515,4499,4516,-1,4515,4498,4499,-1,3269,4236,4238,-1,3269,4503,4236,-1,4506,24,4517,-1,24,4506,3272,-1,4518,4519,4520,-1,4519,4518,4515,-1,4521,4513,4511,-1,4521,3343,4513,-1,4514,3390,3271,-1,3310,3390,4514,-1,4405,3305,3303,-1,4407,3305,4405,-1,4407,3306,3305,-1,109,4226,4071,-1,4224,4226,109,-1,4522,4523,4524,-1,4523,4522,4520,-1,4525,4526,4527,-1,4528,4526,4525,-1,136,4529,128,-1,136,4530,4529,-1,3258,3265,3267,-1,4531,3265,3258,-1,4532,122,4068,-1,4532,4533,122,-1,4534,4535,4533,-1,4534,4536,4535,-1,4069,4537,4538,-1,4069,4539,4537,-1,4540,3257,3256,-1,3257,4540,4541,-1,4542,4543,4544,-1,4543,4542,4545,-1,3260,4546,3393,-1,3260,4547,4546,-1,4548,4549,4550,-1,4548,4551,4549,-1,4552,3262,3394,-1,3262,4552,4553,-1,4554,4555,4556,-1,4554,4557,4555,-1,4558,4258,4559,-1,4558,33,4258,-1,4560,4561,4562,-1,4560,4563,4561,-1,4262,4564,4260,-1,4262,4565,4564,-1,4064,4566,4567,-1,4566,4064,140,-1,4566,4532,114,-1,4566,4568,4532,-1,4569,4570,3360,-1,4569,4571,4570,-1,4531,4560,3265,-1,4563,4560,4531,-1,3262,4572,126,-1,4572,3262,4573,-1,4561,4574,4529,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=17 */
		private int[] getmand_Geo_5_877_coordIndex_17()
		{
			int[] value = {4561,4556,4574,-1,4575,4576,4577,-1,4575,4550,4576,-1,3256,133,3255,-1,133,3256,3257,-1,4544,3397,4578,-1,4579,3397,4544,-1,4134,4577,4132,-1,4134,4575,4577,-1,4572,4580,4581,-1,4580,4572,4582,-1,4583,4132,4577,-1,4584,4132,4583,-1,121,3247,4585,-1,3247,121,3255,-1,3398,4579,3253,-1,3398,139,4579,-1,4581,4586,4587,-1,4586,4581,4580,-1,3398,3392,4588,-1,3392,3398,116,-1,130,4589,3248,-1,4589,130,4067,-1,4590,3247,3246,-1,4590,4585,3247,-1,4587,4146,4591,-1,4146,4587,4586,-1,4590,4592,112,-1,4593,4592,4590,-1,4594,3251,137,-1,4594,4595,3251,-1,3248,4596,4597,-1,4596,3248,4589,-1,4591,4148,4598,-1,4148,4591,4146,-1,4599,4600,3400,-1,4599,4558,4600,-1,4601,4602,4603,-1,4602,4601,4604,-1,4605,4606,4607,-1,4606,4605,4608,-1,4609,4610,4611,-1,4609,4612,4610,-1,4613,4614,4615,-1,4614,4613,4598,-1,4260,4559,4258,-1,4260,4564,4559,-1,4616,4264,4617,-1,4264,4616,4618,-1,3356,4619,3357,-1,3356,4620,4619,-1,4621,4269,4622,-1,4269,4621,4623,-1,4624,4625,4626,-1,4624,4627,4625,-1,4628,4629,4630,-1,4628,4631,4629,-1,4632,4633,4634,-1,4632,4635,4633,-1,4636,4627,4624,-1,4636,4630,4627,-1,3241,4637,3239,-1,4638,4637,3241,-1,4639,4640,3240,-1,4639,4641,4640,-1,4642,3241,3401,-1,4642,4643,3241,-1,4644,3206,3205,-1,4644,3208,3206,-1,4645,4646,4647,-1,4645,4648,4646,-1,4649,4650,4651,-1,4649,4647,4650,-1,4633,4652,4653,-1,4633,4654,4652,-1,4629,4651,4655,-1,4629,4649,4651,-1,4656,4657,4658,-1,4656,4659,4657,-1,4660,4658,4657,-1,4661,4658,4660,-1,4637,3402,4639,-1,4637,3188,3402,-1,4662,4663,4664,-1,4662,4665,4663,-1,4666,4667,4063,-1,4667,4666,4668,-1,4669,4670,4671,-1,4669,4672,4670,-1,4673,4662,4674,-1,4673,4675,4662,-1,149,4676,4677,-1,4676,149,148,-1,4678,4679,4680,-1,4678,4674,4679,-1,148,4681,4676,-1,4681,148,4682,-1,4683,4684,4685,-1,4684,4683,4686,-1,4687,4688,4689,-1,4688,4687,4690,-1,4689,4691,4692,-1,4691,4689,4688,-1,4693,4694,4695,-1,4694,4693,4696,-1,4697,4698,4699,-1,4698,4697,4685,-1,4700,4701,4702,-1,4700,4703,4701,-1,4704,4705,151,-1,4705,4704,4706,-1,4707,3404,4708,-1,3404,4707,4709,-1,4710,4711,4712,-1,4710,4713,4711,-1,4714,4715,4716,-1,4715,4714,4717,-1,4718,4719,4720,-1,4718,4712,4719,-1,4716,4721,4722,-1,4721,4716,4715,-1,156,4700,3226,-1,156,4723,4700,-1,152,4705,4724,-1,152,151,4705,-1,3232,3231,3233,-1,3231,3232,4725,-1,3233,3230,160,-1,3230,3233,3231,-1,4726,3225,4727,-1,3225,4726,4728,-1,3220,153,3222,-1,3220,3403,153,-1,4729,4722,4730,-1,4729,4731,4722,-1,4732,4733,4734,-1,4733,4732,4729,-1,3406,4735,3223,-1,4735,3406,3227,-1,3219,3222,3221,-1,3219,3220,3222,-1,4736,4737,4738,-1,4737,4736,4739,-1,4740,4741,4742,-1,4741,4740,4738,-1,4743,4744,4745,-1,4744,4743,4746,-1,3224,3216,3217,-1,3215,3216,3224,-1,4747,3221,4748,-1,4747,3219,3221,-1,4749,4750,4751,-1,4750,4749,3407,-1,4752,4753,4751,-1,4752,4754,4753,-1,3213,4755,4160,-1,3213,3409,4755,-1,4756,3408,4757,-1,4756,4758,3408,-1,4759,4760,4761,-1,4760,4759,4762,-1,4763,4764,4668,-1,4764,4763,4761,-1,4765,4766,4767,-1,4766,4765,4768,-1,4757,4769,4756,-1,4770,4769,4757,-1,4771,4772,4773,-1,4771,4774,4772,-1,4775,4776,4777,-1,4776,4775,4778,-1,4779,4780,4781,-1,4779,4782,4780,-1,4783,4784,4785,-1,4784,4783,4786,-1,4787,4788,4789,-1,4787,4790,4788,-1,4791,4787,3211,-1,4791,4792,4787,-1,4793,4794,4795,-1,4793,4796,4794,-1,4797,4798,4799,-1,4798,4797,4800,-1,4801,4802,4803,-1,4802,4801,4804,-1,4805,4806,4807,-1,4806,4805,4808,-1,3212,4809,3210,-1,4809,3212,4807,-1,4810,4811,4812,-1,4810,4813,4811,-1,4814,4815,3411,-1,4815,4814,4816,-1,4817,4818,4819,-1,4817,4820,4818,-1,4821,4817,4822,-1,4821,4823,4817,-1,4824,4825,3412,-1,4825,4824,4826,-1,4827,3209,3410,-1,4827,4828,3209,-1,4829,4830,4831,-1,4830,4829,4832,-1,4833,170,4834,-1,170,4833,3207,-1,4834,4059,4835,-1,4836,4059,4834,-1,4837,4838,4839,-1,4838,4837,4840,-1,4841,4648,4645,-1,4841,4830,4648,-1,168,4842,4843,-1,4842,168,3202,-1,4838,4844,4845,-1,4844,4838,4846,-1,4654,3204,4652,-1,4654,3205,3204,-1,4842,4847,4848,-1,4847,4842,4849,-1,171,4683,4850,-1,4683,171,4851,-1,4852,4687,4853,-1,4687,4852,4845,-1,4854,4855,4856,-1,4854,4857,4855,-1,143,4858,144,-1,4858,143,4859,-1,4860,4861,4862,-1,4863,4861,4860,-1,4864,4865,4866,-1,4864,4863,4865,-1,4867,4868,4869,-1,4868,4867,4870,-1,4871,4872,4873,-1,4871,4874,4872,-1,4875,4876,4877,-1,4878,4876,4875,-1,4879,4880,4869,-1,4879,4881,4880,-1,4882,4883,4884,-1,4873,4883,4882,-1,4885,4886,4887,-1,4885,4888,4886,-1,4869,4889,4867,-1,4889,4869,4880,-1,2947,4890,4891,-1,4892,4890,2947,-1,4893,4894,4895,-1,4893,4896,4894,-1,4897,4898,4899,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=18 */
		private int[] getmand_Geo_5_877_coordIndex_18()
		{
			int[] value = {4897,4900,4898,-1,4901,4902,4903,-1,4902,4901,4904,-1,4854,4905,4906,-1,4854,4907,4905,-1,4908,4909,3994,-1,4909,4908,4903,-1,4910,4911,4912,-1,4910,4895,4911,-1,2949,4913,3514,-1,2949,4897,4913,-1,4914,4058,185,-1,4914,4915,4058,-1,179,4916,3199,-1,4917,4916,179,-1,4918,4919,4920,-1,4921,4919,4918,-1,4922,4923,4924,-1,4922,4925,4923,-1,4926,4927,4928,-1,4927,4926,4918,-1,3201,190,3197,-1,190,3201,4924,-1,187,4929,3198,-1,187,4930,4929,-1,4931,4932,4927,-1,4933,4932,4931,-1,177,4934,4935,-1,4934,177,3200,-1,4936,4053,4055,-1,4936,4052,4053,-1,4937,4057,4938,-1,4937,4939,4057,-1,4932,4940,4941,-1,4942,4940,4932,-1,4934,4943,4944,-1,4943,4934,192,-1,4945,4946,4947,-1,4946,4945,4944,-1,3196,3192,4938,-1,3193,3192,3196,-1,4948,4949,4942,-1,4950,4949,4948,-1,3414,4951,3195,-1,3414,4952,4951,-1,4953,4954,4952,-1,4953,203,4954,-1,4955,4956,4957,-1,4956,4955,4947,-1,4958,3193,199,-1,4958,3191,3193,-1,4959,4960,4961,-1,4959,4950,4960,-1,4962,3194,4963,-1,4962,3414,3194,-1,4964,4962,4965,-1,4964,4953,4962,-1,3191,3236,3190,-1,3236,3191,4958,-1,4961,4966,4959,-1,4967,4966,4961,-1,4968,4966,4969,-1,4968,4970,4966,-1,4964,4971,4972,-1,4971,4964,4965,-1,3189,4973,4974,-1,3416,4973,3189,-1,4975,4976,4977,-1,4975,4969,4976,-1,4978,4979,4971,-1,4980,4979,4978,-1,4981,4982,4983,-1,4982,4981,4051,-1,4984,4862,4861,-1,4984,4980,4862,-1,4982,4985,4859,-1,4985,4982,4986,-1,4987,3417,3175,-1,4987,4988,3417,-1,4989,4990,3421,-1,4990,4989,4991,-1,3172,4992,3418,-1,3172,4993,4992,-1,4994,3418,4992,-1,4995,3418,4994,-1,4995,3185,3418,-1,4995,4996,3185,-1,4991,4996,4995,-1,4991,4997,4996,-1,4989,4997,4991,-1,4989,208,4997,-1,4998,208,4989,-1,4998,4050,208,-1,3186,4050,4998,-1,3417,4050,3186,-1,4988,4050,3417,-1,4988,4999,4050,-1,209,3177,5000,-1,209,3174,3177,-1,5001,210,5002,-1,5003,210,5001,-1,5004,3424,5005,-1,5004,3425,3424,-1,5004,5006,5007,-1,5004,5008,5006,-1,3182,5009,3183,-1,5009,3182,5010,-1,3171,5011,5012,-1,5011,3171,5013,-1,5014,5015,5016,-1,5015,5014,5017,-1,5018,212,5019,-1,212,5018,5020,-1,5021,212,4046,-1,5021,5019,212,-1,5022,5023,5024,-1,5022,3423,5023,-1,5025,5026,5027,-1,5025,5028,5026,-1,5029,4884,5030,-1,5029,4882,4884,-1,5031,4047,5032,-1,5031,4049,4047,-1,5029,5033,5034,-1,5029,5035,5033,-1,5036,3181,5037,-1,5036,3179,3181,-1,5038,5039,5040,-1,5038,213,5039,-1,3420,5041,5042,-1,3420,3179,5041,-1,4887,5043,5044,-1,5043,4887,4886,-1,5045,5043,5046,-1,5043,5045,5037,-1,3422,4993,3172,-1,3422,5047,4993,-1,3419,3421,4990,-1,3419,3176,3421,-1,5048,3175,211,-1,5048,4987,3175,-1,5049,207,5008,-1,5049,5050,207,-1,4048,3424,3426,-1,4048,5051,3424,-1,5016,5009,5052,-1,5016,5015,5009,-1,5053,5020,5018,-1,5020,5053,5054,-1,5001,5055,5056,-1,5057,5055,5001,-1,4876,5058,5059,-1,4876,5060,5058,-1,5061,5062,5063,-1,5061,5064,5062,-1,5065,5066,5067,-1,5065,5068,5066,-1,5069,5070,5071,-1,5070,5069,5072,-1,3429,5073,5074,-1,5073,3429,3157,-1,5075,5076,5077,-1,5075,3160,5076,-1,5078,4043,228,-1,4043,5078,5079,-1,230,3166,3158,-1,3166,230,229,-1,5080,5081,5082,-1,5080,5083,5081,-1,5084,5085,5086,-1,5087,5085,5084,-1,5088,232,5089,-1,5088,233,232,-1,5090,5072,5091,-1,5090,5092,5072,-1,5093,5082,5081,-1,5082,5093,5063,-1,215,5089,232,-1,5089,215,5094,-1,5095,5096,5097,-1,5098,5096,5095,-1,5099,5100,5101,-1,5099,5102,5100,-1,5103,5104,4907,-1,5105,5104,5103,-1,5106,5107,4896,-1,5106,5108,5107,-1,5100,5109,5110,-1,5100,5105,5109,-1,5111,5112,5108,-1,5113,5112,5111,-1,5114,5115,5110,-1,5116,5115,5114,-1,5117,5118,5113,-1,5119,5118,5117,-1,5120,5121,5122,-1,5121,5120,5123,-1,5124,5125,5126,-1,5125,5124,5127,-1,5128,5129,5122,-1,5129,5128,5130,-1,5131,5132,5133,-1,5132,5131,5134,-1,5135,5136,5137,-1,5136,5135,5138,-1,5139,5120,5140,-1,5139,5133,5120,-1,3165,5141,3163,-1,3165,5142,5141,-1,3160,5143,5076,-1,3160,3427,5143,-1,3159,5078,5144,-1,3158,5078,3159,-1,5080,5074,5073,-1,5080,5145,5074,-1,5146,3156,5147,-1,3156,5146,3157,-1,5148,3163,5141,-1,5148,5149,3163,-1,3427,5150,5143,-1,5151,5150,3427,-1,5152,5144,5153,-1,5152,3159,5144,-1,3152,5152,5154,-1,3152,3430,5152,-1,5128,5147,3156,-1,5128,5155,5147,-1,5156,5148,5124,-1,5156,5149,5148,-1,5151,5157,5150,-1,5158,5157,5151,-1,5154,5153,5159,-1,5154,5152,5153,-1,3152,5118,5119,-1,5118,3152,5154,-1,5160,5099,5161,-1,5162,5099,5160,-1,5163,3151,3059,-1,5164,3151,5163,-1,5165,451,3147,-1,5165,452,451,-1,4003,3466,607,-1,4003,3062,3466,-1,5166,5167,5168,-1,5166,5169,5167,-1,5170,2852,5171,-1,5170,5172,2852,-1,5173,2853,2851,-1,2853,5173,3145,-1,2734,3121,3120,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=19 */
		private int[] getmand_Geo_5_877_coordIndex_19()
		{
			int[] value = {2734,1049,3121,-1,397,3144,3434,-1,397,248,3144,-1,3435,3436,258,-1,3435,254,3436,-1,1046,1019,5174,-1,1045,1019,1046,-1,3463,4036,3134,-1,3463,1047,4036,-1,279,3133,270,-1,279,278,3133,-1,250,380,381,-1,250,252,380,-1,304,3122,307,-1,3130,3122,304,-1,886,915,914,-1,915,886,909,-1,3435,3118,255,-1,3143,3118,3435,-1,2734,2833,913,-1,2734,3441,2833,-1,2815,305,3124,-1,3118,305,2815,-1,940,241,240,-1,940,939,241,-1,3116,314,313,-1,529,314,3116,-1,3506,3034,3032,-1,3506,328,3034,-1,3107,5175,3445,-1,5175,3107,5176,-1,5177,3102,3448,-1,5177,5178,3102,-1,2802,3098,2803,-1,5179,3098,2802,-1,926,3097,5180,-1,925,3097,926,-1,5181,3095,2761,-1,3095,5181,3096,-1,395,2738,396,-1,2738,395,5182,-1,5183,950,5184,-1,5183,249,950,-1,342,5185,5186,-1,5185,342,341,-1,2839,906,908,-1,2839,2838,906,-1,5187,3956,3940,-1,3956,5187,3955,-1,411,403,402,-1,411,2788,403,-1,425,986,434,-1,986,425,2776,-1,334,5188,446,-1,334,3078,5188,-1,3458,3080,438,-1,3458,439,3080,-1,4024,439,3458,-1,4024,440,439,-1,5189,3460,912,-1,5190,3460,5189,-1,5191,5192,5193,-1,5194,5192,5191,-1,5195,3462,3461,-1,5195,5196,3462,-1,903,5197,3958,-1,4021,5197,903,-1,3943,5198,5199,-1,1020,5198,3943,-1,2812,3557,2811,-1,2812,2760,3557,-1,5200,3077,5201,-1,5200,5202,3077,-1,1030,2760,2812,-1,1030,3556,2760,-1,5203,5204,5205,-1,5206,5204,5203,-1,2920,3069,450,-1,3069,2920,3067,-1,1035,945,3564,-1,945,1035,2817,-1,3466,5207,5208,-1,2995,5207,3466,-1,458,606,2992,-1,458,3471,606,-1,5209,453,452,-1,453,5209,5210,-1,5211,5212,5213,-1,5214,5212,5211,-1,3058,464,463,-1,3058,3499,464,-1,3473,5211,579,-1,5211,3473,3474,-1,3005,3475,3501,-1,3005,462,3475,-1,3054,462,3005,-1,3476,5215,5216,-1,5215,3476,4018,-1,5217,5218,5219,-1,5217,5215,5218,-1,5220,5221,3504,-1,5220,5222,5221,-1,3515,473,5223,-1,3051,473,3515,-1,545,486,488,-1,545,736,486,-1,5224,5225,5226,-1,5224,5227,5225,-1,3006,503,3046,-1,3006,501,503,-1,5228,5229,5230,-1,5231,5229,5228,-1,4016,3041,2944,-1,3041,4016,5232,-1,2944,531,4016,-1,531,2944,532,-1,5233,5234,5235,-1,521,5234,5233,-1,601,3038,3037,-1,5236,3038,601,-1,469,4031,669,-1,469,3036,4031,-1,5237,555,5238,-1,555,5237,673,-1,1633,670,3492,-1,670,1633,1630,-1,534,674,5239,-1,534,533,674,-1,5240,3030,524,-1,5240,624,3030,-1,551,510,552,-1,551,511,510,-1,4128,3026,3493,-1,3028,3026,4128,-1,4017,4006,5241,-1,4006,4017,479,-1,5242,5243,5244,-1,5245,5243,5242,-1,3020,3496,586,-1,3019,3496,3020,-1,559,597,5244,-1,559,596,597,-1,5246,3008,5247,-1,3008,5246,5248,-1,3488,5249,3487,-1,5250,5249,3488,-1,5251,3498,2999,-1,5252,3498,5251,-1,5253,3046,3485,-1,3046,5253,3006,-1,3496,587,3013,-1,587,3496,588,-1,3497,5254,3019,-1,5255,5254,3497,-1,3020,578,498,-1,3020,3487,578,-1,576,5256,5257,-1,576,5258,5256,-1,4011,5259,572,-1,4011,4626,5259,-1,3014,4008,144,-1,4008,3014,587,-1,523,5240,524,-1,566,5240,523,-1,5260,5210,5207,-1,5260,3503,5210,-1,5261,5262,5263,-1,5262,5261,595,-1,3001,5264,3502,-1,5265,5264,3001,-1,4007,3005,3004,-1,4007,580,3005,-1,5263,5266,5267,-1,5266,5263,5262,-1,3004,591,4007,-1,591,3004,594,-1,5268,520,522,-1,5247,520,5268,-1,3494,5269,5270,-1,3494,3024,5269,-1,5271,5248,5246,-1,4695,5248,5271,-1,5272,5252,4691,-1,5272,3498,5252,-1,4699,5273,3016,-1,4698,5273,4699,-1,493,5274,5275,-1,511,5274,493,-1,5276,5277,5278,-1,3148,5277,5276,-1,3146,5279,3484,-1,3146,5280,5279,-1,3037,514,601,-1,514,3037,5281,-1,5229,5282,5226,-1,5282,5229,5283,-1,3147,4005,5165,-1,3484,4005,3147,-1,3507,660,5284,-1,660,3507,4001,-1,5285,624,5240,-1,624,5285,625,-1,5286,621,4000,-1,621,5286,2960,-1,5287,661,5288,-1,661,5287,2981,-1,5289,2954,2980,-1,5289,5290,2954,-1,2969,657,2975,-1,647,657,2969,-1,531,622,3491,-1,531,530,622,-1,5291,3508,3996,-1,5291,5292,3508,-1,2943,5293,5294,-1,2943,3509,5293,-1,1751,612,2393,-1,1751,651,612,-1,5232,636,4014,-1,2963,636,5232,-1,641,2978,656,-1,635,2978,641,-1,640,635,641,-1,640,2980,635,-1,5295,5286,626,-1,5286,5295,5296,-1,4864,2959,2961,-1,5297,2959,4864,-1,624,526,3030,-1,526,624,3999,-1,4867,630,629,-1,4889,630,4867,-1,5298,4874,2955,-1,4874,5298,4872,-1,658,4877,659,-1,4877,658,4875,-1,5299,3511,2982,-1,5299,5300,3511,-1,631,4889,5301,-1,4889,631,630,-1,650,3995,667,-1,650,649,3995,-1,2950,5302,653,-1,3514,5302,2950,-1,5303,5304,5305,-1,5303,4892,5304,-1,2974,652,642,-1,652,2974,2972,-1,645,2946,2948,-1,2946,645,2971,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=20 */
		private int[] getmand_Geo_5_877_coordIndex_20()
		{
			int[] value = {4857,3995,664,-1,4857,5306,3995,-1,2973,2974,3489,-1,2973,2972,2974,-1,5289,2976,5307,-1,5289,3997,2976,-1,605,5207,2995,-1,605,5260,5207,-1,331,3490,3115,-1,3490,331,2945,-1,3505,5308,2991,-1,5308,3505,5309,-1,5237,3113,2939,-1,5237,5239,3113,-1,2937,478,5310,-1,478,2937,5223,-1,3504,458,2992,-1,5221,458,3504,-1,5221,456,458,-1,608,5311,4019,-1,608,607,5311,-1,3519,5312,2931,-1,3519,5313,5312,-1,5314,467,3477,-1,3520,467,5314,-1,5315,5316,5317,-1,5318,5316,5315,-1,5318,899,2916,-1,899,5318,5319,-1,2997,5219,2996,-1,2997,5217,5219,-1,5320,2881,2926,-1,688,2881,5320,-1,2922,5321,2885,-1,2922,5322,5321,-1,4040,5323,5324,-1,5323,4040,5168,-1,5325,5326,5321,-1,5325,5327,5326,-1,5328,4039,4038,-1,5328,5329,4039,-1,5330,5331,5332,-1,5330,5280,5331,-1,5333,5225,5227,-1,5225,5333,5278,-1,854,817,856,-1,699,817,854,-1,734,2918,2845,-1,2918,734,733,-1,5334,2929,898,-1,5334,5335,2929,-1,5336,5337,5338,-1,5337,5336,730,-1,2889,795,2887,-1,796,795,2889,-1,2911,679,2927,-1,679,2911,745,-1,5339,5340,5341,-1,5339,2896,5340,-1,715,2919,701,-1,2919,715,714,-1,5342,3521,5343,-1,3521,5342,600,-1,799,5344,3974,-1,799,2915,5344,-1,690,3981,2924,-1,690,2923,3981,-1,2880,688,3991,-1,2881,688,2880,-1,5345,5346,5171,-1,5345,5347,5346,-1,5348,873,2906,-1,5348,5349,873,-1,5350,5351,5352,-1,5353,5351,5350,-1,2908,3970,5354,-1,2908,813,3970,-1,5355,758,2878,-1,5355,3980,758,-1,5356,5350,5357,-1,5356,5353,5350,-1,820,5358,3535,-1,2907,5358,820,-1,810,3989,3971,-1,810,5359,3989,-1,5360,5361,5362,-1,5363,5361,5360,-1,5364,5365,5366,-1,3523,5365,5364,-1,5367,3533,868,-1,5368,3533,5367,-1,5369,2858,818,-1,5369,5370,2858,-1,808,5371,5372,-1,5373,5371,808,-1,2899,5374,2900,-1,2899,5375,5374,-1,5376,5371,5377,-1,5376,3977,5371,-1,726,5378,5379,-1,725,5378,726,-1,5380,3530,5381,-1,3530,5380,2888,-1,5382,5381,3530,-1,5383,5381,5382,-1,799,790,483,-1,798,790,799,-1,5384,4122,4677,-1,5384,5385,4122,-1,5381,4125,5386,-1,5381,5383,4125,-1,5340,2895,728,-1,5340,2896,2895,-1,5335,2930,2929,-1,5387,2930,5335,-1,3985,5388,3986,-1,5388,3985,5389,-1,3986,5387,5335,-1,5388,5387,3986,-1,5224,4038,5390,-1,5391,4038,5224,-1,691,5364,689,-1,3988,5364,691,-1,866,5392,5393,-1,5394,5392,866,-1,3962,5393,815,-1,3962,5367,5393,-1,2910,745,2911,-1,2910,746,745,-1,5395,2862,5396,-1,2863,2862,5395,-1,3524,2883,735,-1,3524,2882,2883,-1,827,4200,2874,-1,4200,827,841,-1,5397,4212,5398,-1,4212,5397,5399,-1,5400,5401,5402,-1,5401,5400,5403,-1,5404,4210,4207,-1,5404,5405,4210,-1,5406,4195,5407,-1,4195,5406,4193,-1,4198,5408,5409,-1,4197,5408,4198,-1,5410,5405,5404,-1,5410,5411,5405,-1,5408,756,3980,-1,5412,756,5408,-1,3979,3537,759,-1,5407,3537,3979,-1,823,840,754,-1,823,833,840,-1,5413,5414,5398,-1,5413,5415,5414,-1,5416,5417,5354,-1,5417,5416,5402,-1,5404,5418,5410,-1,5418,5404,5419,-1,5420,5368,5421,-1,5420,5422,5368,-1,5369,3344,4246,-1,5369,773,3344,-1,3333,2869,3533,-1,3332,2869,3333,-1,4249,762,5423,-1,4249,767,762,-1,780,4252,771,-1,4252,780,5424,-1,5425,5426,5377,-1,5426,5425,4273,-1,3975,5427,5428,-1,3975,787,5427,-1,701,3987,715,-1,3987,701,704,-1,719,721,723,-1,719,718,721,-1,688,763,2904,-1,688,5320,763,-1,5429,5430,5431,-1,5429,5362,5430,-1,2850,871,2848,-1,2850,872,871,-1,692,5432,5433,-1,692,689,5432,-1,880,2818,883,-1,2817,2818,880,-1,373,893,874,-1,373,2855,893,-1,3961,5434,2855,-1,3961,5435,5434,-1,853,3091,5436,-1,3091,853,3090,-1,5349,882,873,-1,876,882,5349,-1,5203,2844,3983,-1,2845,2844,5203,-1,889,892,5437,-1,889,890,892,-1,3068,732,734,-1,862,732,3068,-1,5438,3984,5439,-1,5438,3985,3984,-1,5205,2845,5203,-1,5205,734,2845,-1,5440,5362,5429,-1,5362,5440,5360,-1,5343,5441,5342,-1,5441,5343,5442,-1,5384,4676,5443,-1,5384,4677,4676,-1,5444,897,5445,-1,897,5444,898,-1,5446,4021,3064,-1,5446,5197,4021,-1,2854,901,900,-1,901,2854,3432,-1,5447,2836,2835,-1,5448,2836,5447,-1,269,3538,372,-1,3133,3538,269,-1,3133,281,3538,-1,5449,3094,5450,-1,5449,3453,3094,-1,3443,339,3109,-1,339,3443,3547,-1,5451,5452,5453,-1,5452,5451,5454,-1,3084,5455,5456,-1,3084,3083,5455,-1,5457,3073,3075,-1,5457,5458,3073,-1,5459,5460,5461,-1,5462,5460,5459,-1,5463,5464,5465,-1,5463,5466,5464,-1,5467,5468,5469,-1,5470,5468,5467,-1,921,5471,5472,-1,5471,921,3954,-1,3560,5473,5474,-1,5473,3560,5475,-1,1023,3541,2825,-1,1023,5456,3541,-1,3956,335,5476,-1,3956,3543,335,-1,5477,5452,5478,-1,5477,5453,5452,-1,5466,4026,5464,-1,5466,357,4026,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=21 */
		private int[] getmand_Geo_5_877_coordIndex_21()
		{
			int[] value = {3105,2829,2828,-1,2829,3105,5479,-1,932,2742,930,-1,932,3545,2742,-1,3542,3955,5480,-1,3542,3543,3955,-1,936,3940,937,-1,936,5187,3940,-1,369,2740,2739,-1,369,367,2740,-1,5481,2738,5482,-1,5481,2739,2738,-1,356,5461,361,-1,356,5459,5461,-1,3444,5177,3443,-1,3444,358,5177,-1,2832,3104,3942,-1,5179,3104,2832,-1,5456,1022,3084,-1,5456,1023,1022,-1,3563,2809,2808,-1,3563,5483,2809,-1,2807,5484,918,-1,5484,2807,965,-1,3953,5485,2798,-1,5485,3953,5486,-1,2831,5487,5488,-1,2830,5487,2831,-1,5489,5454,5490,-1,5489,5452,5454,-1,3098,5491,3099,-1,3098,3957,5491,-1,2794,918,5484,-1,2794,1031,918,-1,1029,2793,409,-1,1029,2791,2793,-1,406,3455,5492,-1,3455,406,405,-1,2772,995,990,-1,995,2772,996,-1,2784,428,2785,-1,5493,428,2784,-1,5494,2774,5495,-1,5494,5496,2774,-1,3947,3551,3550,-1,3551,3947,1000,-1,1033,5497,5498,-1,5497,1033,5499,-1,1001,982,2779,-1,1001,2745,982,-1,3944,991,5500,-1,991,3944,5501,-1,5502,2749,3945,-1,2749,5502,2750,-1,1018,5503,2810,-1,1018,5449,5503,-1,5449,1018,3453,-1,5504,2792,5505,-1,5506,2792,5504,-1,3550,3553,3947,-1,3550,2790,3553,-1,2778,5507,2779,-1,2778,5508,5507,-1,435,5509,423,-1,435,429,5509,-1,5494,5504,5510,-1,5494,5511,5504,-1,5512,5513,5514,-1,5512,5515,5513,-1,2757,2797,2758,-1,5516,2797,2757,-1,5517,5518,4024,-1,5519,5518,5517,-1,1016,5483,960,-1,1016,5181,5483,-1,5520,5521,5522,-1,5520,5523,5521,-1,5524,5520,5525,-1,5520,5524,5526,-1,5525,5522,5174,-1,5525,5520,5522,-1,3136,5198,3137,-1,3136,5527,5198,-1,5193,5528,5191,-1,5193,1015,5528,-1,5529,5530,3112,-1,5529,5531,5530,-1,2754,3561,2755,-1,2754,3562,3561,-1,1027,3076,445,-1,1027,2752,3076,-1,969,5532,3557,-1,969,2797,5532,-1,2799,5485,5200,-1,2799,2798,5485,-1,999,2770,1000,-1,2770,999,3949,-1,957,5503,5533,-1,957,2810,5503,-1,3947,5534,998,-1,5534,3947,3553,-1,998,2750,5502,-1,2750,998,5534,-1,423,2784,421,-1,423,5509,2784,-1,2776,424,2777,-1,425,424,2776,-1,2778,2766,5508,-1,2778,981,2766,-1,2751,2768,1003,-1,2768,2751,2775,-1,5535,353,5536,-1,5535,354,353,-1,359,346,4025,-1,359,3108,346,-1,3101,2742,364,-1,5537,2742,3101,-1,924,3545,932,-1,3545,924,927,-1,948,5182,395,-1,3540,5182,948,-1,5538,3539,5539,-1,5538,3540,3539,-1,3452,927,924,-1,927,3452,925,-1,5183,4037,240,-1,4037,5183,5540,-1,2730,5541,2731,-1,2730,5542,5541,-1,5543,5544,5545,-1,5543,5546,5544,-1,2297,5541,5547,-1,5548,5541,2297,-1,2253,5544,5549,-1,3739,5544,2253,-1,5550,5551,3935,-1,5550,5552,5551,-1,5553,5554,5555,-1,5553,5556,5554,-1,5557,5558,5559,-1,5558,5557,5560,-1,5561,5550,5562,-1,5561,5563,5550,-1,5564,5558,5565,-1,5564,2630,5558,-1,5566,5567,5568,-1,5566,5561,5567,-1,5569,5570,5571,-1,5569,3936,5570,-1,5572,5573,5574,-1,5572,5575,5573,-1,5576,5577,5578,-1,5576,5579,5577,-1,5573,5580,5581,-1,5573,5582,5580,-1,5583,5584,5585,-1,5583,5586,5584,-1,5581,5587,5588,-1,5581,5589,5587,-1,5584,5590,5591,-1,5584,5592,5590,-1,5546,5593,5594,-1,5546,5590,5593,-1,5595,5596,5597,-1,5595,5598,5596,-1,3610,5599,5600,-1,5599,3610,5601,-1,5602,5603,5604,-1,5602,5605,5603,-1,5606,5601,5607,-1,5551,5601,5606,-1,5603,5563,5608,-1,5603,5609,5563,-1,1924,5610,1925,-1,5610,1924,5611,-1,5612,5613,2695,-1,5612,5614,5613,-1,5615,5616,1928,-1,5615,5617,5616,-1,5618,2705,5611,-1,2705,5618,5619,-1,5620,5621,5622,-1,5621,5620,5623,-1,5624,3567,5625,-1,5624,2727,3567,-1,5626,1114,5627,-1,2677,1114,5626,-1,5628,5629,5630,-1,5628,5631,5629,-1,5632,5633,5634,-1,5632,5635,5633,-1,5636,3567,5637,-1,5625,3567,5636,-1,5638,5612,5639,-1,5612,5638,5614,-1,5620,5640,5641,-1,5620,5642,5640,-1,5643,5644,5645,-1,5646,5644,5643,-1,5647,5627,5648,-1,5626,5627,5647,-1,5630,2267,2270,-1,5630,5629,2267,-1,5634,5649,5650,-1,5634,5633,5649,-1,5651,5637,2266,-1,5636,5637,5651,-1,5652,5653,5654,-1,5652,5655,5653,-1,5656,5614,5638,-1,5614,5656,1920,-1,1079,5657,5658,-1,1079,3569,5657,-1,5659,5660,5661,-1,5660,5659,5662,-1,5663,5664,5665,-1,5663,5666,5664,-1,5667,5668,5669,-1,5668,5667,5670,-1,5671,1073,2724,-1,5671,5672,1073,-1,5673,1118,2718,-1,5673,5674,1118,-1,1068,1078,1077,-1,1078,1068,1120,-1,1075,1060,1059,-1,1060,1075,2715,-1,1071,5675,1072,-1,1071,5676,5675,-1,5677,5678,5679,-1,5680,5678,5677,-1,5681,5665,5664,-1,5681,5682,5665,-1,5683,1066,1162,-1,5683,5684,1066,-1,5657,5685,5686,-1,5679,5685,5657,-1,1056,5687,1167,-1,5687,1056,5662,-1,1062,5682,2719,-1,5665,5682,1062,-1,5688,5689,5658,-1,5688,5690,5689,-1,5691,5692,3932,-1,5691,3808,5692,-1,5693,5661,5660,-1,5661,5693,5694,-1,5695,5696,5697,-1,5695,5698,5696,-1,2257,5699,5700,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=22 */
		private int[] getmand_Geo_5_877_coordIndex_22()
		{
			int[] value = {5701,5699,2257,-1,5702,1052,5703,-1,5702,2732,1052,-1,5704,3927,1084,-1,3927,5704,5705,-1,5706,5707,5703,-1,5708,5707,5706,-1,5709,5710,5711,-1,5712,5710,5709,-1,5713,5714,5715,-1,5716,5714,5713,-1,5717,5718,5719,-1,5717,1085,5718,-1,5720,5721,5722,-1,5720,5723,5721,-1,1934,5724,5725,-1,5724,1934,5726,-1,5715,2251,5713,-1,5715,2252,2251,-1,3571,1083,1939,-1,1084,1083,3571,-1,5727,5728,5729,-1,5728,5727,5730,-1,1104,2710,2709,-1,5731,2710,1104,-1,5732,5733,5734,-1,5732,5735,5733,-1,1108,2693,5736,-1,1108,1107,2693,-1,5737,5738,5739,-1,5737,5740,5738,-1,5741,5742,2689,-1,5741,5743,5742,-1,2703,5744,5745,-1,3575,5744,2703,-1,5746,5747,5748,-1,5746,5749,5747,-1,1098,5750,1099,-1,5750,1098,5751,-1,5752,5753,5754,-1,1100,5753,5752,-1,2694,2700,5755,-1,2700,2694,3576,-1,2696,3576,2694,-1,3576,2696,5756,-1,5736,2692,5757,-1,5736,2693,2692,-1,1102,5758,5759,-1,1102,5760,5758,-1,5761,1093,1092,-1,1093,5761,5758,-1,5748,5762,5763,-1,5748,5747,5762,-1,1095,5764,1096,-1,1095,5765,5764,-1,5766,5767,5768,-1,5769,5767,5766,-1,5770,5742,5739,-1,5742,5770,5771,-1,5727,5772,5773,-1,5727,5774,5772,-1,5735,5775,5733,-1,5735,1106,5775,-1,5776,3581,5771,-1,3581,5776,5777,-1,5778,5779,5780,-1,5778,5773,5779,-1,1105,2682,5781,-1,1105,2686,2682,-1,5777,2690,3581,-1,2690,5777,2700,-1,5782,5783,5784,-1,5785,5783,5782,-1,5786,5787,5788,-1,5789,5787,5786,-1,1100,5759,5753,-1,1100,1102,5759,-1,5790,2678,5791,-1,5790,5792,2678,-1,5793,5794,5795,-1,5784,5794,5793,-1,5788,2680,1112,-1,5788,5796,2680,-1,5797,5756,2696,-1,5757,5756,5797,-1,5798,5622,5621,-1,5798,5799,5622,-1,5800,2727,5624,-1,5800,5801,2727,-1,2684,5802,5803,-1,2683,5802,2684,-1,5632,2678,5792,-1,2678,5632,2679,-1,5804,5795,5805,-1,5793,5795,5804,-1,2675,2684,5806,-1,2674,2684,2675,-1,5807,2696,3580,-1,5797,2696,5807,-1,5654,5808,5652,-1,5806,5808,5654,-1,5809,5810,5811,-1,5812,5810,5809,-1,5813,5814,5815,-1,5813,5816,5814,-1,1146,5817,5818,-1,1146,5819,5817,-1,5820,5821,5822,-1,5820,1158,5821,-1,5823,1128,5824,-1,1129,1128,5823,-1,5825,5826,5827,-1,5828,5826,5825,-1,1123,5829,5830,-1,5829,1123,1122,-1,5682,5831,2719,-1,5831,5682,5832,-1,5833,5834,5835,-1,5836,5834,5833,-1,5823,3586,3588,-1,5823,5837,3586,-1,5825,5838,5839,-1,5825,5840,5838,-1,5811,5841,5809,-1,5811,5842,5841,-1,5814,5843,5815,-1,5814,5844,5843,-1,5845,2716,2715,-1,5845,5846,2716,-1,5847,2661,3596,-1,2661,5847,5848,-1,5849,3591,5850,-1,3591,5849,3589,-1,5851,5852,5853,-1,3598,5852,5851,-1,5854,1147,5855,-1,5854,3917,1147,-1,5856,5857,5858,-1,5856,5859,5857,-1,5860,5861,5862,-1,5863,5861,5860,-1,5864,5865,5866,-1,5867,5865,5864,-1,1132,3593,5868,-1,1132,1131,3593,-1,2666,2671,5869,-1,1138,2671,2666,-1,5870,5871,5872,-1,5870,5873,5871,-1,5874,5875,5876,-1,5877,5875,5874,-1,5878,5879,5880,-1,5881,5879,5878,-1,5882,5883,5884,-1,5869,5883,5882,-1,2669,5868,3593,-1,5868,2669,5885,-1,1149,2664,5886,-1,1149,2665,2664,-1,5887,5888,5889,-1,5890,5888,5887,-1,5891,5892,5893,-1,5819,5892,5891,-1,5894,5895,5896,-1,5897,5895,5894,-1,1152,3594,1153,-1,2664,3594,1152,-1,5844,5898,5899,-1,5900,5898,5844,-1,5885,5901,5902,-1,5885,2669,5901,-1,5903,5896,5904,-1,5894,5896,5903,-1,5905,5889,5906,-1,5887,5889,5905,-1,5907,5891,5893,-1,5891,5907,5908,-1,5901,5909,5910,-1,5901,5911,5909,-1,5912,1155,5913,-1,5912,1156,1155,-1,3595,5914,2662,-1,3595,5915,5914,-1,5916,5917,5918,-1,5919,5917,5916,-1,5920,5921,5922,-1,5923,5921,5920,-1,5924,5925,5926,-1,5924,5828,5925,-1,5914,5927,3597,-1,5914,5928,5927,-1,5929,2654,5930,-1,5929,5931,2654,-1,5932,5848,5847,-1,5843,5848,5932,-1,1158,5933,1159,-1,5820,5933,1158,-1,5934,5935,5936,-1,5937,5935,5934,-1,5938,5939,5940,-1,5938,5941,5939,-1,5942,2658,2660,-1,3596,2658,5942,-1,5943,5944,5945,-1,5943,5946,5944,-1,2655,5947,5948,-1,2657,5947,2655,-1,5949,5941,5950,-1,5939,5941,5949,-1,5951,5952,5953,-1,5954,5952,5951,-1,5955,5956,5957,-1,5958,5956,5955,-1,5959,5960,5961,-1,5959,5962,5960,-1,2659,3913,1164,-1,2659,5963,3913,-1,5964,2656,5965,-1,5966,2656,5964,-1,5967,1122,1167,-1,5967,5829,1122,-1,5968,5964,5969,-1,5970,5964,5968,-1,5971,5972,5973,-1,5974,5972,5971,-1,5975,1116,3584,-1,5975,1117,1116,-1,5976,1166,1165,-1,1166,5976,5977,-1,5670,5978,5979,-1,5969,5978,5670,-1,5980,5981,3603,-1,5982,5981,5980,-1,5983,1178,1173,-1,5983,1179,1178,-1,5984,1180,1182,-1,1180,5984,5985,-1,5986,3601,2653,-1,5987,3601,5986,-1,5988,2636,5989,-1,5988,2650,2636,-1,1188,5990,2646,-1,5991,5990,1188,-1,5992,1190,1189,-1,5992,5993,1190,-1,5994,5995,5996,-1,5994,5997,5995,-1,5998,1189,5999,-1,5998,5992,1189,-1,6000,6001,6002,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=23 */
		private int[] getmand_Geo_5_877_coordIndex_23()
		{
			int[] value = {6000,6003,6001,-1,6004,6005,6006,-1,6004,6007,6005,-1,2648,1175,6008,-1,2648,1177,1175,-1,6009,6010,6011,-1,6010,6009,6012,-1,3911,6013,6014,-1,3911,6015,6013,-1,6016,6017,6018,-1,6016,6019,6017,-1,6020,6021,6022,-1,6023,6021,6020,-1,5981,6024,6025,-1,5981,5996,6024,-1,5986,6026,6027,-1,5986,6022,6026,-1,6028,6029,6030,-1,6029,6028,6031,-1,6032,6033,6034,-1,6005,6033,6032,-1,6035,6036,6037,-1,6035,6038,6036,-1,2638,5989,2636,-1,5989,2638,5995,-1,6039,2640,6040,-1,6039,6041,2640,-1,6042,6032,6043,-1,6044,6032,6042,-1,5983,6045,6046,-1,5983,6014,6045,-1,3910,1197,1196,-1,3910,1191,1197,-1,1183,1199,2641,-1,1183,1200,1199,-1,1186,2651,6047,-1,1186,2647,2651,-1,6048,6043,6049,-1,6042,6043,6048,-1,1205,1192,3905,-1,1193,1192,1205,-1,2634,2635,1195,-1,2634,3606,2635,-1,6047,3601,6050,-1,6047,2651,3601,-1,6051,6052,6053,-1,6054,6052,6051,-1,6021,3912,6011,-1,3912,6021,6023,-1,1198,6055,6056,-1,1198,3908,6055,-1,6057,1201,6058,-1,3907,1201,6057,-1,6059,6053,6060,-1,6051,6053,6059,-1,6061,6016,6062,-1,6061,6019,6016,-1,6063,6064,6065,-1,6064,6063,6066,-1,6067,6068,6069,-1,6067,6070,6068,-1,6071,6072,6073,-1,6071,6074,6072,-1,5714,6075,6076,-1,6060,6075,5714,-1,6077,6073,6078,-1,6079,6073,6077,-1,6080,5710,6081,-1,6080,6082,5710,-1,5708,6010,5705,-1,6010,5708,6083,-1,6079,5717,6084,-1,6079,6077,5717,-1,6085,6086,6087,-1,6085,6088,6086,-1,6089,6090,6091,-1,6089,6092,6090,-1,6093,6094,6095,-1,6093,6096,6094,-1,6097,6098,6099,-1,6097,6091,6098,-1,2633,6100,6101,-1,2633,6102,6100,-1,6103,1210,1211,-1,6103,6104,1210,-1,6105,6106,2426,-1,6105,6107,6106,-1,6108,6109,6110,-1,6108,6111,6109,-1,6112,6113,6114,-1,6112,6110,6113,-1,6115,6092,6089,-1,6115,6116,6092,-1,6114,6117,6088,-1,6114,6113,6117,-1,6118,1213,6119,-1,1213,6118,1214,-1,3886,6120,6104,-1,3886,1279,6120,-1,1215,6121,3903,-1,6121,1215,6103,-1,6122,6123,6124,-1,6122,6125,6123,-1,6126,6127,6128,-1,6129,6127,6126,-1,5554,6130,5555,-1,5554,6131,6130,-1,6123,6132,6133,-1,6123,6134,6132,-1,2629,6135,6128,-1,2629,2631,6135,-1,1651,6136,6137,-1,6136,1651,1650,-1,6132,6138,6139,-1,6132,6140,6138,-1,6141,6142,6143,-1,6144,6142,6141,-1,6145,6146,6147,-1,6148,6146,6145,-1,6149,6150,6151,-1,6152,6150,6149,-1,6153,6151,1700,-1,6149,6151,6153,-1,6154,6155,6156,-1,6143,6155,6154,-1,6157,6158,6159,-1,6147,6158,6157,-1,6160,6161,1217,-1,6160,6162,6161,-1,6163,6164,6165,-1,6166,6164,6163,-1,1221,6167,3899,-1,6168,6167,1221,-1,6169,6170,6171,-1,6169,6172,6170,-1,6173,6174,6175,-1,6176,6174,6173,-1,6177,6178,3898,-1,6170,6178,6177,-1,1228,6173,3897,-1,3902,6173,1228,-1,6161,6179,6180,-1,6161,6181,6179,-1,6163,6182,6183,-1,6163,6184,6182,-1,6185,1219,3609,-1,1220,1219,6185,-1,6184,6186,6187,-1,6184,6188,6186,-1,6179,2625,1237,-1,6179,2626,2625,-1,6189,6190,6191,-1,6190,6189,6192,-1,6189,6193,6194,-1,6189,6195,6193,-1,2622,3609,6196,-1,6185,3609,2622,-1,6197,1227,1226,-1,1227,6197,6198,-1,6199,6200,6201,-1,6199,6202,6200,-1,6203,6204,6205,-1,6202,6204,6203,-1,5600,2621,3610,-1,6206,2621,5600,-1,1243,1232,1244,-1,1233,1232,1243,-1,1236,6207,6208,-1,1236,1235,6207,-1,6209,6210,6211,-1,6212,6210,6209,-1,6213,6214,6211,-1,6213,6215,6214,-1,6216,1242,1241,-1,1242,6216,6217,-1,6218,6208,6207,-1,6208,6218,6219,-1,6218,6129,6220,-1,6218,6221,6129,-1,6215,6222,6214,-1,6215,6223,6222,-1,6217,6224,6131,-1,6217,6216,6224,-1,6225,6226,6227,-1,6225,6228,6226,-1,6229,6230,6231,-1,6232,6230,6229,-1,6233,6234,6235,-1,6233,6236,6234,-1,6237,6238,6239,-1,6240,6238,6237,-1,6241,6242,6243,-1,6244,6242,6241,-1,6243,1247,1246,-1,6243,6245,1247,-1,6246,6247,6248,-1,6246,6249,6247,-1,6250,6251,6252,-1,6253,6251,6250,-1,6254,6255,6256,-1,6254,6257,6255,-1,6258,6259,6260,-1,6261,6259,6258,-1,6262,6263,6264,-1,6260,6263,6262,-1,6248,6265,6266,-1,6248,6247,6265,-1,1249,6252,3892,-1,6250,6252,1249,-1,6256,6267,6268,-1,6256,6255,6267,-1,6267,6269,6270,-1,6267,6271,6269,-1,1252,6264,1253,-1,6262,6264,1252,-1,6272,6111,6108,-1,6272,6273,6111,-1,6274,6275,1255,-1,6276,6275,6274,-1,6277,2620,1250,-1,6277,6278,2620,-1,6270,6279,6280,-1,6270,6269,6279,-1,6281,6274,6282,-1,6283,6274,6281,-1,6284,2620,6285,-1,1256,2620,6284,-1,6286,6280,6287,-1,6288,6280,6286,-1,6289,3891,6290,-1,6291,3891,6289,-1,6116,6144,6092,-1,6116,6292,6144,-1,6293,6294,6148,-1,6285,6294,6293,-1,6295,6296,6152,-1,6287,6296,6295,-1,6297,6236,6233,-1,6244,6298,6242,-1,6299,6236,6297,-1,6299,6300,6236,-1,6230,6300,6299,-1,6230,6301,6300,-1,6232,6301,6230,-1,6232,6240,6301,-1,6302,6240,6232,-1,6302,6238,6240,-1,6303,6238,6302,-1,6303,6304,6238,-1,6228,6304,6303,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=24 */
		private int[] getmand_Geo_5_877_coordIndex_24()
		{
			int[] value = {6228,6305,6304,-1,6225,6305,6228,-1,6225,6244,6305,-1,6225,6298,6244,-1,6306,6307,6308,-1,6309,6307,6306,-1,6310,6311,6312,-1,6310,6313,6311,-1,6308,6314,6306,-1,6312,6314,6308,-1,6315,3611,6316,-1,2619,3611,6315,-1,6317,6318,6319,-1,6317,6320,6318,-1,6321,6322,6323,-1,6322,6321,6324,-1,6325,6326,6327,-1,6325,6328,6326,-1,6329,6330,6331,-1,6330,6329,6319,-1,6332,6333,6334,-1,6335,6333,6332,-1,6336,6327,6337,-1,6325,6327,6336,-1,6338,6339,6340,-1,6339,6338,6341,-1,6342,6343,6344,-1,6343,6342,6345,-1,6346,6347,6348,-1,6346,6349,6347,-1,6350,6351,6352,-1,6350,6353,6351,-1,6354,6355,6356,-1,6354,6357,6355,-1,6358,6359,6353,-1,6358,6360,6359,-1,6361,6355,6362,-1,6355,6361,6363,-1,6364,1770,6365,-1,6364,6348,1770,-1,1264,6366,1265,-1,1264,6367,6366,-1,6368,2612,2614,-1,2612,6368,6369,-1,6370,6371,6372,-1,6370,6373,6371,-1,6374,6375,6376,-1,6375,6374,6377,-1,2616,1261,2615,-1,1261,2616,6378,-1,6372,6379,6380,-1,6372,6381,6379,-1,2604,6382,1267,-1,6375,6382,2604,-1,2611,2600,2613,-1,2611,2610,2600,-1,2606,6383,2607,-1,2606,2609,6383,-1,6384,6379,6385,-1,6379,6384,6386,-1,3614,1263,6387,-1,1259,1263,3614,-1,2600,2603,2602,-1,2600,2599,2603,-1,2598,2596,2599,-1,2598,1269,2596,-1,6388,6383,6389,-1,6383,6388,6390,-1,1272,6384,2597,-1,6384,1272,6391,-1,6392,3614,6393,-1,1268,3614,6392,-1,2603,6394,3615,-1,2603,6395,6394,-1,6396,2596,3616,-1,6395,2596,6396,-1,6388,6397,6398,-1,6388,6399,6397,-1,6392,6400,6401,-1,6392,6402,6400,-1,6403,2594,6402,-1,6403,3617,2594,-1,6404,6396,6405,-1,6406,6396,6404,-1,6407,6408,6409,-1,6407,6398,6408,-1,6410,6411,6412,-1,6410,3888,6411,-1,6411,6413,6414,-1,6411,6415,6413,-1,2595,6416,6417,-1,3617,6416,2595,-1,1276,1277,3887,-1,1276,1278,1277,-1,6418,6419,6420,-1,6419,6418,6421,-1,6422,6418,6423,-1,6418,6422,6424,-1,6425,2591,2593,-1,6426,2591,6425,-1,6427,6428,6429,-1,6428,6427,6430,-1,6431,6313,6310,-1,6431,6424,6313,-1,6432,6425,6433,-1,6434,6425,6432,-1,6435,6436,6102,-1,6437,6436,6435,-1,6438,2617,2619,-1,6438,6432,2617,-1,6439,6440,1758,-1,6439,6441,6440,-1,6442,6443,6444,-1,6442,6445,6443,-1,6446,6447,6448,-1,6447,6446,6449,-1,6450,2586,2587,-1,6451,2586,6450,-1,6452,6453,6454,-1,6452,6455,6453,-1,2585,6456,6457,-1,2585,2584,6456,-1,3878,6458,6459,-1,3878,6460,6458,-1,6461,6462,6459,-1,6461,6463,6462,-1,1295,6464,2584,-1,1295,6465,6464,-1,6466,1297,6467,-1,3881,1297,6466,-1,6468,6469,6470,-1,6468,6471,6469,-1,6472,6473,6474,-1,6473,6472,6475,-1,6475,6476,6477,-1,6475,6472,6476,-1,3879,3621,6478,-1,3879,3619,3621,-1,6479,6480,6481,-1,6479,6482,6480,-1,6483,6331,6330,-1,6331,6483,6484,-1,6485,6486,6487,-1,6486,6485,6488,-1,6489,6490,6484,-1,6489,6491,6490,-1,6492,6493,6494,-1,6495,6493,6492,-1,6496,2581,6497,-1,6496,2582,2581,-1,6470,3883,6468,-1,6470,6494,3883,-1,6335,6498,6333,-1,6335,6499,6498,-1,6500,6501,6328,-1,6495,6501,6500,-1,6486,1290,6499,-1,6488,1290,6486,-1,1286,6446,1287,-1,6449,6446,1286,-1,2590,6461,6502,-1,2590,2589,6461,-1,3622,6503,6504,-1,6505,6503,3622,-1,6506,3884,6507,-1,6508,3884,6506,-1,6454,6474,6473,-1,6454,6457,6474,-1,6509,6510,6460,-1,6510,6509,6511,-1,6487,6512,6324,-1,6487,6486,6512,-1,6513,6514,6515,-1,6513,6516,6514,-1,6517,6518,2562,-1,6517,6519,6518,-1,1310,3624,1311,-1,1310,3625,3624,-1,6514,1302,6520,-1,6516,1302,6514,-1,6516,2578,1302,-1,6516,3624,2578,-1,6516,6521,3624,-1,6522,6518,1302,-1,6523,6518,6522,-1,6524,6518,6523,-1,3877,6518,6524,-1,1300,6518,3877,-1,1300,2579,6518,-1,6525,6526,2575,-1,6527,6526,6525,-1,6528,2574,6529,-1,1309,2574,6528,-1,6530,3630,2567,-1,6530,2572,3630,-1,2565,2571,6531,-1,2564,2571,2565,-1,2563,3628,1312,-1,2563,6532,3628,-1,6533,6534,6535,-1,6533,6536,6534,-1,6537,6538,6539,-1,6537,6540,6538,-1,3629,2577,1304,-1,2569,2577,3629,-1,6541,6528,6527,-1,6541,6542,6528,-1,2563,6513,6543,-1,3631,6513,2563,-1,6544,2562,2561,-1,6517,2562,6544,-1,6545,6546,6547,-1,6545,6548,6546,-1,6549,6550,6551,-1,6550,6549,6552,-1,6553,6554,6555,-1,6553,6357,6554,-1,6556,6346,6557,-1,6556,6558,6346,-1,6343,6559,6560,-1,6559,6343,6561,-1,6562,6556,6563,-1,6556,6562,6564,-1,6565,6566,6567,-1,6566,6565,6568,-1,6569,6570,6571,-1,6569,6564,6570,-1,6572,6573,6574,-1,6575,6573,6572,-1,6576,6577,6578,-1,6548,6577,6576,-1,6579,6572,6580,-1,6579,6581,6572,-1,6582,6340,6583,-1,6338,6340,6582,-1,6584,6545,6585,-1,6584,6586,6545,-1,6587,6582,6575,-1,6587,6588,6582,-1,1305,6589,6540,-1,3632,6589,1305,-1,6590,2576,6591,-1,6590,6592,2576,-1,6593,2573,6594,-1,6593,6595,2573,-1,6596,6536,6597,-1,6596,6534,6536,-1,6598,6599,6597,-1,6598,6600,6599,-1,2559,6601,6602,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=25 */
		private int[] getmand_Geo_5_877_coordIndex_25()
		{
			int[] value = {2559,3876,6601,-1,6603,6604,6605,-1,6603,6606,6604,-1,3875,1316,6607,-1,3875,1313,1316,-1,6608,6609,6580,-1,6610,6609,6608,-1,6611,6612,6613,-1,6611,6614,6612,-1,6615,6616,6617,-1,6616,6615,6618,-1,6619,6620,6621,-1,6619,6622,6620,-1,6620,6571,6570,-1,6620,6623,6571,-1,6547,6357,6354,-1,6547,6554,6357,-1,6624,6625,6568,-1,6624,6626,6625,-1,6627,3674,6628,-1,3674,6627,6629,-1,6630,1542,2400,-1,6630,2557,1542,-1,6631,6632,6633,-1,6631,6634,6632,-1,6635,3817,6636,-1,6635,6637,3817,-1,1386,2537,2133,-1,1387,2537,1386,-1,3867,2534,3775,-1,2535,2534,3867,-1,3633,1335,1334,-1,3633,3635,1335,-1,1340,3641,1343,-1,2552,3641,1340,-1,3870,2551,2499,-1,3641,2551,3870,-1,2502,3849,2549,-1,3849,2502,1362,-1,2545,3760,1364,-1,2545,3869,3760,-1,1362,1357,2547,-1,1357,1362,1361,-1,2214,3644,3868,-1,2214,3646,3644,-1,2542,2538,2543,-1,2542,2533,2538,-1,3647,1352,2541,-1,1353,1352,3647,-1,2218,2540,1382,-1,2218,2212,2540,-1,1341,3640,3639,-1,1341,1343,3640,-1,2212,3866,2540,-1,2132,3866,2212,-1,1345,2550,3800,-1,6638,2550,1345,-1,3757,1334,3639,-1,3757,3633,1334,-1,1392,1712,1623,-1,1394,1712,1392,-1,1393,3650,1394,-1,3650,1393,3651,-1,2439,1406,1405,-1,2525,1406,2439,-1,3865,1403,1402,-1,1785,1403,3865,-1,6639,3771,6640,-1,6639,2521,3771,-1,3657,2517,2518,-1,3657,3658,2517,-1,2512,3654,2513,-1,3654,2512,3655,-1,6641,6642,6643,-1,6641,6644,6642,-1,1418,6645,3754,-1,1418,3773,6645,-1,2509,2506,3661,-1,2506,2509,3662,-1,1979,1369,1457,-1,1979,2131,1369,-1,3637,1456,2494,-1,3637,2499,1456,-1,1450,1446,6646,-1,1450,1447,1446,-1,3857,6641,3789,-1,3856,6641,3857,-1,6647,1459,1465,-1,6648,1459,6647,-1,1971,2006,6649,-1,2007,2006,1971,-1,2056,2487,2057,-1,2056,6650,2487,-1,2483,3667,3666,-1,6651,3667,2483,-1,3855,6651,2483,-1,6651,3855,6652,-1,2102,3769,2103,-1,3769,2102,6653,-1,6654,6655,6656,-1,6654,6657,6655,-1,2479,2026,2022,-1,2026,2479,2160,-1,6658,6659,6660,-1,6659,6658,6661,-1,6662,6663,6664,-1,6662,1516,6663,-1,6665,6666,6667,-1,6666,6665,6668,-1,1511,1519,1509,-1,1511,2091,1519,-1,3671,6669,2221,-1,3671,3670,6669,-1,3672,6670,1964,-1,6670,3672,3727,-1,2400,1541,1537,-1,1541,2400,1542,-1,6671,3872,6630,-1,6671,6672,3872,-1,1539,1571,1540,-1,1539,2356,1571,-1,2469,1555,2467,-1,2469,3848,1555,-1,3689,1553,3848,-1,3689,1552,1553,-1,6673,1560,6674,-1,1561,1560,6673,-1,6673,6675,6676,-1,6673,6677,6675,-1,6678,3831,6679,-1,1701,3831,6678,-1,6680,2464,3680,-1,6681,2464,6680,-1,3729,2444,1575,-1,3729,6682,2444,-1,6683,2405,6684,-1,2405,6683,2406,-1,2458,1656,2459,-1,1584,1656,2458,-1,3696,6685,6686,-1,3696,2404,6685,-1,1574,1588,6687,-1,1588,1574,2443,-1,6688,1600,1695,-1,1600,6688,1601,-1,6689,1399,6690,-1,6689,2525,1399,-1,2527,3841,2528,-1,1634,3841,2527,-1,6691,1581,1690,-1,6691,1565,1581,-1,1786,1788,3678,-1,1786,6692,1788,-1,2532,2359,1787,-1,2532,6693,2359,-1,6694,1402,3712,-1,3865,1402,6694,-1,2442,1653,3681,-1,1653,2442,6695,-1,3840,2445,1647,-1,3840,2446,2445,-1,2444,2447,1573,-1,2444,2463,2447,-1,2419,2465,2420,-1,1538,2465,2419,-1,1538,1540,2465,-1,3834,3847,1689,-1,6696,3847,3834,-1,2225,2457,1608,-1,2225,1609,2457,-1,6697,1658,6698,-1,1658,6697,3838,-1,6699,6700,6698,-1,6699,2408,6700,-1,3691,6701,6702,-1,3691,1614,6701,-1,6703,2409,6704,-1,2409,6703,6705,-1,6706,2411,6707,-1,1613,2411,6706,-1,1686,3697,1687,-1,1696,3697,1686,-1,3682,1673,1706,-1,3836,1673,3682,-1,1599,1673,1672,-1,1599,1707,1673,-1,6708,6709,6710,-1,6711,6709,6708,-1,6712,6713,6714,-1,6713,6712,2432,-1,1209,1677,1678,-1,1209,1208,1677,-1,1679,1208,6309,-1,1679,1677,1208,-1,6715,3692,6105,-1,6715,2425,3692,-1,1680,3684,6690,-1,3684,1680,2412,-1,3833,3673,1692,-1,6716,3673,3833,-1,3832,2418,6717,-1,3693,2418,3832,-1,6718,6719,6720,-1,6718,6721,6719,-1,6686,2418,2417,-1,6685,2418,6686,-1,6722,2460,6723,-1,6722,6724,2460,-1,2438,1613,1611,-1,2438,2411,1613,-1,2436,6725,6726,-1,2436,2437,6725,-1,6154,6710,6709,-1,6154,6727,6710,-1,6728,6729,6707,-1,6729,6728,6156,-1,6724,6730,6687,-1,6724,6722,6730,-1,6731,2417,1693,-1,6731,6686,2417,-1,6732,6721,6733,-1,6719,6721,6732,-1,6689,6734,3843,-1,6735,6734,6689,-1,6722,6736,6730,-1,6722,6737,6736,-1,1693,6738,6731,-1,1693,1692,6738,-1,2403,2392,1792,-1,2392,2403,2396,-1,1782,2363,2361,-1,1782,2364,2363,-1,2376,3826,1604,-1,3826,2376,2394,-1,1720,2370,1627,-1,3709,2370,1720,-1,2391,1679,6739,-1,1679,2391,1598,-1,6740,3702,2390,-1,6741,3702,6740,-1,1728,2395,1716,-1,1728,3700,2395,-1,6742,1752,3709,-1,6742,2384,1752,-1,6743,6744,1764,-1,6744,6743,6745,-1,3706,2379,2380,-1,3705,2379,3706,-1,2451,1775,2450,-1,1775,2451,1776,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=26 */
		private int[] getmand_Geo_5_877_coordIndex_26()
		{
			int[] value = {1767,2380,6746,-1,1767,3706,2380,-1,3711,3821,1739,-1,1769,3821,3711,-1,1742,6747,6748,-1,1779,6747,1742,-1,1745,6361,6749,-1,6361,1745,2369,-1,3611,6741,2388,-1,3611,2618,6741,-1,6750,6314,6751,-1,6750,6752,6314,-1,1619,2390,1617,-1,6740,2390,1619,-1,6753,6336,2385,-1,6336,6753,6754,-1,3823,6320,6317,-1,3823,1765,6320,-1,6323,1761,1760,-1,6322,1761,6323,-1,2371,6755,1754,-1,2371,2372,6755,-1,2385,6742,6753,-1,2384,6742,2385,-1,2379,1722,6745,-1,2379,3705,1722,-1,1736,2376,2375,-1,2376,1736,3699,-1,6756,3708,1740,-1,6756,6365,3708,-1,6757,6758,6746,-1,6759,6758,6757,-1,3822,2366,1768,-1,2366,3822,6360,-1,1623,1738,1622,-1,1738,1623,1739,-1,1711,2449,1709,-1,1711,6760,2449,-1,1548,6761,1549,-1,5212,6761,1548,-1,2527,6760,2522,-1,2526,6760,2527,-1,6762,2364,2399,-1,2364,6762,671,-1,5222,1705,6679,-1,1705,5222,5308,-1,6763,6694,3686,-1,6763,6692,6694,-1,2401,6764,6765,-1,6764,2401,3698,-1,1560,6766,6674,-1,1560,6767,6766,-1,1834,6768,3804,-1,6769,6768,1834,-1,3683,6677,1582,-1,6675,6677,3683,-1,2355,3730,3713,-1,2355,1914,3730,-1,3715,2250,2351,-1,1940,2250,3715,-1,2245,1861,2349,-1,2245,1864,1861,-1,6770,6771,6772,-1,6773,6771,6770,-1,6774,6775,6772,-1,6776,6775,6774,-1,6777,3845,6778,-1,6777,3719,3845,-1,6779,6780,6781,-1,6779,6733,6780,-1,1528,6782,1825,-1,6782,1528,2249,-1,1889,2341,2273,-1,1889,1829,2341,-1,2274,1831,3721,-1,2274,2341,1831,-1,6783,3726,6784,-1,6783,3724,3726,-1,1956,3725,1957,-1,3725,1956,6785,-1,2343,1831,1830,-1,3723,1831,2343,-1,3812,6786,6787,-1,3812,1896,6786,-1,6788,2352,1856,-1,6788,3714,2352,-1,6789,1833,6790,-1,6789,3722,1833,-1,1904,1813,1815,-1,1904,1814,1813,-1,1915,1801,1800,-1,1915,1914,1801,-1,2288,1871,1877,-1,2329,1871,2288,-1,3818,2347,6791,-1,2248,2347,3818,-1,6792,6793,6794,-1,6792,6795,6793,-1,6796,6797,6798,-1,6797,6796,6799,-1,6800,2354,2332,-1,2354,6800,6801,-1,2330,3732,3731,-1,2330,6802,3732,-1,6803,2277,6804,-1,6805,2277,6803,-1,6806,3810,2282,-1,3810,6806,6807,-1,1931,2279,2258,-1,6808,2279,1931,-1,6809,6810,6811,-1,6810,6809,6812,-1,6813,6814,6634,-1,6814,6813,6815,-1,6816,6817,2325,-1,6817,6816,2720,-1,1881,3746,6818,-1,1881,1880,3746,-1,1875,1933,1876,-1,1933,1875,1913,-1,6819,6818,3746,-1,6819,6820,6818,-1,6821,2288,2287,-1,2288,6821,2306,-1,6822,6823,6824,-1,6822,1938,6823,-1,6825,6821,6826,-1,6825,6827,6821,-1,2299,2300,1900,-1,2300,2299,3738,-1,6828,1905,1936,-1,3811,1905,6828,-1,2306,6827,2307,-1,2306,6821,6827,-1,1850,2305,6829,-1,1850,1849,2305,-1,2227,6830,1902,-1,6830,2227,6831,-1,3738,2295,2296,-1,2298,2295,3738,-1,6832,5568,2304,-1,6833,5568,6832,-1,5569,6834,6835,-1,5569,6836,6834,-1,6837,6838,6774,-1,6838,6837,6684,-1,6786,6839,6840,-1,6841,6839,6786,-1,6842,1963,6843,-1,1963,6842,6844,-1,6845,6846,6847,-1,6787,6846,6845,-1,6824,2339,6822,-1,6824,2292,2339,-1,2329,1872,1871,-1,2329,1859,1872,-1,6848,2286,6849,-1,6848,2246,2286,-1,1908,1823,2285,-1,1908,1911,1823,-1,3813,6848,6850,-1,6819,6848,3813,-1,2278,6805,6851,-1,2277,6805,2278,-1,2278,1941,1940,-1,2278,2249,1941,-1,6825,1087,5722,-1,6825,6852,1087,-1,1922,2268,6853,-1,2268,1922,2269,-1,2268,3742,2272,-1,2267,3742,2268,-1,1927,6854,6855,-1,1927,3743,6854,-1,5656,6856,6857,-1,6858,6856,5656,-1,6859,6860,6861,-1,6862,6860,6859,-1,3744,6863,6864,-1,6863,3744,2264,-1,1920,6857,1921,-1,6857,1920,5656,-1,5650,6865,3809,-1,5649,6865,5650,-1,6866,6867,6868,-1,6867,6866,6869,-1,6870,6871,6872,-1,6864,6871,6870,-1,6873,6874,6875,-1,6874,6873,6876,-1,6877,1870,1869,-1,6877,6866,1870,-1,3732,6878,2263,-1,3732,6802,6878,-1,3816,6879,6880,-1,3816,1867,6879,-1,6799,6881,2265,-1,6799,6796,6881,-1,2720,6882,6817,-1,2720,6883,6882,-1,1884,5700,2317,-1,5700,1884,2257,-1,3735,5692,2319,-1,3735,3930,5692,-1,1881,5694,1882,-1,5694,1881,6884,-1,6885,2316,2321,-1,5697,2316,6885,-1,1886,6886,6887,-1,1886,1879,6886,-1,5721,2307,6827,-1,6888,2307,5721,-1,6889,3928,6890,-1,6889,6828,3928,-1,3571,1938,3745,-1,3571,6823,1938,-1,3748,1530,1824,-1,3748,1531,1530,-1,2250,2345,3814,-1,1821,2345,2250,-1,1804,2354,2245,-1,1804,2332,2354,-1,6891,1887,2322,-1,2287,1887,6891,-1,1951,6635,2243,-1,6635,1951,1328,-1,6892,6893,6894,-1,6895,6893,6892,-1,6896,6773,6770,-1,6896,6897,6773,-1,6632,6898,6899,-1,6632,6900,6898,-1,6897,6901,6773,-1,6897,6633,6901,-1,2222,1951,1947,-1,1951,2222,1952,-1,2237,1967,6902,-1,1967,2237,2239,-1,6903,6904,6905,-1,6903,1522,6904,-1,6905,6658,3850,-1,6658,6905,6904,-1,6906,2474,6907,-1,6906,6908,2474,-1,1970,2235,1471,-1,2233,2235,1970,-1,6905,6909,6903,-1,6905,6910,6909,-1,6790,1832,1957,-1,6790,1833,1832,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=27 */
		private int[] getmand_Geo_5_877_coordIndex_27()
		{
			int[] value = {6911,6633,6897,-1,6631,6633,6911,-1,3804,3695,1797,-1,3804,2407,3695,-1,1607,6912,2226,-1,1607,1659,6912,-1,6847,6913,6845,-1,6847,6914,6913,-1,6842,6781,6915,-1,6842,6779,6781,-1,1529,1532,6907,-1,1532,1529,1533,-1,3750,6916,2220,-1,6917,6916,3750,-1,6917,6918,6919,-1,6917,3750,6918,-1,1976,1382,2216,-1,1382,1976,2218,-1,2497,6920,6921,-1,2497,3663,6920,-1,1432,6922,3858,-1,1432,3801,6922,-1,3657,1411,1410,-1,2520,1411,3657,-1,1513,2107,1514,-1,6923,2107,1513,-1,6924,2113,3779,-1,6924,6925,2113,-1,6926,6927,6928,-1,6927,6926,6929,-1,6930,6931,6932,-1,6931,6930,6933,-1,6934,6935,6936,-1,6935,6934,2192,-1,6937,3781,6938,-1,6937,2193,3781,-1,6939,1992,1991,-1,6940,1992,6939,-1,1989,6940,1990,-1,1992,6940,1989,-1,2110,6941,2111,-1,3660,6941,2110,-1,2034,1430,3858,-1,2033,1430,2034,-1,3864,3861,6942,-1,3864,6943,3861,-1,6944,2207,6945,-1,2207,6944,1986,-1,3863,2507,3661,-1,1412,2507,3863,-1,3773,2123,6645,-1,3756,2123,3773,-1,3658,1410,2514,-1,1410,3658,3657,-1,6946,2125,2009,-1,2203,2125,6946,-1,3656,2510,3660,-1,3656,3655,2510,-1,2195,2200,6947,-1,2194,2200,2195,-1,3757,2493,2127,-1,2493,3757,3639,-1,2511,2196,2141,-1,2511,2065,2196,-1,2506,2512,3659,-1,2505,2512,2506,-1,2508,6948,6949,-1,2508,6950,6948,-1,1991,3799,6939,-1,2016,3799,1991,-1,2157,3852,2146,-1,3852,2157,6951,-1,2190,1364,3760,-1,2190,2191,1364,-1,6952,6953,6954,-1,6952,6955,6953,-1,3761,2032,2187,-1,3761,2027,2032,-1,6956,6957,6958,-1,6959,6957,6956,-1,6960,3755,2118,-1,3755,6960,6961,-1,2092,3669,2159,-1,2092,2185,3669,-1,2088,3795,2077,-1,2047,3795,2088,-1,2183,2073,2075,-1,2183,2181,2073,-1,6962,3793,6963,-1,3793,6962,2070,-1,3792,6964,2166,-1,2490,3792,2089,-1,6964,3792,2490,-1,2180,6965,6966,-1,2179,6965,2180,-1,6967,2171,3764,-1,6967,3765,2171,-1,6968,6969,6970,-1,6969,6968,6971,-1,2171,1499,6972,-1,2170,1499,2171,-1,6973,2069,6974,-1,3794,2069,6973,-1,2161,2066,2162,-1,6975,2066,2161,-1,3780,1491,3763,-1,3780,1492,1491,-1,2054,1493,2487,-1,3766,1493,2054,-1,3762,3790,6976,-1,3790,3762,3797,-1,2108,2478,2477,-1,2108,2104,2478,-1,6639,2481,2480,-1,2481,6639,6640,-1,6665,3782,2189,-1,6977,3782,6665,-1,2148,6978,2105,-1,2148,3769,6978,-1,2190,2498,2191,-1,2190,2155,2498,-1,6646,2094,2093,-1,2094,6646,6979,-1,6980,2151,2150,-1,6980,6981,2151,-1,2219,6982,6983,-1,2219,6984,6982,-1,6985,6667,6666,-1,6985,6986,6667,-1,6984,3769,6982,-1,6984,6978,3769,-1,6933,6987,6988,-1,6933,6930,6987,-1,3799,3786,6939,-1,3786,3799,3787,-1,2104,3768,2478,-1,2104,2106,3768,-1,6976,3783,6989,-1,6976,3790,3783,-1,3762,3668,2185,-1,3668,3762,6976,-1,2163,6967,2087,-1,2163,2067,6967,-1,6990,3759,6991,-1,6990,3758,3759,-1,6992,2081,6993,-1,6994,2081,6992,-1,2072,6995,6996,-1,2072,2071,6995,-1,3781,1988,1990,-1,2211,1988,3781,-1,6997,2039,1485,-1,2039,6997,2040,-1,3858,2037,2034,-1,6922,2037,3858,-1,2061,2085,2172,-1,2085,2061,2086,-1,6996,2083,2072,-1,2161,2083,6996,-1,2505,3655,2512,-1,2505,2510,3655,-1,1423,2517,2516,-1,1423,1426,2517,-1,6644,6998,6642,-1,3803,6998,6644,-1,2003,2135,2002,-1,2003,6999,2135,-1,6656,7000,7001,-1,6655,7000,6656,-1,2548,3645,7001,-1,2548,1359,3645,-1,3637,3870,2499,-1,3870,3637,3871,-1,6919,6657,6654,-1,6919,6918,6657,-1,1455,2191,2498,-1,2191,1455,1365,-1,2098,7002,3634,-1,2097,7002,2098,-1,3753,2504,2209,-1,1436,2504,3753,-1,3803,7003,6998,-1,3803,3802,7003,-1,7004,2200,2199,-1,2200,7004,3802,-1,2115,2209,2117,-1,3753,2209,2115,-1,2116,1424,1422,-1,1424,2116,7005,-1,3659,3661,2506,-1,3659,3863,3661,-1,3660,2113,6941,-1,3660,2114,2113,-1,2082,2072,2083,-1,3793,2072,2082,-1,2086,2060,7006,-1,2086,2061,2060,-1,2167,2182,2046,-1,2182,2167,2073,-1,2071,7007,6995,-1,7007,2071,6993,-1,2070,6993,2071,-1,6992,6993,2070,-1,7008,6991,2076,-1,6990,6991,7008,-1,3764,2087,6967,-1,2173,2087,3764,-1,3785,6989,3783,-1,6989,3785,6923,-1,3784,6653,2102,-1,3784,7009,6653,-1,2105,3767,2106,-1,2105,6664,3767,-1,7010,6954,6953,-1,7011,6954,7010,-1,3665,7012,1508,-1,3665,7013,7012,-1,6669,6978,6984,-1,6669,6662,6978,-1,6986,7014,3791,-1,6985,7014,6986,-1,6983,7015,7016,-1,6983,6982,7015,-1,3763,2056,2058,-1,3763,1491,2056,-1,6668,2545,2152,-1,6668,3869,2545,-1,6662,2105,6978,-1,2105,6662,6664,-1,6986,7017,6667,-1,3797,7017,6986,-1,6933,1408,7018,-1,6933,6988,1408,-1,2480,1505,6639,-1,2480,6652,1505,-1,2477,1512,1514,-1,2475,1512,2477,-1,3796,2146,2041,-1,3796,2019,2146,-1,2036,2090,2181,-1,2090,2036,2038,-1,2179,1495,6965,-1,2179,2057,1495,-1,6921,7019,6966,-1,6921,6920,7019,-1,2087,7006,2163,-1,2086,7006,2087,-1,2080,2048,7020,-1,2080,2049,2048,-1,2043,2076,6991,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=28 */
		private int[] getmand_Geo_5_877_coordIndex_28()
		{
			int[] value = {2076,2043,2079,-1,6969,1453,2154,-1,6971,1453,6969,-1,1454,1453,6971,-1,6996,2069,2068,-1,6995,2069,6996,-1,3765,2067,3794,-1,6967,2067,3765,-1,6966,2139,6921,-1,6965,2139,6966,-1,2064,7020,2048,-1,2063,7020,2064,-1,2070,7021,6992,-1,2070,6962,7021,-1,2487,2055,2054,-1,2055,2487,6650,-1,2142,1486,2143,-1,1473,1486,2142,-1,2042,1510,1477,-1,2042,2041,1510,-1,2025,2040,6997,-1,2025,2033,2040,-1,6945,1427,3859,-1,6945,2207,1427,-1,6955,6961,6953,-1,6955,7022,6961,-1,6959,1986,6944,-1,1986,6959,1987,-1,7010,2187,2032,-1,6960,2187,7010,-1,6997,2023,2025,-1,2188,2023,6997,-1,3759,2019,3796,-1,3759,2020,2019,-1,6977,2157,3782,-1,6951,2157,6977,-1,1508,3799,1506,-1,1508,3787,3799,-1,7005,3860,1424,-1,7023,3860,7005,-1,1417,2516,7024,-1,1423,2516,1417,-1,1515,6663,1516,-1,1515,7025,6663,-1,2009,2124,2010,-1,2009,2125,2124,-1,6649,1972,1971,-1,6649,2138,1972,-1,2009,7026,6946,-1,2009,2008,7026,-1,2514,2515,3658,-1,2514,2513,2515,-1,2122,6645,2123,-1,6645,2122,1437,-1,1999,1998,1997,-1,1999,2001,1998,-1,7023,3859,3860,-1,6945,3859,7023,-1,7027,6945,7023,-1,7027,6944,6945,-1,6943,1421,3861,-1,6943,2210,1421,-1,2492,1996,2120,-1,1996,2492,1482,-1,2209,1435,1995,-1,2209,2504,1435,-1,6941,2149,2111,-1,2149,6941,7028,-1,1989,1993,1992,-1,1993,1989,2145,-1,3786,6937,6938,-1,3786,3788,6937,-1,7012,6936,6935,-1,7012,7013,6936,-1,6932,6949,6948,-1,6949,6932,6931,-1,6927,7029,6928,-1,7018,7029,6927,-1,1515,6924,7025,-1,1515,6925,6924,-1,2149,1517,1534,-1,1517,2149,7028,-1,1416,3754,2115,-1,1416,1418,3754,-1,3766,1494,1493,-1,1494,3766,1984,-1,2196,6921,2139,-1,2196,2497,6921,-1,2196,2197,2497,-1,1973,3853,2213,-1,3853,1973,1975,-1,6659,6917,1974,-1,6917,6659,6916,-1,6843,6779,6842,-1,6843,7030,6779,-1,2226,6831,2227,-1,2226,6912,6831,-1,1325,1469,1329,-1,1325,1467,1469,-1,6814,2247,6900,-1,7031,2247,6814,-1,7032,1968,1961,-1,7032,6910,1968,-1,6844,3672,1963,-1,6844,7033,3672,-1,2337,3722,6789,-1,2336,3722,2337,-1,3815,1959,3747,-1,3815,7034,1959,-1,7033,3727,3672,-1,7033,3728,3727,-1,1856,1808,1857,-1,1856,2352,1808,-1,2473,6907,2474,-1,6907,2473,1529,-1,6660,1974,7035,-1,1974,6660,6659,-1,6770,6894,6896,-1,6892,6894,6770,-1,6634,6900,6632,-1,6634,6814,6900,-1,7036,6897,6896,-1,7036,6911,6897,-1,1330,6788,6637,-1,6788,1330,7037,-1,1845,2285,1943,-1,1845,1909,2285,-1,1522,7038,6904,-1,1521,7038,1522,-1,1521,7039,7038,-1,1939,6823,3571,-1,1939,1892,6823,-1,1935,6828,1936,-1,3928,6828,1935,-1,2307,7040,2308,-1,7040,2307,6888,-1,1893,3926,2313,-1,3926,1893,3807,-1,6883,2321,6882,-1,2321,6883,6885,-1,6818,6884,1881,-1,6884,6818,5690,-1,3808,2319,5692,-1,3808,1933,2319,-1,2317,7041,7042,-1,5700,7041,2317,-1,6887,1883,1886,-1,6887,2256,1883,-1,2265,7043,6799,-1,3744,7043,2265,-1,6880,7044,3816,-1,6861,7044,6880,-1,2263,1923,3733,-1,2263,2262,1923,-1,2258,1932,1931,-1,1932,2258,2260,-1,7045,1869,6807,-1,7045,6877,1869,-1,6878,6875,6874,-1,6878,6802,6875,-1,6856,1867,6801,-1,6856,6879,1867,-1,6877,6869,6866,-1,6869,6877,5645,-1,1932,5650,3809,-1,5650,1932,7046,-1,6864,5653,6871,-1,5653,6864,6863,-1,7047,6861,6880,-1,6859,6861,7047,-1,7048,2263,6878,-1,2261,2263,7048,-1,1928,7049,1929,-1,5616,7049,1928,-1,2272,6853,2268,-1,6853,2272,7049,-1,6853,1919,1922,-1,1919,6853,7050,-1,3715,2276,2278,-1,7051,2276,3715,-1,6849,6850,6848,-1,6850,6849,6798,-1,2320,6791,7052,-1,2320,3818,6791,-1,1905,2346,2289,-1,2346,1905,1904,-1,1818,7053,7054,-1,1818,2229,7053,-1,6915,6844,6842,-1,6844,6915,7055,-1,7056,3725,3724,-1,7057,3725,7056,-1,1798,6783,1799,-1,6783,1798,7058,-1,1903,7059,1901,-1,1903,3812,7059,-1,5567,2304,5568,-1,5567,2305,2304,-1,5565,6831,5564,-1,5565,6830,6831,-1,1900,1851,1579,-1,1851,1900,2300,-1,7060,1902,6830,-1,7060,1899,1902,-1,6829,1852,1850,-1,6834,1852,6829,-1,6889,3811,6828,-1,1811,3811,6889,-1,6826,6852,6825,-1,6826,2314,6852,-1,6824,1892,1891,-1,6824,6823,1892,-1,6826,2287,6891,-1,2287,6826,6821,-1,2324,7061,7062,-1,2324,7042,7061,-1,1874,6819,3813,-1,6819,1874,6820,-1,6815,7031,6814,-1,7031,6815,1807,-1,6812,7036,6810,-1,7036,6812,6794,-1,3717,7052,6791,-1,3717,7063,7052,-1,1930,2282,3740,-1,2282,1930,6806,-1,2276,6804,2277,-1,2276,6872,6804,-1,6801,1866,2354,-1,6801,1867,1866,-1,1800,6873,1915,-1,1800,2327,6873,-1,2286,3816,7044,-1,2286,1865,3816,-1,6799,7064,6797,-1,7064,6799,7043,-1,2236,6809,2242,-1,2236,7065,6809,-1,7066,6795,7067,-1,7066,6793,6795,-1,2348,1907,2349,-1,1907,2348,1906,-1,1872,2248,1873,-1,1872,1858,2248,-1,1850,1851,3737,-1,1850,1852,1851,-1,1797,7068,6914,-1,3695,7068,1797,-1,1828,2340,2344,-1,1843,2340,1828,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=29 */
		private int[] getmand_Geo_5_877_coordIndex_29()
		{
			int[] value = {7059,6787,6845,-1,7059,3812,6787,-1,3713,7069,3819,-1,3730,7069,3713,-1,1969,2226,1901,-1,2226,1969,1607,-1,6841,6789,6839,-1,2337,6789,6841,-1,1799,6784,1835,-1,1799,6783,6784,-1,1827,2334,1955,-1,1966,2334,1827,-1,1943,1822,1941,-1,1822,1943,1823,-1,7070,7071,6838,-1,7072,7071,7070,-1,7030,6733,6779,-1,7030,6732,6733,-1,2555,6778,2556,-1,2555,6777,6778,-1,7053,6776,7054,-1,7053,6775,6776,-1,6773,2554,6771,-1,6901,2554,6773,-1,7054,1819,1818,-1,7054,7073,1819,-1,3819,1803,1805,-1,1803,3819,7069,-1,7074,3683,1564,-1,7074,6675,3683,-1,1836,6769,1834,-1,7075,6769,1836,-1,6768,7076,7077,-1,7076,6768,6769,-1,1562,6767,1560,-1,6767,1562,1795,-1,5312,1794,1793,-1,5312,5313,1794,-1,2440,1568,1788,-1,2440,2441,1568,-1,2471,3831,1702,-1,2471,5221,3831,-1,2471,456,5221,-1,3680,1789,6680,-1,2362,1789,3680,-1,3865,6692,1786,-1,3865,6694,6692,-1,3820,1634,1636,-1,1634,3820,3841,-1,3053,1555,1554,-1,3053,2414,1555,-1,1741,1732,643,-1,1741,2377,1732,-1,2394,5312,1793,-1,2394,614,5312,-1,2368,6361,2369,-1,2368,6363,6361,-1,1774,1737,1772,-1,2378,1737,1774,-1,2377,1733,1732,-1,3711,1733,2377,-1,7078,7079,6759,-1,7078,7080,7079,-1,6365,1769,3708,-1,1769,6365,1770,-1,2368,1747,3710,-1,2368,2367,1747,-1,6744,3823,7081,-1,6744,1724,3823,-1,6337,2385,6336,-1,2386,2385,6337,-1,1754,7082,3829,-1,1754,6755,7082,-1,6322,2372,1761,-1,7083,2372,6322,-1,6317,7081,3823,-1,7084,7081,6317,-1,2386,7085,1725,-1,7085,2386,6337,-1,2453,1721,1626,-1,2453,1755,1721,-1,6752,6306,6314,-1,6306,6752,6739,-1,6309,6739,1679,-1,6309,6306,6739,-1,6749,7086,1745,-1,6749,7087,7086,-1,7088,1755,2453,-1,1755,7088,1756,-1,3704,7088,2451,-1,7088,3704,1756,-1,1735,1751,2393,-1,1735,1734,1751,-1,7086,1742,6748,-1,7086,3828,1742,-1,2381,6746,2380,-1,2381,6757,6746,-1,1625,2452,1626,-1,1625,1624,2452,-1,1724,6745,1722,-1,1724,6744,6745,-1,1720,6742,3709,-1,1719,6742,1720,-1,3701,6739,6752,-1,6739,3701,2391,-1,3703,1619,1625,-1,1619,3703,6740,-1,1712,1709,1708,-1,1711,1709,1712,-1,1704,6679,1705,-1,1704,6678,6679,-1,7089,7090,7091,-1,7090,1594,7092,-1,7090,7089,1594,-1,1565,1628,1563,-1,6691,1628,1565,-1,6719,1594,1593,-1,6719,6732,1594,-1,7093,7090,7072,-1,7090,7093,7091,-1,6687,1585,6724,-1,1585,6687,1588,-1,6706,6157,3837,-1,6157,6706,7094,-1,6703,6159,7095,-1,6703,1669,6159,-1,6727,6156,6728,-1,6156,6727,6154,-1,2437,1651,6725,-1,2437,1652,1651,-1,2408,6704,2409,-1,2408,6699,6704,-1,1695,2403,1696,-1,1600,2403,1695,-1,1629,6691,3653,-1,1629,1628,6691,-1,1686,3693,3832,-1,3835,3693,1686,-1,6716,6764,7096,-1,6716,3833,6764,-1,7097,2421,1640,-1,2421,7097,1675,-1,6093,1668,2434,-1,6093,6095,1668,-1,6714,6701,6712,-1,6701,6714,6099,-1,1614,1660,1615,-1,1660,1614,3691,-1,1671,2428,2427,-1,1671,1664,2428,-1,7097,1676,1675,-1,1676,7097,3825,-1,1323,1557,2401,-1,1557,1323,1322,-1,6708,1682,2430,-1,6708,6710,1682,-1,2413,6707,2411,-1,2413,6728,6707,-1,6712,1614,1616,-1,1614,6712,6701,-1,3694,6728,2413,-1,6727,6728,3694,-1,2408,3687,6700,-1,2408,2461,3687,-1,1662,1615,1660,-1,1615,1662,1663,-1,2437,1653,1652,-1,1654,1653,2437,-1,2420,2464,6720,-1,2465,2464,2420,-1,1647,5571,1648,-1,5571,1647,1646,-1,2446,3839,6695,-1,2446,3840,3839,-1,1643,6695,2442,-1,6695,1643,2446,-1,2449,2526,1632,-1,2449,6760,2526,-1,1787,1396,2532,-1,1401,1396,1787,-1,3820,3678,2361,-1,3820,1786,3678,-1,3653,1690,1689,-1,3653,6691,1690,-1,6696,1566,3847,-1,1569,1566,6696,-1,6693,2439,2359,-1,2439,6693,2524,-1,1610,6913,7098,-1,1610,2224,6913,-1,1640,3652,1641,-1,3652,1640,2423,-1,2392,1604,3826,-1,1604,2392,1605,-1,6723,1601,6688,-1,6723,2460,1601,-1,1575,6687,6730,-1,6687,1575,1574,-1,7099,2404,6737,-1,6685,2404,7099,-1,7093,3675,7091,-1,3675,7093,6738,-1,1684,1590,7100,-1,1591,1590,1684,-1,6736,6683,7101,-1,2406,6683,6736,-1,1581,6781,6780,-1,6781,1581,2223,-1,3830,6762,2399,-1,6762,3830,5309,-1,3846,1701,6678,-1,1791,1701,3846,-1,2441,1566,1568,-1,3847,1566,2441,-1,7102,7077,7103,-1,7077,7102,6768,-1,6677,6674,7104,-1,6673,6674,6677,-1,7077,3677,7103,-1,1796,3677,7077,-1,2415,1547,1322,-1,2415,5213,1547,-1,1550,2468,1324,-1,1550,3690,2468,-1,5212,1547,5213,-1,1547,5212,1548,-1,3636,2557,2470,-1,3636,2558,2557,-1,2356,1535,3676,-1,2356,1536,1535,-1,2472,2558,3636,-1,1543,2558,2472,-1,1539,6629,6627,-1,6629,1539,2419,-1,1533,1531,2202,-1,1533,1529,1531,-1,1525,1824,1530,-1,1524,1824,1525,-1,6903,7105,7106,-1,7105,6903,6909,-1,2147,1511,3852,-1,2147,2091,1511,-1,1513,7011,7107,-1,1513,6954,7011,-1,2095,3852,6951,-1,2095,2147,3852,-1,6668,2151,6666,-1,2151,6668,2152,-1,6906,2221,2220,-1,2221,6906,3671,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=30 */
		private int[] getmand_Geo_5_877_coordIndex_30()
		{
			int[] value = {3850,6660,3851,-1,3850,6658,6660,-1,7009,7015,6653,-1,7015,7009,7108,-1,3853,6656,3751,-1,6656,3853,6654,-1,2482,3665,1507,-1,2482,2481,3665,-1,3667,1507,3666,-1,3667,2482,1507,-1,6952,2475,1503,-1,6952,1512,2475,-1,2174,2484,1498,-1,7109,2484,2174,-1,2050,2176,2051,-1,2177,2176,2050,-1,1477,7110,2042,-1,7110,1477,2178,-1,2204,6999,3774,-1,2206,6999,2204,-1,2007,1970,1467,-1,2007,1971,1970,-1,7024,2515,7111,-1,2516,2515,7024,-1,2198,7002,7112,-1,2198,1333,7002,-1,2119,2199,2120,-1,7004,2199,2119,-1,1451,6646,2093,-1,1450,6646,1451,-1,1437,3754,6645,-1,3754,1437,1436,-1,1481,3801,1482,-1,1481,6922,3801,-1,1429,3860,3859,-1,3860,1429,1425,-1,7026,6643,6642,-1,7112,6643,7026,-1,6639,1504,2521,-1,6639,1505,1504,-1,2529,1399,2524,-1,2529,1400,1399,-1,1394,1638,1710,-1,3650,1638,1394,-1,6690,1398,1680,-1,6690,1399,1398,-1,2524,1639,1641,-1,2524,6693,1639,-1,2128,3639,1334,-1,3639,2128,1341,-1,2537,1348,1377,-1,2537,1349,1348,-1,2132,3867,3866,-1,2132,3777,3867,-1,2553,6638,3649,-1,2553,1339,6638,-1,1381,2501,1457,-1,1347,2501,1381,-1,1380,1375,2535,-1,1375,1380,1376,-1,1358,1361,1355,-1,1358,1357,1361,-1,1363,3776,2544,-1,1363,3778,3776,-1,2547,1359,2548,-1,2547,1357,1359,-1,3871,1343,3870,-1,3640,1343,3871,-1,1341,3800,2550,-1,3800,1341,2128,-1,3777,2535,3867,-1,1380,2535,3777,-1,1387,1385,1442,-1,1387,1386,1385,-1,1326,1329,3805,-1,1326,1325,1329,-1,7066,6634,6631,-1,6813,6634,7066,-1,6628,2357,6627,-1,6628,7113,2357,-1,1321,2402,1557,-1,1320,2402,1321,-1,6615,6568,6565,-1,6615,6624,6568,-1,6585,6547,6354,-1,6545,6547,6585,-1,6570,6621,6620,-1,6621,6570,7114,-1,6621,6604,6619,-1,6604,6621,6626,-1,6601,6618,7115,-1,6601,6616,6618,-1,6613,7116,6600,-1,6613,6612,7116,-1,1318,6610,6608,-1,1317,6610,1318,-1,1316,7117,1317,-1,1313,7117,1316,-1,6606,6619,6604,-1,6606,6595,6619,-1,6616,3876,6592,-1,3876,6616,6601,-1,6589,6600,6598,-1,6589,6613,6600,-1,6597,6538,6598,-1,6597,6536,6538,-1,2570,1313,1315,-1,7117,1313,2570,-1,3627,6595,6606,-1,6595,3627,2573,-1,2577,6592,3876,-1,6592,2577,2576,-1,6575,6583,6573,-1,6575,6582,6583,-1,6586,6548,6545,-1,6577,6548,6586,-1,6588,6338,6582,-1,6352,6338,6588,-1,6574,6580,6572,-1,6608,6580,6574,-1,6578,6614,6576,-1,6612,6614,6578,-1,6581,6575,6572,-1,6587,6575,6581,-1,6571,7118,6569,-1,7118,6571,7119,-1,6568,7120,6566,-1,7120,6568,6625,-1,6564,6558,6556,-1,6558,6564,6569,-1,6560,6567,6566,-1,6560,6559,6567,-1,6563,6557,7121,-1,6563,6556,6557,-1,6555,6561,6553,-1,6561,6555,6559,-1,6567,6552,6565,-1,6567,6550,6552,-1,6546,6554,6547,-1,6554,6546,6551,-1,7122,6517,6544,-1,7123,6517,7122,-1,6542,1309,6528,-1,6542,1307,1309,-1,2568,3626,1299,-1,3626,2568,2560,-1,6539,6544,6537,-1,6544,6539,7122,-1,7124,6535,6543,-1,7124,6533,6535,-1,6531,1315,1314,-1,2571,1315,6531,-1,2572,6594,2573,-1,6530,6594,2572,-1,7125,6526,6529,-1,7125,6591,6526,-1,6534,7126,7127,-1,6596,7126,6534,-1,6523,6541,6524,-1,6542,6541,6523,-1,7123,6519,6517,-1,7123,6520,6519,-1,3631,6516,6513,-1,3631,6521,6516,-1,7128,6324,6321,-1,7128,6487,6324,-1,6511,7129,6510,-1,7129,6511,6482,-1,6496,6454,6473,-1,6452,6454,6496,-1,6508,6469,7130,-1,6508,6506,6469,-1,3880,3622,3619,-1,3880,6505,3622,-1,2589,6463,6461,-1,2589,6450,6463,-1,1281,6465,1295,-1,1281,6444,6465,-1,1292,1287,6446,-1,1292,3882,1287,-1,7131,1297,1285,-1,7131,7132,1297,-1,7133,6495,6500,-1,6493,6495,7133,-1,7133,6333,6498,-1,7134,6333,7133,-1,6468,1291,6504,-1,6468,3883,1291,-1,6497,7135,7136,-1,6497,2581,7135,-1,1289,6494,6493,-1,1289,3883,6494,-1,6480,6484,6483,-1,6480,6489,6484,-1,3621,6488,6485,-1,3621,3620,6488,-1,7137,6484,6490,-1,7137,6331,6484,-1,6474,6481,6472,-1,6474,6479,6481,-1,6509,6478,6491,-1,6509,3879,6478,-1,2582,6477,2580,-1,2582,6475,6477,-1,2582,6473,6475,-1,6496,6473,2582,-1,6506,6470,6469,-1,7138,6470,6506,-1,7139,3881,6466,-1,7140,3881,7139,-1,6508,1286,3884,-1,7141,1286,6508,-1,6502,6459,6458,-1,6502,6461,6459,-1,3880,6459,6462,-1,3880,3878,6459,-1,2584,7129,6456,-1,7129,2584,6464,-1,1294,2585,6453,-1,1294,2583,2585,-1,1284,7142,7143,-1,1284,6447,7142,-1,1283,6447,1284,-1,2586,6447,1283,-1,2586,6448,6447,-1,6451,6448,2586,-1,6451,7144,6448,-1,2588,7144,6451,-1,2588,7145,7144,-1,3618,7145,2588,-1,3618,1280,7145,-1,3618,3885,1280,-1,3618,6442,3885,-1,3618,6445,6442,-1,7142,6449,7146,-1,7142,6447,6449,-1,7145,1282,1293,-1,7145,1280,1282,-1,6445,2590,6443,-1,6445,3618,2590,-1,2617,6433,6441,-1,6432,6433,2617,-1,6435,7147,7148,-1,7147,6435,3607,-1,6433,2593,7149,-1,6425,2593,6433,-1,7150,6424,6422,-1,6424,7150,6313,-1,7151,1279,6430,-1,1279,7151,6120,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=31 */
		private int[] getmand_Geo_5_877_coordIndex_31()
		{
			int[] value = {6437,7152,6436,-1,6417,7152,6437,-1,6423,7153,6422,-1,6423,6414,7153,-1,6420,6423,6418,-1,6420,6412,6423,-1,1276,6428,1278,-1,1276,6409,6428,-1,7154,6417,6416,-1,7154,7152,6417,-1,6412,6414,6423,-1,6412,6411,6414,-1,7155,6412,6420,-1,7155,6410,6412,-1,6409,1275,6407,-1,1275,6409,1276,-1,6405,3616,6119,-1,6396,3616,6405,-1,3617,7156,6416,-1,6403,7156,3617,-1,6393,6402,6392,-1,6393,6403,6402,-1,6391,3888,6410,-1,6391,1272,3888,-1,6390,6398,6407,-1,6390,6388,6398,-1,6394,6396,6406,-1,6394,6395,6396,-1,3615,7157,7158,-1,3615,6394,7157,-1,6401,1268,6392,-1,3613,1268,6401,-1,6399,6389,7159,-1,6389,6399,6388,-1,3612,1269,2598,-1,3612,3889,1269,-1,6387,1262,7158,-1,1263,1262,6387,-1,6386,6380,6379,-1,6380,6386,7159,-1,1267,3890,1260,-1,6382,3890,1267,-1,6379,7160,6385,-1,6381,7160,6379,-1,6375,7161,6382,-1,6375,6377,7161,-1,6371,6381,6372,-1,6381,6371,7162,-1,6378,2614,1261,-1,2614,6378,6368,-1,2611,6367,1264,-1,2611,7163,6367,-1,6348,1771,1770,-1,6348,6347,1771,-1,6345,7164,7087,-1,6345,6342,7164,-1,6360,7165,2366,-1,6358,7165,6360,-1,6357,6362,6355,-1,6357,6553,6362,-1,6353,6584,6358,-1,6350,6584,6353,-1,7166,6347,6349,-1,7166,7167,6347,-1,6344,7168,6342,-1,6344,7121,7168,-1,6341,1773,6339,-1,1773,6341,7080,-1,6337,7169,7085,-1,6327,7169,6337,-1,7134,6334,6333,-1,7134,7170,6334,-1,7171,6331,7137,-1,6331,7171,6329,-1,6327,7172,7169,-1,6327,6326,7172,-1,6324,7083,6322,-1,7083,6324,6512,-1,7084,6319,6329,-1,7084,6317,6319,-1,7173,7085,7169,-1,7174,7085,7173,-1,1758,7147,1759,-1,1758,6440,7147,-1,7175,6312,6308,-1,6310,6312,7175,-1,7151,6308,6307,-1,7151,7175,6308,-1,7176,6290,7177,-1,6289,6290,7176,-1,7178,6287,6295,-1,6286,6287,7178,-1,7179,6285,6293,-1,6284,6285,7179,-1,6116,6282,6292,-1,6281,6282,6116,-1,7180,6291,6289,-1,7181,6291,7180,-1,7182,6286,7183,-1,7182,6288,6286,-1,7184,1256,6284,-1,1257,1256,7184,-1,7185,6281,7186,-1,7185,6283,6281,-1,6279,7187,7181,-1,6269,7187,6279,-1,7182,6277,7188,-1,6277,7182,6278,-1,1250,7189,6277,-1,3892,7189,1250,-1,6283,6276,6274,-1,6265,6276,6283,-1,3893,6108,7190,-1,3893,6272,6108,-1,7191,6262,1252,-1,7192,6262,7191,-1,6268,6270,7193,-1,6268,6267,6270,-1,7194,6268,7195,-1,7194,6256,6268,-1,6275,6250,1249,-1,7196,6250,6275,-1,7197,6266,6273,-1,7197,6248,6266,-1,6264,1246,1248,-1,6263,1246,6264,-1,6260,6241,6263,-1,6259,6241,6260,-1,6255,6237,7198,-1,6257,6237,6255,-1,6252,6235,7199,-1,6251,6235,6252,-1,6249,7200,6247,-1,6249,6229,7200,-1,6245,7201,1247,-1,6245,6227,7201,-1,6242,6245,6243,-1,6242,6298,6245,-1,6239,6304,6261,-1,6238,6304,6239,-1,6236,6254,6234,-1,6236,6300,6254,-1,6231,6299,6253,-1,6230,6299,6231,-1,6228,6246,6226,-1,6228,6303,6246,-1,6122,6216,7202,-1,6216,6122,6224,-1,6223,7203,7204,-1,6215,7203,6223,-1,6129,7205,6127,-1,6221,7205,6129,-1,6218,7206,6221,-1,6207,7206,6218,-1,1241,7202,6216,-1,1241,7207,7202,-1,7208,3894,7209,-1,7208,1243,3894,-1,6211,7210,6209,-1,6211,6214,7210,-1,7211,6212,6209,-1,1238,6212,7211,-1,6197,6208,7212,-1,6197,1236,6208,-1,1242,1232,1240,-1,1232,1242,1244,-1,7213,6206,5600,-1,6193,6206,7213,-1,6213,6202,6203,-1,6200,6202,6213,-1,6210,6201,6200,-1,1229,6201,6210,-1,1226,1236,6197,-1,1226,1234,1236,-1,6187,1232,3896,-1,6187,1240,1232,-1,6185,2621,1223,-1,6185,2622,2621,-1,6204,6189,6194,-1,6192,6189,6204,-1,7214,6192,6199,-1,7214,6190,6192,-1,6180,1237,2624,-1,6180,6179,1237,-1,1227,6188,1225,-1,6188,1227,6186,-1,1223,1220,6185,-1,1222,1220,1223,-1,1222,1221,1220,-1,7215,1221,1222,-1,6165,1225,6188,-1,6165,2628,1225,-1,6181,2626,6179,-1,6181,3901,2626,-1,7216,7217,7214,-1,6175,7217,7216,-1,6171,6177,6191,-1,6171,6170,6177,-1,6175,7218,7217,-1,6174,7218,6175,-1,6172,6178,6170,-1,6172,7219,6178,-1,3899,7220,7221,-1,6167,7220,3899,-1,6165,7222,2628,-1,6164,7222,6165,-1,6162,6181,6161,-1,6162,7223,6181,-1,7094,6147,6157,-1,6145,6147,7094,-1,6709,6143,6154,-1,6141,6143,6709,-1,7095,6149,6153,-1,7224,6149,7095,-1,7224,6152,6149,-1,6295,6152,7224,-1,7225,6148,6145,-1,6293,6148,7225,-1,7226,2631,7227,-1,6135,2631,7226,-1,6133,6139,6726,-1,6133,6132,6139,-1,7227,2630,5564,-1,2631,2630,7227,-1,6134,6140,6132,-1,6134,7228,6140,-1,6130,6137,6136,-1,6130,7229,6137,-1,6128,7230,2629,-1,6127,7230,6128,-1,6125,6134,6123,-1,6125,7231,6134,-1,1215,6104,6103,-1,1215,3886,6104,-1,7232,6102,6436,-1,6102,7232,6100,-1,1213,7233,7234,-1,7233,1213,3903,-1,7234,6119,1213,-1,7234,6405,6119,-1,7235,6088,6085,-1,7235,6114,6088,-1,7236,6089,7237,-1,7236,6115,6089,-1,6114,7238,6112,-1,7235,7238,6114,-1,7190,6110,6112,-1,7190,6108,6110,-1,6107,3692,6101,-1,3692,6107,6105,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=32 */
		private int[] getmand_Geo_5_877_coordIndex_32()
		{
			int[] value = {2426,1211,1212,-1,2426,6106,1211,-1,6101,7239,6107,-1,6101,6100,7239,-1,6091,6711,6098,-1,6091,6090,6711,-1,6094,7240,6095,-1,6094,6087,7240,-1,6092,6141,6090,-1,6092,6144,6141,-1,6088,7241,6086,-1,6088,6117,7241,-1,6008,2649,2648,-1,7242,2649,6008,-1,7243,6003,6000,-1,7243,7244,6003,-1,7245,7244,7243,-1,7245,7246,7244,-1,7247,7246,7245,-1,7247,6004,7246,-1,7248,6004,7247,-1,1172,6004,7248,-1,1172,6007,6004,-1,1172,7249,6007,-1,1171,7249,1172,-1,1171,7242,7249,-1,2649,7242,1171,-1,6068,3927,6012,-1,6068,1082,3927,-1,6080,7250,6082,-1,6080,6066,7250,-1,6078,6072,7251,-1,6073,6072,6078,-1,6076,7252,3572,-1,6075,7252,6076,-1,6072,6057,7253,-1,6074,6057,6072,-1,6056,6070,6067,-1,6056,6084,6070,-1,6065,7254,6063,-1,6065,5987,7254,-1,7253,6058,6081,-1,6057,6058,7253,-1,6060,1207,6075,-1,6053,1207,6060,-1,6058,1203,7255,-1,1201,1203,6058,-1,3908,6071,6055,-1,3908,7256,6071,-1,2635,6009,1170,-1,2635,6069,6009,-1,6053,1205,1207,-1,6052,1205,6053,-1,1206,7257,7258,-1,3905,7257,1206,-1,3906,6050,1202,-1,3906,6047,6050,-1,7259,1199,3907,-1,3605,1199,7259,-1,7257,1192,7260,-1,1192,7257,3905,-1,6049,7261,6054,-1,6043,7261,6049,-1,7262,1195,1194,-1,7262,2634,1195,-1,1191,7263,1197,-1,1191,6040,7263,-1,7260,3909,1179,-1,3909,7260,1192,-1,6036,6042,7264,-1,6036,6044,6042,-1,1190,6040,1191,-1,1190,6039,6040,-1,7265,2650,5988,-1,7265,1194,2650,-1,6038,6044,6036,-1,6038,6006,6044,-1,1181,7266,3604,-1,1181,6002,7266,-1,1177,1176,1175,-1,1177,3909,1176,-1,6044,6005,6032,-1,6006,6005,6044,-1,6017,6030,5575,-1,6030,6017,6028,-1,2653,6022,5986,-1,2653,6020,6022,-1,5996,2638,6024,-1,5995,2638,5996,-1,6022,6083,6026,-1,6021,6083,6022,-1,6019,6028,6017,-1,6019,7267,6028,-1,3938,7254,6027,-1,1051,7254,3938,-1,6027,5987,5986,-1,7254,5987,6027,-1,1174,6008,1175,-1,7242,6008,1174,-1,7244,6038,6035,-1,7244,7246,6038,-1,6000,1181,7243,-1,6000,6002,1181,-1,7265,5998,5999,-1,7268,5998,7265,-1,1185,5991,1188,-1,7269,5991,1185,-1,7270,3602,6041,-1,7270,7271,3602,-1,5982,5996,5981,-1,5982,5994,5996,-1,3603,6025,2647,-1,3603,5981,6025,-1,6029,1182,2643,-1,1182,6029,5984,-1,5983,7260,1179,-1,5983,6046,7260,-1,1137,5810,2670,-1,1137,5811,5810,-1,1136,5811,1137,-1,1136,5842,5811,-1,1133,5842,1136,-1,3918,5842,1133,-1,5859,5842,3918,-1,5859,3590,5842,-1,5856,3590,5859,-1,5856,1139,3590,-1,1130,1139,5856,-1,1143,1139,1130,-1,1143,1140,1139,-1,1143,1142,1140,-1,5667,5969,5670,-1,5968,5969,5667,-1,5977,1117,1166,-1,1117,5977,1076,-1,7272,3913,7273,-1,3913,7272,1165,-1,5846,7274,2716,-1,5846,7275,7274,-1,7276,5974,5971,-1,7277,5974,7276,-1,7278,5680,5677,-1,5953,5680,7278,-1,7279,5682,5681,-1,7279,5832,5682,-1,5965,2655,7277,-1,2656,2655,5965,-1,5963,7273,3913,-1,5963,5945,7273,-1,5846,7280,7275,-1,7281,7280,5846,-1,7277,5948,5974,-1,2655,5948,7277,-1,5953,5934,5680,-1,5952,5934,5953,-1,7282,5832,7279,-1,7282,7283,5832,-1,5957,5939,5949,-1,5956,5939,5957,-1,5927,5945,5963,-1,5927,5943,5945,-1,7284,5938,5926,-1,5938,7284,5941,-1,5936,5920,5958,-1,5935,5920,5936,-1,5916,1159,5933,-1,5916,5954,1159,-1,1157,5813,7285,-1,1156,5813,1157,-1,2654,3915,2657,-1,5931,3915,2654,-1,5928,5943,5927,-1,5928,5910,5943,-1,5840,7286,5838,-1,5840,5835,7286,-1,5922,5905,5940,-1,5921,5905,5922,-1,5918,5903,5937,-1,5917,5903,5918,-1,5915,5928,5914,-1,5915,5902,5928,-1,1154,5913,1155,-1,1153,5913,1154,-1,5911,5929,5909,-1,5911,7287,5929,-1,7288,5907,5893,-1,7288,5919,5907,-1,5889,5924,5906,-1,5889,7289,5924,-1,5904,7290,5923,-1,5896,7290,5904,-1,2669,5911,5901,-1,2669,2668,5911,-1,2663,1150,3595,-1,7291,1150,2663,-1,1153,5882,5913,-1,3594,5882,1153,-1,5896,5878,7290,-1,5895,5878,5896,-1,5874,5893,5892,-1,5874,7288,5893,-1,5889,5872,7289,-1,5888,5872,5889,-1,7292,5886,7293,-1,7292,1149,5886,-1,7291,1151,1150,-1,5850,1151,7291,-1,5888,5870,5872,-1,5866,5870,5888,-1,5895,5881,5878,-1,5862,5881,5895,-1,5892,5877,5874,-1,1145,5877,5892,-1,7294,3589,5849,-1,5841,3589,7294,-1,1138,2665,1134,-1,1138,2666,2665,-1,1131,2667,3593,-1,1131,5858,2667,-1,5850,1141,1151,-1,3591,1141,5850,-1,5870,5865,3919,-1,5865,5870,5866,-1,5862,5851,5881,-1,5861,5851,5862,-1,1145,7295,5877,-1,3917,7295,1145,-1,5841,3590,3589,-1,5842,3590,5841,-1,1130,5858,1131,-1,1130,5856,5858,-1,7295,5854,7296,-1,5854,7295,3917,-1,1127,5865,7297,-1,1127,3919,5865,-1,5861,3598,5851,-1,3599,3598,5861,-1,5898,5850,7291,-1,5850,5898,5849,-1,7280,3596,5942,-1,3596,7280,5847,-1,7298,5846,5845,-1,7298,7281,5846,-1,5814,5900,5844,-1,5814,7299,5900,-1,5830,5681,1123,-1,5830,7279,5681,-1,5827,5840,5825,-1,5827,7300,5840,-1,5824,5837,5823,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=33 */
		private int[] getmand_Geo_5_877_coordIndex_33()
		{
			int[] value = {5824,7301,5837,-1,7302,5836,5833,-1,5817,5836,7302,-1,7283,5831,5832,-1,5821,5831,7283,-1,2719,1161,1163,-1,5831,1161,2719,-1,5830,7303,7304,-1,5829,7303,5830,-1,5871,5827,5826,-1,5871,3585,5827,-1,1125,5855,1147,-1,5855,1125,1124,-1,5822,5908,5820,-1,5908,5822,5834,-1,7298,5962,5959,-1,5962,7298,5845,-1,5816,7299,5814,-1,5816,7305,7299,-1,5734,2697,5732,-1,2711,2697,5734,-1,2711,2707,2697,-1,2710,2707,2711,-1,5731,2707,2710,-1,7306,2707,5731,-1,7307,2707,7306,-1,7307,2708,2707,-1,5729,2708,7307,-1,5728,2708,5729,-1,5728,3923,2708,-1,5740,3923,5728,-1,5737,3923,5740,-1,5743,3923,5737,-1,5743,5741,3923,-1,7308,5806,5654,-1,2675,5806,7308,-1,5806,5803,5808,-1,2684,5803,5806,-1,7309,5804,7310,-1,7309,5793,5804,-1,7311,5631,5628,-1,7311,7312,5631,-1,2727,5781,2673,-1,5801,5781,2727,-1,5799,7313,5622,-1,5799,5780,7313,-1,2700,7314,5755,-1,2700,5777,7314,-1,5796,3583,2680,-1,5796,7315,3583,-1,5795,7316,7317,-1,5794,7316,5795,-1,5790,7318,5792,-1,5790,7319,7318,-1,5753,7312,7311,-1,5753,5759,7312,-1,5788,5766,5796,-1,5787,5766,5788,-1,5784,5764,5794,-1,5783,5764,5784,-1,5791,5763,5790,-1,7320,5763,5791,-1,1106,5802,5775,-1,1106,3921,5802,-1,5773,5800,5779,-1,5773,5772,5800,-1,5771,5798,5776,-1,5771,5770,5798,-1,2687,5733,5775,-1,3573,5733,2687,-1,5774,3922,5772,-1,5774,1103,3922,-1,5739,7321,5770,-1,5739,5738,7321,-1,2685,7322,3582,-1,1097,7322,2685,-1,5787,5769,5766,-1,5745,5769,5787,-1,5783,1096,5764,-1,7323,1096,5783,-1,5748,7320,7324,-1,5748,5763,7320,-1,5619,1092,2705,-1,1092,5619,5761,-1,1101,5760,1102,-1,1101,5751,5760,-1,5756,2701,3576,-1,2701,5756,7325,-1,7311,5754,5753,-1,7326,5754,7311,-1,7327,5751,1101,-1,7327,5750,5751,-1,7328,5748,7324,-1,7328,5746,5748,-1,7329,1096,7323,-1,7329,1094,1096,-1,7330,3579,5767,-1,7330,3577,3579,-1,5743,5739,5742,-1,5743,5737,5739,-1,1107,2698,2693,-1,1107,2699,2698,-1,1103,5731,1104,-1,7306,5731,1103,-1,5740,5730,5738,-1,5740,5728,5730,-1,3745,2713,3571,-1,2714,2713,3745,-1,3566,6890,3928,-1,3566,2731,6890,-1,5726,5711,5724,-1,5711,5726,7040,-1,1087,5720,5722,-1,1086,5720,1087,-1,5717,1086,1085,-1,5717,6077,1086,-1,6076,5715,5714,-1,6076,7331,5715,-1,5711,6082,5724,-1,5710,6082,5711,-1,5707,5705,5704,-1,5707,5708,5705,-1,2713,5704,1084,-1,7332,5704,2713,-1,7333,5703,5707,-1,5703,7333,5702,-1,5700,5671,7041,-1,5699,5671,5700,-1,6886,5698,5669,-1,5698,6886,5696,-1,3933,2720,6816,-1,1055,2720,3933,-1,5658,1080,1079,-1,5658,5689,1080,-1,3932,3930,1064,-1,3932,5692,3930,-1,5660,6816,5693,-1,5660,3933,6816,-1,5701,7334,5699,-1,7335,7334,5701,-1,7336,5685,7337,-1,5685,7336,5686,-1,7278,5684,5683,-1,7278,2722,5684,-1,2716,5674,2717,-1,2716,7274,5674,-1,5955,5679,5678,-1,5955,5685,5679,-1,5675,3931,1072,-1,3931,5675,5663,-1,1163,1063,2719,-1,1163,1065,1063,-1,3932,5684,5691,-1,3932,1066,5684,-1,3931,5665,1062,-1,3931,5663,5665,-1,5699,5672,5671,-1,5699,7334,5672,-1,5976,5698,5695,-1,5698,5976,7338,-1,2672,5666,3570,-1,5666,2672,5664,-1,5662,3933,5660,-1,3933,5662,1056,-1,5658,5686,5688,-1,5658,5657,5686,-1,6858,5638,7339,-1,5638,6858,5656,-1,7340,5655,5652,-1,7340,6855,5655,-1,2266,7341,2264,-1,5637,7341,2266,-1,5641,6859,7047,-1,5641,5640,6859,-1,1925,7342,7343,-1,5610,7342,1925,-1,6867,5626,5647,-1,7344,5626,6867,-1,5633,5643,5649,-1,5633,5646,5643,-1,5641,5623,5620,-1,5623,5641,7345,-1,5617,3580,7346,-1,5807,3580,5617,-1,5644,5805,7347,-1,5804,5805,5644,-1,2679,5634,7348,-1,2679,5632,5634,-1,3568,2681,7349,-1,2681,3568,2725,-1,2677,7344,7350,-1,2677,5626,7344,-1,5622,5642,5620,-1,5622,7313,5642,-1,5639,5755,7314,-1,5755,5639,5612,-1,5631,5618,5629,-1,5631,5619,5618,-1,7050,5613,1919,-1,5613,7050,7346,-1,5630,7349,5628,-1,5630,3568,7349,-1,5563,5552,5550,-1,5563,5609,5552,-1,5607,7351,5606,-1,5607,7209,7351,-1,5609,5605,7352,-1,5603,5605,5609,-1,3610,5607,5601,-1,3610,2623,5607,-1,7353,5602,6205,-1,5602,7353,5605,-1,2730,5574,5588,-1,2729,5574,2730,-1,5590,7354,5593,-1,5590,5592,7354,-1,5589,5595,5587,-1,5589,7355,5595,-1,5586,5592,5584,-1,5586,6048,5592,-1,5580,5589,5581,-1,5580,5578,5589,-1,5579,5583,5577,-1,5579,7356,5583,-1,2733,5574,2729,-1,5572,5574,2733,-1,5571,7357,1648,-1,5571,5570,7357,-1,5567,5562,7358,-1,5567,5561,5562,-1,5565,5560,7359,-1,5565,5558,5560,-1,5562,3935,3934,-1,5562,5550,3935,-1,5560,7360,7361,-1,5560,5557,7360,-1,5570,5553,7357,-1,5570,7362,5553,-1,3935,5606,3937,-1,3935,5551,5606,-1,5713,2253,5549,-1,2253,5713,2251,-1,5547,2298,2297,-1,5547,7363,2298,-1,5546,5549,5544,-1,5546,5594,5549,-1,5542,5547,5541,-1,5542,5597,5547,-1,277,1046,7364,-1,277,3438,1046,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=34 */
		private int[] getmand_Geo_5_877_coordIndex_34()
		{
			int[] value = {5522,5189,7364,-1,5189,5522,5521,-1,1043,936,1041,-1,1043,5187,936,-1,5539,5175,7365,-1,5175,5539,3539,-1,4028,362,341,-1,4028,363,362,-1,336,360,345,-1,336,355,360,-1,354,5459,356,-1,354,5535,5459,-1,5515,5450,5513,-1,5449,5450,5515,-1,7366,418,413,-1,7366,971,418,-1,3948,3089,992,-1,3948,3455,3089,-1,3088,5509,429,-1,3088,3087,5509,-1,3552,5495,7367,-1,5495,3552,7368,-1,955,5533,5505,-1,955,957,5533,-1,5501,3946,2765,-1,5501,3944,3946,-1,4023,968,3952,-1,7369,968,4023,-1,2759,7369,7370,-1,2759,2758,7369,-1,1009,1028,333,-1,1009,1008,1028,-1,3560,2813,5475,-1,3559,2813,3560,-1,5518,7371,7372,-1,5518,5519,7371,-1,1015,7373,5528,-1,1015,7374,7373,-1,7375,5524,5199,-1,7375,5516,5524,-1,5528,905,7376,-1,5528,7373,905,-1,3943,5174,1019,-1,3943,5525,5174,-1,2809,5181,2761,-1,5483,5181,2809,-1,5525,5199,5524,-1,5525,3943,5199,-1,7377,7378,7379,-1,7377,7376,7378,-1,3112,7380,5529,-1,3111,7380,3112,-1,7381,3083,3082,-1,7381,5455,3083,-1,2755,7382,2752,-1,2755,3561,7382,-1,4023,7370,7369,-1,4023,5201,7370,-1,5496,5510,7383,-1,5496,5494,5510,-1,5514,5497,3950,-1,5497,5514,5513,-1,5507,3946,3945,-1,5508,3946,5507,-1,5492,3456,406,-1,5492,7384,3456,-1,962,5505,2792,-1,962,955,5505,-1,5500,3949,999,-1,3949,5500,991,-1,3945,5500,5502,-1,5500,3945,3944,-1,5499,3950,5497,-1,3950,5499,979,-1,7385,3555,997,-1,3555,402,401,-1,402,3555,7385,-1,2775,5496,5512,-1,2774,5496,2775,-1,977,7386,7387,-1,977,3951,7386,-1,2789,2763,7388,-1,2763,2789,2764,-1,7386,2794,7384,-1,2795,2794,7386,-1,5488,5453,5477,-1,5487,5453,5488,-1,5487,5455,7381,-1,5455,5487,2830,-1,5486,5490,5485,-1,5490,5486,5489,-1,965,3456,5484,-1,965,964,3456,-1,3136,5483,3563,-1,3136,960,5483,-1,2813,1024,5475,-1,1024,2813,1022,-1,5467,357,5466,-1,5467,5178,357,-1,345,4025,346,-1,4025,345,360,-1,953,3106,416,-1,953,952,3106,-1,942,5538,2820,-1,5538,942,7389,-1,2821,934,399,-1,934,2821,938,-1,3110,343,4027,-1,338,343,3110,-1,938,3941,5180,-1,3941,938,937,-1,358,3108,359,-1,3108,358,3444,-1,3957,5488,5491,-1,2831,5488,3957,-1,3448,3443,5177,-1,3448,7390,3443,-1,1032,2796,3451,-1,2796,1032,1031,-1,5536,1036,3564,-1,1036,5536,353,-1,5473,2828,2827,-1,2828,5473,2826,-1,2826,5475,1024,-1,5475,2826,5473,-1,2748,5472,5474,-1,2748,921,5472,-1,5471,5469,5468,-1,3954,5469,5471,-1,5463,5519,5470,-1,7371,5519,5463,-1,5465,5461,5460,-1,5464,5461,5465,-1,5535,5462,5459,-1,5535,5457,5462,-1,2752,3077,3076,-1,3077,2752,7382,-1,3109,338,3110,-1,338,3109,339,-1,7366,365,3451,-1,7366,366,365,-1,5450,388,5498,-1,5450,3094,388,-1,1040,902,2823,-1,909,902,1040,-1,7378,5448,5447,-1,7378,904,5448,-1,7391,904,3958,-1,904,7391,5448,-1,3064,3066,5446,-1,3063,3066,3064,-1,5445,2884,5444,-1,5445,5332,2884,-1,5442,7392,5341,-1,5442,5343,7392,-1,5443,727,729,-1,5443,3495,727,-1,600,2928,3521,-1,600,599,2928,-1,5167,7393,7394,-1,7393,5167,7395,-1,3528,7396,7397,-1,3528,2917,7396,-1,5206,7398,5204,-1,5206,7399,7398,-1,7400,2847,7401,-1,2848,2847,7400,-1,879,2817,880,-1,2817,879,945,-1,7402,7403,7404,-1,7402,7405,7403,-1,3461,5435,5195,-1,3461,5434,5435,-1,7404,7406,5196,-1,7404,7403,7406,-1,3462,7399,2841,-1,3462,7398,7399,-1,5168,7394,5323,-1,5168,5167,7394,-1,5433,5169,5166,-1,5433,5432,5169,-1,5323,5440,7407,-1,5323,7394,5440,-1,5431,7408,5429,-1,7408,5431,7409,-1,2851,2856,872,-1,2853,2856,2851,-1,777,3526,867,-1,700,3526,777,-1,721,7410,2898,-1,7410,721,718,-1,2899,4278,4277,-1,4278,2899,782,-1,784,849,846,-1,784,2897,849,-1,5427,786,2866,-1,5427,787,786,-1,3373,3976,5376,-1,3327,3976,3373,-1,5424,2902,7411,-1,5424,780,2902,-1,7412,764,5359,-1,7412,3978,764,-1,5422,3533,5368,-1,3333,3533,5422,-1,4246,5370,5369,-1,4245,5370,4246,-1,5423,3978,7413,-1,762,3978,5423,-1,7414,5353,5356,-1,838,5353,7414,-1,5411,832,5405,-1,5411,826,832,-1,842,826,5411,-1,3536,5415,5413,-1,823,5415,3536,-1,823,754,5415,-1,5358,5407,3979,-1,5407,5358,5406,-1,5355,5408,3980,-1,5408,5355,5409,-1,5402,7415,5400,-1,5416,7415,5402,-1,7416,5409,7417,-1,4198,5409,7416,-1,7418,4193,5406,-1,4193,7418,7419,-1,7420,841,2870,-1,4200,841,7420,-1,4207,5419,5404,-1,7421,5419,4207,-1,837,5400,3963,-1,5403,5400,837,-1,7422,5399,5397,-1,5399,7422,4203,-1,7423,7417,7424,-1,7416,7417,7423,-1,4167,7425,7426,-1,7425,4167,7427,-1,7425,828,3964,-1,828,7425,831,-1,683,5357,5350,-1,5357,683,3992,-1,7428,2862,884,-1,3969,2862,7428,-1,3968,5396,2862,-1,3968,7429,5396,-1,822,7428,884,-1,7428,822,760,-1,821,3535,860,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=35 */
		private int[] getmand_Geo_5_877_coordIndex_35()
		{
			int[] value = {821,820,3535,-1,699,819,816,-1,699,698,819,-1,3970,5393,5392,-1,3970,815,5393,-1,3981,751,748,-1,3981,3531,751,-1,718,5374,7410,-1,718,720,5374,-1,7430,5341,7392,-1,5341,7430,5339,-1,5439,5334,7431,-1,5334,5439,3984,-1,5383,4126,4125,-1,5383,7432,4126,-1,4123,5385,7433,-1,5385,4123,4122,-1,7434,788,3973,-1,789,788,7434,-1,5379,797,3974,-1,797,5379,5378,-1,2888,7433,2893,-1,7433,2888,5380,-1,2914,7435,2915,-1,7435,2914,7436,-1,787,739,738,-1,787,3975,739,-1,791,7437,3524,-1,789,7437,791,-1,5378,3972,797,-1,802,3972,5378,-1,725,802,5378,-1,784,802,725,-1,750,5373,808,-1,794,5373,750,-1,5421,5367,3962,-1,5421,5368,5367,-1,2868,867,2869,-1,777,867,2868,-1,3962,2903,5421,-1,3962,865,2903,-1,7412,7413,3978,-1,4096,7413,7412,-1,3988,3523,5364,-1,2926,3523,3988,-1,7393,5363,5360,-1,5347,5363,7393,-1,760,2871,7428,-1,759,2871,760,-1,5418,5357,3967,-1,5418,5356,5357,-1,742,5415,754,-1,742,741,5415,-1,2878,7438,5355,-1,7438,2878,2877,-1,5392,5354,3970,-1,5416,5354,5392,-1,7429,842,5411,-1,842,7429,3968,-1,5361,5349,5348,-1,5361,7401,5349,-1,5365,5170,7439,-1,5170,5365,7440,-1,3990,2926,3988,-1,2926,3990,5320,-1,2912,3991,2925,-1,3991,2912,2880,-1,696,753,697,-1,740,753,696,-1,3525,695,697,-1,3525,2883,695,-1,2930,5343,3521,-1,5343,2930,7392,-1,5388,7430,5387,-1,5388,7441,7430,-1,5341,895,5442,-1,5341,5340,895,-1,2927,678,682,-1,2927,679,678,-1,730,723,5337,-1,730,719,723,-1,2896,796,2894,-1,2896,722,796,-1,7396,5338,5389,-1,5338,7396,5336,-1,5438,2844,2846,-1,5438,3982,2844,-1,715,731,713,-1,731,715,3987,-1,3987,708,731,-1,708,3987,709,-1,5395,858,881,-1,859,858,5395,-1,7442,5332,5445,-1,7442,5330,5332,-1,3482,5329,5328,-1,3482,693,5329,-1,5327,7443,7444,-1,7443,5327,5325,-1,5324,7407,7444,-1,7407,5324,5323,-1,2996,7445,599,-1,2996,5219,7445,-1,5319,3959,899,-1,3959,5319,7446,-1,5315,5319,5318,-1,5319,5315,7447,-1,468,5315,5317,-1,5315,468,3520,-1,3475,5313,3519,-1,3475,1559,5313,-1,4019,7448,3467,-1,4019,5311,7448,-1,3480,7449,7450,-1,3480,5310,7449,-1,5223,472,478,-1,472,5223,473,-1,609,6762,610,-1,671,6762,609,-1,7451,329,328,-1,329,7451,4032,-1,6761,5214,7452,-1,5214,6761,5212,-1,537,2987,538,-1,537,7451,2987,-1,646,3489,3490,-1,2973,3489,646,-1,3994,2953,666,-1,4909,2953,3994,-1,7453,5292,5291,-1,5292,7453,5305,-1,653,7454,654,-1,653,5302,7454,-1,616,648,655,-1,615,648,616,-1,2980,3997,5289,-1,2980,640,3997,-1,5287,631,7455,-1,631,5287,632,-1,5300,2962,3511,-1,5300,658,2962,-1,659,7456,2956,-1,7456,659,4877,-1,7457,2955,4874,-1,7457,663,2955,-1,5301,7455,631,-1,7458,7455,5301,-1,3999,623,526,-1,623,3999,4000,-1,4858,625,5285,-1,4858,7459,625,-1,5286,3512,2960,-1,5286,5296,3512,-1,4857,2968,4855,-1,664,2968,4857,-1,6747,2943,5294,-1,2943,6747,1779,-1,2968,5294,5293,-1,2967,5294,2968,-1,5292,2969,3508,-1,5292,2970,2969,-1,2966,656,655,-1,2966,641,656,-1,313,3033,3116,-1,3032,3033,313,-1,2962,636,2963,-1,2962,637,636,-1,7460,663,7457,-1,7460,634,663,-1,5284,5297,3507,-1,5284,2959,5297,-1,3507,7461,618,-1,3507,5297,7461,-1,5284,622,621,-1,5284,660,622,-1,4002,617,506,-1,4002,2983,617,-1,669,672,469,-1,669,609,672,-1,7462,467,466,-1,467,7462,4018,-1,5278,5230,5225,-1,5278,5277,5230,-1,3002,7442,515,-1,7442,3002,3502,-1,5282,7463,7464,-1,5283,7463,5282,-1,451,3000,7465,-1,453,3000,451,-1,7466,571,7467,-1,7466,569,571,-1,7468,4691,5252,-1,4691,7468,4692,-1,5272,3016,3498,-1,4699,3016,5272,-1,4678,5245,7469,-1,4678,5243,5245,-1,3495,7470,3021,-1,7470,3495,4681,-1,7471,2999,2998,-1,7471,5251,2999,-1,3503,590,593,-1,3503,5260,590,-1,3047,7472,5267,-1,3047,5275,7472,-1,595,5231,4004,-1,5231,595,5261,-1,5279,5265,5241,-1,5279,5264,5265,-1,595,7473,5262,-1,7473,595,594,-1,453,3503,3000,-1,3503,453,5210,-1,521,3009,5234,-1,520,3009,521,-1,589,5254,7474,-1,589,588,5254,-1,3401,3500,4642,-1,3401,3012,3500,-1,3012,3242,582,-1,3012,3401,3242,-1,4626,5249,4624,-1,4011,5249,4626,-1,4694,576,4012,-1,576,4694,5258,-1,507,3010,583,-1,507,509,3010,-1,507,513,508,-1,513,507,3015,-1,603,3003,3501,-1,3003,603,602,-1,5268,5273,7475,-1,5273,5268,3042,-1,598,5252,5251,-1,7468,5252,598,-1,5250,4009,5257,-1,5250,3488,4009,-1,5244,7471,5242,-1,5244,597,7471,-1,3017,5245,5242,-1,3021,5245,3017,-1,3043,894,517,-1,3043,3044,894,-1,3052,3001,554,-1,3001,3052,7450,-1,479,4005,4006,-1,479,3468,4005,-1,479,3050,3468,-1,491,488,489,-1,491,545,488,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=36 */
		private int[] getmand_Geo_5_877_coordIndex_36()
		{
			int[] value = {544,547,3026,-1,544,548,547,-1,3031,526,310,-1,526,3031,3030,-1,2987,328,3506,-1,2987,7451,328,-1,5238,554,322,-1,554,5238,555,-1,2448,538,540,-1,2448,537,538,-1,3492,669,4031,-1,670,669,3492,-1,600,5236,601,-1,600,5342,5236,-1,5441,521,5233,-1,5441,3486,521,-1,530,527,623,-1,530,532,527,-1,2945,657,3490,-1,4015,657,2945,-1,3041,4014,528,-1,5232,4014,3041,-1,525,319,585,-1,319,525,317,-1,2990,2932,2931,-1,4002,2932,2990,-1,3485,3047,3045,-1,3485,3046,3047,-1,7476,7477,550,-1,7476,7464,7477,-1,7463,5267,7472,-1,5267,7463,5263,-1,5277,5228,5230,-1,5228,5277,7465,-1,500,5253,3015,-1,499,5253,500,-1,897,516,515,-1,516,897,3959,-1,488,486,550,-1,488,487,486,-1,480,737,481,-1,480,2913,737,-1,475,2936,476,-1,2937,2936,475,-1,477,3505,2940,-1,3505,477,610,-1,2936,3479,2938,-1,2935,3479,2936,-1,7478,5219,5218,-1,7445,5219,7478,-1,5215,7462,5218,-1,5215,4018,7462,-1,5218,466,7478,-1,5218,7462,466,-1,580,3054,3005,-1,465,3054,580,-1,459,604,2994,-1,459,3060,604,-1,3474,5214,5211,-1,7452,5214,3474,-1,243,457,456,-1,243,242,457,-1,3062,244,2994,-1,3062,454,244,-1,457,3471,458,-1,457,3469,3471,-1,3471,4003,606,-1,3470,4003,3471,-1,7479,4020,2843,-1,3983,4020,7479,-1,7480,4021,903,-1,7480,3065,4021,-1,443,1030,3072,-1,443,3556,1030,-1,5199,5527,7375,-1,5198,5527,5199,-1,5530,7481,7482,-1,5530,3074,7481,-1,7483,5196,5195,-1,7404,5196,7483,-1,2805,1006,2806,-1,1007,1006,2805,-1,5521,5190,5189,-1,5521,7379,5190,-1,1015,2754,1013,-1,5193,2754,1015,-1,440,5518,7484,-1,440,4024,5518,-1,2776,2771,986,-1,2771,2776,993,-1,976,423,421,-1,976,424,423,-1,431,982,2745,-1,431,983,982,-1,1042,2838,7485,-1,2838,1042,906,-1,933,7389,942,-1,7389,933,5482,-1,5176,3454,7486,-1,3454,5176,3107,-1,295,291,296,-1,295,3131,291,-1,392,383,245,-1,392,1017,383,-1,268,371,389,-1,371,268,267,-1,5179,3105,3104,-1,2802,3105,5179,-1,5178,358,357,-1,5177,358,5178,-1,7365,5176,7487,-1,7365,5175,5176,-1,337,345,344,-1,336,345,337,-1,4028,338,4029,-1,4028,343,338,-1,1026,7488,7484,-1,1026,332,7488,-1,4013,3113,3518,-1,3113,4013,542,-1,3516,3117,7489,-1,3516,3114,3117,-1,2986,3115,3489,-1,3115,2986,2985,-1,3150,939,257,-1,3150,241,939,-1,3124,306,308,-1,305,306,3124,-1,887,914,877,-1,914,887,886,-1,294,4034,298,-1,294,272,4034,-1,288,3440,292,-1,288,303,3440,-1,260,279,270,-1,3135,279,260,-1,3464,1047,3463,-1,3464,1045,1047,-1,1044,276,275,-1,283,276,1044,-1,273,260,271,-1,260,273,261,-1,277,282,278,-1,912,282,277,-1,2735,301,300,-1,2735,2816,301,-1,3122,1049,1048,-1,1049,3122,3121,-1,5171,7439,5170,-1,7439,5171,5346,-1,4039,5168,4040,-1,4039,5166,5168,-1,607,5208,5311,-1,607,3466,5208,-1,5101,5161,5099,-1,5101,5158,5161,-1,3153,5119,7490,-1,5119,3153,3152,-1,7491,7492,5116,-1,7491,7493,7492,-1,5150,7492,7494,-1,5157,7492,5150,-1,5160,5149,5156,-1,5160,7495,5149,-1,7496,5155,7497,-1,5155,7496,5147,-1,3429,3154,3155,-1,3429,7498,3154,-1,7499,5153,5144,-1,7500,5153,7499,-1,5151,3161,7501,-1,5151,3427,3161,-1,7502,5141,7503,-1,7502,5148,5141,-1,7504,3157,5146,-1,7504,5073,3157,-1,228,5144,5078,-1,228,7499,5144,-1,7505,5140,7506,-1,7505,5139,5140,-1,5138,7507,5136,-1,7507,5138,7508,-1,7507,5134,4904,-1,7507,5132,5134,-1,5130,7490,5129,-1,7490,5130,3153,-1,5127,7509,5125,-1,7509,5127,7497,-1,5123,7509,5121,-1,7509,5123,7508,-1,7490,5117,7506,-1,7490,5119,5117,-1,7510,5116,5114,-1,7491,5116,7510,-1,7511,5113,5111,-1,5117,5113,7511,-1,7512,5110,5109,-1,5114,5110,7512,-1,7512,4896,5107,-1,4894,4896,7512,-1,4899,7505,7511,-1,4899,4898,7505,-1,5104,5098,5095,-1,5102,5098,5104,-1,5098,7513,5096,-1,5098,5162,7513,-1,5162,5156,7513,-1,5162,5160,5156,-1,5066,5081,5087,-1,5081,5066,5093,-1,7514,220,3167,-1,7514,7515,220,-1,235,5092,5090,-1,235,237,5092,-1,216,7516,3169,-1,234,7516,216,-1,5142,233,5088,-1,5142,3165,233,-1,7517,5086,5085,-1,7517,7518,5086,-1,5073,5083,5080,-1,5073,7504,5083,-1,231,7519,7514,-1,231,5145,7519,-1,3166,4041,5079,-1,4041,3166,238,-1,5090,4043,235,-1,5090,226,4043,-1,5077,7520,5075,-1,7520,5077,5091,-1,225,234,223,-1,234,225,7516,-1,5061,3170,5071,-1,7521,3170,5061,-1,7521,217,3170,-1,5068,217,7521,-1,5068,4044,217,-1,5065,4044,5068,-1,5065,7522,4044,-1,4045,220,7515,-1,4045,218,220,-1,7522,5067,5094,-1,7522,5065,5067,-1,7521,5063,5093,-1,7521,5061,5063,-1,4878,5060,4876,-1,4878,7523,5060,-1,5056,5023,7524,-1,5055,5023,5056,-1,5026,5053,5018,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=37 */
		private int[] getmand_Geo_5_877_coordIndex_37()
		{
			int[] value = {5026,7525,5053,-1,3183,5015,7526,-1,5015,3183,5009,-1,7527,4048,5042,-1,4048,7527,5051,-1,5008,206,5006,-1,5008,207,206,-1,4990,3182,3419,-1,3182,4990,7528,-1,3180,7523,7529,-1,7523,3180,5031,-1,7530,5046,7531,-1,5046,7530,5045,-1,5044,7532,4887,-1,5044,7529,7532,-1,3179,5014,5041,-1,3179,5036,5014,-1,213,5020,5039,-1,213,212,5020,-1,5037,7533,5036,-1,7533,5037,5045,-1,5030,5035,5029,-1,5030,5024,5035,-1,7523,5032,5060,-1,5031,5032,7523,-1,4882,5034,7534,-1,5029,5034,4882,-1,5033,5028,5025,-1,5033,5057,5028,-1,4047,3423,5022,-1,4047,3426,3423,-1,7535,5019,5021,-1,7535,5027,5019,-1,5018,5027,5026,-1,5019,5027,5018,-1,5016,5041,5014,-1,5016,7536,5041,-1,3422,5012,7537,-1,5012,3422,3171,-1,5003,211,210,-1,5003,5048,211,-1,5005,5008,5004,-1,5005,5049,5008,-1,5007,3425,5004,-1,5007,7524,3425,-1,5002,209,7525,-1,5002,210,209,-1,5000,5054,5053,-1,5000,7538,5054,-1,4996,5050,7539,-1,5050,4996,4997,-1,4995,4990,4991,-1,7528,4990,4995,-1,7540,4988,4987,-1,7540,4999,4988,-1,4985,5295,7459,-1,4985,7541,5295,-1,7542,4980,4984,-1,7542,4979,4980,-1,4657,4983,4660,-1,4983,4657,4981,-1,4972,4979,7543,-1,4979,4972,4971,-1,4860,4969,4975,-1,4860,4968,4969,-1,4974,4976,4967,-1,4973,4976,4974,-1,201,4972,204,-1,4972,201,4964,-1,4970,7544,7545,-1,4968,7544,4970,-1,4959,4970,7546,-1,4966,4970,4959,-1,3190,3415,3191,-1,3190,3189,3415,-1,7547,205,7548,-1,205,7547,202,-1,4965,4963,7549,-1,4965,4962,4963,-1,4963,7550,7551,-1,4963,3194,7550,-1,4961,7552,7553,-1,4961,4960,7552,-1,7554,4957,7555,-1,4957,7554,4955,-1,203,7556,4954,-1,203,202,7556,-1,4952,7557,4951,-1,4952,4954,7557,-1,4950,7558,4960,-1,4950,4948,7558,-1,4052,7554,198,-1,7554,4052,4936,-1,7559,4055,194,-1,7559,4936,4055,-1,192,7557,4943,-1,7557,192,191,-1,4941,196,197,-1,4940,196,4941,-1,4939,7558,7560,-1,4937,7558,4939,-1,4052,4054,4053,-1,4052,200,4054,-1,4055,180,195,-1,4055,4053,180,-1,3200,192,4934,-1,192,3200,193,-1,4927,4941,4928,-1,4932,4941,4927,-1,4939,187,4057,-1,4939,4930,187,-1,180,4058,181,-1,180,183,4058,-1,4924,4056,190,-1,4056,4924,4923,-1,4927,4920,4931,-1,4927,4918,4920,-1,3199,174,176,-1,4916,174,3199,-1,4923,7561,7562,-1,4925,7561,4923,-1,4919,7563,4920,-1,4919,7564,7563,-1,182,4917,179,-1,7565,4917,182,-1,7566,185,3198,-1,7566,4914,185,-1,3514,7567,5302,-1,3514,4913,7567,-1,4906,4857,4854,-1,5306,4857,4906,-1,7568,4903,4902,-1,7568,4909,4903,-1,4906,7569,7570,-1,4906,4905,7569,-1,7571,4904,5134,-1,7571,4902,4904,-1,4897,7572,4913,-1,4897,4899,7572,-1,7573,4895,4894,-1,4911,4895,7573,-1,4891,5131,7574,-1,4890,5131,4891,-1,4880,5301,4889,-1,5301,4880,7575,-1,4887,7576,4885,-1,7576,4887,7532,-1,7534,4873,4882,-1,4871,4873,7534,-1,4881,7575,4880,-1,4881,7531,7575,-1,4877,5059,7456,-1,4876,5059,4877,-1,7577,4874,4871,-1,7577,7457,4874,-1,3512,4861,2961,-1,4861,3512,4984,-1,4866,7578,7579,-1,7578,4866,4865,-1,4863,4975,4865,-1,4863,4860,4975,-1,4643,7579,7578,-1,7579,4643,4642,-1,4780,7580,7581,-1,4790,7582,4788,-1,4780,4775,7580,-1,4782,4775,4780,-1,4782,4778,4775,-1,7583,4778,4782,-1,7583,7584,4778,-1,7585,7584,7583,-1,7585,7586,7584,-1,4786,7586,7585,-1,4786,4774,7586,-1,4783,4774,4786,-1,4783,4772,4774,-1,7587,4772,4783,-1,7587,7588,4772,-1,7582,7588,7587,-1,7582,4790,7588,-1,4845,4690,4687,-1,4690,4845,4844,-1,4851,4686,4683,-1,4686,4851,7589,-1,4847,7590,7591,-1,4847,4849,7590,-1,3204,7592,4652,-1,7592,3204,7593,-1,4846,172,4844,-1,172,4846,173,-1,169,4843,7589,-1,4843,169,168,-1,4831,4841,7594,-1,4841,4831,4830,-1,4838,4821,4846,-1,4838,4840,4821,-1,169,4834,170,-1,169,4836,4834,-1,4815,4831,3413,-1,4831,4815,4829,-1,4646,4828,4827,-1,4646,4812,4828,-1,4826,4837,4825,-1,4837,4826,7595,-1,7596,7597,7595,-1,7597,7596,4803,-1,4819,4799,4833,-1,4819,4818,4799,-1,4816,4829,4815,-1,4829,4816,4793,-1,4812,4791,4828,-1,4812,4811,4791,-1,7598,7595,4826,-1,7595,7598,7596,-1,4784,4803,7596,-1,4803,4784,4801,-1,4818,4797,4799,-1,4818,4781,4797,-1,4776,4793,4816,-1,4793,4776,4796,-1,4811,4792,4791,-1,4811,4773,4792,-1,4792,4790,4787,-1,4792,7588,4790,-1,7587,4785,4808,-1,4785,7587,4783,-1,4804,4782,4779,-1,4804,7583,4782,-1,7580,4777,4800,-1,4777,7580,4775,-1,4794,4774,4771,-1,4794,7586,4774,-1,4663,4756,4769,-1,4663,7599,4756,-1,3213,7600,3214,-1,7601,7600,3213,-1,4752,4668,4666,-1,4668,4752,4763,-1,7599,4665,7602,-1,4663,4665,7599,-1,4758,7599,4748,-1,4756,7599,4758,-1,4765,4152,4742,-1,4765,4150,4152,-1,4751,4763,4752,-1,4763,4751,4750,-1,3407,4759,4750,-1,4759,3407,3218,-1,4748,162,4758,-1,4748,3221,162,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=38 */
		private int[] getmand_Geo_5_877_coordIndex_38()
		{
			int[] value = {4060,4735,159,-1,4060,4755,4735,-1,4744,4734,4151,-1,4744,4746,4734,-1,4738,4753,4741,-1,4753,4738,4737,-1,4739,4749,4737,-1,4749,4739,157,-1,3227,159,4735,-1,159,3227,160,-1,4746,4732,4734,-1,4746,7603,4732,-1,4731,4732,4720,-1,4729,4732,4731,-1,157,7604,155,-1,157,4739,7604,-1,4061,4726,4727,-1,4061,4724,4726,-1,3228,4708,3404,-1,3228,4062,4708,-1,4724,7605,4726,-1,4724,4705,7605,-1,7606,156,155,-1,156,7606,4723,-1,4731,4716,4722,-1,4731,7607,4716,-1,7608,4723,7606,-1,4723,7608,7609,-1,7607,4714,4716,-1,7607,7610,4714,-1,4725,4713,4710,-1,4725,7611,4713,-1,4708,7612,4707,-1,4708,7613,7612,-1,3235,4704,151,-1,3235,7614,4704,-1,4723,4703,4700,-1,4723,7609,4703,-1,4685,7615,4698,-1,7615,4685,4684,-1,7616,7466,7467,-1,7466,7616,7617,-1,4653,7617,7616,-1,7617,4653,7618,-1,4690,7619,4688,-1,7619,4690,7620,-1,4686,7621,4684,-1,7621,4686,7622,-1,4682,7470,4681,-1,7470,4682,7623,-1,7624,4680,4679,-1,5270,4680,7624,-1,149,7625,150,-1,149,4124,7625,-1,7623,4675,4673,-1,7623,7626,4675,-1,7624,4672,4669,-1,7624,7627,4672,-1,7628,4063,150,-1,4063,7628,4666,-1,4675,4665,4662,-1,4675,7629,4665,-1,4672,7630,4670,-1,4672,4770,7630,-1,147,4661,7631,-1,147,4658,4661,-1,146,4658,147,-1,146,4656,4658,-1,7555,4656,146,-1,7555,4957,4656,-1,4635,4654,4633,-1,4635,7632,4654,-1,7633,4647,4649,-1,7633,4645,4647,-1,7632,3205,4654,-1,7632,4644,3205,-1,7634,3208,4644,-1,7634,3410,3208,-1,4008,7635,142,-1,589,7635,4008,-1,7636,4641,7631,-1,4640,4641,7636,-1,4696,5258,4694,-1,4696,7637,5258,-1,4626,4632,5259,-1,4625,4632,4626,-1,4634,4653,7616,-1,4634,4633,4653,-1,4630,4655,4627,-1,4630,4629,4655,-1,7638,4540,7639,-1,7638,4541,4540,-1,4535,4541,7638,-1,4535,7640,4541,-1,4536,7640,4535,-1,7641,7640,4536,-1,7641,4539,7640,-1,7641,4537,4539,-1,7641,7642,4537,-1,4528,7642,7641,-1,4528,7643,7642,-1,4525,7643,4528,-1,4545,7643,4525,-1,4545,7644,7643,-1,4545,4542,7644,-1,4623,3331,4269,-1,3331,4623,4607,-1,3357,4603,4267,-1,3357,4619,4603,-1,4618,4265,4264,-1,4265,4618,7645,-1,4558,4094,33,-1,4094,4558,4599,-1,4598,4107,4614,-1,4107,4598,4148,-1,4611,4595,4621,-1,4611,4610,4595,-1,7646,7647,7648,-1,7649,7647,7646,-1,4604,4616,4602,-1,4616,4604,7650,-1,3400,7651,4599,-1,7651,3400,3243,-1,3246,4604,4601,-1,4604,3246,3245,-1,4596,7652,4612,-1,4596,4589,7652,-1,4605,137,4588,-1,4605,4594,137,-1,3246,4593,4590,-1,4601,4593,3246,-1,7653,7654,7655,-1,7653,7656,7654,-1,4589,7657,7652,-1,4589,4067,7657,-1,7656,4530,7654,-1,7656,4562,4530,-1,124,4587,7658,-1,4587,124,4581,-1,139,3397,4579,-1,139,138,3397,-1,3255,132,3247,-1,132,3255,133,-1,4067,7659,7657,-1,4067,131,7659,-1,3259,4584,4583,-1,7660,4584,3259,-1,126,4581,124,-1,4581,126,4572,-1,7661,4575,4134,-1,7661,7662,4575,-1,4578,3396,7663,-1,3397,3396,4578,-1,4526,4066,4065,-1,7664,4066,4526,-1,7662,4550,4575,-1,7662,4548,4550,-1,4573,4582,4572,-1,4582,4573,7665,-1,3265,7666,3391,-1,4560,7666,3265,-1,4571,7667,4570,-1,4571,7668,7667,-1,4568,4533,4532,-1,4568,4534,4533,-1,7649,4567,7668,-1,4567,7649,4064,-1,7669,4564,4565,-1,7669,7653,4564,-1,4563,4556,4561,-1,4563,4554,4556,-1,7648,4608,7646,-1,4606,4608,7648,-1,4556,7670,4574,-1,4556,4555,7670,-1,4553,4573,3262,-1,4573,4553,7671,-1,7672,4551,4548,-1,7672,7673,4551,-1,4578,4542,4544,-1,4578,7644,4542,-1,7664,4536,4534,-1,7664,7641,4536,-1,7663,7644,4578,-1,7663,7643,7644,-1,7639,3256,123,-1,3256,7639,4540,-1,4065,4527,4526,-1,4065,117,4527,-1,112,7667,113,-1,7667,112,4592,-1,7654,136,135,-1,136,7654,4530,-1,7674,3263,7675,-1,7674,3264,3263,-1,4230,4521,7676,-1,4230,4227,4521,-1,7677,4071,4226,-1,7677,7678,4071,-1,7678,110,4071,-1,7678,4516,110,-1,3343,4379,4513,-1,3343,3342,4379,-1,4520,7679,4518,-1,4520,4522,7679,-1,7680,4517,7681,-1,4517,7680,4506,-1,7682,7683,7684,-1,7683,7682,4509,-1,4516,7685,110,-1,4516,4499,7685,-1,107,4083,4514,-1,4083,107,4417,-1,4501,7686,4511,-1,7686,4501,4500,-1,4510,7687,4508,-1,7687,4510,4491,-1,4395,4504,4503,-1,4395,4392,4504,-1,4501,3278,3275,-1,4501,4512,3278,-1,4072,4481,4498,-1,4072,4074,4481,-1,108,7688,7689,-1,4076,7688,108,-1,7690,4512,4381,-1,4512,7690,3278,-1,4496,4507,4494,-1,4507,4496,4474,-1,4492,4505,4490,-1,4505,4492,4470,-1,4476,4392,7691,-1,4504,4392,4476,-1,4074,4484,4481,-1,4074,4466,4484,-1,7689,4480,108,-1,7689,7692,4480,-1,7691,4479,4476,-1,7691,7693,4479,-1,4460,4474,4496,-1,4474,4460,4472,-1,4464,4470,4492,-1,4470,4464,4468,-1,4480,102,106,-1,4480,4457,102,-1,3277,4454,7694,-1,3277,3276,4454,-1,4482,7695,7696,-1,4482,7697,7695,-1,7698,4471,98,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=39 */
		private int[] getmand_Geo_5_877_coordIndex_39()
		{
			int[] value = {4383,4471,7698,-1,4448,4461,4477,-1,4461,4448,4459,-1,7699,4465,4475,-1,4465,7699,4452,-1,7695,4456,4455,-1,7695,92,4456,-1,4420,4413,7700,-1,4413,4420,4412,-1,4078,3281,3280,-1,3281,4078,95,-1,7701,4452,7699,-1,4452,7701,4442,-1,4077,7698,98,-1,7698,4077,7702,-1,4450,4459,4448,-1,4459,4450,4444,-1,95,3387,4445,-1,95,97,3387,-1,4438,92,4079,-1,4456,92,4438,-1,4080,7703,89,-1,7703,4080,4439,-1,4434,7704,4443,-1,7704,4434,7705,-1,4432,100,4441,-1,100,4432,7706,-1,4389,3293,4447,-1,4389,3294,3293,-1,86,96,4439,-1,96,86,84,-1,7707,4435,7708,-1,4435,7707,4425,-1,7709,4433,7710,-1,4433,7709,4427,-1,7711,4081,7712,-1,4081,7711,87,-1,4429,7713,7714,-1,4429,4428,7713,-1,7715,4425,7707,-1,4425,7715,4423,-1,7716,4427,7709,-1,4427,7716,4430,-1,4421,7700,103,-1,4420,7700,4421,-1,4417,7717,4083,-1,4416,7717,4417,-1,4415,7718,4380,-1,4415,4497,7718,-1,7719,4376,4412,-1,7719,7720,4376,-1,4411,4394,4393,-1,4411,4487,4394,-1,4410,4391,4388,-1,4410,4440,4391,-1,4403,4436,4401,-1,4436,4403,7721,-1,4384,4397,4399,-1,4488,4397,4384,-1,3338,4379,3342,-1,3338,4382,4379,-1,4524,7676,4522,-1,4524,4230,7676,-1,4394,7691,4392,-1,4394,7722,7691,-1,3294,4391,7723,-1,4391,3294,4389,-1,3290,7721,3291,-1,3381,7721,3290,-1,4400,4383,7698,-1,4400,4386,4383,-1,7718,4381,4380,-1,7718,7690,4381,-1,7720,90,4376,-1,7720,91,90,-1,4294,3319,7724,-1,4294,4300,3319,-1,4296,4300,4294,-1,7725,4300,4296,-1,7725,4298,4300,-1,7726,4298,7725,-1,4291,4298,7726,-1,3326,4298,4291,-1,3326,4091,4298,-1,42,4091,3326,-1,41,4091,42,-1,7727,4091,41,-1,7728,4091,7727,-1,7728,4290,4091,-1,73,4205,4366,-1,4205,73,6,-1,4365,7729,4363,-1,4365,7730,7729,-1,4084,4179,70,-1,4179,4084,4353,-1,4361,4348,7731,-1,4361,4360,4348,-1,66,4163,4304,-1,65,4163,66,-1,57,7,63,-1,7,57,4358,-1,7732,4357,4177,-1,7732,4334,4357,-1,7733,4355,4174,-1,7733,4331,4355,-1,4304,4354,66,-1,4304,4301,4354,-1,7734,4353,4084,-1,4353,7734,4351,-1,7735,4348,4360,-1,4348,7735,4350,-1,61,4339,62,-1,61,4337,4339,-1,4354,4344,4346,-1,4354,52,4344,-1,4320,4342,4351,-1,4342,4320,4340,-1,4350,4336,4338,-1,4350,4318,4336,-1,58,4328,59,-1,58,4335,4328,-1,4359,4326,4332,-1,4359,3378,4326,-1,4356,4324,4329,-1,4356,4323,4324,-1,7736,50,7737,-1,50,7736,51,-1,4088,34,4093,-1,4088,59,34,-1,7738,4325,4323,-1,7738,7739,4325,-1,62,4295,4322,-1,62,4339,4295,-1,4089,4344,52,-1,4344,4089,7740,-1,4340,3325,3324,-1,4340,4320,3325,-1,4318,4293,4336,-1,4318,4317,4293,-1,3374,4313,37,-1,4311,4313,3374,-1,4311,7741,4314,-1,4311,4315,7741,-1,50,4310,4307,-1,50,49,4310,-1,43,4306,3322,-1,7742,4306,43,-1,4165,4304,4163,-1,4304,4165,4302,-1,4299,4091,4090,-1,4299,4298,4091,-1,7724,4295,4294,-1,4322,4295,7724,-1,4292,7726,4319,-1,4292,4291,7726,-1,4290,7740,4089,-1,7740,4290,7728,-1,3377,7736,3375,-1,7736,3377,4372,-1,4087,3374,60,-1,4285,3374,4087,-1,49,3314,4310,-1,49,3315,3314,-1,4327,4283,4368,-1,4327,4284,4283,-1,36,3317,4093,-1,3317,36,4370,-1,4373,4281,4280,-1,7739,4281,4373,-1,3372,29,4277,-1,29,3372,30,-1,849,4276,4109,-1,849,848,4276,-1,7743,2866,4268,-1,5427,2866,7743,-1,4273,4272,5426,-1,4273,4263,4272,-1,4270,4622,4269,-1,4270,3329,4622,-1,4615,4109,4276,-1,4109,4615,4614,-1,4617,4266,7744,-1,4266,4617,4264,-1,7745,4569,7746,-1,4569,7745,7747,-1,3330,7748,30,-1,7749,7748,3330,-1,3359,4259,7746,-1,3359,0,4259,-1,4228,844,7750,-1,844,4228,4256,-1,5424,4225,4252,-1,5424,4223,4225,-1,4250,5423,4220,-1,4249,5423,4250,-1,7751,4247,3348,-1,7751,2867,4247,-1,5422,4217,4216,-1,5422,5420,4217,-1,4227,3343,4521,-1,4227,11,3343,-1,7684,4243,4237,-1,7752,4243,7684,-1,14,7681,15,-1,14,4242,7681,-1,4240,4221,4235,-1,4221,4240,7753,-1,4239,7684,4237,-1,7684,4239,7682,-1,4235,18,17,-1,4235,4221,18,-1,74,4095,3368,-1,4095,74,3380,-1,15,4247,16,-1,15,7754,4247,-1,4232,26,3369,-1,27,26,4232,-1,4524,4255,4256,-1,4524,4523,4255,-1,4225,7755,4253,-1,4224,7755,4225,-1,18,79,19,-1,77,79,18,-1,7752,4217,4248,-1,7752,4215,4217,-1,4213,5399,4192,-1,4212,5399,4213,-1,4210,7756,4208,-1,4210,2873,7756,-1,4366,839,7757,-1,839,4366,4205,-1,5401,4204,4202,-1,5401,7758,4204,-1,4200,4182,4199,-1,4200,7420,4182,-1,4097,7423,8,-1,7423,4097,7759,-1,4178,7760,4197,-1,7760,4178,4186,-1,7761,7762,7758,-1,7761,7763,7762,-1,7764,4192,3353,-1,4213,4192,7764,-1,4208,7765,7730,-1,4208,7756,7765,-1,4185,4361,4196,-1,4185,4187,4361,-1,4085,4199,4182,-1,4199,4085,67,-1,4097,64,7759,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=40 */
		private int[] getmand_Geo_5_877_coordIndex_40()
		{
			int[] value = {4097,65,64,-1,4179,4186,4178,-1,4186,4179,4184,-1,7762,4177,4176,-1,7762,7732,4177,-1,38,4169,7766,-1,4172,4169,38,-1,7427,7767,2872,-1,7427,4189,7767,-1,4166,4175,4305,-1,4166,7768,4175,-1,4201,830,2874,-1,7766,830,4201,-1,4162,4158,7769,-1,4162,4156,4158,-1,4155,4110,4154,-1,4110,4155,4111,-1,4158,4150,7770,-1,4158,4153,4150,-1,7771,167,4745,-1,4155,167,7771,-1,7772,4143,4103,-1,7772,7773,4143,-1,4148,4105,4107,-1,4148,4147,4105,-1,4147,4141,7774,-1,4147,4139,4141,-1,4144,4137,4149,-1,4144,4135,4137,-1,4141,4131,7775,-1,4141,4140,4131,-1,4136,7776,4137,-1,4136,3266,7776,-1,4133,4584,4138,-1,4133,4132,4584,-1,7776,4130,4129,-1,7776,7777,4130,-1,4113,7778,4128,-1,4113,3365,7778,-1,4125,7779,5386,-1,4125,4127,7779,-1,4124,4677,4122,-1,4124,149,4677,-1,4121,4127,4120,-1,4121,4162,4127,-1,4124,4119,7625,-1,4117,4119,4124,-1,7600,4112,7780,-1,7600,7601,4112,-1,4111,4121,3363,-1,4111,4161,4121,-1,4106,846,4104,-1,846,4106,803,-1,4102,3973,4100,-1,3973,4102,7434,-1,4106,7781,7782,-1,4106,4105,7781,-1,4102,4,3,-1,4102,4101,4,-1,7746,3360,3359,-1,4569,3360,7746,-1,4108,4103,4100,-1,4108,7772,4103,-1,4614,4104,4109,-1,4614,4107,4104,-1,801,7782,4108,-1,804,7782,801,-1,4767,7625,4119,-1,4767,4766,7625,-1,4159,3362,4115,-1,4159,4110,3362,-1,7780,4114,7783,-1,7780,4112,4114,-1,7769,4118,7779,-1,7769,4116,4118,-1,4118,4123,7784,-1,4118,4117,4123,-1,3364,4126,7785,-1,3364,4120,4126,-1,7783,3493,3027,-1,7783,4114,3493,-1,4130,4262,4099,-1,4262,4130,4565,-1,4140,4134,4131,-1,4140,7661,4134,-1,4145,4138,4135,-1,4145,4133,4138,-1,4586,4139,4146,-1,4586,4142,4139,-1,7773,4145,4143,-1,7773,7775,4145,-1,7781,7773,7772,-1,7781,7774,7773,-1,4149,4101,4144,-1,4101,4149,4,-1,4157,4151,4153,-1,4157,4744,4151,-1,4755,4154,4160,-1,4755,4060,4154,-1,7771,4156,4161,-1,7771,4157,4156,-1,4160,7601,3213,-1,7601,4160,4159,-1,7765,7767,7786,-1,7767,7765,7756,-1,834,10,9,-1,10,834,4164,-1,4305,4168,4166,-1,4188,4168,4305,-1,829,4171,836,-1,829,4169,4171,-1,7764,4174,4173,-1,7764,7733,4174,-1,5,7787,7763,-1,5,4098,7787,-1,71,4180,7788,-1,4180,71,70,-1,4171,4165,4164,-1,4171,4170,4165,-1,4194,4183,4181,-1,4194,7731,4183,-1,5,7761,4206,-1,7761,5,7763,-1,4175,4211,4173,-1,7768,4211,4175,-1,4204,3366,4191,-1,4204,4176,3366,-1,4185,4193,7419,-1,4193,4185,4196,-1,7788,4198,7416,-1,4198,7788,4180,-1,836,4164,834,-1,836,4171,4164,-1,4195,4181,7789,-1,4195,4194,4181,-1,4206,5403,837,-1,5403,4206,7761,-1,7421,4209,4367,-1,7421,4207,4209,-1,7768,4214,4211,-1,2875,4214,7768,-1,4218,3334,4216,-1,4218,14,3334,-1,4220,4243,4250,-1,4219,4243,4220,-1,4222,7753,3337,-1,4222,4221,7753,-1,7790,7677,7791,-1,7792,7677,7790,-1,11,4229,12,-1,11,4227,4229,-1,3380,4233,4095,-1,3380,4231,4233,-1,3340,3368,3341,-1,74,3368,3340,-1,3339,3342,3367,-1,3338,3342,3339,-1,4240,3369,22,-1,4240,4232,3369,-1,4508,4242,4241,-1,4242,4508,7687,-1,3337,4234,4222,-1,3337,3336,4234,-1,23,4517,24,-1,23,7754,4517,-1,7683,4218,4215,-1,4218,7683,4241,-1,4238,3270,3269,-1,4219,3270,4238,-1,7790,845,4255,-1,845,7790,7793,-1,13,4246,3344,-1,4246,13,12,-1,4251,4217,5420,-1,4251,4248,4217,-1,4254,3370,4244,-1,3370,4254,4253,-1,7791,7793,7790,-1,7411,7793,7791,-1,7745,4257,7748,-1,7745,4261,4257,-1,0,3358,1,-1,0,3359,3358,-1,4261,4258,4257,-1,4258,4261,4260,-1,7794,4268,4267,-1,7743,4268,7794,-1,4094,4275,32,-1,4275,4094,7795,-1,4272,7796,3328,-1,4272,4271,7796,-1,4266,5428,7744,-1,4274,5428,4266,-1,3371,3361,2865,-1,3371,3358,3361,-1,32,850,852,-1,850,32,4275,-1,3329,4278,3327,-1,4278,3329,4270,-1,3318,4282,4279,-1,3318,4371,4282,-1,34,4368,35,-1,34,4327,4368,-1,48,51,4369,-1,47,51,48,-1,7786,7797,7765,-1,7786,4308,7797,-1,4325,4289,4286,-1,4325,4374,4289,-1,4288,4375,56,-1,4288,4287,4375,-1,7727,40,7798,-1,40,7727,41,-1,4317,4296,4293,-1,4317,7725,4296,-1,4300,3320,3319,-1,4297,3320,4300,-1,4303,53,4301,-1,53,4303,7799,-1,3376,4092,45,-1,3375,4092,3376,-1,3375,7737,4092,-1,7736,7737,3375,-1,4190,4308,7786,-1,4190,4309,4308,-1,4172,4312,4170,-1,4172,4313,4312,-1,3320,4315,4285,-1,4297,4315,3320,-1,4316,4292,4319,-1,4316,4343,4292,-1,7798,4321,4347,-1,4321,7798,40,-1,7741,4090,7799,-1,7741,4299,4090,-1,4288,4324,4286,-1,4330,4324,4288,-1,4326,4281,4333,-1,4326,4279,4281,-1,4328,4284,4327,-1,4328,3379,4284,-1,55,4331,4330,-1,4355,4331,55,-1,4334,7738,4357,-1,4334,4333,7738,-1,57,3316,4358,-1,57,4088,3316,-1,45,4355,55,-1,44,4355,45,-1,4343,7735,4341,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=41 */
		private int[] getmand_Geo_5_877_coordIndex_41()
		{
			int[] value = {7735,4343,4316,-1,4347,7734,4345,-1,7734,4347,4321,-1,4314,7799,4303,-1,4314,7741,7799,-1,68,4338,4337,-1,68,4349,4338,-1,4342,4362,4352,-1,4362,4342,4341,-1,3312,4345,72,-1,3312,4346,4345,-1,7742,4309,4306,-1,4309,7742,4307,-1,3354,4329,3355,-1,3354,4356,4329,-1,4098,4332,7787,-1,4098,4359,4332,-1,4335,4086,4363,-1,4086,4335,58,-1,68,4183,4349,-1,4085,4183,68,-1,4352,4187,4184,-1,4187,4352,4362,-1,4086,73,4364,-1,73,4086,63,-1,4306,4190,4188,-1,4190,4306,4309,-1,4365,4367,4209,-1,4367,4365,4364,-1,7711,7800,7801,-1,7800,7711,7712,-1,4378,4467,7802,-1,4378,4377,4467,-1,4403,3291,7721,-1,4403,7702,3291,-1,4399,4385,4384,-1,4399,3389,4385,-1,3303,4406,4405,-1,4406,3303,3295,-1,4390,4409,4388,-1,4409,4390,7693,-1,4395,78,4393,-1,3268,78,4395,-1,4396,3336,3335,-1,4398,3336,4396,-1,4386,4402,4463,-1,4402,4386,4400,-1,4437,4406,7723,-1,4437,4404,4406,-1,4486,4409,7722,-1,4486,4408,4409,-1,7803,7801,7800,-1,7803,7804,7801,-1,7805,4378,7802,-1,7805,4413,4378,-1,28,4382,3338,-1,28,4414,4382,-1,101,4418,104,-1,7806,4418,101,-1,81,4422,4419,-1,80,4422,81,-1,4426,7807,4424,-1,7807,4426,7808,-1,3290,7809,4387,-1,3290,3385,7809,-1,3286,7810,3287,-1,3286,4431,7810,-1,4429,7706,4432,-1,7706,4429,7714,-1,4424,7705,4434,-1,7705,4424,7807,-1,4079,3296,4438,-1,4079,3301,3296,-1,7712,4080,91,-1,4080,7712,4081,-1,3292,7702,4077,-1,7702,3292,3291,-1,7710,4442,7701,-1,4442,7710,4433,-1,7708,4444,4450,-1,4444,7708,4435,-1,4422,4412,4420,-1,4412,4422,7719,-1,4446,94,93,-1,4446,3386,94,-1,4439,4078,7703,-1,4078,4439,96,-1,4390,4447,4449,-1,4390,4389,4447,-1,4441,99,4451,-1,99,4441,100,-1,4443,7811,4462,-1,7811,4443,7704,-1,89,7694,4454,-1,7694,89,7703,-1,4457,3282,102,-1,4457,3283,3282,-1,4458,93,7697,-1,4458,4446,93,-1,4462,4472,4460,-1,4472,4462,7811,-1,7693,4449,4479,-1,7693,4390,4449,-1,4451,4468,4464,-1,4468,4451,99,-1,4466,4458,4484,-1,4466,4453,4458,-1,7700,7805,7806,-1,7805,7700,4413,-1,7696,4455,7692,-1,7696,7695,4455,-1,4475,4489,4473,-1,4489,4475,4465,-1,4477,4493,4478,-1,4493,4477,4461,-1,4471,4385,4469,-1,4385,4471,4383,-1,4483,7696,7812,-1,4483,4482,7696,-1,3388,4073,4485,-1,4073,3388,3279,-1,7806,4497,4418,-1,4497,7806,7805,-1,4469,3389,3274,-1,3389,4469,4385,-1,4473,4491,4510,-1,4491,4473,4489,-1,4495,4478,4493,-1,4495,4502,4478,-1,105,4417,107,-1,4417,105,104,-1,4499,7812,7685,-1,4499,4483,7812,-1,4485,4075,4500,-1,4075,4485,4073,-1,4502,4239,4236,-1,4239,4502,4495,-1,4490,4506,7680,-1,4506,4490,4505,-1,4494,4509,7682,-1,4509,4494,4507,-1,4513,4381,4512,-1,4513,4379,4381,-1,111,4076,3271,-1,111,7688,4076,-1,4072,4515,4518,-1,4515,4072,4498,-1,3268,4503,3269,-1,3268,4395,4503,-1,4515,7678,4519,-1,7678,4515,4516,-1,4511,7676,4521,-1,7676,4511,7686,-1,75,4514,4083,-1,75,3310,4514,-1,3390,4224,109,-1,7755,4224,3390,-1,4520,7792,4523,-1,7792,4520,4519,-1,4533,7638,122,-1,7638,4533,4535,-1,3395,4529,4574,-1,3395,128,4529,-1,3264,4531,3258,-1,7674,4531,3264,-1,4068,114,4532,-1,114,4068,4070,-1,122,7639,123,-1,122,7638,7639,-1,4541,120,3257,-1,120,4541,7640,-1,4538,7642,7813,-1,4538,4537,7642,-1,4527,4545,4525,-1,4527,4543,4545,-1,4576,4546,4547,-1,4576,7814,4546,-1,7665,7673,7672,-1,7665,7815,7673,-1,3394,7816,4552,-1,3394,3261,7816,-1,4559,4600,4558,-1,4559,7655,4600,-1,4606,7749,3330,-1,7648,7749,4606,-1,7666,4562,7656,-1,7666,4560,4562,-1,7747,4571,4569,-1,4571,7747,7647,-1,140,4568,4566,-1,4568,140,4066,-1,4567,114,113,-1,4567,4566,114,-1,7777,4565,4130,-1,7669,4565,7777,-1,7674,4563,4531,-1,4554,4563,7674,-1,4547,4577,4576,-1,4583,4577,4547,-1,118,4538,131,-1,118,4069,4538,-1,3253,4544,4543,-1,3253,4579,4544,-1,131,7813,7659,-1,131,4538,7813,-1,4582,7817,4580,-1,7817,4582,7818,-1,4562,4529,4530,-1,4562,4561,4529,-1,130,119,118,-1,130,3250,119,-1,4070,121,4585,-1,4070,4068,121,-1,4580,4142,4586,-1,4142,4580,7817,-1,127,3244,134,-1,3244,127,3254,-1,4588,139,3398,-1,4588,137,139,-1,112,4585,4590,-1,112,4070,4585,-1,7658,4591,7819,-1,4591,7658,4587,-1,141,7649,7646,-1,4064,7649,141,-1,4610,3251,4595,-1,4610,3399,3251,-1,3249,4597,7650,-1,4597,3249,3248,-1,7819,4598,4613,-1,4598,7819,4591,-1,4564,7655,4559,-1,4564,7653,7655,-1,4601,4619,4593,-1,4603,4619,4601,-1,4607,4594,4605,-1,4607,4623,4594,-1,7645,4612,4609,-1,7645,4596,4612,-1,7651,4615,7795,-1,4615,7651,4613,-1,4609,7796,4271,-1,7796,4609,4611,-1,4617,4602,4616,-1,4617,7794,4602,-1,7648,7747,7749,-1,7647,7747,7648,-1,4622,4611,4621,-1,4622,7796,4611,-1,4625,4635,4632,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=42 */
		private int[] getmand_Geo_5_877_coordIndex_42()
		{
			int[] value = {4625,7820,4635,-1,7637,4631,4628,-1,7637,7591,4631,-1,4634,7467,7821,-1,4634,7616,7467,-1,5256,4630,4636,-1,5256,4628,4630,-1,4661,142,7635,-1,4661,4660,142,-1,3239,4639,3240,-1,3239,4637,4639,-1,4640,7474,7822,-1,4640,7636,7474,-1,4647,4827,4650,-1,4647,4646,4827,-1,4651,7634,7823,-1,4651,4650,7634,-1,7591,7633,4631,-1,7591,7590,7633,-1,4655,7823,7820,-1,4655,4651,7823,-1,3237,4958,7824,-1,3236,4958,3237,-1,4638,3188,4637,-1,4638,3416,3188,-1,4641,3402,145,-1,4639,3402,4641,-1,4664,4769,7627,-1,4664,4663,4769,-1,4668,7626,4667,-1,7626,4668,4764,-1,4670,7600,7780,-1,4670,7630,7600,-1,4674,4664,4679,-1,4674,4662,4664,-1,4682,4063,4667,-1,4682,148,4063,-1,4671,3494,4669,-1,3025,3494,4671,-1,7469,4674,4678,-1,7469,4673,4674,-1,4848,4696,4693,-1,4696,4848,4847,-1,4850,4685,4697,-1,4685,4850,4683,-1,4853,4689,7825,-1,4689,4853,4687,-1,7825,4692,7826,-1,4692,7825,4689,-1,7621,4695,5271,-1,4695,7621,4693,-1,7619,4699,5272,-1,4699,7619,4697,-1,4702,7827,3234,-1,4702,4701,7827,-1,4706,7605,4705,-1,7605,4706,7828,-1,4709,3232,3404,-1,3232,4709,7829,-1,4712,7830,4719,-1,4712,4711,7830,-1,4717,7831,4715,-1,7831,4717,7832,-1,4710,4718,3405,-1,4718,4710,4712,-1,7831,155,7604,-1,155,7831,7606,-1,3226,4702,7833,-1,3226,4700,4702,-1,4728,7605,7613,-1,4728,4726,7605,-1,4728,3406,3225,-1,3406,4728,4062,-1,166,3403,3220,-1,166,7833,3403,-1,4736,4722,4721,-1,4736,4730,4722,-1,3405,7603,3229,-1,7603,3405,4718,-1,3230,4743,158,-1,4743,3230,3229,-1,4727,161,4061,-1,3217,161,4727,-1,4738,4730,4736,-1,4738,4740,4730,-1,4733,4742,4152,-1,4742,4733,4740,-1,158,4745,167,-1,4745,158,4743,-1,3224,3409,3215,-1,3409,3224,3223,-1,4762,3219,4747,-1,4762,164,3219,-1,4737,4751,4753,-1,4751,4737,4749,-1,4754,4741,4753,-1,4754,4768,4741,-1,3216,4757,3408,-1,7834,4757,3216,-1,4747,4760,4762,-1,7602,4760,4747,-1,4764,4760,7629,-1,4764,4761,4760,-1,7628,4768,4754,-1,7628,4766,4768,-1,4770,7834,7630,-1,4770,4757,7834,-1,4773,7588,4792,-1,4773,4772,7588,-1,4778,4796,4776,-1,4796,4778,7584,-1,4781,7581,4797,-1,4781,4780,7581,-1,4786,4801,4784,-1,4801,4786,7585,-1,4788,4805,4789,-1,4805,4788,7582,-1,3211,4789,3212,-1,3211,4787,4789,-1,4795,4771,4813,-1,4795,4794,4771,-1,4800,4814,4798,-1,4814,4800,4777,-1,4802,4779,4820,-1,4802,4804,4779,-1,4808,7598,4806,-1,7598,4808,4785,-1,4807,4824,4809,-1,4824,4807,4806,-1,4832,4813,4810,-1,4832,4795,4813,-1,4798,3411,3207,-1,3411,4798,4814,-1,4823,4820,4817,-1,4823,4802,4820,-1,4840,4823,4821,-1,4840,7597,4823,-1,4809,3412,3206,-1,3412,4809,4824,-1,4830,4810,4648,-1,4830,4832,4810,-1,4835,4833,4834,-1,4835,4819,4833,-1,173,4835,4059,-1,173,4822,4835,-1,4825,4839,7593,-1,4839,4825,4837,-1,3202,4849,4842,-1,4849,3202,7594,-1,4059,4851,171,-1,4851,4059,4836,-1,4839,4845,4852,-1,4845,4839,4838,-1,7590,4645,7633,-1,7590,4841,4645,-1,4843,4848,7622,-1,4848,4843,4842,-1,172,4850,7620,-1,4850,172,171,-1,7592,4853,7618,-1,4853,7592,4852,-1,4912,4856,4855,-1,4856,4912,4911,-1,4638,4643,7835,-1,4638,3241,4643,-1,5296,7541,7542,-1,5295,7541,5296,-1,2961,4863,4864,-1,2961,4861,4863,-1,7460,4868,4870,-1,7836,4868,7460,-1,7837,4873,4872,-1,4883,4873,7837,-1,5046,4886,7838,-1,5046,5043,4886,-1,7577,7839,7836,-1,7577,7840,7839,-1,5059,4884,4883,-1,5059,5058,4884,-1,7838,4888,7458,-1,4888,7838,4886,-1,4868,4879,4869,-1,4868,7841,4879,-1,4856,4907,4854,-1,4856,5103,4907,-1,7567,4896,4893,-1,7567,5106,4896,-1,4900,7574,4898,-1,4900,4891,7574,-1,7842,4903,4908,-1,4903,7842,4901,-1,4892,7571,4890,-1,4892,5303,7571,-1,7570,3994,668,-1,3994,7570,4908,-1,7454,4895,4910,-1,7454,4893,4895,-1,2949,4900,4897,-1,2949,2948,4900,-1,4058,7843,181,-1,4915,7843,4058,-1,7844,3198,4929,-1,7844,7566,3198,-1,4926,4921,4918,-1,7845,4921,4926,-1,7846,4924,3201,-1,7846,4922,4924,-1,4916,7846,174,-1,4917,7846,4916,-1,4917,4922,7846,-1,7565,4922,4917,-1,7565,4925,4922,-1,7565,7561,4925,-1,7843,7561,7565,-1,7843,7845,7561,-1,4915,7845,7843,-1,4914,7845,4915,-1,4914,4921,7845,-1,7566,4921,4914,-1,7566,4919,4921,-1,7844,4919,7566,-1,7844,7564,4919,-1,7562,4928,7847,-1,4928,7562,4926,-1,195,179,178,-1,195,182,179,-1,4930,7563,4929,-1,4930,7848,7563,-1,7848,4933,4931,-1,7560,4933,7848,-1,7847,188,4056,-1,197,188,7847,-1,4935,178,177,-1,4935,194,178,-1,4054,184,183,-1,4054,186,184,-1,3196,4057,186,-1,3196,4938,4057,-1,4933,4942,4932,-1,4948,4942,4933,-1,189,3195,4951,-1,3195,189,188,-1,4944,4935,4934,-1,4944,4945,4935,-1,7559,4947,4955,-1,4947,7559,4945,-1,7552,4938,3192,-1,7552,4937,4938,-1,7550,4942,4949,-1,7550,4940,4942,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=43 */
		private int[] getmand_Geo_5_877_coordIndex_43()
		{
			int[] value = {7556,4944,4943,-1,7556,4946,4944,-1,4947,7547,4956,-1,7547,4947,4946,-1,199,7824,4958,-1,7824,199,198,-1,7546,4950,4959,-1,7546,4949,4950,-1,4952,4962,4953,-1,4962,4952,3414,-1,203,4964,201,-1,4964,203,4953,-1,4957,4659,4656,-1,4659,4957,4956,-1,4967,7553,4974,-1,4967,4961,7553,-1,4967,4969,4966,-1,4976,4969,4967,-1,7549,4971,4965,-1,4978,4971,7549,-1,7548,4051,4981,-1,4051,7548,205,-1,4977,4973,7835,-1,4977,4976,4973,-1,7544,4980,4978,-1,4862,4980,7544,-1,4051,4986,4982,-1,4986,4051,204,-1,4660,143,142,-1,4983,143,4660,-1,4986,7541,4985,-1,7541,4986,7543,-1,5050,208,207,-1,5050,4997,208,-1,3178,4989,3421,-1,3178,4998,4989,-1,4994,4993,7849,-1,4993,4994,4992,-1,7525,5000,5053,-1,209,5000,7525,-1,5000,3176,7538,-1,5000,3177,3176,-1,5003,5056,7850,-1,5003,5001,5056,-1,5012,5051,7527,-1,5051,5012,5011,-1,5007,7851,7850,-1,5007,5006,7851,-1,5010,5052,5009,-1,5052,5010,5047,-1,5013,5005,5011,-1,5005,5013,5049,-1,7526,5017,5040,-1,7526,5015,5017,-1,7841,4046,4879,-1,5021,4046,7841,-1,5042,4049,3420,-1,4049,5042,4048,-1,5055,5024,5023,-1,5035,5024,5055,-1,7535,7840,7852,-1,7535,7839,7840,-1,5058,5030,4884,-1,7853,5030,5058,-1,5032,5022,7853,-1,5032,4047,5022,-1,5025,5034,5033,-1,7852,5034,5025,-1,213,7530,214,-1,213,5038,7530,-1,5040,7533,5038,-1,7533,5040,5017,-1,3420,5031,3180,-1,5031,3420,4049,-1,4046,4881,4879,-1,4881,4046,214,-1,5044,5037,3181,-1,5044,5043,5037,-1,5047,7849,4993,-1,5047,5010,7849,-1,4987,7851,7540,-1,5048,7851,4987,-1,7539,5049,5013,-1,5049,7539,5050,-1,5052,7536,5016,-1,7536,5052,7537,-1,5054,5039,5020,-1,5039,5054,7854,-1,5057,5002,5028,-1,5057,5001,5002,-1,5093,5068,7521,-1,5068,5093,5066,-1,5071,3169,5069,-1,5071,3170,3169,-1,7855,237,3168,-1,7855,5092,237,-1,5071,5064,5061,-1,5071,4045,5064,-1,5070,4045,5071,-1,5070,219,4045,-1,7855,219,5070,-1,7855,3168,219,-1,5075,7516,225,-1,7516,5075,7520,-1,226,5091,5077,-1,5091,226,5090,-1,235,5079,4041,-1,235,4043,5079,-1,231,3167,229,-1,3167,231,7514,-1,5082,5145,5080,-1,5145,5082,7519,-1,5085,7504,7517,-1,5083,7504,5085,-1,7518,5088,5086,-1,7518,5142,5088,-1,5091,5069,7520,-1,5091,5072,5069,-1,238,236,4041,-1,238,222,236,-1,5063,7519,5082,-1,7519,5063,5062,-1,5094,5084,5089,-1,5084,5094,5067,-1,5096,5137,5097,-1,5096,5135,5137,-1,5102,5162,5098,-1,5099,5162,5102,-1,5095,4907,5104,-1,5095,4905,4907,-1,7572,5108,5106,-1,7572,5111,5108,-1,5105,7573,5109,-1,5103,7573,5105,-1,5108,7510,5107,-1,5112,7510,5108,-1,5110,5101,5100,-1,5115,5101,5110,-1,7856,5113,5118,-1,7856,5112,5113,-1,5140,5122,5129,-1,5122,5140,5120,-1,5138,5126,5125,-1,5126,5138,5135,-1,5122,5155,5128,-1,5122,5121,5155,-1,7574,5133,5139,-1,5133,7574,5131,-1,5137,4901,7842,-1,5137,5136,4901,-1,5133,5123,5120,-1,5133,5132,5123,-1,7503,5142,7518,-1,5142,7503,5141,-1,5076,7857,227,-1,5076,5143,7857,-1,7498,5074,4042,-1,7498,3429,5074,-1,5147,7858,5146,-1,5147,7496,7858,-1,7495,3163,5149,-1,7495,3164,3163,-1,7494,5143,5150,-1,7494,7857,5143,-1,3430,3159,5152,-1,3430,3428,3159,-1,3156,5130,5128,-1,5130,3156,3155,-1,5127,5148,7502,-1,5127,5124,5148,-1,7501,5158,5151,-1,5161,5158,7501,-1,5159,7500,7493,-1,5159,5153,7500,-1,5118,5159,7856,-1,5118,5154,5159,-1,4905,5097,7569,-1,4905,5095,5097,-1,5116,5157,5115,-1,5116,7492,5157,-1,452,7448,5209,-1,5165,7448,452,-1,3470,3062,4003,-1,3470,454,3062,-1,5169,7395,5167,-1,5169,7859,7395,-1,5172,2851,2852,-1,5172,5173,2851,-1,3120,3441,2734,-1,3441,3120,3119,-1,308,3127,3124,-1,3127,308,307,-1,3144,241,3150,-1,3144,239,241,-1,259,3436,3139,-1,3436,259,258,-1,252,3140,380,-1,3140,252,259,-1,3463,274,276,-1,3134,274,3463,-1,958,4035,284,-1,958,3137,4035,-1,3439,3134,4036,-1,262,3134,3439,-1,278,281,3133,-1,278,282,281,-1,306,292,3440,-1,292,306,381,-1,3437,298,4034,-1,298,3437,299,-1,4033,909,1040,-1,4033,915,909,-1,256,253,257,-1,256,3139,253,-1,3125,915,4033,-1,915,3125,913,-1,2737,240,4037,-1,240,2737,940,-1,7860,310,309,-1,3031,310,7860,-1,3039,326,557,-1,326,3039,4030,-1,3518,7489,4013,-1,7489,3518,3516,-1,3114,320,3117,-1,3114,316,320,-1,333,1025,1009,-1,333,332,1025,-1,4027,3108,3110,-1,346,3108,4027,-1,5184,351,7861,-1,351,5184,950,-1,5180,3446,926,-1,5180,3941,3446,-1,4025,4026,359,-1,361,4026,4025,-1,291,378,296,-1,291,290,378,-1,3093,246,245,-1,3093,380,246,-1,1016,3096,5181,-1,1016,384,3096,-1,5482,5182,7389,-1,5482,2738,5182,-1,5540,5184,7487,-1,5184,5540,5183,-1,2824,3092,1039,-1,2824,348,3092,-1,3940,5476,7862,-1,3956,5476,3940,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=44 */
		private int[] getmand_Geo_5_877_coordIndex_44()
		{
			int[] value = {5480,5187,1043,-1,5480,3955,5187,-1,2763,408,407,-1,2763,401,408,-1,984,2787,432,-1,2787,984,985,-1,3544,412,394,-1,412,3544,413,-1,428,2783,2782,-1,428,5493,2783,-1,3080,436,438,-1,436,3080,3079,-1,3079,3083,436,-1,3459,3083,3079,-1,7377,5194,5191,-1,5523,5194,7377,-1,1025,7372,3111,-1,1025,1026,7372,-1,3958,7402,7391,-1,5197,7402,3958,-1,5532,2811,3557,-1,7863,2811,5532,-1,2799,5201,4023,-1,5201,2799,5200,-1,3112,1009,1025,-1,3112,1010,1009,-1,3078,5202,5188,-1,3078,3077,5202,-1,3070,5205,5204,-1,3070,3071,5205,-1,945,3465,943,-1,879,3465,945,-1,5208,5210,5209,-1,5207,5210,5208,-1,3049,3467,3050,-1,3049,4019,3467,-1,460,3057,461,-1,3057,460,3058,-1,460,3499,3058,-1,460,3056,3499,-1,3477,5216,7864,-1,5216,3477,3476,-1,5217,5216,5215,-1,5217,7865,5216,-1,3504,7866,5220,-1,7866,3504,2933,-1,4017,5310,478,-1,5310,4017,7449,-1,551,489,3481,-1,551,490,489,-1,5226,5391,5224,-1,5282,5391,5226,-1,502,3048,503,-1,3048,502,562,-1,5261,5229,5231,-1,5261,5283,5229,-1,511,3481,5274,-1,551,3481,511,-1,504,5266,7867,-1,3045,5266,504,-1,324,5235,5234,-1,324,4030,5235,-1,3036,329,4031,-1,329,3036,327,-1,515,5281,3002,-1,515,514,5281,-1,673,2939,471,-1,673,5237,2939,-1,556,309,3517,-1,556,7860,309,-1,3518,5239,674,-1,5239,3518,3113,-1,3022,552,510,-1,546,552,3022,-1,7436,4128,7778,-1,7436,3028,4128,-1,4038,7476,5328,-1,7476,4038,5391,-1,5241,7449,4017,-1,7449,5241,5265,-1,322,534,5238,-1,534,322,321,-1,7868,5244,5243,-1,7868,559,5244,-1,519,5273,3042,-1,519,3016,5273,-1,564,7468,598,-1,570,7468,564,-1,5248,575,3008,-1,5248,4012,575,-1,3487,4011,578,-1,5249,4011,3487,-1,588,3019,5254,-1,588,3496,3019,-1,4636,5257,5256,-1,5250,5257,4636,-1,572,7821,573,-1,572,5259,7821,-1,582,3238,4010,-1,582,3242,3238,-1,144,5285,3014,-1,144,4858,5285,-1,593,4007,591,-1,4007,593,590,-1,4030,3038,5235,-1,3038,4030,3039,-1,5241,3484,5279,-1,3484,5241,4006,-1,5262,7867,5266,-1,5262,7473,7867,-1,602,7473,3003,-1,7473,602,7867,-1,3042,522,558,-1,3042,5268,522,-1,5270,7868,4680,-1,5270,5269,7868,-1,7466,570,569,-1,7826,570,7466,-1,4012,4695,4694,-1,4012,5248,4695,-1,7615,5246,7475,-1,5271,5246,7615,-1,7477,5275,5274,-1,7477,7472,5275,-1,4004,5228,592,-1,4004,5231,5228,-1,5264,5280,5330,-1,5280,5264,5279,-1,5236,5235,3038,-1,5235,5236,5233,-1,7464,7472,7477,-1,7464,7463,7472,-1,7465,592,5228,-1,7465,3000,592,-1,4002,505,2932,-1,506,505,4002,-1,4001,661,660,-1,661,4001,5288,-1,3500,619,7869,-1,3011,619,3500,-1,626,4000,3999,-1,4000,626,5286,-1,497,2979,628,-1,497,617,2979,-1,3510,5287,5288,-1,3510,632,5287,-1,5290,5307,2958,-1,5289,5307,5290,-1,3997,639,3996,-1,639,3997,640,-1,2945,4014,4015,-1,528,4014,2945,-1,3996,3513,5291,-1,3996,639,3513,-1,5307,2975,3998,-1,5307,2976,2975,-1,7459,626,625,-1,626,7459,5295,-1,4866,5297,4864,-1,4866,7461,5297,-1,4888,5299,7870,-1,4885,5299,4888,-1,2977,4867,629,-1,4867,2977,4870,-1,2957,4872,5298,-1,4872,2957,7837,-1,7576,658,5300,-1,4875,658,7576,-1,7870,2982,2981,-1,7870,5299,2982,-1,2958,5298,5290,-1,2957,5298,2958,-1,2952,667,666,-1,2952,650,667,-1,5304,2971,2970,-1,2946,2971,5304,-1,5305,7568,5303,-1,7568,5305,7453,-1,5291,2953,7453,-1,5291,3513,2953,-1,4910,654,7454,-1,4910,3509,654,-1,667,5306,668,-1,667,3995,5306,-1,4014,3998,2975,-1,4014,636,3998,-1,3061,5163,3059,-1,1546,5163,3061,-1,4031,536,3492,-1,4031,4032,536,-1,5310,2935,2937,-1,5310,3480,2935,-1,2991,5222,5220,-1,5308,5222,2991,-1,5239,5238,534,-1,5239,5237,5238,-1,5260,581,590,-1,605,581,5260,-1,7447,3477,7864,-1,7447,5314,3477,-1,5316,2916,2928,-1,2916,5316,5318,-1,7865,2997,516,-1,2997,7865,5217,-1,745,677,679,-1,745,744,677,-1,685,3992,683,-1,3992,685,855,-1,687,2925,3991,-1,687,3532,2925,-1,7409,7871,3960,-1,7409,5431,7871,-1,5329,5166,4039,-1,5166,5329,5433,-1,7409,5327,7408,-1,7409,5326,5327,-1,5390,4040,5324,-1,4038,4040,5390,-1,5280,7872,5331,-1,5280,3146,7872,-1,5322,5278,5333,-1,5278,5322,5276,-1,712,716,710,-1,712,2861,716,-1,3527,711,709,-1,3527,712,711,-1,3984,5335,5334,-1,3984,3986,5335,-1,3985,2846,7397,-1,5438,2846,3985,-1,3527,704,766,-1,704,3527,3987,-1,7873,2896,5339,-1,7873,722,2896,-1,682,7874,7875,-1,682,678,7874,-1,2917,5336,7396,-1,2917,713,5336,-1,5382,3974,5344,-1,5382,5379,3974,-1,7440,5172,5170,-1,7440,7875,5172,-1,675,2878,758,-1,675,744,2878,-1,691,811,3971,-1,811,691,690,-1,5347,7400,5363,-1,5347,5345,7400,-1,5352,7415,5394,-1,5351,7415,5352,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=45 */
		private int[] getmand_Geo_5_877_coordIndex_45()
		{
			int[] value = {3993,5415,741,-1,5414,5415,3993,-1,755,746,2910,-1,755,7876,746,-1,3966,5411,5410,-1,5411,3966,7429,-1,3535,3979,761,-1,5358,3979,3535,-1,3969,2871,843,-1,2871,3969,7428,-1,5362,5348,5430,-1,5361,5348,5362,-1,5366,7439,7859,-1,5365,7439,5366,-1,2924,748,747,-1,2924,3981,748,-1,772,810,812,-1,772,7877,810,-1,5370,765,2858,-1,765,5370,778,-1,5372,3977,717,-1,5371,3977,5372,-1,3977,3976,781,-1,5376,3976,3977,-1,5375,7410,5374,-1,5375,851,7410,-1,5373,5377,5371,-1,5373,5425,5377,-1,798,788,790,-1,800,788,798,-1,792,7878,2864,-1,7878,792,2882,-1,5425,794,793,-1,5425,5373,794,-1,5383,5344,7432,-1,5383,5382,5344,-1,5385,2891,2890,-1,5384,2891,5385,-1,804,800,3972,-1,800,804,801,-1,5386,5380,5381,-1,5380,5386,7784,-1,7435,7778,7785,-1,7435,7436,7778,-1,5227,5390,7443,-1,5224,5390,5227,-1,5338,7873,7441,-1,7873,5338,5337,-1,7431,898,5444,-1,5334,898,7431,-1,5227,5325,5333,-1,5227,7443,5325,-1,707,5374,720,-1,5374,707,2900,-1,717,2901,5372,-1,2901,717,770,-1,3990,5359,764,-1,5359,3990,3989,-1,5352,866,684,-1,5352,5394,866,-1,5393,868,866,-1,868,5393,5367,-1,7429,3965,5396,-1,3965,7429,3966,-1,856,3965,855,-1,856,859,3965,-1,3373,5377,5426,-1,3373,5376,5377,-1,835,824,7426,-1,825,824,835,-1,829,835,3964,-1,835,829,836,-1,5405,2873,4210,-1,5405,832,2873,-1,5398,4214,5413,-1,4214,5398,4212,-1,5402,4202,5417,-1,4202,5402,5401,-1,7757,838,7414,-1,839,838,7757,-1,5413,2875,3536,-1,4214,2875,5413,-1,5407,7789,3537,-1,7789,5407,4195,-1,4197,5412,5408,-1,7760,5412,4197,-1,5419,5356,5418,-1,5356,5419,7414,-1,7417,5355,7438,-1,5409,5355,7417,-1,756,7418,2907,-1,756,5412,7418,-1,7424,755,840,-1,7424,7876,755,-1,5397,2908,7422,-1,5397,2909,2908,-1,5400,5351,3963,-1,5400,7415,5351,-1,7877,4096,7412,-1,7877,4244,4096,-1,7750,779,778,-1,844,779,7750,-1,7751,773,776,-1,7751,3344,773,-1,4249,2903,767,-1,4251,2903,4249,-1,771,4254,772,-1,4254,771,4252,-1,7411,769,7793,-1,7411,2902,769,-1,793,4273,5425,-1,4273,793,4274,-1,3371,7437,7879,-1,3371,7878,7437,-1,851,29,852,-1,851,5375,29,-1,450,879,2920,-1,450,3465,879,-1,700,685,3526,-1,685,700,2921,-1,3993,3522,2925,-1,3993,741,3522,-1,809,5372,2901,-1,5372,809,808,-1,678,5436,7874,-1,853,5436,678,-1,7401,876,5349,-1,7401,2847,876,-1,5345,2848,7400,-1,5345,2850,2848,-1,5436,3433,3145,-1,5436,3091,3433,-1,3960,5326,7409,-1,5326,3960,2886,-1,891,2855,5434,-1,893,2855,891,-1,7406,5204,7398,-1,7406,3070,5204,-1,5196,7398,3462,-1,7406,7398,5196,-1,7405,5197,5446,-1,7405,7402,5197,-1,822,2839,861,-1,2839,822,883,-1,2845,7397,2846,-1,3528,7397,2845,-1,5437,2843,889,-1,7479,2843,5437,-1,3071,734,5205,-1,3068,734,3071,-1,3982,5439,7880,-1,3982,5438,5439,-1,7479,7399,5206,-1,5437,7399,7479,-1,874,892,875,-1,874,893,892,-1,7871,5430,2905,-1,7871,5431,5430,-1,894,2840,517,-1,896,2840,894,-1,5340,896,895,-1,896,5340,728,-1,5443,4681,3495,-1,4681,5443,4676,-1,5331,2922,806,-1,7872,2922,5331,-1,5435,2837,2836,-1,2837,5435,3961,-1,2833,877,914,-1,877,2833,878,-1,3961,280,2837,-1,280,3961,3538,-1,7376,904,7378,-1,905,904,7376,-1,5190,2835,3460,-1,2835,5190,5447,-1,415,5499,1033,-1,415,426,5499,-1,3547,7390,2801,-1,3547,3443,7390,-1,3957,5179,2832,-1,3957,3098,5179,-1,5536,5457,5535,-1,5536,5458,5457,-1,5460,5531,5529,-1,5531,5460,5462,-1,7380,5463,5465,-1,7380,7371,5463,-1,5519,5468,5470,-1,5519,5517,5468,-1,5471,3558,5472,-1,7881,3558,5471,-1,2827,5474,5473,-1,2827,2748,5474,-1,3541,3942,2825,-1,3541,2832,3942,-1,7862,3941,3940,-1,3446,3941,7862,-1,344,5186,337,-1,5186,344,342,-1,4029,363,4028,-1,4029,3449,363,-1,340,3449,4029,-1,340,3450,3449,-1,2802,5479,3105,-1,5479,2802,2801,-1,337,5476,335,-1,5476,337,5186,-1,240,249,5183,-1,240,239,249,-1,355,335,353,-1,355,336,335,-1,948,954,3445,-1,954,948,949,-1,2739,370,369,-1,2739,5481,370,-1,5481,3097,370,-1,5481,935,3097,-1,3547,3450,340,-1,2803,3450,3547,-1,5479,2747,2829,-1,2747,5479,919,-1,3081,3558,7881,-1,3559,3558,3081,-1,284,959,958,-1,284,3939,959,-1,5490,5188,5202,-1,5490,5454,5188,-1,2798,966,3953,-1,2798,3546,966,-1,5453,7381,5451,-1,7381,5453,5487,-1,930,5486,931,-1,5489,5486,930,-1,4022,970,2762,-1,4022,3952,970,-1,973,432,2787,-1,973,433,432,-1,3551,997,3555,-1,3551,2769,997,-1,2768,3950,978,-1,2768,5514,3950,-1,5495,5511,5494,-1,7368,5511,5495,-1,433,444,3072,-1,973,444,433,-1,5506,2793,2792,-1,5506,407,2793,-1,7882,1001,2767,-1,1001,7882,2745,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=46 */
		private int[] getmand_Geo_5_877_coordIndex_46()
		{
			int[] value = {3554,434,988,-1,430,434,3554,-1,989,5501,987,-1,989,991,5501,-1,5503,5515,7383,-1,5449,5515,5503,-1,977,3948,994,-1,7387,3948,977,-1,5511,5506,5504,-1,5511,7388,5506,-1,5502,999,998,-1,999,5502,5500,-1,2779,1002,1001,-1,1002,2779,5507,-1,3086,2745,7882,-1,3086,2746,2745,-1,427,2785,428,-1,2785,427,1004,-1,2758,968,7369,-1,2797,968,2758,-1,333,1027,445,-1,333,1028,1027,-1,440,7488,441,-1,7484,7488,440,-1,3563,5527,3136,-1,5527,3563,7863,-1,7374,1014,2753,-1,7374,1015,1014,-1,383,959,3939,-1,383,1017,959,-1,5540,2756,4037,-1,7486,2756,5540,-1,5526,5523,5520,-1,5526,5194,5523,-1,7373,903,905,-1,7373,7480,903,-1,5194,2757,5192,-1,5526,2757,5194,-1,3073,3065,3074,-1,3073,1021,3065,-1,5451,3082,446,-1,7381,3082,5451,-1,446,5454,5451,-1,5454,446,5188,-1,7382,5201,3077,-1,7382,7370,5201,-1,2786,411,404,-1,2788,411,2786,-1,5533,7383,5510,-1,5533,5503,7383,-1,3553,7367,5534,-1,7367,3553,3552,-1,2829,2748,2827,-1,2748,2829,2747,-1,7384,5484,3456,-1,2794,5484,7384,-1,971,3451,2796,-1,3451,971,7366,-1,3554,981,983,-1,2766,981,3554,-1,1003,2749,2751,-1,2749,1003,1002,-1,3102,3954,3103,-1,5469,3954,3102,-1,5480,1034,3542,-1,7485,1034,5480,-1,5456,2830,3541,-1,5456,5455,2830,-1,3539,3445,5175,-1,948,3445,3539,-1,7389,3540,5538,-1,3540,7389,5182,-1,5185,3446,7862,-1,5185,3447,3446,-1,2819,7365,7861,-1,7365,2819,5539,-1,946,2822,947,-1,2822,946,1041,-1,5174,7364,1046,-1,7364,5174,5522,-1,4033,3126,3125,-1,4033,3128,3126,-1,5702,2733,2732,-1,7883,2733,5702,-1,5596,5545,7363,-1,5596,5543,5545,-1,2731,5548,6890,-1,2731,5541,5548,-1,3739,5545,5544,-1,2295,5545,3739,-1,5557,5604,7360,-1,5557,7204,5604,-1,7362,5556,5553,-1,7362,7351,5556,-1,7884,6130,6136,-1,7884,5555,6130,-1,5566,5563,5561,-1,5566,5608,5563,-1,3936,7362,5570,-1,3936,3937,7362,-1,6833,5566,5568,-1,6833,7361,5566,-1,6835,3936,5569,-1,6835,3934,3936,-1,1649,6136,1650,-1,1649,7884,6136,-1,2642,5578,5580,-1,2642,5576,5578,-1,7264,6048,5586,-1,7264,6042,6048,-1,5577,5585,7355,-1,5577,5583,5585,-1,5573,5588,5574,-1,5573,5581,5588,-1,5585,5591,5598,-1,5585,5584,5591,-1,5543,5590,5546,-1,5543,5591,5590,-1,5597,5587,5595,-1,5542,5587,5597,-1,7352,5600,5599,-1,7352,7213,5600,-1,5602,7204,7203,-1,7204,5602,5604,-1,5601,5552,5599,-1,5552,5601,5551,-1,5603,7360,5604,-1,7360,5603,5608,-1,1928,7885,5615,-1,1927,7885,1928,-1,1919,5614,1920,-1,5614,1919,5613,-1,1090,5617,5615,-1,1090,5807,5617,-1,3742,5611,1924,-1,5611,3742,5618,-1,5623,7886,5621,-1,7886,5623,7887,-1,7888,5625,7889,-1,7888,5624,5625,-1,5627,1113,7890,-1,1114,1113,5627,-1,5610,1115,7342,-1,2704,1115,5610,-1,5635,5646,5633,-1,5635,7310,5646,-1,5637,2728,7341,-1,3567,2728,5637,-1,5639,7339,5638,-1,5639,7887,7339,-1,5642,7891,5640,-1,5642,7889,7891,-1,5645,7347,6869,-1,5644,7347,5645,-1,5648,7890,7048,-1,5627,7890,5648,-1,7046,5634,5650,-1,7348,5634,7046,-1,7891,5651,6862,-1,7891,5636,5651,-1,5654,6863,7308,-1,5654,5653,6863,-1,5616,7346,7050,-1,5617,7346,5616,-1,7345,7047,7892,-1,7345,5641,7047,-1,7893,5659,5661,-1,7893,7336,5659,-1,1057,1069,1055,-1,1069,1057,1121,-1,1076,7894,3929,-1,7894,1076,5977,-1,5668,5979,7895,-1,5668,5670,5979,-1,5676,5674,5673,-1,5676,2717,5674,-1,1065,1061,1063,-1,1064,1061,1065,-1,1068,1055,1069,-1,1068,1077,1055,-1,1061,1058,1070,-1,1061,1064,1058,-1,1123,5664,2672,-1,1123,5681,5664,-1,5673,1067,7896,-1,2718,1067,5673,-1,7897,5950,5687,-1,5949,5950,7897,-1,5676,7896,5675,-1,5676,5673,7896,-1,3569,5679,5657,-1,5677,5679,3569,-1,5662,7897,5687,-1,7897,5662,5659,-1,1077,6883,2720,-1,1077,3929,6883,-1,7041,2724,7898,-1,5671,2724,7041,-1,2721,3808,5691,-1,2721,1081,3808,-1,5694,7893,5661,-1,7893,5694,6884,-1,7894,5697,6885,-1,7894,5695,5697,-1,2257,7895,5701,-1,2257,2256,7895,-1,2712,7332,2713,-1,2712,7899,7332,-1,7900,5702,7333,-1,7900,7883,5702,-1,5712,5723,7251,-1,5712,5709,5723,-1,1053,7250,1054,-1,7250,1053,5725,-1,5719,1083,1082,-1,5719,5718,1083,-1,6078,5723,5720,-1,6078,7251,5723,-1,5709,5721,5723,-1,5709,6888,5721,-1,1935,5725,1053,-1,5725,1935,1934,-1,2252,7331,1937,-1,5715,7331,2252,-1,1939,5718,3807,-1,1083,5718,1939,-1,5729,5774,5727,-1,5729,7307,5774,-1,5732,2699,5735,-1,5732,2697,2699,-1,1089,5736,3925,-1,1089,1108,5736,-1,5611,2704,5610,-1,2704,5611,2705,-1,2688,5741,2689,-1,3923,5741,2688,-1,5745,7901,5769,-1,5744,7901,5745,-1,5749,7902,5747,-1,5749,7903,7902,-1,1097,7904,7322,-1,1099,7904,1097,-1,1100,3579,3578,-1,1100,5752,3579,-1,2695,5755,5612,-1,5755,2695,2694,-1,3925,5757,5797,-1,3925,5736,5757,-1,7312,5758,5761,-1,7312,5759,5758,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=47 */
		private int[] getmand_Geo_5_877_coordIndex_47()
		{
			int[] value = {5758,2706,1093,-1,2706,5758,5760,-1,5747,5785,5762,-1,5747,7902,5785,-1,2703,5765,1095,-1,2703,5789,5765,-1,5767,5752,5768,-1,5767,3579,5752,-1,5771,2689,5742,-1,2689,5771,3581,-1,5730,5773,5778,-1,5730,5727,5773,-1,1104,2686,1105,-1,1104,2709,2686,-1,1106,2699,1107,-1,5735,2699,1106,-1,7321,5780,5799,-1,7321,5778,5780,-1,3922,5781,5801,-1,3922,1105,5781,-1,5757,7325,5756,-1,2692,7325,5757,-1,7319,5785,5782,-1,5762,5785,7319,-1,7316,5789,5786,-1,5765,5789,7316,-1,5754,5768,5752,-1,5768,5754,7315,-1,5791,1111,1110,-1,5791,2678,1111,-1,7309,5784,5793,-1,5782,5784,7309,-1,2676,5788,1112,-1,5786,5788,2676,-1,7905,1108,1089,-1,3921,1108,7905,-1,5621,5776,5798,-1,5776,5621,7886,-1,5779,5624,7888,-1,5779,5800,5624,-1,5803,3921,7905,-1,5802,3921,5803,-1,5792,5635,5632,-1,5792,7318,5635,-1,5805,7317,7350,-1,5795,7317,5805,-1,7906,1089,1088,-1,7905,1089,7906,-1,7906,5652,5808,-1,7906,7340,5652,-1,5809,7907,5812,-1,7907,5809,7908,-1,5815,7285,5813,-1,7285,5815,7909,-1,5836,5819,5891,-1,5819,5836,5817,-1,5831,1158,1161,-1,1158,5831,5821,-1,1129,3588,5873,-1,1129,5823,3588,-1,5828,5839,5925,-1,5828,5825,5839,-1,7338,5669,5698,-1,5669,7338,5667,-1,5674,1119,1118,-1,5674,7274,1119,-1,5835,5822,7286,-1,5834,5822,5835,-1,1126,5818,7910,-1,1125,5818,1126,-1,5839,7282,7304,-1,5839,5838,7282,-1,5809,7294,7908,-1,5809,5841,7294,-1,5815,5932,7909,-1,5815,5843,5932,-1,7274,3584,1119,-1,3584,7274,7275,-1,5848,2663,2661,-1,2663,5848,5899,-1,5853,7911,5867,-1,5852,7911,5853,-1,7301,1126,5837,-1,7301,3920,1126,-1,7912,5863,7913,-1,7912,3600,5863,-1,5859,1135,5857,-1,5859,3918,1135,-1,1141,1142,1144,-1,1140,1142,1141,-1,5875,5863,5860,-1,7913,5863,5875,-1,5879,5867,5864,-1,5853,5867,5879,-1,5837,7910,3586,-1,5837,1126,7910,-1,1144,5868,1148,-1,1144,1132,5868,-1,5857,1149,7292,-1,5857,1135,1149,-1,3592,5869,2671,-1,3592,5883,5869,-1,3586,7302,3587,-1,3586,7910,7302,-1,5876,5860,5897,-1,5875,5860,5876,-1,5880,5864,5890,-1,5879,5864,5880,-1,7907,5884,5883,-1,7907,7305,5884,-1,1148,5885,3916,-1,1148,5868,5885,-1,7914,5890,5887,-1,5880,5890,7914,-1,3587,5833,7300,-1,3587,7302,5833,-1,7915,5897,5894,-1,5876,5897,7915,-1,5886,1152,7916,-1,5886,2664,1152,-1,7305,5912,5884,-1,7305,5816,5912,-1,5902,3916,5885,-1,3916,5902,5915,-1,7293,7916,7287,-1,7293,5886,7916,-1,5921,5887,5905,-1,7914,5887,5921,-1,7300,5835,5840,-1,7300,5833,5835,-1,5917,5894,5903,-1,7915,5894,5917,-1,7916,3915,5931,-1,7916,1152,3915,-1,1156,5816,5813,-1,5912,5816,1156,-1,5933,5919,5916,-1,5907,5919,5933,-1,5935,5923,5920,-1,5904,5923,5935,-1,5906,5926,5938,-1,5906,5924,5926,-1,3597,2662,5914,-1,2662,3597,2658,-1,5909,5930,5946,-1,5909,5929,5930,-1,5947,1155,3914,-1,1154,1155,5947,-1,5838,7283,7282,-1,5838,7286,7283,-1,5952,5937,5934,-1,5918,5937,5952,-1,5956,5940,5939,-1,5922,5940,5956,-1,7281,5847,7280,-1,5932,5847,7281,-1,5946,5966,5944,-1,5946,5930,5966,-1,5948,3914,7917,-1,5947,3914,5948,-1,5967,5941,7284,-1,5941,5967,5950,-1,1160,5954,5951,-1,1159,5954,1160,-1,5678,5958,5955,-1,5936,5958,5678,-1,5961,5972,7917,-1,5961,5960,5972,-1,2660,1164,5975,-1,2660,2659,1164,-1,5944,5964,5970,-1,5944,5966,5964,-1,5950,1167,5687,-1,5950,5967,1167,-1,1162,5951,5683,-1,1160,5951,1162,-1,5969,5965,5978,-1,5964,5965,5969,-1,5960,5973,5972,-1,5960,1074,5973,-1,1166,5975,1164,-1,5975,1166,1117,-1,5855,7296,5854,-1,7297,1128,1127,-1,7911,1128,7297,-1,7911,5824,1128,-1,5852,5824,7911,-1,5852,7301,5824,-1,3598,7301,5852,-1,3598,3920,7301,-1,3600,3920,3598,-1,5855,7912,7296,-1,1124,7912,5855,-1,1124,3600,7912,-1,3600,1124,3920,-1,7338,1165,7272,-1,1165,7338,5976,-1,5979,7276,7335,-1,5978,7276,5979,-1,5989,7918,5988,-1,7918,5989,7919,-1,7257,6061,7258,-1,7920,6061,7257,-1,5575,5582,5573,-1,5582,5575,6030,-1,6011,1170,6009,-1,1170,6011,3912,-1,3602,7921,1184,-1,7271,7921,3602,-1,5993,6039,1190,-1,5993,7922,6039,-1,5995,7919,5989,-1,5997,7919,5995,-1,6015,7247,5985,-1,7248,7247,6015,-1,6003,6035,6001,-1,6003,7244,6035,-1,6005,7249,6033,-1,6007,7249,6005,-1,1172,6015,3911,-1,1172,7248,6015,-1,7899,7923,6062,-1,7899,2712,7923,-1,6014,6031,6045,-1,6014,6013,6031,-1,6016,7883,7900,-1,6016,6018,7883,-1,7924,6023,6020,-1,2637,6023,7924,-1,6025,7924,2652,-1,6025,6024,7924,-1,6027,5706,3938,-1,6027,6026,5706,-1,6031,5984,6029,-1,5984,6031,6013,-1,6034,1174,2644,-1,6033,1174,6034,-1,1173,6014,5983,-1,1173,3911,6014,-1,6001,6037,7925,-1,6001,6035,6037,-1,2639,1188,1187,-1,1185,1188,2639,-1,3910,5999,1189,-1,5999,3910,7262,-1,7925,7356,5579,-1,7925,6037,7356,-1,6043,6034,7261,-1,6032,6034,6043,-1,5579,7266,7925,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=48 */
		private int[] getmand_Geo_5_877_coordIndex_48()
		{
			int[] value = {7266,5579,5576,-1,3906,1186,6047,-1,1187,1186,3906,-1,2642,5582,2643,-1,2642,5580,5582,-1,1193,6052,2645,-1,1193,1205,6052,-1,1197,7256,3908,-1,1197,7263,7256,-1,1201,1204,1203,-1,1200,1204,1201,-1,6023,1168,3912,-1,1168,6023,2637,-1,7354,6054,6051,-1,6049,6054,7354,-1,5987,6050,3601,-1,6050,5987,6065,-1,1198,6067,3606,-1,1198,6056,6067,-1,6074,3907,6057,-1,7259,3907,6074,-1,5593,6051,6059,-1,7354,6051,5593,-1,7258,7252,1206,-1,7258,7923,7252,-1,6080,6064,6066,-1,7255,6064,6080,-1,6012,6069,6068,-1,6009,6069,6012,-1,6055,6073,6079,-1,6055,6071,6073,-1,5716,6060,5714,-1,6059,6060,5716,-1,6062,7900,7899,-1,6062,6016,7900,-1,5712,6081,5710,-1,7253,6081,5712,-1,6063,1051,1054,-1,6063,7254,1051,-1,5719,6084,5717,-1,6070,6084,5719,-1,6086,6714,6713,-1,6086,7241,6714,-1,7237,6091,6097,-1,7237,6089,6091,-1,7926,6087,6094,-1,7926,6085,6087,-1,7241,6099,6714,-1,7241,6097,6099,-1,6104,3904,1210,-1,3904,6104,6120,-1,6106,6103,1211,-1,6106,6121,6103,-1,3904,6309,1208,-1,3904,6307,6309,-1,1253,7238,1254,-1,1253,7927,7238,-1,6111,7186,6109,-1,6111,7185,7186,-1,6110,7236,6113,-1,6110,6109,7236,-1,6290,7926,7177,-1,6290,7928,7926,-1,6113,7237,6117,-1,6113,7236,7237,-1,6436,7929,7232,-1,6436,7152,7929,-1,1277,1215,1214,-1,1215,1277,3886,-1,7239,3903,6121,-1,7239,7233,3903,-1,6224,6124,7229,-1,6224,6122,6124,-1,6220,6126,7228,-1,6220,6129,6126,-1,3608,6223,5559,-1,6222,6223,3608,-1,6124,6133,7930,-1,6124,6123,6133,-1,6126,6135,7931,-1,6126,6128,6135,-1,6725,6137,7930,-1,6137,6725,1651,-1,6140,7932,6138,-1,6140,7931,7932,-1,6143,7179,6155,-1,6142,7179,6143,-1,6147,7178,6158,-1,6146,7178,6147,-1,6151,7176,7933,-1,6150,7176,6151,-1,1700,7933,1697,-1,6151,7933,1700,-1,6156,7225,6729,-1,6155,7225,6156,-1,6159,7224,7095,-1,6158,7224,6159,-1,7934,1217,1216,-1,7934,6160,1217,-1,6183,6166,6163,-1,7935,6166,6183,-1,7215,6168,1221,-1,7936,6168,7215,-1,7937,6171,7938,-1,7937,6169,6171,-1,3902,6176,6173,-1,7939,6176,3902,-1,7938,6191,6190,-1,7938,6171,6191,-1,3897,6175,7216,-1,6173,6175,3897,-1,1217,6180,3900,-1,1217,6161,6180,-1,6183,2627,7221,-1,6183,6182,2627,-1,3898,7215,1222,-1,6178,7215,3898,-1,3896,6184,6187,-1,6182,6184,3896,-1,1218,1234,1226,-1,1218,3900,1234,-1,1229,7216,6201,-1,3897,7216,1229,-1,6191,6195,6189,-1,6191,6177,6195,-1,6193,1224,6206,-1,6195,1224,6193,-1,6196,1231,1233,-1,3609,1231,6196,-1,6186,6198,3895,-1,6186,1227,6198,-1,1238,1230,6212,-1,2625,1230,1238,-1,6202,6192,6204,-1,6199,6192,6202,-1,6205,6194,7353,-1,6204,6194,6205,-1,1233,7208,6196,-1,1233,1243,7208,-1,3895,7207,1241,-1,3895,6198,7207,-1,1235,7206,6207,-1,1235,1239,7206,-1,6221,7211,7205,-1,7206,7211,6221,-1,6203,6215,6213,-1,6203,7203,6215,-1,6217,1244,1242,-1,1244,6217,1245,-1,6219,7212,6208,-1,7212,6219,7940,-1,6219,6220,7231,-1,6219,6218,6220,-1,7230,6214,6222,-1,7210,6214,7230,-1,1245,6131,5554,-1,1245,6217,6131,-1,6174,7937,7218,-1,6176,7937,6174,-1,6176,6169,7937,-1,7939,6169,6176,-1,7939,6172,6169,-1,7941,6172,7939,-1,7941,7219,6172,-1,7223,7219,7941,-1,7223,7936,7219,-1,6162,7936,7223,-1,6162,6168,7936,-1,6160,6168,6162,-1,6160,6167,6168,-1,6160,7220,6167,-1,7934,7220,6160,-1,7934,7935,7220,-1,7222,7935,7934,-1,6164,7935,7222,-1,6164,6166,7935,-1,6249,6232,6229,-1,6302,6232,6249,-1,6251,6233,6235,-1,6297,6233,6251,-1,6301,6237,6257,-1,6301,6240,6237,-1,6259,6244,6241,-1,6305,6244,6259,-1,6263,6243,1246,-1,6241,6243,6263,-1,6226,6248,7197,-1,6226,6246,6248,-1,7196,6253,6250,-1,6231,6253,7196,-1,6234,6256,7194,-1,6234,6254,6256,-1,7942,6261,6258,-1,6239,6261,7942,-1,7192,6260,6262,-1,6258,6260,7192,-1,1247,6272,3893,-1,1247,7201,6272,-1,6265,7200,6276,-1,6247,7200,6265,-1,3892,7199,7189,-1,6252,7199,3892,-1,6267,7198,6271,-1,6255,7198,6267,-1,6269,7943,7187,-1,6271,7943,6269,-1,6264,7927,1253,-1,6264,1248,7927,-1,6273,7185,6111,-1,6273,6266,7185,-1,1255,1249,1251,-1,6275,1249,1255,-1,7195,7193,7188,-1,7195,6268,7193,-1,7193,6280,6288,-1,7193,6270,6280,-1,6291,1252,3891,-1,7191,1252,6291,-1,6282,1255,1257,-1,6274,1255,6282,-1,6285,6278,6294,-1,2620,6278,6285,-1,6287,6279,6296,-1,6280,6279,6287,-1,3891,7928,6290,-1,3891,1254,7928,-1,6144,7184,6142,-1,6292,7184,6144,-1,6148,7183,6146,-1,6294,7183,6148,-1,6152,7180,6150,-1,6296,7180,6152,-1,6749,6362,7944,-1,6749,6361,6362,-1,1759,3607,2632,-1,7147,3607,1759,-1,6315,6313,7150,-1,6313,6315,6311,-1,6312,6751,6314,-1,6312,6311,6751,-1,7945,6320,7946,-1,6320,7945,6318,-1,7171,6323,7947,-1,6323,7171,6321,-1,7948,6328,6325,-1,7948,6500,6328,-1,6319,7949,6330,-1,7949,6319,6318,-1,7083,6335,6332,-1,6512,6335,7083,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=49 */
		private int[] getmand_Geo_5_877_coordIndex_49()
		{
			int[] value = {6754,6325,6336,-1,7948,6325,6754,-1,7945,7950,7951,-1,7950,7945,7173,-1,6561,6345,7944,-1,6561,6343,6345,-1,6557,6348,6364,-1,6557,6346,6348,-1,6352,6341,6338,-1,6352,6351,6341,-1,7165,6354,6356,-1,6585,6354,7165,-1,7079,6353,6359,-1,6351,6353,7079,-1,6363,6356,6355,-1,6356,6363,2365,-1,6365,7168,6364,-1,7168,6365,6756,-1,6339,1772,7167,-1,6339,1773,1772,-1,6369,2613,2612,-1,2613,6369,7952,-1,6373,2608,7953,-1,6370,2608,6373,-1,7954,6376,7160,-1,6376,7954,6374,-1,3890,2616,1258,-1,3890,7955,2616,-1,6372,7956,6370,-1,6372,6380,7956,-1,7957,6375,2604,-1,6376,6375,7957,-1,1263,1258,2615,-1,1258,1263,1259,-1,6389,2609,7956,-1,2609,6389,6383,-1,2597,6385,7957,-1,6385,2597,6384,-1,2599,6395,2603,-1,2599,2596,6395,-1,2607,6390,7958,-1,2607,6383,6390,-1,6391,6386,6384,-1,6386,6391,7959,-1,6393,6387,7960,-1,3614,6387,6393,-1,7156,7157,7961,-1,7960,7157,7156,-1,1275,3889,7958,-1,3889,1275,1270,-1,7155,6399,7959,-1,6399,7155,6397,-1,6401,1274,1273,-1,6401,6400,1274,-1,6402,7962,6400,-1,6402,2594,7962,-1,7154,6406,6404,-1,7961,6406,7154,-1,1270,6118,1271,-1,1270,3887,6118,-1,6398,6419,6408,-1,6398,6397,6419,-1,3888,6415,6411,-1,3888,1274,6415,-1,6415,6426,6413,-1,6415,7962,6426,-1,1214,3887,1277,-1,6118,3887,1214,-1,6421,6408,6419,-1,6408,6421,6429,-1,6421,6424,6431,-1,6421,6418,6424,-1,6434,6426,6425,-1,6413,6426,6434,-1,6430,1278,6428,-1,1278,6430,1279,-1,6427,6310,7175,-1,6427,6431,6310,-1,6432,7153,6434,-1,7153,6432,6438,-1,7148,6437,6435,-1,2592,6437,7148,-1,7150,2619,6315,-1,7150,6438,2619,-1,6440,7148,7147,-1,7149,7148,6440,-1,3885,6444,1281,-1,3885,6442,6444,-1,6446,7144,1292,-1,6448,7144,6446,-1,7143,1285,1284,-1,7143,7131,1285,-1,7963,6455,6452,-1,7963,1288,6455,-1,3882,1288,1287,-1,3882,6455,1288,-1,7964,6460,6510,-1,6460,7964,6458,-1,6462,6505,3880,-1,6462,7139,6505,-1,6465,7964,6464,-1,6465,7965,7964,-1,7132,6467,1297,-1,7132,7130,6467,-1,6504,6471,6468,-1,6504,6503,6471,-1,7136,7963,6497,-1,7136,6507,7963,-1,6477,7951,7950,-1,7951,6477,6476,-1,6489,6482,6511,-1,6482,6489,6480,-1,7966,6330,7949,-1,6330,7966,6483,-1,7967,6487,7128,-1,6487,7967,6485,-1,7967,6491,6478,-1,6491,7967,6490,-1,6472,7966,6476,-1,6472,6481,7966,-1,7135,6495,6492,-1,6501,6495,7135,-1,7138,6494,6470,-1,7138,6492,6494,-1,6512,6499,6335,-1,6512,6486,6499,-1,3623,6328,6501,-1,3623,6326,6328,-1,6499,1289,6498,-1,1290,1289,6499,-1,7141,6449,1286,-1,7146,6449,7141,-1,1293,2583,1294,-1,1293,1282,2583,-1,6443,6502,7965,-1,6443,2590,6502,-1,7140,1296,3881,-1,2587,1296,7140,-1,6503,6467,6471,-1,6466,6467,6503,-1,6507,1288,7963,-1,3884,1288,6507,-1,6457,6479,6474,-1,6457,6456,6479,-1,3879,6460,3878,-1,6460,3879,6509,-1,1311,6521,3631,-1,1311,3624,6521,-1,6518,3626,2562,-1,3626,6518,2579,-1,6542,6522,1307,-1,6542,6523,6522,-1,6591,2575,6526,-1,6591,2576,2575,-1,3627,6529,2574,-1,3627,7125,6529,-1,6530,1314,6594,-1,6531,1314,6530,-1,2570,6532,7127,-1,6532,2570,3628,-1,6533,7122,6539,-1,7122,6533,7124,-1,2561,6537,6544,-1,2561,1306,6537,-1,6527,1298,6541,-1,1298,6527,6525,-1,6543,6515,7124,-1,6513,6515,6543,-1,7968,6614,7969,-1,6614,7968,6576,-1,6548,7968,6546,-1,6576,7968,6548,-1,6550,6559,6555,-1,6559,6550,6567,-1,6558,6349,6346,-1,6558,7970,6349,-1,6560,6344,6343,-1,6560,7971,6344,-1,6563,7120,6562,-1,6563,7971,7120,-1,7972,7970,7118,-1,7973,7970,7972,-1,7114,6564,6562,-1,6564,7114,6570,-1,7972,6574,6573,-1,7972,7974,6574,-1,7975,6578,6577,-1,7975,7976,6578,-1,7116,6581,6579,-1,7116,7976,6581,-1,6583,7166,7973,-1,6340,7166,6583,-1,6350,6586,6584,-1,6350,7977,6586,-1,7975,6588,6587,-1,7975,7977,6588,-1,6598,6540,6589,-1,6598,6538,6540,-1,6603,6591,7125,-1,6603,6590,6591,-1,6594,3875,6593,-1,3875,6594,1314,-1,7127,6535,6534,-1,7127,6532,6535,-1,6609,6597,6599,-1,6596,6597,6609,-1,2559,6611,3632,-1,2559,6602,6611,-1,6605,6590,6603,-1,6590,6605,6617,-1,6593,6607,6622,-1,6593,3875,6607,-1,6607,3874,6623,-1,6607,1316,3874,-1,6599,6580,6609,-1,6599,6579,6580,-1,6611,7969,6614,-1,6611,6602,7969,-1,6624,6617,6605,-1,6617,6624,6615,-1,6622,6623,6620,-1,6622,6607,6623,-1,6571,3874,7119,-1,6623,3874,6571,-1,6552,7115,6618,-1,7115,6552,6549,-1,3873,5163,1319,-1,5163,3873,5164,-1,3675,6629,1595,-1,3675,3674,6629,-1,6671,2400,2358,-1,6671,6630,2400,-1,6633,6899,6901,-1,6633,6632,6899,-1,6636,1855,7067,-1,6636,3817,1855,-1,1328,6637,6635,-1,1330,6637,1328,-1,2536,2133,2537,-1,2536,2134,2133,-1,1335,1332,1336,-1,1335,2491,1332,-1,1340,1338,2552,-1,1340,1342,1338,-1,2150,2548,6980,-1,2548,2150,3776,-1,2547,3849,1362,-1,2547,2546,3849,-1,3868,3643,3642,-1,3868,3644,3643,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=50 */
		private int[] getmand_Geo_5_877_coordIndex_50()
		{
			int[] value = {2499,3638,2500,-1,2499,2551,3638,-1,2212,2217,3752,-1,2218,2217,2212,-1,6638,1338,2550,-1,1338,6638,1339,-1,1384,2133,2132,-1,1384,1386,2133,-1,3649,1345,3775,-1,1345,3649,6638,-1,3633,2126,3634,-1,3633,3757,2126,-1,1777,1391,3650,-1,1391,1777,1620,-1,2523,1710,1638,-1,2523,2522,1710,-1,6644,3856,6947,-1,6641,3856,6644,-1,1420,6942,3861,-1,1420,6950,6942,-1,1427,2029,1428,-1,2029,1427,7978,-1,3801,1434,1433,-1,3801,1432,1434,-1,1440,1442,1954,-1,1440,2495,1442,-1,1447,2127,1448,-1,1447,2100,2127,-1,1444,2093,2153,-1,1451,2093,1444,-1,2013,3789,2012,-1,3857,3789,2013,-1,3789,6643,2097,-1,6641,6643,3789,-1,7111,7979,7024,-1,7979,7111,7980,-1,6649,2135,7981,-1,2006,2135,6649,-1,1467,1471,1468,-1,1471,1467,1970,-1,2177,2489,2490,-1,2177,2050,2489,-1,1491,6650,2056,-1,1490,6650,1491,-1,1499,2168,6972,-1,1479,2168,1499,-1,6652,3854,1505,-1,6652,3855,3854,-1,6640,6988,6987,-1,6640,3771,6988,-1,3791,3784,3783,-1,3791,7009,3784,-1,6657,7982,6655,-1,7982,6657,7016,-1,6661,6916,6659,-1,6916,6661,6908,-1,3767,6663,1407,-1,3767,6664,6663,-1,6977,6667,7017,-1,6667,6977,6665,-1,2030,2159,3669,-1,2159,2030,2160,-1,1516,6669,3670,-1,6669,1516,6662,-1,2031,3669,3668,-1,2030,3669,2031,-1,6909,3727,7105,-1,6909,6670,3727,-1,7038,1521,2474,-1,1521,7038,7039,-1,2201,2004,2111,-1,2005,2004,2201,-1,7096,6671,7113,-1,6671,7096,6672,-1,1537,2471,1702,-1,1537,1541,2471,-1,3673,6628,3674,-1,6716,6628,3673,-1,1549,1321,1556,-1,1321,1549,3873,-1,2468,3848,2469,-1,2468,3689,3848,-1,1547,1557,1322,-1,1556,1557,1547,-1,1558,1550,1687,-1,1558,1551,1550,-1,6676,1561,6673,-1,2466,1561,6676,-1,7983,6675,7074,-1,7983,6676,6675,-1,5221,6679,3831,-1,5221,5222,6679,-1,3679,1780,2362,-1,1780,3679,3846,-1,6682,2463,2444,-1,3729,2463,6682,-1,3729,2333,2463,-1,7070,6684,2405,-1,7070,6838,6684,-1,2459,1684,3844,-1,2459,1685,1684,-1,3696,6731,7984,-1,6731,3696,6686,-1,2455,2453,1621,-1,7088,2453,2455,-1,6690,6735,6689,-1,6735,6690,3684,-1,3843,1563,1628,-1,1563,3843,6734,-1,2528,2361,2363,-1,2528,3841,2361,-1,2440,6692,6763,-1,1788,6692,2440,-1,1631,1633,3842,-1,1630,1633,1631,-1,3712,3686,6694,-1,3712,2360,3686,-1,2374,7097,1640,-1,2374,2373,7097,-1,3681,2443,2442,-1,3681,1588,2443,-1,1645,6836,1646,-1,1645,2462,6836,-1,3839,1649,1650,-1,1649,3839,3840,-1,6778,1575,7101,-1,6778,3845,1575,-1,6718,6696,3834,-1,6718,6681,6696,-1,1667,1656,1655,-1,1685,1656,1667,-1,7985,6698,6700,-1,6698,7985,6697,-1,3836,1602,7100,-1,3836,3682,1602,-1,1666,6698,1658,-1,1666,6699,6698,-1,2430,6702,6708,-1,2430,3691,6702,-1,1669,6704,1670,-1,6704,1669,6703,-1,3844,7100,1602,-1,1684,7100,3844,-1,1674,1662,1661,-1,2425,1662,1674,-1,6715,1664,1663,-1,1664,6715,2428,-1,3688,1615,1592,-1,3688,1616,1615,-1,6098,6708,6702,-1,6098,6711,6708,-1,7240,2432,2431,-1,7240,6713,2432,-1,2424,1676,2632,-1,1674,1676,2424,-1,6715,2426,2428,-1,2426,6715,6105,-1,6724,2458,2460,-1,6724,1585,2458,-1,1323,6765,7986,-1,2401,6765,1323,-1,6717,6685,7099,-1,2418,6685,6717,-1,6721,3834,1691,-1,3834,6721,6718,-1,1688,7986,3835,-1,1688,1323,7986,-1,6688,7099,6723,-1,6717,7099,6688,-1,2416,3835,7986,-1,3693,3835,2416,-1,3838,6138,7932,-1,3838,6697,6138,-1,7985,6726,6139,-1,7985,2436,6726,-1,6705,1700,1699,-1,1700,6705,6153,-1,6707,7094,6706,-1,7094,6707,6729,-1,7984,2405,3696,-1,7070,2405,7984,-1,1691,6733,6721,-1,1691,6780,6733,-1,6735,7068,6734,-1,6735,7098,7068,-1,2419,1595,6629,-1,1595,2419,1593,-1,2373,3825,7097,-1,1757,3825,2373,-1,3703,6741,6740,-1,2388,6741,3703,-1,1755,3829,1721,-1,1755,1754,3829,-1,2383,1764,1763,-1,2383,6743,1764,-1,2454,1731,1730,-1,1731,2454,1743,-1,1708,1623,1712,-1,1733,1623,1708,-1,1767,1748,3706,-1,1767,1749,1748,-1,3708,3711,2377,-1,3708,1769,3711,-1,6748,1750,3827,-1,6747,1750,6748,-1,1717,3707,1603,-1,3707,1717,1723,-1,1723,3705,3707,-1,1723,1722,3705,-1,6741,6439,3702,-1,2618,6439,6741,-1,2387,6751,6316,-1,6751,2387,6750,-1,7987,6754,6753,-1,6754,7987,7170,-1,1727,7174,7946,-1,1727,1726,7174,-1,7947,1760,3824,-1,6323,1760,7947,-1,6755,6334,7082,-1,6334,6755,6332,-1,6753,1719,7987,-1,6742,1719,6753,-1,1721,1627,1626,-1,1721,1720,1627,-1,1774,7080,7078,-1,1773,7080,1774,-1,3821,1772,1737,-1,3821,1771,1772,-1,6360,6758,6359,-1,3822,6758,6360,-1,1744,6759,6757,-1,7078,6759,1744,-1,7087,3828,7086,-1,7164,3828,7087,-1,1729,6745,6743,-1,1729,2379,6745,-1,7096,3698,6672,-1,7096,6764,3698,-1,1622,2531,1392,-1,1775,2531,1622,-1,5308,3830,1705,-1,5309,3830,5308,-1,6678,1780,3846,-1,6678,1704,1780,-1,1571,1791,1572,-1,1571,3676,1791,-1,1687,1794,1558,-1,1687,3697,1794,-1,6761,3873,1549,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=51 */
		private int[] getmand_Geo_5_877_coordIndex_51()
		{
			int[] value = {6761,5164,3873,-1,6767,7076,6766,-1,6767,1795,7076,-1,6766,7104,6674,-1,6766,7075,7104,-1,1582,7104,1583,-1,6677,7104,1582,-1,6768,2407,3804,-1,6768,7102,2407,-1,1470,2355,3714,-1,2355,1470,1802,-1,1812,1810,2333,-1,1814,1810,1812,-1,7034,1820,1959,-1,1820,7034,2228,-1,6898,3719,6777,-1,1816,3719,6898,-1,6772,6892,6770,-1,6772,6775,6892,-1,6771,6774,6772,-1,6774,6771,6837,-1,3719,3729,3845,-1,3719,1812,3729,-1,7092,7073,7090,-1,7092,1819,7073,-1,6851,2249,2278,-1,6851,6782,2249,-1,1825,3806,2241,-1,1825,6782,3806,-1,7057,1957,3725,-1,6790,1957,7057,-1,1837,7988,1896,-1,7988,1837,1839,-1,1897,2338,1840,-1,2338,1897,2302,-1,1896,6841,6786,-1,1896,7988,6841,-1,1856,6637,6788,-1,6637,1856,3817,-1,6847,7058,1798,-1,6847,6846,7058,-1,6840,7057,7056,-1,6840,6839,7057,-1,2303,1848,1846,-1,2303,1849,1848,-1,7067,7989,6636,-1,7989,7067,6795,-1,6791,3718,3717,-1,6791,2347,3718,-1,1857,1807,6815,-1,1857,1808,1807,-1,7990,6794,6812,-1,7990,6792,6794,-1,6798,7991,6796,-1,6798,6849,7991,-1,1916,6802,2330,-1,1916,6875,6802,-1,7064,6870,7051,-1,7064,7043,6870,-1,6807,1868,3810,-1,1868,6807,1869,-1,2258,2281,2259,-1,2279,2281,2258,-1,6811,2242,6809,-1,6811,3815,2242,-1,6793,6631,6911,-1,6631,6793,7066,-1,2353,3734,3716,-1,2353,2326,3734,-1,6882,7063,6817,-1,7052,7063,6882,-1,7062,3735,2318,-1,7062,7061,3735,-1,1859,2328,1860,-1,2329,2328,1859,-1,1842,1938,6822,-1,1895,1938,1842,-1,3738,2301,2300,-1,2301,3738,2296,-1,7992,1846,1848,-1,1846,7992,2311,-1,2303,6832,2304,-1,1847,6832,2303,-1,6787,6840,6846,-1,6786,6840,6787,-1,1903,1899,1898,-1,1902,1899,1903,-1,3736,6890,5548,-1,6890,3736,6889,-1,7060,6833,6832,-1,7359,6833,7060,-1,6835,6829,7358,-1,6835,6834,6829,-1,7054,7071,7073,-1,7054,6776,7071,-1,7055,7033,6844,-1,7993,7033,7055,-1,6843,1820,1819,-1,1820,6843,1963,-1,7058,3724,6783,-1,3724,7058,7056,-1,2556,6684,6837,-1,6684,2556,6683,-1,7031,2347,2247,-1,2347,7031,3718,-1,3818,2315,1873,-1,3818,2320,2315,-1,2350,7064,2351,-1,2350,6797,7064,-1,7062,1908,1910,-1,2318,1908,7062,-1,6848,3746,2246,-1,6848,6819,3746,-1,3730,3731,7069,-1,3730,2330,3731,-1,2280,6782,6851,-1,6782,2280,3806,-1,1814,1811,1810,-1,1814,3811,1811,-1,7343,1926,1925,-1,2260,1926,7343,-1,6858,6879,6856,-1,7892,6879,6858,-1,6862,6881,6860,-1,5651,6881,6862,-1,6855,7994,5655,-1,6855,6854,7994,-1,5649,7045,6865,-1,5643,7045,5649,-1,6868,5647,6876,-1,5647,6868,6867,-1,6854,6804,7994,-1,6854,6803,6804,-1,3741,2260,2259,-1,3741,1926,2260,-1,1870,6868,2327,-1,6868,1870,6866,-1,3809,6806,1930,-1,6806,3809,6865,-1,6801,6857,6856,-1,6801,6800,6857,-1,6861,7991,7044,-1,6860,7991,6861,-1,6872,7994,6804,-1,6871,7994,6872,-1,6820,5690,6818,-1,6820,5689,5690,-1,3930,7061,7898,-1,3930,3735,7061,-1,1876,1080,1874,-1,1080,1876,1081,-1,2323,5694,5693,-1,2323,1882,5694,-1,5697,1878,2316,-1,5696,1878,5697,-1,5722,6827,6825,-1,5721,6827,5722,-1,5726,2308,7040,-1,5726,2310,2308,-1,3723,2344,2340,-1,2343,2344,3723,-1,1839,2294,7988,-1,1839,2339,2294,-1,3813,2350,1875,-1,3813,6850,2350,-1,2326,2348,2284,-1,2326,2353,2348,-1,6811,6894,6893,-1,6811,6810,6894,-1,2231,7989,2232,-1,2231,2243,7989,-1,6900,1816,6898,-1,6900,2247,1816,-1,1968,6902,1967,-1,1968,3851,6902,-1,6902,2238,2237,-1,6902,7035,2238,-1,1469,1470,7037,-1,1468,1470,1469,-1,1441,7065,2236,-1,7065,1441,2230,-1,1958,7105,3727,-1,7105,1958,1955,-1,1961,1962,7032,-1,1961,1960,1962,-1,2335,1942,2334,-1,1942,2335,1523,-1,3726,6785,7993,-1,3726,3725,6785,-1,1955,7106,7105,-1,1955,2334,7106,-1,6810,6896,6894,-1,7036,6896,6810,-1,7098,6914,7068,-1,6913,6914,7098,-1,7227,6831,6912,-1,7227,5564,6831,-1,2223,6915,6781,-1,1835,6915,2223,-1,3671,6907,1532,-1,3671,6906,6907,-1,1978,3805,1952,-1,1326,3805,1978,-1,1974,6919,1975,-1,6919,1974,6917,-1,1949,2215,1950,-1,1949,3868,2215,-1,2214,3868,1949,-1,3663,6971,6920,-1,3663,1454,6971,-1,2520,3864,1411,-1,2028,3864,2520,-1,7022,6958,6957,-1,6955,6958,7022,-1,7995,2017,7996,-1,7995,3855,2017,-1,1517,6925,1515,-1,1517,7028,6925,-1,6928,3779,6926,-1,3779,6928,6924,-1,6929,6931,6927,-1,6929,6949,6931,-1,6936,6948,6934,-1,6948,6936,6932,-1,6935,2193,6937,-1,2192,2193,6935,-1,6940,3786,6938,-1,6939,3786,6940,-1,1985,3770,1993,-1,1985,7996,3770,-1,3656,2204,7980,-1,3656,2205,2204,-1,7022,7027,7997,-1,7022,6957,7027,-1,2509,6949,6929,-1,2509,2508,6949,-1,1988,3862,1989,-1,7998,3862,1988,-1,2116,2117,3755,-1,2116,2115,2117,-1,2206,3772,7981,-1,2206,2205,3772,-1,3774,2003,3756,-1,3774,6999,2003,-1,1996,2503,2121,-1,1996,1433,2503,-1,2119,7999,6648,-1,2119,2121,7999,-1,6926,2112,3662,-1,6926,3779,2112,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=52 */
		private int[] getmand_Geo_5_877_coordIndex_52()
		{
			int[] value = {6942,1412,3864,-1,6942,2507,1412,-1,2144,2208,2145,-1,2208,2144,7978,-1,2016,7996,2017,-1,2016,3770,7996,-1,2094,3782,2018,-1,2094,6979,3782,-1,3755,7005,2116,-1,7997,7005,3755,-1,2011,3761,2015,-1,2011,2024,3761,-1,6961,7997,3755,-1,7997,6961,7022,-1,2014,6960,2118,-1,2187,6960,2014,-1,6950,6934,6948,-1,6950,1420,6934,-1,2027,2160,2030,-1,2160,2027,2026,-1,2034,2036,2035,-1,2034,2037,2036,-1,1480,6964,2490,-1,1480,2166,6964,-1,2048,3792,2064,-1,2047,3792,2048,-1,8000,3793,2082,-1,8000,6963,3793,-1,2077,6994,2078,-1,2077,3795,6994,-1,7110,2077,2079,-1,7110,2088,2077,-1,2170,2062,2164,-1,2169,2062,2170,-1,2059,2162,2066,-1,2059,3780,2162,-1,6972,3764,2171,-1,2174,3764,6972,-1,6970,6963,6968,-1,6970,6962,6963,-1,2035,2181,2183,-1,2036,2181,2035,-1,2049,6994,3795,-1,2049,2081,6994,-1,2063,6974,7020,-1,2063,6973,6974,-1,6975,2060,2066,-1,6975,7006,2060,-1,8001,1496,3664,-1,8001,1497,1496,-1,2076,7021,7008,-1,2076,2078,7021,-1,7019,6963,8000,-1,7019,6968,6963,-1,3797,3791,3790,-1,3791,3797,6986,-1,6987,7013,3665,-1,7013,6987,6930,-1,6979,1446,2156,-1,6979,6646,1446,-1,6655,8002,7000,-1,6655,7982,8002,-1,8002,6985,6981,-1,7014,6985,8002,-1,7000,6981,6980,-1,7000,8002,6981,-1,6668,2189,3869,-1,6668,6665,2189,-1,6982,6653,7015,-1,6982,3769,6653,-1,6663,7029,1407,-1,6663,7025,7029,-1,3785,2102,2101,-1,3785,3784,2102,-1,1514,2108,2477,-1,1514,2107,2108,-1,7017,2096,2095,-1,7017,3797,2096,-1,7010,2031,7011,-1,7010,2032,2031,-1,2062,6973,2063,-1,2169,6973,2062,-1,6969,3758,6990,-1,6969,2154,3758,-1,7007,7020,6974,-1,2080,7020,7007,-1,6995,6974,2069,-1,7007,6974,6995,-1,2055,3664,2053,-1,2055,8001,3664,-1,2045,7109,2046,-1,7109,2045,2484,-1,6650,8001,2055,-1,1490,8001,6650,-1,2068,2161,6996,-1,2068,6975,2161,-1,3798,2210,6943,-1,3798,7998,2210,-1,6929,3662,2509,-1,6929,6926,3662,-1,2205,3660,2110,-1,2205,3656,3660,-1,7997,7023,7005,-1,7027,7023,7997,-1,2109,2492,2194,-1,2109,1483,2492,-1,3857,2065,2511,-1,2013,2065,3857,-1,6648,2122,1459,-1,7999,2122,6648,-1,6998,2203,6946,-1,7003,2203,6998,-1,7001,3751,6656,-1,7001,3645,3751,-1,1344,2540,3866,-1,1344,1383,2540,-1,7001,6980,2548,-1,7000,6980,7001,-1,2001,2136,1998,-1,2002,2136,2001,-1,6642,6946,7026,-1,6998,6946,6642,-1,1418,7024,7979,-1,1418,1417,7024,-1,3802,6647,7003,-1,7004,6647,3802,-1,6947,3803,6644,-1,3803,6947,2200,-1,1987,7996,1985,-1,1987,7995,7996,-1,2138,7981,3772,-1,7981,2138,6649,-1,2192,1420,1419,-1,1420,2192,6934,-1,6920,6968,7019,-1,6968,6920,6971,-1,2488,6922,1481,-1,2488,2037,6922,-1,1474,2074,1479,-1,1474,2142,2074,-1,8001,1502,1497,-1,8001,1490,1502,-1,6993,2080,7007,-1,2081,2080,6993,-1,6970,6990,7008,-1,6970,6969,6990,-1,2489,2186,1472,-1,2186,2489,2050,-1,7107,6923,1513,-1,7107,6989,6923,-1,6955,1503,6958,-1,6952,1503,6955,-1,3854,6958,1503,-1,6958,3854,6956,-1,3670,1517,1516,-1,3670,1534,1517,-1,3791,7108,7009,-1,7108,3791,7014,-1,2221,6984,2219,-1,2221,6669,6984,-1,7982,7014,8002,-1,7982,7108,7014,-1,6666,6981,6985,-1,6666,2151,6981,-1,6918,7016,6657,-1,6918,6983,7016,-1,7018,1407,7029,-1,1407,7018,1408,-1,3855,6956,3854,-1,3855,7995,6956,-1,6923,2101,2107,-1,6923,3785,2101,-1,6989,3668,6976,-1,6989,7107,3668,-1,7008,6962,6970,-1,7008,7021,6962,-1,6966,8000,2180,-1,7019,8000,6966,-1,2163,6975,2068,-1,6975,2163,7006,-1,1485,2143,1486,-1,1485,2039,2143,-1,6991,3796,2043,-1,6991,3759,3796,-1,2169,3794,6973,-1,3765,3794,2169,-1,2168,2046,7109,-1,2046,2168,2167,-1,1498,2085,2173,-1,2085,1498,2486,-1,2162,3763,2084,-1,3780,3763,2162,-1,2042,2079,2043,-1,2042,7110,2079,-1,1518,2485,1509,-1,2485,1518,2184,-1,2078,6992,7021,-1,6992,2078,6994,-1,2180,2082,2175,-1,2180,8000,2082,-1,2166,2064,3792,-1,2166,2165,2064,-1,1475,2184,2051,-1,1475,2485,2184,-1,6957,6944,7027,-1,6944,6957,6959,-1,7995,6959,6956,-1,1987,6959,7995,-1,6953,6960,7010,-1,6961,6960,6953,-1,1485,2188,6997,-1,1485,1484,2188,-1,6979,2189,3782,-1,6979,2156,2189,-1,3788,1508,7012,-1,1508,3788,3787,-1,2211,7998,1988,-1,2210,7998,2211,-1,1429,2028,2519,-1,2028,1429,1428,-1,1437,7999,1438,-1,1437,2122,7999,-1,1438,2121,2503,-1,1438,7999,2121,-1,7003,1465,2203,-1,6647,1465,7003,-1,1460,2000,1458,-1,2123,2000,1460,-1,1333,3634,7002,-1,1333,3635,3634,-1,7980,3654,3656,-1,7111,3654,7980,-1,7998,2029,3862,-1,3798,2029,7998,-1,1425,2519,2518,-1,1425,1429,2519,-1,1426,2518,2517,-1,1426,1425,2518,-1,7111,2513,3654,-1,2515,2513,7111,-1,3773,7979,3774,-1,7979,3773,1418,-1,2145,1985,1993,-1,2145,2208,1985,-1,6938,1990,6940,-1,6938,3781,1990,-1,3788,6935,6937,-1,6935,3788,7012,-1,6936,6930,6932,-1,6936,7013,6930,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=53 */
		private int[] getmand_Geo_5_877_coordIndex_53()
		{
			int[] value = {6931,7018,6927,-1,6931,6933,7018,-1,7025,6928,7029,-1,6924,6928,7025,-1,6925,6941,2113,-1,6925,7028,6941,-1,7978,2207,2208,-1,7978,1427,2207,-1,6943,2028,3798,-1,6943,3864,2028,-1,6965,2140,2139,-1,6965,1495,2140,-1,1975,6654,3853,-1,6919,6654,1975,-1,3750,6983,6918,-1,6983,3750,2219,-1,2213,2238,1973,-1,1949,2238,2213,-1,2539,1384,3752,-1,1981,1384,2539,-1,1973,7035,1974,-1,2238,7035,1973,-1,1819,7030,6843,-1,7030,1819,7092,-1,7226,6912,1659,-1,7227,6912,7226,-1,3749,7059,2224,-1,1901,7059,3749,-1,1969,2225,1608,-1,2225,1969,3749,-1,6811,7034,3815,-1,6811,6893,7034,-1,1961,2240,3747,-1,1961,2239,2240,-1,6910,6670,6909,-1,6670,6910,7032,-1,7993,3728,7033,-1,7993,6785,3728,-1,2334,1520,7106,-1,1520,2334,1942,-1,1964,7032,1962,-1,7032,1964,6670,-1,1953,6792,7990,-1,6792,1953,2232,-1,6636,2243,6635,-1,2243,6636,7989,-1,2005,3748,2241,-1,2201,3748,2005,-1,7038,6908,6661,-1,7038,2474,6908,-1,7035,3851,6660,-1,7035,6902,3851,-1,6904,6661,6658,-1,6904,7038,6661,-1,6910,3850,1968,-1,6910,6905,3850,-1,7053,2228,6895,-1,2229,2228,7053,-1,1329,7037,1330,-1,1329,1469,7037,-1,2232,6795,6792,-1,2232,7989,6795,-1,2230,7990,7065,-1,2230,1953,7990,-1,7037,3714,6788,-1,3714,7037,1470,-1,2324,1910,3720,-1,2324,7062,1910,-1,3814,1913,1875,-1,1913,3814,2345,-1,6822,1839,1842,-1,2339,1839,6822,-1,2251,2254,2253,-1,2251,1894,2254,-1,2309,5726,1934,-1,2309,2310,5726,-1,2313,1087,6852,-1,1087,2313,3926,-1,1879,5696,6886,-1,1879,1878,5696,-1,3734,6817,7063,-1,3734,2325,6817,-1,1874,5689,6820,-1,5689,1874,1080,-1,7042,7898,7061,-1,7898,7042,7041,-1,2325,5693,6816,-1,5693,2325,2323,-1,7043,6864,6870,-1,6864,7043,3744,-1,3743,6803,6854,-1,3741,6803,3743,-1,6803,3741,2259,-1,6800,1921,6857,-1,6800,1923,1921,-1,6800,3733,1923,-1,6865,6807,6806,-1,7045,6807,6865,-1,6868,6873,2327,-1,6876,6873,6868,-1,6796,6860,6881,-1,6860,6796,7991,-1,6876,5648,6874,-1,5648,6876,5647,-1,5643,6877,7045,-1,5645,6877,5643,-1,2260,7046,1932,-1,7046,2260,7343,-1,6871,5655,7994,-1,5655,6871,5653,-1,6881,2266,2265,-1,2266,6881,5651,-1,7892,6880,6879,-1,7047,6880,7892,-1,6874,7048,6878,-1,7048,6874,5648,-1,7049,7050,6853,-1,5616,7050,7049,-1,2271,7049,2272,-1,1929,7049,2271,-1,7051,2351,7064,-1,3715,2351,7051,-1,2280,6808,2234,-1,6808,2280,2279,-1,6851,2281,2280,-1,6851,6805,2281,-1,6808,2235,2234,-1,3740,2235,6808,-1,6850,6797,2350,-1,6850,6798,6797,-1,7063,3716,3734,-1,3717,3716,7063,-1,2322,2244,6891,-1,1885,2244,2322,-1,6824,2293,2292,-1,1891,2293,6824,-1,6776,6838,7071,-1,6776,6774,6838,-1,1835,7055,6915,-1,7055,1835,6784,-1,6784,7993,7055,-1,3726,7993,6784,-1,7358,2305,5567,-1,7358,6829,2305,-1,6830,7359,7060,-1,5565,7359,6830,-1,2299,5548,2297,-1,5548,2299,3736,-1,2301,1848,3737,-1,7992,1848,2301,-1,7060,1847,1899,-1,6832,1847,7060,-1,6834,2462,1852,-1,6836,2462,6834,-1,2328,2310,2291,-1,2328,2308,2310,-1,6889,1854,1811,-1,1854,6889,3736,-1,2296,7992,2301,-1,7992,2296,2255,-1,2255,2311,7992,-1,2311,2255,2254,-1,2313,2314,2312,-1,2314,2313,6852,-1,2314,6891,2244,-1,6891,2314,6826,-1,1888,7042,2324,-1,2317,7042,1888,-1,7052,2321,2320,-1,7052,6882,2321,-1,1807,3718,7031,-1,3718,1807,1806,-1,6794,6911,7036,-1,6911,6794,6793,-1,1931,3740,6808,-1,3740,1931,1930,-1,7051,6872,2276,-1,7051,6870,6872,-1,6800,2331,3733,-1,6800,2332,2331,-1,6875,1915,6873,-1,1916,1915,6875,-1,7044,6849,2286,-1,6849,7044,7991,-1,2259,6805,6803,-1,2281,6805,2259,-1,7065,6812,6809,-1,7065,7990,6812,-1,1855,6815,6813,-1,1857,6815,1855,-1,1806,3716,3718,-1,2353,3716,1806,-1,2349,1809,2245,-1,1907,1809,2349,-1,1817,2346,1815,-1,2346,1817,2290,-1,7069,2331,1803,-1,7069,3731,2331,-1,6914,1798,1797,-1,6847,1798,6914,-1,6846,7056,7058,-1,6846,6840,7056,-1,2224,6845,6913,-1,2224,7059,6845,-1,3714,3819,2352,-1,3714,3713,3819,-1,7988,2337,6841,-1,7988,2294,2337,-1,2302,3812,1898,-1,2302,1896,3812,-1,6839,6790,7057,-1,6789,6790,6839,-1,1958,6785,1956,-1,1958,3728,6785,-1,2336,2340,3722,-1,3723,2340,2336,-1,2342,3723,2336,-1,3721,3723,2342,-1,7072,7073,7071,-1,7090,7073,7072,-1,7092,6732,7030,-1,7092,1594,6732,-1,2554,6837,6771,-1,6837,2554,2556,-1,6775,6895,6892,-1,6775,7053,6895,-1,6899,6777,2555,-1,6898,6777,6899,-1,7034,6895,2228,-1,7034,6893,6895,-1,2247,1817,1816,-1,2247,1858,1817,-1,7102,1564,2407,-1,7102,7074,1564,-1,1583,7075,1836,-1,7104,7075,1583,-1,7075,7076,6769,-1,6766,7076,7075,-1,7076,1796,7077,-1,1795,1796,7076,-1,5313,1558,1794,-1,5313,1559,1558,-1,6627,2356,1539,-1,6627,2357,2356,-1,6681,1569,6696,-1,6681,6680,1569,-1,1572,2362,3680,-1,3679,2362,1572,-1,1570,6680,1789,-1,1570,1569,6680,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=54 */
		private int[] getmand_Geo_5_877_coordIndex_54()
		{
			int[] value = {1632,2528,3842,-1,1632,2526,2528,-1,5163,1545,1319,-1,1545,5163,1546,-1,2383,2451,1730,-1,2383,3704,2451,-1,6363,3710,2365,-1,6363,2368,3710,-1,1740,7164,6756,-1,1740,3828,7164,-1,3822,6746,6758,-1,3822,1767,6746,-1,6359,6759,7079,-1,6758,6759,6359,-1,2378,7078,1744,-1,7078,2378,1774,-1,3710,1749,1768,-1,3710,1747,1749,-1,7081,1764,6744,-1,1764,7081,3824,-1,3829,7987,1719,-1,3829,7082,7987,-1,2372,6332,6755,-1,6332,2372,7083,-1,7084,3824,7081,-1,7947,3824,7084,-1,7085,1726,1725,-1,7174,1726,7085,-1,7082,7170,7987,-1,7170,7082,6334,-1,6316,2388,2387,-1,6316,3611,2388,-1,3702,1758,1757,-1,6439,1758,3702,-1,1730,6743,2383,-1,1730,1729,6743,-1,6748,1745,7086,-1,1745,6748,3827,-1,1731,6757,2381,-1,1731,1744,6757,-1,1603,1748,2375,-1,1603,3707,1748,-1,1637,3650,1391,-1,3650,1637,1638,-1,3704,2371,1756,-1,3704,1762,2371,-1,1765,7946,6320,-1,1765,1727,7946,-1,6750,2389,1715,-1,6750,2387,2389,-1,6752,1715,3701,-1,6752,6750,1715,-1,1625,2389,3703,-1,1625,1627,2389,-1,3700,2392,2396,-1,3700,1718,2392,-1,3872,3698,2402,-1,6672,3698,3872,-1,1562,8003,3677,-1,2466,8003,1562,-1,7984,7072,7070,-1,7984,7093,7072,-1,6780,1690,1581,-1,1691,1690,6780,-1,6737,2406,6736,-1,2406,6737,2404,-1,1692,3675,6738,-1,3675,1692,3673,-1,2434,1697,6093,-1,2434,1698,1697,-1,7095,6705,6703,-1,6153,6705,7095,-1,3837,6159,1669,-1,6159,3837,6157,-1,6697,6139,6138,-1,6697,7985,6139,-1,7932,1659,3838,-1,7226,1659,7932,-1,1670,6699,1666,-1,1670,6704,6699,-1,6765,3833,1694,-1,6765,6764,3833,-1,1695,6717,6688,-1,1695,3832,6717,-1,1593,6720,6719,-1,2420,6720,1593,-1,3843,2525,6689,-1,1406,2525,3843,-1,7986,1694,2416,-1,6765,1694,7986,-1,3825,2632,1676,-1,3825,1759,2632,-1,1212,1678,2427,-1,1212,1209,1678,-1,6095,2431,1668,-1,6095,7240,2431,-1,6702,6099,6098,-1,6099,6702,6701,-1,1663,2425,6715,-1,1663,1662,2425,-1,2432,1616,3688,-1,1616,2432,6712,-1,1682,6727,3694,-1,1682,6710,6727,-1,6705,2410,2409,-1,2410,6705,1699,-1,6706,1612,1613,-1,6706,3837,1612,-1,6700,2436,7985,-1,6700,3687,2436,-1,3686,3653,6763,-1,1404,3653,3686,-1,6681,6720,2464,-1,6718,6720,6681,-1,7101,2556,6778,-1,6683,2556,7101,-1,5571,6836,5569,-1,5571,1646,6836,-1,6695,1652,1653,-1,6695,3839,1652,-1,1617,1639,2456,-1,2374,1639,1617,-1,2522,1711,1710,-1,2522,6760,1711,-1,1689,6763,3653,-1,2440,6763,1689,-1,1709,2448,540,-1,1709,2449,2448,-1,2363,3842,2528,-1,3842,2363,1631,-1,6734,3695,1563,-1,6734,7068,3695,-1,3684,7098,6735,-1,3684,1610,7098,-1,1618,1624,1619,-1,1618,3685,1624,-1,2454,1775,1622,-1,1775,2454,2450,-1,2451,2455,1776,-1,2455,2451,7088,-1,1398,2423,1681,-1,3652,2423,1398,-1,1792,3826,1793,-1,3826,1792,2392,-1,2460,1602,1601,-1,2460,3844,1602,-1,6730,7101,1575,-1,6730,6736,7101,-1,6723,6737,6722,-1,7099,6737,6723,-1,6731,7093,7984,-1,6738,7093,6731,-1,7100,2435,3836,-1,2435,7100,1590,-1,1573,2443,1574,-1,1573,1644,2443,-1,1790,1781,1784,-1,1781,1790,1789,-1,3830,2398,1703,-1,2399,2398,3830,-1,1566,1790,1567,-1,1570,1790,1566,-1,7074,7103,7983,-1,7103,7074,7102,-1,8003,6676,7983,-1,8003,2466,6676,-1,3677,7983,7103,-1,3677,8003,7983,-1,1550,1323,1688,-1,1323,1550,1324,-1,2402,1544,3872,-1,2402,1320,1544,-1,1319,1544,1320,-1,1544,1319,1545,-1,2472,243,456,-1,2472,3636,243,-1,2470,6630,3872,-1,2470,2557,6630,-1,1541,2472,2471,-1,1541,1543,2472,-1,6716,7113,6628,-1,7113,6716,7096,-1,1531,2201,2202,-1,2201,1531,3748,-1,7106,1522,6903,-1,7106,1520,1522,-1,6954,1512,6952,-1,6954,1513,1512,-1,3768,1407,1409,-1,3768,3767,1407,-1,7107,2031,3668,-1,7011,2031,7107,-1,6951,7017,2095,-1,7017,6951,6977,-1,6908,2220,6916,-1,2220,6908,6906,-1,6988,1409,1408,-1,6988,3771,1409,-1,7108,7016,7015,-1,7016,7108,7982,-1,6651,2480,3667,-1,2480,6651,6652,-1,6987,2481,6640,-1,6987,3665,2481,-1,6972,7109,2174,-1,2168,7109,6972,-1,3664,2044,2053,-1,3664,2045,2044,-1,2059,1501,3780,-1,2059,2172,1501,-1,2051,1476,1475,-1,2176,1476,2051,-1,2178,2088,7110,-1,2178,2089,2088,-1,6999,7981,2135,-1,6999,2206,7981,-1,7980,3774,7979,-1,3774,7980,2204,-1,1462,1997,1464,-1,1462,2130,1997,-1,7112,2097,6643,-1,7002,2097,7112,-1,7004,6648,6647,-1,7004,2119,6648,-1,2498,1448,2494,-1,2498,2155,1448,-1,1439,1351,2496,-1,1354,1351,1439,-1,3862,7978,2144,-1,7978,3862,2029,-1,2507,6950,2508,-1,6950,2507,6942,-1,2195,3856,2511,-1,3856,2195,6947,-1,2008,7112,7026,-1,2198,7112,2008,-1,3863,2514,1410,-1,2514,3863,3659,-1,1409,2478,3768,-1,1409,2521,2478,-1,2530,1396,1390,-1,2530,1397,1396,-1,1390,1401,2382,-1,1390,1396,1401,-1,2456,6693,2532,-1,6693,2456,1639,-1,3634,2099,2098,-1,2126,2099,3634,-1,3648,3775,2534,-1,3775,3648,3649,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=55 */
		private int[] getmand_Geo_5_877_coordIndex_55()
		{
			int[] value = {3752,1946,2539,-1,2217,1946,3752,-1,2541,1347,3647,-1,2541,2501,1347,-1,1378,1381,1379,-1,1378,1347,1381,-1,2543,3648,2542,-1,2500,3648,2543,-1,3643,1355,3642,-1,1355,3643,1358,-1,2546,3778,3849,-1,2546,3776,3778,-1,2549,1365,1370,-1,1365,2549,1363,-1,1355,1980,2476,-1,1360,1980,1355,-1,3646,3645,3644,-1,3645,3646,3751,-1,1346,2128,1461,-1,1346,3800,2128,-1,2134,1380,3777,-1,2536,1380,2134,-1,6813,7067,1855,-1,7066,7067,6813,-1,6901,2555,2554,-1,6901,6899,2555,-1,7113,2358,2357,-1,7113,6671,2358,-1,7089,1595,1594,-1,7091,1595,7089,-1,7091,3675,1595,-1,6618,6565,6552,-1,6618,6615,6565,-1,7119,1318,7974,-1,3874,1318,7119,-1,6626,7114,6625,-1,6626,6621,7114,-1,6626,6605,6604,-1,6605,6626,6624,-1,6602,7115,7969,-1,6602,6601,7115,-1,6579,6600,7116,-1,6599,6600,6579,-1,1317,7126,6610,-1,1317,7117,7126,-1,6622,6595,6593,-1,6595,6622,6619,-1,6592,6617,6616,-1,6592,6590,6617,-1,3632,6613,6589,-1,3632,6611,6613,-1,6596,6610,7126,-1,6596,6609,6610,-1,7127,7117,2570,-1,7127,7126,7117,-1,6606,7125,3627,-1,6606,6603,7125,-1,6573,7973,7972,-1,6573,6583,7973,-1,7977,6577,6586,-1,7975,6577,7977,-1,6352,7977,6350,-1,6352,6588,7977,-1,7974,6608,6574,-1,1318,6608,7974,-1,7976,6612,6578,-1,7116,6612,7976,-1,7976,6587,6581,-1,7975,6587,7976,-1,7118,7974,7972,-1,7118,7119,7974,-1,6625,6562,7120,-1,6562,6625,7114,-1,6569,7970,6558,-1,7970,6569,7118,-1,6566,7971,6560,-1,7971,6566,7120,-1,7121,7971,6563,-1,7971,7121,6344,-1,7973,6349,7970,-1,7973,7166,6349,-1,6551,6555,6554,-1,6555,6551,6550,-1,7968,6551,6546,-1,7968,6549,6551,-1,7969,6549,7968,-1,7969,7115,6549,-1,7124,7123,7122,-1,6515,7123,7124,-1,1301,2565,2567,-1,1301,2566,2565,-1,6525,1299,1298,-1,1299,6525,2568,-1,1306,6540,6537,-1,1306,1305,6540,-1,6536,6539,6538,-1,6539,6536,6533,-1,6532,6543,6535,-1,2563,6543,6532,-1,2564,3628,2571,-1,1312,3628,2564,-1,2567,6531,6530,-1,2565,6531,2567,-1,2572,1309,3630,-1,2572,2574,1309,-1,6527,6529,6526,-1,6528,6529,6527,-1,2568,2575,2569,-1,6525,2575,2568,-1,6518,6520,1302,-1,6518,6519,6520,-1,1308,6522,1302,-1,1308,1307,6522,-1,1298,6524,6541,-1,1298,3877,6524,-1,6520,6515,6514,-1,7123,6515,6520,-1,6456,6482,6479,-1,6456,7129,6482,-1,6497,6452,6496,-1,7963,6452,6497,-1,6471,7130,6469,-1,6467,7130,6471,-1,6463,2587,7140,-1,6450,2587,6463,-1,7965,6444,6443,-1,6444,7965,6465,-1,7146,7132,7131,-1,7146,7141,7132,-1,6493,6498,1289,-1,6493,7133,6498,-1,6326,2580,7172,-1,3623,2580,6326,-1,6488,1291,1290,-1,3620,1291,6488,-1,6492,7136,7135,-1,7138,7136,6492,-1,6501,2581,3623,-1,6501,7135,2581,-1,6483,6481,6480,-1,6481,6483,7966,-1,6478,6485,7967,-1,6478,3621,6485,-1,6490,7128,7137,-1,7128,6490,7967,-1,7949,6476,7966,-1,7949,7951,6476,-1,6491,6511,6509,-1,6511,6491,6489,-1,3620,6504,1291,-1,3622,6504,3620,-1,2580,7950,7172,-1,7950,2580,6477,-1,7138,6507,7136,-1,7138,6506,6507,-1,6462,7140,7139,-1,6463,7140,6462,-1,7130,7141,6508,-1,7132,7141,7130,-1,7965,6458,7964,-1,7965,6502,6458,-1,6505,6466,6503,-1,7139,6466,6505,-1,6510,6464,7964,-1,6510,7129,6464,-1,3882,6453,6455,-1,3882,1294,6453,-1,6453,6457,6454,-1,6457,6453,2585,-1,7131,7142,7146,-1,7143,7142,7131,-1,7144,1293,1292,-1,7144,7145,1293,-1,2588,6450,2589,-1,2588,6451,6450,-1,6441,7149,6440,-1,6433,7149,6441,-1,3607,6102,2633,-1,6102,3607,6435,-1,7149,2592,7148,-1,2593,2592,7149,-1,6438,6422,7153,-1,6422,6438,7150,-1,6430,7175,7151,-1,6430,6427,7175,-1,2592,6417,6437,-1,2595,6417,2592,-1,6434,6414,6413,-1,6414,6434,7153,-1,6431,6429,6421,-1,6429,6431,6427,-1,6409,6429,6428,-1,6409,6408,6429,-1,7152,6404,7929,-1,7154,6404,7152,-1,6426,2594,2591,-1,7962,2594,6426,-1,6415,6400,7962,-1,1274,6400,6415,-1,6397,6420,6419,-1,6397,7155,6420,-1,6119,1271,6118,-1,3616,1271,6119,-1,6416,7961,7154,-1,7156,7961,6416,-1,7960,6403,6393,-1,7960,7156,6403,-1,7959,6410,7155,-1,7959,6391,6410,-1,7958,6407,1275,-1,7958,6390,6407,-1,7961,6394,6406,-1,7157,6394,7961,-1,7158,7960,6387,-1,7158,7157,7960,-1,1273,3613,6401,-1,2605,3613,1273,-1,7959,7159,6386,-1,7159,7959,6399,-1,2607,3889,3612,-1,2607,7958,3889,-1,1266,2598,2610,-1,1266,3612,2598,-1,2601,7158,1262,-1,2601,3615,7158,-1,2605,7957,2604,-1,7957,2605,2597,-1,7159,7956,6380,-1,7956,7159,6389,-1,6370,2609,2608,-1,6370,7956,2609,-1,2614,2602,2601,-1,2614,2612,2602,-1,6385,6376,7957,-1,7160,6376,6385,-1,7955,6378,2616,-1,7955,6368,6378,-1,7161,6368,7955,-1,7161,6369,6368,-1,6377,6369,7161,-1,6374,6369,6377,-1,6374,7952,6369,-1,7954,7952,6374,-1,7954,7163,7952,-1,7954,6367,7163,-1,7162,6367,7954,-1,7162,6366,6367,-1,6371,6366,7162,-1,6371,7953,6366,-1,6371,6373,7953,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=56 */
		private int[] getmand_Geo_5_877_coordIndex_56()
		{
			int[] value = {6382,7955,3890,-1,6382,7161,7955,-1,7162,7160,6381,-1,7160,7162,7954,-1,1265,7953,2608,-1,1265,6366,7953,-1,7952,2611,2613,-1,2611,7952,7163,-1,7167,1771,6347,-1,7167,1772,1771,-1,6342,6756,7164,-1,6342,7168,6756,-1,2366,6356,2365,-1,7165,6356,2366,-1,6351,7080,6341,-1,6351,7079,7080,-1,6358,6585,7165,-1,6584,6585,6358,-1,6340,7167,7166,-1,6340,6339,7167,-1,7121,6364,7168,-1,7121,6557,6364,-1,6553,7944,6362,-1,6553,6561,7944,-1,7172,7173,7169,-1,7172,7950,7173,-1,7170,7948,6754,-1,7134,7948,7170,-1,7137,6321,7171,-1,7137,7128,6321,-1,7951,6318,7945,-1,7951,7949,6318,-1,7134,6500,7948,-1,7134,7133,6500,-1,6329,7947,7084,-1,7947,6329,7171,-1,7173,7946,7174,-1,7946,7173,7945,-1,6311,6316,6751,-1,6311,6315,6316,-1,6441,2618,2617,-1,2618,6441,6439,-1,6307,6120,7151,-1,6307,3904,6120,-1,7944,7087,6749,-1,6345,7087,7944,-1,6150,6289,7176,-1,7180,6289,6150,-1,6146,6286,7178,-1,7183,6286,6146,-1,6142,6284,7179,-1,7184,6284,6142,-1,7186,6116,6115,-1,7186,6281,6116,-1,6296,7181,7180,-1,6279,7181,6296,-1,6294,7182,7183,-1,6278,7182,6294,-1,6292,1257,7184,-1,6282,1257,6292,-1,7181,7191,6291,-1,7187,7191,7181,-1,7188,6288,7182,-1,7188,7193,6288,-1,7189,7188,6277,-1,7189,7195,7188,-1,6266,6283,7185,-1,6266,6265,6283,-1,1248,7190,7927,-1,1248,3893,7190,-1,7187,7192,7191,-1,7943,7192,7187,-1,6271,7942,7943,-1,7198,7942,6271,-1,7199,7195,7189,-1,7199,7194,7195,-1,6276,7196,6275,-1,7200,7196,6276,-1,7201,6273,6272,-1,7201,7197,6273,-1,7943,6258,7192,-1,7942,6258,7943,-1,7198,6239,7942,-1,6237,6239,7198,-1,6235,7194,7199,-1,6235,6234,7194,-1,7200,6231,7196,-1,6229,6231,7200,-1,6227,7197,7201,-1,6227,6226,7197,-1,6298,6227,6245,-1,6298,6225,6227,-1,6261,6305,6259,-1,6304,6305,6261,-1,6300,6257,6254,-1,6300,6301,6257,-1,6253,6297,6251,-1,6299,6297,6253,-1,6303,6249,6246,-1,6303,6302,6249,-1,7202,6125,6122,-1,7202,7940,6125,-1,5554,3894,1245,-1,3894,5554,5556,-1,6127,7210,7230,-1,7205,7210,6127,-1,7231,7940,6219,-1,7940,7231,6125,-1,7940,7207,7212,-1,7207,7940,7202,-1,6205,7203,6203,-1,6205,5602,7203,-1,7205,6209,7210,-1,7211,6209,7205,-1,7206,1238,7211,-1,1239,1238,7206,-1,6198,7212,7207,-1,6198,6197,7212,-1,6196,2623,2622,-1,6196,7208,2623,-1,6194,7213,7353,-1,6194,6193,7213,-1,6211,6200,6213,-1,6210,6200,6211,-1,6212,1229,6210,-1,1230,1229,6212,-1,3895,6187,6186,-1,6187,3895,1240,-1,6206,1223,2621,-1,1224,1223,6206,-1,6195,3898,1224,-1,6177,3898,6195,-1,7214,6201,7216,-1,7214,6199,6201,-1,3900,2624,1234,-1,3900,6180,2624,-1,1231,6182,3896,-1,2627,6182,1231,-1,7221,1219,3899,-1,7221,2627,1219,-1,6163,6188,6184,-1,6163,6165,6188,-1,7217,6190,7214,-1,7217,7938,6190,-1,3901,7939,3902,-1,7941,7939,3901,-1,7218,7938,7217,-1,7218,7937,7938,-1,7219,7215,6178,-1,7219,7936,7215,-1,7935,7221,7220,-1,7935,6183,7221,-1,7222,1216,2628,-1,7222,7934,1216,-1,7223,3901,6181,-1,7223,7941,3901,-1,6729,6145,7094,-1,7225,6145,6729,-1,1697,6096,6093,-1,7933,6096,1697,-1,7933,7177,6096,-1,7176,7177,7933,-1,6158,6295,7224,-1,7178,6295,6158,-1,6155,6293,7225,-1,7179,6293,6155,-1,7932,6135,7226,-1,7931,6135,7932,-1,6726,7930,6133,-1,7930,6726,6725,-1,5559,2630,3608,-1,5559,5558,2630,-1,7228,7931,6140,-1,7228,6126,7931,-1,7229,7930,6137,-1,7229,6124,7930,-1,2629,6222,3608,-1,7230,6222,2629,-1,7231,7228,6134,-1,7231,6220,7228,-1,6131,7229,6130,-1,6131,6224,7229,-1,6100,7233,7239,-1,6100,7232,7233,-1,7232,7234,7233,-1,7232,7929,7234,-1,7929,6405,7234,-1,7929,6404,6405,-1,7928,6085,7926,-1,7928,7235,6085,-1,6109,6115,7236,-1,6109,7186,6115,-1,1254,7235,7928,-1,1254,7238,7235,-1,7927,6112,7238,-1,7927,7190,6112,-1,6101,2424,2633,-1,2424,6101,3692,-1,6121,6107,7239,-1,6107,6121,6106,-1,6711,6141,6709,-1,6711,6090,6141,-1,6087,6713,7240,-1,6713,6087,6086,-1,7177,6094,6096,-1,7177,7926,6094,-1,6117,6097,7241,-1,6117,7237,6097,-1,5991,5980,5990,-1,7269,5980,5991,-1,7269,5982,5980,-1,7921,5982,7269,-1,7921,5994,5982,-1,7921,5997,5994,-1,7271,5997,7921,-1,7270,5997,7271,-1,7922,5997,7270,-1,7922,7919,5997,-1,5993,7919,7922,-1,5993,7918,7919,-1,5993,7268,7918,-1,5992,7268,5993,-1,5992,5998,7268,-1,1082,6070,5719,-1,6068,6070,1082,-1,6066,1054,7250,-1,6066,6063,1054,-1,7251,7253,5712,-1,6072,7253,7251,-1,3572,7923,2712,-1,7252,7923,3572,-1,5594,6059,5716,-1,5593,6059,5594,-1,6056,6079,6084,-1,6056,6055,6079,-1,6083,6011,6010,-1,6011,6083,6021,-1,6081,7255,6080,-1,6058,7255,6081,-1,6075,1206,7252,-1,1207,1206,6075,-1,7255,1202,6064,-1,1203,1202,7255,-1,7256,6074,6071,-1,7256,7259,6074,-1,3606,6069,2635,-1,3606,6067,6069,-1,6065,1202,6050,-1,1202,6065,6064,-1,7920,6019,6061,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=57 */
		private int[] getmand_Geo_5_877_coordIndex_57()
		{
			int[] value = {7920,7267,6019,-1,7263,7259,7256,-1,7263,3605,7259,-1,6046,7267,7920,-1,6046,6045,7267,-1,6054,2645,6052,-1,7261,2645,6054,-1,3910,2634,7262,-1,3910,1196,2634,-1,1204,1187,3906,-1,2639,1187,1204,-1,6040,3605,7263,-1,6040,2640,3605,-1,5576,3604,7266,-1,3604,5576,2642,-1,7261,2644,2645,-1,6034,2644,7261,-1,6037,7264,7356,-1,6037,6036,7264,-1,5999,1194,7265,-1,5999,7262,1194,-1,6041,2641,2640,-1,6041,3602,2641,-1,7925,6002,6001,-1,6002,7925,7266,-1,6013,5985,5984,-1,5985,6013,6015,-1,6018,5575,5572,-1,5575,6018,6017,-1,2652,6020,2653,-1,2652,7924,6020,-1,6024,2637,7924,-1,2638,2637,6024,-1,6026,5708,5706,-1,6083,5708,6026,-1,6045,6028,7267,-1,6045,6031,6028,-1,5705,6012,3927,-1,6012,5705,6010,-1,7258,6062,7923,-1,7258,6061,6062,-1,6033,7242,1174,-1,7249,7242,6033,-1,7246,6006,6038,-1,7246,6004,6006,-1,1180,7243,1181,-1,7245,7243,1180,-1,7268,5988,7918,-1,7268,7265,5988,-1,7922,6041,6039,-1,7922,7270,6041,-1,1184,7269,1185,-1,7921,7269,1184,-1,5990,3603,2646,-1,5990,5980,3603,-1,2652,2647,6025,-1,2651,2647,2652,-1,6030,2643,5582,-1,2643,6030,6029,-1,7260,7920,7257,-1,6046,7920,7260,-1,7245,5985,7247,-1,7245,1180,5985,-1,5973,7334,5971,-1,5973,5672,7334,-1,7272,5667,7338,-1,7272,5968,5667,-1,7273,5968,7272,-1,7273,5970,5968,-1,5962,1074,5960,-1,5962,1075,1074,-1,7277,5978,5965,-1,7277,7276,5978,-1,5683,5953,7278,-1,5951,5953,5683,-1,5685,5957,7337,-1,5955,5957,5685,-1,5945,5970,7273,-1,5945,5944,5970,-1,3584,2660,5975,-1,5942,2660,3584,-1,5974,7917,5972,-1,5948,7917,5974,-1,5680,5936,5678,-1,5934,5936,5680,-1,7284,5829,5967,-1,7284,7303,5829,-1,1157,7917,3914,-1,1157,5961,7917,-1,5930,2656,5966,-1,5930,2654,2656,-1,5963,3597,5927,-1,3597,5963,2659,-1,5961,7285,5959,-1,1157,7285,5961,-1,5958,5922,5956,-1,5920,5922,5958,-1,5954,5918,5952,-1,5916,5918,5954,-1,7303,5926,5925,-1,5926,7303,7284,-1,2657,1154,5947,-1,3915,1154,2657,-1,5910,5946,5943,-1,5910,5909,5946,-1,5820,5907,5933,-1,5908,5907,5820,-1,5940,5906,5938,-1,5905,5906,5940,-1,5937,5904,5935,-1,5903,5904,5937,-1,5902,5910,5928,-1,5902,5901,5910,-1,5843,5899,5848,-1,5844,5899,5843,-1,7287,5931,5929,-1,7287,7916,5931,-1,5919,7915,5917,-1,7288,7915,5919,-1,7289,5828,5924,-1,7289,5826,5828,-1,5923,7914,5921,-1,7290,7914,5923,-1,2668,7287,5911,-1,2668,7293,7287,-1,1150,5915,3595,-1,1150,3916,5915,-1,5913,5884,5912,-1,5882,5884,5913,-1,7290,5880,7914,-1,5878,5880,7290,-1,7288,5876,7915,-1,5874,5876,7288,-1,5872,5826,7289,-1,5872,5871,5826,-1,3594,5869,5882,-1,2666,5869,3594,-1,2667,7293,2668,-1,2667,7292,7293,-1,5900,5849,5898,-1,7294,5849,5900,-1,5890,5866,5888,-1,5864,5866,5890,-1,5897,5862,5895,-1,5860,5862,5897,-1,5819,1145,5892,-1,1146,1145,5819,-1,5883,5812,7907,-1,3592,5812,5883,-1,5858,7292,2667,-1,5858,5857,7292,-1,5873,3919,1129,-1,3919,5873,5870,-1,5881,5853,5879,-1,5851,5853,5881,-1,5877,7913,5875,-1,7295,7913,5877,-1,3592,5810,5812,-1,2670,5810,3592,-1,7296,7913,7295,-1,7296,7912,7913,-1,5867,7297,5865,-1,7911,7297,5867,-1,5863,3599,5861,-1,3600,3599,5863,-1,5899,7291,2663,-1,7291,5899,5898,-1,7275,5942,3584,-1,5942,7275,7280,-1,7909,7281,7298,-1,7909,5932,7281,-1,7299,7294,5900,-1,7299,7908,7294,-1,7304,7279,5830,-1,7304,7282,7279,-1,3585,7300,5827,-1,3585,3587,7300,-1,7910,5817,7302,-1,5818,5817,7910,-1,7283,5822,5821,-1,5822,7283,7286,-1,5962,2715,1075,-1,5962,5845,2715,-1,5971,7335,7276,-1,5971,7334,7335,-1,5925,7304,7303,-1,5925,5839,7304,-1,3585,5873,3588,-1,5871,5873,3585,-1,5818,1147,1146,-1,1147,5818,1125,-1,5908,5836,5891,-1,5908,5834,5836,-1,5959,7909,7298,-1,5959,7285,7909,-1,7305,7908,7299,-1,7305,7907,7908,-1,1099,7328,7904,-1,5750,7328,1099,-1,5750,5746,7328,-1,5750,5749,5746,-1,7327,5749,5750,-1,7327,7903,5749,-1,7327,7329,7903,-1,7327,1094,7329,-1,3577,1094,7327,-1,3577,2702,1094,-1,3577,3575,2702,-1,3577,5744,3575,-1,3577,7901,5744,-1,3577,7330,7901,-1,7341,2675,7308,-1,2728,2675,7341,-1,7905,5808,5803,-1,7905,7906,5808,-1,7350,2676,2677,-1,7317,2676,7350,-1,7318,7310,5635,-1,7318,7309,7310,-1,7349,3583,7326,-1,3583,7349,2681,-1,2673,2682,2674,-1,5781,2682,2673,-1,5780,7888,7313,-1,5780,5779,7888,-1,5777,7886,7314,-1,5777,5776,7886,-1,7315,7326,3583,-1,7315,5754,7326,-1,7317,5786,2676,-1,7316,5786,7317,-1,7318,5782,7309,-1,7319,5782,7318,-1,7320,1110,3582,-1,7320,5791,1110,-1,5766,7315,5796,-1,5766,5768,7315,-1,5794,5765,7316,-1,5764,5765,5794,-1,5763,7319,5790,-1,5763,5762,7319,-1,5775,2683,2687,-1,5775,5802,2683,-1,5772,5801,5800,-1,5772,3922,5801,-1,5770,5799,5798,-1,5770,7321,5799,-1,2692,3574,7325,-1,2691,3574,2692,-1,3573,2686,2709,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=58 */
		private int[] getmand_Geo_5_877_coordIndex_58()
		{
			int[] value = {3573,2687,2686,-1,5738,5778,7321,-1,5738,5730,5778,-1,7324,3582,7322,-1,7324,7320,3582,-1,5789,5745,5787,-1,2703,5745,5789,-1,7323,5785,7902,-1,7323,5783,5785,-1,5760,1098,2706,-1,1098,5760,5751,-1,7312,5619,5631,-1,7312,5761,5619,-1,3925,5807,1090,-1,3925,5797,5807,-1,7325,3924,2701,-1,3924,7325,3574,-1,2701,2688,2690,-1,2688,2701,3924,-1,7326,5628,7349,-1,7311,5628,7326,-1,3577,1101,3578,-1,3577,7327,1101,-1,7324,7904,7328,-1,7904,7324,7322,-1,7903,7323,7902,-1,7903,7329,7323,-1,5769,7330,5767,-1,7901,7330,5769,-1,3574,3923,3924,-1,2708,3923,3574,-1,1093,2685,1109,-1,2685,1093,2706,-1,2691,2697,2707,-1,2697,2691,2698,-1,5734,3573,2711,-1,5734,5733,3573,-1,7307,1103,5774,-1,7307,7306,1103,-1,3807,1085,3926,-1,5718,1085,3807,-1,1937,2714,3745,-1,7331,2714,1937,-1,1053,3928,1935,-1,1053,1050,3928,-1,7040,5709,5711,-1,5709,7040,6888,-1,6077,5720,1086,-1,6077,6078,5720,-1,7331,3572,2714,-1,6076,3572,7331,-1,5725,6082,7250,-1,6082,5725,5724,-1,7899,7333,7332,-1,7900,7333,7899,-1,1050,2732,3566,-1,1050,1052,2732,-1,7332,5707,5704,-1,7332,7333,5707,-1,6887,5669,5668,-1,5669,6887,6886,-1,3929,6885,6883,-1,7894,6885,3929,-1,5688,6884,5690,-1,5688,7893,6884,-1,7898,1058,3930,-1,2724,1058,7898,-1,2256,5668,7895,-1,6887,5668,2256,-1,1074,5672,5973,-1,1074,1073,5672,-1,5659,7337,7897,-1,7337,5659,7336,-1,7278,3569,2722,-1,7278,5677,3569,-1,5666,5675,7896,-1,5663,5675,5666,-1,7337,5949,7897,-1,5957,5949,7337,-1,3570,7896,1067,-1,3570,5666,7896,-1,2718,1120,1068,-1,1118,1120,2718,-1,5691,2722,2721,-1,5691,5684,2722,-1,2723,5676,1071,-1,5676,2723,2717,-1,7895,7335,5701,-1,7895,5979,7335,-1,5977,5695,7894,-1,5695,5977,5976,-1,1121,3570,1069,-1,3570,1121,2672,-1,5688,7336,7893,-1,5688,5686,7336,-1,7892,7339,7345,-1,7339,7892,6858,-1,7885,6855,7340,-1,7885,1927,6855,-1,2264,7308,6863,-1,7341,7308,2264,-1,5640,6862,6859,-1,5640,7891,6862,-1,7348,7343,7342,-1,7348,7046,7343,-1,7048,2725,2261,-1,7890,2725,7048,-1,6869,7344,6867,-1,7347,7344,6869,-1,7889,5636,7891,-1,7889,5625,5636,-1,7345,7887,5623,-1,7887,7345,7339,-1,1088,7340,7906,-1,1088,7885,7340,-1,7310,5644,5646,-1,7310,5804,5644,-1,7342,2679,7348,-1,1115,2679,7342,-1,1113,2725,7890,-1,1113,2681,2725,-1,7347,7350,7344,-1,5805,7350,7347,-1,7313,7889,5642,-1,7313,7888,7889,-1,7314,7887,5639,-1,7314,7886,7887,-1,5629,3742,2267,-1,5629,5618,3742,-1,7346,2695,5613,-1,2695,7346,3580,-1,3568,2270,2726,-1,5630,2270,3568,-1,5615,1088,1090,-1,7885,1088,5615,-1,5556,7209,3894,-1,7351,7209,5556,-1,5609,5599,5552,-1,5609,7352,5599,-1,5607,7208,7209,-1,5607,2623,7208,-1,7353,7352,5605,-1,7353,7213,7352,-1,5542,5588,5587,-1,2730,5588,5542,-1,5598,5543,5596,-1,5598,5591,5543,-1,7355,5598,5595,-1,7355,5585,5598,-1,5592,6049,7354,-1,5592,6048,6049,-1,5578,7355,5589,-1,5578,5577,7355,-1,7356,5586,5583,-1,7356,7264,5586,-1,7883,5572,2733,-1,6018,5572,7883,-1,1648,7884,1649,-1,1648,7357,7884,-1,7358,3934,6835,-1,7358,5562,3934,-1,7359,7361,6833,-1,7359,5560,7361,-1,7361,5608,5566,-1,7361,7360,5608,-1,7357,5555,7884,-1,7357,5553,5555,-1,3937,7351,7362,-1,3937,5606,7351,-1,5559,7204,5557,-1,5559,6223,7204,-1,5545,2298,7363,-1,2298,5545,2295,-1,5549,5716,5713,-1,5549,5594,5716,-1,5597,7363,5547,-1,5597,5596,7363,-1,3938,5703,1052,-1,5703,3938,5706,-1,3140,246,380,-1,3141,246,3140,-1,7379,5447,5190,-1,7379,7378,5447,-1,912,7364,5189,-1,912,277,7364,-1,2820,5539,2819,-1,5539,2820,5538,-1,935,5482,933,-1,5482,935,5481,-1,952,3454,3106,-1,3454,952,2781,-1,394,417,949,-1,394,412,417,-1,8004,5478,5537,-1,5478,8004,5477,-1,353,3543,1036,-1,353,335,3543,-1,361,5464,4026,-1,361,5461,5464,-1,919,2801,7390,-1,919,5479,2801,-1,1002,3945,2749,-1,1002,5507,3945,-1,5509,5493,2784,-1,5493,5509,3087,-1,3948,5492,3455,-1,5492,3948,7387,-1,975,994,2777,-1,977,994,975,-1,5534,2773,2750,-1,7367,2773,5534,-1,7367,2774,2773,-1,2774,7367,5495,-1,5505,5510,5504,-1,5510,5505,5533,-1,2765,987,5501,-1,987,2765,988,-1,7370,3561,2759,-1,7382,3561,7370,-1,5193,3562,2754,-1,5193,5192,3562,-1,1010,2753,1008,-1,1010,7482,2753,-1,5202,5485,5490,-1,5485,5202,5200,-1,7881,4024,3081,-1,7881,5517,4024,-1,7374,7480,7373,-1,7374,7481,7480,-1,5526,5516,2757,-1,5516,5526,5524,-1,5191,7376,7377,-1,5191,5528,7376,-1,2783,7882,980,-1,2783,3086,7882,-1,4035,5198,1020,-1,4035,3137,5198,-1,2753,7481,7374,-1,7482,7481,2753,-1,5532,5516,7375,-1,5516,5532,2797,-1,3111,7371,7380,-1,3111,7372,7371,-1,3457,441,7488,-1,3457,3459,441,-1,3078,445,3076,-1,445,3078,334,-1,1012,962,2791,-1,1012,961,962,-1,974,3549,3951,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=59 */
		private int[] getmand_Geo_5_877_coordIndex_59()
		{
			int[] value = {3548,3549,974,-1,426,979,5499,-1,426,2782,979,-1,5513,5498,5497,-1,5513,5450,5498,-1,5508,2765,3946,-1,2765,5508,2766,-1,7368,2790,2789,-1,7368,3552,2790,-1,3951,2795,7386,-1,2795,3951,3549,-1,5512,7383,5515,-1,5512,5496,7383,-1,987,2771,989,-1,2771,987,986,-1,430,983,431,-1,430,3554,983,-1,980,2767,978,-1,2767,980,7882,-1,2770,990,995,-1,990,2770,3949,-1,7388,407,5506,-1,7388,2763,407,-1,7368,7388,5511,-1,7368,2789,7388,-1,2775,5514,2768,-1,2775,5512,5514,-1,7387,7384,5492,-1,7387,7386,7384,-1,3555,3550,3551,-1,3550,3555,2764,-1,7385,410,402,-1,7385,997,410,-1,3549,2796,2795,-1,3549,971,2796,-1,1007,3546,2800,-1,2805,3546,1007,-1,5469,5178,5467,-1,5469,3102,5178,-1,5486,922,931,-1,922,5486,3953,-1,5478,5489,930,-1,5452,5489,5478,-1,966,917,967,-1,966,2804,917,-1,5537,930,2742,-1,930,5537,5478,-1,1011,7863,3563,-1,7863,1011,2811,-1,2813,3081,437,-1,2813,3559,3081,-1,3100,5537,3101,-1,5537,3100,8004,-1,341,3447,5185,-1,3447,341,362,-1,5530,3075,3074,-1,5530,5531,3075,-1,1037,2814,1038,-1,1037,941,2814,-1,2818,7485,2838,-1,2818,1034,7485,-1,7861,2814,2819,-1,7861,351,2814,-1,342,4027,343,-1,342,344,4027,-1,5180,935,938,-1,3097,935,5180,-1,947,398,2824,-1,947,2822,398,-1,3099,8004,3100,-1,8004,3099,5491,-1,5491,5477,8004,-1,5491,5488,5477,-1,920,7390,3448,-1,920,919,7390,-1,2740,394,396,-1,3544,394,2740,-1,368,924,923,-1,368,3452,924,-1,944,5536,3564,-1,5458,5536,944,-1,2825,2828,2826,-1,3942,2828,2825,-1,5472,3560,5474,-1,5472,3558,3560,-1,5468,7881,5471,-1,5468,5517,7881,-1,5466,5470,5467,-1,5463,5470,5466,-1,5529,5465,5460,-1,5465,5529,7380,-1,5462,3075,5531,-1,5462,5457,3075,-1,3073,944,1021,-1,5458,944,3073,-1,926,2741,3545,-1,926,3446,2741,-1,2743,1004,427,-1,2744,1004,2743,-1,5498,953,1033,-1,388,953,5498,-1,388,387,953,-1,3460,2837,280,-1,2835,2837,3460,-1,5448,7483,2836,-1,7391,7483,5448,-1,5332,806,2884,-1,5332,5331,806,-1,5384,729,2891,-1,5384,5443,729,-1,3091,907,3433,-1,3091,908,907,-1,689,5366,5432,-1,5366,689,5364,-1,2841,5437,892,-1,2841,7399,5437,-1,4020,3534,805,-1,4020,7880,3534,-1,713,730,5336,-1,730,713,731,-1,2842,2905,875,-1,2842,7871,2905,-1,3983,7880,4020,-1,3983,3982,7880,-1,680,7875,7440,-1,680,682,7875,-1,5446,449,7405,-1,3066,449,5446,-1,2836,5195,5435,-1,7483,5195,2836,-1,5434,2841,891,-1,5434,3461,2841,-1,5429,7407,5440,-1,7407,5429,7408,-1,5432,7859,5169,-1,5432,5366,7859,-1,7394,5360,5440,-1,7394,7393,5360,-1,7874,3145,5173,-1,5436,3145,7874,-1,816,2859,817,-1,816,2860,2859,-1,7403,3070,7406,-1,7403,448,3070,-1,7403,8005,448,-1,5375,4277,29,-1,5375,2899,4277,-1,7878,2865,2864,-1,2865,7878,3371,-1,5428,793,3975,-1,4274,793,5428,-1,3327,782,3976,-1,4278,782,3327,-1,772,4244,7877,-1,4254,4244,772,-1,4251,5421,2903,-1,5420,5421,4251,-1,776,2867,7751,-1,776,2868,2867,-1,4245,778,5370,-1,778,4245,7750,-1,768,7793,769,-1,768,845,7793,-1,5353,3963,5351,-1,3963,5353,838,-1,5354,7422,2908,-1,7422,5354,5417,-1,2870,843,2871,-1,841,843,2870,-1,2907,5406,5358,-1,2907,7418,5406,-1,7438,7424,7417,-1,7438,7876,7424,-1,841,826,842,-1,841,827,826,-1,2909,5398,5414,-1,2909,5397,5398,-1,7760,7418,5412,-1,7419,7418,7760,-1,7789,2870,3537,-1,7420,2870,7789,-1,7421,7414,5419,-1,7757,7414,7421,-1,5417,4203,7422,-1,4203,5417,4202,-1,840,7423,7424,-1,7423,840,8,-1,7425,2872,831,-1,2872,7425,7427,-1,7426,3964,835,-1,7425,3964,7426,-1,2876,7426,824,-1,4167,7426,2876,-1,3967,3992,3965,-1,3992,3967,5357,-1,5350,684,683,-1,5350,5352,684,-1,747,811,2924,-1,747,812,811,-1,696,792,785,-1,695,792,696,-1,5326,2885,5321,-1,5326,2886,2885,-1,3534,5444,2884,-1,7431,5444,3534,-1,7880,7431,3534,-1,7431,7880,5439,-1,5333,5321,5322,-1,5333,5325,5321,-1,7432,7785,4126,-1,7432,7435,7785,-1,7784,7433,5380,-1,7433,7784,4123,-1,7879,789,7434,-1,7437,789,7879,-1,2893,2895,2894,-1,2895,2893,2890,-1,7441,5339,7430,-1,5339,7441,7873,-1,2890,7433,5385,-1,2890,2893,7433,-1,2915,7432,5344,-1,7432,2915,7435,-1,2882,7437,7878,-1,7437,2882,3524,-1,797,800,798,-1,3972,800,797,-1,851,2898,7410,-1,2898,851,847,-1,739,3531,752,-1,3531,739,751,-1,773,818,774,-1,773,5369,818,-1,5359,7877,7412,-1,7877,5359,810,-1,764,5320,3990,-1,764,763,5320,-1,7395,5347,7393,-1,5346,5347,7395,-1,2906,5430,5348,-1,2906,2905,5430,-1,3968,843,842,-1,843,3968,3969,-1,5410,3967,3966,-1,5410,5418,3967,-1,2879,5414,3993,-1,2879,2909,5414,-1,7876,2877,746,-1,7876,7438,2877,-1,5416,5394,7415,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=60 */
		private int[] getmand_Geo_5_877_coordIndex_60()
		{
			int[] value = {5416,5392,5394,-1,5363,7401,5361,-1,5363,7400,7401,-1,3523,7440,5365,-1,3523,680,7440,-1,3988,3971,3989,-1,3988,691,3971,-1,2850,5171,2852,-1,5345,5171,2850,-1,5379,3530,726,-1,5379,5382,3530,-1,5389,7441,5388,-1,5389,5338,7441,-1,5387,7392,2930,-1,5387,7430,7392,-1,5173,7875,7874,-1,5172,7875,5173,-1,5337,722,7873,-1,5337,723,722,-1,7397,5389,3985,-1,5389,7397,7396,-1,2863,881,880,-1,2863,5395,881,-1,859,5396,3965,-1,859,5395,5396,-1,5322,7872,5276,-1,5322,2922,7872,-1,486,693,3482,-1,486,694,693,-1,7443,5324,7444,-1,5390,5324,7443,-1,7408,7444,7407,-1,7408,5327,7444,-1,693,5433,5329,-1,5433,693,692,-1,807,7871,2842,-1,3960,7871,807,-1,735,694,736,-1,694,735,2883,-1,743,2927,681,-1,2911,2927,743,-1,599,5316,2928,-1,599,7445,5316,-1,7446,516,3959,-1,516,7446,7865,-1,7447,7446,5319,-1,7446,7447,7864,-1,5315,5314,7447,-1,5315,3520,5314,-1,3151,6761,7452,-1,3151,5164,6761,-1,3519,3501,3475,-1,3519,603,3501,-1,474,3049,472,-1,474,2934,3049,-1,3515,7866,3051,-1,3515,2941,7866,-1,2936,470,476,-1,2938,470,2936,-1,3033,4013,7489,-1,3033,543,4013,-1,475,5223,2937,-1,475,3515,5223,-1,327,3035,541,-1,3036,3035,327,-1,3057,3053,461,-1,3057,2414,3053,-1,642,2942,643,-1,642,652,2942,-1,5312,613,2931,-1,5312,614,613,-1,3509,4912,5293,-1,4912,3509,4910,-1,5305,2970,5292,-1,2970,5305,5304,-1,7453,4909,7568,-1,4909,7453,2953,-1,2948,2951,645,-1,2948,2949,2951,-1,4892,2946,5304,-1,2946,4892,2947,-1,5288,2965,3510,-1,4001,2965,5288,-1,2955,5290,5298,-1,2955,2954,5290,-1,2981,7455,7870,-1,7455,2981,5287,-1,4885,5300,5299,-1,7576,5300,4885,-1,2956,7837,2957,-1,7837,2956,7456,-1,4870,634,7460,-1,4870,2977,634,-1,7458,7870,7455,-1,4888,7870,7458,-1,662,4016,3491,-1,662,2964,4016,-1,7579,7461,4866,-1,7869,7461,7579,-1,7869,4642,3500,-1,7869,7579,4642,-1,5293,4855,2968,-1,5293,4912,4855,-1,2964,5232,4016,-1,2963,5232,2964,-1,1750,5294,2967,-1,5294,1750,6747,-1,2972,653,652,-1,2972,2950,653,-1,2966,3513,639,-1,2966,2952,3513,-1,3489,2988,2986,-1,2988,3489,2974,-1,3116,7489,3117,-1,3033,7489,3116,-1,2958,3998,638,-1,2958,5307,3998,-1,2982,2964,662,-1,2982,3511,2964,-1,2959,621,2960,-1,5284,621,2959,-1,7869,618,7461,-1,619,618,7869,-1,538,2986,2988,-1,2986,538,2987,-1,5220,2941,2991,-1,5220,7866,2941,-1,5276,3149,3148,-1,3146,5276,7872,-1,3146,3149,5276,-1,5342,5233,5236,-1,5342,5441,5233,-1,5330,3502,5264,-1,5330,7442,3502,-1,5226,5230,5229,-1,5230,5226,5225,-1,5247,3009,520,-1,5247,3008,3009,-1,4698,7475,5273,-1,7615,7475,4698,-1,7826,7468,570,-1,4692,7468,7826,-1,4680,5243,4678,-1,4680,7868,5243,-1,7469,3021,7470,-1,7469,5245,3021,-1,5251,597,598,-1,5251,7471,597,-1,505,7867,602,-1,7867,505,504,-1,5281,323,322,-1,5281,3037,323,-1,594,3003,7473,-1,3003,594,3004,-1,3048,5275,3047,-1,3048,493,5275,-1,7822,5254,5255,-1,7474,5254,7822,-1,5255,3238,7822,-1,5255,4010,3238,-1,573,7467,571,-1,573,7821,7467,-1,5250,4624,5249,-1,4636,4624,5250,-1,586,3488,3020,-1,4009,3488,586,-1,5255,568,4010,-1,5255,3497,568,-1,3014,5240,566,-1,5285,5240,3014,-1,7475,5247,5268,-1,7475,5246,5247,-1,5257,577,576,-1,5257,4009,577,-1,5242,2998,3017,-1,5242,7471,2998,-1,3485,3015,5253,-1,3485,513,3015,-1,559,5269,560,-1,5269,559,7868,-1,3022,5269,3024,-1,5269,3022,560,-1,7450,5265,3001,-1,7450,7449,5265,-1,550,5328,7476,-1,550,3482,5328,-1,3027,3023,3025,-1,547,3023,3027,-1,7436,485,3028,-1,7436,2914,485,-1,546,549,552,-1,548,549,546,-1,4032,537,536,-1,4032,7451,537,-1,3114,3517,309,-1,3517,3114,3516,-1,471,3035,469,-1,471,2939,3035,-1,3002,322,554,-1,3002,5281,322,-1,3479,7450,3052,-1,7450,3479,3480,-1,326,7860,556,-1,325,7860,326,-1,5442,3486,5441,-1,5442,895,3486,-1,317,524,3029,-1,525,524,317,-1,2989,4002,2990,-1,2984,4002,2989,-1,3045,5267,5266,-1,3045,3047,5267,-1,5274,550,7477,-1,3481,550,5274,-1,5283,5263,7463,-1,5263,5283,5261,-1,451,5277,3148,-1,7465,5277,451,-1,499,3006,5253,-1,3006,499,3483,-1,5391,7464,7476,-1,7464,5391,5282,-1,5445,515,7442,-1,897,515,5445,-1,6762,3505,610,-1,5309,3505,6762,-1,2933,3051,7866,-1,3051,2933,474,-1,3479,553,3478,-1,553,3479,3052,-1,5317,7445,7478,-1,5316,7445,5317,-1,7864,7865,7446,-1,7865,7864,5216,-1,466,5317,7478,-1,5317,466,468,-1,5211,2415,579,-1,5211,5213,2415,-1,464,3054,465,-1,464,3055,3054,-1,3431,7452,3474,-1,3151,7452,3431,-1,2993,4019,2934,-1,2993,608,4019,-1,455,457,242,-1,457,455,3469,-1,5165,3467,7448,-1,4005,3467,5165,-1,3465,3063,943,-1,3465,3066,3063,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=61 */
		private int[] getmand_Geo_5_877_coordIndex_61()
		{
			int[] value = {7405,8005,7403,-1,448,7405,449,-1,8005,7405,448,-1,3983,5206,5203,-1,3983,7479,5206,-1,4022,2799,4023,-1,2799,4022,2800,-1,7480,3074,3065,-1,7481,3074,7480,-1,2762,2800,4022,-1,1007,2800,2762,-1,7375,7863,5532,-1,5527,7863,7375,-1,5530,1010,3112,-1,5530,7482,1010,-1,7391,7404,7483,-1,7402,7404,7391,-1,5523,7379,5521,-1,7377,7379,5523,-1,3562,2757,2759,-1,3562,5192,2757,-1,7372,7484,5518,-1,7372,1026,7484,-1,3082,3459,3457,-1,3082,3083,3459,-1,993,2772,2771,-1,2772,993,992,-1,5493,3086,2783,-1,3086,5493,3087,-1,985,2788,2787,-1,2788,985,403,-1,861,908,3090,-1,2839,908,861,-1,1043,7485,5480,-1,7485,1043,1042,-1,7862,5186,5185,-1,5476,5186,7862,-1,7487,7486,5540,-1,7486,7487,5176,-1,7486,2781,2756,-1,2781,7486,3454,-1,2761,376,375,-1,376,2761,3095,-1,393,384,392,-1,393,385,384,-1,263,390,888,-1,263,391,390,-1,366,413,3544,-1,366,7366,413,-1,3100,3450,3099,-1,3449,3450,3100,-1,7487,7861,7365,-1,7861,7487,5184,-1,447,7488,332,-1,447,3457,7488,-1,324,3442,325,-1,324,318,3442,-1,3032,2985,3506,-1,2985,3032,313,-1,319,5234,3009,-1,319,324,5234,-1,3031,325,3029,-1,3031,7860,325,-1,257,2735,3150,-1,253,2735,257,-1,3138,3120,3123,-1,3138,297,3120,-1,3127,913,3125,-1,3127,1048,913,-1,3118,251,305,-1,3118,3143,251,-1,262,3135,260,-1,262,3439,3135,-1,1045,283,285,-1,1045,3464,283,-1,3438,4036,1046,-1,3438,3439,4036,-1,3139,3141,3140,-1,3141,3139,256,-1,2816,253,255,-1,2735,253,2816,-1,307,1048,3127,-1,1048,307,3122,-1,2834,3119,263,-1,2834,3441,3119,-1,3433,3432,2854,-1,3433,907,3432,-1,7859,5346,7395,-1,5346,7859,7439,-1,5311,5209,7448,-1,5311,5208,5209,-1,604,3431,3473,-1,3431,604,3060,-1,5115,5158,5101,-1,5115,5157,5158,-1,5097,7842,7569,-1,7842,5097,5137,-1,7493,7856,5159,-1,7491,7856,7493,-1,7494,7493,7500,-1,7492,7493,7494,-1,5161,7495,5160,-1,5161,7501,7495,-1,7497,7502,7496,-1,7497,5127,7502,-1,3155,3153,5130,-1,3153,3155,3154,-1,7498,3430,3154,-1,3430,7498,3428,-1,7500,7857,7494,-1,7500,7499,7857,-1,3164,7501,3161,-1,7495,7501,3164,-1,7496,7503,7858,-1,7496,7502,7503,-1,7517,5146,7858,-1,7517,7504,5146,-1,3428,4042,230,-1,4042,3428,7498,-1,7499,227,7857,-1,228,227,7499,-1,3161,3162,3164,-1,224,3162,3161,-1,7518,7858,7503,-1,7518,7517,7858,-1,5132,7508,5123,-1,5132,7507,7508,-1,5136,4904,4901,-1,5136,7507,4904,-1,4898,5139,7505,-1,5139,4898,7574,-1,5121,7497,5155,-1,5121,7509,7497,-1,5125,7508,5138,-1,5125,7509,7508,-1,5129,7506,5140,-1,5129,7490,7506,-1,5112,7491,7510,-1,7856,7491,5112,-1,7511,7506,5117,-1,7506,7511,7505,-1,5114,5107,7510,-1,5114,7512,5107,-1,4894,5109,7573,-1,4894,7512,5109,-1,4899,5111,7572,-1,4899,7511,5111,-1,5105,5102,5104,-1,5100,5102,5105,-1,7513,5135,5096,-1,5135,7513,5126,-1,5124,7513,5156,-1,5126,7513,5124,-1,5067,5087,5084,-1,5087,5067,5066,-1,7519,7515,7514,-1,7519,5062,7515,-1,3169,7520,5069,-1,7516,7520,3169,-1,5086,5089,5084,-1,5086,5088,5089,-1,5087,5083,5085,-1,5081,5083,5087,-1,5145,4042,5074,-1,231,4042,5145,-1,3158,5079,5078,-1,5079,3158,3166,-1,5077,227,226,-1,5077,5076,227,-1,225,3160,5075,-1,225,224,3160,-1,7855,5072,5092,-1,7855,5070,5072,-1,215,7522,5094,-1,4044,7522,215,-1,5064,7515,5062,-1,5064,4045,7515,-1,7524,3423,3425,-1,5023,3423,7524,-1,5028,7525,5026,-1,5028,5002,7525,-1,3184,7526,7854,-1,7526,3184,3183,-1,7537,7527,7536,-1,7527,7537,5012,-1,3173,5013,3171,-1,5013,3173,7539,-1,5006,7540,7851,-1,5006,206,7540,-1,3174,3178,3177,-1,3174,3187,3178,-1,7528,5010,3182,-1,5010,7528,7849,-1,3181,7529,5044,-1,7529,3181,3180,-1,7531,214,7530,-1,7531,4881,214,-1,7529,4878,7532,-1,7529,7523,4878,-1,5036,5017,5014,-1,5036,7533,5017,-1,5045,5038,7533,-1,5038,5045,7530,-1,7852,5027,7535,-1,7852,5025,5027,-1,5024,7853,5022,-1,5030,7853,5024,-1,5060,7853,5058,-1,5032,7853,5060,-1,7534,7852,7840,-1,5034,7852,7534,-1,5057,5035,5055,-1,5033,5035,5057,-1,7839,5021,7841,-1,7535,5021,7839,-1,7854,5040,5039,-1,7854,7526,5040,-1,7536,5042,5041,-1,7536,7527,5042,-1,7537,5047,3422,-1,7537,5052,5047,-1,7850,5048,5003,-1,7850,7851,5048,-1,5051,5005,3424,-1,5051,5011,5005,-1,7524,7850,5056,-1,5007,7850,7524,-1,3184,3176,3419,-1,3184,7538,3176,-1,7538,7854,5054,-1,7538,3184,7854,-1,3185,7539,3173,-1,7539,3185,4996,-1,7528,4994,7849,-1,7528,4995,4994,-1,3187,4998,3178,-1,3187,3186,4998,-1,206,4999,7540,-1,206,4050,4999,-1,7543,7542,7541,-1,7542,7543,4979,-1,4859,4983,4982,-1,143,4983,4859,-1,204,7543,4986,-1,7543,204,4972,-1,4968,4862,7544,-1,4860,4862,4968,-1,3416,7835,4973,-1,4638,7835,3416,-1,4659,4981,4657,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=62 */
		private int[] getmand_Geo_5_877_coordIndex_62()
		{
			int[] value = {4981,4659,7548,-1,4978,7545,7544,-1,4978,7549,7545,-1,7545,7546,4970,-1,7545,7551,7546,-1,4974,3415,3189,-1,4974,7553,3415,-1,7548,4956,7547,-1,7548,4659,4956,-1,7549,7551,7545,-1,7549,4963,7551,-1,7551,4949,7546,-1,7551,7550,4949,-1,3192,7553,7552,-1,3415,7553,3192,-1,198,7555,7824,-1,7555,198,7554,-1,4946,202,7547,-1,202,4946,7556,-1,4954,4943,7557,-1,4954,7556,4943,-1,3194,4940,7550,-1,3194,196,4940,-1,4960,4937,7552,-1,4960,7558,4937,-1,7554,7559,4955,-1,7554,4936,7559,-1,4945,194,4935,-1,4945,7559,194,-1,191,4951,7557,-1,4951,191,189,-1,7560,4948,4933,-1,7558,4948,7560,-1,200,186,4054,-1,200,3196,186,-1,4928,197,7847,-1,4941,197,4928,-1,4930,7560,7848,-1,4939,7560,4930,-1,175,3200,176,-1,193,3200,175,-1,4923,7847,4056,-1,7847,4923,7562,-1,7848,4920,7563,-1,7848,4931,4920,-1,174,3201,175,-1,174,7846,3201,-1,7562,7845,4926,-1,7561,7845,7562,-1,4929,7564,7844,-1,7564,4929,7563,-1,181,7565,182,-1,7843,7565,181,-1,2948,4891,4900,-1,2948,2947,4891,-1,4893,5302,7567,-1,7454,5302,4893,-1,7570,5306,4906,-1,668,5306,7570,-1,4902,5303,7568,-1,5303,4902,7571,-1,7569,4908,7570,-1,4908,7569,7842,-1,4890,5134,5131,-1,4890,7571,5134,-1,4913,5106,7567,-1,4913,7572,5106,-1,4911,5103,4856,-1,4911,7573,5103,-1,7841,7836,7839,-1,4868,7836,7841,-1,7575,7458,5301,-1,7458,7575,7838,-1,7532,4875,7576,-1,4875,7532,4878,-1,7840,4871,7534,-1,7577,4871,7840,-1,7531,7838,7575,-1,7531,5046,7838,-1,7456,4883,7837,-1,5059,4883,7456,-1,7457,7836,7460,-1,7577,7836,7457,-1,5296,4984,3512,-1,4984,5296,7542,-1,4859,7459,4858,-1,4859,4985,7459,-1,4865,4977,7578,-1,4977,4865,4975,-1,7578,7835,4643,-1,7578,4977,7835,-1,4652,7618,4653,-1,7618,4652,7592,-1,4844,7620,4690,-1,7620,4844,172,-1,7589,7622,4686,-1,7622,7589,4843,-1,7594,7590,4849,-1,7590,7594,4841,-1,7593,4852,7592,-1,4852,7593,4839,-1,4836,7589,4851,-1,7589,4836,169,-1,3413,7594,3202,-1,7594,3413,4831,-1,3412,7593,3204,-1,7593,3412,4825,-1,4846,4822,173,-1,4846,4821,4822,-1,4822,4819,4835,-1,4822,4817,4819,-1,3411,3413,3203,-1,3413,3411,4815,-1,4648,4812,4646,-1,4648,4810,4812,-1,3208,4809,3206,-1,3208,3210,4809,-1,7595,4840,4837,-1,4840,7595,7597,-1,4803,4823,7597,-1,4823,4803,4802,-1,4799,3207,4833,-1,3207,4799,4798,-1,4793,4832,4829,-1,4832,4793,4795,-1,4828,3211,3209,-1,4828,4791,3211,-1,4806,4826,4824,-1,4826,4806,7598,-1,4785,7596,7598,-1,7596,4785,4784,-1,4820,4781,4818,-1,4820,4779,4781,-1,4777,4816,4814,-1,4816,4777,4776,-1,4813,4773,4811,-1,4813,4771,4773,-1,4789,4807,3212,-1,4807,4789,4805,-1,7582,4808,4805,-1,4808,7582,7587,-1,4801,7583,4804,-1,4801,7585,7583,-1,7581,4800,4797,-1,4800,7581,7580,-1,7584,4794,4796,-1,4794,7584,7586,-1,7610,4717,4714,-1,7610,7832,4717,-1,7830,7832,7610,-1,7830,7608,7832,-1,4711,7608,7830,-1,4711,7609,7608,-1,4713,7609,4711,-1,4713,4703,7609,-1,7611,4703,4713,-1,7611,4701,4703,-1,7829,4701,7611,-1,7829,7827,4701,-1,4709,7827,7829,-1,4707,7827,4709,-1,4707,7614,7827,-1,7612,7614,4707,-1,7612,4704,7614,-1,7612,4706,4704,-1,7612,7828,4706,-1,7630,3214,7600,-1,7630,7834,3214,-1,4754,4666,7628,-1,4666,4754,4752,-1,7629,7602,4665,-1,7629,4760,7602,-1,4748,7602,4747,-1,7599,7602,4748,-1,3215,7834,3216,-1,3214,7834,3215,-1,4768,4742,4741,-1,4768,4765,4742,-1,4750,4761,4763,-1,4761,4750,4759,-1,4759,164,4762,-1,4759,3218,164,-1,4758,161,3408,-1,4758,162,161,-1,4755,3223,4735,-1,4755,3409,3223,-1,4734,4152,4151,-1,4152,4734,4733,-1,4729,4740,4733,-1,4740,4729,4730,-1,157,3407,4749,-1,3407,157,154,-1,3224,4727,3225,-1,3224,3217,4727,-1,3229,4746,4743,-1,4746,3229,7603,-1,7603,4720,4732,-1,7603,4718,4720,-1,4721,4739,4736,-1,4739,4721,7604,-1,165,7833,166,-1,165,3226,7833,-1,4724,163,152,-1,4061,163,4724,-1,4725,3405,3231,-1,3405,4725,4710,-1,4062,7613,4708,-1,4062,4728,7613,-1,7833,3234,3403,-1,7833,4702,3234,-1,4715,7604,4721,-1,7604,4715,7831,-1,4720,7607,4731,-1,4720,4719,7607,-1,7832,7606,7831,-1,7606,7832,7608,-1,4719,7610,7607,-1,4719,7830,7610,-1,7829,4725,3232,-1,4725,7829,7611,-1,7828,7613,7605,-1,7613,7828,7612,-1,3234,7614,3235,-1,3234,7827,7614,-1,4688,5272,4691,-1,5272,4688,7619,-1,4684,5271,7615,-1,5271,4684,7621,-1,7617,7826,7466,-1,7826,7617,7825,-1,7618,7825,7617,-1,7825,7618,4853,-1,7620,4697,7619,-1,4697,7620,4850,-1,7622,4693,7621,-1,4693,7622,4848,-1,7470,4673,7469,-1,7470,7623,4673,-1,4669,5270,7624,-1,3494,5270,4669,-1,4682,7626,7623,-1,4682,4667,7626,-1,4679,7627,7624,-1,4679,4664,7627,-1,4766,150,7625,-1,150,4766,7628,-1,7626,7629,4675,-1,7626,4764,7629,-1,7627,4770,4672,-1,7627,4769,4770,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=63 */
		private int[] getmand_Geo_5_877_coordIndex_63()
		{
			int[] value = {145,7631,4641,-1,145,147,7631,-1,3402,3190,3236,-1,3188,3190,3402,-1,7824,146,3237,-1,7824,7555,146,-1,7820,7632,4635,-1,7820,7823,7632,-1,4631,4649,4629,-1,4631,7633,4649,-1,4644,7823,7634,-1,7823,4644,7632,-1,4650,3410,7634,-1,4650,4827,3410,-1,589,7636,7635,-1,7474,7636,589,-1,3240,7822,3238,-1,3240,4640,7822,-1,7631,7635,7636,-1,7631,4661,7635,-1,5258,4628,5256,-1,5258,7637,4628,-1,5259,4634,7821,-1,5259,4632,4634,-1,4696,7591,7637,-1,4696,4847,7591,-1,4627,7820,4625,-1,4627,4655,7820,-1,8006,4552,7816,-1,8006,4553,4552,-1,7814,3393,4546,-1,4549,3393,7814,-1,4549,3263,3393,-1,4551,3263,4549,-1,4551,7675,3263,-1,7673,7675,4551,-1,7673,4557,7675,-1,7673,4555,4557,-1,7815,4555,7673,-1,7671,4555,7815,-1,7671,7670,4555,-1,4553,7670,7671,-1,7670,4553,8006,-1,3330,4607,4606,-1,3330,3331,4607,-1,4267,4602,7794,-1,4267,4603,4602,-1,7645,4271,4265,-1,4271,7645,4609,-1,4599,7795,4094,-1,7795,4599,7651,-1,4597,7645,4618,-1,7645,4597,4596,-1,4623,4595,4594,-1,4623,4621,4595,-1,4620,4593,4619,-1,4620,4592,4593,-1,7650,4618,4616,-1,4618,7650,4597,-1,3243,4613,7651,-1,4613,3243,7819,-1,3245,7650,4604,-1,7650,3245,3249,-1,4612,3399,4610,-1,4612,7652,3399,-1,4608,4588,3392,-1,4608,4605,4588,-1,3244,7819,3243,-1,7819,3244,7658,-1,135,3400,4600,-1,3400,135,134,-1,132,3249,3245,-1,3249,132,3250,-1,7652,3252,3399,-1,7652,7657,3252,-1,7658,3254,124,-1,7658,3244,3254,-1,3266,7660,3267,-1,3266,4136,7660,-1,7657,3396,3252,-1,7657,7659,3396,-1,3267,3259,3258,-1,3267,7660,3259,-1,7817,7662,7661,-1,7817,7818,7662,-1,7659,7663,3396,-1,7659,7813,7663,-1,117,4543,4527,-1,117,3253,4543,-1,7818,4548,7662,-1,7818,7672,4548,-1,4583,3260,3259,-1,4583,4547,3260,-1,125,3261,3394,-1,125,129,3261,-1,7665,7818,4582,-1,7818,7665,7672,-1,3391,7669,7777,-1,7666,7669,3391,-1,7668,113,7667,-1,7668,4567,113,-1,4066,4534,4568,-1,4534,4066,7664,-1,7647,7668,4571,-1,7668,7647,7649,-1,7666,7653,7669,-1,7666,7656,7653,-1,4620,3360,4570,-1,3360,4620,3356,-1,4592,4570,7667,-1,4570,4592,4620,-1,3395,7816,3261,-1,3395,8006,7816,-1,7671,7665,4573,-1,7665,7671,7815,-1,4550,7814,4576,-1,4550,4549,7814,-1,7675,4554,7674,-1,4554,7675,4557,-1,4528,7664,4526,-1,7664,4528,7641,-1,7813,7643,7663,-1,7813,7642,7643,-1,7640,4069,120,-1,4069,7640,4539,-1,3392,7646,4608,-1,141,7646,3392,-1,3266,7777,7776,-1,3391,7777,3266,-1,7655,135,4600,-1,135,7655,7654,-1,4574,8006,3395,-1,8006,4574,7670,-1,7711,88,87,-1,7801,88,7711,-1,7801,85,88,-1,7804,85,7801,-1,7804,3300,85,-1,7804,3383,3300,-1,7804,4431,3383,-1,4082,4431,7804,-1,4082,7810,4431,-1,82,7810,4082,-1,82,3302,7810,-1,82,3297,3302,-1,3299,3297,82,-1,3299,3384,3297,-1,4519,7677,7792,-1,7677,4519,7678,-1,3310,7755,3390,-1,3309,7755,3310,-1,7713,4387,7809,-1,3303,7715,3304,-1,3303,4423,7715,-1,3305,4423,3303,-1,3305,4426,4423,-1,3305,7808,4426,-1,3305,7716,7808,-1,3305,4430,7716,-1,3305,4428,4430,-1,4387,4428,3305,-1,4387,7713,4428,-1,8007,4414,28,-1,8007,7717,4414,-1,7686,4522,7676,-1,4522,7686,7679,-1,7687,7681,4242,-1,7681,7687,7680,-1,3336,4411,4234,-1,3336,4398,4411,-1,4075,4518,7679,-1,4518,4075,4072,-1,110,7688,111,-1,110,7685,7688,-1,4416,4414,7717,-1,4414,4416,4415,-1,4500,7679,7686,-1,7679,4500,4075,-1,4491,7680,7687,-1,7680,4491,4490,-1,4398,4487,4411,-1,4398,4397,4487,-1,4495,7682,4239,-1,7682,4495,4494,-1,7685,7689,7688,-1,7685,7812,7689,-1,4478,4504,4476,-1,4502,4504,4478,-1,4474,4510,4507,-1,4510,4474,4473,-1,3274,4470,4469,-1,3274,4505,4470,-1,4467,3278,7690,-1,3278,4467,3276,-1,3279,4074,4073,-1,4074,3279,4466,-1,7812,7692,7689,-1,7812,7696,7692,-1,4488,4408,4486,-1,4488,4463,4408,-1,4461,4496,4493,-1,4496,4461,4460,-1,4465,4492,4489,-1,4492,4465,4464,-1,7692,4457,4480,-1,7692,4455,4457,-1,7694,3388,3277,-1,3388,7694,3280,-1,4484,7697,4482,-1,4484,4458,7697,-1,4471,99,98,-1,4471,4468,99,-1,4479,4448,4477,-1,4479,4449,4448,-1,7811,4475,4472,-1,4475,7811,7699,-1,7697,92,7695,-1,7697,93,92,-1,3282,103,102,-1,103,3282,4421,-1,7703,3280,7694,-1,3280,7703,4078,-1,7704,7699,7811,-1,7699,7704,7701,-1,4402,4440,4410,-1,4402,4401,4440,-1,4444,4462,4459,-1,4462,4444,4443,-1,4456,3284,3283,-1,4456,4438,3284,-1,3293,4450,4447,-1,4450,3293,7708,-1,7705,7701,7704,-1,7701,7705,7710,-1,7706,4077,100,-1,4077,7706,3292,-1,80,7719,4422,-1,7719,80,7803,-1,97,84,83,-1,97,96,84,-1,94,3301,4079,-1,94,3287,3301,-1,3298,4419,3288,-1,4419,3298,81,-1,7707,3293,3382,-1,7708,3293,7707,-1,7807,7710,7705,-1,7710,7807,7709,-1,7714,3292,7706,-1,3292,7714,3385,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=64 */
		private int[] getmand_Geo_5_877_coordIndex_64()
		{
			int[] value = {4082,7803,80,-1,7803,4082,7804,-1,3287,3302,3301,-1,3287,7810,3302,-1,7809,7714,7713,-1,3385,7714,7809,-1,7707,3304,7715,-1,7707,3382,3304,-1,7808,7709,7807,-1,7709,7808,7716,-1,103,7806,101,-1,7700,7806,103,-1,4083,8007,76,-1,7717,8007,4083,-1,4497,7802,7718,-1,4497,7805,7802,-1,7719,7800,7720,-1,7719,7803,7800,-1,4487,7722,4394,-1,4487,4486,7722,-1,4440,7723,4391,-1,4440,4437,7723,-1,7721,3307,4436,-1,3307,7721,3381,-1,4384,4463,4488,-1,4463,4384,4386,-1,76,4231,3380,-1,76,8007,4231,-1,7791,4226,4223,-1,7677,4226,7791,-1,7722,7693,7691,-1,7722,4409,7693,-1,7723,3295,3294,-1,7723,4406,3295,-1,3389,4396,3273,-1,4399,4396,3389,-1,7702,4400,7698,-1,4403,4400,7702,-1,7690,7802,4467,-1,7718,7802,7690,-1,91,7800,7712,-1,7720,7800,91,-1,4209,7730,4365,-1,4209,4208,7730,-1,7797,7730,7765,-1,7730,7797,7729,-1,4353,4184,4179,-1,4184,4353,4352,-1,7731,4349,4183,-1,7731,4348,4349,-1,3313,4363,7729,-1,4363,3313,4335,-1,7787,4334,7732,-1,7787,4332,4334,-1,4331,3355,4329,-1,7733,3355,4331,-1,3314,7729,7797,-1,7729,3314,3313,-1,4345,4084,72,-1,4084,4345,7734,-1,4341,4360,4362,-1,4360,4341,7735,-1,69,4337,61,-1,69,68,4337,-1,52,4301,53,-1,4354,4301,52,-1,4321,4351,7734,-1,4351,4321,4320,-1,4316,4350,7735,-1,4350,4316,4318,-1,7737,4307,7742,-1,4307,7737,50,-1,4358,3378,4359,-1,4358,3316,3378,-1,4357,4323,4356,-1,4357,7738,4323,-1,46,3379,3315,-1,3379,46,4284,-1,4088,3317,3316,-1,4088,4093,3317,-1,4333,7739,7738,-1,4333,4281,7739,-1,56,4330,4288,-1,55,4330,56,-1,7740,4347,4344,-1,4347,7740,7798,-1,3324,4343,4340,-1,4343,3324,4292,-1,4339,4293,4295,-1,4339,4336,4293,-1,37,4172,38,-1,4313,4172,37,-1,4315,4299,7741,-1,4315,4297,4299,-1,4092,7742,43,-1,7737,7742,4092,-1,3323,4305,4175,-1,3322,4305,3323,-1,54,7799,4090,-1,54,53,7799,-1,7724,3321,4322,-1,3321,7724,3319,-1,4319,7725,4317,-1,4319,7726,7725,-1,7728,7798,7740,-1,7798,7728,7727,-1,4375,3376,56,-1,3376,4375,3377,-1,3311,7766,4201,-1,38,7766,3311,-1,4310,7797,4308,-1,4310,3314,7797,-1,7736,4369,51,-1,7736,4372,4369,-1,4370,3318,3317,-1,3318,4370,4371,-1,7739,4374,4325,-1,7739,4373,4374,-1,31,852,29,-1,852,31,32,-1,7879,1,3371,-1,7879,3,1,-1,7744,5427,7743,-1,5428,5427,7744,-1,4272,3373,5426,-1,3373,4272,3328,-1,3328,4622,3329,-1,3328,7796,4622,-1,4276,7795,4615,-1,4276,4275,7795,-1,7794,7744,7743,-1,7744,7794,4617,-1,7749,7745,7748,-1,7749,7747,7745,-1,7748,31,30,-1,31,7748,4257,-1,7746,4261,7745,-1,4259,4261,7746,-1,4229,7750,4245,-1,7750,4229,4228,-1,4223,7411,7791,-1,5424,7411,4223,-1,4096,3351,7413,-1,3351,4096,3352,-1,3333,4216,3334,-1,3333,5422,4216,-1,3344,3348,3345,-1,3344,7751,3348,-1,7413,4220,5423,-1,7413,3351,4220,-1,4230,4256,4228,-1,4256,4230,4524,-1,7683,7752,7684,-1,4215,7752,7683,-1,7754,7681,4517,-1,7754,15,7681,-1,4231,28,27,-1,4231,8007,28,-1,4241,4509,4508,-1,4241,7683,4509,-1,3346,4240,22,-1,7753,4240,3346,-1,3349,25,3335,-1,3349,3347,25,-1,7754,3348,4247,-1,7754,23,3348,-1,3337,3346,3350,-1,3337,7753,3346,-1,3369,3339,20,-1,26,3339,3369,-1,4523,7790,4255,-1,4523,7792,7790,-1,4253,3309,3370,-1,7755,3309,4253,-1,19,3308,3352,-1,79,3308,19,-1,4243,4248,4250,-1,4243,7752,4248,-1,4203,4192,5399,-1,4203,4191,4192,-1,4168,7427,4167,-1,7427,4168,4189,-1,7757,4367,4366,-1,7757,7421,4367,-1,5403,7758,5401,-1,5403,7761,7758,-1,4181,7420,7789,-1,7420,4181,4182,-1,7759,7416,7423,-1,7416,7759,7788,-1,4186,7419,7760,-1,7419,4186,4185,-1,7758,4176,4204,-1,7758,7762,4176,-1,4213,4173,4211,-1,4213,7764,4173,-1,6,4206,4205,-1,4206,6,5,-1,4196,7731,4194,-1,4196,4361,7731,-1,67,4201,4199,-1,4201,67,3311,-1,64,7788,7759,-1,7788,64,71,-1,7763,7732,7762,-1,7763,7787,7732,-1,7733,3353,3355,-1,7764,3353,7733,-1,7766,829,830,-1,4169,829,7766,-1,4189,7786,7767,-1,4189,4190,7786,-1,7768,2876,2875,-1,4166,2876,7768,-1,7756,2872,7767,-1,2872,7756,2873,-1,4116,4158,7770,-1,7769,4158,4116,-1,4161,4155,7771,-1,4111,4155,4161,-1,4767,4150,4765,-1,7770,4150,4767,-1,4745,4157,7771,-1,4745,4744,4157,-1,4144,4103,4143,-1,4103,4144,4101,-1,4147,7781,4105,-1,4147,7774,7781,-1,7774,7775,7773,-1,7774,4141,7775,-1,4149,7776,4129,-1,4149,4137,7776,-1,7775,4133,4145,-1,7775,4131,4133,-1,4142,7661,4140,-1,4142,7817,7661,-1,4138,7660,4136,-1,4138,4584,7660,-1,4671,3027,3025,-1,4671,7783,3027,-1,3365,7785,7778,-1,3365,3364,7785,-1,7779,7784,5386,-1,7779,4118,7784,-1,4115,3365,4113,-1,4115,3362,3365,-1,4162,7779,4127,-1,4162,7769,7779,-1,4670,7783,4671,-1,4670,7780,7783,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=65 */
		private int[] getmand_Geo_5_877_coordIndex_65()
		{
			int[] value = {7601,4115,4112,-1,7601,4159,4115,-1,7770,4119,4116,-1,7770,4767,4119,-1,7782,803,4106,-1,803,7782,804,-1,7434,3,7879,-1,7434,4102,3,-1,7782,7772,4108,-1,7782,7781,7772,-1,4099,4259,0,-1,4259,4099,4262,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=1 */
		private int[] getmand_Geo_5_877_normalIndex_1()
		{
			int[] value = {4973,7034,5824,-1,7706,7455,5824,-1,4153,3141,2823,-1,7257,6712,6839,-1,548,593,721,-1,3235,2237,2331,-1,4254,4446,4890,-1,2847,3069,3259,-1,88,181,1864,-1,2870,3226,3124,-1,600,1061,645,-1,622,645,1317,-1,1288,3014,3299,-1,2559,3055,861,-1,5455,5401,5213,-1,5365,6616,6116,-1,1632,2091,2911,-1,2129,3165,2701,-1,6541,6340,6008,-1,6116,6361,5469,-1,1744,1086,671,-1,1360,675,1080,-1,1603,1086,1744,-1,6838,7232,7380,-1,554,966,541,-1,5834,6482,6863,-1,3141,1635,1603,-1,4408,5013,3944,-1,4677,4837,5162,-1,3203,4073,3652,-1,4916,3157,3847,-1,1497,2119,2941,-1,234,1241,1014,-1,5103,4530,4633,-1,4051,2770,4431,-1,327,1185,1078,-1,4575,5948,4282,-1,4863,6543,6379,-1,6425,6806,6543,-1,6705,5718,6496,-1,6275,5528,5475,-1,2694,1912,2794,-1,4016,4737,4150,-1,6104,4891,5453,-1,1253,1225,1704,-1,494,1342,958,-1,3853,4016,3335,-1,5847,5690,4737,-1,237,1222,1362,-1,503,1112,704,-1,3791,3219,2694,-1,636,370,504,-1,2743,2189,1966,-1,2353,1772,2056,-1,6084,6540,6435,-1,4207,2817,4126,-1,4207,3161,2817,-1,2832,3621,3049,-1,7242,7069,6755,-1,5526,5343,5923,-1,2634,3621,2832,-1,2053,1229,1370,-1,1136,1726,1640,-1,5732,3923,3808,-1,2277,2788,4248,-1,3956,5548,4965,-1,5210,6394,6316,-1,6457,7142,6394,-1,4337,2563,4030,-1,1537,1095,2132,-1,2060,3251,2788,-1,6227,4337,5959,-1,2710,4257,4418,-1,1309,532,1174,-1,1469,714,1309,-1,6971,6241,6005,-1,6944,7785,7606,-1,3428,1492,1284,-1,1385,3099,1909,-1,1425,1688,2102,-1,1688,1961,3171,-1,5155,6506,6074,-1,6429,7073,6810,-1,2920,3358,2128,-1,1916,2157,4168,-1,1916,3099,1385,-1,5657,4094,4662,-1,4233,2102,3171,-1,257,260,275,-1,3651,3966,3778,-1,3392,1023,771,-1,29,140,257,-1,731,434,521,-1,324,729,316,-1,179,283,771,-1,587,488,521,-1,7703,7739,7392,-1,1893,1250,1792,-1,6409,6369,4480,-1,7326,7703,7351,-1,6156,4515,6883,-1,7831,7268,7885,-1,7492,7507,7309,-1,7657,7683,7777,-1,7554,7927,7811,-1,5172,2026,2116,-1,5259,7816,5494,-1,2141,4971,2116,-1,1518,1623,5136,-1,807,1888,1250,-1,1250,1888,2396,-1,808,197,1011,-1,556,2026,883,-1,58,731,308,-1,170,79,556,-1,5422,5593,4585,-1,4347,4135,3812,-1,5153,4695,4585,-1,6428,6118,5733,-1,5603,4695,5153,-1,5362,5491,5428,-1,5886,6593,6441,-1,5261,4818,5099,-1,5442,4347,4734,-1,7817,7555,7786,-1,220,246,224,-1,19,546,690,-1,914,449,155,-1,217,176,366,-1,2658,4325,2224,-1,1070,365,2041,-1,432,437,303,-1,303,437,450,-1,85,372,72,-1,409,450,100,-1,1578,1270,1481,-1,1571,1214,804,-1,400,436,438,-1,6312,7197,6448,-1,7739,7571,7831,-1,6291,4502,4395,-1,5136,7569,6883,-1,5172,7571,5985,-1,1113,4971,1628,-1,6592,3392,6176,-1,3227,178,354,-1,4395,3021,3152,-1,5427,4655,2475,-1,5427,2475,1792,-1,2949,3392,274,-1,798,1062,760,-1,1070,2658,2224,-1,570,140,29,-1,2104,1300,1691,-1,6840,5010,5375,-1,1721,1952,2375,-1,7327,6888,6401,-1,2052,1721,2682,-1,416,130,105,-1,1326,1204,887,-1,130,183,105,-1,105,183,809,-1,1618,2267,1506,-1,2782,2652,2883,-1,1475,2647,2965,-1,3045,2644,1555,-1,6401,5961,6469,-1,2883,2831,2925,-1,7684,7317,7037,-1,7021,7532,7347,-1,7072,6895,6667,-1,7555,7613,7786,-1,6156,7703,6409,-1,7786,7790,7728,-1,6534,7166,4763,-1,2168,2576,2259,-1,4019,4211,3778,-1,4001,3546,3409,-1,3778,3966,4392,-1,1837,2442,3669,-1,2967,5143,4740,-1,6233,6310,6302,-1,5381,4865,5472,-1,5093,5019,4247,-1,4246,4362,4169,-1,5599,5093,4963,-1,1882,713,1220,-1,3056,2044,3660,-1,298,3999,200,-1,470,544,258,-1,1033,1171,1321,-1,2871,1887,2511,-1,4227,2989,2898,-1,2035,2096,1705,-1,1862,2200,2066,-1,1873,1560,1608,-1,672,818,664,-1,1602,1862,1560,-1,6417,6262,6813,-1,5775,5252,4516,-1,6294,6551,6956,-1,5324,6097,6339,-1,5593,5698,5346,-1,4503,3812,5064,-1,5595,5411,5180,-1,5362,5457,5126,-1,3938,4429,3755,-1,3466,3990,3991,-1,4867,4427,4484,-1,2044,1220,3256,-1,1220,713,255,-1,2861,6235,3184,-1,3256,1220,1403,-1,200,763,470,-1,544,779,930,-1,4871,5621,5486,-1,6209,5954,6441,-1,6551,6975,6956,-1,3894,2520,1470,-1,1870,3785,2859,-1,3272,2096,2035,-1,3771,5324,4471,-1,3194,4227,2898,-1,4374,3065,3785,-1,5246,4374,3272,-1,7175,6295,4469,-1,4789,5248,5018,-1,5707,7175,4469,-1,4208,4412,3708,-1,5785,3194,3217,-1,4789,5350,5798,-1,5018,4097,4471,-1,1655,1747,1334,-1,6339,5350,5324,-1,4412,3102,3708,-1,2387,2317,2603,-1,2387,1908,1675,-1,2487,2859,3712,-1,2859,3096,3712,-1,6650,6651,6512,-1,2200,2408,3052,-1,3725,3708,3185,-1,3735,3625,4099,-1,4505,4158,4169,-1,1887,1529,2066,-1,2632,2868,3893,-1,2736,3169,2868,-1,2588,2511,2066,-1,5443,4987,3495,-1,6107,5540,5706,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=2 */
		private int[] getmand_Geo_5_877_normalIndex_2()
		{
			int[] value = {4226,2081,3483,-1,1930,3050,3143,-1,1211,497,1183,-1,1211,1183,1930,-1,6869,6846,5522,-1,5254,5447,6193,-1,2273,3571,4319,-1,2516,3992,3985,-1,2254,3912,3197,-1,2934,4773,2707,-1,4773,2934,3799,-1,3334,5677,6293,-1,3169,3591,4296,-1,3912,4793,3197,-1,3038,4978,5447,-1,4611,2936,3249,-1,6869,7950,6846,-1,6791,4773,5953,-1,918,2706,2624,-1,5346,5180,5153,-1,5011,4930,4053,-1,4865,5381,4859,-1,4871,5486,5406,-1,4852,5457,6209,-1,2948,2774,1877,-1,2774,1751,1877,-1,1751,1035,1877,-1,582,451,876,-1,3525,3424,3417,-1,1710,1119,1351,-1,460,111,75,-1,687,576,569,-1,1138,1143,1102,-1,4329,4586,2991,-1,6499,5982,6197,-1,6455,5086,5730,-1,6703,7113,6919,-1,5244,6222,6073,-1,7008,6478,6773,-1,5244,5271,4274,-1,6945,7306,6925,-1,6523,6837,6897,-1,4939,4202,4441,-1,4917,6264,4651,-1,7113,7228,7056,-1,5218,5557,6573,-1,838,254,1094,-1,2760,2882,1575,-1,1576,1928,294,-1,1858,967,1830,-1,2558,2218,4536,-1,3355,2199,2882,-1,1575,1532,1170,-1,6159,5441,1928,-1,3581,3478,3340,-1,1753,2953,3297,-1,5610,2069,2197,-1,4513,6263,5730,-1,2069,5610,5322,-1,4368,4504,4181,-1,5865,5990,2558,-1,1411,4688,2678,-1,1179,2678,2209,-1,4513,2336,3230,-1,4536,5569,5865,-1,3714,5244,4274,-1,1468,4520,3714,-1,4020,4202,4939,-1,2133,5566,4925,-1,5842,6054,3648,-1,6054,2797,3648,-1,5566,2133,1865,-1,3442,3465,2882,-1,6566,6666,6837,-1,3862,3784,3311,-1,5842,5063,5596,-1,4424,4694,5091,-1,6922,6356,5724,-1,7113,6703,6925,-1,2760,1575,2133,-1,3355,3575,4376,-1,2143,793,2024,-1,4106,2424,3749,-1,4868,5841,4586,-1,5154,5620,4688,-1,4688,4329,2678,-1,3478,3469,3344,-1,3297,2953,2617,-1,6222,5244,3714,-1,7270,5992,6287,-1,398,830,1894,-1,4465,1894,3425,-1,1486,346,398,-1,7126,6287,5500,-1,4582,4834,5500,-1,4131,3314,3215,-1,7338,6712,7257,-1,150,833,746,-1,2888,4217,3230,-1,4182,4694,4424,-1,2566,990,2619,-1,574,2347,757,-1,2762,2774,3344,-1,3417,4060,4119,-1,5118,5841,3762,-1,3762,1559,2614,-1,3212,1761,2762,-1,4732,5330,6069,-1,3749,2424,3630,-1,3424,3485,2455,-1,3485,3068,2455,-1,4274,5271,4351,-1,3492,2818,3301,-1,4036,6320,6384,-1,1838,1361,1296,-1,1449,1084,1338,-1,6448,6320,3705,-1,6312,4655,5427,-1,1084,1426,2206,-1,2887,1917,2332,-1,2512,3705,1838,-1,7349,6922,7258,-1,7131,7418,7290,-1,6589,6784,6288,-1,6537,6532,5686,-1,3216,2621,2389,-1,7925,7516,7840,-1,1540,2593,1727,-1,1664,1917,2389,-1,1850,1831,2621,-1,7474,7657,7777,-1,6312,7326,7197,-1,831,1305,1089,-1,1042,1784,2196,-1,296,50,923,-1,1251,299,337,-1,797,908,652,-1,934,584,1042,-1,1260,968,347,-1,784,848,552,-1,1264,1205,963,-1,274,203,277,-1,1123,1691,1038,-1,3964,4187,1306,-1,1850,1429,1569,-1,731,1628,308,-1,971,798,1109,-1,808,2041,1404,-1,2543,1714,1977,-1,1204,596,887,-1,6711,6805,6420,-1,7905,6951,7318,-1,7537,6711,7143,-1,4162,3352,4206,-1,3688,1563,1251,-1,3352,4162,2375,-1,7636,7196,7192,-1,809,183,1579,-1,4162,5964,6223,-1,2279,2693,2265,-1,2527,2693,2279,-1,2038,1356,947,-1,1736,681,1291,-1,6243,6888,5629,-1,3391,4037,3082,-1,4142,3607,4490,-1,2727,3284,2792,-1,3505,2173,4918,-1,6042,5400,6179,-1,1695,3563,3444,-1,1506,2376,650,-1,7072,7192,6895,-1,7072,7236,7575,-1,7765,7742,7930,-1,7691,7537,7415,-1,7631,7962,7628,-1,6602,6951,6198,-1,5736,6805,6291,-1,7898,7811,7888,-1,6686,4187,3964,-1,7971,7118,7094,-1,7844,7817,7843,-1,7631,7434,7668,-1,7415,6618,6798,-1,2196,1948,1570,-1,1204,1794,1977,-1,854,834,577,-1,2176,604,2224,-1,1553,1011,1259,-1,1399,1056,898,-1,7583,6592,6176,-1,7379,7737,7146,-1,7898,7379,7811,-1,605,813,831,-1,873,1558,2783,-1,873,522,481,-1,1227,597,2122,-1,7249,6768,5616,-1,4931,4746,5430,-1,6941,6586,7869,-1,3746,3363,3112,-1,5183,4967,4738,-1,7530,7676,6493,-1,1099,1197,2430,-1,4790,5083,5874,-1,7477,7857,6942,-1,6673,5727,5833,-1,6939,7156,5342,-1,7070,5415,5147,-1,3029,3240,3937,-1,5514,4112,3801,-1,2099,2557,2725,-1,4059,4853,4915,-1,7654,6659,7101,-1,6668,7296,7399,-1,1165,1164,1535,-1,7070,7399,7505,-1,2999,1438,1099,-1,4253,4035,3589,-1,2848,2564,3179,-1,4443,4951,4136,-1,3586,3891,2879,-1,3654,3020,2784,-1,3729,3244,2957,-1,4159,5069,4838,-1,4355,3681,3085,-1,3657,3579,2749,-1,3579,2784,2749,-1,7147,5510,5508,-1,3085,2749,2449,-1,3130,2957,3244,-1,2669,3071,2449,-1,4311,5606,5852,-1,6882,7585,7800,-1,5957,7791,7562,-1,5679,7812,6162,-1,921,1315,411,-1,1098,2564,2122,-1,5226,6055,5633,-1,5027,4726,5530,-1,5843,6099,6722,-1,6300,6106,6672,-1,3089,2776,2320,-1,3260,3854,2872,-1,1846,1786,2406,-1,5577,5334,6091,-1,7506,7195,6722,-1,6146,6844,6055,-1,6890,6065,6613,-1,4186,3415,3742,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=3 */
		private int[] getmand_Geo_5_877_normalIndex_3()
		{
			int[] value = {1327,2348,2202,-1,7336,7874,7446,-1,724,1732,1672,-1,3638,1732,3440,-1,5272,3663,3350,-1,2170,2087,1530,-1,3172,4956,4391,-1,5394,5458,5590,-1,1441,1467,1239,-1,5204,5688,4839,-1,2057,1660,2228,-1,1783,2489,2011,-1,2672,3872,3116,-1,976,285,903,-1,2283,1654,1709,-1,973,1217,715,-1,5952,6649,5967,-1,2530,1369,1047,-1,4982,5998,4959,-1,4074,5872,5097,-1,4179,5735,5978,-1,1694,700,1607,-1,4118,5097,6445,-1,3475,1484,3667,-1,1801,3488,3751,-1,1484,165,459,-1,1766,609,401,-1,1963,933,1706,-1,3843,3918,5581,-1,6153,5160,5857,-1,7022,5971,6085,-1,3434,2174,2492,-1,1706,933,462,-1,5138,5581,6470,-1,3914,4944,6125,-1,4049,5767,6046,-1,5697,7755,7560,-1,3317,3450,2084,-1,5946,6770,6077,-1,4543,2811,4667,-1,4420,5661,5615,-1,2607,3057,2309,-1,3719,3623,3257,-1,5403,5317,6113,-1,4366,4949,4488,-1,7601,7200,7829,-1,7665,7310,7209,-1,7545,7316,7629,-1,7486,7681,7283,-1,7486,7700,7681,-1,7880,7891,7782,-1,6458,7958,7134,-1,6285,3558,3132,-1,3132,5625,6285,-1,1605,340,1551,-1,683,745,295,-1,259,585,935,-1,454,78,426,-1,5940,2723,5902,-1,5940,2488,2723,-1,723,3061,2961,-1,2022,2723,378,-1,5902,7229,7450,-1,7893,7958,7444,-1,7625,7450,7957,-1,7450,7625,6368,-1,6772,7529,7782,-1,6875,6901,6928,-1,7311,6745,7134,-1,7444,7625,7957,-1,2166,2342,3137,-1,2482,2600,2906,-1,3414,3035,3303,-1,2278,2097,1889,-1,3300,3379,3174,-1,2620,2115,2147,-1,525,620,167,-1,7445,7802,7972,-1,5939,6764,5363,-1,6982,6809,6893,-1,7637,7936,7915,-1,6509,6424,6809,-1,6767,7138,6726,-1,6535,6483,7139,-1,6463,6963,6411,-1,7237,7110,7602,-1,7205,7410,7607,-1,1698,3341,4525,-1,7311,6111,6745,-1,5483,3541,3626,-1,1407,4771,5028,-1,7627,4102,3532,-1,6319,3541,5483,-1,2287,2838,3626,-1,1416,4237,3061,-1,2897,2488,6368,-1,6720,7212,7158,-1,7203,5939,5966,-1,7038,7203,6464,-1,6940,6720,6315,-1,6329,5975,5283,-1,5266,5975,6066,-1,6346,6039,5517,-1,2046,1762,1616,-1,6020,5517,5282,-1,6020,5949,5517,-1,7875,7808,7593,-1,4637,5607,5567,-1,6323,7172,6436,-1,4962,6304,6821,-1,5337,5850,6524,-1,5128,4894,5185,-1,5282,5075,5827,-1,6821,6485,5351,-1,6020,5827,5949,-1,225,265,629,-1,589,1049,1181,-1,1464,1450,1208,-1,128,469,320,-1,1565,268,1396,-1,1372,1464,1131,-1,583,1462,518,-1,3266,5635,4087,-1,2690,4364,3266,-1,4364,6452,5635,-1,1085,3231,3699,-1,557,1281,1358,-1,3878,3943,4166,-1,5413,5358,4328,-1,4241,3547,3770,-1,3647,3474,3897,-1,3326,3142,2365,-1,3018,4354,4224,-1,6166,5532,5891,-1,2587,2309,3781,-1,4707,3963,5532,-1,1684,1627,1700,-1,1494,786,1595,-1,2637,2979,2810,-1,2637,1970,2472,-1,4328,4056,3031,-1,7542,7169,7244,-1,7202,6969,6124,-1,4943,5962,6124,-1,1748,1287,1534,-1,6100,6774,6724,-1,6974,7208,7429,-1,5016,4882,3775,-1,4072,3470,5409,-1,5133,6000,3845,-1,6000,5142,3845,-1,6165,6322,6370,-1,3821,5179,5190,-1,2754,3076,2234,-1,940,931,1058,-1,3393,1058,2504,-1,2654,3792,2582,-1,2310,2666,2301,-1,2993,2584,2166,-1,2801,2482,3364,-1,2301,2411,2473,-1,2473,2796,3398,-1,2089,2590,2147,-1,3988,3163,4053,-1,3938,3629,3986,-1,2790,3453,3083,-1,3498,3453,3805,-1,1594,1895,1252,-1,6776,6603,7458,-1,4324,3572,2768,-1,2768,2747,1934,-1,844,74,1295,-1,7429,5502,5437,-1,4922,6048,6100,-1,6974,7429,6521,-1,3076,3245,4121,-1,3896,5084,5236,-1,3775,4874,4413,-1,6521,6284,6724,-1,3076,3645,3245,-1,5073,4922,1785,-1,5944,5040,3393,-1,4807,4767,6132,-1,6250,4249,6051,-1,1823,4767,2155,-1,985,3845,5142,-1,2425,2212,3208,-1,3597,5772,5945,-1,3775,4882,3597,-1,5319,4765,3802,-1,2305,2167,2016,-1,5778,5637,5429,-1,6274,5660,5319,-1,6100,6724,6284,-1,3393,5040,3645,-1,4013,3620,4935,-1,4935,5274,4013,-1,4507,3878,4198,-1,4436,4551,4739,-1,6000,6476,6466,-1,4489,4538,3990,-1,3261,3692,3376,-1,3404,4399,2058,-1,4933,5133,4399,-1,3090,5190,5512,-1,6818,5058,4729,-1,2433,2480,759,-1,4933,4823,2369,-1,1169,4519,2369,-1,4177,3471,5207,-1,5492,4685,3985,-1,4139,5471,5114,-1,5652,4039,4032,-1,1716,4054,2610,-1,4870,6966,5207,-1,1139,4139,2080,-1,5451,5250,6763,-1,3998,4000,4139,-1,5463,6082,3404,-1,6019,4548,3373,-1,5925,6564,7397,-1,1931,3025,2532,-1,1931,1832,1333,-1,56,759,1158,-1,6763,7036,7055,-1,2653,2514,4201,-1,5487,6670,6525,-1,2951,3496,4194,-1,2853,2166,2584,-1,4054,3992,3995,-1,3605,4551,3832,-1,3190,3135,3644,-1,3083,3573,2837,-1,2946,3379,3300,-1,3135,2639,2979,-1,2660,3160,2472,-1,3685,3878,4507,-1,5519,5216,4628,-1,1678,1700,1707,-1,1452,1263,1447,-1,4678,5061,5211,-1,7686,7940,7538,-1,7335,7287,7419,-1,7986,7538,7940,-1,6969,7199,5604,-1,7432,6962,7246,-1,6906,7355,6885,-1,4295,3521,2216,-1,4806,3939,3413,-1,6219,6452,6595,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=4 */
		private int[] getmand_Geo_5_877_normalIndex_4()
		{
			int[] value = {1905,1836,1620,-1,2043,1769,1280,-1,1836,1567,1249,-1,2257,1477,2319,-1,1455,1943,1439,-1,2462,3318,1943,-1,1943,3318,2605,-1,1836,1573,1620,-1,1905,1922,1754,-1,3560,2462,3973,-1,4312,4913,5101,-1,4943,4684,4613,-1,5811,6969,5052,-1,6489,6664,6986,-1,7315,6714,6432,-1,6886,5580,6298,-1,5580,6886,6918,-1,3887,5561,2544,-1,4612,4816,4433,-1,5851,7015,7121,-1,5111,5558,5846,-1,3548,2439,3134,-1,4336,3145,2737,-1,3642,4778,3835,-1,3134,3549,3438,-1,3704,2798,4144,-1,2721,6254,6488,-1,3318,4926,5418,-1,1455,1166,1442,-1,1457,3073,3973,-1,4943,5811,4352,-1,1943,1455,1442,-1,1731,3242,1366,-1,7246,6867,6155,-1,6907,7419,7572,-1,5561,3887,5580,-1,2486,3332,2581,-1,3864,5170,5751,-1,6144,5053,5438,-1,4612,5039,4545,-1,3798,1668,1228,-1,2063,1228,742,-1,4550,6577,7133,-1,6981,5233,6519,-1,6251,6972,7282,-1,5846,6539,5874,-1,1104,691,2523,-1,7427,5658,5418,-1,6488,6254,7861,-1,3939,3877,2834,-1,4087,1462,1389,-1,2690,1754,2139,-1,2540,2581,3332,-1,1922,3332,1754,-1,5156,5672,4658,-1,1515,648,822,-1,4366,4323,4712,-1,6406,5672,5156,-1,3341,5498,4525,-1,1318,1471,1432,-1,1471,1318,1073,-1,1771,781,649,-1,660,1048,755,-1,1048,781,2216,-1,1915,2579,1905,-1,874,649,702,-1,3076,2109,2234,-1,7031,7181,7007,-1,543,661,561,-1,5671,6230,5298,-1,440,1196,259,-1,6901,6875,6645,-1,7286,7903,6148,-1,3383,6699,4146,-1,6797,5943,6134,-1,915,3181,3198,-1,7110,7320,7779,-1,7237,7832,7808,-1,5493,6450,6230,-1,5907,6794,6378,-1,6729,6794,6743,-1,7007,7089,6903,-1,6113,6841,6474,-1,7655,7238,7386,-1,6265,7320,6963,-1,7928,6319,7160,-1,6716,7320,6299,-1,35,16,589,-1,310,595,1163,-1,2000,1092,2973,-1,3977,6265,5715,-1,3977,1219,1417,-1,2973,1092,1219,-1,7082,6483,6355,-1,443,441,1069,-1,6062,5900,5473,-1,5289,6430,6158,-1,5701,5691,5473,-1,1009,1161,1152,-1,5704,5347,5119,-1,14,701,832,-1,4986,2998,4040,-1,5731,5222,4717,-1,6278,6396,7074,-1,7330,6035,6269,-1,2791,1817,1347,-1,6319,5483,6283,-1,6342,6035,7330,-1,3328,3445,2681,-1,2241,2299,3081,-1,5431,5470,5518,-1,1593,1040,1597,-1,1593,1148,1040,-1,832,1147,1206,-1,4624,4565,6218,-1,5583,5328,4430,-1,14,452,1173,-1,5845,7172,6323,-1,1131,1304,783,-1,1163,1443,530,-1,783,905,703,-1,7882,7826,7928,-1,7627,7522,7778,-1,638,594,380,-1,338,26,240,-1,571,380,567,-1,2000,1372,1092,-1,6148,7137,5850,-1,7424,6402,7089,-1,7524,6647,7514,-1,7393,7466,6509,-1,7679,6716,7041,-1,7371,7288,7886,-1,7449,7044,7158,-1,6315,5826,6864,-1,7522,7731,7726,-1,7601,7203,7643,-1,5826,4854,3671,-1,259,315,440,-1,7219,6967,7191,-1,7117,6841,6598,-1,6772,7038,6464,-1,5787,7386,5826,-1,7424,7089,7159,-1,6217,6680,6812,-1,6463,6062,5715,-1,5518,5892,5818,-1,6832,6404,5943,-1,1208,1450,630,-1,1304,1245,783,-1,380,44,338,-1,3794,1358,1281,-1,112,336,120,-1,1765,1919,2287,-1,1764,737,1407,-1,630,310,272,-1,843,899,433,-1,7286,5222,6436,-1,4565,4438,6314,-1,4028,3445,3328,-1,4494,2665,3080,-1,5255,4784,5282,-1,3233,4378,3900,-1,6747,5583,6485,-1,5015,4610,5185,-1,7074,5969,6218,-1,2377,2628,1117,-1,6747,7330,6269,-1,6626,5640,5969,-1,5520,5845,5412,-1,5818,5499,5518,-1,5075,4378,4494,-1,6323,5412,5845,-1,4040,2998,1788,-1,6430,7172,6158,-1,703,499,783,-1,5567,5764,4040,-1,6716,6299,4405,-1,3653,4637,2000,-1,151,737,1004,-1,78,1145,426,-1,7590,7637,7145,-1,6894,7381,6812,-1,5996,6283,4984,-1,6601,5939,7203,-1,6894,6954,7018,-1,6113,6230,6450,-1,6713,6402,3967,-1,7241,6940,6315,-1,6743,6794,7044,-1,7320,7110,6411,-1,7600,7718,7589,-1,7058,6699,6347,-1,7679,7701,7779,-1,7915,7712,7328,-1,6463,5715,6265,-1,6926,6875,7219,-1,648,352,323,-1,822,673,1698,-1,6113,5317,5298,-1,6772,6464,6258,-1,5671,5983,6349,-1,6329,6113,6474,-1,226,417,80,-1,5060,5671,5298,-1,2319,1477,1428,-1,1262,940,1415,-1,1731,3338,3529,-1,2216,4334,4428,-1,5498,6645,6161,-1,5187,5630,5156,-1,4658,5672,5983,-1,6578,5802,5386,-1,4525,4063,1515,-1,648,646,613,-1,719,1515,1649,-1,6884,6578,7007,-1,6219,6595,6884,-1,6645,6406,6161,-1,1649,4063,3803,-1,4753,5187,4658,-1,3726,3835,4144,-1,5561,6918,7872,-1,4336,5580,4251,-1,7315,7523,7899,-1,1915,2690,3266,-1,5039,5266,6066,-1,5389,6452,4364,-1,4364,2690,2834,-1,3877,3939,4583,-1,5383,7016,5418,-1,3826,4038,3577,-1,4778,3787,5116,-1,7264,7173,7854,-1,812,852,647,-1,4722,3856,3908,-1,3229,3501,1703,-1,2466,1703,852,-1,4550,6138,3850,-1,1703,742,852,-1,2748,1611,3480,-1,5638,5534,4024,-1,5563,4092,5556,-1,4699,4545,5386,-1,4535,5211,5039,-1,6298,4336,5536,-1,5170,3864,2486,-1,3413,2139,3084,-1,4251,3887,3566,-1,4339,4813,3548,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=5 */
		private int[] getmand_Geo_5_877_normalIndex_5()
		{
			int[] value = {5882,6548,5359,-1,1000,1274,741,-1,2912,3577,3109,-1,1244,2410,2253,-1,4684,4219,4141,-1,1166,1339,1442,-1,4700,5687,5592,-1,4517,4533,4128,-1,5882,2415,2523,-1,4352,5052,2253,-1,5359,3041,2415,-1,3318,3839,4926,-1,4638,3480,6393,-1,3726,4638,4840,-1,3548,5446,2208,-1,4778,5636,4144,-1,5751,5170,6539,-1,5170,3270,6807,-1,5861,2025,2208,-1,3769,3549,3642,-1,2737,2491,5536,-1,2735,1769,3704,-1,1914,5973,2491,-1,4535,4433,4026,-1,6885,7315,6432,-1,5044,5863,4813,-1,3548,5851,5446,-1,6144,5438,6170,-1,7686,6047,6434,-1,5359,6548,6432,-1,6969,7753,7199,-1,1431,2579,2899,-1,922,782,741,-1,3318,2462,3560,-1,2042,1339,1457,-1,1000,741,1059,-1,3726,2798,2748,-1,1210,1573,1249,-1,1938,1611,2748,-1,1611,956,1274,-1,2540,1479,1769,-1,1509,1922,1905,-1,5022,4806,3413,-1,6906,6860,6867,-1,7432,7355,6962,-1,7931,7899,7523,-1,6654,7544,6886,-1,4583,4679,4468,-1,7419,7128,7538,-1,6947,7335,6907,-1,6353,5561,7872,-1,6187,5211,5061,-1,4457,4509,4380,-1,2946,1686,2402,-1,3190,2623,3135,-1,2604,3605,2660,-1,3163,2938,3362,-1,3364,4685,4032,-1,2666,3414,2853,-1,5380,7055,7183,-1,3427,2448,1218,-1,5463,3404,3527,-1,4622,2532,4964,-1,3816,2160,2310,-1,3821,4401,4862,-1,4660,4054,1716,-1,2080,5114,3427,-1,5451,3427,4401,-1,4870,4039,6556,-1,3985,3992,5492,-1,4621,4177,5936,-1,4177,5696,5936,-1,3137,2342,2656,-1,2526,1832,2532,-1,2480,3090,1169,-1,6082,5463,6831,-1,6831,7503,6800,-1,4823,6082,6800,-1,1292,1591,2339,-1,5925,3816,2722,-1,4399,5133,3016,-1,3527,2058,2339,-1,5582,5512,5190,-1,3884,3893,5212,-1,5545,6023,6408,-1,3190,3910,3765,-1,3943,4425,4166,-1,4358,3781,4275,-1,5519,5660,5848,-1,6559,6399,6855,-1,1494,1357,786,-1,4286,4909,5145,-1,2561,1715,2994,-1,5891,4069,4012,-1,5673,5866,6336,-1,5413,4445,5358,-1,4072,4445,2869,-1,5429,5866,5673,-1,2683,2663,1670,-1,7033,6270,6250,-1,5488,3386,5396,-1,3523,3896,2986,-1,3597,4882,5772,-1,2663,2986,3208,-1,4807,3386,2155,-1,3597,869,989,-1,4018,3620,2815,-1,4018,5145,4935,-1,4807,5105,3775,-1,5084,3523,4249,-1,1459,5437,1554,-1,6100,6284,5145,-1,6521,7429,5437,-1,1141,1058,931,-1,1634,2115,2402,-1,2454,2305,2929,-1,7075,7221,7458,-1,7542,7244,7807,-1,4819,4801,6603,-1,7774,7202,6776,-1,4819,6776,5962,-1,3453,3573,3083,-1,3925,4291,3629,-1,3150,3471,3138,-1,2402,2115,2620,-1,2796,2591,2679,-1,3150,3205,3471,-1,2993,3496,2923,-1,2414,3414,2666,-1,2663,2212,1670,-1,1689,940,1058,-1,1287,1748,1595,-1,6165,6408,6023,-1,3845,3016,5133,-1,6381,6303,6533,-1,6284,5524,5145,-1,4943,6124,5811,-1,4943,4052,4324,-1,6776,7202,6124,-1,7744,7753,6969,-1,2193,2863,3031,-1,3910,3644,3832,-1,1627,1742,1700,-1,4012,3719,4493,-1,3257,2862,5041,-1,3647,3966,4232,-1,4592,4454,4001,-1,3231,840,1462,-1,1462,840,628,-1,265,225,236,-1,1551,340,1780,-1,236,394,419,-1,728,1372,1131,-1,662,477,986,-1,589,16,322,-1,5128,5185,5112,-1,1450,1546,2046,-1,5351,6485,5242,-1,5042,5337,6396,-1,5128,5112,5347,-1,6436,5704,6323,-1,6436,5731,5704,-1,7821,7903,7286,-1,7137,6812,6680,-1,7903,7875,7593,-1,5325,6346,5949,-1,5764,5567,6039,-1,2628,2992,1173,-1,6315,5907,4854,-1,7978,7829,7200,-1,5787,6764,7386,-1,7288,6954,7262,-1,7248,4604,5028,-1,5539,3341,2573,-1,6285,5539,2573,-1,4845,4984,3626,-1,4102,7778,4771,-1,1827,4604,4237,-1,4237,6909,6400,-1,2022,378,2961,-1,3584,1196,2897,-1,3541,2287,3626,-1,153,378,315,-1,1515,822,1698,-1,7607,7609,7646,-1,6509,6767,6424,-1,7524,7574,7890,-1,7647,7907,7954,-1,7514,7722,7574,-1,7637,7915,7145,-1,7541,6812,7381,-1,5939,7655,6764,-1,7796,7745,7490,-1,7616,7084,7783,-1,7945,7267,7485,-1,7485,7267,7082,-1,419,184,265,-1,3182,3519,2790,-1,1634,1434,2125,-1,3263,2905,3104,-1,1252,1312,1434,-1,2166,2401,2342,-1,2482,3264,2600,-1,2578,3035,3414,-1,7556,7929,7841,-1,7893,7092,7103,-1,7229,5822,7556,-1,5672,6406,6622,-1,6772,7171,7529,-1,2022,5902,2723,-1,3132,1780,4167,-1,7929,7556,7658,-1,6400,5860,3061,-1,2488,378,2723,-1,3061,5902,2961,-1,214,182,454,-1,182,214,120,-1,864,563,270,-1,135,378,153,-1,1196,4167,1780,-1,3558,1605,1551,-1,5625,6745,6111,-1,6111,5539,6285,-1,7826,7522,7928,-1,7316,7283,7719,-1,7480,7280,7545,-1,7545,7629,7573,-1,7209,7200,7601,-1,7601,7665,7209,-1,6272,6845,6581,-1,4079,3790,3547,-1,3790,3770,3547,-1,5537,7755,5697,-1,6015,7322,7727,-1,6905,6077,6770,-1,5122,3717,4826,-1,3450,4049,2612,-1,3919,3180,6015,-1,6015,7560,7322,-1,5832,4667,5066,-1,1940,1202,1581,-1,1939,1345,2329,-1,4826,4049,6046,-1,5946,4826,6318,-1,4944,6827,6125,-1,4872,6536,4518,-1,1314,241,1041,-1,3113,3843,4066,-1,2005,1767,1030,-1,6633,7405,6530,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=6 */
		private int[] getmand_Geo_5_877_normalIndex_6()
		{
			int[] value = {6782,7331,6633,-1,5106,3475,3667,-1,1996,3488,1801,-1,3543,5158,4046,-1,5225,4803,5432,-1,5097,5872,6445,-1,2928,4118,3676,-1,1607,913,297,-1,361,853,913,-1,2766,2249,1694,-1,3037,4046,4803,-1,3037,2464,4046,-1,4179,3753,5735,-1,4196,4074,2280,-1,4021,4183,2404,-1,5967,6752,5998,-1,5188,4372,4825,-1,2055,2672,3116,-1,4839,3701,3733,-1,3172,1890,2057,-1,1926,1530,1441,-1,5395,6207,5664,-1,7498,7372,7033,-1,7358,6890,6613,-1,6055,6844,6902,-1,4810,4256,4289,-1,3260,2315,2202,-1,4659,3976,4186,-1,1352,2108,2320,-1,6306,6722,6753,-1,2645,2390,1846,-1,3854,3260,3976,-1,6300,5209,5315,-1,5208,6055,5226,-1,1845,2497,2479,-1,5027,6106,5315,-1,3612,4940,3927,-1,3612,4846,4940,-1,1523,1034,1582,-1,3357,1658,1523,-1,3683,1658,3357,-1,3948,3610,5238,-1,3418,3473,2902,-1,5069,5889,6510,-1,4159,4838,3244,-1,2848,3179,3316,-1,4035,2999,2430,-1,5169,6416,6376,-1,1828,1535,2181,-1,7399,7014,7220,-1,877,740,1164,-1,6308,6995,7177,-1,6180,7296,6668,-1,6397,7353,6995,-1,2820,2535,1867,-1,5279,4832,5878,-1,3159,3635,4313,-1,5092,5911,6372,-1,1867,1400,2900,-1,2793,2550,3240,-1,6529,4921,5415,-1,5514,6180,4112,-1,6180,4900,4112,-1,4384,3810,5279,-1,6123,4447,4904,-1,6689,7362,7387,-1,5509,4927,4820,-1,4083,3363,3746,-1,6162,7869,6586,-1,4746,4998,5430,-1,1227,1197,199,-1,4790,5654,5708,-1,5183,5616,5048,-1,7453,7530,6768,-1,806,1384,812,-1,3979,5169,4860,-1,2179,550,301,-1,3030,3921,2179,-1,813,1032,831,-1,7569,7816,7739,-1,2224,4325,2176,-1,367,808,678,-1,178,274,482,-1,1691,1123,2176,-1,848,963,552,-1,682,95,104,-1,968,1251,347,-1,993,1481,578,-1,2153,887,1854,-1,1555,34,1151,-1,750,923,1493,-1,4706,5575,4875,-1,6667,6223,5964,-1,7431,7434,7631,-1,7668,7765,7980,-1,7631,7411,7369,-1,178,482,76,-1,7564,7553,7463,-1,7196,6795,7192,-1,6563,6291,6805,-1,7107,7192,7072,-1,1618,809,2279,-1,6840,7559,7992,-1,3082,3634,2630,-1,1793,3444,3372,-1,5327,5140,3505,-1,4142,3680,2933,-1,5770,5810,5032,-1,2792,3046,2849,-1,2792,3284,3046,-1,681,1973,1669,-1,1714,1674,846,-1,5327,6179,5140,-1,1736,1973,681,-1,1356,1596,1730,-1,2267,3279,2884,-1,2297,4976,2803,-1,7992,7081,7174,-1,2265,2693,2849,-1,6993,6854,6848,-1,2217,2440,2272,-1,7636,7389,7196,-1,6936,7568,7566,-1,981,1692,1544,-1,4117,6749,6866,-1,6749,4117,3688,-1,4960,2196,1784,-1,4960,6866,5964,-1,7537,7584,7269,-1,6805,6010,6420,-1,7682,7415,7452,-1,7307,7317,7971,-1,1563,584,299,-1,76,846,1674,-1,584,1563,1784,-1,771,283,203,-1,1070,604,743,-1,31,197,221,-1,1540,1056,1850,-1,1039,854,1068,-1,761,1123,733,-1,1264,1153,1613,-1,1613,1153,2104,-1,1791,1569,2447,-1,1214,104,804,-1,934,400,584,-1,7118,4786,4802,-1,1871,2059,1215,-1,3869,1277,1639,-1,650,2376,1854,-1,1296,1128,1105,-1,7739,6883,7569,-1,2621,1831,1791,-1,7442,7348,7459,-1,1068,826,974,-1,5775,5905,4917,-1,7302,7418,7131,-1,5982,5557,5218,-1,6172,7258,6922,-1,7252,6922,7349,-1,7418,7258,6384,-1,6934,6688,6538,-1,1638,2373,2850,-1,2657,2852,3301,-1,2657,2065,2852,-1,3216,3641,3079,-1,7197,7300,6448,-1,3216,3492,3793,-1,3492,2850,2818,-1,5456,5228,5730,-1,6321,5086,6197,-1,4647,5730,5086,-1,5841,6321,5330,-1,5271,5963,6263,-1,3901,2379,2206,-1,5118,4119,4060,-1,2566,2347,574,-1,5482,7314,6904,-1,1193,1480,2110,-1,730,1029,1753,-1,1486,2777,1021,-1,1894,830,1408,-1,1486,398,1894,-1,6365,4156,5992,-1,2567,2954,1858,-1,2991,2209,2678,-1,5456,4647,4868,-1,2450,2424,4106,-1,435,582,1101,-1,2048,1865,762,-1,6612,6356,6922,-1,5724,3702,3570,-1,5572,4023,5965,-1,4755,4466,6264,-1,6566,6403,5572,-1,4023,4928,6552,-1,6552,6639,7065,-1,3114,4939,5331,-1,1468,1697,4520,-1,1697,5292,4520,-1,4351,5271,6263,-1,4290,4504,4842,-1,4368,4181,4351,-1,5322,4768,2521,-1,4842,5569,4536,-1,2110,2455,3068,-1,6384,4147,4393,-1,3162,3469,3478,-1,4106,5294,5464,-1,3355,4536,2199,-1,294,1478,801,-1,27,582,435,-1,3648,2797,2195,-1,3056,3947,3388,-1,4023,5572,4441,-1,5982,6069,6321,-1,5905,6288,6264,-1,5331,4939,6523,-1,5686,6532,5754,-1,5292,6222,4520,-1,5292,6703,6222,-1,6762,6174,6478,-1,6197,5086,6455,-1,6273,6174,5557,-1,1338,1559,1859,-1,4586,4060,3195,-1,5724,4473,3702,-1,1170,687,1102,-1,687,559,460,-1,838,1094,2797,-1,111,884,793,-1,2521,1710,1351,-1,451,27,81,-1,676,1101,582,-1,1710,3630,2424,-1,938,876,451,-1,2774,2948,3340,-1,6112,6527,6707,-1,2821,2405,3052,-1,3538,4350,4247,-1,5541,4835,5314,-1,5025,5406,4865,-1,5166,4427,4867,-1,4362,4865,4859,-1,4246,3565,3458,-1,3995,3946,5393,-1,5153,5180,5349,-1,3812,5056,4734,-1,1482,1336,2522,-1,3804,5260,3367,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=7 */
		private int[] getmand_Geo_5_877_normalIndex_7()
		{
			int[] value = {1203,918,156,-1,7261,7982,7950,-1,6081,6879,6674,-1,6081,6193,5447,-1,6719,6398,6599,-1,3268,4596,3530,-1,4576,3495,1930,-1,3998,3799,4000,-1,1203,2755,3591,-1,5148,6873,5953,-1,2808,1037,1473,-1,5260,3664,4061,-1,5393,3946,6293,-1,3912,2254,3367,-1,2934,2632,3799,-1,3985,3310,2516,-1,2808,4532,3867,-1,5722,4779,6846,-1,3569,3143,3050,-1,7261,6869,5554,-1,2936,1213,1285,-1,3569,2519,2648,-1,3050,1930,3495,-1,5443,3495,4576,-1,5076,4652,4357,-1,3990,3466,3508,-1,2868,2892,2428,-1,1608,1560,1529,-1,3258,3458,3565,-1,3754,4203,3538,-1,3368,3185,3063,-1,7215,6417,6984,-1,4361,2960,4516,-1,2603,2317,2231,-1,6053,5895,5621,-1,2729,3267,4132,-1,5707,4469,4227,-1,2146,4469,3175,-1,4470,4789,5579,-1,2866,4125,6259,-1,2866,6259,5785,-1,2922,1655,1947,-1,3194,1955,1873,-1,2960,2145,4516,-1,5246,3272,3175,-1,4917,4785,4361,-1,1033,1713,1470,-1,3127,4213,4227,-1,2922,4471,4097,-1,4994,4785,4917,-1,1470,664,1033,-1,3272,3785,2096,-1,2552,672,664,-1,6788,6708,7163,-1,5293,6235,6078,-1,3256,5293,4369,-1,2552,6788,2861,-1,544,1403,1220,-1,6725,5899,6447,-1,4200,4484,4500,-1,4867,4529,5261,-1,5376,5174,5381,-1,3986,4429,3938,-1,5913,6076,5867,-1,5805,5132,5064,-1,4471,5324,5350,-1,5398,6415,4516,-1,6975,6784,7048,-1,4779,2648,2892,-1,1661,1862,1602,-1,4125,2866,1887,-1,1673,1705,1476,-1,2487,3894,1470,-1,664,1171,1033,-1,1171,1626,1870,-1,1882,2044,3056,-1,4096,3576,4963,-1,5019,4178,4247,-1,5621,4871,5051,-1,3669,2442,3963,-1,3963,2442,4003,-1,5005,5152,3777,-1,2095,2293,2967,-1,5371,4961,4392,-1,3966,4562,4392,-1,3754,3735,4099,-1,3368,3063,3511,-1,6796,7423,7754,-1,4763,7166,6920,-1,2368,1859,1559,-1,4732,2368,3762,-1,4732,6617,3907,-1,7484,6534,7417,-1,6895,6495,6667,-1,6607,7740,6444,-1,7687,7543,7878,-1,6798,6618,6469,-1,7167,6825,7347,-1,6849,7037,7317,-1,7728,7790,7551,-1,7684,7666,7989,-1,2052,2173,1991,-1,2173,2933,2727,-1,2644,3045,2925,-1,1475,2153,2647,-1,1699,3091,2688,-1,650,809,1618,-1,2494,1721,2052,-1,2727,2494,1991,-1,6401,6243,5961,-1,2494,1952,1721,-1,1761,2034,2762,-1,2726,2034,1727,-1,1691,1300,784,-1,1553,808,1011,-1,2041,1553,2112,-1,848,784,1300,-1,4971,3756,7268,-1,4395,3152,3852,-1,2543,4492,1674,-1,1674,3929,354,-1,6198,2949,3227,-1,2026,5172,5985,-1,4502,2543,3021,-1,7583,7268,6592,-1,438,598,797,-1,934,804,436,-1,1571,1042,1570,-1,1544,1507,888,-1,1270,936,1243,-1,1578,1481,993,-1,50,70,373,-1,2059,1182,1696,-1,596,471,707,-1,2112,2658,1070,-1,249,239,588,-1,7844,7388,7476,-1,5428,5954,5362,-1,4427,5166,4563,-1,4347,5076,4135,-1,6118,5886,5733,-1,4695,4968,4585,-1,5076,5442,5531,-1,5805,4858,5665,-1,221,316,18,-1,1250,753,902,-1,917,49,117,-1,9,529,106,-1,529,9,534,-1,1011,197,399,-1,58,434,731,-1,359,513,1974,-1,359,1623,1518,-1,117,49,727,-1,2026,1974,513,-1,7571,5259,5985,-1,7268,7571,5172,-1,1974,2026,5259,-1,7326,7351,7502,-1,7831,7066,7392,-1,7492,7309,7265,-1,7883,7813,7905,-1,6409,7703,7326,-1,807,48,1518,-1,304,489,488,-1,771,293,179,-1,31,106,399,-1,434,405,521,-1,403,587,405,-1,257,694,29,-1,570,678,808,-1,1023,293,771,-1,2512,1105,1893,-1,3479,3079,3641,-1,3778,4392,3368,-1,4508,2608,2168,-1,2168,2177,2828,-1,367,678,342,-1,5286,4961,5371,-1,3797,2412,2374,-1,1388,445,201,-1,3358,5181,5326,-1,6924,6506,6994,-1,5720,2510,5797,-1,5720,2398,2510,-1,4663,2920,2840,-1,2165,4662,4094,-1,4084,2103,1909,-1,2117,2443,2940,-1,6632,7606,7090,-1,3882,5495,5762,-1,965,2008,1019,-1,1848,1096,2148,-1,2940,2443,4163,-1,6045,6190,7090,-1,6462,7441,6201,-1,6225,7833,6546,-1,5956,4524,6227,-1,4257,6546,6377,-1,2563,2927,4030,-1,6394,7142,7304,-1,3828,3808,2031,-1,3923,4654,2927,-1,3026,2053,2071,-1,5669,6990,6656,-1,2071,1370,1368,-1,7533,6970,7319,-1,7319,6792,7032,-1,5440,6281,6341,-1,7106,7242,7057,-1,4886,4207,5343,-1,6028,5923,6240,-1,7069,6591,6531,-1,5796,6334,6366,-1,5343,4126,5576,-1,6755,6531,6435,-1,3049,4811,4828,-1,2417,2549,2609,-1,3611,3042,4828,-1,6435,5917,5830,-1,4394,2761,2743,-1,4398,6388,4333,-1,7518,6388,6333,-1,549,237,601,-1,5668,6653,6528,-1,3582,4240,4556,-1,1398,1975,1112,-1,1912,1856,2794,-1,815,494,958,-1,6199,5453,5643,-1,4737,5690,5131,-1,5674,6343,5265,-1,1739,958,1342,-1,2159,1704,1225,-1,4050,4879,5265,-1,1912,2694,3219,-1,5077,5915,5903,-1,5476,6914,7279,-1,6705,6496,7086,-1,1864,456,2318,-1,2318,456,228,-1,1240,386,1072,-1,1240,251,386,-1,3539,2338,3752,-1,5344,5920,5521,-1,4431,4916,4992,-1,4633,4629,4671,-1,4906,5521,5306,-1,2502,2501,863,-1,5585,5336,5067,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=8 */
		private int[] getmand_Geo_5_877_normalIndex_8()
		{
			int[] value = {5306,5223,4422,-1,5012,4316,3652,-1,3157,2941,3847,-1,4992,4916,4271,-1,5223,4983,4349,-1,5067,4105,4416,-1,3554,3842,3866,-1,4837,6175,5162,-1,6910,6565,5013,-1,1510,554,541,-1,6482,7162,6863,-1,861,541,675,-1,121,889,1313,-1,3086,3144,3940,-1,4204,3906,2499,-1,4780,6456,6616,-1,4062,4757,4974,-1,2559,861,1360,-1,1255,2251,1371,-1,2213,1061,524,-1,2105,2921,3285,-1,3058,4120,4129,-1,2870,2474,2429,-1,5598,6817,6910,-1,1519,328,548,-1,20,1065,721,-1,3499,3259,3069,-1,1168,1065,358,-1,2571,3292,3069,-1,2429,721,2847,-1,6175,7582,6761,-1,6367,5656,6386,-1,6453,7525,7132,-1,5224,5202,6453,-1,5224,6453,7132,-1,7525,7479,7132,-1,2931,2362,2560,-1,2560,3146,2931,-1,6367,5479,5656,-1,6175,7279,7582,-1,2429,1353,721,-1,3292,3499,3069,-1,358,88,1168,-1,4890,4636,4254,-1,3259,2988,2847,-1,548,1353,1519,-1,6817,7764,6910,-1,3292,3058,4129,-1,2105,3285,2331,-1,7540,7034,7132,-1,1061,146,524,-1,1255,2142,2251,-1,2873,2559,1360,-1,4757,5213,4974,-1,5365,4780,6616,-1,4827,5184,4527,-1,3940,4192,3086,-1,121,1313,351,-1,861,675,1360,-1,6482,6838,7162,-1,1510,541,861,-1,5598,6910,5013,-1,4408,3944,3747,-1,4837,5476,6175,-1,3866,3047,3554,-1,5214,5067,4416,-1,5223,4349,4422,-1,4271,4191,4992,-1,3157,1497,2941,-1,4073,5012,3652,-1,5306,4422,4345,-1,5585,5067,5214,-1,863,1539,2502,-1,4906,5306,5012,-1,4633,4590,4629,-1,4992,4730,4431,-1,5521,4906,5344,-1,3539,2120,2338,-1,2318,228,2023,-1,1864,181,456,-1,7086,7598,6705,-1,7279,6175,5476,-1,5077,4748,5915,-1,2384,1912,3219,-1,5265,4138,4050,-1,1225,1906,2159,-1,1342,1925,1739,-1,5674,5265,4879,-1,5131,4150,4737,-1,6199,6104,5453,-1,815,958,1225,-1,1112,1960,1496,-1,1112,1975,1960,-1,1912,1160,1856,-1,1398,2358,1975,-1,3582,4556,3853,-1,5668,6528,5847,-1,549,162,237,-1,7518,6333,7256,-1,4398,6333,6388,-1,4693,4394,2743,-1,6435,6252,5917,-1,4828,5070,3611,-1,2417,2609,2232,-1,3049,4828,3042,-1,6755,6435,6540,-1,5343,4207,4126,-1,5796,6366,5972,-1,6531,6755,7069,-1,6028,5526,5923,-1,4886,4113,4207,-1,7106,7705,7242,-1,5440,6341,5745,-1,7319,6970,6792,-1,7533,7077,6970,-1,2071,1368,2002,-1,6656,5433,5669,-1,3026,2071,2985,-1,2927,2132,3923,-1,2031,2277,3828,-1,6394,7304,6316,-1,2563,1537,2927,-1,4257,6377,4418,-1,5956,4215,4524,-1,6225,7528,7833,-1,6462,7621,7441,-1,7090,6238,6045,-1,2443,4080,4163,-1,2148,2843,1848,-1,965,1886,2008,-1,3882,5762,4630,-1,6632,7090,6190,-1,2117,1514,2443,-1,6173,5281,6414,-1,6173,5125,5281,-1,2165,1961,1688,-1,1909,3099,4084,-1,1961,2165,4094,-1,4233,4663,2840,-1,2157,2398,5155,-1,2398,5720,5155,-1,6924,6994,7345,-1,3358,5326,3477,-1,1388,201,1083,-1,3797,2374,3545,-1,5286,5726,4961,-1,4740,4412,4208,-1,2828,4508,2168,-1,1850,2691,2593,-1,3479,3048,3079,-1,808,140,570,-1,794,694,342,-1,403,695,587,-1,729,324,516,-1,324,304,516,-1,399,197,31,-1,1888,807,1518,-1,2396,5135,4480,-1,4480,1792,2396,-1,7326,6369,6409,-1,7709,7265,7329,-1,7831,7392,7739,-1,7583,7927,7554,-1,5259,5494,1974,-1,5172,4971,7268,-1,350,79,308,-1,513,883,2026,-1,727,48,117,-1,359,1518,727,-1,49,513,359,-1,1974,1623,359,-1,399,1259,1011,-1,1079,1105,1128,-1,902,807,1250,-1,49,359,727,-1,31,221,18,-1,5805,5064,4858,-1,4734,4347,3812,-1,5603,5153,5805,-1,6691,6428,6725,-1,6691,6118,6428,-1,4347,5442,5076,-1,5428,5867,5954,-1,329,239,60,-1,249,60,239,-1,1070,2041,2112,-1,82,596,707,-1,1111,1155,993,-1,50,148,70,-1,993,1155,1578,-1,1270,855,936,-1,888,847,1544,-1,1942,1571,1570,-1,400,934,436,-1,438,797,379,-1,3705,4655,6312,-1,1250,1893,753,-1,3021,4395,4502,-1,6198,3227,6602,-1,1674,4492,3929,-1,2543,4502,4492,-1,4395,5165,5736,-1,3756,6592,7268,-1,471,430,707,-1,1153,1300,2104,-1,2041,808,1553,-1,1691,784,1038,-1,2175,1952,2494,-1,2494,2052,1991,-1,2375,2399,3352,-1,1618,1506,650,-1,1151,1699,2688,-1,1475,1326,2153,-1,2925,2831,2644,-1,2173,2727,1991,-1,2688,1555,1151,-1,2052,4918,2173,-1,7551,7340,7728,-1,6849,7002,7037,-1,7347,7297,7167,-1,7657,7474,7422,-1,6798,6469,6495,-1,7415,6798,7452,-1,7302,7136,7413,-1,7135,7885,7112,-1,3907,2368,4732,-1,4732,3762,5330,-1,2368,1559,3762,-1,4298,4763,6920,-1,6686,6796,7754,-1,3063,3377,3511,-1,4099,4203,3754,-1,3576,2651,2589,-1,4231,4452,3761,-1,3966,3897,4562,-1,4392,4562,5371,-1,3489,2095,2967,-1,3777,3669,5005,-1,4127,5726,5391,-1,3669,3963,3354,-1,6310,6380,6326,-1,6417,7215,6512,-1,5203,5025,5368,-1,5541,6038,5368,-1,4963,5093,4096,-1,763,836,470,-1,763,298,566,-1,255,713,1094,-1,1870,1321,1171,-1,664,818,1171,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=9 */
		private int[] getmand_Geo_5_877_normalIndex_9()
		{
			int[] value = {4227,3121,2989,-1,2608,4508,3926,-1,4125,1887,2871,-1,2866,1608,1887,-1,1602,1606,1661,-1,4779,2892,4296,-1,5775,4917,5252,-1,6975,7019,6784,-1,5398,6975,6415,-1,5420,4213,5356,-1,5706,5346,5698,-1,5805,5349,5132,-1,4635,5531,5200,-1,5540,5595,5706,-1,4611,5205,5540,-1,5913,5867,5428,-1,4053,4930,3988,-1,3986,4733,4429,-1,4867,4484,4529,-1,4200,4529,4484,-1,6725,6097,5899,-1,1220,258,544,-1,2552,6708,6788,-1,4369,3660,3256,-1,6078,5262,5293,-1,6708,7932,7163,-1,2520,2552,664,-1,2487,1470,1713,-1,3785,1870,2096,-1,3811,4994,4917,-1,2772,2922,4097,-1,3590,3127,4227,-1,1955,3194,2898,-1,1033,1321,1713,-1,4361,5252,4917,-1,6295,5246,3175,-1,2960,1993,2145,-1,3451,5152,5143,-1,1873,3217,3194,-1,1947,3771,2922,-1,5785,3217,2866,-1,4125,7079,6259,-1,4789,5798,5579,-1,3175,2035,2146,-1,4471,5350,5018,-1,4469,3121,4227,-1,5733,5579,5798,-1,1560,1862,1529,-1,4132,3210,2729,-1,6053,6083,5895,-1,2603,2231,2503,-1,1713,1321,1870,-1,4516,5252,4361,-1,3368,3725,3185,-1,3538,3271,3754,-1,3565,3851,3258,-1,1608,1529,1887,-1,2632,2736,2868,-1,2868,3169,2892,-1,3985,3990,3508,-1,5076,4357,4708,-1,4576,5984,5443,-1,3050,3495,2871,-1,3569,2648,4779,-1,3249,2936,1285,-1,6869,5522,5554,-1,3569,5722,3143,-1,5722,3569,4779,-1,2300,2808,3867,-1,3985,3508,3310,-1,2934,2736,2632,-1,4061,3912,3367,-1,5393,6293,6976,-1,4061,3367,5260,-1,2808,1473,3197,-1,5953,3799,5148,-1,1203,3591,2707,-1,2588,2519,3569,-1,3998,5148,3799,-1,4576,1930,2536,-1,3530,2028,3268,-1,2428,2821,2868,-1,6398,5659,6599,-1,5447,4978,6081,-1,6674,6193,6081,-1,6869,7261,7950,-1,156,1016,1203,-1,3804,5496,5260,-1,3812,4503,5056,-1,5349,5805,5153,-1,3995,3992,3946,-1,5025,5203,5406,-1,4246,3458,4514,-1,4362,4859,4169,-1,5166,4867,5376,-1,4764,4852,5074,-1,4764,4697,4852,-1,5406,5472,4865,-1,3538,4203,4350,-1,3052,3437,2821,-1,6302,6310,6331,-1,6112,6707,6590,-1,3478,2774,3340,-1,451,137,294,-1,582,722,676,-1,81,137,451,-1,2797,2345,838,-1,762,1043,569,-1,687,1170,559,-1,2919,3417,3424,-1,2206,2379,1084,-1,6273,5557,5982,-1,6455,6499,6197,-1,6721,6263,5963,-1,6762,6442,6174,-1,6532,6527,5754,-1,6523,6063,6403,-1,6063,4939,5572,-1,4939,6063,6523,-1,6273,6478,6174,-1,6321,6197,5982,-1,3327,4023,4441,-1,3388,3311,3056,-1,2797,1094,2195,-1,294,1928,1478,-1,4536,2218,2199,-1,1532,1290,559,-1,1710,2424,1119,-1,1088,1119,2424,-1,5464,2450,4106,-1,3581,3162,3478,-1,3424,2455,2919,-1,2110,3068,2918,-1,4842,4536,4376,-1,4768,3630,2521,-1,4351,3230,4368,-1,4376,4290,4842,-1,4351,6263,4513,-1,5331,2566,3114,-1,6566,6837,6403,-1,6552,5965,4023,-1,3648,2195,3056,-1,6403,6063,5572,-1,6264,6639,4755,-1,6709,6612,6922,-1,1865,1138,762,-1,2450,1088,2424,-1,5456,4868,5620,-1,2991,2678,4329,-1,3212,3375,3297,-1,1761,3212,2617,-1,5992,6961,6365,-1,7270,6961,5992,-1,3425,1894,1408,-1,346,1486,1021,-1,730,1753,1665,-1,2110,2105,1193,-1,6904,5566,5482,-1,990,2566,574,-1,687,1043,1102,-1,6617,6534,3907,-1,6617,7417,6534,-1,6321,6069,5330,-1,4647,5456,5730,-1,6321,4647,5086,-1,5456,5154,5228,-1,3492,2332,2850,-1,3216,2887,3492,-1,7197,7400,7300,-1,3216,3793,3641,-1,2850,2332,1638,-1,3705,2512,4655,-1,7258,6172,6384,-1,5724,6172,6922,-1,5982,5218,6069,-1,6112,5754,6527,-1,974,1426,1068,-1,2621,1791,2389,-1,7492,7265,7709,-1,1105,2512,1296,-1,1854,105,650,-1,971,608,829,-1,3869,1639,4666,-1,4802,7094,7118,-1,526,577,286,-1,400,299,584,-1,1214,210,104,-1,1791,1831,1569,-1,654,652,908,-1,1264,1613,1399,-1,761,743,1123,-1,1039,834,854,-1,1056,1429,1850,-1,743,365,1070,-1,203,274,771,-1,1042,584,1784,-1,1674,354,76,-1,1563,299,1251,-1,7317,7989,7971,-1,7682,7691,7415,-1,7269,6805,7537,-1,4206,4960,5964,-1,4117,4960,1784,-1,6587,6749,3688,-1,4117,6866,4960,-1,981,1544,872,-1,6587,6936,7566,-1,2217,2272,1948,-1,1843,1579,2719,-1,6993,7143,6854,-1,2849,2652,2265,-1,7174,7303,7992,-1,2297,4162,4976,-1,2884,1506,2267,-1,947,1356,1730,-1,5327,6692,6179,-1,1714,2543,1674,-1,5032,4875,5770,-1,4142,2933,3607,-1,6803,6857,7174,-1,2038,1793,3372,-1,3082,2630,2328,-1,6823,6840,7992,-1,809,1843,2279,-1,7192,6697,6895,-1,6805,7269,6563,-1,7196,7188,6795,-1,178,76,354,-1,5849,6931,6194,-1,7482,7443,7463,-1,7980,7962,7668,-1,7631,7369,7431,-1,7839,7584,7691,-1,6866,6667,5964,-1,6401,6888,6243,-1,5575,5770,4875,-1,887,416,1854,-1,834,1610,577,-1,578,654,993,-1,104,760,682,-1,2176,3131,1691,-1,274,277,482,-1,4325,3131,2176,-1,7885,7554,7112,-1,2179,972,3030,-1,2179,301,972,-1,4860,3829,3979,-1,806,1122,1384,-1,7249,7453,6768,-1,4967,5183,5048,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=10 */
		private int[] getmand_Geo_5_877_normalIndex_10()
		{
			int[] value = {4790,5708,4795,-1,3112,3555,3746,-1,4738,4931,5183,-1,6162,7812,7869,-1,5509,4820,5048,-1,7362,6942,7408,-1,7387,7998,6689,-1,4904,6790,6123,-1,3810,3959,5279,-1,7070,6529,5415,-1,2793,2599,2550,-1,1400,2629,2900,-1,2545,2156,1976,-1,3635,4539,4313,-1,5878,5911,5279,-1,2535,1644,1867,-1,6995,6308,6397,-1,6180,6957,7296,-1,6308,7177,6416,-1,877,674,740,-1,7399,7220,7505,-1,1828,1165,1535,-1,6376,4860,5169,-1,4035,2430,3589,-1,2999,4035,3361,-1,2942,3441,3346,-1,2942,2958,3441,-1,4355,4796,4824,-1,4355,3924,4796,-1,3244,3729,4159,-1,5889,7193,6510,-1,2902,2978,3418,-1,5238,5506,3948,-1,3683,2040,1658,-1,3357,1523,3111,-1,1523,1232,1034,-1,4601,4745,4919,-1,5027,5530,6106,-1,2479,1743,1845,-1,5208,5226,4810,-1,5315,6106,6300,-1,4304,3854,3976,-1,2645,3154,2390,-1,6722,7195,6753,-1,2320,1651,1352,-1,4659,4186,4606,-1,3260,2202,3415,-1,4810,5226,4256,-1,6055,6902,5633,-1,7358,6613,7473,-1,7498,7640,7372,-1,5395,5929,6207,-1,1926,2170,1530,-1,3172,2057,3189,-1,3733,5204,4839,-1,2055,3116,2489,-1,5188,4825,5377,-1,5967,6649,6752,-1,4183,2346,2404,-1,3753,5225,5735,-1,1694,1607,2766,-1,700,361,913,-1,1607,297,1538,-1,4118,5439,3676,-1,5872,6913,6445,-1,5225,5432,5922,-1,4046,2766,3543,-1,1996,3676,3488,-1,5106,3667,5355,-1,6782,7451,7331,-1,6633,7331,7405,-1,1779,2005,1030,-1,3843,5138,4066,-1,1314,462,241,-1,2878,4805,3129,-1,2878,4634,4805,-1,4872,6750,6536,-1,6733,6579,6318,-1,4944,6619,6827,-1,5946,6318,6579,-1,4826,6046,6318,-1,1939,2329,3180,-1,1202,932,1581,-1,5914,5832,5066,-1,6015,5692,7560,-1,3180,5692,6015,-1,3450,2612,2307,-1,4826,5946,5122,-1,6770,7591,6905,-1,7727,6619,6015,-1,5537,7534,7755,-1,7733,7749,7751,-1,4232,3966,4320,-1,7248,6979,4604,-1,7751,7829,7978,-1,7480,7573,7281,-1,7719,7283,7681,-1,7248,7721,7835,-1,7480,7513,7280,-1,585,259,340,-1,6285,5625,6111,-1,3558,1551,3132,-1,658,340,673,-1,1196,3584,4167,-1,135,723,378,-1,696,496,510,-1,223,323,352,-1,182,78,454,-1,3061,5822,5902,-1,2488,315,378,-1,5822,3061,5860,-1,3132,1551,1780,-1,7958,6458,7444,-1,6745,6119,7134,-1,5625,6119,6745,-1,7038,7782,7203,-1,7229,5902,5822,-1,7696,7281,7948,-1,7841,7229,7556,-1,2578,3414,2414,-1,4194,3857,3600,-1,3414,3303,2853,-1,2278,1889,1583,-1,2853,3303,2401,-1,2590,2517,2620,-1,1434,2097,2125,-1,2790,2905,3182,-1,3264,3600,2600,-1,265,236,419,-1,7776,7760,7781,-1,7945,7485,7991,-1,7783,7827,7616,-1,7490,7638,7796,-1,5787,3671,5363,-1,5939,6601,7655,-1,7722,7514,7576,-1,7574,7524,7514,-1,7954,7946,7647,-1,7890,7935,7524,-1,6767,6726,6424,-1,7609,7602,7646,-1,1515,1698,4525,-1,153,315,259,-1,3541,1765,2287,-1,1196,440,2897,-1,6400,3061,4237,-1,1827,4237,1416,-1,4102,7627,7778,-1,2838,4151,3626,-1,2573,3558,6285,-1,7726,7248,5028,-1,5966,5363,3671,-1,5787,5363,6764,-1,6464,5493,6258,-1,4854,5907,5493,-1,5493,3671,4854,-1,6315,6720,5907,-1,1173,1117,2628,-1,6039,6346,5764,-1,5949,2992,5325,-1,7903,7593,6148,-1,6680,5850,7137,-1,7903,7821,7875,-1,7286,7172,7821,-1,5347,5231,5128,-1,5337,6524,6396,-1,5242,4894,5351,-1,2046,1616,1450,-1,1049,865,1181,-1,962,589,322,-1,662,986,1189,-1,1092,1372,728,-1,1131,843,728,-1,368,842,499,-1,175,356,557,-1,867,755,1048,-1,1462,4087,3231,-1,5752,5423,5877,-1,3624,4056,4457,-1,3257,4493,3719,-1,4354,5532,6166,-1,6166,4224,4354,-1,5041,4493,3257,-1,3802,4765,3018,-1,1707,1700,1776,-1,2534,3135,2623,-1,3685,2984,3031,-1,3910,3832,4436,-1,2193,3031,2437,-1,6776,6124,5962,-1,4943,4324,5962,-1,7774,7458,7542,-1,6724,6774,6974,-1,5545,6000,5133,-1,5105,5016,3775,-1,6303,6048,5945,-1,6165,6023,5848,-1,6466,6476,6132,-1,7429,7208,7337,-1,6476,6165,6433,-1,1595,1018,1287,-1,3393,2754,2234,-1,1141,1472,1715,-1,1670,1895,2683,-1,2414,2666,2310,-1,2993,4194,3496,-1,2824,2591,2411,-1,2824,2584,2591,-1,2584,2679,2591,-1,2620,2877,2402,-1,3925,3629,3938,-1,3991,3990,4538,-1,3453,3174,3573,-1,5962,4324,4819,-1,7774,7744,7202,-1,6603,6776,4819,-1,7075,7458,6603,-1,1634,2402,1686,-1,1141,931,1472,-1,6521,5437,4101,-1,5145,4018,6100,-1,1459,4101,5437,-1,3523,2683,4249,-1,3775,4413,4807,-1,4018,4935,3620,-1,4922,4018,2815,-1,3597,5073,869,-1,5073,1785,869,-1,3597,989,2289,-1,4558,2854,4224,-1,2155,4767,4807,-1,3208,2212,2663,-1,3896,2895,2986,-1,5488,3440,3386,-1,7033,6740,6270,-1,5429,5637,5866,-1,5673,6336,6095,-1,4012,4493,5891,-1,2561,1141,1715,-1,4286,5145,5524,-1,2425,3524,2994,-1,2994,1715,2425,-1,1689,3393,2234,-1,1494,1355,1357,-1,6559,6311,6399,-1,5519,4843,5660,-1,4275,4815,4358,-1,3943,4380,4425,-1,3190,3765,3362,-1,6408,6000,5545,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=11 */
		private int[] getmand_Geo_5_877_normalIndex_11()
		{
			int[] value = {5471,3884,5212,-1,5212,4862,5273,-1,6023,5545,5414,-1,3527,2339,3398,-1,4399,3016,2565,-1,2058,3527,3404,-1,4459,5925,2722,-1,1591,1896,2339,-1,4823,4933,6082,-1,6082,6831,6800,-1,2480,1169,1158,-1,2526,2532,2739,-1,3137,2656,3498,-1,4379,5864,5250,-1,5250,3609,4379,-1,1139,2080,1218,-1,4039,5652,6556,-1,3427,5114,4401,-1,2080,4139,5114,-1,1716,2327,4660,-1,4862,5179,3821,-1,3205,2801,4039,-1,4039,4870,3205,-1,2722,3816,2310,-1,2532,3025,4964,-1,1169,56,1158,-1,3527,5341,5463,-1,2080,3427,1218,-1,5380,5304,7055,-1,2853,2824,2666,-1,5133,4933,5545,-1,4685,4306,4032,-1,3362,4053,3163,-1,3605,3832,2660,-1,3174,3498,2656,-1,3174,3453,3498,-1,3160,3135,2979,-1,3160,3644,3135,-1,2946,2402,3186,-1,4457,4380,3943,-1,6187,6965,6261,-1,6947,6907,6654,-1,7538,7986,7419,-1,3877,4567,4024,-1,6654,6886,6298,-1,7324,7412,7651,-1,7432,7425,7355,-1,5022,3413,3864,-1,1905,1620,1509,-1,1984,2540,1769,-1,1938,2043,1280,-1,1611,1121,956,-1,1210,1249,949,-1,1280,1031,1121,-1,1209,1374,1379,-1,1073,769,1093,-1,3318,3560,3839,-1,922,741,956,-1,1567,1836,1318,-1,7432,7753,7708,-1,6432,5044,5359,-1,6434,7940,7686,-1,6170,7042,6144,-1,5044,4813,4517,-1,6885,6432,6548,-1,7315,7015,6714,-1,6187,5061,6144,-1,6575,2650,1875,-1,1875,6047,6575,-1,4678,4535,4026,-1,1914,5781,5973,-1,2735,1984,1769,-1,2491,5973,5536,-1,3835,3769,3642,-1,5446,5861,2208,-1,3270,6570,6807,-1,5170,6807,6539,-1,5636,3704,4144,-1,2208,2439,3548,-1,3726,2748,4638,-1,3480,6488,6393,-1,3839,4038,4926,-1,2415,5882,5359,-1,5052,1962,2253,-1,6155,5882,2523,-1,5044,4517,4128,-1,4913,4700,5592,-1,4684,4141,4609,-1,2410,2945,2253,-1,2912,3304,3577,-1,1274,956,741,-1,5882,6860,6548,-1,3548,3438,4339,-1,4251,5580,3887,-1,2486,3270,5170,-1,5039,4612,4535,-1,4699,5386,5054,-1,3480,4638,2748,-1,1703,2063,742,-1,6138,7133,7608,-1,3850,3594,4550,-1,7608,7661,6519,-1,852,1384,2466,-1,1703,2466,3229,-1,4722,4625,3856,-1,812,1384,852,-1,1875,2650,647,-1,4778,3642,3787,-1,3826,3577,3304,-1,5418,4926,5383,-1,7251,5658,7427,-1,5039,5211,5266,-1,3939,4806,4583,-1,2690,2139,2834,-1,5389,4364,2834,-1,5039,6066,4545,-1,3266,2899,1915,-1,4042,4336,4251,-1,3726,4144,2798,-1,4658,4323,4753,-1,1621,1649,3803,-1,6645,6622,6406,-1,6609,6219,6884,-1,6884,7007,6903,-1,719,646,1515,-1,4063,1649,1515,-1,2573,3341,1698,-1,5802,6578,6884,-1,4658,5983,5060,-1,5498,6161,4525,-1,781,1048,660,-1,719,649,874,-1,1720,1262,1415,-1,1534,2319,1428,-1,5060,5298,4712,-1,226,493,417,-1,6329,5403,6113,-1,5671,5060,5983,-1,6113,5298,6230,-1,223,352,527,-1,673,1605,1698,-1,6926,6625,6875,-1,6265,6963,6463,-1,7915,7328,7145,-1,7679,7779,6716,-1,7360,7099,7205,-1,6963,7320,6411,-1,7679,7041,6742,-1,7449,7158,7212,-1,6743,7044,6804,-1,7731,7803,7726,-1,6315,6864,7241,-1,6402,3794,3967,-1,6450,6598,6113,-1,7696,6400,7281,-1,6894,7262,6954,-1,6601,7203,7829,-1,6283,5483,4984,-1,6812,7137,6894,-1,1589,1163,1293,-1,151,1004,84,-1,4637,4040,2000,-1,6299,4341,4405,-1,5567,4040,4637,-1,703,407,499,-1,6430,7821,7172,-1,1788,2000,4040,-1,6323,5704,5412,-1,4494,5827,5075,-1,5818,5701,5499,-1,5412,5431,5520,-1,7074,6626,5969,-1,2377,1117,1762,-1,7402,7074,6218,-1,5015,3960,4610,-1,5583,5242,6485,-1,3526,3233,3900,-1,5255,5282,5470,-1,3080,5827,4494,-1,6314,6218,4565,-1,7286,5734,5222,-1,1131,783,843,-1,843,433,728,-1,77,266,240,-1,630,595,310,-1,382,44,380,-1,1764,1004,737,-1,1765,1163,1919,-1,112,120,214,-1,3967,3794,1281,-1,915,897,35,-1,168,184,167,-1,338,567,380,-1,1450,1009,630,-1,5518,5470,5892,-1,5996,6217,6812,-1,7424,7159,7475,-1,6804,6847,7062,-1,7997,7891,7880,-1,7117,6598,6729,-1,864,270,626,-1,214,626,112,-1,7219,7191,7404,-1,893,454,135,-1,5826,3671,5787,-1,7522,7726,7778,-1,6315,4854,5826,-1,7288,7832,7886,-1,6509,6982,7393,-1,7524,6946,6647,-1,6148,7593,7137,-1,6821,7973,6485,-1,6513,7145,7328,-1,1762,1117,1616,-1,2000,1788,1372,-1,272,310,171,-1,571,638,380,-1,338,44,26,-1,538,560,519,-1,1812,1076,2154,-1,7627,7928,7522,-1,7882,7928,7908,-1,538,457,446,-1,783,1245,905,-1,1163,1765,1443,-1,843,783,899,-1,5845,6158,7172,-1,14,1173,1191,-1,5583,4430,5015,-1,4624,6218,5969,-1,4494,2791,2665,-1,5431,5255,5470,-1,2241,3081,2913,-1,3328,2681,3013,-1,7160,6319,6283,-1,2791,1347,2665,-1,6396,6626,7074,-1,5731,6436,5222,-1,4986,4040,5764,-1,832,925,14,-1,5119,5412,5704,-1,1152,866,1009,-1,5473,5499,5701,-1,6062,5473,5691,-1,703,619,407,-1,443,1069,1417,-1,7082,6355,6997,-1,2973,1219,3977,-1,4341,3977,1417,-1,5715,2973,3977,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=12 */
		private int[] getmand_Geo_5_877_normalIndex_12()
		{
			int[] value = {2000,2973,3653,-1,1163,530,310,-1,1589,1919,1163,-1,35,589,698,-1,6716,7779,7320,-1,7928,7627,6319,-1,6265,6299,7320,-1,6764,7655,7386,-1,7806,7782,7891,-1,6113,6598,6841,-1,7007,7159,7089,-1,6729,6378,6794,-1,7099,7360,7393,-1,5493,6230,6258,-1,7237,7808,6754,-1,7779,7602,7110,-1,7718,7424,7475,-1,3198,897,915,-1,3383,6347,6699,-1,7178,7401,7018,-1,6148,5734,7286,-1,6901,6645,5498,-1,295,745,510,-1,5671,6258,6230,-1,7031,7007,6578,-1,1447,2257,1929,-1,1915,2899,2579,-1,781,1771,2216,-1,1621,1771,649,-1,1318,1432,1567,-1,6406,5156,5630,-1,4712,4950,4366,-1,1515,646,648,-1,5187,5156,4658,-1,1922,2540,3332,-1,2540,1984,2581,-1,2690,1915,1754,-1,1769,2043,2798,-1,5802,5627,4092,-1,1462,583,1389,-1,6906,6962,7355,-1,7861,7877,6488,-1,7427,5418,7016,-1,2523,2415,1104,-1,6539,6862,5874,-1,6348,6251,7282,-1,6981,6519,7661,-1,7133,6138,4550,-1,6138,7608,6519,-1,1228,2063,3798,-1,4549,4612,4545,-1,5386,4545,6066,-1,4699,4549,4545,-1,5751,5022,3864,-1,2486,3084,3332,-1,5580,6918,5561,-1,7246,6155,5955,-1,4428,4295,2216,-1,2042,3973,2462,-1,1731,3529,3242,-1,1442,2462,1943,-1,3973,2042,1457,-1,941,1366,1457,-1,5418,2605,3318,-1,3480,2721,6488,-1,3704,1769,2798,-1,3549,3769,3438,-1,4778,4144,3835,-1,5536,4336,2737,-1,3134,3438,3548,-1,5111,4869,5558,-1,5085,5558,4679,-1,5446,5851,7121,-1,3803,3859,1621,-1,4535,4612,4433,-1,3887,2544,2716,-1,7572,7419,7986,-1,6489,6213,6664,-1,5811,5052,4352,-1,4613,4052,4943,-1,4609,4312,5101,-1,3560,3973,4700,-1,1905,1754,1915,-1,1731,1720,2109,-1,2605,1439,1943,-1,2257,1447,1477,-1,3480,1274,2721,-1,3480,1611,1274,-1,1249,1573,1836,-1,2540,1922,1509,-1,1509,1479,2540,-1,1905,2579,1836,-1,6884,5627,5802,-1,4679,4583,5085,-1,5604,5052,6969,-1,7216,7121,7899,-1,6654,6298,5536,-1,7940,7872,7986,-1,7335,7419,6907,-1,5580,4336,6298,-1,7538,7128,7068,-1,4678,5211,4535,-1,1452,1447,1929,-1,4628,4843,5519,-1,3685,3624,3878,-1,3135,2534,2639,-1,2946,3186,3379,-1,2837,2627,3083,-1,3644,3910,3190,-1,4551,4436,3832,-1,2639,2810,2979,-1,2610,4054,3995,-1,2584,2824,2853,-1,3264,2951,4194,-1,4831,2653,4201,-1,7036,7866,7055,-1,56,24,759,-1,1333,1126,1931,-1,2532,1832,1931,-1,6491,5925,7397,-1,5212,5216,5550,-1,3373,4622,6019,-1,6082,4399,3404,-1,4139,2845,3998,-1,4519,5512,5414,-1,5451,4401,5250,-1,1139,2845,4139,-1,4870,6556,6966,-1,1026,1716,2610,-1,4831,5652,4032,-1,5471,5273,5114,-1,4685,4489,3985,-1,4177,5207,5696,-1,1169,3090,4519,-1,2369,4519,4933,-1,2480,1158,759,-1,6759,6818,4729,-1,3090,5512,4519,-1,4399,6082,4933,-1,4399,2565,2058,-1,3261,3376,2906,-1,4489,3990,3985,-1,5212,5273,5471,-1,6000,6408,6476,-1,4436,4739,4152,-1,4507,4198,4727,-1,1018,1595,786,-1,3645,2754,3393,-1,5319,6011,6274,-1,5429,5507,5778,-1,2305,2016,1927,-1,3802,4731,5319,-1,6408,6165,6476,-1,2212,2425,2278,-1,3775,3597,2289,-1,2986,2663,3523,-1,5073,3597,5945,-1,2425,3208,3524,-1,1823,985,5142,-1,1823,5142,4767,-1,6250,5084,4249,-1,6132,6056,4807,-1,2862,2854,4558,-1,3393,5879,5944,-1,4922,2815,1785,-1,3076,2754,3645,-1,6521,6724,6974,-1,5105,4807,6056,-1,3775,3792,4874,-1,3896,3523,5084,-1,3245,3070,4121,-1,6100,4018,4922,-1,6284,6521,5524,-1,7429,7337,5502,-1,844,1295,1178,-1,1934,1735,2768,-1,2768,4819,4324,-1,7458,7774,6776,-1,1594,2160,1895,-1,3453,3519,3805,-1,2790,3519,3453,-1,2623,2829,2627,-1,3629,3265,3986,-1,2147,1936,2089,-1,2993,2923,2584,-1,2663,2683,3523,-1,3393,1689,1058,-1,940,1262,931,-1,3821,5190,3090,-1,6370,6433,6165,-1,6000,6466,5142,-1,6533,6303,6337,-1,6521,4101,5524,-1,6974,6774,7208,-1,6100,6381,6774,-1,1534,1428,1748,-1,6969,7202,7744,-1,7244,7435,7708,-1,6969,5811,6124,-1,3031,2863,4328,-1,3685,3830,2984,-1,2955,2929,2305,-1,4707,5532,4354,-1,4003,5532,3963,-1,5891,5713,6166,-1,4224,2854,3018,-1,2587,3326,2365,-1,3897,3966,3647,-1,4198,3878,4166,-1,1358,175,557,-1,1085,840,3231,-1,6452,6219,5635,-1,4364,5635,3266,-1,4087,1389,3266,-1,893,135,871,-1,591,870,702,-1,517,1208,630,-1,1464,1546,1450,-1,579,527,352,-1,589,962,1049,-1,629,491,225,-1,16,341,322,-1,5827,3080,5949,-1,6020,5282,5827,-1,4894,5242,5185,-1,5850,6680,6524,-1,5351,4962,6821,-1,7172,7286,6436,-1,7808,7262,7593,-1,5949,6346,5517,-1,5517,6039,5892,-1,6940,7212,6720,-1,5966,6464,7203,-1,5907,6720,6794,-1,7299,7578,7541,-1,2488,5940,6368,-1,3061,723,1416,-1,4151,4845,3626,-1,6319,3532,3541,-1,3532,6319,7627,-1,1407,5028,1764,-1,2022,2961,5902,-1,5483,3626,4984,-1,1416,723,426,-1,7646,7205,7607,-1,7609,7237,7602,-1,6463,6411,6070,-1,7139,7129,6535,-1,6767,7087,7138,-1,6809,6982,6509,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=13 */
		private int[] getmand_Geo_5_877_normalIndex_13()
		{
			int[] value = {7936,7855,7915,-1,6313,6832,5943,-1,5363,5966,5939,-1,7445,7972,7734,-1,7972,7802,7675,-1,2620,2147,2590,-1,3300,3174,2656,-1,3447,2837,3573,-1,1583,1889,1312,-1,1252,1583,1312,-1,2166,2853,2401,-1,4194,3600,3264,-1,3137,2993,2166,-1,7134,7103,7311,-1,7893,7957,7092,-1,7880,7471,7997,-1,7468,7997,7471,-1,7038,6772,7782,-1,7281,7573,7948,-1,6368,5940,7450,-1,7444,7957,7893,-1,7450,5940,5902,-1,7696,7929,7658,-1,2961,378,723,-1,498,658,673,-1,259,935,153,-1,745,696,510,-1,84,196,151,-1,1605,673,340,-1,6458,7134,6119,-1,7513,7512,7700,-1,7835,7710,7248,-1,7782,7529,7880,-1,7480,7545,7573,-1,7545,7280,7316,-1,7978,7310,7751,-1,7829,7203,7601,-1,7248,7710,6979,-1,6111,6901,5498,-1,4366,4950,4949,-1,4579,3647,4232,-1,7665,7601,7643,-1,2309,2705,2607,-1,4420,5615,4172,-1,4543,2668,2811,-1,2183,5697,2329,-1,2183,5537,5697,-1,5946,6077,5122,-1,3450,2307,2084,-1,5692,5697,7560,-1,4049,3450,5767,-1,6125,5924,3914,-1,6318,6046,5767,-1,1609,2878,1851,-1,1609,2703,2878,-1,5138,6470,5888,-1,462,1314,1706,-1,2492,4157,3434,-1,7022,6085,7052,-1,5857,6912,6153,-1,3843,5581,5138,-1,1963,1770,933,-1,1766,401,1527,-1,1484,459,1803,-1,1801,3751,2064,-1,3475,1648,1484,-1,4118,6445,5439,-1,700,913,1607,-1,5978,4196,4179,-1,5097,3342,4074,-1,4982,5967,5998,-1,2530,1047,2322,-1,5952,6641,6649,-1,1217,1057,715,-1,2283,1709,2577,-1,976,805,285,-1,2672,3701,3872,-1,1783,2055,2489,-1,2057,1637,1660,-1,5204,5747,5688,-1,1441,1530,1467,-1,5777,5394,5590,-1,4391,2939,3172,-1,2087,1752,1530,-1,3931,5204,3733,-1,3931,5059,5204,-1,5243,5272,3350,-1,3638,1672,1732,-1,724,1672,444,-1,7336,7750,7874,-1,2202,1513,1327,-1,4186,3742,4435,-1,6065,5645,6613,-1,6055,5208,6146,-1,6722,7035,7506,-1,5577,6091,6526,-1,2406,2645,1846,-1,2872,2315,3260,-1,2776,1651,2320,-1,6672,7035,6300,-1,6722,6306,5843,-1,4726,4952,5530,-1,5633,4719,5226,-1,1098,2122,597,-1,921,1524,1315,-1,5679,7562,7812,-1,5957,7562,5679,-1,6882,7800,6739,-1,4311,5852,4511,-1,2449,2083,2669,-1,3244,3610,3130,-1,3085,2449,3071,-1,5508,6475,7147,-1,4355,3085,3924,-1,5069,6510,4838,-1,2957,3815,3729,-1,3579,3654,2784,-1,3586,2879,2744,-1,4443,4136,4174,-1,2848,2122,2564,-1,2999,1099,2430,-1,7070,7505,6529,-1,1165,877,1164,-1,6668,7399,7070,-1,7654,7101,7906,-1,4915,3814,4059,-1,2099,2156,2557,-1,3481,2820,3173,-1,3029,2793,3240,-1,6668,7070,5147,-1,7156,5765,5342,-1,6673,5833,6775,-1,7477,6942,5795,-1,873,972,472,-1,5874,5654,4790,-1,5616,5509,5048,-1,1099,242,1197,-1,6493,6768,7530,-1,7249,6941,7987,-1,4931,4738,4499,-1,7869,7579,6941,-1,4931,4499,4746,-1,5616,5183,7249,-1,1227,333,597,-1,5424,5622,4881,-1,5622,5098,4881,-1,873,481,1558,-1,1558,2799,2783,-1,7583,6176,6808,-1,1399,1429,1056,-1,106,31,9,-1,944,1162,1205,-1,577,526,854,-1,1204,1326,1794,-1,2059,1604,1182,-1,7415,6993,6618,-1,7192,6795,6697,-1,7631,7668,7962,-1,6796,6686,3964,-1,7888,7669,7898,-1,5736,6010,6805,-1,6602,7318,6951,-1,7691,7584,7537,-1,7575,7107,7072,-1,1506,2884,2376,-1,3444,1793,1695,-1,4750,4591,3969,-1,6179,6765,6042,-1,4918,5327,3505,-1,2792,2493,2727,-1,3607,4687,4490,-1,3082,2831,3391,-1,6888,5375,5629,-1,2038,2363,1356,-1,2279,2471,2527,-1,2279,2265,1618,-1,6223,4976,4162,-1,1843,809,1579,-1,7192,7483,7636,-1,4162,2297,2375,-1,3592,3688,1251,-1,5964,4162,4206,-1,7537,6805,6711,-1,7905,7318,7883,-1,7583,6808,7927,-1,923,373,421,-1,596,1109,887,-1,1977,3021,2543,-1,140,808,1404,-1,971,1062,798,-1,1850,1569,1831,-1,4187,1610,1306,-1,733,1123,1038,-1,963,1153,1264,-1,1571,934,1042,-1,423,286,408,-1,1639,1277,950,-1,1251,337,347,-1,923,750,296,-1,1570,1042,2196,-1,831,1128,1305,-1,7683,7657,7400,-1,6312,6369,7326,-1,2621,2691,1850,-1,1791,1553,1259,-1,1917,2887,2389,-1,1540,1850,2593,-1,7925,7509,7516,-1,3216,2389,2887,-1,6537,5686,6439,-1,6589,7048,6784,-1,4466,4651,6264,-1,3570,3668,5724,-1,1838,1296,2512,-1,2850,2373,2818,-1,2887,2332,3492,-1,2617,2206,1426,-1,6320,4036,3705,-1,7396,7300,7400,-1,1338,1859,1449,-1,1838,1638,1361,-1,4393,4036,6384,-1,3301,3793,3492,-1,4351,4181,4274,-1,81,1088,2450,-1,3749,3630,3955,-1,111,460,559,-1,6069,5218,4732,-1,3212,2762,3344,-1,5118,3762,2614,-1,5841,5330,3762,-1,3417,3195,4060,-1,2619,3114,2566,-1,4424,4020,4182,-1,4217,4368,3230,-1,7338,5441,6159,-1,7338,7126,6712,-1,4131,4212,3314,-1,5500,6287,4582,-1,5500,6712,7126,-1,4465,4279,1894,-1,7126,7270,6287,-1,3714,4520,6222,-1,3972,2478,2367,-1,2456,3901,2446,-1,2617,3212,3297,-1,3478,3344,2774,-1,2521,3630,1710,-1,4688,5620,4329,-1,5154,5456,5620,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=14 */
		private int[] getmand_Geo_5_877_normalIndex_14()
		{
			int[] value = {4434,4106,3749,-1,2143,616,793,-1,4376,4536,3355,-1,1575,1143,2133,-1,6925,7306,7113,-1,6356,4473,5724,-1,4893,4424,5091,-1,5842,5596,6760,-1,3311,3419,3862,-1,3913,3442,2882,-1,5482,5566,1865,-1,4925,2760,2133,-1,3114,4020,4939,-1,1580,1468,3714,-1,3156,3714,4274,-1,5865,2558,4536,-1,4351,4513,3230,-1,1480,1179,2209,-1,1179,1411,2678,-1,5990,2024,2558,-1,4504,4290,4181,-1,2521,2069,5322,-1,4513,5730,5228,-1,5610,2197,6098,-1,3297,2695,1753,-1,4017,3581,3340,-1,5441,1478,1928,-1,1858,2948,1877,-1,1290,991,559,-1,1532,559,1170,-1,2882,3465,3355,-1,1830,2567,1858,-1,1576,294,137,-1,2882,1532,1575,-1,298,254,569,-1,6688,6174,6442,-1,7113,7306,7228,-1,4917,5905,6264,-1,4441,5572,4939,-1,6552,6666,5965,-1,6523,6403,6837,-1,6915,7233,6934,-1,6629,6636,6801,-1,6919,6968,6721,-1,7008,6762,6478,-1,6703,6919,6222,-1,6721,5963,6073,-1,5730,6263,6455,-1,6499,6273,5982,-1,4586,3195,2991,-1,1043,687,569,-1,357,592,686,-1,1119,468,1351,-1,3972,3439,4119,-1,582,27,451,-1,81,2450,1657,-1,2774,2762,1751,-1,4852,6209,5074,-1,5203,4871,5406,-1,4053,4505,5011,-1,2511,3050,2871,-1,5153,4585,5346,-1,824,918,2624,-1,6791,5562,4773,-1,3249,5205,4611,-1,3038,5447,3268,-1,3912,5200,4793,-1,3169,4296,2892,-1,6293,3946,3334,-1,4773,3799,5953,-1,3591,2934,2707,-1,1473,2254,3197,-1,6791,5953,6873,-1,2755,2273,4319,-1,2049,2300,3431,-1,2300,3867,3431,-1,6193,5489,5254,-1,6846,4779,5522,-1,1183,2536,1930,-1,1211,1930,3143,-1,5285,4226,3483,-1,5981,6107,5706,-1,4576,4864,5984,-1,4987,2871,3495,-1,2648,2519,2423,-1,3893,3884,2632,-1,2511,1887,2066,-1,4505,4169,4859,-1,3735,3506,3625,-1,3725,4127,3708,-1,3052,2405,2200,-1,7215,6650,6512,-1,5775,4516,6415,-1,3489,4069,2095,-1,3489,4012,4069,-1,1675,2100,2387,-1,2651,3556,2589,-1,5134,3556,3926,-1,2387,2100,2317,-1,4412,3394,3102,-1,1655,1334,957,-1,5018,5108,4097,-1,2146,3121,4469,-1,4789,5018,5350,-1,5785,4559,3194,-1,4208,3708,4127,-1,3777,5152,3451,-1,5707,7050,7175,-1,4789,4483,5248,-1,6295,3175,4469,-1,4374,3785,3272,-1,3065,2859,3785,-1,3194,3590,4227,-1,3771,4471,2922,-1,2035,3175,3272,-1,2859,1713,1870,-1,2520,664,1470,-1,6551,7019,6975,-1,6209,5457,5954,-1,930,1403,544,-1,1403,3184,3256,-1,2861,6788,6235,-1,255,258,1220,-1,3256,3660,2044,-1,4427,4787,4484,-1,3938,3755,3925,-1,4857,4532,4848,-1,5362,5954,5457,-1,5333,5411,5205,-1,4532,4793,4848,-1,5064,5132,4503,-1,5346,4585,5593,-1,6339,5798,5350,-1,6975,7048,6415,-1,6813,6984,6417,-1,2066,1529,1862,-1,2871,4987,4125,-1,1476,1705,1626,-1,2859,2487,1713,-1,2195,1882,3056,-1,3660,3947,3056,-1,2044,1882,1220,-1,1094,254,255,-1,5599,4963,5719,-1,3565,4246,4169,-1,6310,6260,6380,-1,3489,4208,4012,-1,4740,3489,2967,-1,3669,3777,1837,-1,4208,3489,4740,-1,3583,4096,4350,-1,4211,3651,3778,-1,4763,3907,6534,-1,6922,7252,7141,-1,7423,7652,7754,-1,7483,7164,7642,-1,6667,7236,7072,-1,7236,6667,6866,-1,7347,6825,7021,-1,7684,7989,7317,-1,6849,7144,7002,-1,6469,6618,6401,-1,1555,2688,3045,-1,1596,1475,2965,-1,2883,2925,2782,-1,1618,2265,2267,-1,809,650,105,-1,887,2153,1326,-1,1854,416,105,-1,2682,5010,2052,-1,6401,6848,7327,-1,2375,2297,1721,-1,6840,5375,6888,-1,3131,2104,1691,-1,2104,3131,4325,-1,4325,2447,2104,-1,1791,2447,1553,-1,604,1070,2224,-1,4325,2658,2112,-1,3392,771,274,-1,1792,4480,5427,-1,4395,3852,5165,-1,3227,354,3929,-1,6592,3756,3392,-1,1113,3756,4971,-1,5136,6883,4515,-1,4395,5736,6291,-1,7739,7816,7571,-1,6448,3705,6312,-1,379,400,438,-1,934,1571,804,-1,1270,1243,1481,-1,100,124,409,-1,72,66,85,-1,450,409,303,-1,923,50,373,-1,596,1204,471,-1,365,1404,2041,-1,366,558,217,-1,155,158,914,-1,19,690,64,-1,872,690,546,-1,7786,7728,7817,-1,5261,4529,4818,-1,6441,5858,5886,-1,4899,5099,4735,-1,6593,6691,6725,-1,5665,5603,5805,-1,5442,4734,5531,-1,4585,4968,5422,-1,556,883,170,-1,902,917,117,-1,556,2116,2026,-1,1361,1638,2332,-1,399,835,1259,-1,5259,2026,5985,-1,5136,4515,1518,-1,727,1518,48,-1,3824,6409,5135,-1,3824,6156,6409,-1,350,556,79,-1,4971,2141,1628,-1,5259,7571,7816,-1,2116,4971,5172,-1,7927,7830,7811,-1,7888,7811,7830,-1,7737,7438,7146,-1,7831,7571,7268,-1,6156,3824,4515,-1,5135,6409,4480,-1,1792,2475,1893,-1,1250,2396,1792,-1,76,482,186,-1,316,729,695,-1,405,587,521,-1,434,403,405,-1,678,570,794,-1,794,342,678,-1,1423,1167,1733,-1,4452,4211,4019,-1,4452,4231,4211,-1,4233,2840,2102,-1,5657,5385,4094,-1,1916,4168,3099,-1,2157,5155,4168,-1,3358,2184,2128,-1,6429,6810,6072,-1,5155,5720,6506,-1,1961,4094,3171,-1,1688,3171,2102,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=15 */
		private int[] getmand_Geo_5_877_normalIndex_15()
		{
			int[] value = {1909,1027,1385,-1,1688,1425,1269,-1,3428,1284,3092,-1,4895,3339,5125,-1,4895,3170,3339,-1,6944,7606,6632,-1,6971,6005,6229,-1,1469,669,714,-1,1309,714,532,-1,2710,4418,2943,-1,6227,4524,4337,-1,2855,5210,3956,-1,2855,4453,5210,-1,2060,2572,3251,-1,1537,2132,2927,-1,4337,4030,5080,-1,6457,7704,7142,-1,5210,6316,5758,-1,3251,3956,4965,-1,2277,4248,3828,-1,1136,1640,1044,-1,2053,1370,2071,-1,2634,3168,3621,-1,5526,4886,5343,-1,7242,6755,6701,-1,2832,3049,2549,-1,4811,5972,4828,-1,5972,6117,4828,-1,6435,5830,6084,-1,2353,2056,2640,-1,2743,2761,2189,-1,504,957,636,-1,3791,3933,3219,-1,503,1398,1112,-1,237,1362,494,-1,3791,2694,3191,-1,3191,3709,3791,-1,4556,5847,4737,-1,3396,3853,3335,-1,494,1362,1342,-1,1253,815,1225,-1,6104,5608,4891,-1,4016,4150,3693,-1,2794,3191,2694,-1,5475,6143,6275,-1,6705,5680,5718,-1,4111,3088,4421,-1,4111,3019,3088,-1,6425,6953,6806,-1,4863,6379,4575,-1,4575,6379,5948,-1,327,1078,447,-1,4051,2505,2770,-1,5103,4633,5026,-1,234,1014,307,-1,1497,811,2119,-1,3847,4271,4916,-1,3652,3176,3203,-1,4639,3944,5013,-1,4408,5598,5013,-1,3141,1603,2823,-1,5834,6863,6181,-1,554,789,966,-1,6838,7380,7162,-1,1603,788,1086,-1,1360,1080,1840,-1,1744,671,1508,-1,6116,5469,5184,-1,6541,6008,6139,-1,2701,2091,2129,-1,6008,5835,5462,-1,5068,5365,6116,-1,4757,5455,5213,-1,3055,1510,861,-1,1901,1288,3299,-1,1317,8,622,-1,2870,3124,2474,-1,4254,4636,3915,-1,1864,1168,88,-1,2571,3058,3292,-1,7809,6817,6761,-1,3235,2331,3285,-1,721,1353,548,-1,7257,6839,7170,-1,4153,2823,3961,-1,5824,7034,7706,-1,5824,4076,4973,-1,6938,7680,7810,-1,6938,6826,7680,-1,4268,4777,4741,-1,4268,4322,4777,-1,5596,6938,6760,-1,5596,5586,6938,-1,4182,2575,4268,-1,2619,2575,4182,-1,2956,2362,2931,-1,2956,2438,2362,-1,5247,4264,5239,-1,5247,4209,4264,-1,1132,280,1201,-1,1132,232,280,-1,2362,2092,2560,-1,2362,2073,2092,-1,280,942,208,-1,280,987,942,-1,2092,2252,2062,-1,2092,2201,2252,-1,5239,4294,5262,-1,5239,4264,4294,-1,5676,4076,5824,-1,4076,5676,4301,-1,5302,6188,6350,-1,5302,5275,6188,-1,7255,6881,7155,-1,7255,6933,6881,-1,4607,4744,4766,-1,4607,4523,4744,-1,6706,7255,7557,-1,6706,6514,7255,-1,4130,4703,4242,-1,4130,4607,4703,-1,5676,7455,7278,-1,7455,5676,5824,-1,1090,1774,1192,-1,1760,1774,1090,-1,2909,2634,2453,-1,2909,3168,2634,-1,1760,2137,2235,-1,2137,1760,1708,-1,4180,2909,2956,-1,4180,4367,2909,-1,2203,2162,2073,-1,2203,2137,2162,-1,6889,5535,5644,-1,6889,6839,5535,-1,4326,3460,4156,-1,3500,3460,4326,-1,4308,4953,4884,-1,4308,4235,4953,-1,6456,7224,6999,-1,6373,7224,6456,-1,5198,5656,5479,-1,5198,5405,5656,-1,4552,5834,4844,-1,4552,5501,5834,-1,7232,6839,6889,-1,7170,6839,7232,-1,1641,789,803,-1,1641,1490,789,-1,3920,3452,3838,-1,3452,3920,3432,-1,3493,3220,3500,-1,3220,3493,3202,-1,6367,5316,5479,-1,6189,5316,6367,-1,3133,2529,2618,-1,3133,3100,2529,-1,5501,4402,5290,-1,4402,5501,4552,-1,377,1408,284,-1,1408,377,1585,-1,4996,5316,5235,-1,4996,5062,5316,-1,3291,4131,3215,-1,4131,3291,4230,-1,711,506,706,-1,711,487,506,-1,7374,7109,7116,-1,7361,7109,7374,-1,3880,3516,3806,-1,3880,3606,3516,-1,7582,7093,7289,-1,7279,7093,7582,-1,3968,4677,4446,-1,4365,4677,3968,-1,5792,6778,6868,-1,5739,6778,5792,-1,1265,1798,1279,-1,1265,1797,1798,-1,3467,3234,3509,-1,3467,3226,3234,-1,3069,1168,2571,-1,1168,3069,1065,-1,6761,4636,4890,-1,6761,6817,4636,-1,721,3069,2847,-1,721,1065,3069,-1,4365,4837,4677,-1,4365,4603,4837,-1,4254,3509,3757,-1,3509,4254,3915,-1,6702,5986,7063,-1,5986,6702,5855,-1,3757,3234,3553,-1,3757,3509,3234,-1,3463,3235,3606,-1,3235,3463,3011,-1,5986,7093,7063,-1,6089,7093,5986,-1,7858,6817,7809,-1,7858,7764,6817,-1,593,1319,623,-1,1319,593,1279,-1,1193,2331,1276,-1,1193,2105,2331,-1,4809,6102,6186,-1,4747,6102,4809,-1,6802,7865,7901,-1,6802,6868,7865,-1,4171,2888,2800,-1,4171,4217,2888,-1,2382,1317,645,-1,2382,2495,1317,-1,3643,3087,3028,-1,3643,3691,3087,-1,3343,3502,3331,-1,3343,3503,3502,-1,7012,7479,7525,-1,7047,7479,7012,-1,146,282,524,-1,146,244,282,-1,3343,2885,2889,-1,3343,3331,2885,-1,3491,3503,3343,-1,3491,3482,3503,-1,7047,7314,7479,-1,6904,7314,7047,-1,533,990,574,-1,990,533,1012,-1,244,172,149,-1,172,244,146,-1,4377,4342,4721,-1,4377,4239,4342,-1,1632,2789,1199,-1,1632,2911,2789,-1,2091,1313,2129,-1,2091,1632,1313,-1,2499,3108,1840,-1,3906,3108,2499,-1,5230,4602,5426,-1,5230,4528,4602,-1,6008,5466,6139,-1,6008,5462,5466,-1,4062,4817,3711,-1,4062,4974,4817,-1,2222,3983,1933,-1,2222,4034,3983,-1,4898,5397,5474,-1,4898,5199,5397,-1,6694,5776,5880,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=16 */
		private int[] getmand_Geo_5_877_normalIndex_16()
		{
			int[] value = {5776,6694,6793,-1,4780,3493,4353,-1,3713,3493,4780,-1,3110,2243,3166,-1,3110,2079,2243,-1,4292,5043,4234,-1,4292,5227,5043,-1,3108,4292,2873,-1,4390,4292,3108,-1,2844,2778,2225,-1,2844,3366,2778,-1,4783,5455,4757,-1,4783,5681,5455,-1,1813,1840,1080,-1,1840,1813,2499,-1,5318,5230,5794,-1,5318,4850,5230,-1,4192,4377,4544,-1,4192,3940,4377,-1,1268,671,345,-1,671,1268,1288,-1,6245,6226,6643,-1,6245,5794,6226,-1,4711,5034,5276,-1,4711,4544,5034,-1,250,351,345,-1,250,121,351,-1,1528,868,1451,-1,868,1528,1081,-1,3788,3209,3820,-1,3209,3788,3232,-1,6418,6610,6892,-1,6610,6418,6204,-1,5043,5880,5776,-1,5043,5227,5880,-1,2152,1451,1545,-1,2152,2187,1451,-1,4954,3774,4958,-1,3774,4954,3820,-1,7380,6892,7162,-1,7380,7104,6892,-1,6999,6616,6456,-1,6999,6819,6616,-1,5405,5588,5656,-1,5405,5310,5588,-1,3004,3961,2823,-1,3961,3004,4161,-1,4953,5776,5644,-1,4953,5043,5776,-1,3432,2763,3051,-1,3432,3125,2763,-1,385,904,639,-1,904,385,788,-1,904,1808,996,-1,1808,904,1635,-1,2911,2926,2789,-1,2911,3014,2926,-1,3568,3014,2911,-1,3568,3299,3014,-1,3568,3823,3299,-1,3568,4114,3823,-1,3568,4239,4114,-1,4260,4239,3568,-1,4260,4342,4239,-1,4260,4346,4342,-1,4527,4346,4260,-1,4527,4404,4346,-1,4527,4528,4404,-1,4527,4602,4528,-1,4527,4645,4602,-1,2078,1354,2182,-1,2078,1241,1354,-1,1512,2370,1460,-1,2386,2370,1512,-1,2124,3308,2030,-1,3449,3308,2124,-1,3278,3047,2502,-1,3554,3047,3278,-1,5088,5408,5542,-1,5088,5050,5408,-1,5871,5113,5257,-1,5113,5871,5560,-1,2318,3058,1864,-1,3058,2318,3237,-1,3237,4277,4173,-1,4277,3237,3298,-1,3253,4185,4293,-1,4185,3253,3306,-1,4387,4033,4724,-1,4387,3951,4033,-1,4665,5088,5164,-1,4665,4661,5088,-1,4603,5113,4837,-1,4603,4715,5113,-1,2746,2182,2786,-1,2746,2078,2182,-1,3093,2370,2386,-1,3093,3054,2370,-1,4863,3724,4775,-1,3782,3724,4863,-1,4267,3522,4236,-1,3336,3522,4267,-1,4133,4302,5008,-1,4302,4133,3723,-1,3866,3951,4387,-1,3866,3842,3951,-1,2638,2846,1968,-1,2638,3078,2846,-1,4992,4195,4629,-1,4992,4191,4195,-1,4345,5012,5306,-1,5012,4345,4316,-1,2638,1712,2554,-1,1712,2638,1968,-1,5008,4344,5176,-1,4344,5008,4302,-1,4081,4387,4598,-1,4081,3866,4387,-1,5390,5306,5521,-1,5390,5223,5306,-1,4730,4629,4590,-1,4730,4992,4629,-1,992,811,1497,-1,992,307,811,-1,4185,4598,4682,-1,4185,4081,4598,-1,2554,1738,2592,-1,1738,2554,1712,-1,5176,4414,5287,-1,4414,5176,4344,-1,4906,4236,5344,-1,4236,4906,4267,-1,4782,4590,4600,-1,4782,4730,4590,-1,5670,6006,6093,-1,6006,5670,5578,-1,2592,1680,2664,-1,1680,2592,1738,-1,3752,4782,4673,-1,3752,4051,4782,-1,321,1241,234,-1,321,1354,1241,-1,5920,5908,5662,-1,6307,5908,5920,-1,4673,4600,4485,-1,4673,4782,4600,-1,5478,4681,5763,-1,4681,5478,4599,-1,4315,4661,4665,-1,4315,4293,4661,-1,2664,1790,2738,-1,1790,2664,1680,-1,3539,4673,4589,-1,3539,3752,4673,-1,1354,386,1329,-1,386,1354,321,-1,1003,279,939,-1,279,1003,355,-1,3666,3405,3672,-1,3405,3666,3223,-1,6623,6392,6471,-1,6623,6508,6392,-1,6379,6806,6600,-1,6543,6806,6379,-1,4426,4648,4594,-1,4426,4423,4648,-1,1072,2010,1240,-1,2010,1072,2120,-1,4277,4720,4714,-1,4277,4262,4720,-1,2836,1950,2880,-1,1950,2836,1897,-1,5793,4728,5784,-1,4728,5793,4696,-1,3782,3054,3724,-1,3054,3782,3040,-1,4381,4594,4686,-1,4381,4426,4594,-1,1240,1983,1337,-1,1983,1240,2010,-1,6562,6634,6671,-1,6702,6634,6562,-1,1082,456,1134,-1,456,1082,228,-1,3700,3459,3786,-1,3459,3700,3411,-1,1332,218,1337,-1,1332,318,218,-1,7086,6425,6550,-1,7086,6953,6425,-1,4382,4686,4792,-1,4382,4381,4686,-1,6914,6702,7063,-1,6914,6634,6702,-1,1134,181,1180,-1,181,1134,456,-1,4124,4467,4255,-1,4467,4124,4382,-1,1261,318,1332,-1,1261,328,318,-1,6550,7598,7086,-1,6565,7598,6550,-1,4033,3554,4105,-1,3951,3554,4033,-1,3951,3842,3554,-1,6705,5739,5680,-1,6778,5739,6705,-1,2860,4220,2874,-1,4220,2860,4255,-1,3356,3193,3000,-1,3370,3193,3356,-1,1362,2111,1342,-1,1362,2250,2111,-1,5674,5077,5903,-1,5256,5077,5674,-1,5249,4891,5608,-1,5249,4680,4891,-1,4278,3974,4680,-1,4278,3889,3974,-1,3693,3494,3406,-1,3693,3617,3494,-1,4437,5131,5643,-1,5131,4437,4266,-1,3122,2641,2397,-1,2641,3122,3207,-1,5265,4284,4138,-1,5265,5529,4284,-1,4137,3888,4521,-1,4137,3744,3888,-1,2937,2159,1906,-1,2159,2937,2983,-1,3922,3329,3077,-1,3922,3759,3329,-1,1413,2495,2547,-1,1413,1317,2495,-1,4250,2907,3036,-1,4250,4283,2907,-1,3691,3147,3087,-1,3691,3833,3147,-1,3933,4736,4814,-1,4736,3933,3791,-1,4736,5249,5475,-1,4736,4584,5249,-1,4683,5323,5202,-1,4683,4723,5323,-1,5256,4250,5077,-1,4283,4250,5256,-1,2159,2625,1704,-1,2625,2159,2812,-1,2907,2431,2111,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=17 */
		private int[] getmand_Geo_5_877_normalIndex_17()
		{
			int[] value = {2907,3077,2431,-1,5109,5241,5977,-1,5109,4521,5241,-1,5643,5690,6199,-1,5690,5643,5131,-1,2397,1496,2427,-1,1430,1496,2397,-1,5275,5977,6188,-1,5275,5109,5977,-1,2625,3952,2508,-1,3952,2625,3861,-1,6309,6188,5977,-1,6683,6188,6309,-1,6104,6528,6545,-1,6528,6104,6199,-1,1160,1430,1856,-1,1160,704,1430,-1,2508,4064,2468,-1,4064,2508,3952,-1,1160,2384,1127,-1,2384,1160,1912,-1,3853,3423,3582,-1,3423,3853,3396,-1,6842,6528,6653,-1,6842,6545,6528,-1,2468,4130,2569,-1,4130,2468,4064,-1,6842,6352,6275,-1,7157,6352,6842,-1,395,1398,503,-1,395,1427,1398,-1,3582,3353,3520,-1,3353,3582,3423,-1,2569,4242,2642,-1,4242,2569,4130,-1,83,1380,162,-1,83,1413,1380,-1,6758,5682,6977,-1,5682,6758,5619,-1,814,2098,644,-1,2098,814,2263,-1,2881,2316,2308,-1,2881,2858,2316,-1,1130,2636,1067,-1,2636,1130,2642,-1,3087,2547,2495,-1,3087,3147,2547,-1,4214,3502,4140,-1,3502,4214,3518,-1,6453,7365,7525,-1,6453,6451,7365,-1,1348,282,1446,-1,282,1348,211,-1,6748,7367,7407,-1,6748,6731,7367,-1,5813,6215,6211,-1,5813,5814,6215,-1,7976,6985,6987,-1,7976,7983,6985,-1,6234,6731,6748,-1,6234,6211,6731,-1,7518,6354,6388,-1,7550,6354,7518,-1,4330,2631,4333,-1,4330,2661,2631,-1,7999,7518,7256,-1,7999,7956,7518,-1,7847,6656,6990,-1,7847,7533,6656,-1,5742,6137,6200,-1,5742,5683,6137,-1,6216,6718,6736,-1,6216,6200,6718,-1,6985,5642,5648,-1,6985,6998,5642,-1,6215,6736,6737,-1,6215,6216,6736,-1,1536,744,1461,-1,1536,837,744,-1,580,1461,744,-1,1375,1461,580,-1,6354,4693,4330,-1,6354,6462,4693,-1,6140,6695,6700,-1,6140,6177,6695,-1,2825,3472,2640,-1,3472,2825,3670,-1,7868,7222,7231,-1,7868,7879,7222,-1,5820,6140,6131,-1,5820,5819,6140,-1,1772,2276,1728,-1,2276,1772,2353,-1,6080,6704,6730,-1,6080,6131,6704,-1,2353,3289,2276,-1,3289,2353,3426,-1,107,1108,123,-1,1108,107,1100,-1,2294,1982,2295,-1,1982,2294,1980,-1,2295,2003,2304,-1,2003,2295,1982,-1,2963,4409,3015,-1,4409,2963,4410,-1,1157,252,1184,-1,252,1157,123,-1,5163,4929,5744,-1,5163,4522,4929,-1,5007,6061,6084,-1,6061,5007,5030,-1,4668,5070,5505,-1,5070,4668,4439,-1,2586,3464,2490,-1,2586,3557,3464,-1,3200,2282,1883,-1,2282,3200,3345,-1,2036,2281,1646,-1,2036,2490,2281,-1,1883,1667,1257,-1,1667,1883,2282,-1,4126,5163,5576,-1,4126,3958,5163,-1,6540,6061,6487,-1,6540,6084,6061,-1,3611,2609,3042,-1,2609,3611,2835,-1,3042,2549,3049,-1,2549,3042,2609,-1,6413,6366,6640,-1,6366,6413,6242,-1,6240,6435,6531,-1,6240,6252,6435,-1,1230,1257,879,-1,1230,1344,1257,-1,1572,1278,1718,-1,1278,1572,1230,-1,5972,5017,5796,-1,5017,5972,4811,-1,6028,6531,6591,-1,6028,6240,6531,-1,1382,2130,1045,-1,2130,1382,2356,-1,531,1051,363,-1,1051,531,1045,-1,2312,2178,2343,-1,2178,2312,2075,-1,6334,7106,7057,-1,6341,7106,6334,-1,5988,6591,6585,-1,5988,6028,6591,-1,3248,4055,2876,-1,4055,3248,4113,-1,2842,2047,2876,-1,2842,2135,2047,-1,5440,4644,4367,-1,5440,5745,4644,-1,7603,7705,7933,-1,7603,7344,7705,-1,5037,5571,4946,-1,5571,5037,5538,-1,3846,4997,3670,-1,4997,3846,4946,-1,222,894,169,-1,894,222,1002,-1,7933,7641,7603,-1,7951,7641,7933,-1,5434,5001,5709,-1,5434,4822,5001,-1,3507,3337,2597,-1,3337,3507,3848,-1,1978,3012,1615,-1,1978,3201,3012,-1,4010,2857,3899,-1,2857,4010,3559,-1,6317,5192,6382,-1,6317,5195,5192,-1,6467,6317,6792,-1,6467,6101,6317,-1,4400,5038,5206,-1,4400,4356,5038,-1,1500,1549,795,-1,1549,1500,2009,-1,2467,1986,2296,-1,1986,2467,2204,-1,6133,5448,6569,-1,5448,6133,5321,-1,7032,6789,7319,-1,6789,7032,6569,-1,5740,6014,6150,-1,5740,5649,6014,-1,2207,3067,2002,-1,3067,2207,3178,-1,1745,1224,1194,-1,1745,1734,1224,-1,2082,1745,1773,-1,2082,2020,1745,-1,5515,3953,5433,-1,3953,5515,3840,-1,6553,6970,7077,-1,6553,6608,6970,-1,4396,5137,4461,-1,5137,4396,5267,-1,680,1370,637,-1,1370,680,1368,-1,637,1044,1247,-1,439,1044,637,-1,2780,2326,2745,-1,2326,2780,2385,-1,5194,5683,5742,-1,5194,5137,5683,-1,2053,2962,1868,-1,2962,2053,3026,-1,2326,1981,2292,-1,1981,2326,2037,-1,6998,5669,5642,-1,6998,6990,5669,-1,2962,4407,2950,-1,4407,2962,4389,-1,1136,107,1146,-1,107,1136,194,-1,2699,2294,2704,-1,2294,2699,2292,-1,7091,7624,7595,-1,7091,7028,7624,-1,370,612,504,-1,612,370,555,-1,7235,6472,6480,-1,7226,6472,7235,-1,7346,7711,7648,-1,7346,7226,7711,-1,3064,6027,3023,-1,6027,3064,6071,-1,8002,7761,7819,-1,8002,7981,7761,-1,3097,5002,4991,-1,3106,5002,3097,-1,3120,1156,3023,-1,3120,1212,1156,-1,7863,6861,6911,-1,7819,6861,7863,-1,964,52,960,-1,964,45,52,-1,3023,1110,3064,-1,1110,3023,1156,-1,1336,390,1363,-1,413,390,1336,-1,7204,7939,7967,-1,7204,7234,7939,-1,3710,2513,3684,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=18 */
		private int[] getmand_Geo_5_877_normalIndex_18()
		{
			int[] value = {3710,2484,2513,-1,91,11,99,-1,11,91,13,-1,7091,5703,5685,-1,7091,7078,5703,-1,827,114,824,-1,114,827,99,-1,7923,7801,7837,-1,7923,7967,7801,-1,3804,5467,5496,-1,3804,3710,5467,-1,6690,5758,6316,-1,6690,6481,5758,-1,4248,5768,3828,-1,5894,5768,4248,-1,7017,7259,7227,-1,7119,7259,7017,-1,6224,5587,5191,-1,6224,6362,5587,-1,6555,6771,6351,-1,6771,6555,7017,-1,4654,4030,2927,-1,4030,4654,5191,-1,7142,7649,7304,-1,7142,7154,7649,-1,6958,7184,6771,-1,7605,7184,6958,-1,2277,1075,1359,-1,1075,2277,2031,-1,2400,2855,2572,-1,2400,2943,2855,-1,7934,7704,7794,-1,7934,7823,7704,-1,7184,6571,6611,-1,7293,6571,7184,-1,1075,568,590,-1,568,1075,1095,-1,952,478,817,-1,478,952,590,-1,6377,7833,7794,-1,6546,7833,6377,-1,7736,7272,7293,-1,7693,7272,7736,-1,4215,2247,4524,-1,4215,2158,2247,-1,2074,1235,2158,-1,2074,1174,1235,-1,1584,791,1588,-1,791,1584,817,-1,4189,6546,4257,-1,4189,6225,6546,-1,7713,7767,7849,-1,7713,7693,7767,-1,4031,5956,5800,-1,4031,4215,5956,-1,2121,4031,4190,-1,2121,2074,4031,-1,6225,4394,6201,-1,4394,6225,4189,-1,7849,7620,7713,-1,7870,7620,7849,-1,7223,7620,7597,-1,7223,7250,7620,-1,2121,4085,2085,-1,4085,2121,4190,-1,7441,7960,7990,-1,7621,7960,7441,-1,7748,7732,7860,-1,7748,7597,7732,-1,5790,3902,4085,-1,5650,3902,5790,-1,364,453,213,-1,453,364,669,-1,5601,6480,6472,-1,5601,5650,6480,-1,453,1410,555,-1,1410,453,1377,-1,7735,6238,7090,-1,7735,6324,6238,-1,5182,3446,4630,-1,3446,5182,4615,-1,2443,3883,4080,-1,2443,2164,3883,-1,4015,4080,3883,-1,4252,4080,4015,-1,4252,4163,4080,-1,4252,4889,4163,-1,4615,4889,4252,-1,4615,5573,4889,-1,5182,5573,4615,-1,5182,6005,5573,-1,5564,6005,5182,-1,5564,6229,6005,-1,6045,6229,5564,-1,6238,6229,6045,-1,6324,6229,6238,-1,6324,6389,6229,-1,6944,5495,5651,-1,6944,6632,5495,-1,7984,7785,7859,-1,7979,7785,7984,-1,6454,5281,5173,-1,6454,6414,5281,-1,6454,7194,7312,-1,6454,6374,7194,-1,1848,748,1096,-1,748,1848,1367,-1,2117,3149,1804,-1,3149,2117,3307,-1,243,391,467,-1,391,243,269,-1,5779,3428,5829,-1,3428,5779,3542,-1,5881,3428,3092,-1,5881,5829,3428,-1,6127,7123,7115,-1,6127,6173,7123,-1,7952,7161,7179,-1,7952,7902,7161,-1,7892,6911,7006,-1,7892,7863,6911,-1,3126,4895,5006,-1,3126,3170,4895,-1,7892,7994,8003,-1,7892,7889,7994,-1,129,1019,57,-1,129,965,1019,-1,528,1574,573,-1,528,1492,1574,-1,1886,945,1777,-1,1886,965,945,-1,960,53,961,-1,53,960,52,-1,191,53,195,-1,53,191,57,-1,1514,2164,2443,-1,1514,1320,2164,-1,2843,4630,3446,-1,2843,3882,4630,-1,7947,7090,7606,-1,7947,7735,7090,-1,5141,6241,6374,-1,5141,5402,6241,-1,3339,5281,5125,-1,3339,3468,5281,-1,467,748,766,-1,467,391,748,-1,5655,3542,5779,-1,3542,5655,3659,-1,7984,7864,7917,-1,7966,7864,7984,-1,5002,6033,6021,-1,5002,5003,6033,-1,823,420,185,-1,823,906,420,-1,621,319,267,-1,621,611,319,-1,4451,2244,2138,-1,2244,4451,4620,-1,1083,122,900,-1,122,1083,201,-1,6443,7100,6449,-1,6443,6924,7100,-1,6286,6072,6810,-1,6072,6286,5748,-1,3358,4663,5181,-1,4663,3358,2920,-1,392,909,734,-1,392,348,909,-1,911,448,565,-1,912,448,911,-1,476,1916,756,-1,476,2157,1916,-1,5893,4620,5837,-1,5893,4710,4620,-1,300,734,909,-1,734,300,185,-1,1385,756,1916,-1,756,1385,253,-1,5602,2525,2507,-1,5705,2525,5602,-1,7275,7639,7592,-1,7275,7165,7639,-1,7577,7071,7078,-1,7664,7071,7577,-1,6407,7350,7234,-1,6407,6431,7350,-1,7639,7825,7784,-1,7639,7664,7825,-1,5490,6490,6431,-1,5555,6490,5490,-1,7914,7715,7784,-1,7900,7715,7914,-1,3741,5533,5555,-1,3686,5533,3741,-1,374,126,326,-1,126,374,131,-1,697,94,509,-1,94,697,205,-1,360,1289,326,-1,1289,360,1233,-1,396,152,383,-1,152,396,147,-1,624,97,657,-1,97,624,89,-1,1341,374,1331,-1,1341,383,374,-1,2398,422,2510,-1,2398,212,422,-1,6924,7457,7100,-1,6924,7345,7457,-1,5326,6286,6360,-1,5181,6286,5326,-1,392,900,122,-1,392,1053,900,-1,116,445,231,-1,445,116,201,-1,564,2510,422,-1,564,2461,2510,-1,7345,7663,7457,-1,7594,7663,7345,-1,5551,6360,6597,-1,5551,5326,6360,-1,3797,5551,5477,-1,3797,3545,5551,-1,360,231,445,-1,360,188,231,-1,2485,564,697,-1,2485,2461,564,-1,7594,7698,7663,-1,7610,7698,7594,-1,5477,6597,6605,-1,5477,5551,6597,-1,3797,5533,3686,-1,5533,3797,5477,-1,5840,7275,7406,-1,5799,7275,5840,-1,4004,5286,5371,-1,4005,5286,4004,-1,2541,2168,2608,-1,2541,2576,2168,-1,3506,3377,3625,-1,3506,3511,3377,-1,1154,1834,1749,-1,1154,1271,1834,-1,1516,2065,1885,-1,1516,1737,2065,-1,2498,3641,2852,-1,3641,2498,3479,-1,1032,917,902,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=19 */
		private int[] getmand_Geo_5_877_normalIndex_19()
		{
			int[] value = {1032,813,917,-1,570,694,794,-1,570,29,694,-1,695,516,587,-1,695,729,516,-1,7737,7898,7694,-1,7379,7898,7737,-1,7135,7438,7066,-1,7135,7146,7438,-1,7309,7502,7351,-1,7309,7507,7502,-1,731,1113,1628,-1,731,521,1113,-1,883,49,170,-1,513,49,883,-1,1917,1089,1305,-1,1089,1917,1664,-1,695,18,316,-1,403,18,695,-1,1032,1128,831,-1,1032,1079,1128,-1,31,58,9,-1,18,58,31,-1,277,275,260,-1,277,203,275,-1,4858,3812,4135,-1,5064,3812,4858,-1,4708,4529,4200,-1,4708,4818,4529,-1,707,43,82,-1,43,707,775,-1,233,70,148,-1,233,41,70,-1,1692,1507,1544,-1,1421,1507,1692,-1,908,598,875,-1,797,598,908,-1,6663,4492,6563,-1,4492,6663,3929,-1,1062,682,760,-1,682,1062,1248,-1,330,1404,1106,-1,330,140,1404,-1,449,946,375,-1,946,449,914,-1,974,1540,1727,-1,974,826,1540,-1,878,408,944,-1,408,878,423,-1,2682,5375,5010,-1,2682,2803,5375,-1,2883,3391,2831,-1,3391,2883,3046,-1,7786,7673,7790,-1,7786,7878,7673,-1,7002,6825,7037,-1,7002,7021,6825,-1,7144,7021,7002,-1,7144,7532,7021,-1,7549,7422,7474,-1,7356,7422,7549,-1,7210,7375,7313,-1,7501,7375,7210,-1,7182,7413,7136,-1,7182,7334,7413,-1,7925,7465,7509,-1,7652,7465,7925,-1,7669,7871,7622,-1,7888,7871,7669,-1,7452,7188,7682,-1,7452,6795,7188,-1,7672,7543,7630,-1,7672,7671,7543,-1,6798,6795,7452,-1,6798,6697,6795,-1,7285,7508,7341,-1,7462,7508,7285,-1,1859,3907,4763,-1,3907,1859,2368,-1,834,1306,1610,-1,1306,834,1039,-1,3377,3101,3535,-1,3063,3101,3377,-1,3409,3735,3754,-1,3409,3761,3735,-1,2959,2259,2576,-1,2259,2959,2602,-1,4676,4008,4009,-1,4938,4008,4676,-1,2293,5143,2967,-1,2293,3451,5143,-1,4127,4676,4208,-1,4676,4127,5391,-1,4132,3354,3210,-1,4132,3669,3354,-1,5005,3669,4132,-1,6380,6655,5421,-1,6655,6380,6260,-1,6440,7495,6465,-1,6440,6655,7495,-1,3214,3997,3271,-1,3214,3994,3997,-1,4514,5019,5372,-1,4178,5019,4514,-1,255,298,200,-1,255,254,298,-1,1898,1750,1636,-1,1898,1829,1750,-1,2146,1705,1673,-1,2146,2035,1705,-1,1972,1682,1802,-1,1899,1682,1972,-1,5333,5132,5349,-1,5132,5333,5120,-1,5349,5411,5333,-1,5411,5349,5180,-1,6511,5812,5930,-1,6551,5812,6511,-1,6512,6076,5913,-1,6486,6076,6512,-1,5381,4899,5011,-1,5381,5174,4899,-1,5107,5486,5296,-1,5486,5107,5406,-1,3986,4930,4733,-1,4930,3986,3988,-1,5126,4852,4742,-1,5126,5457,4852,-1,3942,5899,6097,-1,3942,4226,5899,-1,779,672,930,-1,779,818,672,-1,4294,5293,5262,-1,4369,5293,4294,-1,5719,5134,5951,-1,5134,5719,4963,-1,4941,5950,5035,-1,5653,5950,4941,-1,4213,2772,4097,-1,3127,2772,4213,-1,3894,3712,5035,-1,3894,2487,3712,-1,2551,4470,5009,-1,4470,2551,3618,-1,5356,6504,5420,-1,6103,6504,5356,-1,2856,1993,2960,-1,2242,1993,2856,-1,2123,1673,1606,-1,1673,2123,2146,-1,2772,1655,2922,-1,1655,2772,1747,-1,3590,2198,3127,-1,2659,2198,3590,-1,4213,5707,4227,-1,4213,5420,5707,-1,5248,5828,5749,-1,5248,5301,5828,-1,7050,8001,7175,-1,7050,7407,8001,-1,1947,957,504,-1,957,1947,1655,-1,5324,3942,6097,-1,3771,3942,5324,-1,2915,2602,3101,-1,2915,2503,2602,-1,1685,1681,1552,-1,1681,1685,1675,-1,6053,6357,6083,-1,6358,6357,6053,-1,3394,4132,3267,-1,3394,4412,4132,-1,1552,1590,1466,-1,1590,1552,1681,-1,3267,2387,3394,-1,2387,3267,1908,-1,5445,6294,6956,-1,5009,6294,5445,-1,7932,6477,7836,-1,7932,6708,6477,-1,1945,3618,2551,-1,3015,3618,1945,-1,1725,2242,2003,-1,1725,1993,2242,-1,1184,1989,2145,-1,252,1989,1184,-1,1171,896,1226,-1,818,896,1171,-1,2180,1756,1677,-1,2177,1756,2180,-1,4508,6018,3926,-1,4508,6256,6018,-1,5913,6417,6512,-1,6417,5913,5873,-1,1682,1188,1636,-1,1188,1682,1414,-1,2608,3556,2541,-1,3926,3556,2608,-1,5984,4611,5589,-1,4611,5984,4864,-1,1521,4226,3942,-1,4226,1521,2081,-1,5378,6107,5981,-1,6107,5378,6398,-1,1107,2936,2670,-1,2936,1107,1213,-1,5481,7261,5554,-1,5481,7080,7261,-1,2808,4793,4532,-1,3197,4793,2808,-1,5411,5540,5205,-1,5411,5595,5540,-1,948,2300,2049,-1,948,1022,2300,-1,5393,7054,5417,-1,5393,6976,7054,-1,4000,2632,3884,-1,4000,3799,2632,-1,5120,5254,4857,-1,4596,5254,5120,-1,4319,4779,4296,-1,5522,4779,4319,-1,3571,5522,4319,-1,3571,5554,5522,-1,2227,5378,3483,-1,5378,2227,3825,-1,7346,6719,6599,-1,7024,6719,7346,-1,4226,5698,5899,-1,5698,4226,5285,-1,3064,1211,3143,-1,1110,1211,3064,-1,7766,7981,7982,-1,7981,7766,7761,-1,3038,4991,4978,-1,4991,3038,3097,-1,979,2028,1285,-1,979,2015,2028,-1,497,1110,475,-1,1110,497,1211,-1,2707,5562,2706,-1,2707,4773,5562,-1,5260,6391,5677,-1,5496,6391,5260,-1,142,428,157,-1,142,413,428,-1,3310,3334,2516,-1,3334,3310,3664,-1,2254,1482,2522,-1,1482,2254,1473,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=20 */
		private int[] getmand_Geo_5_877_normalIndex_20()
		{
			int[] value = {7028,5562,6791,-1,7028,5614,5562,-1,4061,3310,4635,-1,4061,3664,3310,-1,5481,3867,5436,-1,5481,3431,3867,-1,3185,3101,3063,-1,3185,2915,3101,-1,4734,5200,5531,-1,5200,4734,5056,-1,3851,3993,3258,-1,3993,3851,3989,-1,5107,4563,5166,-1,5107,4742,4563,-1,5314,5599,6115,-1,5599,5314,5372,-1,3271,3409,3754,-1,3997,3409,3271,-1,3997,4001,3409,-1,4099,3531,3583,-1,4099,3625,3531,-1,3437,4006,2821,-1,3437,4002,4006,-1,6297,6310,6326,-1,6331,6310,6297,-1,4910,5268,5918,-1,3898,5268,4910,-1,3898,5686,5754,-1,5686,3898,3117,-1,6984,6465,7215,-1,6984,6440,6465,-1,1055,1101,676,-1,1351,1101,1055,-1,4473,1969,3702,-1,4473,2188,1969,-1,1733,2306,2248,-1,2306,1733,1749,-1,1502,1879,1969,-1,1502,1397,1879,-1,858,1167,1423,-1,858,796,1167,-1,6410,6184,6518,-1,6410,6256,6184,-1,1587,1750,1829,-1,1750,1587,1677,-1,4060,5841,5118,-1,4586,5841,4060,-1,6573,6174,6688,-1,6174,6573,5557,-1,6630,6527,6532,-1,6630,6814,6527,-1,7148,7030,7083,-1,7030,7148,7228,-1,5965,6566,5572,-1,6666,6566,5965,-1,801,1035,938,-1,1035,801,967,-1,7088,6710,6828,-1,7088,7065,6710,-1,6773,6273,6499,-1,6273,6773,6478,-1,6732,6590,6698,-1,6590,6732,6651,-1,3311,2975,3419,-1,3311,3388,2975,-1,111,991,884,-1,111,559,991,-1,435,1351,468,-1,1101,1351,435,-1,2441,1924,1885,-1,2441,2413,1924,-1,2013,4036,4393,-1,2013,2070,4036,-1,3504,4116,3916,-1,3435,4116,3504,-1,5294,4434,4888,-1,5294,4106,4434,-1,4455,3340,2954,-1,4455,4017,3340,-1,1921,3504,2713,-1,1921,3435,3504,-1,3469,3075,3375,-1,3162,3075,3469,-1,2143,592,616,-1,2143,2106,592,-1,1881,1424,1349,-1,1958,1424,1881,-1,635,999,910,-1,722,999,635,-1,3567,2918,3068,-1,3462,2918,3567,-1,1642,5228,5154,-1,1642,1954,5228,-1,3575,3360,3950,-1,3238,3360,3575,-1,1697,5354,5292,-1,1697,1849,5354,-1,2290,3360,2990,-1,2290,3156,3360,-1,4441,3930,3627,-1,4202,3930,4441,-1,1719,3327,2340,-1,3327,1719,4023,-1,3060,2340,3327,-1,2392,2340,3060,-1,3311,3648,3056,-1,3784,3648,3311,-1,2258,942,1728,-1,2258,1676,942,-1,2340,2252,1833,-1,2340,2392,2252,-1,6710,6639,6264,-1,6710,7065,6639,-1,6814,6707,6527,-1,6916,6707,6814,-1,6636,6930,6801,-1,6930,6636,6959,-1,6801,6916,6814,-1,6930,6916,6801,-1,1898,1423,2072,-1,1325,1423,1898,-1,75,635,460,-1,357,635,75,-1,3485,4259,3737,-1,3885,4259,3485,-1,3955,3737,3749,-1,3955,3567,3737,-1,1478,967,801,-1,1478,1830,967,-1,2459,3901,3909,-1,2379,3901,2459,-1,2345,762,838,-1,2345,2048,762,-1,830,284,1408,-1,284,830,150,-1,6178,7109,7149,-1,7109,6178,6094,-1,4554,4999,4970,-1,4999,4554,4580,-1,515,487,711,-1,515,290,487,-1,3094,2618,2583,-1,2618,3094,3133,-1,5290,4415,5303,-1,4402,4415,5290,-1,954,290,515,-1,954,819,290,-1,4415,3581,4017,-1,3731,3581,4415,-1,2695,1665,1753,-1,2583,1665,2695,-1,7270,7338,6159,-1,7270,7126,7338,-1,7500,5591,7149,-1,7500,5890,5591,-1,4751,4972,4888,-1,4972,4751,4970,-1,515,1223,954,-1,1223,515,1020,-1,3690,3462,3858,-1,3690,3429,3462,-1,1642,20,623,-1,1642,1411,20,-1,2921,2110,2918,-1,2105,2110,2921,-1,6102,5610,7217,-1,6102,5322,5610,-1,5569,6802,5865,-1,6802,5569,5738,-1,3371,3155,2990,-1,3155,3371,3491,-1,3913,5632,4134,-1,3913,4925,5632,-1,6499,6968,6773,-1,6968,6499,6455,-1,7306,6523,6897,-1,7306,6945,6523,-1,1351,2069,2521,-1,1351,1055,2069,-1,1324,1937,1853,-1,1324,1349,1937,-1,2657,2818,2373,-1,2657,3301,2818,-1,687,820,752,-1,687,460,820,-1,1084,1068,1426,-1,1039,1068,1084,-1,6448,7290,6320,-1,6448,7300,7290,-1,7396,7152,7300,-1,7396,7218,7152,-1,2762,2726,2980,-1,2726,2762,2034,-1,2070,3705,4036,-1,1838,3705,2070,-1,7285,6934,7233,-1,6688,6934,7285,-1,7349,7418,7499,-1,7349,7258,7418,-1,6617,5218,6573,-1,4732,5218,6617,-1,6567,6629,6501,-1,6567,6636,6629,-1,7341,6688,7285,-1,7341,6573,6688,-1,1821,1349,1324,-1,1349,1821,1881,-1,6698,6870,6732,-1,6870,6698,6780,-1,2258,2276,2767,-1,2258,1728,2276,-1,6446,6537,6387,-1,6537,6446,6532,-1,7305,7652,7423,-1,7305,7465,7652,-1,3079,2621,3216,-1,2621,3079,2691,-1,7325,7348,7442,-1,7395,7348,7325,-1,7326,7400,7197,-1,7502,7400,7326,-1,7502,7683,7400,-1,5221,3852,3679,-1,5221,5165,3852,-1,329,546,239,-1,546,329,872,-1,7497,4375,4229,-1,4375,7497,7588,-1,7989,7467,7153,-1,7989,7666,7467,-1,3694,6607,6444,-1,3694,3903,6607,-1,1120,3123,892,-1,3382,3123,1120,-1,3062,885,3243,-1,3062,610,885,-1,404,2756,317,-1,2827,2756,404,-1,923,2728,2932,-1,2728,923,421,-1,6194,4272,3514,-1,4272,6194,6604,-1,7118,4666,4786,-1,7118,7153,4666,-1,408,220,442,-1,408,286,220,-1,1328,4375,1418,-1,1328,4229,4375,-1,610,66,885,-1,610,85,66,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=21 */
		private int[] getmand_Geo_5_877_normalIndex_21()
		{
			int[] value = {1696,1215,2059,-1,1215,1696,1198,-1,347,578,1260,-1,347,654,578,-1,526,423,511,-1,526,286,423,-1,1264,944,1205,-1,1264,878,944,-1,436,104,95,-1,436,804,104,-1,288,682,625,-1,288,95,682,-1,450,892,100,-1,450,1120,892,-1,60,233,329,-1,60,372,233,-1,1639,1182,1604,-1,1421,1182,1639,-1,7153,7971,7989,-1,7153,7118,7971,-1,7839,7269,7584,-1,7839,7416,7269,-1,4960,2407,2196,-1,2407,4960,4206,-1,3592,7253,6936,-1,7253,3592,3895,-1,1277,4149,1343,-1,3869,4149,1277,-1,4340,7588,7539,-1,4340,4375,7588,-1,1507,880,888,-1,1507,950,880,-1,2217,2196,2407,-1,2217,1948,2196,-1,6618,6848,6401,-1,6618,6993,6848,-1,2375,2175,2291,-1,2175,2375,1952,-1,2933,3505,3607,-1,3505,2933,2173,-1,3279,2965,2884,-1,3034,2965,3279,-1,6114,5810,6205,-1,6114,5859,5810,-1,6765,6692,7303,-1,6692,6765,6179,-1,1794,2675,2875,-1,2675,1794,1624,-1,1695,681,1669,-1,1695,34,681,-1,4750,4490,4942,-1,4490,4750,4403,-1,5284,4706,4591,-1,4706,5284,5575,-1,5736,6016,6010,-1,5736,5221,6016,-1,5221,5736,5165,-1,6395,6854,6498,-1,6871,6854,6395,-1,7303,6857,6765,-1,7303,7174,6857,-1,1973,3397,1669,-1,1973,3008,3397,-1,2925,3422,2782,-1,2925,3045,3422,-1,6114,6395,6210,-1,6114,6405,6395,-1,5079,3580,3320,-1,5079,5186,3580,-1,7564,7389,7553,-1,7510,7389,7564,-1,5856,7426,7144,-1,5947,7426,5856,-1,6602,7416,7318,-1,6602,6663,7416,-1,7798,7587,7758,-1,7798,7619,7587,-1,7580,7798,7724,-1,7798,7580,7667,-1,7724,7758,7694,-1,7724,7798,7758,-1,7883,7871,7813,-1,7883,7834,7871,-1,7313,7403,7210,-1,7313,7628,7403,-1,6160,7521,7476,-1,6160,6267,7521,-1,7411,7482,7369,-1,7411,7443,7482,-1,7434,7687,7613,-1,7434,7431,7687,-1,7196,7342,7188,-1,7196,7389,7342,-1,7568,7253,7672,-1,7568,6936,7253,-1,5400,5140,6179,-1,5140,5400,4687,-1,6420,6016,6327,-1,6420,6010,6016,-1,6765,6338,6042,-1,6338,6765,6857,-1,6042,5575,5284,-1,5575,6042,6338,-1,2782,3279,2267,-1,2782,3422,3279,-1,3046,2652,2849,-1,2883,2652,3046,-1,1973,2630,3008,-1,1973,1736,2630,-1,4875,3372,3444,-1,3372,4875,5032,-1,1387,432,1483,-1,1387,437,432,-1,72,366,124,-1,72,249,366,-1,1243,578,1481,-1,632,578,1243,-1,337,654,347,-1,654,337,652,-1,971,1248,1062,-1,829,1248,971,-1,739,608,717,-1,739,829,608,-1,379,652,337,-1,652,379,797,-1,330,186,260,-1,186,330,125,-1,550,198,301,-1,550,325,198,-1,3022,3255,3009,-1,3022,3218,3255,-1,1244,198,1066,-1,305,198,1244,-1,3826,3255,3732,-1,3304,3255,3826,-1,5933,5570,5622,-1,5933,5806,5570,-1,2759,1869,2029,-1,2759,2696,1869,-1,7770,7020,6973,-1,7020,7770,7725,-1,5807,5933,5910,-1,5807,5838,5933,-1,6277,7020,7064,-1,6277,6207,7020,-1,6164,5756,6169,-1,6164,5807,5756,-1,4800,3738,3703,-1,4800,4881,3738,-1,3696,2033,2330,-1,3696,3443,2033,-1,1323,1663,1074,-1,1323,1816,1663,-1,2033,1124,851,-1,2033,2107,1124,-1,2709,3228,2622,-1,2709,3252,3228,-1,851,455,732,-1,851,751,455,-1,3228,3293,3098,-1,3228,3395,3293,-1,3218,3760,3677,-1,3218,3293,3760,-1,1298,2469,1187,-1,1298,2524,2469,-1,5377,5741,5663,-1,5741,5377,5559,-1,6917,6301,6989,-1,6917,6244,6301,-1,5049,5559,5095,-1,5570,5559,5049,-1,6301,5838,6231,-1,6301,5868,5838,-1,4550,6426,6577,-1,6426,4550,4570,-1,1631,3675,3635,-1,1631,1717,3675,-1,5311,4716,5233,-1,5311,4776,4716,-1,3689,4921,4570,-1,4921,3689,3767,-1,2515,1622,2334,-1,1622,2515,1647,-1,3204,3829,3323,-1,3204,3979,3829,-1,2509,1535,1757,-1,2181,1535,2509,-1,2359,3119,2477,-1,2359,3044,3119,-1,6515,5480,6364,-1,6515,5624,5480,-1,3387,3829,3772,-1,3323,3829,3387,-1,634,1631,776,-1,1631,634,1717,-1,2515,2947,2692,-1,2515,2804,2947,-1,4866,4557,4572,-1,4905,4557,4866,-1,2718,1757,2018,-1,2509,1757,2718,-1,2477,3229,2466,-1,2477,3119,3229,-1,6364,5384,6266,-1,6364,5480,5384,-1,3421,3772,3908,-1,3387,3772,3421,-1,7301,6887,7010,-1,7301,7294,6887,-1,651,1717,634,-1,1717,651,1668,-1,4790,4397,4479,-1,4790,4795,4397,-1,1920,720,1818,-1,720,1920,916,-1,4154,3640,3817,-1,4154,4029,3640,-1,3140,3537,3128,-1,3537,3140,3517,-1,6723,7530,7453,-1,6723,6738,7530,-1,4487,4253,4083,-1,4487,4537,4253,-1,3363,2430,1197,-1,2430,3363,3589,-1,6493,5616,6768,-1,5616,6493,5509,-1,4967,4448,4738,-1,4967,4761,4448,-1,4990,4547,4541,-1,5033,4547,4990,-1,3400,3817,3640,-1,3400,3834,3817,-1,6833,7869,7812,-1,6833,6751,7869,-1,4397,4123,4115,-1,4541,4123,4397,-1,597,943,1098,-1,943,597,916,-1,4746,3834,4998,-1,3817,3834,4746,-1,4199,4573,4479,-1,4199,4307,4573,-1,6728,7614,7579,-1,6728,6862,7614,-1,785,1818,720,-1,1818,785,1903,-1,1137,2275,1207,-1,1137,2219,2275,-1,5116,6212,6130,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=22 */
		private int[] getmand_Geo_5_877_normalIndex_22()
		{
			int[] value = {5201,6212,5116,-1,4363,2783,3730,-1,4363,3030,2783,-1,5171,5795,6942,-1,5795,5171,4458,-1,3312,4263,3730,-1,3780,4263,3312,-1,4496,3863,3860,-1,4497,3863,4496,-1,5425,6937,6991,-1,5369,6937,5425,-1,6560,7762,7723,-1,6560,6673,7762,-1,5115,4510,4841,-1,5115,4653,4510,-1,1104,2286,959,-1,2286,1104,2371,-1,6991,5383,5425,-1,6991,7016,5383,-1,7408,7857,7861,-1,6942,7857,7408,-1,3276,3656,3661,-1,3656,3276,3239,-1,4853,4447,6123,-1,4184,4447,4853,-1,5215,6735,5081,-1,5215,6815,6735,-1,7101,5878,5926,-1,7101,6659,5878,-1,3476,3148,2779,-1,3476,3601,3148,-1,3349,2574,2535,-1,3349,3401,2574,-1,2550,2562,2140,-1,2599,2562,2550,-1,3962,5232,5789,-1,3962,3665,5232,-1,4112,2802,3801,-1,2802,4112,3105,-1,1679,2127,1310,-1,2099,2127,1679,-1,3159,1400,1556,-1,1400,3159,2629,-1,4313,2629,3159,-1,2629,4313,4107,-1,5926,4832,4892,-1,5926,5878,4832,-1,2725,3707,2781,-1,2725,3613,3707,-1,3768,5147,5415,-1,5147,3768,3707,-1,5789,5786,6484,-1,5789,5232,5786,-1,3240,4216,3937,-1,3240,3211,4216,-1,1592,1824,1474,-1,1998,1824,1592,-1,2214,2574,2779,-1,2574,2214,1782,-1,3276,3461,2971,-1,3276,3631,3461,-1,6815,7662,6735,-1,6815,7654,7662,-1,1364,1644,1782,-1,1644,1364,1195,-1,2917,2732,2698,-1,2917,2971,2732,-1,4915,6308,5000,-1,4915,6397,6308,-1,1195,1867,1644,-1,1867,1195,1400,-1,5197,4762,4788,-1,5159,4762,5197,-1,1956,1806,1394,-1,2325,1806,1956,-1,2099,2781,2127,-1,2099,2725,2781,-1,6557,7014,7140,-1,6557,6468,7014,-1,4877,4188,4228,-1,4788,4188,4877,-1,1394,877,1165,-1,1394,1114,877,-1,4830,4107,4313,-1,4892,4107,4830,-1,1759,2334,1622,-1,1759,2418,2334,-1,3286,3979,3204,-1,3286,3844,3979,-1,7177,7757,7623,-1,6995,7757,7177,-1,6515,7014,6468,-1,7014,6515,7220,-1,4571,4228,4077,-1,4877,4228,4571,-1,6376,7177,7102,-1,6416,7177,6376,-1,4797,4313,4539,-1,4830,4313,4797,-1,7010,7368,7301,-1,7102,7368,7010,-1,6059,5675,5340,-1,6696,5675,6059,-1,6678,5821,5769,-1,6678,6652,5821,-1,5510,4691,4847,-1,5510,5613,4691,-1,5979,4698,4689,-1,5979,5957,4698,-1,3274,3891,3981,-1,2879,3891,3274,-1,2839,2470,2916,-1,2205,2470,2839,-1,3179,2452,2891,-1,2452,3179,2564,-1,3834,4760,4998,-1,4760,3834,3836,-1,3706,4560,3682,-1,4743,4560,3706,-1,3274,3441,2958,-1,3274,3616,3441,-1,2839,3277,2771,-1,2839,3330,3277,-1,5340,5392,6059,-1,5340,5090,5392,-1,5821,5072,5769,-1,5821,5219,5072,-1,5617,4927,5509,-1,5617,4912,4927,-1,4221,3357,3111,-1,3357,4221,4225,-1,4657,3924,3734,-1,3924,4657,4796,-1,4701,4280,3695,-1,4601,4280,4701,-1,5370,5508,4718,-1,5370,6475,5508,-1,3841,3290,3389,-1,3841,3809,3290,-1,5450,5031,5102,-1,5367,5031,5450,-1,2826,2775,2500,-1,2995,2775,2826,-1,2784,2978,2613,-1,2784,3020,2978,-1,5238,6510,7013,-1,4838,6510,5238,-1,2451,2594,2335,-1,2451,2685,2594,-1,6929,6296,6268,-1,7003,6296,6929,-1,4501,3658,3588,-1,4561,3658,4501,-1,6996,7697,7768,-1,7013,7697,6996,-1,2902,2613,2978,-1,2613,2902,2344,-1,3130,3948,3213,-1,3130,3610,3948,-1,2531,2426,2004,-1,2724,2426,2531,-1,5869,7563,7677,-1,5613,7563,5869,-1,5348,4977,4885,-1,5410,4977,5348,-1,4311,5506,5606,-1,3948,5506,4311,-1,5219,4472,4440,-1,5263,4472,5219,-1,2344,2750,2094,-1,2344,2902,2750,-1,5270,4885,4772,-1,5348,4885,5270,-1,2245,2004,1612,-1,2531,2004,2245,-1,7653,5869,7677,-1,5869,7653,5883,-1,2750,3347,2687,-1,2750,3420,3347,-1,7685,6882,7051,-1,7685,7585,6882,-1,2040,1405,1658,-1,2040,1702,1405,-1,7067,6220,6110,-1,7000,6220,7067,-1,4331,3313,3302,-1,4335,3313,4331,-1,1498,2077,1383,-1,1498,2205,2077,-1,1405,1633,1232,-1,1405,1900,1633,-1,3578,3612,3574,-1,3578,3410,3612,-1,4957,4225,4221,-1,5072,4225,4957,-1,5957,7729,7791,-1,5979,7729,5957,-1,5124,4597,4588,-1,5167,4597,5124,-1,1543,2226,2215,-1,1543,1444,2226,-1,3221,1523,1582,-1,3111,1523,3221,-1,2616,3309,2395,-1,2616,3407,3309,-1,4940,6001,6029,-1,4846,6001,4940,-1,2150,1444,1301,-1,2226,1444,2150,-1,6872,6060,5997,-1,6923,6060,6872,-1,4218,3269,3196,-1,4297,3269,4218,-1,6549,7689,7787,-1,6549,6497,7689,-1,1034,1524,921,-1,1034,1550,1524,-1,3622,3927,3873,-1,3628,3927,3622,-1,1376,2564,1098,-1,1376,2452,2564,-1,3167,3622,3528,-1,3206,3622,3167,-1,6239,6675,6741,-1,6145,6675,6239,-1,1458,2999,3361,-1,1458,1438,2999,-1,1234,411,1315,-1,411,1234,287,-1,3517,3745,3783,-1,3528,3745,3517,-1,3970,3315,3154,-1,4022,3315,3970,-1,5898,6106,5530,-1,5898,6672,6106,-1,2752,3089,2320,-1,3089,2752,3241,-1,2595,1743,2479,-1,1659,1743,2595,-1,5004,4810,4808,-1,5004,5208,4810,-1,2406,3646,2645,-1,3564,3646,2406,-1,4934,5334,5577,-1,4934,4769,5334,-1,4103,4388,3721,-1,4103,4411,4388,-1,4880,5577,5609,-1,4880,4934,5577,-1,3716,2765,2483,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=23 */
		private int[] getmand_Geo_5_877_normalIndex_23()
		{
			int[] value = {3716,3795,2765,-1,4327,4281,4014,-1,4327,4406,4281,-1,5209,6099,5071,-1,5209,6300,6099,-1,5746,4692,4669,-1,4692,5746,5906,-1,4952,3718,5096,-1,4952,4075,3718,-1,4851,4089,4175,-1,4851,4833,4089,-1,3187,3957,3158,-1,4109,3957,3187,-1,3315,3416,2757,-1,3315,3721,3416,-1,2595,3275,2684,-1,2595,3158,3275,-1,3941,2908,3236,-1,2908,3941,3750,-1,4143,5193,5379,-1,4281,5193,4143,-1,3487,3510,2894,-1,3487,3865,3510,-1,4289,4808,4810,-1,4808,4289,4388,-1,5094,4659,5335,-1,5094,4595,4659,-1,3551,4143,4045,-1,3698,4143,3551,-1,5898,4966,5757,-1,5898,5096,4966,-1,6526,6065,6890,-1,6526,6091,6065,-1,3260,4186,3976,-1,3260,3415,4186,-1,1846,1845,1463,-1,1846,2390,1845,-1,3484,4045,3936,-1,3551,4045,3484,-1,7336,7506,7750,-1,7195,7506,7336,-1,7358,6902,6844,-1,7358,7473,6902,-1,1463,1743,1172,-1,1463,1845,1743,-1,5435,6769,6874,-1,5544,6769,5435,-1,3957,4719,4669,-1,4719,3957,4109,-1,6613,5689,6576,-1,6613,5645,5689,-1,4474,3742,3831,-1,4435,3742,4474,-1,5364,6874,6877,-1,5435,6874,5364,-1,5574,4851,5460,-1,5574,4833,4851,-1,642,1246,849,-1,1246,642,1025,-1,7612,7363,7190,-1,7612,7793,7363,-1,5146,4641,5123,-1,5146,4643,4641,-1,6937,7461,7526,-1,6877,7461,6937,-1,5639,5123,5121,-1,5699,5123,5639,-1,2324,3863,3789,-1,2324,2372,3863,-1,3780,4692,4458,-1,4692,3780,3807,-1,5699,6560,6658,-1,5699,5639,6560,-1,23,640,30,-1,23,631,640,-1,2191,2715,2192,-1,2191,2717,2715,-1,2337,1015,1010,-1,2337,2357,1015,-1,1799,2172,1775,-1,1799,2192,2172,-1,7372,6635,6637,-1,7372,7420,6635,-1,3673,1672,3638,-1,3673,1656,1672,-1,6195,5374,5488,-1,6195,6050,5374,-1,1456,1809,1283,-1,1456,1866,1809,-1,547,1267,617,-1,547,1283,1267,-1,2190,2717,2191,-1,2190,2730,2717,-1,617,1266,631,-1,617,1267,1266,-1,3819,5272,5329,-1,5272,3819,3663,-1,1527,461,1656,-1,1527,401,461,-1,3350,5353,5243,-1,5353,3350,3673,-1,369,1302,314,-1,369,1308,1302,-1,2981,4332,4531,-1,3006,4332,2981,-1,1869,778,2029,-1,1869,790,778,-1,1302,1874,1299,-1,1302,1863,1874,-1,5395,4574,4531,-1,5395,5664,4574,-1,74,770,134,-1,770,74,844,-1,1874,2284,1932,-1,1874,2185,2284,-1,3595,5057,5045,-1,3598,5057,3595,-1,7884,6858,6851,-1,7904,6858,7884,-1,5711,5305,5307,-1,5712,5305,5711,-1,5702,5307,5274,-1,5711,5307,5702,-1,4988,6157,6067,-1,5045,6157,4988,-1,6830,6280,6279,-1,6851,6280,6830,-1,2901,2264,2087,-1,2901,3072,2264,-1,2061,2976,1949,-1,3024,2976,2061,-1,4391,3562,2939,-1,4100,3562,4391,-1,4619,5523,5729,-1,4619,4540,5523,-1,5277,4649,5728,-1,4383,4649,5277,-1,5974,5416,5777,-1,5523,5416,5974,-1,5204,5277,5747,-1,5059,5277,5204,-1,2264,2463,1964,-1,2264,2841,2463,-1,2061,1763,2394,-1,2061,1598,1763,-1,4948,3172,3189,-1,4956,3172,4948,-1,1598,1282,1365,-1,1598,1525,1282,-1,2463,3701,2672,-1,2463,3733,3701,-1,6438,6660,6359,-1,6660,6438,6783,-1,6438,5931,6290,-1,6438,6024,5931,-1,4372,3189,2987,-1,4948,3189,4372,-1,1412,1239,1467,-1,1239,1412,955,-1,7125,6960,6624,-1,7125,7470,6960,-1,7645,6727,6822,-1,7470,6727,7645,-1,5663,5188,5377,-1,5695,5188,5663,-1,2283,1660,1654,-1,2228,1660,2283,-1,2011,2476,2019,-1,2011,2489,2476,-1,5127,5875,5958,-1,4749,5875,5127,-1,6955,5870,5958,-1,6955,7001,5870,-1,73,903,285,-1,903,73,643,-1,2436,2019,2476,-1,2019,2436,1965,-1,2436,3006,2255,-1,2436,3053,3006,-1,7001,6003,5870,-1,7001,7111,6003,-1,643,55,790,-1,643,73,55,-1,2865,2298,1904,-1,2865,3003,2298,-1,3650,4155,4656,-1,3715,4155,3650,-1,5021,6390,6505,-1,5021,4989,6390,-1,5546,4442,5149,-1,4587,4442,5546,-1,1872,2813,1625,-1,2977,2813,1872,-1,1625,1217,973,-1,1625,1693,1217,-1,2570,2795,2354,-1,2570,2968,2795,-1,5801,6002,6461,-1,5404,6002,5801,-1,6034,6026,6271,-1,6034,5804,6026,-1,4193,2686,2556,-1,4093,2686,4193,-1,2496,1435,1221,-1,2556,1435,2496,-1,2354,2742,2270,-1,2354,2795,2742,-1,5952,6461,6641,-1,5801,6461,5952,-1,6271,5987,6257,-1,6271,6026,5987,-1,5987,5618,5921,-1,5987,5694,5618,-1,2530,1221,1369,-1,2496,1221,2530,-1,1395,1866,1456,-1,1395,1852,1866,-1,3536,4932,4982,-1,3608,4932,3536,-1,7370,6752,6649,-1,7370,7570,6752,-1,5921,5678,5970,-1,5921,5618,5678,-1,2809,3536,3697,-1,2867,3536,2809,-1,6136,6752,6865,-1,5998,6752,6136,-1,6305,5970,6031,-1,6385,5970,6305,-1,4071,2322,2360,-1,4025,2322,4071,-1,2730,3598,2717,-1,2730,3614,3598,-1,6908,7815,7904,-1,6865,7815,6908,-1,6032,5714,5712,-1,6031,5714,6032,-1,4774,4989,5021,-1,2977,2807,2813,-1,4491,4989,4774,-1,4491,4798,4989,-1,4155,4798,4491,-1,4155,4725,4798,-1,3715,4725,4155,-1,3715,4587,4725,-1,3348,4587,3715,-1,3348,4442,4587,-1,3177,4442,3348,-1,3177,3984,4442,-1,3003,3984,3177,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=24 */
		private int[] getmand_Geo_5_877_normalIndex_24()
		{
			int[] value = {3003,3408,3984,-1,2865,3408,3003,-1,2865,2977,3408,-1,2865,2807,2977,-1,262,51,154,-1,7,51,262,-1,261,774,292,-1,261,767,774,-1,154,362,262,-1,292,362,154,-1,1542,2346,1406,-1,2404,2346,1542,-1,25,61,4,-1,25,101,61,-1,1990,3010,1994,-1,3010,1990,3002,-1,7520,6799,6852,-1,7520,7494,6799,-1,192,2,141,-1,2,192,4,-1,6012,7046,7043,-1,5994,7046,6012,-1,7535,6852,6896,-1,7520,6852,7535,-1,7611,6644,6621,-1,6644,7611,7618,-1,39,216,67,-1,216,39,204,-1,2537,4288,2538,-1,2537,4314,4288,-1,7993,7848,7856,-1,7993,7995,7848,-1,5449,2321,5339,-1,5449,2303,2321,-1,7911,8006,7995,-1,7911,7896,8006,-1,978,2321,919,-1,2321,978,2391,-1,1599,2514,1614,-1,1599,2538,2514,-1,1694,882,700,-1,1694,1316,882,-1,2114,3037,3753,-1,3037,2114,1758,-1,562,749,773,-1,562,708,749,-1,1465,2419,1907,-1,2419,1465,1643,-1,2280,4179,4196,-1,4179,2280,2240,-1,773,1236,1050,-1,773,988,1236,-1,2928,2814,4118,-1,2419,2814,2928,-1,2249,4046,2464,-1,2249,2766,4046,-1,913,189,297,-1,913,853,189,-1,1393,1236,1662,-1,1236,1393,821,-1,6913,5978,6932,-1,5872,5978,6913,-1,4046,5432,4803,-1,4046,5158,5432,-1,3543,5106,5158,-1,3543,3475,5106,-1,278,189,335,-1,189,278,71,-1,1801,1393,1996,-1,1393,1801,1433,-1,6856,6913,7433,-1,6445,6913,6856,-1,5432,6228,5922,-1,5432,5605,6228,-1,5597,5106,5355,-1,5605,5106,5597,-1,278,312,235,-1,278,271,312,-1,6856,5844,5760,-1,6856,6777,5844,-1,7478,6782,6777,-1,7478,7451,6782,-1,6421,5597,5641,-1,6427,5597,6421,-1,63,160,47,-1,63,235,160,-1,1454,2210,1541,-1,1454,2064,2210,-1,2210,3818,2229,-1,2210,3965,3818,-1,7331,7488,7454,-1,7451,7488,7331,-1,459,1766,1803,-1,459,609,1766,-1,758,291,726,-1,291,758,388,-1,1445,758,1485,-1,758,1445,777,-1,5919,6633,6530,-1,5887,6633,5919,-1,276,15,133,-1,15,276,46,-1,412,767,261,-1,412,777,767,-1,4091,5919,5916,-1,3911,5919,4091,-1,7792,7266,7420,-1,7644,7266,7792,-1,2352,4021,2404,-1,2352,4091,4021,-1,5783,6596,6564,-1,5783,5897,6596,-1,1687,302,273,-1,1687,1617,302,-1,4564,3748,3385,-1,3748,4564,5299,-1,2598,3113,4066,-1,2435,3113,2598,-1,4343,2351,2349,-1,4343,4122,2351,-1,1041,144,1036,-1,1041,241,144,-1,1609,693,1557,-1,1609,710,693,-1,1630,2830,1557,-1,1630,2864,2830,-1,462,28,241,-1,462,59,28,-1,6206,6470,6891,-1,5888,6470,6206,-1,7061,7546,7763,-1,7061,7040,7546,-1,828,2230,845,-1,2230,828,2171,-1,2171,679,2126,-1,2171,828,679,-1,1851,3129,1880,-1,1851,2878,3129,-1,108,12,54,-1,108,40,12,-1,3,141,2,-1,141,3,118,-1,2997,4896,3001,-1,4896,2997,4876,-1,119,998,118,-1,119,891,998,-1,7789,7949,7876,-1,7820,7949,7789,-1,4456,6536,6437,-1,4456,4518,6536,-1,7763,7052,7061,-1,7763,7876,7052,-1,5994,7045,7046,-1,5994,5991,7045,-1,7814,7519,7494,-1,7820,7519,7814,-1,4896,5971,5991,-1,4876,5971,4896,-1,6153,4564,5160,-1,5299,4564,6153,-1,1030,1630,810,-1,1030,1767,1630,-1,4634,6191,6232,-1,4534,6191,4634,-1,7617,6912,7201,-1,7260,6912,7617,-1,2349,845,2230,-1,2349,1036,845,-1,881,93,710,-1,93,881,139,-1,3001,4897,3002,-1,3001,4896,4897,-1,7828,7273,7707,-1,7828,7176,7273,-1,7741,7245,7727,-1,7741,7504,7245,-1,5946,6733,6770,-1,5946,6579,6733,-1,7273,5767,7354,-1,7176,5767,7273,-1,7176,6318,5767,-1,7176,6733,6318,-1,7176,7085,6733,-1,5684,7245,5767,-1,5743,7245,5684,-1,5876,7245,5743,-1,5924,7245,5876,-1,6125,7245,5924,-1,6125,6827,7245,-1,2740,1566,1939,-1,2260,1566,2740,-1,2163,1581,1562,-1,2084,1581,2163,-1,2262,2307,2612,-1,2262,1940,2307,-1,3717,5066,3390,-1,5122,5066,3717,-1,6905,5914,6077,-1,6905,6950,5914,-1,7660,7887,7615,-1,7660,7970,7887,-1,7436,7922,7561,-1,7436,7920,7922,-1,5692,2329,5697,-1,3180,2329,5692,-1,3550,2163,2260,-1,3550,3378,2163,-1,6905,7828,7277,-1,7591,7828,6905,-1,7096,7727,7322,-1,7741,7727,7096,-1,7352,5484,5504,-1,7352,7384,5484,-1,2211,841,2302,-1,841,2211,736,-1,927,2403,937,-1,927,2303,2403,-1,1577,2537,1601,-1,1577,2518,2537,-1,216,343,187,-1,343,216,431,-1,553,1577,659,-1,1577,553,1522,-1,418,219,371,-1,219,418,289,-1,2457,1489,2481,-1,2457,1522,1489,-1,7678,6676,6715,-1,7635,6676,7678,-1,7493,7921,7916,-1,7384,7921,7493,-1,7824,7678,7650,-1,7824,7881,7678,-1,7626,6621,6662,-1,7611,6621,7626,-1,7919,7352,7321,-1,7919,7913,7352,-1,7873,7626,7635,-1,7873,7853,7626,-1,7755,7897,7920,-1,7534,7897,7755,-1,716,1345,1063,-1,716,1008,1345,-1,1645,1202,1722,-1,1645,787,1202,-1,7805,7970,7894,-1,7805,7887,7970,-1,7918,7771,7894,-1,7918,7773,7771,-1,5537,2093,5549,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=25 */
		private int[] getmand_Geo_5_877_normalIndex_25()
		{
			int[] value = {5537,2183,2093,-1,545,256,344,-1,545,479,256,-1,2668,4420,2460,-1,2668,4543,4420,-1,6779,7565,7650,-1,6620,7565,6779,-1,7437,7799,7759,-1,7437,7308,7799,-1,397,666,415,-1,666,397,603,-1,618,1401,465,-1,618,1409,1401,-1,1401,2481,1489,-1,1401,2533,2481,-1,5504,2303,5449,-1,5504,2403,2303,-1,306,110,289,-1,306,159,110,-1,5189,5423,5047,-1,5423,5189,5465,-1,4475,3547,4425,-1,4475,4079,3547,-1,6087,6734,6168,-1,6087,6627,6734,-1,5151,6213,5885,-1,5151,5513,6213,-1,6928,7103,6967,-1,7311,7103,6928,-1,7468,7929,7997,-1,7841,7929,7468,-1,7733,7310,7665,-1,7733,7751,7310,-1,7486,7513,7700,-1,7280,7513,7486,-1,7512,7480,6909,-1,7513,7480,7512,-1,153,871,135,-1,871,153,935,-1,182,84,78,-1,182,196,84,-1,935,683,563,-1,683,935,585,-1,323,496,498,-1,323,223,496,-1,7658,5822,5860,-1,7658,7556,5822,-1,6119,3132,4167,-1,5625,3132,6119,-1,6349,7171,6772,-1,6349,6926,7171,-1,7681,7835,7721,-1,7681,7700,7835,-1,6926,7471,7171,-1,7219,7471,6926,-1,7891,7719,7806,-1,7977,7719,7891,-1,7803,7665,7721,-1,7803,7733,7665,-1,2482,3376,3364,-1,2906,3376,2482,-1,2600,3857,2906,-1,3857,2600,3600,-1,1634,2147,2115,-1,2125,2147,1634,-1,3447,3174,3379,-1,3573,3174,3447,-1,353,168,164,-1,353,184,168,-1,7991,7783,7945,-1,7991,7827,7783,-1,7796,7776,7745,-1,7776,7796,7760,-1,7225,7895,7189,-1,7225,7963,7895,-1,6893,7130,7099,-1,6893,6847,7130,-1,7954,7890,7946,-1,7890,7954,7935,-1,440,2488,2897,-1,440,315,2488,-1,6979,4237,4604,-1,6979,6909,4237,-1,4102,1407,1340,-1,4102,4771,1407,-1,7578,7225,7908,-1,7299,7225,7578,-1,6859,7212,6940,-1,7382,7212,6859,-1,7181,6841,7339,-1,6474,6841,7181,-1,6278,5042,6396,-1,6278,4969,5042,-1,322,1189,962,-1,839,1189,322,-1,341,839,322,-1,839,341,709,-1,594,382,380,-1,382,594,692,-1,656,425,463,-1,656,688,425,-1,728,1219,1092,-1,1219,728,433,-1,677,718,825,-1,718,677,627,-1,21,483,42,-1,21,268,483,-1,180,387,486,-1,387,180,132,-1,1208,1131,1464,-1,1208,1304,1131,-1,356,10,80,-1,356,175,10,-1,867,615,755,-1,615,867,769,-1,4425,4241,4166,-1,4241,4425,3547,-1,4650,4579,4475,-1,4650,4955,4579,-1,5358,4056,4328,-1,5358,4457,4056,-1,5041,5891,4493,-1,5041,5713,5891,-1,4558,6166,5713,-1,4558,4224,6166,-1,2580,1684,3515,-1,1627,1684,2580,-1,2580,1568,1350,-1,2580,3436,1568,-1,4616,4727,4781,-1,4507,4727,4616,-1,1891,2193,2437,-1,1666,2193,1891,-1,7708,7807,7244,-1,7708,5220,7807,-1,6681,6399,6109,-1,6399,6681,6855,-1,6381,6048,6303,-1,6100,6048,6381,-1,6311,6325,6108,-1,6311,6559,6325,-1,7169,7208,7108,-1,7208,7169,7221,-1,6419,6165,6274,-1,6165,6419,6322,-1,2076,2097,2194,-1,2076,2125,2097,-1,2905,2829,3104,-1,2790,2829,2905,-1,2131,1748,2167,-1,2131,1595,1748,-1,2837,2639,2534,-1,2837,2896,2639,-1,2578,1686,2946,-1,2578,1520,1686,-1,3254,3379,3186,-1,3447,3379,3254,-1,7075,5502,7337,-1,5502,7075,5177,-1,1735,4819,2768,-1,1735,4801,4819,-1,7807,7774,7542,-1,7807,7744,7774,-1,4445,2863,2869,-1,5413,2863,4445,-1,5413,4328,2863,-1,1927,2955,2305,-1,1855,2955,1927,-1,1415,1689,2234,-1,1415,940,1689,-1,2350,3245,3059,-1,3245,2350,3070,-1,4205,2970,3059,-1,4205,4286,2970,-1,2895,1902,2261,-1,2895,2654,1902,-1,5766,4909,5150,-1,4909,5766,5461,-1,6022,2561,5912,-1,2504,2561,6022,-1,5319,4843,4765,-1,5660,4843,5319,-1,6433,6132,6476,-1,6056,6132,6433,-1,5142,6132,4767,-1,5142,6466,6132,-1,2758,3596,3513,-1,2711,3596,2758,-1,1501,602,1256,-1,602,1501,989,-1,1732,1823,2155,-1,1732,724,1823,-1,985,724,7,-1,985,1823,724,-1,5809,6740,6195,-1,5809,6270,6740,-1,2425,1472,2194,-1,1472,2425,1715,-1,5507,5752,5778,-1,5399,5752,5507,-1,6011,6336,6328,-1,6095,6336,6011,-1,1650,1992,2050,-1,1650,1652,1992,-1,6108,6336,5866,-1,6325,6336,6108,-1,6744,6533,6542,-1,6744,6785,6533,-1,1141,2504,1058,-1,1141,2561,2504,-1,1459,177,1275,-1,1459,1554,177,-1,4988,3513,3596,-1,4988,4385,3513,-1,5454,6834,5912,-1,6834,5454,6067,-1,6785,7025,7108,-1,6785,6744,7025,-1,6036,5866,5637,-1,6036,6108,5866,-1,1746,1652,1600,-1,1992,1652,1746,-1,2076,1526,1936,-1,1495,1526,2076,-1,6744,6952,7025,-1,6744,6684,6952,-1,5637,6092,6036,-1,5637,5778,6092,-1,5848,5582,5519,-1,5582,5848,6023,-1,3190,2938,2623,-1,3190,3362,2938,-1,4862,5550,5179,-1,5550,4862,5212,-1,5058,3527,3398,-1,5341,3527,5058,-1,3016,985,1071,-1,985,3016,3845,-1,2027,4459,2722,-1,2626,4459,2027,-1,4519,5545,4933,-1,4519,5414,5545,-1,6899,5463,5341,-1,6899,6831,5463,-1,2568,926,1333,-1,926,2568,2528,-1,5864,4621,5936,-1,4379,4621,5864,-1,3138,2951,3150,-1,2951,3138,3496,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=26 */
		private int[] getmand_Geo_5_877_normalIndex_26()
		{
			int[] value = {7036,5936,7059,-1,7036,5864,5936,-1,4306,4831,4032,-1,2653,4831,4306,-1,2610,3996,2585,-1,3995,3996,2610,-1,1139,978,384,-1,978,1139,1218,-1,2346,2626,1591,-1,2346,4183,2626,-1,983,362,663,-1,983,1060,362,-1,2301,2722,2310,-1,2027,2722,2301,-1,7772,7535,7503,-1,7535,7772,7822,-1,24,101,25,-1,24,56,101,-1,1994,3025,1931,-1,3010,3025,1994,-1,4622,5993,6019,-1,4622,4964,5993,-1,7503,6899,7772,-1,6831,6899,7503,-1,4621,2433,2528,-1,4621,4379,2433,-1,5114,4862,4401,-1,4862,5114,5273,-1,764,2327,1716,-1,764,1614,2327,-1,6980,7941,7059,-1,7851,7941,6980,-1,7866,7183,7055,-1,7183,7866,7896,-1,3364,4039,2801,-1,4039,3364,4032,-1,3692,4291,4538,-1,3692,3456,4291,-1,3142,4007,2365,-1,4008,4007,3142,-1,2905,3456,3182,-1,3263,3456,2905,-1,3987,3362,3765,-1,3362,3987,4053,-1,3994,4739,4781,-1,4739,3994,3993,-1,2714,3254,2877,-1,2714,2896,3254,-1,4358,5089,4902,-1,5089,4358,4815,-1,1684,3636,3515,-1,1684,1711,3636,-1,2257,2741,1929,-1,4095,2741,2257,-1,1018,3436,1287,-1,1568,3436,1018,-1,6187,7042,6965,-1,6187,6144,7042,-1,4567,4583,4468,-1,3877,4583,4567,-1,7872,6886,7544,-1,7872,6918,6886,-1,6221,5759,6196,-1,5700,5759,6221,-1,6185,6606,6196,-1,6503,6606,6185,-1,7206,7435,7151,-1,7206,7425,7435,-1,1487,1847,1619,-1,1487,1600,1847,-1,6452,5552,6595,-1,5552,6452,5389,-1,2798,1938,2748,-1,2798,2043,1938,-1,1611,1280,1121,-1,1611,1938,1280,-1,1200,1379,1378,-1,1200,1209,1379,-1,1471,1374,1432,-1,1374,1471,1437,-1,1479,1280,1769,-1,1031,1280,1479,-1,941,984,920,-1,941,1166,984,-1,6004,7128,6664,-1,6004,6261,7128,-1,862,1249,1054,-1,862,949,1249,-1,6867,6962,6906,-1,6867,7246,6962,-1,5053,5061,4678,-1,5053,6144,5061,-1,4813,5851,3548,-1,5863,5851,4813,-1,7216,7931,7439,-1,7899,7931,7216,-1,5904,5594,6049,-1,5904,5568,5594,-1,3655,4082,4108,-1,4082,3655,3879,-1,2118,6353,6434,-1,6353,2118,2416,-1,6170,2650,6575,-1,6170,2662,2650,-1,7186,5534,7049,-1,5693,5534,7186,-1,5313,4549,4699,-1,4549,5313,4923,-1,6972,5563,7264,-1,5361,5563,6972,-1,5995,6657,6075,-1,6657,5995,6580,-1,6558,7097,6627,-1,7097,6558,7005,-1,264,2045,1914,-1,2045,264,199,-1,3145,4042,4148,-1,3145,4336,4042,-1,5558,6539,5846,-1,6539,5558,5751,-1,4432,4148,4042,-1,4432,4542,4148,-1,4759,4813,4339,-1,4813,4759,4517,-1,2341,6152,2655,-1,2341,5658,6152,-1,5014,4759,4640,-1,5014,4626,4759,-1,2253,4219,4352,-1,4219,2253,2945,-1,2288,6155,2523,-1,5955,6155,2288,-1,4517,4626,4533,-1,4517,4759,4626,-1,5101,5592,5771,-1,5101,4913,5592,-1,3529,6335,3242,-1,6335,3529,5753,-1,2945,2912,3109,-1,2410,2912,2945,-1,6289,6169,5687,-1,6836,6169,6289,-1,4800,5308,5459,-1,4800,4618,5308,-1,5934,6171,6185,-1,6171,5934,6109,-1,984,924,970,-1,975,924,984,-1,1392,1048,1653,-1,1048,1392,1297,-1,1186,977,1129,-1,920,977,1186,-1,2655,1059,2341,-1,2655,1000,1059,-1,5863,7015,5851,-1,5863,6714,7015,-1,4265,3566,3743,-1,4265,4251,3566,-1,2486,3413,3084,-1,2486,3864,3413,-1,4869,4265,4476,-1,4432,4265,4869,-1,4024,5693,4086,-1,5534,5693,4024,-1,4024,2834,3877,-1,4024,5389,2834,-1,5014,5833,4841,-1,5014,5716,5833,-1,2063,3501,4417,-1,3501,2063,1703,-1,3501,3594,3850,-1,3229,3594,3501,-1,6981,7714,7515,-1,6981,7661,7714,-1,651,860,501,-1,895,860,651,-1,3007,3033,3032,-1,3005,3033,3007,-1,4625,6129,6142,-1,6129,4625,4722,-1,1668,501,1228,-1,501,1668,651,-1,6266,5419,6348,-1,5384,5419,6266,-1,4269,3603,3587,-1,3603,4269,4244,-1,6088,6983,6787,-1,6142,6983,6088,-1,3544,2001,2924,-1,2001,3544,2708,-1,4623,4433,4816,-1,4623,4269,4433,-1,2650,1422,647,-1,2650,2662,1422,-1,2716,1825,2753,-1,2716,2544,1825,-1,3879,3455,3856,-1,3879,3655,3455,-1,199,1946,2045,-1,199,145,1946,-1,4778,6130,5636,-1,6130,4778,5116,-1,6570,7614,6807,-1,6570,7987,7614,-1,3145,1903,2737,-1,1903,3145,3250,-1,109,2208,2025,-1,1207,2208,109,-1,3549,3103,3533,-1,3549,3134,3103,-1,4510,4533,4626,-1,4526,4533,4510,-1,2068,472,263,-1,2068,2288,472,-1,7408,5658,7251,-1,7408,6152,5658,-1,6609,3231,6219,-1,6609,3699,3231,-1,4583,5022,5085,-1,4806,5022,4583,-1,7940,6353,7872,-1,7940,6434,6353,-1,4047,3438,3769,-1,4339,3438,4047,-1,4323,5151,4753,-1,5151,4323,4366,-1,6693,6149,6682,-1,6182,6149,6693,-1,6183,5700,6221,-1,6183,5626,5700,-1,6734,7254,6853,-1,6734,7185,7254,-1,5626,6255,5700,-1,5626,6168,6255,-1,5060,4323,4658,-1,4323,5060,4712,-1,646,874,857,-1,874,646,719,-1,495,537,474,-1,495,518,537,-1,474,677,591,-1,677,474,537,-1,536,628,699,-1,536,572,628,-1,7031,5386,6066,-1,6578,5386,7031,-1,474,539,495,-1,474,458,539,-1,1054,1567,1432,-1,1054,1249,1567,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=27 */
		private int[] getmand_Geo_5_877_normalIndex_27()
		{
			int[] value = {5584,6168,5626,-1,6087,6168,5584,-1,1929,1355,1452,-1,1929,1357,1355,-1,3076,5240,3338,-1,3076,4121,5240,-1,1129,1231,1186,-1,1129,1303,1231,-1,1392,1619,1564,-1,1392,1487,1619,-1,1085,557,699,-1,557,1085,1281,-1,493,599,417,-1,614,599,493,-1,614,735,685,-1,614,493,735,-1,5671,6772,6258,-1,6772,5671,6349,-1,4845,4318,5129,-1,4845,4151,4318,-1,6411,6494,6070,-1,6411,6754,6494,-1,7991,7802,7445,-1,7485,7802,7991,-1,469,571,320,-1,490,571,469,-1,4617,6647,6946,-1,4617,4303,6647,-1,7114,4754,4878,-1,4754,7114,7120,-1,2054,4937,5175,-1,4937,2054,1861,-1,7690,5280,5251,-1,5280,7690,7590,-1,5078,6513,4482,-1,5078,7145,6513,-1,1402,3181,915,-1,3728,3181,1402,-1,5943,3728,6134,-1,3181,3728,5943,-1,7424,6522,6402,-1,7576,6522,7424,-1,5900,6463,6070,-1,6062,6463,5900,-1,7675,7855,7769,-1,7675,7804,7855,-1,6661,7058,7124,-1,7058,6661,6699,-1,7734,7647,7946,-1,7972,7647,7734,-1,6847,7044,7130,-1,6804,7044,6847,-1,7827,7445,7490,-1,7445,7827,7991,-1,7247,6864,7238,-1,7241,6864,7247,-1,7781,7722,7576,-1,7781,7760,7722,-1,7381,7018,7926,-1,6894,7018,7381,-1,7803,7248,7726,-1,7248,7803,7721,-1,7541,5996,6812,-1,7541,6283,5996,-1,7890,7796,7638,-1,7574,7796,7890,-1,7907,7604,7398,-1,7907,7965,7604,-1,915,698,1402,-1,35,698,915,-1,272,517,630,-1,517,272,313,-1,1004,78,84,-1,1004,1145,78,-1,331,473,334,-1,331,424,473,-1,4341,1069,4405,-1,4341,1417,1069,-1,427,3773,505,-1,3855,3773,427,-1,4098,6742,7041,-1,6742,4098,3662,-1,783,842,899,-1,783,499,842,-1,452,925,1040,-1,14,925,452,-1,5499,5431,5518,-1,5499,5520,5431,-1,2144,2913,2930,-1,2913,2144,2241,-1,1191,3454,3080,-1,2992,1191,1173,-1,3454,1191,2992,-1,5640,6383,5338,-1,6626,6383,5640,-1,3602,3900,3960,-1,3602,3526,3900,-1,2819,1995,2039,-1,1995,2819,2785,-1,3900,5075,4317,-1,4378,5075,3900,-1,2601,2681,1967,-1,3013,2681,2601,-1,4438,6342,6314,-1,4605,6342,4438,-1,7973,6304,7402,-1,7973,6821,6304,-1,5222,5337,5042,-1,5734,5337,5222,-1,407,457,410,-1,457,407,619,-1,567,419,394,-1,567,338,419,-1,353,477,662,-1,477,353,164,-1,180,171,151,-1,207,171,180,-1,44,17,26,-1,44,382,17,-1,1004,1827,1145,-1,1004,1764,1827,-1,1340,530,1443,-1,530,1340,586,-1,311,336,112,-1,311,281,336,-1,226,606,765,-1,226,68,606,-1,429,486,387,-1,429,492,486,-1,68,382,606,-1,68,17,382,-1,1861,575,520,-1,1861,2054,575,-1,698,1812,1402,-1,1812,698,1076,-1,338,266,419,-1,338,240,266,-1,410,538,376,-1,410,457,538,-1,407,368,499,-1,368,407,410,-1,4028,3602,4430,-1,4028,3328,3602,-1,1683,1293,1511,-1,1683,1589,1293,-1,1805,1206,1629,-1,1436,1206,1805,-1,3081,2432,3288,-1,3081,2299,2432,-1,6513,6797,6134,-1,7328,6797,6513,-1,5600,5701,5607,-1,5701,5600,5691,-1,6070,6430,5900,-1,6494,6430,6070,-1,6269,5583,6747,-1,5583,6269,5328,-1,3288,4565,3081,-1,4438,4565,3288,-1,7574,7760,7796,-1,7574,7722,7760,-1,6424,7783,7084,-1,6424,6726,7783,-1,7963,7292,7895,-1,7401,7292,7963,-1,6743,7117,6729,-1,6743,7127,7117,-1,463,248,349,-1,425,248,463,-1,270,510,349,-1,270,295,510,-1,6979,7512,6909,-1,7512,6979,7710,-1,685,688,656,-1,685,735,688,-1,1416,1145,1827,-1,1145,1416,426,-1,7826,7674,7749,-1,7882,7674,7826,-1,7360,7646,7701,-1,7205,7646,7360,-1,7401,7271,7292,-1,7401,7178,7271,-1,6756,7018,6954,-1,7018,6756,7178,-1,7393,7701,7679,-1,7360,7701,7393,-1,7466,6767,6509,-1,6767,7466,7376,-1,7638,7946,7890,-1,7638,7734,7946,-1,7576,6647,6522,-1,7576,7514,6647,-1,4624,3081,4565,-1,2913,3081,4624,-1,5328,6035,4995,-1,5328,6269,6035,-1,5255,5412,5119,-1,5412,5255,5431,-1,2299,1671,2432,-1,1671,2299,1629,-1,2241,1629,2299,-1,1805,1629,2241,-1,1800,1511,1593,-1,1683,1511,1800,-1,3960,4430,3602,-1,5015,4430,3960,-1,519,376,538,-1,376,519,490,-1,560,692,594,-1,560,633,692,-1,26,77,240,-1,26,42,77,-1,754,334,473,-1,332,334,754,-1,865,2246,1181,-1,865,2149,2246,-1,10,17,68,-1,10,21,17,-1,492,339,446,-1,429,339,492,-1,765,792,747,-1,765,606,792,-1,7402,6278,7074,-1,7402,6304,6278,-1,132,182,120,-1,132,196,182,-1,21,26,17,-1,26,21,42,-1,492,667,486,-1,619,667,492,-1,1861,620,1807,-1,1861,520,620,-1,662,629,353,-1,662,709,629,-1,394,128,320,-1,236,128,394,-1,866,630,1009,-1,866,595,630,-1,5289,5845,5520,-1,5845,5289,6158,-1,6626,6524,6383,-1,6626,6396,6524,-1,5129,4419,5338,-1,5129,4318,4419,-1,4430,4995,4028,-1,5328,4995,4430,-1,1147,701,1242,-1,1147,832,701,-1,1152,1593,1511,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=28 */
		private int[] getmand_Geo_5_877_normalIndex_28()
		{
			int[] value = {1593,1152,1148,-1,1995,2287,1919,-1,2785,2287,1995,-1,2838,2287,2785,-1,3288,2681,3445,-1,2432,2681,3288,-1,3526,3328,3013,-1,3602,3328,3526,-1,5338,6217,5129,-1,6383,6217,5338,-1,1347,1242,701,-1,1817,1242,1347,-1,2241,1892,1805,-1,2241,2144,1892,-1,5042,4717,5222,-1,4717,5042,4969,-1,5892,5567,5818,-1,6039,5567,5892,-1,1161,1450,1616,-1,1161,1009,1450,-1,5715,5691,5600,-1,5715,6062,5691,-1,7124,6535,7129,-1,7124,7058,6535,-1,424,3662,473,-1,424,3632,3662,-1,3855,6699,6661,-1,6699,3855,4146,-1,754,4405,1069,-1,4098,4405,754,-1,5600,2973,5715,-1,3653,2973,5600,-1,1293,595,866,-1,1293,1163,595,-1,207,272,171,-1,313,272,207,-1,1181,698,589,-1,1181,1076,698,-1,7376,7087,6767,-1,7230,7087,7376,-1,6809,7084,7060,-1,6424,7084,6809,-1,1565,483,268,-1,1565,1740,483,-1,7238,5826,7386,-1,7238,6864,5826,-1,7339,7007,7181,-1,7339,7159,7007,-1,7238,7838,7247,-1,7238,7655,7838,-1,7490,7616,7827,-1,7490,7745,7616,-1,7449,7130,7044,-1,7130,7449,7410,-1,5907,6450,5493,-1,5907,6378,6450,-1,7230,7129,7087,-1,7124,7129,7230,-1,6679,7124,7230,-1,6679,6661,7124,-1,7804,7915,7855,-1,7804,7712,7915,-1,7262,7832,7288,-1,7832,7262,7808,-1,7701,7602,7779,-1,7701,7646,7602,-1,6522,3794,6402,-1,3794,6522,4090,-1,5943,3198,3181,-1,3198,5943,6404,-1,1812,5078,4482,-1,1812,2154,5078,-1,2246,5251,5280,-1,2246,2149,5251,-1,5175,7398,7604,-1,7398,5175,4937,-1,4754,1842,4878,-1,1807,1842,4754,-1,1565,4617,1740,-1,1565,4303,4617,-1,3794,1396,1358,-1,1396,3794,4090,-1,6982,7099,7393,-1,6982,6893,7099,-1,5734,5850,5337,-1,5850,5734,6148,-1,5996,5129,6217,-1,5996,4845,5129,-1,5996,4984,4845,-1,543,579,352,-1,579,543,561,-1,718,614,661,-1,614,718,599,-1,1653,1487,1392,-1,1653,1820,1487,-1,3338,5753,3529,-1,3338,5240,5753,-1,5403,5283,4949,-1,5403,6329,5283,-1,7097,7523,7185,-1,7373,7523,7097,-1,502,702,649,-1,502,458,702,-1,1297,867,1048,-1,1297,1190,867,-1,782,949,862,-1,922,949,782,-1,3859,1771,1621,-1,3859,4088,1771,-1,1190,769,867,-1,1190,1093,769,-1,6664,7419,6986,-1,6664,7128,7419,-1,840,699,628,-1,699,840,1085,-1,825,661,780,-1,661,825,718,-1,6221,6682,6183,-1,6693,6682,6221,-1,6627,7185,6734,-1,6627,7097,7185,-1,6126,5626,6183,-1,6126,5584,5626,-1,4488,6004,5513,-1,6004,4488,5024,-1,1754,3084,2139,-1,1754,3332,3084,-1,518,581,537,-1,1462,581,518,-1,1462,3999,581,-1,7861,6152,7408,-1,7861,6254,6152,-1,691,2288,2523,-1,472,2288,691,-1,4533,3868,4128,-1,3868,4533,4526,-1,6488,6775,6393,-1,6775,6488,7877,-1,145,2025,1946,-1,2025,145,109,-1,4148,3250,3145,-1,3250,4148,4307,-1,6862,6807,7614,-1,6862,6539,6807,-1,5636,6687,6057,-1,6130,6687,5636,-1,3533,3642,3549,-1,3533,3787,3642,-1,3856,4569,3879,-1,4625,4569,3856,-1,2753,3115,2716,-1,3032,3115,2753,-1,647,742,1875,-1,647,852,742,-1,7264,7282,6972,-1,7282,7264,7854,-1,4911,4816,4923,-1,4911,4623,4816,-1,1422,2924,2001,-1,1422,2662,2924,-1,860,2544,2416,-1,860,1825,2544,-1,4623,4244,4269,-1,4244,4623,4572,-1,7282,6266,6348,-1,6266,7282,7150,-1,6142,6887,6983,-1,6887,6142,6129,-1,2773,3032,2753,-1,3007,3032,2773,-1,1499,647,1422,-1,812,647,1499,-1,5233,4709,6519,-1,4716,4709,5233,-1,3850,4417,3501,-1,4417,3850,4709,-1,4417,3798,2063,-1,3798,4417,4546,-1,4567,5638,4024,-1,5297,5638,4567,-1,3743,4476,4265,-1,4476,3743,4108,-1,5861,7439,5839,-1,5861,7216,7439,-1,6155,6860,5882,-1,6860,6155,6867,-1,4295,6128,6040,-1,4295,4428,6128,-1,1564,1297,1392,-1,1297,1564,1503,-1,1077,1374,1209,-1,1046,1374,1077,-1,1263,1200,1447,-1,1200,1263,1091,-1,1366,1294,1731,-1,1366,941,1294,-1,5756,5687,6169,-1,5756,5592,5687,-1,7064,5753,6277,-1,7064,6335,5753,-1,4352,4684,4943,-1,4684,4352,4219,-1,6500,3242,6335,-1,6500,3073,3242,-1,5771,4613,5101,-1,5308,4613,5771,-1,2068,5955,2288,-1,5604,5955,2068,-1,4640,5716,5014,-1,4640,4840,5716,-1,2655,6254,2721,-1,2655,6152,6254,-1,4640,4339,4047,-1,4339,4640,4759,-1,2735,6363,2851,-1,2735,6057,6363,-1,5111,4432,4869,-1,4432,5111,4542,-1,7005,7373,7097,-1,7373,7005,7287,-1,6580,6126,6657,-1,6126,6580,6049,-1,7412,5839,7439,-1,7412,5901,5839,-1,6251,4699,5054,-1,4699,6251,5313,-1,5638,7049,5534,-1,5638,6787,7049,-1,2416,5561,6353,-1,2416,2544,5561,-1,4678,3544,5053,-1,4678,4026,3544,-1,3566,2716,3115,-1,3566,3887,2716,-1,3879,4495,4082,-1,4495,3879,4569,-1,4063,5995,3803,-1,4063,5935,5995,-1,6086,5568,6120,-1,6086,5594,5568,-1,6654,7572,7544,-1,7572,6654,6907,-1,7015,7899,7121,-1,7015,7315,7899,-1,5101,4684,4609,-1,5101,4613,4684,-1,1452,1272,1303,-1,1355,1272,1452,-1,1620,1210,1509,-1,1573,1210,1620,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=29 */
		private int[] getmand_Geo_5_877_normalIndex_29()
		{
			int[] value = {1294,920,1186,-1,1294,941,920,-1,6965,7274,7068,-1,7042,7274,6965,-1,2109,3338,1731,-1,3338,2109,3076,-1,975,862,924,-1,782,862,975,-1,1447,1378,1477,-1,1447,1200,1378,-1,1836,1431,1318,-1,2579,1431,1836,-1,2139,3939,2834,-1,3939,2139,3413,-1,6253,6422,6171,-1,6332,6422,6253,-1,1820,1600,1487,-1,1820,1746,1600,-1,6845,7151,6581,-1,6845,7206,7151,-1,6128,6503,6040,-1,6128,6606,6503,-1,5700,6272,5759,-1,6255,6272,5700,-1,6040,3521,4295,-1,6040,5816,3521,-1,7068,7686,7538,-1,7686,7068,7274,-1,1548,1018,786,-1,1548,1568,1018,-1,2319,4095,2257,-1,4887,4095,2319,-1,2741,3095,2086,-1,3095,2741,4095,-1,1700,1711,1684,-1,1711,1700,1678,-1,4006,4628,5216,-1,4006,4002,4628,-1,2454,2810,2639,-1,2454,2929,2810,-1,4592,4727,4198,-1,4592,3997,4727,-1,4592,4001,3997,-1,2437,2660,1891,-1,2604,2660,2437,-1,3447,2896,2837,-1,3447,3254,2896,-1,2627,2790,3083,-1,2790,2627,2829,-1,4003,5891,5532,-1,4003,4069,5891,-1,4054,5492,3992,-1,4054,4660,5492,-1,5212,4006,5216,-1,5212,3893,4006,-1,2448,978,1218,-1,2448,2391,978,-1,6525,5652,5487,-1,6556,5652,6525,-1,4660,4685,5492,-1,4306,4685,4660,-1,7581,7862,7851,-1,7581,7596,7862,-1,1614,2653,2327,-1,2653,1614,2514,-1,2448,5451,5304,-1,2448,3427,5451,-1,926,24,238,-1,926,759,24,-1,6896,7503,7535,-1,6800,7503,6896,-1,6019,7027,6759,-1,6019,5993,7027,-1,3010,4964,3025,-1,4908,4964,3010,-1,25,238,24,-1,245,238,25,-1,6800,4936,4823,-1,4936,6800,6896,-1,2679,4729,2796,-1,2679,4548,4729,-1,1060,262,362,-1,262,1060,1071,-1,7,1071,985,-1,7,262,1071,-1,384,951,1139,-1,384,174,951,-1,2886,4548,2679,-1,4548,2886,3373,-1,2739,2886,3138,-1,2886,2739,3373,-1,5471,4000,3884,-1,5471,4139,4000,-1,951,2610,2585,-1,951,1026,2610,-1,5696,7059,5936,-1,5696,6980,7059,-1,2473,2591,2796,-1,2473,2411,2591,-1,759,2528,2433,-1,759,926,2528,-1,5058,6899,5341,-1,6818,6899,5058,-1,2565,1071,1060,-1,1071,2565,3016,-1,1896,2301,2473,-1,2301,1896,2027,-1,3376,4538,4489,-1,3692,4538,3376,-1,4551,4781,4739,-1,4551,4616,4781,-1,5117,5823,5808,-1,5823,3470,3534,-1,5823,5117,3470,-1,1595,2089,1494,-1,2131,2089,1595,-1,1992,3470,4072,-1,1992,1746,3470,-1,6248,5823,6332,-1,5823,6248,5808,-1,7108,6774,6785,-1,6774,7108,7208,-1,6022,6830,5879,-1,6830,6022,7756,-1,5766,6279,6007,-1,5766,5944,6279,-1,4385,6067,5454,-1,6067,4385,4988,-1,1554,74,177,-1,1554,1295,74,-1,4286,5150,4909,-1,4286,4205,5150,-1,6274,5848,5660,-1,6165,5848,6274,-1,2590,2131,2517,-1,2590,2089,2131,-1,5319,6095,6011,-1,4731,6095,5319,-1,5399,5089,4903,-1,5399,5507,5089,-1,4057,2683,1895,-1,2683,4057,4249,-1,2337,1785,2815,-1,2337,1010,1785,-1,1256,1902,1501,-1,1902,1256,1775,-1,2654,3896,3792,-1,3896,2654,2895,-1,4807,5396,3386,-1,4807,4413,5396,-1,4057,6051,4249,-1,6051,4057,6491,-1,3623,3781,4358,-1,3781,3623,3719,-1,2758,3208,2986,-1,2758,3513,3208,-1,2994,5912,2561,-1,2994,5454,5912,-1,1501,2654,2582,-1,2654,1501,1902,-1,3524,5454,2994,-1,4385,5454,3524,-1,4286,4101,2970,-1,4286,5524,4101,-1,5236,3792,3896,-1,3792,5236,4874,-1,1554,5502,1295,-1,5437,5502,1554,-1,2869,2193,2050,-1,2863,2193,2869,-1,2768,3703,2747,-1,3703,2768,3572,-1,4801,1178,5177,-1,4801,1735,1178,-1,6603,5177,7075,-1,5177,6603,4801,-1,4291,3263,3629,-1,4291,3456,3263,-1,2946,3035,2578,-1,3300,3035,2946,-1,2627,2534,2623,-1,2627,2837,2534,-1,2517,2167,2305,-1,2517,2131,2167,-1,1855,2637,2955,-1,1970,2637,1855,-1,1520,1634,1686,-1,1634,1520,1434,-1,931,1231,1135,-1,931,1262,1231,-1,1895,1583,1252,-1,1583,1895,1670,-1,5582,5179,5550,-1,5179,5582,5190,-1,6542,6322,6419,-1,6542,6533,6322,-1,7244,7108,7025,-1,7108,7244,7169,-1,6459,6559,6684,-1,6325,6559,6459,-1,6248,5877,5808,-1,5877,6248,6092,-1,5772,5016,5884,-1,4882,5016,5772,-1,6952,6681,7026,-1,6855,6681,6952,-1,1748,1619,1847,-1,1619,1748,1428,-1,4152,3987,3765,-1,3987,4152,3989,-1,3830,4507,4616,-1,3685,4507,3830,-1,2929,2637,2810,-1,2955,2637,2929,-1,1835,2086,1330,-1,2086,1835,2741,-1,3436,3515,4672,-1,2580,3515,3436,-1,2086,1776,1330,-1,1707,1776,2086,-1,4012,3326,3719,-1,4012,4009,3326,-1,3018,2862,3257,-1,3018,2854,2862,-1,4008,3326,4009,-1,3326,4008,3142,-1,4320,4079,4232,-1,4320,3790,4079,-1,4457,3878,3624,-1,4457,3943,3878,-1,4454,3790,4320,-1,3770,3790,4454,-1,5358,5465,5189,-1,5465,5358,4445,-1,1281,3699,3967,-1,1281,1085,3699,-1,4087,6219,3231,-1,5635,6219,4087,-1,495,725,668,-1,725,495,539,-1,1245,1208,517,-1,1245,1304,1208,-1,469,332,381,-1,469,334,332,-1,905,517,313,-1,905,1245,517,-1,132,336,387,-1,336,132,120,-1,536,80,417,-1,80,536,356,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=30 */
		private int[] getmand_Geo_5_877_normalIndex_30()
		{
			int[] value = {591,825,870,-1,591,677,825,-1,633,792,692,-1,792,633,500,-1,579,463,527,-1,463,579,656,-1,986,865,1049,-1,986,477,865,-1,1189,1049,962,-1,1189,986,1049,-1,331,236,225,-1,331,128,236,-1,4610,5112,5185,-1,4920,5112,4610,-1,4986,2377,2998,-1,2628,2377,4986,-1,1616,684,1161,-1,684,1616,1117,-1,7600,7127,7062,-1,7589,7127,7600,-1,6474,7031,6329,-1,6474,7181,7031,-1,7060,7616,7634,-1,7084,7616,7060,-1,6601,7674,6900,-1,6601,7829,7674,-1,7371,6954,7288,-1,6756,6954,7371,-1,3532,1340,1443,-1,4102,1340,3532,-1,7410,7099,7130,-1,7099,7410,7205,-1,7875,6754,7808,-1,7875,6494,6754,-1,7139,7087,7129,-1,7087,7139,7138,-1,7838,7189,7895,-1,6900,7189,7838,-1,353,265,184,-1,353,629,265,-1,1312,2097,1434,-1,1312,1889,2097,-1,2906,3805,3261,-1,3857,3805,2906,-1,2194,2278,2425,-1,2194,2097,2278,-1,1434,1594,1252,-1,1434,1520,1594,-1,7643,7721,7665,-1,7721,7643,7681,-1,7103,7958,7893,-1,7103,7134,7958,-1,7219,7468,7471,-1,7219,7404,7468,-1,7573,7977,7948,-1,7573,7629,7977,-1,6368,3584,2897,-1,6458,3584,6368,-1,7957,7229,7841,-1,7229,7957,7450,-1,745,585,340,-1,745,683,585,-1,454,626,214,-1,454,893,626,-1,563,295,270,-1,563,683,295,-1,7710,7700,7512,-1,7835,7700,7710,-1,7681,7806,7719,-1,7806,7681,7643,-1,7404,7841,7468,-1,7957,7841,7404,-1,7311,6901,6111,-1,7311,6928,6901,-1,5317,4949,4950,-1,5317,5403,4949,-1,6086,6627,6087,-1,6558,6627,6086,-1,5047,4509,5189,-1,5047,4462,4509,-1,2309,4275,3781,-1,3057,4275,2309,-1,397,289,418,-1,397,306,289,-1,7321,5504,5449,-1,7352,5504,7321,-1,1489,465,1401,-1,465,1489,512,-1,465,256,618,-1,256,465,159,-1,2093,603,2161,-1,2093,666,603,-1,7759,7845,7773,-1,7759,7799,7845,-1,5615,6620,6779,-1,5661,6620,5615,-1,4420,5854,5661,-1,4543,5854,4420,-1,479,618,256,-1,479,787,618,-1,666,2183,1008,-1,2183,666,2093,-1,7897,7773,7918,-1,7897,7759,7773,-1,7894,7922,7918,-1,7894,7970,7922,-1,5832,4543,4667,-1,5854,4543,5832,-1,932,787,479,-1,787,932,1202,-1,2329,1008,2183,-1,1008,2329,1345,-1,7635,6662,6676,-1,7635,7626,6662,-1,7913,7384,7352,-1,7921,7384,7913,-1,7853,7611,7626,-1,7856,7611,7853,-1,6715,7650,7678,-1,6779,7650,6715,-1,7916,7308,7493,-1,7799,7308,7916,-1,7881,7635,7678,-1,7873,7635,7881,-1,2481,4261,2457,-1,4261,2481,4310,-1,289,96,219,-1,96,289,110,-1,1522,2518,1577,-1,2518,1522,2457,-1,187,371,219,-1,187,343,371,-1,659,1601,768,-1,659,1577,1601,-1,937,431,927,-1,431,937,343,-1,371,736,418,-1,371,841,736,-1,5484,2403,5504,-1,2403,5484,2302,-1,7095,7741,7096,-1,7688,7741,7095,-1,3378,2084,2163,-1,3378,3317,2084,-1,3919,6619,4944,-1,6619,3919,6015,-1,7561,7096,7436,-1,7096,7561,7095,-1,7098,7615,7277,-1,7098,7660,7615,-1,3390,4667,2811,-1,5066,4667,3390,-1,1940,1722,1202,-1,2262,1722,1940,-1,907,1566,1562,-1,907,1063,1566,-1,7887,6921,7105,-1,7805,6921,7887,-1,5743,3550,5876,-1,3378,3550,5743,-1,7688,7504,7741,-1,7688,7354,7504,-1,7591,7176,7828,-1,7591,7085,7176,-1,1979,3002,1990,-1,1979,3001,3002,-1,139,22,93,-1,22,139,40,-1,4456,2349,2230,-1,4343,2349,4456,-1,7260,7546,7239,-1,7260,7617,7546,-1,2703,4634,2878,-1,2703,4534,4634,-1,1767,2864,1630,-1,1767,2598,2864,-1,933,59,462,-1,933,273,59,-1,3434,5160,4564,-1,3434,4157,5160,-1,5836,6470,5581,-1,5836,6685,6470,-1,7953,7820,7814,-1,7949,7820,7953,-1,7953,7046,7045,-1,7955,7046,7953,-1,7061,6085,6232,-1,7061,7052,6085,-1,6437,7472,7428,-1,6437,6536,7472,-1,7022,7876,7949,-1,7022,7052,7876,-1,12,118,3,-1,12,119,118,-1,3129,4876,2997,-1,3129,4805,4876,-1,1097,118,998,-1,1097,141,118,-1,845,54,828,-1,845,108,54,-1,881,1880,891,-1,881,1851,1880,-1,4518,2126,4872,-1,4518,2171,2126,-1,4518,2230,2171,-1,4456,2230,4518,-1,7617,7763,7546,-1,7738,7763,7617,-1,4849,5888,6206,-1,4690,5888,4849,-1,7260,6153,6912,-1,6638,6153,7260,-1,810,1557,693,-1,810,1630,1557,-1,2703,1557,2830,-1,2703,1609,1557,-1,241,22,144,-1,22,241,28,-1,2492,1041,2351,-1,2492,1314,1041,-1,3918,3978,4110,-1,3918,3748,3978,-1,3843,3748,3918,-1,3113,3748,3843,-1,3113,3385,3748,-1,2435,3385,3113,-1,2435,2822,3385,-1,2005,2822,2435,-1,2005,2445,2822,-1,1779,2445,2005,-1,1779,1963,2445,-1,1779,1770,1963,-1,1779,1687,1770,-1,1779,1617,1687,-1,3978,5299,5791,-1,3978,3748,5299,-1,2445,1706,2174,-1,2445,1963,1706,-1,1617,1030,302,-1,1617,1779,1030,-1,4021,5916,5897,-1,4091,5916,4021,-1,7792,7447,7558,-1,7447,7792,7640,-1,5916,6530,6631,-1,5919,6530,5916,-1,1533,777,1445,-1,777,1533,767,-1,69,401,46,-1,401,69,461,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=31 */
		private int[] getmand_Geo_5_877_normalIndex_31()
		{
			int[] value = {7644,7168,7266,-1,7454,7168,7644,-1,1485,2221,1445,-1,1485,2229,2221,-1,726,1485,758,-1,726,1541,1485,-1,459,15,609,-1,459,47,15,-1,7211,7454,7488,-1,7211,7168,7454,-1,1541,2229,1485,-1,1541,2210,2229,-1,738,1541,726,-1,738,1454,1541,-1,47,165,63,-1,165,47,459,-1,5641,5355,5329,-1,5597,5355,5641,-1,7451,7531,7488,-1,7478,7531,7451,-1,7433,6777,6856,-1,7433,7478,6777,-1,1433,2064,1454,-1,1433,1801,2064,-1,71,235,63,-1,71,278,235,-1,6228,5597,6427,-1,6228,5605,5597,-1,5922,7053,6646,-1,5922,6228,7053,-1,5760,6445,6856,-1,5439,6445,5760,-1,271,335,402,-1,335,271,278,-1,1538,3475,3543,-1,1538,1648,3475,-1,6932,5735,6646,-1,5978,5735,6932,-1,821,1050,1236,-1,1050,821,402,-1,4118,3342,5097,-1,2814,3342,4118,-1,1236,1453,1662,-1,988,1453,1236,-1,2419,1787,2814,-1,2419,1643,1787,-1,749,988,773,-1,988,749,886,-1,2240,3753,4179,-1,3753,2240,2114,-1,2249,1316,1694,-1,2249,1531,1316,-1,2538,4201,2514,-1,2538,4288,4201,-1,204,86,174,-1,204,39,86,-1,7896,7180,7183,-1,7911,7180,7896,-1,2303,919,2321,-1,2303,927,919,-1,7995,7919,7911,-1,7993,7919,7995,-1,5497,4288,4314,-1,5497,5527,4288,-1,67,799,39,-1,67,768,799,-1,7618,6670,6644,-1,6670,7618,7596,-1,6896,4980,4936,-1,6852,4980,6896,-1,7955,7043,7046,-1,7955,7961,7043,-1,1142,141,1097,-1,141,1142,192,-1,6852,4883,4980,-1,6852,6799,4883,-1,3002,4908,3010,-1,4908,3002,4897,-1,245,4,192,-1,245,25,4,-1,1985,4936,4980,-1,1941,4936,1985,-1,6564,7447,7397,-1,6564,6596,7447,-1,143,292,154,-1,261,292,143,-1,69,154,51,-1,69,143,154,-1,4065,2360,2355,-1,4071,2360,4065,-1,6282,6031,6032,-1,6305,6031,6282,-1,6163,6865,6908,-1,6136,6865,6163,-1,2730,3697,3614,-1,2809,3697,2730,-1,5309,4025,4071,-1,5264,4025,5309,-1,6948,6305,6843,-1,6948,6385,6305,-1,5046,5998,6136,-1,4959,5998,5046,-1,2323,2809,2268,-1,2323,2867,2809,-1,5678,5229,5264,-1,5618,5229,5678,-1,6948,7370,6757,-1,7370,6948,7570,-1,6649,7332,7370,-1,6641,7332,6649,-1,2867,3608,3536,-1,2742,3608,2867,-1,1057,1456,928,-1,1057,1395,1456,-1,4044,2496,2530,-1,4165,2496,4044,-1,6257,5921,6237,-1,6257,5987,5921,-1,6786,6257,6820,-1,6786,6271,6257,-1,4932,5801,5952,-1,4821,5801,4932,-1,1997,2270,1852,-1,1997,2354,2270,-1,1221,973,715,-1,1435,973,1221,-1,2556,1872,1435,-1,2686,1872,2556,-1,6026,5546,5710,-1,5804,5546,6026,-1,6461,6505,7207,-1,6002,6505,6461,-1,2968,3604,2795,-1,2968,3650,3604,-1,1693,1547,1217,-1,1693,1904,1547,-1,2813,1693,1625,-1,2813,2807,1693,-1,5149,3984,4093,-1,4442,3984,5149,-1,4989,6034,6390,-1,4989,4798,6034,-1,4656,4491,5404,-1,4155,4491,4656,-1,3003,2570,2298,-1,3003,3177,2570,-1,369,73,406,-1,73,369,55,-1,7111,7780,7842,-1,7001,7780,7111,-1,3006,4160,4332,-1,3053,4160,3006,-1,2436,2969,3053,-1,2476,2969,2436,-1,285,406,73,-1,285,665,406,-1,3351,2577,3639,-1,3351,2283,2577,-1,5958,5161,5127,-1,5958,5870,5161,-1,3945,4749,5127,-1,3872,4749,3945,-1,1412,2019,1419,-1,1412,2011,2019,-1,903,1660,976,-1,1660,903,1654,-1,5825,5695,5663,-1,5931,5695,5825,-1,6955,7470,7645,-1,6960,7470,6955,-1,5875,6624,6960,-1,5688,6624,5875,-1,1467,2011,1412,-1,1467,1783,2011,-1,1365,1660,1637,-1,1365,976,1660,-1,4948,5188,5458,-1,4948,4372,5188,-1,6727,6438,6290,-1,6783,6438,6727,-1,6746,6783,7125,-1,6746,6660,6783,-1,1964,2672,2055,-1,1964,2463,2672,-1,1239,1525,1441,-1,1525,1239,1282,-1,5458,4956,4948,-1,5394,4956,5458,-1,5394,4391,4956,-1,5168,4391,5394,-1,1949,1441,1525,-1,1949,1926,1441,-1,2841,3733,2463,-1,2841,3931,3733,-1,6344,6122,6746,-1,5728,6122,6344,-1,5729,5974,6359,-1,5729,5523,5974,-1,5728,4799,6122,-1,4649,4799,5728,-1,4540,5416,5523,-1,4540,4444,5416,-1,2939,3325,2506,-1,3562,3325,2939,-1,1949,2996,1926,-1,2976,2996,1949,-1,3072,2841,2264,-1,3072,3486,2841,-1,7756,6851,6830,-1,7884,6851,7756,-1,3596,5045,4988,-1,3595,5045,3596,-1,6007,5711,5702,-1,6030,5711,6007,-1,6030,5712,5711,-1,6032,5712,6030,-1,6898,7904,7884,-1,6908,7904,6898,-1,4705,5664,5737,-1,4574,5664,4705,-1,1299,1932,1275,-1,1299,1874,1932,-1,5737,6207,6277,-1,5664,6207,5737,-1,1863,2185,1874,-1,1863,2186,2185,-1,778,134,770,-1,778,127,134,-1,4531,5178,5395,-1,4332,5178,4531,-1,1308,1863,1302,-1,1308,1826,1863,-1,3350,1656,3673,-1,3350,1527,1656,-1,6547,7420,7266,-1,7420,6547,6635,-1,5272,5999,5782,-1,5999,5272,5243,-1,5782,5329,5272,-1,5782,5641,5329,-1,33,631,23,-1,33,617,631,-1,1796,2191,1795,-1,1796,2190,2191,-1,617,163,547,-1,33,163,617,-1,928,1283,547,-1,928,1456,1283,-1,6050,6740,6637,-1,6740,6050,6195,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=32 */
		private int[] getmand_Geo_5_877_normalIndex_32()
		{
			int[] value = {5488,3638,3440,-1,5488,5374,3638,-1,6637,6058,6050,-1,6637,6635,6058,-1,2192,2711,2172,-1,2192,2715,2711,-1,1015,5,1010,-1,1015,30,5,-1,2717,3595,2715,-1,2717,3598,3595,-1,631,1273,640,-1,631,1266,1273,-1,5071,5315,5209,-1,5020,5315,5071,-1,3875,3795,3716,-1,3875,4104,3795,-1,3892,4104,3875,-1,3892,4258,4104,-1,3949,4258,3892,-1,3949,4327,4258,-1,4243,4327,3949,-1,4726,4327,4243,-1,4726,4406,4327,-1,4726,4713,4406,-1,5027,4713,4726,-1,5027,5020,4713,-1,5315,5020,5027,-1,7363,5795,5906,-1,7363,7477,5795,-1,2324,994,2372,-1,2324,1025,994,-1,5121,4641,4664,-1,5123,4641,5121,-1,7526,7924,7998,-1,7461,7924,7526,-1,4641,4474,4477,-1,4643,4474,4641,-1,6576,7793,7612,-1,6576,6658,7793,-1,849,1561,642,-1,849,1659,1561,-1,4477,3831,3789,-1,4474,3831,4477,-1,6877,7446,7461,-1,6874,7446,6877,-1,3831,2348,2383,-1,3742,2348,3831,-1,5645,5146,5689,-1,5645,5110,5146,-1,6902,5746,5633,-1,6902,7190,5746,-1,6874,7336,7446,-1,6769,7336,6874,-1,7874,6781,6628,-1,7750,6781,7874,-1,1513,1172,1327,-1,1513,1463,1172,-1,4577,4186,4435,-1,4606,4186,4577,-1,6781,7506,6642,-1,7506,6781,7750,-1,3936,5503,5544,-1,4045,5503,3936,-1,6574,6844,6146,-1,6574,7358,6844,-1,6091,5217,6065,-1,6091,5335,5217,-1,6642,7035,6672,-1,7035,6642,7506,-1,3510,3551,3319,-1,3510,3698,3551,-1,5334,5335,6091,-1,5334,5094,5335,-1,5366,5208,5004,-1,5366,6146,5208,-1,3865,3698,3510,-1,3865,4014,3698,-1,2776,1701,1651,-1,2776,2483,1701,-1,6300,6722,6099,-1,6300,7035,6722,-1,3698,4281,4143,-1,4014,4281,3698,-1,4089,3236,3443,-1,3236,4089,3941,-1,2479,3158,2595,-1,2479,3187,3158,-1,3721,4289,3416,-1,4388,4289,3721,-1,3158,3807,3275,-1,3957,3807,3158,-1,4833,3941,4089,-1,4833,4856,3941,-1,2799,1561,2684,-1,1558,1561,2799,-1,2684,1659,2595,-1,1561,1659,2684,-1,5843,5071,6099,-1,5020,5071,5843,-1,4104,3865,3487,-1,4104,4258,3865,-1,3716,2776,3875,-1,3716,2483,2776,-1,5366,4880,5609,-1,4791,4880,5366,-1,2872,3564,2406,-1,3736,3564,2872,-1,4506,4304,4595,-1,4506,4386,4304,-1,4022,3721,3315,-1,4022,4103,3721,-1,3154,2757,2390,-1,3154,3315,2757,-1,2908,2320,2108,-1,2320,2908,2752,-1,5898,6642,6672,-1,5898,5757,6642,-1,5069,5675,5889,-1,5069,5340,5675,-1,4159,5340,5069,-1,4159,5090,5340,-1,3729,5090,4159,-1,3815,5090,3729,-1,3809,5090,3815,-1,3809,4824,5090,-1,3841,4824,3809,-1,3841,4355,4824,-1,3654,4355,3841,-1,3579,4355,3654,-1,3579,3681,4355,-1,3579,3657,3681,-1,3140,3528,3517,-1,3167,3528,3140,-1,287,1438,411,-1,1438,287,1099,-1,2311,1524,2256,-1,1524,2311,1315,-1,4912,4512,4927,-1,4912,4370,4512,-1,5144,6145,6239,-1,5100,6145,5144,-1,5831,5033,4990,-1,5997,5033,5831,-1,3281,3834,3400,-1,3281,3836,3834,-1,3873,4940,5100,-1,3927,4940,3873,-1,1550,2256,1524,-1,1550,2395,2256,-1,4912,4276,4370,-1,4945,4276,4912,-1,5100,6029,6145,-1,4940,6029,5100,-1,5997,5124,5033,-1,6060,5124,5997,-1,3282,3836,3281,-1,3282,3722,3836,-1,3196,2226,2150,-1,3269,2226,3196,-1,1633,2395,1550,-1,1633,2616,2395,-1,1335,1543,1383,-1,1543,1335,1444,-1,4588,4331,4297,-1,4597,4331,4588,-1,7067,7791,7729,-1,7067,6923,7791,-1,7800,6678,6717,-1,7585,6678,7800,-1,3612,4511,4846,-1,3410,4511,3612,-1,1900,2616,1633,-1,1900,2687,2616,-1,3330,3740,3277,-1,3330,3682,3740,-1,3302,2245,2215,-1,3313,2245,3302,-1,6110,5270,5167,-1,6220,5270,6110,-1,1702,1900,1405,-1,1702,2094,1900,-1,5852,7051,6882,-1,5606,7051,5852,-1,3420,3578,3347,-1,3420,3512,3578,-1,6829,7653,7677,-1,6829,7000,7653,-1,2004,1498,1612,-1,2004,1911,1498,-1,4772,4449,4335,-1,4885,4449,4772,-1,2902,3420,2750,-1,2902,3473,3420,-1,3683,2669,2040,-1,3766,2669,3683,-1,5606,6996,7051,-1,5506,6996,5606,-1,4885,4501,4449,-1,4977,4501,4885,-1,6929,7677,7563,-1,6929,6829,7677,-1,2004,2335,1911,-1,2426,2335,2004,-1,3369,3213,3402,-1,3369,3130,3213,-1,3766,3071,2669,-1,3734,3071,3766,-1,2426,2451,2335,-1,2500,2451,2426,-1,4977,4561,4501,-1,5102,4561,4977,-1,7563,7003,6929,-1,7147,7003,7563,-1,5360,4796,4657,-1,5392,4796,5360,-1,4838,3610,3244,-1,4838,5238,3610,-1,3020,3418,2978,-1,3020,3389,3418,-1,3734,3085,3071,-1,3924,3085,3734,-1,2451,2775,2744,-1,2775,2451,2500,-1,5102,4701,4561,-1,5031,4701,5102,-1,7147,6584,7003,-1,6475,6584,7147,-1,5392,4824,4796,-1,5090,4824,5392,-1,3654,3389,3020,-1,3654,3841,3389,-1,6584,5370,5288,-1,5370,6584,6475,-1,3586,2775,3678,-1,3586,2744,2775,-1,5031,4601,4701,-1,4745,4601,5031,-1,4472,3734,3766,-1,3734,4472,4657,-1,4276,3111,3221,-1,3111,4276,4221,-1,5634,4912,5617,-1,5634,4945,4912,-1,5821,5263,5219,-1,5821,5927,5263,-1,2891,3400,3179,-1,2891,3281,3400,-1,2916,3330,2839,-1,2916,3333,3330,-1,3981,3616,3274,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=33 */
		private int[] getmand_Geo_5_877_normalIndex_33()
		{
			int[] value = {3981,4070,3616,-1,3822,4743,3706,-1,4691,4743,3822,-1,3722,4760,3836,-1,4698,4760,3722,-1,4998,5679,6162,-1,4760,5679,4998,-1,2891,2134,2751,-1,2452,2134,2891,-1,2594,2916,2470,-1,2594,2942,2916,-1,4951,4718,5508,-1,4718,4951,4443,-1,4689,5883,5979,-1,5883,4689,4560,-1,5634,6497,6549,-1,6497,5634,5617,-1,6652,5927,5821,-1,6652,6766,5927,-1,5081,5092,5215,-1,4904,5092,5081,-1,4904,4384,5092,-1,4447,4384,4904,-1,4184,4384,4447,-1,3881,4384,4184,-1,3763,4384,3881,-1,3763,3810,4384,-1,3661,3810,3763,-1,3656,3810,3661,-1,3656,3481,3810,-1,3601,3481,3656,-1,3476,3481,3601,-1,3401,3481,3476,-1,3401,3349,3481,-1,6202,7102,7010,-1,6376,7102,6202,-1,7102,7623,7368,-1,7177,7623,7102,-1,5245,4571,4947,-1,5245,4877,4571,-1,2233,3044,2359,-1,2233,2964,3044,-1,3979,5000,5169,-1,3844,5000,3979,-1,2418,2596,2334,-1,2418,2698,2596,-1,1400,1005,1556,-1,1400,1195,1005,-1,1114,674,877,-1,1114,901,674,-1,4228,3043,3039,-1,4188,3043,4228,-1,6557,5853,6468,-1,6557,5817,5853,-1,2127,2964,2233,-1,2127,2781,2964,-1,1394,1592,1114,-1,1806,1592,1394,-1,4788,4216,4188,-1,4762,4216,4788,-1,7140,6484,6557,-1,6927,6484,7140,-1,7654,7757,7662,-1,7654,7906,7757,-1,2971,3286,2732,-1,2971,3461,3286,-1,1782,1759,1364,-1,1782,2214,1759,-1,7353,6735,7662,-1,6790,6735,7353,-1,3631,3814,3461,-1,3631,4059,3814,-1,2779,2689,2214,-1,2779,3148,2689,-1,6180,6192,6957,-1,5514,6192,6180,-1,1806,1998,1592,-1,2140,1998,1806,-1,4762,3937,4216,-1,4287,3937,4762,-1,5789,6927,6079,-1,5789,6484,6927,-1,3767,5415,4921,-1,5415,3767,3768,-1,2557,3613,2725,-1,2557,3105,3613,-1,4107,2900,2629,-1,2900,4107,3764,-1,2233,1310,2127,-1,1216,1310,2233,-1,2606,3105,2557,-1,2606,2802,3105,-1,4011,5789,6079,-1,4011,3962,5789,-1,3183,3937,4287,-1,3183,3029,3937,-1,2539,1976,1824,-1,2539,2545,1976,-1,3401,2779,2574,-1,3401,3476,2779,-1,6659,5911,5878,-1,6659,6372,5911,-1,4059,4184,4853,-1,3881,4184,4059,-1,3601,3239,3148,-1,3601,3656,3239,-1,7251,7362,7408,-1,7387,7362,7251,-1,972,263,472,-1,972,301,263,-1,2371,3860,2286,-1,3860,2371,3868,-1,5833,5115,4841,-1,5727,5115,5833,-1,6560,5727,6673,-1,6560,5639,5727,-1,7526,6991,6937,-1,7526,7469,6991,-1,3860,2372,2286,-1,3863,2372,3860,-1,4263,4458,5171,-1,4263,3780,4458,-1,7362,5171,6942,-1,5623,5171,7362,-1,4975,3730,4263,-1,3730,4975,4363,-1,6130,6723,6687,-1,6212,6723,6130,-1,3103,2219,3128,-1,2219,3103,2275,-1,333,199,264,-1,1227,199,333,-1,4479,5083,4790,-1,4479,4573,5083,-1,7579,7987,6941,-1,7579,7614,7987,-1,720,264,785,-1,720,333,264,-1,5201,6214,6212,-1,5130,6214,5201,-1,3188,4123,3136,-1,4123,3188,4115,-1,5831,6751,6833,-1,5831,5708,6751,-1,4927,4537,4820,-1,4927,4512,4537,-1,4218,4541,4547,-1,4218,4123,4541,-1,4448,4499,4738,-1,4499,4448,4154,-1,6162,5430,4998,-1,6162,6586,5430,-1,7579,6751,6728,-1,7579,7869,6751,-1,4499,3817,4746,-1,4499,4154,3817,-1,6212,6738,6723,-1,6212,6214,6738,-1,1234,2219,1137,-1,2219,1234,2274,-1,3316,4029,3555,-1,4029,3316,3640,-1,916,333,720,-1,333,916,597,-1,4479,4115,4199,-1,4479,4397,4115,-1,895,634,890,-1,634,895,651,-1,7496,7294,7301,-1,7496,7515,7294,-1,3908,4704,4722,-1,3772,4704,3908,-1,2692,3007,2773,-1,2692,2947,3007,-1,6577,7632,7720,-1,6426,7632,6577,-1,3603,2509,2718,-1,3457,2509,3603,-1,5480,4866,5384,-1,5480,4905,4866,-1,2692,1647,2515,-1,1647,2692,1815,-1,4776,4539,4498,-1,4797,4539,4776,-1,4557,4077,4170,-1,4571,4077,4557,-1,7220,6364,7198,-1,7220,6515,6364,-1,1122,740,1116,-1,740,1122,806,-1,2181,3457,3153,-1,2181,2509,3457,-1,2334,2804,2515,-1,2334,2596,2804,-1,776,1556,1005,-1,1556,776,1631,-1,3044,3689,3119,-1,3044,3767,3689,-1,4546,3675,3798,-1,3675,4546,4498,-1,2477,1116,2359,-1,2477,1122,1116,-1,5838,5806,5933,-1,5838,5868,5806,-1,5095,3827,5049,-1,5095,3639,3827,-1,5868,6244,5774,-1,6301,6244,5868,-1,5377,5095,5559,-1,5377,4825,5095,-1,6236,6917,6822,-1,6917,6236,6244,-1,550,2330,732,-1,2179,2330,550,-1,3293,3870,3760,-1,3293,3395,3870,-1,751,1298,455,-1,751,1491,1298,-1,3252,3395,3228,-1,3252,3484,3395,-1,1124,751,851,-1,1124,1074,751,-1,1816,2709,1663,-1,1816,2733,2709,-1,3921,2330,2179,-1,3696,2330,3921,-1,3703,2769,2747,-1,3703,3738,2769,-1,5756,5910,5941,-1,5756,5807,5910,-1,7064,7725,7795,-1,7064,7020,7725,-1,5910,5622,5424,-1,5910,5933,5622,-1,7725,6876,6811,-1,7725,7770,6876,-1,3738,2759,2769,-1,3738,3796,2759,-1,5622,5049,5098,-1,5622,5570,5049,-1,5425,3826,3732,-1,3826,5425,5383,-1,1066,2410,1244,-1,1066,2420,2410,-1,3218,3732,3255,-1,3218,3677,3732,-1,325,1066,198,-1,325,1187,1066,-1,7492,7737,7659,-1,7492,7709,7737,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=34 */
		private int[] getmand_Geo_5_877_normalIndex_34()
		{
			int[] value = {7758,7549,7659,-1,7549,7758,7587,-1,898,1264,1399,-1,898,878,1264,-1,717,43,115,-1,43,717,608,-1,158,1578,914,-1,158,1270,1578,-1,246,409,176,-1,246,303,409,-1,437,1120,450,-1,437,1387,1120,-1,5186,3679,3580,-1,5221,3679,5186,-1,1517,183,130,-1,1517,1579,183,-1,2493,2494,2727,-1,2493,2175,2494,-1,2688,3422,3045,-1,2688,3091,3422,-1,6803,6205,6375,-1,6205,6803,6568,-1,6711,6327,6498,-1,6711,6420,6327,-1,4403,3969,3634,-1,4403,4750,3969,-1,7642,7636,7483,-1,7599,7636,7642,-1,7463,7599,7633,-1,7463,7553,7599,-1,7742,7668,7555,-1,7742,7765,7668,-1,6194,7307,6604,-1,6931,7307,6194,-1,7426,6141,7481,-1,7426,5947,6141,-1,7628,7938,7403,-1,7628,7988,7938,-1,7517,7580,7622,-1,7517,7510,7580,-1,7403,7840,7240,-1,7403,7938,7840,-1,7669,7694,7898,-1,7669,7724,7694,-1,7269,6663,6563,-1,7416,6663,7269,-1,7724,7622,7580,-1,7724,7669,7622,-1,7263,7276,7323,-1,7263,7240,7276,-1,7476,6203,6160,-1,7388,6203,7476,-1,7586,7666,7551,-1,7586,7467,7666,-1,7369,7511,7431,-1,7369,7482,7511,-1,7642,7633,7599,-1,7642,7630,7633,-1,5859,6210,5968,-1,5859,6114,6210,-1,3320,2675,2363,-1,2675,3320,3580,-1,3397,3969,4591,-1,3008,3969,3397,-1,2291,2399,2375,-1,2291,2366,2399,-1,7143,6498,6854,-1,7143,6711,6498,-1,4942,4687,5400,-1,4687,4942,4490,-1,4591,4942,5284,-1,4942,4591,4750,-1,1624,2363,2675,-1,2363,1624,1356,-1,4555,6823,4918,-1,6823,5010,6840,-1,5010,6823,4555,-1,5032,5859,5079,-1,5810,5859,5032,-1,2527,2421,2388,-1,2527,2471,2421,-1,7081,7559,7004,-1,7559,7081,7992,-1,2421,2217,2366,-1,2440,2217,2421,-1,1343,4229,1328,-1,4149,4229,1343,-1,4149,7467,7586,-1,7467,4149,3869,-1,3895,7539,7253,-1,7539,3895,4340,-1,4206,2399,2407,-1,4206,3352,2399,-1,7883,7416,7839,-1,7883,7318,7416,-1,7307,7094,6604,-1,7094,7307,7971,-1,404,85,610,-1,404,41,85,-1,176,124,366,-1,124,176,409,-1,1977,471,1204,-1,1977,1714,471,-1,1038,739,733,-1,739,1038,1144,-1,1153,848,1300,-1,848,1153,963,-1,588,155,558,-1,19,155,588,-1,963,1162,875,-1,1162,963,1205,-1,372,249,72,-1,249,372,60,-1,950,1343,880,-1,1277,1343,950,-1,148,329,233,-1,148,202,329,-1,1570,2272,1942,-1,2272,1570,1948,-1,1483,577,1610,-1,577,1483,432,-1,4272,2059,1871,-1,2059,4272,4802,-1,4802,6604,7094,-1,6604,4802,4272,-1,1493,2932,3514,-1,1493,923,2932,-1,2728,317,2756,-1,421,317,2728,-1,3062,5947,2827,-1,6141,5947,3062,-1,3243,892,3123,-1,885,892,3243,-1,1387,3382,1120,-1,1387,3694,3382,-1,7431,7543,7687,-1,7543,7431,7511,-1,239,19,588,-1,19,239,546,-1,1517,1571,1942,-1,1517,1214,1571,-1,3679,3152,2875,-1,3679,3852,3152,-1,1259,2389,1791,-1,1664,2389,1259,-1,7276,7395,7325,-1,7276,7516,7395,-1,7409,7516,7509,-1,7516,7409,7395,-1,7423,6920,7305,-1,6796,6920,7423,-1,6387,6612,6446,-1,6387,6518,6612,-1,6780,6878,6828,-1,6780,6698,6878,-1,2767,4917,4651,-1,2767,3811,4917,-1,6651,6112,6590,-1,6651,6650,6112,-1,1834,2422,2380,-1,2422,1834,1923,-1,6442,6949,6572,-1,6442,6762,6949,-1,7462,7536,7508,-1,7462,7552,7536,-1,2101,1638,1488,-1,2373,1638,2101,-1,1449,1039,1084,-1,1039,1449,1306,-1,7430,7421,7378,-1,7430,7383,7421,-1,7136,7218,7182,-1,7136,7152,7218,-1,7378,7464,7334,-1,7378,7421,7464,-1,7413,7552,7302,-1,7413,7536,7552,-1,1749,2380,2306,-1,1749,1834,2380,-1,752,1271,1154,-1,752,820,1271,-1,2306,1821,1789,-1,2306,2380,1821,-1,1853,1311,1324,-1,1311,1853,1822,-1,2852,3793,3301,-1,3641,3793,2852,-1,2209,2919,2455,-1,2991,2919,2209,-1,6523,5666,5331,-1,5666,6523,6945,-1,1697,149,172,-1,149,1697,1468,-1,4020,2619,4182,-1,4020,3114,2619,-1,5632,5566,6904,-1,5632,4925,5566,-1,2142,1580,2290,-1,1255,1580,2142,-1,5738,4842,4901,-1,5738,5569,4842,-1,5960,2197,2106,-1,5960,6098,2197,-1,3429,2918,3462,-1,2921,2918,3429,-1,623,1954,1642,-1,1319,1954,623,-1,7217,6098,7743,-1,5610,6098,7217,-1,1860,3435,1921,-1,3314,3435,1860,-1,819,346,290,-1,819,398,346,-1,833,398,819,-1,6961,5890,7500,-1,7270,5890,6961,-1,7270,6159,5890,-1,3075,2583,2695,-1,2583,3075,3094,-1,4455,4415,4017,-1,4415,4455,5303,-1,4970,4348,4554,-1,4751,4348,4970,-1,5989,5303,6009,-1,5290,5303,5989,-1,3374,3133,3094,-1,3133,3374,3430,-1,859,150,730,-1,284,150,859,-1,711,1020,515,-1,1118,1020,711,-1,4131,4554,4212,-1,4580,4554,4131,-1,5253,6094,6178,-1,6094,5253,5235,-1,6507,6009,6582,-1,5989,6009,6507,-1,3460,3287,3585,-1,3287,3460,3280,-1,3287,1894,4279,-1,1894,3287,1486,-1,3525,2713,3504,-1,2713,3525,3439,-1,2646,3901,2206,-1,2446,3901,2646,-1,2456,3909,3901,-1,2456,2314,3909,-1,2617,2646,2206,-1,2646,2617,2953,-1,3344,3375,3212,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=35 */
		private int[] getmand_Geo_5_877_normalIndex_35()
		{
			int[] value = {3344,3469,3375,-1,4586,5620,4868,-1,4586,4329,5620,-1,4434,3737,4259,-1,4434,3749,3737,-1,991,2199,2218,-1,991,1290,2199,-1,6945,5354,5666,-1,6945,6925,5354,-1,7029,6828,6878,-1,6828,7029,7088,-1,6501,6630,6502,-1,6630,6501,6629,-1,2392,2062,2252,-1,2392,2238,2062,-1,208,1676,1505,-1,1676,208,942,-1,7699,5842,6760,-1,6054,5842,7699,-1,3627,3862,3419,-1,3862,3627,3930,-1,4023,1505,4928,-1,1505,4023,1719,-1,3947,2700,3388,-1,2700,3947,3381,-1,4925,2882,2760,-1,4925,3913,2882,-1,2797,5937,2345,-1,6054,5937,2797,-1,3930,4893,3862,-1,4424,4893,3930,-1,4202,4424,3930,-1,4020,4424,4202,-1,3355,3238,3575,-1,3465,3238,3355,-1,3858,3567,3955,-1,3858,3462,3567,-1,1480,2455,2110,-1,2209,2455,1480,-1,3955,4768,3858,-1,3955,3630,4768,-1,5960,7743,6098,-1,7809,7743,5960,-1,357,722,635,-1,676,722,357,-1,2422,1958,1881,-1,2413,1958,2422,-1,2953,1029,2646,-1,1753,1029,2953,-1,1223,2713,2367,-1,1223,1921,2713,-1,1928,5890,6159,-1,1928,1576,5890,-1,2954,5082,4455,-1,5082,2954,2567,-1,4259,4888,4434,-1,4751,4888,4259,-1,2314,833,819,-1,833,2314,2456,-1,1424,2070,2013,-1,1424,1488,2070,-1,999,1516,1448,-1,1516,999,1087,-1,686,676,357,-1,676,686,1055,-1,27,468,81,-1,468,27,435,-1,1143,1170,1102,-1,1575,1170,1143,-1,1043,1138,1102,-1,1043,762,1138,-1,6707,6698,6590,-1,6698,6707,6878,-1,6930,7029,6916,-1,6930,7039,7029,-1,6828,6784,6780,-1,6828,6710,6784,-1,938,1751,876,-1,938,1035,1751,-1,7228,6897,7030,-1,7228,7306,6897,-1,7065,6666,6552,-1,7065,6837,6666,-1,6949,7083,6959,-1,7083,6949,7148,-1,6567,6934,6538,-1,6567,6915,6934,-1,6773,7056,7008,-1,7056,6773,6968,-1,6968,7113,7056,-1,7113,6968,6919,-1,2459,1559,1338,-1,2614,1559,2459,-1,6154,6518,6387,-1,6154,6410,6518,-1,566,796,858,-1,566,576,796,-1,1397,1819,1810,-1,1819,1397,1502,-1,2248,1789,1810,-1,1789,2248,2306,-1,7215,6167,6650,-1,7215,6465,6167,-1,3117,6439,5686,-1,6439,3117,3322,-1,4910,3117,3898,-1,3117,4910,4371,-1,6302,4910,5918,-1,4910,6302,6331,-1,3354,4002,3437,-1,3354,3963,4002,-1,3583,2816,2651,-1,3583,3531,2816,-1,6038,6345,6147,-1,6038,6115,6345,-1,5372,5093,5599,-1,5093,5372,5019,-1,4505,3987,4158,-1,4053,3987,4505,-1,4553,5099,4818,-1,5099,4553,4735,-1,4007,4938,5647,-1,4938,4007,4008,-1,3755,4357,3466,-1,3755,4553,4357,-1,3912,4635,5200,-1,4061,4635,3912,-1,824,156,918,-1,114,156,824,-1,65,1022,948,-1,1022,65,157,-1,5677,7243,6293,-1,5677,6391,7243,-1,3169,2934,3591,-1,2736,2934,3169,-1,5554,3431,5481,-1,5554,3571,3431,-1,1107,497,230,-1,497,1107,1183,-1,2015,3268,2028,-1,2015,3038,3268,-1,4978,6017,6081,-1,6017,4978,4991,-1,7910,7982,7981,-1,7910,7950,7982,-1,475,230,497,-1,190,230,475,-1,5285,5706,5698,-1,5706,5285,5981,-1,612,2081,1521,-1,612,1440,2081,-1,5378,5659,6398,-1,5378,3825,5659,-1,7028,6873,7624,-1,6791,6873,7028,-1,3996,5393,5417,-1,5393,3996,3995,-1,6873,5417,7054,-1,5148,5417,6873,-1,1022,2808,2300,-1,1022,1037,2808,-1,2755,4296,3591,-1,2755,4319,4296,-1,4135,4500,4858,-1,4200,4500,4135,-1,3268,5254,4596,-1,3268,5447,5254,-1,7460,7950,7910,-1,7460,6846,7950,-1,5589,7024,5984,-1,5589,6719,7024,-1,5984,6943,5443,-1,5984,7024,6943,-1,5589,5540,6107,-1,5589,4611,5540,-1,2423,2588,2066,-1,2423,2519,2588,-1,5011,4859,5381,-1,5011,4505,4859,-1,6276,6310,6233,-1,6310,6276,6260,-1,1677,1802,1750,-1,1677,1756,1802,-1,5895,6154,6262,-1,6154,5895,6083,-1,1188,1322,1052,-1,1414,1322,1188,-1,2168,2231,1913,-1,2259,2231,2168,-1,3982,5246,5667,-1,3982,4374,5246,-1,2546,2003,2242,-1,2003,2546,2304,-1,1725,2145,1993,-1,1184,2145,1725,-1,6080,5653,5725,-1,6080,5950,5653,-1,3811,4924,4994,-1,4924,3811,3289,-1,3800,2960,4361,-1,3800,2856,2960,-1,2503,3102,2603,-1,2503,2915,3102,-1,1476,1258,1466,-1,1476,1226,1258,-1,1675,1899,2100,-1,1899,1675,1685,-1,6018,6358,5951,-1,6018,6357,6358,-1,1675,1959,1681,-1,1959,1675,1908,-1,2259,2503,2231,-1,2503,2259,2602,-1,6551,5579,5812,-1,6294,5579,6551,-1,1334,2198,1811,-1,1334,1747,2198,-1,7256,7079,7999,-1,7256,6259,7079,-1,6259,6333,5785,-1,6259,7256,6333,-1,7407,6504,6748,-1,7050,6504,7407,-1,4409,5248,4483,-1,5248,4409,5301,-1,1873,2866,3217,-1,1873,1608,2866,-1,1873,1602,1560,-1,1602,1873,1955,-1,3052,2729,3210,-1,2729,3052,2408,-1,5445,1989,2090,-1,1989,5445,5398,-1,3096,2242,2856,-1,2546,2242,3096,-1,6103,5108,5749,-1,6103,5356,5108,-1,5035,3800,4941,-1,5035,3712,3800,-1,4785,5653,4941,-1,4994,5653,4785,-1,6415,6589,5775,-1,6415,7048,6589,-1,5051,6053,5621,-1,6053,5051,6147,-1,4963,3556,5134,-1,4963,2589,3556,-1,4963,3576,2589,-1,258,200,470,-1,258,255,200,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=36 */
		private int[] getmand_Geo_5_877_normalIndex_36()
		{
			int[] value = {3256,6235,5293,-1,3256,3184,6235,-1,6447,5698,5593,-1,5698,6447,5899,-1,4357,4818,4708,-1,4357,4553,4818,-1,5296,5621,5491,-1,5621,5296,5486,-1,3925,3466,3991,-1,3925,3755,3466,-1,4733,5011,4899,-1,4930,5011,4733,-1,6651,6486,6512,-1,6651,6732,6486,-1,6870,6551,6511,-1,6870,7019,6551,-1,5595,5346,5706,-1,5595,5180,5346,-1,5056,4793,5200,-1,4848,4793,5056,-1,5132,4857,4503,-1,5120,4857,5132,-1,6339,5733,5798,-1,5733,6339,6428,-1,2428,2405,2821,-1,2423,2405,2428,-1,1606,1476,1661,-1,1606,1673,1476,-1,980,982,763,-1,980,1052,982,-1,1322,1466,1258,-1,1466,1322,1552,-1,1756,1972,1802,-1,1972,1756,1913,-1,2898,2123,1955,-1,2989,2123,2898,-1,6537,6813,6262,-1,6813,6537,6439,-1,200,298,763,-1,200,3999,298,-1,1882,1094,713,-1,1882,2195,1094,-1,4246,4835,4362,-1,5314,4835,4246,-1,4169,3851,3565,-1,3851,4169,4158,-1,4835,5368,5025,-1,5541,5368,4835,-1,6677,6465,7495,-1,6167,6465,6677,-1,6655,6276,7495,-1,6655,6260,6276,-1,7495,6233,6677,-1,7495,6276,6233,-1,4412,5005,4132,-1,4740,5005,4412,-1,4392,3725,3368,-1,4392,4961,3725,-1,5391,4938,4676,-1,5647,4938,5391,-1,3966,3546,4001,-1,3966,3651,3546,-1,3511,3778,3368,-1,3511,4019,3778,-1,3546,3761,3409,-1,3546,4231,3761,-1,3761,3506,3735,-1,4452,3506,3761,-1,7394,7141,7252,-1,7233,7141,7394,-1,7996,7652,7925,-1,7996,7754,7652,-1,6895,6798,6495,-1,6895,6697,6798,-1,7622,7834,7517,-1,7871,7834,7622,-1,7521,7985,7964,-1,7521,7740,7985,-1,7291,7334,7182,-1,7378,7334,7291,-1,6749,7236,6866,-1,7575,7236,6749,-1,7587,7356,7549,-1,7587,7323,7356,-1,7628,7411,7631,-1,7313,7411,7628,-1,7532,7426,7846,-1,7532,7144,7426,-1,3046,3680,3391,-1,3680,3046,3284,-1,2265,2782,2267,-1,2265,2652,2782,-1,1555,681,34,-1,1555,1291,681,-1,1056,826,670,-1,826,1056,1540,-1,784,1144,1038,-1,1144,784,625,-1,775,430,103,-1,430,775,707,-1,1623,5494,5136,-1,1623,1974,5494,-1,2949,6176,3392,-1,2949,6198,6176,-1,4480,6312,5427,-1,6312,4480,6369,-1,1421,1696,1182,-1,1692,1696,1421,-1,41,372,85,-1,233,372,41,-1,115,775,816,-1,115,43,775,-1,224,176,217,-1,246,176,224,-1,158,19,64,-1,158,155,19,-1,7843,7656,7846,-1,7843,7817,7656,-1,4787,4563,4697,-1,4563,4787,4427,-1,4764,5665,5332,-1,4764,4968,5665,-1,4652,5531,4635,-1,5531,4652,5076,-1,342,203,283,-1,342,275,203,-1,9,308,79,-1,58,308,9,-1,2332,1305,1361,-1,1305,2332,1917,-1,1518,3824,1888,-1,1518,4515,3824,-1,2116,350,2141,-1,2116,556,350,-1,7703,7309,7351,-1,7265,7309,7703,-1,7112,7146,7135,-1,7112,7379,7146,-1,7583,7885,7268,-1,7554,7885,7583,-1,6883,7703,6156,-1,7703,6883,7739,-1,7492,7777,7507,-1,7474,7777,7492,-1,367,197,808,-1,367,221,197,-1,49,813,605,-1,813,49,917,-1,1885,1448,1516,-1,1448,1885,1924,-1,1167,1749,1733,-1,1167,1154,1749,-1,3625,3535,3531,-1,3625,3377,3535,-1,7592,7406,7275,-1,7592,7610,7406,-1,2412,3686,2378,-1,3686,2412,3797,-1,7489,7850,7900,-1,7489,7548,7850,-1,7663,7850,7752,-1,7698,7850,7663,-1,5840,2461,2485,-1,5840,5909,2461,-1,229,188,166,-1,188,229,231,-1,1083,2374,1388,-1,1083,2151,2374,-1,7214,6597,6360,-1,7390,6597,7214,-1,7594,6994,7343,-1,7594,7345,6994,-1,247,422,113,-1,247,564,422,-1,36,201,116,-1,36,122,201,-1,6810,6360,6286,-1,6810,7214,6360,-1,2458,1331,2444,-1,2458,1341,1331,-1,89,1,97,-1,1,89,6,-1,1,147,13,-1,1,152,147,-1,1233,2378,1289,-1,2378,1233,2412,-1,205,32,94,-1,32,205,166,-1,131,32,126,-1,32,131,6,-1,2378,3741,2444,-1,2378,3686,3741,-1,7448,7900,7914,-1,7489,7900,7448,-1,3687,5555,5490,-1,3741,5555,3687,-1,7943,7784,7825,-1,7914,7784,7943,-1,7943,7234,7350,-1,7939,7234,7943,-1,3684,2458,3687,-1,3684,2513,2458,-1,7071,5705,5602,-1,7165,5705,7071,-1,5705,2465,2525,-1,5705,5799,2465,-1,5799,2485,2465,-1,5799,5840,2485,-1,319,909,912,-1,909,319,300,-1,1935,2102,2840,-1,1935,1237,2102,-1,5657,4710,5893,-1,5657,4662,4710,-1,3099,5269,4084,-1,4168,5269,3099,-1,212,2157,476,-1,212,2398,2157,-1,87,565,448,-1,87,90,565,-1,122,348,392,-1,122,36,348,-1,2128,1103,1935,-1,2128,1053,1103,-1,4663,5385,5748,-1,5385,4663,4233,-1,5893,6072,5657,-1,5893,6429,6072,-1,6449,5750,6443,-1,5750,6449,5837,-1,6074,4168,5155,-1,4168,6074,5269,-1,823,2103,2138,-1,705,2103,823,-1,705,1909,2103,-1,611,1909,705,-1,611,1027,1909,-1,621,1027,611,-1,621,802,1027,-1,1269,2102,1237,-1,1269,1425,2102,-1,802,267,253,-1,802,621,267,-1,705,185,300,-1,705,823,185,-1,3106,5003,5002,-1,3106,3107,5003,-1,7917,7123,7295,-1,7864,7123,7917,-1,7161,5655,5779,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=37 */
		private int[] getmand_Geo_5_877_normalIndex_37()
		{
			int[] value = {7161,6964,5655,-1,1096,391,800,-1,391,1096,748,-1,1814,3339,1777,-1,3339,1814,3468,-1,6374,6971,7194,-1,6374,6241,6971,-1,3446,1848,2843,-1,1848,3446,2712,-1,2008,3107,2017,-1,3107,2008,3126,-1,485,195,508,-1,195,485,191,-1,961,2014,960,-1,961,2017,2014,-1,965,243,945,-1,965,129,243,-1,1492,3542,1574,-1,1492,3428,3542,-1,57,215,129,-1,215,57,191,-1,7006,7889,7892,-1,7006,7115,7889,-1,3107,5006,5003,-1,3126,5006,3107,-1,7863,8003,8004,-1,7892,8003,7863,-1,7994,7902,7952,-1,7994,7966,7902,-1,4895,6173,6127,-1,4895,5125,6173,-1,7333,5829,5881,-1,7333,7179,5829,-1,5779,7179,7161,-1,5829,7179,5779,-1,467,945,243,-1,467,969,945,-1,1514,1804,1115,-1,1804,1514,2117,-1,7979,7606,7785,-1,7979,7947,7606,-1,5173,6374,6454,-1,5173,5141,6374,-1,7312,6414,6454,-1,7312,7295,6414,-1,7859,6944,6964,-1,7859,7785,6944,-1,5651,3659,5655,-1,5651,3876,3659,-1,4889,5402,3934,-1,5402,4889,5573,-1,4252,3446,4615,-1,2712,3446,4252,-1,7702,6324,7735,-1,7702,6389,6324,-1,1410,2227,1440,-1,1410,2113,2227,-1,3975,5650,5601,-1,3975,3902,5650,-1,744,213,580,-1,213,744,364,-1,2085,3902,2088,-1,3902,2085,4085,-1,7235,7597,7748,-1,7235,7223,7597,-1,7990,7732,7870,-1,7960,7732,7990,-1,1309,2085,1469,-1,2085,1309,2121,-1,7250,6561,6520,-1,7223,6561,7250,-1,7713,7250,7284,-1,7620,7250,7713,-1,6201,7528,6225,-1,6201,7441,7528,-1,514,714,551,-1,714,514,532,-1,4190,5800,5780,-1,4190,4031,5800,-1,5800,6554,6473,-1,5800,5956,6554,-1,7849,7942,7959,-1,7849,7767,7942,-1,2409,1588,2361,-1,1588,2409,1584,-1,1174,523,1235,-1,1174,532,523,-1,2158,1149,2247,-1,2158,1235,1149,-1,7693,7730,7767,-1,7693,7736,7730,-1,2943,2409,2710,-1,2409,2943,2400,-1,1781,2572,2060,-1,1781,2400,2572,-1,1095,1149,568,-1,1149,1095,1537,-1,6611,6227,5959,-1,6571,6227,6611,-1,7823,7730,7670,-1,7934,7730,7823,-1,2943,4453,2855,-1,2943,4418,4453,-1,2572,3956,3251,-1,2572,2855,3956,-1,2031,1095,1075,-1,1095,2031,2132,-1,6771,6611,6351,-1,7184,6611,6771,-1,7823,7142,7704,-1,7823,7154,7142,-1,3956,5758,5548,-1,3956,5210,5758,-1,5191,5080,4030,-1,5080,5191,5587,-1,6771,7227,6958,-1,6771,7017,7227,-1,3828,5732,3808,-1,5768,5732,3828,-1,5587,6544,6096,-1,6362,6544,5587,-1,7259,7440,7227,-1,7259,7298,7440,-1,4965,5894,4248,-1,6246,5894,4965,-1,7122,6316,7304,-1,7122,6690,6316,-1,5496,6412,6391,-1,5496,5467,6412,-1,5685,7028,7091,-1,5614,7028,5685,-1,0,99,11,-1,0,114,99,-1,5685,2555,2674,-1,5685,5703,2555,-1,161,13,147,-1,161,11,13,-1,3710,5468,5467,-1,3710,3684,5468,-1,7788,7967,7939,-1,7801,7967,7788,-1,1363,396,1386,-1,390,396,1363,-1,1156,475,1110,-1,475,1156,484,-1,960,1999,964,-1,1999,960,2014,-1,8004,7819,7863,-1,8002,7819,8004,-1,1212,484,1156,-1,1212,508,484,-1,4991,6021,6017,-1,5002,6021,4991,-1,7944,7981,8002,-1,7944,7910,7981,-1,5659,6472,6599,-1,6472,5659,5601,-1,7648,7852,7747,-1,7852,7648,7711,-1,7226,7748,7711,-1,7226,7235,7748,-1,7956,7747,7852,-1,7747,7956,7999,-1,3012,3222,2982,-1,5195,5029,5192,-1,3012,3507,3222,-1,3201,3507,3012,-1,3201,3848,3507,-1,3273,3848,3201,-1,3273,4285,3848,-1,3412,4285,3273,-1,3412,4646,4285,-1,3559,4646,3412,-1,3559,4822,4646,-1,4010,4822,3559,-1,4010,5001,4822,-1,4593,5001,4010,-1,4593,5139,5001,-1,5029,5139,4593,-1,5029,5195,5139,-1,2292,1980,2294,-1,1980,2292,1981,-1,194,1100,107,-1,1100,194,1140,-1,4407,5278,5291,-1,4407,4389,5278,-1,5669,3928,5642,-1,3928,5669,3971,-1,2037,1726,1981,-1,1726,2037,1640,-1,1229,1868,1140,-1,1868,1229,2053,-1,4461,5194,4300,-1,5194,4461,5137,-1,2326,2082,2037,-1,2326,2385,2082,-1,1229,637,1370,-1,1229,439,637,-1,3067,4461,2985,-1,4461,3067,4396,-1,6137,6608,6553,-1,6137,6150,6608,-1,3840,2780,3953,-1,2780,3840,2667,-1,2615,2313,2667,-1,2313,2615,2296,-1,1194,795,680,-1,1194,1224,795,-1,3178,4396,3067,-1,4396,3178,4400,-1,6150,6467,6608,-1,6150,6014,6467,-1,3813,2667,3840,-1,2667,3813,2615,-1,2857,2296,2615,-1,2296,2857,2467,-1,1224,1500,795,-1,1224,1615,1500,-1,3337,4400,3178,-1,4400,3337,4356,-1,6014,6101,6467,-1,6014,5709,6101,-1,6101,5195,6317,-1,6101,5139,5195,-1,4593,3899,5321,-1,3899,4593,4010,-1,2204,3201,1978,-1,2204,3273,3201,-1,3222,2597,2009,-1,2597,3222,3507,-1,5038,4822,5434,-1,5038,4646,4822,-1,6695,7603,7641,-1,6695,6614,7603,-1,5440,6135,6281,-1,5312,6135,5440,-1,2842,3670,2825,-1,3670,2842,3846,-1,6614,6177,6043,-1,6695,6177,6614,-1,7344,6614,6585,-1,7603,6614,7344,-1,222,1192,363,-1,222,1090,1192,-1,2876,3846,2842,-1,3846,2876,4055,-1,4113,5037,4055,-1,5037,4113,4886,-1,6585,7069,7344,-1,6585,6591,7069,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=38 */
		private int[] getmand_Geo_5_877_normalIndex_38()
		{
			int[] value = {3168,5017,3621,-1,3168,4644,5017,-1,2178,1718,1774,-1,2178,2075,1718,-1,1045,2047,1051,-1,2047,1045,2130,-1,2356,3248,2130,-1,3248,2356,3161,-1,4811,3621,5017,-1,3621,4811,3049,-1,2075,1572,1718,-1,2075,1988,1572,-1,1344,1572,1646,-1,1230,1572,1344,-1,3161,2271,2817,-1,3161,2356,2271,-1,6701,6413,6640,-1,6701,6487,6413,-1,4828,5505,5070,-1,4828,6117,5505,-1,6487,5942,6413,-1,6487,6061,5942,-1,2966,4126,2817,-1,4126,2966,3958,-1,1344,1883,1257,-1,1344,1944,1883,-1,3649,3958,2966,-1,3958,3649,4043,-1,1944,3200,1883,-1,1944,3224,3200,-1,2835,3557,2586,-1,2835,3633,3557,-1,5505,4752,4668,-1,5505,5612,4752,-1,5830,5007,6084,-1,5830,4985,5007,-1,3958,4522,5163,-1,3958,4043,4522,-1,123,1177,252,-1,1177,123,1108,-1,5646,3982,5667,-1,3982,5646,3932,-1,5648,3932,5646,-1,3932,5648,3935,-1,1980,1724,1982,-1,1724,1980,1723,-1,1100,1844,1108,-1,1844,1100,1841,-1,3426,4924,3289,-1,4924,3426,5055,-1,7695,6730,6704,-1,7836,6730,7695,-1,1772,1028,2056,-1,1772,987,1028,-1,5055,5819,5820,-1,5055,5023,5819,-1,7695,7879,7868,-1,7695,7692,7879,-1,2007,2640,2056,-1,2640,2007,2825,-1,5819,6177,6140,-1,5819,5755,6177,-1,7879,7213,7222,-1,7879,7951,7213,-1,1966,1375,1953,-1,1966,1461,1375,-1,2189,1461,1966,-1,2189,1536,1461,-1,2361,1536,2189,-1,2361,1588,1536,-1,7983,6998,6985,-1,7983,7974,6998,-1,5815,6200,6216,-1,5815,5742,6200,-1,7974,6990,6998,-1,7974,7847,6990,-1,7456,7533,7847,-1,7456,7077,7533,-1,957,1373,636,-1,1334,1373,957,-1,1957,2661,1953,-1,2631,2661,1957,-1,4410,5301,4409,-1,4410,5295,5301,-1,7407,7976,8001,-1,7367,7976,7407,-1,6987,5648,5646,-1,6987,6985,5648,-1,6211,6737,6731,-1,6211,6215,6737,-1,4027,4437,4360,-1,4027,4266,4437,-1,3974,4266,4027,-1,3974,3779,4266,-1,3889,3779,3974,-1,3593,3779,3889,-1,3593,3617,3779,-1,3593,3494,3617,-1,3593,3294,3494,-1,3370,3294,3593,-1,3370,3225,3294,-1,3356,3225,3370,-1,3207,3225,3356,-1,3207,3066,3225,-1,3207,3122,3066,-1,211,524,282,-1,524,211,644,-1,7525,6977,7012,-1,7525,7365,6977,-1,3518,3331,3502,-1,3331,3518,3359,-1,1413,8,1317,-1,8,1413,83,-1,2642,4322,2636,-1,4322,2642,4242,-1,2308,1427,1348,-1,2308,2316,1427,-1,3324,4197,3305,-1,4041,4197,3324,-1,5619,4214,5682,-1,4214,5619,4176,-1,162,540,83,-1,540,162,549,-1,6653,5619,6758,-1,5619,6653,5668,-1,3353,2893,2858,-1,3353,3423,2893,-1,814,503,1127,-1,814,395,503,-1,6653,7157,6842,-1,6758,7157,6653,-1,3164,2285,2434,-1,3164,3139,2285,-1,3423,2787,2893,-1,3423,3396,2787,-1,3139,2250,2285,-1,3139,3036,2250,-1,1253,2468,1238,-1,2468,1253,2508,-1,704,1496,1430,-1,704,1112,1496,-1,6199,5847,6528,-1,5847,6199,5690,-1,3396,2676,2787,-1,3396,3335,2676,-1,6343,6683,6309,-1,6665,6683,6343,-1,1704,2508,1253,-1,2508,1704,2625,-1,4675,5109,5275,-1,4675,4486,5109,-1,2427,1960,2677,-1,1496,1960,2427,-1,3193,3709,3191,-1,3615,3709,3193,-1,4486,4521,5109,-1,4486,4137,4521,-1,2812,3861,2625,-1,3861,2812,3720,-1,5077,4058,4748,-1,4250,4058,5077,-1,4723,5407,5323,-1,4723,4836,5407,-1,4584,4680,5249,-1,4584,4278,4680,-1,4041,4814,4836,-1,4814,4041,3933,-1,3904,3147,3833,-1,3904,3164,3147,-1,4283,3077,2907,-1,4283,3922,3077,-1,3305,2263,3324,-1,2098,2263,3305,-1,3077,2890,2431,-1,3077,3329,2890,-1,2983,2812,2159,-1,2812,2983,3283,-1,3980,3744,4137,-1,3980,3674,3744,-1,2427,3122,2397,-1,2427,3066,3122,-1,3615,3889,4278,-1,3615,3593,3889,-1,2677,3066,2427,-1,2677,3225,3066,-1,4360,5643,5453,-1,5643,4360,4437,-1,3191,3000,3193,-1,3191,2794,3000,-1,6275,5407,5528,-1,5407,6275,6352,-1,2285,1362,1222,-1,1362,2285,2250,-1,4756,4050,4048,-1,4756,4879,4050,-1,1797,1261,1768,-1,1797,1265,1261,-1,4855,5680,5739,-1,4855,4829,5680,-1,4829,5718,5680,-1,4829,4792,5718,-1,328,1512,318,-1,328,1519,1512,-1,4255,2904,4124,-1,4255,2860,2904,-1,2012,1180,2169,-1,1180,2012,1134,-1,4804,3874,4861,-1,3874,4804,3786,-1,4792,5611,5718,-1,4792,4686,5611,-1,6425,4639,6550,-1,4639,6425,4775,-1,1337,1857,1332,-1,1857,1337,1983,-1,3411,2972,3459,-1,2972,3411,2880,-1,5560,6671,6634,-1,5560,5871,6671,-1,1337,251,1240,-1,1337,218,251,-1,4111,4426,4381,-1,4111,4421,4426,-1,6806,6460,6371,-1,6953,6460,6806,-1,1286,218,1460,-1,218,1286,251,-1,4696,3700,4728,-1,3700,4696,3672,-1,1897,1082,1950,-1,1082,1897,939,-1,6623,5871,5928,-1,6671,5871,6623,-1,4421,4423,4426,-1,4421,4589,4423,-1,6371,6600,6806,-1,6371,6105,6600,-1,5928,6508,6623,-1,5928,5803,6508,-1,4681,3672,4696,-1,3672,4681,3666,-1,1790,939,1897,-1,939,1790,1003,-1,6600,5948,6379,-1,6600,6307,5948,-1,1072,321,953,-1,1072,386,321,-1,4648,5258,5320,-1,4648,4581,5258,-1,2136,355,327,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=39 */
		private int[] getmand_Geo_5_877_normalIndex_39()
		{
			int[] value = {2124,355,2136,-1,6006,5763,6392,-1,5763,6006,5478,-1,3118,2738,3223,-1,2738,3118,2664,-1,5258,5662,5908,-1,5258,5103,5662,-1,3522,2786,3561,-1,2786,3522,2746,-1,2505,3752,2338,-1,3752,2505,4051,-1,3027,2664,3118,-1,2664,3027,2592,-1,447,2136,327,-1,2136,447,2393,-1,5578,5478,6006,-1,5478,5578,5287,-1,4051,4730,4782,-1,4051,4431,4730,-1,5390,5103,5026,-1,5662,5103,5390,-1,307,1007,234,-1,1007,307,992,-1,4344,3497,4414,-1,3497,4344,3448,-1,1712,1078,1738,-1,1078,1712,1001,-1,5408,5585,5670,-1,5408,5336,5585,-1,1497,2770,992,-1,2770,1497,3157,-1,5234,5176,5511,-1,5176,5234,5008,-1,2974,2554,2903,-1,2554,2974,2638,-1,2333,811,1307,-1,811,2333,2119,-1,1968,2720,1420,-1,1968,2846,2720,-1,4321,5008,5234,-1,5008,4321,4133,-1,3296,2638,2974,-1,2638,3296,3078,-1,4236,3561,4282,-1,3522,3561,4236,-1,4775,3637,4639,-1,3724,3637,4775,-1,3054,2236,2370,-1,3054,3040,2236,-1,2649,2078,2746,-1,2649,1884,2078,-1,4715,5257,5113,-1,4715,4714,5257,-1,4661,5050,5088,-1,4661,4682,5050,-1,3306,4081,4185,-1,4081,3306,3151,-1,3308,4277,3298,-1,4262,4277,3308,-1,2474,1512,1519,-1,2474,2386,1512,-1,2874,1768,2860,-1,2874,1797,1768,-1,5257,5928,5871,-1,5257,5237,5928,-1,5336,5050,5036,-1,5050,5336,5408,-1,2502,3151,2501,-1,3047,3151,2502,-1,3253,2124,2136,-1,3253,3449,2124,-1,2236,1460,2370,-1,2236,1286,1460,-1,1884,1241,2078,-1,1884,1014,1241,-1,3983,4204,3727,-1,3983,5199,4204,-1,4034,5199,3983,-1,4338,5199,4034,-1,4338,5397,5199,-1,4632,5397,4338,-1,4817,5397,4632,-1,4974,5397,4817,-1,4974,5462,5397,-1,5213,5462,4974,-1,5401,5462,5213,-1,5444,5462,5401,-1,5452,5462,5444,-1,5452,5466,5462,-1,1635,3291,1808,-1,3291,1635,3141,-1,639,227,385,-1,639,466,227,-1,6181,4844,5834,-1,4844,6181,4958,-1,3051,2152,2381,-1,3051,2763,2152,-1,7380,6889,6793,-1,7232,6889,7380,-1,1744,2823,1603,-1,2823,1744,3004,-1,5373,5310,5405,-1,5373,5276,5310,-1,6880,6819,6999,-1,6880,6643,6819,-1,6793,7104,7380,-1,6793,6694,7104,-1,6052,4958,6181,-1,4958,6052,4954,-1,2805,2152,2763,-1,2152,2805,2187,-1,675,1081,1080,-1,675,868,1081,-1,7104,6418,6892,-1,7104,6541,6418,-1,4783,3820,4954,-1,3820,4783,3788,-1,2187,1528,1451,-1,2187,2225,1528,-1,1086,345,671,-1,1086,250,345,-1,4161,4544,4711,-1,4161,4192,4544,-1,5588,5794,6245,-1,5588,5318,5794,-1,4078,3165,4238,-1,3165,4078,2701,-1,1508,1288,1901,-1,1508,671,1288,-1,5087,4850,5318,-1,5087,4758,4850,-1,1080,1933,1813,-1,1080,1081,1933,-1,6139,6418,6541,-1,6418,6139,6013,-1,3788,4757,4062,-1,3788,4783,4757,-1,2225,2222,1528,-1,2225,2778,2222,-1,2873,4234,2559,-1,4292,4234,2873,-1,4292,5300,5227,-1,4292,4390,5300,-1,3165,2079,3110,-1,3165,2129,2079,-1,5365,3713,4780,-1,3886,3713,5365,-1,5644,6793,6889,-1,6793,5644,5776,-1,5474,5462,5835,-1,5474,5397,5462,-1,3727,1933,3983,-1,1813,1933,3727,-1,3711,4632,3366,-1,3711,4817,4632,-1,5466,6013,6139,-1,6013,5466,5452,-1,4527,4078,4827,-1,4078,4527,4260,-1,1840,2873,1360,-1,3108,2873,1840,-1,2129,889,2079,-1,2129,1313,889,-1,1268,2789,2926,-1,1268,1199,2789,-1,3299,3144,1901,-1,3144,3299,3823,-1,4346,4721,4342,-1,4758,4721,4346,-1,146,600,172,-1,600,146,1061,-1,2619,1012,2575,-1,2619,990,1012,-1,5721,6904,7047,-1,5632,6904,5721,-1,3491,2889,3155,-1,3491,3343,2889,-1,244,1446,282,-1,244,1371,1446,-1,1067,2575,1012,-1,2575,1067,2636,-1,4140,3503,4145,-1,3503,4140,3502,-1,3739,4683,4270,-1,4683,3739,4222,-1,2213,2833,1061,-1,3540,2833,2213,-1,5224,3643,4270,-1,5224,4973,3643,-1,1798,2888,1876,-1,2888,1798,2800,-1,5738,6868,6802,-1,5738,5792,6868,-1,6186,7217,7289,-1,6102,7217,6186,-1,393,1276,358,-1,393,1193,1276,-1,3429,3806,3516,-1,3429,3690,3806,-1,1265,328,1261,-1,1265,548,328,-1,4861,6089,5986,-1,4812,6089,4861,-1,3235,2169,2237,-1,3235,3011,2169,-1,3553,3968,3757,-1,3968,3553,3849,-1,5855,4861,5986,-1,4861,5855,4804,-1,3757,4446,4254,-1,3757,3968,4446,-1,4408,3915,4636,-1,3915,4408,3747,-1,2237,1276,2331,-1,2237,1254,1276,-1,3234,2870,2988,-1,3226,2870,3234,-1,2874,4171,2800,-1,2874,4220,4171,-1,6868,7717,7865,-1,6778,7717,6868,-1,4446,5162,4890,-1,4677,5162,4446,-1,4812,3806,4809,-1,4812,3880,3806,-1,7116,6094,6189,-1,7109,6094,7116,-1,487,1024,506,-1,487,1021,1024,-1,1808,3215,1878,-1,3215,1808,3291,-1,4999,5062,4996,-1,4999,5065,5062,-1,284,803,377,-1,284,859,803,-1,7170,6507,7257,-1,6507,7170,6615,-1,4552,3758,4402,-1,3758,4552,3838,-1,4614,5196,5065,-1,4614,4670,5196,-1,7076,6189,6367,-1,7116,6189,7076,-1,506,1064,466,-1,506,1024,1064,-1,3452,3051,3100,-1,3452,3432,3051,-1,789,377,803,-1,377,789,554,-1,7170,6838,6615,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=40 */
		private int[] getmand_Geo_5_877_normalIndex_40()
		{
			int[] value = {7170,7232,6838,-1,4844,3838,4552,-1,3838,4844,3920,-1,5196,5405,5198,-1,5196,5373,5405,-1,3055,4308,3433,-1,4235,4308,3055,-1,3280,2697,2777,-1,3280,3220,2697,-1,4326,6373,4353,-1,4326,6292,6373,-1,1585,3425,1408,-1,3433,3425,1585,-1,2162,1708,1778,-1,2162,2137,1708,-1,2453,2956,2909,-1,2956,2453,2438,-1,1708,1090,1013,-1,1708,1760,1090,-1,2269,2634,2343,-1,2453,2634,2269,-1,5543,6706,6826,-1,5543,5485,6706,-1,4242,4777,4322,-1,4242,4703,4777,-1,4703,4766,4907,-1,4703,4607,4766,-1,7557,7155,7278,-1,7557,7255,7155,-1,4766,5302,5382,-1,4766,4744,5302,-1,6881,5976,7155,-1,6881,5915,5976,-1,6350,6683,6933,-1,6350,6188,6683,-1,5976,4301,5676,-1,5976,4566,4301,-1,4264,3199,4294,-1,4264,3146,3199,-1,2252,1839,1833,-1,2252,2201,1839,-1,987,1728,942,-1,987,1772,1728,-1,2073,2201,2092,-1,2073,2162,2201,-1,987,232,1028,-1,280,232,987,-1,6135,5247,5980,-1,6135,5312,5247,-1,2438,2073,2362,-1,2438,2203,2073,-1,4741,4182,4268,-1,4182,4741,4694,-1,7810,6760,6938,-1,6760,7810,7699,-1,4741,4981,4993,-1,4741,4777,4981,-1,7810,7455,7706,-1,7810,7680,7455,-1,4270,5202,5224,-1,4683,5202,4270,-1,5586,6826,6938,-1,5586,5543,6826,-1,2636,4268,2575,-1,2636,4322,4268,-1,5596,4993,5586,-1,5091,4993,5596,-1,169,1028,232,-1,169,894,1028,-1,4180,2931,4209,-1,4180,2956,2931,-1,5980,5239,6025,-1,5980,5247,5239,-1,1778,1201,1839,-1,1778,1132,1201,-1,1201,208,1175,-1,1201,280,208,-1,2560,2062,2548,-1,2560,2092,2062,-1,6025,5262,6078,-1,6025,5239,5262,-1,4301,3691,4076,-1,3691,4301,3833,-1,4744,5275,5302,-1,4744,4675,5275,-1,6514,6933,7255,-1,6514,6350,6933,-1,4064,4607,4130,-1,4064,4523,4607,-1,5485,6514,6706,-1,5485,5382,6514,-1,4981,5485,5543,-1,4981,4907,5485,-1,7278,7680,7557,-1,7680,7278,7455,-1,2235,1774,1760,-1,2235,2178,1774,-1,4644,2909,4367,-1,4644,3168,2909,-1,2269,2137,2203,-1,2269,2235,2137,-1,4367,5312,5440,-1,5312,4367,4180,-1,1064,2697,2671,-1,2697,1064,1024,-1,5500,6839,6712,-1,6839,5500,5535,-1,4353,3500,4326,-1,3493,3500,4353,-1,4465,4884,4834,-1,4465,4308,4884,-1,7076,6999,7224,-1,7076,6880,6999,-1,4153,4794,4670,-1,4153,3961,4794,-1,6482,5501,6247,-1,5501,6482,5834,-1,4884,5644,5535,-1,4884,4953,5644,-1,2529,1490,1641,-1,2529,2381,1490,-1,4153,4614,4230,-1,4614,4153,4670,-1,6373,7374,7224,-1,6292,7374,6373,-1,5062,5479,5316,-1,5062,5198,5479,-1,3452,3133,3430,-1,3133,3452,3100,-1,6247,5290,5989,-1,5290,6247,5501,-1,4834,5535,5500,-1,4834,4884,5535,-1,2618,1641,1741,-1,2618,2529,1641,-1,4230,4580,4131,-1,4580,4230,4614,-1,1118,706,996,-1,1118,711,706,-1,6292,7361,7374,-1,6365,7361,6292,-1,3606,3285,3516,-1,3606,3235,3285,-1,7289,6089,6186,-1,7093,6089,7289,-1,4365,3849,4129,-1,4365,3968,3849,-1,4460,4855,4873,-1,4478,4855,4460,-1,548,1279,593,-1,548,1265,1279,-1,3747,3509,3915,-1,3747,3467,3509,-1,5598,4636,6817,-1,4408,4636,5598,-1,2429,1519,1353,-1,2474,1519,2429,-1,3553,2988,3259,-1,3553,3234,2988,-1,3459,3011,3463,-1,3011,3459,2972,-1,4129,4603,4365,-1,4129,4120,4603,-1,88,1180,181,-1,88,1254,1180,-1,3874,3606,3880,-1,3606,3874,3463,-1,7063,7279,6914,-1,7093,7279,7063,-1,4460,4217,4171,-1,4217,4460,4464,-1,721,623,20,-1,623,721,593,-1,4747,3806,3690,-1,4747,4809,3806,-1,7901,7764,7858,-1,7764,7901,7865,-1,4873,4464,4460,-1,4901,4464,4873,-1,3739,2382,2833,-1,3739,3028,2382,-1,4973,7132,7034,-1,4973,5224,7132,-1,3028,2495,2382,-1,2495,3028,3087,-1,5631,7047,7012,-1,5721,7047,5631,-1,8,533,622,-1,533,8,480,-1,2889,2364,2251,-1,2889,2885,2364,-1,3503,4134,4145,-1,3482,4134,3503,-1,7540,7479,7314,-1,7540,7132,7479,-1,622,574,757,-1,574,622,533,-1,1371,149,1255,-1,149,1371,244,-1,3940,4239,4377,-1,3940,4114,4239,-1,1288,2926,3014,-1,1288,1268,2926,-1,2911,2701,3568,-1,2091,2701,2911,-1,2671,850,1064,-1,2671,2243,850,-1,4850,4528,5230,-1,4850,4404,4528,-1,5426,4645,5469,-1,5426,4602,4645,-1,5444,5455,5862,-1,5455,5444,5401,-1,2778,4034,2222,-1,2778,4338,4034,-1,5199,3906,4204,-1,4898,3906,5199,-1,5880,6340,6694,-1,6340,5880,5896,-1,5184,5068,6116,-1,4827,5068,5184,-1,4827,4238,5068,-1,4078,4238,4827,-1,3202,2243,2671,-1,3202,3166,2243,-1,4235,5043,4953,-1,4235,4234,5043,-1,3906,4390,3108,-1,4898,4390,3906,-1,2844,3711,3366,-1,2844,3232,3711,-1,5862,5681,6204,-1,5681,5862,5455,-1,5300,5835,5896,-1,5300,5474,5835,-1,5426,5794,5230,-1,6226,5794,5426,-1,4544,4721,5034,-1,4544,4377,4721,-1,345,1199,1268,-1,345,351,1199,-1,6361,6643,6226,-1,6819,6643,6361,-1,5276,5087,5310,-1,5276,5034,5087,-1,1744,3086,3004,-1,1744,1508,3086,-1,6116,6819,6361,-1,6616,6819,6116,-1,3232,2805,3209,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=41 */
		private int[] getmand_Geo_5_877_normalIndex_41()
		{
			int[] value = {2805,3232,2844,-1,6204,6052,6610,-1,6052,6204,5681,-1,5227,5896,5880,-1,5227,5300,5896,-1,966,1451,868,-1,966,1545,1451,-1,3820,3125,3774,-1,3125,3820,3209,-1,7162,6610,6863,-1,7162,6892,6610,-1,3886,3166,3713,-1,3166,3886,3110,-1,5656,6245,6386,-1,5656,5588,6245,-1,3961,4711,4794,-1,3961,4161,4711,-1,250,788,385,-1,788,250,1086,-1,966,1490,1545,-1,789,1490,966,-1,3774,3432,3920,-1,3432,3774,3125,-1,788,1635,904,-1,1635,788,1603,-1,3713,3202,3493,-1,3202,3713,3166,-1,639,996,706,-1,996,639,904,-1,2333,1951,2673,-1,1951,2333,1307,-1,2182,1329,2239,-1,2182,1354,1329,-1,3306,2501,3151,-1,3306,2393,2501,-1,3298,2030,3308,-1,3298,2023,2030,-1,4105,4724,4033,-1,4724,4105,5067,-1,5542,5164,5088,-1,5164,5542,5803,-1,5560,4837,5113,-1,5476,4837,5560,-1,3237,4120,3058,-1,4173,4120,3237,-1,3449,4293,4315,-1,4293,3449,3253,-1,4598,4724,5036,-1,4598,4387,4724,-1,4720,5164,5237,-1,4720,4665,5164,-1,2611,2673,1951,-1,2611,2914,2673,-1,2935,2182,2239,-1,2935,2786,2182,-1,3124,2386,2474,-1,3124,3093,2386,-1,4575,3782,4863,-1,3776,3782,4575,-1,4073,3336,4267,-1,3203,3336,4073,-1,3723,3295,4302,-1,3295,3723,3399,-1,2502,2635,3278,-1,2502,1539,2635,-1,4629,4164,4671,-1,4629,4195,4164,-1,1968,1001,1712,-1,1001,1968,1420,-1,4302,3448,4344,-1,3448,4302,3295,-1,5026,5223,5390,-1,5026,4983,5223,-1,1307,307,1014,-1,307,1307,811,-1,863,2393,447,-1,2393,863,2501,-1,2903,2592,3027,-1,2592,2903,2554,-1,5511,5287,5578,-1,5287,5511,5176,-1,3336,2746,3522,-1,2746,3336,2649,-1,4600,4633,4530,-1,4600,4590,4633,-1,992,2505,1007,-1,2505,992,2770,-1,5542,5670,6093,-1,5542,5408,5670,-1,1738,1185,1680,-1,1185,1738,1078,-1,4414,3552,4599,-1,3552,4414,3497,-1,234,953,321,-1,953,234,1007,-1,6307,5344,5948,-1,6307,5920,5344,-1,4485,4530,4581,-1,4485,4600,4530,-1,4599,3666,4681,-1,3666,4599,3552,-1,5803,6093,6508,-1,5803,5542,6093,-1,1680,1003,1790,-1,1003,1680,1185,-1,4589,4485,4423,-1,4589,4673,4485,-1,3561,2935,3776,-1,2935,3561,2786,-1,5320,5908,6105,-1,5320,5258,5908,-1,3223,2836,3405,-1,2836,3223,2738,-1,6392,5793,6471,-1,5793,6392,5763,-1,355,2030,279,-1,2030,355,2124,-1,4594,5320,5387,-1,4594,4648,5320,-1,2120,3088,2010,-1,3088,2120,3539,-1,3776,3040,3782,-1,3040,3776,2935,-1,279,2023,228,-1,2023,279,2030,-1,3405,2880,3411,-1,2880,3405,2836,-1,5784,6471,5793,-1,5784,6562,6471,-1,6543,4775,6425,-1,4775,6543,4863,-1,4686,5387,5611,-1,4686,4594,5387,-1,2010,3019,1983,-1,3019,2010,3088,-1,6562,5855,6702,-1,5855,6562,5784,-1,1950,1134,2012,-1,1134,1950,1082,-1,4728,3786,4804,-1,3786,4728,3700,-1,318,1460,218,-1,318,1512,1460,-1,6496,6953,7086,-1,6496,6460,6953,-1,4111,4382,4124,-1,4382,4111,4381,-1,5476,6634,6914,-1,5476,5560,6634,-1,4382,4829,4467,-1,4829,4382,4792,-1,1332,1768,1261,-1,1768,1332,1857,-1,5013,6550,4639,-1,5013,6565,6550,-1,7598,6778,6705,-1,7717,6778,7598,-1,4255,4478,4220,-1,4478,4255,4467,-1,4680,4027,4891,-1,4027,4680,3974,-1,1925,2111,2431,-1,1925,1342,2111,-1,4879,5256,5674,-1,4756,5256,4879,-1,5608,5475,5249,-1,5475,5608,6143,-1,4891,4360,5453,-1,4891,4027,4360,-1,4266,4150,5131,-1,4150,4266,3779,-1,3406,3294,2910,-1,3406,3494,3294,-1,3000,3207,3356,-1,3000,2641,3207,-1,5241,4284,5529,-1,5241,4210,4284,-1,3720,3674,3980,-1,3720,3599,3674,-1,1906,2764,2937,-1,1906,1739,2764,-1,2547,1380,1413,-1,2547,2434,1380,-1,2098,3540,2213,-1,3305,3540,2098,-1,4058,3036,3139,-1,4058,4250,3036,-1,4222,4723,4683,-1,4723,4222,4197,-1,3791,4584,4736,-1,4584,3791,3709,-1,4814,5475,5528,-1,4814,4736,5475,-1,4566,3833,4301,-1,3904,3833,4566,-1,4756,4283,5256,-1,3922,4283,4756,-1,5529,5977,5241,-1,6309,5977,5529,-1,4016,3406,3335,-1,4016,3693,3406,-1,1856,2397,2641,-1,1856,1430,2397,-1,3335,2910,2676,-1,3335,3406,2910,-1,3861,4450,3952,-1,4450,3861,4299,-1,3036,2111,2250,-1,3036,2907,2111,-1,3853,4737,4016,-1,3853,4556,4737,-1,6143,6104,6545,-1,6143,5608,6104,-1,3952,4523,4064,-1,4523,3952,4450,-1,494,601,237,-1,601,494,815,-1,1127,704,1160,-1,1127,503,704,-1,6275,6545,6842,-1,6275,6143,6545,-1,1238,2569,1133,-1,2569,1238,2468,-1,3219,4041,3324,-1,3933,4041,3219,-1,2316,1398,1427,-1,2316,2358,1398,-1,4240,3520,4176,-1,3520,4240,3582,-1,1133,2642,1130,-1,2642,1133,2569,-1,3147,2434,2547,-1,3147,3164,2434,-1,6758,7365,7157,-1,6977,7365,6758,-1,644,395,814,-1,644,211,395,-1,3359,2858,2881,-1,3359,3353,2858,-1,540,1067,480,-1,1067,540,1130,-1,2881,2364,2885,-1,2364,2881,2308,-1,4140,5682,4214,-1,4140,5631,5682,-1,3305,4222,3540,-1,4197,4222,3305,-1,1446,2308,1348,-1,1446,2364,2308,-1,7367,7983,7976,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=42 */
		private int[] getmand_Geo_5_877_normalIndex_42()
		{
			int[] value = {7367,7377,7983,-1,5295,5814,5813,-1,5295,5291,5814,-1,6987,5667,6992,-1,6987,5646,5667,-1,5828,6211,6234,-1,5828,5813,6211,-1,1375,636,1373,-1,1375,580,636,-1,6388,4330,4333,-1,6388,6354,4330,-1,2631,1811,2542,-1,2631,1957,1811,-1,6200,6553,6718,-1,6200,6137,6553,-1,6736,7456,7391,-1,6736,6718,7456,-1,5291,5815,5814,-1,5291,5278,5815,-1,6737,7391,7377,-1,6737,6736,7391,-1,2761,4189,2680,-1,4394,4189,2761,-1,7550,6462,6354,-1,7550,7621,6462,-1,2661,4693,2743,-1,4330,4693,2661,-1,6700,7641,7692,-1,6700,6695,7641,-1,3670,5023,3472,-1,5023,3670,4997,-1,7222,6135,5980,-1,7222,7213,6135,-1,6131,6700,6704,-1,6131,6140,6700,-1,3426,2640,3472,-1,3426,2353,2640,-1,7231,7932,7868,-1,7163,7932,7231,-1,5725,6131,6080,-1,5725,5820,6131,-1,2950,4410,2963,-1,4410,2950,4407,-1,1146,123,1157,-1,123,1146,107,-1,2704,2295,2702,-1,2295,2704,2294,-1,2702,2304,2734,-1,2304,2702,2295,-1,1844,3015,1945,-1,3015,1844,2963,-1,1724,1184,1725,-1,1184,1724,1157,-1,5744,5104,5917,-1,5744,4929,5104,-1,5030,5942,6061,-1,5942,5030,4979,-1,4439,3611,5070,-1,3611,4439,3890,-1,2490,3380,2281,-1,2490,3464,3380,-1,3345,2731,2282,-1,2731,3345,3619,-1,2586,2036,2232,-1,2036,2586,2490,-1,2731,2817,2271,-1,2817,2731,2966,-1,5576,5744,6044,-1,5576,5163,5744,-1,6242,5942,5612,-1,6242,6413,5942,-1,6242,5972,6366,-1,5972,6242,6117,-1,5923,6252,6240,-1,5923,6044,6252,-1,1382,1257,1667,-1,1382,879,1257,-1,2232,1988,2417,-1,1988,2232,2036,-1,2549,2312,2832,-1,2312,2549,2417,-1,6640,7242,6701,-1,7057,7242,6640,-1,1045,879,1382,-1,1045,531,879,-1,1278,363,1192,-1,363,1278,531,-1,2832,2343,2634,-1,2343,2832,2312,-1,6334,5745,6341,-1,5745,6334,5796,-1,5538,6028,5988,-1,5538,5526,6028,-1,2130,2876,2047,-1,2876,2130,3248,-1,2135,1051,2047,-1,2135,1002,1051,-1,7106,7933,7705,-1,7364,7933,7106,-1,5988,5571,5538,-1,6043,5571,5988,-1,4997,5571,5755,-1,4997,4946,5571,-1,2007,1002,2135,-1,2007,894,1002,-1,7951,7364,7213,-1,7951,7933,7364,-1,5709,5139,6101,-1,5709,5001,5139,-1,3848,4356,3337,-1,4356,3848,4285,-1,1615,2982,1500,-1,1615,3012,2982,-1,3559,2467,2857,-1,2467,3559,3412,-1,5192,6133,6382,-1,6133,5192,5029,-1,6792,6382,7032,-1,6792,6317,6382,-1,5206,5434,5649,-1,5206,5038,5434,-1,2009,2207,1549,-1,2207,2009,2597,-1,1986,1978,1734,-1,1986,2204,1978,-1,5321,3813,5448,-1,3813,5321,3899,-1,6569,5515,6789,-1,5515,6569,5448,-1,5267,5649,5740,-1,5267,5206,5649,-1,1549,2002,1368,-1,2002,1549,2207,-1,2020,1734,1745,-1,2020,1986,1734,-1,2385,2020,2082,-1,2385,2313,2020,-1,6789,5433,6656,-1,5433,6789,5515,-1,5137,5740,5683,-1,5137,5267,5740,-1,1247,680,637,-1,1247,1194,680,-1,1640,1247,1044,-1,1640,1773,1247,-1,3953,2745,3971,-1,2745,3953,2780,-1,3026,4389,2962,-1,4389,3026,4300,-1,1044,194,1136,-1,194,1044,439,-1,2745,2292,2699,-1,2292,2745,2326,-1,5278,5742,5815,-1,5278,5194,5742,-1,1868,2950,1841,-1,2950,1868,2962,-1,1726,1146,1723,-1,1146,1726,1136,-1,3928,2704,3935,-1,2704,3928,2699,-1,7837,7595,7624,-1,7595,7837,7801,-1,7550,7956,7937,-1,7550,7518,7956,-1,3825,2113,3975,-1,2227,2113,3825,-1,6599,7226,7346,-1,6599,6472,7226,-1,7460,6027,6071,-1,7366,6027,7460,-1,6850,7819,7761,-1,6861,7819,6850,-1,195,52,193,-1,195,53,52,-1,7944,7357,7366,-1,7944,7969,7357,-1,6021,6911,6861,-1,6021,6033,6911,-1,193,45,190,-1,45,193,52,-1,6027,3120,3023,-1,6027,5938,3120,-1,7595,7078,7091,-1,7595,7577,7078,-1,6412,7234,7204,-1,6412,6407,7234,-1,2484,1386,2513,-1,2484,1363,1386,-1,689,99,827,-1,99,689,91,-1,413,161,390,-1,413,142,161,-1,2674,824,2624,-1,824,2674,827,-1,7243,7967,7923,-1,7243,7204,7967,-1,3804,2484,3710,-1,3804,2522,2484,-1,5758,6423,5548,-1,6481,6423,5758,-1,7359,7304,7649,-1,7359,7122,7304,-1,6555,7119,7017,-1,6835,7119,6555,-1,6037,5191,4654,-1,6037,6224,5191,-1,5768,6037,5732,-1,5894,6037,5768,-1,5894,6224,6037,-1,6246,6224,5894,-1,6246,6362,6224,-1,6246,6544,6362,-1,6423,6544,6246,-1,6423,6835,6544,-1,6481,6835,6423,-1,6690,6835,6481,-1,6690,7119,6835,-1,7122,7119,6690,-1,7122,7259,7119,-1,7359,7259,7122,-1,7359,7298,7259,-1,6096,6351,5788,-1,6351,6096,6555,-1,3251,4248,2788,-1,3251,4965,4248,-1,7154,7440,7649,-1,7154,7009,7440,-1,7009,7605,6958,-1,7670,7605,7009,-1,5788,4337,5080,-1,5959,4337,5788,-1,1359,2788,2277,-1,1359,2060,2788,-1,4453,6394,5210,-1,4453,6457,6394,-1,6377,7704,6457,-1,6377,7794,7704,-1,7605,7293,7184,-1,7736,7293,7605,-1,2563,4524,2247,-1,4524,2563,4337,-1,590,1359,1075,-1,590,952,1359,-1,1781,817,1584,-1,817,1781,952,-1,7942,7794,7833,-1,7942,7934,7794,-1,6554,7293,7272,-1,6554,6571,7293,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=43 */
		private int[] getmand_Geo_5_877_normalIndex_43()
		{
			int[] value = {523,590,568,-1,523,478,590,-1,817,514,791,-1,514,817,478,-1,4257,2680,4189,-1,2680,4257,2710,-1,7284,7693,7713,-1,7284,7272,7693,-1,2158,4031,2074,-1,4031,2158,4215,-1,1174,2121,1309,-1,2121,1174,2074,-1,1588,837,1536,-1,837,1588,791,-1,7870,7959,7990,-1,7870,7849,7959,-1,7870,7597,7620,-1,7732,7597,7870,-1,5780,4085,4190,-1,5790,4085,5780,-1,551,669,364,-1,669,551,714,-1,7860,7960,7937,-1,7860,7732,7960,-1,6561,5650,5790,-1,6480,5650,6561,-1,669,1377,453,-1,1377,669,1469,-1,580,370,636,-1,213,370,580,-1,1377,2113,1410,-1,2113,1377,2088,-1,5402,6005,6241,-1,5402,5573,6005,-1,5762,5182,4630,-1,5762,5564,5182,-1,4015,2164,2220,-1,2164,4015,3883,-1,6964,5651,5655,-1,6944,5651,6964,-1,5651,3882,3876,-1,5651,5495,3882,-1,7979,7917,7909,-1,7979,7984,7917,-1,1804,3468,1814,-1,3468,1804,3149,-1,7312,7867,7909,-1,7312,7194,7867,-1,1367,766,748,-1,766,1367,1320,-1,3307,5173,3149,-1,5173,3307,5141,-1,800,269,573,-1,800,391,269,-1,5938,3092,3120,-1,5881,3092,5938,-1,1777,3170,1886,-1,3170,1777,3339,-1,7864,7115,7123,-1,7889,7115,7864,-1,7333,7969,7968,-1,7333,7357,7969,-1,6033,7006,6911,-1,6090,7006,6033,-1,5006,6127,6090,-1,5006,4895,6127,-1,7952,8003,7994,-1,7968,8003,7952,-1,1492,485,1284,-1,1492,528,485,-1,573,215,528,-1,215,573,269,-1,1886,3126,2008,-1,3126,1886,3170,-1,3092,1212,3120,-1,1212,3092,1284,-1,961,57,1019,-1,961,53,57,-1,1320,2220,2164,-1,1320,1367,2220,-1,7735,7867,7702,-1,7947,7867,7735,-1,3934,5141,3307,-1,5141,3934,5402,-1,766,969,467,-1,969,766,1115,-1,3659,1574,3542,-1,1574,3659,1755,-1,7966,7859,7902,-1,7966,7984,7859,-1,300,611,705,-1,611,300,319,-1,2138,4084,4451,-1,2138,2103,4084,-1,2266,4662,2165,-1,2266,4710,4662,-1,2138,906,823,-1,2138,1269,906,-1,2244,1269,2138,-1,2244,1688,1269,-1,2266,1688,2244,-1,2266,2165,1688,-1,6443,5269,6074,-1,5269,6443,5750,-1,6429,5837,6449,-1,5837,6429,5893,-1,5657,5748,5385,-1,5657,6072,5748,-1,2128,2840,2920,-1,2840,2128,1935,-1,734,1053,392,-1,1053,734,1103,-1,448,36,87,-1,348,36,448,-1,90,476,565,-1,90,212,476,-1,5837,4451,5750,-1,5837,4620,4451,-1,4233,4094,5385,-1,4233,3171,4094,-1,185,1103,734,-1,1103,185,420,-1,253,911,756,-1,911,253,267,-1,2525,657,2507,-1,2525,624,657,-1,7165,5799,5705,-1,7275,5799,7165,-1,5602,7078,7071,-1,5602,5703,7078,-1,5468,6431,6407,-1,5468,5490,6431,-1,7664,7788,7825,-1,7577,7788,7664,-1,6431,7448,7350,-1,6490,7448,6431,-1,7784,7592,7639,-1,7715,7592,7784,-1,6516,5555,5533,-1,6516,6490,5555,-1,1331,326,1289,-1,326,1331,374,-1,89,509,94,-1,509,89,624,-1,326,188,360,-1,326,126,188,-1,1386,383,1341,-1,383,1386,396,-1,657,91,689,-1,657,97,91,-1,383,131,374,-1,383,152,131,-1,113,212,90,-1,212,113,422,-1,7100,7527,7073,-1,7100,7457,7527,-1,2151,900,2184,-1,2151,1083,900,-1,231,92,116,-1,231,229,92,-1,5909,2510,2461,-1,5909,5797,2510,-1,7752,7457,7663,-1,7752,7527,7457,-1,3545,5326,5551,-1,3545,3477,5326,-1,445,1233,360,-1,1233,445,1388,-1,205,564,247,-1,205,697,564,-1,7343,7610,7594,-1,7406,7610,7343,-1,6605,7390,7548,-1,6605,6597,7390,-1,5533,6605,6516,-1,5533,5477,6605,-1,5703,2507,2555,-1,5703,5602,2507,-1,7900,7698,7715,-1,7900,7850,7698,-1,2576,2816,2959,-1,2541,2816,2576,-1,4452,3511,3506,-1,4452,4019,3511,-1,1271,1923,1834,-1,1271,1381,1923,-1,1737,2852,2065,-1,1737,2498,2852,-1,902,1079,1032,-1,1079,902,753,-1,79,534,9,-1,534,79,170,-1,694,275,342,-1,694,257,275,-1,488,516,304,-1,516,488,587,-1,521,489,1113,-1,489,521,488,-1,7135,7831,7885,-1,7066,7831,7135,-1,7905,7830,7927,-1,7905,7813,7830,-1,7329,7066,7438,-1,7392,7066,7329,-1,7507,7683,7502,-1,7507,7777,7683,-1,308,2141,350,-1,2141,308,1628,-1,5135,1888,3824,-1,1888,5135,2396,-1,835,1664,1259,-1,835,1089,1664,-1,179,324,283,-1,179,304,324,-1,529,1089,835,-1,1089,529,831,-1,482,260,186,-1,260,482,277,-1,6492,5593,5422,-1,6447,5593,6492,-1,5867,6441,5954,-1,6441,5867,5858,-1,4697,5332,4787,-1,5332,4697,4764,-1,4968,5603,5665,-1,4968,4695,5603,-1,7555,7844,7742,-1,7555,7817,7844,-1,558,249,588,-1,366,249,558,-1,1106,365,173,-1,365,1106,1404,-1,875,1111,908,-1,875,1162,1111,-1,124,66,72,-1,100,66,124,-1,5494,7569,5136,-1,5494,7816,7569,-1,3756,1023,3392,-1,3756,1113,1023,-1,6602,3929,6663,-1,6602,3227,3929,-1,625,1248,1144,-1,625,682,1248,-1,125,1106,816,-1,1106,125,330,-1,2447,2112,1553,-1,2447,4325,2112,-1,944,442,995,-1,408,442,944,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=44 */
		private int[] getmand_Geo_5_877_normalIndex_44()
		{
			int[] value = {511,878,898,-1,511,423,878,-1,7559,6888,7327,-1,7559,6840,6888,-1,6243,4976,5961,-1,4976,6243,5629,-1,210,416,798,-1,416,210,130,-1,2965,1730,1596,-1,2965,3034,1730,-1,6825,7684,7037,-1,7684,6825,7167,-1,7167,7666,7684,-1,7297,7666,7167,-1,7263,7501,7210,-1,7619,7501,7263,-1,7844,7481,7388,-1,7844,7843,7481,-1,7509,7430,7409,-1,7465,7430,7509,-1,7342,7682,7188,-1,7797,7682,7342,-1,7568,7630,7642,-1,7630,7568,7672,-1,7476,7742,7844,-1,7476,7930,7742,-1,7878,7671,7673,-1,7878,7543,7671,-1,7484,7341,7508,-1,7484,7417,7341,-1,1306,4298,3964,-1,1449,4298,1306,-1,3535,2602,2959,-1,3101,2602,3535,-1,4096,2651,3576,-1,4096,3583,2651,-1,1837,2095,2442,-1,2095,1837,2293,-1,1837,3451,2293,-1,1837,3777,3451,-1,6326,5421,4481,-1,5421,6326,6380,-1,6440,5421,6655,-1,6440,4568,5421,-1,3271,3384,3214,-1,3384,3271,3538,-1,5719,6115,5599,-1,6115,5719,6345,-1,779,470,836,-1,779,544,470,-1,1636,1325,1898,-1,1188,1325,1636,-1,2096,1626,1705,-1,1626,2096,1870,-1,1685,1682,1899,-1,1685,1414,1682,-1,818,836,896,-1,779,836,818,-1,1862,1590,1690,-1,1661,1590,1862,-1,5886,5930,5812,-1,5886,5858,5930,-1,5174,5099,4899,-1,5099,5174,5261,-1,6262,5873,5895,-1,6262,6417,5873,-1,5406,5166,5472,-1,5406,5107,5166,-1,6209,5422,5074,-1,6209,6492,5422,-1,4697,4742,4852,-1,4742,4697,4563,-1,2552,930,672,-1,2861,930,2552,-1,3381,4294,3199,-1,3381,4369,4294,-1,1423,980,858,-1,980,1423,1325,-1,5951,6345,5719,-1,6345,5951,6358,-1,5491,5126,5296,-1,5126,5491,5362,-1,6648,5035,5950,-1,6648,3894,5035,-1,4516,1989,5398,-1,4516,2145,1989,-1,2859,2546,3096,-1,3065,2546,2859,-1,3618,4789,4470,-1,3618,4483,4789,-1,5420,7050,5707,-1,6504,7050,5420,-1,1747,3127,2198,-1,1747,2772,3127,-1,6234,5749,5828,-1,6103,5749,6234,-1,7175,6992,6295,-1,7175,8001,6992,-1,5785,4398,4559,-1,5785,6333,4398,-1,504,1521,1947,-1,504,612,1521,-1,2603,3394,2387,-1,3394,2603,3102,-1,5858,6076,5930,-1,6076,5858,5867,-1,5951,3926,6018,-1,3926,5951,5134,-1,1681,1690,1590,-1,1681,1959,1690,-1,2408,1959,2729,-1,1959,2408,1690,-1,5398,6956,6975,-1,5398,5445,6956,-1,7836,6648,6730,-1,7836,6477,6648,-1,3982,3065,4374,-1,2734,3065,3982,-1,4483,3015,4409,-1,4483,3618,3015,-1,1177,2551,2090,-1,1945,2551,1177,-1,982,1226,896,-1,982,1258,1226,-1,2100,1972,2317,-1,2100,1899,1972,-1,6357,6256,6410,-1,6256,6357,6018,-1,6486,5930,6076,-1,5930,6486,6511,-1,1052,1258,982,-1,1052,1322,1258,-1,1913,2317,1972,-1,1913,2231,2317,-1,2423,2200,2405,-1,2066,2200,2423,-1,4864,2936,4611,-1,2936,4864,2670,-1,7079,4987,6935,-1,4125,4987,7079,-1,3483,5981,5285,-1,5981,3483,5378,-1,2511,3569,3050,-1,2511,2588,3569,-1,2536,1107,2670,-1,2536,1183,1107,-1,7080,5436,6674,-1,5481,5436,7080,-1,3431,2273,2049,-1,2273,3431,3571,-1,5056,4857,4848,-1,4503,4857,5056,-1,2049,1016,948,-1,2049,2273,1016,-1,5436,4532,5489,-1,5436,3867,4532,-1,1440,3483,2081,-1,3483,1440,2227,-1,7648,7024,7346,-1,7648,6943,7024,-1,45,979,98,-1,964,979,45,-1,5722,3064,3143,-1,3064,5722,6071,-1,6879,7761,7766,-1,7761,6879,6850,-1,1999,3038,2015,-1,3097,3038,1999,-1,98,1285,1213,-1,98,979,1285,-1,6674,7766,7080,-1,6879,7766,6674,-1,1203,2706,918,-1,1203,2707,2706,-1,428,1473,1037,-1,1482,1473,428,-1,157,0,142,-1,0,157,65,-1,948,156,65,-1,948,1016,156,-1,7923,6293,7243,-1,7923,6976,6293,-1,2706,5614,2624,-1,2706,5562,5614,-1,4857,5489,4532,-1,4857,5254,5489,-1,4562,4004,5371,-1,3897,4004,4562,-1,4899,4429,4733,-1,4899,4735,4429,-1,6115,5541,5314,-1,6115,6038,5541,-1,3258,3994,3214,-1,3993,3994,3258,-1,4742,5296,5126,-1,4742,5107,5296,-1,2915,3708,3102,-1,3185,3708,2915,-1,4371,6326,4481,-1,4371,6297,6326,-1,5268,5754,6112,-1,5754,5268,3898,-1,4568,6984,6813,-1,6984,4568,6440,-1,967,1877,1035,-1,967,1858,1877,-1,3417,3439,3525,-1,3439,3417,4119,-1,1119,81,468,-1,1119,1088,81,-1,1822,3905,3668,-1,1822,1853,3905,-1,796,1154,1167,-1,1154,796,752,-1,1822,1397,1311,-1,1822,1879,1397,-1,2072,1733,2248,-1,1423,1733,2072,-1,6256,4463,6184,-1,6256,4508,4463,-1,2188,1677,1587,-1,1677,2188,2180,-1,6073,5271,5244,-1,6073,5963,5271,-1,6721,6222,6919,-1,6721,6073,6222,-1,6629,6814,6630,-1,6629,6801,6814,-1,6636,6538,6572,-1,6567,6538,6636,-1,6721,6455,6263,-1,6455,6721,6968,-1,7023,7065,7088,-1,7023,6837,7065,-1,876,2006,1346,-1,876,1751,2006,-1,6762,7148,6949,-1,6762,7008,7148,-1,3060,3419,2975,-1,3060,3627,3419,-1,1087,1737,1516,-1,1087,1346,1737,-1,2948,2954,3340,-1,2948,1858,2954,-1,75,793,616,-1,793,75,111,-1,2413,2101,1958,-1,2413,2441,2101,-1,3916,4348,3885,-1,4116,4348,3916,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=45 */
		private int[] getmand_Geo_5_877_normalIndex_45()
		{
			int[] value = {1657,5890,1576,-1,5591,5890,1657,-1,5441,1830,1478,-1,5441,5352,1830,-1,2478,819,954,-1,819,2478,2314,-1,3375,2695,3297,-1,3075,2695,3375,-1,2446,1029,746,-1,1029,2446,2646,-1,1349,2013,1937,-1,1424,2013,1349,-1,910,1448,1381,-1,999,1448,910,-1,884,2218,2558,-1,884,991,2218,-1,5990,2143,2024,-1,5990,6064,2143,-1,1954,4513,5228,-1,4513,1954,2336,-1,3950,3156,4274,-1,3360,3156,3950,-1,3156,1580,3714,-1,2290,1580,3156,-1,1849,5666,5354,-1,1849,2347,5666,-1,3238,2990,3360,-1,3238,3371,2990,-1,3784,5842,3648,-1,5063,5842,3784,-1,1865,5717,5482,-1,5717,1865,2048,-1,3371,3465,3442,-1,3371,3238,3465,-1,2392,2975,2238,-1,2392,3060,2975,-1,1676,4466,4755,-1,2258,4466,1676,-1,5091,5063,4893,-1,5063,5091,5596,-1,1833,1719,2340,-1,1719,1833,1175,-1,2700,3199,2548,-1,2700,3381,3199,-1,1829,2072,1819,-1,1898,2072,1829,-1,7083,7023,7039,-1,7023,7083,7030,-1,6502,6532,6446,-1,6630,6532,6502,-1,1829,1502,1587,-1,1829,1819,1502,-1,6703,5354,6925,-1,5354,6703,5292,-1,4274,4290,3950,-1,4290,4274,4181,-1,686,2106,2197,-1,2106,686,592,-1,3916,3485,3424,-1,3916,3885,3485,-1,3737,3068,3485,-1,3068,3737,3567,-1,2314,3972,3909,-1,3972,2314,2478,-1,5118,3972,4119,-1,5118,2614,3972,-1,2142,2990,3155,-1,2142,2290,2990,-1,4582,5992,3585,-1,6287,5992,4582,-1,4465,4582,4279,-1,4582,4465,4834,-1,290,1021,487,-1,290,346,1021,-1,7149,7361,7500,-1,7361,7149,7109,-1,4970,4996,4972,-1,4996,4970,4999,-1,1878,3314,1860,-1,3215,3314,1878,-1,7500,6365,6961,-1,7361,6365,7500,-1,2583,1741,1665,-1,1741,2583,2618,-1,4402,3731,4415,-1,3758,3731,4402,-1,1020,1921,1223,-1,1921,1020,1860,-1,6009,4455,5082,-1,5303,4455,6009,-1,3581,3374,3162,-1,3581,3731,3374,-1,6582,5441,7338,-1,6582,5352,5441,-1,6178,5294,5253,-1,6178,5464,5294,-1,4554,4116,4212,-1,4554,4348,4116,-1,6064,7809,5960,-1,6064,7858,7809,-1,1876,3230,2336,-1,2888,3230,1876,-1,393,1411,1179,-1,393,20,1411,-1,6102,4768,5322,-1,4747,4768,6102,-1,5865,7901,5990,-1,7901,5865,6802,-1,4901,4504,4464,-1,4901,4842,4504,-1,3442,3491,3371,-1,3491,3442,3482,-1,7540,5937,7746,-1,7540,5717,5937,-1,2347,600,757,-1,2347,1849,600,-1,4763,1449,1859,-1,4763,4298,1449,-1,2991,3417,2919,-1,3417,2991,3195,-1,1657,137,81,-1,1657,1576,137,-1,4376,3950,4290,-1,3950,4376,3575,-1,1751,2980,2006,-1,2762,2980,1751,-1,1488,1838,2070,-1,1488,1638,1838,-1,2441,2373,2101,-1,2441,2657,2373,-1,2980,3048,3479,-1,2980,2726,3048,-1,3668,1879,1822,-1,1879,3668,3570,-1,7131,7300,7152,-1,7290,7300,7131,-1,7464,7508,7536,-1,7464,7484,7508,-1,7334,7536,7413,-1,7464,7536,7334,-1,7383,7465,7305,-1,7383,7430,7465,-1,2617,974,1761,-1,974,2617,1426,-1,6688,6572,6538,-1,6442,6572,6688,-1,7499,7252,7349,-1,7394,7252,7499,-1,7417,6573,7341,-1,6617,6573,7417,-1,6915,6501,6824,-1,6915,6567,6501,-1,7394,7552,7462,-1,7499,7552,7394,-1,6320,7418,6384,-1,6320,7290,7418,-1,3905,1937,4147,-1,3905,1853,1937,-1,6589,5905,5775,-1,6288,5905,6589,-1,6710,6288,6784,-1,6288,6710,6264,-1,2767,3289,3811,-1,3289,2767,2276,-1,6184,4473,6356,-1,4463,4473,6184,-1,7218,7459,7348,-1,7459,7218,7396,-1,1128,1361,1305,-1,1361,1128,1296,-1,7396,7657,7459,-1,7657,7396,7400,-1,7240,7516,7276,-1,7840,7516,7240,-1,7356,7442,7422,-1,7442,7356,7325,-1,1326,1624,1794,-1,1326,1475,1624,-1,872,202,981,-1,872,329,202,-1,950,1421,1639,-1,950,1507,1421,-1,1483,3694,1387,-1,1483,3903,3694,-1,3123,6267,6160,-1,6267,3123,3382,-1,6203,3062,3243,-1,6203,6141,3062,-1,5947,2756,2827,-1,5947,5856,2756,-1,2728,5849,2932,-1,5761,5849,2728,-1,1871,3514,4272,-1,1871,1493,3514,-1,4666,1604,4786,-1,4666,1639,1604,-1,995,1162,944,-1,1111,1162,995,-1,217,375,224,-1,375,217,449,-1,64,1270,158,-1,64,855,1270,-1,690,855,64,-1,690,847,855,-1,1692,1198,1696,-1,1198,1692,981,-1,224,442,220,-1,442,224,375,-1,260,140,330,-1,260,257,140,-1,303,220,432,-1,303,246,220,-1,971,596,82,-1,596,971,1109,-1,95,438,436,-1,95,288,438,-1,288,598,438,-1,288,552,598,-1,872,847,690,-1,1544,847,872,-1,1198,750,1215,-1,750,1198,296,-1,6849,5849,5761,-1,6931,5849,6849,-1,7927,6951,7905,-1,7927,6808,6951,-1,7539,7673,7671,-1,7539,7588,7673,-1,6936,3688,3592,-1,6936,6587,3688,-1,4229,7586,7497,-1,7586,4229,4149,-1,1260,3895,968,-1,4340,3895,1260,-1,7164,7192,7107,-1,7164,7483,7192,-1,6223,5961,4976,-1,6223,6469,5961,-1,6692,4918,6823,-1,6692,5327,4918,-1,3372,2363,2038,-1,3372,3320,2363,-1,6205,6405,6114,-1,6568,6405,6205,-1,6469,6667,6495,-1,6223,6667,6469,-1,6871,6848,6854,-1,6871,7327,6848,-1,607,1695,1793,-1,1695,607,34,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=46 */
		private int[] getmand_Geo_5_877_normalIndex_46()
		{
			int[] value = {2328,2831,3082,-1,2644,2831,2328,-1,4142,4403,4037,-1,4142,4490,4403,-1,6016,5186,5968,-1,5221,5186,6016,-1,2527,2493,2792,-1,2388,2493,2527,-1,6405,6871,6395,-1,6405,7004,6871,-1,5284,5400,6042,-1,5400,5284,4942,-1,1669,3563,1695,-1,3563,1669,3397,-1,1699,34,607,-1,1699,1151,34,-1,2647,2884,2965,-1,2884,2647,2376,-1,7553,7636,7599,-1,7389,7636,7553,-1,7555,7434,7613,-1,7555,7668,7434,-1,7532,7656,7347,-1,7846,7656,7532,-1,7839,7834,7883,-1,7834,7839,7797,-1,7988,7962,7980,-1,7988,7628,7962,-1,6176,6951,6808,-1,6176,6198,6951,-1,125,76,186,-1,103,76,125,-1,7667,7619,7798,-1,7667,7501,7619,-1,7938,7925,7840,-1,7938,7996,7925,-1,7501,7564,7375,-1,7667,7564,7501,-1,6607,7754,7740,-1,6607,6686,7754,-1,7497,7551,7790,-1,7586,7551,7497,-1,7790,7588,7497,-1,7588,7790,7673,-1,7511,7630,7543,-1,7511,7633,7630,-1,2297,2682,1721,-1,2803,2682,2297,-1,6327,5968,6210,-1,6327,6016,5968,-1,6857,6375,6338,-1,6375,6857,6803,-1,1215,1493,1871,-1,1493,1215,750,-1,2366,2407,2399,-1,2217,2407,2366,-1,1579,1942,2272,-1,1942,1579,1517,-1,2328,1736,1291,-1,2630,1736,2328,-1,3444,4706,4875,-1,4706,3444,3563,-1,70,421,373,-1,317,421,70,-1,511,854,526,-1,670,854,511,-1,7153,3869,4666,-1,7153,7467,3869,-1,608,82,43,-1,971,82,608,-1,1144,829,739,-1,829,1144,1248,-1,946,1111,995,-1,946,1155,1111,-1,761,115,173,-1,115,761,717,-1,1429,1613,1569,-1,1613,1429,1399,-1,7694,7659,7737,-1,7659,7694,7758,-1,835,106,529,-1,835,399,106,-1,4363,3921,3030,-1,4305,3921,4363,-1,2469,3009,2420,-1,2469,3022,3009,-1,301,305,263,-1,301,198,305,-1,3304,3009,3255,-1,2912,3009,3304,-1,7770,6989,6876,-1,7770,7842,6989,-1,3796,2696,2759,-1,3796,3827,2696,-1,1987,778,770,-1,1987,2029,778,-1,6164,5838,5807,-1,6164,6231,5838,-1,4881,3796,3738,-1,4881,5098,3796,-1,6836,6164,6169,-1,6836,6811,6164,-1,5459,4881,4800,-1,5459,5424,4881,-1,1934,770,844,-1,1934,1987,770,-1,1352,1074,1124,-1,1352,1323,1074,-1,3319,3484,3252,-1,3319,3551,3484,-1,1663,2622,1491,-1,1663,2709,2622,-1,2033,732,2330,-1,2033,851,732,-1,2622,3098,2524,-1,2622,3228,3098,-1,3022,3293,3218,-1,3022,3098,3293,-1,1187,455,1298,-1,325,455,1187,-1,5774,5663,5741,-1,5774,5825,5663,-1,6917,7842,7780,-1,7842,6917,6989,-1,5559,5806,5741,-1,5806,5559,5570,-1,6301,6876,6989,-1,6876,6301,6231,-1,5233,6978,5311,-1,6981,6978,5233,-1,3798,1717,1668,-1,1717,3798,3675,-1,5342,4776,5311,-1,5342,4797,4776,-1,3594,4570,4550,-1,4570,3594,3689,-1,1647,1125,1622,-1,1125,1647,929,-1,2633,3323,2806,-1,2633,3204,3323,-1,1757,1164,1390,-1,1535,1164,1757,-1,6426,7505,7632,-1,6529,7505,6426,-1,5624,4905,5480,-1,5624,4947,4905,-1,3772,4860,4704,-1,3829,4860,3772,-1,776,890,634,-1,776,929,890,-1,2804,2944,2947,-1,2804,2806,2944,-1,4572,4170,4244,-1,4557,4170,4572,-1,2018,1390,1499,-1,1757,1390,2018,-1,7150,6364,6266,-1,7198,6364,7150,-1,2944,3421,3005,-1,2944,3387,3421,-1,7010,6129,6202,-1,7010,6887,6129,-1,4716,4498,4546,-1,4776,4498,4716,-1,1815,2773,1910,-1,1815,2692,2773,-1,3192,1920,1818,-1,3192,3188,1920,-1,2122,3112,1227,-1,3112,2122,2848,-1,1099,138,242,-1,138,1099,287,-1,3537,3783,3837,-1,3537,3517,3783,-1,4761,4537,4487,-1,4761,4820,4537,-1,6586,4931,5430,-1,6941,4931,6586,-1,3363,1227,3112,-1,3363,1197,1227,-1,4931,7249,5183,-1,4931,6941,7249,-1,3179,3640,3316,-1,3179,3400,3640,-1,4487,3746,4245,-1,4083,3746,4487,-1,2021,1301,943,-1,2150,1301,2021,-1,4761,4245,4448,-1,4761,4487,4245,-1,4795,4541,4397,-1,4990,4541,4795,-1,916,2021,943,-1,2021,916,1920,-1,1197,145,199,-1,1197,242,145,-1,6687,7453,7385,-1,6723,7453,6687,-1,5654,6862,6728,-1,5654,5874,6862,-1,1903,3192,1818,-1,3192,1903,3250,-1,138,1207,109,-1,138,1137,1207,-1,5116,3837,5201,-1,5116,3787,3837,-1,6689,5623,7362,-1,6689,5516,5623,-1,4914,4363,4975,-1,4914,4305,4363,-1,4497,4653,4664,-1,4497,4496,4653,-1,522,994,481,-1,994,522,959,-1,7723,7857,7477,-1,7723,7762,7857,-1,5121,4653,5115,-1,5121,4664,4653,-1,4496,4510,4653,-1,4496,4526,4510,-1,691,959,522,-1,959,691,1104,-1,7016,7469,7427,-1,6991,7469,7016,-1,7861,7762,7877,-1,7857,7762,7861,-1,3661,3631,3276,-1,3661,3763,3631,-1,5215,6372,6815,-1,5215,5092,6372,-1,7156,5926,5765,-1,7156,7101,5926,-1,4570,6529,6426,-1,6529,4570,4921,-1,2820,3349,2535,-1,3481,3349,2820,-1,2140,2553,1998,-1,2562,2553,2140,-1,3665,4631,5232,-1,3665,3365,4631,-1,5514,4273,6192,-1,3801,4273,5514,-1,2099,1976,2156,-1,2099,1679,1976,-1,3635,1556,1631,-1,1556,3635,3159,-1,5765,4892,4830,-1,5765,5926,4892,-1,2964,3707,3768,-1,2964,2781,3707,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=47 */
		private int[] getmand_Geo_5_877_normalIndex_47()
		{
			int[] value = {3707,4900,5147,-1,4900,3707,3613,-1,5232,5159,5786,-1,5232,4631,5159,-1,2550,3211,3240,-1,2550,2325,3211,-1,1824,1679,1474,-1,1824,1976,1679,-1,1782,2535,2574,-1,2535,1782,1644,-1,3239,2971,2917,-1,3239,3276,2971,-1,4853,6397,4915,-1,4853,6123,6397,-1,7654,6372,6659,-1,6815,6372,7654,-1,2689,2698,2418,-1,2689,2917,2698,-1,3814,5000,3844,-1,3814,4915,5000,-1,4892,3764,4107,-1,4832,3764,4892,-1,5817,5159,5197,-1,5786,5159,5817,-1,3043,2325,1956,-1,3211,2325,3043,-1,1310,1474,1679,-1,1474,1310,901,-1,7140,7399,7296,-1,7140,7014,7399,-1,5245,4788,4877,-1,5197,4788,5245,-1,1828,1394,1165,-1,1956,1394,1828,-1,7775,7101,7156,-1,7906,7101,7775,-1,1622,1364,1759,-1,1364,1622,1125,-1,2732,3204,2633,-1,2732,3286,3204,-1,7623,7906,7775,-1,7757,7906,7623,-1,6468,5624,6515,-1,6468,5853,5624,-1,4077,3039,3153,-1,4228,3039,4077,-1,7547,7156,6939,-1,7775,7156,7547,-1,7547,7301,7368,-1,7547,7496,7301,-1,6059,6988,6696,-1,6988,6059,6121,-1,5769,6717,6678,-1,6717,5769,5773,-1,4743,5613,5869,-1,5613,4743,4691,-1,4760,5957,5679,-1,5957,4760,4698,-1,2879,2958,2685,-1,2879,3274,2958,-1,2205,2771,2077,-1,2205,2839,2771,-1,2274,3128,2219,-1,3128,2274,3140,-1,4537,4035,4253,-1,4537,4512,4035,-1,3682,4689,3740,-1,4560,4689,3682,-1,4136,4847,3917,-1,4951,4847,4136,-1,2771,3282,2751,-1,2771,3277,3282,-1,6059,5360,6121,-1,6059,5392,5360,-1,5769,4957,5773,-1,5769,5072,4957,-1,4512,3361,4035,-1,3361,4512,4370,-1,4225,3683,3357,-1,3683,4225,4440,-1,3695,3871,2995,-1,4280,3871,3695,-1,4070,4136,3616,-1,4070,4174,4136,-1,5157,5367,6041,-1,5157,4919,5367,-1,3809,2957,3290,-1,3809,3815,2957,-1,3085,3657,2749,-1,3681,3657,3085,-1,6296,5367,5450,-1,6041,5367,6296,-1,3658,2995,2826,-1,3695,2995,3658,-1,3616,3917,3441,-1,3616,4136,3917,-1,2749,2613,2449,-1,2749,2784,2613,-1,3290,3130,3369,-1,3290,2957,3130,-1,7193,7013,6510,-1,7193,7697,7013,-1,3441,3822,3346,-1,3441,3917,3822,-1,6268,5450,5410,-1,6296,5450,6268,-1,3588,2826,2724,-1,3658,2826,3588,-1,6988,7768,7697,-1,6988,6766,7768,-1,2449,2344,2083,-1,2449,2613,2344,-1,3403,2724,2531,-1,3588,2724,3403,-1,3346,3706,3333,-1,3346,3822,3706,-1,6330,5410,5348,-1,6268,5410,6330,-1,3213,4311,3321,-1,3213,3948,4311,-1,6766,7685,7768,-1,6766,6652,7685,-1,2094,2083,2344,-1,2083,2094,1702,-1,3402,3321,3512,-1,3402,3213,3321,-1,3313,2531,2245,-1,3403,2531,3313,-1,3333,3682,3330,-1,3333,3706,3682,-1,6220,5348,5270,-1,6330,5348,6220,-1,3321,4511,3410,-1,3321,4311,4511,-1,7585,6652,6678,-1,7685,6652,7585,-1,7729,7000,7067,-1,7653,7000,7729,-1,4597,4335,4331,-1,4772,4335,4597,-1,1612,1383,1543,-1,1612,1498,1383,-1,1232,1658,1405,-1,1658,1232,1523,-1,3347,3574,3407,-1,3347,3578,3574,-1,6001,6882,6739,-1,5852,6882,6001,-1,3277,3722,3282,-1,3277,3740,3722,-1,6060,5167,5124,-1,6110,5167,6060,-1,3269,2215,2226,-1,3302,2215,3269,-1,4945,4221,4276,-1,4957,4221,4945,-1,3407,3628,3309,-1,3407,3574,3628,-1,6029,6739,6669,-1,6001,6739,6029,-1,1376,1444,1335,-1,1444,1376,1301,-1,7562,6923,6872,-1,7791,6923,7562,-1,4547,4297,4218,-1,4588,4297,4547,-1,7787,6675,6669,-1,7787,7689,6675,-1,1582,921,1458,-1,1582,1034,921,-1,3309,3622,3206,-1,3309,3628,3622,-1,1301,1098,943,-1,1301,1376,1098,-1,7812,6872,6833,-1,7562,6872,7812,-1,3528,3873,3745,-1,3622,3873,3528,-1,7689,6741,6675,-1,7689,7676,6741,-1,411,1458,921,-1,1458,411,1438,-1,4718,5288,5370,-1,3678,3891,3586,-1,3871,3891,3678,-1,3871,3981,3891,-1,4280,3981,3871,-1,4280,4070,3981,-1,4601,4070,4280,-1,4601,4174,4070,-1,4919,4174,4601,-1,4718,5157,5288,-1,4443,5157,4718,-1,4443,4919,5157,-1,4919,4443,4174,-1,2274,1315,2311,-1,1315,2274,1234,-1,3783,5144,5130,-1,3745,5144,3783,-1,4808,4642,5004,-1,4642,4808,4627,-1,6781,5574,6628,-1,5723,5574,6781,-1,3443,2107,2033,-1,2107,3443,3236,-1,4669,5633,5746,-1,5633,4669,4719,-1,4304,4223,3854,-1,4386,4223,4304,-1,4769,5094,5334,-1,4769,4702,5094,-1,4388,4627,4808,-1,4411,4627,4388,-1,4075,3949,3241,-1,4243,3949,4075,-1,3795,3487,2765,-1,3795,4104,3487,-1,4281,4713,5193,-1,4406,4713,4281,-1,4726,4075,4952,-1,4726,4243,4075,-1,5516,6594,5460,-1,5516,6689,6594,-1,5096,3750,4966,-1,5096,3718,3750,-1,4851,4305,4914,-1,4851,4175,4305,-1,3262,4109,3187,-1,4256,4109,3262,-1,2757,3262,2497,-1,2757,3416,3262,-1,2684,3312,2799,-1,2684,3275,3312,-1,3750,2752,2908,-1,2752,3750,3718,-1,5379,5843,6306,-1,5193,5843,5379,-1,5530,5096,5898,-1,5530,4952,5096,-1,2765,2894,2032,-1,2765,3487,2894,-1,2315,2406,1786,-1,2872,2406,2315,-1,6526,5609,5577,-1,5609,6526,6574,-1,2032,2733,1816,-1,2032,2894,2733,-1,4045,5379,5503,-1,4143,5379,4045,-1,1816,1701,2032,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=48 */
		private int[] getmand_Geo_5_877_normalIndex_48()
		{
			int[] value = {1701,1816,1323,-1,1513,1846,1463,-1,1786,1846,1513,-1,1352,2107,2108,-1,1352,1124,2107,-1,7195,6769,6753,-1,7195,7336,6769,-1,6065,5110,5645,-1,6065,5217,5110,-1,3742,2202,2348,-1,3415,2202,3742,-1,4109,5226,4719,-1,5226,4109,4256,-1,3870,5544,5435,-1,3936,5544,3870,-1,1659,1172,1743,-1,1172,1659,849,-1,6613,7612,7473,-1,6613,6576,7612,-1,4643,4435,4474,-1,4577,4435,4643,-1,3760,5435,5364,-1,3870,5435,3760,-1,6628,7924,7874,-1,6628,6594,7924,-1,2324,1246,1025,-1,2383,1246,2324,-1,5906,7190,7363,-1,5746,7190,5906,-1,5689,5123,5699,-1,5689,5146,5123,-1,5369,6877,6937,-1,5364,6877,5369,-1,5460,4914,5516,-1,5460,4851,4914,-1,4497,3789,3863,-1,4477,3789,4497,-1,642,1558,481,-1,642,1561,1558,-1,7723,6658,6560,-1,7793,6658,7723,-1,640,1256,602,-1,640,1273,1256,-1,1795,2192,1799,-1,1795,2191,2192,-1,1017,30,1015,-1,1017,23,30,-1,1273,1775,1256,-1,1273,1799,1775,-1,1656,444,1672,-1,444,1656,461,-1,5374,3673,3638,-1,5374,5353,3673,-1,444,7,724,-1,444,51,7,-1,1369,163,1047,-1,1369,464,163,-1,1866,2268,1809,-1,1866,2323,2268,-1,1283,1796,1267,-1,1283,1809,1796,-1,2360,1017,2355,-1,2360,1006,1017,-1,1267,1795,1266,-1,1267,1796,1795,-1,7266,6479,6547,-1,7266,7168,6479,-1,1766,3350,3663,-1,3350,1766,1527,-1,6058,5243,5353,-1,6058,5999,5243,-1,55,314,127,-1,55,369,314,-1,2255,2981,2186,-1,2255,3006,2981,-1,5929,7111,6973,-1,6003,7111,5929,-1,314,1299,309,-1,314,1302,1299,-1,2981,4574,2952,-1,2981,4531,4574,-1,177,134,309,-1,134,177,74,-1,2185,3074,2284,-1,2185,2952,3074,-1,5045,6163,6157,-1,5057,6163,5045,-1,6851,6282,6280,-1,6858,6282,6851,-1,5307,4065,4067,-1,5305,4065,5307,-1,5274,4067,4013,-1,5307,4067,5274,-1,6067,6898,6834,-1,6157,6898,6067,-1,6279,6030,6007,-1,6280,6030,6279,-1,3017,2087,2170,-1,3017,2901,2087,-1,2394,3024,2061,-1,3246,3024,2394,-1,5168,4100,4391,-1,4373,4100,5168,-1,4770,5729,6068,-1,4770,4619,5729,-1,5059,4383,5277,-1,4359,4383,5059,-1,6068,6359,6660,-1,6068,5729,6359,-1,5747,5728,6344,-1,5277,5728,5747,-1,2087,1964,1752,-1,2087,2264,1964,-1,2394,1890,2506,-1,2394,1763,1890,-1,5777,5168,5394,-1,5416,5168,5777,-1,1637,1598,1365,-1,1763,1598,1637,-1,1530,1783,1467,-1,1530,1752,1783,-1,5688,6344,6624,-1,5747,6344,5688,-1,6359,6024,6438,-1,6359,5974,6024,-1,5931,5590,5695,-1,6024,5590,5931,-1,2987,2057,2228,-1,3189,2057,2987,-1,1282,955,805,-1,1282,1239,955,-1,3872,4839,4749,-1,3701,4839,3872,-1,7470,6783,6727,-1,7125,6783,7470,-1,6822,6290,6236,-1,6727,6290,6822,-1,2228,3351,2987,-1,2228,2283,3351,-1,805,665,285,-1,805,955,665,-1,2489,2969,2476,-1,2489,3116,2969,-1,3053,3945,4160,-1,2969,3945,3053,-1,7645,7001,6955,-1,7645,7780,7001,-1,643,1654,903,-1,1654,643,1709,-1,1965,1419,2019,-1,1419,1965,1391,-1,1965,2255,1826,-1,1965,2436,2255,-1,5178,5870,6003,-1,5161,5870,5178,-1,1709,790,1869,-1,1709,643,790,-1,4649,4770,4799,-1,4383,4770,4649,-1,4383,4619,4770,-1,4359,4619,4383,-1,4359,4540,4619,-1,3954,4540,4359,-1,3954,4444,4540,-1,3486,4444,3954,-1,3486,4373,4444,-1,3072,4373,3486,-1,3072,4100,4373,-1,2901,4100,3072,-1,2901,3562,4100,-1,2901,3325,3562,-1,3017,3325,2901,-1,3017,3246,3325,-1,2996,3246,3017,-1,2976,3246,2996,-1,2976,3024,3246,-1,2968,3715,3650,-1,3348,3715,2968,-1,6002,5021,6505,-1,4774,5021,6002,-1,4725,5546,5804,-1,4725,4587,5546,-1,2686,2977,1872,-1,3408,2977,2686,-1,1435,1625,973,-1,1872,1625,1435,-1,2298,2354,1997,-1,2298,2570,2354,-1,4821,5404,5801,-1,4656,5404,4821,-1,6390,6271,6786,-1,6390,6034,6271,-1,5388,4093,4193,-1,5149,4093,5388,-1,4165,2556,2496,-1,4193,2556,4165,-1,1217,1395,1057,-1,1217,1547,1395,-1,2742,3604,3608,-1,2795,3604,2742,-1,6641,7207,7332,-1,6461,7207,6641,-1,5987,5710,5694,-1,6026,5710,5987,-1,5618,5345,5229,-1,5694,5345,5618,-1,1221,464,1369,-1,1221,715,464,-1,1852,2323,1866,-1,1852,2270,2323,-1,4982,5952,5967,-1,4932,5952,4982,-1,6820,6237,6757,-1,6820,6257,6237,-1,6237,5970,6385,-1,6237,5921,5970,-1,4025,2530,2322,-1,4044,2530,4025,-1,3697,4982,4959,-1,3536,4982,3697,-1,6865,7570,7815,-1,6752,7570,6865,-1,6031,5678,5714,-1,5970,5678,6031,-1,2322,1006,2360,-1,2322,1047,1006,-1,3598,5046,5057,-1,3614,5046,3598,-1,7904,6843,6858,-1,7815,6843,7904,-1,5712,5309,5305,-1,5714,5309,5712,-1,384,919,414,-1,384,978,919,-1,7397,7640,7498,-1,7447,7640,7397,-1,1542,767,1533,-1,767,1542,774,-1,292,663,362,-1,292,774,663,-1,641,101,542,-1,101,641,61,-1,1142,1994,1159,-1,1994,1142,1990,-1,7818,7494,7520,-1,7818,7814,7494,-1,4,37,2,-1,37,4,61,-1,4908,5994,6012,-1,4897,5994,4908,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=49 */
		private int[] getmand_Geo_5_877_normalIndex_49()
		{
			int[] value = {7822,7520,7535,-1,7818,7520,7822,-1,641,2067,655,-1,2067,641,1985,-1,431,204,414,-1,431,216,204,-1,1601,2538,1599,-1,1601,2537,2538,-1,7856,7618,7611,-1,7856,7848,7618,-1,7180,5449,5339,-1,7321,5449,7180,-1,7862,7995,8006,-1,7848,7995,7862,-1,2391,5339,2321,-1,5339,2391,5380,-1,1614,799,1599,-1,799,1614,764,-1,6644,5487,5527,-1,6644,6670,5487,-1,1758,2464,3037,-1,2464,1758,1586,-1,708,361,653,-1,562,361,708,-1,1176,1907,1453,-1,1907,1176,1465,-1,3342,2280,4074,-1,3342,1971,2280,-1,773,997,562,-1,773,1050,997,-1,2223,2419,2928,-1,1907,2419,2223,-1,5978,4074,4196,-1,4074,5978,5872,-1,335,853,997,-1,853,335,189,-1,1996,1662,2223,-1,1662,1996,1393,-1,5158,5605,5432,-1,5158,5106,5605,-1,297,71,209,-1,297,189,71,-1,1433,821,1393,-1,821,1433,712,-1,7433,6932,7414,-1,6913,6932,7433,-1,7531,7053,7187,-1,7414,7053,7531,-1,165,1648,209,-1,1648,165,1484,-1,738,271,712,-1,271,738,312,-1,5760,3751,3488,-1,5760,5844,3751,-1,6777,5932,5844,-1,6777,6782,5932,-1,7211,6427,6421,-1,7187,6427,7211,-1,1484,3819,3667,-1,1484,1803,3819,-1,235,291,160,-1,235,312,291,-1,2064,3965,2210,-1,2064,3751,3965,-1,3965,5887,3818,-1,3965,5932,5887,-1,3663,1803,1766,-1,3819,1803,3663,-1,388,160,291,-1,160,388,133,-1,388,777,412,-1,388,758,777,-1,3911,5887,5919,-1,3818,5887,3911,-1,46,609,15,-1,609,46,401,-1,276,261,143,-1,276,412,261,-1,4091,2221,3911,-1,2221,4091,2352,-1,7558,7644,7792,-1,7405,7644,7558,-1,1533,2404,1542,-1,1533,2352,2404,-1,6596,7558,7447,-1,6631,7558,6596,-1,1770,273,933,-1,1770,1687,273,-1,4564,2822,3434,-1,3385,2822,4564,-1,4110,5581,3918,-1,4110,5836,5581,-1,6249,4122,4343,-1,6249,5857,4122,-1,4157,5857,5160,-1,4157,4122,5857,-1,102,710,93,-1,710,102,693,-1,2830,4534,2703,-1,2830,4849,4534,-1,59,102,28,-1,59,136,102,-1,6685,6891,6470,-1,6685,7239,6891,-1,6232,7040,7061,-1,6232,6191,7040,-1,7428,6249,6437,-1,7428,7201,6249,-1,2126,655,2067,-1,655,2126,679,-1,119,40,139,-1,40,119,12,-1,38,2,37,-1,2,38,3,-1,1918,3001,1979,-1,3001,1918,2997,-1,1918,891,1880,-1,891,1918,998,-1,828,38,679,-1,828,54,38,-1,7472,7820,7789,-1,7519,7820,7472,-1,7738,7876,7763,-1,7738,7789,7876,-1,4897,5991,5994,-1,4897,4896,5991,-1,6750,7494,7519,-1,6750,6799,7494,-1,5991,7022,7045,-1,5971,7022,5991,-1,6638,5299,6153,-1,5791,5299,6638,-1,2174,1314,2492,-1,2174,1706,1314,-1,302,810,136,-1,302,1030,810,-1,4690,5138,5888,-1,4066,5138,4690,-1,6191,6891,7040,-1,6206,6891,6191,-1,7201,5857,6249,-1,6912,5857,7201,-1,1036,108,845,-1,1036,144,108,-1,1851,710,1609,-1,710,1851,881,-1,6770,7085,7591,-1,6770,6733,7085,-1,7245,6619,7727,-1,6619,7245,6827,-1,3378,5684,3317,-1,3378,5743,5684,-1,1063,1939,1566,-1,1063,1345,1939,-1,932,1562,1581,-1,932,907,1562,-1,2262,2811,1722,-1,3390,2811,2262,-1,5832,6950,7105,-1,6950,5832,5914,-1,7660,7095,7561,-1,7095,7660,7098,-1,7322,7436,7096,-1,7322,7560,7436,-1,2260,3914,3550,-1,3914,2260,2740,-1,7277,7707,7098,-1,7828,7707,7277,-1,5547,7308,5525,-1,7308,5547,7493,-1,7384,5547,5484,-1,7493,5547,7384,-1,841,343,937,-1,343,841,371,-1,2518,4314,2537,-1,2518,4309,4314,-1,187,67,216,-1,187,62,67,-1,659,96,553,-1,659,62,96,-1,5565,4309,4261,-1,5553,4309,5565,-1,512,1522,553,-1,1522,512,1489,-1,5565,6715,6676,-1,5565,5628,6715,-1,8000,7916,7921,-1,8000,7975,7916,-1,7845,7881,7824,-1,7845,7975,7881,-1,6662,5497,5553,-1,6621,5497,6662,-1,7993,7913,7919,-1,7993,8005,7913,-1,8000,7853,7873,-1,8000,8005,7853,-1,7918,7920,7897,-1,7918,7922,7920,-1,545,1063,907,-1,545,716,1063,-1,1722,2668,1645,-1,2668,1722,2811,-1,7105,7615,7887,-1,7105,6950,7615,-1,7565,7894,7771,-1,7805,7894,7565,-1,5537,7437,7534,-1,5537,5549,7437,-1,344,716,545,-1,716,344,415,-1,1645,2460,1409,-1,1645,2668,2460,-1,2460,4172,2533,-1,2460,4420,4172,-1,7771,7650,7565,-1,7771,7824,7650,-1,7437,5525,7308,-1,7437,5549,5525,-1,306,415,344,-1,415,306,397,-1,1409,2533,1401,-1,1409,2460,2533,-1,2481,4172,4310,-1,2533,4172,2481,-1,736,2161,603,-1,2161,736,2211,-1,2705,4004,2607,-1,4004,2705,4005,-1,5877,5465,5409,-1,5877,5423,5465,-1,4650,4425,4380,-1,4650,4475,4425,-1,6168,6853,6255,-1,6168,6734,6853,-1,5885,6489,6120,-1,5885,6213,6489,-1,4366,5513,5151,-1,4488,5513,4366,-1,7092,6967,7103,-1,7092,7191,6967,-1,7310,7200,7209,-1,7310,7978,7200,-1,7486,7316,7280,-1,7486,7283,7316,-1,112,270,311,-1,270,112,626,-1,563,871,935,-1,563,864,871,-1,498,696,658,-1,498,496,696,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=50 */
		private int[] getmand_Geo_5_877_normalIndex_50()
		{
			int[] value = {6909,7281,6400,-1,6909,7480,7281,-1,6926,5983,6625,-1,6349,5983,6926,-1,7977,7316,7719,-1,7316,7977,7629,-1,6875,6967,7219,-1,6875,6928,6967,-1,7948,7891,7997,-1,7891,7948,7977,-1,7733,7731,7749,-1,7733,7803,7731,-1,4194,3137,3857,-1,3137,4194,2993,-1,3519,3261,3805,-1,3519,3182,3261,-1,7963,7299,7926,-1,7225,7299,7963,-1,7936,7769,7855,-1,7936,7965,7769,-1,6535,6355,6483,-1,6355,6535,6583,-1,6754,7110,7237,-1,6754,6411,7110,-1,3341,6111,5498,-1,3341,5539,6111,-1,4771,7726,5028,-1,4771,7778,7726,-1,3541,1443,1765,-1,3532,1443,3541,-1,7160,7908,7928,-1,7578,7908,7160,-1,7908,7189,7882,-1,7225,7189,7908,-1,7634,7011,7060,-1,7011,7634,7567,-1,7339,7117,7491,-1,6841,7117,7339,-1,6329,6066,5975,-1,6066,6329,7031,-1,2628,5325,2992,-1,2628,4986,5325,-1,6304,4969,6278,-1,4962,4969,6304,-1,5075,4784,4317,-1,5282,4784,5075,-1,709,491,629,-1,709,341,491,-1,164,520,575,-1,164,168,520,-1,446,560,538,-1,446,633,560,-1,688,389,425,-1,389,688,747,-1,627,599,718,-1,599,627,572,-1,77,483,525,-1,77,42,483,-1,207,486,667,-1,486,207,180,-1,443,899,842,-1,899,443,433,-1,268,10,175,-1,10,268,21,-1,441,842,368,-1,443,842,441,-1,539,769,725,-1,539,615,769,-1,581,1462,628,-1,1462,581,3999,-1,6713,7089,6402,-1,6903,7089,6713,-1,4903,4650,4462,-1,4650,4903,4955,-1,4166,4592,4198,-1,4166,4241,4592,-1,5752,5047,5423,-1,5399,5047,5752,-1,2365,2309,2587,-1,2309,2365,2705,-1,2862,5713,5041,-1,2862,4558,5713,-1,3326,3781,3719,-1,2587,3781,3326,-1,4707,3018,4765,-1,4707,4354,3018,-1,1350,1627,2580,-1,1742,1627,1350,-1,507,1568,1548,-1,507,1350,1568,-1,3997,4781,4727,-1,3997,3994,4781,-1,2984,3605,2604,-1,3605,2984,3830,-1,5220,7744,7807,-1,7708,7744,5220,-1,7708,7753,7744,-1,6253,6109,6399,-1,6253,6171,6109,-1,6303,5772,6337,-1,6303,5945,5772,-1,6311,6036,6208,-1,6036,6311,6108,-1,2923,2679,2584,-1,2886,2679,2923,-1,2194,1495,2076,-1,1495,2194,1472,-1,1936,1494,2089,-1,1494,1936,1526,-1,3104,2623,2938,-1,3104,2829,2623,-1,2454,2896,2714,-1,2639,2896,2454,-1,3163,3986,3265,-1,3988,3986,3163,-1,3186,2877,3254,-1,3186,2402,2877,-1,2160,4057,1895,-1,2160,3816,4057,-1,7337,7221,7075,-1,7337,7208,7221,-1,4324,4618,3572,-1,4324,4052,4618,-1,1178,1934,844,-1,1934,1178,1735,-1,7151,7244,7026,-1,7151,7435,7244,-1,1650,1855,1927,-1,1650,1666,1855,-1,5073,6048,4922,-1,5945,6048,5073,-1,2051,3059,2970,-1,3059,2051,2350,-1,6056,6370,5884,-1,6056,6433,6370,-1,3645,3059,3245,-1,3645,4205,3059,-1,2986,2261,2758,-1,2986,2895,2261,-1,5944,5150,5040,-1,5150,5944,5766,-1,6337,5884,6370,-1,5772,5884,6337,-1,6250,5236,5084,-1,6270,5236,6250,-1,5809,4413,4874,-1,4413,5809,5396,-1,2289,3792,3775,-1,2289,2582,3792,-1,2172,2758,2261,-1,2172,2711,2758,-1,5,989,869,-1,5,602,989,-1,7033,6051,7498,-1,6250,6051,7033,-1,5809,5488,5396,-1,5488,5809,6195,-1,6785,6381,6533,-1,6785,6774,6381,-1,3623,4902,4608,-1,4358,4902,3623,-1,6328,6325,6459,-1,6336,6325,6328,-1,1652,1927,2016,-1,1927,1652,1650,-1,3802,4608,4731,-1,3802,3623,4608,-1,6419,6459,6542,-1,6328,6459,6419,-1,5673,4731,4608,-1,6095,4731,5673,-1,3070,2284,3074,-1,3070,2350,2284,-1,2051,1275,1932,-1,2051,1459,1275,-1,5461,5274,4935,-1,5274,5461,5702,-1,5912,7756,6022,-1,7756,5912,6834,-1,6208,6399,6311,-1,6253,6399,6208,-1,2016,1600,1652,-1,2016,1847,1600,-1,1495,1272,1526,-1,1495,1135,1272,-1,4445,5409,5465,-1,5409,4445,4072,-1,3816,6491,4057,-1,5925,6491,3816,-1,1896,2626,2027,-1,1591,2626,1896,-1,4548,6759,4729,-1,4548,6019,6759,-1,2526,1333,1832,-1,2526,2568,1333,-1,3205,5207,3471,-1,5207,3205,4870,-1,4489,3364,3376,-1,4685,3364,4489,-1,7036,5250,5864,-1,7036,6763,5250,-1,2327,4306,4660,-1,2327,2653,4306,-1,2585,3998,2845,-1,3996,3998,2585,-1,3090,3609,3821,-1,3609,3090,2480,-1,2480,4379,3609,-1,2480,2433,4379,-1,2626,5783,4459,-1,4183,5783,2626,-1,1292,663,1406,-1,663,1292,983,-1,7912,7822,7772,-1,7822,7912,7961,-1,1169,1941,542,-1,1169,2369,1941,-1,1159,1931,1126,-1,1994,1931,1159,-1,5993,7043,7027,-1,7043,5993,6012,-1,7772,6818,7912,-1,6899,6818,7772,-1,4729,3398,2796,-1,4729,5058,3398,-1,6525,7596,7581,-1,6670,7596,6525,-1,4831,5487,5652,-1,4831,4201,5487,-1,7896,7941,8006,-1,7866,7941,7896,-1,6966,7851,6980,-1,7581,7851,6966,-1,174,1026,951,-1,86,1026,174,-1,4177,2528,2568,-1,4177,4621,2528,-1,4903,4815,4955,-1,4903,5089,4815,-1,2801,3264,2482,-1,2951,3264,2801,-1,3993,4152,4739,-1,3989,4152,3993,-1,4616,3605,3830,-1,4616,4551,3605,-1,4056,3685,3031,-1,4056,3624,3685,-1,4765,4628,4707,-1,4765,4843,4628,-1,4007,2705,2365,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=51 */
		private int[] getmand_Geo_5_877_normalIndex_51()
		{
			int[] value = {4007,4005,2705,-1,1711,3095,3636,-1,1711,1678,3095,-1,3636,4672,3515,-1,3636,4887,4672,-1,1287,4672,1534,-1,3436,4672,1287,-1,2741,1357,1929,-1,2741,1835,1357,-1,5266,6187,6261,-1,6187,5266,5211,-1,7432,7199,7753,-1,7246,7199,7432,-1,4088,2216,1771,-1,2216,4088,4334,-1,7254,7425,7206,-1,7355,7425,7254,-1,6196,6693,6221,-1,6196,6606,6693,-1,5759,6185,6196,-1,6185,5759,5934,-1,7425,7708,7435,-1,7425,7432,7708,-1,3534,5816,5823,-1,3534,3521,5816,-1,4086,5389,4024,-1,4086,5552,5389,-1,6595,5627,6884,-1,6595,5552,5627,-1,1046,1432,1374,-1,1054,1432,1046,-1,1455,1150,1166,-1,1150,1455,1439,-1,1442,2042,2462,-1,2042,1442,1339,-1,1166,975,984,-1,1166,1150,975,-1,6664,5513,6004,-1,5513,6664,6213,-1,1129,1091,1263,-1,1129,977,1091,-1,970,1046,1077,-1,970,924,1046,-1,4700,4312,3560,-1,4700,4913,4312,-1,6120,5357,5885,-1,5357,6120,5568,-1,7439,7651,7412,-1,7439,7931,7651,-1,6986,7287,7005,-1,6986,7419,7287,-1,6517,6049,6580,-1,6517,5904,6049,-1,4108,3247,3655,-1,4108,3743,3247,-1,5438,2662,6170,-1,5438,2924,2662,-1,4495,6088,5297,-1,4495,4569,6088,-1,4923,4612,4549,-1,4612,4923,4816,-1,7264,5556,7173,-1,5563,5556,7264,-1,6075,3803,5995,-1,6075,3859,3803,-1,5594,6087,5584,-1,6087,5594,6086,-1,6947,5781,7324,-1,6947,5973,5781,-1,1946,5901,2045,-1,5839,5901,1946,-1,2851,6570,3270,-1,2851,6363,6570,-1,6714,5044,6432,-1,5863,5044,6714,-1,2605,5658,2341,-1,5418,5658,2605,-1,2945,4141,4219,-1,4141,2945,3109,-1,4068,3560,4312,-1,3560,4068,3839,-1,4700,6289,5687,-1,3973,6289,4700,-1,920,970,977,-1,984,970,920,-1,1366,3073,1457,-1,3242,3073,1366,-1,1962,263,305,-1,263,1962,2068,-1,6500,6836,6289,-1,7795,6836,6500,-1,5459,5771,5941,-1,5459,5308,5771,-1,6040,6422,5816,-1,6040,6503,6422,-1,1503,1190,1297,-1,1504,1190,1503,-1,1653,2216,3521,-1,2216,1653,1048,-1,1091,1209,1200,-1,1209,1091,1077,-1,6581,6109,5934,-1,6109,6581,6681,-1,7373,7931,7523,-1,7931,7373,7651,-1,7216,5446,7121,-1,7216,5861,5446,-1,4679,4495,4468,-1,4679,4082,4495,-1,2851,2486,2581,-1,3270,2486,2851,-1,4265,4042,4251,-1,4265,4432,4042,-1,7042,6575,7274,-1,7042,6170,6575,-1,4092,5552,4086,-1,5552,4092,5627,-1,7246,5604,7199,-1,7246,5955,5604,-1,7720,7133,6577,-1,7854,7133,7720,-1,895,1825,860,-1,1910,1825,895,-1,3005,3455,3033,-1,3421,3455,3005,-1,7515,7487,7294,-1,7515,7714,7487,-1,5384,4911,5419,-1,4866,4911,5384,-1,3587,2718,2708,-1,2718,3587,3603,-1,7714,7049,7487,-1,7714,7186,7049,-1,7608,7854,7173,-1,7608,7133,7854,-1,4433,3587,4026,-1,3587,4433,4269,-1,6348,5313,6251,-1,5313,6348,5419,-1,2416,501,860,-1,2416,2118,501,-1,3032,3247,3115,-1,3033,3247,3032,-1,6787,7487,7049,-1,6983,7487,6787,-1,4542,4307,4148,-1,4542,4573,4307,-1,7987,6363,7385,-1,7987,6570,6363,-1,5846,5083,5111,-1,5083,5846,5874,-1,2491,1903,785,-1,2491,2737,1903,-1,1207,2439,2208,-1,2275,2439,1207,-1,4841,4626,5014,-1,4510,4626,4841,-1,2371,4128,3868,-1,2371,3041,4128,-1,1031,1509,1210,-1,1479,1509,1031,-1,1439,741,1150,-1,1439,1059,741,-1,4869,4679,5558,-1,4869,4476,4679,-1,5973,6654,5536,-1,5973,6947,6654,-1,6075,6682,6149,-1,6075,6657,6682,-1,5187,5357,5630,-1,5187,4753,5357,-1,7185,7355,7254,-1,7185,7523,7355,-1,702,857,874,-1,702,870,857,-1,857,613,646,-1,857,780,613,-1,5283,5266,5024,-1,5975,5266,5283,-1,4525,5935,4063,-1,5935,4525,6161,-1,1073,725,769,-1,725,1073,1318,-1,649,660,502,-1,649,781,660,-1,2899,1389,1431,-1,1389,2899,3266,-1,1379,1437,1504,-1,1379,1374,1437,-1,1318,668,725,-1,1318,1431,668,-1,6657,6183,6682,-1,6126,6183,6657,-1,1135,1303,1272,-1,1231,1303,1135,-1,5737,5753,5240,-1,5737,6277,5753,-1,1428,1564,1619,-1,1477,1564,1428,-1,356,699,557,-1,356,536,699,-1,5298,4950,4712,-1,5317,4950,5298,-1,661,685,561,-1,685,661,614,-1,648,673,822,-1,648,498,673,-1,323,498,648,-1,4151,2785,4318,-1,4151,2838,2785,-1,7485,7675,7802,-1,7082,7675,7485,-1,3632,505,3773,-1,424,505,3632,-1,535,16,856,-1,535,341,16,-1,1396,4303,1565,-1,1396,4090,4303,-1,4878,6946,7114,-1,6946,4878,4617,-1,7120,4937,4754,-1,7120,7398,4937,-1,5251,7604,7690,-1,7604,5251,5175,-1,5280,7145,5078,-1,7590,7145,5280,-1,3728,1812,4482,-1,1402,1812,3728,-1,3383,897,3198,-1,3383,856,897,-1,7781,7600,7567,-1,7781,7718,7600,-1,3632,6679,6588,-1,3632,3773,6679,-1,7954,7398,7120,-1,7954,7907,7398,-1,6797,6313,5943,-1,6816,6313,6797,-1,7466,7679,6742,-1,7466,7393,7679,-1,7589,7475,7491,-1,7589,7718,7475,-1,7062,6743,6804,-1,7062,7127,6743,-1,7832,7609,7886,-1,7832,7237,7609,-1,7371,7716,7382,-1,7371,7886,7716,-1,7114,7524,7935,-1,7114,6946,7524,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=52 */
		private int[] getmand_Geo_5_877_normalIndex_52()
		{
			int[] value = {7769,7972,7675,-1,7769,7647,7972,-1,6832,6347,6404,-1,6347,6832,6583,-1,35,856,16,-1,35,897,856,-1,530,171,310,-1,530,586,171,-1,6742,7376,7466,-1,6588,7376,6742,-1,6265,4341,6299,-1,6265,3977,4341,-1,3662,6588,6742,-1,6588,3662,3632,-1,6716,4098,7041,-1,4405,4098,6716,-1,7965,7690,7604,-1,7965,7936,7690,-1,1417,433,443,-1,433,1417,1219,-1,5900,5289,5473,-1,5900,6430,5289,-1,5949,3454,2992,-1,5949,3080,3454,-1,701,1191,1347,-1,14,1191,701,-1,4674,2913,4624,-1,4674,2930,2913,-1,1040,1436,1597,-1,1040,925,1436,-1,684,1040,1148,-1,684,452,1040,-1,4378,2791,4494,-1,3233,2791,4378,-1,7330,6314,6342,-1,7330,7973,6314,-1,4317,3960,3900,-1,4610,3960,4317,-1,2039,2930,2819,-1,2039,2144,2930,-1,5473,5520,5499,-1,5289,5520,5473,-1,832,1436,925,-1,832,1206,1436,-1,1817,1967,1242,-1,1817,2601,1967,-1,4605,6035,6342,-1,4605,4995,6035,-1,4578,5128,5231,-1,4578,4894,5128,-1,1593,1892,1800,-1,1593,1597,1892,-1,4419,2930,4674,-1,4419,2819,2930,-1,619,446,457,-1,446,619,492,-1,575,2149,865,-1,2149,575,2054,-1,586,1407,737,-1,586,1340,1407,-1,425,206,248,-1,425,389,206,-1,206,429,281,-1,339,429,206,-1,248,281,311,-1,248,206,281,-1,132,151,196,-1,132,180,151,-1,606,692,792,-1,606,382,692,-1,483,1842,525,-1,483,1740,1842,-1,519,594,638,-1,519,560,594,-1,320,567,394,-1,320,571,567,-1,667,703,905,-1,667,619,703,-1,754,441,332,-1,754,1069,441,-1,2791,2601,1817,-1,3233,2601,2791,-1,1995,1589,1683,-1,1995,1919,1589,-1,1671,1242,1967,-1,1147,1242,1671,-1,2432,1967,2681,-1,1671,1967,2432,-1,4717,5231,5731,-1,4717,4578,5231,-1,5347,4920,5119,-1,4920,5347,5112,-1,4969,4578,4717,-1,4962,4578,4969,-1,3445,4438,3288,-1,3445,4605,4438,-1,6997,7712,7804,-1,6997,6816,7712,-1,7120,7935,7954,-1,7120,7114,7935,-1,7718,7576,7424,-1,7718,7781,7576,-1,6588,7230,7376,-1,6679,7230,6588,-1,7137,7262,6894,-1,7137,7593,7262,-1,7578,6283,7541,-1,7160,6283,7578,-1,7382,7449,7212,-1,7716,7449,7382,-1,7292,7241,7247,-1,7271,7241,7292,-1,349,527,463,-1,349,510,527,-1,7880,7171,7471,-1,7880,7529,7171,-1,349,311,270,-1,248,311,349,-1,6378,6598,6450,-1,6729,6598,6378,-1,7895,7247,7838,-1,7292,7247,7895,-1,6893,7060,7011,-1,6893,6809,7060,-1,7178,6859,7271,-1,6756,6859,7178,-1,7926,7401,7963,-1,7401,7926,7018,-1,4146,856,3383,-1,4146,535,856,-1,7159,7491,7475,-1,7491,7159,7339,-1,7590,7936,7637,-1,7936,7590,7690,-1,4318,2819,4419,-1,2819,4318,2785,-1,7821,6494,7875,-1,7821,6430,6494,-1,5517,5470,5282,-1,5517,5892,5470,-1,4578,5351,4894,-1,4578,4962,5351,-1,1629,1147,1671,-1,1206,1147,1629,-1,2039,1683,1800,-1,2039,1995,1683,-1,5325,5764,6346,-1,5764,5325,4986,-1,381,490,469,-1,381,376,490,-1,424,225,505,-1,331,225,424,-1,491,505,225,-1,505,491,427,-1,175,1396,268,-1,175,1358,1396,-1,446,500,633,-1,500,446,339,-1,80,68,226,-1,80,10,68,-1,389,339,206,-1,389,500,339,-1,387,281,429,-1,387,336,281,-1,735,747,688,-1,735,765,747,-1,1807,525,1842,-1,525,1807,620,-1,341,427,491,-1,341,535,427,-1,490,638,571,-1,490,519,638,-1,376,368,410,-1,376,381,368,-1,1800,2144,2039,-1,1800,1892,2144,-1,5338,4674,5640,-1,4419,4674,5338,-1,4028,4605,3445,-1,4605,4028,4995,-1,5607,5818,5567,-1,5607,5701,5818,-1,1511,866,1152,-1,1511,1293,866,-1,3233,3013,2601,-1,3526,3013,3233,-1,4784,5119,4920,-1,5119,4784,5255,-1,5185,5583,5015,-1,5583,5185,5242,-1,6314,7402,6218,-1,7973,7402,6314,-1,1161,1148,1152,-1,1161,684,1148,-1,1372,1546,1464,-1,1546,1372,1788,-1,1597,1805,1892,-1,1805,1597,1436,-1,5640,4624,5969,-1,5640,4674,4624,-1,3080,1347,1191,-1,3080,2665,1347,-1,2046,1788,2998,-1,2046,1546,1788,-1,3773,6661,6679,-1,6661,3773,3855,-1,535,3855,427,-1,4146,3855,535,-1,473,4098,754,-1,3662,4098,473,-1,5607,3653,5600,-1,5607,4637,3653,-1,586,151,171,-1,586,737,151,-1,2154,1181,2246,-1,1181,2154,1076,-1,7328,6816,6797,-1,7712,6816,7328,-1,7139,7082,7267,-1,7082,7139,6483,-1,7410,7716,7607,-1,7410,7449,7716,-1,7607,7886,7609,-1,7607,7716,7886,-1,7271,6940,7241,-1,6859,6940,7271,-1,7158,6794,6720,-1,7044,6794,7158,-1,7829,7749,7674,-1,7829,7751,7749,-1,7567,7776,7781,-1,7634,7776,7567,-1,6816,6355,6313,-1,6997,6355,6816,-1,7138,7267,7945,-1,7138,7139,7267,-1,6726,7945,7783,-1,6726,7138,7945,-1,7634,7745,7776,-1,7616,7745,7634,-1,6847,7011,7062,-1,7011,6847,6893,-1,6404,3383,3198,-1,6404,6347,3383,-1,4482,6134,3728,-1,4482,6513,6134,-1,2154,5280,5078,-1,5280,2154,2246,-1,5251,2054,5175,-1,5251,2149,2054,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=53 */
		private int[] getmand_Geo_5_877_normalIndex_53()
		{
			int[] value = {4937,1807,4754,-1,4937,1861,1807,-1,1740,4878,1842,-1,4617,4878,1740,-1,4303,6522,6647,-1,4303,4090,6522,-1,6583,7058,6347,-1,6583,6535,7058,-1,7804,7082,6997,-1,7804,7675,7082,-1,6383,6680,6217,-1,6383,6524,6680,-1,561,656,579,-1,685,656,561,-1,493,765,735,-1,765,493,226,-1,352,613,543,-1,648,613,352,-1,6622,6875,6625,-1,6645,6875,6622,-1,543,780,661,-1,613,780,543,-1,3521,1820,1653,-1,1820,3521,3534,-1,4705,5240,4121,-1,5737,5240,4705,-1,1720,1294,1262,-1,1731,1294,1720,-1,2109,1415,2234,-1,1415,2109,1720,-1,6075,4088,3859,-1,6075,6149,4088,-1,649,1649,1621,-1,649,719,1649,-1,458,615,539,-1,615,458,502,-1,1504,1093,1190,-1,1504,1437,1093,-1,1431,583,668,-1,583,1431,1389,-1,755,502,660,-1,502,755,615,-1,6406,5904,6517,-1,5904,6406,5630,-1,5885,4753,5151,-1,4753,5885,5357,-1,6903,6609,6884,-1,6713,6609,6903,-1,581,572,627,-1,581,628,572,-1,780,870,825,-1,780,857,870,-1,537,627,677,-1,537,581,627,-1,458,591,702,-1,458,474,591,-1,6128,4334,6182,-1,4428,4334,6128,-1,4949,5024,4488,-1,4949,5283,5024,-1,5630,5568,5904,-1,5630,5357,5568,-1,6161,6517,5935,-1,6161,6406,6517,-1,5024,6261,6004,-1,6261,5024,5266,-1,2735,2581,1984,-1,2735,2851,2581,-1,5085,5751,5558,-1,5751,5085,5022,-1,2341,1439,2605,-1,1059,1439,2341,-1,5383,4038,3826,-1,5383,4926,4038,-1,2415,2371,1104,-1,2415,3041,2371,-1,6393,5833,5716,-1,5833,6393,6775,-1,3134,2275,3103,-1,3134,2439,2275,-1,5781,2045,5901,-1,5781,1914,2045,-1,5111,4573,4542,-1,4573,5111,5083,-1,6057,7385,6363,-1,7385,6057,6687,-1,1914,785,264,-1,785,1914,2491,-1,4569,6142,6088,-1,6142,4569,4625,-1,7661,7186,7714,-1,7608,7186,7661,-1,7186,7608,7173,-1,2118,1228,501,-1,2118,742,1228,-1,2118,1875,742,-1,5419,4923,5313,-1,4911,4923,5419,-1,3587,3544,4026,-1,2708,3544,3587,-1,3655,3033,3455,-1,3033,3655,3247,-1,2708,2018,2001,-1,2018,2708,2718,-1,4866,4623,4911,-1,4572,4623,4866,-1,7854,7150,7282,-1,7150,7854,7720,-1,6983,7294,7487,-1,7294,6983,6887,-1,3455,3908,3856,-1,3908,3455,3421,-1,1910,2753,1825,-1,2773,2753,1910,-1,2001,1499,1422,-1,1499,2001,2018,-1,4709,4546,4417,-1,4716,4546,4709,-1,6138,4709,3850,-1,6519,4709,6138,-1,5297,4468,4495,-1,4567,4468,5297,-1,4092,5361,5802,-1,5361,4092,5563,-1,4086,5556,4092,-1,4086,5693,5556,-1,5361,5386,5802,-1,5054,5386,5361,-1,4476,4082,4679,-1,4476,4108,4082,-1,5901,7324,5781,-1,7412,7324,5901,-1,3769,3726,4047,-1,3835,3726,3769,-1,2655,1274,1000,-1,2721,1274,2655,-1,6503,6171,6422,-1,6503,6185,6171,-1,1477,1503,1564,-1,1503,1477,1378,-1,1378,1504,1503,-1,1379,1504,1378,-1,5941,5592,5756,-1,5941,5771,5592,-1,6335,7795,6500,-1,7064,7795,6335,-1,2253,305,1244,-1,305,2253,1962,-1,4141,4312,4609,-1,4068,4312,4141,-1,6500,3973,3073,-1,6289,3973,6500,-1,5308,4052,4613,-1,4618,4052,5308,-1,5044,3041,5359,-1,5044,4128,3041,-1,2068,5052,5604,-1,5052,2068,1962,-1,3109,4068,4141,-1,4068,3109,3577,-1,3577,3839,4068,-1,3839,3577,4038,-1,6393,4840,4638,-1,4840,6393,5716,-1,4840,4047,3726,-1,4047,4840,4640,-1,3704,6057,2735,-1,5636,6057,3704,-1,5839,2025,5861,-1,5839,1946,2025,-1,7287,7651,7373,-1,7651,7287,7335,-1,6049,5584,6126,-1,5584,6049,5594,-1,6972,5054,5361,-1,5054,6972,6251,-1,5297,6787,5638,-1,5297,6088,6787,-1,2118,6047,1875,-1,2118,6434,6047,-1,2924,5053,3544,-1,5438,5053,2924,-1,3115,3743,3566,-1,3743,3115,3247,-1,7173,5693,7186,-1,5556,5693,7173,-1,5935,6580,5995,-1,5935,6517,6580,-1,6489,7005,6558,-1,6986,7005,6489,-1,7335,7324,7651,-1,6947,7324,7335,-1,7544,7986,7872,-1,7572,7986,7544,-1,6885,6860,6906,-1,6860,6885,6548,-1,7274,6047,7686,-1,7274,6575,6047,-1,1303,1263,1452,-1,1129,1263,1303,-1,977,1077,1091,-1,977,970,1077,-1,1262,1186,1231,-1,1262,1294,1186,-1,6261,7068,7128,-1,6261,6965,7068,-1,1150,782,975,-1,1150,741,782,-1,1339,941,1457,-1,1339,1166,941,-1,924,1054,1046,-1,862,1054,924,-1,1073,1437,1471,-1,1073,1093,1437,-1,922,1210,949,-1,1031,1210,922,-1,956,1031,922,-1,1121,1031,956,-1,6332,5816,6422,-1,5823,5816,6332,-1,3534,1746,1820,-1,3534,3470,1746,-1,6272,5934,5759,-1,5934,6272,6581,-1,6606,6182,6693,-1,6606,6128,6182,-1,6853,7206,6845,-1,7254,7206,6853,-1,4088,6182,4334,-1,4088,6149,6182,-1,7523,6885,7355,-1,7523,7315,6885,-1,1835,786,1357,-1,1835,1548,786,-1,1534,4887,2319,-1,4672,4887,1534,-1,4887,3095,4095,-1,3636,3095,4887,-1,3095,1707,2086,-1,1678,1707,3095,-1,4002,4707,4628,-1,4002,3963,4707,-1,5189,4457,5358,-1,5189,4509,4457,-1,1666,1970,1855,-1,1666,1891,1970,-1,3031,2604,2437,-1,2984,2604,3031,-1,2472,1891,2660,-1,2472,1970,1891,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=54 */
		private int[] getmand_Geo_5_877_normalIndex_54()
		{
			int[] value = {3629,3104,3265,-1,3629,3263,3104,-1,4004,3474,2607,-1,3474,4004,3897,-1,2526,3138,3471,-1,2526,2739,3138,-1,2391,5304,5380,-1,2391,2448,5304,-1,1716,86,764,-1,1716,1026,86,-1,7866,7059,7941,-1,7866,7036,7059,-1,8006,7851,7862,-1,7941,7851,8006,-1,6556,7581,6966,-1,7581,6556,6525,-1,5304,6763,7055,-1,5304,5451,6763,-1,238,1333,926,-1,1333,238,1126,-1,6759,7912,6818,-1,6759,7027,7912,-1,4964,6012,5993,-1,6012,4964,4908,-1,245,1126,238,-1,1159,1126,245,-1,4936,2369,4823,-1,1941,2369,4936,-1,7027,7961,7912,-1,7961,7027,7043,-1,1406,1591,1292,-1,1406,2346,1591,-1,4459,6564,5925,-1,5783,6564,4459,-1,3471,2568,2526,-1,3471,4177,2568,-1,2585,1139,951,-1,1139,2585,2845,-1,5207,6980,5696,-1,5207,6966,6980,-1,3821,5250,4401,-1,3821,3609,5250,-1,3498,3857,3137,-1,3857,3498,3805,-1,2739,4622,3373,-1,2739,2532,4622,-1,56,542,101,-1,56,1169,542,-1,983,2339,2058,-1,983,1292,2339,-1,1060,2058,2565,-1,1060,983,2058,-1,2473,2339,1896,-1,2473,3398,2339,-1,5414,5582,6023,-1,5414,5512,5582,-1,4579,4815,4275,-1,4955,4815,4579,-1,1700,1729,1776,-1,1742,1729,1700,-1,6208,6332,6253,-1,6208,6248,6332,-1,1847,2167,1748,-1,2016,2167,1847,-1,6684,6855,6952,-1,6855,6684,6559,-1,5778,5877,6092,-1,5877,5778,5752,-1,2815,4013,2337,-1,2815,3620,4013,-1,6007,5461,5766,-1,5702,5461,6007,-1,5879,6279,5944,-1,6279,5879,6830,-1,2350,1932,2284,-1,2350,2051,1932,-1,3074,4121,3070,-1,4705,4121,3074,-1,5040,4205,3645,-1,5040,5150,4205,-1,4902,5507,5429,-1,4902,5089,5507,-1,6274,6328,6419,-1,6274,6011,6328,-1,4072,2050,1992,-1,2869,2050,4072,-1,1936,2125,2076,-1,2147,2125,1936,-1,4608,5429,5673,-1,4902,5429,4608,-1,6491,7498,6051,-1,6491,7397,7498,-1,3440,2155,3386,-1,3440,1732,2155,-1,1010,869,1785,-1,1010,5,869,-1,2261,1775,2172,-1,1775,2261,1902,-1,4874,6270,5809,-1,4874,5236,6270,-1,989,2582,2289,-1,2582,989,1501,-1,3208,4385,3524,-1,3208,3513,4385,-1,5461,5145,4909,-1,5145,5461,4935,-1,6022,3393,2504,-1,6022,5879,3393,-1,2970,1459,2051,-1,2970,4101,1459,-1,2877,2517,2714,-1,2620,2517,2877,-1,1666,2050,2193,-1,1650,2050,1666,-1,7026,6581,7151,-1,6681,6581,7026,-1,3703,4618,4800,-1,3703,3572,4618,-1,5177,1295,5502,-1,5177,1178,1295,-1,2310,1594,2414,-1,2160,1594,2310,-1,3182,3692,3261,-1,3182,3456,3692,-1,2305,2714,2517,-1,2454,2714,2305,-1,4538,3925,3991,-1,4538,4291,3925,-1,2938,3265,3104,-1,3265,2938,3163,-1,1526,1355,1494,-1,1526,1272,1355,-1,1472,1135,1495,-1,1472,931,1135,-1,2666,2411,2301,-1,2666,2824,2411,-1,3205,2951,2801,-1,2951,3205,3150,-1,3138,2923,3496,-1,2923,3138,2886,-1,2278,1670,2212,-1,1583,1670,2278,-1,5519,5550,5216,-1,5550,5519,5582,-1,6533,6370,6322,-1,6533,6337,6370,-1,7025,7026,7244,-1,7025,6952,7026,-1,6542,6684,6744,-1,6459,6684,6542,-1,6036,6248,6208,-1,6092,6248,6036,-1,5884,5105,6056,-1,5105,5884,5016,-1,7542,7221,7169,-1,7542,7458,7221,-1,3160,3832,3644,-1,3832,3160,2660,-1,4152,3910,4436,-1,3765,3910,4152,-1,2637,3160,2979,-1,2472,3160,2637,-1,1548,1330,507,-1,1330,1548,1835,-1,1729,1350,507,-1,1729,1742,1350,-1,1776,507,1330,-1,1776,1729,507,-1,3018,3623,3802,-1,3623,3018,3257,-1,4275,3647,4579,-1,4275,3057,3647,-1,2607,3647,3057,-1,3647,2607,3474,-1,4454,3966,4001,-1,4454,4320,3966,-1,4232,4475,4579,-1,4232,4079,4475,-1,4241,4454,4592,-1,4241,3770,4454,-1,5399,4462,5047,-1,4462,5399,4903,-1,3699,6713,3967,-1,6713,3699,6609,-1,668,518,495,-1,668,583,518,-1,334,128,331,-1,334,469,128,-1,266,525,167,-1,266,77,525,-1,381,441,368,-1,332,441,381,-1,313,667,905,-1,667,313,207,-1,572,417,599,-1,417,572,536,-1,520,167,620,-1,520,168,167,-1,500,747,792,-1,747,500,389,-1,839,662,1189,-1,662,839,709,-1,575,477,164,-1,575,865,477,-1,4317,4920,4610,-1,4784,4920,4317,-1,5231,5704,5731,-1,5231,5347,5704,-1,7330,6485,7973,-1,7330,6747,6485,-1,2998,1762,2046,-1,2377,1762,2998,-1,1117,452,684,-1,1117,1173,452,-1,7127,7491,7117,-1,7127,7589,7491,-1,7567,7062,7011,-1,7062,7567,7600,-1,5966,5493,6464,-1,5966,3671,5493,-1,6900,7882,7189,-1,7674,7882,6900,-1,6756,7382,6859,-1,6756,7371,7382,-1,1827,5028,4604,-1,1827,1764,5028,-1,1698,3558,2573,-1,1605,3558,1698,-1,6313,6583,6832,-1,6583,6313,6355,-1,7647,7965,7907,-1,7965,7647,7769,-1,7381,7299,7541,-1,7299,7381,7926,-1,7655,6900,7838,-1,6601,6900,7655,-1,7734,7490,7445,-1,7490,7734,7638,-1,167,419,266,-1,167,184,419,-1,2401,3035,2342,-1,2401,3303,3035,-1,2342,3300,2656,-1,2342,3035,3300,-1,2414,1520,2578,-1,1520,2414,1594,-1,7749,7522,7826,-1,7731,7522,7749,-1,7696,7997,7929,-1,7997,7696,7948,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=55 */
		private int[] getmand_Geo_5_877_normalIndex_55()
		{
			int[] value = {6625,5672,6622,-1,5983,5672,6625,-1,4167,6458,6119,-1,4167,3584,6458,-1,7444,6368,7625,-1,7444,6458,6368,-1,5860,7696,7658,-1,6400,7696,5860,-1,696,340,658,-1,340,696,745,-1,864,893,871,-1,864,626,893,-1,135,426,723,-1,426,135,454,-1,340,1196,1780,-1,259,1196,340,-1,223,510,496,-1,510,223,527,-1,7782,7643,7203,-1,7782,7806,7643,-1,7191,7957,7404,-1,7092,7957,7191,-1,6558,6120,6489,-1,6086,6120,6558,-1,6255,6845,6272,-1,6255,6853,6845,-1,4462,4380,4509,-1,4462,4650,4380,-1,5117,5409,3470,-1,5808,5409,5117,-1,5808,5877,5409,-1,603,418,736,-1,603,397,418,-1,4310,5615,5628,-1,4172,5615,4310,-1,159,512,110,-1,159,465,512,-1,159,344,256,-1,344,159,306,-1,5549,2161,5525,-1,5549,2093,2161,-1,7824,7773,7845,-1,7771,7773,7824,-1,5661,6921,6620,-1,5661,5854,6921,-1,1409,787,1645,-1,787,1409,618,-1,1008,415,666,-1,1008,716,415,-1,7534,7759,7897,-1,7534,7437,7759,-1,7805,6620,6921,-1,7805,7565,6620,-1,7105,5854,5832,-1,7105,6921,5854,-1,479,907,932,-1,479,545,907,-1,6676,5553,5565,-1,6676,6662,5553,-1,8005,7921,7913,-1,8000,7921,8005,-1,7856,8005,7993,-1,7856,7853,8005,-1,5628,6779,6715,-1,5615,6779,5628,-1,7975,7799,7916,-1,7845,7799,7975,-1,7975,7873,7881,-1,8000,7873,7975,-1,4261,5628,5565,-1,4261,4310,5628,-1,110,553,96,-1,553,110,512,-1,2457,4309,2518,-1,4309,2457,4261,-1,219,62,187,-1,62,219,96,-1,768,62,659,-1,62,768,67,-1,5553,4314,4309,-1,5553,5497,4314,-1,2302,937,2403,-1,937,2302,841,-1,5547,2302,5484,-1,5547,2211,2302,-1,5525,2211,5547,-1,5525,2161,2211,-1,7098,7688,7095,-1,7707,7688,7098,-1,4049,3717,2612,-1,4049,4826,3717,-1,2740,4944,3914,-1,4944,2740,3919,-1,7560,7920,7436,-1,7560,7755,7920,-1,7970,7561,7922,-1,7561,7970,7660,-1,6950,7277,7615,-1,6905,7277,6950,-1,5122,5914,5066,-1,6077,5914,5122,-1,2612,3390,2262,-1,3717,3390,2612,-1,1940,2084,2307,-1,1940,1581,2084,-1,2260,1562,1566,-1,2163,1562,2260,-1,3919,1939,3180,-1,2740,1939,3919,-1,7245,7354,5767,-1,7245,7504,7354,-1,3450,5684,5767,-1,3450,3317,5684,-1,3914,5876,3550,-1,3914,5924,5876,-1,7354,7707,7273,-1,7688,7707,7354,-1,144,40,108,-1,144,22,40,-1,6437,4343,4456,-1,6249,4343,6437,-1,7040,7239,7546,-1,6891,7239,7040,-1,2864,4066,4690,-1,2598,4066,2864,-1,136,273,302,-1,273,136,59,-1,5791,6685,5836,-1,5791,6638,6685,-1,7949,7045,7022,-1,7949,7953,7045,-1,6799,4872,4883,-1,6750,4872,6799,-1,4876,6085,5971,-1,4805,6085,4876,-1,7789,7428,7472,-1,7738,7428,7789,-1,7519,6536,6750,-1,7519,7472,6536,-1,3,54,12,-1,54,3,38,-1,1880,2997,1918,-1,1880,3129,2997,-1,998,1979,1097,-1,1979,998,1918,-1,37,679,38,-1,37,655,679,-1,891,139,881,-1,139,891,119,-1,4805,6232,6085,-1,4634,6232,4805,-1,4872,2067,4883,-1,2067,4872,2126,-1,7738,7201,7428,-1,7738,7617,7201,-1,2830,4690,4849,-1,2864,4690,2830,-1,7239,6638,7260,-1,6685,6638,7239,-1,136,693,102,-1,136,810,693,-1,4534,6206,6191,-1,4849,6206,4534,-1,93,28,102,-1,93,22,28,-1,4157,2351,4122,-1,4157,2492,2351,-1,2351,1036,2349,-1,1036,2351,1041,-1,5836,3978,5791,-1,4110,3978,5836,-1,2822,2174,3434,-1,2822,2445,2174,-1,2005,2598,1767,-1,2005,2435,2598,-1,5897,6631,6596,-1,5916,6631,5897,-1,7640,7420,7372,-1,7420,7640,7792,-1,6631,7405,7558,-1,6530,7405,6631,-1,2352,1445,2221,-1,1445,2352,1533,-1,46,143,69,-1,46,276,143,-1,7405,7454,7644,-1,7331,7454,7405,-1,3911,2229,3818,-1,2229,3911,2221,-1,412,133,388,-1,133,412,276,-1,47,133,15,-1,47,160,133,-1,7168,6421,6479,-1,7211,6421,7168,-1,5887,6782,6633,-1,5932,6782,5887,-1,3965,5844,5932,-1,3751,5844,3965,-1,312,726,291,-1,312,738,726,-1,5329,3667,3819,-1,5355,3667,5329,-1,7488,7187,7211,-1,7531,7187,7488,-1,7414,7478,7433,-1,7414,7531,7478,-1,712,1454,738,-1,712,1433,1454,-1,209,63,165,-1,209,71,63,-1,7187,6228,6427,-1,7053,6228,7187,-1,6646,7414,6932,-1,6646,7053,7414,-1,3488,5439,5760,-1,3676,5439,3488,-1,712,402,821,-1,402,712,271,-1,297,1648,1538,-1,297,209,1648,-1,1607,3543,2766,-1,1607,1538,3543,-1,5225,6646,5735,-1,5225,5922,6646,-1,3676,2223,2928,-1,2223,3676,1996,-1,402,997,1050,-1,997,402,335,-1,562,853,361,-1,562,997,853,-1,3753,4803,5225,-1,3753,3037,4803,-1,1662,1907,2223,-1,1453,1907,1662,-1,1971,2240,2280,-1,1971,2114,2240,-1,1787,2114,1971,-1,1787,1758,2114,-1,1643,1758,1787,-1,1465,1758,1643,-1,1465,1586,1758,-1,1176,1586,1465,-1,1176,1531,1586,-1,1176,1316,1531,-1,886,1316,1176,-1,886,882,1316,-1,749,882,886,-1,749,653,882,-1,749,708,653,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=56 */
		private int[] getmand_Geo_5_877_normalIndex_56()
		{
			int[] value = {2814,1971,3342,-1,2814,1787,1971,-1,886,1453,988,-1,1453,886,1176,-1,700,653,361,-1,700,882,653,-1,1586,2249,2464,-1,2249,1586,1531,-1,5527,4201,4288,-1,5527,5487,4201,-1,39,764,86,-1,39,799,764,-1,7183,5339,5380,-1,7180,5339,7183,-1,7848,7596,7618,-1,7848,7862,7596,-1,7911,7321,7180,-1,7919,7321,7911,-1,6621,5527,5497,-1,6621,6644,5527,-1,768,1599,799,-1,768,1601,1599,-1,927,414,919,-1,927,431,414,-1,4883,1985,4980,-1,4883,2067,1985,-1,7961,7818,7822,-1,7955,7818,7961,-1,1097,1990,1142,-1,1097,1979,1990,-1,655,61,641,-1,655,37,61,-1,7955,7814,7818,-1,7955,7953,7814,-1,192,1159,245,-1,1159,192,1142,-1,1985,542,1941,-1,542,1985,641,-1,774,1406,663,-1,774,1542,1406,-1,5897,4183,4021,-1,4183,5897,5783,-1,51,461,69,-1,51,444,461,-1,414,174,384,-1,204,174,414,-1,5305,4071,4065,-1,5309,4071,5305,-1,6858,6305,6282,-1,6843,6305,6858,-1,5057,6136,6163,-1,5046,6136,5057,-1,2268,2730,2190,-1,2268,2809,2730,-1,5714,5264,5309,-1,5678,5264,5714,-1,7815,6948,6843,-1,7570,6948,7815,-1,3614,4959,5046,-1,3697,4959,3614,-1,5264,4044,4025,-1,5229,4044,5264,-1,6757,6385,6948,-1,6757,6237,6385,-1,7332,6757,7370,-1,7332,6820,6757,-1,2270,2867,2323,-1,2270,2742,2867,-1,715,928,464,-1,715,1057,928,-1,5229,4165,4044,-1,5345,4165,5229,-1,5694,5388,5345,-1,5710,5388,5694,-1,7207,6820,7332,-1,7207,6786,6820,-1,3608,4821,4932,-1,3604,4821,3608,-1,1547,1852,1395,-1,1547,1997,1852,-1,5345,4193,4165,-1,5388,4193,5345,-1,5710,5149,5388,-1,5546,5149,5710,-1,6505,6786,7207,-1,6505,6390,6786,-1,3604,4656,4821,-1,3650,4656,3604,-1,1904,1997,1547,-1,1904,2298,1997,-1,2807,1904,1693,-1,2807,2865,1904,-1,4093,3408,2686,-1,3984,3408,4093,-1,4798,5804,6034,-1,4798,4725,5804,-1,5404,4774,6002,-1,4491,4774,5404,-1,3177,2968,2570,-1,3177,3348,2968,-1,406,1308,369,-1,406,1391,1308,-1,1869,2577,1709,-1,2577,1869,2696,-1,4332,5161,5178,-1,4160,5161,4332,-1,1826,1391,1965,-1,1391,1826,1308,-1,1391,665,1419,-1,665,1391,406,-1,6822,7780,7645,-1,6822,6917,7780,-1,4160,5127,5161,-1,3945,5127,4160,-1,2969,3872,3945,-1,3116,3872,2969,-1,955,1419,665,-1,955,1412,1419,-1,2987,4825,4372,-1,2987,3351,4825,-1,6290,5825,6236,-1,6290,5931,5825,-1,5958,6960,6955,-1,5875,6960,5958,-1,4749,5688,5875,-1,4839,5688,4749,-1,805,1365,1282,-1,1365,805,976,-1,5695,5458,5188,-1,5590,5458,5695,-1,6024,5777,5590,-1,5974,5777,6024,-1,6746,6624,6344,-1,6746,7125,6624,-1,1752,2055,1783,-1,1752,1964,2055,-1,2057,1763,1637,-1,1890,1763,2057,-1,2506,3172,2939,-1,2506,1890,3172,-1,2061,1525,1598,-1,2061,1949,1525,-1,6122,6660,6746,-1,6122,6068,6660,-1,3931,4359,5059,-1,3954,4359,3931,-1,4799,6068,6122,-1,4799,4770,6068,-1,4444,5168,5416,-1,4444,4373,5168,-1,3246,2506,3325,-1,3246,2394,2506,-1,2996,2170,1926,-1,2996,3017,2170,-1,3486,3931,2841,-1,3486,3954,3931,-1,6834,7884,7756,-1,6898,7884,6834,-1,4013,2357,2337,-1,4067,2357,4013,-1,4067,2355,2357,-1,4065,2355,4067,-1,6280,6032,6030,-1,6282,6032,6280,-1,6157,6908,6898,-1,6163,6908,6157,-1,3074,4574,4705,-1,2952,4574,3074,-1,1275,309,1299,-1,309,1275,177,-1,6973,6207,5929,-1,6973,7020,6207,-1,2186,2952,2185,-1,2186,2981,2952,-1,127,309,134,-1,127,314,309,-1,5395,6003,5929,-1,5178,6003,5395,-1,1826,2186,1863,-1,1826,2255,2186,-1,790,127,778,-1,790,55,127,-1,6635,5999,6058,-1,6635,6547,5999,-1,6547,5782,5999,-1,6547,6479,5782,-1,6479,5641,5782,-1,6479,6421,5641,-1,1006,23,1017,-1,1006,33,23,-1,1809,2190,1796,-1,1809,2268,2190,-1,1047,33,1006,-1,1047,163,33,-1,464,547,163,-1,464,928,547,-1,6637,7033,7372,-1,7033,6637,6740,-1,5353,6050,6058,-1,6050,5353,5374,-1,2711,3595,3596,-1,2711,2715,3595,-1,30,602,5,-1,602,30,640,-1,2355,1015,2357,-1,2355,1017,1015,-1,1266,1799,1273,-1,1266,1795,1799,-1,3564,3970,3646,-1,3736,3970,3564,-1,3736,4022,3970,-1,4223,4022,3736,-1,4223,4103,4022,-1,4223,4411,4103,-1,4386,4411,4223,-1,4506,4411,4386,-1,4702,4411,4506,-1,4702,4627,4411,-1,4769,4627,4702,-1,4769,4642,4627,-1,4769,4791,4642,-1,4934,4791,4769,-1,4934,4880,4791,-1,7477,7793,7723,-1,7363,7793,7477,-1,1025,481,994,-1,1025,642,481,-1,4664,4477,4497,-1,4641,4477,4664,-1,7998,6594,6689,-1,7924,6594,7998,-1,3677,5364,5369,-1,3760,5364,3677,-1,6576,5699,6658,-1,6576,5689,5699,-1,3807,4669,4692,-1,4669,3807,3957,-1,3789,2383,2324,-1,3831,2383,3789,-1,7461,7874,7924,-1,7446,7874,7461,-1,2383,1327,1246,-1,2348,1327,2383,-1,5110,4643,5146,-1,5110,4577,4643,-1,7473,7190,6902,-1,7473,7612,7190,-1,849,1327,1172,-1,1327,849,1246,-1,5723,4833,5574,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=57 */
		private int[] getmand_Geo_5_877_normalIndex_57()
		{
			int[] value = {5723,4856,4833,-1,5217,4577,5110,-1,5217,4606,4577,-1,5757,4856,5723,-1,5757,4966,4856,-1,5544,6753,6769,-1,5503,6753,5544,-1,6526,7358,6574,-1,6526,6890,7358,-1,2202,1786,1513,-1,2315,1786,2202,-1,5335,4606,5217,-1,5335,4659,4606,-1,1323,1651,1701,-1,1651,1323,1352,-1,5503,6306,6753,-1,5379,6306,5503,-1,2894,3319,2733,-1,2894,3510,3319,-1,5609,6146,5366,-1,5609,6574,6146,-1,4595,3976,4659,-1,4595,4304,3976,-1,2032,2483,2765,-1,2483,2032,1701,-1,3718,3241,2752,-1,3241,3718,4075,-1,4175,3443,3696,-1,3443,4175,4089,-1,2497,3187,2479,-1,2497,3262,3187,-1,3416,4256,3262,-1,4289,4256,3416,-1,3275,3780,3312,-1,3807,3780,3275,-1,4966,3941,4856,-1,4966,3750,3941,-1,4458,5906,5795,-1,5906,4458,4692,-1,6628,5460,6594,-1,6628,5574,5460,-1,5193,5020,5843,-1,4713,5020,5193,-1,4258,4014,3865,-1,4258,4327,4014,-1,3089,3875,2776,-1,3892,3875,3089,-1,4791,5004,4642,-1,4791,5366,5004,-1,4702,4595,5094,-1,4702,4506,4595,-1,3854,3736,2872,-1,4223,3736,3854,-1,3646,3154,2645,-1,3646,3970,3154,-1,2497,2390,2757,-1,1845,2390,2497,-1,3236,2108,2107,-1,2108,3236,2908,-1,6642,5723,6781,-1,5757,5723,6642,-1,3892,3241,3949,-1,3892,3089,3241,-1,6741,6214,6239,-1,6741,6738,6214,-1,2311,3140,2274,-1,2311,3167,3140,-1,2256,3167,2311,-1,2256,3206,3167,-1,6497,7676,7689,-1,6497,6493,7676,-1,5100,3745,3873,-1,5100,5144,3745,-1,6833,5997,5831,-1,6872,5997,6833,-1,4123,3196,3136,-1,4218,3196,4123,-1,2395,3206,2256,-1,2395,3309,3206,-1,3361,1582,1458,-1,3221,1582,3361,-1,6145,6669,6675,-1,6029,6669,6145,-1,5033,4588,4547,-1,5124,4588,5033,-1,1335,2452,1376,-1,1335,2134,2452,-1,7800,6669,6739,-1,7800,7787,6669,-1,3574,3927,3628,-1,3574,3612,3927,-1,1550,1232,1633,-1,1232,1550,1034,-1,7787,6717,6549,-1,7800,6717,7787,-1,4297,3302,3269,-1,4331,3302,4297,-1,6923,6110,6060,-1,7067,6110,6923,-1,2134,1383,2077,-1,1383,2134,1335,-1,4846,5852,6001,-1,4511,5852,4846,-1,2687,3407,2616,-1,2687,3347,3407,-1,5979,7653,7729,-1,5883,7653,5979,-1,2215,1612,1543,-1,2245,1612,2215,-1,5167,4772,4597,-1,5270,4772,5167,-1,2094,2687,1900,-1,2094,2750,2687,-1,5072,4440,4225,-1,5219,4440,5072,-1,3512,3410,3578,-1,3512,3321,3410,-1,7000,6330,6220,-1,6829,6330,7000,-1,1911,2205,1498,-1,1911,2470,2205,-1,4335,3403,3313,-1,4449,3403,4335,-1,3473,3512,3420,-1,3473,3402,3512,-1,2669,1702,2040,-1,2669,2083,1702,-1,7051,7768,7685,-1,6996,7768,7051,-1,4449,3588,3403,-1,4501,3588,4449,-1,6829,6268,6330,-1,6929,6268,6829,-1,2335,2470,1911,-1,2335,2594,2470,-1,5506,7013,6996,-1,5238,7013,5506,-1,3418,3402,3473,-1,3418,3369,3402,-1,5263,4657,4472,-1,5360,4657,5263,-1,2724,2500,2426,-1,2826,2500,2724,-1,5410,5102,4977,-1,5450,5102,5410,-1,5613,7147,7563,-1,5510,7147,5613,-1,7697,6696,6988,-1,7193,6696,7697,-1,3389,3369,3418,-1,3389,3290,3369,-1,2685,2744,2879,-1,2744,2685,2451,-1,4561,3695,3658,-1,4701,3695,4561,-1,7003,6041,6296,-1,6584,6041,7003,-1,7193,5675,6696,-1,5889,5675,7193,-1,5288,6041,6584,-1,5288,5157,6041,-1,2995,3678,2775,-1,3871,3678,2995,-1,5367,4745,5031,-1,4919,4745,5367,-1,4440,3766,3683,-1,3766,4440,4472,-1,4370,3221,3361,-1,3221,4370,4276,-1,5773,4945,5634,-1,5773,4957,4945,-1,5927,5360,5263,-1,5927,6121,5360,-1,2751,3281,2891,-1,2751,3282,3281,-1,2942,3333,2916,-1,2942,3346,3333,-1,3917,4691,3822,-1,4847,4691,3917,-1,3722,4689,4698,-1,4689,3722,3740,-1,6497,5509,6493,-1,6497,5617,5509,-1,6239,5130,5144,-1,6239,6214,5130,-1,2077,2751,2134,-1,2077,2771,2751,-1,2942,2685,2958,-1,2594,2685,2942,-1,4847,5508,5510,-1,5508,4847,4951,-1,5883,4743,5869,-1,5883,4560,4743,-1,6549,5773,5634,-1,6549,6717,5773,-1,6766,6121,5927,-1,6766,6988,6121,-1,3801,4011,4273,-1,2802,4011,3801,-1,2802,3962,4011,-1,2802,3665,3962,-1,2606,3665,2802,-1,2606,3365,3665,-1,2606,3183,3365,-1,2606,3029,3183,-1,2545,3029,2606,-1,2545,2793,3029,-1,2545,2599,2793,-1,2545,2562,2599,-1,2545,2553,2562,-1,2545,2539,2553,-1,4704,6376,6202,-1,4860,6376,4704,-1,7775,7368,7623,-1,7775,7547,7368,-1,3153,1828,2181,-1,3039,1828,3153,-1,5853,4947,5624,-1,5853,5245,4947,-1,1116,674,1216,-1,674,1116,740,-1,5169,6308,6416,-1,5000,6308,5169,-1,2698,2633,2596,-1,2698,2732,2633,-1,1195,1125,1005,-1,1195,1364,1125,-1,901,1216,674,-1,901,1310,1216,-1,3039,1956,1828,-1,3043,1956,3039,-1,5853,5197,5245,-1,5817,5197,5853,-1,6927,7296,6957,-1,6927,7140,7296,-1,1592,901,1114,-1,1592,1474,901,-1,4188,3211,3043,-1,4216,3211,4188,-1,6484,5817,6557,-1,6484,5786,5817,-1,7662,6995,7353,-1,7662,7757,6995,-1,3461,3844,3286,-1,3461,3814,3844,-1,2214,2418,1759,-1,2214,2689,2418,-1,4832,3959,3764,-1,5279,3959,4832,-1,6790,6397,6123,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=58 */
		private int[] getmand_Geo_5_877_normalIndex_58()
		{
			int[] value = {6790,7353,6397,-1,3148,2917,2689,-1,3148,3239,2917,-1,6079,6957,6192,-1,6079,6927,6957,-1,2325,2140,1806,-1,2550,2140,2325,-1,4287,5159,4631,-1,4287,4762,5159,-1,3613,4112,4900,-1,4112,3613,3105,-1,2964,3767,3044,-1,2964,3768,3767,-1,5765,4797,5342,-1,5765,4830,4797,-1,3764,3173,2900,-1,3173,3764,3959,-1,2900,2820,1867,-1,2820,2900,3173,-1,1216,2359,1116,-1,2233,2359,1216,-1,2545,2557,2156,-1,2545,2606,2557,-1,6079,4273,4011,-1,4273,6079,6192,-1,3365,4287,4631,-1,3365,3183,4287,-1,1998,2539,1824,-1,2553,2539,1998,-1,3959,3481,3173,-1,3810,3481,3959,-1,5147,6180,6668,-1,6180,5147,4900,-1,5279,5092,4384,-1,5092,5279,5911,-1,5081,6790,4904,-1,5081,6735,6790,-1,3763,4059,3631,-1,3763,3881,4059,-1,7877,6673,6775,-1,7762,6673,7877,-1,7427,7387,7251,-1,7469,7387,7427,-1,522,472,691,-1,522,873,472,-1,3868,4496,3860,-1,4496,3868,4526,-1,5639,5115,5727,-1,5639,5121,5115,-1,7469,7998,7387,-1,7526,7998,7469,-1,959,2372,994,-1,2372,959,2286,-1,5516,4975,5623,-1,4914,4975,5516,-1,873,3030,972,-1,873,2783,3030,-1,5623,4263,5171,-1,5623,4975,4263,-1,3533,3128,3537,-1,3128,3533,3103,-1,242,109,145,-1,138,109,242,-1,4199,3250,4307,-1,4199,3192,3250,-1,7385,7249,7987,-1,7453,7249,7385,-1,3787,3537,3837,-1,3533,3537,3787,-1,7676,6738,6741,-1,7676,7530,6738,-1,1920,3136,2021,-1,3136,1920,3188,-1,5831,4795,5708,-1,5831,4990,4795,-1,4029,4448,4245,-1,4154,4448,4029,-1,3136,2150,2021,-1,3196,2150,3136,-1,3555,4245,3746,-1,3555,4029,4245,-1,4083,3589,3363,-1,4253,3589,4083,-1,6728,5708,5654,-1,6728,6751,5708,-1,5048,4761,4967,-1,4761,5048,4820,-1,3837,5130,5201,-1,3837,3783,5130,-1,287,1137,138,-1,1137,287,1234,-1,2848,3555,3112,-1,3555,2848,3316,-1,4199,3188,3192,-1,4199,4115,3188,-1,1910,890,1815,-1,890,1910,895,-1,6978,7515,7496,-1,6978,6981,7515,-1,4722,6202,6129,-1,4704,6202,4722,-1,2947,3005,3007,-1,2947,2944,3005,-1,7198,7720,7632,-1,7198,7150,7720,-1,1499,806,812,-1,1390,806,1499,-1,4244,3457,3603,-1,4170,3457,4244,-1,2806,3387,2944,-1,2806,3323,3387,-1,1815,929,1647,-1,929,1815,890,-1,6939,7496,7547,-1,6939,6978,7496,-1,4947,4557,4905,-1,4947,4571,4557,-1,7632,7220,7198,-1,7505,7220,7632,-1,1164,806,1390,-1,1164,740,806,-1,4170,3153,3457,-1,4077,3153,4170,-1,2596,2806,2804,-1,2596,2633,2806,-1,1005,929,776,-1,1005,1125,929,-1,3119,3594,3229,-1,3119,3689,3594,-1,4498,3635,3675,-1,3635,4498,4539,-1,1122,2466,1384,-1,2477,2466,1122,-1,5311,6939,5342,-1,6978,6939,5311,-1,2696,3639,2577,-1,3827,3639,2696,-1,5868,5741,5806,-1,5868,5774,5741,-1,5095,3351,3639,-1,5095,4825,3351,-1,6236,5774,6244,-1,6236,5825,5774,-1,325,732,455,-1,550,732,325,-1,2524,3022,2469,-1,2524,3098,3022,-1,1491,2524,1298,-1,1491,2622,2524,-1,3395,3936,3870,-1,3395,3484,3936,-1,1074,1491,751,-1,1074,1663,1491,-1,2733,3252,2709,-1,2733,3319,3252,-1,4305,3696,3921,-1,4175,3696,4305,-1,2747,1987,1934,-1,2747,2769,1987,-1,5941,5424,5459,-1,5941,5910,5424,-1,7795,6811,6836,-1,7795,7725,6811,-1,6811,6231,6164,-1,6811,6876,6231,-1,2769,2029,1987,-1,2769,2759,2029,-1,5098,3827,3796,-1,5098,5049,3827,-1,6973,7842,7770,-1,6973,7111,7842,-1,3009,2410,2420,-1,2410,3009,2912,-1,3732,5369,5425,-1,3732,3677,5369,-1,1187,2420,1066,-1,1187,2469,2420,-1,2799,3730,2783,-1,3730,2799,3312,-1,489,1023,1113,-1,293,1023,489,-1,7323,7325,7356,-1,7323,7276,7325,-1,7474,7659,7549,-1,7474,7492,7659,-1,733,717,761,-1,717,733,739,-1,552,625,784,-1,625,552,288,-1,1714,430,471,-1,430,1714,846,-1,798,887,1109,-1,798,416,887,-1,772,1418,632,-1,1418,772,1328,-1,432,286,577,-1,432,220,286,-1,100,885,66,-1,100,892,885,-1,296,981,202,-1,296,1198,981,-1,3563,4591,4706,-1,3563,3397,4591,-1,3422,3034,3279,-1,3034,3422,3091,-1,2493,2291,2175,-1,2291,2493,2388,-1,2693,2792,2849,-1,2527,2792,2693,-1,6338,5770,5575,-1,6375,5770,6338,-1,6375,5810,5770,-1,5810,6375,6205,-1,6498,6210,6395,-1,6210,6498,6327,-1,3634,4037,4403,-1,4037,3634,3082,-1,7633,7482,7463,-1,7511,7482,7633,-1,7313,7443,7411,-1,7313,7375,7443,-1,7930,7980,7765,-1,7930,7964,7980,-1,7671,7253,7539,-1,7253,7671,7672,-1,5761,7144,6849,-1,5761,5856,7144,-1,7988,7996,7938,-1,7988,7985,7996,-1,7667,7510,7564,-1,7510,7667,7580,-1,7210,7240,7263,-1,7210,7403,7240,-1,1730,607,947,-1,1730,1699,607,-1,7830,7871,7888,-1,7830,7813,7871,-1,7980,7985,7988,-1,7964,7985,7980,-1,7342,7510,7517,-1,7510,7342,7389,-1,7388,6141,6203,-1,7388,7481,6141,-1,7340,7347,7656,-1,7340,7297,7347,-1,7878,7613,7687,-1,7613,7878,7786,-1,7415,7143,6993,-1,7415,7537,7143,-1,2279,2719,2471,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=59 */
		private int[] getmand_Geo_5_877_normalIndex_59()
		{
			int[] value = {1843,2719,2279,-1,1475,1356,1624,-1,1475,1596,1356,-1,3580,2875,2675,-1,3580,3679,2875,-1,3008,3634,3969,-1,3634,3008,2630,-1,6568,7174,7081,-1,6568,6803,7174,-1,2471,2440,2421,-1,2440,2471,2719,-1,5079,5968,5186,-1,5079,5859,5968,-1,4037,3680,4142,-1,3680,4037,3391,-1,2644,1291,1555,-1,2644,2328,1291,-1,947,1793,2038,-1,1793,947,607,-1,5140,3607,3505,-1,3607,5140,4687,-1,7004,7327,6871,-1,7004,7559,7327,-1,6568,7004,6405,-1,6568,7081,7004,-1,5032,3320,3372,-1,5032,5079,3320,-1,2388,2366,2291,-1,2388,2421,2366,-1,6823,7303,6692,-1,7303,6823,7992,-1,4555,2052,5010,-1,4555,4918,2052,-1,2719,2272,2440,-1,2719,1579,2272,-1,7575,6587,7566,-1,6749,6587,7575,-1,317,41,404,-1,317,70,41,-1,3895,1251,968,-1,1251,3895,3592,-1,1418,4340,1260,-1,4375,4340,1418,-1,3688,1784,1563,-1,3688,4117,1784,-1,632,1260,578,-1,1260,632,1418,-1,7691,7797,7839,-1,7797,7691,7682,-1,7307,6849,7317,-1,7307,6931,6849,-1,936,632,1243,-1,632,936,772,-1,914,1155,946,-1,1155,914,1578,-1,7521,6444,7740,-1,7521,6267,6444,-1,2176,743,604,-1,2176,1123,743,-1,1068,670,826,-1,1068,854,670,-1,173,743,761,-1,173,365,743,-1,449,558,155,-1,449,217,558,-1,875,552,963,-1,598,552,875,-1,1569,2104,2447,-1,1569,1613,2104,-1,888,772,936,-1,772,888,880,-1,880,1328,772,-1,880,1343,1328,-1,50,202,148,-1,50,296,202,-1,104,798,760,-1,210,798,104,-1,400,337,299,-1,400,379,337,-1,4187,1483,1610,-1,3903,1483,4187,-1,4786,2059,4802,-1,1604,2059,4786,-1,2932,6194,3514,-1,2932,5849,6194,-1,2756,5761,2728,-1,2756,5856,5761,-1,610,2827,404,-1,3062,2827,610,-1,6160,3243,3123,-1,3243,6160,6203,-1,3382,6444,6267,-1,3382,3694,6444,-1,6607,4187,6686,-1,3903,4187,6607,-1,908,993,654,-1,908,1111,993,-1,2153,2376,2647,-1,1854,2376,2153,-1,2875,1977,1794,-1,3152,1977,2875,-1,3152,3021,1977,-1,7422,7459,7657,-1,7442,7459,7422,-1,7395,7291,7348,-1,7409,7291,7395,-1,6518,6356,6612,-1,6518,6184,6356,-1,2258,4651,4466,-1,2258,2767,4651,-1,2726,2593,3048,-1,2726,1727,2593,-1,460,910,820,-1,910,460,635,-1,7302,7499,7418,-1,7302,7552,7499,-1,7141,6709,6922,-1,7141,6824,6709,-1,7008,7228,7148,-1,7228,7008,7056,-1,6172,4147,6384,-1,6172,3905,4147,-1,7233,6824,7141,-1,7233,6915,6824,-1,582,1346,1087,-1,582,876,1346,-1,7305,7166,7383,-1,6920,7166,7305,-1,7348,7182,7218,-1,7291,7182,7348,-1,7152,7302,7131,-1,7152,7136,7302,-1,1324,1789,1821,-1,1789,1324,1311,-1,820,1381,1271,-1,820,910,1381,-1,2380,1881,1821,-1,2380,2422,1881,-1,2006,3479,2498,-1,2980,3479,2006,-1,4868,6321,5841,-1,4868,4647,6321,-1,7421,7484,7464,-1,7421,6534,7484,-1,7421,6151,6534,-1,1849,172,600,-1,1849,1697,172,-1,5717,7314,5482,-1,7314,5717,7540,-1,4134,3442,3913,-1,3482,3442,4134,-1,1255,1468,1580,-1,149,1468,1255,-1,5990,7858,6064,-1,7901,7858,5990,-1,4747,3858,4768,-1,3690,3858,4747,-1,1179,1193,393,-1,1179,1480,1193,-1,1319,2336,1954,-1,2336,1319,1876,-1,4368,4464,4504,-1,4368,4217,4464,-1,3435,4212,4116,-1,4212,3435,3314,-1,4888,5253,5294,-1,5253,4888,4972,-1,730,746,1029,-1,150,746,730,-1,3162,3094,3075,-1,3162,3374,3094,-1,5082,6582,6009,-1,5082,5352,6582,-1,150,398,833,-1,150,830,398,-1,5464,7149,5591,-1,5464,6178,7149,-1,3758,3374,3731,-1,3430,3374,3758,-1,1741,730,1665,-1,859,730,1741,-1,1118,1860,1020,-1,1878,1860,1118,-1,4972,5235,5253,-1,5235,4972,4996,-1,7338,6507,6582,-1,6507,7338,7257,-1,3287,2777,1486,-1,2777,3287,3280,-1,3585,4279,4582,-1,3287,4279,3585,-1,4156,3585,5992,-1,3460,3585,4156,-1,2367,3439,3972,-1,3439,2367,2713,-1,3504,3424,3525,-1,3504,3916,3424,-1,2558,793,884,-1,2558,2024,793,-1,1143,1865,2133,-1,1138,1865,1143,-1,1879,3702,1969,-1,1879,3570,3702,-1,6709,6446,6612,-1,6502,6446,6709,-1,6824,6502,6709,-1,6502,6824,6501,-1,1587,1969,2188,-1,1587,1502,1969,-1,2238,2548,2062,-1,2238,2700,2548,-1,1175,1505,1719,-1,1505,1175,208,-1,7746,6054,7699,-1,5937,6054,7746,-1,4928,6639,6552,-1,6639,4928,4755,-1,7039,7088,7029,-1,7088,7039,7023,-1,4755,1505,1676,-1,4755,4928,1505,-1,3388,2238,2975,-1,2238,3388,2700,-1,2048,5937,5717,-1,5937,2048,2345,-1,3862,5063,3784,-1,4893,5063,3862,-1,2347,5331,5666,-1,5331,2347,2566,-1,2882,1290,1532,-1,1290,2882,2199,-1,1411,5154,4688,-1,1411,1642,5154,-1,2106,6064,5960,-1,6064,2106,2143,-1,2197,1055,686,-1,2197,2069,1055,-1,1923,2413,2422,-1,1924,2413,1923,-1,4393,1937,2013,-1,4393,4147,1937,-1,2456,746,833,-1,746,2456,2446,-1,954,2367,2478,-1,954,1223,2367,-1,2450,5591,1657,-1,2450,5464,5591,-1,5352,2567,1830,-1,5352,5082,2567,-1,4751,3885,4348,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=60 */
		private int[] getmand_Geo_5_877_normalIndex_60()
		{
			int[] value = {4751,4259,3885,-1,1958,1488,1424,-1,1958,2101,1488,-1,722,1087,999,-1,722,582,1087,-1,357,616,592,-1,357,75,616,-1,2657,1885,2065,-1,2441,1885,2657,-1,3627,3327,4441,-1,3627,3060,3327,-1,6959,7039,6930,-1,6959,7083,7039,-1,6916,6878,6707,-1,6916,7029,6878,-1,2498,1346,2006,-1,1737,1346,2498,-1,7030,6837,7023,-1,7030,6897,6837,-1,6572,6959,6636,-1,6959,6572,6949,-1,2379,1338,1084,-1,2379,2459,1338,-1,2614,3909,3972,-1,2614,2459,3909,-1,2188,4463,2180,-1,2188,4473,4463,-1,298,576,566,-1,298,569,576,-1,1819,2248,1810,-1,2072,2248,1819,-1,1311,1810,1789,-1,1311,1397,1810,-1,576,752,796,-1,752,576,687,-1,5724,3905,6172,-1,3668,3905,5724,-1,838,569,254,-1,569,838,762,-1,294,938,451,-1,801,938,294,-1,6650,5268,6112,-1,6650,6167,5268,-1,3322,6813,6439,-1,6813,3322,4568,-1,4371,3322,3117,-1,3322,4371,4481,-1,4910,6297,4371,-1,4910,6331,6297,-1,5286,4007,5647,-1,5286,4005,4007,-1,3437,3210,3354,-1,3437,3052,3210,-1,4247,4096,5093,-1,4247,4350,4096,-1,4514,3384,4178,-1,4514,3458,3384,-1,4835,4865,4362,-1,5025,4865,4835,-1,4500,4787,5332,-1,4500,4484,4787,-1,4246,5372,5314,-1,4246,4514,5372,-1,5261,5376,4867,-1,5174,5376,5261,-1,2095,4003,2442,-1,2095,4069,4003,-1,2516,3946,3992,-1,2516,3334,3946,-1,4006,2868,2821,-1,4006,3893,2868,-1,6976,7837,7054,-1,7837,6976,7923,-1,157,1037,1022,-1,1037,157,428,-1,65,114,0,-1,114,65,156,-1,2522,3367,2254,-1,2522,3804,3367,-1,413,1482,428,-1,1482,413,1336,-1,2670,4576,2536,-1,4864,4576,2670,-1,7982,7080,7766,-1,7982,7261,7080,-1,1213,230,98,-1,230,1213,1107,-1,964,2015,979,-1,1999,2015,964,-1,6081,6850,6879,-1,6850,6081,6017,-1,6071,6846,7460,-1,6071,5722,6846,-1,190,98,230,-1,45,98,190,-1,3249,5333,5205,-1,3249,3530,5333,-1,7747,6943,7648,-1,6935,6943,7747,-1,6935,7999,7079,-1,6935,7747,7999,-1,7054,7624,6873,-1,7054,7837,7624,-1,3530,5120,5333,-1,4596,5120,3530,-1,3998,5417,5148,-1,5417,3998,3996,-1,3664,5677,3334,-1,3664,5260,5677,-1,2755,1016,2273,-1,2755,1203,1016,-1,4635,3508,4652,-1,3508,4635,3310,-1,4858,5332,5665,-1,4500,5332,4858,-1,6674,5489,6193,-1,6674,5436,5489,-1,1285,3530,3249,-1,1285,2028,3530,-1,6719,6107,6398,-1,5589,6107,6719,-1,6935,5443,6943,-1,4987,5443,6935,-1,3466,4652,3508,-1,4652,3466,4357,-1,3214,3458,3258,-1,3214,3384,3458,-1,2180,2828,2177,-1,4508,2180,4463,-1,4508,2828,2180,-1,6732,6511,6486,-1,6732,6870,6511,-1,6410,6083,6357,-1,6410,6154,6083,-1,1636,1802,1682,-1,1802,1636,1750,-1,5009,5579,6294,-1,5009,4470,5579,-1,252,2090,1989,-1,1177,2090,252,-1,2734,2546,3065,-1,2304,2546,2734,-1,6730,5950,6080,-1,6730,6648,5950,-1,5725,4994,4924,-1,5725,5653,4994,-1,2856,3712,3096,-1,2856,3800,3712,-1,2200,1690,2408,-1,1690,2200,1862,-1,5873,5428,5491,-1,5873,5913,5428,-1,1908,2729,1959,-1,2729,1908,3267,-1,1626,1226,1476,-1,1626,1171,1226,-1,2542,2198,2659,-1,1811,2198,2542,-1,2659,4398,2542,-1,2659,4559,4398,-1,6295,5667,5246,-1,6295,6992,5667,-1,6103,6748,6504,-1,6234,6748,6103,-1,4097,5356,4213,-1,5108,5356,4097,-1,2659,3194,4559,-1,2659,3590,3194,-1,1947,3942,3771,-1,1521,3942,1947,-1,2090,5009,5445,-1,2090,2551,5009,-1,5749,5018,5248,-1,5749,5108,5018,-1,4941,4361,4785,-1,4941,3800,4361,-1,1606,1955,2123,-1,1606,1602,1955,-1,3894,6477,2520,-1,6477,3894,6648,-1,2552,6477,6708,-1,6477,2552,2520,-1,6147,6358,6053,-1,6147,6345,6358,-1,763,858,980,-1,763,566,858,-1,6078,6788,7163,-1,6235,6788,6078,-1,3381,3660,4369,-1,3381,3947,3660,-1,2861,1403,930,-1,3184,1403,2861,-1,4735,3755,4429,-1,4735,4553,3755,-1,4968,5074,5422,-1,5074,4968,4764,-1,5472,5376,5381,-1,5472,5166,5376,-1,5895,5491,5621,-1,5895,5873,5491,-1,5368,6147,5051,-1,6147,5368,6038,-1,6441,6492,6209,-1,6593,6492,6441,-1,6780,7019,6870,-1,6780,6784,7019,-1,6428,6097,6725,-1,6339,6097,6428,-1,2892,2423,2428,-1,2648,2423,2892,-1,1661,1466,1590,-1,1661,1476,1466,-1,896,763,982,-1,836,763,896,-1,1414,1552,1322,-1,1552,1414,1685,-1,2168,1756,2177,-1,1913,1756,2168,-1,2989,2146,2123,-1,2146,2989,3121,-1,1325,1052,980,-1,1052,1325,1188,-1,6387,6262,6154,-1,6537,6262,6387,-1,3987,3851,4158,-1,3989,3851,3987,-1,3538,4178,3384,-1,4178,3538,4247,-1,5368,4871,5203,-1,4871,5368,5051,-1,5918,6167,6677,-1,5268,6167,5918,-1,4481,4568,3322,-1,4568,4481,5421,-1,6233,5918,6677,-1,5918,6233,6302,-1,4676,4012,4208,-1,4676,4009,4012,-1,5143,5005,4740,-1,5143,5152,5005,-1,5726,5647,5391,-1,5286,5647,5726,-1,4203,3583,4350,-1,4203,4099,3583,-1,4211,3546,3651,-1,3546,4211,4231,-1,2541,2651,2816,-1,3556,2651,2541,-1,4298,6796,3964,-1,4298,6920,6796,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=61 */
		private int[] getmand_Geo_5_877_normalIndex_61()
		{
			int[] value = {7383,6151,7421,-1,6534,7383,7166,-1,6151,7383,6534,-1,7233,7462,7285,-1,7233,7394,7462,-1,7164,7568,7642,-1,7568,7164,7566,-1,7996,7740,7754,-1,7985,7740,7996,-1,7107,7566,7164,-1,7575,7566,7107,-1,7517,7797,7342,-1,7834,7797,7517,-1,7521,7930,7476,-1,7521,7964,7930,-1,7409,7378,7291,-1,7430,7378,7409,-1,7619,7323,7587,-1,7263,7323,7619,-1,7443,7564,7463,-1,7443,7375,7564,-1,7481,7846,7426,-1,7481,7843,7846,-1,7551,7297,7340,-1,7551,7666,7297,-1,3284,2933,3680,-1,2933,3284,2727,-1,3034,1699,1730,-1,1699,3034,3091,-1,5629,2803,4976,-1,2803,5629,5375,-1,1761,1727,2034,-1,974,1727,1761,-1,898,670,511,-1,670,898,1056,-1,995,375,946,-1,442,375,995,-1,816,103,125,-1,103,816,775,-1,103,846,76,-1,846,103,430,-1,6563,4502,6291,-1,4502,6563,4492,-1,274,3227,2949,-1,274,178,3227,-1,1893,4655,2512,-1,1893,2475,4655,-1,1214,130,210,-1,1214,1517,130,-1,936,847,888,-1,855,847,936,-1,816,173,115,-1,173,816,1106,-1,7728,7656,7817,-1,7728,7340,7656,-1,5886,6691,6593,-1,5886,6118,6691,-1,4200,5076,4708,-1,5076,4200,4135,-1,5733,5812,5579,-1,5733,5886,5812,-1,6447,6593,6725,-1,6447,6492,6593,-1,283,367,342,-1,324,367,283,-1,48,902,117,-1,48,807,902,-1,534,831,529,-1,534,605,831,-1,18,434,58,-1,18,403,434,-1,7392,7265,7703,-1,7392,7329,7265,-1,7379,7554,7811,-1,7379,7112,7554,-1,7709,7438,7737,-1,7709,7329,7438,-1,304,293,489,-1,293,304,179,-1,221,324,316,-1,367,324,221,-1,170,605,534,-1,605,170,49,-1,1105,753,1893,-1,1105,1079,753,-1,3048,2691,3079,-1,3048,2593,2691,-1,1381,1924,1923,-1,1924,1381,1448,-1,3531,2959,2816,-1,3531,3535,2959,-1,3725,5726,4127,-1,5726,3725,4961,-1,7715,7610,7592,-1,7715,7698,7610,-1,2507,689,2555,-1,689,2507,657,-1,7548,6516,6605,-1,7489,6516,7548,-1,7752,7548,7390,-1,7850,7548,7752,-1,7406,5909,5840,-1,7406,7343,5909,-1,166,247,229,-1,166,205,247,-1,1388,2412,1233,-1,2412,1388,2374,-1,2151,3545,2374,-1,3545,2151,3477,-1,7390,7527,7752,-1,7390,7214,7527,-1,5797,7343,6994,-1,5909,7343,5797,-1,229,113,92,-1,229,247,113,-1,87,116,92,-1,87,36,116,-1,3477,2184,3358,-1,2184,3477,2151,-1,7214,7073,7527,-1,6810,7073,7214,-1,6994,5720,5797,-1,6506,5720,6994,-1,90,92,113,-1,90,87,92,-1,152,6,131,-1,152,1,6,-1,97,13,91,-1,97,1,13,-1,2513,1341,2458,-1,1341,2513,1386,-1,126,166,188,-1,126,32,166,-1,94,6,89,-1,94,32,6,-1,1289,2444,1331,-1,1289,2378,2444,-1,6490,7489,7448,-1,6516,7489,6490,-1,3687,2444,3741,-1,2444,3687,2458,-1,7914,7350,7448,-1,7914,7943,7350,-1,7939,7825,7788,-1,7939,7943,7825,-1,3684,5490,5468,-1,3684,3687,5490,-1,7664,7165,7071,-1,7639,7165,7664,-1,2465,624,2525,-1,624,2465,509,-1,697,2465,2485,-1,509,2465,697,-1,267,912,911,-1,912,267,319,-1,1103,1237,1935,-1,1103,420,1237,-1,4084,5750,4451,-1,5269,5750,4084,-1,565,756,911,-1,565,476,756,-1,912,348,448,-1,909,348,912,-1,1053,2184,900,-1,2128,2184,1053,-1,5181,5748,6286,-1,5748,5181,4663,-1,6449,7073,6429,-1,6449,7100,7073,-1,6074,6924,6443,-1,6074,6506,6924,-1,2266,4620,4710,-1,2266,2244,4620,-1,1385,802,253,-1,1027,802,1385,-1,906,1237,420,-1,906,1269,1237,-1,7295,6173,6414,-1,7123,6173,7295,-1,7902,6964,7161,-1,7902,7859,6964,-1,2148,800,1755,-1,800,2148,1096,-1,1115,1814,969,-1,1814,1115,1804,-1,2940,3307,2117,-1,3307,2940,3934,-1,7194,7702,7867,-1,7194,6971,7702,-1,6632,5762,5495,-1,6632,6190,5762,-1,2712,1367,1848,-1,1367,2712,2220,-1,1019,2017,961,-1,2017,1019,2008,-1,508,1284,485,-1,508,1212,1284,-1,2017,3106,2014,-1,2017,3107,3106,-1,129,269,243,-1,129,215,269,-1,191,528,215,-1,528,191,485,-1,7968,7179,7333,-1,7968,7952,7179,-1,7115,6090,6127,-1,7006,6090,7115,-1,5003,6090,6033,-1,5006,6090,5003,-1,8004,7968,7969,-1,8003,7968,8004,-1,7966,7889,7864,-1,7994,7889,7966,-1,7357,5881,5938,-1,7333,5881,7357,-1,1755,573,1574,-1,1755,800,573,-1,969,1777,945,-1,969,1814,1777,-1,1115,1320,1514,-1,1115,766,1320,-1,7909,7947,7979,-1,7909,7867,7947,-1,3468,5173,5281,-1,3468,3149,5173,-1,7295,7909,7917,-1,7312,7909,7295,-1,2148,3882,2843,-1,2148,3876,3882,-1,3876,1755,3659,-1,3876,2148,1755,-1,4163,3934,2940,-1,3934,4163,4889,-1,2712,4015,2220,-1,2712,4252,4015,-1,6190,5564,5762,-1,6190,6045,5564,-1,6971,6389,7702,-1,6971,6229,6389,-1,2088,3975,2113,-1,3975,2088,3902,-1,555,213,453,-1,370,213,555,-1,1469,2088,1377,-1,2088,1469,2085,-1,7223,6480,6561,-1,7235,6480,7223,-1,7621,7937,7960,-1,7550,7937,7621,-1,837,364,744,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=62 */
		private int[] getmand_Geo_5_877_normalIndex_62()
		{
			int[] value = {364,837,551,-1,5790,6520,6561,-1,5790,5780,6520,-1,6520,7284,7250,-1,6520,6473,7284,-1,7990,7528,7441,-1,7990,7959,7528,-1,551,791,514,-1,551,837,791,-1,5780,6473,6520,-1,5780,5800,6473,-1,6473,7272,7284,-1,6473,6554,7272,-1,7833,7959,7942,-1,7528,7959,7833,-1,2710,2361,2680,-1,2361,2710,2409,-1,478,532,514,-1,532,478,523,-1,1235,568,1149,-1,1235,523,568,-1,5956,6571,6554,-1,5956,6227,6571,-1,7767,7934,7942,-1,7767,7730,7934,-1,2409,1781,1584,-1,2409,2400,1781,-1,952,2060,1359,-1,952,1781,2060,-1,1537,2247,1149,-1,2247,1537,2563,-1,7670,7736,7605,-1,7730,7736,7670,-1,4418,6457,4453,-1,4418,6377,6457,-1,6351,5959,5788,-1,6611,5959,6351,-1,7154,7670,7009,-1,7823,7670,7154,-1,3923,2031,3808,-1,2132,2031,3923,-1,5587,5788,5080,-1,5788,5587,6096,-1,7009,7227,7440,-1,7009,6958,7227,-1,5732,4654,3923,-1,5732,6037,4654,-1,6096,6835,6555,-1,6544,6835,6096,-1,7649,7298,7359,-1,7298,7649,7440,-1,5548,6246,4965,-1,6423,6246,5548,-1,2522,1363,2484,-1,2522,1336,1363,-1,7204,6391,6412,-1,7243,6391,7204,-1,2674,5614,5685,-1,2624,5614,2674,-1,11,142,0,-1,142,11,161,-1,2555,827,2674,-1,827,2555,689,-1,390,147,396,-1,390,161,147,-1,5467,6407,6412,-1,5467,5468,6407,-1,7801,7577,7595,-1,7801,7788,7577,-1,5938,7366,7357,-1,6027,7366,5938,-1,484,190,475,-1,190,484,193,-1,2014,3097,1999,-1,3097,2014,3106,-1,7969,8002,8004,-1,7944,8002,7969,-1,508,193,484,-1,508,195,193,-1,6017,6861,6850,-1,6021,6861,6017,-1,7910,7366,7460,-1,7944,7366,7910,-1,3825,5601,5659,-1,5601,3825,3975,-1,555,1440,612,-1,555,1410,1440,-1,7711,7860,7852,-1,7860,7711,7748,-1,7852,7937,7956,-1,7852,7860,7937,-1,5642,3935,5648,-1,3935,5642,3928,-1,1981,1723,1980,-1,1723,1981,1726,-1,1140,1841,1100,-1,1841,1140,1868,-1,4300,5278,4389,-1,5278,4300,5194,-1,3971,2699,3928,-1,2699,3971,2745,-1,439,1140,194,-1,1140,439,1229,-1,2985,4300,3026,-1,4300,2985,4461,-1,5433,3971,5669,-1,3971,5433,3953,-1,2037,1773,1640,-1,2037,2082,1773,-1,1773,1194,1247,-1,1773,1745,1194,-1,2002,2985,2071,-1,2985,2002,3067,-1,5683,6150,6137,-1,5683,5740,6150,-1,7533,6789,6656,-1,7533,7319,6789,-1,2667,2385,2780,-1,2385,2667,2313,-1,2296,2020,2313,-1,2020,2296,1986,-1,795,1368,680,-1,1368,795,1549,-1,4400,5267,4396,-1,5267,4400,5206,-1,6608,6792,6970,-1,6608,6467,6792,-1,5448,3840,5515,-1,3840,5448,3813,-1,3899,2615,3813,-1,2615,3899,2857,-1,1734,1615,1224,-1,1734,1978,1615,-1,2597,3178,2207,-1,3178,2597,3337,-1,5649,5709,6014,-1,5649,5434,5709,-1,6382,6569,7032,-1,6569,6382,6133,-1,5029,5321,6133,-1,5321,5029,4593,-1,2467,3273,2204,-1,2467,3412,3273,-1,2982,2009,1500,-1,2009,2982,3222,-1,4285,5038,4356,-1,5038,4285,4646,-1,3224,3345,3200,-1,3224,3619,3345,-1,3380,3619,3224,-1,3380,3649,3619,-1,3464,3649,3380,-1,3464,4043,3649,-1,3557,4043,3464,-1,3557,4522,4043,-1,3633,4522,3557,-1,3633,4929,4522,-1,3890,4929,3633,-1,3890,5104,4929,-1,4439,5104,3890,-1,4668,5104,4439,-1,4668,4985,5104,-1,4752,4985,4668,-1,4752,5007,4985,-1,4752,5030,5007,-1,4752,4979,5030,-1,7213,6281,6135,-1,7213,7364,6281,-1,2135,2825,2007,-1,2825,2135,2842,-1,5755,6043,6177,-1,5755,5571,6043,-1,6585,6043,5988,-1,6614,6043,6585,-1,6341,7364,7106,-1,6281,7364,6341,-1,1002,363,1051,-1,1002,222,363,-1,4055,4946,3846,-1,4946,4055,5037,-1,5037,5526,5538,-1,5037,4886,5526,-1,7344,7242,7705,-1,7344,7069,7242,-1,4644,5796,5017,-1,4644,5745,5796,-1,1718,1192,1774,-1,1192,1718,1278,-1,1230,531,1278,-1,531,1230,879,-1,3161,4113,3248,-1,4113,3161,4207,-1,6334,6640,6366,-1,6334,7057,6640,-1,2417,2075,2312,-1,2075,2417,1988,-1,1988,1646,1572,-1,1988,2036,1646,-1,1667,2356,1382,-1,2356,1667,2271,-1,5343,6044,5923,-1,5343,5576,6044,-1,6487,6755,6540,-1,6701,6755,6487,-1,2835,2232,2609,-1,2232,2835,2586,-1,6117,5612,5505,-1,6117,6242,5612,-1,6044,5917,6252,-1,6044,5744,5917,-1,2282,2271,1667,-1,2271,2282,2731,-1,1646,1944,1344,-1,1646,2281,1944,-1,3619,2966,2731,-1,2966,3619,3649,-1,2281,3224,1944,-1,2281,3380,3224,-1,3890,2835,3611,-1,2835,3890,3633,-1,4979,5612,5942,-1,5612,4979,4752,-1,5917,4985,5830,-1,5917,5104,4985,-1,1982,1725,2003,-1,1725,1982,1724,-1,1108,1945,1177,-1,1945,1108,1844,-1,3932,2734,3982,-1,2734,3932,2702,-1,3935,2702,3932,-1,2702,3935,2704,-1,1723,1157,1724,-1,1157,1723,1146,-1,1841,2963,1844,-1,2963,1841,2950,-1,4924,5820,5725,-1,4924,5055,5820,-1,7868,7836,7695,-1,7932,7836,7868,-1,3426,5023,5055,-1,3426,3472,5023,-1,6704,7692,7695,-1,6704,6700,7692,-1,894,2056,1028,-1,2056,894,2007,-1,5023,5755,5819,-1,5023,4997,5755,-1,7692,7951,7879,-1,7692,7641,7951,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=63 */
		private int[] getmand_Geo_5_877_normalIndex_63()
		{
			int[] value = {2743,1953,2661,-1,2743,1966,1953,-1,4693,6201,4394,-1,6462,6201,4693,-1,2680,2189,2761,-1,2680,2361,2189,-1,7377,7974,7983,-1,7377,7391,7974,-1,5814,6216,6215,-1,5814,5815,6216,-1,7847,7391,7456,-1,7391,7847,7974,-1,6718,7077,7456,-1,6718,6553,7077,-1,1334,1957,1373,-1,1811,1957,1334,-1,4333,2542,4398,-1,4333,2631,2542,-1,1953,1373,1957,-1,1953,1375,1373,-1,5301,5813,5828,-1,5301,5295,5813,-1,8001,6987,6992,-1,8001,7976,6987,-1,4410,5291,5295,-1,4410,4407,5291,-1,6731,7377,7367,-1,6731,6737,7377,-1,2643,2937,2764,-1,2643,2983,2937,-1,4210,4138,4284,-1,3888,4138,4210,-1,3888,4050,4138,-1,3744,4050,3888,-1,3744,4048,4050,-1,3674,4048,3744,-1,3674,3759,4048,-1,3674,3329,3759,-1,3599,3329,3674,-1,3283,3329,3599,-1,3283,2890,3329,-1,2983,2890,3283,-1,2890,2983,2643,-1,2213,644,2098,-1,2213,524,644,-1,7012,5682,5631,-1,7012,6977,5682,-1,3359,2885,3331,-1,2885,3359,2881,-1,83,480,8,-1,480,83,540,-1,3520,3359,3518,-1,3359,3520,3353,-1,211,1427,395,-1,211,1348,1427,-1,6451,7157,7365,-1,6451,6352,7157,-1,4176,3518,4214,-1,3518,4176,3520,-1,549,1130,540,-1,1130,549,1133,-1,5668,4176,5619,-1,4176,5668,4240,-1,2858,2358,2316,-1,2858,2893,2358,-1,2263,1127,2384,-1,2263,814,1127,-1,601,1133,549,-1,1133,601,1238,-1,1222,162,1380,-1,162,1222,237,-1,5847,4240,5668,-1,4240,5847,4556,-1,2893,1975,2358,-1,2893,2787,1975,-1,1238,815,1253,-1,1238,601,815,-1,5915,6665,5903,-1,5915,6881,6665,-1,2787,1960,1975,-1,2787,2676,1960,-1,5903,6343,5674,-1,5903,6665,6343,-1,4450,4486,4675,-1,4450,4299,4486,-1,2676,2677,1960,-1,2676,2910,2677,-1,2794,2641,3000,-1,2794,1856,2641,-1,4299,4137,4486,-1,4299,3980,4137,-1,6309,5265,6343,-1,6309,5529,5265,-1,1225,1739,1906,-1,1225,958,1739,-1,3720,4299,3861,-1,4299,3720,3980,-1,4748,3904,4566,-1,4058,3904,4748,-1,4836,5528,5407,-1,4836,4814,5528,-1,3709,4278,4584,-1,4278,3709,3615,-1,4197,4836,4723,-1,4836,4197,4041,-1,4058,3164,3904,-1,4058,3139,3164,-1,6451,5202,5323,-1,5202,6451,6453,-1,6352,5323,5407,-1,5323,6352,6451,-1,1925,2764,1739,-1,1925,2643,2764,-1,3283,3720,2812,-1,3720,3283,3599,-1,4521,4210,5241,-1,4521,3888,4210,-1,4048,3922,4756,-1,3922,4048,3759,-1,3370,3615,3193,-1,3615,3370,3593,-1,2910,3225,2677,-1,2910,3294,3225,-1,3779,3693,4150,-1,3693,3779,3617,-1,2384,3324,2263,-1,3219,3324,2384,-1,5915,4566,5976,-1,4748,4566,5915,-1,2434,1222,1380,-1,1222,2434,2285,-1,2431,2643,1925,-1,2643,2431,2890,-1,2333,2941,2119,-1,2673,2941,2333,-1,2673,3847,2941,-1,2914,3847,2673,-1,2914,4271,3847,-1,2914,4191,4271,-1,2914,4195,4191,-1,3176,4195,2914,-1,3176,4164,4195,-1,3652,4164,3176,-1,3652,4349,4164,-1,3652,4422,4349,-1,4316,4422,3652,-1,4316,4345,4422,-1,4467,4855,4478,-1,4855,4467,4829,-1,6565,7717,7598,-1,6910,7717,6565,-1,2720,3278,2635,-1,4105,4321,4416,-1,4105,4133,4321,-1,3554,4133,4105,-1,3554,3723,4133,-1,3554,3399,3723,-1,3554,3296,3399,-1,3554,3078,3296,-1,3554,2846,3078,-1,3278,2846,3554,-1,3278,2720,2846,-1,3490,3093,3124,-1,3490,3637,3093,-1,1857,2860,1768,-1,2860,1857,2904,-1,2972,2169,3011,-1,2169,2972,2012,-1,4120,4715,4603,-1,4120,4173,4715,-1,3019,4124,2904,-1,4124,3019,4111,-1,5718,6460,6496,-1,5718,5611,6460,-1,3724,3093,3637,-1,3093,3724,3054,-1,1983,2904,1857,-1,2904,1983,3019,-1,2880,2012,2972,-1,2012,2880,1950,-1,4173,4714,4715,-1,4173,4277,4714,-1,5784,4804,5855,-1,4804,5784,4728,-1,5611,6371,6460,-1,5611,5387,6371,-1,6471,6671,6623,-1,6562,6671,6471,-1,3672,3411,3700,-1,3411,3672,3405,-1,228,939,279,-1,228,1082,939,-1,1329,251,1286,-1,251,1329,386,-1,3539,4421,3088,-1,4421,3539,4589,-1,5387,6105,6371,-1,5387,5320,6105,-1,4262,4665,4720,-1,4262,4315,4665,-1,5763,4696,5793,-1,4696,5763,4681,-1,2738,1897,2836,-1,1897,2738,1790,-1,6105,6307,6600,-1,6105,5908,6307,-1,953,2120,1072,-1,2120,953,2338,-1,4423,4581,4648,-1,4423,4485,4581,-1,355,1185,327,-1,355,1003,1185,-1,6508,6006,6392,-1,6508,6093,6006,-1,3552,3223,3666,-1,3223,3552,3118,-1,4581,5103,5258,-1,4581,4530,5103,-1,5344,4282,5948,-1,4282,5344,4236,-1,1007,2338,953,-1,2338,1007,2505,-1,3497,3118,3552,-1,3118,3497,3027,-1,4293,4682,4661,-1,4293,4185,4682,-1,5287,4599,5478,-1,4599,5287,4414,-1,5662,5521,5920,-1,5662,5390,5521,-1,5585,5578,5670,-1,5578,5585,5511,-1,3448,3027,3497,-1,3027,3448,2903,-1,1001,447,1078,-1,447,1001,863,-1,3203,2649,3336,-1,2649,3203,2611,-1,4431,3157,4916,-1,4431,2770,3157,-1,4633,4983,5026,-1,4633,4671,4983,-1,5012,4267,4906,-1,4267,5012,4073,-1,5234,5585,5214,-1,5511,5585,5234,-1,3295,2903,3448,-1,2903,3295,2974,-1,1420,863,1001,-1,863,1420,1539,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=64 */
		private int[] getmand_Geo_5_877_normalIndex_64()
		{
			int[] value = {3176,2611,3203,-1,2611,3176,2914,-1,4671,4349,4983,-1,4671,4164,4349,-1,2635,1420,2720,-1,1539,1420,2635,-1,5234,4416,4321,-1,5234,5214,4416,-1,3399,2974,3295,-1,2974,3399,3296,-1,4282,3776,4575,-1,3561,3776,4282,-1,4639,3490,3944,-1,3637,3490,4639,-1,3040,2239,2236,-1,3040,2935,2239,-1,2649,1951,1884,-1,2649,2611,1951,-1,4714,5237,5257,-1,4714,4720,5237,-1,4682,5036,5050,-1,4682,4598,5036,-1,3151,3866,4081,-1,3866,3151,3047,-1,3308,4315,4262,-1,4315,3308,3449,-1,3944,3467,3747,-1,3944,3490,3467,-1,4873,5739,5792,-1,4855,5739,4873,-1,5237,5803,5928,-1,5237,5164,5803,-1,5036,5067,5336,-1,5036,4724,5067,-1,2023,3237,2318,-1,3298,3237,2023,-1,2393,3253,2136,-1,3306,3253,2393,-1,1286,2239,1329,-1,2236,2239,1286,-1,1014,1951,1307,-1,1884,1951,1014,-1,706,466,639,-1,706,506,466,-1,850,466,1064,-1,466,850,227,-1,4958,3920,4844,-1,3920,4958,3774,-1,2381,1545,1490,-1,2381,2152,1545,-1,121,385,227,-1,385,121,250,-1,4794,5276,5373,-1,4794,4711,5276,-1,6643,6386,6245,-1,6880,6386,6643,-1,889,227,850,-1,227,889,121,-1,6610,6181,6863,-1,6181,6610,6052,-1,3209,2763,3125,-1,2763,3209,2805,-1,541,868,675,-1,541,966,868,-1,6541,6694,6340,-1,7104,6694,6541,-1,5681,4954,6052,-1,4954,5681,4783,-1,2844,2187,2805,-1,2187,2844,2225,-1,4238,3110,3886,-1,3110,4238,3165,-1,3004,4192,4161,-1,3004,3086,4192,-1,5310,5318,5588,-1,5310,5087,5318,-1,1632,351,1313,-1,351,1632,1199,-1,1508,3144,3086,-1,1508,1901,3144,-1,5034,4758,5087,-1,5034,4721,4758,-1,5469,6226,5426,-1,6361,6226,5469,-1,6013,6204,6418,-1,6204,6013,5862,-1,4062,3232,3788,-1,3232,4062,3711,-1,1081,2222,1933,-1,1081,1528,2222,-1,2559,4235,3055,-1,4234,4235,2559,-1,4390,5474,5300,-1,4390,4898,5474,-1,5068,3886,5365,-1,4238,3886,5068,-1,6456,4353,6373,-1,4780,4353,6456,-1,6008,5896,5835,-1,6008,6340,5896,-1,3727,2499,1813,-1,2499,3727,4204,-1,3366,4338,2778,-1,3366,4632,4338,-1,5452,5862,6013,-1,5862,5452,5444,-1,4645,5184,5469,-1,5184,4645,4527,-1,1510,3433,1585,-1,3055,3433,1510,-1,2079,850,2243,-1,2079,889,850,-1,4078,3568,2701,-1,4078,4260,3568,-1,3823,3940,3144,-1,3940,3823,4114,-1,4758,4404,4850,-1,4758,4346,4404,-1,645,757,600,-1,757,645,622,-1,7746,7034,7540,-1,7746,7706,7034,-1,4145,5632,5721,-1,4134,5632,4145,-1,2889,2142,3155,-1,2142,2889,2251,-1,2251,1446,1371,-1,2251,2364,1446,-1,1012,480,1067,-1,1012,533,480,-1,5631,4145,5721,-1,4145,5631,4140,-1,3540,3739,2833,-1,3540,4222,3739,-1,2833,645,1061,-1,645,2833,2382,-1,4270,3028,3739,-1,3643,3028,4270,-1,1279,1876,1319,-1,1876,1279,1798,-1,5792,4901,4873,-1,5738,4901,5792,-1,7809,7582,7743,-1,7582,7809,6761,-1,2921,3516,3285,-1,2921,3429,3516,-1,20,358,1065,-1,20,393,358,-1,7743,7289,7217,-1,7743,7582,7289,-1,1797,2800,1798,-1,2800,1797,2874,-1,3874,4812,4861,-1,3880,4812,3874,-1,1254,2169,1180,-1,1254,2237,2169,-1,3467,3124,3226,-1,3467,3490,3124,-1,3463,3786,3459,-1,3463,3874,3786,-1,3499,3553,3259,-1,3849,3553,3499,-1,2571,1864,3058,-1,2571,1168,1864,-1,1254,358,1276,-1,1254,88,358,-1,4129,3499,3292,-1,4129,3849,3499,-1,2988,2429,2847,-1,2870,2429,2988,-1,4220,4460,4171,-1,4220,4478,4460,-1,7865,6910,7764,-1,7717,6910,7865,-1,4890,6175,6761,-1,5162,6175,4890,-1,6089,4809,6186,-1,6089,4812,4809,-1,5235,6189,6094,-1,5235,5316,6189,-1,3500,3280,3460,-1,3280,3500,3220,-1,1878,996,1808,-1,1878,1118,996,-1,4580,5065,4999,-1,4580,4614,5065,-1,1641,859,1741,-1,859,1641,803,-1,6615,5989,6507,-1,5989,6615,6247,-1,3838,3430,3758,-1,3430,3838,3452,-1,5065,5198,5062,-1,5065,5196,5198,-1,7116,7224,7374,-1,7116,7076,7224,-1,3141,4230,3291,-1,4230,3141,4153,-1,3100,2381,2529,-1,3100,3051,2381,-1,554,1585,377,-1,1585,554,1510,-1,6838,6247,6615,-1,6247,6838,6482,-1,4670,5373,5196,-1,4670,4794,5373,-1,6880,6367,6386,-1,7076,6367,6880,-1,3433,4465,3425,-1,4308,4465,3433,-1,3220,2671,2697,-1,3220,3202,2671,-1,6292,4156,6365,-1,4326,4156,6292,-1,1024,2777,2697,-1,2777,1024,1021,-1,1132,1708,1013,-1,1778,1708,1132,-1,2203,2453,2269,-1,2438,2453,2203,-1,169,1090,222,-1,1013,1090,169,-1,2343,2235,2269,-1,2343,2178,2235,-1,7557,6826,6706,-1,6826,7557,7680,-1,4703,4981,4777,-1,4703,4907,4981,-1,4907,5382,5485,-1,4907,4766,5382,-1,7278,5976,5676,-1,7278,7155,5976,-1,5382,6350,6514,-1,5382,5302,6350,-1,4523,4675,4744,-1,4523,4450,4675,-1,6933,6665,6881,-1,6933,6683,6665,-1,7231,6078,7163,-1,7231,6025,6078,-1,3146,2548,3199,-1,3146,2560,2548,-1,1839,1175,1833,-1,1839,1201,1175,-1,4209,3146,4264,-1,4209,2931,3146,-1,2162,1839,2201,-1,2162,1778,1839,-1,7222,6025,7231,-1,7222,5980,6025,-1};
			return value;
		}

		/** Define subarray values using type int[] with $tupleSize=1 and $tupleSplitSize=1000 for subarray position()=65 */
		private int[] getmand_Geo_5_877_normalIndex_65()
		{
			int[] value = {5312,4209,5247,-1,5312,4180,4209,-1,1013,232,1132,-1,1013,169,232,-1,4993,4694,4741,-1,4694,4993,5091,-1,7699,7706,7746,-1,7699,7810,7706,-1,4993,5543,5586,-1,4993,4981,5543,-1,4076,3643,4973,-1,3643,4076,3691,-1};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getmand_Coord_6_877_point_1()
		{
			double[] value = {0.6884,54.6053,2.1736,0.6745,54.6083,2.1828,0.6964,54.5414,2.1949,0.6717,54.6062,2.2125,0.6827,54.5388,2.2211,1.0109,54.6828,1.5705,1.0411,54.682,1.5713,1.0303,54.6093,1.5428,0.85,54.8262,1.4203,0.8518,54.8243,1.4403,0.8722,54.7724,1.4222,1.0809,54.6548,1.8739,1.0899,54.6942,1.8746,1.097,54.7008,1.8423,0.9864,54.6956,1.6532,1.0371,54.7024,1.6757,1.0348,54.7336,1.6894,0.8101,54.677,1.7837,0.8107,54.6776,1.7803,0.7857,54.683,1.7768,1.092,54.6995,1.8409,1.0924,54.7013,1.8313,1.0569,54.6925,1.8283,1.0907,54.69,1.7601,1.0915,54.6489,1.7388,1.0802,54.6425,1.7516,1.0553,54.6573,1.8364,0.9817,54.658,1.817,0.9827,54.6178,1.8212,0.9584,54.7005,2.2183,0.968,54.6426,2.2037,0.9619,54.6408,2.221,0.9514,54.6381,2.2474,0.944,54.5707,2.2397,1.0457,54.5171,1.4163,1.0393,54.513,1.4137,1.038,54.5122,1.4183,1.0607,54.6435,1.4184,1.0726,54.7065,1.4447,1.0687,54.6458,1.4093,0.9792,54.5605,1.316,0.9842,54.5541,1.321,0.9854,54.5539,1.3202,0.9635,54.5753,1.3936,0.9532,54.5719,1.4045,0.9768,54.5375,1.3935,1.045,54.5203,1.3998,1.0395,54.5212,1.3955,1.0397,54.5153,1.4004,1.0407,54.5349,1.3953,1.0224,54.5354,1.387,1.0334,54.5224,1.39,0.9548,54.5742,1.3369,0.9575,54.5716,1.3474,0.9736,54.5534,1.3399,0.9756,54.5349,1.4056,0.999,54.5197,1.3982,1.036,54.5522,1.481,1.0462,54.5533,1.4641,1.046,54.5262,1.4369,1.049,54.5899,1.3805,1.049,54.5909,1.3713,1.0374,54.5673,1.3592,1.0436,54.6092,1.5308,0.9014,54.7261,1.3606,0.8904,54.7221,1.3865,0.9173,54.6599,1.3658,1.0873,54.7109,1.4252,1.0579,54.6519,1.3693,1.0669,54.6483,1.3965,0.9195,54.729,1.3386,0.9121,54.7282,1.3461,0.9297,54.667,1.3255,1.0626,54.6837,1.5584,0.8005,54.6451,1.791,0.8107,54.608,1.7977,0.8195,54.6097,1.7966,0.8197,54.66,1.7496,0.8314,54.6178,1.7124,0.8041,54.6618,1.7445,0.9681,54.3808,1.7528,0.9487,54.3795,1.7505,0.963,54.37,1.7535,1.0017,54.3659,1.7981,1.0127,54.3666,1.8,1.0036,54.3605,1.7853,1.0203,54.3694,1.7965,1.0128,54.3639,1.7799,1.0096,54.3618,1.7839,1.027,54.4062,1.7972,1.0228,54.41,1.7868,1.0231,54.3962,1.7848,0.9288,54.3836,1.7935,0.9512,54.385,1.8023,0.9575,54.3757,1.7937,1.0045,54.3894,1.8201,1.0145,54.3804,1.8107,1.0048,54.3791,1.8099,1.0915,54.4647,1.668,1.0801,54.467,1.6438,1.0826,54.448,1.6397,0.8826,54.434,1.7609,0.883,54.4093,1.7582,0.9042,54.4162,1.7558,0.8674,54.461,1.7697,0.852,54.4564,1.7769,0.8695,54.4281,1.7643,0.833,54.4903,1.7913,0.8535,54.4509,1.7866,0.8049,54.5811,1.8699,0.8577,54.5071,1.8821,0.8332,54.518,1.8569,0.7835,54.3603,2.05,0.8,54.3578,2.0635,0.8242,54.3162,2.037,0.922,54.3266,2.0512,0.9325,54.3286,2.0436,0.918,54.3043,2.0239,0.8753,54.3136,1.9574,0.8597,54.3147,1.9591,0.8694,54.295,1.9663,0.8287,54.3026,2.0015,0.8571,54.287,1.9945,0.8525,54.2876,1.9897,0.9089,54.316,2.2385,0.8985,54.2738,2.2039,0.8941,54.2741,2.2166,0.9163,54.3195,2.2055,0.8944,54.2733,2.1803,0.8984,54.276,2.1914,0.8702,54.3368,1.9591,0.8887,54.3153,1.9583,0.8291,54.3305,1.9666,0.8428,54.3135,1.9665,0.9289,54.3707,2.2264,0.9245,54.3723,2.2115,0.9107,54.3184,2.1934,0.9591,54.3852,2.0417,0.9351,54.3366,1.9902,0.9386,54.3328,2.0109,0.8885,54.3202,2.0564,0.9303,54.3708,2.0866,0.4736,54.5524,2.9224,0.4794,54.5469,2.9539,0.4916,54.5867,2.965,0.3585,54.4319,2.787,0.3814,54.3721,2.8108,0.3893,54.4251,2.8108,0.7572,54.6155,2.5951,0.7706,54.6153,2.5836,0.7647,54.5589,2.5676,0.6703,54.2231,2.3906,0.6663,54.2287,2.3898,0.666,54.2274,2.4015,0.6942,54.2389,2.4421,0.6991,54.2221,2.4257,0.6927,54.2225,2.4284,0.7054,54.2392,2.4411,0.6667,54.3136,2.3615,0.6569,54.3144,2.3595,0.6721,54.255,2.3591,0.6175,54.3087,2.4014,0.6199,54.3054,2.4183,0.6498,54.2484,2.3958,0.6617,54.2956,2.464,0.6825,54.2407,2.4399,0.6731,54.2419,2.4328,0.6632,54.3897,2.37,0.6365,54.342,2.7762,0.6517,54.343,2.7594,0.6352,54.2832,2.7426,0.6604,54.4126,2.7099,0.6378,54.4155,2.6866,0.6325,54.3507,2.6794,0.2945,54.0371,2.8535,0.2982,54.036,2.8544,0.2981,54.0361,2.8532,0.3184,54.0492,2.829,0.3111,54.0571,2.8173,0.2926,54.0387,2.8327,0.2925,54.0732,2.8043,0.2791,54.0537,2.8218,0.2858,54.0458,2.8255,0.2869,54.078,2.8041,0.2813,54.0826,2.8081,0.2715,54.0632,2.8194,0.2953,54.1345,2.8038,0.2784,54.0847,2.8154,0.3345,54.1035,2.9063,0.3494,54.0971,2.8968,0.3116,54.0515,2.871,0.36,54.0933,2.8828,0.3613,54.0945,2.8711,0.3218,54.0448,2.8575,0.3464,54.1083,2.8196,0.3016,54.065,2.8101,0.34,54.1766,2.9291,0.3227,54.1102,2.9019,0.3362,54.2557,2.8029,0.3139,54.2588,2.794,0.3098,54.1977,2.8017,0.4347,54.3409,2.9697,0.4232,54.285,2.9306,0.4198,54.283,2.9513,0.4424,54.3924,2.9813,0.443,54.3427,2.9486,0.196,54.2207,2.9425,0.2011,54.2185,2.9487,0.2011,54.2108,2.9319,0.2066,54.2964,2.8867,0.2007,54.2931,2.909,0.1982,54.2563,2.9074,0.2432,54.4343,2.8734,0.2652,54.4275,2.8874,0.2704,54.4821,2.9033,0.1442,54.2029,2.938,0.1386,54.1966,2.9385,0.144,54.1942,2.9444,0.1436,54.1855,2.9706,0.1428,54.1847,2.97,0.1418,54.1858,2.9799,0.1421,54.1839,2.9686,0.1383,54.1829,2.9772,0.1252,54.2201,2.9217,0.1121,54.2349,2.9274,0.1186,54.2143,2.929,0.1132,54.1961,2.9715,0.0994,54.2166,2.9818,0.0984,54.214,2.9947,0.1284,54.1969,3.0028,0.1203,54.2128,3.0191,0.1331,54.2002,3.0018,0.1358,54.2132,2.9264,0.1324,54.2246,2.919,0.1301,54.2101,2.9268,0.1229,54.1889,2.9759,0.1362,54.1819,2.9731,0.1346,54.1816,2.9684,0.13,54.1887,2.9914,1.6394,55.3041,0.5386,1.661,55.3477,0.454,1.6493,55.2985,0.4882,0.0346,53.5684,2.6915,0.0,53.5973,2.6748,0.0611,53.593,2.6719,1.6378,55.127,0.4692,1.6256,55.0763,0.5053,1.6274,55.1323,0.482,1.6435,55.2863,0.6077,1.6166,55.3168,0.6573,1.5749,54.7686,0.6914,1.5723,54.893,0.7296,1.5878,54.9421,0.6537,1.5855,55.094,0.6787,1.5711,55.0094,0.7495,1.5524,55.0206,0.792,1.6183,55.0773,0.5498,1.6185,55.1673,0.5621,1.5714,54.9657,0.7172,1.598,54.991,0.6107,1.5883,54.4133,0.8951,1.6095,54.4827,0.7997,1.6066,54.4878,0.8255,1.495,54.3049,0.942,1.5255,54.3921,0.8602,1.5019,54.3078,0.9286,1.5634,54.3727,0.8808,1.5301,54.3116,0.9312,1.5189,54.3029,0.9213,1.573,54.346,0.9701,1.5728,54.3853,0.9642,1.5765,54.3858,0.8414,1.5946,54.4463,0.7659,1.6015,54.45,0.7754,1.6287,54.5792,0.7564,1.6383,54.6604,0.6472,1.641,54.6768,0.7121,1.5714,54.5303,0.9644,1.5453,54.4169,1.0176,1.5618,54.4102,0.9633,1.5338,54.4647,1.0826,1.541,54.4262,1.0621,1.5364,54.4436,1.0428,1.6552,54.8894,0.6767,1.6761,55.0976,0.5517,1.6434,54.9,0.6974,1.6223,54.5951,0.6667,1.5951,54.5703,0.6996,1.6106,54.6571,0.6472,1.6131,54.5364,0.7005,1.613,54.4951,0.74,1.6094,54.4915,0.73,1.6088,54.6658,0.6422,1.6314,54.6602,0.6366,1.5754,54.4514,0.7733,1.5788,54.4724,0.7479,1.6068,54.4589,0.7348,1.5328,54.466,0.8628,1.5424,54.387,0.8429,1.5375,54.3812,0.8558,1.5924,55.2391,0.7501,1.5471,55.0594,0.8824,1.539,55.0852,0.9502,1.5767,54.6407,0.7076,1.5744,54.5829,0.7153,1.5438,54.8439,0.8015,1.5748,54.6683,0.7073,1.5789,54.591,0.7307,1.5783,54.6483,0.7317,0.4576,54.4931,3.0832,0.4617,54.5303,3.0877,0.3731,54.5272,3.1117,0.1924,54.5452,3.1799,0.2032,54.5049,3.1757,0.2087,54.5443,3.1818,0.3588,54.553,3.1265,0.359,54.5298,3.113,0.5834,54.5835,2.9534,0.5818,54.5492,2.9381,0.604,54.5529,2.9263,0.3496,54.532,3.1178,0.5557,54.1541,2.8639,0.5536,54.0097,2.814,0.5729,54.1554,2.8561,0.5902,54.5022,2.9278,0.5609,54.4975,2.9567,0.5521,54.3955,2.9515,0.1536,54.1577,2.977,0.1435,54.2832,3.0652,0.1269,54.1554,2.9866,0.1843,54.5453,3.1828,0.1911,54.5644,3.1867,1.5421,56.0393,1.477,1.5399,56.0091,1.4465,1.5709,56.052,1.3232,1.3827,55.6161,1.4091,1.3967,55.6783,1.4432,1.3962,55.6849,1.4263,1.4502,56.0058,1.5,1.447,56.1215,1.5307,1.4529,56.1279,1.5148,1.419,55.8071,1.3753,1.4144,55.8008,1.391,1.4392,55.8894,1.4487,1.4121,55.7763,1.4578,1.4125,55.7702,1.4749,1.4266,55.8717,1.5017,1.5119,55.103,1.0536,1.4665,55.1651,1.0444,1.5372,55.1373,1.0632,1.6209,55.2363,0.8031,1.6417,55.3276,0.709,1.6062,55.2404,0.78,1.3971,55.5639,1.535,1.4092,55.6372,1.56,1.4069,55.6416,1.5473,1.4269,55.7315,1.5895,1.4581,56.0819,1.6574,1.4537,56.0856,1.6439,1.4458,55.9646,1.6194,1.4202,55.737,1.5724,1.4334,55.8356,1.6084,1.4711,55.844,1.2908,1.4718,55.9316,1.3536,1.4823,55.8488,1.285,1.6373,55.9725,0.4387,1.6198,55.9697,0.4246,1.618,55.9082,0.546,1.6227,55.8688,0.6949,1.6111,55.8509,0.6779,1.5904,55.7859,0.8139,1.4816,54.2005,1.1413,1.5095,54.2368,1.1568,1.4051,54.1266,1.3622,1.619,54.5679,0.7088,1.7197,55.8373,0.098,1.7075,55.8311,0.0903,1.6826,55.9392,0.0368,1.6117,54.4672,0.7522,1.6162,54.563,0.6977,1.6198,54.896,0.5772,1.6092,54.6779,0.6462,1.6385,54.8928,0.5702,1.6486,55.1285,0.4771,1.684,55.4563,0.3163,1.679,55.4634,0.3283,1.7028,55.5867,0.2535,1.6643,55.9387,0.0406,1.6706,55.9507,0.0267,1.4681,54.1888,1.1361,1.4474,54.1804,1.147,1.4967,54.3043,0.9425,1.6605,55.306,0.3877,1.6549,55.317,0.3997,1.632,55.8658,0.2652,1.6627,55.7459,0.3944,1.6509,55.7625,0.4114,1.6302,55.2624,0.6643,1.4683,55.3412,1.0404,1.5234,55.437,0.9425,1.5474,55.4221,0.9215,1.9561,56.2533,0.2827,1.9229,56.2788,0.3099,1.9202,56.2402,0.328,1.9001,56.3021,0.2749,1.8749,56.3039,0.2495,1.8647,56.2514,0.2838,1.9538,56.179,0.2532,1.9423,56.2149,0.298,1.9096,56.1273,0.3148,1.9046,56.3074,0.279,1.9166,56.2772,0.3099,1.581,55.9888,0.1339,1.5848,56.0025,0.2435,1.5812,56.0625,0.1712,1.5408,56.0394,0.0692,1.5899,55.9693,0.0929,1.5809,55.986,0.1119,1.5821,56.0673,0.1925,1.5765,56.1371,0.1387,1.5655,56.2164,0.0899,1.5362,56.2956,0.0646,1.5598,56.2082,0.0807,1.5115,56.3805,0.0717,1.5241,56.3818,0.0803,1.503,56.4631,0.1088,1.4916,56.1021,0.0478,1.4982,56.1133,0.0565,1.4367,56.2008,0.0274,1.4285,56.4481,0.0803,1.4255,56.4581,0.0811,1.3545,56.4179,0.0519,1.8953,56.1286,0.323,1.8384,56.0405,0.3326,1.4982,56.4751,0.1066,1.4935,56.4626,0.1053,1.5851,56.386,1.5279,1.5873,56.4111,1.6097,1.5848,56.3999,1.6034,1.5477,56.369,1.6417,1.5279,56.3077,1.6607,1.5547,56.314,1.5639,1.7346,55.9581,0.4627,1.7488,55.9509,0.4264,1.7722,55.9921,0.4027,1.5702,56.0233,1.3184,1.5781,56.0917,1.2943,1.5713,56.0849,1.3353,1.343,54.8504,1.7429,1.3712,54.9659,1.6986,1.365,54.9722,1.7123,0.4983,53.6071,2.4508,0.4079,53.6062,2.5288,0.4058,53.6114,2.5238,0.064,53.5825,2.6804,0.0425,53.5617,2.6953,0.0,53.4694,2.7717,0.0312,53.4987,2.7434,0.0651,53.4562,2.7698,0.0553,53.6223,2.659,0.0099,53.9508,2.5848,0.0089,53.9518,2.5939,0.0475,53.9583,2.5804,0.0333,53.8444,2.5654,0.0613,53.8645,2.5606,0.0676,53.8557,2.5678,0.6872,54.0466,2.5804,0.7091,54.0136,2.5743,0.717,54.0476,2.5472,0.164,53.8563,2.9671,0.2289,53.7514,2.991,0.2281,53.863,2.9269,0.3432,53.4538,2.8758,0.2867,53.4481,2.9535,0.2476,53.4296,2.8935,0.2394,53.5883,3.0661,0.2279,53.6703,3.0376,0.1674,53.6642,3.042,0.3916,53.5001,2.9508,0.4214,53.4763,2.8354,0.6187,54.7143,2.3459,0.5965,54.6811,2.3417,0.5984,54.694,2.3716,0.6479,54.7314,2.3527,0.6204,54.7167,2.3594,0.6341,54.7329,2.3939,0.6031,54.5948,2.2515,0.5945,54.5848,2.3013,0.5883,54.5777,2.337,0.5823,54.5704,2.3727,0.5807,54.612,2.3845,0.5825,54.6126,2.3735,0.5197,54.6607,2.5576,0.5084,54.6126,2.5585,0.5152,54.6588,2.5664,0.2767,54.6894,2.9035,0.2639,54.6578,2.8566,0.2388,54.6544,2.8721,0.4321,54.7011,2.7815,0.3999,54.6926,2.7506,0.3857,54.6929,2.7653,0.4353,54.6616,2.6619,0.4682,54.6588,2.6329,0.4326,54.6089,2.6401,0.303,54.463,2.7665,0.2398,54.4529,2.8167,0.2406,54.5967,2.8512,0.3087,54.6607,2.7896,0.3,54.601,2.7834,0.2889,54.6604,2.8144,0.5467,54.683,2.4646,0.5391,54.6128,2.4863,0.5371,54.6768,2.4989,0.3297,54.6031,2.7496,0.7027,54.0444,2.7033,0.7253,53.9226,2.6525,0.7782,54.0198,2.6223,0.743,54.677,2.6976,0.7176,54.6923,2.6868,0.6995,54.6789,2.7417,0.6974,54.6268,2.8662,0.7166,54.5287,2.8466,0.7206,54.6278,2.8303,0.5618,54.6409,2.95,0.5484,54.5922,2.9996,0.5847,54.6021,2.9557,0.4631,54.5677,3.0867,0.3981,54.5652,3.1147,0.2178,54.5805,3.1861,0.262,54.5382,3.1834,0.3681,54.6,3.1321,0.355,54.605,3.1377,0.362,54.5625,3.1344,0.4981,54.2733,2.9646,0.4771,54.149,2.8965,0.0,54.1434,3.0028,0.0519,54.149,3.0007,0.0547,54.2867,3.083,0.0445,54.3964,3.1466,0.0,54.4836,3.1877,0.0,54.405,3.137,0.2046,54.1631,2.9555,0.2547,54.1594,2.9491,0.2244,54.2793,3.0495,0.6092,54.7306,2.4043,0.5885,54.6118,2.3371,0.5737,54.7289,2.4383,0.5919,54.7255,2.4203,0.5894,54.7295,2.4163,0.5779,54.6879,2.397,0.5771,54.4195,2.3215,0.5667,54.613,2.422,0.5601,54.6869,2.4294,0.4501,53.8146,2.8385,0.5414,53.8618,2.7736,0.4425,53.8586,2.8274,0.5138,54.3843,3.0124,0.551,54.2802,2.9249,0.7389,54.6374,2.7742,0.5801,54.7264,2.5437,0.5629,54.7261,2.5002,0.535,54.6834,2.5597,0.4986,54.6621,2.6004,0.5298,54.6991,2.6338,0.5563,54.7017,2.6357,0.4953,54.6997,2.6445,0.5142,54.65,2.9583,0.5437,54.6692,2.9034,0.3651,54.6959,2.8016,0.5304,54.6972,2.6378,0.5548,54.6939,2.6411,0.496,54.699,2.6471,0.4616,54.6854,2.705,0.4687,54.6935,2.6749,0.4563,54.6893,2.7059,0.624,54.6595,2.8694,0.589,54.6629,2.858,0.584,54.6682,2.8632,0.463,54.6876,2.7427,0.0752,53.8304,2.5712,0.1497,53.8527,2.5813,0.1653,53.7428,2.605,0.3272,54.6929,2.824,0.324,54.696,2.8178,0.5858,54.6495,2.9247,0.6206,54.6264,2.9158,0.5116,54.6823,2.8719,0.4918,54.6515,2.9245,0.472,54.6579,2.894,0.4646,54.621,2.8878,0.2312,53.7455,2.5954,0.3035,53.8992,2.5529,0.4014,53.7836,2.5168,0.3031,53.7651,2.5594,0.3119,54.0274,2.5641,0.3504,54.027,2.5169,0.5667,54.7194,2.5873,0.6106,54.7198,2.6179,0.5984,54.6987,2.6536,0.7818,54.0913,2.5889,0.7593,54.2152,2.6715,0.6987,54.1881,2.7591,0.2483,54.2713,2.7627,0.1718,54.2665,2.7837,0.1209,53.6653,2.6378,0.1692,53.666,2.6283,0.1268,53.4555,2.7599,0.1773,53.5235,2.7216,0.1832,53.4541,2.764,0.1027,53.744,3.0314,0.1077,53.6596,3.0478,0.2703,54.5989,2.8173,0.0653,54.6467,2.9575,0.0985,54.5944,2.931,0.0,54.5897,2.9443,0.0846,54.6489,2.9451,0.1086,54.6503,2.9405,0.2224,54.6516,2.88,0.3126,54.6878,2.9373,0.3031,54.6917,2.9026,0.2999,54.69,2.9497,0.3925,54.6321,3.0951,0.3687,54.6353,3.1146,0.4164,54.5836,3.1052,0.4858,54.5901,3.0385,0.4821,54.5897,3.0365,0.4615,54.5856,3.062,0.2893,54.678,2.9578,0.2594,54.6852,2.9233,0.2585,54.6807,2.9288,0.2842,54.6691,2.9585,0.2965,54.6653,2.9929,0.2996,54.6744,3.0002,0.1989,54.6804,3.0273,0.203,54.6787,2.9792,0.1933,54.6851,3.0269,0.2445,54.6317,3.1654,0.2452,54.6316,3.1618,0.2268,54.6432,3.1558,0.1682,54.6792,3.059,0.1815,54.6845,3.064,0.1767,54.6901,3.0249,0.0252,54.5861,3.2054,0.0,54.6067,3.1757,0.0,54.5472,3.2009,0.1292,54.6134,3.2012,0.1335,54.6126,3.2043,0.1515,54.6277,3.1955,0.0855,54.6858,2.9842,0.0867,54.685,2.9901,0.1237,54.6879,2.9896,0.0538,54.6778,3.02,0.05,54.6142,3.1984,0.0608,54.6175,3.1944,0.0456,54.6273,3.1758,0.1242,54.6903,2.9823,0.1635,54.6912,2.9797,0.1815,54.6203,3.197,0.2666,54.6206,3.1591,0.2449,54.6261,3.1601,0.3361,54.6655,3.0741,0.3189,54.6604,3.0886,0.3107,54.6434,3.1348,0.2,54.6753,3.0235,0.06,54.6718,3.02,0.0579,54.6754,3.0208,0.1508,54.6665,3.0154,0.1247,54.6762,2.984,0.1271,54.6532,2.9733,0.0953,53.8476,2.9966,0.0347,53.848,3.0134,0.0,53.7446,3.0395,0.1659,53.7462,3.0116,0.3341,53.861,2.8802,0.4074,54.2732,2.9998,0.8855,54.8491,1.3597,0.9475,54.8516,1.3431,0.8698,54.8016,1.3575,0.8886,54.7381,1.3359,0.8591,54.7913,1.3778,0.8245,54.6364,1.5277,0.8309,54.7608,1.4416,0.8475,54.6739,1.4232,1.0756,54.8529,1.6665,1.0264,54.8472,1.6727,1.0829,54.8541,1.6881,0.8209,54.8048,1.6382,0.8292,54.8093,1.6117,0.7991,54.7809,1.6563,0.7301,54.5289,1.8523,0.731,54.6703,1.8905,0.7287,54.6879,1.8289,0.6926,54.497,1.9646,0.6552,54.4652,2.0775,0.6244,54.6102,2.143,0.6558,54.6742,2.0994,0.6812,54.6846,2.0612,0.6771,54.6294,2.049,1.1089,54.8158,1.802,1.1239,54.8146,1.7961,1.0914,54.8303,1.7469,1.1019,54.6421,2.0112,1.1584,54.6374,1.9422,1.1449,54.6977,1.9587,1.0741,54.6968,2.0069,1.1128,54.724,1.9567,1.0872,54.7391,1.9443,1.0137,54.7281,2.16,1.03,54.6938,2.149,1.0424,54.7142,2.0868,0.9981,54.7637,2.0602,1.019,54.741,2.1071,1.0243,54.7474,2.0628,1.0725,54.589,2.1206,1.128,54.5738,2.0238,1.0916,54.6235,2.0493,1.0073,54.7624,2.0356,0.9551,54.7756,2.0306,0.9927,54.7043,2.2822,1.0073,54.6617,2.259,1.0016,54.7103,2.2462,0.9557,54.6896,2.364,0.9181,54.6001,2.4448,0.9699,54.6279,2.36,0.8962,54.7478,2.365,0.8433,54.7522,2.3691,0.8183,54.7388,2.4283,0.7416,54.7023,2.6274,0.8199,54.662,2.6357,0.7679,54.6982,2.615,1.0168,54.62,2.2483,1.0459,54.6582,2.1396,1.2238,54.6581,1.9036,1.2066,54.6226,1.9336,1.2735,54.6003,1.8914,0.6154,54.6682,2.2293,0.6021,54.6102,2.2565,0.6113,54.6796,2.2832,0.7113,54.7335,2.0533,0.7651,54.7488,2.0418,0.7053,54.6972,2.0201,0.8167,54.8615,1.5039,0.8255,54.8658,1.4658,0.8219,54.8289,1.4556,0.8603,54.8499,1.3702,0.8456,54.843,1.3974,0.8464,54.8754,1.4045,0.7729,54.7654,1.9193,0.7768,54.7541,1.9622,0.8198,54.7664,1.9543,0.814,54.7657,1.9964,0.7756,54.7513,1.9848,0.7385,54.7135,1.9883,0.7048,54.6504,2.0044,0.8339,54.8652,1.4665,0.8389,54.8719,1.4345,0.944,54.8885,1.3794,0.9442,54.89,1.3749,0.9024,54.8865,1.3761,1.1058,54.8995,1.4346,1.1112,54.9067,1.4316,1.0667,54.905,1.4013,0.7798,54.8076,1.7437,0.7744,54.8072,1.7364,0.7659,54.8012,1.7722,1.0394,54.7708,1.975,1.0564,54.7417,2.004,0.8061,54.8157,1.6994,0.9623,54.7596,1.9808,0.9205,54.7557,1.9737,0.9601,54.7656,1.9882,0.7772,54.7648,1.9138,0.7637,54.7793,1.8525,1.098,54.7965,1.8634,1.1033,54.7988,1.8651,1.1002,54.8141,1.8038,1.0934,54.8077,1.8038,1.0776,54.8209,1.7516,1.0357,54.7691,1.968,1.001,54.7615,1.986,0.8219,54.754,1.9482,0.9649,54.7669,2.101,0.9756,54.7606,2.1422,0.9827,54.7643,2.1399,0.8426,54.7494,2.3629,0.6824,54.7279,2.0838,0.6871,54.7275,2.0873,0.7137,54.7324,2.0569,0.6621,54.7159,2.2951,0.6544,54.7138,2.2651,0.6566,54.7196,2.2999,0.6492,54.7145,2.2675,0.6575,54.7165,2.1315,0.8131,54.7492,2.0486,0.8136,54.7557,2.0428,0.8986,54.6627,2.4473,0.8833,54.6609,2.473,0.7458,54.7464,2.349,0.6893,54.7319,2.3202,0.6829,54.7383,2.3681,0.6933,54.7266,2.3144,0.6936,54.6633,2.3067,0.7885,54.7495,2.3601,0.7909,54.6733,2.3398,0.7487,54.6687,2.3306,1.099,53.8144,2.1827,0.9332,53.6714,2.3937,1.0138,53.7022,2.0648,0.8608,54.7736,2.0084,0.8671,54.7603,1.9697,0.7575,54.7865,1.8252,0.7421,54.7399,1.8727,0.756,54.7782,1.855,0.8672,54.8529,1.5848,0.8549,54.8376,1.6278,0.8994,54.8452,1.6369,1.1382,54.7812,1.8542,1.1894,54.7846,1.8163,1.0945,54.7901,1.9022,1.1199,54.784,1.8587,0.9861,54.8963,1.3825,0.9744,54.8689,1.3382,1.1517,54.9175,1.3972,0.8379,54.8505,1.4637,0.8412,54.8437,1.4632,0.8413,54.8443,1.4607,1.1226,54.8497,1.5171,1.1226,54.846,1.5109,1.1192,54.8421,1.513,1.0246,54.8153,1.4872,1.1022,54.811,1.4912,1.1188,54.8412,1.5155,1.1214,54.844,1.5205,0.8398,54.8482,1.4523,0.8628,54.8212,1.45,0.9361,54.8351,1.4768,0.9359,54.8162,1.4707,1.0211,54.7939,1.5942,1.0654,54.8233,1.6065,1.0621,54.7952,1.5921,0.8407,54.8523,1.4345,1.1246,54.8495,1.4939,1.1253,54.8714,1.5231,1.1247,54.8785,1.5006,1.0077,54.722,1.9727,0.973,54.7186,1.973,0.8388,54.6785,2.351,0.9284,54.7515,2.3316,0.9279,54.6915,2.3116,0.8939,54.6854,2.3469,0.9346,54.6941,2.2809,0.9546,54.7504,2.2811,0.9448,54.6969,2.2532,0.9846,54.8159,1.3111,1.1379,54.8497,1.7313,1.1469,54.8615,1.6854,1.2342,54.836,1.7089,1.2452,54.8309,1.7081,1.2677,54.8947,1.6664,1.2392,54.8552,1.6395,1.0696,54.8971,1.3611,1.088,54.8937,1.3154,1.2849,54.7555,1.8279,1.2106,54.7534,1.801,1.1775,54.6791,1.8907,0.856,54.8259,1.6741,0.9813,54.8464,1.6564,1.0378,54.8217,1.7149,0.9789,54.8223,1.6819,1.0008,54.7646,1.9934,1.2053,54.5178,1.2928,1.1539,54.4431,1.3362,1.0704,54.4907,1.3119,1.2503,54.0057,1.5272,1.3071,54.0208,1.541,1.2107,53.9167,1.7184,1.2255,54.1396,1.3999,1.2966,54.3678,1.2638,1.3252,54.289,1.2158,1.3888,55.1123,1.6667,1.33,55.0768,1.5592,1.2841,54.9425,1.6381,1.3034,54.0732,1.4337,1.2414,55.0288,1.3927,1.2262,54.9087,1.4527,1.2796,54.6922,1.2459,1.3382,54.6254,1.2266,1.2635,54.4459,1.2988,1.3896,54.1683,1.179,1.1827,53.9851,2.0293,1.1931,53.9487,1.9796,1.3191,54.2221,1.6594,1.2536,54.0579,1.8115,1.33,54.164,1.6271,0.758,54.6451,2.7037,0.7877,54.555,2.6971,0.7689,54.6487,2.6911,0.8069,53.9749,2.5599,0.8885,54.0271,2.4682,0.8298,54.0386,2.5492,1.2084,54.757,1.2514,1.2935,54.9209,1.2093,1.372,54.8706,1.1835,1.4919,55.1857,1.4406,1.4909,54.988,1.3109,1.4946,55.1662,1.3327,1.2444,55.1898,1.258,1.2149,54.9726,1.2432,1.1603,55.0134,1.2738,1.4238,54.8209,1.1507,1.3039,55.1626,1.2108,1.365,55.1079,1.1542,1.5463,54.5545,1.0492,1.4901,54.6713,0.9901,1.3792,54.5412,1.1638,1.4722,54.7401,1.0801,1.6495,56.0019,0.4925,1.678,56.0245,0.551,1.7053,56.0728,0.4393,1.4781,56.4451,1.6575,1.4834,56.4274,1.7125,1.4882,56.5017,1.7495,1.6266,55.9817,0.7867,1.6168,55.9188,0.732,1.5884,55.8578,0.8775,1.5505,55.7679,1.0008,1.5317,55.7696,1.0508,1.5489,55.7865,1.0162,1.6328,55.9186,0.5611,1.6349,55.9609,0.6118,1.5797,56.0185,1.0349,1.5982,55.9816,0.8958,1.5857,55.9361,0.9493,1.5777,55.5287,0.8148,1.5466,55.5663,0.8986,1.5539,55.6579,0.9052,1.4141,55.5127,1.1383,1.4443,55.6001,1.1359,1.4968,55.5921,1.0226,1.65,55.2853,0.467,1.6614,55.3367,0.4317,1.569,55.41,0.9035,1.5898,55.5076,0.7993,1.425,55.2524,1.6568,1.4483,55.3847,1.6568,1.4172,55.2518,1.6486,1.3451,55.2937,1.176,1.396,55.2355,1.104,1.6812,55.7257,0.3681,1.6407,55.8514,0.2286,1.6264,55.3244,0.6832,1.6911,55.8346,0.0963,1.6555,55.835,0.1228,1.613,55.9438,0.0609,1.6509,55.8457,0.2043,1.8127,55.9524,0.1674,1.7697,55.8289,0.1654,1.7781,55.9409,0.1132,1.7005,55.3011,0.4887,1.6835,55.2974,0.4206,1.7054,55.4519,0.3624,1.8028,55.8384,0.2698,1.8487,55.9641,0.2274,1.8589,56.1794,0.3429,1.8361,56.1873,0.3382,1.7686,56.1237,0.4096,1.6663,56.0017,0.6752,1.652,55.9942,0.6594,1.6637,55.7599,0.6815,1.6785,55.7538,0.629,1.6823,55.8888,0.5171,1.6041,56.0859,0.267,1.7791,56.1089,0.4046,1.8308,56.0671,0.3742,1.6057,56.2094,0.1188,1.6013,56.2906,0.0968,1.5447,56.301,0.0737,1.6549,56.2827,0.1248,1.4141,56.2659,-0.0692,1.4243,56.1834,-0.0064,1.3783,56.2708,-0.0121,1.3685,56.4796,0.0137,1.3518,56.4508,-0.0083,1.356,56.4608,0.0327,1.9079,56.1378,0.3209,1.9079,56.1722,0.3489,1.5785,56.4785,0.1339,1.5904,56.5108,0.1156,1.5027,56.5183,0.0991,1.6769,56.4861,0.1338,1.7803,56.4498,0.164,1.6959,56.5104,0.0937,1.7653,56.4072,0.1659,1.6589,56.4472,0.1483,1.6582,56.3604,0.1219,1.8596,56.402,0.2066,1.8508,56.3743,0.2184,1.9291,56.3199,0.2855,1.8442,56.463,0.0517,1.8186,56.4778,0.0936};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getmand_Coord_6_877_point_2()
		{
			double[] value = {1.8912,56.4196,0.1486,1.3641,56.3886,-0.085,1.4863,56.4163,-0.1185,1.503,56.3543,-0.1357,1.5345,56.1121,0.0606,1.5732,56.1255,0.127,1.7378,56.0084,0.4614,1.7127,55.9913,0.5634,1.5054,55.87,1.5112,1.5253,55.9355,1.5453,1.5132,55.8556,1.5992,1.756,55.7323,0.3716,1.7817,55.8468,0.3437,1.5066,55.6745,1.2257,1.5008,55.69,1.3222,1.5021,55.5221,1.2533,1.6931,55.4585,0.3262,1.6689,55.3066,0.3937,1.699,55.9375,0.0457,1.6477,54.8971,0.7398,1.669,55.1007,0.6623,1.4606,55.3821,1.6488,1.5914,56.5051,1.562,1.5897,56.4956,1.5137,1.5858,56.5713,1.5816,1.528,55.9661,1.5784,1.5133,56.0449,1.6209,1.5169,55.864,1.2905,1.4955,55.8812,1.4023,1.8414,56.034,0.3248,1.7827,55.9208,0.3716,1.6768,56.0808,0.3665,1.666,56.0515,0.4119,1.5561,56.0106,0.0343,1.3228,55.3423,1.3896,1.3754,55.3566,1.5212,1.3846,55.468,1.5134,1.5288,55.3174,1.0341,1.6072,55.2522,0.8469,1.4816,55.0553,1.0446,1.5125,54.9967,1.044,1.3782,55.4202,1.1489,1.296,55.3309,1.2497,1.3357,55.4477,1.2466,1.6576,54.8931,0.6057,1.6194,54.6888,0.7692,1.6079,54.6878,0.8502,1.6165,54.6547,0.7661,1.5314,54.6163,0.8768,1.5211,54.5717,0.9131,-0.6788,54.6102,2.1577,-0.7072,54.5406,2.126,-0.6897,54.6058,2.1662,-0.6869,54.613,2.1273,-0.704,54.5432,2.1047,-0.7792,54.6847,1.7748,-0.7926,54.6641,1.7286,-0.7968,54.6627,1.7399,-1.097,54.7008,1.8423,-1.08,54.6589,1.8492,-1.0738,54.6589,1.8441,-1.0924,54.7013,1.8313,-1.0636,54.6752,1.7935,-1.0824,54.6819,1.7876,-1.0972,54.7027,1.8316,-1.0888,54.6836,1.7844,-1.0907,54.69,1.7601,-0.8101,54.677,1.7837,-0.7833,54.6817,1.7848,-0.7857,54.683,1.7768,-1.092,54.6995,1.8409,-1.0562,54.6918,1.8317,-1.0569,54.6925,1.8283,-1.0809,54.6548,1.8739,-1.0721,54.6113,1.8707,-1.0634,54.6159,1.8524,-0.7821,54.6415,1.8063,-0.7776,54.6825,1.7858,-0.7928,54.643,1.7935,-0.9831,54.7218,1.6694,-0.9791,54.7726,1.6832,-1.0308,54.7725,1.7084,-0.982,54.5651,2.1501,-0.9794,54.646,2.1671,-0.968,54.6426,2.2037,-0.9663,54.6483,2.098,-0.9394,54.6461,2.079,-0.9337,54.7055,2.076,-1.0807,54.6993,1.4809,-1.0581,54.6209,1.4392,-1.0645,54.7018,1.4712,-1.0687,54.6458,1.4093,-1.0607,54.6435,1.4184,-1.0395,54.5888,1.3889,-0.9895,54.5527,1.3194,-0.984,54.5603,1.314,-0.9912,54.5586,1.3138,-1.0171,54.5381,1.3482,-1.012,54.5388,1.3513,-1.0115,54.5362,1.3442,-0.9638,54.5704,1.3567,-0.9877,54.5474,1.3517,-0.9811,54.5635,1.3649,-1.0318,54.5131,1.4294,-1.0388,54.513,1.4272,-1.0358,54.5235,1.4527,-1.0492,54.5318,1.4077,-1.0465,54.5337,1.4008,-1.0504,54.5633,1.412,-1.049,54.5899,1.3805,-1.049,54.5909,1.3713,-1.0669,54.6483,1.3965,-0.9297,54.667,1.3255,-0.9014,54.7261,1.3606,-0.9121,54.7282,1.3461,-1.0873,54.7109,1.4252,-0.8107,54.608,1.7977,-0.7899,54.5997,1.8091,-0.8142,54.6453,1.7908,-0.8195,54.6097,1.7966,-0.8005,54.6451,1.791,-0.8041,54.6618,1.7445,-0.8223,54.6176,1.7088,-0.8314,54.6178,1.7124,-1.0567,54.3998,1.6393,-1.0658,54.4098,1.6577,-1.0507,54.4062,1.6579,-1.0196,54.3987,1.6273,-1.0236,54.3985,1.6301,-0.9971,54.405,1.6394,-0.9671,54.3617,1.7736,-0.9538,54.3683,1.7786,-0.9419,54.3693,1.7695,-0.9971,54.3608,1.783,-1.0017,54.3659,1.7981,-0.9919,54.3678,1.7925,-1.0036,54.3605,1.7853,-1.0096,54.3618,1.7839,-1.0127,54.3666,1.8,-0.963,54.37,1.7535,-0.9591,54.3688,1.7553,-0.9387,54.3758,1.7528,-0.9585,54.3674,1.7584,-0.9607,54.3639,1.767,-0.9369,54.3725,1.7596,-1.0878,54.4251,1.6547,-1.0741,54.4255,1.6657,-1.0748,54.4111,1.654,-0.9196,54.3807,1.7612,-0.9914,54.3781,1.8046,-0.9057,54.3935,1.7543,-0.9232,54.3861,1.7538,-1.0022,54.4068,1.8345,-1.0135,54.4105,1.8327,-1.0136,54.427,1.8434,-1.0301,54.436,1.8313,-1.0336,54.4454,1.8136,-1.0414,54.4695,1.8297,-1.0753,54.5373,1.7035,-1.0858,54.5444,1.6926,-1.0884,54.5911,1.7142,-1.0773,54.5865,1.7219,-1.0915,54.6489,1.7388,-1.0802,54.6425,1.7516,-0.8075,54.535,1.8209,-0.8049,54.5811,1.8699,-0.7883,54.5949,1.8232,-0.8054,54.6202,1.6934,-0.922,54.3266,2.0512,-0.9325,54.3286,2.0436,-0.9485,54.3731,2.0809,-0.8706,54.2494,2.1702,-0.865,54.2487,2.1689,-0.8724,54.2528,2.1689,-0.8781,54.2507,2.1911,-0.8795,54.2514,2.1837,-0.8985,54.2738,2.2039,-0.8796,54.252,2.1775,-0.877,54.252,2.1731,-0.8944,54.2733,2.1803,-0.8379,54.248,2.1677,-0.8299,54.2457,2.1712,-0.8097,54.2668,2.1704,-0.8597,54.3147,1.9591,-0.8694,54.295,1.9663,-0.8598,54.2934,1.969,-0.8287,54.3026,2.0015,-0.8336,54.3091,1.983,-0.8536,54.2902,1.9796,-0.9008,54.2954,1.9779,-0.8958,54.2959,1.9736,-0.9164,54.316,1.9714,-0.9163,54.3195,2.2055,-0.9126,54.3174,2.2211,-0.9269,54.3052,2.017,-0.9383,54.3302,2.0326,-0.9351,54.3366,1.9902,-0.9228,54.3382,1.9777,-0.9516,54.3897,2.0192,-0.8702,54.3368,1.9591,-0.8548,54.3351,1.96,-0.8363,54.3858,1.9809,-0.7832,54.3728,2.0097,-0.8022,54.3807,1.9857,-0.8291,54.3305,1.9666,-0.926,54.3681,2.2447,-0.9381,54.4286,2.2426,-0.9304,54.4265,2.2636,-0.3099,54.6578,2.8466,-0.3237,54.6571,2.8262,-0.3141,54.5916,2.8164,-0.3468,54.5889,2.8015,-0.3544,54.6536,2.8058,-0.3504,54.3793,2.7931,-0.3238,54.3844,2.7851,-0.3275,54.4378,2.7836,-0.6723,54.2216,2.3985,-0.6754,54.22,2.4085,-0.666,54.2274,2.4015,-0.6746,54.2344,2.363,-0.678,54.2342,2.3638,-0.6809,54.2258,2.3695,-0.6821,54.2338,2.3655,-0.678,54.2533,2.3623,-0.6885,54.2523,2.367,-0.6663,54.2287,2.3898,-0.652,54.2471,2.4092,-0.6498,54.2484,2.3958,-0.6991,54.2221,2.4257,-0.7114,54.2392,2.4379,-0.7054,54.2392,2.4411,-0.6597,54.2552,2.3625,-0.6264,54.3159,2.3712,-0.6356,54.317,2.3648,-0.6639,54.2447,2.4244,-0.6617,54.2956,2.464,-0.6455,54.2973,2.454,-0.6825,54.2407,2.4399,-0.7012,54.2924,2.4738,-0.6808,54.2935,2.4726,-0.6186,54.3119,2.3856,-0.5957,54.3819,2.414,-0.6008,54.386,2.3925,-0.623,54.3899,2.3688,-0.6109,54.3885,2.3775,-0.6021,54.4495,2.3864,-0.5227,54.202,2.6712,-0.5251,54.201,2.6825,-0.506,54.2454,2.6772,-0.6082,54.2363,2.7401,-0.6352,54.2832,2.7426,-0.6204,54.2819,2.7538,-0.5102,54.2961,2.6425,-0.4941,54.295,2.6554,-0.4806,54.3595,2.6459,-0.6068,54.281,2.7654,-0.6365,54.342,2.7762,-0.6193,54.3421,2.7867,-0.2982,54.036,2.8544,-0.3218,54.0448,2.8575,-0.3176,54.0457,2.8656,-0.2962,54.0362,2.8426,-0.3184,54.0492,2.829,-0.3214,54.0465,2.8415,-0.2715,54.0632,2.8194,-0.269,54.0671,2.8231,-0.2813,54.0826,2.8081,-0.3116,54.0515,2.871,-0.36,54.0933,2.8828,-0.3098,54.1977,2.8017,-0.2988,54.2625,2.8024,-0.3139,54.2588,2.794,-0.34,54.1766,2.9291,-0.3534,54.171,2.9398,-0.367,54.2299,2.9621,-0.2948,54.2623,2.8162,-0.2931,54.3264,2.8127,-0.2979,54.3877,2.7984,-0.288,54.387,2.8127,-0.2916,54.4384,2.8201,-0.2018,54.2166,2.9091,-0.196,54.2279,2.9092,-0.2016,54.2305,2.9014,-0.208,54.2081,2.9305,-0.2088,54.2083,2.9283,-0.2219,54.2131,2.9367,-0.2393,54.2442,2.8948,-0.2305,54.2523,2.8857,-0.2447,54.2893,2.8753,-0.2903,54.442,3.0619,-0.2725,54.4398,3.0795,-0.2678,54.3866,3.0565,-0.2139,54.2297,2.8931,-0.2076,54.2317,2.8964,-0.2133,54.2596,2.8829,-0.1982,54.2563,2.9074,-0.2172,54.2138,2.9461,-0.2417,54.2315,2.9504,-0.1368,54.1918,2.9427,-0.1386,54.1966,2.9385,-0.144,54.1942,2.9444,-0.1362,54.1819,2.9731,-0.1414,54.1834,2.9665,-0.1421,54.1839,2.9686,-0.1294,54.2429,2.9103,-0.1331,54.2434,2.926,-0.1381,54.2244,2.9345,-0.1344,54.1827,2.9632,-0.1346,54.1816,2.9684,-0.1207,54.1904,2.9682,-0.1418,54.1858,2.9799,-0.1449,54.1897,2.9796,-0.138,54.1932,2.9925,-0.1117,54.2449,3.05,-0.111,54.2098,3.0165,-0.1203,54.2128,3.0191,-0.1083,54.2741,3.0731,-0.1237,54.2775,3.0667,-0.1262,54.3136,3.0904,-0.0691,53.662,2.6291,-0.0798,53.6642,2.6385,-0.0648,53.7133,2.6137,-0.0752,53.8304,2.5712,-0.1497,53.8527,2.5813,-0.0676,53.8557,2.5678,-1.2149,54.9726,1.2432,-1.2332,54.9599,1.2344,-1.3039,55.1626,1.2108,-1.0686,54.6719,1.2717,-1.133,54.8326,1.2714,-1.051,54.6881,1.2727,-1.5978,55.2273,0.7123,-1.6302,55.2624,0.6643,-1.6166,55.3168,0.6573,-1.6213,55.1844,0.5808,-1.6258,55.2675,0.5907,-1.6118,55.2419,0.6487,-1.5654,54.9425,0.7208,-1.5603,54.9881,0.7598,-1.5565,54.9429,0.7703,-1.5787,54.9901,0.7145,-1.5855,55.094,0.6787,-1.5711,55.0094,0.7495,-1.6059,55.0179,0.6045,-1.5548,54.8912,0.8982,-1.5477,54.9435,0.8465,-1.5471,55.0594,0.8824,-1.5754,54.4514,0.7733,-1.5725,54.4818,0.7988,-1.5328,54.466,0.8628,-1.5019,54.3078,0.9286,-1.5189,54.3029,0.9213,-1.5493,54.3658,0.8711,-1.5375,54.3812,0.8558,-1.5301,54.3116,0.9312,-1.5883,54.4133,0.8951,-1.5634,54.3727,0.8808,-1.5939,54.5014,0.8407,-1.578,54.4307,0.905,-1.5908,54.5128,0.8916,-1.6095,54.4827,0.7997,-1.6066,54.4878,0.8255,-1.621,54.5944,0.7777,-1.6552,54.8894,0.6767,-1.6761,55.0976,0.5517,-1.6576,54.8931,0.6057,-1.5894,54.4989,0.7349,-1.6131,54.5364,0.7005,-1.5951,54.5703,0.6996,-1.6094,54.4915,0.73,-1.6383,54.6604,0.6472,-1.6314,54.6602,0.6366,-1.6223,54.5951,0.6667,-1.6162,54.563,0.6977,-1.619,54.5679,0.7088,-1.5744,54.5829,0.7153,-1.5633,54.5546,0.7614,-1.5758,54.4917,0.8095,-1.5577,54.5194,0.7886,-1.5525,54.542,0.7833,-1.5622,54.5488,0.7942,-1.5788,54.4724,0.7479,-1.5125,54.9967,1.044,-1.5336,54.9439,0.971,-1.4067,54.4582,1.0989,-1.4365,54.3609,1.0335,-1.4688,54.4396,0.9824,-1.5223,54.4002,0.8768,-1.5255,54.3921,0.8602,-0.3368,54.534,3.1305,-0.337,54.4993,3.1159,-0.257,54.5032,3.1797,-0.1664,54.5491,3.1965,-0.1843,54.5453,3.1828,-0.1706,54.5052,3.1819,-0.3731,54.5272,3.1117,-0.3638,54.498,3.1031,-0.359,54.5298,3.113,-0.604,54.5529,2.9263,-0.5902,54.5022,2.9278,-0.5818,54.5492,2.9381,-0.3655,54.3894,3.0699,-0.3448,54.2751,3.0137,-0.2835,54.2769,3.0306,-0.5557,54.1541,2.8639,-0.551,54.2802,2.9249,-0.5842,54.285,2.9029,-1.5077,55.8605,1.6422,-1.5083,55.9575,1.6546,-1.528,55.9661,1.5784,-1.4466,55.998,1.5211,-1.4419,56.1153,1.5477,-1.4408,56.1096,1.5647,-1.6062,55.2404,0.78,-1.6209,55.2363,0.8031,-1.5119,55.103,1.0536,-1.4767,55.7841,1.2163,-1.471,55.7789,1.2255,-1.4703,55.7137,1.1672,-1.4805,56.424,1.7254,-1.4761,56.3219,1.7008,-1.4834,56.4274,1.7125,-1.4823,55.8488,1.285,-1.4711,55.844,1.2908,-1.4836,55.9373,1.3432,-1.4746,56.0425,1.4093,-1.4718,55.9316,1.3536,-1.5107,56.2662,1.4902,-1.5001,56.2653,1.4982,-1.4779,56.1513,1.4604,-1.666,56.0515,0.4119,-1.6495,56.0019,0.4925,-1.6373,55.9725,0.4387,-1.618,55.9082,0.546,-1.6328,55.9186,0.5611,-1.6227,55.8688,0.6949,-1.5505,55.7679,1.0008,-1.5477,55.7203,0.9571,-1.5904,55.7859,0.8139,-1.4816,54.2005,1.1413,-1.4474,54.1804,1.147,-1.3034,54.0732,1.4337,-1.495,54.3049,0.942,-1.6911,55.8346,0.0963,-1.7075,55.8311,0.0903,-1.6826,55.9392,0.0368,-1.6931,55.4585,0.3262,-1.684,55.4563,0.3163,-1.6605,55.306,0.3877,-1.7028,55.5867,0.2535,-1.7098,55.5804,0.2462,-1.7257,55.7146,0.1574,-1.7107,55.7211,0.1646,-1.699,55.9375,0.0457,-1.6824,55.953,0.0243,-1.6385,54.8928,0.5702,-1.6313,54.8917,0.5627,-1.6068,54.4589,0.7348,-1.5234,55.437,0.9425,-1.5777,55.5287,0.8148,-1.5466,55.5663,0.8986,-1.5924,55.2391,0.7501,-1.4865,55.0686,1.0438,-1.539,55.0852,0.9502,-1.4816,55.0553,1.0446,-1.5898,55.5076,0.7993,-1.5474,55.4221,0.9215,-1.1603,55.0134,1.2738,-1.0866,54.8828,1.2987,-1.0994,54.8669,1.2856,-0.9846,54.8159,1.3111,-1.088,54.8937,1.3154,-1.9001,56.3021,0.2749,-1.8749,56.3039,0.2495,-1.8492,56.3512,0.2164,-1.8953,56.1286,0.323,-1.9079,56.1378,0.3209,-1.9096,56.1273,0.3148,-1.8537,56.3585,0.2133,-1.7653,56.4072,0.1659,-1.9046,56.3074,0.279,-1.5848,56.0025,0.2435,-1.6092,55.922,0.3548,-1.581,55.9888,0.1339,-1.8361,56.1873,0.3382,-1.8147,56.1895,0.3104,-1.8647,56.2514,0.2838,-1.5655,56.2164,0.0899,-1.5765,56.1371,0.1387,-1.5598,56.2082,0.0807,-1.3801,56.351,0.0415,-1.3663,56.3467,0.0341,-1.3512,56.4031,0.0456,-1.4982,56.1133,0.0565,-1.5435,56.0476,0.0826,-1.4916,56.1021,0.0478,-1.4935,56.4626,0.1053,-1.4285,56.4481,0.0803,-1.4982,56.4751,0.1066,-1.7691,56.4175,0.1671,-1.8508,56.3743,0.2184,-1.3545,56.4179,0.0519,-1.3637,56.4025,0.0552,-1.5781,56.0917,1.2943,-1.5713,56.0849,1.3353,-1.567,56.1838,1.384,-1.5873,56.4111,1.6097,-1.5514,56.3902,1.6629,-1.5482,56.4106,1.6748,-1.777,55.9648,0.374,-1.8414,56.034,0.3248,-1.7827,55.9208,0.3716,-1.5809,56.0243,1.2049,-1.5978,55.9363,1.0471,-1.5823,55.9918,1.1917,-1.4672,55.6019,1.6656,-1.4882,55.5361,1.5741,-1.4665,55.5032,1.653,-1.7722,55.9921,0.4027,-1.7488,55.9509,0.4264,-1.3167,54.7245,1.7992,-1.343,54.8504,1.7429,-1.3208,54.7155,1.783,-1.2849,54.7555,1.8279,-1.3293,54.8487,1.741,-1.3373,54.8512,1.7456,-1.2106,54.7534,1.801,-1.2452,54.8309,1.7081,-1.2677,54.8947,1.6664,-1.4044,55.1084,1.6664,-1.365,54.9722,1.7123,-1.3974,55.112,1.6759,-1.4808,55.2074,1.5125,-1.4319,55.2486,1.6491,-1.4606,55.3821,1.6488,-0.1839,53.4443,2.7715,-0.1832,53.4541,2.764,-0.1268,53.4555,2.7599,-0.3576,53.4383,2.7426,-0.355,53.4462,2.7383,-0.3573,53.4386,2.7449,-0.068,53.4673,2.7623,-0.0665,53.5332,2.7339,-0.0396,53.5025,2.7394,-0.0553,53.6223,2.659,-0.0434,53.6277,2.6462,0.0,53.6127,2.6584,-0.0441,53.7855,2.5866,-0.0391,53.7778,2.5818,-0.0636,53.7382,2.5897,-0.0688,53.9363,2.5638,-0.0475,53.9583,2.5804,-0.0434,53.9547,2.572,-0.0099,53.9508,2.5848,-0.0089,53.9518,2.5939,-0.0053,53.911,2.57,-0.0718,53.7447,2.6004,-0.1087,53.7448,2.6046,-0.0646,54.0956,2.6723,0.0,54.0858,2.6819,-0.731,53.9807,2.5683,-0.6954,53.9828,2.6117,-0.7091,54.0136,2.5743,-0.6987,54.1881,2.7591,-0.7691,54.071,2.6115,-0.7027,54.0444,2.7033,-0.394,53.7434,2.9455,-0.3284,53.7553,2.9636,-0.3738,53.7661,2.9178,-0.4131,53.6851,2.97,-0.3712,53.6769,3.0049,-0.2636,53.4513,2.7687,-0.3432,53.4538,2.8758,-0.5823,54.5704,2.3727,-0.5685,54.5609,2.4052,-0.5771,54.4195,2.3215,-0.5965,54.6811,2.3417,-0.6113,54.6796,2.2832,-0.6187,54.7143,2.3459,-0.6479,54.7314,2.3527,-0.6204,54.7167,2.3594,-0.7253,53.9226,2.6525,-0.7782,54.0198,2.6223,-0.8155,54.0175,2.5773,-0.4986,54.6621,2.6004,-0.5084,54.6126,2.5585,-0.5152,54.6588,2.5664,-0.5197,54.6607,2.5576,-0.5391,54.6128,2.4863,-0.5371,54.6768,2.4989,-0.3999,54.6926,2.7506,-0.4141,54.6924,2.7359,-0.4321,54.7011,2.7815,-0.5552,53.4739,2.57,-0.6867,53.5252,2.4398,-0.5347,53.5379,2.5255,-0.2767,54.6894,2.9035,-0.2639,54.6578,2.8566,-0.3008,54.6943,2.8774,-0.3051,54.6947,2.8459,-0.303,54.463,2.7665,-0.3663,54.4732,2.7167,-0.3619,54.6054,2.7133,-0.1635,54.6912,2.9797,-0.1394,54.6512,2.9284,-0.1694,54.6533,2.9153,-0.7176,54.6923,2.6868,-0.7416,54.7023,2.6274,-0.743,54.677,2.6976,-0.751,54.6422,2.7237,-0.7533,54.5429,2.7733,-0.7389,54.6374,2.7742,-0.6995,54.6789,2.7417,-0.7125,54.6685,2.7922,-0.5112,54.6794,2.8134,-0.474,54.6929,2.8301,-0.4805,54.6868,2.7778,-0.4631,54.5677,3.0867,-0.3981,54.5652,3.1147,-0.4164,54.5836,3.1052,-0.262,54.5382,3.1834,-0.3322,54.5667,3.1431,-0.1652,54.5864,3.2054,-0.1119,54.5665,3.2276,-0.3681,54.6,3.1321,-0.3687,54.6353,3.1146,-0.3442,54.6391,3.1262,-0.3361,54.6655,3.0741,-0.6225,54.1594,2.8321,-0.5729,54.1554,2.8561,0.0,53.8482,3.0231,-0.0347,53.848,3.0134,-0.0519,54.149,3.0007,0.0,54.003,3.0119,-0.1536,54.1577,2.977,-0.2244,54.2793,3.0495,-0.2046,54.1631,2.9555,-0.2396,54.3855,3.1262,-0.2043,54.3893,3.1251,-0.5125,54.5342,3.0454,-0.5484,54.5922,2.9996,-0.5558,54.544,2.9814,-0.5984,54.694,2.3716,-0.5779,54.6879,2.397,-0.5807,54.612,2.3845,-0.6341,54.7329,2.3939,-0.6319,54.7274,2.3992,-0.6115,54.7281,2.4072,-0.6081,54.696,2.4036,-0.5866,54.697,2.4123,-0.5708,54.6966,2.4339,-0.5672,54.6949,2.4617,-0.572,54.7271,2.4666,-0.5652,54.7294,2.4635,-0.5629,54.7261,2.5002,-0.4953,54.6997,2.6445,-0.4682,54.6588,2.6329,-0.535,54.6834,2.5597,-0.699,54.7118,2.6285,-0.7412,54.7006,2.622,-0.5116,54.6823,2.8719,-0.4986,54.658,2.9205,-0.478,54.6645,2.8914,-0.4446,54.6781,2.852,-0.3983,54.6918,2.8175,-0.5291,54.6791,2.5772,-0.6857,54.7112,2.6685,-0.466,54.6952,2.6723,-0.4687,54.6935,2.6749,-0.665,54.6837,2.7126,-0.6697,54.6909,2.7082,-0.3651,54.6959,2.8016,-0.324,54.696,2.8178,-0.3087,54.6607,2.7896,-0.4918,54.6515,2.9245,-0.5142,54.65,2.9583,-0.5069,54.6469,2.9576,-0.3109,54.6935,2.8473,-0.3272,54.6929,2.824,-0.3055,54.6904,2.875,-0.6622,54.625,2.8943,-0.6206,54.6264,2.9158,-0.624,54.6595,2.8694,-0.4563,54.6893,2.7059,-0.4007,54.6625,2.6974,-0.4353,54.6616,2.6619,-0.2368,54.1351,2.6513,-0.1457,54.1134,2.6642,-0.1347,53.965,2.5773,-0.5414,53.8618,2.7736,-0.6203,53.8709,2.7274,-0.6399,53.7518,2.7328,-0.4067,53.6941,2.5175,-0.4014,53.7836,2.5168,-0.3031,53.7651,2.5594,-0.3158,54.2949,2.698,-0.2483,54.2713,2.7627,-0.5293,54.6524,2.6308,-0.5304,54.6972,2.6378,-0.5548,54.6939,2.6411,-0.5553,54.6509,2.638,-0.1747,53.4342,2.8985,-0.1341,53.4437,2.7667,-0.1714,53.5914,3.0546,-0.1747,53.5109,3.0462,-0.0995,53.5303,3.0316,-0.3,54.601,2.7834,-0.2889,54.6604,2.8144,-0.0534,54.517,3.2121,-0.0445,54.3964,3.1466,-0.1634,54.3899,3.1344,-0.1091,54.3905,3.1482,-0.1123,54.5043,3.2076,-0.3188,54.6834,3.0033,-0.2999,54.69,2.9497,-0.3317,54.6744,3.0052,-0.2594,54.6852,2.9233,-0.1949,54.6829,2.9797,-0.1835,54.6516,2.9026,-0.3122,54.6554,3.0874,-0.3189,54.6604,3.0886,-0.3107,54.6434,3.1348,-0.1911,54.6826,3.066,-0.1933,54.6851,3.0269,-0.1961,54.6766,3.066,-0.2585,54.6807,2.9288,-0.2235,54.6812,2.9409,-0.203,54.6787,2.9792,-0.218,54.6826,2.9393,-0.1866,54.6641,3.1487,-0.1913,54.6484,3.1718,-0.1632,54.6478,3.1748,-0.0252,54.5861,3.2054,-0.0616,54.5717,3.2263,-0.0538,54.6778,3.02,-0.0653,54.6467,2.9575,-0.0855,54.6858,2.9842,-0.1292,54.6134,3.2012,-0.1335,54.6126,3.2043,-0.1054,54.6025,3.2152,-0.0456,54.6273,3.1758,-0.037,54.6291,3.18,-0.032,54.641,3.1434,-0.1515,54.6277,3.1955,-0.1571,54.6426,3.1696,-0.0496,54.6629,3.0612,-0.0579,54.6754,3.0208,-0.1237,54.6879,2.9896,-0.1537,54.6887,3.0213,-0.1492,54.6828,3.0223,0.0,54.6689,3.063,0.0,54.6586,3.0281,-0.3056,54.6809,2.9987,-0.2893,54.678,2.9578,-0.2882,54.63,3.1475,-0.2888,54.6313,3.15,-0.2681,54.6252,3.1618,-0.4821,54.5897,3.0365,-0.4726,54.5603,3.0224,-0.4883,54.5702,2.991,-0.2271,54.6369,3.1521,-0.2449,54.6261,3.1601,-0.2452,54.6316,3.1618,-0.2268,54.6432,3.1558,-0.2094,54.6567,3.1404,-0.2,54.6753,3.0235,-0.1989,54.6804,3.0273,-0.1617,54.6724,3.0588,-0.1508,54.6665,3.0154,-0.0791,54.6063,3.2063,-0.0793,54.6008,3.2047,-0.1014,54.5987,3.2093,-0.1232,54.5995,3.2005,-0.1455,54.6021,3.1856,-0.1461,54.6158,3.1913,-0.1928,54.5842,3.1923,-0.2178,54.5805,3.1861,-0.2087,54.5443,3.1818,-0.3588,54.553,3.1265,0.0,54.644,3.1523,-0.2498,53.502,3.0416,-0.2394,53.5883,3.0661,-0.1659,53.7462,3.0116,-0.2289,53.7514,2.991,-0.2279,53.6703,3.0376,-0.2547,54.1594,2.9491,-0.2536,54.0108,2.9302,-0.4384,54.3837,3.0631,-0.3341,53.861,2.8802,-0.3356,53.6012,3.0486,-0.3332,53.6778,3.0198,-0.2476,53.4296,2.8935,-0.1727,54.4489,2.8545,-0.1057,54.4449,2.8926,-0.1001,54.2634,2.8005,-0.7424,54.0235,2.5315,-0.717,54.0476,2.5472,-0.8147,54.2307,2.6012,-0.8658,54.2553,2.5375,-0.8782,54.126,2.498,-0.9024,54.8865,1.3761,-0.8855,54.8491,1.3597,-0.9475,54.8516,1.3431,-0.8219,54.8289,1.4556,-0.8203,54.8204,1.4956,-0.8309,54.7608,1.4416,-0.763,54.7204,1.6863,-0.796,54.5958,1.6302,-0.8245,54.6364,1.5277,-0.825,54.7495,1.5389,-0.6154,54.6682,2.2293,-0.6452,54.7095,2.2207,-0.6244,54.6102,2.143,-0.6434,54.6197,2.1102,-0.6271,54.6657,2.1572,-0.6771,54.6294,2.049,-0.6926,54.497,1.9646,-0.7048,54.6504,2.0044,-0.9158,53.6716,2.079,-0.841,53.5959,2.2334,-1.0138,53.7022,2.0648,-1.1077,54.8383,1.738,-1.1379,54.8497,1.7313,-1.1239,54.8146,1.7961,-1.3515,54.9678,1.7025,-1.2841,54.9425,1.6381,-1.1584,54.6374,1.9422,-1.1668,54.5404,2.0031,-1.1336,54.5833,2.0093,-1.0282,54.7477,2.0494,-1.0564,54.7417,2.004,-1.0456,54.7215,2.0626,-1.1401,54.4811,2.0522,-1.0999,54.5271,2.0962,-0.8313,54.0664,2.537,-0.8885,54.0271,2.4682,-0.8298,54.0386,2.5492,-0.9081,54.6659,2.4293,-0.9009,54.7,2.4164,-0.9557,54.6896,2.364,-0.8617,54.7154,2.4431,-0.8962,54.7478,2.365,-0.9326,54.751,2.3406,-1.128,54.5738,2.0238,-1.1449,54.6977,1.9587,-1.1733,54.7385,1.9114,-0.8183,54.7388,2.4283,-0.7987,54.7076,2.4967,-0.7688,54.7471,2.41,-0.7485,54.722,2.4544,-0.7043,54.7267,2.4245,-0.6829,54.7383,2.3681,-0.6796,54.7294,2.4041,-0.6262,54.7134,2.3272,-0.6492,54.7145,2.2675,-0.8958,54.4575,1.4941,-0.8818,54.579,1.4047,-0.8571,54.5378,1.5017,-0.7333,54.6647,1.9556,-0.7476,54.7188,1.9708,-0.7385,54.7135,1.9883,-0.8292,54.8093,1.6117,-0.8549,54.8376,1.6278,-0.8209,54.8048,1.6382,-0.8339,54.8259,1.5923,-0.8672,54.8529,1.5848,-0.8426,54.8519,1.5671,-0.8458,54.852,1.5623,-0.9861,54.8963,1.3825,-0.9852,54.8928,1.3876,-0.944,54.8885,1.3794,-0.7768,54.7541,1.9622,-0.7485,54.7187,1.9593,-0.7467,54.7259,1.9119,-0.9776,54.8139,1.6869,-1.0378,54.8217,1.7149,-1.0324,54.8125,1.7159,-0.8198,54.7664,1.9543,-0.8219,54.754,1.9482,-0.8696,54.7542,1.9629,-0.856,54.8259,1.6741,-0.8559,54.818,1.6788,-0.8061,54.8157,1.6994,-0.9623,54.7596,1.9808,-1.001,54.7615,1.986,-0.9601,54.7656,1.9882,-0.9205,54.7557,1.9737,-0.8671,54.7603,1.9697,-1.0394,54.7708,1.975,-1.0073,54.7624,2.0356,-1.0008,54.7646,1.9934,-0.9858,54.7557,2.1736,-0.9787,54.7547,2.1748,-0.9756,54.7606,2.1422,-0.8933,54.7462,2.356,-0.9284,54.7515,2.3316,-0.9181,54.6001,2.4448,-0.8986,54.6627,2.4473,-0.8556,54.6616,2.541,-0.8128,54.7019,2.5313,-0.6566,54.7196,2.2999,-0.8199,54.662,2.6357,-0.8067,54.6959,2.5745,-0.8513,54.6606,2.5718,-0.6558,54.6742,2.0994,-0.6575,54.7165,2.1315,-0.8008,54.7363,1.6152,-0.8229,54.7402,1.5714,-1.1199,54.784,1.8587,-1.1405,54.7512,1.9073,-1.1135,54.7573,1.8995,-1.1089,54.8158,1.802,-1.1002,54.8141,1.8038,-1.0776,54.8209,1.7516,-0.8603,54.8499,1.3702,-0.8748,54.8812,1.382,-0.8631,54.8792,1.3882,-0.9744,54.8689,1.3382,-1.0696,54.8971,1.3611,-0.866,54.8181,1.4641,-0.8449,54.8149,1.4714,-0.8379,54.8449,1.4672,-0.8412,54.8437,1.4632,-0.8379,54.8505,1.4637,-1.1022,54.811,1.4912,-1.1144,54.8137,1.4862,-1.1226,54.846,1.5109,-1.114,54.8147,1.5151,-1.1023,54.8169,1.508,-1.1188,54.8412,1.5155,-1.1058,54.8995,1.4346,-1.1167,54.8926,1.4627,-1.1158,54.8571,1.455,-1.0728,54.8118,1.7544,-0.6911,54.6754,2.0922,-0.6786,54.6723,2.1306,-0.6646,54.7178,2.134,-0.9346,54.6941,2.2809,-0.9546,54.7504,2.2811,-0.9728,54.7048,2.1728,-1.1469,54.8615,1.6854,-1.2342,54.836,1.7089,-1.3103,54.7276,1.8185,-1.1894,54.7846,1.8163,-1.1128,54.724,1.9567,-1.1925,54.4271,1.3149,-1.2635,54.4459,1.2988,-1.2053,54.5178,1.2928,-1.4051,54.1266,1.3622,-1.479,54.3749,1.2477,-1.5095,54.2368,1.1568,-1.1377,54.5989,1.2809,-1.2084,54.757,1.2514,-1.174,54.2527,1.4304,-1.3896,54.1683,1.179,-1.2284,54.4443,1.9817,-1.1778,54.3179,2.0696,-1.1068,54.3869,2.1292,-1.1908,54.2974,2.0541,-1.1256,53.815,1.8831,-1.1931,53.9487,1.9796,-1.2536,54.0579,1.8115,-1.1827,53.9851,2.0293,-1.099,53.8144,2.1827,-1.1717,54.015,2.0686,-1.1775,54.6791,1.8907,-1.2066,54.6226,1.9336,-1.3191,54.2221,1.6594,-1.2969,54.2659,1.6969,-0.7655,54.6662,2.6863,-1.1572,55.0192,1.2897,-1.2396,55.1935,1.2766,-1.2763,55.222,1.3981,-1.4927,54.5769,1.2214,-1.4583,54.6619,1.3473,-1.4971,54.6027,1.2101,-1.372,54.8706,1.1835,-1.365,55.1079,1.1542,-1.2935,54.9209,1.2093,-1.6117,54.4672,0.7522,-1.6015,54.45,0.7754,-1.3252,54.289,1.2158,-1.5732,56.1255,0.127,-1.5812,56.0625,0.1712,-1.5618,56.0451,0.0861,-1.5732,56.4166,1.4405,-1.5654,56.318,1.3825,-1.5741,56.3214,1.3705,-1.5173,56.5499,1.6403,-1.5683,56.5751,1.5724,-1.54,56.5926,1.6507,-1.5858,56.5713,1.5816,-1.5759,56.5798,1.5734,-1.5781,56.502,1.5054,-1.6349,55.9609,0.6118,-1.6168,55.9188,0.732,-1.6189,55.8506,0.4856,-1.4509,55.1714,1.0444,-1.396,55.2355,1.104,-1.4683,55.3412,1.0404};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=3 */
		private double[] getmand_Coord_6_877_point_3()
		{
			double[] value = {-1.4719,55.4816,1.0398,-1.4392,55.3679,1.0669,-1.3782,55.4202,1.1489,-1.4141,55.5127,1.1383,-1.3754,55.3566,1.5212,-1.3664,55.2375,1.5341,-1.296,55.3309,1.2497,-1.2444,55.1898,1.258,-1.6417,55.3276,0.709,-1.6221,55.3439,0.7493,-1.6072,55.2522,0.8469,-1.678,56.0245,0.551,-1.7065,55.5837,0.2845,-1.7067,55.6999,0.2118,-1.6266,55.9817,0.7867,-1.652,55.9942,0.6594,-1.5914,56.5051,1.562,-1.5853,56.4099,1.5326,-1.7643,55.728,0.315,-1.8028,55.8384,0.2698,-1.7697,55.8289,0.1654,-1.7791,56.1089,0.4046,-1.7307,56.0564,0.4542,-1.7236,56.0738,0.4643,-1.694,56.032,0.5734,-1.7053,56.0728,0.4393,-1.7078,56.0197,0.5767,-1.679,55.9942,0.6847,-1.4712,56.2452,1.5569,-1.5233,56.3755,1.5337,-1.683,55.9656,0.6718,-1.647,55.9399,0.7985,-1.6527,55.9814,0.8056,-1.6768,56.0808,0.3665,-1.6546,56.0817,0.3081,-1.6742,56.1299,0.2564,-1.6169,56.1374,0.2116,-1.6041,56.0859,0.267,-1.6019,56.1369,0.2022,-1.7728,56.194,0.2582,-1.7148,56.1295,0.3149,-1.8484,56.0014,0.2766,-1.9093,56.0907,0.2654,-1.8939,56.0617,0.2074,-1.5447,56.301,0.0737,-1.5241,56.3818,0.0803,-1.5917,56.371,0.097,-1.9789,56.2641,0.2251,-1.963,56.3166,0.1838,-1.9536,56.297,0.1396,-1.9143,56.2417,0.327,-1.8959,56.1634,0.3506,-1.8589,56.1794,0.3429,-1.5362,56.2956,0.0646,-1.4983,56.1992,0.0348,-1.4651,56.2959,0.0419,-1.385,56.2878,0.0247,-1.4261,56.193,0.0213,-1.3783,56.2708,-0.0121,-1.3518,56.4508,-0.0083,-1.3728,56.479,-0.0261,-1.3685,56.4796,0.0137,-1.869,56.425,0.1803,-1.8912,56.4196,0.1486,-1.9446,56.3464,0.2185,-1.6555,55.835,0.1228,-1.3632,56.4572,-0.049,-1.6202,56.5374,0.0177,-1.6073,56.5132,-0.0438,-1.7373,56.4981,0.0,-1.7659,56.2755,-0.0733,-1.7665,56.3449,-0.078,-1.6674,56.3608,-0.1279,-1.6549,56.2827,0.1248,-1.7542,56.3377,0.162,-1.735,56.269,0.1687,-1.862,56.1324,0.1114,-1.9484,56.2008,0.1888,-1.8858,56.1949,0.0916,-1.9336,56.1507,0.1962,-1.9137,56.3431,0.0797,-1.9166,56.3021,0.0716,-1.5333,56.2767,-0.1379,-1.503,56.3543,-0.1357,-1.3821,56.3302,-0.0809,-1.4235,56.4937,0.0731,-1.4376,56.5251,0.035,-1.521,56.541,0.0536,-1.9653,56.2181,0.241,-1.9561,56.2533,0.2827,-1.6057,56.2094,0.1188,-1.7571,55.9169,0.4119,-1.6823,55.8888,0.5171,-1.737,55.7199,0.1666,-1.7602,55.7155,0.2292,-1.7274,55.7549,0.5275,-1.6785,55.7538,0.629,-1.6624,55.493,0.463,-1.6872,55.4667,0.376,-1.6869,55.4631,0.352,-1.679,55.4634,0.3283,-1.5362,55.6925,1.1522,-1.545,55.5746,1.1332,-1.5066,55.6745,1.2257,-1.4955,55.8812,1.4023,-1.4922,55.6978,1.4713,-1.5054,55.87,1.5112,-1.5389,55.8464,1.1826,-1.5169,55.864,1.2905,-1.5809,55.986,0.1119,-1.3846,55.468,1.5134,-1.4368,55.3841,1.6506,-1.4269,55.7315,1.5895,-1.4428,55.6023,1.6647,-1.4092,55.6372,1.56,-1.5465,55.8618,1.0889,-1.5403,55.9334,1.1573,-1.5857,55.9361,0.9493,-1.5982,55.9816,0.8958,-1.6303,55.6839,0.548,-1.6509,55.7625,0.4114,-1.6156,55.7815,0.6293,-1.5539,55.6579,0.9052,-1.4968,55.5921,1.0226,-1.5288,55.3174,1.0341,-1.569,55.41,0.9035,-1.6614,55.3367,0.4317,-1.6549,55.317,0.3997,-1.5862,55.1093,0.699,-1.4979,55.3306,1.0356,-1.4665,55.1651,1.0444,-1.613,54.4951,0.74,-1.4901,54.6713,0.9901,-1.5066,54.5322,0.9353,-1.5211,54.5717,0.9131,-1.3357,55.4477,1.2466,-1.3451,55.2937,1.176,-1.5372,55.1373,1.0632,-1.3228,55.3423,1.3896,-1.5561,56.0106,0.0343,-1.5408,56.0394,0.0692,-1.5899,55.9693,0.0929,-1.843,56.3161,0.2164,-1.8157,56.2568,0.2331,-1.561,56.484,1.547,-1.5687,56.5005,1.5079,-1.7817,55.8468,0.3437,-1.7485,55.8694,0.4413,-1.5008,55.69,1.3222,-1.4483,55.3847,1.6568,-1.6477,54.8971,0.7398,-1.6591,55.1033,0.7164,-1.669,55.1007,0.6623,-1.7197,55.8373,0.098,-1.7387,55.9392,0.0779,-1.6689,55.3066,0.3937,-1.7054,55.4519,0.3624,-1.756,55.7323,0.3716,-1.7346,55.9581,0.4627,-1.7093,55.9493,0.5341,-1.7127,55.9913,0.5634,-1.4863,56.4163,-0.1185,-1.3641,56.3886,-0.085,-1.5455,56.5466,0.0014,-1.8596,56.402,0.2066,-1.9173,56.3711,0.2423,-1.9291,56.3199,0.2855,-1.6582,56.3604,0.1219,-1.6589,56.4472,0.1483,-1.795,56.4754,0.1358,-1.7803,56.4498,0.164,-1.6769,56.4861,0.1338,-1.356,56.4608,0.0327,-1.5027,56.5183,0.0991,-1.5785,56.4785,0.1339,-1.4141,56.2659,-0.0692,-1.9079,56.1722,0.3489,-1.9202,56.2402,0.328,-1.9423,56.2149,0.298,-1.4243,56.1834,-0.0064,-1.471,56.1791,-0.0484,-1.6436,56.206,0.147,-1.6013,56.2906,0.0968,-1.7073,56.1987,0.1926,-1.8308,56.0671,0.3742,-1.6655,55.9017,0.6477,-1.8992,56.244,0.3119,-1.6369,55.9909,0.7929,-1.7686,56.1237,0.4096,-1.7149,55.4565,0.4542,-1.6835,55.2974,0.4206,-1.6627,55.1035,0.5084,-1.4723,56.4154,1.7588,-1.4882,56.5017,1.7495,-1.6407,55.8514,0.2286,-1.6509,55.8457,0.2043,-1.613,55.9438,0.0609,-1.6643,55.9387,0.0406,-1.6264,55.3244,0.6832,-1.6627,55.7459,0.3944,-1.6812,55.7257,0.3681,-1.4172,55.2518,1.6486,-1.425,55.2524,1.6568,-1.6025,55.4877,0.7847,-1.369,55.5843,1.2752,-1.3709,55.527,1.39,-1.3573,55.5408,1.2733,-1.5494,56.3055,1.4079,-1.5633,56.4157,1.4444,-1.5884,55.8578,0.8775,-1.4781,56.4451,1.6575,-1.4943,56.5285,1.6925,-1.4722,54.7401,1.0801,-1.5338,54.4647,1.0826,-1.541,54.4262,1.0621,-1.573,54.346,0.9701,-1.4333,55.0546,1.1045,-1.3382,54.6254,1.2266,-1.4238,54.8209,1.1507,-1.4946,55.1662,1.3327,-1.4705,55.019,1.4177,-1.4919,55.1857,1.4406,-1.2796,54.6922,1.2459,-0.8069,53.9749,2.5599,-0.7877,54.555,2.6971,-0.758,54.6451,2.7037,-0.7679,54.6982,2.615,-0.7833,54.696,2.6016,-1.0004,53.7512,1.9273,-0.953,53.7093,2.0028,-1.2255,54.1396,1.3999,-1.1539,54.4431,1.3362,-1.1053,54.35,1.4428,-1.2414,55.0288,1.3927,-1.2262,54.9087,1.4527,-1.1517,54.9175,1.3972,-1.2503,54.0057,1.5272,-1.407,54.271,1.4427,-1.466,54.4209,1.2901,-1.33,54.164,1.6271,-1.3071,54.0208,1.541,-1.33,55.0768,1.5592,-1.1973,53.9382,1.6211,-1.0704,54.4907,1.3119,-0.9551,54.7756,2.0306,-0.8245,54.8112,1.5444,-0.8994,54.8452,1.6369,-0.7301,54.5289,1.8523,-0.731,54.6703,1.8905,-1.2392,54.8552,1.6395,-1.0829,54.8541,1.6881,-0.8939,54.6854,2.3469,-0.9279,54.6915,2.3116,-0.8388,54.6785,2.351,-0.8426,54.7494,2.3629,-0.7885,54.7495,2.3601,-0.973,54.7186,1.973,-1.0077,54.722,1.9727,-1.1247,54.8785,1.5006,-1.1253,54.8714,1.5231,-1.1246,54.8495,1.4939,-0.85,54.8262,1.4203,-0.8398,54.8482,1.4523,-0.8407,54.8523,1.4345,-1.0621,54.7952,1.5921,-1.0232,54.8231,1.6042,-1.0211,54.7939,1.5942,-0.9359,54.8162,1.4707,-0.9361,54.8351,1.4768,-0.8413,54.8443,1.4607,-0.8628,54.8212,1.45,-1.1192,54.8421,1.513,-1.0253,54.8347,1.4936,-0.9981,54.7637,2.0602,-1.019,54.741,2.1071,-0.9827,54.7643,2.1399,-1.1111,54.8653,1.589,-1.1221,54.8716,1.5666,-1.1665,54.8718,1.6218,-1.1305,54.8859,1.5019,-1.2056,54.8938,1.509,-1.1318,54.879,1.5253,-1.0667,54.905,1.4013,-0.9442,54.89,1.3749,-0.8008,54.8165,1.6955,-1.1382,54.7812,1.8542,-0.9067,54.8488,1.5968,-0.8608,54.7736,2.0084,-0.814,54.7657,1.9964,-0.6824,54.7279,2.0838,-0.7053,54.6972,2.0201,-0.7113,54.7335,2.0533,-1.0016,54.7103,2.2462,-1.0137,54.7281,2.16,-1.0073,54.6617,2.259,-0.7487,54.6687,2.3306,-0.7491,54.7419,2.3427,-0.671,54.6616,2.2892,-0.6936,54.6633,2.3067,-0.6621,54.7159,2.2951,-0.6893,54.7319,2.3202,-0.7458,54.7464,2.349,-0.8833,54.6609,2.473,-0.7823,54.7136,2.4758,-0.7766,54.7105,2.4771,-0.7451,54.7142,2.4588,-0.8136,54.7557,2.0428,-0.8131,54.7492,2.0486,-0.7665,54.7459,2.0468,-0.6871,54.7275,2.0873,-0.7137,54.7324,2.0569,-0.8433,54.7522,2.3691,-0.9649,54.7669,2.101,-0.9594,54.7605,2.1056,-0.9299,54.7668,2.0726,-0.7729,54.7654,1.9193,-0.7772,54.7648,1.9138,-1.0357,54.7691,1.968,-1.1033,54.7988,1.8651,-1.0934,54.8077,1.8038,-0.756,54.7782,1.855,-0.7637,54.7793,1.8525,-0.9182,54.7639,1.9804,-0.7798,54.8076,1.7437,-1.0765,54.7797,1.9393,-0.774,54.8013,1.7731,-0.7744,54.8072,1.7364,-0.903,54.8858,1.3813,-0.7651,54.7488,2.0418,-0.7756,54.7513,1.9848,-0.8464,54.8754,1.4045,-0.8255,54.8658,1.4658,-0.8167,54.8615,1.5039,-0.6021,54.6102,2.2565,-1.2735,54.6003,1.8914,-1.2238,54.6581,1.9036,-1.0459,54.6582,2.1396,-1.0168,54.62,2.2483,-0.8628,54.6874,2.48,-0.9927,54.7043,2.2822,-1.0916,54.6235,2.0493,-1.0243,54.7474,2.0628,-1.03,54.6938,2.149,-1.0741,54.6968,2.0069,-1.1019,54.6421,2.0112,-1.0914,54.8303,1.7469,-0.6812,54.6846,2.0612,-0.7287,54.6879,1.8289,-0.7991,54.7809,1.6563,-0.8229,54.7854,1.5985,-1.0264,54.8472,1.6727,-1.0756,54.8529,1.6665,-0.8475,54.6739,1.4232,-0.7639,54.7807,1.717,-0.8192,54.8564,1.5444,-0.8698,54.8016,1.3575,-0.2616,53.4585,2.7623,-0.2506,53.5318,2.7056,-0.1773,53.5235,2.7216,-0.5138,54.3843,3.0124,-0.4981,54.2733,2.9646,-0.164,53.8563,2.9671,-0.3211,53.4936,3.0095,-0.0953,53.8476,2.9966,-0.1027,53.744,3.0314,-0.1271,54.6532,2.9733,-0.1516,54.6436,3.0089,-0.0867,54.685,2.9901,-0.0873,54.6756,2.9871,-0.06,54.6718,3.02,-0.325,54.6769,3.029,-0.2674,54.6255,3.1595,-0.2666,54.6206,3.1591,-0.4858,54.5901,3.0385,-0.5045,54.5753,3.0519,-0.1242,54.6903,2.9823,-0.1086,54.6503,2.9405,-0.05,54.6142,3.1984,-0.1482,54.6258,3.1931,-0.184,54.6749,3.1093,-0.1711,54.669,3.105,-0.1679,54.657,3.1503,-0.3089,54.3891,3.0942,-0.2202,54.6483,3.1602,-0.2996,54.6744,3.0002,-0.2965,54.6653,2.9929,-0.2842,54.6691,2.9585,-0.3552,54.6596,3.0495,-0.3939,54.6307,3.0876,-0.3517,54.6648,3.0565,-0.464,54.5844,3.0651,-0.3031,54.6917,2.9026,-0.1693,54.5962,2.8912,0.0,54.6348,2.9751,-0.0985,54.5944,2.931,-0.2388,54.6544,2.8721,-0.2406,54.5967,2.8512,-0.2703,54.5989,2.8173,-0.1674,53.6642,3.042,-0.1077,53.6596,3.0478,-0.1239,53.5238,2.7306,-0.1653,53.7428,2.605,-0.1209,53.6653,2.6378,-0.2398,54.4529,2.8167,-0.4666,54.055,2.4033,-0.5752,53.9665,2.2872,-0.5276,54.069,2.2947,-0.7818,54.0913,2.5889,-0.6106,54.7198,2.6179,-0.5984,54.6987,2.6536,-0.5563,54.7017,2.6357,-0.7039,54.6602,2.829,-0.6974,54.6268,2.8662,-0.6839,54.6572,2.8551,0.0,53.909,2.5716,0.0,53.8204,2.5778,-0.3035,53.8992,2.5529,-0.3766,53.905,2.5061,-0.3504,54.027,2.5169,-0.4553,53.4604,2.6543,-0.5047,53.4847,2.7252,-0.5618,54.6409,2.95,-0.5858,54.6495,2.9247,-0.5847,54.6021,2.9557,-0.4803,54.6112,2.9278,-0.472,54.6579,2.894,-0.3836,54.6393,2.8127,-0.3594,54.69,2.8063,-0.3941,54.6857,2.822,-0.5437,54.6692,2.9034,-0.584,54.6682,2.8632,-0.4616,54.6854,2.705,-0.4681,54.6811,2.7393,-0.5298,54.6991,2.6338,-0.496,54.699,2.6471,-0.3857,54.6929,2.7653,-0.5817,54.7212,2.5365,-0.5682,54.725,2.4993,-0.7206,54.6278,2.8303,-0.5521,54.3955,2.9515,-0.4425,53.8586,2.8274,-0.4501,53.8146,2.8385,-0.5601,54.6869,2.4294,-0.5667,54.613,2.422,-0.5883,54.5777,2.337,-0.6092,54.7306,2.4043,-0.5894,54.7295,2.4163,-0.5825,54.6126,2.3735,0.0,54.2859,3.0701,-0.0547,54.2867,3.083,-0.1945,54.6239,3.1918,-0.2286,54.6182,3.1847,-0.355,54.605,3.1377,-0.3133,54.6122,3.1563,-0.1815,54.6203,3.197,-0.2654,54.5732,3.181,-0.4617,54.5303,3.0877,-0.742,54.6597,2.7293,-0.4692,54.6108,2.6023,-0.4326,54.6089,2.6401,-0.4294,54.4886,2.6379,-0.5667,54.7194,2.5873,-0.6552,54.7309,2.3986,-0.5885,54.6118,2.3371,-0.4653,53.5021,2.8979,-0.4214,53.4763,2.8354,-0.6779,54.0042,2.6199,-0.0318,53.8378,2.5729,-0.0613,53.8645,2.5606,-0.0333,53.8444,2.5654,-0.0611,53.593,2.6719,-0.0651,53.4562,2.7698,-0.0312,53.4987,2.7434,-1.3712,54.9659,1.6986,-1.4106,54.9089,1.562,-1.5709,56.052,1.3232,-1.5765,54.3858,0.8414,-1.5702,56.0233,1.3184,-1.5399,56.0091,1.4465,-1.7378,56.0084,0.4614,-1.5547,56.314,1.5639,-1.5279,56.3077,1.6607,-1.5477,56.369,1.6417,-1.5851,56.386,1.5279,-1.503,56.4631,0.1088,-1.8384,56.0405,0.3326,-1.4255,56.4581,0.0811,-1.4367,56.2008,0.0274,-1.5821,56.0673,0.1925,-1.9166,56.2772,0.3099,-1.9229,56.2788,0.3099,-1.6435,55.2863,0.6077,-1.632,55.8658,0.2652,-1.6274,55.1323,0.482,-1.6378,55.127,0.4692,-1.4967,54.3043,0.9425,-1.4681,54.1888,1.1361,-1.6706,55.9507,0.0267,-1.6486,55.1285,0.4771,-1.6198,54.896,0.5772,-1.6092,54.6779,0.6462,-1.5946,54.4463,0.7659,-1.6287,54.5792,0.7564,-1.6111,55.8509,0.6779,-1.5977,55.8166,0.8444,-1.4202,55.737,1.5724,-1.4326,55.8392,1.5949,-1.4537,56.0856,1.6439,-1.4581,56.0819,1.6574,-1.4451,55.961,1.6334,-1.4069,55.6416,1.5473,-1.6307,55.8417,0.1847,-1.4125,55.7702,1.4749,-1.4121,55.7763,1.4578,-1.4354,55.8766,1.4857,-1.4144,55.8008,1.391,-1.419,55.8071,1.3753,-1.4352,55.8968,1.4316,-1.4462,56.0132,1.4827,-1.4529,56.1279,1.5148,-1.447,56.1215,1.5307,-1.5421,56.0393,1.477,-0.1435,54.2832,3.0652,-0.1775,54.282,3.057,-0.5609,54.4975,2.9567,-0.5863,54.3988,2.9268,-0.0983,54.1533,2.9947,-0.1269,54.1554,2.9866,-0.1034,54.0075,2.9902,-0.5712,54.5477,2.9513,-0.3496,54.532,3.1178,-0.1911,54.5644,3.1867,-0.4576,54.4931,3.0832,-1.5767,54.6407,0.7076,-1.5783,54.6483,0.7317,-1.5789,54.591,0.7307,-1.5435,54.5212,0.8546,-1.5341,54.4752,0.8776,-1.6106,54.6571,0.6472,-1.2966,54.3678,1.2638,-1.5196,54.8769,1.0012,-1.5614,54.3838,0.8327,-1.5724,54.6528,0.7049,-1.6088,54.6658,0.6422,-1.6434,54.9,0.6974,-1.669,55.1015,0.5762,-1.6165,54.6547,0.7661,-1.61,54.6212,0.7895,-1.6079,54.6878,0.8502,-1.641,54.6768,0.7121,-1.5524,55.0206,0.792,-1.5878,54.9421,0.6537,-1.5714,54.9657,0.7172,-1.5723,54.893,0.7296,-0.7184,54.1565,1.9729,-0.7082,54.1776,1.9757,-0.6562,54.1154,2.0794,-0.064,53.5825,2.6804,-0.0425,53.5617,2.6953,-0.1242,54.2774,2.8992,-0.1358,54.2132,2.9264,-0.1425,54.2133,2.9402,-0.1469,54.2039,2.9467,-0.1412,54.1964,2.9909,-0.1338,54.1905,2.9937,-0.13,54.1887,2.9914,-0.1383,54.1829,2.9772,-0.1257,54.1879,2.9852,-0.1301,54.2101,2.9268,-0.1252,54.2201,2.9217,-0.1289,54.216,3.0173,-0.1284,54.1969,3.0028,-0.1151,54.1938,2.9806,-0.0984,54.214,2.9947,-0.1132,54.1961,2.9715,-0.1186,54.2143,2.929,-0.1121,54.2349,2.9274,-0.119,54.2384,2.9152,-0.1428,54.1847,2.97,-0.1451,54.1958,2.9447,-0.2481,54.4904,2.8831,-0.2652,54.4275,2.8874,-0.2432,54.4343,2.8734,-0.205,54.2585,2.8913,-0.2007,54.2931,2.909,-0.2066,54.2964,2.8867,-0.2053,54.2087,2.9325,-0.2119,54.2145,2.9515,-0.2011,54.2108,2.9319,-0.2011,54.2185,2.9487,-0.196,54.2207,2.9425,-0.4347,54.3409,2.9697,-0.4583,54.3937,2.9565,-0.4424,54.3924,2.9813,-0.4198,54.283,2.9513,-0.443,54.3427,2.9486,-0.3289,54.1937,2.8026,-0.3227,54.1102,2.9019,-0.3033,54.1315,2.8,-0.3147,54.1256,2.802,-0.2925,54.0732,2.8043,-0.3111,54.0571,2.8173,-0.3016,54.065,2.8101,-0.3283,54.1177,2.8115,-0.3041,54.0588,2.8744,-0.3345,54.1035,2.9063,-0.2784,54.0847,2.8154,-0.2931,54.1354,2.8164,-0.2683,54.069,2.8271,-0.2777,54.0847,2.8233,-0.2869,54.078,2.8041,-0.2755,54.0581,2.8208,-0.2858,54.0458,2.8255,-0.2791,54.0537,2.8218,-0.2926,54.0387,2.8327,-0.2981,54.0361,2.8532,-0.2945,54.0371,2.8535,-0.4108,54.5414,3.0607,-0.4178,54.5654,3.0673,-0.385,54.5467,3.0506,-0.6517,54.343,2.7594,-0.6667,54.3136,2.3615,-0.6569,54.3144,2.3595,-0.6484,54.3908,2.3646,-0.6731,54.2419,2.4328,-0.6942,54.2389,2.4421,-0.6927,54.2225,2.4284,-0.6713,54.2333,2.3682,-0.6703,54.2231,2.3906,-0.7517,54.5585,2.5747,-0.7706,54.6153,2.5836,-0.7572,54.6155,2.5951,-0.4916,54.5867,2.965,-0.4736,54.5524,2.9224,-0.9386,54.3328,2.0109,-0.9604,54.3767,2.0697,-0.9101,54.3045,2.029,-0.8885,54.3202,2.0564,-0.8862,54.3012,2.0291,-0.8428,54.3135,1.9665,-0.8887,54.3153,1.9583,-0.8753,54.3136,1.9574,-0.7771,54.3017,2.1885,-0.784,54.3037,2.1791,-0.8941,54.2741,2.2166,-0.9089,54.316,2.2385,-0.8525,54.2876,1.9897,-0.8322,54.3015,2.0111,-0.8759,54.2496,2.1778,-0.8742,54.2497,2.1732,-0.918,54.3043,2.0239,-0.814,54.3176,2.024,-0.8242,54.3162,2.037,-0.8,54.3578,2.0635,-0.9805,54.4441,1.8647,-0.9996,54.4754,1.8863,-0.9763,54.4733,1.8866,-1.0009,54.4459,1.8681,-0.852,54.4564,1.7769,-0.8318,54.4855,1.8018,-0.833,54.4903,1.7913,-0.8826,54.434,1.7609,-0.8695,54.4281,1.7643,-0.9042,54.4162,1.7558,-1.0045,54.3894,1.8201,-1.0048,54.3791,1.8099,-1.0145,54.3804,1.8107,-0.9575,54.3757,1.7937,-0.9512,54.385,1.8023,-0.9288,54.3836,1.7935,-1.0128,54.3639,1.7799,-1.0203,54.3694,1.7965,-0.8197,54.66,1.7496,-1.0303,54.6093,1.5428,-1.0436,54.6092,1.5308,-1.0626,54.6837,1.5584,-0.9345,54.6674,1.318,-0.9195,54.729,1.3386,-1.0579,54.6519,1.3693,-1.0828,54.7155,1.393,-0.9231,54.6645,1.3397,-0.8904,54.7221,1.3865,-1.036,54.5522,1.481,-1.0462,54.5533,1.4641,-1.0528,54.6119,1.5056,-1.0344,54.5648,1.3668,-1.0432,54.5241,1.4464,-1.046,54.5262,1.4369,-1.0006,54.5201,1.3956,-0.999,54.5197,1.3982,-0.9768,54.5375,1.3935,-1.0334,54.5224,1.39,-1.0224,54.5354,1.387,-1.0407,54.5349,1.3953,-0.9319,54.6353,1.414,-0.9027,54.7124,1.4412,-0.9642,54.6295,1.4114,-1.0397,54.5153,1.4004,-1.0395,54.5212,1.3955,-1.045,54.5203,1.3998,-0.9532,54.5719,1.4045,-0.9855,54.5405,1.3871,-0.9854,54.5539,1.3202,-0.9792,54.5605,1.316,-1.0849,54.7073,1.4375,-1.0726,54.7065,1.4447,-1.0275,54.565,1.3721,-1.0312,54.5166,1.3946,-1.0195,54.5172,1.3935,-1.0436,54.5135,1.4221,-1.038,54.5122,1.4183,-1.0393,54.513,1.4137,-0.944,54.5707,2.2397,-0.9619,54.6408,2.221,-0.9514,54.6381,2.2474,-1.0569,54.6169,1.8474,-0.9827,54.6178,1.8212,-0.9817,54.658,1.817,-0.8097,54.6763,1.7872,-1.0726,54.6402,1.7544,-0.7745,54.734,1.7924,-1.0348,54.7336,1.6894,-1.0371,54.7024,1.6757,-1.0553,54.6573,1.8364,-1.0899,54.6942,1.8746,-0.8734,54.7762,1.4042,-0.8518,54.8243,1.4403,-1.01,54.609,1.5452,-1.0411,54.682,1.5713,-0.6964,54.5414,2.1949,-0.6827,54.5388,2.2211,-0.6717,54.6062,2.2125,-0.6884,54.6053,2.1736,-0.7221,54.5443,2.1923,1.5066,54.5322,0.9353,1.5862,55.1093,0.699,1.5978,55.2273,0.7123,1.6869,55.4631,0.352,1.6303,55.6839,0.548,1.6156,55.7815,0.6293,1.6189,55.8506,0.4856,1.4767,55.7841,1.2163,1.5403,55.9334,1.1573,1.5435,56.0476,0.0826,1.5618,56.0451,0.0861,1.3381,56.3893,-0.0103,1.3512,56.4031,0.0456,1.4943,56.5285,1.6925,1.5108,56.5653,1.7196,1.6456,56.4317,-0.1013,1.7568,56.4175,-0.0575,1.6674,56.3608,-0.1279,1.5389,55.8464,1.1826,1.4922,55.6978,1.4713,1.545,55.5746,1.1332,1.5362,55.6925,1.1522,1.7065,55.5837,0.2845,1.6077,55.4987,0.9563,1.6228,55.6334,0.8815,1.5833,55.6345,1.0074,1.7485,55.8694,0.4413,1.737,55.7199,0.1666,1.7093,55.9493,0.5341,1.9653,56.2181,0.241,1.9789,56.2641,0.2251,1.521,56.541,0.0536,1.4376,56.5251,0.035,1.3821,56.3302,-0.0809,1.5333,56.2767,-0.1379,1.9173,56.3711,0.2423,1.869,56.425,0.1803,1.6628,56.4582,0.1487,1.7691,56.4175,0.1671,1.7665,56.3449,-0.078,1.7659,56.2755,-0.0733,1.6767,56.2825,-0.1308,1.5772,56.4678,0.1343,1.5917,56.371,0.097,1.3728,56.479,-0.0261,1.3632,56.4572,-0.049,1.7107,55.7211,0.1646,1.7067,55.6999,0.2118,1.4261,56.193,0.0213,1.385,56.2878,0.0247,1.4651,56.2959,0.0419,1.4983,56.1992,0.0348,1.8992,56.244,0.3119,1.8959,56.1634,0.3506,1.9143,56.2417,0.327,1.9599,56.2511,0.1749,1.9536,56.297,0.1396,1.8484,56.0014,0.2766,1.8939,56.0617,0.2074,1.9093,56.0907,0.2654,1.7148,56.1295,0.3149,1.6742,56.1299,0.2564,1.6546,56.0817,0.3081,1.6594,55.62,0.7149,1.6527,55.9814,0.8056,1.647,55.9399,0.7985,1.683,55.9656,0.6718,1.4811,56.358,1.5895,1.5233,56.3755,1.5337,1.5001,56.2653,1.4982,1.694,56.032,0.5734,1.7078,56.0197,0.5767,1.7307,56.0564,0.4542,1.7236,56.0738,0.4643,1.7643,55.728,0.315,1.7602,55.7155,0.2292,1.7387,55.9392,0.0779,1.7426,55.7293,0.482,1.768,55.8413,0.4017,1.5754,56.5096,1.6363,1.6221,55.3439,0.7493,1.5477,54.9435,0.8465,1.5553,55.0335,0.8147,1.3664,55.2375,1.5341,1.2763,55.222,1.3981,1.6353,55.425,0.662,1.6025,55.4877,0.7847,1.4719,55.4816,1.0398,1.4392,55.3679,1.0669,1.4333,55.0546,1.1045,1.4509,55.1714,1.0444,1.5781,56.502,1.5054,1.5759,56.5798,1.5734,1.54,56.5926,1.6507,1.5683,56.5751,1.5724,1.5173,56.5499,1.6403,1.5741,56.3214,1.3705,1.5654,56.318,1.3825,1.5633,56.4157,1.4444,1.4067,54.4582,1.0989,1.4365,54.3609,1.0335,1.4971,54.6027,1.2101,1.4583,54.6619,1.3473,1.4927,54.5769,1.2214,1.2396,55.1935,1.2766,1.1572,55.0192,1.2897,0.7655,54.6662,2.6863,1.2969,54.2659,1.6969,1.1256,53.815,1.8831,1.1717,54.015,2.0686,1.1908,54.2974,2.0541,1.2284,54.4443,1.9817,1.1778,54.3179,2.0696,1.174,54.2527,1.4304,1.1053,54.35,1.4428,1.1925,54.4271,1.3149,1.017,54.4114,1.4051,0.9844,54.5678,1.2995,0.9458,54.4923,1.3948,1.0686,54.6719,1.2717,1.1495,54.8159,1.2659,1.407,54.271,1.4427,1.1377,54.5989,1.2809,1.1135,54.7573,1.8995,1.0765,54.7797,1.9393,1.1733,54.7385,1.9114,1.1405,54.7512,1.9073,1.0282,54.7477,2.0494,1.2056,54.8938,1.509,1.2304,54.8953,1.4991,0.6646,54.7178,2.134,0.6786,54.6723,2.1306,0.6911,54.6754,2.0922,1.0696,54.7677,1.7533,1.0728,54.8118,1.7544,1.0324,54.8125,1.7159,1.1158,54.8571,1.455,1.1167,54.8926,1.4627,1.1023,54.8169,1.508,1.114,54.8147,1.5151,1.1144,54.8137,1.4862,0.8449,54.8149,1.4714,0.866,54.8181,1.4641,0.8631,54.8792,1.3882,0.8748,54.8812,1.382,0.8426,54.8519,1.5671,0.8229,54.7402,1.5714,0.8008,54.7363,1.6152,0.6473,54.7093,2.1762,0.6271,54.6657,2.1572,0.9465,53.7829,2.4361,0.9158,53.6716,2.079,0.953,53.7093,2.0028,0.8617,54.7154,2.4431,0.7987,54.7076,2.4967,0.8628,54.6874,2.48,0.8067,54.6959,2.5745,0.7833,54.696,2.6016,0.9081,54.6659,2.4293,0.8128,54.7019,2.5313,0.8556,54.6616,2.541,0.8513,54.6606,2.5718,0.8818,54.5887,2.5455,0.8933,54.7462,2.356,0.9326,54.751,2.3406,0.9787,54.7547,2.1748,0.9858,54.7557,2.1736,0.9182,54.7639,1.9804,0.8696,54.7542,1.9629,0.8559,54.818,1.6788,0.8008,54.8165,1.6955,1.1488,53.8906,1.6954,1.1973,53.9382,1.6211,0.9852,54.8928,1.3876,0.8681,54.8487,1.5766,0.8458,54.852,1.5623,0.8322,54.8699,1.4306,0.8324,54.8369,1.4263,0.825,54.7495,1.5389,0.6262,54.7134,2.3272,0.6552,54.7309,2.3986,0.6796,54.7294,2.4041,0.8313,54.0664,2.537,1.0999,54.5271,2.0962,1.1668,54.5404,2.0031,1.1336,54.5833,2.0093,1.3515,54.9678,1.7025,1.1077,54.8383,1.738,0.841,53.5959,2.2334,0.7333,54.6647,1.9556,0.7467,54.7259,1.9119,0.8245,54.8112,1.5444,0.763,54.7204,1.6863,0.8405,54.7718,1.418,0.8105,54.091,2.5546,0.8782,54.126,2.498,0.8658,54.2553,2.5375,0.1057,54.4449,2.8926,0.1727,54.4489,2.8545,0.1747,53.4342,2.8985,0.2623,53.451,2.7689,0.3712,53.6769,3.0049,0.3332,53.6778,3.0198,0.3356,53.6012,3.0486,0.3284,53.7553,2.9636,0.2536,54.0108,2.9302,0.1714,53.5914,3.0546,0.1747,53.5109,3.0462,0.037,54.6291,3.18,0.032,54.641,3.1434,0.3322,54.5667,3.1431,0.1928,54.5842,3.1923,0.1461,54.6158,3.1913,0.1455,54.6021,3.1856,0.1232,54.5995,3.2005,0.1014,54.5987,3.2093,0.0791,54.6063,3.2063,0.1036,54.6036,3.2097,0.1492,54.6828,3.0223,0.1596,54.6529,3.0538,0.1961,54.6766,3.066,0.1961,54.6674,3.06,0.2271,54.6369,3.1521,0.2088,54.645,3.1353,0.2094,54.6567,3.1404,0.3552,54.6596,3.0495,0.3939,54.6307,3.0876,0.3557,54.6045,3.04,0.2674,54.6255,3.1595,0.2681,54.6252,3.1618,0.2888,54.6313,3.15,0.3188,54.6834,3.0033,0.1537,54.6887,3.0213,0.0432,54.6684,3.0615,0.0496,54.6629,3.0612,0.1632,54.6478,3.1748,0.1571,54.6426,3.1696,0.1482,54.6258,3.1931,0.0733,54.6028,3.2112,0.1054,54.6025,3.2152,0.0616,54.5717,3.2263,0.1913,54.6484,3.1718,0.1866,54.6641,3.1487,0.2235,54.6812,2.9409,0.1949,54.6829,2.9797,0.218,54.6826,2.9393,0.1911,54.6826,3.066,0.3122,54.6554,3.0874,0.3075,54.6391,3.132,0.1835,54.6516,2.9026,0.1694,54.6533,2.9153,0.1706,54.5052,3.1819,0.1123,54.5043,3.2076,0.1091,54.3905,3.1482,0.0534,54.517,3.2121,0.1394,54.6512,2.9284,0.1288,54.5952,2.9139,0.0995,53.5303,3.0316,0.1341,53.4437,2.7667,0.1839,53.4443,2.7715,0.1243,53.587,2.6699,0.1686,53.5894,2.6538,0.7691,54.071,2.6115,0.762,54.0452,2.6309,0.6857,54.7112,2.6685,0.6697,54.6909,2.7082};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=4 */
		private double[] getmand_Coord_6_877_point_4()
		{
			double[] value = {0.4067,53.6941,2.5175,0.5543,53.7244,2.8184,0.6203,53.8709,2.7274,0.2368,54.1351,2.6513,0.2379,54.0098,2.5992,0.1347,53.965,2.5773,0.4007,54.6625,2.6974,0.466,54.6952,2.6723,0.6583,54.6564,2.8707,0.6622,54.625,2.8943,0.3051,54.6947,2.8459,0.3008,54.6943,2.8774,0.3109,54.6935,2.8473,0.4986,54.658,2.9205,0.5069,54.6469,2.9576,0.3417,54.6608,2.7532,0.695,54.6771,2.7448,0.699,54.7118,2.6285,0.5291,54.6791,2.5772,0.4446,54.6781,2.852,0.474,54.6929,2.8301,0.7006,54.7057,2.6217,0.5652,54.7294,2.4635,0.5791,54.7255,2.44,0.572,54.7271,2.4666,0.5708,54.6966,2.4339,0.6115,54.7281,2.4072,0.5866,54.697,2.4123,0.6319,54.7274,2.3992,0.5558,54.544,2.9814,0.5045,54.5753,3.0519,0.5125,54.5342,3.0454,0.2043,54.3893,3.1251,0.2396,54.3855,3.1262,0.1775,54.282,3.057,0.1917,54.0101,2.9587,0.1523,54.0109,2.9752,0.6225,54.1594,2.8321,0.6345,54.2987,2.8674,0.5842,54.285,2.9029,0.3368,54.534,3.1305,0.2654,54.5732,3.181,0.7125,54.6685,2.7922,0.742,54.6597,2.7293,0.751,54.6422,2.7237,0.3663,54.4732,2.7167,0.396,54.6071,2.6779,0.4294,54.4886,2.6379,0.4692,54.6108,2.6023,0.2636,53.4513,2.7687,0.3573,53.4386,2.7449,0.2502,53.4516,2.9753,0.4577,53.8044,2.8534,0.0,53.9489,2.5963,0.0688,53.9363,2.5638,0.0624,53.9332,2.5573,0.0434,53.9547,2.572,0.0053,53.911,2.57,0.0112,53.9127,2.5634,0.0691,53.662,2.6291,0.0798,53.6642,2.6385,0.0434,53.6277,2.6462,0.1184,53.5779,2.6783,1.4319,55.2486,1.6491,1.4808,55.2074,1.5125,1.484,55.3656,1.5339,1.4044,55.1084,1.6664,1.3293,54.8487,1.741,1.3103,54.7276,1.8185,1.3373,54.8512,1.7456,1.3208,54.7155,1.783,1.3167,54.7245,1.7992,1.777,55.9648,0.374,1.4665,55.5032,1.653,1.4882,55.5361,1.5741,1.4672,55.6019,1.6656,1.5823,55.9918,1.1917,1.5978,55.9363,1.0471,1.5809,56.0243,1.2049,1.5747,56.3675,1.5354,1.5743,56.3803,1.5984,1.5482,56.4106,1.6748,1.5794,56.1953,1.3589,1.5854,56.3192,1.4382,1.5853,56.4099,1.5326,1.8537,56.3585,0.2133,1.3663,56.3467,0.0341,1.3801,56.351,0.0415,1.3637,56.4025,0.0552,1.8492,56.3512,0.2164,1.0866,54.8828,1.2987,1.0994,54.8669,1.2856,1.4865,55.0686,1.0438,1.6313,54.8917,0.5627,1.6759,55.9517,0.0243,1.7257,55.7146,0.1574,1.7098,55.5804,0.2462,1.5477,55.7203,0.9571,1.5107,56.2662,1.4902,1.4836,56.1569,1.448,1.4809,56.0476,1.3982,1.4836,55.9373,1.3432,1.4761,56.3219,1.7008,1.4805,56.424,1.7254,1.561,56.484,1.547,1.55,56.4817,1.5552,1.6307,55.8417,0.1847,1.6834,55.7068,0.2978,1.4376,55.993,1.537,1.4419,56.1153,1.5477,1.4466,55.998,1.5211,1.5083,55.9575,1.6546,1.5077,55.8605,1.6422,0.3072,54.1544,2.9394,0.3638,54.498,3.1031,0.1664,54.5491,3.1965,0.257,54.5032,3.1797,0.337,54.4993,3.1159,1.5422,54.9433,0.8232,1.5223,54.4002,0.8768,1.5341,54.4752,0.8776,1.5435,54.5212,0.8546,1.5622,54.5488,0.7942,1.5758,54.4917,0.8095,1.5487,54.8356,0.8257,1.5231,54.7846,0.9432,1.5548,54.8912,0.8982,1.5445,54.6878,0.8363,1.5336,54.9439,0.971,1.5525,54.542,0.7833,1.5633,54.5546,0.7614,1.5894,54.4989,0.7349,1.5577,54.5194,0.7886,1.5522,54.3935,1.0312,1.621,54.5944,0.7777,1.578,54.4307,0.905,1.7149,55.4565,0.4542,1.6927,55.304,0.5143,1.5725,54.4818,0.7988,1.6059,55.0179,0.6045,1.6037,54.9927,0.5939,1.6178,55.0627,0.5319,1.5654,54.9425,0.7208,1.5565,54.9429,0.7703,1.6258,55.2675,0.5907,1.051,54.6881,1.2727,0.6867,53.5252,2.4398,0.5347,53.5379,2.5255,0.597,53.6062,2.3652,0.6418,53.5657,2.4024,1.6213,55.1844,0.5808,0.0572,53.7104,2.6041,0.1077,54.311,3.0949,0.1262,54.3136,3.0904,0.1237,54.2775,3.0667,0.1369,54.2811,3.0576,0.142,54.2869,3.0392,0.1355,54.2552,3.0214,0.111,54.2098,3.0165,0.0991,54.2447,3.047,0.1061,54.2277,2.9424,0.0996,54.2716,2.9211,0.119,54.2384,2.9152,0.1242,54.2774,2.8992,0.1085,54.2771,2.9011,0.1294,54.2429,2.9103,0.1236,54.1941,3.0007,0.1338,54.1905,2.9937,0.1414,54.1834,2.9665,0.1368,54.1918,2.9427,0.143,54.1919,2.9474,0.2353,54.2305,2.9659,0.2219,54.2131,2.9367,0.2172,54.2138,2.9461,0.205,54.2585,2.8913,0.196,54.2279,2.9092,0.2242,54.2576,2.8815,0.2133,54.2596,2.8829,0.2076,54.2317,2.8964,0.2829,54.3899,3.0363,0.2725,54.4398,3.0795,0.2903,54.442,3.0619,0.2393,54.2442,2.8948,0.2556,54.282,2.895,0.2447,54.2893,2.8753,0.208,54.2081,2.9305,0.2018,54.2166,2.9091,0.2016,54.2305,2.9014,0.2993,54.4402,2.8005,0.288,54.387,2.8127,0.2979,54.3877,2.7984,0.3009,54.3265,2.7982,0.2948,54.2623,2.8162,0.2988,54.2625,2.8024,0.3505,54.2355,2.9535,0.3534,54.171,2.9398,0.2983,54.1992,2.8055,0.3176,54.0457,2.8656,0.269,54.0671,2.8231,0.2962,54.0362,2.8426,0.3214,54.0465,2.8415,0.2972,54.0379,2.8579,0.6193,54.3421,2.7867,0.6204,54.2819,2.7538,0.4995,54.3603,2.6231,0.4806,54.3595,2.6459,0.4941,54.295,2.6554,0.6173,54.2368,2.7301,0.4899,54.2935,2.6748,0.5103,54.2442,2.689,0.506,54.2454,2.6772,0.5251,54.201,2.6825,0.5227,54.202,2.6712,0.6184,54.4496,2.3782,0.6021,54.4495,2.3864,0.6109,54.3885,2.3775,0.6008,54.386,2.3925,0.6186,54.3119,2.3856,0.6808,54.2935,2.4726,0.6455,54.2973,2.454,0.6639,54.2447,2.4244,0.626,54.3027,2.4338,0.652,54.2471,2.4092,0.6356,54.317,2.3648,0.6264,54.3159,2.3712,0.6539,54.2548,2.3689,0.6837,54.2242,2.4255,0.6655,54.2559,2.3586,0.6746,54.2344,2.363,0.6885,54.2523,2.367,0.678,54.2533,2.3623,0.6821,54.2338,2.3655,0.6809,54.2258,2.3695,0.678,54.2342,2.3638,0.6754,54.22,2.4085,0.6723,54.2216,2.3985,0.3238,54.3844,2.7851,0.3504,54.3793,2.7931,0.3544,54.6536,2.8058,0.3141,54.5916,2.8164,0.3468,54.5889,2.8015,0.3064,54.5898,2.8366,0.3237,54.6571,2.8262,0.9304,54.4265,2.2636,0.926,54.3681,2.2447,0.8022,54.3807,1.9857,0.7832,54.3728,2.0097,0.8181,54.3249,1.9874,0.8585,54.3877,1.9832,0.8363,54.3858,1.9809,0.8548,54.3351,1.96,0.9516,54.3897,2.0192,0.9228,54.3382,1.9777,0.9269,54.3052,2.017,0.9126,54.3174,2.2211,0.8336,54.3091,1.983,0.8536,54.2902,1.9796,0.8598,54.2934,1.969,0.8097,54.2668,2.1704,0.8024,54.2652,2.1778,0.8299,54.2457,2.1712,0.8796,54.252,2.1775,0.8781,54.2507,2.1911,0.8411,54.2456,2.1695,0.8379,54.248,2.1677,0.7979,54.3066,2.1728,0.7552,54.3516,2.1888,0.784,54.3037,2.1791,0.8223,54.6176,1.7088,0.8054,54.6202,1.6934,0.7926,54.6641,1.7286,0.8075,54.535,1.8209,1.0884,54.5911,1.7142,1.0773,54.5865,1.7219,1.0858,54.5444,1.6926,1.0352,54.4603,1.8451,1.0336,54.4454,1.8136,1.0301,54.436,1.8313,1.0414,54.4695,1.8297,1.0,54.4225,1.849,1.0135,54.4105,1.8327,1.0022,54.4068,1.8345,0.9057,54.3935,1.7543,0.9063,54.3893,1.7636,0.9196,54.3807,1.7612,0.9919,54.3678,1.7925,0.9818,54.3679,1.7893,0.9666,54.3687,1.7845,0.9232,54.3861,1.7538,0.9369,54.3725,1.7596,1.0748,54.4111,1.654,1.0741,54.4255,1.6657,1.0878,54.4251,1.6547,0.9693,54.4167,1.6341,0.9778,54.4171,1.6473,0.9971,54.405,1.6394,0.9419,54.3693,1.7695,0.9607,54.3639,1.767,0.9387,54.3758,1.7528,0.9591,54.3688,1.7553,0.9971,54.3608,1.783,0.9538,54.3683,1.7786,0.9671,54.3617,1.7736,1.0236,54.3985,1.6301,1.0196,54.3987,1.6273,1.0567,54.3998,1.6393,1.05,54.3993,1.6388,1.0507,54.4062,1.6579,0.7968,54.6627,1.7399,0.7821,54.6415,1.8063,0.7899,54.5997,1.8091,1.0849,54.7073,1.4375,0.9231,54.6645,1.3397,1.0521,54.5602,1.4225,1.0504,54.5633,1.412,1.0465,54.5337,1.4008,1.0358,54.5235,1.4527,1.0388,54.513,1.4272,1.0318,54.5131,1.4294,1.0115,54.5362,1.3442,1.012,54.5388,1.3513,1.0171,54.5381,1.3482,0.9319,54.6353,1.414,0.9154,54.634,1.4213,0.9912,54.5586,1.3138,0.984,54.5603,1.314,0.9895,54.5527,1.3194,0.9625,54.7074,2.1035,0.9394,54.6461,2.079,0.9663,54.6483,2.098,0.9655,54.5629,2.1716,0.982,54.5651,2.1501,1.0308,54.7725,1.7084,0.9791,54.7726,1.6832,0.9831,54.7218,1.6694,1.0726,54.6402,1.7544,0.9948,54.6303,1.7563,0.9868,54.6672,1.7869,1.0569,54.6169,1.8474,1.0738,54.6589,1.8441,0.7928,54.643,1.7935,0.7776,54.6825,1.7858,1.0634,54.6159,1.8524,1.0721,54.6113,1.8707,1.0942,54.7521,1.8495,1.0972,54.7027,1.8316,1.0565,54.6931,1.8247,1.0888,54.6836,1.7844,1.0912,54.7178,1.7753,1.0824,54.6819,1.7876,1.0636,54.6752,1.7935,0.7834,54.6895,1.7509,0.7792,54.6847,1.7748,0.8855,54.6952,1.5296,0.9335,54.6154,1.5173,0.9187,54.6204,1.5047,0.7072,54.5406,2.126,0.704,54.5432,2.1047,0.6788,54.6102,2.1577,0.6897,54.6058,2.1662,0.727,54.5408,2.1383,0.6869,54.613,2.1273,0.6544,54.5762,2.3919,0.6727,54.5759,2.3996,0.6721,54.6359,2.4028,0.6511,54.6369,2.3973,0.9056,54.6898,1.5426,1.08,54.6589,1.8492,0.7833,54.6817,1.7848,1.0562,54.6918,1.8317,0.7757,54.6795,1.8015,0.6664,54.6688,2.1741,0.9794,54.646,2.1671,0.9337,54.7055,2.076,1.0395,54.5888,1.3889,1.0059,54.5216,1.3919,1.0006,54.5201,1.3956,1.0087,54.5167,1.398,1.0248,54.5238,1.4524,1.0492,54.5318,1.4077,0.8142,54.6453,1.7908,1.0658,54.4098,1.6577,0.9938,54.4056,1.6312,0.993,54.361,1.7816,0.9585,54.3674,1.7584,1.081,54.4115,1.6454,0.9769,54.3776,1.7997,0.9914,54.3781,1.8046,1.0136,54.427,1.8434,1.0753,54.5373,1.7035,0.7883,54.5949,1.8232,0.7745,54.3545,2.1828,0.9485,54.3731,2.0809,0.8341,54.2445,2.1726,0.8795,54.2514,2.1837,0.877,54.252,2.1731,0.9164,54.316,1.9714,0.9256,54.3136,1.9836,0.9383,54.3302,2.0326,0.9344,54.3905,2.0077,0.9381,54.4286,2.2426,0.3099,54.6578,2.8466,0.3275,54.4378,2.7836,0.6721,54.2266,2.4139,0.6778,54.226,2.3695,0.6899,54.2325,2.3709,0.6597,54.2552,2.3625,0.7012,54.2924,2.4738,0.5957,54.3819,2.414,0.623,54.3899,2.3688,0.494,54.2915,2.6934,0.6082,54.2363,2.7401,0.5102,54.2961,2.6425,0.6068,54.281,2.7654,0.367,54.2299,2.9621,0.2931,54.3264,2.8127,0.2916,54.4384,2.8201,0.2002,54.2156,2.9156,0.2088,54.2083,2.9283,0.2305,54.2523,2.8857,0.2678,54.3866,3.0565,0.2139,54.2297,2.8931,0.2417,54.2315,2.9504,0.2125,54.3379,3.03,0.2254,54.3006,3.0194,0.2126,54.3045,3.0111,0.2281,54.3348,3.0375,0.0921,54.2654,2.9469,0.1117,54.2449,3.05,0.1337,54.2509,3.0352,0.1083,54.2741,3.0731,0.0648,53.7133,2.6137,1.2332,54.9599,1.2344,1.133,54.8326,1.2714,1.6118,55.2419,0.6487,1.5603,54.9881,0.7598,1.5787,54.9901,0.7145,1.5493,54.3658,0.8711,1.5908,54.5128,0.8916,1.5939,54.5014,0.8407,1.5724,54.6528,0.7049,1.4688,54.4396,0.9824,0.5712,54.5477,2.9513,1.4595,56.2363,1.5827,1.4408,56.1096,1.5647,1.6982,55.7142,0.326,1.4703,55.7137,1.1672,1.471,55.7789,1.2255,1.4738,56.3259,1.6871,1.4746,56.0425,1.4093,1.4779,56.1513,1.4604,1.638,56.0319,0.3602,1.5977,55.8166,0.8444,1.6824,55.953,0.0243,1.6778,55.7013,0.2735,1.843,56.3161,0.2164,1.8147,56.1895,0.3104,1.567,56.1838,1.384,1.5514,56.3902,1.6629,1.5741,56.3098,1.4651,1.5319,54.5686,1.0963,1.341,54.4134,1.5898,1.3305,54.4331,1.6186,1.6301,54.6468,0.7474,1.6332,54.6843,0.7487,1.3974,55.112,1.6759,0.1696,53.5802,2.6625,0.355,53.4462,2.7383,0.3576,53.4383,2.7426,0.0396,53.5025,2.7394,0.0665,53.5332,2.7339,0.068,53.4673,2.7623,0.0318,53.8378,2.5729,0.1087,53.7448,2.6046,0.0718,53.7447,2.6004,0.0646,54.0956,2.6723,0.6954,53.9828,2.6117,0.731,53.9807,2.5683,0.3738,53.7661,2.9178,0.394,53.7434,2.9455,0.4131,53.6851,2.97,0.5685,54.5609,2.4052,0.6161,54.4423,2.1991,0.4141,54.6924,2.7359,0.5552,53.4739,2.57,0.3619,54.6054,2.7133,0.7533,54.5429,2.7733,0.4805,54.6868,2.7778,0.5112,54.6794,2.8134,0.1119,54.5665,3.2276,0.1652,54.5864,3.2054,0.3442,54.6391,3.1262,0.0476,54.0051,3.0018,0.6081,54.696,2.4036,0.5672,54.6949,2.4617,0.7412,54.7006,2.622,0.478,54.6645,2.8914,0.3983,54.6918,2.8175,0.665,54.6837,2.7126,0.0422,53.923,2.5557,0.3055,54.6904,2.875,0.1457,54.1134,2.6642,0.6399,53.7518,2.7328,0.3072,53.6822,2.5751,0.1011,53.4534,2.9032,0.1036,53.5951,3.0529,0.1634,54.3899,3.1344,0.3317,54.6744,3.0052,0.1679,54.657,3.1503,0.0391,54.6347,3.1406,0.3056,54.6809,2.9987,0.2882,54.63,3.1475,0.3883,54.5849,3.0639,0.1617,54.6724,3.0588,0.0793,54.6008,3.2047,0.2498,53.502,3.0416,0.3655,54.3894,3.0699,0.4384,54.3837,3.0631,0.3448,54.2751,3.0137,0.1001,54.2634,2.8005,0.7424,54.0235,2.5315,0.8147,54.2307,2.6012,0.8203,54.8204,1.4956,0.796,54.5958,1.6302,0.6452,54.7095,2.2207,0.6434,54.6197,2.1102,1.0622,54.8412,1.7065,1.0456,54.7215,2.0626,1.1401,54.4811,2.0522,0.9009,54.7,2.4164,0.7823,54.7136,2.4758,0.7476,54.7188,1.9708,0.8339,54.8259,1.5923,0.9776,54.8139,1.6869,1.0494,53.9179,2.2841,1.0265,54.9031,1.3904,0.8379,54.8449,1.4672,1.0994,54.8615,1.4304,1.479,54.3749,1.2477,1.6739,55.6247,0.4623,1.662,55.6521,0.5104,1.5732,56.4166,1.4405,1.3582,55.4595,1.3881,1.3709,55.527,1.39,1.6092,55.922,0.3548,1.5465,55.8618,1.0889,1.679,55.9942,0.6847,1.4712,56.2452,1.5569,1.6019,56.1369,0.2022,1.6169,56.1374,0.2116,1.963,56.3166,0.1838,1.9446,56.3464,0.2185,1.9166,56.3021,0.0716,1.9137,56.3431,0.0797,1.4235,56.4937,0.0731,1.962,56.2911,0.2626,1.7571,55.9169,0.4119,1.7274,55.7549,0.5275,1.5083,56.4979,1.7583,1.5392,56.5047,1.709,1.5302,56.5617,1.728,1.5587,55.6762,1.0795,1.5525,55.5691,1.109,1.7346,55.5941,0.3881,1.4368,55.3841,1.6506,1.4979,55.3306,1.0356,-0.6745,54.6083,2.1828,-1.0109,54.6828,1.5705,-0.8722,54.7724,1.4222,-0.9864,54.6956,1.6532,-0.8107,54.6776,1.7803,-0.9584,54.7005,2.2183,-0.9521,54.5681,2.2598,-1.0457,54.5171,1.4163,-1.0182,54.5228,1.3873,-0.9842,54.5541,1.321,-0.9635,54.5753,1.3936,-0.9807,54.5495,1.3387,-0.9782,54.5522,1.3465,-0.9736,54.5534,1.3399,-0.9479,54.7073,1.4453,-0.9756,54.5349,1.4056,-1.0374,54.5673,1.3592,-0.9173,54.6599,1.3658,-0.8307,54.544,1.7982,-0.9634,54.4331,1.6586,-1.0108,54.4192,1.664,-0.9954,54.4369,1.6702,-0.9861,54.4177,1.6536,-0.9681,54.3808,1.7528,-0.9774,54.3702,1.7565,-0.9487,54.3795,1.7505,-1.0209,54.3751,1.787,-0.9411,54.3762,1.7859,-1.014,54.3924,1.8193,-0.883,54.4093,1.7582,-0.8674,54.461,1.7697,-0.8535,54.4509,1.7866,-1.0403,54.4042,1.6135,-1.0454,54.4043,1.6151,-1.0505,54.4045,1.6168,-0.7835,54.3603,2.05,-0.8758,54.2955,1.9664,-0.8571,54.287,1.9945,-0.8024,54.2652,2.1778,-0.8868,54.3377,1.963,-0.9591,54.3852,2.0417,-0.4794,54.5469,2.9539,-0.7647,54.5589,2.5676,-0.6655,54.2559,2.3586,-0.6632,54.3897,2.37,-0.3883,54.5849,3.0639,-0.2953,54.1345,2.8038,-0.3494,54.0971,2.8968,-0.3613,54.0945,2.8711,-0.3464,54.1083,2.8196,-0.3362,54.2557,2.8029,-0.4232,54.285,2.9306,-0.1998,54.2119,2.9299,-0.2281,54.3348,3.0375,-0.25,54.386,3.0673,-0.2312,54.3879,3.0676,-0.2457,54.3322,3.0398,-0.2704,54.4821,2.9033,-0.1447,54.1872,2.9703,-0.1436,54.1855,2.9706,-0.1442,54.2029,2.938,-0.0994,54.2166,2.9818,-0.1331,54.2002,3.0018,-0.1324,54.2246,2.919,-0.1229,54.1889,2.9759,-0.1462,54.1926,2.978,-0.135,54.2755,2.9233,-1.6493,55.2985,0.4882,-1.661,55.3477,0.454,-1.6394,55.3041,0.5386,-0.0346,53.5684,2.6915,-1.6256,55.0763,0.5053,-1.5749,54.7686,0.6914,-1.6185,55.1673,0.5621,-1.6183,55.0773,0.5498,-1.598,54.991,0.6107,-1.5728,54.3853,0.9642,-1.5618,54.4102,0.9633,-1.5453,54.4169,1.0176,-1.5714,54.5303,0.9644,-1.5364,54.4436,1.0428,-1.5424,54.387,0.8429,-1.5748,54.6683,0.7073,-1.5438,54.8439,0.8015,-0.2032,54.5049,3.1757,-0.1924,54.5452,3.1799,-0.5834,54.5835,2.9534,-0.5536,54.0097,2.814,-1.3962,55.6849,1.4263,-1.3967,55.6783,1.4432,-1.3827,55.6161,1.4091,-1.4502,56.0058,1.5,-1.4392,55.8894,1.4487,-1.4266,55.8717,1.5017,-1.3971,55.5639,1.535,-1.4458,55.9646,1.6194,-1.4334,55.8356,1.6084,-1.6759,55.9517,0.0243,-1.5115,56.3805,0.0717,-1.5227,56.3098,1.6912,-1.5848,56.3999,1.6034,-1.5743,56.3803,1.5984,-1.6404,55.8905,0.7985,-1.6777,55.9234,0.6493,-1.484,55.3656,1.5339,-1.4863,55.1894,1.4842,-1.1652,54.0287,2.0873,-0.4058,53.6114,2.5238,-0.4079,53.6062,2.5288,-0.4983,53.6071,2.4508,-0.2623,53.451,2.7689,-0.6872,54.0466,2.5804,-0.2281,53.863,2.9269,-0.2867,53.4481,2.9535,-0.3916,53.5001,2.9508,-0.5467,54.683,2.4646,-0.3297,54.6031,2.7496,-0.762,54.0452,2.6309,-0.7166,54.5287,2.8466,-0.362,54.5625,3.1344,-0.4771,54.149,2.8965,-0.5801,54.7264,2.5437,-0.463,54.6876,2.7427,-0.0422,53.923,2.5557,-0.0624,53.9332,2.5573,-0.5496,54.6727,2.8399,-0.4646,54.621,2.8878,-0.3119,54.0274,2.5641,-0.6583,54.6564,2.8707,-0.7593,54.2152,2.6715,-0.5019,53.9452,2.3901,-0.1718,54.2665,2.7837,-0.1692,53.666,2.6283,-0.0846,54.6489,2.9451,-0.2224,54.6516,2.88,-0.3126,54.6878,2.9373,-0.4615,54.5856,3.062,-0.3925,54.6321,3.0951,-0.2445,54.6317,3.1654,-0.1815,54.6845,3.064,-0.1682,54.6792,3.059,-0.1767,54.6901,3.0249,-0.0608,54.6175,3.1944,-0.314,54.6726,3.0402,-0.1247,54.6762,2.984,-0.0733,54.6028,3.2112,-0.4074,54.2732,2.9998,-0.8591,54.7913,1.3778,-0.8886,54.7381,1.3359,-1.124,54.86,1.6524,-0.7521,54.7731,1.7671,-0.747,54.7662,1.7901,-0.7424,54.7034,1.7601,-0.6552,54.4652,2.0775,-1.0872,54.7391,1.9443,-1.0424,54.7142,2.0868,-1.0725,54.589,2.1206,-1.0603,54.6827,2.065,-0.9942,54.2362,2.3198,-1.0712,54.3152,2.2,-1.0047,54.2034,2.3022,-1.2034,54.2209,2.0161,-1.1781,54.2475,2.0789,-0.6031,54.5948,2.2515,-0.8456,54.843,1.3974,-0.8322,54.8699,1.4306,-0.8389,54.8719,1.4345,-0.8339,54.8652,1.4665,-0.7659,54.8012,1.7722,-1.098,54.7965,1.8634,-0.6544,54.7138,2.2651,-0.7266,54.7421,2.3882,-0.6933,54.7266,2.3144,-0.7909,54.6733,2.3398,-1.1112,54.9067,1.4316,-1.1226,54.8497,1.5171,-1.0246,54.8153,1.4872,-1.1214,54.844,1.5205,-1.0654,54.8233,1.6065,-0.9448,54.6969,2.2532,-0.9044,54.8214,1.6704,-1.2107,53.9167,1.7184,-1.3888,55.1123,1.6667,-0.7689,54.6487,2.6911,-1.4909,54.988,1.3109,-1.5463,54.5545,1.0492,-1.3792,54.5412,1.1638,-1.5489,55.7865,1.0162,-1.5317,55.7696,1.0508,-1.5797,56.0185,1.0349,-1.4443,55.6001,1.1359,-1.65,55.2853,0.467,-1.7781,55.9409,0.1132,-1.8127,55.9524,0.1674,-1.7005,55.3011,0.4887,-1.6663,56.0017,0.6752,-1.6637,55.7599,0.6815,-1.3543,56.3325,-0.012,-1.5904,56.5108,0.1156,-1.6959,56.5104,0.0937,-1.5345,56.1121,0.0606,-1.5132,55.8556,1.5992,-1.5253,55.9355,1.5453,-1.5021,55.5221,1.2533,-1.5897,56.4956,1.5137,-1.5133,56.0449,1.6209,-1.3582,55.4595,1.3881,-1.4567,55.643,1.1394,-1.3745,55.5901,1.2538,-1.5487,54.8356,0.8257,-1.6194,54.6888,0.7692,-1.5314,54.6163,0.8768,-1.6332,54.6843,0.7487,-1.4434,55.7063,1.6824,-1.3381,56.3893,-0.0103,-1.5108,56.5653,1.7196,-1.7346,55.5941,0.3881,-1.5833,55.6345,1.0074,-1.5525,55.5691,1.109,-1.5587,55.6762,1.0795,-1.5302,56.5617,1.728,-1.5392,56.5047,1.709,-1.5083,56.4979,1.7583,-1.6735,55.5939,0.3681,-1.6228,55.6334,0.8815,-1.6077,55.4987,0.9563,-1.962,56.2911,0.2626,-1.6767,56.2825,-0.1308,-1.7157,56.5161,0.0465,-1.9599,56.2511,0.1749,-1.8487,55.9641,0.2274,-1.6594,55.62,0.7149,-1.4811,56.358,1.5895,-1.5754,56.5096,1.6363,-1.5553,55.0335,0.8147,-1.6198,55.9697,0.4246,-1.662,55.6521,0.5104,-1.6739,55.6247,0.4623,-0.8105,54.091,2.5546,-1.1495,54.8159,1.2659,-1.2304,54.8953,1.4991,-0.9737,54.7067,2.1406,-1.0696,54.7677,1.7533,-1.0994,54.8615,1.4304,-1.0265,54.9031,1.3904,-0.6473,54.7093,2.1762,-0.8818,54.5887,2.5455,-0.9789,54.8223,1.6819,-1.0622,54.8412,1.7065,-1.1488,53.8906,1.6954,-0.8681,54.8487,1.5766,-0.9296,54.5099,1.3967,-0.7421,54.7399,1.8727,-0.8405,54.7718,1.418,-0.1917,54.0101,2.9587,-0.1036,54.6036,3.2097,-0.1596,54.6529,3.0538,-0.1961,54.6674,3.06,-0.2088,54.645,3.1353,-0.4985,54.6091,2.9979,-0.1288,54.5952,2.9139,-0.0432,54.6684,3.0615,-0.0391,54.6347,3.1406,-0.3075,54.6391,3.132,-0.1036,53.5951,3.0529,-0.1011,53.4534,2.9032,-0.3153,54.1648,2.6101,-0.3072,53.6822,2.5751,-0.5543,53.7244,2.8184,-0.2379,54.0098,2.5992,-0.3417,54.6608,2.7532,-0.695,54.6771,2.7448,-0.7006,54.7057,2.6217,-0.5791,54.7255,2.44,-0.5919,54.7255,2.4203,-0.1523,54.0109,2.9752,-0.0476,54.0051,3.0018,-0.6345,54.2987,2.8674,-0.396,54.6071,2.6779,-0.6161,54.4423,2.1991,-0.2502,53.4516,2.9753,-0.4577,53.8044,2.8534,-0.0112,53.9127,2.5634,-1.6301,54.6468,0.7474,-1.3305,54.4331,1.6186,-1.341,54.4134,1.5898,-1.768,55.8413,0.4017,-1.5319,54.5686,1.0963,-1.5794,56.1953,1.3589,-1.5854,56.3192,1.4382,-1.6834,55.7068,0.2978,-1.6778,55.7013,0.2735,-1.638,56.0319,0.3602,-1.4836,56.1569,1.448,-1.4809,56.0476,1.3982,-1.4738,56.3259,1.6871,-1.55,56.4817,1.5552,-1.4376,55.993,1.537,-1.4595,56.2363,1.5827,-0.3072,54.1544,2.9394,-1.5231,54.7846,0.9432,-1.5445,54.6878,0.8363,-1.5522,54.3935,1.0312,-1.6927,55.304,0.5143,-1.6037,54.9927,0.5939,-1.6178,55.0627,0.5319,-0.1243,53.587,2.6699,-0.0572,53.7104,2.6041,-0.1077,54.311,3.0949,-0.0991,54.2447,3.047,-0.1085,54.2771,2.9011,-0.143,54.1919,2.9474,-0.2126,54.3045,3.0111,-0.2125,54.3379,3.03,-0.2254,54.3006,3.0194,-0.2353,54.2305,2.9659,-0.2242,54.2576,2.8815,-0.2829,54.3899,3.0363,-0.2556,54.282,2.895,-0.2002,54.2156,2.9156,-0.2993,54.4402,2.8005,-0.3009,54.3265,2.7982,-0.3505,54.2355,2.9535,-0.2983,54.1992,2.8055,-0.2972,54.0379,2.8579,-0.4995,54.3603,2.6231,-0.6173,54.2368,2.7301,-0.5103,54.2442,2.689,-0.6184,54.4496,2.3782,-0.6175,54.3087,2.4014,-0.6539,54.2548,2.3689,-0.7047,54.2227,2.4205,-0.6899,54.2325,2.3709,-0.6778,54.226,2.3695,-0.6721,54.2266,2.4139,-0.6921,54.217,2.4202,-0.6971,54.2171,2.4173,-0.3585,54.4319,2.787,-0.3064,54.5898,2.8366,-0.9289,54.3707,2.2264,-0.8181,54.3249,1.9874,-0.8585,54.3877,1.9832,-0.9344,54.3905,2.0077,-0.8984,54.276,2.1914,-0.9256,54.3136,1.9836,-0.8654,54.2528,2.166,-0.9303,54.3708,2.0866,-0.8332,54.518,1.8569,-1.0352,54.4603,1.8451,-1.0,54.4225,1.849,-0.9063,54.3893,1.7636,-1.081,54.4115,1.6454,-0.993,54.361,1.7816,-0.9938,54.4056,1.6312,-1.05,54.3993,1.6388,-1.0521,54.5602,1.4225,-1.0248,54.5238,1.4524,-1.0087,54.5167,1.398,-1.0059,54.5216,1.3919,-1.0513,54.6233,1.4319,-0.9625,54.7074,2.1035,-0.9655,54.5629,2.1716,-0.6664,54.6688,2.1741,-0.7757,54.6795,1.8015,-1.0942,54.7521,1.8495,-1.0565,54.6931,1.8247,-1.0912,54.7178,1.7753,-0.7834,54.6895,1.7509,-0.6721,54.6359,2.4028,-0.6727,54.5759,2.3996,-0.6511,54.6369,2.3973,-0.6544,54.5762,2.3919,-0.727,54.5408,2.1383,1.6627,55.1035,0.5084,1.3745,55.5901,1.2538,1.4567,55.643,1.1394,1.5687,56.5005,1.5079,1.6591,55.1033,0.7164,1.6202,56.5374,0.0177,1.6073,56.5132,-0.0438,1.5455,56.5466,0.0014,1.9108,56.3957,0.1126,1.7542,56.3377,0.162,1.795,56.4754,0.1358,1.471,56.1791,-0.0484,1.6436,56.206,0.147,1.6655,55.9017,0.6477,1.6369,55.9909,0.7929,1.4723,56.4154,1.7588,1.3573,55.5408,1.2733,1.369,55.5843,1.2752,1.5494,56.3055,1.4079,1.4705,55.019,1.4177,0.8155,54.0175,2.5773,1.0004,53.7512,1.9273,1.466,54.4209,1.2901,0.9044,54.8214,1.6704,1.0232,54.8231,1.6042,1.0253,54.8347,1.4936,1.1665,54.8718,1.6218,1.1221,54.8716,1.5666,1.1111,54.8653,1.589,1.1318,54.879,1.5253,1.1305,54.8859,1.5019,0.9067,54.8488,1.5968,0.7404,54.7554,1.8263,0.7491,54.7419,2.3427,0.671,54.6616,2.2892,0.7266,54.7421,2.3882,0.7665,54.7459,2.0468,0.9594,54.7605,2.1056,0.9299,54.7668,2.0726,0.774,54.8013,1.7731,1.0646,54.8997,1.407,0.903,54.8858,1.3813,0.7485,54.7187,1.9593,1.1781,54.2475,2.0789,1.2034,54.2209,2.0161,1.0047,54.2034,2.3022,1.0712,54.3152,2.2,0.9942,54.2362,2.3198,1.0603,54.6827,2.065,0.7424,54.7034,1.7601,0.747,54.7662,1.7901,0.7521,54.7731,1.7671,0.8229,54.7854,1.5985,1.124,54.86,1.6524,0.8192,54.8564,1.5444,0.1516,54.6436,3.0089,0.0873,54.6756,2.9871,0.1711,54.669,3.105,0.184,54.6749,3.1093,0.2202,54.6483,3.1602,0.464,54.5844,3.0651};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=5 */
		private double[] getmand_Coord_6_877_point_5()
		{
			double[] value = {0.4236,54.5945,3.0879,0.325,54.6769,3.029,0.1693,54.5962,2.8912,0.1239,53.5238,2.7306,0.3766,53.905,2.5061,0.4553,53.4604,2.6543,0.5047,53.4847,2.7252,0.2331,53.8778,2.5874,0.4803,54.6112,2.9278,0.5496,54.6727,2.8399,0.3594,54.69,2.8063,0.4681,54.6811,2.7393,0.6231,54.6575,2.863,0.2835,54.2769,3.0306,0.2286,54.6182,3.1847,0.1945,54.6239,3.1918,0.3133,54.6122,3.1563,0.4653,53.5021,2.8979,0.6779,54.0042,2.6199,0.2616,53.4585,2.7623,1.1652,54.0287,2.0873,1.4863,55.1894,1.4842,1.6777,55.9234,0.6493,1.6404,55.8905,0.7985,1.5227,56.3098,1.6912,1.4326,55.8392,1.5949,1.4451,55.961,1.6334,1.4354,55.8766,1.4857,1.4352,55.8968,1.4316,1.4462,56.0132,1.4827,0.5863,54.3988,2.9268,0.1034,54.0075,2.9902,0.0983,54.1533,2.9947,1.5196,54.8769,1.0012,1.5614,54.3838,0.8327,1.669,55.1015,0.5762,1.61,54.6212,0.7895,1.6872,55.4667,0.376,0.6562,54.1154,2.0794,0.7082,54.1776,1.9757,0.7184,54.1565,1.9729,0.1257,54.1879,2.9852,0.1289,54.216,3.0173,0.1151,54.1938,2.9806,0.1451,54.1958,2.9447,0.1447,54.1872,2.9703,0.2481,54.4904,2.8831,0.2312,54.3879,3.0676,0.2457,54.3322,3.0398,0.25,54.386,3.0673,0.1998,54.2119,2.9299,0.4583,54.3937,2.9565,0.3289,54.1937,2.8026,0.3147,54.1256,2.802,0.3033,54.1315,2.8,0.3283,54.1177,2.8115,0.3041,54.0588,2.8744,0.2931,54.1354,2.8164,0.2755,54.0581,2.8208,0.6492,54.3481,2.7025,0.6484,54.3908,2.3646,0.6509,54.2498,2.3852,0.6713,54.2333,2.3682,0.7517,54.5585,2.5747,0.8908,54.3643,2.0873,0.9101,54.3045,2.029,0.8862,54.3012,2.0291,0.8868,54.3377,1.963,0.8322,54.3015,2.0111,0.8758,54.2955,1.9664,0.814,54.3176,2.024,0.8438,54.5731,1.9064,0.9763,54.4733,1.8866,1.0009,54.4459,1.8681,0.9805,54.4441,1.8647,0.9996,54.4754,1.8863,0.8318,54.4855,1.8018,1.0902,54.4446,1.6607,1.014,54.3924,1.8193,0.9411,54.3762,1.7859,1.0247,54.3916,1.7926,1.0209,54.3751,1.787,0.9774,54.3702,1.7565,0.8307,54.544,1.7982,0.9345,54.6674,1.318,1.0828,54.7155,1.393,1.0528,54.6119,1.5056,1.0344,54.5648,1.3668,1.0432,54.5241,1.4464,0.9714,54.5568,1.3344,0.9782,54.5522,1.3465,0.9807,54.5495,1.3387,0.9855,54.5405,1.3871,1.0436,54.5135,1.4221,0.9521,54.5681,2.2598,0.8097,54.6763,1.7872,0.7745,54.734,1.7924,0.8734,54.7762,1.4042,1.01,54.609,1.5452,0.7221,54.5443,2.1923,0.676,54.6026,2.2857,0.6855,54.5364,2.2537,0.6732,54.6042,2.2519,0.6889,54.5351,2.2842,0.8453,54.6197,2.3452,0.8067,54.5461,2.3307,0.7974,54.6145,2.3339,0.8529,54.5509,2.3421,0.6986,54.6043,2.3032,0.9004,54.6266,2.3411,0.6551,54.4967,2.3815,0.6694,54.4963,2.3879,0.6163,54.5777,2.3945,0.6299,54.6385,2.3923,0.6098,54.6387,2.4,0.6349,54.5773,2.3872,0.7767,54.5674,2.4827,0.7976,54.6179,2.5198,0.7839,54.6212,2.489,0.7895,54.5652,2.5126,0.6927,54.6334,2.4175,0.691,54.5745,2.4134,0.8004,54.6689,2.5687,0.8063,54.6715,2.5276,0.7919,54.6154,2.5592,0.7428,54.6817,2.4546,0.6982,54.6874,2.4246,0.7364,54.6278,2.4497,0.6295,54.6949,2.395,0.7142,54.4756,2.2001,0.7389,54.478,2.1972,0.7644,54.3475,2.2629,0.7783,54.3002,2.2296,0.7494,54.3464,2.2512,0.7896,54.301,2.2393,0.7208,54.4017,2.2456,0.747,54.3483,2.2025,0.7218,54.4041,2.2159,0.7458,54.3462,2.2285,0.822,54.4109,2.3077,0.8021,54.3512,2.2774,0.7902,54.4074,2.3007,0.8302,54.3543,2.2836,0.7037,54.4674,2.2842,0.701,54.4687,2.2562,0.7249,54.4013,2.2711,0.8582,54.4148,2.3163,0.812,54.4779,2.3257,0.8546,54.4824,2.3356,0.6994,54.4704,2.2235,0.7609,54.4405,2.4522,0.7376,54.3768,2.415,0.7506,54.3734,2.4311,0.7459,54.4427,2.4325,0.651,54.4516,2.3753,0.6668,54.451,2.3828,0.7257,54.492,2.4253,0.7203,54.445,2.4167,0.7515,54.4895,2.4441,0.6371,54.4973,2.3784,0.6339,54.4525,2.3718,0.6881,54.4959,2.3998,0.7318,54.5713,2.443,0.8894,54.7184,1.4054,0.8876,54.771,1.4358,0.9056,54.7162,1.4207,0.8805,54.7714,1.4572,0.9373,54.8167,1.4746,0.9419,54.7691,1.4633,1.0245,54.7631,1.4692,0.9523,54.7097,1.4369,0.9467,54.7654,1.4551,1.019,54.7064,1.4483,0.8742,54.7068,1.4721,0.913,54.6299,1.4483,0.8792,54.711,1.4484,0.9306,54.6874,1.5505,0.9516,54.6134,1.5252,0.9251,54.7843,1.3523,0.9328,54.7282,1.3327,0.9087,54.784,1.3572,1.0853,54.7773,1.393,1.0994,54.774,1.4156,1.0722,54.7188,1.3717,0.96,54.7263,1.3294,0.9905,54.78,1.354,0.9572,54.7831,1.3503,0.9883,54.7231,1.3321,0.9479,54.7073,1.4453,1.0211,54.7664,1.4778,1.0145,54.7015,1.4567,0.8923,54.7489,1.5535,0.8683,54.7533,1.5407,1.0211,54.8347,1.3833,1.0527,54.7777,1.3707,1.0571,54.8335,1.395,1.0208,54.779,1.3598,0.91,54.8371,1.3712,0.8908,54.836,1.3751,1.1059,54.7661,1.4505,1.1173,54.823,1.4759,1.1029,54.7605,1.4621,0.9148,54.7958,1.571,0.8814,54.7967,1.5622,0.922,54.7473,1.5617,1.0519,54.7439,1.5849,1.0165,54.744,1.5831,1.1095,54.8079,1.5466,1.0981,54.7608,1.5167,1.0955,54.7569,1.5355,1.1121,54.8118,1.5281,0.8545,54.7643,1.4855,0.8397,54.8035,1.5297,0.8554,54.7569,1.5217,0.839,54.8109,1.4915,0.9195,54.69,1.6407,0.9488,54.72,1.6632,0.9145,54.7182,1.6571,0.953,54.6927,1.6468,0.8006,54.6702,1.6957,0.7887,54.6954,1.7216,0.8962,54.6784,1.7946,0.901,54.6645,1.7696,0.832,54.6616,1.9268,0.7971,54.6299,1.8782,0.7903,54.6657,1.8835,0.8372,54.626,1.9192,1.0682,54.6498,1.9027,1.0418,54.6777,1.9414,1.073,54.6865,1.9084,1.0384,54.6415,1.9343,0.8977,54.6532,1.8016,0.9808,54.6819,1.8168,0.8955,54.677,1.8013,0.9101,54.6229,1.7342,0.896,54.6777,1.798,0.8323,54.5833,1.6476,0.8346,54.639,1.6377,0.8074,54.6288,1.6698,0.8571,54.592,1.6209,0.9814,54.6826,1.8134,0.9575,54.6655,1.63,0.9898,54.6675,1.6386,0.8273,54.6769,1.6577,0.7719,54.7299,1.8137,1.0691,54.7369,1.9202,1.0861,54.7446,1.8865,1.074,54.7266,1.7338,0.8646,54.714,1.6569,0.8165,54.7571,1.688,0.8202,54.7067,1.6753,0.8608,54.7644,1.67,0.7865,54.7161,1.8954,0.7731,54.6753,1.8229,0.7693,54.7257,1.8351,0.9768,54.6682,1.9613,1.0147,54.6717,1.961,0.9517,54.635,2.2161,0.9272,54.5696,2.2267,0.7741,54.6025,2.1829,0.8721,54.5611,2.2073,0.8702,54.6133,2.1976,0.7792,54.5511,2.1916,0.8573,54.6382,2.0483,0.827,54.5701,2.0262,0.8633,54.5726,2.0347,0.8196,54.6342,2.0396,0.7128,54.5507,2.0649,0.6977,54.6166,2.0863,0.9801,54.5711,2.1144,0.9775,54.6476,2.1351,0.9038,54.5755,2.043,0.8996,54.6427,2.0563,0.8507,54.6967,2.0541,0.813,54.6927,2.0455,0.9411,54.6353,2.2752,0.9344,54.6327,2.3059,0.9728,54.7048,2.1728,0.9737,54.7067,2.1406,1.0248,54.5133,1.4291,1.0222,54.5126,1.4182,1.0178,54.5139,1.4261,1.0265,54.5122,1.42,1.0408,54.5148,1.4032,1.0467,54.5194,1.4041,1.0275,54.565,1.3721,1.0018,54.5162,1.4154,1.008,54.5153,1.4061,0.999,54.5178,1.4079,1.0096,54.5144,1.4104,0.9795,54.5516,1.3335,0.9945,54.5506,1.32,0.9976,54.5561,1.3152,1.0142,54.5468,1.3258,1.0098,54.5406,1.3329,1.0169,54.5433,1.333,1.0078,54.5432,1.3275,1.0016,54.5419,1.3535,0.9893,54.5448,1.3436,0.9877,54.5474,1.3517,1.0012,54.5397,1.3456,0.9365,54.5981,1.3601,0.9282,54.655,1.3959,0.9448,54.5966,1.3696,0.9185,54.6562,1.3846,0.9027,54.7124,1.4412,0.9642,54.6295,1.4114,1.0172,54.5678,1.3949,1.0513,54.6233,1.4319,1.0113,54.6243,1.4184,1.0451,54.5651,1.4056,1.0113,54.5881,1.3902,0.9685,54.6487,1.4118,1.0203,54.6457,1.4229,0.9702,54.5889,1.3808,1.0053,54.5617,1.3713,1.0047,54.5759,1.3147,1.008,54.5511,1.3193,1.0162,54.574,1.3201,1.0031,54.5538,1.3168,0.9708,54.5788,1.3099,0.9654,54.5787,1.3124,1.0183,54.5389,1.3447,0.9862,54.5275,1.4386,0.9787,54.5298,1.4322,1.0073,54.5151,1.4208,1.0142,54.5242,1.4516,1.0466,54.5183,1.41,1.0494,54.5293,1.4194,0.9534,54.5613,1.4643,0.9745,54.5316,1.4223,0.9484,54.5634,1.4502,0.9986,54.5535,1.491,1.0046,54.5249,1.4476,0.9863,54.5544,1.4853,1.0528,54.5561,1.4393,1.0284,54.5723,1.3312,1.0444,54.594,1.3522,1.0359,54.5972,1.3356,1.0343,54.5699,1.3429,0.982,54.5786,1.3094,0.9882,54.6039,1.3084,0.9722,54.6062,1.3054,0.9939,54.5771,1.3117,0.9583,54.5768,1.3234,0.9458,54.6064,1.3155,0.9403,54.6048,1.3261,0.9624,54.5782,1.316,1.0271,54.6571,1.3318,1.0443,54.6556,1.3482,1.0188,54.5996,1.3199,0.9569,54.6069,1.3065,0.964,54.6659,1.3114,0.9441,54.6671,1.313,0.9356,54.6012,1.3454,0.9512,54.5686,1.4211,0.9628,54.5578,1.4732,0.9744,54.5564,1.4785,1.0264,54.5522,1.4913,1.0122,54.5527,1.4914,1.0056,54.6599,1.3211,1.0142,54.7218,1.3367,0.9856,54.6621,1.3154,1.0574,54.6142,1.4792,1.0717,54.6885,1.5388,1.0781,54.692,1.516,1.077,54.7464,1.574,1.0882,54.7527,1.554,1.0405,54.514,1.408,1.0312,54.5166,1.3946,1.0358,54.5119,1.4203,1.0315,54.512,1.4203,1.0195,54.5172,1.3935,1.0169,54.5133,1.4152,1.0123,54.5139,1.4131,1.0079,54.5164,1.3997,1.0167,54.4114,1.7805,1.0233,54.4302,1.792,1.0167,54.4322,1.7859,1.047,54.5547,1.8454,1.0298,54.5122,1.8221,1.0366,54.5093,1.8274,1.04,54.5566,1.8397,1.0709,54.4809,1.688,1.0635,54.5004,1.6966,1.0713,54.5017,1.6933,1.063,54.4798,1.6912,1.062,54.4006,1.6384,0.9398,54.4477,1.661,0.9556,54.4315,1.6519,0.9305,54.4464,1.6543,0.9634,54.4331,1.6586,0.8723,54.5264,1.6685,0.8531,54.5748,1.6897,0.8814,54.5259,1.674,0.844,54.5751,1.685,1.0688,54.5847,1.7247,1.0104,54.5331,1.7046,1.0022,54.5809,1.729,1.0674,54.5362,1.7067,1.0685,54.4605,1.6864,1.0383,54.4394,1.6772,1.032,54.4561,1.6845,1.0662,54.4415,1.6773,1.0243,54.4055,1.6512,1.0292,54.3985,1.6328,1.004,54.4058,1.646,1.0364,54.3987,1.6352,0.9677,54.4715,1.6803,0.9216,54.4651,1.6656,0.9802,54.4525,1.6748,0.923,54.5792,1.7115,0.9878,54.4107,1.7656,0.9845,54.4308,1.7697,0.9734,54.5601,1.8172,0.9761,54.5124,1.801,0.9134,54.5078,1.7864,0.8521,54.4958,1.7834,0.9216,54.4723,1.7711,0.9364,54.3912,1.7512,0.9531,54.4071,1.7532,0.9221,54.4,1.7531,0.9599,54.394,1.7526,1.0257,54.4022,1.6154,1.0138,54.4148,1.6011,1.0025,54.4119,1.6071,1.0326,54.4035,1.613,1.0516,54.4172,1.6077,1.0579,54.4041,1.6217,1.0666,54.4163,1.6165,1.0505,54.4045,1.6168,0.9865,54.3612,1.7795,1.0672,54.431,1.6181,1.0478,54.4321,1.6043,1.0011,54.4296,1.5965,0.9835,54.4253,1.6034,1.0455,54.4206,1.6693,1.0108,54.4192,1.664,0.9261,54.3772,1.7743,1.0243,54.3849,1.8045,0.9954,54.4369,1.6702,1.0647,54.4509,1.6159,1.0406,54.4524,1.6007,0.9821,54.4465,1.5898,0.9604,54.4415,1.6022,0.9903,54.3889,1.8148,0.9743,54.3881,1.8088,0.9437,54.4322,1.6356,0.9219,54.4504,1.6204,0.9182,54.4471,1.6373,0.9458,54.435,1.6213,1.0624,54.4702,1.6168,1.0325,54.4734,1.599,0.9857,54.4052,1.8295,1.0293,54.4268,1.8049,0.8967,54.3988,1.7875,0.9139,54.3844,1.7789,0.8854,54.4046,1.7685,0.9689,54.4037,1.823,0.9375,54.4576,1.5995,0.949,54.4863,1.5884,0.9212,54.4784,1.6014,0.9628,54.4652,1.5871,1.0228,54.4753,1.6883,1.0558,54.4901,1.6159,1.0235,54.493,1.5988,0.9834,54.421,1.8429,1.0275,54.45,1.7989,1.075,54.4854,1.6467,1.0829,54.5056,1.6797,1.0745,54.5114,1.6508,1.0847,54.4837,1.672,0.9811,54.491,1.5887,0.9923,54.519,1.5941,0.9692,54.5175,1.5903,1.0028,54.4915,1.5927,0.8834,54.4897,1.6484,0.9054,54.4708,1.6233,0.8854,54.4956,1.6281,0.9005,54.4663,1.6432,0.8722,54.423,1.7759,0.957,54.4419,1.8583,0.9311,54.4154,1.8283,0.9212,54.4364,1.8479,0.9616,54.4187,1.837,1.0169,54.4509,1.8589,0.9574,54.4935,1.6848,0.9424,54.5308,1.6907,1.0175,54.4971,1.6953,1.0148,54.5204,1.5986,1.0445,54.5565,1.6225,1.0059,54.5588,1.6015,1.0493,54.5177,1.6169,0.905,54.5043,1.604,0.917,54.5534,1.5918,0.8822,54.5461,1.6068,0.9354,54.5124,1.589,0.9774,54.4775,1.7848,0.9469,54.4718,1.8826,0.908,54.4671,1.8733,1.0182,54.4818,1.8775,1.0381,54.4925,1.8599,0.8619,54.5343,1.6314,0.8282,54.5772,1.6732,0.8587,54.5285,1.6547,1.074,54.5494,1.6586,1.0743,54.5975,1.6772,0.9552,54.5568,1.592,0.9676,54.6061,1.6098,0.9385,54.6047,1.6047,0.9808,54.5578,1.5967,1.0489,54.5395,1.8817,1.0465,54.5016,1.8452,1.0566,54.5471,1.863,0.8079,54.5393,1.8076,0.9445,54.5111,1.9064,0.8981,54.5068,1.8968,1.0783,54.6621,1.7021,0.9761,54.5139,1.91,0.9428,54.5772,1.9327,0.9761,54.5795,1.9384,1.061,54.6042,1.8953,1.0102,54.5833,1.9398,0.9763,54.6328,1.9527,1.0124,54.6359,1.953,0.8937,54.2893,1.9958,0.8904,54.2894,2.0043,0.8964,54.29,1.9996,0.8885,54.2881,1.9985,0.8878,54.2768,2.1729,0.9021,54.3211,2.1857,0.8204,54.2683,2.1648,0.8418,54.2991,2.0176,0.8616,54.2866,1.9985,0.8658,54.2865,2.0019,0.8642,54.2862,1.9949,0.8678,54.286,1.9977,0.8813,54.2934,1.9701,0.8817,54.2961,1.9666,0.8759,54.2929,1.9698,0.8576,54.2885,1.9806,0.8626,54.291,1.9719,0.8983,54.2917,1.9867,0.9016,54.2914,1.995,0.9027,54.2934,1.9871,0.8976,54.2905,1.9922,0.8319,54.2439,2.1802,0.8276,54.245,2.18,0.8431,54.2459,2.1976,0.835,54.2438,2.1892,0.8324,54.2447,2.1928,0.8445,54.2448,2.1933,0.8756,54.2493,2.1827,0.8744,54.2488,2.1889,0.8472,54.2502,2.1635,0.865,54.2487,2.1689,0.8654,54.2528,2.166,0.8483,54.2467,2.1665,0.9417,54.4998,2.238,0.9218,54.4981,2.225,0.8283,54.3108,2.1659,0.8697,54.2742,2.1634,0.8768,54.3165,2.1732,0.8398,54.2706,2.1577,0.8748,54.4918,2.2084,0.7891,54.4824,2.195,0.8434,54.3148,2.0464,0.8279,54.3562,2.0769,0.8542,54.2976,2.0254,0.786,54.5436,2.1581,0.7447,54.489,2.1192,0.7972,54.4918,2.1365,0.882,54.2724,2.2311,0.8709,54.2491,2.2002,0.8724,54.2528,2.1689,0.8118,54.2627,2.2151,0.8282,54.2444,2.1888,0.804,54.2621,2.2077,0.9008,54.2954,1.9779,0.9284,54.3089,1.9997,0.8635,54.309,2.2617,0.8914,54.3127,2.2587,0.8637,54.2685,2.2314,0.8034,54.2621,2.1932,0.7754,54.2998,2.2105,0.8109,54.3196,2.0125,0.8622,54.3578,2.2911,0.8989,54.3624,2.2885,0.9604,54.3767,2.0697,0.8823,54.3891,1.9886,0.7772,54.365,2.0348,0.8998,54.42,2.3132,0.7534,54.4136,2.0773,0.7484,54.4156,2.0581,0.9733,54.4379,2.0679,0.9636,54.4427,2.0435,0.8787,54.4399,2.0051,0.8493,54.4379,1.9983,0.9036,54.4884,2.3329,0.948,54.498,2.2561,0.9323,54.4308,2.2253,0.757,54.4214,2.0285,0.754,54.5013,2.0164,0.728,54.4931,2.048,0.78,54.43,2.0019,0.9753,54.4301,2.097,0.9676,54.5089,2.1478,0.9828,54.5117,2.1292,0.961,54.428,2.1133,0.9104,54.5167,2.0254,0.9426,54.4428,2.029,0.9469,54.5172,2.0449,0.9115,54.4423,2.0115,0.9335,54.4936,2.3043,0.9058,54.5573,2.3399,0.9376,54.5628,2.309,0.8057,54.5086,2.0067,0.7935,54.5671,2.0223,0.8375,54.5115,2.01,0.7203,54.4911,2.0881,0.7246,54.489,2.1053,0.9726,54.5166,2.0644,0.9684,54.5756,2.0815,0.9821,54.5128,2.0935,0.4808,54.6425,2.7641,0.4695,54.5808,2.7235,0.4648,54.6459,2.7318,0.4845,54.5776,2.7538,0.5516,54.57,2.8137,0.5131,54.4977,2.7734,0.5125,54.5737,2.7866,0.5503,54.4941,2.7992,0.4629,54.5838,2.6919,0.4717,54.5093,2.6573,0.4688,54.586,2.6642,0.466,54.5072,2.6836,0.5105,54.6384,2.799,0.3058,54.5131,2.8034,0.298,54.5114,2.823,0.3377,54.5105,2.7888,0.3716,54.5845,2.8068,0.362,54.5062,2.7941,0.3059,54.6536,2.8725,0.3031,54.5867,2.8608,0.4755,54.3576,2.6692,0.548,54.3456,2.7709,0.5239,54.2875,2.7323,0.515,54.3488,2.7481,0.5498,54.2847,2.7508,0.5147,54.4135,2.7586,0.4915,54.352,2.7205,0.4901,54.4169,2.7298,0.4984,54.4256,2.6277,0.4956,54.5107,2.6322,0.4762,54.4243,2.6509,0.4866,54.5013,2.7424,0.4157,54.3627,2.8399,0.4519,54.4041,2.8925,0.4296,54.4147,2.8444,0.4367,54.353,2.8853,0.4616,54.4749,2.9069,0.4409,54.4853,2.8569,0.6258,54.5641,2.536,0.6015,54.4889,2.4855,0.5932,54.5679,2.5036,0.6277,54.4858,2.5132,0.7432,54.481,2.5498,0.7296,54.5583,2.5836,0.7213,54.481,2.556,0.5725,54.6349,2.4532,0.5845,54.5767,2.4199,0.5753,54.6377,2.4276,0.5819,54.5744,2.4435,0.6564,54.6208,2.5816,0.6222,54.6234,2.5552,0.6588,54.5614,2.5611,0.7643,54.6689,2.6063,0.7781,54.6687,2.5942,0.621,54.6827,2.5707,0.5848,54.6277,2.5184,0.5793,54.6888,2.5323,0.7391,54.67,2.6181,0.7331,54.6165,2.6064,0.6826,54.4927,2.7615,0.6828,54.5661,2.8055,0.691,54.5685,2.7739,0.6749,54.4904,2.7915,0.5856,54.506,2.6485,0.6211,54.5795,2.6766,0.5888,54.5825,2.6548,0.6162,54.5031,2.6691,0.6263,54.6445,2.6818,0.5918,54.6478,2.6586,0.6448,54.5644,2.8399,0.6156,54.6297,2.8557,0.6514,54.6284,2.8557,0.6112,54.5656,2.8398,0.678,54.5727,2.7311,0.7006,54.6328,2.7855,0.6868,54.6373,2.7399,0.6847,54.218,2.4178,0.6817,54.217,2.4091,0.6798,54.2189,2.4145,0.6857,54.2164,2.4114,0.675,54.221,2.3884,0.6715,54.2248,2.3803,0.6754,54.2223,2.3813,0.6788,54.2229,2.3764,0.6755,54.2256,2.3729,0.6803,54.2233,2.3737,0.6896,54.2247,2.3752,0.6935,54.2211,2.3831,0.6952,54.2237,2.3798,0.6888,54.222,2.3788,0.7013,54.218,2.3979,0.705,54.2183,2.4071,0.7054,54.2199,2.3988,0.7009,54.2171,2.4032,0.6974,54.2313,2.3768,0.6999,54.2225,2.3851,0.7036,54.2299,2.3832,0.7099,54.2234,2.4127,0.7118,54.2277,2.4017,0.6921,54.217,2.4202,0.6666,54.2301,2.3811,0.6847,54.2256,2.3708,0.6676,54.2315,2.3759,0.6502,54.2534,2.3762,0.6691,54.2322,2.3724,0.7169,54.248,2.3944,0.7231,54.2451,2.4102,0.708,54.2298,2.3904,0.7095,54.2496,2.3837,0.7339,54.3029,2.4119,0.7237,54.3058,2.3992,0.6439,54.3169,2.3595,0.7218,54.2409,2.4263,0.7268,54.292,2.4687,0.7406,54.2951,2.4516,0.7114,54.2392,2.4379,0.743,54.2989,2.4295,0.7558,54.3621,2.4817,0.7593,54.3678,2.4509,0.6846,54.3114,2.371,0.7129,54.3805,2.3988,0.6849,54.3852,2.381,0.7044,54.3083,2.3846,0.6335,54.3658,2.4778,0.6089,54.3722,2.4555,0.7177,54.2916,2.4729,0.7091,54.3574,2.5077,0.7285,54.3576,2.5046,0.7393,54.4343,2.5331,0.7398,54.3588,2.4981,0.7509,54.4344,2.5268,0.6342,54.3914,2.3627,0.589,54.4445,2.451,0.5891,54.4467,2.4271,0.5979,54.3783,2.4346,0.6826,54.3588,2.5033,0.6583,54.4371,2.5213,0.6876,54.4363,2.5349,0.6591,54.3612,2.4926,0.7172,54.4348,2.5383,0.6893,54.4815,2.5537,0.7714,54.4381,2.4777,0.7733,54.483,2.5233,0.7771,54.4859,2.4941,0.7682,54.4359,2.509,0.5889,54.4924,2.4572,0.5876,54.4949,2.4312,0.5612,54.1691,2.6916,0.5572,54.165,2.6816,0.5527,54.1699,2.6858,0.5628,54.1645,2.6856,0.579,54.1637,2.6872,0.5813,54.1679,2.6973,0.5856,54.168,2.6941,0.5762,54.1637,2.6893,0.5828,54.1704,2.6682,0.5809,54.1649,2.6737,0.5884,54.1697,2.6739,0.5772,54.1653,2.67,0.5597,54.1669,2.6591,0.5618,54.1724,2.6533,0.5566,54.1727,2.6518,0.5632,54.1667,2.6601,0.5435,54.1714,2.6721,0.5501,54.1664,2.6681,0.5421,54.172,2.6653,0.551,54.166,2.6726,0.5305,54.1998,2.6935,0.5467,54.1707,2.6787,0.5761,54.1955,2.7244,0.5682,54.1684,2.696,0.5663,54.196,2.7223,0.5741,54.1681,2.6973,0.5912,54.1688,2.6831,0.6019,54.1957,2.7121,0.6047,54.1966,2.7007,0.5895,54.1682,2.6898,0.5692,54.1718,2.6575,0.5795,54.2005,2.6659,0.568,54.2016,2.658,0.5761,54.1711,2.6622,0.5434,54.1725,2.6594,0.5361,54.2033,2.6513,0.5249,54.2028,2.6612,0.5488,54.1728,2.6537,0.5078,54.246,2.6625,0.5515,54.2388,2.7342,0.5405,54.1984,2.7053,0.5319,54.2407,2.7206,0.5546,54.1971,2.715,0.5954,54.1953,2.7192,0.5982,54.236,2.7473,0.5882,54.1951,2.7244,0.6032,54.2412,2.6858,0.6,54.1981,2.6854,0.6143,54.2398,2.6975,0.5908,54.1992,2.6759,0.5946,54.291,2.6667,0.6165,54.2885,2.6864,0.5852,54.2432,2.6697,0.5213,54.247,2.6494,0.5354,54.2958,2.6362,0.5397,54.247,2.6456,0.5051,54.2897,2.7124,0.5178,54.2426,2.7042,0.5814,54.2366,2.7473,0.5695,54.2831,2.7608,0.5862,54.2822,2.7639,0.5677,54.2373,2.7443,0.6195,54.2381,2.7183,0.6378,54.285,2.7269,0.6306,54.2867,2.7021,0.6579,54.3449,2.7354,0.5525,54.2947,2.641,0.5791,54.3562,2.6375,0.5503,54.3586,2.6212,0.572,54.2931,2.6514,0.5712,54.3443,2.7841,0.6312,54.4053,2.8056,0.6488,54.4058,2.7929,0.6103,54.4186,2.6619,0.5818,54.4213,2.6428,0.6063,54.3536,2.6558,0.6069,54.4899,2.824,0.6388,54.4888,2.8241,0.6016,54.4063,2.8055,0.6703,54.4967,2.7209,0.6718,54.4089,2.7475,0.5516,54.4238,2.6257,0.553,54.5088,2.6301,0.0682,54.6071,2.9988,0.0521,54.638,3.0533,0.0563,54.5973,3.0404,0.0657,54.6473,3.0109,0.4883,54.5702,2.991,0.48,54.5418,2.9882,0.3169,54.4884,2.9659,0.3483,54.556,3.0243,0.3396,54.4786,3.0064,0.3244,54.5656,2.9831,0.3331,54.6198,2.9914,0.3094,54.5772,2.9193,0.3163,54.6381,2.9279,0.2561,54.6512,2.9196,0.2195,54.5978,2.9215,0.2548,54.5968,2.9095,0.221,54.6521,2.9316,0.1921,54.5754,3.0301,0.196,54.6169,3.0918,0.1941,54.5648,3.0733,0.1929,54.6278,3.0476,0.2646,54.595,3.1511,0.2397,54.5456,3.1313,0.2427,54.5975,3.1512,0.2612,54.5431,3.1312,0.2501,54.5444,2.895,0.2782,54.5881,2.9342,0.2731,54.5356,2.9198,0.1932,54.5125,3.0545,0.2037,54.5562,3.1045,0.2016,54.5041,3.0852,0.3033,54.5981,3.1195,0.3032,54.5562,3.0557,0.299,54.546,3.1003,0.3076,54.6085,3.0739,0.2821,54.6411,2.9497,0.1526,54.5734,3.1528,0.1467,54.568,3.1754,0.1519,54.6076,3.161,0.048,54.5706,3.157,0.0509,54.5053,3.0962,0.0434,54.5784,3.1223,0.055,54.4987,3.127,0.1026,54.562,3.1984,0.1231,54.4951,3.1567,0.1037,54.4923,3.164,0.1244,54.5642,3.1901,0.1548,54.5277,3.0183,0.1621,54.5908,3.0775,0.1601,54.6005,3.0344,0.1566,54.5199,3.0568,0.0944,54.5355,2.9568,0.0896,54.6147,2.9666,0.073,54.5294,2.9859,0.1537,54.6086,2.9985,0.1587,54.6348,3.0446,0.0421,54.6192,3.1345,0.0475,54.5889,3.0768,0.0462,54.6298,3.089,0.0806,54.5628,3.1934,0.2707,54.0615,2.8237,0.2739,54.0575,2.8247,0.2928,54.0371,2.8438,0.2897,54.0393,2.8352,0.2731,54.0679,2.8498,0.2699,54.0657,2.8381,0.2699,54.0696,2.8385,0.2728,54.0642,2.8483,0.2902,54.044,2.8594,0.2893,54.0497,2.865,0.2931,54.0442,2.8626,0.2871,54.0485,2.8613,0.2769,54.0647,2.8578,0.2818,54.0791,2.8525,0.2881,54.073,2.8647,0.2683,54.069,2.8271,0.2777,54.0847,2.8233,0.2797,54.0817,2.8413,0.2991,54.1277,2.8697,0.2954,54.1311,2.8522,0.361,54.0965,2.8543,0.3567,54.1006,2.8372,0.3495,54.1887,2.8162,0.2943,54.1975,2.8309,0.2948,54.1986,2.8166,0.292,54.1348,2.8275,0.3198,54.1849,2.9108,0.309,54.1204,2.8872,0.3058,54.191,2.8864,0.3905,54.171,2.8954,0.3902,54.1744,2.8726,0.3863,54.1779,2.8528,0.4071,54.2325,2.8873,0.4026,54.2366,2.8639,0.3003,54.1949,2.8607,0.31,54.2528,2.9029,0.3013,54.2579,2.87,0.3737,54.1686,2.9291,0.3877,54.2266,2.95,0.4032,54.2844,2.9721,0.4036,54.2261,2.9311,0.3895,54.243,2.8339,0.4187,54.2937,2.8741,0.4028,54.3016,2.8358,0.3179,54.3233,2.7912,0.2983,54.3195,2.8775,0.2981,54.2598,2.8514,0.2951,54.3232,2.8523,0.3807,54.2881,2.9871,0.3608,54.2945,2.9775,0.4129,54.3407,2.9949,0.3845,54.3445,3.0101,0.2942,54.3807,2.8833,0.2889,54.3838,2.8559,0.3157,54.4229,2.9479,0.3002,54.431,2.8944,0.3116,54.3731,2.9359,0.3892,54.3945,3.0231,0.42,54.392,3.0069,0.2895,54.436,2.8434,0.2873,54.3855,2.8352,0.3012,54.4991,2.9039,0.2938,54.4334,2.8673,0.2981,54.5037,2.8753,0.3658,54.4008,3.0127,0.4004,54.4641,3.0421,0.3752,54.4693,3.0322,0.4578,54.3987,2.9231,0.468,54.4645,2.9712,0.4676,54.4695,2.9376,0.385,54.5467,3.0506,0.4659,54.5396,3.0176,0.4542,54.4623,2.9999,0.1938,54.2261,2.9217,0.1991,54.2146,2.9212,0.2053,54.2156,2.9075,0.2175,54.2255,2.8966,0.2065,54.2149,2.9081,0.21,54.209,2.924,0.2241,54.2149,2.925,0.2099,54.2112,2.9157,0.2086,54.2133,2.9103,0.2053,54.2087,2.9325,0.2028,54.2097,2.9332,0.2038,54.2161,2.9081,0.1988,54.2133,2.9265};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=6 */
		private double[] getmand_Coord_6_877_point_6()
		{
			double[] value = {0.218,54.2984,2.8739,0.1989,54.3231,2.9468,0.2006,54.3302,2.9136,0.1981,54.2878,2.9366,0.2108,54.2706,2.9919,0.2222,54.2662,2.9993,0.2002,54.2441,2.9605,0.2026,54.2761,2.9778,0.2073,54.2392,2.9712,0.2613,54.2751,2.9205,0.2437,54.2391,2.9115,0.2352,54.2633,2.9982,0.2474,54.2626,2.9882,0.2264,54.2318,2.9746,0.2812,54.344,2.9776,0.2721,54.3138,2.9308,0.2726,54.3063,2.962,0.2781,54.3537,2.9396,0.2169,54.3794,2.8716,0.2172,54.4351,2.8813,0.2402,54.3787,2.8653,0.2171,54.4913,2.8917,0.2143,54.3913,3.0597,0.201,54.3431,3.0152,0.2009,54.3969,3.0421,0.1944,54.4218,2.9395,0.2005,54.3732,2.8918,0.1987,54.4302,2.9036,0.1967,54.3663,2.9213,0.1937,54.4589,3.0344,0.2003,54.4509,3.0653,0.2541,54.439,3.0913,0.2336,54.4412,3.0913,0.193,54.414,2.9732,0.1925,54.469,2.9924,0.1945,54.4047,3.0124,0.2894,54.3984,2.999,0.2943,54.4519,3.0193,0.2779,54.4185,2.9181,0.26,54.371,2.8763,0.271,54.3626,2.9053,0.2758,54.3365,3.0082,0.262,54.3331,3.0289,0.2989,54.5047,3.0377,0.2948,54.4946,3.0813,0.2897,54.4635,2.9717,0.2941,54.5167,2.989,0.2446,54.2349,2.9311,0.1958,54.2533,2.9271,0.2165,54.2349,2.9763,0.2062,54.2162,2.9519,0.2402,54.2974,3.0206,0.2615,54.2693,2.9454,0.2196,54.3392,2.8709,0.2385,54.337,2.8659,0.1959,54.3499,2.9913,0.1996,54.3161,2.9749,0.1951,54.3586,2.9557,0.2191,54.4982,3.1019,0.2217,54.55,3.1215,0.2367,54.494,3.1115,0.146,54.1897,2.9682,0.1462,54.1926,2.978,0.147,54.1957,2.9733,0.1457,54.1888,2.9697,0.1463,54.195,2.9536,0.1473,54.2009,2.9609,0.1471,54.2027,2.9541,0.1465,54.1938,2.9583,0.1356,54.1883,2.9502,0.1413,54.1863,2.9574,0.1421,54.1891,2.9526,0.1348,54.1857,2.9551,0.1366,54.2245,3.0007,0.1356,54.2198,3.0115,0.1152,54.2072,2.9423,0.1022,54.2217,2.9614,0.1134,54.2008,2.9563,0.1042,54.2108,3.0076,0.1189,54.1938,2.9932,0.1392,54.2074,2.9893,0.143,54.2028,2.9771,0.1428,54.2002,2.9833,0.1396,54.2103,2.9814,0.1431,54.2114,2.951,0.1399,54.2158,2.9656,0.1389,54.221,2.9488,0.143,54.2079,2.9632,0.1381,54.2244,2.9345,0.1425,54.2133,2.9402,0.1207,54.1904,2.9682,0.1213,54.1949,2.9554,0.1344,54.1827,2.9632,0.1473,54.1981,2.9685,0.1469,54.2039,2.9467,0.0989,54.4791,2.9375,0.1318,54.4364,2.9177,0.1318,54.4825,2.9343,0.1003,54.4326,2.9205,0.0872,54.3864,2.9344,0.0703,54.4205,2.988,0.0778,54.3793,2.9722,0.0805,54.4276,2.9506,0.0625,54.5214,3.0232,0.0747,54.4735,2.9671,0.0653,54.4661,3.0049,0.0689,54.4948,3.1465,0.0564,54.4443,3.1084,0.0701,54.4405,3.128,0.0591,54.4585,3.0376,0.0649,54.4131,3.0208,0.0849,54.4383,3.1409,0.0735,54.3955,3.1112,0.0874,54.3932,3.1243,0.0604,54.4058,3.0607,0.0699,54.3715,3.0045,0.0647,54.3644,3.045,0.1057,54.3936,3.1292,0.0903,54.352,3.1086,0.1087,54.3525,3.1135,0.15,54.4081,3.0896,0.1554,54.3733,3.0514,0.1504,54.367,3.0744,0.1554,54.4143,3.0665,0.1437,54.3503,2.9247,0.1533,54.3894,2.9692,0.1497,54.3933,2.9362,0.1494,54.3467,2.9574,0.1473,54.325,3.058,0.1455,54.3611,3.0943,0.1422,54.3191,3.0767,0.1492,54.5047,3.1242,0.1546,54.4584,3.0826,0.1491,54.4524,3.1057,0.1548,54.5105,3.1009,0.1498,54.434,2.9514,0.1558,54.4745,3.0,0.1501,54.479,2.9675,0.1551,54.4301,2.9841,0.1439,54.4467,3.1257,0.1447,54.4022,3.1095,0.135,54.2755,2.9233,0.1331,54.2434,2.926,0.0883,54.2599,2.9716,0.0908,54.246,3.0393,0.1382,54.2034,2.9986,0.1375,54.2595,3.0065,0.1444,54.2924,3.0196,0.1384,54.31,2.921,0.1251,54.3112,2.8918,0.0811,54.2913,2.9815,0.0871,54.298,2.9525,0.0935,54.2737,3.0699,0.0842,54.2761,3.0588,0.0911,54.3103,3.0915,0.1509,54.3316,3.0337,0.1269,54.351,2.8955,0.0761,54.3296,2.9925,0.0829,54.3366,2.961,0.0785,54.3125,3.0791,0.1042,54.3486,2.8967,0.0916,54.3432,2.926,0.1025,54.3909,2.9049,0.0,53.6624,2.6288,0.0,53.7,2.6101,0.4359,53.5401,2.598,0.7462,54.2319,1.8798,0.7956,54.2659,1.7828,0.757,54.2112,1.8776,0.784,54.2863,1.7845,0.8958,54.4575,1.4941,0.9094,54.4377,1.4942,0.9296,54.5099,1.3967,0.9666,54.5846,1.3008,1.6171,54.9083,0.856,1.6929,55.6105,0.4255,1.6796,55.6042,0.397,1.4614,56.2034,1.6661,1.4649,56.2007,1.6801,1.5337,56.3746,1.525,1.5168,55.6865,1.0307,1.7197,55.5844,0.2571,1.6448,55.6678,0.5298,1.6373,55.3925,0.5724,1.6453,55.4017,0.5979,1.4054,55.7304,1.3212,1.3994,55.7209,1.3413,1.361,55.5396,1.2505,1.5849,56.054,1.1959,1.5745,54.7325,1.0198,1.5599,54.7454,1.0698,1.5614,55.341,1.1287,1.5624,55.5114,1.0879,1.5401,55.5164,1.1506,1.5807,55.3387,1.072,1.3823,54.5724,1.5142,1.3723,54.5903,1.5446,1.4616,55.0278,1.4597,1.6936,55.3089,0.6178,1.6833,55.3131,0.6734,1.624,55.9369,0.9114,1.6194,55.902,0.9141,1.6044,55.9703,1.0397,1.2438,54.4136,1.9405,1.2872,54.5702,1.8472,1.2824,54.583,1.8674,1.2488,54.4018,1.9231,0.2344,53.5976,2.6267,0.2365,53.5908,2.6339,0.3128,53.6095,2.5951,0.3104,53.6172,2.5876,0.0441,53.7855,2.5866,0.0,53.7913,2.5777,0.0,53.8027,2.5813,0.0391,53.7778,2.5818,0.6769,54.0039,2.6213,0.6953,53.9814,2.6126,0.7617,54.0446,2.6281,0.6741,54.0317,2.6009,0.7689,54.0692,2.6094,0.0986,53.4834,2.973,0.0,53.4712,2.903,0.0,53.5032,2.9668,0.3211,53.4936,3.0095,0.6461,53.9918,2.1851,0.6285,53.8681,2.2955,0.5752,53.9665,2.2872,0.7048,53.9049,2.2018,0.4825,53.8085,2.4507,0.5019,53.9452,2.3901,0.5522,53.8314,2.39,0.4392,53.9251,2.4479,0.2708,54.6078,3.1776,0.7151,54.4255,2.831,0.6528,54.5146,2.8978,0.6472,54.4103,2.8896,0.7068,54.3153,2.806,0.3509,54.0048,2.9005,0.4585,54.0039,2.8598,0.367,54.1481,2.9268,0.5039,54.6098,3.0008,0.5561,53.5203,2.7945,0.658,54.7165,2.6069,0.6234,54.7152,2.5749,0.6204,54.721,2.5808,0.6603,54.7104,2.6006,0.6804,54.6559,2.8499,0.6839,54.6572,2.8551,0.6552,54.6554,2.8654,0.4847,54.6807,2.7727,0.5143,54.6738,2.8071,0.6388,54.6954,2.6794,0.6343,54.6879,2.684,0.3748,54.6636,2.722,0.4376,54.6721,2.8541,0.3941,54.6857,2.822,0.5522,54.6344,2.8279,0.5527,54.6675,2.8336,0.5867,54.6312,2.8494,0.4577,54.6491,2.6982,0.2328,53.6693,2.6114,0.4085,54.041,2.4599,0.3471,54.1709,2.5814,0.4044,54.1855,2.5151,0.6643,53.6236,2.7381,0.5692,53.6109,2.8333,0.3564,54.3092,2.6592,0.4163,54.3296,2.5839,0.7039,54.6602,2.829,0.5682,54.725,2.4993,0.5658,54.6925,2.4951,0.6726,54.629,2.8404,0.6595,54.6407,2.7117,0.7083,54.668,2.7921,0.5357,54.5399,2.4733,0.495,54.506,2.5547,0.6868,53.631,2.274,0.5739,53.7192,2.3783,0.6617,53.7502,2.2851,0.647,53.5385,2.6922,0.752,53.6017,2.5904,0.6148,54.0205,2.7829,0.5276,54.069,2.2947,0.4666,54.055,2.4033,0.3517,54.6648,3.0565,0.4985,54.6091,2.9979,0.4228,54.5954,3.0839,0.3072,54.667,3.0388,0.314,54.6726,3.0402,0.1936,54.673,3.1121,0.1985,54.6674,3.1087,0.1644,54.6623,3.1018,0.1611,54.6507,3.1477,0.0435,54.6516,3.0972,0.0369,54.6582,3.0997,0.4494,54.5591,3.0475,0.4178,54.5654,3.0673,0.3368,54.6693,3.0021,0.1993,54.6565,3.1042,0.3054,54.6265,3.1284,0.2861,54.6217,3.1465,0.2939,54.6319,2.9824,0.0634,54.6065,3.1919,0.1575,54.613,3.1371,0.1555,54.6306,3.1673,0.1589,54.6361,3.144,0.0893,54.6534,2.9778,0.2046,54.6616,3.1464,0.0,53.5457,3.0192,0.0,53.6029,3.0467,0.4166,53.6038,2.984,0.2506,53.5318,2.7056,0.0,54.4429,2.9169,0.0,54.2684,2.8149,0.7446,54.0005,2.5418,0.7434,54.0241,2.5301,0.8091,54.0888,2.554,0.7169,54.049,2.5463,0.829,54.0651,2.537,0.8273,54.0386,2.5486,0.7639,54.7807,1.717,0.8469,53.7065,2.0793,0.7766,53.6559,2.1836,0.8264,54.1336,1.8863,0.7859,54.0779,1.9799,0.8204,53.8298,2.0915,0.9171,53.7572,1.9759,0.8914,53.8785,1.9911,0.6287,54.281,2.132,0.6813,54.3205,2.0196,0.7716,53.6939,2.6412,0.8426,53.6366,2.4916,0.8591,53.7384,2.5381,0.7494,53.7812,2.1927,0.9417,54.0956,2.3936,0.9294,54.1706,2.4207,1.0374,54.5415,2.22,0.9837,54.5826,2.3481,0.9999,54.4964,2.3156,0.896,54.5074,2.5321,0.8445,54.5747,2.6268,0.8592,54.4822,2.6058,0.7578,54.3356,2.7207,0.8158,54.3584,2.645,0.7043,54.7267,2.4245,0.9816,54.3611,1.5047,0.8741,54.3844,1.5923,0.9461,54.3108,1.6047,1.1301,54.0096,1.5853,1.1778,54.0746,1.4924,1.0616,54.8507,1.6251,1.0183,54.8468,1.6149,1.018,54.8504,1.6231,1.0613,54.8455,1.6164,0.9087,54.845,1.5887,0.88,54.8816,1.3853,1.0927,54.8513,1.6039,1.0954,54.8582,1.6113,1.0249,54.8984,1.3958,0.7601,54.7933,1.8019,0.9924,54.1774,1.7175,1.0841,54.128,1.6041,1.0369,54.0615,1.7025,1.0326,54.241,1.6211,0.7663,54.5657,1.7301,0.8259,54.4921,1.6012,0.7879,54.4462,1.7083,0.9415,54.8218,1.6762,0.9417,54.8136,1.6813,1.0885,54.7886,1.8996,1.0705,54.7786,1.9341,0.895,54.7676,2.0557,0.9064,54.7762,2.0168,0.8553,54.7591,2.052,0.9747,54.7512,2.228,0.9671,54.7507,2.2272,0.9285,54.7607,2.0782,0.8932,54.7619,2.061,0.7874,54.7537,2.3677,0.7688,54.7471,2.41,0.7941,54.7045,2.4992,0.7766,54.7105,2.4771,0.7485,54.722,2.4544,0.7451,54.7142,2.4588,0.7797,54.6938,2.5973,0.802,54.694,2.5718,0.7743,54.678,2.473,0.9115,54.2876,2.4628,0.9647,54.34,2.37,1.0169,54.4063,2.2757,0.7208,54.0283,2.0831,0.5887,54.083,2.1869,0.9446,54.8459,1.6084,0.9424,54.8453,1.6467,0.9803,54.8478,1.6187,1.2374,54.8715,1.5818,1.1845,54.8813,1.5683,0.847,54.829,1.5553,0.8312,54.8323,1.5343,0.8544,54.8003,1.5489,0.9825,54.8226,1.6009,0.9484,54.7938,1.5817,0.946,54.8232,1.591,0.9828,54.7933,1.5908,1.1162,54.8366,1.5557,1.1192,54.8409,1.5352,1.023,54.8649,1.3935,1.0611,54.8633,1.4061,0.9048,54.8656,1.3799,0.8842,54.864,1.3842,1.1166,54.8639,1.5625,1.1206,54.8662,1.5418,0.945,54.8669,1.38,0.8293,54.8391,1.497,0.8257,54.8565,1.5417,0.8237,54.8615,1.5037,0.9451,54.8422,1.6,0.9104,54.8251,1.5795,1.1066,54.8578,1.5835,1.1077,54.8322,1.5759,0.9105,54.7688,1.6705,0.9049,54.8132,1.6754,0.9448,54.7707,1.6769,0.7849,54.7457,1.7342,0.8282,54.7119,1.9386,0.8553,54.7529,2.0579,0.8934,54.7019,2.0562,0.7236,54.6817,2.0502,0.7779,54.6887,2.0419,0.9897,53.9949,1.8015,1.0772,53.9417,1.6857,1.0243,53.8738,1.7867,0.7507,54.4013,1.8137,0.716,54.3609,1.9164,1.3774,54.3619,1.5245,1.4244,54.5071,1.4187,1.0054,54.7548,1.2808,1.235,54.1604,1.9047,1.1535,54.2571,2.1122,1.0823,54.1285,2.2209,0.9522,54.1138,1.8144,0.7602,54.441,2.7543,0.8074,54.4582,2.6756,0.766,54.6959,2.6096,0.9125,53.9113,2.4533,0.8291,53.8563,2.551,1.4475,55.0553,1.5284,1.5226,54.7746,1.1694,1.4775,54.8211,1.3196,1.6796,55.9943,0.001,1.6531,55.9954,-0.0025,1.5945,56.1497,1.2192,1.5888,56.0928,1.1223,1.5793,56.1632,1.21,1.6028,56.0842,1.1356,1.5879,56.3223,1.3916,1.5853,56.4154,1.4535,1.4534,55.6014,1.6722,1.4528,55.5035,1.6607,1.4434,55.7063,1.6824,1.4521,55.809,1.7234,1.4434,55.8114,1.7141,1.4534,55.7045,1.6907,1.4554,56.0614,1.7552,1.4461,55.9344,1.7428,1.4542,55.9327,1.7508,1.4481,56.0623,1.7469,1.4498,56.1847,1.7487,1.4687,56.3094,1.7609,1.4621,56.3109,1.7518,1.4564,56.1835,1.7572,1.4789,56.4143,1.7684,1.4964,56.5021,1.7605,1.5494,56.5987,1.656,1.5192,56.5689,1.7292,1.5587,56.5898,1.659,1.3873,55.6617,1.3009,1.5665,56.1553,1.2169,1.5744,56.0841,1.1273,1.4972,56.4598,1.616,1.3335,55.4516,1.2695,1.5922,55.7213,0.7608,1.6077,55.6107,0.6805,1.7344,55.5825,0.2988,1.7489,56.1245,0.3784,1.6287,55.9831,0.9141,1.6128,55.9956,0.9017,1.5737,56.2342,1.2848,1.5601,56.2276,1.2979,1.596,56.0288,1.0319,1.6093,56.0186,1.0419,1.5291,56.1994,1.3571,1.8157,56.2568,0.2331,1.3982,56.2927,0.0318,1.8233,56.1908,0.0157,1.8498,56.2651,-0.0062,1.7525,56.1883,-0.0431,1.5598,56.0699,-0.0211,1.625,55.9992,0.0041,1.4971,56.0819,0.0133,1.7157,56.5161,0.0465,1.609,56.5321,0.0671,1.7373,56.4981,0.0,1.7333,55.9963,0.0443,1.862,56.1324,0.1114,1.8378,56.0308,0.1439,1.9336,56.1507,0.1962,1.4649,56.498,-0.067,1.4549,56.5244,-0.0228,1.444,56.3725,0.056,1.7981,56.1108,0.0462,1.8858,56.1949,0.0916,1.6739,56.1787,-0.0956,1.6186,56.0643,-0.04,1.5674,56.1713,-0.0973,1.6762,56.071,-0.0389,1.6443,55.4872,0.7803,1.4806,56.3083,1.7585,1.5086,56.1792,1.6846,1.4702,56.1829,1.7538,1.6128,55.1157,0.9458,1.5875,54.9265,1.0238,1.6062,54.9178,0.9293,1.5947,55.124,1.0494,1.6408,55.3263,0.8191,1.6257,55.1095,0.8479,1.609,55.3362,0.9536,1.7086,55.4702,0.5863,1.5174,55.3473,1.2224,1.4656,55.8103,1.719,1.496,55.6907,1.615,1.4672,55.7056,1.6859,1.7154,55.6179,0.5972,1.7851,56.008,0.086,1.8569,56.3882,0.0069,1.4428,55.6023,1.6647,1.4423,55.5039,1.654,1.5327,56.0114,1.2239,1.6366,55.5748,0.6474,1.655,55.5268,0.556,1.6624,55.493,0.463,-0.6732,54.6042,2.2519,-0.6855,54.5364,2.2537,-0.7658,54.5419,2.3213,-0.7974,54.6145,2.3339,-0.7552,54.6099,2.3247,-0.8067,54.5461,2.3307,-0.676,54.6026,2.2857,-0.664,54.6632,2.2561,-0.8453,54.6197,2.3452,-0.691,54.5745,2.4134,-0.6694,54.4963,2.3879,-0.6881,54.4959,2.3998,-0.6163,54.5777,2.3945,-0.6029,54.4979,2.3927,-0.5978,54.578,2.4017,-0.6194,54.4976,2.3839,-0.7895,54.5652,2.5126,-0.7919,54.6154,2.5592,-0.7844,54.5609,2.5473,-0.7976,54.6179,2.5198,-0.7364,54.6278,2.4497,-0.6927,54.6334,2.4175,-0.7318,54.5713,2.443,-0.7781,54.6687,2.5942,-0.8004,54.6689,2.5687,-0.7667,54.6242,2.4674,-0.7428,54.6817,2.4546,-0.7743,54.678,2.473,-0.652,54.6928,2.4,-0.6299,54.6385,2.3923,-0.6295,54.6949,2.395,-0.7389,54.478,2.1972,-0.7308,54.4074,2.1979,-0.7142,54.4756,2.2001,-0.7553,54.4105,2.1919,-0.7754,54.2998,2.2105,-0.7494,54.3464,2.2512,-0.7458,54.3462,2.2285,-0.7783,54.3002,2.2296,-0.747,54.3483,2.2025,-0.7218,54.4041,2.2159,-0.7552,54.3516,2.1888,-0.7644,54.3475,2.2629,-0.7902,54.4074,2.3007,-0.7419,54.4026,2.2843,-0.8021,54.3512,2.2774,-0.701,54.4687,2.2562,-0.6994,54.4704,2.2235,-0.7208,54.4017,2.2456,-0.812,54.4779,2.3257,-0.7743,54.4739,2.3175,-0.822,54.4109,2.3077,-0.8546,54.4824,2.3356,-0.8529,54.5509,2.3421,-0.7037,54.4674,2.2842,-0.711,54.5367,2.3005,-0.6889,54.5351,2.2842,-0.7239,54.469,2.299,-0.6877,54.4486,2.3951,-0.6849,54.3852,2.381,-0.6668,54.451,2.3828,-0.7609,54.4405,2.4522,-0.7515,54.4895,2.4441,-0.7677,54.4875,2.4652,-0.7459,54.4427,2.4325,-0.6551,54.4967,2.3815,-0.651,54.4516,2.3753,-0.7599,54.5692,2.4607,-0.7257,54.492,2.4253,-1.1029,54.7605,1.4621,-1.0865,54.7587,1.4681,-0.8792,54.711,1.4484,-0.8805,54.7714,1.4572,-0.8605,54.7688,1.4628,-1.0862,54.7664,1.4954,-1.026,54.8159,1.4911,-1.0211,54.7664,1.4778,-1.0245,54.7631,1.4692,-1.019,54.7064,1.4483,-0.9056,54.6898,1.5426,-0.9187,54.6204,1.5047,-0.9335,54.6154,1.5173,-0.8855,54.6952,1.5296,-0.9891,54.6095,1.5434,-0.9819,54.6831,1.5688,-0.9087,54.784,1.3572,-0.8996,54.783,1.3644,-0.9056,54.7162,1.4207,-0.9467,54.7654,1.4551,-0.8876,54.771,1.4358,-0.9523,54.7097,1.4369,-1.0722,54.7188,1.3717,-1.0527,54.7777,1.3707,-1.0853,54.7773,1.393,-1.0417,54.7205,1.3466,-0.9825,54.7441,1.5804,-1.0165,54.744,1.5831,-0.8545,54.7643,1.4855,-0.8742,54.7068,1.4721,-0.922,54.7473,1.5617,-0.8923,54.7489,1.5535,-0.9306,54.6874,1.5505,-1.0211,54.8347,1.3833,-0.9905,54.78,1.354,-0.9863,54.8356,1.3765,-1.0208,54.779,1.3598,-0.8908,54.836,1.3751,-0.8799,54.8345,1.3816,-1.0571,54.8335,1.395,-1.0934,54.8327,1.4176,-0.9828,54.7933,1.5908,-1.0955,54.7569,1.5355,-1.1016,54.8038,1.5648,-1.0882,54.7527,1.554,-1.1095,54.8079,1.5466,-0.839,54.8109,1.4915,-0.953,54.6927,1.6468,-0.9488,54.72,1.6632,-0.8273,54.6769,1.6577,-0.7887,54.6954,1.7216,-0.8202,54.7067,1.6753,-0.8006,54.6702,1.6957,-0.9813,54.6833,1.8099,-0.901,54.6645,1.7696,-0.9868,54.6672,1.7869,-0.8962,54.6784,1.7946,-0.8853,54.6269,1.9377,-0.94,54.6659,1.9561,-0.882,54.6625,1.9465,-0.941,54.6306,1.9473,-1.073,54.6865,1.9084,-1.0682,54.6498,1.9027,-0.8955,54.677,1.8013,-0.8977,54.6532,1.8016,-0.9814,54.6826,1.8134,-0.9808,54.6819,1.8168,-0.9898,54.6675,1.6386,-0.9676,54.6061,1.6098,-0.9575,54.6655,1.63,-0.9963,54.6075,1.6151,-0.9101,54.6229,1.7342,-0.9948,54.6303,1.7563,-1.0783,54.6621,1.7021,-1.0759,54.6978,1.7196,-0.925,54.6614,1.6234,-0.9195,54.69,1.6407,-0.8074,54.6288,1.6698,-0.9145,54.7182,1.6571,-0.9448,54.7707,1.6769,-0.9105,54.7688,1.6705,-1.074,54.7266,1.7338,-1.0864,54.7614,1.7953,-0.7849,54.7457,1.7342,-0.8165,54.7571,1.688,-0.7903,54.6657,1.8835,-0.8282,54.7119,1.9386,-0.7865,54.7161,1.8954,-0.832,54.6616,1.9268,-1.0418,54.6777,1.9414,-1.0379,54.7281,1.9531,-1.0147,54.6717,1.961,-0.7741,54.6025,2.1829,-0.7746,54.6026,2.1801,-0.956,54.6354,2.2048,-0.9456,54.5597,2.1764,-0.786,54.5436,2.1581,-0.8707,54.6133,2.1949,-0.8781,54.5509,2.1733,-0.8196,54.6342,2.0396,-0.7935,54.5671,2.0223,-0.7845,54.6301,2.036,-0.827,54.5701,2.0262,-0.9004,54.6266,2.3411,-0.9376,54.5628,2.309,-0.9344,54.6327,2.3059,-0.9058,54.5573,2.3399,-0.9684,54.5756,2.0815,-0.9775,54.6476,2.1351,-0.9801,54.5711,2.1144,-0.8996,54.6427,2.0563,-0.8507,54.6967,2.0541,-0.8934,54.7019,2.0562,-0.8573,54.6382,2.0483,-0.7302,54.623,2.0443,-0.6977,54.6166,2.0863,-0.7236,54.6817,2.0502,-1.0178,54.5139,1.4261,-1.0169,54.5133,1.4152,-1.0222,54.5126,1.4182,-1.013,54.5146,1.4233,-1.0358,54.5119,1.4203,-1.0408,54.5148,1.4032,-1.0466,54.5183,1.41,-1.0405,54.514,1.408,-1.0467,54.5194,1.4041,-1.0451,54.5651,1.4056,-1.0096,54.5144,1.4104,-1.0073,54.5151,1.4208,-1.0018,54.5162,1.4154,-1.0123,54.5139,1.4131,-1.0079,54.5164,1.3997,-0.999,54.5178,1.4079,-1.008,54.5153,1.4061,-0.9833,54.554,1.3223,-0.9764,54.5599,1.3196,-1.0078,54.5432,1.3275,-1.008,54.5511,1.3193,-1.0142,54.5468,1.3258,-1.0034,54.5464,1.3229,-1.0012,54.5397,1.3456,-1.0016,54.5419,1.3535,-0.9575,54.5716,1.3474,-0.9448,54.5966,1.3696,-0.9365,54.5981,1.3601,-0.9154,54.634,1.4213,-0.9865,54.5696,1.3901,-1.0172,54.5678,1.3949,-1.0113,54.5881,1.3902,-0.9702,54.5889,1.3808,-1.0053,54.5617,1.3713,-1.0203,54.6457,1.4229,-1.0162,54.574,1.3201,-1.0284,54.5723,1.3312,-0.982,54.5786,1.3094,-0.9708,54.5788,1.3099,-0.9583,54.5768,1.3234,-0.9714,54.5568,1.3344,-0.9548,54.5742,1.3369,-0.9738,54.559,1.3248,-0.9787,54.5298,1.4322,-0.9745,54.5316,1.4223,-1.0142,54.5242,1.4516,-1.0046,54.5249,1.4476,-1.0248,54.5133,1.4291,-1.0494,54.5293,1.4194,-0.9484,54.5634,1.4502,-0.9512,54.5686,1.4211,-0.9953,54.5264,1.4425,-0.9863,54.5544,1.4853,-0.9744,54.5564,1.4785,-1.0264,54.5522,1.4913,-1.003,54.602,1.3124,-0.9939,54.5771,1.3117,-0.9882,54.6039,1.3084,-1.0047,54.5759,1.3147,-0.9496,54.6069,1.3101,-0.9624,54.5782,1.316,-0.9458,54.6064,1.3155,-0.9654,54.5787,1.3124,-1.0359,54.5972,1.3356,-1.0444,54.594,1.3522,-1.0443,54.6556,1.3482,-0.9856,54.6621,1.3154,-0.9722,54.6062,1.3054,-0.964,54.6659,1.3114,-0.9403,54.6048,1.3261,-1.0113,54.6243,1.4184,-0.9534,54.5613,1.4643,-0.9628,54.5578,1.4732,-0.9986,54.5535,1.491,-1.0122,54.5527,1.4914,-1.0528,54.5561,1.4393,-1.0574,54.6142,1.4792,-0.9883,54.7231,1.3321,-0.96,54.7263,1.3294,-1.0717,54.6885,1.5388,-1.0145,54.7015,1.4567,-1.0781,54.692,1.516,-1.0132,54.3814,1.774,-1.0106,54.3658,1.7749,-1.0048,54.3674,1.7698,-1.0184,54.3779,1.7798,-1.0275,54.45,1.7989,-1.0167,54.4322,1.7859,-1.0212,54.4529,1.7932,-1.0233,54.4302,1.792,-1.0662,54.4415,1.6773,-1.0655,54.4232,1.6683,-1.0745,54.4424,1.6742,-1.0713,54.5017,1.6933,-1.0674,54.5362,1.7067,-1.0635,54.5004,1.6966,-1.004,54.4058,1.646,-1.0292,54.3985,1.6328,-0.9216,54.4651,1.6656,-0.9305,54.4464,1.6543,-0.9398,54.4477,1.661,-0.9135,54.4641,1.6599,-0.844,54.5751,1.685,-0.8531,54.5748,1.6897,-1.0688,54.5847,1.7247,-1.0022,54.5809,1.729,-1.032,54.4561,1.6845,-1.063,54.4798,1.6912,-1.0228,54.4753,1.6883,-1.0685,54.4605,1.6864,-1.0243,54.4055,1.6512,-0.9574,54.4935,1.6848,-0.9049,54.4878,1.6698,-0.9677,54.4715,1.6803,-0.9914,54.3809,1.7604,-0.9928,54.369,1.7629,-0.9804,54.4506,1.7747,-0.9845,54.4308,1.7697,-1.04,54.5566,1.8397,-0.9734,54.5601,1.8172,-0.9216,54.4723,1.7711,-0.9305,54.4452,1.7615,-0.9599,54.394,1.7526,-0.9364,54.3912,1.7512,-1.0318,54.4169,1.6013,-1.0326,54.4035,1.613,-1.0138,54.4148,1.6011,-1.0658,54.4015,1.6362,-1.062,54.4006,1.6384,-0.9764,54.3616,1.776,-0.9818,54.3679,1.7893,-0.9666,54.3687,1.7845,-0.9865,54.3612,1.7795,-1.0478,54.4321,1.6043,-1.0417,54.4171,1.6046,-1.0347,54.4325,1.6001,-1.0516,54.4172,1.6077,-0.9835,54.4253,1.6034,-0.9941,54.4073,1.6223,-0.9712,54.4193,1.6218,-1.0025,54.4119,1.6071,-0.9261,54.3772,1.7743,-1.0243,54.3849,1.8045,-0.9693,54.4167,1.6341,-0.9556,54.4315,1.6519,-0.9437,54.4322,1.6356,-0.9778,54.4171,1.6473,-1.0826,54.448,1.6397,-1.0672,54.431,1.6181,-1.0647,54.4509,1.6159,-1.0817,54.4284,1.6373,-1.0069,54.4508,1.5913,-1.0011,54.4296,1.5965,-0.9821,54.4465,1.5898,-1.0215,54.4322,1.5955,-1.0257,54.3985,1.8119,-1.0247,54.3916,1.7926,-1.027,54.4062,1.7972,-0.9139,54.3844,1.7789,-0.9903,54.3889,1.8148,-0.9375,54.4576,1.5995,-0.9458,54.435,1.6213,-0.9219,54.4504,1.6204,-0.9604,54.4415,1.6022,-1.0766,54.4617,1.6833,-1.0902,54.4446,1.6607,-1.0915,54.4647,1.668,-1.0325,54.4734,1.599,-1.0242,54.4533,1.5953,-1.0131,54.4722,1.5931,-1.0406,54.4524,1.6007,-0.9531,54.4071,1.7532,-0.947,54.4264,1.7571,-0.9878,54.4107,1.7656,-0.9155,54.397,1.804,-0.8967,54.3988,1.7875,-1.0235,54.493,1.5988,-1.0028,54.4915,1.5927,-0.9212,54.4784,1.6014,-0.9054,54.4708,1.6233,-1.0847,54.4837,1.672,-1.0709,54.4809,1.688,-0.9311,54.4154,1.8283,-0.9046,54.4119,1.8142,-0.94,54.3987,1.8142,-1.0293,54.4268,1.8049,-1.0282,54.4186,1.8223,-0.8722,54.423,1.7759,-0.8854,54.4046,1.7685,-1.0745,54.5114,1.6508,-1.0558,54.4901,1.6159,-1.0493,54.5177,1.6169,-1.075,54.4854,1.6467,-0.9692,54.5175,1.5903,-0.949,54.4863,1.5884,-0.9354,54.5124,1.589,-0.9811,54.491,1.5887,-0.9005,54.4663,1.6432,-0.8968,54.4869,1.6642,-0.8834,54.4897,1.6484,-0.8663,54.4402,1.8126,-0.8853,54.4147,1.7976,-0.9616,54.4187,1.837,-0.957,54.4419,1.8583,-0.9834,54.421,1.8429,-0.9774,54.4775,1.7848,-1.0829,54.5056,1.6797,-1.0059,54.5588,1.6015,-0.9923,54.519,1.5941,-0.9808,54.5578,1.5967,-1.0148,54.5204,1.5986,-0.8854,54.4956,1.6281,-0.8822,54.5461,1.6068,-0.905,54.5043,1.604,-0.8619,54.5343,1.6314,-0.8521,54.4958,1.7834,-0.8894,54.4349,1.8353,-0.908,54.4671,1.8733,-0.8731,54.4664,1.86,-0.9212,54.4364,1.8479,-1.0169,54.4509,1.8589,-1.0182,54.4818,1.8775,-0.8571,54.592,1.6209,-0.8323,54.5833,1.6476,-1.0743,54.5975,1.6772,-1.0445,54.5565,1.6225,-1.0403,54.6054,1.6378,-1.074,54.5494,1.6586,-0.9385,54.6047,1.6047,-0.917,54.5534,1.5918,-0.8957,54.6002,1.6045,-0.9552,54.5568,1.592,-1.0366,54.5093,1.8274,-1.0566,54.5471,1.863,-1.0465,54.5016,1.8452,-1.047,54.5547,1.8454,-0.8515,54.4737,1.8357,-0.9445,54.5111,1.9064,-0.9761,54.5139,1.91,-0.9469,54.4718,1.8826,-0.8282,54.5772,1.6732,-0.8898,54.573,1.9229,-0.9428,54.5772,1.9327,-0.8981,54.5068,1.8968,-1.0332,54.5916,1.9229,-1.0489,54.5395,1.8817,-1.061,54.6042,1.8953,-1.0251,54.5272,1.9005,-0.8079,54.5393,1.8076,-0.7971,54.6299,1.8782,-0.7799,54.6379,1.825,-0.9761,54.5795,1.9384,-0.9763,54.6328,1.9527,-0.8606,54.2865,1.9916,-0.8616,54.2866,1.9985,-0.8642,54.2862,1.9949,-0.8878,54.2768,2.1729,-0.8204,54.2683,2.1648,-0.8425,54.2495,2.1647,-0.7721,54.4125,2.0896,-0.7534,54.4136,2.0773,-0.8964,54.29,1.9996,-0.8904,54.2894,2.0043,-0.8568,54.2869,1.988,-0.8576,54.2885,1.9806,-0.8969,54.2931,1.9797,-0.8934,54.2934,1.9765,-0.8678,54.286,1.9977,-0.8827,54.2878,2.0046,-0.8658,54.2865,2.0019,-0.8821,54.2871,2.0001,-0.8983,54.2917,1.9867,-0.9027,54.2934,1.9871};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=7 */
		private double[] getmand_Coord_6_877_point_7()
		{
			double[] value = {-0.8319,54.2439,2.1802,-0.8282,54.2444,2.1888,-0.8276,54.245,2.18,-0.8321,54.2435,2.1865,-0.8519,54.2456,2.195,-0.8604,54.2478,2.2016,-0.8512,54.2469,2.1994,-0.8602,54.2466,2.1971,-0.8756,54.2493,2.1827,-0.961,54.428,2.1133,-0.9496,54.5064,2.1545,-0.9421,54.4252,2.119,-0.9676,54.5089,2.1478,-0.8398,54.2706,2.1577,-0.8697,54.2742,2.1634,-0.8472,54.2502,2.1635,-0.8748,54.4918,2.2084,-0.8037,54.4157,2.1886,-0.7891,54.4824,2.195,-0.8763,54.4238,2.1998,-0.8279,54.3562,2.0769,-0.8895,54.4173,2.1191,-0.8145,54.4112,2.108,-0.8908,54.3643,2.0873,-0.8542,54.2976,2.0254,-0.8418,54.2991,2.0176,-0.7972,54.4918,2.1365,-0.7447,54.489,2.1192,-0.8161,54.3593,2.1783,-0.7979,54.3066,2.1728,-0.7745,54.3545,2.1828,-0.8283,54.3108,2.1659,-0.8637,54.2685,2.2314,-0.8709,54.2491,2.2002,-0.882,54.2724,2.2311,-0.8324,54.2447,2.1928,-0.8317,54.2647,2.2238,-0.8118,54.2627,2.2151,-0.8431,54.2459,2.1976,-0.8891,54.2963,1.969,-0.9023,54.3171,1.9614,-0.8817,54.2961,1.9666,-0.8393,54.3063,2.2558,-0.8635,54.309,2.2617,-0.8467,54.2665,2.2272,-0.8768,54.3165,2.1732,-0.9021,54.3211,2.1857,-0.8109,54.3196,2.0125,-0.8302,54.3543,2.2836,-0.8622,54.3578,2.2911,-0.7772,54.365,2.0348,-0.8998,54.42,2.3132,-0.9196,54.3671,2.264,-0.9254,54.4246,2.2867,-0.8989,54.3624,2.2885,-0.9426,54.4428,2.029,-0.9636,54.4427,2.0435,-0.8493,54.4379,1.9983,-0.8221,54.4355,1.9955,-0.9036,54.4884,2.3329,-0.9335,54.4936,2.3043,-0.9215,54.4301,2.217,-0.9218,54.4981,2.225,-0.7203,54.4911,2.0881,-0.757,54.4214,2.0285,-0.7484,54.4156,2.0581,-0.728,54.4931,2.048,-0.9733,54.4379,2.0679,-0.9828,54.5117,2.1292,-0.9753,54.4301,2.097,-0.9821,54.5128,2.0935,-0.9115,54.4423,2.0115,-0.8719,54.5139,2.0178,-0.9104,54.5167,2.0254,-0.8787,54.4399,2.0051,-0.9392,54.4957,2.2789,-0.9429,54.5656,2.2845,-0.9424,54.5759,2.064,-0.9038,54.5755,2.043,-0.9469,54.5172,2.0449,-0.754,54.5013,2.0164,-0.8057,54.5086,2.0067,-0.7422,54.5602,2.0286,-0.8837,54.4984,2.1514,-0.9726,54.5166,2.0644,-0.466,54.5072,2.6836,-0.4695,54.5808,2.7235,-0.4629,54.5838,2.6919,-0.4723,54.5044,2.7136,-0.5503,54.4941,2.7992,-0.584,54.567,2.8339,-0.5516,54.57,2.8137,-0.581,54.4913,2.8184,-0.4908,54.653,2.6405,-0.4688,54.586,2.6642,-0.464,54.6515,2.6687,-0.494,54.5874,2.6377,-0.5125,54.5737,2.7866,-0.5522,54.6344,2.8279,-0.5105,54.6384,2.799,-0.4409,54.4853,2.8569,-0.4524,54.5631,2.8712,-0.4616,54.4749,2.9069,-0.3377,54.5105,2.7888,-0.3058,54.5131,2.8034,-0.424,54.6273,2.8449,-0.3716,54.5845,2.8068,-0.4079,54.5755,2.8319,-0.5051,54.2897,2.7124,-0.515,54.3488,2.7481,-0.4915,54.352,2.7205,-0.5239,54.2875,2.7323,-0.4789,54.3547,2.6951,-0.4901,54.4169,2.7298,-0.4768,54.4197,2.7031,-0.5492,54.4102,2.7825,-0.5777,54.4076,2.8003,-0.4866,54.5013,2.7424,-0.3179,54.3233,2.7912,-0.3444,54.3163,2.8008,-0.298,54.5114,2.823,-0.362,54.5062,2.7941,-0.5889,54.4924,2.4572,-0.5932,54.5679,2.5036,-0.5811,54.5716,2.472,-0.6015,54.4889,2.4855,-0.6931,54.5591,2.5818,-0.7213,54.481,2.556,-0.7296,54.5583,2.5836,-0.6893,54.4815,2.5537,-0.5845,54.5767,2.4199,-0.5912,54.497,2.4089,-0.6222,54.6234,2.5552,-0.5848,54.6277,2.5184,-0.6258,54.5641,2.536,-0.7331,54.6165,2.6064,-0.5753,54.6377,2.4276,-0.5725,54.6349,2.4532,-0.658,54.6779,2.5964,-0.621,54.6827,2.5707,-0.6564,54.6208,2.5816,-0.6112,54.5656,2.8398,-0.6388,54.4888,2.8241,-0.6448,54.5644,2.8399,-0.6069,54.4899,2.824,-0.691,54.5685,2.7739,-0.6703,54.4967,2.7209,-0.678,54.5727,2.7311,-0.6826,54.4927,2.7615,-0.5888,54.5825,2.6548,-0.553,54.5088,2.6301,-0.5545,54.5855,2.6355,-0.5856,54.506,2.6485,-0.5918,54.6478,2.6586,-0.6514,54.6284,2.8557,-0.6647,54.5649,2.8255,-0.6726,54.629,2.8404,-0.6868,54.6373,2.7399,-0.6523,54.576,2.7047,-0.6595,54.6407,2.7117,-0.6786,54.218,2.4044,-0.6798,54.2189,2.4145,-0.6817,54.217,2.4091,-0.6721,54.2252,2.3773,-0.6754,54.2223,2.3813,-0.6715,54.2248,2.3803,-0.6757,54.2225,2.3798,-0.6803,54.2233,2.3737,-0.6817,54.2232,2.3741,-0.6974,54.22,2.3877,-0.6952,54.2237,2.3798,-0.6999,54.2225,2.3851,-0.6935,54.2211,2.3831,-0.7007,54.2176,2.4131,-0.7009,54.2171,2.4032,-0.705,54.2183,2.4071,-0.6976,54.2164,2.4077,-0.6974,54.2313,2.3768,-0.6896,54.2247,2.3752,-0.6837,54.2242,2.4255,-0.6781,54.2255,2.4203,-0.6847,54.218,2.4178,-0.6691,54.2322,2.3724,-0.6735,54.2254,2.375,-0.6676,54.2315,2.3759,-0.6721,54.255,2.3591,-0.6509,54.2498,2.3852,-0.6502,54.2534,2.3762,-0.6666,54.2301,2.3811,-0.7095,54.2496,2.3837,-0.708,54.2298,2.3904,-0.7036,54.2299,2.3832,-0.7169,54.248,2.3944,-0.7044,54.3083,2.3846,-0.7237,54.3058,2.3992,-0.6993,54.2504,2.3737,-0.6439,54.3169,2.3595,-0.626,54.3027,2.4338,-0.6199,54.3054,2.4183,-0.7231,54.2451,2.4102,-0.7406,54.2951,2.4516,-0.7218,54.2409,2.4263,-0.743,54.2989,2.4295,-0.7593,54.3678,2.4509,-0.7339,54.3029,2.4119,-0.7506,54.3734,2.4311,-0.6846,54.3114,2.371,-0.6591,54.3612,2.4926,-0.6335,54.3658,2.4778,-0.7285,54.3576,2.5046,-0.7268,54.292,2.4687,-0.7398,54.3588,2.4981,-0.7177,54.2916,2.4729,-0.7558,54.3621,2.4817,-0.7509,54.4344,2.5268,-0.7682,54.4359,2.509,-0.5891,54.4467,2.4271,-0.5928,54.4488,2.4028,-0.6583,54.4371,2.5213,-0.628,54.4381,2.5014,-0.6585,54.4831,2.5365,-0.6876,54.4363,2.5349,-0.7587,54.4811,2.5423,-0.7733,54.483,2.5233,-0.5876,54.4949,2.4312,-0.5532,54.1655,2.6769,-0.5527,54.1699,2.6858,-0.5467,54.1707,2.6787,-0.5572,54.165,2.6816,-0.5741,54.1681,2.6973,-0.5762,54.1637,2.6893,-0.5813,54.1679,2.6973,-0.5714,54.1638,2.6893,-0.5828,54.1643,2.6798,-0.5884,54.1697,2.6739,-0.5912,54.1688,2.6831,-0.5809,54.1649,2.6737,-0.5692,54.1718,2.6575,-0.5632,54.1667,2.6601,-0.5618,54.1724,2.6533,-0.5681,54.1663,2.6629,-0.5434,54.1725,2.6594,-0.5501,54.1664,2.6681,-0.5421,54.172,2.6653,-0.5509,54.1667,2.6641,-0.5435,54.1714,2.6721,-0.5612,54.1691,2.6916,-0.5663,54.196,2.7223,-0.5546,54.1971,2.715,-0.5682,54.1684,2.696,-0.5954,54.1953,2.7192,-0.5895,54.1682,2.6898,-0.6019,54.1957,2.7121,-0.5856,54.168,2.6941,-0.5828,54.1704,2.6682,-0.5795,54.2005,2.6659,-0.5908,54.1992,2.6759,-0.5761,54.1711,2.6622,-0.5476,54.2031,2.6488,-0.5488,54.1728,2.6537,-0.5361,54.2033,2.6513,-0.5566,54.1727,2.6518,-0.5213,54.247,2.6494,-0.5249,54.2028,2.6612,-0.5078,54.246,2.6625,-0.5677,54.2373,2.7443,-0.5515,54.2388,2.7342,-0.5852,54.2432,2.6697,-0.6032,54.2412,2.6858,-0.572,54.2931,2.6514,-0.5946,54.291,2.6667,-0.569,54.2448,2.6588,-0.5178,54.2426,2.7042,-0.5319,54.2407,2.7206,-0.5862,54.2822,2.7639,-0.5982,54.236,2.7473,-0.5814,54.2366,2.7473,-0.6378,54.285,2.7269,-0.6579,54.3449,2.7354,-0.5791,54.3562,2.6375,-0.6063,54.3536,2.6558,-0.5712,54.3443,2.7841,-0.5936,54.3429,2.7882,-0.5695,54.2831,2.7608,-0.6488,54.4058,2.7929,-0.6647,54.4068,2.7753,-0.6378,54.4155,2.6866,-0.6103,54.4186,2.6619,-0.6325,54.3507,2.6794,-0.5301,54.4251,2.6197,-0.4984,54.4256,2.6277,-0.5298,54.3599,2.6155,-0.6016,54.4063,2.8055,-0.6749,54.4904,2.7915,-0.6718,54.4089,2.7475,-0.6162,54.5031,2.6691,-0.5818,54.4213,2.6428,-0.5816,54.1639,2.6844,-0.551,54.166,2.6726,-0.579,54.1637,2.6872,-0.5772,54.1653,2.67,-0.5727,54.1658,2.666,-0.5674,54.164,2.6885,-0.5628,54.1645,2.6856,-0.5597,54.1669,2.6591,-0.5546,54.1669,2.6603,-0.3112,54.6492,2.9008,-0.3031,54.5867,2.8608,-0.3063,54.582,2.89,-0.3059,54.6536,2.8725,-0.3012,54.4991,2.9039,-0.3244,54.5656,2.9831,-0.3094,54.5772,2.9193,-0.3169,54.4884,2.9659,-0.3163,54.6381,2.9279,-0.3483,54.556,3.0243,-0.3557,54.6045,3.04,-0.1929,54.6278,3.0476,-0.1948,54.5834,2.9945,-0.1921,54.5754,3.0301,-0.1968,54.636,3.0112,-0.2217,54.55,3.1215,-0.2427,54.5975,3.1512,-0.2242,54.602,3.1411,-0.2397,54.5456,3.1313,-0.2898,54.5791,2.9662,-0.2731,54.5356,2.9198,-0.2782,54.5881,2.9342,-0.2857,54.5268,2.9502,-0.1941,54.5648,3.0733,-0.1926,54.5228,3.0123,-0.1932,54.5125,3.0545,-0.2842,54.5958,3.1384,-0.299,54.546,3.1003,-0.3033,54.5981,3.1195,-0.2803,54.5438,3.1188,-0.2939,54.6319,2.9824,-0.2821,54.6411,2.9497,-0.1492,54.5047,3.1242,-0.1467,54.568,3.1754,-0.1438,54.4992,3.1446,-0.1526,54.5734,3.1528,-0.0434,54.5784,3.1223,-0.0539,54.5138,3.0555,-0.0509,54.5053,3.0962,-0.0475,54.5889,3.0768,-0.084,54.4924,3.1594,-0.1026,54.562,3.1984,-0.0806,54.5628,3.1934,-0.1037,54.4923,3.164,-0.1566,54.5199,3.0568,-0.1587,54.5795,3.1271,-0.1548,54.5105,3.1009,-0.1621,54.5908,3.0775,-0.1287,54.5382,2.9533,-0.0896,54.6147,2.9666,-0.127,54.6164,2.9626,-0.0944,54.5355,2.9568,-0.1601,54.6005,3.0344,-0.1609,54.6246,3.0876,-0.1587,54.6348,3.0446,-0.0657,54.6473,3.0109,-0.0682,54.6071,2.9988,-0.0893,54.6534,2.9778,-0.0636,54.5658,3.1789,-0.0634,54.6065,3.1919,-0.2692,54.0639,2.8258,-0.2707,54.0615,2.8237,-0.2897,54.0393,2.8352,-0.2836,54.0457,2.8288,-0.269,54.0695,2.8328,-0.2699,54.0657,2.8381,-0.2699,54.0696,2.8385,-0.2691,54.0656,2.8327,-0.2829,54.0539,2.8605,-0.2893,54.0497,2.865,-0.2842,54.0564,2.8639,-0.2871,54.0485,2.8613,-0.2928,54.0371,2.8438,-0.2818,54.0791,2.8525,-0.2797,54.0817,2.8413,-0.2731,54.0679,2.8498,-0.2931,54.0442,2.8626,-0.292,54.1348,2.8275,-0.309,54.1204,2.8872,-0.2881,54.073,2.8647,-0.2991,54.1277,2.8697,-0.361,54.0965,2.8543,-0.2977,54.1962,2.8454,-0.2936,54.1332,2.8382,-0.2943,54.1975,2.8309,-0.3198,54.1849,2.9108,-0.3891,54.1688,2.9114,-0.3905,54.171,2.8954,-0.3721,54.1844,2.828,-0.3495,54.1887,2.8162,-0.3619,54.2498,2.8158,-0.3013,54.2579,2.87,-0.2981,54.2598,2.8514,-0.3003,54.1949,2.8607,-0.3877,54.2266,2.95,-0.3737,54.1686,2.9291,-0.4036,54.2261,2.9311,-0.4076,54.2287,2.9132,-0.4028,54.3016,2.8358,-0.3738,54.3089,2.8169,-0.3895,54.243,2.8339,-0.2946,54.2613,2.8335,-0.2951,54.3232,2.8523,-0.2925,54.3252,2.8335,-0.3262,54.2449,2.933,-0.3608,54.2945,2.9775,-0.329,54.3036,2.9556,-0.3845,54.3445,3.0101,-0.3629,54.3519,2.9991,-0.3807,54.2881,2.9871,-0.4228,54.2893,2.9013,-0.4426,54.3477,2.9155,-0.3116,54.3731,2.9359,-0.2983,54.3195,2.8775,-0.3093,54.3121,2.9192,-0.2942,54.3807,2.8833,-0.337,54.4122,2.9888,-0.3315,54.362,2.9779,-0.3157,54.4229,2.9479,-0.42,54.392,3.0069,-0.4129,54.3407,2.9949,-0.2938,54.4334,2.8673,-0.2873,54.3855,2.8352,-0.2889,54.3838,2.8559,-0.2895,54.436,2.8434,-0.3002,54.431,2.8944,-0.4004,54.4641,3.0421,-0.4317,54.4618,3.0256,-0.3892,54.3945,3.0231,-0.4676,54.4695,2.9376,-0.4519,54.4041,2.8925,-0.4578,54.3987,2.9231,-0.3752,54.4693,3.0322,-0.4494,54.5591,3.0475,-0.4659,54.5396,3.0176,-0.4429,54.5391,3.0439,-0.1991,54.2146,2.9212,-0.1939,54.2234,2.9337,-0.1938,54.2261,2.9217,-0.1988,54.2133,2.9265,-0.2175,54.2255,2.8966,-0.2086,54.2133,2.9103,-0.2065,54.2149,2.9081,-0.2214,54.2207,2.9022,-0.2062,54.2162,2.9519,-0.2028,54.2097,2.9332,-0.2385,54.337,2.8659,-0.218,54.2984,2.8739,-0.2196,54.3392,2.8709,-0.2333,54.2957,2.8702,-0.2006,54.3302,2.9136,-0.206,54.3356,2.8851,-0.2026,54.2761,2.9778,-0.2108,54.2706,2.9919,-0.2031,54.3098,2.9956,-0.2073,54.2392,2.9712,-0.2222,54.2662,2.9993,-0.2165,54.2349,2.9763,-0.1981,54.2878,2.9366,-0.1958,54.2533,2.9271,-0.2474,54.2626,2.9882,-0.2567,54.2647,2.9694,-0.2758,54.3365,3.0082,-0.2726,54.3063,2.962,-0.2812,54.344,2.9776,-0.2671,54.3004,2.9882,-0.1987,54.4302,2.9036,-0.2169,54.3794,2.8716,-0.2005,54.3732,2.8918,-0.2172,54.4351,2.8813,-0.1974,54.4859,2.9199,-0.2171,54.4913,2.8917,-0.2143,54.3913,3.0597,-0.1967,54.3663,2.9213,-0.193,54.414,2.9732,-0.1944,54.4218,2.9395,-0.1951,54.3586,2.9557,-0.1925,54.469,2.9924,-0.1937,54.4589,3.0344,-0.2336,54.4412,3.0913,-0.2577,54.4917,3.1114,-0.2367,54.494,3.1115,-0.2541,54.439,3.0913,-0.1945,54.4047,3.0124,-0.2003,54.4509,3.0653,-0.2009,54.3969,3.0421,-0.2859,54.4088,2.9555,-0.2943,54.4519,3.0193,-0.2894,54.3984,2.999,-0.2897,54.4635,2.9717,-0.2402,54.3787,2.8653,-0.26,54.371,2.8763,-0.2948,54.4946,3.0813,-0.2765,54.4924,3.0993,-0.2941,54.5167,2.989,-0.2815,54.4734,2.9338,-0.2002,54.2441,2.9605,-0.2553,54.2969,3.011,-0.262,54.3331,3.0289,-0.2402,54.2974,3.0206,-0.2721,54.3138,2.9308,-0.2655,54.3221,2.8986,-0.2613,54.2751,2.9205,-0.201,54.3431,3.0152,-0.1996,54.3161,2.9749,-0.1959,54.3499,2.9913,-0.2612,54.5431,3.1312,-0.147,54.1957,2.9733,-0.1464,54.1914,2.9649,-0.1473,54.1981,2.9685,-0.146,54.1897,2.9682,-0.1471,54.2027,2.9541,-0.1459,54.1959,2.9481,-0.1463,54.195,2.9536,-0.1465,54.1938,2.9583,-0.1457,54.1888,2.9697,-0.141,54.1841,2.9631,-0.1413,54.1863,2.9574,-0.1421,54.1891,2.9526,-0.1257,54.205,2.9322,-0.1152,54.2072,2.9423,-0.1227,54.1995,2.9435,-0.1213,54.1949,2.9554,-0.1134,54.2008,2.9563,-0.1189,54.1938,2.9932,-0.1236,54.1941,3.0007,-0.1382,54.2034,2.9986,-0.1396,54.2103,2.9814,-0.1366,54.2245,3.0007,-0.1392,54.2074,2.9893,-0.1382,54.2275,2.9908,-0.1389,54.221,2.9488,-0.1364,54.2341,2.9694,-0.1399,54.2158,2.9656,-0.1344,54.2391,2.9464,-0.1356,54.1883,2.9502,-0.1348,54.1857,2.9551,-0.1428,54.2002,2.9833,-0.1431,54.2114,2.951,-0.1501,54.479,2.9675,-0.1318,54.4364,2.9177,-0.1318,54.4825,2.9343,-0.1498,54.434,2.9514,-0.1025,54.3909,2.9049,-0.0805,54.4276,2.9506,-0.1003,54.4326,2.9205,-0.0872,54.3864,2.9344,-0.073,54.5294,2.9859,-0.0989,54.4791,2.9375,-0.0747,54.4735,2.9671,-0.0701,54.4405,3.128,-0.0689,54.4948,3.1465,-0.0849,54.4383,3.1409,-0.0653,54.4661,3.0049,-0.0591,54.4585,3.0376,-0.0625,54.5214,3.0232,-0.061,54.3993,3.0914,-0.0564,54.4443,3.1084,-0.0735,54.3955,3.1112,-0.0778,54.3793,2.9722,-0.0649,54.4131,3.0208,-0.0703,54.4205,2.988,-0.0699,54.3715,3.0045,-0.0874,54.3932,3.1243,-0.0765,54.3544,3.0955,-0.0903,54.352,3.1086,-0.1504,54.367,3.0744,-0.1447,54.4022,3.1095,-0.1455,54.3611,3.0943,-0.15,54.4081,3.0896,-0.1497,54.3933,2.9362,-0.1551,54.4301,2.9841,-0.1533,54.3894,2.9692,-0.1509,54.3316,3.0337,-0.1473,54.325,3.058,-0.1554,54.3733,3.0514,-0.1491,54.4524,3.1057,-0.1439,54.4467,3.1257,-0.1548,54.5277,3.0183,-0.1491,54.5333,2.986,-0.1558,54.4745,3.0,-0.1554,54.4143,3.0665,-0.1546,54.4584,3.0826,-0.1365,54.272,2.9473,-0.0921,54.2654,2.9469,-0.1061,54.2277,2.9424,-0.0996,54.2716,2.9211,-0.0908,54.246,3.0393,-0.1042,54.2108,3.0076,-0.0818,54.2493,3.0213,-0.1355,54.2552,3.0214,-0.1375,54.2595,3.0065,-0.1375,54.2665,2.973,-0.1444,54.2924,3.0196,-0.1429,54.3002,2.9826,-0.1044,54.3094,2.8942,-0.1251,54.3112,2.8918,-0.0883,54.2599,2.9716,-0.0761,54.2846,3.0159,-0.0811,54.2913,2.9815,-0.0833,54.254,3.0027,-0.0935,54.2737,3.0699,-0.1422,54.3191,3.0767,-0.142,54.2869,3.0392,-0.1369,54.2811,3.0576,-0.1384,54.31,2.921,-0.1494,54.3467,2.9574,-0.1413,54.3065,2.9494,-0.1437,54.3503,2.9247,-0.0829,54.3366,2.961,-0.0944,54.3047,2.919,-0.0871,54.298,2.9525,-0.0916,54.3432,2.926,-0.0761,54.2792,3.0421,-0.0785,54.3125,3.0791,-0.0694,54.3164,3.0593,-0.0842,54.2761,3.0588,-0.0911,54.3103,3.0915,-0.0761,54.3296,2.9925,-0.0647,54.3644,3.045,-0.07,54.3225,3.0295,-0.3372,53.5346,2.6738,-0.3128,53.6095,2.5951,-0.4359,53.5401,2.598,-0.1184,53.5779,2.6783,-0.8349,54.3251,1.6873,-0.784,54.2863,1.7845,-0.7956,54.2659,1.7828,-0.8218,54.3444,1.6903,-0.9844,54.5678,1.2995,-0.9458,54.4923,1.3948,-0.9666,54.5846,1.3008,-1.5422,54.9433,0.8232,-1.5338,56.1676,1.5131,-1.5116,56.1778,1.6538,-1.6796,55.6042,0.397,-1.6796,55.5097,0.5177,-1.6682,55.5034,0.4908,-1.6929,55.6105,0.4255,-1.5168,55.6865,1.0307,-1.7197,55.5844,0.2571,-1.6206,55.5929,0.6644,-1.6077,55.6107,0.6805,-1.2928,55.3362,1.271,-1.3982,56.2927,0.0318,-1.5747,56.3675,1.5354,-1.5741,56.3098,1.4651,-1.5401,55.5164,1.1506,-1.5599,54.7454,1.0698,-1.5875,54.9265,1.0238,-1.5745,54.7325,1.0198,-1.5724,54.9284,1.0725,-1.3723,54.5903,1.5446,-1.4211,54.7218,1.4586,-1.3823,54.5724,1.5142,-1.4117,54.738,1.4903,-1.4929,55.5375,1.5306,-1.496,55.6907,1.615,-1.5021,55.694,1.5731,-1.7086,55.4702,0.5863,-1.6833,55.3131,0.6734,-1.6973,55.4754,0.6414,-1.6936,55.3089,0.6178,-1.4877,55.367,1.4902,-1.2108,54.2103,1.9943,-0.1696,53.5802,2.6625,-0.1686,53.5894,2.6538,-0.6953,53.9814,2.6126,-0.7318,53.9792,2.5684,-0.7617,54.0446,2.6281,-0.6769,54.0039,2.6213,-0.7769,54.0204,2.6199,-0.173,53.4642,2.976,-0.0986,53.4834,2.973,-0.4166,53.6038,2.984,-0.4832,53.5994,2.9205,-0.5945,54.5848,2.3013,-0.5887,54.083,2.1869,-0.6461,53.9918,2.1851,-0.4085,54.041,2.4599,-0.4392,53.9251,2.4479,-0.5357,54.5399,2.4733,-0.3564,54.3092,2.6592,-0.6472,54.4103,2.8896,-0.6528,54.5146,2.8978,-0.6148,54.0205,2.7829,-0.3509,54.0048,2.9005,-0.5165,54.4932,3.0344,-0.367,54.1481,2.9268,-0.5737,54.7289,2.4383,-0.4786,53.7001,2.8951,-0.6603,54.7104,2.6006,-0.658,54.7165,2.6069,-0.6494,54.7159,2.6435,-0.6204,54.721,2.5808,-0.5143,54.6738,2.8071,-0.5527,54.6675,2.8336,-0.6343,54.6879,2.684,-0.6388,54.6954,2.6794,-0.596,54.6909,2.6592,-0.7083,54.668,2.7921,-0.6995,54.6595,2.8271,-0.589,54.6629,2.858,-0.6156,54.6297,2.8557,-0.6231,54.6575,2.863,-0.5867,54.6312,2.8494,-0.4847,54.6807,2.7727,-0.4648,54.6459,2.7318,-0.4808,54.6425,2.7641,-0.4376,54.6721,2.8541,-0.3104,53.6172,2.5876,-0.3471,54.1709,2.5814,-0.5692,53.6109,2.8333,-0.647,53.5385,2.6922,-0.5561,53.5203,2.7945,-0.6643,53.6236,2.7381,-0.4762,54.35,2.5092,-0.4163,54.3296,2.5839,-0.495,54.506,2.5547,-0.5658,54.6925,2.4951,-0.5793,54.6888,2.5323,-0.6552,54.6554,2.8654,-0.6804,54.6559,2.8499,-0.6919,54.6302,2.8192,-0.5266,54.3848,2.415,-0.4825,53.8085,2.4507,-0.752,53.6017,2.5904,-0.7716,53.6939,2.6412,-0.7068,54.3153,2.806,-0.7151,54.4255,2.831,-0.5186,54.2241,2.348,-0.4618,54.2001,2.4492,-0.4985,53.7071,2.4441,-0.3091,54.6871,2.9014,-0.4236,54.5945,3.0879,-0.4228,54.5954,3.0839,-0.3072,54.667,3.0388,-0.2046,54.6616,3.1464,-0.1985,54.6674,3.1087,-0.1936,54.673,3.1121,-0.1644,54.6623,3.1018,0.0,54.6626,3.1013,-0.0369,54.6582,3.0997,-0.0521,54.638,3.0533,-0.3368,54.6693,3.0021,-0.3331,54.6198,2.9914,-0.3187,54.683,2.9379,-0.3052,54.6542,3.0333,-0.3027,54.6212,3.0229,-0.2861,54.6217,3.1465,-0.0468,54.6109,3.169,-0.1611,54.6507,3.1477,-0.1614,54.6438,3.0958,-0.1589,54.6361,3.144,-0.1054,54.2829,3.0786,0.0,53.7376,2.5915,0.0,53.6599,3.0477,-0.4585,54.0039,2.8598,-0.2328,53.6693,2.6114,-0.2312,53.7455,2.5954,-0.7457,53.9996,2.541,-0.7446,54.0005,2.5418,-0.8091,54.0888,2.554,-0.829,54.0651,2.537,-0.9046,54.0542,1.9077,-0.7859,54.0779,1.9799,-0.8571,53.9945,2.0016,-0.8264,54.1336,1.8863,-0.7839,53.9407,2.1005,-0.8914,53.8785,1.9911,-0.8204,53.8298,2.0915,-0.6813,54.3205,2.0196,-0.6287,54.281,2.132,-0.8591,53.7384,2.5381,-0.7456,53.8012,2.6497,-0.8291,53.8563,2.551,-1.2374,54.8715,1.5818,-0.9294,54.1706,2.4207,-0.9417,54.0956,2.3936,-1.1535,54.2571,2.1122,-0.9357,54.5424,2.4358,-0.896,54.5074,2.5321,-0.9133,54.6622,1.3084,-1.0374,54.5415,2.22,-1.0605,54.4691,2.1843,-0.7404,54.7554,1.8263,-1.069,54.2955,1.5318,-0.9461,54.3108,1.6047,-1.0326,54.241,1.6211,-0.9816,54.3611,1.5047,-0.9809,54.8444,1.6106,-1.018,54.8504,1.6231,-0.9803,54.8478,1.6187,-1.0183,54.8468,1.6149,-0.8237,54.8615,1.5037,-0.8257,54.8565,1.5417,-0.8532,54.8766,1.4082,-1.1206,54.8662,1.5418,-1.1166,54.8639,1.5625,-1.1264,54.8739,1.5454,-1.0646,54.8997,1.407,-1.0249,54.8984,1.3958,-1.1227,54.8993,1.4635,-1.1301,54.0096,1.5853,-1.0369,54.0615,1.7025,-1.0772,53.9417,1.6857,-1.0841,54.128,1.6041,-0.8602,54.4034,1.5945,-0.7879,54.4462,1.7083,-0.8259,54.4921,1.6012,-0.7797,54.7399,1.7633,-0.7683,54.7941,1.8025,-0.9049,54.8132,1.6754,-0.9415,54.8218,1.6762,-0.9417,54.8136,1.6813,-0.8553,54.7591,2.052,-0.9619,54.7501,2.2864,-0.9671,54.7507,2.2272,-0.9747,54.7512,2.228,-0.8932,54.7619,2.061,-0.895,54.7676,2.0557,-0.8553,54.7529,2.0579,-0.6538,54.7099,2.1776,-0.7006,54.7199,2.4288,-0.802,54.694,2.5718,-0.7797,54.6938,2.5973,-0.7941,54.7045,2.4992,-0.7922,54.6749,2.4956,-0.6767,54.7232,2.4092,-0.6744,54.6907,2.405,-0.6543,54.7253,2.4042,-0.7208,54.0283,2.0831,-0.7048,53.9049,2.2018,-0.9999,54.4964,2.3156,-0.9526,54.4479,2.408,-0.9837,54.5826,2.3481,-0.9465,53.7829,2.4361,-0.9332,53.6714,2.3937,-1.0494,53.9179,2.2841,-0.8592,54.4822,2.6058,-0.9026,54.4091,2.5005,-0.8641,54.3812,2.5736,-0.9424,54.8453,1.6467,-0.9446,54.8459,1.6084,-0.9813,54.8464,1.6564,-1.1845,54.8813,1.5683,-0.9285,54.7607,2.0782,-0.9364,54.835,1.4775,-1.1192,54.8409,1.5352,-1.1121,54.8118,1.5281,-0.8312,54.8323,1.5343,-0.8293,54.8391,1.497,-0.8397,54.8035,1.5297,-0.9148,54.7958,1.571,-0.946,54.8232,1.591,-0.9104,54.8251,1.5795,-0.9484,54.7938,1.5817,-1.09,54.798,1.5818,-1.0952,54.8261,1.5948,-1.0611,54.8633,1.4061,-0.945,54.8669,1.38,-0.91,54.8371,1.3712,-0.9048,54.8656,1.3799,-0.9476,54.8375,1.3711,-1.0927,54.8513,1.6039,-1.1077,54.8322,1.5759,-1.1066,54.8578,1.5835,-0.88,54.8816,1.3853,-0.8727,54.8622,1.3915,-0.867,54.8794,1.3933,-0.8842,54.864,1.3842,-0.9862,54.8656,1.3861,-0.8567,54.8586,1.4065,-0.847,54.829,1.5553,-0.8751,54.8256,1.57,-0.9825,54.8226,1.6009,-0.766,54.7867,1.8276,-0.7719,54.7299,1.8137,-0.8608,54.7644,1.67,-0.7693,54.7257,1.8351,-0.8782,54.7127,1.9583,-0.9362,54.7162,1.9678,-0.813,54.6927,2.0455,-0.6516,54.7096,2.2202,-0.6625,54.6657,2.2161,-0.9064,54.7762,2.0168,-0.9406,53.9367,1.896,-1.0243,53.8738,1.7867,-0.9897,53.9949,1.8015,-0.9707,53.8155,1.881,-0.9522,54.1138,1.8144,-0.867,54.1894,1.7933,-0.716,54.3609,1.9164,-0.7462,54.2319,1.8798,-0.7507,54.4013,1.8137,-0.757,54.2112,1.8776,-1.3774,54.3619,1.5245,-1.2872,54.5702,1.8472,-1.3475,54.6442,1.6512,-1.3108,54.4914,1.7163,-1.4616,55.0278,1.4597,-1.4475,55.0553,1.5284,-1.4321,54.8732,1.4651,-1.2488,54.4018,1.9231,-1.2756,54.3272,1.8044,-0.9066,54.2501,1.6987,-0.766,54.6959,2.6096,-0.8074,54.4582,2.6756,-0.8158,54.3584,2.645,-0.9125,53.9113,2.4533,-1.4412,54.861,1.4317,-1.4775,54.8211,1.3196,-1.5383,54.9556,1.1603,-1.5226,54.7746,1.1694,-1.6531,55.9954,-0.0025,-1.625,55.9992,0.0041,-1.6111,56.0292,0.3438,-1.5738,55.8158,1.0572,-1.4534,55.7045,1.6907,-1.4534,55.6014,1.6722,-1.4434,55.8114,1.7141,-1.4542,55.9327,1.7508,-1.4521,55.809,1.7234,-1.4461,55.9344,1.7428,-1.4702,56.1829,1.7538,-1.4554,56.0614,1.7552,-1.4564,56.1835,1.7572,-1.469,56.0616,1.751,-1.4621,56.3109,1.7518,-1.4789,56.4143,1.7684,-1.4687,56.3094,1.7609,-1.4964,56.5021,1.7605,-1.5192,56.5689,1.7292,-1.5587,56.5898,1.659,-1.5494,56.5987,1.656,-1.4423,55.5039,1.654,-1.4614,56.2034,1.6661,-1.4709,56.3485,1.6188,-1.5601,56.2276,1.2979,-1.5291,56.1994,1.3571,-1.6353,55.425,0.662,-1.6982,55.7142,0.326,-1.4498,56.1847,1.7487,-1.4481,56.0623,1.7469,-1.4649,56.2007,1.6801,-1.7426,55.7293,0.482,-1.5849,56.054,1.1959,-1.6093,56.0186,1.0419,-1.6044,55.9703,1.0397,-1.6028,56.0842,1.1356,-1.5881,56.2214,1.2989,-1.5793,56.1632,1.21,-1.5945,56.1497,1.2192,-1.5737,56.2342,1.2848,-1.6128,55.9956,0.9017,-1.596,56.0288,1.0319,-1.7525,56.1883,-0.0431,-1.6739,56.1787,-0.0956,-1.9267,56.3056,0.2925,-1.4971,56.0819,0.0133,-1.5598,56.0699,-0.0211,-1.609,56.5321,0.0671,-1.6762,56.071,-0.0389,-1.7333,55.9963,0.0443,-1.7366,56.0914,-0.0001,-1.6796,55.9943,0.001,-1.6628,56.4582,0.1487,-1.8186,56.4778,0.0936,-1.8442,56.463,0.0517,-1.4649,56.498,-0.067,-1.6253,55.7756,0.8165,-1.7277,55.5991,0.5457,-1.481,55.5267,1.4054,-1.7344,55.5825,0.2988,-1.6171,54.9083,0.856,-1.6257,55.1095,0.8479,-1.5174,55.3473,1.2224,-1.5402,55.1403,1.1802,-1.4842,55.3547,1.3701,-1.6408,55.3263,0.8191,-1.6443,55.4872,0.7803,-1.5086,56.1792,1.6846,-1.508,56.045,1.6684,-1.6011,55.7921,0.9374,-1.7851,56.008,0.086,-1.8378,56.0308,0.1439,-1.8498,56.2651,-0.0062,-1.8608,56.3221,-0.0097,-1.9075,56.2537,0.0741,-1.7568,56.4175,-0.0575,-1.6456,56.4317,-0.1013,-1.7489,56.1245,0.3784,-1.655,55.5268,0.556,-1.361,55.5396,1.2505};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=8 */
		private double[] getmand_Coord_6_877_point_8()
		{
			double[] value = {-1.6062,54.9178,0.9293,-1.5918,54.7138,0.9325,-1.6373,55.3925,0.5724,-1.6366,55.5748,0.6474,-1.6448,55.6678,0.5298,-1.5327,56.0114,1.2239,-1.4549,56.5244,-0.0228,-1.8569,56.3882,0.0069,-1.7981,56.1108,0.0462,-1.5624,55.5114,1.0879,-1.6287,55.9831,0.9141,-1.624,55.9369,0.9114,-1.49,56.4125,1.7663,-1.4806,56.3083,1.7585,-1.609,55.3362,0.9536,-1.5614,55.341,1.1287,-1.5798,55.1241,1.0985,-1.7154,55.6179,0.5972,-1.4684,55.9334,1.7459,-1.6186,56.0643,-0.04,-1.9108,56.3957,0.1126,-1.8233,56.1908,0.0157,-1.5888,56.0928,1.1223,-1.5359,56.1032,1.2939,-1.4054,55.7304,1.3212,-1.4672,55.7056,1.6859,-1.6581,55.4072,0.624,-1.5665,56.1553,1.2169,-1.4528,55.5035,1.6607,-1.4656,55.8103,1.719,-0.8426,53.6366,2.4916,-0.7663,54.5657,1.7301,-1.235,54.1604,1.9047,-1.1357,54.0819,2.1622,-1.0689,53.812,1.8187,-1.4244,54.5071,1.4187,-0.9924,54.1774,1.7175,-1.0054,54.7548,1.2808,-1.3842,54.7898,1.5968,-1.3474,54.8455,1.7307,-0.7779,54.6887,2.0419,-1.0691,54.7369,1.9202,-1.0705,54.7786,1.9341,-1.0613,54.8455,1.6164,-0.9087,54.845,1.5887,-1.023,54.8649,1.3935,-1.109,54.8291,1.4402,-0.8814,54.7967,1.5622,-0.8649,54.8314,1.3951,-1.0256,54.8345,1.4943,-0.9373,54.8167,1.4746,-1.0954,54.8582,1.6113,-0.7575,54.7865,1.8252,-0.9171,53.7572,1.9759,-0.8469,53.7065,2.0793,-0.9863,53.9966,2.3531,-0.9647,54.34,2.37,-1.0169,54.4063,2.2757,-0.9115,54.2876,2.4628,-0.8445,54.5747,2.6268,-0.8081,54.7,2.5311,-1.0885,54.7886,1.8996,-1.0945,54.7901,1.9022,-0.7601,54.7933,1.8019,-1.0616,54.8507,1.6251,-1.1778,54.0746,1.4924,-0.8741,54.3844,1.5923,-0.9094,54.4377,1.4942,-0.7578,54.3356,2.7207,-0.8324,54.8369,1.4263,-0.6285,53.8681,2.2955,-0.7494,53.7812,2.1927,-0.6617,53.7502,2.2851,-0.7766,53.6559,2.1836,-0.7689,54.0692,2.6094,-0.8273,54.0386,2.5486,-0.7434,54.0241,2.5301,-0.7169,54.049,2.5463,-0.1555,54.6306,3.1673,-0.1575,54.613,3.1371,-0.1519,54.6076,3.161,-0.1993,54.6565,3.1042,-0.3054,54.6265,3.1284,-0.2646,54.595,3.1511,-0.196,54.6169,3.0918,-0.2561,54.6512,2.9196,-0.0435,54.6516,3.0972,-0.0462,54.6298,3.089,-0.2708,54.6078,3.1776,-0.6418,53.5657,2.4024,-0.6868,53.631,2.274,-0.597,53.6062,2.3652,-0.7638,53.5605,2.3361,-0.5739,53.7192,2.3783,-0.7006,54.6328,2.7855,-0.6263,54.6445,2.6818,-0.2344,53.5976,2.6267,-0.5039,54.6098,3.0008,-0.7602,54.441,2.7543,-0.4044,54.1855,2.5151,-0.3748,54.6636,2.722,-0.5753,54.2482,2.2476,-0.7812,54.0891,2.5875,-0.6865,54.048,2.5804,-0.8134,54.0182,2.5758,-1.2438,54.4136,1.9405,-1.2824,54.583,1.8674,-1.6194,55.902,0.9141,-1.5807,55.3387,1.072,-1.5772,56.4678,0.1343,-1.9538,56.179,0.2532,-1.3994,55.7209,1.3413,-1.6453,55.4017,0.5979,-0.2365,53.5908,2.6339,-0.0642,54.3582,3.0757,-0.1042,54.3486,2.8967,-0.152,54.3401,2.9934,-0.1232,54.2475,3.0441,-0.1057,54.3936,3.1292,-0.1087,54.3525,3.1135,-0.0604,54.4058,3.0607,-0.055,54.4987,3.127,-0.143,54.2079,2.9632,-0.1473,54.2009,2.9609,-0.143,54.2028,2.9771,-0.1022,54.2217,2.9614,-0.1337,54.2509,3.0352,-0.1356,54.2198,3.0115,-0.2191,54.4982,3.1019,-0.1989,54.3231,2.9468,-0.2615,54.2693,2.9454,-0.2241,54.2149,2.925,-0.2446,54.2349,2.9311,-0.2989,54.5047,3.0377,-0.3032,54.5562,3.0557,-0.2779,54.4185,2.9181,-0.271,54.3626,2.9053,-0.2016,54.5041,3.0852,-0.2781,54.3537,2.9396,-0.2352,54.2633,2.9982,-0.2264,54.2318,2.9746,-0.2437,54.2391,2.9115,-0.2099,54.2112,2.9157,-0.21,54.209,2.924,-0.2053,54.2156,2.9075,-0.2038,54.2161,2.9081,-0.2239,54.2175,2.9134,-0.48,54.5418,2.9882,-0.468,54.4645,2.9712,-0.4542,54.4623,2.9999,-0.3396,54.4786,3.0064,-0.295,54.5084,2.8467,-0.4367,54.353,2.8853,-0.3658,54.4008,3.0127,-0.4187,54.2937,2.8741,-0.31,54.2528,2.9029,-0.4071,54.2325,2.8873,-0.3863,54.1779,2.8528,-0.3567,54.1006,2.8372,-0.2954,54.1311,2.8522,-0.2769,54.0647,2.8578,-0.2902,54.044,2.8594,-0.2728,54.0642,2.8483,-0.2739,54.0575,2.8247,-0.0421,54.6192,3.1345,-0.1537,54.6086,2.9985,-0.1231,54.4951,3.1567,-0.1244,54.5642,3.1901,-0.048,54.5706,3.157,-0.2548,54.5968,2.9095,-0.3076,54.6085,3.0739,-0.2037,54.5562,3.1045,-0.2501,54.5444,2.895,-0.2195,54.5978,2.9215,-0.221,54.6521,2.9316,-0.2981,54.5037,2.8753,-0.5298,54.5102,2.6236,-0.4956,54.5107,2.6322,-0.6459,54.4998,2.6958,-0.6577,54.4893,2.8104,-0.5516,54.4238,2.6257,-0.5503,54.3586,2.6212,-0.6492,54.3481,2.7025,-0.6604,54.4126,2.7099,-0.6312,54.4053,2.8056,-0.5498,54.2847,2.7508,-0.548,54.3456,2.7709,-0.5525,54.2947,2.641,-0.6306,54.2867,2.7021,-0.6195,54.2381,2.7183,-0.494,54.2915,2.6934,-0.5354,54.2958,2.6362,-0.5397,54.247,2.6456,-0.6165,54.2885,2.6864,-0.6,54.1981,2.6854,-0.6143,54.2398,2.6975,-0.5882,54.1951,2.7244,-0.5405,54.1984,2.7053,-0.568,54.2016,2.658,-0.6047,54.1966,2.7007,-0.5761,54.1955,2.7244,-0.5305,54.1998,2.6935,-0.589,54.4445,2.451,-0.7714,54.4381,2.4777,-0.7771,54.4859,2.4941,-0.7172,54.4348,2.5383,-0.6826,54.3588,2.5033,-0.5979,54.3783,2.4346,-0.6342,54.3914,2.3627,-0.6339,54.4525,2.3718,-0.7393,54.4343,2.5331,-0.7091,54.3574,2.5077,-0.6089,54.3722,2.4555,-0.7129,54.3805,2.3988,-0.7118,54.2277,2.4017,-0.6847,54.2256,2.3708,-0.7099,54.2234,2.4127,-0.7054,54.2199,2.3988,-0.7013,54.218,2.3979,-0.6888,54.222,2.3788,-0.6788,54.2229,2.3764,-0.6755,54.2256,2.3729,-0.675,54.221,2.3884,-0.6857,54.2164,2.4114,-0.6211,54.5795,2.6766,-0.6828,54.5661,2.8055,-0.7391,54.67,2.6181,-0.7643,54.6689,2.6063,-0.6588,54.5614,2.5611,-0.5819,54.5744,2.4435,-0.7432,54.481,2.5498,-0.6277,54.4858,2.5132,-0.4296,54.4147,2.8444,-0.3893,54.4251,2.8108,-0.3814,54.3721,2.8108,-0.471,54.4224,2.6753,-0.5147,54.4135,2.7586,-0.5131,54.4977,2.7734,-0.4755,54.3576,2.6692,-0.3997,54.4967,2.8205,-0.4577,54.6491,2.6982,-0.4845,54.5776,2.7538,-0.8744,54.2488,2.1889,-0.8341,54.2445,2.1726,-0.835,54.2438,2.1892,-0.8411,54.2456,2.1695,-0.8445,54.2448,2.1933,-0.8458,54.2463,2.1675,-0.8483,54.2467,2.1665,-0.8689,54.2478,2.1959,-0.7128,54.5507,2.0649,-0.8633,54.5726,2.0347,-0.948,54.498,2.2561,-0.8375,54.5115,2.01,-0.7246,54.489,2.1053,-0.78,54.43,2.0019,-0.9091,54.3909,1.9938,-0.9245,54.3723,2.2115,-0.9323,54.4308,2.2253,-0.8823,54.3891,1.9886,-0.9107,54.3184,2.1934,-0.8914,54.3127,2.2587,-0.9284,54.3089,1.9997,-0.9055,54.339,1.9663,-0.818,54.3039,2.251,-0.9016,54.2914,1.995,-0.8034,54.2621,2.1932,-0.8782,54.3662,2.1879,-0.8976,54.2905,1.9922,-0.8626,54.291,1.9719,-0.8813,54.2934,1.9701,-0.8759,54.2929,1.9698,-0.8438,54.5731,1.9064,-0.8577,54.5071,1.8821,-0.9009,54.6153,1.8057,-0.9005,54.558,1.8031,-1.0102,54.5833,1.9398,-1.006,54.5193,1.9129,-1.0396,54.6699,1.6612,-0.923,54.5792,1.7115,-0.9134,54.5078,1.7864,-0.9761,54.5124,1.801,-0.9424,54.5308,1.6907,-1.0104,54.5331,1.7046,-0.8587,54.5285,1.6547,-1.034,54.4756,1.8116,-1.0175,54.4971,1.6953,-0.9689,54.4037,1.823,-1.0801,54.467,1.6438,-0.9182,54.4471,1.6373,-0.9926,54.47,1.5883,-0.9221,54.4,1.7531,-0.9769,54.3776,1.7997,-0.9743,54.3881,1.8088,-0.9922,54.3958,1.7636,-1.0776,54.4139,1.6311,-1.0635,54.4029,1.6294,-1.0205,54.3998,1.6227,-1.0298,54.5122,1.8221,-1.0167,54.4114,1.7805,-0.9802,54.4525,1.6748,-1.0364,54.3987,1.6352,-1.0383,54.4394,1.6772,-0.8723,54.5264,1.6685,-0.8814,54.5259,1.674,-1.0228,54.41,1.7868,-1.0315,54.512,1.4203,-1.0265,54.5122,1.42,-1.077,54.7464,1.574,-1.0056,54.6599,1.3211,-1.0142,54.7218,1.3367,-0.9282,54.655,1.3959,-0.9685,54.6487,1.4118,-0.9516,54.6134,1.5252,-0.913,54.6299,1.4483,-0.9356,54.6012,1.3454,-0.9569,54.6069,1.3065,-0.9441,54.6671,1.313,-1.0271,54.6571,1.3318,-1.0188,54.5996,1.3199,-1.0343,54.5699,1.3429,-0.9862,54.5275,1.4386,-1.0183,54.5389,1.3447,-0.9976,54.5561,1.3152,-1.0169,54.5433,1.333,-1.0019,54.5365,1.385,-0.9185,54.6562,1.3846,-0.9893,54.5448,1.3436,-1.0098,54.5406,1.3329,-0.9945,54.5506,1.32,-0.9795,54.5516,1.3335,-0.9411,54.6353,2.2752,-0.9517,54.635,2.2161,-0.8702,54.6133,2.1976,-1.0384,54.6415,1.9343,-1.0124,54.6359,1.953,-0.871,54.6836,1.6399,-0.8767,54.6502,1.6224,-0.8372,54.626,1.9192,-0.8554,54.7569,1.5217,-1.0981,54.7608,1.5167,-1.0519,54.7439,1.5849,-1.1059,54.7661,1.4505,-1.1173,54.823,1.4759,-0.9251,54.7843,1.3523,-0.8683,54.7533,1.5407,-0.9419,54.7691,1.4633,-0.9572,54.7831,1.3503,-1.0994,54.774,1.4156,-0.8894,54.7184,1.4054,-0.9328,54.7282,1.3327,-0.6371,54.4973,2.3784,-0.7203,54.445,2.4167,-0.7376,54.3768,2.415,-0.8582,54.4148,2.3163,-0.7249,54.4013,2.2711,-0.7896,54.301,2.2393,-0.6098,54.6387,2.4,-0.6982,54.6874,2.4246,-0.8063,54.6715,2.5276,-0.7767,54.5674,2.4827,-0.7839,54.6212,2.489,-0.6349,54.5773,2.3872,-0.6986,54.6043,2.3032,1.5918,54.7138,0.9325,1.6796,55.5097,0.5177,1.6111,56.0292,0.3438,1.8608,56.3221,-0.0097,1.9075,56.2537,0.0741,1.6253,55.7756,0.8165,1.6011,55.7921,0.9374,1.469,56.0616,1.751,1.508,56.045,1.6684,1.4842,55.3547,1.3701,1.481,55.5267,1.4054,1.6973,55.4754,0.6414,1.5402,55.1403,1.1802,1.5798,55.1241,1.0985,1.5383,54.9556,1.1603,1.5724,54.9284,1.0725,1.4684,55.9334,1.7459,1.5881,56.2214,1.2989,1.5738,55.8158,1.0572,1.7366,56.0914,-0.0001,1.7728,56.194,0.2582,1.9267,56.3056,0.2925,1.7073,56.1987,0.1926,1.735,56.269,0.1687,1.9484,56.2008,0.1888,1.6206,55.5929,0.6644,1.4709,56.3485,1.6188,1.4412,54.861,1.4317,0.8641,54.3812,2.5736,0.9066,54.2501,1.6987,0.867,54.1894,1.7933,0.8349,54.3251,1.6873,1.0605,54.4691,2.1843,1.1068,54.3869,2.1292,1.3108,54.4914,1.7163,1.2756,54.3272,1.8044,1.069,54.2955,1.5318,1.1291,54.1903,1.517,1.4321,54.8732,1.4651,1.3842,54.7898,1.5968,1.4117,54.738,1.4903,1.4106,54.9089,1.562,1.3475,54.6442,1.6512,0.9046,54.0542,1.9077,0.9406,53.9367,1.896,0.9707,53.8155,1.881,0.9619,54.7501,2.2864,0.8782,54.7127,1.9583,0.7683,54.7941,1.8025,0.7797,54.7399,1.7633,1.0952,54.8261,1.5948,0.9809,54.8444,1.6106,0.8799,54.8345,1.3816,0.8727,54.8622,1.3915,0.9862,54.8656,1.3861,0.9863,54.8356,1.3765,1.109,54.8291,1.4402,1.1016,54.8038,1.5648,0.8751,54.8256,1.57,0.8649,54.8314,1.3951,0.8567,54.8586,1.4065,1.0256,54.8345,1.4943,0.9364,54.835,1.4775,1.026,54.8159,1.4911,1.1227,54.8993,1.4635,1.1264,54.8739,1.5454,0.9026,54.4091,2.5005,0.9863,53.9966,2.3531,0.7006,54.7199,2.4288,0.8081,54.7,2.5311,0.664,54.6632,2.2561,0.6767,54.7232,2.4092,0.6543,54.7253,2.4042,0.6516,54.7096,2.2202,0.867,54.8794,1.3933,0.8602,54.4034,1.5945,0.8571,54.5378,1.5017,0.9526,54.4479,2.408,0.7456,53.8012,2.6497,0.7839,53.9407,2.1005,0.8571,53.9945,2.0016,0.7812,54.0891,2.5875,0.8134,54.0182,2.5758,0.7457,53.9996,2.541,0.3372,53.5346,2.6738,0.4832,53.5994,2.9205,0.4786,53.7001,2.8951,0.1054,54.2829,3.0786,0.0636,53.7382,2.5897,0.1614,54.6438,3.0958,0.0468,54.6109,3.169,0.3052,54.6542,3.0333,0.2242,54.602,3.1411,0.1968,54.636,3.0112,0.3027,54.6212,3.0229,0.4726,54.5603,3.0224,0.2003,54.6457,2.9689,0.3187,54.683,2.9379,0.6752,54.0308,2.6003,0.4618,54.2001,2.4492,0.5186,54.2241,2.348,0.4985,53.7071,2.4441,0.5293,54.6524,2.6308,0.4908,54.653,2.6405,0.596,54.6909,2.6592,0.658,54.6779,2.5964,0.6983,54.6732,2.6176,0.6494,54.7159,2.6435,0.4762,54.35,2.5092,0.3153,54.1648,2.6101,0.424,54.6273,2.8449,0.6995,54.6595,2.8271,0.5753,54.2482,2.2476,0.5266,54.3848,2.415,0.6865,54.048,2.5804,1.2108,54.2103,1.9943,1.4877,55.367,1.4902,1.4929,55.5375,1.5306,1.5021,55.694,1.5731,1.4211,54.7218,1.4586,1.5116,56.1778,1.6538,1.2928,55.3362,1.271,1.6735,55.5939,0.3681,1.6682,55.5034,0.4908,1.5338,56.1676,1.5131,0.3089,54.3891,3.0942,0.1269,54.3559,3.1067,0.0642,54.3582,3.0757,0.07,54.3225,3.0295,0.0694,54.3164,3.0593,0.0761,54.2846,3.0159,0.1044,54.3094,2.8942,0.1429,54.3002,2.9826,0.152,54.3401,2.9934,0.1232,54.2475,3.0441,0.0818,54.2493,3.0213,0.0761,54.2792,3.0421,0.0944,54.3047,2.919,0.1413,54.3065,2.9494,0.1365,54.272,2.9473,0.1382,54.2275,2.9908,0.124,54.4417,3.1384,0.1248,54.397,3.1222,0.1576,54.4673,3.0387,0.1577,54.4231,3.0227,0.156,54.3824,3.0078,0.061,54.3993,3.0914,0.1046,54.4385,3.1456,0.0546,54.4508,3.0777,0.1326,54.3946,2.9021,0.138,54.1932,2.9925,0.1449,54.1897,2.9796,0.1257,54.205,2.9322,0.1364,54.2341,2.9694,0.1344,54.2391,2.9464,0.1412,54.1964,2.9909,0.1227,54.1995,2.9435,0.1464,54.1914,2.9649,0.1459,54.1959,2.9481,0.2577,54.4917,3.1114,0.2031,54.3098,2.9956,0.206,54.3356,2.8851,0.2655,54.3221,2.8986,0.2553,54.2969,3.011,0.2214,54.2207,2.9022,0.2765,54.4924,3.0993,0.2815,54.4734,2.9338,0.2857,54.5268,2.9502,0.2803,54.5438,3.1188,0.2859,54.4088,2.9555,0.1926,54.5228,3.0123,0.1974,54.4859,2.9199,0.2671,54.3004,2.9882,0.2567,54.2647,2.9694,0.2333,54.2957,2.8702,0.2119,54.2145,2.9515,0.1939,54.2234,2.9337,0.4429,54.5391,3.0439,0.4108,54.5414,3.0607,0.4317,54.4618,3.0256,0.337,54.4122,2.9888,0.3315,54.362,2.9779,0.3093,54.3121,2.9192,0.4228,54.2893,2.9013,0.4426,54.3477,2.9155,0.3629,54.3519,2.9991,0.3262,54.2449,2.933,0.329,54.3036,2.9556,0.2946,54.2613,2.8335,0.2925,54.3252,2.8335,0.3619,54.2498,2.8158,0.3738,54.3089,2.8169,0.4076,54.2287,2.9132,0.3891,54.1688,2.9114,0.2977,54.1962,2.8454,0.3721,54.1844,2.828,0.2936,54.1332,2.8382,0.2829,54.0539,2.8605,0.2842,54.0564,2.8639,0.269,54.0695,2.8328,0.2691,54.0656,2.8327,0.2836,54.0457,2.8288,0.2692,54.0639,2.8258,0.0636,54.5658,3.1789,0.1609,54.6246,3.0876,0.1287,54.5382,2.9533,0.127,54.6164,2.9626,0.1587,54.5795,3.1271,0.084,54.4924,3.1594,0.0539,54.5138,3.0555,0.1438,54.4992,3.1446,0.2898,54.5791,2.9662,0.2842,54.5958,3.1384,0.1948,54.5834,2.9945,0.3063,54.582,2.89,0.3112,54.6492,2.9008,0.5816,54.1639,2.6844,0.5828,54.1643,2.6798,0.5509,54.1667,2.6641,0.5727,54.1658,2.666,0.5714,54.1638,2.6893,0.5681,54.1663,2.6629,0.5674,54.164,2.6885,0.5546,54.1669,2.6603,0.5532,54.1655,2.6769,0.6647,54.4068,2.7753,0.5777,54.4076,2.8003,0.581,54.4913,2.8184,0.5301,54.4251,2.6197,0.5298,54.3599,2.6155,0.5936,54.3429,2.7882,0.5543,54.246,2.6505,0.5586,54.2024,2.6528,0.569,54.2448,2.6588,0.5476,54.2031,2.6488,0.6014,54.4413,2.4755,0.6029,54.4979,2.3927,0.6194,54.4976,2.3839,0.628,54.4381,2.5014,0.6993,54.2504,2.3737,0.7047,54.2227,2.4205,0.6721,54.2252,2.3773,0.6971,54.2171,2.4173,0.703,54.2215,2.3906,0.6949,54.216,2.411,0.6916,54.2158,2.4131,0.6996,54.2192,2.3919,0.6842,54.2229,2.3749,0.6764,54.2227,2.3788,0.6735,54.2254,2.375,0.6763,54.2197,2.3954,0.6919,54.6302,2.8192,0.494,54.5874,2.6377,0.5301,54.5869,2.6286,0.5298,54.5102,2.6236,0.6523,54.576,2.7047,0.6459,54.4998,2.6958,0.6647,54.5649,2.8255,0.6577,54.4893,2.8104,0.6943,54.6183,2.6043,0.5717,54.6319,2.4839,0.7844,54.5609,2.5473,0.6931,54.5591,2.5818,0.5811,54.5716,2.472,0.7587,54.4811,2.5423,0.6585,54.4831,2.5365,0.5912,54.497,2.4089,0.3997,54.4967,2.8205,0.471,54.4224,2.6753,0.5492,54.4102,2.7825,0.4789,54.3547,2.6951,0.4524,54.5631,2.8712,0.4079,54.5755,2.8319,0.584,54.567,2.8339,0.8606,54.2865,1.9916,0.8568,54.2869,1.988,0.8703,54.2923,1.9696,0.8821,54.2871,2.0001,0.8875,54.2936,1.9723,0.8934,54.2934,1.9765,0.8969,54.2931,1.9797,0.8719,54.5139,2.0178,0.9421,54.4252,2.119,0.8837,54.4984,2.1514,0.9496,54.5064,2.1545,0.8895,54.4173,2.1191,0.8221,54.4355,1.9955,0.9392,54.4957,2.2789,0.9091,54.3909,1.9938,0.8763,54.4238,2.1998,0.9165,54.3736,2.2044,0.9215,54.4301,2.217,0.8782,54.3662,2.1879,0.9055,54.339,1.9663,0.9196,54.3671,2.264,0.9023,54.3171,1.9614,0.7771,54.3017,2.1885,0.818,54.3039,2.251,0.8317,54.2647,2.2238,0.8958,54.2959,1.9736,0.8827,54.2878,2.0046,0.8604,54.2478,2.2016,0.8161,54.3593,2.1783,0.7721,54.4125,2.0896,0.8145,54.4112,2.108,0.8037,54.4157,2.1886,0.8706,54.2494,2.1702,0.8689,54.2478,2.1959,0.8512,54.2469,2.1994,0.8519,54.2456,2.195,0.8425,54.2495,2.1647,0.8458,54.2463,2.1675,1.0332,54.5916,1.9229,0.8853,54.6269,1.9377,0.8898,54.573,1.9229,1.006,54.5193,1.9129,1.0403,54.6054,1.6378,1.0396,54.6699,1.6612,0.8957,54.6002,1.6045,0.925,54.6614,1.6234,0.8767,54.6502,1.6224,0.8731,54.4664,1.86,1.0251,54.5272,1.9005,0.9963,54.6075,1.6151,0.8515,54.4737,1.8357,0.8663,54.4402,1.8126,1.034,54.4756,1.8116,0.8968,54.4869,1.6642,0.8853,54.4147,1.7976,0.9135,54.4641,1.6599,1.0282,54.4186,1.8223,0.9155,54.397,1.804,0.9046,54.4119,1.8142,0.94,54.3987,1.8142,1.0766,54.4617,1.6833,1.0131,54.4722,1.5931,0.947,54.4264,1.7571,1.0242,54.4533,1.5953,1.0745,54.4424,1.6742,1.0257,54.3985,1.8119,1.0069,54.4508,1.5913,1.0215,54.4322,1.5955,1.0817,54.4284,1.6373,0.9941,54.4073,1.6223,0.9712,54.4193,1.6218,1.0417,54.4171,1.6046,1.0347,54.4325,1.6001,1.0106,54.3658,1.7749,1.0184,54.3779,1.7798,1.0635,54.4029,1.6294,1.0776,54.4139,1.6311,1.0205,54.3998,1.6227,1.0454,54.4043,1.6151,0.9005,54.558,1.8031,1.0277,54.4783,1.806,0.9922,54.3958,1.7636,1.0174,54.3968,1.7781,1.0655,54.4232,1.6683,0.9049,54.4878,1.6698,0.9861,54.4177,1.6536,1.012,54.5365,1.3427,1.0034,54.5464,1.3229,0.9991,54.5486,1.3209,0.9833,54.554,1.3223,0.9814,54.5533,1.3264,1.0588,54.6179,1.4519,1.0803,54.6957,1.4952,1.0417,54.7205,1.3466,0.9701,54.6106,1.5352,0.9104,54.6237,1.4853,0.9496,54.6069,1.3101,1.003,54.602,1.3124,1.0182,54.5228,1.3873,1.0019,54.5365,1.385,0.9953,54.5264,1.4425,1.013,54.5146,1.4233,0.9738,54.559,1.3248,0.9811,54.5635,1.3649,0.9865,54.5696,1.3901,0.7302,54.623,2.0443,0.7845,54.6301,2.036,0.8707,54.6133,2.1949,0.7746,54.6026,2.1801,0.8781,54.5509,2.1733,0.956,54.6354,2.2048,0.9456,54.5597,2.1764,1.0379,54.7281,1.9531,1.0864,54.7614,1.7953,0.871,54.6836,1.6399,0.9813,54.6833,1.8099,1.0759,54.6978,1.7196,0.7799,54.6379,1.825,1.0998,54.7638,1.5035,1.09,54.798,1.5818,0.9519,54.7448,1.5718,0.8867,54.7806,1.3785,0.9476,54.8375,1.3711,0.9825,54.7441,1.5804,0.9559,54.6843,1.5604,0.9819,54.6831,1.5688,0.8748,54.6992,1.5097,1.0807,54.6993,1.4809,1.0865,54.7587,1.4681,1.0862,54.7664,1.4954,0.8605,54.7688,1.4628,0.7599,54.5692,2.4607,0.7677,54.4875,2.4652,0.6877,54.4486,2.3951,0.711,54.5367,2.3005,0.7239,54.469,2.299,0.7743,54.4739,2.3175,0.7419,54.4026,2.2843,0.7308,54.4074,2.1979,0.7553,54.4105,2.1919,0.652,54.6928,2.4,0.7667,54.6242,2.4674,0.5978,54.578,2.4017,0.7658,54.5419,2.3213,0.7552,54.6099,2.3247,0.5897,54.639,2.4078,0.7922,54.6749,2.4956,0.6744,54.6907,2.405,1.0645,54.7018,1.4712,0.9891,54.6095,1.5434,0.8996,54.783,1.3644,1.0934,54.8327,1.4176,0.94,54.6659,1.9561,0.882,54.6625,1.9465,0.941,54.6306,1.9473,0.9362,54.7162,1.9678,0.7422,54.5602,2.0286,0.9429,54.5656,2.2845,0.9424,54.5759,2.064,1.0581,54.6209,1.4392,0.9764,54.5599,1.3196,0.9638,54.5704,1.3567,1.0132,54.3814,1.774,1.0048,54.3674,1.7698,1.0212,54.4529,1.7932,0.9914,54.3809,1.7604,0.9928,54.369,1.7629,0.9804,54.4506,1.7747,0.9305,54.4452,1.7615,1.0318,54.4169,1.6013,1.0403,54.4042,1.6135,1.0658,54.4015,1.6362,0.9764,54.3616,1.776,0.9926,54.47,1.5883,0.8894,54.4349,1.8353,0.8891,54.2963,1.969,0.8321,54.2435,2.1865,0.8602,54.2466,2.1971,0.8759,54.2496,2.1778,0.8393,54.3063,2.2558,0.8467,54.2665,2.2272,0.9254,54.4246,2.2867,0.4723,54.5044,2.7136,0.464,54.6515,2.6687,0.3836,54.6393,2.8127,0.4768,54.4197,2.7031,0.3444,54.3163,2.8008,0.5545,54.5855,2.6355,0.5553,54.6509,2.638,0.6786,54.218,2.4044,0.6757,54.2225,2.3798,0.6817,54.2232,2.3741,0.6974,54.22,2.3877,0.7007,54.2176,2.4131,0.6976,54.2164,2.4077,0.6781,54.2255,2.4203,0.5928,54.4488,2.4028,0.295,54.5084,2.8467,0.1982,54.5928,2.953,0.2059,54.6082,3.1238,0.2984,54.5687,3.0059,0.1976,54.5399,2.9368,0.1941,54.5306,2.9773,0.2188,54.5453,2.9059,0.1491,54.5333,2.986,0.2773,54.0532,2.8255,0.2687,54.0652,2.8283,0.2763,54.0613,2.8553,0.2939,54.0382,2.8552,0.2975,54.0645,2.872,0.2786,54.0832,2.8325,0.2239,54.2175,2.9134,0.1986,54.282,2.9593,0.1962,54.2492,2.9449,0.1942,54.4766,2.9583,0.2165,54.4452,3.0819,0.2537,54.3299,2.8732,0.141,54.1841,2.9631,0.0765,54.3544,3.0955,0.0833,54.254,3.0027,0.1375,54.2665,2.973,0.8218,54.3444,1.6903,0.5165,54.4932,3.0344,1.6581,55.4072,0.624,1.3935,55.6701,1.2806,1.7277,55.5991,0.5457,0.7318,53.9792,2.5684,0.7769,54.0204,2.6199,0.173,53.4642,2.976,0.3158,54.2949,2.698,0.5817,54.7212,2.5365,0.3091,54.6871,2.9014,0.31,54.6414,3.0841,1.0689,53.812,1.8187,0.7638,53.5605,2.3361,0.9357,54.5424,2.4358,0.9133,54.6622,1.3084,0.8818,54.579,1.4047,0.8532,54.8766,1.4082,0.766,54.7867,1.8276,0.6538,54.7099,2.1776,0.6625,54.6657,2.2161,1.1357,54.0819,2.1622,1.49,56.4125,1.7663,1.3543,56.3325,-0.012,-0.7792,54.5511,2.1916,-0.5897,54.639,2.4078,-1.0998,54.7638,1.5035,-0.9104,54.6237,1.4853,-0.8748,54.6992,1.5097,-0.9701,54.6106,1.5352,-0.9559,54.6843,1.5604,-0.8867,54.7806,1.3785,-0.9519,54.7448,1.5718,-0.8544,54.8003,1.5489,-0.8646,54.714,1.6569,-0.7731,54.6753,1.8229,-0.9768,54.6682,1.9613,-0.896,54.6777,1.798,-0.8346,54.639,1.6377,-1.0861,54.7446,1.8865,-0.9272,54.5696,2.2267,-0.8721,54.5611,2.2073,-0.9814,54.5533,1.3264,-1.0031,54.5538,1.3168,-0.9991,54.5486,1.3209,-1.012,54.5365,1.3427,-1.0588,54.6179,1.4519,-1.0803,54.6957,1.4952,-1.0231,54.3962,1.7848,-1.0174,54.3968,1.7781,-1.0277,54.4783,1.806,-1.0455,54.4206,1.6693,-1.0257,54.4022,1.6154,-1.0579,54.4041,1.6217,-1.0666,54.4163,1.6165,-0.9628,54.4652,1.5871,-1.0624,54.4702,1.6168,-0.9857,54.4052,1.8295,-1.0381,54.4925,1.8599,-0.8937,54.2893,1.9958,-0.8885,54.2881,1.9985,-0.9165,54.3736,2.2044,-0.8703,54.2923,1.9696,-0.8875,54.2936,1.9723,-0.9417,54.4998,2.238,-0.8434,54.3148,2.0464,-0.804,54.2621,2.2077,-0.4717,54.5093,2.6573,-0.4899,54.2935,2.6748,-0.4762,54.4243,2.6509,-0.4157,54.3627,2.8399,-0.5717,54.6319,2.4839,-0.6943,54.6183,2.6043,-0.6983,54.6732,2.6176,-0.5301,54.5869,2.6286,-0.6763,54.2197,2.3954,-0.6764,54.2227,2.3788,-0.6842,54.2229,2.3749,-0.6996,54.2192,2.3919,-0.703,54.2215,2.3906,-0.6949,54.216,2.411,-0.6014,54.4413,2.4755,-0.6916,54.2158,2.4131,-0.5586,54.2024,2.6528,-0.5543,54.246,2.6505,-0.0563,54.5973,3.0404,-0.1982,54.5928,2.953,-0.2003,54.6457,2.9689,-0.2059,54.6082,3.1238,-0.2984,54.5687,3.0059,-0.1941,54.5306,2.9773,-0.2188,54.5453,2.9059,-0.1976,54.5399,2.9368,-0.2773,54.0532,2.8255,-0.2687,54.0652,2.8283,-0.2763,54.0613,2.8553,-0.2939,54.0382,2.8552,-0.2786,54.0832,2.8325,-0.2975,54.0645,2.872,-0.2948,54.1986,2.8166,-0.3058,54.191,2.8864,-0.3902,54.1744,2.8726,-0.4026,54.2366,2.8639,-0.4032,54.2844,2.9721,-0.2537,54.3299,2.8732,-0.1986,54.282,2.9593,-0.1962,54.2492,2.9449,-0.1942,54.4766,2.9583,-0.2165,54.4452,3.0819,-0.1326,54.3946,2.9021,-0.1269,54.351,2.8955,-0.1046,54.4385,3.1456,-0.0546,54.4508,3.0777,-0.1248,54.397,3.1222,-0.124,54.4417,3.1384,-0.1269,54.3559,3.1067,-0.1577,54.4231,3.0227,-0.156,54.3824,3.0078,-0.1576,54.4673,3.0387,-1.5337,56.3746,1.525,-1.3935,55.6701,1.2806,-1.3873,55.6617,1.3009,-1.3335,55.4516,1.2695,-1.5947,55.124,1.0494,-0.6741,54.0317,2.6009,-0.5522,53.8314,2.39,-0.6234,54.7152,2.5749,-0.2331,53.8778,2.5874,-0.31,54.6414,3.0841,-0.9699,54.6279,2.36,-1.017,54.4114,1.4051,-1.1291,54.1903,1.517,-0.9451,54.8422,1.6,-0.7874,54.7537,2.3677,-1.0823,54.1285,2.2209,-1.1162,54.8366,1.5557,-1.5879,56.3223,1.3916,-1.5853,56.4154,1.4535,-1.5744,56.0841,1.1273,-1.4972,56.4598,1.616,-1.5922,55.7213,0.7608};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=9 */
		private double[] getmand_Coord_6_877_point_9()
		{
			double[] value = {-1.5674,56.1713,-0.0973,-1.444,56.3725,0.056,-1.6128,55.1157,0.9458,-0.6752,54.0308,2.6003,1.5359,56.1032,1.2939,1.3474,54.8455,1.7307,0.8742,54.2497,2.1732,0.9009,54.6153,1.8057};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=1 */
		private double[] getNormal_6_878_vector_1()
		{
			double[] value = {-1.0,-0.0033,-0.0054,-1.0,-0.0032,-0.0066,-0.9999,-0.0027,0.0105,-0.9999,-0.0004,0.0117,-0.9999,-0.0108,0.007,-0.9999,-0.0128,0.0089,-0.9998,0.0152,0.0086,-0.9998,-0.0087,-0.0185,-0.9998,0.0157,-0.0132,-0.9998,-0.0218,-0.0028,-0.9998,-0.0033,0.0219,-0.9997,0.022,-0.0054,-0.9997,0.0226,0.0084,-0.9996,0.0262,0.0046,-0.9996,-0.017,0.0218,-0.9995,0.016,-0.0276,-0.9995,-0.0307,-0.0101,-0.9993,-0.0268,0.0253,-0.9993,0.0364,0.0108,-0.9992,0.0372,0.0172,-0.9991,0.0067,-0.041,-0.999,-0.0438,0.0055,-0.9988,0.0397,0.0278,-0.9988,0.049,0.0075,-0.9987,-0.0489,0.0166,-0.9986,-0.0521,0.0027,-0.9985,-0.0417,-0.0367,-0.9984,0.0079,-0.0552,-0.9984,-0.0491,0.0282,-0.9984,0.05,-0.0281,-0.9982,0.0598,0.0068,-0.9981,-0.0073,0.0609,-0.9981,0.0508,0.0344,-0.998,0.0633,0.0085,-0.9979,-0.0512,-0.0385,-0.9979,0.0327,0.0561,-0.9979,-0.0327,-0.0562,-0.9978,-0.0234,0.0614,-0.9977,-0.0175,0.0657,-0.9977,0.0678,-0.0091,-0.9976,0.0631,0.027,-0.9974,0.0683,0.0242,-0.9973,-0.0693,0.0232,-0.9973,0.0677,-0.0288,-0.9971,-0.0244,0.0714,-0.9971,0.0737,0.0171,-0.9971,-0.0523,-0.0548,-0.997,0.0631,-0.0442,-0.997,0.0709,-0.031,-0.9969,0.0688,-0.0369,-0.9969,0.0725,-0.0295,-0.9969,-0.0786,-0.0026,-0.9969,0.0769,0.0191,-0.9968,0.078,0.0198,-0.9967,-0.0026,0.081,-0.9967,0.0472,0.0659,-0.9966,0.0257,0.078,-0.9966,0.0804,0.0181,-0.9966,-0.0558,-0.0615,-0.9965,-0.0741,0.0398,-0.9964,0.0607,0.0589,-0.9963,-0.0457,0.0727,-0.9963,0.0785,0.0354,-0.9962,0.021,-0.0851,-0.9961,0.0816,-0.0327,-0.996,0.0889,0.0114,-0.9959,0.0905,-0.0079,-0.9958,0.0909,-0.0062,-0.9958,0.0251,0.0879,-0.9958,-0.0915,-0.0014,-0.9956,0.0897,-0.0283,-0.9954,-0.0108,-0.0947,-0.9954,0.0809,0.0515,-0.9953,0.0539,0.0806,-0.9953,-0.0355,0.0903,-0.9951,0.0596,-0.079,-0.995,0.0252,-0.0964,-0.995,-0.0901,0.0432,-0.9949,-0.0979,-0.023,-0.9949,-0.0533,-0.0855,-0.9949,-0.0627,0.0794,-0.9948,0.0205,0.0994,-0.9947,-0.0663,0.0784,-0.9947,0.1013,-0.0193,-0.9947,-0.0998,0.0259,-0.9946,0.0424,0.0951,-0.9945,0.1044,-0.0031,-0.9945,-0.0968,0.0407,-0.9944,-0.0057,0.1051,-0.9943,-0.0163,0.1054,-0.9941,-0.0977,0.0465,-0.9941,-0.0021,0.1084,-0.9941,0.0962,0.05,-0.9941,0.0737,-0.0796,-0.9941,0.0413,0.1004,-0.994,-0.0197,-0.1073,-0.994,0.0897,0.0625,-0.994,-0.0389,0.1027,-0.9939,0.1073,0.0267,-0.9939,-0.0122,0.11,-0.9938,0.0629,0.0914,-0.9936,-0.083,0.076,-0.9936,0.0049,-0.1127,-0.9935,-0.0212,-0.1115,-0.9935,-0.093,-0.0653,-0.9932,-0.0264,0.113,-0.9931,0.0109,-0.1168,-0.993,0.1135,0.0316,-0.993,0.0526,0.1058,-0.993,0.1095,-0.0448,-0.9928,0.0818,0.0873,-0.9927,0.1017,0.0649,-0.9926,-0.0925,0.0783,-0.9926,0.0994,0.0701,-0.9925,-0.0462,0.1129,-0.9924,0.0912,-0.0821,-0.9924,0.1189,-0.0304,-0.9924,0.0748,-0.0974,-0.9924,0.0498,-0.1125,-0.9923,0.0635,-0.1064,-0.9921,-0.0935,0.0839,-0.992,0.0519,0.1151,-0.992,-0.0024,-0.1264,-0.9918,0.1236,0.0336,-0.9917,0.0926,0.0896,-0.9916,0.0948,-0.0874,-0.9916,0.087,-0.0958,-0.9915,0.1022,0.0811,-0.9914,-0.0513,0.12,-0.9913,0.1318,-0.0072,-0.9912,-0.0344,0.1278,-0.9911,0.0417,-0.1264,-0.991,-0.0912,0.0976,-0.991,0.0131,-0.1335,-0.9908,0.1099,0.0788,-0.9908,-0.0951,0.0962,-0.9907,-0.0162,-0.1354,-0.9905,-0.1372,0.0039,-0.9905,0.1322,-0.0368,-0.9905,0.1039,-0.0898,-0.9904,0.1224,-0.0645,-0.9903,0.0402,-0.1331,-0.9903,0.0595,-0.1258,-0.9901,-0.0679,-0.123,-0.9901,0.0389,0.1351,-0.9901,0.0547,0.1296,-0.99,-0.0519,-0.1314,-0.9899,0.0718,-0.1221,-0.9899,0.0691,0.1238,-0.9898,-0.009,0.1419,-0.9897,0.1215,0.0756,-0.9896,-0.1432,-0.0118,-0.9895,0.0439,-0.1378,-0.9894,-0.0928,0.1115,-0.9894,-0.0737,-0.1251,-0.9894,0.1186,0.0843,-0.9893,0.0107,0.1452,-0.9893,0.1238,-0.0776,-0.9891,0.1415,-0.0412,-0.989,0.1011,0.1077,-0.9889,0.0693,-0.1311,-0.9889,0.059,-0.1363,-0.9889,0.1488,-0.0066,-0.9888,0.1375,0.058,-0.9888,-0.0759,0.1288,-0.9887,0.0198,0.1483,-0.9886,0.1419,0.0499,-0.9885,-0.0478,0.1432,-0.9884,0.0475,0.1442,-0.9884,0.1141,0.1002,-0.9884,0.1505,-0.0227,-0.9883,-0.1475,0.0379,-0.9883,0.0341,-0.1489,-0.9882,0.1404,-0.0603,-0.9882,0.0386,0.1479,-0.988,-0.0425,0.1488,-0.988,0.1239,0.0927,-0.9879,0.0333,-0.1513,-0.9879,0.1523,-0.0288,-0.9879,0.0629,-0.1418,-0.9878,-0.0819,0.1328,-0.9877,0.0825,-0.1328,-0.9876,-0.041,0.1515,-0.9874,0.0582,0.147,-0.9873,-0.0591,0.1473,-0.987,-0.074,-0.1424,-0.987,0.0809,-0.1388,-0.987,0.0501,0.1527,-0.987,0.1543,-0.0459,-0.9868,-0.1557,-0.0438,-0.9868,0.0266,0.1599,-0.9866,0.0251,0.1611,-0.9866,0.0337,-0.1598,-0.9866,0.0282,0.1609,-0.9865,0.1608,0.0322,-0.9864,0.0294,0.1616,-0.9864,-0.0805,0.1435,-0.9863,0.0768,-0.1463,-0.9862,0.1522,-0.0644,-0.9862,0.0538,0.1564,-0.9862,0.0458,-0.1593,-0.9861,0.132,-0.1013,-0.986,0.1264,-0.1092,-0.986,0.1523,-0.0685,-0.9859,0.0104,0.1668,-0.9858,0.1032,0.1323,-0.9858,-0.0309,0.165,-0.9858,-0.0723,0.1517,-0.9858,0.0929,0.1402,-0.9857,-0.0143,0.1676,-0.9857,-0.1598,0.0538,-0.9857,-0.0097,0.1684,-0.9856,-0.0226,0.1675,-0.9856,0.1184,0.1207,-0.9854,-0.0299,0.1674,-0.9854,0.0584,0.1599,-0.9854,0.0323,0.1674,-0.9853,0.1658,0.0414,-0.9852,0.1548,0.0735,-0.985,0.0705,0.1573,-0.985,0.1417,0.0987,-0.985,0.1471,-0.0906,-0.9849,0.0901,0.1475,-0.9848,0.077,0.1557,-0.9847,0.1635,0.0608,-0.9846,-0.0969,0.1454,-0.9845,-0.0222,0.1738,-0.9844,0.1719,0.0373,-0.9843,0.0992,-0.146,-0.9842,0.1636,0.0677,-0.9842,0.0526,0.1692,-0.9841,0.1776,-0.0025,-0.984,0.1231,0.1289,-0.984,0.0643,0.1663,-0.9838,0.0586,0.1692,-0.9838,0.0321,-0.1762,-0.9838,-0.0728,0.1638,-0.9838,0.1635,0.0741,-0.9837,0.0506,-0.1726,-0.9836,0.1068,-0.1456,-0.9835,-0.1456,-0.1072,-0.9835,-0.0382,0.177,-0.9835,0.1134,0.1413,-0.9834,0.1812,-0.0071,-0.9834,-0.0829,0.1614,-0.9834,0.005,-0.1814,-0.9834,0.1409,0.1147,-0.9832,0.1533,0.0988,-0.9831,-0.0554,0.1745,-0.983,0.0929,-0.1584,-0.983,0.1643,-0.0823,-0.9829,0.1674,0.0768,-0.9828,0.1792,0.044,-0.9826,-0.137,0.1254,-0.9823,0.0797,-0.1696,-0.9822,0.0862,-0.1667,-0.9821,0.1569,0.1045,-0.982,0.0808,-0.1706,-0.9819,0.0994,-0.1613,-0.9818,-0.1655,0.093,-0.9817,0.1151,-0.1514,-0.9817,-0.0351,-0.1872,-0.9817,0.0049,-0.1905,-0.9817,0.1877,0.0334,-0.9815,0.046,0.1858,-0.9815,-0.0618,0.1814,-0.9814,-0.1914,-0.0143,-0.9813,-0.1913,-0.0204,-0.981,-0.0726,0.1797,-0.9809,0.0996,0.1671,-0.9809,-0.0724,0.1806,-0.9808,-0.0203,-0.1939,-0.9808,-0.1417,0.1343,-0.9807,0.1594,0.113,-0.9806,0.0896,-0.1742,-0.9805,0.1157,-0.1586,-0.9805,-0.0282,-0.1944,-0.9805,0.1956,-0.0213,-0.9804,-0.0112,-0.1968,-0.9803,0.0757,-0.1824,-0.9802,0.1325,0.1472,-0.9801,-0.0435,0.1935,-0.9801,-0.0895,0.1772,-0.9799,0.1458,-0.1358,-0.9799,0.1713,0.102,-0.9798,0.1749,0.0969,-0.9796,0.1457,0.1383,-0.9796,0.1912,-0.0626,-0.9795,0.0619,-0.1918,-0.9794,0.0612,0.1923,-0.9794,0.1681,-0.1122,-0.9793,0.0661,-0.1912,-0.9791,-0.0797,-0.1871,-0.9788,0.0027,-0.2047,-0.9788,-0.0151,-0.2044,-0.9787,-0.0904,0.184,-0.9787,0.1658,-0.1207,-0.9787,-0.1503,0.14,-0.9785,0.0028,-0.2062,-0.9783,0.1533,-0.1395,-0.9783,-0.1861,-0.0914,-0.9782,0.1959,0.0682,-0.978,0.1988,-0.0629,-0.978,0.1031,0.1813,-0.9776,0.093,-0.1889,-0.9776,0.1773,-0.1136,-0.9775,0.0744,0.1973,-0.9775,0.1363,0.161,-0.9775,0.0055,-0.211,-0.9773,0.1522,-0.1472,-0.9773,-0.2043,0.0559,-0.9773,-0.0434,0.2074,-0.977,0.0453,-0.2085,-0.977,-0.0238,0.2121,-0.9769,0.1496,-0.1524,-0.9769,-0.1575,-0.1443,-0.9769,0.1528,-0.1496,-0.9768,0.0917,0.1938,-0.9768,0.1937,0.0919,-0.9766,-0.2076,-0.0555,-0.9766,-0.1511,0.1532,-0.9763,0.0629,0.2072,-0.9763,-0.1985,0.0865,-0.9763,0.1274,0.1751,-0.976,0.1032,-0.1918,-0.9759,0.2033,-0.0796,-0.9756,0.1079,-0.1913,-0.9756,-0.0899,-0.2004,-0.9756,0.2124,0.0562,-0.9754,0.1719,-0.1381,-0.9753,0.2177,-0.0366,-0.9753,-0.1594,0.1529,-0.9752,-0.1137,0.19,-0.9751,0.0997,0.1982,-0.975,-0.1271,0.1825,-0.9749,-0.1577,-0.1569,-0.9749,-0.0497,0.2171,-0.9749,0.0753,-0.2097,-0.9748,-0.2114,0.0713,-0.9748,0.0158,0.2226,-0.9747,-0.1168,0.1907,-0.9746,-0.1551,0.1615,-0.9746,0.1753,-0.1394,-0.9746,0.008,0.2239,-0.9745,0.1156,0.1924,-0.9745,0.2182,-0.0531,-0.9743,0.2206,0.045,-0.9743,0.1178,-0.1922,-0.9742,-0.1972,-0.1094,-0.9742,-0.0709,0.2142,-0.9742,-0.1034,-0.2007,-0.9742,0.062,0.2172,-0.9741,-0.0127,0.2256,-0.9741,-0.0995,0.2029,-0.9739,-0.0263,-0.2255,-0.9739,-0.1492,-0.1711,-0.9738,-0.1104,0.1986,-0.9737,0.0203,-0.2268,-0.9737,-0.1136,0.1975,-0.9736,0.2104,0.0889,-0.9735,0.1721,-0.1504,-0.9735,-0.2204,0.0604,-0.9735,-0.0346,-0.226,-0.9733,0.1373,0.184,-0.9733,0.1881,0.1318,-0.9732,0.2299,-0.0035,-0.9731,0.1779,-0.1461,-0.973,0.1688,-0.1574,-0.973,-0.1046,0.2057,-0.9729,0.0915,-0.2123,-0.9728,0.1907,0.1312,-0.9728,0.0574,0.2243,-0.9727,0.0094,0.2318,-0.9727,0.1231,-0.1968,-0.9726,0.0688,-0.2222,-0.9725,0.2256,-0.0576,-0.9724,-0.0671,0.2235,-0.9724,0.2266,0.0562,-0.9723,-0.1926,-0.1327,-0.9722,0.156,-0.1745,-0.9722,-0.0315,0.2321,-0.9722,-0.1243,0.1985,-0.9719,0.0058,0.2352,-0.9719,0.0722,-0.2242,-0.9714,0.0221,0.2362,-0.9714,0.2202,-0.0888,-0.9713,0.1537,0.1813,-0.9713,-0.0491,0.2327,-0.9711,0.0217,-0.2375,-0.9711,-0.0199,0.2379,-0.971,0.086,-0.223,-0.9708,0.18,0.1586,-0.9706,-0.1858,-0.1527,-0.9705,-0.0591,0.2338,-0.9704,-0.1771,0.1641,-0.9704,0.0812,0.2275,-0.9704,0.1079,-0.2162,-0.9701,0.053,0.2369,-0.9699,0.2224,-0.0992,-0.9695,0.0098,-0.2451,-0.9694,0.2435,-0.0313,-0.9694,-0.0806,0.232,-0.9692,-0.1526,-0.1933,-0.9692,-0.0335,-0.244,-0.9692,0.0605,0.2388,-0.9692,0.0156,-0.246,-0.9691,0.1053,-0.2229,-0.969,0.0295,0.2454,-0.9687,0.2434,-0.0498,-0.9685,0.0605,0.2415,-0.9685,-0.006,0.249,-0.9684,0.2458,-0.0411,-0.9684,-0.0116,-0.2492,-0.9683,0.1152,-0.2218,-0.9681,0.0129,0.2502,-0.968,0.0903,0.234,-0.968,-0.2378,0.08,-0.968,-0.135,0.2116,-0.9679,0.0604,0.2442,-0.9677,-0.2338,0.0938,-0.9677,0.092,-0.2347,-0.9676,0.1356,0.2131,-0.9675,0.0805,0.2398,-0.9674,0.2531,-0.007,-0.9673,0.2305,-0.1059,-0.9672,-0.0654,0.2454,-0.9672,-0.1344,-0.2155,-0.9672,0.1972,-0.1602,-0.9668,0.1765,-0.1847,-0.9666,0.0034,0.2562,-0.9665,-0.2362,-0.1008,-0.9663,-0.0124,0.2573,-0.9662,0.0622,0.2503,-0.9661,-0.0804,0.2454,-0.9659,-0.0187,-0.2581,-0.9659,0.1146,-0.2322,-0.9658,0.259,0.0101,-0.9657,0.0716,0.2495,-0.9656,0.2191,-0.1399,-0.9655,0.2586,0.0302,-0.9655,-0.2593,-0.0242,-0.9655,-0.1497,0.2133,-0.9654,0.2509,-0.0716,-0.9652,-0.1176,0.2334,-0.9652,-0.1125,0.236,-0.965,0.2306,-0.1248,-0.965,0.0298,0.2606,-0.9649,0.1691,-0.2008,-0.9645,-0.2578,-0.0567,-0.9644,0.2577,-0.0596,-0.9644,0.0378,0.2619,-0.9643,-0.073,-0.2546,-0.9643,-0.254,0.0753,-0.9642,0.1826,-0.1922,-0.9642,0.0235,0.2641,-0.9641,0.2601,-0.0543,-0.9639,0.1626,-0.211,-0.9638,0.0622,0.2591,-0.9638,-0.0794,0.2547,-0.9637,0.043,0.2633,-0.9637,-0.0013,-0.2671,-0.9633,-0.119,0.2407,-0.9632,-0.052,0.2636,-0.9632,-0.0897,0.2535,-0.963,0.2687,0.0198,-0.963,0.2066,-0.173,-0.963,0.2694,-0.0084,-0.9629,0.2686,-0.027,-0.9626,0.2097,-0.1714,-0.9625,-0.1734,0.2086,-0.9624,0.0802,-0.2593,-0.9624,-0.1299,0.2387,-0.962,0.1997,0.186,-0.962,0.2725,-0.0184,-0.9618,-0.1042,0.253,-0.9617,-0.0107,0.2738,-0.9615,-0.1947,0.194,-0.9615,-0.193,0.1958,-0.9615,0.2375,0.1386,-0.9612,0.2263,0.1574,-0.9611,0.0041,-0.2761,-0.961,0.2617,0.0895,-0.9609,0.2397,0.1387,-0.9604,-0.0993,0.2603,-0.9602,-0.0062,0.2791,-0.9602,-0.0092,0.2792,-0.9601,-0.0244,0.2786,-0.96,0.2685,-0.079,-0.9598,0.0834,-0.2678,-0.9592,0.004,-0.2827,-0.959,-0.1103,0.2612,-0.9589,-0.17,0.227,-0.9589,0.0263,0.2826,-0.9585,-0.0704,0.2763,-0.9584,0.2537,0.1309,-0.9582,-0.1042,0.2665,-0.9582,0.1891,0.2149,-0.9578,0.036,0.2851,-0.9577,0.1488,0.2465,-0.9576,-0.2454,0.1507,-0.9574,0.0435,0.2856,-0.9573,0.241,0.1598,-0.9573,-0.0701,0.2806,-0.9572,0.1864,0.2216,-0.957,0.2282,0.1794,-0.9569,0.2573,-0.1346,-0.9568,0.2838,-0.0627,-0.9568,-0.2788,-0.0825,-0.9565,-0.0179,0.2911,-0.9565,-0.0225,0.291,-0.9564,-0.0692,0.2839,-0.9563,0.2914,0.0218,-0.956,0.1846,-0.2279,-0.956,0.1536,-0.2501,-0.956,0.2671,0.1217,-0.9558,0.178,-0.2341,-0.9557,0.1541,-0.2509,-0.9557,-0.0528,0.2897,-0.9555,-0.0945,0.2796,-0.9554,-0.0031,0.2953,-0.9553,-0.026,0.2945,-0.9552,-0.0308,-0.2945,-0.9552,0.1331,0.2645,-0.9549,0.2921,-0.0524,-0.9549,0.0933,-0.2819,-0.9549,-0.0911,0.2827,-0.9549,0.2402,0.1748,-0.9549,-0.074,0.2877,-0.9546,0.0111,0.2978,-0.9545,0.1366,-0.2652,-0.9543,-0.2347,-0.1849,-0.9542,0.2107,0.2123,-0.9542,0.2959,-0.045,-0.9541,-0.0708,-0.2911,-0.9539,0.019,-0.2996,-0.9537,0.1851,-0.2371,-0.9536,-0.1716,0.2475,-0.9534,-0.1261,0.2741,-0.9532,0.0446,0.2989,-0.9532,-0.0794,0.2917,-0.953,0.1286,-0.2741,-0.953,0.1796,0.2439,-0.9529,-0.1318,0.2732,-0.9528,-0.0349,0.3016,-0.9527,0.0611,-0.2976,-0.9526,0.2289,0.2004,-0.9524,0.1368,-0.2724,-0.9524,0.1424,-0.2696,-0.9523,0.2672,-0.1476,-0.9523,0.1747,-0.2504,-0.9522,0.2216,0.2101,-0.9521,0.2732,0.1374,-0.9515,0.0978,-0.2916,-0.9514,0.18,-0.2498,-0.9514,0.3034,0.0533,-0.9512,0.2495,-0.1814,-0.9508,-0.2061,-0.2312,-0.9508,-0.1149,0.2877,-0.9507,0.223,-0.2155,-0.9507,0.2335,-0.2042,-0.9506,0.0318,0.3088,-0.9505,-0.0553,0.3058,-0.9504,-0.2837,-0.1275,-0.9503,0.0213,0.3105,-0.9503,0.1003,0.2946,-0.9502,-0.3112,-0.0177,-0.9502,0.0283,-0.3104,-0.9501,-0.2311,0.2098,-0.95,0.3122,0.0037,-0.95,0.0478,-0.3085,-0.9499,0.2221,-0.2197,-0.9495,-0.1826,0.2552,-0.9494,-0.1307,0.2855,-0.9494,0.0713,0.3058,-0.9494,0.0833,-0.3029,-0.9493,-0.0722,0.3058,-0.9493,-0.0435,-0.3112,-0.9493,0.1088,0.2949,-0.9492,0.1736,-0.2623,-0.9492,-0.0612,0.3087,-0.949,0.0807,0.3047,-0.9489,-0.1137,0.2945,-0.9488,-0.1211,-0.2916,-0.9487,-0.0723,0.3077,-0.9487,0.3143,-0.0352,-0.9485,0.0319,0.315,-0.9484,-0.2715,-0.1635,-0.9481,0.1783,-0.2634,-0.9481,0.1065,-0.2997,-0.948,-0.1615,0.2744,-0.948,0.282,0.1479,-0.9478,-0.0734,0.3102,-0.9477,0.3051,-0.0941,-0.9476,0.1116,-0.2994,-0.9475,0.0211,0.3189,-0.9474,-0.3202,0.0044,-0.9473,-0.1629,0.2757,-0.9473,0.3184,0.0352,-0.9473,0.1952,-0.2541,-0.947,-0.0992,0.3054,-0.947,0.0852,-0.3098,-0.9469,0.2459,-0.2073,-0.9468,0.0437,-0.3187,-0.9468,0.0191,0.3213,-0.9468,-0.0919,-0.3084,-0.9467,-0.0306,-0.3208,-0.9466,0.0338,0.3206,-0.9463,-0.323,-0.0088,-0.9463,-0.152,-0.2854,-0.9462,-0.0115,0.3233,-0.9461,0.0221,0.3231,-0.9461,0.3055,0.1078,-0.9459,0.2992,-0.1254,-0.9459,-0.0288,0.3232,-0.9458,-0.0622,0.3188,-0.9458,-0.0654,0.3182,-0.9456,0.3241,0.0283,-0.9455,0.085,-0.3142,-0.9454,0.2814,-0.1641,-0.9453,0.0656,0.3197,-0.9452,-0.0413,0.3238,-0.9452,0.3028,0.1219,-0.9449,-0.0102,-0.3272,-0.9448,0.0747,-0.3191,-0.9448,-0.1104,0.3086,-0.9447,-0.159,-0.287,-0.9445,-0.0677,0.3215,-0.9444,-0.1056,0.3113,-0.9444,-0.1448,0.2951,-0.9444,-0.1776,0.2767,-0.9443,-0.1872,0.2705,-0.9443,0.0829,-0.3184,-0.9443,0.1854,-0.2719,-0.9443,0.0575,0.3241,-0.9442,0.2863,0.163,-0.944,-0.1043,-0.313,-0.9439,0.1014,0.3142,-0.9436,0.3223,0.0761,-0.9435,-0.0347,0.3295,-0.9435,0.3021,-0.1362,-0.9435,0.093,-0.3182,-0.9434,-0.1173,0.3101,-0.9434,0.3313,0.0151,-0.9434,0.0321,0.3302,-0.9433,0.1534,-0.2944,-0.9432,0.2872,-0.1668,-0.943,-0.0941,0.3192,-0.9429,0.1518,0.2964,-0.9428,-0.0408,0.3308,-0.9427,-0.2303,0.2413,-0.9427,0.0262,0.3326,-0.9427,0.2822,0.1782,-0.9427,0.1843,-0.2782,-0.9426,0.329,-0.0567,-0.9422,0.1995,-0.269,-0.942,-0.1058,0.3184,-0.942,-0.0784,0.3264,-0.9419,-0.1157,0.3153,-0.9417,0.1959,0.2735,-0.9416,0.1675,-0.292,-0.9414,-0.1158,0.3167,-0.9414,-0.0631,0.3312,-0.9414,-0.2573,0.2183,-0.9412,-0.0356,-0.3358,-0.9412,0.2719,-0.2005,-0.941,0.2513,-0.2267,-0.941,0.0989,0.3237,-0.9408,0.0482,0.3354,-0.9407,-0.07,0.332,-0.9405,0.2543,-0.2252,-0.9405,0.3398,-0.0034,-0.9405,0.2832,-0.1879,-0.9403,0.1757,-0.2914,-0.9401,-0.3409,0.0014,-0.9401,0.3122,0.1372,-0.9399,0.3051,0.1532,-0.9399,0.0678,-0.3347,-0.9399,-0.1121,0.3225,-0.9399,0.2722,-0.2062,-0.9398,-0.0838,0.3312,-0.9398,0.3377,0.0528,-0.9397,0.3307,-0.0873,-0.9396,-0.2284,-0.255,-0.9394,0.0567,0.338,-0.9394,-0.3177,0.1287,-0.9391,-0.0629,0.3378,-0.9391,0.3103,-0.1478,-0.939,0.0457,-0.341,-0.9388,-0.0719,0.3368,-0.9388,-0.0672,0.3377,-0.9383,0.1815,-0.2945,-0.9382,0.1829,0.2936,-0.9381,0.0388,0.3441,-0.9379,0.1257,-0.3234,-0.9377,0.3451,-0.0401,-0.9377,0.1247,-0.3243,-0.9376,0.1921,0.2897,-0.9376,0.0672,0.3411,-0.9376,0.0254,0.3467,-0.9372,-0.1692,0.3052,-0.9371,-0.0194,0.3485,-0.937,0.3311,-0.1113,-0.937,-0.0097,0.3493,-0.9368,0.1232,0.3274,-0.9367,0.3235,0.1338,-0.9366,0.3391,0.0878,-0.9366,0.299,-0.1828,-0.9363,0.1452,0.3197,-0.9363,0.3212,-0.142,-0.9361,-0.2527,0.2447,-0.936,0.179,-0.3031,-0.9359,0.2923,-0.1966,-0.9359,0.015,-0.3519,-0.9359,0.3192,-0.1491,-0.9359,0.3147,-0.1585,-0.9357,0.3424,-0.0852,-0.9356,0.222,0.2744,-0.9356,-0.1415,-0.3235,-0.9356,-0.0901,0.3414,-0.9356,-0.1537,0.318,-0.9351,0.0461,0.3514,-0.9349,0.3318,0.1262,-0.9348,-0.1458,-0.3237,-0.9347,-0.2171,-0.2813,-0.9347,-0.0729,0.3478,-0.9347,-0.0596,0.3505,-0.9346,0.0883,-0.3446,-0.9346,-0.1518,0.3217,-0.9346,0.064,0.35,-0.9344,0.069,-0.3495,-0.9343,0.0167,0.3561,-0.9343,-0.0405,-0.3543,-0.934,0.2518,0.2534,-0.9339,-0.1339,-0.3314,-0.9339,-0.2672,-0.2374,-0.9338,-0.0636,0.352,-0.9338,0.0118,0.3575,-0.9335,-0.2759,-0.229,-0.9335,0.0731,-0.3511,-0.9334,-0.1804,-0.3103,-0.9334,0.2515,0.2561,-0.9333,0.1564,0.3232,-0.9333,0.2836,0.2203,-0.9327,-0.1589,-0.3236,-0.9327,0.1449,0.3303,-0.9326,0.1205,0.3403,-0.9325,0.2887,0.2169,-0.9322,-0.0245,0.3611,-0.9319,0.3104,0.1878,-0.9318,0.3121,-0.1855,-0.9317,0.3463,-0.1098,-0.9315,0.3614,-0.0408,-0.9313,-0.0836,-0.3544,-0.9312,0.1042,-0.3493,-0.9312,0.3506,0.0997,-0.9311,-0.0883,0.3539,-0.9311,-0.3058,0.1988,-0.9311,0.1297,-0.341,-0.9309,0.038,-0.3634,-0.9303,0.3633,0.0506,-0.9302,-0.3013,-0.2097,-0.9299,-0.1674,-0.3274,-0.9299,0.27,-0.2499,-0.9298,0.1316,-0.3437,-0.9298,0.1663,-0.3283,-0.9295,-0.0123,0.3685,-0.9293,0.3692,-0.0055,-0.9291,0.0317,-0.3684,-0.9291,0.1853,-0.32,-0.9291,-0.0496,0.3665,-0.929,0.0639,0.3644,-0.929,-0.0522,-0.3664,-0.929,0.2032,-0.3094,-0.9287,-0.298,-0.2206,-0.9285,-0.0414,-0.369,-0.9284,0.2905,0.2319,-0.9283,0.341,0.1485,-0.928,0.0413,-0.3703,-0.928,0.0609,0.3676,-0.9279,0.0231,-0.3721,-0.9278,-0.0309,0.3719,-0.9276,-0.3278,0.1791,-0.9275,0.1364,0.3479,-0.9275,-0.0524,0.3701,-0.9274,-0.1038,-0.3594,-0.9273,-0.0009,0.3743,-0.9272,-0.1548,0.3412,-0.927,0.3631,-0.0937,-0.927,0.2956,-0.2308,-0.927,0.1824,0.3278,-0.9269,-0.0059,0.3752,-0.9269,0.2212,0.3033,-0.9268,0.0441,0.373,-0.9266,0.3253,0.1885,-0.9266,0.3655,-0.0888,-0.9262,0.3733,0.0529,-0.926,-0.0325,-0.3762,-0.9259,0.2474,-0.2856,-0.9258,-0.3742,-0.0532,-0.9256,0.1767,-0.3346,-0.9253,0.1397,0.3525,-0.9247,-0.0125,-0.3804,-0.9241,0.3446,0.165,-0.9241,0.0552,0.3782,-0.9237,0.3625,0.1238,-0.9237,0.3808,0.0429,-0.9235,0.2387,0.3002,-0.923,0.2854,-0.2581,-0.923,0.3845,0.0152,-0.923,0.2029,0.327,-0.9229,0.1286,-0.3629,-0.9229,0.2775,0.2669,-0.9228,0.2652,0.2794,-0.9223,0.0227,-0.3858,-0.9222,0.2859,-0.2603,-0.9222,0.3491,-0.1663,-0.922,0.3376,0.1898,-0.9218,0.2025,0.3306,-0.9215,0.0633,-0.3831,-0.9213,0.3688,-0.1232,-0.9213,-0.1118,-0.3724,-0.9213,-0.0885,-0.3787,-0.921,-0.342,0.1867,-0.9209,0.3824,0.0759,-0.9208,-0.141,0.3637,-0.9206,-0.0658,0.3849,-0.9206,0.3855,-0.0622,-0.9205,-0.0921,0.3798,-0.9204,-0.0765,0.3833,-0.9198,-0.2649,-0.2895,-0.9196,0.3418,-0.1937,-0.919,0.1264,-0.3735,-0.9187,0.0471,-0.3921,-0.9186,0.3951,-0.0105,-0.9183,0.1088,0.3806,-0.918,0.1011,-0.3833,-0.9176,0.1292,-0.3759,-0.9174,0.2165,0.3338,-0.9174,0.3704,-0.1453,-0.9174,-0.3598,0.1701,-0.9173,-0.1048,0.3841,-0.9173,-0.0296,0.3971,-0.9173,-0.3574,0.1758,-0.9172,-0.2125,0.3371,-0.9171,-0.132,0.3761,-0.9169,0.0118,0.3988,-0.9168,-0.3023,-0.2609,-0.9167,0.2278,-0.3283,-0.9165,0.0802,-0.3919,-0.9163,0.3939,0.073,-0.9162,-0.0353,0.3991,-0.9162,0.3072,0.2575,-0.9159,0.3966,0.0609,-0.9153,-0.4021,-0.023,-0.9153,0.2851,0.2846,-0.9147,0.1925,-0.3552,-0.9142,0.2338,-0.3309,-0.9141,0.0102,0.4053,-0.9141,0.043,-0.4032,-0.914,-0.0122,0.4054,-0.9139,0.2938,-0.2801,-0.9137,0.3516,-0.2036,-0.9137,0.1007,0.3938,-0.9137,0.3367,-0.2277,-0.9134,-0.0093,0.4071,-0.9131,-0.15,0.3792,-0.913,-0.3952,-0.1011,-0.9128,-0.0751,0.4014,-0.9124,0.1755,0.3697,-0.9123,0.3993,0.0904,-0.912,0.0009,0.4102,-0.912,0.0195,0.4098,-0.9116,0.2285,-0.3418,-0.9114,0.4065,0.0642,-0.9113,0.0171,0.4113,-0.9113,0.2332,-0.3394,-0.9111,-0.1703,-0.3754,-0.9109,0.202,0.3599,-0.9108,0.2622,-0.3188,-0.9103,0.3553,0.2124,-0.9102,0.2583,-0.3236,-0.91,0.2227,-0.3497,-0.91,0.4102,0.061,-0.9097,-0.1182,-0.3981,-0.9096,0.3778,0.1728,-0.9095,-0.0284,0.4148,-0.909,0.3332,-0.2504,-0.909,-0.4097,0.0767,-0.9089,0.2468,-0.3362,-0.9086,-0.0545,0.4141,-0.9086,0.3445,-0.2363,-0.9086,0.1736,-0.38,-0.9085,-0.0886,0.4083,-0.9079,-0.0291,0.4181,-0.9079,0.2182,-0.3579,-0.9076,0.3289,-0.2608,-0.9076,0.1528,-0.391,-0.9075,0.256,-0.3331,-0.9073,0.2883,-0.3063,-0.9072,-0.3515,0.231,-0.907,0.1867,-0.3775,-0.9068,0.3891,0.1622,-0.9065,0.1366,-0.3994,-0.9065,0.1016,0.4099,-0.9064,0.3194,-0.2766,-0.9062,0.1609,0.391,-0.9061,0.4222,0.0272,-0.9061,0.3397,0.2522,-0.906,0.2698,-0.3263,-0.9059,-0.3873,-0.1711,-0.9055,-0.162,-0.3922,-0.9054,-0.4197,-0.0642,-0.9054,-0.4033,-0.1328,-0.9054,-0.3145,0.2853,-0.9053,0.3446,-0.2485,-0.9052,0.4233,-0.0388,-0.9049,-0.0711,0.4197,-0.9048,-0.0847,-0.4174,-0.9048,-0.2043,0.3737,-0.9048,-0.0346,0.4245,-0.9045,0.0128,0.4263,-0.9043,0.4123,-0.1107,-0.9042,0.2948,0.3089,-0.9042,0.297,0.3071,-0.9039,0.0083,0.4276,-0.9031,-0.2415,-0.355,-0.903,0.4253,-0.0604,-0.9029,-0.0581,0.4259,-0.9026,0.2801,-0.3268,-0.9025,0.3977,-0.1651,-0.9025,0.1762,-0.393,-0.9024,0.071,0.4249,-0.9022,0.393,0.1779,-0.9021,0.1747,0.3946,-0.9021,0.4172,0.1105,-0.9016,0.0623,0.428,-0.9013,0.2087,-0.3795,-0.9012,-0.084,0.4253,-0.9003,-0.0735,-0.429,-0.9003,-0.0958,0.4247,-0.9002,0.2881,0.3267,-0.8995,0.2008,0.388,-0.8994,0.1597,-0.4069,-0.8994,0.0829,0.4293,-0.8993,0.2899,-0.3275,-0.8992,0.3196,-0.2988,-0.899,0.3463,-0.2681,-0.8985,-0.4362,-0.0499,-0.8983,0.4281,0.0993,-0.8982,0.2304,0.3743,-0.8981,0.2941,-0.3269,-0.8974,0.3642,0.2492,-0.897,0.2226,0.3819,-0.8966,0.2808,-0.3424,-0.8962,0.3885,-0.2143,-0.896,0.4131,-0.1625,-0.8959,0.3522,0.2707,-0.8959,0.1893,0.402,-0.8955,0.4206,0.1458,-0.8954,0.0702,0.4396,-0.8954,0.2171,-0.3886,-0.8953,0.2182,-0.3883,-0.8953,-0.3942,0.2073,-0.8952,0.1848,-0.4055,-0.895,0.2056,-0.3958,-0.895,0.2853,-0.343,-0.8947,0.1276,0.4279,-0.8947,0.0187,-0.4463,-0.8947,0.3759,-0.2415,-0.8944,0.3665,-0.2564,-0.8941,-0.026,0.447,-0.8938,-0.3601,-0.2671,-0.8929,0.3589,0.2719,-0.8929,0.4488,0.0368,-0.8926,0.4447,0.0739,-0.8923,0.0921,0.442,-0.8922,0.3071,0.3311,-0.8921,-0.0782,0.4449,-0.892,-0.0476,0.4496,-0.8918,0.2224,-0.3939,-0.8918,0.1306,-0.4332,-0.8916,0.2289,-0.3908,-0.8913,0.2073,-0.4032,-0.8911,0.3996,-0.215,-0.891,0.0973,0.4435,-0.8907,0.4512,0.0553,-0.8906,-0.3663,0.2696,-0.8901,0.2132,-0.4027,-0.8897,-0.2348,-0.3915,-0.8897,0.3528,-0.2899,-0.8897,0.0518,-0.4537,-0.8894,0.4567,0.0186,-0.8891,0.328,-0.3192,-0.8889,0.3224,-0.3255,-0.8888,0.0825,0.4509,-0.8886,0.3437,-0.3037,-0.8886,0.3054,-0.3423,-0.8885,-0.4274,-0.1669,-0.8873,0.1634,-0.4313,-0.887,-0.2313,-0.3996};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=2 */
		private double[] getNormal_6_878_vector_2()
		{
			double[] value = {-0.8866,0.3944,0.2416,-0.8866,0.0218,0.4621,-0.8862,0.2613,-0.3825,-0.8862,-0.2062,0.4149,-0.8861,-0.2569,-0.3857,-0.8861,0.4424,0.1385,-0.8858,0.0121,0.4639,-0.8856,0.3038,-0.3513,-0.8854,0.26,0.3852,-0.8851,-0.3657,0.2879,-0.885,-0.0667,0.4608,-0.8849,-0.2388,-0.3999,-0.8841,-0.0562,-0.464,-0.8839,0.0054,0.4676,-0.8839,0.0186,0.4673,-0.8838,0.0123,0.4678,-0.8837,0.3812,0.2715,-0.8837,0.0014,0.468,-0.8837,0.245,0.3988,-0.8837,0.2593,-0.3897,-0.8836,0.2106,-0.4183,-0.8831,0.1763,0.4349,-0.8828,0.4683,0.0365,-0.8824,-0.1529,-0.4449,-0.8824,0.1265,0.4531,-0.882,0.1776,0.4365,-0.882,0.4621,0.0926,-0.8815,0.3472,0.3198,-0.8813,0.2355,-0.4097,-0.8813,0.3159,0.3515,-0.8811,0.3673,-0.298,-0.8803,0.3684,0.2988,-0.8803,0.0801,-0.4676,-0.8802,0.4127,-0.2346,-0.8799,0.475,-0.0147,-0.8797,-0.0809,-0.4686,-0.8797,0.0304,0.4746,-0.8797,0.4753,0.0167,-0.8792,-0.25,-0.4056,-0.879,0.2112,0.4274,-0.8789,-0.3293,-0.3452,-0.8788,0.0241,0.4766,-0.8787,0.4686,0.0911,-0.8787,0.1554,-0.4514,-0.8785,0.1818,0.4418,-0.8782,0.3785,-0.2926,-0.8781,0.0299,0.4776,-0.878,0.146,0.4558,-0.878,-0.3908,0.2763,-0.8779,-0.2495,0.4086,-0.8779,-0.4235,-0.2234,-0.8775,0.3165,-0.3602,-0.8768,0.17,-0.4497,-0.8767,0.1814,-0.4455,-0.8765,0.1025,0.4704,-0.8764,0.3694,-0.3091,-0.8761,0.2396,-0.4184,-0.8759,0.3354,-0.347,-0.8758,0.3965,0.2753,-0.8755,0.3281,0.3547,-0.8752,0.4578,-0.1566,-0.8751,0.2127,-0.4348,-0.8751,-0.4008,-0.2713,-0.8746,0.3142,0.3692,-0.8746,0.0463,0.4826,-0.8745,0.4851,0.0053,-0.8743,0.1368,-0.4656,-0.8743,0.0137,-0.4852,-0.8742,0.3057,0.3773,-0.874,0.4355,0.2155,-0.874,0.476,0.0979,-0.874,0.4699,-0.1239,-0.8739,0.3441,-0.3434,-0.8738,0.0179,0.4859,-0.8737,0.4854,-0.0305,-0.8737,0.4475,0.1911,-0.8736,-0.0564,0.4833,-0.8735,-0.0252,0.4862,-0.8734,-0.1024,0.4761,-0.8731,0.0855,-0.48,-0.8729,0.484,0.0611,-0.8729,0.3302,0.3592,-0.8726,-0.1443,0.4666,-0.8723,0.3054,-0.3819,-0.8723,0.3264,0.3641,-0.8722,-0.1029,0.4782,-0.8722,0.3609,-0.3302,-0.8719,-0.2955,-0.3905,-0.8718,0.4566,0.1774,-0.8718,0.1208,-0.4747,-0.8715,-0.0209,0.49,-0.8714,-0.0647,0.4863,-0.8713,0.0819,0.4839,-0.8712,0.0168,0.4906,-0.8711,0.4432,-0.2114,-0.8708,0.4915,0.016,-0.8707,0.2703,0.4108,-0.8705,0.1509,-0.4684,-0.8705,0.4669,-0.1557,-0.8704,0.2743,0.4088,-0.8702,0.1851,-0.4565,-0.87,0.2513,-0.4241,-0.8696,0.1705,-0.4633,-0.8693,0.1773,-0.4614,-0.8692,0.1027,0.4836,-0.8689,-0.0421,-0.4932,-0.8689,0.4421,0.2227,-0.8687,0.4382,0.2309,-0.8684,0.1981,-0.4545,-0.8682,-0.4755,-0.1417,-0.8681,-0.0782,0.4903,-0.8676,0.3252,-0.376,-0.8676,0.0984,0.4874,-0.8675,-0.1302,-0.4801,-0.867,0.3229,0.3796,-0.8669,0.4454,-0.2238,-0.8668,0.4133,-0.279,-0.8667,-0.1293,0.4817,-0.8666,0.3249,-0.3786,-0.8664,0.4988,-0.0255,-0.8663,-0.0955,0.4902,-0.866,0.4177,0.2747,-0.866,0.4087,-0.2881,-0.8649,-0.2473,-0.4367,-0.8646,0.3943,0.3113,-0.8646,0.4974,-0.0708,-0.8644,0.1258,-0.4869,-0.8641,0.45,-0.2252,-0.8641,0.0838,-0.4963,-0.8639,-0.1105,0.4913,-0.8637,0.1511,-0.4808,-0.8634,-0.1113,0.4921,-0.8631,0.0234,0.5045,-0.8626,0.2298,-0.4506,-0.8625,-0.1625,0.4794,-0.8623,-0.1015,0.496,-0.8622,0.052,0.5038,-0.8621,0.1979,-0.4665,-0.8619,0.2392,-0.4471,-0.8619,0.4129,0.2945,-0.8616,0.2378,-0.4485,-0.8614,0.2538,0.44,-0.8611,0.1477,-0.4865,-0.861,0.2213,-0.458,-0.8606,-0.3417,-0.3776,-0.86,-0.2478,-0.4461,-0.8598,0.0267,0.51,-0.8598,0.2372,-0.4523,-0.8597,-0.3802,-0.3411,-0.8596,0.3892,-0.3311,-0.8595,0.1605,0.4852,-0.859,-0.1331,0.4943,-0.859,-0.4543,-0.2361,-0.8589,0.0781,-0.5062,-0.8588,-0.2229,-0.4613,-0.8587,0.357,-0.3676,-0.8587,-0.0718,0.5074,-0.8587,0.0332,0.5115,-0.8585,0.5057,0.0848,-0.8585,0.1175,-0.4992,-0.8584,0.4903,-0.1508,-0.8583,-0.4823,0.1756,-0.8581,0.2974,-0.4186,-0.8578,-0.2884,-0.4255,-0.8577,0.0866,0.5068,-0.8576,0.1191,0.5003,-0.8575,0.2353,0.4575,-0.8574,-0.1754,-0.4837,-0.8572,0.4618,-0.2279,-0.8571,0.4639,0.224,-0.8566,0.2104,-0.4711,-0.8563,0.1763,-0.4854,-0.8562,0.5082,0.0932,-0.8561,0.0301,0.5159,-0.8561,0.3549,-0.3757,-0.8557,0.0307,0.5166,-0.8554,0.3863,-0.3452,-0.8553,0.2855,-0.4324,-0.8552,0.3422,0.3893,-0.8552,0.439,0.2756,-0.8551,-0.2113,0.4734,-0.8551,-0.1108,0.5064,-0.855,0.2359,-0.4618,-0.855,0.4476,0.2618,-0.8546,0.0788,0.5133,-0.8541,-0.2611,0.4498,-0.854,-0.0457,0.5183,-0.8538,0.1843,-0.4868,-0.8536,-0.0917,-0.5128,-0.8535,-0.4605,0.2438,-0.8535,-0.0037,0.5211,-0.8534,0.315,0.4152,-0.8533,0.0102,0.5214,-0.8531,-0.1403,0.5025,-0.853,0.2028,0.481,-0.8529,0.4898,0.1809,-0.8528,-0.5192,-0.0563,-0.8524,0.3543,0.3847,-0.852,0.2883,-0.437,-0.8519,0.4578,0.2543,-0.8516,-0.0546,0.5214,-0.8513,0.0581,0.5215,-0.8512,0.5243,-0.0258,-0.8505,0.2492,0.4632,-0.8504,-0.5254,-0.03,-0.85,0.2821,-0.4448,-0.8499,-0.02,-0.5266,-0.8499,0.2423,-0.468,-0.8498,-0.0573,0.524,-0.8498,-0.0179,0.5268,-0.8497,0.3376,0.405,-0.8495,0.1685,0.5,-0.8493,-0.0856,0.5209,-0.8492,0.5055,0.1529,-0.849,0.4073,0.3365,-0.8488,0.3982,-0.3478,-0.8482,0.4388,-0.2967,-0.8479,0.4646,-0.2553,-0.8477,0.1819,0.4983,-0.8474,0.4112,0.3358,-0.8471,0.4219,-0.3231,-0.8471,0.3079,0.4332,-0.8468,0.012,0.5318,-0.8463,0.3857,-0.3673,-0.8463,0.1439,0.5129,-0.8463,0.5237,-0.0978,-0.8461,0.1729,-0.5042,-0.8456,0.5275,0.0819,-0.8455,0.307,0.4369,-0.8452,0.3195,-0.4283,-0.8452,0.2125,0.4904,-0.845,-0.0395,0.5333,-0.845,0.534,-0.0295,-0.8449,0.2852,-0.4525,-0.8448,0.2265,-0.4848,-0.8447,0.3698,-0.3869,-0.8438,-0.3513,-0.4058,-0.8431,0.4298,-0.3231,-0.8431,0.3175,-0.434,-0.8424,0.5379,0.0332,-0.8423,0.3577,-0.4033,-0.8418,-0.1031,0.5298,-0.8418,0.4929,-0.2202,-0.8416,0.2633,-0.4715,-0.8412,0.1609,-0.5162,-0.8412,0.1716,0.5128,-0.841,0.227,0.4911,-0.8409,0.2621,0.4736,-0.8405,-0.408,-0.3566,-0.8404,0.2314,0.4901,-0.8401,-0.0758,-0.5371,-0.8401,0.5237,-0.1416,-0.8399,-0.1581,0.5193,-0.8398,0.4064,-0.36,-0.8395,-0.2791,0.4661,-0.8392,-0.0591,0.5407,-0.8389,0.0833,-0.5378,-0.8384,0.493,0.2326,-0.8383,0.2522,-0.4834,-0.837,-0.1141,-0.5352,-0.8365,0.448,-0.3156,-0.8365,0.2388,-0.4933,-0.8364,0.1327,0.5318,-0.8359,-0.1177,0.5362,-0.8358,0.2244,-0.5011,-0.8355,0.2026,-0.5108,-0.8354,0.109,-0.5388,-0.8353,0.1052,-0.5397,-0.8351,0.5488,0.0385,-0.8351,0.5501,0.0062,-0.835,0.2903,-0.4674,-0.835,-0.2646,-0.4825,-0.8348,-0.1898,0.5168,-0.8345,0.1187,-0.538,-0.8344,0.5073,0.2154,-0.8343,0.0999,-0.5422,-0.8339,-0.2951,0.4664,-0.8339,0.3416,-0.4335,-0.8339,0.0593,0.5488,-0.8336,0.1328,-0.5362,-0.8325,0.4852,0.2675,-0.8323,-0.1291,0.5391,-0.832,0.5335,0.1524,-0.8319,0.1658,-0.5297,-0.8318,-0.084,0.5486,-0.8318,0.502,-0.2371,-0.8315,-0.1125,0.544,-0.8314,0.295,0.4709,-0.8308,0.5566,-0.0023,-0.8302,0.2201,-0.5121,-0.8302,0.5356,-0.1547,-0.8297,0.4208,0.3668,-0.8297,0.4493,-0.3313,-0.8293,-0.3563,-0.4306,-0.829,0.1055,0.5492,-0.8288,0.5376,0.1551,-0.8285,-0.1001,-0.5509,-0.8283,-0.0064,0.5603,-0.8281,0.2618,-0.4957,-0.828,0.2139,-0.5183,-0.8276,-0.136,-0.5445,-0.8274,0.277,0.4886,-0.8269,0.2209,-0.5171,-0.8267,-0.1495,0.5424,-0.8263,0.0801,0.5575,-0.8263,0.0997,-0.5544,-0.8261,0.1795,0.5342,-0.8258,0.1712,0.5373,-0.8254,0.1546,-0.543,-0.8252,0.3076,-0.4737,-0.8248,0.5138,-0.236,-0.8246,-0.1723,-0.5388,-0.8242,-0.1924,0.5327,-0.8239,-0.0315,0.5659,-0.8237,0.067,0.563,-0.8237,0.311,-0.4742,-0.8237,0.5426,0.1648,-0.8237,0.1212,0.554,-0.8236,0.1035,0.5576,-0.8236,0.1339,-0.5512,-0.823,0.5641,0.0677,-0.8225,0.419,-0.3846,-0.8222,0.2173,-0.5261,-0.8222,0.5691,-0.0137,-0.8221,-0.189,-0.537,-0.8221,-0.1626,-0.5457,-0.8219,-0.5048,0.264,-0.8215,0.2923,0.4896,-0.8214,0.3901,-0.416,-0.8213,-0.0504,0.5682,-0.821,-0.4977,0.2797,-0.8209,0.184,-0.5406,-0.8209,0.3248,-0.4697,-0.8208,0.5239,-0.2275,-0.82,0.0828,0.5663,-0.8195,0.5511,-0.1571,-0.8194,0.196,-0.5387,-0.8194,0.3477,-0.4558,-0.8193,0.4525,0.3521,-0.8188,0.3957,0.416,-0.818,-0.3926,-0.4203,-0.8175,0.1849,-0.5454,-0.8173,0.3362,0.468,-0.8171,0.4011,-0.4141,-0.8171,0.3805,0.4331,-0.8171,0.308,0.4873,-0.8169,-0.3544,-0.4551,-0.8166,0.5508,0.1728,-0.8155,-0.1362,0.5625,-0.8154,-0.2195,-0.5356,-0.8154,0.2671,-0.5135,-0.8154,0.4217,-0.3967,-0.8153,0.4445,0.3712,-0.8151,0.3789,0.4382,-0.8149,-0.0875,0.573,-0.8148,-0.2135,0.539,-0.8146,-0.5454,-0.1974,-0.8143,-0.3108,0.4902,-0.8139,-0.0912,0.5738,-0.8135,0.3693,0.4492,-0.8133,0.5078,-0.2841,-0.8133,-0.0187,-0.5815,-0.8131,0.0641,0.5786,-0.8129,0.204,-0.5455,-0.8129,0.5824,-0.0053,-0.8125,0.4893,0.3169,-0.8124,0.5111,0.2806,-0.8124,0.522,0.2599,-0.8123,0.429,-0.3951,-0.812,0.2714,0.5167,-0.8108,0.396,-0.4311,-0.8104,-0.1277,0.5718,-0.8103,-0.2004,0.5508,-0.8099,0.0053,0.5866,-0.8097,0.1037,0.5776,-0.8097,0.0218,0.5865,-0.8096,0.5545,-0.1927,-0.8091,0.2518,-0.531,-0.809,0.0181,0.5875,-0.809,0.0416,0.5864,-0.8088,-0.0181,0.5878,-0.8086,-0.3052,-0.503,-0.8078,0.5391,-0.2384,-0.8078,0.573,-0.1383,-0.8076,0.5086,-0.2985,-0.8074,0.1732,0.564,-0.8074,0.2382,-0.5398,-0.807,-0.0712,0.5862,-0.8069,0.3932,-0.4408,-0.8066,0.1103,0.5807,-0.8054,0.0779,0.5875,-0.8054,0.1871,-0.5624,-0.8041,-0.0927,0.5872,-0.8029,0.0046,-0.5961,-0.8026,0.287,0.5229,-0.8024,0.3263,-0.4998,-0.802,-0.0729,0.5929,-0.8016,-0.1471,-0.5794,-0.8014,-0.0829,0.5924,-0.801,0.1919,-0.5671,-0.8007,0.3508,0.4856,-0.8005,0.3164,-0.509,-0.8004,0.4925,0.3417,-0.8004,0.2657,-0.5373,-0.8,0.5314,0.2785,-0.7998,0.5963,-0.0684,-0.7992,0.105,-0.5918,-0.7985,-0.3846,-0.4631,-0.7984,0.4462,-0.4043,-0.7982,0.4062,-0.4448,-0.7978,0.3055,-0.5198,-0.7978,0.5979,0.0778,-0.7973,0.4318,-0.4218,-0.7972,0.0153,0.6035,-0.7972,0.002,-0.6038,-0.7965,0.3191,0.5135,-0.7965,-0.2244,-0.5614,-0.7965,0.535,0.2818,-0.7964,0.4554,-0.398,-0.796,0.3019,-0.5247,-0.7956,0.382,0.4702,-0.7954,0.3083,-0.5218,-0.7954,0.0518,0.6039,-0.7953,-0.2517,-0.5514,-0.7953,-0.2422,-0.5558,-0.7947,0.6064,-0.0289,-0.7944,0.2899,0.5337,-0.7943,-0.0806,0.6021,-0.7938,-0.1152,0.5972,-0.7935,0.0855,-0.6025,-0.7928,0.5816,0.1821,-0.7917,0.1351,0.5958,-0.7916,0.1787,0.5843,-0.7915,0.1111,-0.601,-0.7911,-0.0915,0.6047,-0.791,0.3731,0.4849,-0.7909,-0.3061,-0.5299,-0.7904,0.0909,0.6058,-0.7898,0.1949,0.5816,-0.7895,0.3106,0.5294,-0.7888,0.4143,-0.4539,-0.7888,0.6048,0.1094,-0.7886,0.3501,0.5055,-0.7884,-0.336,-0.5152,-0.7882,0.3686,0.4928,-0.7882,0.0855,-0.6094,-0.7882,-0.1971,0.583,-0.788,-0.112,0.6054,-0.7873,-0.3667,-0.4956,-0.7872,0.3078,0.5343,-0.7868,-0.3549,0.5049,-0.7866,0.0611,0.6144,-0.7866,-0.1972,0.5852,-0.7865,-0.0896,-0.611,-0.7861,0.1524,-0.599,-0.786,0.2929,0.5444,-0.7857,0.2854,-0.5489,-0.7854,0.5765,0.2254,-0.7849,0.2326,0.5743,-0.7846,0.401,-0.4729,-0.7845,-0.1439,0.6032,-0.7833,0.0798,0.6165,-0.7831,0.0727,0.6177,-0.7829,0.6086,0.1289,-0.7828,-0.1098,0.6125,-0.7827,0.4942,-0.3783,-0.7823,0.2835,-0.5546,-0.7819,0.5666,-0.2599,-0.781,0.5647,0.2667,-0.7809,0.2774,-0.5597,-0.7803,0.6223,-0.0629,-0.7799,0.127,0.6128,-0.7794,-0.0393,0.6253,-0.7784,0.6193,-0.1026,-0.778,0.609,0.1541,-0.7779,-0.3991,0.4854,-0.7779,0.1424,-0.612,-0.7777,0.0025,0.6287,-0.7775,0.5983,-0.1936,-0.776,0.3822,0.5017,-0.7758,0.3012,0.5545,-0.7756,0.4304,-0.4618,-0.7752,0.2614,-0.5751,-0.7749,-0.0217,0.6318,-0.7747,0.0331,0.6314,-0.7746,0.1299,-0.619,-0.7745,0.4281,0.4657,-0.7742,-0.1213,0.6212,-0.7738,-0.2661,-0.5748,-0.7738,0.2776,-0.5694,-0.7737,0.0,0.6336,-0.7732,0.4176,-0.4773,-0.7731,-0.0799,0.6292,-0.7731,0.6159,0.1515,-0.7725,-0.2279,0.5927,-0.7724,-0.146,0.6181,-0.7724,0.4514,0.4468,-0.7719,0.5989,-0.2133,-0.7715,0.6324,-0.0691,-0.7713,0.0531,0.6343,-0.7711,0.627,0.1112,-0.7706,0.4279,-0.4722,-0.7706,-0.154,-0.6185,-0.7704,0.0755,0.633,-0.7701,0.0947,0.6308,-0.7695,0.6067,0.1996,-0.7694,0.0215,0.6384,-0.7693,0.3603,-0.5275,-0.769,0.5108,-0.3842,-0.7685,0.3633,0.5268,-0.7683,0.4465,-0.4586,-0.7681,-0.38,-0.5154,-0.7681,0.0287,0.6397,-0.7672,0.4722,0.434,-0.7672,0.6267,-0.1365,-0.7671,-0.6383,0.0635,-0.767,-0.4166,-0.488,-0.7664,0.479,0.428,-0.7664,-0.3741,-0.5222,-0.7662,0.2005,0.6106,-0.7658,-0.1173,0.6323,-0.7658,0.6053,0.2172,-0.7658,0.2739,-0.5819,-0.7656,0.2052,0.6097,-0.7645,0.4624,-0.4491,-0.7643,0.6082,0.2143,-0.7641,-0.2267,0.6039,-0.7639,-0.07,0.6415,-0.7629,0.2038,0.6135,-0.7616,0.1584,-0.6283,-0.7614,0.6381,-0.1147,-0.7612,0.6385,0.1133,-0.7612,0.5699,-0.3095,-0.7609,0.1034,-0.6405,-0.7609,0.3358,0.5553,-0.7608,-0.0328,0.6481,-0.7606,0.1467,0.6324,-0.7603,0.5643,-0.3217,-0.7597,-0.1087,0.6411,-0.7597,0.6494,-0.035,-0.7593,0.2601,-0.5965,-0.7591,0.2035,-0.6183,-0.7587,0.0858,-0.6457,-0.7582,0.4633,0.4587,-0.7577,0.3317,-0.562,-0.7576,0.0157,0.6526,-0.7575,-0.396,0.519,-0.7574,0.4748,-0.4482,-0.7572,-0.5994,-0.2594,-0.7556,0.5364,-0.3758,-0.7551,0.5451,-0.3643,-0.7547,-0.6466,-0.1111,-0.7546,0.2737,-0.5964,-0.7546,-0.2291,-0.6149,-0.7545,0.6548,-0.0434,-0.7543,0.1081,0.6475,-0.7539,0.1986,0.6262,-0.7529,0.2945,-0.5885,-0.7516,0.483,-0.4492,-0.7514,0.4872,0.445,-0.7514,0.1233,-0.6482,-0.7514,0.4497,-0.4829,-0.7504,0.598,0.2814,-0.7503,0.661,0.0094,-0.75,0.0903,0.6552,-0.7493,-0.1258,0.6501,-0.749,0.5272,0.4012,-0.7489,0.2266,0.6227,-0.7483,-0.0574,-0.6609,-0.748,0.0027,-0.6637,-0.748,0.6024,0.2787,-0.7479,0.5914,0.3015,-0.7471,0.0995,0.6572,-0.7468,0.3876,0.5405,-0.7463,0.0117,0.6655,-0.7458,0.4072,-0.5273,-0.7455,0.6641,0.0564,-0.7441,0.2589,-0.6159,-0.7438,0.456,-0.4887,-0.7438,0.4988,0.445,-0.7434,0.3901,0.5434,-0.7433,0.6557,0.1327,-0.743,0.1446,0.6535,-0.7423,-0.1849,0.644,-0.7423,0.1483,0.6535,-0.7415,0.4411,-0.5056,-0.7413,0.6564,0.1403,-0.7405,-0.1522,-0.6546,-0.7402,0.1332,0.6591,-0.7402,-0.3236,-0.5894,-0.7399,0.3011,-0.6015,-0.7397,0.5872,-0.3287,-0.7394,0.5435,0.3975,-0.7391,-0.3978,-0.5436,-0.739,-0.0621,0.6708,-0.7388,-0.1641,0.6536,-0.7386,-0.3436,0.5799,-0.7386,-0.4342,-0.5158,-0.7375,0.5776,0.3501,-0.7373,0.2685,-0.6199,-0.7363,-0.1459,0.6607,-0.7358,0.281,-0.6161,-0.7358,0.102,-0.6695,-0.7355,0.443,-0.5126,-0.7342,0.4417,-0.5156,-0.7341,-0.6371,-0.2351,-0.7336,0.109,-0.6708,-0.7327,-0.1071,0.6721,-0.7323,0.4525,-0.5089,-0.7317,0.3141,-0.6049,-0.7308,0.0619,0.6798,-0.73,0.6499,0.2114,-0.7298,0.4875,0.4792,-0.7296,0.062,-0.6811,-0.7295,0.262,-0.6319,-0.7294,0.4576,0.5085,-0.7294,-0.3694,0.5758,-0.7293,0.668,0.1479,-0.7293,0.0633,0.6813,-0.7287,0.1,0.6775,-0.7282,0.405,0.5529,-0.7282,-0.685,-0.0243,-0.7274,0.5487,-0.4122,-0.727,-0.2901,-0.6223,-0.7267,-0.6317,-0.2699,-0.7266,0.6825,0.0787,-0.7265,0.2326,-0.6466,-0.7259,0.3629,0.5842,-0.7255,-0.0116,-0.6881,-0.7239,0.0236,-0.6895,-0.7237,0.3596,-0.5891,-0.7236,0.0916,0.6841,-0.7235,0.3461,0.5973,-0.7226,0.6189,-0.3078,-0.7213,-0.1699,0.6715,-0.7201,0.3486,-0.6,-0.7201,-0.3687,-0.5878,-0.7199,0.4206,0.5521,-0.7196,-0.2781,-0.6362,-0.7193,0.4355,-0.5413,-0.719,0.1243,0.6838,-0.7189,-0.1354,0.6818,-0.7189,0.6881,-0.0988,-0.7188,0.584,-0.3772,-0.7187,0.6664,0.1983,-0.7185,0.5497,-0.4261,-0.7181,0.3478,0.6028,-0.7179,0.3967,-0.5721,-0.7176,-0.0047,0.6964,-0.7176,-0.6943,-0.0543,-0.7173,-0.1006,0.6894,-0.7171,0.5592,0.4161,-0.7167,-0.184,0.6726,-0.7166,-0.6168,0.3256,-0.716,0.0416,0.6969,-0.7157,0.5264,0.4591,-0.7151,-0.1512,0.6824,-0.7145,0.5822,0.388,-0.7143,0.2532,0.6524,-0.7143,0.5257,-0.4619,-0.7143,0.1864,0.6746,-0.7142,0.1322,-0.6873,-0.714,-0.1224,-0.6894,-0.714,0.5485,-0.4352,-0.7139,-0.0265,-0.6997,-0.7138,-0.0477,0.6987,-0.7134,-0.0657,0.6977,-0.7133,0.6875,-0.1365,-0.7128,0.1926,0.6744,-0.7123,0.4638,-0.5268,-0.7116,0.1609,0.6839,-0.7114,0.3366,-0.6169,-0.7114,-0.1778,0.6799,-0.7113,0.1578,-0.6849,-0.7111,-0.4625,-0.5296,-0.7107,0.1159,-0.6939,-0.7105,0.6494,-0.2712,-0.7093,-0.1052,-0.697,-0.7091,0.3457,0.6146,-0.709,0.6794,-0.1889,-0.709,-0.1708,0.6842,-0.7084,0.3284,-0.6248,-0.7082,-0.2383,-0.6646,-0.7082,-0.3416,-0.6179,-0.7081,0.3687,0.6022,-0.7078,0.0679,-0.7031,-0.7074,-0.2733,0.6518,-0.7072,0.6714,0.2217,-0.7054,0.7088,-0.0098,-0.7051,0.6065,0.3674,-0.705,0.3024,-0.6415,-0.705,-0.4056,-0.5818,-0.7047,0.3193,-0.6336,-0.7044,0.6906,-0.1639,-0.7043,0.3511,0.6169,-0.704,0.0583,-0.7078,-0.7039,0.2918,-0.6476,-0.703,0.7093,0.052,-0.703,-0.7093,-0.0521,-0.7027,-0.326,0.6324,-0.7025,0.3665,0.6101,-0.7021,0.7115,0.0286,-0.701,0.7131,0.0029,-0.701,0.7129,0.0202,-0.7009,0.6113,-0.3674,-0.7001,0.1866,-0.6892,-0.6995,0.2297,0.6767,-0.6995,0.3588,0.618,-0.6992,-0.089,0.7093,-0.6986,-0.0504,0.7138,-0.6985,0.6997,-0.1501,-0.6985,0.3507,0.6238,-0.6984,-0.0204,0.7154,-0.6982,0.7042,-0.1292,-0.6978,-0.5259,-0.4863,-0.6975,0.2426,0.6742,-0.6967,0.7148,0.0597,-0.6967,0.0879,0.7119,-0.6963,-0.0281,0.7172,-0.6961,0.4949,0.52,-0.6961,0.2457,0.6746,-0.6955,0.2865,0.6589,-0.6953,0.6566,-0.2923,-0.6946,-0.018,0.7192,-0.6944,-0.0133,0.7194,-0.6944,0.0363,0.7186,-0.6943,-0.0176,0.7195,-0.6943,0.2747,-0.6653,-0.6942,0.182,-0.6964,-0.6938,0.3994,0.5993,-0.6936,-0.3292,0.6408,-0.6931,0.5065,0.513,-0.6927,-0.0993,0.7144,-0.6911,-0.442,-0.5719,-0.6908,0.0149,0.7229,-0.6903,0.2694,0.6715,-0.6902,0.7191,0.0811,-0.6896,-0.4751,-0.5466,-0.6896,-0.0779,0.72,-0.6893,0.6802,0.2494,-0.6892,-0.176,0.7028,-0.6884,-0.1896,0.7001,-0.6877,0.4247,0.5888,-0.6877,0.627,-0.3661,-0.6873,0.5177,-0.5095,-0.6868,0.1088,0.7186,-0.6865,-0.6369,0.3508,-0.6864,0.3844,0.6173,-0.6857,-0.0641,0.725,-0.6857,-0.4733,-0.553,-0.6856,-0.2987,-0.6639,-0.6854,0.0631,-0.7254,-0.6843,0.6052,-0.4068,-0.683,0.3893,0.618,-0.6822,0.4676,0.562,-0.682,0.1147,0.7223,-0.682,-0.059,-0.729,-0.6819,-0.0375,0.7305,-0.6818,0.7163,0.1488,-0.6818,0.6777,-0.2756,-0.6817,-0.0934,0.7256,-0.6812,0.716,-0.1527,-0.6811,-0.3681,0.6329,-0.6808,0.5656,0.4654,-0.6805,-0.3689,-0.6331,-0.6799,-0.2765,-0.6792,-0.6798,-0.0146,0.7333,-0.679,0.5614,-0.4731,-0.6787,0.2619,-0.6861,-0.6785,0.5939,0.4322,-0.6785,0.687,0.26,-0.6785,-0.73,-0.0825,-0.6784,0.248,-0.6915,-0.6781,0.2165,0.7024,-0.6779,-0.0736,0.7315,-0.6774,0.1266,-0.7247,-0.6769,0.3451,0.6502,-0.6768,0.4136,-0.609,-0.6765,-0.0416,0.7352,-0.6765,0.7342,0.0574,-0.6761,-0.7006,-0.2282,-0.6761,0.1411,0.7232,-0.676,0.7356,0.0443,-0.6756,0.5475,-0.4938,-0.675,0.7285,0.1168,-0.6749,0.5394,0.5035,-0.6746,0.5826,0.4533,-0.6744,0.6504,-0.3496,-0.6743,-0.2218,0.7043,-0.6742,-0.4245,-0.6044,-0.6741,-0.1821,0.7158,-0.6739,-0.1498,-0.7234,-0.6737,-0.4717,-0.5689,-0.6735,-0.3116,-0.6703,-0.6733,-0.6614,-0.3305,-0.673,0.1357,-0.7271,-0.673,0.1314,-0.7279,-0.6727,0.2162,-0.7076,-0.6726,0.156,-0.7234,-0.6725,0.1454,-0.7257,-0.6724,-0.3882,-0.6302,-0.6723,0.1457,-0.7258,-0.6719,-0.1929,-0.7151,-0.6708,0.0363,0.7407,-0.6706,0.5395,-0.5093,-0.6704,-0.2963,-0.6802,-0.6701,0.5096,0.5396,-0.67,-0.0966,0.7361,-0.6693,0.293,-0.6828,-0.6688,0.1945,-0.7176,-0.6674,-0.3859,-0.6369,-0.667,0.042,0.7439,-0.6668,0.3365,0.6649,-0.6664,0.7298,0.1525,-0.6663,0.4746,-0.5751,-0.6659,0.3234,-0.6723,-0.6658,0.6342,-0.3929,-0.6658,0.7353,0.1264,-0.6656,-0.1931,0.7209,-0.6653,-0.3649,-0.6513,-0.6652,-0.6539,0.3605,-0.6651,-0.4497,-0.5962,-0.665,-0.413,-0.6223,-0.6638,0.6671,0.338,-0.6633,0.7121,0.2301,-0.6625,0.2944,-0.6888,-0.6624,0.2003,-0.7219,-0.6623,-0.344,-0.6656,-0.6608,-0.0167,0.7504,-0.6597,-0.368,-0.6552,-0.6593,0.693,-0.2917,-0.6591,-0.052,-0.7502,-0.6588,0.6672,-0.3477,-0.6586,-0.0175,0.7523,-0.6585,-0.4955,-0.5665,-0.6581,-0.7125,0.2434,-0.6578,0.3356,0.6743,-0.6576,0.6396,-0.398,-0.6574,-0.4477,-0.6061,-0.6571,-0.0008,0.7538,-0.6565,0.6504,-0.382,-0.6563,0.2135,-0.7237,-0.6556,-0.1999,0.7282,-0.6553,0.5805,0.4832,-0.6545,0.2269,-0.7212,-0.6545,0.7178,-0.2376,-0.6541,0.7437,0.1378,-0.6541,0.1023,0.7495,-0.654,0.4855,0.5802,-0.6539,0.7457,-0.1277,-0.6538,0.0681,-0.7536,-0.6536,0.369,-0.6608,-0.6536,0.3311,-0.6806,-0.6532,-0.4243,-0.6272,-0.6529,0.1421,0.744,-0.6528,0.3057,0.6931,-0.6528,0.7362,-0.1785,-0.6527,0.3779,-0.6566,-0.6527,0.2286,-0.7223,-0.6524,0.3555,0.6693,-0.6515,0.3118,-0.6916,-0.651,-0.0409,0.7579,-0.6509,0.1772,-0.7382,-0.6508,0.2511,-0.7165,-0.6508,0.4255,-0.6289,-0.6507,0.7461,-0.1412,-0.6502,0.2836,-0.7048,-0.6502,0.5106,0.5626,-0.6498,0.2643,-0.7127,-0.6496,-0.0814,0.7559,-0.6496,0.606,-0.4591,-0.6491,0.7326,-0.2049,-0.6491,0.6292,0.4275,-0.6487,0.4793,-0.5911,-0.6485,0.234,-0.7243,-0.6483,0.7311,0.2125,-0.6481,0.1678,-0.7429,-0.6477,0.0628,-0.7593,-0.6476,0.3604,-0.6713,-0.6475,-0.4255,-0.6322,-0.6474,0.3148,-0.6941,-0.6474,-0.4798,-0.5922,-0.6469,0.7428,-0.1724,-0.6464,0.7267,0.2326,-0.6464,-0.0838,0.7584,-0.646,-0.5507,-0.5287,-0.6457,0.3818,-0.6613,-0.6457,0.5664,-0.5122,-0.6451,-0.4567,-0.6126,-0.645,-0.1921,0.7396,-0.6447,0.5633,0.5168,-0.6446,-0.0934,0.7588,-0.6445,-0.4217,-0.6378,-0.6444,-0.5467,-0.5347,-0.6442,0.7182,-0.2629,-0.6441,0.334,0.6882,-0.6425,0.686,0.3414,-0.6425,-0.1747,0.7461,-0.6423,-0.4681,-0.6069,-0.6419,-0.17,-0.7477,-0.6409,0.6872,-0.3419,-0.6407,0.7665,-0.0441,-0.6406,0.4689,-0.608,-0.6405,-0.0995,0.7615,-0.6405,0.6908,-0.3355,-0.6405,0.3598,0.6785,-0.6396,0.7686,0.0165,-0.6381,0.19,-0.7461,-0.6379,0.1988,-0.744,-0.6378,0.6234,0.4523,-0.6374,0.3253,-0.6985,-0.6373,0.7702,-0.0268,-0.6372,0.6207,-0.4568,-0.6372,-0.0497,-0.7691,-0.6357,0.7219,0.2734,-0.6356,0.3929,0.6645,-0.6355,0.2585,0.7276,-0.6354,-0.0228,-0.7719,-0.6353,0.2659,-0.725,-0.6353,-0.3253,-0.7004,-0.6353,-0.2705,0.7234,-0.6351,0.4871,-0.5994,-0.6351,0.319,0.7035,-0.6351,-0.5104,-0.5798,-0.6349,-0.541,-0.5516,-0.6342,0.5486,0.5447,-0.6342,0.7656,0.108,-0.6342,0.2545,0.7301,-0.6341,0.7729,-0.0248,-0.6337,-0.3088,0.7093,-0.6335,0.6432,0.4301,-0.6329,0.2929,-0.7167,-0.6328,0.1343,-0.7626,-0.6323,0.6433,0.4317,-0.6322,-0.1503,0.7601,-0.6321,0.5003,-0.5917,-0.632,-0.2304,0.7399,-0.6319,-0.4456,-0.6342,-0.6317,0.7521,0.1881,-0.6316,0.4762,0.6118,-0.6315,0.7723,-0.0694,-0.631,-0.2229,0.7431,-0.6308,0.6397,0.4392,-0.6305,0.5033,0.5909,-0.63,0.6726,0.3882,-0.63,0.3254,-0.7052,-0.6294,0.728,0.2718,-0.6293,0.6374,0.4446,-0.6286,0.7238,0.2847,-0.6283,0.7498,0.2076,-0.6282,-0.2313,0.7429,-0.6281,0.022,0.7778,-0.6279,0.3447,0.6978,-0.6275,-0.0349,0.7778,-0.6275,0.7317,-0.2661,-0.6274,0.5333,-0.5674,-0.6268,0.2156,0.7487,-0.6267,-0.0352,0.7785,-0.6264,-0.5053,-0.5935,-0.6251,0.3835,-0.6798,-0.6248,0.2848,0.727,-0.6244,0.7811,0.0077,-0.6241,0.7644,-0.1619,-0.6238,0.6334,0.4579,-0.6233,0.5953,-0.5071,-0.6232,0.2457,-0.7425,-0.6226,0.0355,0.7817,-0.6224,0.7151,-0.3181,-0.6223,0.2831,0.7298,-0.6219,-0.4614,-0.6328,-0.6215,0.3223,0.714,-0.6204,0.7146,-0.3232,-0.6196,-0.1412,-0.7721,-0.6194,0.7324,-0.2827,-0.6193,-0.2462,-0.7456,-0.6187,-0.1698,0.7671,-0.6181,0.7857,-0.0246,-0.6175,-0.6035,-0.5045,-0.6174,0.3725,0.6928,-0.617,0.2538,-0.7449,-0.6167,-0.0304,0.7866,-0.6166,-0.0297,0.7867,-0.6166,-0.0259,0.7869,-0.6164,0.432,-0.6584,-0.616,0.6476,0.4486,-0.6159,-0.2068,0.7602,-0.6153,-0.0081,0.7883,-0.6151,-0.0117,0.7884,-0.6149,0.0399,0.7876,-0.6147,0.7684,0.178,-0.6147,0.2525,-0.7473,-0.6146,0.0938,0.7832,-0.6138,-0.7026,0.36,-0.6133,0.3941,0.6845,-0.6133,0.2218,-0.7581,-0.6132,-0.3529,-0.7067,-0.6128,0.1736,-0.7709,-0.6127,0.4956,-0.6156,-0.6115,0.7,0.3688,-0.6115,0.2986,-0.7327};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=3 */
		private double[] getNormal_6_878_vector_3()
		{
			double[] value = {-0.6111,0.1099,0.7839,-0.6106,-0.0033,0.792,-0.6104,0.4443,-0.6557,-0.6103,0.0258,0.7918,-0.6101,0.6503,0.4527,-0.61,0.7916,-0.0352,-0.6098,-0.1254,-0.7826,-0.6097,0.3054,-0.7314,-0.6096,0.3494,-0.7115,-0.6095,0.7537,-0.2459,-0.6095,0.4559,-0.6486,-0.609,0.4523,-0.6515,-0.609,-0.2786,0.7426,-0.6087,-0.4689,-0.64,-0.6087,0.3197,-0.7262,-0.6084,0.2598,-0.7499,-0.6084,0.1623,0.7769,-0.6082,0.3203,-0.7263,-0.6076,-0.0658,0.7915,-0.6076,0.3261,-0.7242,-0.6074,0.0894,0.7894,-0.6072,-0.1507,0.7801,-0.6072,-0.3922,-0.6911,-0.6071,0.2896,-0.74,-0.6069,0.7654,0.2141,-0.6063,0.778,0.1648,-0.606,-0.3274,-0.725,-0.6057,0.692,0.3928,-0.6056,0.5605,-0.5649,-0.6056,-0.0256,0.7954,-0.6054,0.2416,-0.7583,-0.6054,0.7689,0.2055,-0.605,0.7466,-0.2766,-0.6048,0.1264,0.7863,-0.6043,0.4732,-0.641,-0.6043,0.483,-0.6336,-0.6043,0.3136,0.7325,-0.6038,0.1037,0.7903,-0.6037,-0.4503,-0.6579,-0.6035,-0.3732,-0.7046,-0.6034,0.3632,0.7099,-0.6031,0.7086,0.3662,-0.603,0.6678,0.4363,-0.6029,0.7636,0.2311,-0.6021,0.7786,-0.177,-0.6018,0.7436,0.2913,-0.6018,-0.3955,0.6939,-0.6016,0.3905,-0.6969,-0.6009,0.7992,-0.0119,-0.6008,0.7771,0.1875,-0.6,-0.6779,0.4248,-0.5996,0.4285,-0.6759,-0.5993,0.3278,0.7303,-0.599,0.3586,-0.716,-0.5988,-0.0495,0.7994,-0.5985,0.5365,-0.5949,-0.598,0.2995,-0.7434,-0.598,0.342,0.7249,-0.5977,0.801,-0.0337,-0.5974,0.5867,-0.5467,-0.597,0.2235,0.7705,-0.5966,0.7327,0.3274,-0.5962,-0.0468,0.8014,-0.5962,0.6754,0.434,-0.5961,0.2128,-0.7742,-0.5956,-0.5439,-0.5912,-0.595,0.2351,-0.7686,-0.5949,-0.2241,0.7719,-0.5949,0.8029,-0.0393,-0.5948,0.7971,-0.1039,-0.5947,-0.4773,-0.6469,-0.5946,0.3936,-0.7011,-0.5942,-0.5179,-0.6154,-0.594,-0.0742,0.801,-0.5935,0.4029,-0.6968,-0.593,-0.0844,0.8008,-0.5929,-0.1457,0.792,-0.5925,0.4982,-0.6331,-0.5924,-0.1842,0.7843,-0.5921,-0.2333,0.7714,-0.5913,0.6472,0.4811,-0.5903,0.7988,-0.1158,-0.5898,0.2059,0.7809,-0.5895,0.7976,0.1279,-0.5889,0.7911,0.1653,-0.5883,0.2809,-0.7583,-0.5882,-0.3582,0.725,-0.5882,0.7805,-0.2117,-0.5881,0.2825,-0.7579,-0.5877,-0.2847,0.7573,-0.5875,0.7939,-0.1568,-0.5874,0.3123,0.7466,-0.5872,-0.0395,0.8085,-0.5868,0.0914,0.8045,-0.586,0.7518,-0.3024,-0.5858,0.1291,-0.8001,-0.5858,0.4877,-0.6473,-0.5856,-0.0659,0.8079,-0.5853,0.3228,-0.7438,-0.5853,0.6628,-0.467,-0.5853,-0.1353,-0.7995,-0.5848,-0.5636,-0.5834,-0.5847,0.7219,-0.3701,-0.5847,0.7413,0.3295,-0.5846,-0.1244,-0.8017,-0.5846,-0.2514,0.7714,-0.584,0.8005,0.1347,-0.5836,0.1473,0.7986,-0.5833,0.1944,0.7887,-0.5826,0.5818,0.5675,-0.5823,0.1643,0.7962,-0.5821,0.0738,0.8098,-0.5819,0.2863,-0.7612,-0.5817,0.3009,-0.7557,-0.5812,0.809,0.0878,-0.5812,-0.2652,0.7693,-0.5803,-0.405,-0.7066,-0.5799,0.7076,-0.4037,-0.5796,0.8009,0.1506,-0.5795,0.7318,0.3588,-0.5788,0.4782,-0.6605,-0.5788,0.322,-0.7492,-0.5784,0.7367,-0.3502,-0.5768,0.5643,-0.5906,-0.5765,0.1294,-0.8068,-0.5765,-0.1262,0.8073,-0.5765,-0.1892,0.7949,-0.5757,0.5509,-0.6042,-0.5756,0.4743,-0.6661,-0.5754,-0.1075,0.8108,-0.5749,0.4763,-0.6653,-0.5744,-0.274,0.7713,-0.574,0.8118,-0.1072,-0.5739,0.7982,-0.1829,-0.5737,0.4989,-0.6496,-0.5733,0.3513,-0.7402,-0.5731,0.1928,-0.7965,-0.5726,-0.1176,0.8113,-0.5721,0.7573,0.3148,-0.5715,0.6682,0.4764,-0.5706,0.6753,0.4674,-0.5697,-0.0635,-0.8194,-0.5697,-0.0533,0.8201,-0.5696,0.8008,0.1852,-0.5696,-0.3733,-0.7323,-0.5694,0.6652,0.4831,-0.5692,0.5802,-0.5826,-0.569,-0.2463,0.7846,-0.5687,0.2625,0.7795,-0.5683,-0.0998,0.8167,-0.5679,0.0145,0.8229,-0.5674,0.4859,-0.6648,-0.5673,-0.0882,0.8188,-0.5669,-0.039,0.8229,-0.5655,0.0653,0.8221,-0.5651,0.5477,0.617,-0.5642,0.7745,-0.286,-0.5636,0.2573,0.7849,-0.5635,0.4135,-0.7152,-0.5634,0.8126,-0.1492,-0.563,0.4439,0.6971,-0.5626,-0.0892,0.8219,-0.5623,-0.0843,0.8227,-0.5613,0.7607,0.326,-0.5612,0.8195,0.1163,-0.561,0.8168,0.1345,-0.5604,-0.3125,0.767,-0.5604,-0.059,0.8261,-0.5603,-0.4537,-0.693,-0.5585,-0.3457,0.754,-0.5585,0.8294,-0.0104,-0.5577,-0.1569,0.8151,-0.5576,0.1585,-0.8148,-0.5573,0.1125,0.8226,-0.5572,0.3192,0.7666,-0.557,0.2815,0.7814,-0.5568,-0.2849,-0.7803,-0.5568,-0.5062,-0.6586,-0.5567,-0.1268,0.821,-0.5566,0.2701,0.7856,-0.5566,-0.4826,-0.6762,-0.5556,-0.1599,0.8159,-0.5552,-0.1986,0.8077,-0.5549,0.2971,0.777,-0.5548,0.4931,-0.6702,-0.5547,0.2377,-0.7974,-0.5545,0.2691,-0.7875,-0.5543,-0.0128,0.8322,-0.5538,-0.5151,-0.6541,-0.5537,0.1332,0.822,-0.5537,0.1463,-0.8198,-0.5536,0.151,-0.819,-0.5535,0.1606,-0.8172,-0.5532,-0.6682,0.4975,-0.5528,-0.0721,0.8302,-0.5527,0.7916,-0.2605,-0.5525,0.7787,0.2973,-0.5523,0.831,0.0657,-0.5517,0.3796,0.7426,-0.5517,0.8338,-0.0196,-0.5516,0.2339,-0.8006,-0.5511,-0.0311,0.8339,-0.551,0.1627,0.8185,-0.5509,-0.1006,0.8285,-0.5504,0.3517,0.7572,-0.5503,0.6016,-0.579,-0.5502,0.7164,0.429,-0.5501,0.591,-0.59,-0.5495,0.8025,-0.2324,-0.5495,0.6952,0.4634,-0.5494,0.2641,-0.7927,-0.5491,-0.1849,0.815,-0.549,0.392,0.7382,-0.5486,0.3235,-0.771,-0.5483,0.8172,-0.1777,-0.5483,0.2567,0.796,-0.548,-0.827,-0.1258,-0.5479,0.7534,0.3635,-0.5479,0.8231,0.1494,-0.5479,0.239,-0.8017,-0.5476,0.7934,0.2658,-0.5474,0.1614,-0.8211,-0.5471,0.5404,0.6393,-0.5469,0.1283,-0.8273,-0.5468,0.2617,-0.7953,-0.5468,0.1124,0.8297,-0.5465,0.1388,0.8259,-0.5464,0.4504,-0.7061,-0.5462,0.109,0.8306,-0.545,0.2303,-0.8062,-0.5448,-0.0632,0.8362,-0.5447,-0.0634,-0.8362,-0.5445,0.2743,0.7926,-0.5445,0.4691,-0.6954,-0.5443,0.7404,0.3943,-0.5441,-0.1238,0.8299,-0.5436,-0.297,0.785,-0.5432,-0.3756,0.7509,-0.5426,0.3104,0.7806,-0.5421,-0.2274,0.8089,-0.5411,0.84,-0.0406,-0.541,-0.206,-0.8154,-0.541,0.3837,0.7484,-0.5409,-0.3115,0.7813,-0.5407,0.7826,0.3085,-0.5405,0.3053,0.784,-0.5403,-0.076,0.8381,-0.5401,0.4444,-0.7147,-0.54,-0.5723,-0.6171,-0.5399,0.5793,0.6107,-0.5398,-0.1211,0.833,-0.5394,-0.1227,0.8331,-0.5391,-0.0459,0.841,-0.539,0.633,-0.5556,-0.5386,0.8049,-0.2489,-0.5378,0.2523,-0.8045,-0.5377,0.472,-0.6987,-0.5376,-0.005,0.8432,-0.5375,0.6155,-0.5764,-0.5373,-0.4253,-0.7283,-0.537,0.7266,0.4286,-0.5366,0.4992,-0.6803,-0.536,0.8072,-0.2473,-0.5358,0.4385,-0.7215,-0.5356,0.7702,-0.3462,-0.5353,-0.0828,0.8406,-0.5352,0.8079,0.2467,-0.535,-0.1369,0.8337,-0.5348,0.2156,-0.817,-0.5341,-0.1186,0.837,-0.5341,0.3397,-0.7742,-0.5341,0.7509,-0.3886,-0.5341,0.7189,0.4449,-0.5336,0.8049,0.2596,-0.5335,0.255,-0.8064,-0.5332,0.2369,-0.8121,-0.5327,0.1878,-0.8252,-0.5317,0.6812,0.5033,-0.5311,-0.114,0.8396,-0.5307,0.3776,0.7588,-0.5307,0.8278,-0.182,-0.5299,0.6672,0.5235,-0.5294,0.8478,-0.0307,-0.5289,-0.0138,0.8486,-0.5289,0.1394,-0.8372,-0.5288,-0.1458,0.8361,-0.5288,-0.0668,0.8461,-0.5284,-0.3589,-0.7694,-0.528,0.8364,0.1468,-0.528,0.8386,-0.1342,-0.528,0.3227,0.7855,-0.5279,0.513,0.6769,-0.5274,-0.0401,0.8487,-0.5273,0.0901,-0.8449,-0.5272,-0.041,0.8488,-0.5271,-0.0366,0.849,-0.527,-0.0194,0.8496,-0.527,0.4575,0.7163,-0.5266,0.697,-0.4867,-0.5256,0.1146,-0.843,-0.5256,0.8251,0.2072,-0.5252,0.2949,0.7983,-0.525,-0.266,0.8085,-0.5243,-0.1619,0.836,-0.5242,0.0064,0.8516,-0.5238,0.0158,0.8517,-0.5233,-0.6092,-0.5959,-0.5227,0.8515,-0.0403,-0.5226,-0.2237,0.8227,-0.5223,-0.3496,-0.7779,-0.5221,0.3371,0.7835,-0.521,0.3376,-0.784,-0.5206,-0.096,0.8484,-0.52,0.0794,0.8505,-0.5199,0.8532,0.0414,-0.5191,0.457,0.7223,-0.5186,-0.2044,0.8303,-0.518,-0.0881,-0.8508,-0.5174,0.3861,-0.7637,-0.5172,0.2933,0.804,-0.5171,0.3215,0.7932,-0.5171,-0.1511,0.8425,-0.517,0.1387,0.8447,-0.5165,0.2963,-0.8034,-0.5165,-0.0411,0.8553,-0.5154,0.4351,0.7383,-0.5144,0.0991,0.8518,-0.5143,0.8552,0.0633,-0.5141,0.4953,0.7003,-0.5139,0.4039,0.7568,-0.5137,0.1431,0.8459,-0.5128,-0.4077,0.7555,-0.5126,-0.1672,-0.8422,-0.5122,0.6095,0.6051,-0.5118,0.5572,-0.6539,-0.511,0.859,-0.0324,-0.5108,0.7287,-0.4562,-0.5105,-0.0952,0.8546,-0.5095,0.4997,-0.7005,-0.5093,0.858,0.0671,-0.5092,0.4217,0.7503,-0.5091,0.8355,0.2067,-0.5091,-0.2749,0.8156,-0.509,-0.1406,0.8492,-0.5084,0.8351,-0.2099,-0.5072,0.8594,-0.0643,-0.507,0.2943,-0.8102,-0.5068,0.8374,-0.2047,-0.5064,-0.051,0.8608,-0.5062,0.022,0.8621,-0.506,0.4335,-0.7457,-0.505,0.0986,0.8575,-0.5049,0.1618,-0.8479,-0.5048,0.2798,-0.8166,-0.5046,0.512,-0.6951,-0.5042,-0.0407,0.8626,-0.5039,0.6345,-0.5861,-0.5039,-0.0314,0.8632,-0.5034,-0.3001,0.8102,-0.5033,0.4248,-0.7524,-0.5032,-0.0409,0.8632,-0.5028,0.101,0.8585,-0.5025,-0.0767,0.8612,-0.5022,-0.513,-0.6962,-0.502,-0.2506,0.8278,-0.5015,-0.2273,-0.8348,-0.5011,0.6898,0.5225,-0.5008,0.8644,-0.0453,-0.5003,0.5726,0.6495,-0.5003,0.5245,0.689,-0.5002,-0.2846,0.8178,-0.5,-0.0112,0.866,-0.4997,-0.0971,0.8607,-0.4993,-0.5871,-0.6372,-0.4991,0.5062,-0.7034,-0.4982,0.5688,0.6545,-0.498,0.1505,0.854,-0.4972,-0.0773,0.8642,-0.4971,0.311,-0.81,-0.4964,0.8215,0.2805,-0.4962,-0.6284,-0.5991,-0.4957,-0.1679,0.8521,-0.4955,0.7568,0.4262,-0.4951,-0.0142,0.8687,-0.4942,0.5944,-0.6344,-0.4938,0.1993,0.8464,-0.4935,-0.09,0.8651,-0.4934,-0.0104,-0.8697,-0.4932,0.3519,0.7955,-0.4921,-0.1359,-0.8599,-0.4921,0.8459,-0.2058,-0.4912,-0.2753,0.8264,-0.4909,0.2647,0.83,-0.4907,0.4039,-0.7721,-0.4905,0.748,0.4471,-0.4899,0.6097,-0.6231,-0.4897,-0.6276,-0.6052,-0.4892,0.8417,0.2287,-0.489,0.2652,0.831,-0.4889,0.7454,0.4532,-0.4885,0.0969,0.8671,-0.4881,-0.378,0.7867,-0.4877,-0.4095,0.771,-0.4874,-0.2727,0.8295,-0.4872,0.1832,-0.8538,-0.487,0.2594,-0.834,-0.4868,0.7774,0.3983,-0.4863,0.8072,0.3345,-0.4857,0.3997,-0.7774,-0.4854,0.0765,0.8709,-0.485,0.121,-0.8661,-0.4849,0.1799,0.8559,-0.4847,0.416,-0.7694,-0.4837,-0.6593,-0.5756,-0.4835,-0.0962,0.87,-0.4831,0.7424,0.4642,-0.4831,0.8724,-0.0742,-0.4827,-0.0001,0.8758,-0.4824,0.7342,-0.4778,-0.4823,0.4483,-0.7526,-0.4819,0.1059,-0.8698,-0.4816,0.5872,0.6505,-0.4815,-0.6318,-0.6075,-0.4808,0.2543,-0.8391,-0.4803,0.8463,0.2303,-0.4801,0.3257,0.8145,-0.48,0.7771,0.407,-0.4799,0.7532,0.4498,-0.4798,0.251,-0.8407,-0.4796,0.2536,0.84,-0.4794,0.3493,0.805,-0.4794,0.3647,0.7983,-0.4789,0.4538,-0.7515,-0.4784,0.8693,0.1241,-0.478,-0.1224,0.8698,-0.4779,0.8676,-0.1371,-0.4774,0.2998,-0.826,-0.4772,-0.6675,0.5716,-0.4772,-0.0937,0.8738,-0.4771,0.3734,-0.7956,-0.4769,0.7174,0.5079,-0.4766,-0.6955,-0.5377,-0.4761,0.5912,-0.6511,-0.4759,0.8735,-0.1024,-0.4754,0.2922,-0.8299,-0.4754,0.6974,0.5364,-0.4753,0.8152,0.331,-0.4749,-0.0736,-0.8769,-0.4748,-0.2647,0.8393,-0.4746,0.8229,0.3123,-0.4744,0.8403,0.2624,-0.4743,0.8796,-0.0361,-0.4738,0.5683,-0.6727,-0.4738,-0.1155,0.873,-0.4736,0.0662,0.8782,-0.4735,0.6029,0.6422,-0.4733,0.8641,0.1714,-0.4732,0.3337,-0.8153,-0.4723,0.2859,-0.8338,-0.4718,0.8384,0.273,-0.4717,0.5271,-0.7069,-0.4712,0.0698,0.8792,-0.4711,0.7177,0.5127,-0.471,0.641,-0.606,-0.471,0.6186,0.6289,-0.4708,-0.1984,0.8596,-0.4705,0.5422,-0.6962,-0.4693,0.3502,0.8106,-0.4691,0.4224,-0.7756,-0.4686,0.115,-0.8759,-0.4686,0.7288,-0.4993,-0.4686,0.5242,0.7111,-0.4681,0.375,0.8001,-0.4673,0.6535,0.5954,-0.4671,0.1508,0.8712,-0.467,-0.7584,-0.4547,-0.4666,0.3432,-0.8152,-0.4663,0.4051,-0.7864,-0.4661,0.8847,-0.0047,-0.4661,0.61,-0.6408,-0.466,0.8832,0.0531,-0.4655,0.3501,-0.8128,-0.4649,-0.2391,0.8525,-0.4639,0.877,0.1252,-0.4632,0.3141,-0.8287,-0.4632,-0.0639,0.884,-0.4631,0.7918,0.3981,-0.4621,0.8818,0.0945,-0.462,-0.3673,-0.8072,-0.462,0.4521,-0.763,-0.4617,0.6418,0.6123,-0.4614,0.8029,0.3773,-0.4609,0.1976,0.8652,-0.4597,0.1251,0.8792,-0.4596,0.3223,0.8276,-0.4591,0.1445,0.8765,-0.459,0.2139,0.8623,-0.4588,0.7393,-0.4928,-0.4586,-0.3105,-0.8326,-0.4583,0.84,-0.2905,-0.4569,0.7972,0.3946,-0.4569,0.4733,-0.7531,-0.456,0.7306,-0.5083,-0.4551,-0.176,-0.8728,-0.4551,0.8638,0.2162,-0.455,0.5185,-0.724,-0.4543,0.7666,0.4538,-0.4542,-0.2986,0.8394,-0.454,0.5335,-0.7136,-0.4539,-0.1794,0.8728,-0.4538,0.2294,0.8611,-0.4535,0.6,-0.659,-0.4531,-0.7009,-0.5508,-0.4529,0.3428,-0.823,-0.4528,0.2713,-0.8493,-0.4519,0.3527,-0.8194,-0.4517,0.3692,0.8122,-0.4517,-0.2849,0.8455,-0.4513,0.3153,-0.8348,-0.4513,0.5946,-0.6655,-0.4507,0.8921,0.0328,-0.45,0.8822,-0.1385,-0.4497,0.2407,-0.8602,-0.4492,0.8384,0.3087,-0.449,0.2093,-0.8687,-0.449,-0.3114,0.8375,-0.4488,0.8066,0.3847,-0.4483,0.1935,0.8727,-0.4479,0.8811,0.1518,-0.4479,-0.2871,0.8467,-0.4477,0.2675,0.8533,-0.4476,0.4711,0.7601,-0.4473,0.7439,-0.4965,-0.4472,0.4169,-0.7913,-0.4458,0.1893,0.8749,-0.4453,0.8468,0.2908,-0.4452,0.8804,0.1633,-0.445,0.354,-0.8226,-0.4449,0.3377,-0.8295,-0.4445,0.8469,0.2917,-0.4442,0.6721,0.5925,-0.4433,-0.6668,-0.5991,-0.4424,-0.0276,0.8964,-0.4418,-0.521,-0.7304,-0.4416,0.802,-0.4022,-0.4411,0.8913,0.1048,-0.4408,0.338,0.8315,-0.4406,-0.0413,0.8968,-0.4403,-0.0535,0.8963,-0.44,-0.0048,0.898,-0.4399,0.6049,0.6637,-0.4398,0.7909,-0.4254,-0.4394,0.8925,-0.1022,-0.4392,0.8375,0.3252,-0.4384,0.0545,0.8971,-0.4381,-0.2066,0.8749,-0.438,0.222,0.8711,-0.4374,0.7845,-0.4397,-0.4372,0.8798,0.1865,-0.4368,0.4737,-0.7647,-0.4362,-0.0514,0.8984,-0.4357,0.8356,0.3345,-0.4354,0.8277,0.3541,-0.4351,0.5695,-0.6974,-0.4339,0.6355,-0.6387,-0.4338,0.9009,0.0103,-0.4336,0.8466,-0.3086,-0.4335,0.8205,-0.3727,-0.4331,0.8649,0.2536,-0.4328,0.3169,-0.844,-0.4328,0.7075,-0.5587,-0.4305,0.7684,-0.4735,-0.4302,0.1282,0.8936,-0.4296,-0.8963,-0.1095,-0.4296,0.8963,0.1103,-0.4296,0.0084,-0.903,-0.4289,-0.7215,-0.5436,-0.428,-0.1173,0.8961,-0.4279,-0.1938,0.8828,-0.4278,0.4843,0.7632,-0.4276,0.8596,-0.2798,-0.4274,0.7113,0.558,-0.4273,0.8799,-0.2078,-0.4272,-0.1338,0.8942,-0.4265,-0.1655,0.8892,-0.4265,0.8449,0.3229,-0.4263,0.6371,0.6421,-0.4251,-0.2346,-0.8742,-0.425,0.578,-0.6967,-0.4249,-0.8909,-0.1604,-0.4238,-0.3254,0.8453,-0.4236,0.1911,0.8855,-0.4234,-0.0334,0.9053,-0.4229,0.0747,-0.9031,-0.4229,0.7776,-0.4653,-0.4228,0.5023,-0.7543,-0.4215,0.537,-0.7307,-0.4214,0.8038,-0.42,-0.421,0.7302,-0.5381,-0.421,0.8158,0.3965,-0.4208,-0.2167,0.8809,-0.4207,0.9023,0.0946,-0.4205,-0.4573,-0.7836,-0.4202,-0.0966,-0.9023,-0.4201,-0.6269,0.6562,-0.4196,0.8365,0.3524,-0.4182,0.9079,0.029,-0.4176,-0.4439,-0.7928,-0.4174,-0.6885,-0.5931,-0.4173,0.265,0.8693,-0.4173,0.8669,0.2726,-0.4168,-0.0294,0.9085,-0.4163,0.8886,-0.1925,-0.4162,0.8942,-0.1647,-0.4153,0.8664,0.2773,-0.4152,-0.0072,0.9097,-0.4149,0.7094,-0.5697,-0.4148,0.83,0.3728,-0.4147,-0.2983,0.8597,-0.4142,0.1131,-0.9031,-0.4141,-0.3498,0.8403,-0.4141,-0.0585,-0.9084,-0.4138,0.3882,-0.8234,-0.4132,0.1951,0.8895,-0.4127,-0.3234,0.8515,-0.4127,0.677,-0.6094,-0.4125,0.7829,-0.4658,-0.4117,-0.0346,0.9107,-0.4112,0.2525,0.8759,-0.4104,-0.0217,0.9117,-0.4103,0.897,0.1646,-0.4103,-0.0609,0.9099,-0.4102,0.5646,-0.7163,-0.41,0.5243,-0.7464,-0.4096,-0.1355,0.9022,-0.4093,0.9079,0.0904,-0.4092,0.0479,-0.9112,-0.4091,0.6256,0.6643,-0.4088,0.3144,0.8567,-0.4083,0.1895,0.893,-0.4082,0.3314,-0.8506,-0.4079,0.9127,0.0237,-0.4072,0.1875,-0.8939,-0.4067,0.8521,0.3295,-0.4066,0.0397,0.9127,-0.406,0.9115,0.0662,-0.4058,0.8475,0.3423,-0.4057,0.0403,0.9131,-0.4055,0.6897,-0.5999,-0.4049,-0.1903,0.8943,-0.404,0.8499,0.3384,-0.4037,-0.6015,-0.6893,-0.4029,-0.2995,0.8648,-0.4028,0.9069,-0.1236,-0.4023,0.8865,-0.2287,-0.4019,0.9035,0.1487,-0.401,-0.4275,0.8102,-0.4008,-0.6733,-0.6213,-0.4005,0.5101,-0.7611,-0.4002,0.3775,0.8351,-0.3999,-0.0067,0.9165,-0.3992,-0.0737,0.9139,-0.399,0.8054,0.4383,-0.3987,0.7444,0.5356,-0.3981,-0.1238,0.909,-0.3979,0.7407,0.5413,-0.3977,-0.1339,0.9077,-0.3976,0.0865,0.9135,-0.3973,0.6461,-0.6517,-0.3972,0.4532,0.798,-0.3972,0.8775,0.2689,-0.3968,-0.2745,0.8759,-0.3963,0.5509,-0.7345,-0.3961,0.571,0.7191,-0.3958,-0.1932,0.8978,-0.3957,-0.5688,-0.721,-0.3943,0.1641,0.9042,-0.3943,0.7044,0.5902,-0.3942,0.8739,0.2845,-0.3942,0.2835,0.8742,-0.3917,0.1111,0.9134,-0.3914,0.7927,-0.4674,-0.3909,0.5003,0.7726,-0.3908,0.6843,0.6156,-0.3906,0.4424,-0.8073,-0.3905,0.8198,-0.4189,-0.3898,0.5401,0.7459,-0.3897,0.7208,-0.5732,-0.3896,-0.2257,0.8929,-0.3889,0.859,-0.333,-0.3888,0.6818,0.6197,-0.3886,0.0301,-0.9209,-0.3882,0.2573,-0.8849,-0.3881,0.1059,0.9155,-0.3876,0.6734,-0.6296,-0.3872,0.4381,0.8113,-0.3869,-0.1159,0.9148,-0.3868,-0.1613,0.908,-0.3864,0.7433,-0.5461,-0.3864,-0.0482,0.9211,-0.3863,0.3535,0.852,-0.3861,0.3044,0.8708,-0.3858,-0.0442,0.9215,-0.3857,0.4248,-0.819,-0.3854,-0.0492,0.9214,-0.3851,-0.4243,-0.8195,-0.3846,-0.4181,0.8229,-0.3846,0.5412,0.7478,-0.3846,-0.0848,0.9192,-0.3844,0.517,-0.7648,-0.3843,0.0804,0.9197,-0.3837,0.2078,-0.8998,-0.3837,0.7431,0.5483,-0.3833,0.9114,-0.1498,-0.3828,-0.2515,0.8889,-0.3826,0.1865,-0.9049,-0.3822,0.6542,-0.6526,-0.3816,0.1758,-0.9074,-0.3813,-0.1825,0.9062,-0.3813,0.7151,0.5858,-0.3811,0.8471,0.3704,-0.381,0.9086,0.1711,-0.3807,0.8268,0.4142,-0.3805,-0.3968,-0.8353,-0.3801,0.6139,0.6919,-0.3769,0.632,-0.6772,-0.3767,0.2027,-0.9039,-0.3766,-0.0185,0.9262,-0.3761,0.0638,0.9244,-0.3752,0.4999,-0.7806,-0.3746,0.187,-0.9081,-0.3745,0.9064,-0.1955,-0.3741,0.7442,-0.5533,-0.3735,0.6044,-0.7037,-0.3728,-0.0381,0.9271,-0.3728,0.8356,0.4034,-0.3727,0.4251,-0.8248,-0.3726,0.7004,0.6088,-0.3719,-0.1354,0.9183,-0.3716,0.813,0.4483,-0.3715,0.6697,0.6431,-0.3712,-0.5631,0.7383,-0.3709,0.3638,-0.8545,-0.3702,0.0192,0.9287,-0.3695,0.9287,0.0311,-0.3692,0.1053,0.9234,-0.3684,-0.2335,0.8999,-0.3682,-0.0964,0.9247,-0.3677,0.9242,0.1033,-0.3672,0.8811,0.298,-0.367,0.7368,-0.5678,-0.3667,0.4067,-0.8367,-0.3664,0.1959,0.9096,-0.3658,0.3412,-0.8659,-0.3655,0.8755,0.3161,-0.3652,0.8827,0.2958,-0.3652,-0.0123,0.9308,-0.3651,0.8692,-0.3336,-0.365,0.5718,-0.7347,-0.365,-0.0708,0.9283,-0.3648,0.8993,-0.2411,-0.3647,0.1515,0.9187,-0.3634,0.3807,-0.8503,-0.3631,-0.1606,0.9178,-0.3627,0.924,0.1209,-0.3626,0.9213,-0.1406,-0.3625,0.1591,0.9183,-0.3623,0.6337,-0.6835,-0.3617,0.3979,0.8431,-0.3614,-0.0459,0.9313,-0.3611,0.5765,-0.733,-0.3607,0.3688,-0.8566,-0.3602,0.7975,0.484,-0.3598,0.2861,-0.8881,-0.3594,0.4019,-0.8422,-0.3589,0.873,0.3303,-0.3589,0.7404,0.5683,-0.3586,-0.0897,0.9292,-0.3585,0.4304,0.8284,-0.3584,0.9327,-0.0395,-0.3581,0.2111,0.9095,-0.3572,0.5348,-0.7658,-0.3563,-0.3065,0.8827,-0.3553,0.8836,-0.3049,-0.3553,0.9305,-0.0893,-0.3551,-0.4295,-0.8303,-0.3545,-0.2726,0.8944,-0.3541,-0.285,0.8907,-0.3537,0.5309,0.7701,-0.3536,0.9052,0.2357,-0.3536,-0.3066,0.8837,-0.3531,0.8125,0.4638,-0.3527,-0.1228,0.9276,-0.3527,0.8062,0.475,-0.3499,0.8364,-0.4219,-0.3494,0.5458,-0.7616,-0.3493,0.6866,0.6377,-0.3479,0.924,-0.1584,-0.3478,0.9288,0.1279,-0.3473,0.4652,-0.8143,-0.3471,0.1961,-0.9171,-0.347,0.01,0.9378,-0.3468,0.9377,-0.022,-0.3467,0.3886,0.8537,-0.3464,0.3068,-0.8865,-0.3459,-0.0318,0.9377,-0.3458,0.2853,-0.8939,-0.3457,0.9376,-0.0366,-0.3456,0.8066,0.4795,-0.3454,0.2591,-0.902,-0.3453,0.6787,0.6482,-0.3449,0.7335,-0.5857,-0.3443,0.8712,-0.3499,-0.3441,0.9364,0.0683,-0.344,0.6378,-0.6892,-0.3437,0.6333,0.6934,-0.3436,-0.6661,-0.6619,-0.3435,0.7683,-0.5401,-0.3435,-0.4979,-0.7963,-0.3432,-0.4261,-0.8371,-0.343,0.7677,0.5413,-0.3425,0.3106,-0.8867,-0.3424,0.7371,0.5827,-0.3421,0.5026,-0.794,-0.3421,-0.3815,0.8587,-0.3415,0.3395,-0.8765,-0.3413,0.645,0.6838,-0.3412,-0.0022,0.94,-0.3403,-0.8127,-0.4729,-0.34,-0.0212,0.9402,-0.34,0.4914,-0.8018,-0.3397,0.1199,0.9329,-0.3394,-0.0929,0.936,-0.3393,0.7392,-0.5817,-0.3392,0.8368,0.4298,-0.3387,0.6313,0.6977,-0.3385,-0.1377,0.9308,-0.3385,-0.1076,0.9348,-0.3384,-0.5096,-0.7911,-0.3383,0.4758,-0.8119,-0.3382,0.7459,-0.5738,-0.3379,0.8547,-0.394,-0.3373,0.3608,-0.8695,-0.3372,0.4271,0.839,-0.337,0.0862,0.9376,-0.3369,0.8957,0.2902,-0.3368,0.8129,0.4751,-0.3364,0.6857,0.6454,-0.3363,0.7861,-0.5186,-0.3361,-0.2325,0.9127,-0.3357,-0.3769,-0.8633,-0.3352,0.8681,0.3662,-0.3352,-0.3731,-0.8651,-0.334,-0.4998,0.7991,-0.3337,0.2985,-0.8942,-0.3323,0.1203,0.9355,-0.3323,0.7772,0.5344,-0.3321,0.3718,0.8669,-0.3314,-0.2363,0.9134,-0.3311,0.8417,0.4265,-0.3305,0.3135,-0.8902,-0.3301,0.9303,-0.1601,-0.3292,-0.1928,-0.9244,-0.3286,-0.9325,0.1502,-0.3284,0.5924,-0.7356,-0.3279,0.9366,-0.1232,-0.3278,0.9338,-0.1434,-0.3274,0.3224,-0.8882,-0.3271,0.2436,-0.913,-0.3262,-0.9311,0.1635,-0.3262,0.1679,0.9303,-0.3259,0.9344,-0.1437,-0.3254,0.6563,0.6808,-0.3253,0.5879,-0.7406,-0.3252,0.2394,-0.9149,-0.3247,-0.5961,-0.7343,-0.3245,0.4103,-0.8523,-0.3244,-0.4003,0.8571,-0.3239,0.4384,-0.8384,-0.3226,0.9148,-0.2428,-0.3226,-0.228,0.9187,-0.3217,-0.2402,0.9158,-0.3217,0.9311,0.1721,-0.3215,-0.1849,0.9287,-0.3212,0.0334,0.9464,-0.3192,-0.2561,0.9124,-0.319,0.3306,0.8882,-0.3184,-0.1546,-0.9353,-0.3178,0.2187,-0.9226,-0.3176,-0.1263,0.9398,-0.3173,0.8164,0.4825,-0.3172,0.5101,-0.7995,-0.317,0.6174,-0.72,-0.316,-0.3557,0.8795,-0.3158,0.7475,-0.5844,-0.3155,0.9115,-0.2637,-0.3154,-0.19,0.9297,-0.3153,-0.5947,-0.7396,-0.3153,0.9051,-0.2852,-0.3146,0.4871,0.8147,-0.3144,0.2252,0.9222,-0.3144,0.9476,0.0571,-0.3144,0.8089,-0.4968,-0.3143,0.0957,0.9445,-0.3142,0.4458,-0.8382,-0.314,-0.2849,0.9057,-0.314,-0.2864,0.9052,-0.3129,-0.0124,0.9497,-0.3129,-0.0425,0.9488,-0.3124,-0.1309,0.9409,-0.3123,0.6592,0.684,-0.3111,0.8483,0.4286,-0.3109,0.1506,-0.9384,-0.3107,-0.1224,-0.9426,-0.3105,0.5913,0.7443,-0.3104,-0.2156,-0.9258,-0.3104,0.5784,-0.7544,-0.3096,0.8658,-0.393,-0.3093,0.2294,0.9229,-0.3087,0.8367,0.4524,-0.3083,0.6362,-0.7073,-0.3079,-0.1887,0.9325,-0.3078,0.8701,0.385,-0.3078,0.0244,0.9511,-0.3073,0.7716,0.557,-0.3071,-0.1807,0.9344,-0.3069,0.9426,0.1316,-0.3068,0.7706,-0.5587,-0.3065,0.397,-0.8651,-0.3065,0.5958,0.7424,-0.3064,-0.3757,-0.8746,-0.3064,-0.1002,0.9466,-0.3064,0.3252,0.8946,-0.3058,0.1379,0.9421,-0.3055,0.8989,-0.3142,-0.305,-0.3336,0.892,-0.3047,0.9059,0.2941,-0.3047,0.9519,0.0315,-0.3045,0.1938,0.9326,-0.3038,0.7474,0.5908,-0.3037,0.9028,-0.3044,-0.3035,0.9489,0.0862,-0.3033,0.625,-0.7193,-0.3022,0.0491,0.952,-0.3018,0.2047,-0.9311,-0.3013,0.4911,-0.8174,-0.3011,-0.3645,0.8812,-0.3007,0.2209,-0.9278,-0.3002,0.3096,-0.9022,-0.2999,-0.3693,-0.8796,-0.2985,0.2249,-0.9275,-0.2982,-0.1235,0.9465,-0.298,0.267,-0.9165,-0.2979,0.8889,0.3479,-0.2979,0.8436,-0.4467,-0.2978,0.6543,0.6952,-0.2975,-0.1112,0.9482,-0.2973,0.7903,-0.5359,-0.2971,0.7318,-0.6134,-0.2967,-0.7292,-0.6167,-0.2965,0.8098,0.5063,-0.2964,-0.5341,-0.7918,-0.2961,0.2716,-0.9157,-0.2959,0.2389,-0.9248,-0.2954,0.4377,-0.8492,-0.2948,-0.0791,0.9523,-0.2942,0.9122,-0.2852,-0.2936,-0.5157,-0.8049,-0.2932,0.7448,-0.5995,-0.2928,0.3784,-0.8781,-0.2922,0.9306,-0.2204,-0.2922,0.8693,-0.3987,-0.2917,-0.3361,0.8955,-0.2916,0.779,0.555,-0.2911,0.36,0.8864,-0.2907,0.8179,0.4966,-0.29,0.9374,0.1925,-0.2899,0.9332,0.2123,-0.2889,0.8688,-0.4021,-0.2889,0.6061,0.7411,-0.2889,0.1433,-0.9466,-0.2888,0.3217,-0.9017,-0.2879,0.951,0.1132,-0.2878,0.9575,-0.018,-0.2875,-0.8956,0.3393,-0.2873,0.3916,-0.8742,-0.287,0.9523,-0.104,-0.2867,0.039,0.9572,-0.2864,0.6829,0.672,-0.286,0.911,-0.2972,-0.2858,0.3885,0.876,-0.2857,0.872,0.3975,-0.2838,0.4762,0.8322,-0.2833,-0.0868,0.9551,-0.2832,0.887,0.3647,-0.2831,0.7371,0.6136,-0.2828,0.9461,0.158,-0.2827,0.3487,-0.8936,-0.2826,-0.0858,0.9554,-0.2825,0.1391,0.9491};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=4 */
		private double[] getNormal_6_878_vector_4()
		{
			double[] value = {-0.2824,0.9482,-0.1454,-0.2823,0.3287,-0.9012,-0.2823,0.3292,-0.9011,-0.2823,0.9384,-0.1992,-0.2821,0.7037,-0.6521,-0.2814,0.2639,-0.9226,-0.281,0.3248,-0.9031,-0.2809,0.267,-0.9218,-0.2806,0.9005,-0.3323,-0.2802,0.1031,-0.9544,-0.28,0.2977,-0.9127,-0.28,-0.4173,0.8646,-0.2798,0.9127,0.2979,-0.2797,0.96,-0.0079,-0.2796,0.9552,0.097,-0.2794,0.3,-0.9121,-0.279,0.96,0.0251,-0.2786,0.9536,0.1138,-0.2784,0.3448,-0.8965,-0.2781,0.5097,-0.8142,-0.2774,0.8699,-0.4079,-0.2771,-0.5844,-0.7627,-0.277,0.0885,-0.9568,-0.277,-0.2088,0.9379,-0.2768,0.9309,0.2382,-0.2766,0.2691,-0.9225,-0.2765,0.3475,-0.896,-0.2764,0.0037,0.961,-0.2759,0.7469,0.605,-0.2757,0.7937,0.5423,-0.2756,0.8052,0.525,-0.2755,-0.9492,0.152,-0.2748,0.3646,-0.8897,-0.2748,0.3657,-0.8893,-0.2748,-0.2069,0.939,-0.2746,-0.2663,0.924,-0.2741,-0.2118,0.9381,-0.2739,0.7338,0.6218,-0.2735,0.2311,-0.9337,-0.2715,-0.1465,0.9512,-0.2714,-0.3895,0.8801,-0.2714,0.6338,0.7243,-0.2711,0.3084,0.9118,-0.2709,0.0996,0.9574,-0.2707,0.3819,-0.8837,-0.2705,-0.2373,0.933,-0.2705,-0.1267,0.9543,-0.2704,0.7488,-0.6052,-0.2695,0.0738,-0.9602,-0.2695,0.0373,0.9623,-0.2691,0.9595,0.0834,-0.2687,-0.2565,0.9284,-0.2685,0.4929,-0.8276,-0.2685,0.3524,-0.8965,-0.2684,-0.3673,0.8905,-0.2682,0.4357,-0.8592,-0.268,0.9519,-0.1484,-0.2676,-0.4573,-0.8481,-0.2673,0.5747,-0.7735,-0.2673,0.9281,-0.2593,-0.2672,0.7662,0.5844,-0.2663,-0.345,-0.9,-0.2663,-0.0235,0.9636,-0.2663,-0.5026,-0.8225,-0.2658,-0.2194,0.9387,-0.2658,0.2765,0.9235,-0.2656,0.9172,0.2971,-0.2652,0.4514,-0.852,-0.2648,0.6318,0.7285,-0.2645,0.9598,-0.0938,-0.2644,0.4846,-0.8339,-0.264,0.3761,0.8882,-0.2639,0.9644,-0.0178,-0.2637,0.9621,0.0692,-0.2622,0.1574,-0.9521,-0.2621,0.4273,0.8653,-0.2617,0.9643,0.0393,-0.2615,0.3709,0.8911,-0.2614,0.8026,0.5362,-0.2614,0.0229,-0.965,-0.2612,0.5321,0.8054,-0.2607,0.2185,-0.9404,-0.2601,0.6435,0.7199,-0.2595,-0.3706,0.8918,-0.2595,0.8539,0.4512,-0.2593,0.5521,0.7925,-0.2588,0.8005,-0.5406,-0.2585,0.0834,0.9624,-0.2584,0.5638,-0.7845,-0.258,0.6023,0.7554,-0.2578,0.958,-0.1258,-0.257,-0.2802,0.9249,-0.2568,-0.1879,0.948,-0.2567,-0.1744,0.9506,-0.2564,-0.1764,0.9503,-0.2562,0.1187,0.9593,-0.2559,0.7655,0.5903,-0.2554,0.3335,-0.9075,-0.2552,0.1868,-0.9487,-0.2551,0.6176,0.7439,-0.2551,-0.353,0.9002,-0.2549,-0.522,-0.814,-0.2546,-0.1611,-0.9535,-0.2545,0.2069,-0.9447,-0.2539,-0.0041,0.9672,-0.2539,0.7999,-0.5438,-0.2537,0.361,-0.8974,-0.2536,0.361,-0.8974,-0.2533,0.6553,-0.7116,-0.253,0.5464,-0.7984,-0.253,-0.318,0.9137,-0.2526,-0.2156,0.9432,-0.2522,0.9642,-0.0818,-0.252,0.9645,-0.0793,-0.2518,0.7306,-0.6347,-0.2515,0.7016,-0.6667,-0.2515,0.4657,-0.8485,-0.2513,0.6097,0.7517,-0.2505,-0.0733,0.9653,-0.2504,0.3306,-0.9099,-0.2502,-0.2159,0.9438,-0.2502,0.9089,-0.3338,-0.2497,0.9435,0.218,-0.2489,-0.2459,0.9368,-0.2487,0.0464,0.9675,-0.2487,-0.1842,0.9509,-0.2486,0.3848,-0.8889,-0.2481,0.821,0.5141,-0.2481,0.2451,-0.9372,-0.2477,0.4263,-0.87,-0.2475,0.689,-0.6813,-0.2474,-0.3814,-0.8907,-0.2469,-0.8138,-0.5261,-0.2468,-0.3351,0.9093,-0.2466,0.4916,-0.8352,-0.2459,0.4884,0.8372,-0.2455,-0.3228,0.914,-0.2449,-0.2757,0.9295,-0.2446,0.3627,0.8992,-0.2445,-0.2307,0.9418,-0.2441,0.2614,-0.9338,-0.2439,0.3201,-0.9155,-0.2437,0.0823,-0.9663,-0.2434,0.4258,0.8715,-0.2433,0.9311,-0.2716,-0.2432,0.2144,0.946,-0.2431,-0.0691,0.9675,-0.2431,-0.0562,0.9684,-0.2427,0.9539,-0.1764,-0.2426,0.5893,-0.7707,-0.2422,0.3813,0.8921,-0.242,0.5158,-0.8218,-0.2409,-0.6636,-0.7083,-0.2403,-0.2747,0.931,-0.2401,0.9607,-0.1396,-0.2397,-0.0491,0.9696,-0.2397,0.8839,0.4017,-0.2385,0.8008,-0.5494,-0.2381,0.4527,-0.8593,-0.2381,-0.1884,0.9528,-0.2381,0.4552,0.858,-0.238,0.6246,-0.7438,-0.2378,0.4407,0.8656,-0.2375,0.1447,0.9606,-0.2373,-0.1623,0.9578,-0.2368,-0.1207,0.964,-0.2368,-0.4072,0.8821,-0.2366,0.329,-0.9142,-0.2361,-0.1184,0.9645,-0.236,0.5236,-0.8186,-0.2359,0.4388,-0.867,-0.2356,0.9304,-0.2806,-0.2351,0.466,0.853,-0.235,0.6549,0.7183,-0.2348,-0.553,0.7994,-0.2339,0.9687,-0.0825,-0.233,0.567,0.7901,-0.2329,0.9477,-0.2181,-0.2326,0.6124,-0.7556,-0.2325,0.6174,-0.7515,-0.2321,0.474,0.8494,-0.2316,0.8567,-0.4609,-0.2309,-0.5446,0.8063,-0.2308,0.7934,0.5633,-0.2307,0.9575,-0.1733,-0.2306,-0.297,-0.9266,-0.2304,-0.5297,0.8163,-0.2302,0.579,-0.7822,-0.2297,-0.4356,0.8703,-0.2297,0.1706,0.9582,-0.2296,0.354,0.9066,-0.2296,0.8347,-0.5006,-0.2293,-0.3371,0.9131,-0.2291,0.9307,-0.2852,-0.2287,0.9643,0.1335,-0.2286,0.8841,0.4075,-0.2281,-0.1991,0.9531,-0.228,0.7113,0.6649,-0.2271,0.6169,-0.7536,-0.2265,-0.0767,0.971,-0.2264,0.9508,0.2116,-0.2264,0.9077,0.3533,-0.2263,-0.3513,0.9085,-0.2257,-0.0109,0.9741,-0.2255,0.5146,-0.8273,-0.2249,0.345,0.9113,-0.2248,0.4613,-0.8583,-0.2246,0.9642,0.1409,-0.2243,0.9655,0.1324,-0.2243,-0.0259,0.9742,-0.2243,0.5652,-0.7939,-0.2233,0.2966,0.9285,-0.2232,0.9273,-0.3005,-0.2231,0.6762,-0.7021,-0.223,-0.8387,0.4969,-0.2218,0.3346,-0.9159,-0.2218,-0.1003,-0.9699,-0.2214,0.9506,-0.2178,-0.221,0.0823,-0.9718,-0.2203,0.5813,-0.7833,-0.2202,-0.2557,0.9414,-0.2202,-0.2329,0.9473,-0.22,0.9744,-0.0457,-0.2196,-0.1101,0.9694,-0.2195,0.9371,0.2713,-0.2194,0.9109,0.3494,-0.2187,0.0484,0.9746,-0.2185,-0.4237,-0.879,-0.2184,0.3544,-0.9092,-0.2178,0.337,-0.9159,-0.2177,0.6837,-0.6965,-0.2169,0.2139,0.9525,-0.2169,0.1009,0.971,-0.2168,0.861,0.4601,-0.2168,0.631,0.7449,-0.2167,-0.4937,0.8422,-0.2166,-0.0841,0.9726,-0.2164,0.4208,-0.881,-0.2164,0.829,0.5157,-0.2163,0.9585,-0.1858,-0.216,0.4907,0.8441,-0.2159,0.5477,0.8084,-0.2152,0.9666,0.1393,-0.2151,-0.1224,0.9689,-0.215,0.797,-0.5645,-0.2147,0.9494,-0.2292,-0.2145,0.9349,0.2827,-0.2145,0.7052,-0.6758,-0.2128,0.5032,-0.8375,-0.2124,0.8645,0.4556,-0.2123,-0.18,0.9605,-0.2114,0.4431,0.8712,-0.2112,0.4717,-0.8561,-0.2112,0.3036,-0.9291,-0.211,-0.385,0.8985,-0.2106,0.0986,-0.9726,-0.2106,0.9776,-0.0039,-0.2102,-0.2051,-0.9559,-0.2102,-0.5232,0.8259,-0.2102,0.9625,0.1718,-0.2102,0.2087,0.9551,-0.2099,-0.4855,0.8487,-0.2096,0.7241,-0.657,-0.2088,-0.2901,0.9339,-0.2085,-0.2866,0.9351,-0.2084,0.0225,0.9778,-0.2081,0.5885,0.7813,-0.2077,0.2554,-0.9443,-0.2074,0.785,-0.5837,-0.2067,-0.0669,0.9761,-0.2061,0.9473,0.2454,-0.206,-0.9572,0.2032,-0.2059,0.8946,-0.3965,-0.2056,0.9004,0.3833,-0.2055,0.8643,-0.459,-0.205,0.3995,-0.8935,-0.2048,0.9583,-0.1995,-0.2047,0.2691,-0.9411,-0.2044,0.974,-0.0974,-0.204,-0.1697,0.9641,-0.204,-0.1951,0.9593,-0.2039,0.4718,-0.8578,-0.2038,0.352,-0.9135,-0.2037,0.9748,-0.0908,-0.2035,-0.1239,0.9712,-0.2021,-0.431,0.8794,-0.2016,0.7526,-0.6268,-0.2003,0.5323,0.8225,-0.1998,0.5065,-0.8388,-0.1996,0.1824,-0.9627,-0.1996,0.8071,-0.5557,-0.1996,0.2331,-0.9518,-0.199,0.8035,-0.5611,-0.1989,0.1837,-0.9626,-0.1989,0.8977,0.3931,-0.1985,0.4089,0.8907,-0.1985,0.8203,0.5364,-0.1979,0.9561,0.2162,-0.1977,0.3193,-0.9268,-0.1974,0.9752,0.1006,-0.1974,-0.3868,0.9008,-0.1974,-0.4845,-0.8522,-0.197,0.0515,0.9791,-0.197,-0.3706,0.9077,-0.1965,0.1899,-0.9619,-0.1962,0.3814,-0.9033,-0.1962,0.4352,-0.8787,-0.1962,0.7236,-0.6617,-0.1961,0.2707,-0.9425,-0.1957,0.6038,-0.7728,-0.1953,0.1254,0.9727,-0.1952,0.9795,0.0501,-0.1947,0.3904,-0.8998,-0.1944,0.0725,0.9782,-0.1936,0.4022,-0.8948,-0.1932,0.9664,-0.1694,-0.1927,0.7861,-0.5873,-0.1923,0.9417,0.276,-0.1923,0.9419,0.2754,-0.1922,0.5657,-0.8019,-0.1918,-0.4548,-0.8697,-0.1916,0.6742,-0.7132,-0.1916,0.9417,0.2765,-0.1913,0.2647,-0.9452,-0.1913,0.4629,-0.8655,-0.1912,0.944,0.269,-0.1907,-0.0657,-0.9795,-0.1906,0.857,0.4788,-0.1902,0.9738,-0.1248,-0.1902,0.8646,0.4651,-0.19,0.3426,-0.9201,-0.1899,-0.2557,0.9479,-0.1897,0.8118,0.5522,-0.1895,0.4127,-0.8909,-0.1892,0.6736,0.7144,-0.1892,0.1454,0.9711,-0.1887,-0.1352,0.9727,-0.1887,0.8108,-0.554,-0.1887,0.9812,0.0403,-0.1884,0.4808,-0.8563,-0.1882,0.8917,-0.4117,-0.1879,-0.9276,-0.3228,-0.1878,0.7967,-0.5744,-0.1878,-0.1661,0.9681,-0.187,0.6148,-0.7661,-0.187,0.976,0.1117,-0.1869,0.4544,-0.871,-0.1869,0.6988,-0.6905,-0.1868,0.9499,-0.2506,-0.1867,0.959,0.2133,-0.1862,-0.03,0.982,-0.1858,-0.0775,0.9795,-0.1856,0.7562,0.6275,-0.1855,-0.2499,0.9503,-0.1851,0.5709,-0.7999,-0.1851,0.9821,0.0351,-0.1851,0.9803,0.0694,-0.185,-0.1534,0.9707,-0.185,0.6486,-0.7383,-0.1849,-0.2416,0.9526,-0.1848,0.8847,0.4279,-0.1847,-0.0699,0.9803,-0.1833,0.2325,0.9552,-0.1827,0.7239,0.6653,-0.1826,-0.0054,0.9832,-0.1814,0.7921,0.5827,-0.1814,0.3749,0.9091,-0.1814,0.8367,-0.5167,-0.1814,-0.4905,-0.8523,-0.181,0.7286,-0.6606,-0.1807,0.9832,0.0242,-0.1803,0.3097,0.9336,-0.1801,-0.2318,-0.9559,-0.1801,0.8663,0.466,-0.18,-0.1778,0.9675,-0.1791,0.9774,0.1126,-0.1791,-0.3724,0.9106,-0.1788,-0.7006,-0.6908,-0.1787,0.8908,0.4177,-0.178,-0.5159,0.8379,-0.1778,0.932,0.3159,-0.1774,0.3324,0.9263,-0.1774,-0.2363,0.9553,-0.1771,0.5689,-0.8031,-0.177,-0.8679,0.4642,-0.1769,0.8501,0.496,-0.1768,0.2058,0.9625,-0.1764,0.1973,-0.9644,-0.1763,0.891,0.4184,-0.1761,0.8346,-0.5219,-0.1759,0.8324,-0.5255,-0.1756,0.2877,0.9415,-0.1754,-0.3718,-0.9116,-0.1754,0.9259,0.3346,-0.1743,0.0019,-0.9847,-0.1738,0.3444,-0.9226,-0.1738,-0.3337,0.9265,-0.1737,0.6705,-0.7213,-0.1735,0.938,0.3002,-0.1734,0.8151,0.5528,-0.173,0.584,-0.7931,-0.173,0.9733,0.1507,-0.1728,0.6845,-0.7083,-0.1727,0.203,0.9638,-0.1724,0.9794,0.1049,-0.1722,-0.1185,0.9779,-0.1715,0.6255,0.7611,-0.1712,0.6932,-0.7001,-0.1711,0.924,0.3419,-0.1709,-0.8762,-0.4507,-0.1698,0.6778,-0.7154,-0.1697,-0.2054,0.9639,-0.1693,0.9016,0.398,-0.1692,0.8955,0.4117,-0.1689,-0.3204,0.9321,-0.1686,-0.1665,0.9715,-0.1684,0.8673,-0.4685,-0.1681,0.9652,0.2004,-0.1678,0.7965,-0.5808,-0.1677,0.9692,0.1805,-0.1677,0.706,-0.688,-0.1676,0.2653,-0.9495,-0.167,-0.287,0.9432,-0.167,-0.3851,0.9076,-0.167,0.939,0.3006,-0.1664,0.5276,-0.8331,-0.1662,0.2971,-0.9403,-0.1662,0.7002,0.6943,-0.1659,-0.1616,0.9728,-0.1659,-0.1879,0.9681,-0.1658,-0.3414,0.9252,-0.1653,0.96,0.2262,-0.1647,-0.3003,0.9395,-0.1643,0.4381,-0.8838,-0.1642,0.4757,0.8641,-0.1638,0.6516,-0.7407,-0.1636,0.8961,-0.4126,-0.1635,0.5466,-0.8213,-0.1634,0.8674,-0.4701,-0.1634,0.9839,0.0721,-0.1634,-0.0459,0.9855,-0.1633,0.6069,-0.7779,-0.1631,0.3383,0.9268,-0.1628,-0.0673,0.9844,-0.1627,0.0822,-0.9832,-0.1627,0.7592,-0.6302,-0.1626,0.6262,0.7625,-0.1623,-0.3714,0.9142,-0.162,0.1794,0.9704,-0.1619,0.2219,-0.9615,-0.1618,0.9849,0.0623,-0.1613,0.169,-0.9723,-0.1613,-0.364,0.9173,-0.161,-0.5819,0.7972,-0.1609,0.4741,0.8656,-0.1607,0.368,-0.9158,-0.1599,-0.5406,0.8259,-0.1596,-0.2997,0.9406,-0.1593,-0.5238,0.8368,-0.1577,-0.3274,0.9316,-0.1576,-0.1979,0.9675,-0.1568,0.8688,-0.4697,-0.1562,0.2136,0.9644,-0.1558,-0.4358,0.8864,-0.1558,0.924,0.3492,-0.1557,0.8673,0.4729,-0.1544,-0.4904,0.8577,-0.1543,0.048,0.9869,-0.1539,0.5229,-0.8384,-0.1539,0.9881,0.0028,-0.1537,-0.9649,-0.2128,-0.1534,0.7398,0.6551,-0.1532,0.3519,-0.9234,-0.1532,0.7176,-0.6794,-0.1532,-0.6622,-0.7335,-0.1527,0.0317,0.9878,-0.1526,0.9836,0.0957,-0.1522,0.6288,-0.7626,-0.1521,0.9576,-0.2448,-0.152,-0.0371,-0.9877,-0.1516,0.9665,0.2072,-0.1514,0.9168,0.3695,-0.1511,-0.0852,0.9848,-0.1507,0.956,-0.2517,-0.1504,0.462,-0.874,-0.1502,0.9237,0.3523,-0.1502,0.9883,-0.0275,-0.1498,0.9194,-0.3636,-0.1496,0.3474,-0.9257,-0.1474,-0.2759,-0.9498,-0.1469,0.0321,0.9886,-0.1466,-0.0708,0.9867,-0.146,-0.2334,-0.9614,-0.1459,-0.3456,0.927,-0.1452,0.892,0.4281,-0.1452,0.9667,0.2107,-0.145,-0.0597,0.9876,-0.1448,0.1012,0.9843,-0.1447,-0.4991,0.8544,-0.1447,0.9737,-0.1759,-0.1446,-0.2668,0.9528,-0.1446,0.8462,-0.5128,-0.1445,-0.2508,0.9572,-0.1445,-0.1689,0.975,-0.1445,0.9648,-0.2199,-0.1443,0.6167,0.7738,-0.1442,-0.5503,-0.8224,-0.1434,0.9832,-0.1133,-0.1432,-0.3239,0.9352,-0.1431,0.6296,0.7636,-0.1431,0.721,-0.6781,-0.143,-0.6716,-0.727,-0.143,0.6944,-0.7053,-0.1423,0.6739,-0.725,-0.1418,0.7465,0.6501,-0.1417,0.9411,0.3071,-0.1409,-0.3999,0.9057,-0.1407,0.2525,-0.9573,-0.1401,-0.2331,0.9623,-0.1399,-0.555,0.82,-0.1396,-0.2439,0.9597,-0.1395,-0.9538,-0.266,-0.1393,-0.188,0.9722,-0.1381,0.9346,0.3277,-0.138,0.895,0.4241,-0.137,0.9906,0.0018,-0.1368,0.9201,0.3669,-0.1367,0.9785,0.1545,-0.1367,0.3238,-0.9362,-0.1367,0.9891,0.0555,-0.1366,0.9423,0.3058,-0.1362,-0.6868,-0.714,-0.1362,-0.5245,-0.8404,-0.1357,0.2207,-0.9659,-0.1356,-0.9651,-0.224,-0.1355,-0.7553,-0.6412,-0.1351,0.3455,-0.9287,-0.135,0.2372,-0.962,-0.1339,-0.9826,0.1291,-0.1334,0.6431,-0.7541,-0.1329,0.3674,-0.9205,-0.1328,-0.4638,-0.8759,-0.1323,-0.0697,0.9888,-0.1317,0.002,0.9913,-0.1316,0.7211,0.6802,-0.1314,0.5566,-0.8203,-0.1313,-0.5967,-0.7917,-0.1307,-0.5747,-0.8079,-0.1302,0.9094,-0.3951,-0.1302,0.4347,-0.8911,-0.13,0.883,0.451,-0.1299,0.5552,-0.8215,-0.1296,-0.0134,0.9915,-0.1283,0.9749,0.1822,-0.1281,0.987,-0.0972,-0.1277,0.9819,-0.1396,-0.1273,-0.9382,-0.3218,-0.1272,0.926,0.3554,-0.1268,-0.7739,-0.6205,-0.1267,0.9002,0.4166,-0.1264,0.9135,0.3867,-0.1261,-0.2702,0.9545,-0.1261,0.923,0.3636,-0.1258,0.3775,-0.9174,-0.1255,0.9513,0.2816,-0.1242,0.0025,0.9923,-0.1234,0.9803,-0.1545,-0.1231,0.6581,0.7428,-0.1228,0.8536,0.5062,-0.1227,0.9813,-0.1482,-0.122,-0.8525,-0.5083,-0.1219,0.9779,0.1701,-0.1217,0.3204,0.9394,-0.1217,-0.3811,0.9165,-0.1214,0.6628,-0.7389,-0.1209,0.9922,-0.0308,-0.1207,-0.9924,0.0252,-0.1206,0.6362,-0.7621,-0.1204,0.6935,-0.7103,-0.1203,0.9612,0.2481,-0.1196,-0.5163,-0.848,-0.1194,0.5957,0.7942,-0.1185,-0.3688,0.9219,-0.1181,-0.645,-0.755,-0.1176,-0.8642,-0.4892,-0.1174,0.5625,0.8184,-0.1174,0.9883,0.097,-0.1171,-0.1549,0.981,-0.1166,0.3414,0.9327,-0.1165,0.2073,0.9713,-0.1164,0.8667,0.485,-0.1164,0.9643,-0.2378,-0.1157,0.9933,0.0071,-0.1154,0.9933,0.0045,-0.1153,0.3223,-0.9396,-0.1148,0.2142,-0.97,-0.1145,0.2338,-0.9655,-0.1143,0.9869,-0.114,-0.1138,0.2024,-0.9727,-0.1138,0.9855,-0.1259,-0.1138,-0.1949,0.9742,-0.1137,0.992,0.0541,-0.1136,0.9504,0.2894,-0.1135,-0.2817,0.9528,-0.1131,0.5857,-0.8026,-0.1131,-0.5706,0.8134,-0.1127,-0.5304,0.8402,-0.1126,0.5191,0.8472,-0.1125,0.4022,-0.9086,-0.1108,0.9918,0.0633,-0.1103,0.6664,-0.7374,-0.1098,0.6987,0.7069,-0.1094,0.6252,-0.7728,-0.1092,0.6071,-0.7871,-0.1091,0.233,-0.9663,-0.1089,0.9403,-0.3225,-0.1089,0.8472,-0.52,-0.1088,0.9008,0.4203,-0.1085,0.8105,-0.5756,-0.1075,0.9927,0.0552,-0.1072,0.5187,0.8482,-0.107,-0.0638,0.9922,-0.1066,0.4447,-0.8893,-0.1062,-0.1077,-0.9885,-0.1061,-0.8804,-0.4622,-0.106,-0.6174,-0.7795,-0.1057,-0.594,-0.7975,-0.1048,0.9555,0.2759,-0.1045,0.5841,-0.8049,-0.1042,-0.2426,0.9645,-0.1031,0.8449,0.525,-0.1027,0.9599,-0.2608,-0.1026,0.8024,-0.5879,-0.1021,0.9193,0.3801,-0.102,0.9687,0.2264,-0.1015,-0.2575,0.9609,-0.1012,0.6554,0.7485,-0.1011,-0.1811,0.9783,-0.1006,-0.1421,0.9847,-0.1001,-0.1393,0.9852,-0.1001,0.7799,-0.6179,-0.1,-0.1096,-0.9889,-0.0997,0.5257,-0.8448,-0.0989,0.7482,0.6561,-0.0985,0.3921,0.9146,-0.0983,0.9564,0.2749,-0.098,0.9829,0.156,-0.0972,-0.5642,-0.8199,-0.0972,0.9587,-0.2674,-0.0966,0.9951,0.0185,-0.0963,0.7844,-0.6127,-0.0962,-0.5783,-0.8101,-0.0961,0.5937,0.7989,-0.0951,0.6887,0.7188,-0.0941,0.9929,-0.0722,-0.094,0.7262,-0.681,-0.0936,0.9939,0.0591,-0.0934,0.9152,0.392,-0.0932,0.3966,0.9132,-0.093,0.0502,0.9944,-0.0926,0.9721,0.2154,-0.0925,0.9946,0.0469,-0.0918,0.9134,-0.3966,-0.0915,0.0486,0.9946,-0.0914,0.6296,0.7715,-0.0912,0.8217,0.5626,-0.0908,-0.087,0.9921,-0.0905,0.0608,0.994,-0.0904,-0.8431,-0.5301,-0.0899,0.7156,-0.6927,-0.0898,0.3512,-0.932,-0.0887,-0.0368,-0.9954,-0.0884,-0.0838,0.9926,-0.0884,-0.1268,0.988,-0.0872,0.9899,-0.1118,-0.0866,-0.1773,0.9803,-0.0866,0.4587,-0.8844,-0.0858,0.0768,-0.9934,-0.0857,0.9466,0.3107,-0.0854,-0.5334,-0.8416,-0.0853,0.2698,0.9591,-0.0851,0.8302,0.551,-0.085,0.282,-0.9556,-0.0847,-0.1415,0.9863,-0.0846,0.3834,-0.9197,-0.0839,-0.9952,0.0509,-0.0831,0.3695,-0.9255,-0.0829,0.3322,-0.9396,-0.0828,0.9835,0.1607,-0.0824,0.3393,-0.9371,-0.0822,-0.1889,0.9785,-0.0821,0.1009,0.9915,-0.0819,-0.5,0.8621,-0.0819,0.6282,0.7737,-0.0818,-0.1474,0.9857,-0.0817,0.5673,0.8194,-0.0816,0.0235,0.9964,-0.0815,0.2969,-0.9514,-0.0814,0.7163,-0.693,-0.0814,0.1736,0.9814,-0.0814,-0.1813,0.9801,-0.0809,0.5762,-0.8133,-0.0808,-0.8719,-0.4831,-0.0806,-0.0907,0.9926,-0.0804,0.9717,0.2223,-0.0799,-0.8569,-0.5093,-0.0796,0.3293,-0.9409,-0.0792,0.5299,-0.8444,-0.0782,-0.2804,-0.9567,-0.0781,0.8562,-0.5108,-0.0778,0.3605,-0.9295,-0.0777,0.3819,0.9209,-0.0774,0.9673,0.2414,-0.0769,-0.3787,0.9223,-0.0768,0.9664,0.2454,-0.0766,0.9689,-0.2354,-0.0766,0.9939,0.0793,-0.0763,0.9044,-0.4198,-0.0763,0.0475,0.996,-0.0759,-0.217,-0.9732,-0.0758,0.8979,-0.4336,-0.0757,0.9597,-0.2707,-0.0755,0.3522,-0.9329,-0.0754,0.8493,0.5224,-0.0754,-0.3644,0.9282,-0.075,-0.3831,-0.9207,-0.0748,0.9971,-0.0169,-0.0744,0.9557,0.2849,-0.0743,0.9913,0.1087,-0.0743,0.997,-0.0207,-0.0743,0.8399,-0.5376,-0.0742,-0.1342,0.9882,-0.074,0.0775,-0.9942,-0.0739,0.7344,-0.6746,-0.0737,-0.0174,0.9971,-0.0731,-0.4895,-0.869,-0.0728,0.9076,0.4134,-0.0724,0.9364,0.3434,-0.0724,-0.0597,0.9956,-0.0722,0.8048,-0.5891,-0.0721,0.2879,-0.9549,-0.072,0.3456,-0.9356,-0.0712,-0.306,0.9494,-0.0709,0.9795,-0.1887,-0.0708,0.9906,-0.1173,-0.0697,0.3278,-0.9422,-0.0697,0.9769,0.2019,-0.0694,0.1236,0.9899,-0.0693,0.9078,0.4137,-0.0689,0.9459,0.3171,-0.0689,-0.1891,0.9795,-0.0688,0.3704,-0.9263,-0.0686,0.6541,-0.7533,-0.0684,0.8908,0.4492,-0.0677,-0.8611,-0.5038,-0.0676,-0.5097,0.8577,-0.0669,-0.3394,-0.9383,-0.0663,0.9791,0.192,-0.066,-0.3265,0.9429,-0.066,0.8693,0.4899,-0.0655,0.1867,-0.9802,-0.0649,-0.4929,-0.8677,-0.0646,0.8148,0.5761,-0.0643,0.9977,0.0189,-0.0641,0.1137,0.9914,-0.064,0.1565,0.9856,-0.0636,-0.0673,0.9957,-0.0633,0.3687,-0.9274,-0.0632,0.433,-0.8992,-0.0629,0.8414,-0.5367,-0.0629,-0.5447,-0.8363,-0.0627,0.8448,0.5314,-0.0627,0.2044,-0.9769,-0.0624,0.7621,-0.6445,-0.0623,-0.1917,0.9795,-0.062,0.998,0.0155,-0.0617,-0.3131,0.9477,-0.0616,0.7593,-0.6478,-0.0616,-0.5151,-0.8549,-0.0615,0.892,0.4478,-0.0612,0.3617,-0.9303,-0.0611,-0.3255,-0.9436,-0.061,-0.3755,0.9248,-0.0605,0.2456,-0.9675,-0.0605,0.9125,-0.4045,-0.0599,0.9703,-0.2344,-0.0599,-0.3005,0.9519,-0.0597,0.2375,-0.9695,-0.0596,0.1607,0.9852,-0.0594,-0.1969,0.9786,-0.0591,-0.6268,-0.777,-0.0589,0.6956,-0.716,-0.0588,0.9842,0.167,-0.0581,-0.1917,-0.9797,-0.0581,-0.0294,0.9979,-0.0578,0.9981,-0.0216,-0.0575,-0.097,0.9936,-0.0568,0.4643,-0.8838,-0.0566,-0.0625,0.9964,-0.0566,0.9983,-0.0103,-0.0561,0.969,0.2407,-0.0559,0.9983,-0.0133,-0.0558,0.2619,-0.9635,-0.0558,-0.8534,-0.5182,-0.0552,0.205,-0.9772,-0.055,-0.4867,0.8719,-0.0549,-0.387,0.9205,-0.0543,0.3836,-0.9219,-0.0542,0.9974,0.0469,-0.054,0.9967,-0.06,-0.0537,0.8752,0.4808,-0.0534,0.6942,-0.7178,-0.0533,-0.1654,0.9848,-0.0533,0.0789,0.9955,-0.0532,0.8635,-0.5016,-0.0532,0.9966,-0.0635,-0.0531,0.9108,0.4095,-0.053,0.7473,-0.6624,-0.0529,0.3076,-0.95,-0.0527,0.081,0.9953,-0.0526,0.0068,0.9986,-0.0518,0.957,-0.2855,-0.0515,0.4146,-0.9086,-0.0514,0.9987,0.0023,-0.051,-0.8134,-0.5795,-0.0509,0.3965,-0.9166,-0.0503,0.1538,-0.9868,-0.0494,-0.1301,0.9903,-0.049,0.9883,0.1444,-0.0485,0.2599,-0.9644,-0.0482,-0.8783,0.4757,-0.0479,-0.2062,0.9773,-0.0476,0.0275,0.9985,-0.0475,-0.0286,0.9985,-0.0475,0.5835,-0.8107,-0.0474,0.9054,-0.4219,-0.047,0.4723,-0.8802,-0.0467,0.2292,-0.9723,-0.0467,-0.3532,0.9344,-0.0463,0.9965,-0.0698,-0.0461,0.1332,0.99,-0.0459,0.9977,-0.0493,-0.0456,0.9953,-0.0851,-0.0456,0.9989,0.0109,-0.0455,0.7537,-0.6557,-0.0451,0.9967,-0.0682,-0.045,0.3688,-0.9284,-0.0447,0.9986,-0.0298,-0.0442,0.975,-0.2177,-0.0434,0.9779,-0.2047,-0.0427,0.8741,-0.4839,-0.0426,-0.1236,0.9914,-0.0424,-0.6257,-0.7789,-0.0423,-0.2708,0.9617,-0.0422,0.6046,0.7954,-0.0421,0.7112,-0.7017,-0.0417,0.3862,-0.9215,-0.0416,-0.2632,0.9638,-0.0415,0.1992,0.9791,-0.0415,-0.8487,-0.5273,-0.0412,-0.1547,0.9871,-0.0396,0.7167,-0.6962,-0.0393,0.9571,-0.287,-0.0393,-0.2183,0.9751,-0.0393,0.935,0.3525,-0.0384,0.9048,-0.424,-0.0381,0.8019,-0.5962,-0.0381,0.9241,0.3803,-0.0371,-0.0797,0.9961,-0.0365,0.651,-0.7582,-0.0363,0.3401,-0.9397,-0.0362,0.9029,0.4284,-0.0352,0.4839,-0.8744,-0.0343,0.4494,-0.8927,-0.034,-0.4222,0.9058,-0.0338,0.955,0.2947,-0.0336,0.1811,0.9829,-0.0319,0.981,0.1915,-0.0319,-0.8773,-0.4788,-0.0315,0.7184,-0.695,-0.0315,-0.5149,0.8567,-0.0315,0.9992,0.0245,-0.0309,0.3455,0.9379,-0.0294,0.979,0.2017,-0.0292,0.7595,-0.6499,-0.0288,0.9854,-0.1679,-0.0285,-0.2517,0.9674,-0.0283,0.9984,-0.0494,-0.028,0.9947,-0.0993,-0.028,0.9993,0.0241,-0.027,0.9332,0.3584,-0.0263,0.9993,-0.0247,-0.0259,0.9263,0.376,-0.0258,0.3594,-0.9328,-0.0256,0.9915,-0.1279,-0.0251,0.9892,-0.1446,-0.025,0.9735,0.2273,-0.0244,-0.6619,-0.7492,-0.0239,-0.0228,0.9995,-0.0235,0.4366,0.8994,-0.0235,0.6742,0.7382,-0.0228,0.9684,0.2484,-0.0225,0.2549,-0.9667,-0.0224,-0.0751,0.9969,-0.0223,-0.1383,0.9901,-0.0219,-0.8479,-0.5296,-0.0218,0.8334,-0.5523,-0.0216,0.458,0.8887,-0.0215,0.2591,-0.9656,-0.0213,0.9812,0.192,-0.0212,0.2724,0.9619,-0.021,0.2609,-0.9651,-0.0207,0.5758,0.8174,-0.0206,0.4985,0.8667,-0.0205,0.8237,0.5666,-0.0199,0.6617,0.7495,-0.0198,0.9852,-0.1703,-0.019,0.5337,-0.8455,-0.0186,0.9907,0.135,-0.0185,0.5553,0.8315,-0.0182,-0.3198,0.9473,-0.0179,0.1741,0.9846,-0.0178,0.4669,0.8841,-0.0176,0.9822,-0.187,-0.0174,0.1408,0.9899,-0.0172,-0.4836,0.8751,-0.0171,-0.9515,-0.3071,-0.0169,0.5611,-0.8276,-0.0166,-0.0551,0.9983,-0.0165,-0.5295,-0.8481,-0.0163,0.991,-0.1332,-0.0159,0.9174,-0.3976,-0.0159,-0.0489,0.9987,-0.0155,0.5484,-0.8361,-0.0153,0.8845,-0.4664,-0.0147,-0.0558,0.9983,-0.0142,0.4624,-0.8866,-0.0139,0.4065,0.9136,-0.0137,-0.1898,0.9817,-0.0135,0.92,0.3918,-0.0135,0.9594,-0.2818,-0.0134,-0.1982,0.9801,-0.0131,0.8183,0.5747,-0.013,-0.5507,-0.8346,-0.013,0.0968,0.9952,-0.0129,0.4112,-0.9114,-0.0129,0.8172,0.5762,-0.0121,0.923,0.3845,-0.0113,0.6496,-0.7602,-0.0108,0.916,0.4011,-0.0106,0.9976,-0.0691,-0.0106,0.9959,-0.0894,-0.0103,0.5552,-0.8317,-0.01,0.2483,0.9686,-0.01,0.9988,-0.0474,-0.01,0.6804,0.7328,-0.0095,0.3407,0.9401,-0.0094,0.4453,-0.8954,-0.0092,0.9107,-0.4129,-0.0091,0.4666,0.8844,-0.0091,0.7445,0.6676,-0.0078,0.5119,-0.859,-0.0069,0.873,0.4876,-0.0068,0.5704,-0.8213,-0.0061,0.0515,0.9987,-0.0058,0.39,-0.9208,-0.0055,-0.6168,-0.7871,-0.0054,0.0474,0.9989,-0.005,0.9877,-0.1565,-0.0042,0.9742,-0.2255,-0.0042,0.9958,0.0918,-0.0039,0.1182,0.993,-0.0039,0.9839,0.1786,-0.0037,0.9186,0.3952,-0.0033,0.9967,0.0808,-0.0029,0.2492,-0.9684,-0.0017,0.1934,0.9811,-0.0016,0.9492,0.3148,-0.0016,0.9571,0.2899,-0.0014,0.5211,-0.8535,-0.0013,0.9026,-0.4304,-0.0012,0.9983,-0.0581,-0.0007,-0.0829,0.9966,-0.0006,0.9133,0.4073,-0.0002,0.9078,0.4194,0.0,-0.0133,0.9999,0.0,0.0379,0.9993,0.0,0.0776,0.997,0.0,0.1151,0.9934,0.0,-0.223,0.9748,0.0,-0.4049,0.9144,0.0,-0.517,0.856,0.0,0.5292,0.8485,0.0,-0.5928,0.8053,0.0,-0.8387,0.5446,0.0,0.8692,0.4945,0.0,0.9643,0.2649,0.0,-0.9724,0.2334,0.0,0.9972,0.0746,0.0,0.0,0.0};
			return value;
		}

		/** Define subarray values using type double[] with $tupleSize=3 and $tupleSplitSize=1000 for subarray position()=5 */
		private double[] getNormal_6_878_vector_5()
		{
			double[] value = {0.0,0.9285,-0.3713,0.0,-0.8908,-0.4544,0.0,0.5556,-0.8315,0.0,0.5312,-0.8472,0.0,-0.4673,-0.8841,0.0,-0.4455,-0.8953,0.0,0.3435,-0.9392,0.0,-0.3418,-0.9398,0.0,0.0924,-0.9957,0.0,-0.0021,-1.0,0.0002,0.9078,0.4194,0.0006,0.9133,0.4073,0.0006,-0.1778,-0.9841,0.0007,-0.0829,0.9966,0.0013,0.9026,-0.4304,0.0016,0.9571,0.2899,0.0017,0.1934,0.9811,0.0018,0.6523,0.7579,0.0025,0.9742,-0.2255,0.0026,-0.6702,-0.7422,0.0027,0.6329,-0.7742,0.0029,0.2492,-0.9684,0.0033,0.9967,0.0808,0.0037,0.9186,0.3952,0.0039,0.9839,0.1786,0.0039,0.1182,0.993,0.0041,0.6494,0.7605,0.0042,0.9958,0.0918,0.0042,0.9742,-0.2255,0.005,0.9877,-0.1565,0.0052,0.5985,-0.8011,0.0058,0.39,-0.9208,0.0065,0.6926,0.7213,0.0065,0.9975,-0.0706,0.0069,0.873,0.4876,0.0071,0.093,0.9956,0.0081,-0.8306,-0.5568,0.0091,0.7445,0.6676,0.0091,0.6286,-0.7777,0.0093,0.6005,0.7996,0.0093,0.4621,0.8868,0.0094,0.4453,-0.8954,0.01,0.6804,0.7328,0.01,0.9988,-0.0474,0.01,0.2483,0.9686,0.0103,0.5552,-0.8317,0.0103,0.3475,0.9376,0.0106,0.9976,-0.0691,0.0108,0.916,0.4011,0.0111,0.9915,-0.1295,0.0112,0.9267,0.3757,0.0113,0.6496,-0.7602,0.0121,0.923,0.3845,0.0123,0.1621,0.9867,0.0129,0.8172,0.5762,0.0129,0.4112,-0.9114,0.0131,-0.9019,-0.4318,0.0131,0.8183,0.5747,0.0134,-0.1982,0.9801,0.0135,0.9594,-0.2818,0.0135,0.92,0.3918,0.0136,0.6923,0.7215,0.0139,0.4065,0.9136,0.014,-0.8191,-0.5735,0.0142,0.4624,-0.8866,0.0147,-0.0558,0.9983,0.0153,0.8845,-0.4664,0.0159,-0.0489,0.9987,0.0163,0.991,-0.1332,0.0164,0.1681,-0.9856,0.0166,0.9976,-0.0676,0.0166,-0.0551,0.9983,0.0171,-0.9515,-0.3071,0.0174,0.1408,0.9899,0.0176,0.9822,-0.187,0.0178,0.4669,0.8841,0.0179,0.1741,0.9846,0.0182,-0.3198,0.9473,0.0182,0.4597,0.8879,0.0184,-0.6687,-0.7433,0.0186,0.9907,0.135,0.019,0.5337,-0.8455,0.0198,0.9852,-0.1703,0.0199,0.6617,0.7495,0.0205,0.8237,0.5666,0.021,0.2609,-0.9651,0.0213,0.9812,0.192,0.0216,0.458,0.8887,0.0219,-0.8479,-0.5296,0.0223,-0.1383,0.9901,0.0224,-0.0751,0.9969,0.0225,0.2549,-0.9667,0.0228,0.9684,0.2484,0.0235,0.4366,0.8994,0.0236,0.9918,-0.1256,0.0239,-0.0228,0.9995,0.0249,-0.9071,-0.4201,0.025,0.9735,0.2273,0.0251,0.9892,-0.1446,0.0258,-0.5737,-0.8186,0.027,0.9332,0.3584,0.0276,0.9898,-0.14,0.0279,-0.526,-0.8501,0.028,0.9993,0.0241,0.028,0.9947,-0.0993,0.0281,0.9993,-0.0252,0.0283,0.9984,-0.0494,0.0285,-0.2517,0.9674,0.0288,0.9854,-0.1679,0.029,0.5601,-0.8279,0.0294,0.979,0.2017,0.0299,0.5507,-0.8342,0.0301,0.831,-0.5554,0.0307,0.4792,-0.8772,0.0315,0.9992,0.0245,0.0315,-0.5149,0.8567,0.0315,0.7184,-0.695,0.0316,0.9558,0.2924,0.0316,0.5928,-0.8047,0.0319,0.981,0.1915,0.0326,0.5698,-0.8211,0.0333,0.6836,-0.7291,0.0336,0.1811,0.9829,0.034,-0.4222,0.9058,0.0343,0.4494,-0.8927,0.0347,0.9982,-0.0489,0.0347,0.7413,-0.6703,0.0347,-0.3648,-0.9304,0.036,0.4873,0.8725,0.0362,0.7551,-0.6546,0.0363,0.3401,-0.9397,0.0364,0.2715,-0.9617,0.0365,0.2781,-0.9599,0.0367,0.9026,0.4289,0.0371,-0.0797,0.9961,0.0374,-0.2588,0.9652,0.0381,0.8019,-0.5962,0.0384,0.9048,-0.424,0.0391,0.9699,0.2405,0.0392,0.9992,-0.0053,0.0393,-0.2183,0.9751,0.0393,0.9571,-0.287,0.0396,0.6766,0.7352,0.0396,0.7167,-0.6962,0.0402,0.9859,-0.1624,0.0412,-0.1547,0.9871,0.0413,0.6619,-0.7485,0.0415,-0.8487,-0.5273,0.0415,0.1992,0.9791,0.0421,0.7112,-0.7017,0.0422,0.6046,0.7954,0.0424,-0.6257,-0.7789,0.0426,-0.1236,0.9914,0.0427,0.2677,-0.9626,0.0434,0.9779,-0.2047,0.0442,0.975,-0.2177,0.0443,-0.0562,0.9974,0.0444,0.3344,0.9414,0.0447,0.1328,0.9901,0.0447,0.9986,-0.0298,0.045,0.3688,-0.9284,0.0455,0.7537,-0.6557,0.0456,0.4836,0.8741,0.0456,0.9989,0.0109,0.0459,0.9977,-0.0493,0.0461,0.1332,0.99,0.0461,-0.4706,-0.8811,0.0462,-0.7932,-0.6072,0.0464,0.5689,0.8211,0.0467,0.2483,0.9676,0.0467,-0.3532,0.9344,0.0467,0.2292,-0.9723,0.0468,0.4534,-0.8901,0.047,0.4723,-0.8802,0.047,0.996,-0.0765,0.0475,-0.0286,0.9985,0.0479,-0.2062,0.9773,0.0482,0.9276,0.3704,0.0482,-0.8783,0.4757,0.049,0.9883,0.1444,0.0494,-0.1301,0.9903,0.0499,0.8986,-0.4359,0.0503,0.1538,-0.9868,0.0509,0.3965,-0.9166,0.0514,0.9987,0.0023,0.0515,0.4146,-0.9086,0.0517,-0.2623,0.9636,0.0521,-0.0299,0.9982,0.0526,0.0068,0.9986,0.0527,0.081,0.9953,0.0529,0.3076,-0.95,0.0532,0.9966,-0.0635,0.0532,0.8635,-0.5016,0.0533,0.0789,0.9955,0.0533,-0.1654,0.9848,0.054,0.9967,-0.06,0.0542,0.9974,0.0469,0.0543,0.3836,-0.9219,0.0546,-0.8555,-0.515,0.0549,-0.387,0.9205,0.055,-0.4867,0.8719,0.0552,0.205,-0.9772,0.0554,0.9955,-0.0771,0.0556,-0.8869,-0.4586,0.0559,0.9983,-0.0133,0.0561,0.969,0.2407,0.0562,0.6765,0.7343,0.0566,0.5885,-0.8065,0.057,-0.2054,-0.977,0.0575,-0.097,0.9936,0.0578,0.9981,-0.0216,0.0581,-0.6343,-0.7709,0.0587,0.3707,-0.9269,0.0588,0.9842,0.167,0.0594,-0.1969,0.9786,0.0594,0.3614,-0.9305,0.0596,0.1607,0.9852,0.0597,0.2375,-0.9695,0.0599,-0.3005,0.9519,0.0605,0.9125,-0.4045,0.0605,0.2456,-0.9675,0.061,-0.3755,0.9248,0.0612,0.3617,-0.9303,0.0615,0.892,0.4478,0.0616,0.7593,-0.6478,0.0617,-0.3131,0.9477,0.0618,0.9118,0.4059,0.062,0.998,0.0155,0.0623,-0.1917,0.9795,0.0624,0.7621,-0.6445,0.0627,0.2044,-0.9769,0.0629,-0.5447,-0.8363,0.063,-0.5188,-0.8526,0.0631,0.9137,-0.4014,0.0632,0.433,-0.8992,0.0633,0.3687,-0.9274,0.0636,-0.0673,0.9957,0.0638,-0.3272,-0.9428,0.0641,0.1137,0.9914,0.0643,0.9977,0.0189,0.0647,-0.301,0.9514,0.0649,-0.4929,-0.8677,0.0655,0.1867,-0.9802,0.066,0.8693,0.4899,0.066,-0.3265,0.9429,0.0663,0.9791,0.192,0.0673,0.0114,0.9977,0.0682,-0.9972,0.0316,0.0684,0.8908,0.4492,0.0688,0.8468,0.5275,0.0689,-0.1891,0.9795,0.0689,0.9459,0.3171,0.0693,0.9078,0.4137,0.0694,0.1236,0.9899,0.0697,0.9769,0.2019,0.0697,0.3278,-0.9422,0.0699,0.6866,-0.7237,0.0707,0.0739,0.9948,0.0708,0.9906,-0.1173,0.0709,0.9795,-0.1887,0.0713,0.8813,0.4672,0.072,0.3456,-0.9356,0.0721,0.2879,-0.9549,0.0722,0.8048,-0.5891,0.0724,-0.0597,0.9956,0.0724,0.9364,0.3434,0.0728,0.9076,0.4134,0.0737,-0.0174,0.9971,0.074,0.0775,-0.9942,0.0742,-0.1342,0.9882,0.0743,0.8399,-0.5376,0.0743,0.997,-0.0207,0.0743,0.9913,0.1087,0.0744,0.9557,0.2849,0.0748,0.9971,-0.0169,0.075,-0.3831,-0.9207,0.0754,-0.3644,0.9282,0.0755,0.3522,-0.9329,0.0757,0.9597,-0.2707,0.0757,0.8654,-0.4954,0.0757,0.8499,0.5215,0.0758,0.8979,-0.4336,0.0762,-0.1394,0.9873,0.0763,0.0475,0.996,0.0766,0.9939,0.0793,0.0766,0.9689,-0.2354,0.0774,0.9673,0.2414,0.0777,0.3819,0.9209,0.0778,0.3605,-0.9295,0.0781,0.8562,-0.5108,0.0783,0.8412,-0.535,0.079,-0.5234,0.8484,0.0792,0.5299,-0.8444,0.0796,0.3293,-0.9409,0.0806,-0.0907,0.9926,0.0808,-0.8719,-0.4831,0.0813,0.9363,-0.3416,0.0814,-0.1813,0.9801,0.0814,0.1736,0.9814,0.0814,0.7163,-0.693,0.0815,0.2969,-0.9514,0.0816,0.0235,0.9964,0.0817,0.5673,0.8194,0.0818,-0.1474,0.9857,0.0819,0.6282,0.7737,0.0821,0.1009,0.9915,0.0822,0.632,0.7706,0.0822,-0.1889,0.9785,0.0824,0.3393,-0.9371,0.0829,0.3322,-0.9396,0.0831,0.3695,-0.9255,0.0832,0.6373,-0.7661,0.0838,0.9594,0.2692,0.0839,-0.3713,0.9247,0.0846,0.3834,-0.9197,0.085,0.282,-0.9556,0.0851,0.8302,0.551,0.0853,0.2698,0.9591,0.0854,-0.5334,-0.8416,0.0855,0.9916,0.097,0.0857,-0.5773,-0.812,0.0857,0.9466,0.3107,0.0858,0.0768,-0.9934,0.0859,-0.1981,-0.9764,0.0861,0.9739,0.2101,0.0866,-0.031,-0.9958,0.0866,-0.1773,0.9803,0.0872,0.9899,-0.1118,0.0872,-0.9938,-0.0695,0.0878,0.9473,0.308,0.0884,-0.1268,0.988,0.0884,-0.0838,0.9926,0.0898,0.3512,-0.932,0.0902,-0.1253,0.988,0.0904,-0.8431,-0.5301,0.0908,-0.087,0.9921,0.0909,0.8524,0.5149,0.0911,0.446,-0.8904,0.0912,0.8217,0.5626,0.0912,0.9958,0.0103,0.0918,0.9134,-0.3966,0.0919,0.9818,0.1661,0.0925,0.9946,0.0469,0.093,0.0502,0.9944,0.0932,0.3966,0.9132,0.0934,0.9152,0.392,0.0936,0.9939,0.0591,0.0937,-0.2211,0.9707,0.094,0.7262,-0.681,0.0941,0.9929,-0.0722,0.0947,-0.887,-0.452,0.0949,0.9878,-0.1231,0.0956,0.9561,-0.2772,0.0959,-0.2526,0.9628,0.096,0.7257,-0.6813,0.0961,0.5937,0.7989,0.0963,0.7844,-0.6127,0.0963,-0.4864,0.8684,0.0964,-0.2634,-0.9599,0.0966,0.9951,0.0185,0.098,0.9829,0.156,0.0983,0.9564,0.2749,0.0985,0.3921,0.9146,0.0989,0.7482,0.6561,0.1,0.7931,0.6009,0.1001,0.7799,-0.6179,0.1001,-0.1036,-0.9896,0.1001,-0.1393,0.9852,0.1007,0.5397,-0.8358,0.1007,0.3374,0.9359,0.1011,-0.1811,0.9783,0.1012,0.6554,0.7485,0.1016,-0.0555,0.9933,0.1021,0.9193,0.3801,0.1022,0.5209,0.8475,0.1026,0.8024,-0.5879,0.1026,0.8916,-0.441,0.1027,0.9599,-0.2608,0.1035,0.5061,0.8563,0.1036,0.9756,0.1938,0.1038,-0.6476,-0.7549,0.1045,0.5841,-0.8049,0.1066,0.4447,-0.8893,0.1075,0.9927,0.0552,0.1083,0.8457,0.5225,0.1085,0.8105,-0.5756,0.1088,0.9008,0.4203,0.1089,0.8472,-0.52,0.1089,0.9403,-0.3225,0.1091,0.233,-0.9663,0.1092,0.6071,-0.7871,0.1098,0.6987,0.7069,0.1108,-0.5638,-0.8185,0.1111,-0.8467,-0.5203,0.1122,0.068,0.9913,0.1125,-0.5894,-0.8,0.1125,0.4022,-0.9086,0.1127,-0.5304,0.8402,0.1128,-0.0847,0.99,0.1131,0.9671,0.2279,0.1131,0.5857,-0.8026,0.1134,0.9616,-0.2499,0.1135,-0.2817,0.9528,0.1136,0.9504,0.2894,0.1137,0.992,0.0541,0.1137,0.9934,0.0162,0.1138,0.9855,-0.1259,0.1138,0.2024,-0.9727,0.1141,0.1962,0.9739,0.1145,0.2338,-0.9655,0.1148,0.2142,-0.97,0.1154,0.9933,0.0045,0.1164,-0.0894,-0.9892,0.1164,0.8667,0.485,0.1166,0.3414,0.9327,0.1171,-0.1549,0.981,0.1174,0.9883,0.097,0.1174,0.5625,0.8184,0.1194,0.0176,0.9927,0.1196,-0.5163,-0.848,0.1197,0.5694,-0.8133,0.12,0.6368,-0.7616,0.1203,0.9612,0.2481,0.1204,0.6935,-0.7103,0.1206,0.6362,-0.7621,0.1212,-0.5701,-0.8126,0.1214,0.6628,-0.7389,0.1217,-0.3811,0.9165,0.122,-0.8525,-0.5083,0.1223,-0.2621,0.9573,0.1226,0.9641,0.2355,0.1229,0.677,-0.7256,0.1231,0.6581,0.7428,0.1231,0.5878,0.7996,0.1234,0.9803,-0.1545,0.1237,-0.378,0.9175,0.1242,0.0025,0.9923,0.1255,0.9513,0.2816,0.1258,0.3775,-0.9174,0.1261,0.923,0.3636,0.1261,-0.2702,0.9545,0.1264,0.9135,0.3867,0.1267,0.9002,0.4166,0.1272,0.9871,-0.0967,0.1272,0.926,0.3554,0.1273,-0.9382,-0.3218,0.1277,0.9819,-0.1396,0.1282,0.9888,0.0765,0.1283,0.9749,0.1822,0.1296,-0.0134,0.9915,0.1299,0.5552,-0.8215,0.13,0.883,0.451,0.1307,-0.5747,-0.8079,0.1308,0.0063,0.9914,0.1313,-0.5967,-0.7917,0.1316,0.7211,0.6802,0.1323,-0.0697,0.9888,0.1323,-0.6344,-0.7616,0.1329,0.3674,-0.9205,0.1343,0.9573,-0.256,0.135,0.2372,-0.962,0.1351,0.3455,-0.9287,0.1355,-0.7553,-0.6412,0.1356,-0.9651,-0.224,0.1357,0.2207,-0.9659,0.1357,0.3358,-0.9321,0.1367,0.9891,0.0555,0.1367,0.3238,-0.9362,0.137,0.9906,0.0018,0.1379,0.9898,-0.0346,0.138,0.895,0.4241,0.1381,0.9346,0.3277,0.1393,-0.188,0.9722,0.1395,-0.9538,-0.266,0.1396,-0.2439,0.9597,0.1396,-0.6702,-0.729,0.14,0.9199,0.3662,0.1401,-0.2331,0.9623,0.1407,0.2525,-0.9573,0.1409,-0.3999,0.9057,0.1414,-0.7994,-0.584,0.1417,0.9411,0.3071,0.1418,0.7465,0.6501,0.1423,0.6739,-0.725,0.1426,-0.5982,0.7885,0.143,0.6944,-0.7053,0.1431,0.721,-0.6781,0.1431,0.6296,0.7636,0.1431,-0.0339,-0.9891,0.1432,-0.3239,0.9352,0.1434,0.9146,0.3781,0.1434,0.9832,-0.1133,0.1441,-0.5218,-0.8408,0.1442,-0.2779,-0.9497,0.1443,0.6167,0.7738,0.1445,0.9648,-0.2199,0.1445,-0.1689,0.975,0.1445,-0.2508,0.9572,0.1446,-0.2668,0.9528,0.1447,0.9737,-0.1759,0.1447,-0.4991,0.8544,0.1448,0.1012,0.9843,0.1449,-0.4551,-0.8786,0.145,-0.0597,0.9876,0.1451,0.4386,-0.8869,0.1452,0.2709,0.9516,0.1452,0.892,0.4281,0.1453,-0.9792,0.1418,0.1456,-0.966,-0.2138,0.1465,-0.6966,-0.7023,0.1466,-0.0708,0.9867,0.1469,0.6529,-0.7431,0.1469,0.0321,0.9886,0.147,0.9382,0.3133,0.1472,-0.546,0.8247,0.1478,-0.8748,-0.4613,0.1481,0.9417,0.3021,0.1484,0.8705,0.4693,0.1495,-0.1453,0.978,0.1496,0.9804,-0.1285,0.1497,0.9797,0.1336,0.1498,0.9194,-0.3636,0.1502,0.9883,-0.0275,0.1504,0.462,-0.874,0.1507,0.3702,-0.9166,0.151,-0.8134,-0.5617,0.1511,-0.0852,0.9848,0.1514,0.9168,0.3695,0.1526,0.9836,0.0957,0.1527,-0.5728,0.8053,0.1532,0.7176,-0.6794,0.1532,0.3519,-0.9234,0.1534,0.7398,0.6551,0.1534,0.3335,0.9302,0.1539,0.5229,-0.8384,0.154,0.9549,-0.2538,0.1542,0.9243,-0.3492,0.1543,0.048,0.9869,0.1544,-0.4904,0.8577,0.1548,-0.3574,0.921,0.1558,0.924,0.3492,0.1558,-0.4358,0.8864,0.1562,0.2136,0.9644,0.1563,0.6209,-0.7681,0.1568,0.8688,-0.4697,0.1571,0.9648,-0.211,0.1576,-0.1979,0.9675,0.1577,-0.3274,0.9316,0.1578,0.9389,0.3058,0.1586,0.9742,0.1604,0.159,0.5056,-0.848,0.1593,-0.5238,0.8368,0.1596,-0.2997,0.9406,0.1599,-0.5406,0.8259,0.1607,0.368,-0.9158,0.1609,0.4741,0.8656,0.161,-0.1833,0.9698,0.1613,-0.364,0.9173,0.1613,0.169,-0.9723,0.1618,0.2312,0.9594,0.1619,0.2219,-0.9615,0.162,0.1794,0.9704,0.1623,-0.6416,-0.7497,0.1623,-0.3714,0.9142,0.1626,0.6262,0.7625,0.1627,0.0822,-0.9832,0.1628,-0.0673,0.9844,0.1634,0.9839,0.0721,0.1636,0.8961,-0.4126,0.1638,0.6516,-0.7407,0.1643,0.4381,-0.8838,0.1647,-0.3003,0.9395,0.1658,-0.3414,0.9252,0.1659,-0.1879,0.9681,0.1662,0.2971,-0.9403,0.1664,-0.1871,0.9681,0.1668,0.9782,0.1236,0.167,-0.3851,0.9076,0.167,-0.287,0.9432,0.1671,-0.5033,-0.8478,0.1676,0.2653,-0.9495,0.1677,0.706,-0.688,0.1677,0.8522,-0.4957,0.1681,0.9652,0.2004,0.1684,0.8673,-0.4685,0.1689,-0.3204,0.9321,0.1692,0.8955,0.4117,0.1693,0.9016,0.398,0.1697,-0.2054,0.9639,0.1698,0.6778,-0.7154,0.17,0.7162,-0.6769,0.1705,0.7622,-0.6245,0.1709,-0.8762,-0.4507,0.1711,0.924,0.3419,0.1712,0.6932,-0.7001,0.1715,0.6255,0.7611,0.1719,0.8612,0.4782,0.1722,-0.1185,0.9779,0.1724,0.6041,-0.778,0.1727,0.203,0.9638,0.1728,0.6845,-0.7083,0.173,0.8157,0.552,0.173,0.9733,0.1507,0.173,0.584,-0.7931,0.1733,-0.3773,-0.9097,0.1737,0.6705,-0.7213,0.1738,-0.3337,0.9265,0.1738,0.3444,-0.9226,0.1743,0.0019,-0.9847,0.1754,0.9723,0.1543,0.1756,0.2877,0.9415,0.1756,0.9412,0.2887,0.1759,0.9842,0.0222,0.1763,0.891,0.4184,0.1764,0.1973,-0.9644,0.1769,0.8501,0.496,0.177,-0.8679,0.4642,0.1774,-0.2363,0.9553,0.1774,0.3324,0.9263,0.1778,0.932,0.3159,0.1787,0.8908,0.4177,0.179,0.9538,0.2414,0.1796,0.7934,-0.5816,0.18,-0.1778,0.9675,0.1801,-0.2318,-0.9559,0.1801,0.4144,-0.8921,0.1803,0.3097,0.9336,0.1807,0.9832,0.0242,0.1808,0.5288,-0.8293,0.1809,0.8152,-0.5503,0.181,0.4418,0.8787,0.1814,0.3749,0.9091,0.1814,0.7921,0.5827,0.1818,0.7918,-0.583,0.1821,0.4723,-0.8624,0.1826,-0.0054,0.9832,0.1827,0.7239,0.6653,0.1833,0.7307,0.6576,0.1837,0.9546,0.2345,0.1847,-0.0699,0.9803,0.1848,0.8847,0.4279,0.1849,-0.2416,0.9526,0.1851,0.9803,0.0694,0.1855,-0.2499,0.9503,0.1858,-0.0775,0.9795,0.1867,0.959,0.2133,0.1868,0.9499,-0.2506,0.1869,0.8456,0.5,0.1869,0.6988,-0.6905,0.187,0.976,0.1117,0.1871,-0.6966,-0.6927,0.1871,0.9787,0.084,0.1873,-0.3829,0.9046,0.1878,-0.1661,0.9681,0.1878,0.7967,-0.5744,0.1879,-0.9276,-0.3228,0.1887,0.8108,-0.554,0.1887,-0.1352,0.9727,0.1891,-0.2531,-0.9488,0.1892,0.1454,0.9711,0.1892,0.6736,0.7144,0.1895,0.4127,-0.8909,0.1896,0.9802,0.0564,0.1897,0.8274,-0.5286,0.1899,-0.2557,0.9479,0.19,0.3426,-0.9201,0.1904,0.5845,-0.7887,0.1905,0.6509,-0.7349,0.1912,0.944,0.269,0.1913,0.4629,-0.8655,0.1913,0.2647,-0.9452,0.1914,0.8524,-0.4865,0.1916,0.9417,0.2765,0.1916,0.6742,-0.7132,0.1918,-0.4548,-0.8697,0.1922,0.5657,-0.8019,0.1922,-0.0795,-0.9781,0.1927,0.7861,-0.5873,0.1931,0.8896,-0.4139,0.1932,0.9287,0.3166,0.1932,0.9664,-0.1694,0.1944,0.0725,0.9782,0.1944,0.4738,-0.8589,0.1947,0.3904,-0.8998,0.1952,0.9795,0.0501,0.1953,0.1254,0.9727,0.1957,0.6038,-0.7728,0.1958,0.8624,0.4669,0.1959,0.9386,0.2841,0.1961,0.2707,-0.9425,0.1962,0.7236,-0.6617,0.1962,0.4352,-0.8787,0.1962,0.3814,-0.9033,0.1963,-0.0469,0.9794,0.1965,0.1899,-0.9619,0.197,-0.3706,0.9077,0.197,0.0515,0.9791,0.1974,-0.5164,0.8333,0.1977,0.3193,-0.9268,0.1979,0.9561,0.2162,0.1984,0.8564,0.4768,0.1985,0.4089,0.8907,0.1989,0.8977,0.3931,0.1989,0.1837,-0.9626,0.1996,0.2331,-0.9518,0.1996,0.1824,-0.9627,0.1998,0.5065,-0.8388,0.1998,0.5716,-0.7959,0.2002,-0.4737,0.8576,0.2003,0.5323,0.8225,0.2012,0.9429,0.2656,0.2016,0.7526,-0.6268,0.2018,-0.0819,-0.976,0.2037,0.9748,-0.0908,0.2038,0.352,-0.9135,0.2039,0.4718,-0.8578,0.204,-0.1951,0.9593,0.204,-0.1697,0.9641,0.2044,0.974,-0.0974,0.2045,0.5786,-0.7895,0.2047,0.2691,-0.9411,0.2048,0.9583,-0.1995,0.2049,0.3197,-0.9251,0.205,0.3995,-0.8935,0.2055,0.8643,-0.459,0.2056,0.9004,0.3833,0.2056,0.8579,0.4709,0.206,-0.9572,0.2032,0.2067,-0.0669,0.9761,0.2075,0.8587,0.4686,0.2076,0.7185,-0.6638,0.2077,0.2554,-0.9443,0.2081,0.5885,0.7813,0.2084,0.0225,0.9778,0.2085,-0.2866,0.9351,0.2088,-0.2901,0.9339,0.2096,0.7241,-0.657,0.2102,0.2087,0.9551,0.2102,0.9625,0.1718,0.2102,-0.5232,0.8259,0.2102,-0.2051,-0.9559,0.2106,0.0986,-0.9726,0.211,-0.385,0.8985,0.2112,0.3036,-0.9291,0.2112,0.4717,-0.8561,0.2112,0.7883,0.5779,0.2122,0.7922,-0.5722,0.2123,-0.18,0.9605,0.2125,-0.0963,0.9724,0.2128,0.5032,-0.8375,0.2133,0.967,-0.1394,0.2145,0.7052,-0.6758,0.2145,0.9349,0.2827,0.2149,-0.486,-0.8471,0.2151,-0.1224,0.9689,0.2152,0.9666,0.1393,0.2159,0.5477,0.8084,0.216,0.4907,0.8441,0.2163,0.9585,-0.1858,0.2164,0.829,0.5157,0.2164,0.4208,-0.881,0.2168,0.631,0.7449,0.2169,0.1009,0.971,0.2169,0.2139,0.9525,0.2173,-0.3882,0.8956,0.2182,0.5725,-0.7903,0.2184,0.3544,-0.9092,0.2188,0.9492,-0.2263,0.219,0.2298,0.9483,0.2194,0.9109,0.3494,0.2195,0.9371,0.2713,0.2195,-0.4183,-0.8814,0.2196,-0.1101,0.9694,0.2199,0.6999,0.6796,0.22,0.9744,-0.0457,0.2202,-0.2329,0.9473,0.2202,-0.2557,0.9414,0.221,0.0823,-0.9718,0.221,0.6666,-0.7119,0.2225,0.965,-0.1391,0.223,-0.2129,0.9513,0.223,-0.8387,0.4969,0.2231,0.6762,-0.7021,0.2233,0.2966,0.9285,0.2236,-0.1403,0.9645,0.2239,0.9461,-0.2339,0.224,0.6131,-0.7576,0.224,-0.5619,0.7963,0.2243,-0.0259,0.9742,0.2243,0.9655,0.1324,0.2245,-0.4179,0.8803,0.2246,0.9642,0.1409,0.2248,0.4613,-0.8583,0.2249,0.345,0.9113,0.